-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathLicense.html
1238 lines (1164 loc) · 62.6 KB
/
License.html
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
<!DOCTYPE html>
<html lang="en">
<body>
<h3>License for ST BlueST-SDK Library:</h3>
<pre>
SLA0068 Rev1/17-Mar-2016
Software license agreement
PRODUCTION LIMITED LICENSE AGREEMENT FOR ST MATERIALS
IMPORTANT-READ CAREFULLY:
This Production Limited License Agreement ("PLLA") for ST materials is made between you on behalf of yourself or on behalf of any entity by which you are employed or engaged (collectively referred to in this PLLA as "You" or “Licensee”) and STMicroelectronics International NV, a company incorporated under the laws of the Netherlands acting for the purpose of this PLLA through its Swiss branch located at 39, Chemin du Champ des Filles, 1228 Plan-les-Ouates, Geneva, Switzerland (hereinafter “ST”). Affiliates shall mean any corporation, partnership, or other entity that, directly or indirectly, owns, is owned by, or is under common ownership with ST, for so long as such ownership exists. For the purposes of the foregoing, "own", "owned," or "ownership" shall mean ownership of more than fifty percent (50%) of the stock or other equity interests entitled to vote for the election of directors or an equivalent governing body.
The ST materials licensed under this PLLA shall mean the software made available by ST and/or its Affiliates upon agreeing to this PLLA, including any associated Documentation (collectively the “Licensed Materials”). Documentation shall mean and include any comments, annotations, instructions, manuals, and other materials, whether in printed or electronic form, including without limitation installation manuals, user’s guides, and programmer guides, related to any software made available under this PLLA. The Licensed Materials include any software updates, and supplements that ST and/or its Affiliates may provide You or make available to You after the date You obtain the Licensed Materials to the extent that such items are not accompanied by a separate license agreement or other terms of use.
THE LICENSED MATERIALS ARE LICENSED TO YOU ON THE CONDITION THAT YOU ACCEPT ALL THE TERMS AND CONDITIONS OF THIS PLLA. BY CLICKING ON THE "I ACCEPT" BUTTON OR BY INSTALLING, COPYING, DOWNLOADING, ACCESSING OR OTHERWISE USING THE LICENSED MATERIALS, YOU AGREE TO BE BOUND BY THE TERMS OF THIS PLLA. IF YOU DO NOT AGREE WITH ANY CONDITION OF THIS PLLA, DO NOT INSTALL, ACCESS OR USE THE LICENSED MATERIALS.
1. LIMITED LICENSE
Subject to the terms and conditions of this PLLA and applicable Open Source Terms (as defined hereafter) and during the term of this PLLA, ST hereby grants You under intellectual property rights owned by ST and its Affiliates or under which ST and its Affiliates has the right to grant a license, a worldwide, non-exclusive, non-transferable, royalty-free license, without the right to sub-license (except as expressly stipulated herein or authorized in writing by an authorized representative of ST):
(i) to use, reproduce and modify (to the extent delivered to You in source code) the Licensed Materials for the sole purpose of and to the extent necessary to create a software or hardware application (“Licensee Product”) embedding the Licensed Materials, provided always that the Licensed Materials execute solely and exclusively on, or in conjunction with an integrated circuit manufactured by or for ST or its Affiliates (“ST Product”);
(ii) to distribute the Licensed Materials to third parties in the same code form only as delivered to You by ST and only as embedded in the Licensee Product (and not as a standalone product) provided always that the Licensed Materials execute solely and exclusively on, or in conjunction with ST Product and grant such third parties sublicenses of the rights granted to You in subsections 1 (i) and (ii). You will enter into an agreement with such third parties which limit use of the Licensed Materials to no more than is allowed for under this PLLA. Upon request, You shall provide ST with requested contact information of third parties to whom you distributed the Licensed Materials and confirm in writing that such agreements with such third parties are in place.
(iii) to use the Documentation solely to support and exercise the rights granted under this article 1 and to copy, modify and/or create derivative works from the Documentation, but only for the purpose of creating technically accurate subsets and supersets thereof or by translating it into other languages or otherwise creating technically accurate localized versions thereof – and distributing such Documentation and modifications and/or derivative works only with Licensee Product.
Subject to all limitations described herein, You are authorized to have third party contractors exercise for You and on your behalf the license rights as set forth above. You are fully responsible vis-à-vis ST for any act or omission of Your contractors and any breach by Your contractors shall be deemed a breach by You hereunder.
You acknowledge that the Licensed Materials have not been specifically designed to meet your individual requirements and that You have all information necessary to evaluate whether the Licensed Materials meet your requirements or not, and will be suitable for your intended use or application. Therefore the Licensed Materials shall be deemed accepted upon delivery to Licensee. You shall use, at your own risk, the Licensed Materials. You acknowledge that ST and its Affiliates cannot in any way be held responsible for the consequences resulting from use of the Licensed Materials and any development made following such use of the Licensed Materials. Notwithstanding anything to the contrary herein, You are not authorized to sublicense to or have used the Licensed Materials by a competitor of ST.
Licensed Materials are not specifically designed for use in safety critical applications such as life supporting devices or systems, and nuclear, automotive or aerospace applications or environments. ST and its Affiliates expressly disclaim any responsibility for such usage which shall be made by You at your sole risk, even if ST and its Affiliates have been informed You in writing of such usage. You acknowledge and agree to be solely responsible for regulatory and safety related requirements concerning Licensee Products and any claim arising from incorporation of the Licensed Materials in any application or system where failure of the Licensed Materials could lead to death or personal injury.
2. RESTRICTIONS AND ADDITIONAL OBLIGATIONS
Unless otherwise expressly stipulated under Article 1, You shall not, and shall not permit any third party to: (i) copy, reproduce or duplicate the Licensed Materials; (ii) translate, modify, adapt, decompile, disassemble or reverse engineer and make derivative works of all or any portion of the Licensed Materials; (iii) rent, disclose, publish, sell, assign, lease, lend, sublicense, market, transfer, distribute or otherwise provide third parties access to (any portion of) the Licensed Materials for any purpose; (iv) attempt to derive the source code, algorithmic nature or structure of any object code portions of the Licensed Materials; (v) use the Licensed Materials to create any product that competes with the Licensed Materials or ST Products; (vi) remove or circumvent any protection or other restrictive technology mechanism of the Licensed Materials or ST Products; (vii) disclose the results of the Licensed Materials’ performance benchmarks to any third party; or (viii) otherwise use (any portion of) the Licensed Materials in any manner not expressly authorized by this PLLA.
Other than the limited expressed license granted to You under Article 1 herein, no other rights or licenses are granted, or implied by estoppel or otherwise, under any intellectual property rights of ST and/or its Affiliates or any intellectual property of a third-party residing in the Licensed Materials or any other confidential information furnished by ST and its Affiliates, including (i) for the combination of such Licensed Materials or other confidential information with one or more other items (including items acquired from ST and/or its Affiliates) even if such items have no substantial use other than as part of such combination (ii) with respect to any trademark, trade or brand name, a corporate name of ST and/or its Affiliates, or any other name or mark, or contraction abbreviation or simulation thereof, (iii) under any intellectual property rights covering any standard set by a standard setting body and any de facto standards.
ST and its Affiliates have no obligation to provide You with maintenance, support or updates for the Licensed Materials. Nothing in this PLLA will be construed as: (i) a warranty or representation by ST and its Affiliates to maintain production of any ST software or ST Product with which the Licensed Materials may be used in any manner; and (ii) a commitment from ST and its Affiliates to bring or prosecute actions against third-parties for infringement.
You shall limit access and use of the Licensed Materials to You and those individuals who may be employed by You who have a need to access the Licensed Materials for the purpose of this PLLA and provided that You shall ensure that such individuals shall comply with the provisions of this PLLA, and except as expressly permitted under Article 1 or as otherwise expressly agreed in writing by ST, You shall not allow any third-party to use the Licensed Materials, You shall be liable towards ST for any damages due to a failure by such third-party(ies) to comply with the provisions of this PLLA.
3. OWNERSHIP, COPYRIGHTS AND TRADEMARKS
The Licensed Materials are and will remain the exclusive property of ST and/or its Affiliates or its licensors, whether or not specifically recognized or perfected under the laws of the country where the Licensed Materials are used. You will not take any action that jeopardizes ST and its Affiliates or its licensors' proprietary rights or acquire any rights in the Licensed Materials, except the limited rights specified in Article 1.
All rights, titles, and interests in and to the Licensed Materials are owned or licensed by ST, its Affiliates and suppliers. You shall ensure that all notices, including but not limited to all copyright and trademark notices of ST or its Affiliates or licensors are reproduced in any copy of the whole or any part of the Licensed Materials. You shall not remove, modify or alter any ST or its Affiliates’ or licensors’ copyright or trademark notice from any part of the Licensed Materials.
4. CONFIDENTIALITY
Confidential information shall include all information provided with the Licensed Materials which (a) is designated as “confidential”, “proprietary” or with a similar legend, (b) is by its own nature of a type which would reasonably be considered confidential and/or © is source code (“Confidential Information”). You may only use the Confidential Information for the purpose of this PLLA and shall protect the confidentiality of the Confidential Information provided by ST and its Affiliates under this PLLA by using the same degree of care, but not less than a reasonable degree of care, to prevent its unauthorized use, dissemination, or publication as You use to protect your own confidential information of like nature.
You shall be liable towards ST for any damages incurred due to a failure by any employee, third party contractor or customer having access to the Licensed Materials and/or the Confidential Information to comply with the provisions in this PLLA. You shall immediately notify ST of any unauthorised use or disclosure of, or of any unauthorised access to, or of any theft or loss of the Licensed Materials or Confidential Information or part thereof, which comes to your notice.
The confidentiality obligations shall not apply to Confidential Information, which can be shown by documentary evidence: (i) entered the public domain through no fault of the Licensee; or, (ii) was known to the Licensee prior to receipt from ST and its Affiliates; or, (iii) was disclosed to the Licensee by a third party having the right to disclose; or, (iv) was independently developed by the Licensee without use of the Licensed Materials or the Confidential Information, the onus of proof of independence being on the Licensee.
These confidentiality obligations shall survive any termination or expiration of the PLLA for whatever cause.
5. DISCLAIMER OF WARRANTY
YOU ACKNOWLEDGE THAT THE LICENSED MATERIALS AND ANY AND ALL PARTS THEREOF ARE PROVIDED “AS IS”. ST AND ITS AFFILIATE MAKE NO REPRESENTATIONS OR WARRANTIES WITH RESPECT TO THE LICENSED MATERIALS AND OR PARTS THEREOF WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING BUT NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. SPECIFICALLY, WITHOUT LIMITING THE GENERALITY OF THE FOREGOING, ST AND ITS AFFILIATES MAKE NO REPRESENTATION OR WARRANTY THAT (I) THE USE AND DISTRIBUTION OF THE LICENSED MATERIALS AND OR PARTS THEREOF WILL BE UNINTERRUPTED OR ERROR FREE, AND OR (II) ANY USE AND DISTRIBUTION OF THE LICENSED MATERIALS AND OR PARTS THEREOF, WHETHER INTEGRATED INTO OTHER EQUIPMENT OR NOT, ARE FREE FROM INFRINGEMENT OF ANY THIRD PARTY INTELLECTUAL PROPERTY RIGHTS. IT SHALL BE YOUR SOLE RESPONSIBILITY TO MAKE SUCH DETERMINATION AS NECESSARY WITH RESPECT TO THE ACQUISITION OF LICENSES UNDER PATENTS AND OTHER INTELLECTUAL PROPERTY RIGHTS OF THIRD PARTIES. CONSEQUENTLY, ST AND ITS AFFILIATES DISCLAIM ANY LIABILITY IN CASE ANY SUCH USE AND DISTRIBUTION INFRINGE ANY THIRD PARTY’S INTELLECTUAL PROPERTY RIGHTS. FURTHERMORE ST AND ITS AFFILIATES HEREBY DISCLAIM ANY WARRANTY AND LIABILITY WHATSOEVER FOR ANY DEVELOPMENT CREATED BY OR FOR YOU OR YOUR CUSTOMERS.
YOU ACKNOWLEDGE THAT YOU HAVE RELIED ON NO WARRANTIES AND THAT NO WARRANTIES ARE MADE BY ST AND ITS AFFILIATES OR GRANTED BY LAW WHENEVER IT IS PERMITTED BY LAW.
6. OPEN SOURCE
Some portion of the Licensed Materials might contain Open Source Software subject to Open Source Terms (as defined below) applicable for each such portion, as further specified in the Licensed Materials. Such Open Source Software is supplied to You under the applicable Open Source Terms and is not subject to the terms of this PLLA to the extent the terms of this PLLA are in conflict with such applicable Open Source Terms.
Except for Open Source Software, You have no rights under this PLLA to, and may not under any circumstances use the Licensed Materials or any parts thereof such that they become subject to any Open Source Terms. These actions include but are not limited to combining the Licensed Materials by means of incorporation or linking or otherwise.
For the purpose of this PLLA, “Open Source Terms” shall mean any open source license which requires as part of distribution of software that the source code of such software is distributed therewith, or open source license that complies with the Open Source Definition specified at www.opensource.org and any other comparable open source license such as for example GNU General Public License (GPL), Eclipse Public License (EPL), Apache Software License, BSD license and MIT license. “Open Source Software” shall mean any software that is licensed or distributed under Open Source Terms as specified in the Licensed Materials.
7. COMPLIANCE
You agree not to use the Licensed Materials in violation of any applicable law, statute, ordinance or other regulation or any obligation by which You are bound. You agree to comply with all applicable laws and regulations affecting the use of the Licensed Materials. Specifically but without limiting the generality of the foregoing, You acknowledge that the Licensed Materials are subject to export controls restrictions and You agree to comply with any applicable export control law or regulation including but not limited to the European export regulations and US similar regulations, and to obtain any necessary export license or other documentation prior to exportation or re-exportation of the Licensed Materials.
Some Licensed Materials may (i) require licenses from third parties claiming intellectual property rights covering use or implementation of the Licensed Materials or (ii) be based on industry recognized standards or software programs published by industry recognized standards bodies and certain third parties may claim to own intellectual property rights that cover implementation or use of those standards. You agree that You are responsible for obtaining any such license which may be needed, and no such license is provided by ST or its Affiliates.
You shall be responsible for the due and proper compliance with the terms and conditions of this PLLA by your customers and shall be liable to ST for any and all damages incurred by ST, its Affiliates and its suppliers and licensors in connection with any such customers’ non-compliance therewith.
8. DISCLAIMER OF DAMAGES
IN NO EVENT SHALL ST AND ITS AFFILIATES BE LIABLE TO THE LICENSEE AND ITS CUSTOMERS FOR ANY INDIRECT, INCIDENTAL, PUNITIVE, SPECIAL OR CONSEQUENTIAL DAMAGES, LOST PROFITS OR LOST SAVINGS, LOSS OF BARGAIN OR OPPORTUNITY, PROFESSIONAL FEES OR EXPENSES, BUSINESS INTERRUPTION, LOST REVENUES OR SALES, DAMAGE TO PRODUCT OR EQUIPMENT OR TO FACILITIES, COSTS OF SUBSTITUTE PRODUCT, FACILITIES OR SERVICES, REWORK CHARGES, COSTS ASSOCIATED WITH DOWN TIME, LOSS OF GOODWILL, LOSS OF DATA OR FOR ANY DAMAGES COSTS OR EXPENSES ASSOCIATED WITH WARRANTY OR INTELLECTUAL PROPERTY INFRINGEMENT CLAIMS, WHETHER FORESEEABLE OR UNFORESEEABLE AND WHETHER OR NOT SUCH DAMAGES ARE BASED ON WARRANTY, CONTRACT OR ANY OTHER LEGAL THEORY – EVEN IF LICENSEE HAS BEEN ADVISED, OR IS AWARE, OF THE POSSIBILITY OF SUCH DAMAGES ARISING FROM OR IN CONNECTION WITH THIS PLLA. ST AND ITS AFFILIATES AGGREGATE AND CUMULATIVE LIABILITY UNDER THIS PLLA SHALL NOT EXCEED 100 USD (ONE HUNDRED USD). THE LIMITATIONS SET FORTH IN THIS ARTICLE 8 SHALL ONLY APPLY TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW.
9. TERM AND TERMINATION
This PLLA shall be valid from acceptance by You of this PLLA for an unlimited period of time until terminated by either ST or Licensee upon one (1) month prior written notice to the other. Notwithstanding the foregoing, Licensee may terminate this PLLA at any time by destroying all Licensed Materials, Documentation and other Confidential Information or by returning those to ST. ST may terminate this PLLA at any time if (i) You fail to comply with the terms and conditions of this PLLA, or (ii) You file litigation against ST or its Affiliates, (iii) ST or its Affiliates receive notice of any claim, suit or proceeding that alleges that the Licensed Materials or Your use or distribution of the Licensed Materials infringes any third-party intellectual property rights or (iv) to the extent permitted by laws, a voluntary or involuntary petition in bankruptcy or winding up is filed against Licensee, any proceedings in insolvency or bankruptcy are instituted against Licensee, a trustee or receiver is appointed over Licensee, or any assignment is made for the benefit of creditors of Licensee. Upon termination You shall delete, destroy, or return to ST all Licensed Materials in your possession and You shall stop using the Licensed Materials for any purpose whatsoever. The rights and obligations under Articles from 2 to 11 will survive the termination of this PLLA. However the right to use the Licensed Materials incorporated in a Licensee Product as per Article 1 will survive with respect to Licensee Products sold, licensed or distributed before the termination of this PLLA.
10. MISCELLANEOUS
If a court or agency of competent jurisdiction holds any term of this PLLA invalid, illegal, or unenforceable for any reason, the remainder of this PLLA shall be valid and enforceable and You and ST shall discuss in good faith a substitute, valid, enforceable provision which most nearly effects the parties intent in entering into this PLLA.
The failure by ST to enforce any provisions of this PLLA or to exercise any right in respect thereto shall not be construed as constituting a waiver of its rights thereof.
No agency, joint venture, partnership or other business organisation shall be created or be construed as being created by reason of this PLLA. You will not have the right or authority to, and shall not, assume or create any obligation of any nature whatsoever on behalf of ST and its Affiliates or bind ST and its Affiliates in any respect whatsoever. You and ST are independent parties and nothing in this PLLA shall be construed as making You an employee, agent or legal representative of ST.
This PLLA contains the entire and sole agreement between You and ST on the subject matter of this PLLA, and supersedes all representations, undertakings and agreements previously made between You and ST and/or its Affiliates and shall prevail over the terms and conditions set forth in any document from You with respect to the subject matter of this PLLA.
Any amendment to this PLLA shall be agreed in writing and duly signed by You and ST or signed solely by You on the format proposed by ST and shall make reference to this PLLA.
11. APPLICABLE LAW
This PLLA is governed by the laws of Switzerland, without regard to its conflict of law rules. All disputes or questions arising out of or in connection with this PLLA shall be finally settled by the competent courts of Geneva, Switzerland. Notwithstanding the aforesaid, nothing in this PLLA shall prevent ST from seeking any interim or final injunctive or equitable relief by a court of competent jurisdiction."""</string>
</pre>
<hr>
</body>
<head><meta http-equiv="content-type" content="text/html; charset=utf-8">
<style>body { font-family: sans-serif; background-color: #ffffff; color: #000000; } a { color: #0000EE; } pre { background-color: #eeeeee; padding: 1em; white-space: pre-wrap; word-break: break-word; display: inline-block; } @media (prefers-color-scheme: dark) { body { background-color: #121212; color: #E0E0E0; } a { color: #BB86FC; } pre { background-color: #333333; color: #E0E0E0; } }</style>
<title>Open source licenses</title>
</head>
<body>
<h3>Open source licenses:</h3>
<h3>Notice for packages:</h3>
<ul>
<li><a href="#1934118923">Accompanist FlowLayout library (0.36.0)</a>
<dl>
<dt>Copyright © 20xx Google</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Accompanist Permissions (0.37.0)</a>
<dl>
<dt>Copyright © 20xx Google</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Accompanist System UI Controller library (0.36.0)</a>
<dl>
<dt>Copyright © 20xx Google</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Activity (1.9.0)</a>
<dl>
<dt>Copyright © 2018 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Activity Compose (1.9.0)</a>
<dl>
<dt>Copyright © 2020 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Activity Kotlin Extensions (1.9.0)</a>
<dl>
<dt>Copyright © 2018 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Android App Startup Runtime (1.1.1)</a>
<dl>
<dt>Copyright © 2020 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Android AppCompat Library (1.6.1)</a>
<dl>
<dt>Copyright © 2011 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Android Arch-Common (2.2.0)</a>
<dl>
<dt>Copyright © 2017 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Android Arch-Runtime (2.2.0)</a>
<dl>
<dt>Copyright © 2017 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Android ConstraintLayout (2.0.1)</a>
<dl>
<dt>Copyright © 2007 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Android ConstraintLayout Solver (2.0.1)</a>
<dl>
<dt>Copyright © 2007 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Android Emoji2 Compat (1.3.0)</a>
<dl>
<dt>Copyright © 2017 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Android Emoji2 Compat view helpers (1.3.0)</a>
<dl>
<dt>Copyright © 2017 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Android Graphics Path (1.0.1)</a>
<dl>
<dt>Copyright © 2022 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Android Resource Inspection - Annotations (1.0.1)</a>
<dl>
<dt>Copyright © 2021 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Android Resources Library (1.6.1)</a>
<dl>
<dt>Copyright © 2019 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Android Support AnimatedVectorDrawable (1.1.0)</a>
<dl>
<dt>Copyright © 2015 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Android Support CardView v7 (1.0.0)</a>
<dl>
<dt>Copyright © 2011 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Android Support Custom Tabs (1.3.0)</a>
<dl>
<dt>Copyright © 2015 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Android Support DynamicAnimation (1.0.0)</a>
<dl>
<dt>Copyright © 2017 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Android Support Library Coordinator Layout (1.1.0)</a>
<dl>
<dt>Copyright © 2011 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Android Support Library core utils (1.0.0)</a>
<dl>
<dt>Copyright © 2011 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Android Support Library Cursor Adapter (1.0.0)</a>
<dl>
<dt>Copyright © 2018 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Android Support Library Custom View (1.1.0)</a>
<dl>
<dt>Copyright © 2018 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Android Support Library Document File (1.0.0)</a>
<dl>
<dt>Copyright © 2018 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Android Support Library Drawer Layout (1.1.1)</a>
<dl>
<dt>Copyright © 2018 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Android Support Library fragment (1.5.1)</a>
<dl>
<dt>Copyright © 2011 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Android Support Library Interpolators (1.0.0)</a>
<dl>
<dt>Copyright © 2018 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Android Support Library loader (1.0.0)</a>
<dl>
<dt>Copyright © 2011 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Android Support Library Local Broadcast Manager (1.0.0)</a>
<dl>
<dt>Copyright © 2018 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Android Support Library Print (1.0.0)</a>
<dl>
<dt>Copyright © 2018 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Android Support Library View Pager (1.0.0)</a>
<dl>
<dt>Copyright © 2018 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Android Support RecyclerView v7 (1.1.0)</a>
<dl>
<dt>Copyright © 2014 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Android Support VectorDrawable (1.1.0)</a>
<dl>
<dt>Copyright © 2015 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Android Tracing (1.0.0)</a>
<dl>
<dt>Copyright © 2020 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">AndroidX Autofill (1.0.0)</a>
<dl>
<dt>Copyright © 2019 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">AndroidX Futures (1.1.0)</a>
<dl>
<dt>Copyright © 2018 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">AndroidX Widget ViewPager2 (1.0.0)</a>
<dl>
<dt>Copyright © 2017 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">androidx.customview:poolingcontainer (1.0.0)</a>
<dl>
<dt>Copyright © 2021 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">androidx.profileinstaller:profileinstaller (1.3.1)</a>
<dl>
<dt>Copyright © 2021 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Annotation (1.8.1)</a>
<dl>
<dt>Copyright © 2013 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Apache Commons Net (3.11.1)</a>
<dl>
<dt>Copyright © 2001 Jeffrey D. Brekke</dt>
<dd></dd>
<dt>Copyright © 2001 Steve Cohen</dt>
<dd></dd>
<dt>Copyright © 2001 Bruno D'Avanzo</dt>
<dd></dd>
<dt>Copyright © 2001 Daniel F. Savarese</dt>
<dd></dd>
<dt>Copyright © 2001 Rory Winston</dt>
<dd></dd>
<dt>Copyright © 2001 Rory Winston</dt>
<dd></dd>
<dt>Copyright © 2001 Gary Gregory</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">AppAuth for Android (0.11.1)</a>
<dl>
<dt>Copyright © 20xx Iain McGinniss</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">collections (1.4.4)</a>
<dl>
<dt>Copyright © 2018 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Collections Kotlin Extensions (1.4.4)</a>
<dl>
<dt>Copyright © 2018 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Compose Animation (1.7.6)</a>
<dl>
<dt>Copyright © 2019 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Compose Animation (1.7.6)</a>
<dl>
<dt>Copyright © 2019 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Compose Animation Core (1.7.6)</a>
<dl>
<dt>Copyright © 2019 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Compose Animation Core (1.7.6)</a>
<dl>
<dt>Copyright © 2019 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Compose Foundation (1.7.6)</a>
<dl>
<dt>Copyright © 2018 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Compose Foundation (1.7.6)</a>
<dl>
<dt>Copyright © 2018 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Compose Geometry (1.7.6)</a>
<dl>
<dt>Copyright © 2020 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Compose Geometry (1.7.6)</a>
<dl>
<dt>Copyright © 2020 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Compose Graphics (1.7.6)</a>
<dl>
<dt>Copyright © 2020 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Compose Graphics (1.7.6)</a>
<dl>
<dt>Copyright © 2020 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Compose Layouts (1.7.6)</a>
<dl>
<dt>Copyright © 2019 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Compose Layouts (1.7.6)</a>
<dl>
<dt>Copyright © 2019 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Compose Material Components (1.7.6)</a>
<dl>
<dt>Copyright © 2018 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Compose Material Components (1.7.6)</a>
<dl>
<dt>Copyright © 2018 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Compose Material Icons Core (1.7.6)</a>
<dl>
<dt>Copyright © 2020 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Compose Material Icons Core (1.7.6)</a>
<dl>
<dt>Copyright © 2020 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Compose Material Icons Extended (1.7.6)</a>
<dl>
<dt>Copyright © 2020 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Compose Material Icons Extended (1.7.6)</a>
<dl>
<dt>Copyright © 2020 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Compose Material Ripple (1.7.6)</a>
<dl>
<dt>Copyright © 2020 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Compose Material Ripple (1.7.6)</a>
<dl>
<dt>Copyright © 2020 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Compose Material3 Components (1.3.1)</a>
<dl>
<dt>Copyright © 2021 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Compose Material3 Components (1.3.1)</a>
<dl>
<dt>Copyright © 2021 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Compose Navigation (2.8.5)</a>
<dl>
<dt>Copyright © 2020 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Compose Runtime (1.7.6)</a>
<dl>
<dt>Copyright © 2019 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Compose Runtime (1.7.6)</a>
<dl>
<dt>Copyright © 2019 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Compose Saveable (1.7.6)</a>
<dl>
<dt>Copyright © 2020 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Compose Saveable (1.7.6)</a>
<dl>
<dt>Copyright © 2020 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Compose Tooling (1.7.6)</a>
<dl>
<dt>Copyright © 2019 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Compose Tooling (1.7.6)</a>
<dl>
<dt>Copyright © 2019 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Compose Tooling Data (1.7.6)</a>
<dl>
<dt>Copyright © 2021 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Compose Tooling Data (1.7.6)</a>
<dl>
<dt>Copyright © 2021 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Compose UI (1.7.6)</a>
<dl>
<dt>Copyright © 2019 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Compose UI (1.7.6)</a>
<dl>
<dt>Copyright © 2019 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Compose UI Preview Tooling (1.7.6)</a>
<dl>
<dt>Copyright © 2021 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Compose UI Preview Tooling (1.7.6)</a>
<dl>
<dt>Copyright © 2021 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Compose UI Text (1.7.6)</a>
<dl>
<dt>Copyright © 2019 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Compose UI Text (1.7.6)</a>
<dl>
<dt>Copyright © 2019 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Compose Unit (1.7.6)</a>
<dl>
<dt>Copyright © 2020 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Compose Unit (1.7.6)</a>
<dl>
<dt>Copyright © 2020 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Compose Util (1.7.6)</a>
<dl>
<dt>Copyright © 2020 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Compose Util (1.7.6)</a>
<dl>
<dt>Copyright © 2020 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Core (1.13.1)</a>
<dl>
<dt>Copyright © 2015 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Core Kotlin Extensions (1.13.1)</a>
<dl>
<dt>Copyright © 2018 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Dagger (2.55)</a>
<dl>
<dt>Copyright © 20xx The original author or authors</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Dagger Lint Rules AAR Distribution (2.55)</a>
<dl>
<dt>Copyright © 20xx The original author or authors</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">error-prone annotations (2.15.0)</a>
<dl>
<dt>Copyright © 20xx The original author or authors</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Experimental annotation (1.4.1)</a>
<dl>
<dt>Copyright © 2019 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">FindBugs-jsr305 (3.0.2)</a>
<dl>
<dt>Copyright © 20xx The original author or authors</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Gson (2.8.9)</a>
<dl>
<dt>Copyright © 20xx The original author or authors</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Guava ListenableFuture only (1.0)</a>
<dl>
<dt>Copyright © 20xx The original author or authors</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Hilt Android (2.55)</a>
<dl>
<dt>Copyright © 20xx The original author or authors</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Hilt Core (2.55)</a>
<dl>
<dt>Copyright © 20xx The original author or authors</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Jakarta Dependency Injection (2.0.1)</a>
<dl>
<dt>Copyright © 20xx Antoine Sabot-Durand</dt>
<dd></dd>
<dt>Copyright © 20xx Martin Kouba</dt>
<dd></dd>
<dt>Copyright © 20xx Tomas Remes</dt>
<dd></dd>
<dt>Copyright © 20xx Matej Novotny</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">javax.inject (1)</a>
<dl>
<dt>Copyright © 20xx The original author or authors</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">JetBrains Java Annotations (23.0.0)</a>
<dl>
<dt>Copyright © 20xx JetBrains Team</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">JSpecify annotations (1.0.0)</a>
<dl>
<dt>Copyright © 20xx Kevin Bourrillion</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Kotlin Stdlib (2.1.0)</a>
<dl>
<dt>Copyright © 20xx Kotlin Team</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Kotlin Stdlib Jdk7 (1.9.10)</a>
<dl>
<dt>Copyright © 20xx Kotlin Team</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Kotlin Stdlib Jdk8 (1.9.10)</a>
<dl>
<dt>Copyright © 20xx Kotlin Team</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">kotlinx-coroutines-android (1.7.3)</a>
<dl>
<dt>Copyright © 20xx JetBrains Team</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">kotlinx-coroutines-core (1.7.3)</a>
<dl>
<dt>Copyright © 20xx JetBrains Team</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">kotlinx-serialization-core (1.8.0)</a>
<dl>
<dt>Copyright © 20xx JetBrains Team</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">kotlinx-serialization-json (1.8.0)</a>
<dl>
<dt>Copyright © 20xx JetBrains Team</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Lifecycle Kotlin Extensions (2.8.7)</a>
<dl>
<dt>Copyright © 2019 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Lifecycle LiveData (2.8.7)</a>
<dl>
<dt>Copyright © 2017 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Lifecycle LiveData Core (2.8.7)</a>
<dl>
<dt>Copyright © 2017 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Lifecycle Process (2.8.7)</a>
<dl>
<dt>Copyright © 2018 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Lifecycle Runtime (2.8.7)</a>
<dl>
<dt>Copyright © 2017 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Lifecycle Runtime (2.8.7)</a>
<dl>
<dt>Copyright © 2017 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Lifecycle Runtime Compose (2.8.7)</a>
<dl>
<dt>Copyright © 2021 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Lifecycle Runtime Compose (2.8.7)</a>
<dl>
<dt>Copyright © 2021 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Lifecycle ViewModel (2.8.7)</a>
<dl>
<dt>Copyright © 2017 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Lifecycle ViewModel (2.8.7)</a>
<dl>
<dt>Copyright © 2017 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Lifecycle ViewModel (2.8.7)</a>
<dl>
<dt>Copyright © 2017 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Lifecycle ViewModel Compose (2.8.7)</a>
<dl>
<dt>Copyright © 2021 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Lifecycle ViewModel Compose (2.8.7)</a>
<dl>
<dt>Copyright © 2021 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Lifecycle ViewModel Kotlin Extensions (2.8.7)</a>
<dl>
<dt>Copyright © 2018 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Lifecycle ViewModel with SavedState (2.8.7)</a>
<dl>
<dt>Copyright © 2018 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Lifecycle-Common (2.8.7)</a>
<dl>
<dt>Copyright © 2017 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Lifecycle-Common for Java 8 (2.8.7)</a>
<dl>
<dt>Copyright © 2017 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">LiveData Core Kotlin Extensions (2.8.7)</a>
<dl>
<dt>Copyright © 2018 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Material Components for Android (1.12.0)</a>
<dl>
<dt>Copyright © 2015 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Navigation Common (2.8.5)</a>
<dl>
<dt>Copyright © 2017 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Navigation Common Kotlin Extensions (2.8.5)</a>
<dl>
<dt>Copyright © 2018 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Navigation Compose Hilt Integration (1.2.0)</a>
<dl>
<dt>Copyright © 2021 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Navigation Hilt Extension (1.2.0)</a>
<dl>
<dt>Copyright © 2021 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Navigation Runtime (2.8.5)</a>
<dl>
<dt>Copyright © 2017 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Navigation Runtime Kotlin Extensions (2.8.5)</a>
<dl>
<dt>Copyright © 2018 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">okhttp (4.12.0)</a>
<dl>
<dt>Copyright © 20xx Square, Inc.</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">okhttp-logging-interceptor (4.12.0)</a>
<dl>
<dt>Copyright © 20xx Square, Inc.</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">okio (3.6.0)</a>
<dl>
<dt>Copyright © 20xx Square, Inc.</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Retrofit (2.11.0)</a>
<dl>
<dt>Copyright © 20xx Square, Inc.</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Retrofit 2 Kotlin Serialization Converter (1.0.0)</a>
<dl>
<dt>Copyright © 20xx Jake Wharton</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Room Kotlin Extensions (2.6.1)</a>
<dl>
<dt>Copyright © 2019 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Room-Common (2.6.1)</a>
<dl>
<dt>Copyright © 2017 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Room-Runtime (2.6.1)</a>
<dl>
<dt>Copyright © 2017 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">Saved State (1.2.1)</a>
<dl>
<dt>Copyright © 2018 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">SavedState Kotlin Extensions (1.2.1)</a>
<dl>
<dt>Copyright © 2020 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">SQLite (2.4.0)</a>
<dl>
<dt>Copyright © 2017 The Android Open Source Project</dt>
<dd></dd>
</dl>
</li>
<li><a href="#1934118923">SQLite Framework Integration (2.4.0)</a>
<dl>
<dt>Copyright © 2017 The Android Open Source Project</dt>