sass-embedded 1.54.7-aarch64-linux-gnu

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +20 -0
  3. data/README.md +42 -0
  4. data/ext/sass/embedded.rb +9 -0
  5. data/ext/sass/embedded_sass_pb.rb +349 -0
  6. data/ext/sass/sass_embedded/dart-sass-embedded +0 -0
  7. data/ext/sass/sass_embedded/src/LICENSE +1470 -0
  8. data/lib/sass/compile_error.rb +28 -0
  9. data/lib/sass/compile_result.rb +23 -0
  10. data/lib/sass/embedded/async.rb +65 -0
  11. data/lib/sass/embedded/channel.rb +61 -0
  12. data/lib/sass/embedded/compiler.rb +60 -0
  13. data/lib/sass/embedded/dispatcher.rb +90 -0
  14. data/lib/sass/embedded/host/function_registry.rb +90 -0
  15. data/lib/sass/embedded/host/importer_registry.rb +108 -0
  16. data/lib/sass/embedded/host/logger_registry.rb +50 -0
  17. data/lib/sass/embedded/host/value_protofier.rb +241 -0
  18. data/lib/sass/embedded/host.rb +141 -0
  19. data/lib/sass/embedded/protofier.rb +78 -0
  20. data/lib/sass/embedded/structifier.rb +36 -0
  21. data/lib/sass/embedded/varint.rb +35 -0
  22. data/lib/sass/embedded/version.rb +7 -0
  23. data/lib/sass/embedded.rb +245 -0
  24. data/lib/sass/logger/silent.rb +26 -0
  25. data/lib/sass/logger/source_location.rb +21 -0
  26. data/lib/sass/logger/source_span.rb +27 -0
  27. data/lib/sass/script_error.rb +6 -0
  28. data/lib/sass/value/argument_list.rb +30 -0
  29. data/lib/sass/value/boolean.rb +52 -0
  30. data/lib/sass/value/color.rb +253 -0
  31. data/lib/sass/value/function.rb +54 -0
  32. data/lib/sass/value/fuzzy_math.rb +81 -0
  33. data/lib/sass/value/list.rb +79 -0
  34. data/lib/sass/value/map.rb +71 -0
  35. data/lib/sass/value/null.rb +48 -0
  36. data/lib/sass/value/number/unit.rb +186 -0
  37. data/lib/sass/value/number.rb +358 -0
  38. data/lib/sass/value/string.rb +55 -0
  39. data/lib/sass/value.rb +132 -0
  40. data/lib/sass-embedded.rb +4 -0
  41. metadata +184 -0
@@ -0,0 +1,1470 @@
1
+ sass_embedded license:
2
+
3
+ Copyright (c) 2019, Google LLC
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 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 and typed_data license:
186
+
187
+ Copyright 2015, the Dart project authors.
188
+
189
+ Redistribution and use in source and binary forms, with or without
190
+ modification, are permitted provided that the following conditions are
191
+ met:
192
+
193
+ * Redistributions of source code must retain the above copyright
194
+ notice, this list of conditions and the following disclaimer.
195
+ * Redistributions in binary form must reproduce the above
196
+ copyright notice, this list of conditions and the following
197
+ disclaimer in the documentation and/or other materials provided
198
+ with the distribution.
199
+ * Neither the name of Google LLC nor the names of its
200
+ contributors may be used to endorse or promote products derived
201
+ from this software without specific prior written permission.
202
+
203
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
204
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
205
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
206
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
207
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
208
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
209
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
210
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
211
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
212
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
213
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
214
+
215
+
216
+ --------------------------------------------------------------------------------
217
+
218
+ boolean_selector and test_descriptor license:
219
+
220
+ Copyright 2016, the Dart project authors. All rights reserved.
221
+ Redistribution and use in source and binary forms, with or without
222
+ modification, are permitted provided that the following conditions are
223
+ met:
224
+
225
+ * Redistributions of source code must retain the above copyright
226
+ notice, this list of conditions and the following disclaimer.
227
+ * Redistributions in binary form must reproduce the above
228
+ copyright notice, this list of conditions and the following
229
+ disclaimer in the documentation and/or other materials provided
230
+ with the distribution.
231
+ * Neither the name of Google Inc. nor the names of its
232
+ contributors may be used to endorse or promote products derived
233
+ from this software without specific prior written permission.
234
+
235
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
236
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
237
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
238
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
239
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
240
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
241
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
242
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
243
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
244
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
245
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
246
+
247
+
248
+ --------------------------------------------------------------------------------
249
+
250
+ charcode, source_maps and stack_trace license:
251
+
252
+ Copyright 2014, the Dart project authors. All rights reserved.
253
+ Redistribution and use in source and binary forms, with or without
254
+ modification, are permitted provided that the following conditions are
255
+ met:
256
+
257
+ * Redistributions of source code must retain the above copyright
258
+ notice, this list of conditions and the following disclaimer.
259
+ * Redistributions in binary form must reproduce the above
260
+ copyright notice, this list of conditions and the following
261
+ disclaimer in the documentation and/or other materials provided
262
+ with the distribution.
263
+ * Neither the name of Google Inc. nor the names of its
264
+ contributors may be used to endorse or promote products derived
265
+ from this software without specific prior written permission.
266
+
267
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
268
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
269
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
270
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
271
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
272
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
273
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
274
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
275
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
276
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
277
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
278
+
279
+
280
+ --------------------------------------------------------------------------------
281
+
282
+ checked_yaml license:
283
+
284
+ Copyright 2019, the Dart project authors. All rights reserved.
285
+ Redistribution and use in source and binary forms, with or without
286
+ modification, are permitted provided that the following conditions are
287
+ met:
288
+
289
+ * Redistributions of source code must retain the above copyright
290
+ notice, this list of conditions and the following disclaimer.
291
+ * Redistributions in binary form must reproduce the above
292
+ copyright notice, this list of conditions and the following
293
+ disclaimer in the documentation and/or other materials provided
294
+ with the distribution.
295
+ * Neither the name of Google Inc. nor the names of its
296
+ contributors may be used to endorse or promote products derived
297
+ from this software without specific prior written permission.
298
+
299
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
300
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
301
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
302
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
303
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
304
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
305
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
306
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
307
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
308
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
309
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
310
+
311
+
312
+ --------------------------------------------------------------------------------
313
+
314
+ cli_pkg license:
315
+
316
+ Apache License
317
+ Version 2.0, January 2004
318
+ http://www.apache.org/licenses/
319
+
320
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
321
+
322
+ 1. Definitions.
323
+
324
+ "License" shall mean the terms and conditions for use, reproduction,
325
+ and distribution as defined by Sections 1 through 9 of this document.
326
+
327
+ "Licensor" shall mean the copyright owner or entity authorized by
328
+ the copyright owner that is granting the License.
329
+
330
+ "Legal Entity" shall mean the union of the acting entity and all
331
+ other entities that control, are controlled by, or are under common
332
+ control with that entity. For the purposes of this definition,
333
+ "control" means (i) the power, direct or indirect, to cause the
334
+ direction or management of such entity, whether by contract or
335
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
336
+ outstanding shares, or (iii) beneficial ownership of such entity.
337
+
338
+ "You" (or "Your") shall mean an individual or Legal Entity
339
+ exercising permissions granted by this License.
340
+
341
+ "Source" form shall mean the preferred form for making modifications,
342
+ including but not limited to software source code, documentation
343
+ source, and configuration files.
344
+
345
+ "Object" form shall mean any form resulting from mechanical
346
+ transformation or translation of a Source form, including but
347
+ not limited to compiled object code, generated documentation,
348
+ and conversions to other media types.
349
+
350
+ "Work" shall mean the work of authorship, whether in Source or
351
+ Object form, made available under the License, as indicated by a
352
+ copyright notice that is included in or attached to the work
353
+ (an example is provided in the Appendix below).
354
+
355
+ "Derivative Works" shall mean any work, whether in Source or Object
356
+ form, that is based on (or derived from) the Work and for which the
357
+ editorial revisions, annotations, elaborations, or other modifications
358
+ represent, as a whole, an original work of authorship. For the purposes
359
+ of this License, Derivative Works shall not include works that remain
360
+ separable from, or merely link (or bind by name) to the interfaces of,
361
+ the Work and Derivative Works thereof.
362
+
363
+ "Contribution" shall mean any work of authorship, including
364
+ the original version of the Work and any modifications or additions
365
+ to that Work or Derivative Works thereof, that is intentionally
366
+ submitted to Licensor for inclusion in the Work by the copyright owner
367
+ or by an individual or Legal Entity authorized to submit on behalf of
368
+ the copyright owner. For the purposes of this definition, "submitted"
369
+ means any form of electronic, verbal, or written communication sent
370
+ to the Licensor or its representatives, including but not limited to
371
+ communication on electronic mailing lists, source code control systems,
372
+ and issue tracking systems that are managed by, or on behalf of, the
373
+ Licensor for the purpose of discussing and improving the Work, but
374
+ excluding communication that is conspicuously marked or otherwise
375
+ designated in writing by the copyright owner as "Not a Contribution."
376
+
377
+ "Contributor" shall mean Licensor and any individual or Legal Entity
378
+ on behalf of whom a Contribution has been received by Licensor and
379
+ subsequently incorporated within the Work.
380
+
381
+ 2. Grant of Copyright License. Subject to the terms and conditions of
382
+ this License, each Contributor hereby grants to You a perpetual,
383
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
384
+ copyright license to reproduce, prepare Derivative Works of,
385
+ publicly display, publicly perform, sublicense, and distribute the
386
+ Work and such Derivative Works in Source or Object form.
387
+
388
+ 3. Grant of Patent License. Subject to the terms and conditions of
389
+ this License, each Contributor hereby grants to You a perpetual,
390
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
391
+ (except as stated in this section) patent license to make, have made,
392
+ use, offer to sell, sell, import, and otherwise transfer the Work,
393
+ where such license applies only to those patent claims licensable
394
+ by such Contributor that are necessarily infringed by their
395
+ Contribution(s) alone or by combination of their Contribution(s)
396
+ with the Work to which such Contribution(s) was submitted. If You
397
+ institute patent litigation against any entity (including a
398
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
399
+ or a Contribution incorporated within the Work constitutes direct
400
+ or contributory patent infringement, then any patent licenses
401
+ granted to You under this License for that Work shall terminate
402
+ as of the date such litigation is filed.
403
+
404
+ 4. Redistribution. You may reproduce and distribute copies of the
405
+ Work or Derivative Works thereof in any medium, with or without
406
+ modifications, and in Source or Object form, provided that You
407
+ meet the following conditions:
408
+
409
+ (a) You must give any other recipients of the Work or
410
+ Derivative Works a copy of this License; and
411
+
412
+ (b) You must cause any modified files to carry prominent notices
413
+ stating that You changed the files; and
414
+
415
+ (c) You must retain, in the Source form of any Derivative Works
416
+ that You distribute, all copyright, patent, trademark, and
417
+ attribution notices from the Source form of the Work,
418
+ excluding those notices that do not pertain to any part of
419
+ the Derivative Works; and
420
+
421
+ (d) If the Work includes a "NOTICE" text file as part of its
422
+ distribution, then any Derivative Works that You distribute must
423
+ include a readable copy of the attribution notices contained
424
+ within such NOTICE file, excluding those notices that do not
425
+ pertain to any part of the Derivative Works, in at least one
426
+ of the following places: within a NOTICE text file distributed
427
+ as part of the Derivative Works; within the Source form or
428
+ documentation, if provided along with the Derivative Works; or,
429
+ within a display generated by the Derivative Works, if and
430
+ wherever such third-party notices normally appear. The contents
431
+ of the NOTICE file are for informational purposes only and
432
+ do not modify the License. You may add Your own attribution
433
+ notices within Derivative Works that You distribute, alongside
434
+ or as an addendum to the NOTICE text from the Work, provided
435
+ that such additional attribution notices cannot be construed
436
+ as modifying the License.
437
+
438
+ You may add Your own copyright statement to Your modifications and
439
+ may provide additional or different license terms and conditions
440
+ for use, reproduction, or distribution of Your modifications, or
441
+ for any such Derivative Works as a whole, provided Your use,
442
+ reproduction, and distribution of the Work otherwise complies with
443
+ the conditions stated in this License.
444
+
445
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
446
+ any Contribution intentionally submitted for inclusion in the Work
447
+ by You to the Licensor shall be under the terms and conditions of
448
+ this License, without any additional terms or conditions.
449
+ Notwithstanding the above, nothing herein shall supersede or modify
450
+ the terms of any separate license agreement you may have executed
451
+ with Licensor regarding such Contributions.
452
+
453
+ 6. Trademarks. This License does not grant permission to use the trade
454
+ names, trademarks, service marks, or product names of the Licensor,
455
+ except as required for reasonable and customary use in describing the
456
+ origin of the Work and reproducing the content of the NOTICE file.
457
+
458
+ 7. Disclaimer of Warranty. Unless required by applicable law or
459
+ agreed to in writing, Licensor provides the Work (and each
460
+ Contributor provides its Contributions) on an "AS IS" BASIS,
461
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
462
+ implied, including, without limitation, any warranties or conditions
463
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
464
+ PARTICULAR PURPOSE. You are solely responsible for determining the
465
+ appropriateness of using or redistributing the Work and assume any
466
+ risks associated with Your exercise of permissions under this License.
467
+
468
+ 8. Limitation of Liability. In no event and under no legal theory,
469
+ whether in tort (including negligence), contract, or otherwise,
470
+ unless required by applicable law (such as deliberate and grossly
471
+ negligent acts) or agreed to in writing, shall any Contributor be
472
+ liable to You for damages, including any direct, indirect, special,
473
+ incidental, or consequential damages of any character arising as a
474
+ result of this License or out of the use or inability to use the
475
+ Work (including but not limited to damages for loss of goodwill,
476
+ work stoppage, computer failure or malfunction, or any and all
477
+ other commercial damages or losses), even if such Contributor
478
+ has been advised of the possibility of such damages.
479
+
480
+ 9. Accepting Warranty or Additional Liability. While redistributing
481
+ the Work or Derivative Works thereof, You may choose to offer,
482
+ and charge a fee for, acceptance of support, warranty, indemnity,
483
+ or other liability obligations and/or rights consistent with this
484
+ License. However, in accepting such obligations, You may act only
485
+ on Your own behalf and on Your sole responsibility, not on behalf
486
+ of any other Contributor, and only if You agree to indemnify,
487
+ defend, and hold each Contributor harmless for any liability
488
+ incurred by, or claims asserted against, such Contributor by reason
489
+ of your accepting any such warranty or additional liability.
490
+
491
+ END OF TERMS AND CONDITIONS
492
+
493
+ APPENDIX: How to apply the Apache License to your work.
494
+
495
+ To apply the Apache License to your work, attach the following
496
+ boilerplate notice, with the fields enclosed by brackets "[]"
497
+ replaced with your own identifying information. (Don't include
498
+ the brackets!) The text should be enclosed in the appropriate
499
+ comment syntax for the file format. We also recommend that a
500
+ file or class name and description of purpose be included on the
501
+ same "printed page" as the copyright notice for easier
502
+ identification within third-party archives.
503
+
504
+ Copyright [yyyy] [name of copyright owner]
505
+
506
+ Licensed under the Apache License, Version 2.0 (the "License");
507
+ you may not use this file except in compliance with the License.
508
+ You may obtain a copy of the License at
509
+
510
+ http://www.apache.org/licenses/LICENSE-2.0
511
+
512
+ Unless required by applicable law or agreed to in writing, software
513
+ distributed under the License is distributed on an "AS IS" BASIS,
514
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
515
+ See the License for the specific language governing permissions and
516
+ limitations under the License.
517
+
518
+
519
+ --------------------------------------------------------------------------------
520
+
521
+ cli_repl license:
522
+
523
+ Copyright (c) 2018, Jennifer Thakar.
524
+ All rights reserved.
525
+
526
+ Redistribution and use in source and binary forms, with or without
527
+ modification, are permitted provided that the following conditions are met:
528
+ * Redistributions of source code must retain the above copyright
529
+ notice, this list of conditions and the following disclaimer.
530
+ * Redistributions in binary form must reproduce the above copyright
531
+ notice, this list of conditions and the following disclaimer in the
532
+ documentation and/or other materials provided with the distribution.
533
+ * Neither the name of the project nor the names of its contributors may be
534
+ used to endorse or promote products derived from this software without
535
+ specific prior written permission.
536
+
537
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
538
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
539
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
540
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
541
+ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
542
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
543
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
544
+ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
545
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
546
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
547
+
548
+
549
+ --------------------------------------------------------------------------------
550
+
551
+ convert, crypto, shelf_static and vm_service license:
552
+
553
+ Copyright 2015, the Dart project authors.
554
+
555
+ Redistribution and use in source and binary forms, with or without
556
+ modification, are permitted provided that the following conditions are
557
+ met:
558
+
559
+ * Redistributions of source code must retain the above copyright
560
+ notice, this list of conditions and the following disclaimer.
561
+ * Redistributions in binary form must reproduce the above
562
+ copyright notice, this list of conditions and the following
563
+ disclaimer in the documentation and/or other materials provided
564
+ with the distribution.
565
+ * Neither the name of Google LLC nor the names of its
566
+ contributors may be used to endorse or promote products derived
567
+ from this software without specific prior written permission.
568
+
569
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
570
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
571
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
572
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
573
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
574
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
575
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
576
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
577
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
578
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
579
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
580
+
581
+
582
+ --------------------------------------------------------------------------------
583
+
584
+ coverage and quiver license:
585
+
586
+
587
+ Apache License
588
+ Version 2.0, January 2004
589
+ http://www.apache.org/licenses/
590
+
591
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
592
+
593
+ 1. Definitions.
594
+
595
+ "License" shall mean the terms and conditions for use, reproduction,
596
+ and distribution as defined by Sections 1 through 9 of this document.
597
+
598
+ "Licensor" shall mean the copyright owner or entity authorized by
599
+ the copyright owner that is granting the License.
600
+
601
+ "Legal Entity" shall mean the union of the acting entity and all
602
+ other entities that control, are controlled by, or are under common
603
+ control with that entity. For the purposes of this definition,
604
+ "control" means (i) the power, direct or indirect, to cause the
605
+ direction or management of such entity, whether by contract or
606
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
607
+ outstanding shares, or (iii) beneficial ownership of such entity.
608
+
609
+ "You" (or "Your") shall mean an individual or Legal Entity
610
+ exercising permissions granted by this License.
611
+
612
+ "Source" form shall mean the preferred form for making modifications,
613
+ including but not limited to software source code, documentation
614
+ source, and configuration files.
615
+
616
+ "Object" form shall mean any form resulting from mechanical
617
+ transformation or translation of a Source form, including but
618
+ not limited to compiled object code, generated documentation,
619
+ and conversions to other media types.
620
+
621
+ "Work" shall mean the work of authorship, whether in Source or
622
+ Object form, made available under the License, as indicated by a
623
+ copyright notice that is included in or attached to the work
624
+ (an example is provided in the Appendix below).
625
+
626
+ "Derivative Works" shall mean any work, whether in Source or Object
627
+ form, that is based on (or derived from) the Work and for which the
628
+ editorial revisions, annotations, elaborations, or other modifications
629
+ represent, as a whole, an original work of authorship. For the purposes
630
+ of this License, Derivative Works shall not include works that remain
631
+ separable from, or merely link (or bind by name) to the interfaces of,
632
+ the Work and Derivative Works thereof.
633
+
634
+ "Contribution" shall mean any work of authorship, including
635
+ the original version of the Work and any modifications or additions
636
+ to that Work or Derivative Works thereof, that is intentionally
637
+ submitted to Licensor for inclusion in the Work by the copyright owner
638
+ or by an individual or Legal Entity authorized to submit on behalf of
639
+ the copyright owner. For the purposes of this definition, "submitted"
640
+ means any form of electronic, verbal, or written communication sent
641
+ to the Licensor or its representatives, including but not limited to
642
+ communication on electronic mailing lists, source code control systems,
643
+ and issue tracking systems that are managed by, or on behalf of, the
644
+ Licensor for the purpose of discussing and improving the Work, but
645
+ excluding communication that is conspicuously marked or otherwise
646
+ designated in writing by the copyright owner as "Not a Contribution."
647
+
648
+ "Contributor" shall mean Licensor and any individual or Legal Entity
649
+ on behalf of whom a Contribution has been received by Licensor and
650
+ subsequently incorporated within the Work.
651
+
652
+ 2. Grant of Copyright License. Subject to the terms and conditions of
653
+ this License, each Contributor hereby grants to You a perpetual,
654
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
655
+ copyright license to reproduce, prepare Derivative Works of,
656
+ publicly display, publicly perform, sublicense, and distribute the
657
+ Work and such Derivative Works in Source or Object form.
658
+
659
+ 3. Grant of Patent License. Subject to the terms and conditions of
660
+ this License, each Contributor hereby grants to You a perpetual,
661
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
662
+ (except as stated in this section) patent license to make, have made,
663
+ use, offer to sell, sell, import, and otherwise transfer the Work,
664
+ where such license applies only to those patent claims licensable
665
+ by such Contributor that are necessarily infringed by their
666
+ Contribution(s) alone or by combination of their Contribution(s)
667
+ with the Work to which such Contribution(s) was submitted. If You
668
+ institute patent litigation against any entity (including a
669
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
670
+ or a Contribution incorporated within the Work constitutes direct
671
+ or contributory patent infringement, then any patent licenses
672
+ granted to You under this License for that Work shall terminate
673
+ as of the date such litigation is filed.
674
+
675
+ 4. Redistribution. You may reproduce and distribute copies of the
676
+ Work or Derivative Works thereof in any medium, with or without
677
+ modifications, and in Source or Object form, provided that You
678
+ meet the following conditions:
679
+
680
+ (a) You must give any other recipients of the Work or
681
+ Derivative Works a copy of this License; and
682
+
683
+ (b) You must cause any modified files to carry prominent notices
684
+ stating that You changed the files; and
685
+
686
+ (c) You must retain, in the Source form of any Derivative Works
687
+ that You distribute, all copyright, patent, trademark, and
688
+ attribution notices from the Source form of the Work,
689
+ excluding those notices that do not pertain to any part of
690
+ the Derivative Works; and
691
+
692
+ (d) If the Work includes a "NOTICE" text file as part of its
693
+ distribution, then any Derivative Works that You distribute must
694
+ include a readable copy of the attribution notices contained
695
+ within such NOTICE file, excluding those notices that do not
696
+ pertain to any part of the Derivative Works, in at least one
697
+ of the following places: within a NOTICE text file distributed
698
+ as part of the Derivative Works; within the Source form or
699
+ documentation, if provided along with the Derivative Works; or,
700
+ within a display generated by the Derivative Works, if and
701
+ wherever such third-party notices normally appear. The contents
702
+ of the NOTICE file are for informational purposes only and
703
+ do not modify the License. You may add Your own attribution
704
+ notices within Derivative Works that You distribute, alongside
705
+ or as an addendum to the NOTICE text from the Work, provided
706
+ that such additional attribution notices cannot be construed
707
+ as modifying the License.
708
+
709
+ You may add Your own copyright statement to Your modifications and
710
+ may provide additional or different license terms and conditions
711
+ for use, reproduction, or distribution of Your modifications, or
712
+ for any such Derivative Works as a whole, provided Your use,
713
+ reproduction, and distribution of the Work otherwise complies with
714
+ the conditions stated in this License.
715
+
716
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
717
+ any Contribution intentionally submitted for inclusion in the Work
718
+ by You to the Licensor shall be under the terms and conditions of
719
+ this License, without any additional terms or conditions.
720
+ Notwithstanding the above, nothing herein shall supersede or modify
721
+ the terms of any separate license agreement you may have executed
722
+ with Licensor regarding such Contributions.
723
+
724
+ 6. Trademarks. This License does not grant permission to use the trade
725
+ names, trademarks, service marks, or product names of the Licensor,
726
+ except as required for reasonable and customary use in describing the
727
+ origin of the Work and reproducing the content of the NOTICE file.
728
+
729
+ 7. Disclaimer of Warranty. Unless required by applicable law or
730
+ agreed to in writing, Licensor provides the Work (and each
731
+ Contributor provides its Contributions) on an "AS IS" BASIS,
732
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
733
+ implied, including, without limitation, any warranties or conditions
734
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
735
+ PARTICULAR PURPOSE. You are solely responsible for determining the
736
+ appropriateness of using or redistributing the Work and assume any
737
+ risks associated with Your exercise of permissions under this License.
738
+
739
+ 8. Limitation of Liability. In no event and under no legal theory,
740
+ whether in tort (including negligence), contract, or otherwise,
741
+ unless required by applicable law (such as deliberate and grossly
742
+ negligent acts) or agreed to in writing, shall any Contributor be
743
+ liable to You for damages, including any direct, indirect, special,
744
+ incidental, or consequential damages of any character arising as a
745
+ result of this License or out of the use or inability to use the
746
+ Work (including but not limited to damages for loss of goodwill,
747
+ work stoppage, computer failure or malfunction, or any and all
748
+ other commercial damages or losses), even if such Contributor
749
+ has been advised of the possibility of such damages.
750
+
751
+ 9. Accepting Warranty or Additional Liability. While redistributing
752
+ the Work or Derivative Works thereof, You may choose to offer,
753
+ and charge a fee for, acceptance of support, warranty, indemnity,
754
+ or other liability obligations and/or rights consistent with this
755
+ License. However, in accepting such obligations, You may act only
756
+ on Your own behalf and on Your sole responsibility, not on behalf
757
+ of any other Contributor, and only if You agree to indemnify,
758
+ defend, and hold each Contributor harmless for any liability
759
+ incurred by, or claims asserted against, such Contributor by reason
760
+ of your accepting any such warranty or additional liability.
761
+
762
+ END OF TERMS AND CONDITIONS
763
+
764
+ APPENDIX: How to apply the Apache License to your work.
765
+
766
+ To apply the Apache License to your work, attach the following
767
+ boilerplate notice, with the fields enclosed by brackets "[]"
768
+ replaced with your own identifying information. (Don't include
769
+ the brackets!) The text should be enclosed in the appropriate
770
+ comment syntax for the file format. We also recommend that a
771
+ file or class name and description of purpose be included on the
772
+ same "printed page" as the copyright notice for easier
773
+ identification within third-party archives.
774
+
775
+ Copyright [yyyy] [name of copyright owner]
776
+
777
+ Licensed under the Apache License, Version 2.0 (the "License");
778
+ you may not use this file except in compliance with the License.
779
+ You may obtain a copy of the License at
780
+
781
+ http://www.apache.org/licenses/LICENSE-2.0
782
+
783
+ Unless required by applicable law or agreed to in writing, software
784
+ distributed under the License is distributed on an "AS IS" BASIS,
785
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
786
+ See the License for the specific language governing permissions and
787
+ limitations under the License.
788
+
789
+ --------------------------------------------------------------------------------
790
+
791
+ dart_style, glob, http, http_parser, matcher, path, pool, pub_semver,
792
+ source_span, string_scanner, test and watcher license:
793
+
794
+ Copyright 2014, the Dart project authors.
795
+
796
+ Redistribution and use in source and binary forms, with or without
797
+ modification, are permitted provided that the following conditions are
798
+ met:
799
+
800
+ * Redistributions of source code must retain the above copyright
801
+ notice, this list of conditions and the following disclaimer.
802
+ * Redistributions in binary form must reproduce the above
803
+ copyright notice, this list of conditions and the following
804
+ disclaimer in the documentation and/or other materials provided
805
+ with the distribution.
806
+ * Neither the name of Google LLC nor the names of its
807
+ contributors may be used to endorse or promote products derived
808
+ from this software without specific prior written permission.
809
+
810
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
811
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
812
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
813
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
814
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
815
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
816
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
817
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
818
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
819
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
820
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
821
+
822
+
823
+ --------------------------------------------------------------------------------
824
+
825
+ file license:
826
+
827
+ Copyright 2017, the Dart project authors. All rights reserved.
828
+ Redistribution and use in source and binary forms, with or without
829
+ modification, are permitted provided that the following conditions are
830
+ met:
831
+
832
+ * Redistributions of source code must retain the above copyright
833
+ notice, this list of conditions and the following disclaimer.
834
+ * Redistributions in binary form must reproduce the above
835
+ copyright notice, this list of conditions and the following
836
+ disclaimer in the documentation and/or other materials provided
837
+ with the distribution.
838
+ * Neither the name of Google Inc. nor the names of its
839
+ contributors may be used to endorse or promote products derived
840
+ from this software without specific prior written permission.
841
+
842
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
843
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
844
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
845
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
846
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
847
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
848
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
849
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
850
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
851
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
852
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
853
+
854
+ --------------------------------------------------------------------------------
855
+
856
+ fixnum, http_multi_server, shelf and shelf_web_socket license:
857
+
858
+ Copyright 2014, the Dart project authors.
859
+
860
+ Redistribution and use in source and binary forms, with or without
861
+ modification, are permitted provided that the following conditions are
862
+ met:
863
+
864
+ * Redistributions of source code must retain the above copyright
865
+ notice, this list of conditions and the following disclaimer.
866
+ * Redistributions in binary form must reproduce the above
867
+ copyright notice, this list of conditions and the following
868
+ disclaimer in the documentation and/or other materials provided
869
+ with the distribution.
870
+ * Neither the name of Google LLC nor the names of its
871
+ contributors may be used to endorse or promote products derived
872
+ from this software without specific prior written permission.
873
+
874
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
875
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
876
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
877
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
878
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
879
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
880
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
881
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
882
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
883
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
884
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
885
+
886
+
887
+ --------------------------------------------------------------------------------
888
+
889
+ frontend_server_client license:
890
+
891
+ Copyright 2020, the Dart project authors.
892
+
893
+ Redistribution and use in source and binary forms, with or without
894
+ modification, are permitted provided that the following conditions are
895
+ met:
896
+
897
+ * Redistributions of source code must retain the above copyright
898
+ notice, this list of conditions and the following disclaimer.
899
+ * Redistributions in binary form must reproduce the above
900
+ copyright notice, this list of conditions and the following
901
+ disclaimer in the documentation and/or other materials provided
902
+ with the distribution.
903
+ * Neither the name of Google LLC nor the names of its
904
+ contributors may be used to endorse or promote products derived
905
+ from this software without specific prior written permission.
906
+
907
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
908
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
909
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
910
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
911
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
912
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
913
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
914
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
915
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
916
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
917
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
918
+
919
+
920
+ --------------------------------------------------------------------------------
921
+
922
+ grinder and webkit_inspection_protocol license:
923
+
924
+ Copyright 2013, Google Inc.
925
+ All rights reserved.
926
+
927
+ Redistribution and use in source and binary forms, with or without
928
+ modification, are permitted provided that the following conditions are
929
+ met:
930
+
931
+ * Redistributions of source code must retain the above copyright
932
+ notice, this list of conditions and the following disclaimer.
933
+ * Redistributions in binary form must reproduce the above
934
+ copyright notice, this list of conditions and the following disclaimer
935
+ in the documentation and/or other materials provided with the
936
+ distribution.
937
+ * Neither the name of Google Inc. nor the names of its
938
+ contributors may be used to endorse or promote products derived from
939
+ this software without specific prior written permission.
940
+
941
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
942
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
943
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
944
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
945
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
946
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
947
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
948
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
949
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
950
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
951
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
952
+
953
+
954
+ --------------------------------------------------------------------------------
955
+
956
+ io and term_glyph license:
957
+
958
+ Copyright 2017, the Dart project authors.
959
+
960
+ Redistribution and use in source and binary forms, with or without
961
+ modification, are permitted provided that the following conditions are
962
+ met:
963
+
964
+ * Redistributions of source code must retain the above copyright
965
+ notice, this list of conditions and the following disclaimer.
966
+ * Redistributions in binary form must reproduce the above
967
+ copyright notice, this list of conditions and the following
968
+ disclaimer in the documentation and/or other materials provided
969
+ with the distribution.
970
+ * Neither the name of Google LLC nor the names of its
971
+ contributors may be used to endorse or promote products derived
972
+ from this software without specific prior written permission.
973
+
974
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
975
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
976
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
977
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
978
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
979
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
980
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
981
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
982
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
983
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
984
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
985
+
986
+
987
+ --------------------------------------------------------------------------------
988
+
989
+ js license:
990
+
991
+ Copyright 2012, the Dart project authors.
992
+
993
+ Redistribution and use in source and binary forms, with or without
994
+ modification, are permitted provided that the following conditions are
995
+ met:
996
+
997
+ * Redistributions of source code must retain the above copyright
998
+ notice, this list of conditions and the following disclaimer.
999
+ * Redistributions in binary form must reproduce the above
1000
+ copyright notice, this list of conditions and the following
1001
+ disclaimer in the documentation and/or other materials provided
1002
+ with the distribution.
1003
+ * Neither the name of Google LLC nor the names of its
1004
+ contributors may be used to endorse or promote products derived
1005
+ from this software without specific prior written permission.
1006
+
1007
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1008
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1009
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1010
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
1011
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
1012
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
1013
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
1014
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
1015
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1016
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1017
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1018
+
1019
+
1020
+ --------------------------------------------------------------------------------
1021
+
1022
+ json_annotation and stream_transform license:
1023
+
1024
+ Copyright 2017, the Dart project authors. All rights reserved.
1025
+ Redistribution and use in source and binary forms, with or without
1026
+ modification, are permitted provided that the following conditions are
1027
+ met:
1028
+
1029
+ * Redistributions of source code must retain the above copyright
1030
+ notice, this list of conditions and the following disclaimer.
1031
+ * Redistributions in binary form must reproduce the above
1032
+ copyright notice, this list of conditions and the following
1033
+ disclaimer in the documentation and/or other materials provided
1034
+ with the distribution.
1035
+ * Neither the name of Google Inc. nor the names of its
1036
+ contributors may be used to endorse or promote products derived
1037
+ from this software without specific prior written permission.
1038
+
1039
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1040
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1041
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1042
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
1043
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
1044
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
1045
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
1046
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
1047
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1048
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1049
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1050
+
1051
+
1052
+ --------------------------------------------------------------------------------
1053
+
1054
+ lints license:
1055
+
1056
+ Copyright 2021, the Dart project authors.
1057
+
1058
+ Redistribution and use in source and binary forms, with or without
1059
+ modification, are permitted provided that the following conditions are
1060
+ met:
1061
+
1062
+ * Redistributions of source code must retain the above copyright
1063
+ notice, this list of conditions and the following disclaimer.
1064
+ * Redistributions in binary form must reproduce the above
1065
+ copyright notice, this list of conditions and the following
1066
+ disclaimer in the documentation and/or other materials provided
1067
+ with the distribution.
1068
+ * Neither the name of Google LLC nor the names of its
1069
+ contributors may be used to endorse or promote products derived
1070
+ from this software without specific prior written permission.
1071
+
1072
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1073
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1074
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1075
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
1076
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
1077
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
1078
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
1079
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
1080
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1081
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1082
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1083
+
1084
+
1085
+ --------------------------------------------------------------------------------
1086
+
1087
+ meta and shelf_packages_handler license:
1088
+
1089
+ Copyright 2016, the Dart project authors.
1090
+
1091
+ Redistribution and use in source and binary forms, with or without
1092
+ modification, are permitted provided that the following conditions are
1093
+ met:
1094
+
1095
+ * Redistributions of source code must retain the above copyright
1096
+ notice, this list of conditions and the following disclaimer.
1097
+ * Redistributions in binary form must reproduce the above
1098
+ copyright notice, this list of conditions and the following
1099
+ disclaimer in the documentation and/or other materials provided
1100
+ with the distribution.
1101
+ * Neither the name of Google LLC nor the names of its
1102
+ contributors may be used to endorse or promote products derived
1103
+ from this software without specific prior written permission.
1104
+
1105
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1106
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1107
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1108
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
1109
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
1110
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
1111
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
1112
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
1113
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1114
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1115
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1116
+
1117
+
1118
+ --------------------------------------------------------------------------------
1119
+
1120
+ node_interop license:
1121
+
1122
+ Copyright (c) 2017, Anatoly Pulyaevskiy.
1123
+ All rights reserved.
1124
+
1125
+ Redistribution and use in source and binary forms, with or without
1126
+ modification, are permitted provided that the following conditions are met:
1127
+ * Redistributions of source code must retain the above copyright
1128
+ notice, this list of conditions and the following disclaimer.
1129
+ * Redistributions in binary form must reproduce the above copyright
1130
+ notice, this list of conditions and the following disclaimer in the
1131
+ documentation and/or other materials provided with the distribution.
1132
+ * Neither the name of the <organization> nor the
1133
+ names of its contributors may be used to endorse or promote products
1134
+ derived from this software without specific prior written permission.
1135
+
1136
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
1137
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
1138
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
1139
+ DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
1140
+ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
1141
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
1142
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
1143
+ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1144
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
1145
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1146
+
1147
+
1148
+ --------------------------------------------------------------------------------
1149
+
1150
+ node_preamble license:
1151
+
1152
+ The MIT License (MIT)
1153
+
1154
+ Copyright (c) 2015 Michael Bullington
1155
+
1156
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1157
+ of this software and associated documentation files (the "Software"), to deal
1158
+ in the Software without restriction, including without limitation the rights
1159
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1160
+ copies of the Software, and to permit persons to whom the Software is
1161
+ furnished to do so, subject to the following conditions:
1162
+
1163
+ The above copyright notice and this permission notice shall be included in all
1164
+ copies or substantial portions of the Software.
1165
+
1166
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1167
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1168
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1169
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1170
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1171
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1172
+ SOFTWARE.
1173
+
1174
+ ===
1175
+
1176
+ Copyright 2012, the Dart project authors. All rights reserved.
1177
+ Redistribution and use in source and binary forms, with or without
1178
+ modification, are permitted provided that the following conditions are
1179
+ met:
1180
+ * Redistributions of source code must retain the above copyright
1181
+ notice, this list of conditions and the following disclaimer.
1182
+ * Redistributions in binary form must reproduce the above
1183
+ copyright notice, this list of conditions and the following
1184
+ disclaimer in the documentation and/or other materials provided
1185
+ with the distribution.
1186
+ * Neither the name of Google Inc. nor the names of its
1187
+ contributors may be used to endorse or promote products derived
1188
+ from this software without specific prior written permission.
1189
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1190
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1191
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1192
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
1193
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
1194
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
1195
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
1196
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
1197
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1198
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1199
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1200
+
1201
+
1202
+ --------------------------------------------------------------------------------
1203
+
1204
+ package_config license:
1205
+
1206
+ Copyright 2019, the Dart project authors.
1207
+
1208
+ Redistribution and use in source and binary forms, with or without
1209
+ modification, are permitted provided that the following conditions are
1210
+ met:
1211
+
1212
+ * Redistributions of source code must retain the above copyright
1213
+ notice, this list of conditions and the following disclaimer.
1214
+ * Redistributions in binary form must reproduce the above
1215
+ copyright notice, this list of conditions and the following
1216
+ disclaimer in the documentation and/or other materials provided
1217
+ with the distribution.
1218
+ * Neither the name of Google LLC nor the names of its
1219
+ contributors may be used to endorse or promote products derived
1220
+ from this software without specific prior written permission.
1221
+
1222
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1223
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1224
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1225
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
1226
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
1227
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
1228
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
1229
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
1230
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1231
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1232
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1233
+
1234
+
1235
+ --------------------------------------------------------------------------------
1236
+
1237
+ petitparser and xml license:
1238
+
1239
+ The MIT License
1240
+
1241
+ Copyright (c) 2006-2022 Lukas Renggli.
1242
+ All rights reserved.
1243
+
1244
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1245
+ of this software and associated documentation files (the "Software"), to deal
1246
+ in the Software without restriction, including without limitation the rights
1247
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1248
+ copies of the Software, and to permit persons to whom the Software is
1249
+ furnished to do so, subject to the following conditions:
1250
+
1251
+ The above copyright notice and this permission notice shall be included in
1252
+ all copies or substantial portions of the Software.
1253
+
1254
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1255
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1256
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1257
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1258
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1259
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1260
+ THE SOFTWARE.
1261
+
1262
+
1263
+ --------------------------------------------------------------------------------
1264
+
1265
+ pubspec_parse, test_api and test_core 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
+ sass and sass_api license:
1299
+
1300
+ Copyright (c) 2016, Google Inc.
1301
+
1302
+ Permission is hereby granted, free of charge, to any person obtaining
1303
+ a copy of this software and associated documentation files (the
1304
+ "Software"), to deal in the Software without restriction, including
1305
+ without limitation the rights to use, copy, modify, merge, publish,
1306
+ distribute, sublicense, and/or sell copies of the Software, and to
1307
+ permit persons to whom the Software is furnished to do so, subject to
1308
+ the following conditions:
1309
+
1310
+ The above copyright notice and this permission notice shall be
1311
+ included in all copies or substantial portions of the Software.
1312
+
1313
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1314
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1315
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1316
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1317
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1318
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1319
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1320
+
1321
+
1322
+ --------------------------------------------------------------------------------
1323
+
1324
+ source_map_stack_trace and stream_channel license:
1325
+
1326
+ Copyright 2015, the Dart project authors. All rights reserved.
1327
+ Redistribution and use in source and binary forms, with or without
1328
+ modification, are permitted provided that the following conditions are
1329
+ met:
1330
+
1331
+ * Redistributions of source code must retain the above copyright
1332
+ notice, this list of conditions and the following disclaimer.
1333
+ * Redistributions in binary form must reproduce the above
1334
+ copyright notice, this list of conditions and the following
1335
+ disclaimer in the documentation and/or other materials provided
1336
+ with the distribution.
1337
+ * Neither the name of Google Inc. nor the names of its
1338
+ contributors may be used to endorse or promote products derived
1339
+ from this software without specific prior written permission.
1340
+
1341
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1342
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1343
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1344
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
1345
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
1346
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
1347
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
1348
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
1349
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1350
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1351
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1352
+
1353
+
1354
+ --------------------------------------------------------------------------------
1355
+
1356
+ test_process license:
1357
+
1358
+ Copyright 2017, the Dart project authors.
1359
+
1360
+ Redistribution and use in source and binary forms, with or without
1361
+ modification, are permitted provided that the following conditions are
1362
+ met:
1363
+
1364
+ * Redistributions of source code must retain the above copyright
1365
+ notice, this list of conditions and the following disclaimer.
1366
+ * Redistributions in binary form must reproduce the above
1367
+ copyright notice, this list of conditions and the following
1368
+ disclaimer in the documentation and/or other materials provided
1369
+ with the distribution.
1370
+ * Neither the name of Google LLC nor the names of its
1371
+ contributors may be used to endorse or promote products derived
1372
+ from this software without specific prior written permission.
1373
+
1374
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1375
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1376
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1377
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
1378
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
1379
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
1380
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
1381
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
1382
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1383
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1384
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1385
+
1386
+
1387
+ --------------------------------------------------------------------------------
1388
+
1389
+ tuple license:
1390
+
1391
+ Copyright (c) 2014, the tuple project authors.
1392
+ All rights reserved.
1393
+
1394
+ Redistribution and use in source and binary forms, with or without
1395
+ modification, are permitted provided that the following conditions are met:
1396
+
1397
+ * Redistributions of source code must retain the above copyright
1398
+ notice, this list of conditions and the following disclaimer.
1399
+ * Redistributions in binary form must reproduce the above copyright
1400
+ notice, this list of conditions and the following disclaimer in the
1401
+ documentation and/or other materials provided with the distribution.
1402
+
1403
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
1404
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
1405
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
1406
+ DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
1407
+ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
1408
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
1409
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
1410
+ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1411
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
1412
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1413
+
1414
+ --------------------------------------------------------------------------------
1415
+
1416
+ web_socket_channel license:
1417
+
1418
+ Copyright 2016, the Dart project authors.
1419
+
1420
+ Redistribution and use in source and binary forms, with or without
1421
+ modification, are permitted provided that the following conditions are
1422
+ met:
1423
+
1424
+ * Redistributions of source code must retain the above copyright
1425
+ notice, this list of conditions and the following disclaimer.
1426
+ * Redistributions in binary form must reproduce the above
1427
+ copyright notice, this list of conditions and the following
1428
+ disclaimer in the documentation and/or other materials provided
1429
+ with the distribution.
1430
+ * Neither the name of Google LLC nor the names of its
1431
+ contributors may be used to endorse or promote products derived
1432
+ from this software without specific prior written permission.
1433
+
1434
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1435
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1436
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1437
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
1438
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
1439
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
1440
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
1441
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
1442
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1443
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1444
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1445
+
1446
+
1447
+ --------------------------------------------------------------------------------
1448
+
1449
+ yaml license:
1450
+
1451
+ Copyright (c) 2014, the Dart project authors.
1452
+ Copyright (c) 2006, Kirill Simonov.
1453
+
1454
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
1455
+ this software and associated documentation files (the "Software"), to deal in
1456
+ the Software without restriction, including without limitation the rights to
1457
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
1458
+ of the Software, and to permit persons to whom the Software is furnished to do
1459
+ so, subject to the following conditions:
1460
+
1461
+ The above copyright notice and this permission notice shall be included in all
1462
+ copies or substantial portions of the Software.
1463
+
1464
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1465
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1466
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1467
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1468
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1469
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1470
+ SOFTWARE.