sass-embedded 1.58.3-arm-linux-androideabi

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 (43) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +20 -0
  3. data/README.md +42 -0
  4. data/ext/sass/embedded.rb +12 -0
  5. data/ext/sass/embedded_sass_pb.rb +349 -0
  6. data/ext/sass/sass_embedded/dart-sass-embedded +20 -0
  7. data/ext/sass/sass_embedded/src/LICENSE +1434 -0
  8. data/ext/sass/sass_embedded/src/dart +0 -0
  9. data/ext/sass/sass_embedded/src/dart-sass-embedded.snapshot +0 -0
  10. data/lib/sass/compile_error.rb +28 -0
  11. data/lib/sass/compile_result.rb +23 -0
  12. data/lib/sass/embedded/async.rb +58 -0
  13. data/lib/sass/embedded/channel.rb +61 -0
  14. data/lib/sass/embedded/compiler.rb +60 -0
  15. data/lib/sass/embedded/dispatcher.rb +98 -0
  16. data/lib/sass/embedded/host/function_registry.rb +89 -0
  17. data/lib/sass/embedded/host/importer_registry.rb +104 -0
  18. data/lib/sass/embedded/host/logger_registry.rb +50 -0
  19. data/lib/sass/embedded/host/value_protofier.rb +241 -0
  20. data/lib/sass/embedded/host.rb +141 -0
  21. data/lib/sass/embedded/protofier.rb +78 -0
  22. data/lib/sass/embedded/structifier.rb +39 -0
  23. data/lib/sass/embedded/varint.rb +35 -0
  24. data/lib/sass/embedded/version.rb +7 -0
  25. data/lib/sass/embedded.rb +251 -0
  26. data/lib/sass/logger/silent.rb +26 -0
  27. data/lib/sass/logger/source_location.rb +21 -0
  28. data/lib/sass/logger/source_span.rb +27 -0
  29. data/lib/sass/script_error.rb +10 -0
  30. data/lib/sass/value/argument_list.rb +37 -0
  31. data/lib/sass/value/boolean.rb +52 -0
  32. data/lib/sass/value/color.rb +253 -0
  33. data/lib/sass/value/function.rb +54 -0
  34. data/lib/sass/value/fuzzy_math.rb +80 -0
  35. data/lib/sass/value/list.rb +79 -0
  36. data/lib/sass/value/map.rb +71 -0
  37. data/lib/sass/value/null.rb +48 -0
  38. data/lib/sass/value/number/unit.rb +186 -0
  39. data/lib/sass/value/number.rb +365 -0
  40. data/lib/sass/value/string.rb +55 -0
  41. data/lib/sass/value.rb +128 -0
  42. data/lib/sass-embedded.rb +4 -0
  43. metadata +186 -0
@@ -0,0 +1,1434 @@
1
+ Dart 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, 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, glob, http, http_parser, matcher, path, pool, pub_semver,
587
+ 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
+ file license:
621
+
622
+ Copyright 2017, the Dart project authors. All rights reserved.
623
+ Redistribution and use in source and binary forms, with or without
624
+ modification, are permitted provided that the following conditions are
625
+ met:
626
+
627
+ * Redistributions of source code must retain the above copyright
628
+ notice, this list of conditions and the following disclaimer.
629
+ * Redistributions in binary form must reproduce the above
630
+ copyright notice, this list of conditions and the following
631
+ disclaimer in the documentation and/or other materials provided
632
+ with the distribution.
633
+ * Neither the name of Google Inc. nor the names of its
634
+ contributors may be used to endorse or promote products derived
635
+ from this software without specific prior written permission.
636
+
637
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
638
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
639
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
640
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
641
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
642
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
643
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
644
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
645
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
646
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
647
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
648
+
649
+ --------------------------------------------------------------------------------
650
+
651
+ fixnum, http_multi_server, shelf, shelf_web_socket, source_maps and stack_trace
652
+ license:
653
+
654
+ Copyright 2014, the Dart project authors.
655
+
656
+ Redistribution and use in source and binary forms, with or without
657
+ modification, are permitted provided that the following conditions are
658
+ met:
659
+
660
+ * Redistributions of source code must retain the above copyright
661
+ notice, this list of conditions and the following disclaimer.
662
+ * Redistributions in binary form must reproduce the above
663
+ copyright notice, this list of conditions and the following
664
+ disclaimer in the documentation and/or other materials provided
665
+ with the distribution.
666
+ * Neither the name of Google LLC nor the names of its
667
+ contributors may be used to endorse or promote products derived
668
+ from this software without specific prior written permission.
669
+
670
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
671
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
672
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
673
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
674
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
675
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
676
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
677
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
678
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
679
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
680
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
681
+
682
+
683
+ --------------------------------------------------------------------------------
684
+
685
+ frontend_server_client license:
686
+
687
+ Copyright 2020, the Dart project authors.
688
+
689
+ Redistribution and use in source and binary forms, with or without
690
+ modification, are permitted provided that the following conditions are
691
+ met:
692
+
693
+ * Redistributions of source code must retain the above copyright
694
+ notice, this list of conditions and the following disclaimer.
695
+ * Redistributions in binary form must reproduce the above
696
+ copyright notice, this list of conditions and the following
697
+ disclaimer in the documentation and/or other materials provided
698
+ with the distribution.
699
+ * Neither the name of Google LLC nor the names of its
700
+ contributors may be used to endorse or promote products derived
701
+ from this software without specific prior written permission.
702
+
703
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
704
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
705
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
706
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
707
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
708
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
709
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
710
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
711
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
712
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
713
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
714
+
715
+
716
+ --------------------------------------------------------------------------------
717
+
718
+ grinder and webkit_inspection_protocol license:
719
+
720
+ Copyright 2013, Google Inc.
721
+ All rights reserved.
722
+
723
+ Redistribution and use in source and binary forms, with or without
724
+ modification, are permitted provided that the following conditions are
725
+ met:
726
+
727
+ * Redistributions of source code must retain the above copyright
728
+ notice, this list of conditions and the following disclaimer.
729
+ * Redistributions in binary form must reproduce the above
730
+ copyright notice, this list of conditions and the following disclaimer
731
+ in the documentation and/or other materials provided with the
732
+ distribution.
733
+ * Neither the name of Google Inc. nor the names of its
734
+ contributors may be used to endorse or promote products derived from
735
+ this software without specific prior written permission.
736
+
737
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
738
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
739
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
740
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
741
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
742
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
743
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
744
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
745
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
746
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
747
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
748
+
749
+
750
+ --------------------------------------------------------------------------------
751
+
752
+ io, stream_transform and term_glyph license:
753
+
754
+ Copyright 2017, the Dart project authors.
755
+
756
+ Redistribution and use in source and binary forms, with or without
757
+ modification, are permitted provided that the following conditions are
758
+ met:
759
+
760
+ * Redistributions of source code must retain the above copyright
761
+ notice, this list of conditions and the following disclaimer.
762
+ * Redistributions in binary form must reproduce the above
763
+ copyright notice, this list of conditions and the following
764
+ disclaimer in the documentation and/or other materials provided
765
+ with the distribution.
766
+ * Neither the name of Google LLC nor the names of its
767
+ contributors may be used to endorse or promote products derived
768
+ from this software without specific prior written permission.
769
+
770
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
771
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
772
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
773
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
774
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
775
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
776
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
777
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
778
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
779
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
780
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
781
+
782
+
783
+ --------------------------------------------------------------------------------
784
+
785
+ js license:
786
+
787
+ Copyright 2012, the Dart project authors.
788
+
789
+ Redistribution and use in source and binary forms, with or without
790
+ modification, are permitted provided that the following conditions are
791
+ met:
792
+
793
+ * Redistributions of source code must retain the above copyright
794
+ notice, this list of conditions and the following disclaimer.
795
+ * Redistributions in binary form must reproduce the above
796
+ copyright notice, this list of conditions and the following
797
+ disclaimer in the documentation and/or other materials provided
798
+ with the distribution.
799
+ * Neither the name of Google LLC nor the names of its
800
+ contributors may be used to endorse or promote products derived
801
+ from this software without specific prior written permission.
802
+
803
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
804
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
805
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
806
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
807
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
808
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
809
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
810
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
811
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
812
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
813
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
814
+
815
+
816
+ --------------------------------------------------------------------------------
817
+
818
+ json_annotation license:
819
+
820
+ Copyright 2017, the Dart project authors. All rights reserved.
821
+ Redistribution and use in source and binary forms, with or without
822
+ modification, are permitted provided that the following conditions are
823
+ met:
824
+
825
+ * Redistributions of source code must retain the above copyright
826
+ notice, this list of conditions and the following disclaimer.
827
+ * Redistributions in binary form must reproduce the above
828
+ copyright notice, this list of conditions and the following
829
+ disclaimer in the documentation and/or other materials provided
830
+ with the distribution.
831
+ * Neither the name of Google Inc. nor the names of its
832
+ contributors may be used to endorse or promote products derived
833
+ from this software without specific prior written permission.
834
+
835
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
836
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
837
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
838
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
839
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
840
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
841
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
842
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
843
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
844
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
845
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
846
+
847
+
848
+ --------------------------------------------------------------------------------
849
+
850
+ lints license:
851
+
852
+ Copyright 2021, the Dart project authors.
853
+
854
+ Redistribution and use in source and binary forms, with or without
855
+ modification, are permitted provided that the following conditions are
856
+ met:
857
+
858
+ * Redistributions of source code must retain the above copyright
859
+ notice, this list of conditions and the following disclaimer.
860
+ * Redistributions in binary form must reproduce the above
861
+ copyright notice, this list of conditions and the following
862
+ disclaimer in the documentation and/or other materials provided
863
+ with the distribution.
864
+ * Neither the name of Google LLC nor the names of its
865
+ contributors may be used to endorse or promote products derived
866
+ from this software without specific prior written permission.
867
+
868
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
869
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
870
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
871
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
872
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
873
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
874
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
875
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
876
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
877
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
878
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
879
+
880
+
881
+ --------------------------------------------------------------------------------
882
+
883
+ node_interop license:
884
+
885
+ Copyright (c) 2017, Anatoly Pulyaevskiy.
886
+ All rights reserved.
887
+
888
+ Redistribution and use in source and binary forms, with or without
889
+ modification, are permitted provided that the following conditions are met:
890
+ * Redistributions of source code must retain the above copyright
891
+ notice, this list of conditions and the following disclaimer.
892
+ * Redistributions in binary form must reproduce the above copyright
893
+ notice, this list of conditions and the following disclaimer in the
894
+ documentation and/or other materials provided with the distribution.
895
+ * Neither the name of the <organization> nor the
896
+ names of its contributors may be used to endorse or promote products
897
+ derived from this software without specific prior written permission.
898
+
899
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
900
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
901
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
902
+ DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
903
+ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
904
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
905
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
906
+ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
907
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
908
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
909
+
910
+
911
+ --------------------------------------------------------------------------------
912
+
913
+ node_preamble license:
914
+
915
+ The MIT License (MIT)
916
+
917
+ Copyright (c) 2015 Michael Bullington
918
+
919
+ Permission is hereby granted, free of charge, to any person obtaining a copy
920
+ of this software and associated documentation files (the "Software"), to deal
921
+ in the Software without restriction, including without limitation the rights
922
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
923
+ copies of the Software, and to permit persons to whom the Software is
924
+ furnished to do so, subject to the following conditions:
925
+
926
+ The above copyright notice and this permission notice shall be included in all
927
+ copies or substantial portions of the Software.
928
+
929
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
930
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
931
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
932
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
933
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
934
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
935
+ SOFTWARE.
936
+
937
+ ===
938
+
939
+ Copyright 2012, the Dart project authors. All rights reserved.
940
+ Redistribution and use in source and binary forms, with or without
941
+ modification, are permitted provided that the following conditions are
942
+ met:
943
+ * Redistributions of source code must retain the above copyright
944
+ notice, this list of conditions and the following disclaimer.
945
+ * Redistributions in binary form must reproduce the above
946
+ copyright notice, this list of conditions and the following
947
+ disclaimer in the documentation and/or other materials provided
948
+ with the distribution.
949
+ * Neither the name of Google Inc. nor the names of its
950
+ contributors may be used to endorse or promote products derived
951
+ from this software without specific prior written permission.
952
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
953
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
954
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
955
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
956
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
957
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
958
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
959
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
960
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
961
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
962
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
963
+
964
+
965
+ --------------------------------------------------------------------------------
966
+
967
+ package_config license:
968
+
969
+ Copyright 2019, the Dart project authors.
970
+
971
+ Redistribution and use in source and binary forms, with or without
972
+ modification, are permitted provided that the following conditions are
973
+ met:
974
+
975
+ * Redistributions of source code must retain the above copyright
976
+ notice, this list of conditions and the following disclaimer.
977
+ * Redistributions in binary form must reproduce the above
978
+ copyright notice, this list of conditions and the following
979
+ disclaimer in the documentation and/or other materials provided
980
+ with the distribution.
981
+ * Neither the name of Google LLC nor the names of its
982
+ contributors may be used to endorse or promote products derived
983
+ from this software without specific prior written permission.
984
+
985
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
986
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
987
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
988
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
989
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
990
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
991
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
992
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
993
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
994
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
995
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
996
+
997
+
998
+ --------------------------------------------------------------------------------
999
+
1000
+ petitparser and xml license:
1001
+
1002
+ The MIT License
1003
+
1004
+ Copyright (c) 2006-2022 Lukas Renggli.
1005
+ All rights reserved.
1006
+
1007
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1008
+ of this software and associated documentation files (the "Software"), to deal
1009
+ in the Software without restriction, including without limitation the rights
1010
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1011
+ copies of the Software, and to permit persons to whom the Software is
1012
+ furnished to do so, subject to the following conditions:
1013
+
1014
+ The above copyright notice and this permission notice shall be included in
1015
+ all copies or substantial portions of the Software.
1016
+
1017
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1018
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1019
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1020
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1021
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1022
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1023
+ THE SOFTWARE.
1024
+
1025
+
1026
+ --------------------------------------------------------------------------------
1027
+
1028
+ pointycastle license:
1029
+
1030
+
1031
+ Copyright (c) 2000 - 2019 The Legion of the Bouncy Castle Inc. (https://www.bouncycastle.org)
1032
+
1033
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
1034
+ this software and associated documentation files (the "Software"), to deal in
1035
+ the Software without restriction, including without limitation the rights to
1036
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
1037
+ of the Software, and to permit persons to whom the Software is furnished to do
1038
+ so, subject to the following conditions:
1039
+
1040
+ The above copyright notice and this permission notice shall be included in all
1041
+ copies or substantial portions of the Software.
1042
+
1043
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1044
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
1045
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
1046
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
1047
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
1048
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1049
+
1050
+
1051
+
1052
+ --------------------------------------------------------------------------------
1053
+
1054
+ pubspec_parse, test_api and test_core license:
1055
+
1056
+ Copyright 2018, 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
+ retry license:
1088
+
1089
+
1090
+ Apache License
1091
+ Version 2.0, January 2004
1092
+ http://www.apache.org/licenses/
1093
+
1094
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1095
+
1096
+ 1. Definitions.
1097
+
1098
+ "License" shall mean the terms and conditions for use, reproduction,
1099
+ and distribution as defined by Sections 1 through 9 of this document.
1100
+
1101
+ "Licensor" shall mean the copyright owner or entity authorized by
1102
+ the copyright owner that is granting the License.
1103
+
1104
+ "Legal Entity" shall mean the union of the acting entity and all
1105
+ other entities that control, are controlled by, or are under common
1106
+ control with that entity. For the purposes of this definition,
1107
+ "control" means (i) the power, direct or indirect, to cause the
1108
+ direction or management of such entity, whether by contract or
1109
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
1110
+ outstanding shares, or (iii) beneficial ownership of such entity.
1111
+
1112
+ "You" (or "Your") shall mean an individual or Legal Entity
1113
+ exercising permissions granted by this License.
1114
+
1115
+ "Source" form shall mean the preferred form for making modifications,
1116
+ including but not limited to software source code, documentation
1117
+ source, and configuration files.
1118
+
1119
+ "Object" form shall mean any form resulting from mechanical
1120
+ transformation or translation of a Source form, including but
1121
+ not limited to compiled object code, generated documentation,
1122
+ and conversions to other media types.
1123
+
1124
+ "Work" shall mean the work of authorship, whether in Source or
1125
+ Object form, made available under the License, as indicated by a
1126
+ copyright notice that is included in or attached to the work
1127
+ (an example is provided in the Appendix below).
1128
+
1129
+ "Derivative Works" shall mean any work, whether in Source or Object
1130
+ form, that is based on (or derived from) the Work and for which the
1131
+ editorial revisions, annotations, elaborations, or other modifications
1132
+ represent, as a whole, an original work of authorship. For the purposes
1133
+ of this License, Derivative Works shall not include works that remain
1134
+ separable from, or merely link (or bind by name) to the interfaces of,
1135
+ the Work and Derivative Works thereof.
1136
+
1137
+ "Contribution" shall mean any work of authorship, including
1138
+ the original version of the Work and any modifications or additions
1139
+ to that Work or Derivative Works thereof, that is intentionally
1140
+ submitted to Licensor for inclusion in the Work by the copyright owner
1141
+ or by an individual or Legal Entity authorized to submit on behalf of
1142
+ the copyright owner. For the purposes of this definition, "submitted"
1143
+ means any form of electronic, verbal, or written communication sent
1144
+ to the Licensor or its representatives, including but not limited to
1145
+ communication on electronic mailing lists, source code control systems,
1146
+ and issue tracking systems that are managed by, or on behalf of, the
1147
+ Licensor for the purpose of discussing and improving the Work, but
1148
+ excluding communication that is conspicuously marked or otherwise
1149
+ designated in writing by the copyright owner as "Not a Contribution."
1150
+
1151
+ "Contributor" shall mean Licensor and any individual or Legal Entity
1152
+ on behalf of whom a Contribution has been received by Licensor and
1153
+ subsequently incorporated within the Work.
1154
+
1155
+ 2. Grant of Copyright License. Subject to the terms and conditions of
1156
+ this License, each Contributor hereby grants to You a perpetual,
1157
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1158
+ copyright license to reproduce, prepare Derivative Works of,
1159
+ publicly display, publicly perform, sublicense, and distribute the
1160
+ Work and such Derivative Works in Source or Object form.
1161
+
1162
+ 3. Grant of Patent License. Subject to the terms and conditions of
1163
+ this License, each Contributor hereby grants to You a perpetual,
1164
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1165
+ (except as stated in this section) patent license to make, have made,
1166
+ use, offer to sell, sell, import, and otherwise transfer the Work,
1167
+ where such license applies only to those patent claims licensable
1168
+ by such Contributor that are necessarily infringed by their
1169
+ Contribution(s) alone or by combination of their Contribution(s)
1170
+ with the Work to which such Contribution(s) was submitted. If You
1171
+ institute patent litigation against any entity (including a
1172
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
1173
+ or a Contribution incorporated within the Work constitutes direct
1174
+ or contributory patent infringement, then any patent licenses
1175
+ granted to You under this License for that Work shall terminate
1176
+ as of the date such litigation is filed.
1177
+
1178
+ 4. Redistribution. You may reproduce and distribute copies of the
1179
+ Work or Derivative Works thereof in any medium, with or without
1180
+ modifications, and in Source or Object form, provided that You
1181
+ meet the following conditions:
1182
+
1183
+ (a) You must give any other recipients of the Work or
1184
+ Derivative Works a copy of this License; and
1185
+
1186
+ (b) You must cause any modified files to carry prominent notices
1187
+ stating that You changed the files; and
1188
+
1189
+ (c) You must retain, in the Source form of any Derivative Works
1190
+ that You distribute, all copyright, patent, trademark, and
1191
+ attribution notices from the Source form of the Work,
1192
+ excluding those notices that do not pertain to any part of
1193
+ the Derivative Works; and
1194
+
1195
+ (d) If the Work includes a "NOTICE" text file as part of its
1196
+ distribution, then any Derivative Works that You distribute must
1197
+ include a readable copy of the attribution notices contained
1198
+ within such NOTICE file, excluding those notices that do not
1199
+ pertain to any part of the Derivative Works, in at least one
1200
+ of the following places: within a NOTICE text file distributed
1201
+ as part of the Derivative Works; within the Source form or
1202
+ documentation, if provided along with the Derivative Works; or,
1203
+ within a display generated by the Derivative Works, if and
1204
+ wherever such third-party notices normally appear. The contents
1205
+ of the NOTICE file are for informational purposes only and
1206
+ do not modify the License. You may add Your own attribution
1207
+ notices within Derivative Works that You distribute, alongside
1208
+ or as an addendum to the NOTICE text from the Work, provided
1209
+ that such additional attribution notices cannot be construed
1210
+ as modifying the License.
1211
+
1212
+ You may add Your own copyright statement to Your modifications and
1213
+ may provide additional or different license terms and conditions
1214
+ for use, reproduction, or distribution of Your modifications, or
1215
+ for any such Derivative Works as a whole, provided Your use,
1216
+ reproduction, and distribution of the Work otherwise complies with
1217
+ the conditions stated in this License.
1218
+
1219
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
1220
+ any Contribution intentionally submitted for inclusion in the Work
1221
+ by You to the Licensor shall be under the terms and conditions of
1222
+ this License, without any additional terms or conditions.
1223
+ Notwithstanding the above, nothing herein shall supersede or modify
1224
+ the terms of any separate license agreement you may have executed
1225
+ with Licensor regarding such Contributions.
1226
+
1227
+ 6. Trademarks. This License does not grant permission to use the trade
1228
+ names, trademarks, service marks, or product names of the Licensor,
1229
+ except as required for reasonable and customary use in describing the
1230
+ origin of the Work and reproducing the content of the NOTICE file.
1231
+
1232
+ 7. Disclaimer of Warranty. Unless required by applicable law or
1233
+ agreed to in writing, Licensor provides the Work (and each
1234
+ Contributor provides its Contributions) on an "AS IS" BASIS,
1235
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
1236
+ implied, including, without limitation, any warranties or conditions
1237
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
1238
+ PARTICULAR PURPOSE. You are solely responsible for determining the
1239
+ appropriateness of using or redistributing the Work and assume any
1240
+ risks associated with Your exercise of permissions under this License.
1241
+
1242
+ 8. Limitation of Liability. In no event and under no legal theory,
1243
+ whether in tort (including negligence), contract, or otherwise,
1244
+ unless required by applicable law (such as deliberate and grossly
1245
+ negligent acts) or agreed to in writing, shall any Contributor be
1246
+ liable to You for damages, including any direct, indirect, special,
1247
+ incidental, or consequential damages of any character arising as a
1248
+ result of this License or out of the use or inability to use the
1249
+ Work (including but not limited to damages for loss of goodwill,
1250
+ work stoppage, computer failure or malfunction, or any and all
1251
+ other commercial damages or losses), even if such Contributor
1252
+ has been advised of the possibility of such damages.
1253
+
1254
+ 9. Accepting Warranty or Additional Liability. While redistributing
1255
+ the Work or Derivative Works thereof, You may choose to offer,
1256
+ and charge a fee for, acceptance of support, warranty, indemnity,
1257
+ or other liability obligations and/or rights consistent with this
1258
+ License. However, in accepting such obligations, You may act only
1259
+ on Your own behalf and on Your sole responsibility, not on behalf
1260
+ of any other Contributor, and only if You agree to indemnify,
1261
+ defend, and hold each Contributor harmless for any liability
1262
+ incurred by, or claims asserted against, such Contributor by reason
1263
+ of your accepting any such warranty or additional liability.
1264
+
1265
+ END OF TERMS AND CONDITIONS
1266
+
1267
+ APPENDIX: How to apply the Apache License to your work.
1268
+
1269
+ To apply the Apache License to your work, attach the following
1270
+ boilerplate notice, with the fields enclosed by brackets "[]"
1271
+ replaced with your own identifying information. (Don't include
1272
+ the brackets!) The text should be enclosed in the appropriate
1273
+ comment syntax for the file format. We also recommend that a
1274
+ file or class name and description of purpose be included on the
1275
+ same "printed page" as the copyright notice for easier
1276
+ identification within third-party archives.
1277
+
1278
+ Copyright [yyyy] [name of copyright owner]
1279
+
1280
+ Licensed under the Apache License, Version 2.0 (the "License");
1281
+ you may not use this file except in compliance with the License.
1282
+ You may obtain a copy of the License at
1283
+
1284
+ http://www.apache.org/licenses/LICENSE-2.0
1285
+
1286
+ Unless required by applicable law or agreed to in writing, software
1287
+ distributed under the License is distributed on an "AS IS" BASIS,
1288
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1289
+ See the License for the specific language governing permissions and
1290
+ limitations under the License.
1291
+
1292
+ --------------------------------------------------------------------------------
1293
+
1294
+ sass and sass_api license:
1295
+
1296
+ Copyright (c) 2016, Google Inc.
1297
+
1298
+ Permission is hereby granted, free of charge, to any person obtaining
1299
+ a copy of this software and associated documentation files (the
1300
+ "Software"), to deal in the Software without restriction, including
1301
+ without limitation the rights to use, copy, modify, merge, publish,
1302
+ distribute, sublicense, and/or sell copies of the Software, and to
1303
+ permit persons to whom the Software is furnished to do so, subject to
1304
+ the following conditions:
1305
+
1306
+ The above copyright notice and this permission notice shall be
1307
+ included in all copies or substantial portions of the Software.
1308
+
1309
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1310
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1311
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1312
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1313
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1314
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1315
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1316
+
1317
+
1318
+ --------------------------------------------------------------------------------
1319
+
1320
+ test_descriptor and web_socket_channel license:
1321
+
1322
+ Copyright 2016, the Dart project authors.
1323
+
1324
+ Redistribution and use in source and binary forms, with or without
1325
+ modification, are permitted provided that the following conditions are
1326
+ met:
1327
+
1328
+ * Redistributions of source code must retain the above copyright
1329
+ notice, this list of conditions and the following disclaimer.
1330
+ * Redistributions in binary form must reproduce the above
1331
+ copyright notice, this list of conditions and the following
1332
+ disclaimer in the documentation and/or other materials provided
1333
+ with the distribution.
1334
+ * Neither the name of Google LLC nor the names of its
1335
+ contributors may be used to endorse or promote products derived
1336
+ from this software without specific prior written permission.
1337
+
1338
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1339
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1340
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1341
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
1342
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
1343
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
1344
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
1345
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
1346
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1347
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1348
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1349
+
1350
+
1351
+ --------------------------------------------------------------------------------
1352
+
1353
+ test_process license:
1354
+
1355
+ Copyright 2017, the Dart project authors.
1356
+
1357
+ Redistribution and use in source and binary forms, with or without
1358
+ modification, are permitted provided that the following conditions are
1359
+ met:
1360
+
1361
+ * Redistributions of source code must retain the above copyright
1362
+ notice, this list of conditions and the following disclaimer.
1363
+ * Redistributions in binary form must reproduce the above
1364
+ copyright notice, this list of conditions and the following
1365
+ disclaimer in the documentation and/or other materials provided
1366
+ with the distribution.
1367
+ * Neither the name of Google LLC nor the names of its
1368
+ contributors may be used to endorse or promote products derived
1369
+ from this software without specific prior written permission.
1370
+
1371
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1372
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1373
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1374
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
1375
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
1376
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
1377
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
1378
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
1379
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1380
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1381
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1382
+
1383
+
1384
+ --------------------------------------------------------------------------------
1385
+
1386
+ tuple license:
1387
+
1388
+ Copyright (c) 2014, the tuple project authors.
1389
+ All rights reserved.
1390
+
1391
+ Redistribution and use in source and binary forms, with or without
1392
+ modification, are permitted provided that the following conditions are met:
1393
+
1394
+ * Redistributions of source code must retain the above copyright
1395
+ notice, this list of conditions and the following disclaimer.
1396
+ * Redistributions in binary form must reproduce the above copyright
1397
+ notice, this list of conditions and the following disclaimer in the
1398
+ documentation and/or other materials provided with the distribution.
1399
+
1400
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
1401
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
1402
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
1403
+ DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
1404
+ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
1405
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
1406
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
1407
+ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1408
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
1409
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1410
+
1411
+ --------------------------------------------------------------------------------
1412
+
1413
+ yaml license:
1414
+
1415
+ Copyright (c) 2014, the Dart project authors.
1416
+ Copyright (c) 2006, Kirill Simonov.
1417
+
1418
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
1419
+ this software and associated documentation files (the "Software"), to deal in
1420
+ the Software without restriction, including without limitation the rights to
1421
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
1422
+ of the Software, and to permit persons to whom the Software is furnished to do
1423
+ so, subject to the following conditions:
1424
+
1425
+ The above copyright notice and this permission notice shall be included in all
1426
+ copies or substantial portions of the Software.
1427
+
1428
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1429
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1430
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1431
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1432
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1433
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1434
+ SOFTWARE.