-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathTHIRDPARTY.txt
More file actions
9168 lines (7600 loc) · 576 KB
/
THIRDPARTY.txt
File metadata and controls
9168 lines (7600 loc) · 576 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Copyright 2024
Trend Vision One Container Security
Third Party Licenses
License Attributions
=============================================================================
This product includes or may include the following:
Components:
Abseil 20220623.2: https://abseil.io/ : Apache License 2.0
c-ares 1.30.0: http://c-ares.haxx.se/ : (MIT License OR ISC License OR Public Domain)
c-ares-static 1.31.0 : MIT License
cockroachdb-c-protobuf 20170222-snapshot-32398479: http://github.com/cockroachdb/c-protobuf/ : BSD 3-clause "New" or "Revised" License
curl 8.4.0: https://curl.se/ : curl License
cxxopts v3.0.0: https://github.com/jarro2783/cxxopts : MIT License
diginfra/testing 20240608-snapshot-5eba8003: https://github.com/diginfra/testing :
elfutils 0.189: http://elfutils.org/ : GNU General Public License v3.0 or later
embedded-postgres-binaries-darwin-amd64 13.5.0 : Apache License 2.0
falcosecurity/falco 0.37.1: https://falco.org : Apache License 2.0
falcosecurity/libs 0.14.3: https://github.com/falcosecurity/libs : Apache License 2.0
fcitx 2.17.2102.102.1: https://fcitx-im.org : (GNU Library General Public License v2 or later AND MIT License AND Microsoft Public License AND Apache License 2.0 AND BSD 3-clause "New" or "Revised" License AND Public Domain AND Unicode Character Database Terms Of Use)
fossil-scm 2.24: http://www.fossil-scm.org/ : BSD 2-clause "Simplified" License
Google C++ Testing Framework 1.10.0: https://github.com/google/googletest/ : BSD 3-clause "New" or "Revised" License
Google C++ Testing Framework 1.11.0: https://github.com/google/googletest/ : BSD 3-clause "New" or "Revised" License
Google Mock 1.10.0: http://code.google.com/p/googlemock/ : BSD 3-clause "New" or "Revised" License
Google Mock 1.11.0: http://code.google.com/p/googlemock/ : BSD 3-clause "New" or "Revised" License
google-re2 20220601: https://github.com/google/re2 : BSD 3-clause "New" or "Revised" License
gradle-plugins 2.9 : Apache License 2.0
grpc 1.44.0: https://github.com/grpc/grpc : Apache License 2.0
grpc 1.44.0 : Apache License 2.0
grpc 1.45.2 : Apache License 2.0
Intel Threading Building Blocks 2021.9.0: https://www.threadingbuildingblocks.org : Apache License 2.0
jbeder/yaml-cpp 0.7.0: https://github.com/jbeder/yaml-cpp : MIT License
jbeder/yaml-cpp 0.8.0: https://github.com/jbeder/yaml-cpp : MIT License
json11 20170620-snapshot-ec4e4521: https://github.com/dropbox/json11 : MIT License
JsonCpp 1.9.4: https://github.com/open-source-parsers/jsoncpp : MIT License
JsonCpp 1.9.5: https://github.com/open-source-parsers/jsoncpp : MIT License
JSON for Modern C++ 3.11.3: https://github.com/nlohmann/json : MIT License
libbpf 1.3.0 : (GNU Lesser General Public License v2.1 or later OR BSD 2-clause "Simplified" License)
libbpf v1.3.0: https://github.com/libbpf/libbpf : (GNU Lesser General Public License v2.1 only AND BSD 2-clause "Simplified" License)
libchromaprint0 1.5.1: https://acoustid.org/chromaprint : MIT License
libfalcosecurity0 0.14.1: https://github.com/falcosecurity/libs : Apache License 2.0
libgrpc-dev 1.44.0: http://www.grpc.io/ : Apache License 2.0
LibreOffice 7.4.0~alpha1: https://www.libreoffice.org/ : (GNU Library General Public License v2 or later OR GNU Lesser General Public License v3.0 or later OR GNU General Public License v2.0 or later OR GNU General Public License v3.0 or later)
libspatialindex 1.9.3: http://libspatialindex.github.com : GNU Lesser General Public License v2.1 or later
libtext-template-perl 1.58: https://metacpan.org/release/Text-Template/ : (Artistic License 1.0 OR GNU General Public License v1.0 or later)
LuaJIT 2.0.3: http://luajit.org/ : MIT License
LucenePlusPlus 3.0.8: http://luceneplusplus@googlegroups.com : (Apache License 2.0 OR GNU Lesser General Public License v3.0 or later)
oneapi-src/oneTBB v2021.9.0: https://software.intel.com/en-us/oneapi/onetbb : Apache License 2.0
onetbb 2021.3.0: https://github.com/oneapi-src/oneTBB : Apache License 2.0
OpenSSL 3.1.4: https://www.openssl.org : Apache License 2.0
picojson 1.3.0: https://github.com/kazuho/picojson : BSD 2-clause "Simplified" License
Protobuf 3.17.3: https://github.com/protocolbuffers/protobuf : BSD 3-clause "New" or "Revised" License
Protobuf 3.18.1: https://github.com/protocolbuffers/protobuf : BSD 3-clause "New" or "Revised" License
Protobuf/CPP 3.17.3: https://github.com/google/protobuf/ : BSD 3-clause "New" or "Revised" License
python-jsonschema v3.0.2: https://python-jsonschema.readthedocs.org : MIT License
ruby-grpc-tools 1.44.0: https://github.com/google/grpc/tree/master/src/ruby : Apache License 2.0
Symphony Agent Service Java Client 0.9.0 : Apache License 2.0
tcl8.6 8.6.15: http://www.tcl.tk/ : (Ayam License OR BSD 4-clause "Original" or "Old" License OR TCL/TK License)
tremotesf 2.4.0: https://github.com/equeim/tremotesf2 : MIT License
tristanpenman/valijson v0.6: https://github.com/tristanpenman/valijson : BSD 2-clause "Simplified" License
uthash v1.9.8: https://github.com/troydhanson/uthash : MIT License
valijson 0.6+repack: https://github.com/tristanpenman/valijson : BSD 2-clause "Simplified" License
winget-cli v1.2.10271: https://github.com/microsoft/winget-cli : MIT License
yaml-cpp 0.7.0: http://code.google.com/p/yaml-cpp/ : MIT License
yhirose/cpp-httplib v0.13.1: https://github.com/yhirose/cpp-httplib : MIT License
zlib v1.3.1: http://www.zlib.net/ : zlib License
Copyright Text:
Abseil 20220623.2 github:abseil/abseil-cpp:20220623.2: https://abseil.io/
No Copyrights found
c-ares 1.30.0 debian:c-ares/1.30.0-1: http://c-ares.haxx.se/
Copyright (c) 1998 Massachusetts Institute of Technology
Copyright (c) 2007 - 2023 Daniel Stenberg with many contributors, see AUTHORS file.
c-ares-static 1.31.0 alpine:c-ares-static/1.31.0-r0/x86_64
Copyright (c) 1998 Massachusetts Institute of Technology
Copyright (c) 2007 - 2023 Daniel Stenberg with many contributors, see AUTHORS file.
cockroachdb-c-protobuf 20170222-snapshot-32398479 github:cockroachdb/c-protobuf:323984796a7b4794ee62a00e12456743a5b66765: http://github.com/cockroachdb/c-protobuf/
Copyright 2008, Google Inc.
curl 8.4.0 alpine:curl-static/8.4.0-r0/riscv64: https://curl.se/
Copyright (c) 1996 - 2024, Daniel Stenberg, <daniel@haxx.se>, and many contributors, see the THANKS file.
curl 8.4.0 debian:curl/8.4.0-2: https://curl.se/
Copyright (c) 1996 - 2024, Daniel Stenberg, <daniel@haxx.se>, and many contributors, see the THANKS file.
cxxopts v3.0.0 debian:cxxopts/3.0.0-1: https://github.com/jarro2783/cxxopts
Copyright (c) 2014 Jarryd Beck
diginfra/testing 20240608-snapshot-5eba8003 github:diginfra/testing:5eba8003bd4d7a0dd4e0a0e516efcb951cc63159: https://github.com/diginfra/testing
No Copyrights found
elfutils 0.189 debian:elfutils/0.189-1: http://elfutils.org/
Copyright (C) 1989, 1991 Free Software Foundation, Inc.
embedded-postgres-binaries-darwin-amd64 13.5.0 maven:io.zonky.test.postgres:embedded-postgres-binaries-darwin-amd64:13.5.0
Copyright (c) 1996-2020, PostgreSQL Global Development Group
falcosecurity/falco 0.37.1 github:falcosecurity/falco:0.37.1: https://falco.org
Copyright 2019 The Falco Authors
falcosecurity/libs 0.14.3 github:falcosecurity/libs:0.14.3: https://github.com/falcosecurity/libs
Copyright 2019 The Falco Authors
fcitx 2.17.2102.102.1 fedora:fcitx5-mozc/2.17.2102.102.1-14.20211205git0ad3cf5.fc36/armv7hl: https://fcitx-im.org
Copyright (C) 1989, 1991 Free Software Foundation, Inc.
fossil-scm 2.24 ubuntu:fossil/1:2.24-6: http://www.fossil-scm.org/
Copyright 2007 D. Richard Hipp. All rights reserved.
Google C++ Testing Framework 1.10.0 debian:libgmock-dev/1.10.0-2/armhf: https://github.com/google/googletest/
Copyright 2008, Google Inc.
Google C++ Testing Framework 1.10.0 fedora:gtest-devel/1.10.0-4.fc34/aarch64: https://github.com/google/googletest/
Copyright 2008, Google Inc.
Google C++ Testing Framework 1.10.0 opensuse:googletest/1.10.0-1.4/aarch64: https://github.com/google/googletest/
Copyright 2008, Google Inc.
Google Mock 1.10.0 fedora:gmock-devel/1.10.0-6.fc35/i686: http://code.google.com/p/googlemock/
Copyright 2008, Google Inc.
Google Mock 1.11.0 fedora:gmock-devel/1.11.0-1.fc36/i686: http://code.google.com/p/googlemock/
Copyright 2008, Google Inc.
google-re2 20220601 fedora:re2-devel/1:20220601-2.fc38/aarch64: https://github.com/google/re2
Copyright (c) 2009 The RE2 Authors. All rights reserved.
google-re2 20220601 photon:re2/20220601-1.ph5/aarch64: https://github.com/google/re2
Copyright (c) 2009 The RE2 Authors. All rights reserved.
gradle-plugins 2.9 maven:org.gradle:gradle-plugins:2.9
Copyright 2012 the original author or authors.
grpc 1.44.0 alpine:grpc-dev/1.44.0-r0/riscv64
Copyright 2015-present gRPC Authors. All rights reserved.
grpc 1.44.0 debian:grpc/1.44.0-2: https://github.com/grpc/grpc
Copyright 2015-present gRPC Authors. All rights reserved.
grpc 1.45.2 alpine:grpc-dev/1.45.2-r1/riscv64
Copyright 2015-present gRPC Authors. All rights reserved.
Intel Threading Building Blocks 2021.9.0 debian:onetbb/2021.9.0-2: https://www.threadingbuildingblocks.org
Copyright (c) 2020 Intel Corporation
jbeder/yaml-cpp 0.7.0 opensuse:yaml-cpp/0.7.0-1.1/aarch64: https://github.com/jbeder/yaml-cpp
Copyright (c) 2008-2015 Jesse Beder.
JSON for Modern C++ 3.11.3 alpine:nlohmann-json/3.11.3-r0/noarch: https://github.com/nlohmann/json
Copyright (c) 2013-2022 Niels Lohmann
JSON for Modern C++ 3.11.3 debian:nlohmann-json3/3.11.3-1: https://github.com/nlohmann/json
Copyright (c) 2013-2022 Niels Lohmann
json11 20170620-snapshot-ec4e4521 github:dropbox/json11:ec4e45219af1d7cde3d58b49ed762376fccf1ace: https://github.com/dropbox/json11
Copyright (c) 2013 Dropbox, Inc.
JsonCpp 1.9.4 opensuse:jsoncpp-debugsource/1.9.4-1.4/s390x: https://github.com/open-source-parsers/jsoncpp
Copyright (c) 2007-2010 Baptiste Lepilleur and The JsonCpp Authors
JsonCpp 1.9.5 debian:libjsoncpp/1.9.5-5: https://github.com/open-source-parsers/jsoncpp
Copyright (c) 2007-2010 Baptiste Lepilleur and The JsonCpp Authors
JsonCpp 1.9.5 fedora:jsoncpp-devel/1.9.5-2.fc36/i686: https://github.com/open-source-parsers/jsoncpp
Copyright (c) 2007-2010 Baptiste Lepilleur and The JsonCpp Authors
libbpf 1.3.0 debian:libbpf/1.3.0-2
Copyright (c) 2015 The Libbpf Authors. All rights reserved.
libbpf v1.3.0 opensuse:libbpf-devel-static/1.3.0-slfo.1.1.4/aarch64: https://github.com/libbpf/libbpf
Copyright (c) 2015 The Libbpf Authors. All rights reserved.
libchromaprint0 1.5.1 ubuntu:chromaprint/1.5.1-6: https://acoustid.org/chromaprint
Copyright (C) 2010-2016 Lukas Lalinsky
libfalcosecurity0 0.14.1 debian:falcosecurity-scap-dkms/0.14.1-3/all: https://github.com/falcosecurity/libs
Copyright (C) 2023 The Falco Authors.
libfalcosecurity0 0.14.1 ubuntu:falcosecurity-libs/0.14.1-2ubuntu3: https://github.com/falcosecurity/libs
Copyright (C) 2023 The Falco Authors.
libgrpc-dev 1.44.0 debian:libgrpc-dev/1.44.0-3/i386: http://www.grpc.io/
Copyright 2015-present gRPC Authors. All rights reserved.
LibreOffice 7.4.0~alpha1 debian:libreoffice/1:7.4.0~alpha1-1: https://www.libreoffice.org/
libspatialindex 1.9.3 ubuntu:spatialindex/1.9.3-1: http://libspatialindex.github.com
Copyright (c) 2002, Marios Hadjieleftheriou
libtext-template-perl 1.58 ubuntu:libtext-template-perl/1.58-1: https://metacpan.org/release/Text-Template/
Copyright (c) 2013 by Mark Jason Dominus <mjd@cpan.org>.
LuaJIT 2.0.3 github:LuaJIT/LuaJIT:v2.0.3: http://luajit.org/
Copyright (C) 1994-2012 Lua.org, PUC-Rio. All rights reserved.
Copyright (C) 2005-2014 Mike Pall"
LucenePlusPlus 3.0.8 github:luceneplusplus/LucenePlusPlus:rel_3.0.8: http://luceneplusplus@googlegroups.com
Copyright (C) 1999 Tom Tromey
Copyright (C) 2000 Red Hat, Inc.
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
oneapi-src/oneTBB v2021.9.0 alpine:onetbb-dev/2021.9.0-r1/armv7: https://software.intel.com/en-us/oneapi/onetbb
Copyright (c) 2005-2023 Intel Corporation
onetbb 2021.3.0 conan:onetbb/2021.3.0@_/_#59d9b6d12f6a64b027ad342e1619808d:b759e10106fc0b4923414b05bb78eba0bbc8b30b#2a24a7ba9680188074d7020b41dd3b42: https://github.com/oneapi-src/oneTBB
No Copyrights found
OpenSSL 3.1.4 debian:openssl/3.1.4-2: https://www.openssl.org
Copyright (c) 1998-2023 The OpenSSL Project
Copyright (c) 1995-1998 Eric A. Young, Tim J. Hudson
picojson 1.3.0 opensuse:picojson/1.3.0-1.4/aarch64: https://github.com/kazuho/picojson
Copyright 2009-2010 Cybozu Labs, Inc.
Copyright 2011-2014 Kazuho Oku
Protobuf 3.17.3 github:protocolbuffers/protobuf:v3.17.3: https://github.com/protocolbuffers/protobuf
Copyright 2008 Google Inc.
Protobuf 3.18.1 alpine:protobuf-dev/3.18.1-r0/riscv64: https://github.com/protocolbuffers/protobuf
Copyright 2008 Google Inc.
Protobuf/CPP 3.17.3 debian:libprotobuf-dev/3.17.3-2/armel: https://github.com/google/protobuf/
Copyright 2008 Google Inc.
Protobuf/CPP 3.17.3 debian:libprotoc-dev/3.17.3-1/armhf: https://github.com/google/protobuf/
Copyright 2008 Google Inc. All rights reserved.
python-jsonschema v3.0.2 github:Julian/jsonschema:v3.0.2: https://python-jsonschema.readthedocs.org
Copyright (c) 2013 Julian Berman
ruby-grpc-tools 1.44.0 debian:ruby-grpc/1.44.0-3/armel: https://github.com/google/grpc/tree/master/src/ruby
Copyright 2016 gRPC authors.
Copyright: 2008, Google Inc.
Symphony Agent Service Java Client 0.9.0 maven:org.symphonyoss.symphony:symphony-agent-java-jersey2-client:0.9.0
Copyright 2016 The Symphony Software Foundation
tcl8.6 8.6.15 debian:tcl8.6/8.6.15+dfsg-1: http://www.tcl.tk/
No Copyrights found
tremotesf 2.4.0 ubuntu:tremotesf/2.4.0-1: https://github.com/equeim/tremotesf2
No Copyrights found
tristanpenman/valijson v0.6 github:tristanpenman/valijson:v0.6: https://github.com/tristanpenman/valijson
Copyright (c) 2016, Akamai Technolgies, Inc.
Copyright (c) 2016, Tristan Penman
uthash v1.9.8 github:troydhanson/uthash:v1.9.8: https://github.com/troydhanson/uthash
Copyright (c) 2005-2013, Troy D. Hanson http://troydhanson.github.com/uthash/
valijson 0.6+repack ubuntu:valijson/0.6+repack-2: https://github.com/tristanpenman/valijson
Copyright (c) 2016, Akamai Technolgies, Inc.
Copyright (c) 2016, Tristan Penman
winget-cli v1.2.10271 github:microsoft/winget-cli:v1.2.10271: https://github.com/microsoft/winget-cli
Copyright (c) Microsoft Corporation. All rights reserved.
yaml-cpp 0.7.0 fedora:yaml-cpp/0.7.0-4.fc39/i686: http://code.google.com/p/yaml-cpp/
Copyright (c) 2008-2015 Jesse Beder.
yhirose/cpp-httplib v0.13.1 fedora:cpp-httplib/0.13.1-1.fc38/i686: https://github.com/yhirose/cpp-httplib
Copyright (c) 2017 yhirose
zlib v1.3.1 opensuse:zlib/1.3.1-1.1/x86_64: http://www.zlib.net/
(C) 1995-2022 Jean-loup Gailly and Mark Adler
Licenses:
Apache License 2.0
(Abseil 20220623.2, embedded-postgres-binaries-darwin-amd64 13.5.0, falcosecurity/falco 0.37.1, falcosecurity/libs 0.14.3, fcitx 2.17.2102.102.1, gradle-plugins 2.9, grpc 1.44.0, grpc 1.45.2, Intel Threading Building Blocks 2021.9.0, libfalcosecurity0 0.14.1, libgrpc-dev 1.44.0, LucenePlusPlus 3.0.8, oneapi-src/oneTBB v2021.9.0, onetbb 2021.3.0, OpenSSL 3.1.4, ruby-grpc-tools 1.44.0, Symphony Agent Service Java Client 0.9.0)
Apache License
Version 2.0, January 2004
=========================
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction, and
distribution as defined by Sections 1 through 9 of this document.
"Licensor" shall mean the copyright owner or entity authorized by the copyright
owner that is granting the License.
"Legal Entity" shall mean the union of the acting entity and all other entities
that control, are controlled by, or are under common control with that entity.
For the purposes of this definition, "control" means (i) the power, direct or
indirect, to cause the direction or management of such entity, whether by
contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the
outstanding shares, or (iii) beneficial ownership of such entity.
"You" (or "Your") shall mean an individual or Legal Entity exercising permissions
granted by this License.
"Source" form shall mean the preferred form for making modifications, including
but not limited to software source code, documentation source, and configuration
files.
"Object" form shall mean any form resulting from mechanical transformation or
translation of a Source form, including but not limited to compiled object code,
generated documentation, and conversions to other media types.
"Work" shall mean the work of authorship, whether in Source or Object form, made
available under the License, as indicated by a copyright notice that is included
in or attached to the work (an example is provided in the Appendix below).
"Derivative Works" shall mean any work, whether in Source or Object form, that is
based on (or derived from) the Work and for which the editorial revisions,
annotations, elaborations, or other modifications represent, as a whole, an
original work of authorship. For the purposes of this License, Derivative Works
shall not include works that remain separable from, or merely link (or bind by
name) to the interfaces of, the Work and Derivative Works thereof.
"Contribution" shall mean any work of authorship, including the original version
of the Work and any modifications or additions to that Work or Derivative Works
thereof, that is intentionally submitted to Licensor for inclusion in the Work by
the copyright owner or by an individual or Legal Entity authorized to submit on
behalf of the copyright owner. For the purposes of this definition, "submitted"
means any form of electronic, verbal, or written communication sent to the
Licensor or its representatives, including but not limited to communication on
electronic mailing lists, source code control systems, and issue tracking systems
that are managed by, or on behalf of, the Licensor for the purpose of discussing
and improving the Work, but excluding communication that is conspicuously marked
or otherwise designated in writing by the copyright owner as "Not a
Contribution."
"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of
whom a Contribution has been received by Licensor and subsequently incorporated
within the Work.
2. Grant of Copyright License. Subject to the terms and conditions of this
License, each Contributor hereby grants to You a perpetual, worldwide,
non-exclusive, no-charge, royalty-free, irrevocable copyright license to
reproduce, prepare Derivative Works of, publicly display, publicly perform,
sublicense, and distribute the Work and such Derivative Works in Source or Object
form.
3. Grant of Patent License. Subject to the terms and conditions of this License,
each Contributor hereby grants to You a perpetual, worldwide, non-exclusive,
no-charge, royalty-free, irrevocable (except as stated in this section) patent
license to make, have made, use, offer to sell, sell, import, and otherwise
transfer the Work, where such license applies only to those patent claims
licensable by such Contributor that are necessarily infringed by their
Contribution(s) alone or by combination of their Contribution(s) with the Work to
which such Contribution(s) was submitted. If You institute patent litigation
against any entity (including a cross-claim or counterclaim in a lawsuit)
alleging that the Work or a Contribution incorporated within the Work constitutes
direct or contributory patent infringement, then any patent licenses granted to
You under this License for that Work shall terminate as of the date such
litigation is filed.
4. Redistribution. You may reproduce and distribute copies of the Work or
Derivative Works thereof in any medium, with or without modifications, and in
Source or Object form, provided that You meet the following conditions:
a. You must give any other recipients of the Work or Derivative Works a copy of
this License; and
b. You must cause any modified files to carry prominent notices stating that
You changed the files; and
c. You must retain, in the Source form of any Derivative Works that You
distribute, all copyright, patent, trademark, and attribution notices from
the Source form of the Work, excluding those notices that do not pertain to
any part of the Derivative Works; and
d. If the Work includes a "NOTICE" text file as part of its distribution, then
any Derivative Works that You distribute must include a readable copy of the
attribution notices contained within such NOTICE file, excluding those
notices that do not pertain to any part of the Derivative Works, in at least
one of the following places: within a NOTICE text file distributed as part of
the Derivative Works; within the Source form or documentation, if provided
along with the Derivative Works; or, within a display generated by the
Derivative Works, if and wherever such third-party notices normally appear.
The contents of the NOTICE file are for informational purposes only and do
not modify the License. You may add Your own attribution notices within
Derivative Works that You distribute, alongside or as an addendum to the
NOTICE text from the Work, provided that such additional attribution notices
cannot be construed as modifying the License.
You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
5. Submission of Contributions. Unless You explicitly state otherwise, any
Contribution intentionally submitted for inclusion in the Work by You to the
Licensor shall be under the terms and conditions of this License, without any
additional terms or conditions. Notwithstanding the above, nothing herein shall
supersede or modify the terms of any separate license agreement you may have
executed with Licensor regarding such Contributions.
6. Trademarks. This License does not grant permission to use the trade names,
trademarks, service marks, or product names of the Licensor, except as required
for reasonable and customary use in describing the origin of the Work and
reproducing the content of the NOTICE file.
7. Disclaimer of Warranty. Unless required by applicable law or agreed to in
writing, Licensor provides the Work (and each Contributor provides its
Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the
appropriateness of using or redistributing the Work and assume any risks
associated with Your exercise of permissions under this License.
8. Limitation of Liability. In no event and under no legal theory, whether in
tort (including negligence), contract, or otherwise, unless required by
applicable law (such as deliberate and grossly negligent acts) or agreed to in
writing, shall any Contributor be liable to You for damages, including any
direct, indirect, special, incidental, or consequential damages of any character
arising as a result of this License or out of the use or inability to use the
Work (including but not limited to damages for loss of goodwill, work stoppage,
computer failure or malfunction, or any and all other commercial damages or
losses), even if such Contributor has been advised of the possibility of such
damages.
9. Accepting Warranty or Additional Liability. While redistributing the Work or
Derivative Works thereof, You may choose to offer, and charge a fee for,
acceptance of support, warranty, indemnity, or other liability obligations and/or
rights consistent with this License. However, in accepting such obligations, You
may act only on Your own behalf and on Your sole responsibility, not on behalf of
any other Contributor, and only if You agree to indemnify, defend, and hold each
Contributor harmless for any liability incurred by, or claims asserted against,
such Contributor by reason of your accepting any such warranty or additional
liability.
END OF TERMS AND CONDITIONS
APPENDIX: How to apply the Apache License to your work
To apply the Apache License to your work, attach the following boilerplate
notice, with the fields enclosed by brackets "[]" replaced with your own
identifying information. (Don't include the brackets!) The text should be
enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within
third-party archives.
Copyright [yyyy] [name of copyright owner] Licensed under the Apache License,
Version 2.0 (the "License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law
or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
---
Artistic License 1.0
(libtext-template-perl 1.58)
The Artistic License
====================
Preamble
The intent of this document is to state the conditions under which a Package may
be copied, such that the Copyright Holder maintains some semblance of artistic
control over the development of the package, while giving the users of the
package the right to use and distribute the Package in a more-or-less customary
fashion, plus the right to make reasonable modifications.
Definitions:
* "Package" refers to the collection of files distributed by the Copyright
Holder, and derivatives of that collection of files created through textual
modification.
* "Standard Version" refers to such a Package if it has not been modified, or
has been modified in accordance with the wishes of the Copyright Holder.
* "Copyright Holder" is whoever is named in the copyright or copyrights for the
package.
* "You" is you, if you're thinking about copying or distributing this Package.
* "Reasonable copying fee" is whatever you can justify on the basis of media
cost, duplication charges, time of people involved, and so on. (You will not
be required to justify it to the Copyright Holder, but only to the computing
community at large as a market that must bear the fee.)
* "Freely Available" means that no fee is charged for the item itself, though
there may be fees involved in handling the item. It also means that
recipients of the item may redistribute it under the same conditions they
received it.
1. You may make and give away verbatim copies of the source form of the Standard
Version of this Package without restriction, provided that you duplicate all of
the original copyright notices and associated disclaimers.
2. You may apply bug fixes, portability fixes and other modifications derived
from the Public Domain or from the Copyright Holder. A Package modified in such a
way shall still be considered the Standard Version.
3. You may otherwise modify your copy of this Package in any way, provided that
you insert a prominent notice in each changed file stating how and when you
changed that file, and provided that you do at least ONE of the following:
a) place your modifications in the Public Domain or otherwise make them
Freely Available, such as by posting said modifications to Usenet or an
equivalent medium, or placing the modifications on a major archive site
such as ftp.uu.net, or by allowing the Copyright Holder to include your
modifications in the Standard Version of the Package.
b) use the modified Package only within your corporation or organization.
c) rename any non-standard executables so the names do not conflict with
standard executables, which must also be provided, and provide a separate
manual page for each non-standard executable that clearly documents how it
differs from the Standard Version.
d) make other distribution arrangements with the Copyright Holder.
4. You may distribute the programs of this Package in object code or executable
form, provided that you do at least ONE of the following:
a) distribute a Standard Version of the executables and library files,
together with instructions (in the manual page or equivalent) on where to
get the Standard Version.
b) accompany the distribution with the machine-readable source of the
Package with your modifications.
c) accompany any non-standard executables with their corresponding Standard
Version executables, giving the non-standard executables non-standard
names, and clearly documenting the differences in manual pages (or
equivalent), together with instructions on where to get the Standard
Version.
d) make other distribution arrangements with the Copyright Holder.
5. You may charge a reasonable copying fee for any distribution of this Package.
You may charge any fee you choose for support of this Package. You may not charge
a fee for this Package itself. However, you may distribute this Package in
aggregate with other (possibly commercial) programs as part of a larger (possibly
commercial) software distribution provided that you do not advertise this Package
as a product of your own.
6. The scripts and library files supplied as input to or produced as output from
the programs of this Package do not automatically fall under the copyright of
this Package, but belong to whomever generated them, and may be sold
commercially, and may be aggregated with this Package.
7. C or perl subroutines supplied by you and linked into this Package shall not
be considered part of this Package.
8. The name of the Copyright Holder may not be used to endorse or promote
products derived from this software without specific prior written permission.
9. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
The End
---
Ayam License
(tcl8.6 8.6.15)
ayamLicense
===========
This software is copyrighted (c) 1998-2004 by Randolf Schultz (rschultz@informatik.uni-rostock.de). All rights reserved.
The following terms apply to all files associated with the software unless explicitly disclaimed in individual files.
The author hereby grants permission to use, copy, modify, distribute, and license this software and its documentation for any purpose, provided that existing copyright notices are retained in all copies and that this notice is included
verbatim in any distributions. No written agreement, license, or royalty fee is required for any of the authorized uses. Modifications to this software may be copyrighted by their authors and need not follow the licensing terms described here, provided that the new terms are clearly indicated on the first page of each file where they apply.
IN NO EVENT SHALL THE AUTHOR OR DISTRIBUTORS BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY DERIVATIVES THEREOF, EVEN IF THE AUTHOR
HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
THE AUTHOR AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHOR AND DISTRIBUTORS HAVE NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
---
BSD 2-clause "Simplified" License
(fossil-scm 2.24, libbpf 1.3.0, libbpf v1.3.0, picojson 1.3.0, tristanpenman/valijson v0.6, valijson 0.6+repack)
BSD Two Clause License
======================
Copyright <YEAR> <COPYRIGHT HOLDER>
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
---
BSD 3-clause "New" or "Revised" License
(cockroachdb-c-protobuf 20170222-snapshot-32398479, fcitx 2.17.2102.102.1, Google C++ Testing Framework 1.10.0, Google C++ Testing Framework 1.11.0, Google Mock 1.10.0, Google Mock 1.11.0, google-re2 20220601, Protobuf 3.17.3, Protobuf 3.18.1, Protobuf/CPP 3.17.3)
Copyright (c) <YEAR>, <OWNER>
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of the <ORGANIZATION> nor the names of its contributors
may be used to endorse or promote products derived from this software
without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
---
BSD 4-clause "Original" or "Old" License
(tcl8.6 8.6.15)
Copyright (c) <year>, <copyright holder>
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
1) Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
2) Redistributions in binary form must reproduce the above copyright notice, this
list of conditions and the following disclaimer in the documentation and/or other
materials provided with the distribution.
3) All advertising materials mentioning features or use of this software must
display the following acknowledgement:
This product includes software developed by the organization.
4) Neither the name of the organization nor the names of its contributors may be
used to endorse or promote products derived from this software without specific
prior written permission.
THIS SOFTWARE IS PROVIDED BY COPYRIGHT HOLDER ''AS IS'' AND ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
SHALL {{COPYRIGHT HOLDER}} BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
DAMAGE.
---
GNU General Public License v1.0 or later
(libtext-template-perl 1.58)
"This program is free software; you can redistribute it and/or modify it under
the terms of version 1 of the GNU General Public License as published by the Free
Software Foundation."
GNU GENERAL PUBLIC LICENSE
Version 1, February 1989
==========================
Copyright (C) 1989 Free Software Foundation, Inc. 675 Mass Ave, Cambridge, MA
02139, USA
Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.
Preamble
The license agreements of most software companies try to keep users at the mercy of those companies. By contrast, our General Public License is intended to
guarantee your freedom to share and change free software--to make sure the software is free for all its users. The General Public License applies to the Free Software Foundation's software and to any other program whose authors commit to using it. You can use it for your programs, too.
When we speak of free software, we are referring to freedom, not price.
Specifically, the General Public License is designed to make sure that you have the freedom to give away or sell copies of free software, that you receive source
code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things.
To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the
software, or if you modify it.
For example, if you distribute copies of a such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must tell them their rights.
We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software.
Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to
know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations.
The precise terms and conditions for copying, distribution and modification
follow.
GNU GENERAL PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
1. This License Agreement applies to any program or other work which contains
a notice placed by the copyright holder saying it may be distributed under
the terms of this General Public License. The "Program", below, refers to any
such program or work, and a "work based on the Program" means either the
Program or any work containing the Program or a portion of it, either
verbatim or with modifications. Each licensee is addressed as "you".
2. You may copy and distribute verbatim copies of the Program's source code as
you receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice and
disclaimer of warranty; keep intact all the notices that refer to this
General Public License and to the absence of any warranty; and give any other
recipients of the Program a copy of this General Public License along with
the Program. You may charge a fee for the physical act of transferring a
copy.
3. You may modify your copy or copies of the Program or any portion of it, and
copy and distribute such modifications under the terms of Paragraph 1 above,
provided that you also do the following:
a. cause the modified files to carry prominent notices stating that you
changed the files and the date of any change; and
b. cause the whole of any work that you distribute or publish, that in
whole or in part contains the Program or any part thereof, either with or
without modifications, to be licensed at no charge to all third parties
under the terms of this General Public License (except that you may
choose to grant warranty protection to some or all third parties, at your
option).
c. If the modified program normally reads commands interactively when run,
you must cause it, when started running for such interactive use in the
simplest and most usual way, to print or display an announcement
including an appropriate copyright notice and a notice that there is no
warranty (or else, saying that you provide a warranty) and that users may
redistribute the program under these conditions, and telling the user how
to view a copy of this General Public License.
d. You may charge a fee for the physical act of transferring a copy, and
you may at your option offer warranty protection in exchange for a fee.
Mere aggregation of another independent work with the Program (or its
derivative) on a volume of a storage or distribution medium does not bring
the other work under the scope of these terms.
4. You may copy and distribute the Program (or a portion or derivative of it,
under Paragraph 2) in object code or executable form under the terms of
Paragraphs 1 and 2 above provided that you also do one of the following:
a. accompany it with the complete corresponding machine-readable source
code, which must be distributed under the terms of Paragraphs 1 and 2
above; or,
b. accompany it with a written offer, valid for at least three years, to
give any third party free (except for a nominal charge for the cost of
distribution) a complete machine-readable copy of the corresponding
source code, to be distributed under the terms of Paragraphs 1 and 2
above; or,
c. accompany it with the information you received as to where the
corresponding source code may be obtained. (This alternative is allowed
only for noncommercial distribution and only if you received the program
in object code or executable form alone.)
Source code for a work means the preferred form of the work for making
modifications to it. For an executable file, complete source code means all
the source code for all modules it contains; but, as a special exception, it
need not include source code for modules which are standard libraries that
accompany the operating system on which the executable file runs, or for
standard header files or definitions files that accompany that operating
system.
5. You may not copy, modify, sublicense, distribute or transfer the Program
except as expressly provided under this General Public License. Any attempt
otherwise to copy, modify, sublicense, distribute or transfer the Program is
void, and will automatically terminate your rights to use the Program under
this License. However, parties who have received copies, or rights to use
copies, from you under this General Public License will not have their
licenses terminated so long as such parties remain in full compliance.
6. By copying, distributing or modifying the Program (or any work based on the
Program) you indicate your acceptance of this license to do so, and all its
terms and conditions.
7. Each time you redistribute the Program (or any work based on the Program),
the recipient automatically receives a license from the original licensor to
copy, distribute or modify the Program subject to these terms and conditions.
You may not impose any further restrictions on the recipients' exercise of
the rights granted herein.
8. The Free Software Foundation may publish revised and/or new versions of the
General Public License from time to time. Such new versions will be similar
in spirit to the present version, but may differ in detail to address new
problems or concerns.
Each version is given a distinguishing version number. If the Program
specifies a version number of the license which applies to it and "any later
version", you have the option of following the terms and conditions either of
that version or of any later version published by the Free Software
Foundation. If the Program does not specify a version number of the license,
you may choose any version ever published by the Free Software Foundation.
9. If you wish to incorporate parts of the Program into other free programs
whose distribution conditions are different, write to the author to ask for
permission. For software which is copyrighted by the Free Software
Foundation, write to the Free Software Foundation; we sometimes make
exceptions for this. Our decision will be guided by the two goals of
preserving the free status of all derivatives of our free software and of
promoting the sharing and reuse of software generally.
NO WARRANTY
9. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR
THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE
STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE
PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED,
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND
PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE,
YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
10. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL
ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE
OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR
DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR
A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH
HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
END OF TERMS AND CONDITIONS
Appendix: How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest possible use
to humanity, the best way to achieve this is to make it free software which
everyone can redistribute and change under these terms.
To do so, attach the following notices to the program. It is safest to attach
them to the start of each source file to most effectively convey the exclusion of
warranty; and each file should have at least the "copyright" line and a pointer
to where the full notice is found.
Copyright (C) 19yy
This program is free software; you can redistribute it and/or modify it under the
terms of the GNU General Public License as published by the Free Software
Foundation; either version 1, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this
program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave,
Cambridge, MA 02139, USA.
Also add information on how to contact you by electronic and paper mail.
If the program is interactive, make it output a short notice like this when it
starts in an interactive mode:
Gnomovision version 69, Copyright (C) 19xx name of author Gnomovision comes with
ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you
are welcome to redistribute it under certain conditions; type `show c' for
details.
The hypothetical commands `show w' and `show c' should show the appropriate parts
of the General Public License. Of course, the commands you use may be called
something other than `show w' and `show c'; they could even be mouse-clicks or
menu items--whatever suits your program.
You should also get your employer (if you work as a programmer) or your school,
if any, to sign a "copyright disclaimer" for the program, if necessary. Here a
sample; alter the names:
Yoyodyne, Inc., hereby disclaims all copyright interest in the program
`Gnomovision' (a program to direct compilers to make passes at assemblers)
written by James Hacker.
, 1 April 1989 Ty Coon, President of Vice
That's all there is to it!
---
GNU General Public License v2.0 or later
(LibreOffice 7.4.0~alpha1)
The GNU General Public License (GPL)
====================================
Version 2, June 1991
--------------------
Copyright (C) 1989, 1991 Free Software Foundation, Inc.
59 Temple Place, Suite 330, Boston, MA 02111-1307 USAEveryone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
The licenses for most software are designed to take away your freedom to share
and change it. By contrast, the GNU General Public License is intended to
guarantee your freedom to share and change free software--to make sure the
software is free for all its users. This General Public License applies to most
of the Free Software Foundation's software and to any other program whose authors
commit to using it. (Some other Free Software Foundation software is covered by
the GNU Library General Public License instead.) You can apply it to your
programs, too.
When we speak of free software, we are referring to freedom, not price. Our
General Public Licenses are designed to make sure that you have the freedom to
distribute copies of free software (and charge for this service if you wish),
that you receive source code or can get it if you want it, that you can change
the software or use pieces of it in new free programs; and that you know you can
do these things.
To protect your rights, we need to make restrictions that forbid anyone to deny
you these rights or to ask you to surrender the rights. These restrictions
translate to certain responsibilities for you if you distribute copies of the
software, or if you modify it.
For example, if you distribute copies of such a program, whether gratis or for a
fee, you must give the recipients all the rights that you have. You must make
sure that they, too, receive or can get the source code. And you must show them
these terms so they know their rights.
We protect your rights with two steps: (1) copyright the software, and (2) offer
you this license which gives you legal permission to copy, distribute and/or
modify the software.
Also, for each author's protection and ours, we want to make certain that
everyone understands that there is no warranty for this free software. If the
software is modified by someone else and passed on, we want its recipients to
know that what they have is not the original, so that any problems introduced by
others will not reflect on the original authors' reputations.
Finally, any free program is threatened constantly by software patents. We wish
to avoid the danger that redistributors of a free program will individually
obtain patent licenses, in effect making the program proprietary. To prevent
this, we have made it clear that any patent must be licensed for everyone's free
use or not licensed at all.
The precise terms and conditions for copying, distribution and modification
follow.
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
1. This License applies to any program or other work which contains a notice
placed by the copyright holder saying it may be distributed under the terms
of this General Public License. The "Program", below, refers to any such
program or work, and a "work based on the Program" means either the Program
or any derivative work under copyright law: that is to say, a work containing
the Program or a portion of it, either verbatim or with modifications and/or
translated into another language. (Hereinafter, translation is included
without limitation in the term "modification".) Each licensee is addressed as
"you".
Activities other than copying, distribution and modification are not covered
by this License; they are outside its scope. The act of running the Program
is not restricted, and the output from the Program is covered only if its
contents constitute a work based on the Program (independent of having been
made by running the Program). Whether that is true depends on what the
Program does.
2. You may copy and distribute verbatim copies of the Program's source code as
you receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice and
disclaimer of warranty; keep intact all the notices that refer to this
License and to the absence of any warranty; and give any other recipients of
the Program a copy of this License along with the Program.
You may charge a fee for the physical act of transferring a copy, and you may
at your option offer warranty protection in exchange for a fee.
3. You may modify your copy or copies of the Program or any portion of it, thus
forming a work based on the Program, and copy and distribute such
modifications or work under the terms of Section 1 above, provided that you
also meet all of these conditions:
a. You must cause the modified files to carry prominent notices stating
that you changed the files and the date of any change.
b. You must cause any work that you distribute or publish, that in whole or
in part contains or is derived from the Program or any part thereof, to
be licensed as a whole at no charge to all third parties under the terms
of this License.
c. If the modified program normally reads commands interactively when run,
you must cause it, when started running for such interactive use in the
most ordinary way, to print or display an announcement including an
appropriate copyright notice and a notice that there is no warranty (or
else, saying that you provide a warranty) and that users may redistribute
the program under these conditions, and telling the user how to view a
copy of this License. (Exception: if the Program itself is interactive
but does not normally print such an announcement, your work based on the
Program is not required to print an announcement.)
These requirements apply to the modified work as a whole. If identifiable
sections of that work are not derived from the Program, and can be reasonably
considered independent and separate works in themselves, then this License,
and its terms, do not apply to those sections when you distribute them as
separate works. But when you distribute the same sections as part of a whole
which is a work based on the Program, the distribution of the whole must be
on the terms of this License, whose permissions for other licensees extend to
the entire whole, and thus to each and every part regardless of who wrote it.
Thus, it is not the intent of this section to claim rights or contest your
rights to work written entirely by you; rather, the intent is to exercise the
right to control the distribution of derivative or collective works based on
the Program.
In addition, mere aggregation of another work not based on the Program with
the Program (or with a work based on the Program) on a volume of a storage or
distribution medium does not bring the other work under the scope of this
License.
4. You may copy and distribute the Program (or a work based on it, under
Section 2) in object code or executable form under the terms of Sections 1
and 2 above provided that you also do one of the following:
a. Accompany it with the complete corresponding machine-readable source
code, which must be distributed under the terms of Sections 1 and 2 above
on a medium customarily used for software interchange; or,
b. Accompany it with a written offer, valid for at least three years, to
give any third party, for a charge no more than your cost of physically
performing source distribution, a complete machine-readable copy of the
corresponding source code, to be distributed under the terms of Sections
1 and 2 above on a medium customarily used for software interchange; or,
c. Accompany it with the information you received as to the offer to
distribute corresponding source code. (This alternative is allowed only
for noncommercial distribution and only if you received the program in
object code or executable form with such an offer, in accord with
Subsection b above.)
The source code for a work means the preferred form of the work for making
modifications to it. For an executable work, complete source code means all
the source code for all modules it contains, plus any associated interface
definition files, plus the scripts used to control compilation and
installation of the executable. However, as a special exception, the source
code distributed need not include anything that is normally distributed (in
either source or binary form) with the major components (compiler, kernel,
and so on) of the operating system on which the executable runs, unless that
component itself accompanies the executable.
If distribution of executable or object code is made by offering access to
copy from a designated place, then offering equivalent access to copy the