-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSiemensMendixNanoflowCommons__7.1.0__READMEOSS_2026-06-05__07-30-56.html
More file actions
3885 lines (3703 loc) · 251 KB
/
Copy pathSiemensMendixNanoflowCommons__7.1.0__READMEOSS_2026-06-05__07-30-56.html
File metadata and controls
3885 lines (3703 loc) · 251 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Siemens Third-Party Software disclosure document</title>
<meta charset="utf-8" />
<style>
td,
th,
tr,
table {
font-size: 8pt;
border: 1px solid #2f4f4f;
border-collapse: collapse;
margin-left: 10.4pt;
padding: 5.4pt 5.4pt 5.4pt 5.4pt;
}
table.componentSummary {
width: 95%;
border: 1px solid #2f4f4f;
table-layout: fixed;
border-collapse: collapse;
}
th.componentSummary {
padding: 1pt 1pt 1pt 1pt;
}
td.componentSummary {
padding: 1pt 1pt 1pt 1pt;
}
table.componentDetail {
font-size: 12pt;
border-style: none;
}
tr.componentDetail {
font-size: 12pt;
border-style: none;
}
td.componentDetail {
font-size: 12pt;
border-style: none;
margin-left: 5.1pt;
padding: 5.4pt 5.4pt 5.4pt 5.4pt;
}
p {
font-family: "Arial";
font-size: 10pt;
margin-left: 5.1pt;
}
p.important {
font-family: "Arial";
font-size: 12pt;
}
p.tiny {
font-size: 0.5em;
}
td.applicationCopyright {
width: 440pt;
border: solid windowtext 1pt;
padding: 5.4pt 5.4pt 5.4pt 5.4pt;
}
table.licenseText {
border-style: none;
width: 95%;
table-layout: fixed;
}
tr.licenseText {
border-style: none;
}
td.licenseText {
border-style: none;
margin-left: 5.1pt;
padding: 5.4pt 5.4pt 5.4pt 5.4pt;
}
table.passThroughInformationText {
border-style: none;
width: 95%;
table-layout: fixed;
}
tr.passThroughInformationText {
border-style: none;
}
td.passThroughInformationText {
border-style: none;
margin-left: 5.1pt;
padding: 5.4pt 5.4pt 5.4pt 5.4pt;
}
table.copyrightText {
width: 95%;
table-layout: fixed;
}
td.copyrightText {
border-style: none;
margin-left: 0pt;
padding: 5.4pt 5.4pt 5.4pt 5.4pt;
}
h4 {
font-size: 14pt;
}
h5 {
margin-left: 8pt;
font-size: 12pt;
}
.watermark {
position: fixed;
left: 50%;
margin-left: -18%;
margin-top: 20px;
z-index: -10;
}
@media print {
.watermark {
position: fixed;
left: 0%;
margin: 0%;
z-index: -10;
}
}
</style>
</head>
<body>
<div id="application-info" style="visibility: hidden" data-template="">
Siemens Mendix Nanoflow Commons 7.1.0 -
</div>
<div id="template">
Siemens Third-Party Software Disclosure Document<br /><br />English / English<br />Note to Resellers: Please
pass on this document to your customers to avoid license infringements.<br /><br />Third-Party Software
Information<br /><br />This product, solution or service ("Product") contains third-party software
components listed in this document. These components are Open Source Software licensed under a license
approved by the Open Source Initiative (www.opensource.org) or similar licenses as determined by SIEMENS
("OSS") and/or commercial or freeware software components. With respect to the OSS components, the
applicable OSS license conditions prevail over any other terms and conditions covering the Product. The OSS
portions of this Product are provided royalty-free and can be used at no charge.<br />If SIEMENS has
combined or linked certain components of the Product with/to OSS components licensed under the GNU LGPL
version 2 or later as per the definition of the applicable license, and if use of the corresponding object
file is not unrestricted ("LGPL Licensed Module", whereas the LGPL Licensed Module and the components that
the LGPL Licensed Module is combined with or linked to is the "Combined Product"), the following additional
rights apply, if the relevant LGPL license criteria are met: (i) you are entitled to modify the Combined
Product for your own use, including but not limited to the right to modify the Combined Product to relink
modified versions of the LGPL Licensed Module, and (ii) you may reverse-engineer the Combined Product, but
only to debug your modifications. The modification right does not include the right to distribute such
modifications and you shall maintain in confidence any information resulting from such reverse-engineering
of a Combined Product.<br />Certain OSS licenses require SIEMENS to make source code available, for example,
the GNU General Public License, the GNU Lesser General Public License and the Mozilla Public License. If
such licenses are applicable and this Product is not shipped with the required source code, a copy of this
source code can be obtained by anyone in receipt of this information during the period required by the
applicable OSS licenses by contacting the following address.<br />SIEMENS may charge a handling fee of up to
5 Euro to fulfil the request.<br />Warranty regarding further use of the Open Source Software<br />SIEMENS'
warranty obligations are set forth in your agreement with SIEMENS. SIEMENS does not provide any warranty or
technical support for this Product or any OSS components contained in it if they are modified or used in any
manner not specified by SIEMENS. The license conditions listed below may contain disclaimers that apply
between you and the respective licensor. For the avoidance of doubt, SIEMENS does not make any warranty
commitment on behalf of or binding upon any third party licensor.<br /><br />German / Deutsch<br />Hinweis
an die Vertriebspartner: Bitte geben Sie dieses Dokument an Ihre Kunden weiter, um urheberrechtliche
Lizenzverstöße zu vermeiden.<br />Informationen zu Fremdsoftware<br />Dieses Produkt, diese Lösung oder
dieser Service ("Produkt") enthält die nachfolgend aufgelisteten Fremdsoftwarekomponenten. Bei diesen
handelt es sich entweder um Open Source Software, die unter einer von der Open Source Initiative
(www.opensource.org) anerkannten Lizenz oder einer durch Siemens als vergleichbar definierten Lizenz ("OSS")
lizenziert ist und/oder um kommerzielle Software oder Freeware. Hinsichtlich der OSS Komponenten gelten die
einschlägigen OSS Lizenzbedingungen vorrangig vor allen anderen auf dieses Produkt anwendbaren Bedingungen.
SIEMENS stellt Ihnen die OSS-Anteile dieses Produkts ohne zusätzliche Kosten zur Verfügung.<br />Soweit
SIEMENS bestimmte Komponenten des Produkts mit OSS Komponenten gemäß der Definition der anwendbaren Lizenz
kombiniert oder verlinkt hat, die unter der GNU LGPL Version 2 oder einer späteren Version lizenziert werden
und soweit die entsprechende Objektdatei nicht unbeschränkt genutzt werden darf ("LGPL-lizenziertes Modul",
wobei das LGPL-lizenzierte Modul und die Komponenten, mit welchen das LGPL-lizenzierte Modul verbunden ist,
nachfolgend "verbundenes Produkt" genannt werden) und die entsprechenden LGPL Lizenzkriterien erfüllt sind,
dürfen Sie zusätzlich (i) das verbundene Produkt für eigene Verwendungszwecke bearbeiten und erhalten
insbesondere das Recht, das verbundene Produkt zu bearbeiten, um es mit einer modifizierten Version des LGPL
lizenzierten Moduls zu verlinken und (ii) das verbundene Produkt rückentwickeln, jedoch ausschließlich zum
Zwecke der Fehlerkorrektur Ihrer Bearbeitungen. Das Recht zur Bearbeitung schließt nicht das Recht ein,
diese zu distribuieren. Sie müssen sämtliche Informationen, die Sie aus dem Reverse Engineering des
verbundenen Produktes gewinnen, vertraulich behandeln.<br />Bestimmte OSS Lizenzen verpflichten SIEMENS zur
Herausgabe des Quellcodes, z.B. die GNU General Public License, die GNU Lesser General Public License sowie
die Mozilla Public License. Soweit diese Lizenzen Anwendung finden und das Produkt nicht bereits mit dem
notwendigen Quellcode ausgeliefert wurde, so kann eine Kopie des Quellcodes von jedermann während des in der
anwendbaren OSS Lizenz angegebenen Zeitraums unter der folgenden Anschrift angefordert werden.<br />SIEMENS
kann für die Erfüllung der Anfrage eine Bearbeitungsgebühr von bis zu 5 Euro in Rechnung stellen.<br />Gewährleistung
betreffend Verwendung der Open Source Software<br />Die Gewährleistungspflichten von SIEMENS sind in dem
jeweiligen Vertrag mit SIEMENS geregelt. Soweit Sie das Produkt oder die OSS Komponenten modifizieren oder
in einer anderen als der von SIEMENS spezifizierten Weise verwenden, ist die Gewährleistung ausgeschlossen
und eine technische Unterstützung erfolgt nicht. Die nachfolgenden Lizenzbedingungen können
Haftungsbeschränkungen enthalten, die zwischen Ihnen und dem jeweiligen Lizenzgeber gelten. Klarstellend
wird darauf hingewiesen, dass SIEMENS keine Gewährleistungsverpflichtungen im Namen von oder verpflichtend
für einen Drittlizenzgeber abgibt.<br /><br />Chinese / 中文<br />经销商须知:
请将本文件转发给您的客户,以避免构成对许可证的侵权。<br />第三方软件信息<br />本产品、解决方案或服务(统称“本产品”)中包含本文件列出的第三方软件组件。
这些组件是开放源代码促进会 (www.opensource.org)
批准的许可证或西门子确定的类似许可证所许可的开放源代码软件(简称“OSS”)和/或商业或免费软件组件。 针对
OSS组件,适用的 OSS 许可证条件优先于涵盖本产品的任何其他条款和条件。 本产品的 OSS
部分免许可费,可以免费使用。<br />如果西门子已经按照所适用的许可证的定义,根据第 2版或之后版本的GNU
LGPL将本产品的某些组件与获得许可证的
OSS组件相组合或关联,并且如果使用相应的目标文件并非不受限制(“LGPL许可模块”,LGPL 许可模块以及与 LGPL
许可模块相组合或关联的组件统称为“组合产品”),则在符合以下相关LGPL许可标准的前提下,以下附加权利予以适用:
(i) 您有权修改组合产品供自己使用,包括但不限于修改组合产品以重新连接 LGPL 许可模块修改版本的权利,并且 (ii)
您可以对组合产品进行逆向工程(但仅限于调试您的修改)。修改权不包括散布此类修改的权利,您应对此类组合产品逆向工程所获得的任何信息予以保密。<br />某些
OSS 许可证需要西门子提供源代码,例如 GNU 通用公共许可证、GNU 宽通用公共许可证和 Mozilla
公共许可证。如果适用此类许可证并且本产品发货时未随附所需的源代码,收到本信息的任何
人可以在所适用的OSS许可证要求的期限内通过以下地址联系获取这些源代码的副本。<br />西门子可收取最多 5
欧元的手续费以完成该请求。<br />关于进一步使用开放源代码软件的保修<br />您与西门子的协议中规定了西门子的保修义务。如果以西门子未指明的任何方式修改或使用本产品或其中包含的任何
OSS组件,西门子不为其提供任何保修或技术支持服务。下面列出的许可证条件可能包含适用于您和相应许可人之间的免责声明。为了避免产生疑问,西门子不代表或约束任何第三方许可人作出任何保修承诺。<br /><br />Spanish
/ Español<br />Indicación para los distribuidores: Sírvase entregar este documento a sus clientes para
prevenir infracciones de licencia sobre los aspectos de los derechos de autor.<br />Información sobre
software de terceros<br />Este producto, solución o servicio ("producto") contiene los siguientes
componentes de software de terceros listados a continuación. Se trata de Open Source Software cuya licencia
ha sido otorgada por la Open Source Initiative (www.opensource.org) o que corresponde a una licencia
definida por Siemens como comparable ("OSS") y/o de software o freeware comercial. En relación a los
componentes OSS prevalecen las condiciones de concesión de licencia OSS pertinentes por sobre todas las
demás condiciones aplicables para este producto. SIEMENS le entrega estas partes OSS del producto sin coste
adicional.<br />En la medida en que SIEMENS haya combinado o enlazado determinados componentes del producto
con componentes OSS según la definición de la licencia aplicable, cuya licencia está sujeta a la GNU LGPL
versión 2 o una versión posterior y que no se puede utilizar sin restricciones ("módulo con licencia LGPL",
denominándose a continuación el módulo de licencia LGPL y los componentes combinados con el módulo de
licencia LGPL, como "producto integrado") y que se hayan cumplido los criterios de licencia LGPL
correspondientes, usted está autorizado para adicionalmente (i) procesar el producto conectado para sus
propios fines de uso y obtener particularmente el derecho a procesar el producto conectado para enlazarlo
con una versión modificada del módulo de licencia LGPL y (ii) realizar ingeniería inversa para el producto
conectado, pero exclusivamente para fines de corrección de errores de sus procesamientos. El derecho al
procesamiento no incluye el derecho a su distribución. Está obligado a tratar de manera confidencial toda la
información que obtiene en el marco de la ingeniería inversa del producto conectado.<br />Determinadas
licencias OSS obligan a Siemens a la publicación del código fuente, p. ej. la GNU General Public License, la
GNU Lesser General Public License así como la Mozilla Public License. En la medida que se apliquen estas
licencias y que el producto no se haya suministrado con el código fuente necesario, puede solicitarse una
copia del código fuente por parte de cualquier persona durante el período indicado en la licencia OSS,
mediante envío de la solicitud correspondiente a la siguiente dirección.<br />SIEMENS puede facturar una
tasa de servicio de hasta 5 Euros para la tramitación de la consulta.<br />Garantía en relación al uso del
Open Source Software<br />Las obligaciones de Siemens relacionadas a la garantía del Software, están
especificados en el contrato correspondiente con SIEMENS. En caso de modificar el producto o los componentes
OSS o usarse de una manera que difiera del modo especificado por SIEMENS, dejará de tener vigencia la
garantía y no habrá derechoal soporte técnico asociado a ella. Las siguientes condiciones de concesión de
licencia pueden contener limitaciones de responsabilidad que rigen entre su parte y el licenciador
correspondiente. Se aclara que SIEMENS no asume obligaciones de garantía en nombre de o en forma vinculante
para licenciadores de terceros.<br /><br />French / Français<br />Note pour les partenaires de distribution:
veuillez transmettre ce document à vos clients pour éviter toutes infractions aux dispositions en matière de
droits d’auteur.<br />Informations sur des logiciels de tiers<br />Le présent produit, solution ou service
(« Produit ») contient des éléments de logiciels indiqués ci-après, appartenant à des tiers. Ces logiciels
sont des Open Source Software dont l’utilisation est accordée en vertu d’une licence reconnue par la Open
Service Initiative (www.opensource.org), ou d’une licence équivalente définie comme telle par Siemens
("OSS"), et/ou en vertu d’un logiciel commercial ou un freeware. En ce qui concerne les composants OSS, les
conditions de licence OSS pertinentes priment sur toutes les autres conditions éventuellement applicables au
Produit. SIEMENS met à votre disposition gratuitement et sans frais supplémentaires les parties OSS du
Produit.<br />Si SIEMENS a combiné ou relié certains composants du Produit avec des éléments OSS dont
l’utilisation est accordée en vertu de la licence GNU LGPL version 2 ou d'une version postérieure,
conformément à la licence applicable, et si l’utilisation du fichier objet correspondant est soumise à des
restrictions (« Module Sous Licence LGPL », le module sous licence LGPL et les composants avec lesquels ce
module est lié, sont dénommés ci-après "Produit Lié"), si les critères de licence LGPL applicables sont
respectés, vous avez également les droits suivants : (i) droit de modifier le Produit Lié pour votre propre
usage , inclus notamment le droit de modifier le Produit Lié afin de le relier différentes versions
modifiées du Module Sous Licence LGPL et (ii) droit de faire de la retro-ingénierie sur le Produit Lié, mais
exclusivement afin de corriger les éventuels dysfonctionnements des modifications que vous y avez apportées.
Le droit de modifier n’inclut pas le droit de distribuer ces modifications et toutes les informations que
vous avez obtenues à l’occasion d’opérations de retro-ingénierie du Produit Lié seront strictement
confidentielles.<br />Certaines licences OSS, comme par exemple la GNU General Public License, la GNU Lesser
General Public License, ainsi que la Mozilla Public License, obligent SIEMENS à divulguer le code source. Si
ces licences sont applicables et si le Produit n’a pas été préalablement livré avec le code source
nécessaire, une copie du code source peut être demandée pendant la durée de la licence OSS applicable, en
s’adressant à l’adresse suivante.<br />SIEMENS peut facturer des frais de traitement allant jusqu’à 5 Euro
pour répondre à cette demande.<br />Garantie relative à l’utilisation du logiciel Open Source<br />Les
obligations de garantie de SIEMENS sont définies dans votre contrat. Si vous modifiez le Produit ou les
éléments OSS y contenus ou si vous les utilisez d’une manière autre que celle spécifiée par SIEMENS, vous
perdez le bénéfice de la garantie et aucune assistance technique ne vous sera fournie. Les conditions de
licence ci-après peuvent contenir des limitations de responsabilités applicables entre vous et le concédant.
En tout état de cause, nous vous signalons que SIEMENS ne prend aucun engagement de garantie au nom et pour
le compte de tiers concédants.<br /><br />Italian / Italiano<br />IMPORTANTE per i partner commerciali: si
prega di inoltrare il presente documento ai clienti per evitare violazioni delle condizioni di licenza.<br />Informazioni
relative al software di altri produttori<br />Il presente prodotto, soluzione o servizio ("Prodotto")
contengono componenti software di altri produttori elencati qui di seguito. Questi software di altri
produttori possono essere Open Source Software (OSS), concessi in licenza con una licenza riconosciuta
dall'Open Source Initiative (www.opensource.org) o ritenuta equivalente da Siemens ("OSS"), e/o software o
freeware commerciali. Per quanto riguarda i componenti dell'OSS, le relative condizioni di licenza
pertinenti prevalgono rispetto a tutte le altre condizioni applicabili al presente Prodotto. SIEMENS mette a
disposizione i componenti dell'OSS contenuti nel presente Prodotto senza costi aggiuntivi.<br />Se SIEMENS
ha combinato o linkato determinati componenti del Prodotto con prodotti dell'OSS secondo la definizione
indicata nella licenza applicabile e concessa ai sensi della licenza GNU LGPL Version 2 o successiva, se il
relativo file di oggetto non può essere utilizzato in maniera illimitata ("modulo concesso con licenza
LGPL", vale a dire il modulo con licenza LGPL e i componenti a cui detto modello è collegato, denominati qui
di seguito "Prodotto Collegato") e, infine, se i relativi criteri di licenza LGPL sono stati soddisfatti,
sarà possibile inoltre (i) modificare il Prodotto Collegato per propri scopi di impiego, in particolare
elaborare il Prodotto Collegato per linkarlo ad una versione modificata del modulo con licenza LGPL, e (ii)
effettuare il reverse engineering del Prodotto Collegato, esclusivamente a fini di correzione degli errori
di elaborazione. Il diritto di elaborazione non include il diritto di distribuire tali modifiche. Inoltre,
tutte le informazioni ottenute con il reverse engineering del Prodotto Collegato devono essere trattate come
riservate.<br />Determinate licenze OSS obbligano SIEMENS a pubblicare il codice sorgente, ad es. la GNU
General Public License, la GNU Lesser General Public License e la Mozilla Public License. Se queste licenze
sono applicabili, e il presente Prodotto non è stato già fornito con il necessario codice sorgente, è
possibile richiedere una copia di detto codice nel periodo di validità indicato nella licenza OSS
applicabile al seguente indirizzo.<br />Per l'evasione della richiesta, SIEMENS potrà addebitare fino a 5
Euro.<br />Garanzia di utilizzo dell'Open Source Software<br />Le obbligazioni di garanzia di SIEMENS sono
disciplinate dal vostro contratto sottoscritto con SIEMENS. Se si modifica il Prodotto o i componenti
dell'OSS, oppure li si utilizza in un modo diverso da quello specificato da SIEMENS, la garanzia e il
supporto tecnico decadono. Le seguenti condizioni di licenza possono contenere limitazioni di responsabilità
valevoli nel rapporto tra l'utente e il licenziante. Per maggiore chiarezza, si ribadisce che SIEMENS non
concede alcuna garanzia a nome di, o vincolante per, qualsiasi terza parte licenziante.<br /><br />Japanese
/ 日本語<br />再販業者への注意事項:ライセンス違反を防ぐため、本書を顧客の皆様に配布してください。<br />他社製ソフトウェアの使用に関する情報<br />本製品、ソリューション、またはサービス(以下「本製品」)には、本書に記載の他社製ソフトウェ
アのコンポーネントが含まれています。該当するコンポーネントとは、Open Source Initiative (www.opensource.org)
によって認可されたライセンスのもとで使用許諾を得たオープンソースソフ トウェア、または SIEMENS
によって決定された同様のライセンス(以下「OSS」)、および/または商用もしくはフリーウェアのソフトウェアコンポーネントを指します。本製品を対象とするその他いかなる契約条件に対しても、OSS
のコンポーネントに関しては、適用される OSS ライセンス条件が優先するものとします。本製品の OSS
の部分に関しては、著作権使用料無料で提供され、無料で使用する ことができます。<br />SIEMENS
が、本製品の特定のコンポーネントと適用されるライセンスの定義の通りに GNU LGPLのバージョン 2
以降のもとで使用許諾を得た OSS
コンポーネントを組み合わせるか、関連付け、なおかつ付随するオブジェクト・ファイルの使用が制限されていない場合(以下「LGPL
使用許諾モジュー ル」、それに対し、LGPL使用許諾モジュールが組み合わされているか、関連付けられている LGPL
使用許諾済みモジュールとコンポーネントを「組み合わせ製品」という)、関連する LGPL
使用許諾の基準を満たしていれば、次の追加の権利が適用されます。(i)
個人的な使用のために組み合わせ製品を変更することができる(LGPL
使用許諾モジュールの変更したバージョンを再度関連付けるために組み合わせ製品を変更する権利を含むが、それに限定されるものではない)、および
(ii)
組み合わせ製品にリバースエンジニアリングを行うことができる(ただし変更のデバッグのみ)。変更に関する権利には、該当する変更を配布する権利は含まれていません。また契約者の方は、このような組み合わせ製品のリバースエンジニアリングから生じるいかなる情報に関しても極秘として維持するものとします。<br />例えば、GNU
General Public License (GNU一般公衆利用許諾書)、GNU Lesser General Public
License(GNU劣等一般公衆利用許諾書)、Mozilla Public License 等の特定の OSSライセンスでは、SIEMENS
がソースコードを利用できるようにする必要があります。該当するライセンスが適用可能であり、本製品が必要とされるソースコードとともに出荷されなかった場合、この情報を受け取った人物が適用される
OSS
ライセンスによって義務付けられている期間中に以下の住所まで連絡することで、このソースコードのコピーを入手することができます。<br />リクエストを実行するために
SIEMENS では、最高 5 ユーロの手数料を請求する場合があります。<br />オープンソースソフトウェアのさらなる使用に関する保証<br />SIEMENS
の保証義務は、契約者と SIEMENS との契約書に記載されています。本製品を SIEMENS
が指定した以外の方法で変更したり、使用したりした場合、SIEMENS では本製品、またはいかなる OSS
コンポーネントに対しても保証やテクニカルサポートを提供いたしません。以下に記載のライセンス条件には、
契約者と個別のライセンサーとの間で適用される免責事項が含まれる場合があります。誤解を避けるため、SIEMENSでは他社のライセンサーを代表、または他社を拘束するいかなる保証義務も負いません。<br /><br />Russian
/ Русский<br />Информация для партнёров по сбыту: просим передать этот документ вашим клиентам во избежание
нарушений лицензионных прав.<br />Информация о программном обеспечении сторонних разработчиков<br />Настоящий
продукт, настоящее решение или сервис ("Продукт") включает в себя программные компоненты сторонних
разработчиков, перечисленные ниже. Это компоненты программного обеспечения с открытым кодом, имеющие
лицензию, признанную организацией Open Source Initiative (www.opensource.org), либо иную лицензию согласно
определению компании SIEMENS ("OSS"), и / или компоненты коммерческого либо свободно распространяемого
программного обеспечения. В отношении компонентов OSS соответствующие условия лицензии OSS имеют приоритет
перед всеми прочими положениями, применимыми к данному Продукту. SIEMENS предоставляет вам долевые права на
OSS в отношении данного Продукта на безвозмездной основе.<br />Если SIEMENS комбинирует или связывает
определённые компоненты Продукта с компонентами OSS в соответствии с определением применимой лицензии,
лицензированными по версии 2 или более поздней GNU LGPL, и если неограниченное использование
соответствующего объектного файла не разрешено ("Модуль по лицензии LGPL", причём Модуль по лицензии LGPL и
компоненты, с которыми скомбинирован или связан Модуль по лицензии LGPL, далее именуются "Комбинированный
продукт") и выполнены соответствующие критерии лицензии LGPL, вам разрешается дополнительно (i) обрабатывать
Комбинированный продукт в собственных целях и, в частности, но не ограничиваясь, обрабатывать
Комбинированный продукт таким образом, чтобы связать его с модифицированной версией Модуля по лицензии LGPL,
а также (ii) проводить обратную разработку Комбинированного продукта, но только в целях исправления ошибок
вашей обработки. Право на обработку не включает в себя право на дистрибуцию. Вы обязаны сохранять
конфиденциальность в отношении всей информации, полученной вами в ходе обратной разработки Комбинированного
продукта.<br />Определённые лицензии OSS обязывают SIEMENS раскрывать исходный код, например, GNU General
Public License, GNU Lesser General Public License и Mozilla Public License. Если указанные лицензии
применимы и Продукт поставлен без необходимого исходного кода, копия исходного кода может быть запрошена
обладателем настоящей информации в течение времени, указанного в применимой лицензии OSS, по следующему
адресу.<br />За выполнение запроса SIEMENS может взимать сбор в размере до 5 евро.<br />Гарантия в отношении
дальнейшего применения программного обеспечения с открытым кодом<br />Гарантийные обязательства SIEMENS
регулируются соответствующим договором с компанией SIEMENS. Если вы модифицируете Продукт или компоненты OSS
либо используете их иным образом, чем указано компанией SIEMENS, гарантия аннулируется, техническая
поддержка не предоставляется. Приведённые ниже лицензионные условия могут включать в себя положения об
ограничении ответственности, действующие в отношениях между вами и соответствующим лицензиаром. Во избежание
сомнений подчёркиваем, что SIEMENS не даёт гарантии от имени сторонних лицензиаров и гарантии, налагающей
обязательства на сторонних лицензиаров.<br /><br /><br />Korean / 한국어<br />제3자 소프트웨어 정보<br /><br />본
제품, 솔루션 또는 서비스(이하 “제품”)는 본 문서에 기재된 제3자 소프트웨어 구성요소를 포함한다. 이들
구성요소는 오픈 소스 이니셔티브(www.opensource.org)가 승인한 라이선스 또는 지멘스가 유사 라이선스로 판단하는
라이선스 하에 사용 권한이 부여된 오픈 소스 소프트웨어(이하 "OSS") 및/또는 상용 또는 무료 소프트웨어
구성요소이다. OSS 구성요소와 관련하여, 해당되는 OSS 라이선스 조건은 본 제품을 포괄하는 기타 모든 약관에
우선한다. 본 제품의 OSS 일부는 로열티 없이 제공되며 무료로 사용할 수 있다.<br /><br />지멘스가 해당되는
라이선스의 정의에 따라 GNU LGPL 버전 2 또는 그 이상의 사용 권한이 부여된 OSS 구성요소와 본 제품의 특정
구성요소를 조합 또는 연결한 경우 그리고 해당 오브젝트 파일의 사용이 제한되지 않는 경우(이하 "LGPL 라이선스
모듈"인반면, LGPL 라이선스 모듈과 LGPL 라이선스 모듈이 조합 또는 연결된 구성요소는 "조합 제품"이라 한다)
관련 LPGL 라이선스 기준이 충족되는 경우에 한하여 다음과 같은 추가적인 권한을 가진다. (i) 귀하는 사용을 위한
조합 제품을 수정할 권리가 있으며, 이는 조합 제품을 수정하여 LGPL 라이선스 모듈의 수정 버전에 재연결할 수
있는 권리를 포함하되 이에 한정하지 않는다. 그리고 (ii) 귀하는 조합 제품을 역엔지니어링할 수 있지만 이는
귀하의 수정 항목을 디버깅하기 위해서만 가능하다. 본 수정 권한은 그러한 수정 항목을 배포할 권리는 포함하지
않으며, 귀하는 조합 제품의 그러한 역엔지니어링으로부터 발생한 모든 정보를 기밀로 유지해야 한다.<br /><br />일부
OSS 라이선스는 지멘스가 소스 코드를 사용할 수 있게 만들 것을 요구하며, 이러한 소스 코드의 예는 GNU 일반 공중
사용 허가서(GNU General Public License), GNU 약소 일반 공중 사용 허가서(GNU Lesser General Public License),
모질라 공용 허가서(Mozilla Public License)가 있다. 이러한 라이선스가 적용되고 본 제품이 요구하는 소스 코드와
함께 배송되지 않은 경우, 해당 OSS 라이선스가 요구하는 기간 동안 본 정보를 받아보는 누구나 다음 주소로
연락하여 해당 소스 코드의 사본을 얻을 수 있다<br /><br />지멘스는 이 요청을 충족하기 위해 최대 5유로의 취급
수수료를 부과할 수 있다.<br /><br />오픈 소스 소프트웨어의 추가적 사용과 관련한 보증<br /><br />지멘스의
보증 의무는 지멘스와 귀하 간의 계약서에 명시되어 있다. 본 제품 또는 본 제품에 포함된 OSS 구성요소가
지멘스에서 지정하지 않은 방식으로 수정 또는 사용된 경우, 지멘스는 본 제품 또는 본 제품에 포함된 어떠한 OSS
구성요소에도 어떠한 보증이나 기술 지원도 제공하지 않는다. 아래 나열된 라이선스 조건에는 귀하와 관련 라이선스
소유자 간에 적용되는 면책 조항이 포함되어 있을 수 있다. 혼동을 피하기 위해 명확히 하자면, 지멘스는 어떠한
제3자 라이선스 소유자를 대신하여 또는 그를 구속하는 어떠한 보증 약속도 하지 않는다.<br /><br /><br />Open
Source Software and/or other third-party software contained in this Product<br /><br />If you like to
receive a copy of the source code, please contact SIEMENS at the following address:<br /><br />Siemens AG<br />Attn:
Software Licensing<br />LC TEC IT&SL<br />Hertha-Sponer-Weg 3<br />91058 Erlangen<br />Germany<br /><br />Subject:
Open Source Request (please specify Product name and version)<br /><br />
</div>
<p id="draft-warn"></p>
<p id="general-info">
Please note the following license conditions and copyright notices applicable to Open Source Software and/or
other components (or parts thereof):
</p>
<table class="componentSummary">
<thead>
<tr>
<th class="componentSummary">Component</th>
<th class="componentSummary">Open Source Software<br />[Yes/No]</th>
<th class="componentSummary">Acknowledgements/Comment</th>
<th class="componentSummary">License conditions and copyright notices</th>
</tr>
</thead>
<tbody id="component-summary" data-template="">
<tr>
<td id="BlackDuckCompSummCellInsertionPoint" class="componentSummary">
@isaacs/cliui (npm) - 9.0.0
</td>
<td class="componentSummary">Yes</td>
<td class="componentSummary"></td>
<td class="componentSummary">
<a href="#compDetail_476687"
>LICENSE AND COPYRIGHT INFORMATION FOR COMPONENT @isaacs/cliui (npm) - 9.0.0</a
>
</td>
</tr>
<tr>
<td id="BlackDuckCompSummCellInsertionPoint" class="componentSummary">
@react-native-async-storage/async-storage (npm) - 2.2.0
</td>
<td class="componentSummary">Yes</td>
<td class="componentSummary"></td>
<td class="componentSummary">
<a href="#compDetail_497610"
>LICENSE AND COPYRIGHT INFORMATION FOR COMPONENT @react-native-async-storage/async-storage
(npm) - 2.2.0</a
>
</td>
</tr>
<tr>
<td id="BlackDuckCompSummCellInsertionPoint" class="componentSummary">
@react-native-community/geolocation (npm) - 3.4.0
</td>
<td class="componentSummary">Yes</td>
<td class="componentSummary"></td>
<td class="componentSummary">
<a href="#compDetail_398804"
>LICENSE AND COPYRIGHT INFORMATION FOR COMPONENT @react-native-community/geolocation (npm) -
3.4.0</a
>
</td>
</tr>
<tr>
<td id="BlackDuckCompSummCellInsertionPoint" class="componentSummary">ansi-regex (npm) - 5.0.1</td>
<td class="componentSummary">Yes</td>
<td class="componentSummary"></td>
<td class="componentSummary">
<a href="#compDetail_149444"
>LICENSE AND COPYRIGHT INFORMATION FOR COMPONENT ansi-regex (npm) - 5.0.1</a
>
</td>
</tr>
<tr>
<td id="BlackDuckCompSummCellInsertionPoint" class="componentSummary">ansi-regex (npm) - 6.2.2</td>
<td class="componentSummary">Yes</td>
<td class="componentSummary"></td>
<td class="componentSummary">
<a href="#compDetail_429155"
>LICENSE AND COPYRIGHT INFORMATION FOR COMPONENT ansi-regex (npm) - 6.2.2</a
>
</td>
</tr>
<tr>
<td id="BlackDuckCompSummCellInsertionPoint" class="componentSummary">ansi-styles (npm) - 4.3.0</td>
<td class="componentSummary">Yes</td>
<td class="componentSummary"></td>
<td class="componentSummary">
<a href="#compDetail_185194"
>LICENSE AND COPYRIGHT INFORMATION FOR COMPONENT ansi-styles (npm) - 4.3.0</a
>
</td>
</tr>
<tr>
<td id="BlackDuckCompSummCellInsertionPoint" class="componentSummary">ansi-styles (npm) - 6.2.3</td>
<td class="componentSummary">Yes</td>
<td class="componentSummary"></td>
<td class="componentSummary">
<a href="#compDetail_429156"
>LICENSE AND COPYRIGHT INFORMATION FOR COMPONENT ansi-styles (npm) - 6.2.3</a
>
</td>
</tr>
<tr>
<td id="BlackDuckCompSummCellInsertionPoint" class="componentSummary">
balanced-match (npm) - 4.0.4
</td>
<td class="componentSummary">Yes</td>
<td class="componentSummary"></td>
<td class="componentSummary">
<a href="#compDetail_481253"
>LICENSE AND COPYRIGHT INFORMATION FOR COMPONENT balanced-match (npm) - 4.0.4</a
>
</td>
</tr>
<tr>
<td id="BlackDuckCompSummCellInsertionPoint" class="componentSummary">base-64 (npm) - 0.1.0</td>
<td class="componentSummary">Yes</td>
<td class="componentSummary"></td>
<td class="componentSummary">
<a href="#compDetail_283563"
>LICENSE AND COPYRIGHT INFORMATION FOR COMPONENT base-64 (npm) - 0.1.0</a
>
</td>
</tr>
<tr>
<td id="BlackDuckCompSummCellInsertionPoint" class="componentSummary">
brace-expansion (npm) - 5.0.6
</td>
<td class="componentSummary">Yes</td>
<td class="componentSummary"></td>
<td class="componentSummary">
<a href="#compDetail_512860"
>LICENSE AND COPYRIGHT INFORMATION FOR COMPONENT brace-expansion (npm) - 5.0.6</a
>
</td>
</tr>
<tr>
<td id="BlackDuckCompSummCellInsertionPoint" class="componentSummary">cliui - 8.0.2</td>
<td class="componentSummary">Yes</td>
<td class="componentSummary"></td>
<td class="componentSummary">
<a href="#compDetail_233655">LICENSE AND COPYRIGHT INFORMATION FOR COMPONENT cliui - 8.0.2</a>
</td>
</tr>
<tr>
<td id="BlackDuckCompSummCellInsertionPoint" class="componentSummary">
color-convert (npm) - 2.0.1
</td>
<td class="componentSummary">Yes</td>
<td class="componentSummary"></td>
<td class="componentSummary">
<a href="#compDetail_185267"
>LICENSE AND COPYRIGHT INFORMATION FOR COMPONENT color-convert (npm) - 2.0.1</a
>
</td>
</tr>
<tr>
<td id="BlackDuckCompSummCellInsertionPoint" class="componentSummary">color-name (npm) - 1.1.4</td>
<td class="componentSummary">Yes</td>
<td class="componentSummary"></td>
<td class="componentSummary">
<a href="#compDetail_183920"
>LICENSE AND COPYRIGHT INFORMATION FOR COMPONENT color-name (npm) - 1.1.4</a
>
</td>
</tr>
<tr>
<td id="BlackDuckCompSummCellInsertionPoint" class="componentSummary">cross-spawn (npm) - 7.0.6</td>
<td class="componentSummary">Yes</td>
<td class="componentSummary"></td>
<td class="componentSummary">
<a href="#compDetail_344170"
>LICENSE AND COPYRIGHT INFORMATION FOR COMPONENT cross-spawn (npm) - 7.0.6</a
>
</td>
</tr>
<tr>
<td id="BlackDuckCompSummCellInsertionPoint" class="componentSummary">
eastasianwidth (npm) - 0.2.0
</td>
<td class="componentSummary">Yes</td>
<td class="componentSummary"></td>
<td class="componentSummary">
<a href="#compDetail_209144"
>LICENSE AND COPYRIGHT INFORMATION FOR COMPONENT eastasianwidth (npm) - 0.2.0</a
>
</td>
</tr>
<tr>
<td id="BlackDuckCompSummCellInsertionPoint" class="componentSummary">emoji-regex (npm) - 8.0.0</td>
<td class="componentSummary">Yes</td>
<td class="componentSummary"></td>
<td class="componentSummary">
<a href="#compDetail_185340"
>LICENSE AND COPYRIGHT INFORMATION FOR COMPONENT emoji-regex (npm) - 8.0.0</a
>
</td>
</tr>
<tr>
<td id="BlackDuckCompSummCellInsertionPoint" class="componentSummary">emoji-regex (npm) - 9.2.2</td>
<td class="componentSummary">Yes</td>
<td class="componentSummary"></td>
<td class="componentSummary">
<a href="#compDetail_115200"
>LICENSE AND COPYRIGHT INFORMATION FOR COMPONENT emoji-regex (npm) - 9.2.2</a
>
</td>
</tr>
<tr>
<td id="BlackDuckCompSummCellInsertionPoint" class="componentSummary">
foreground-child (npm) - 3.3.1
</td>
<td class="componentSummary">Yes</td>
<td class="componentSummary"></td>
<td class="componentSummary">
<a href="#compDetail_373245"
>LICENSE AND COPYRIGHT INFORMATION FOR COMPONENT foreground-child (npm) - 3.3.1</a
>
</td>
</tr>
<tr>
<td id="BlackDuckCompSummCellInsertionPoint" class="componentSummary">glob (npm) - 11.1.0</td>
<td class="componentSummary">Yes</td>
<td class="componentSummary"></td>
<td class="componentSummary">
<a href="#compDetail_456830"
>LICENSE AND COPYRIGHT INFORMATION FOR COMPONENT glob (npm) - 11.1.0</a
>
</td>
</tr>
<tr>
<td id="BlackDuckCompSummCellInsertionPoint" class="componentSummary">glob (npm) - 13.0.1</td>
<td class="componentSummary">Yes</td>
<td class="componentSummary"></td>
<td class="componentSummary">
<a href="#compDetail_485144"
>LICENSE AND COPYRIGHT INFORMATION FOR COMPONENT glob (npm) - 13.0.1</a
>
</td>
</tr>
<tr>
<td id="BlackDuckCompSummCellInsertionPoint" class="componentSummary">
is-fullwidth-code-point (npm) - 3.0.0
</td>
<td class="componentSummary">Yes</td>
<td class="componentSummary"></td>
<td class="componentSummary">
<a href="#compDetail_185485"
>LICENSE AND COPYRIGHT INFORMATION FOR COMPONENT is-fullwidth-code-point (npm) - 3.0.0</a
>
</td>
</tr>
<tr>
<td id="BlackDuckCompSummCellInsertionPoint" class="componentSummary">
is-plain-obj (npm) - 2.1.0
</td>
<td class="componentSummary">Yes</td>
<td class="componentSummary"></td>
<td class="componentSummary">
<a href="#compDetail_207776"
>LICENSE AND COPYRIGHT INFORMATION FOR COMPONENT is-plain-obj (npm) - 2.1.0</a
>
</td>
</tr>
<tr>
<td id="BlackDuckCompSummCellInsertionPoint" class="componentSummary">isexe (npm) - 2.0.0</td>
<td class="componentSummary">Yes</td>
<td class="componentSummary"></td>
<td class="componentSummary">
<a href="#compDetail_185507"
>LICENSE AND COPYRIGHT INFORMATION FOR COMPONENT isexe (npm) - 2.0.0</a
>
</td>
</tr>
<tr>
<td id="BlackDuckCompSummCellInsertionPoint" class="componentSummary">jackspeak (npm) - 2.3.6</td>
<td class="componentSummary">Yes</td>
<td class="componentSummary"></td>
<td class="componentSummary">
<a href="#compDetail_246208"
>LICENSE AND COPYRIGHT INFORMATION FOR COMPONENT jackspeak (npm) - 2.3.6</a
>
</td>
</tr>
<tr>
<td id="BlackDuckCompSummCellInsertionPoint" class="componentSummary">jackspeak (npm) - 4.2.3</td>
<td class="componentSummary">Yes</td>
<td class="componentSummary"></td>
<td class="componentSummary">
<a href="#compDetail_476723"
>LICENSE AND COPYRIGHT INFORMATION FOR COMPONENT jackspeak (npm) - 4.2.3</a
>
</td>
</tr>
<tr>
<td id="BlackDuckCompSummCellInsertionPoint" class="componentSummary">js-base64 (npm) - 3.7.8</td>
<td class="componentSummary">Yes</td>
<td class="componentSummary"></td>
<td class="componentSummary">
<a href="#compDetail_427150"
>LICENSE AND COPYRIGHT INFORMATION FOR COMPONENT js-base64 (npm) - 3.7.8</a
>
</td>
</tr>
<tr>
<td id="BlackDuckCompSummCellInsertionPoint" class="componentSummary">lru-cache (npm) - 10.4.3</td>
<td class="componentSummary">Yes</td>
<td class="componentSummary"></td>
<td class="componentSummary">
<a href="#compDetail_313510"
>LICENSE AND COPYRIGHT INFORMATION FOR COMPONENT lru-cache (npm) - 10.4.3</a
>
</td>
</tr>
<tr>
<td id="BlackDuckCompSummCellInsertionPoint" class="componentSummary">lru-cache (npm) - 11.5.1</td>
<td class="componentSummary">Yes</td>
<td class="componentSummary"></td>
<td class="componentSummary">
<a href="#compDetail_520375"
>LICENSE AND COPYRIGHT INFORMATION FOR COMPONENT lru-cache (npm) - 11.5.1</a
>
</td>
</tr>
<tr>
<td id="BlackDuckCompSummCellInsertionPoint" class="componentSummary">lru-cache (npm) - 5.1.1</td>
<td class="componentSummary">Yes</td>
<td class="componentSummary"></td>
<td class="componentSummary">
<a href="#compDetail_158942"
>LICENSE AND COPYRIGHT INFORMATION FOR COMPONENT lru-cache (npm) - 5.1.1</a
>
</td>
</tr>
<tr>
<td id="BlackDuckCompSummCellInsertionPoint" class="componentSummary">merge-options - 3.0.4</td>
<td class="componentSummary">Yes</td>
<td class="componentSummary"></td>
<td class="componentSummary">
<a href="#compDetail_136893"
>LICENSE AND COPYRIGHT INFORMATION FOR COMPONENT merge-options - 3.0.4</a
>
</td>
</tr>
<tr>
<td id="BlackDuckCompSummCellInsertionPoint" class="componentSummary">minimatch (npm) - 10.2.5</td>
<td class="componentSummary">Yes</td>
<td class="componentSummary"></td>
<td class="componentSummary">
<a href="#compDetail_495057"
>LICENSE AND COPYRIGHT INFORMATION FOR COMPONENT minimatch (npm) - 10.2.5</a
>
</td>
</tr>
<tr>
<td id="BlackDuckCompSummCellInsertionPoint" class="componentSummary">minipass (npm) - 7.1.3</td>
<td class="componentSummary">Yes</td>
<td class="componentSummary"></td>
<td class="componentSummary">
<a href="#compDetail_479164"
>LICENSE AND COPYRIGHT INFORMATION FOR COMPONENT minipass (npm) - 7.1.3</a
>
</td>
</tr>
<tr>
<td id="BlackDuckCompSummCellInsertionPoint" class="componentSummary">
package-json-from-dist (npm) - 1.0.1
</td>
<td class="componentSummary">Yes</td>
<td class="componentSummary"></td>
<td class="componentSummary">
<a href="#compDetail_331780"
>LICENSE AND COPYRIGHT INFORMATION FOR COMPONENT package-json-from-dist (npm) - 1.0.1</a
>
</td>
</tr>
<tr>
<td id="BlackDuckCompSummCellInsertionPoint" class="componentSummary">path-key (npm) - 3.1.1</td>
<td class="componentSummary">Yes</td>
<td class="componentSummary"></td>
<td class="componentSummary">
<a href="#compDetail_183921"
>LICENSE AND COPYRIGHT INFORMATION FOR COMPONENT path-key (npm) - 3.1.1</a
>
</td>
</tr>
<tr>
<td id="BlackDuckCompSummCellInsertionPoint" class="componentSummary">
path-scurry (npm) - 1.11.1
</td>
<td class="componentSummary">Yes</td>
<td class="componentSummary"></td>
<td class="componentSummary">
<a href="#compDetail_301066"
>LICENSE AND COPYRIGHT INFORMATION FOR COMPONENT path-scurry (npm) - 1.11.1</a
>
</td>
</tr>
<tr>
<td id="BlackDuckCompSummCellInsertionPoint" class="componentSummary">path-scurry (npm) - 2.0.2</td>
<td class="componentSummary">Yes</td>
<td class="componentSummary"></td>
<td class="componentSummary">
<a href="#compDetail_479804"
>LICENSE AND COPYRIGHT INFORMATION FOR COMPONENT path-scurry (npm) - 2.0.2</a
>
</td>
</tr>
<tr>
<td id="BlackDuckCompSummCellInsertionPoint" class="componentSummary">
react-native-blob-util (npm) - 0.24.7
</td>
<td class="componentSummary">Yes</td>
<td class="componentSummary"></td>
<td class="componentSummary">
<a href="#compDetail_511958"
>LICENSE AND COPYRIGHT INFORMATION FOR COMPONENT react-native-blob-util (npm) - 0.24.7</a
>
</td>
</tr>
<tr>
<td id="BlackDuckCompSummCellInsertionPoint" class="componentSummary">
react-native-geocoder (npm) - 0.5.0
</td>
<td class="componentSummary">Yes</td>
<td class="componentSummary"></td>
<td class="componentSummary">
<a href="#compDetail_305018"
>LICENSE AND COPYRIGHT INFORMATION FOR COMPONENT react-native-geocoder (npm) - 0.5.0</a
>
</td>
</tr>
<tr>
<td id="BlackDuckCompSummCellInsertionPoint" class="componentSummary">
react-native-permissions (npm) - 5.5.1
</td>
<td class="componentSummary">Yes</td>
<td class="componentSummary"></td>
<td class="componentSummary">
<a href="#compDetail_511960"
>LICENSE AND COPYRIGHT INFORMATION FOR COMPONENT react-native-permissions (npm) - 5.5.1</a
>
</td>
</tr>
<tr>
<td id="BlackDuckCompSummCellInsertionPoint" class="componentSummary">
shebang-command (npm) - 2.0.0
</td>
<td class="componentSummary">Yes</td>
<td class="componentSummary"></td>
<td class="componentSummary">
<a href="#compDetail_196774"
>LICENSE AND COPYRIGHT INFORMATION FOR COMPONENT shebang-command (npm) - 2.0.0</a
>
</td>
</tr>
<tr>
<td id="BlackDuckCompSummCellInsertionPoint" class="componentSummary">
shebang-regex (npm) - 3.0.0
</td>
<td class="componentSummary">Yes</td>
<td class="componentSummary"></td>
<td class="componentSummary">
<a href="#compDetail_183924"
>LICENSE AND COPYRIGHT INFORMATION FOR COMPONENT shebang-regex (npm) - 3.0.0</a
>
</td>
</tr>
<tr>
<td id="BlackDuckCompSummCellInsertionPoint" class="componentSummary">signal-exit (npm) - 3.0.7</td>
<td class="componentSummary">Yes</td>
<td class="componentSummary"></td>
<td class="componentSummary">
<a href="#compDetail_185754"
>LICENSE AND COPYRIGHT INFORMATION FOR COMPONENT signal-exit (npm) - 3.0.7</a
>
</td>
</tr>
<tr>
<td id="BlackDuckCompSummCellInsertionPoint" class="componentSummary">signal-exit (npm) - 4.1.0</td>
<td class="componentSummary">Yes</td>
<td class="componentSummary"></td>
<td class="componentSummary">
<a href="#compDetail_234022"
>LICENSE AND COPYRIGHT INFORMATION FOR COMPONENT signal-exit (npm) - 4.1.0</a
>
</td>
</tr>
<tr>
<td id="BlackDuckCompSummCellInsertionPoint" class="componentSummary">
string-width (npm) - 4.2.3
</td>
<td class="componentSummary">Yes</td>
<td class="componentSummary"></td>
<td class="componentSummary">
<a href="#compDetail_185765"
>LICENSE AND COPYRIGHT INFORMATION FOR COMPONENT string-width (npm) - 4.2.3</a
>
</td>
</tr>
<tr>
<td id="BlackDuckCompSummCellInsertionPoint" class="componentSummary">string-width - 5.1.2</td>
<td class="componentSummary">Yes</td>
<td class="componentSummary"></td>
<td class="componentSummary">
<a href="#compDetail_143773"
>LICENSE AND COPYRIGHT INFORMATION FOR COMPONENT string-width - 5.1.2</a
>
</td>
</tr>
<tr>
<td id="BlackDuckCompSummCellInsertionPoint" class="componentSummary">strip-ansi (npm) - 6.0.1</td>
<td class="componentSummary">Yes</td>
<td class="componentSummary"></td>
<td class="componentSummary">
<a href="#compDetail_185767"
>LICENSE AND COPYRIGHT INFORMATION FOR COMPONENT strip-ansi (npm) - 6.0.1</a
>
</td>
</tr>
<tr>
<td id="BlackDuckCompSummCellInsertionPoint" class="componentSummary">strip-ansi (npm) - 7.2.0</td>
<td class="componentSummary">Yes</td>
<td class="componentSummary"></td>
<td class="componentSummary">
<a href="#compDetail_483410"
>LICENSE AND COPYRIGHT INFORMATION FOR COMPONENT strip-ansi (npm) - 7.2.0</a
>
</td>
</tr>
<tr>
<td id="BlackDuckCompSummCellInsertionPoint" class="componentSummary">which (npm) - 2.0.2</td>
<td class="componentSummary">Yes</td>
<td class="componentSummary"></td>
<td class="componentSummary">
<a href="#compDetail_183922"
>LICENSE AND COPYRIGHT INFORMATION FOR COMPONENT which (npm) - 2.0.2</a
>
</td>
</tr>
<tr>
<td id="BlackDuckCompSummCellInsertionPoint" class="componentSummary">wrap-ansi (npm) - 7.0.0</td>
<td class="componentSummary">Yes</td>
<td class="componentSummary"></td>
<td class="componentSummary">
<a href="#compDetail_233648"
>LICENSE AND COPYRIGHT INFORMATION FOR COMPONENT wrap-ansi (npm) - 7.0.0</a
>
</td>
</tr>
<tr>
<td id="BlackDuckCompSummCellInsertionPoint" class="componentSummary">wrap-ansi (npm) - 8.1.0</td>
<td class="componentSummary">Yes</td>
<td class="componentSummary"></td>
<td class="componentSummary">
<a href="#compDetail_209423"
>LICENSE AND COPYRIGHT INFORMATION FOR COMPONENT wrap-ansi (npm) - 8.1.0</a
>
</td>
</tr>
<tr>
<td id="BlackDuckCompSummCellInsertionPoint" class="componentSummary">yallist (npm) - 3.1.1</td>
<td class="componentSummary">Yes</td>
<td class="componentSummary"></td>
<td class="componentSummary">
<a href="#compDetail_158963"
>LICENSE AND COPYRIGHT INFORMATION FOR COMPONENT yallist (npm) - 3.1.1</a
>
</td>
</tr>
</tbody>
</table>
<table class="componentDetail">
<tbody id="component-detail">
<tr class="componentDetail">
<td class="componentDetail">
<h4><br /><a name="compDetail_476687">LICENSE CONDITIONS AND COPYRIGHT NOTICES</a></h4>
<h4>Open Source Software: - @isaacs/cliui (npm) - 9.0.0</h4>
<p class="important">
Enclosed you will find the
<a href="#compLicenseText_476687">license conditions</a> applicable for - @isaacs/cliui
(npm) - 9.0.0
</p>
<br />
<h5><a name="compLicenseText_476687">License conditions:</a></h5>
<br />
<table class="licenseText">
<tr>
<td>
# Blue Oak Model License<br />
<br />Version 1.0.0<br />
<br />## Purpose<br />
<br />This license gives everyone as much permission to work with<br />this software
as possible, while protecting contributors<br />from liability.<br />
<br />## Acceptance<br />
<br />In order to receive this license, you must agree to its<br />rules. The rules
of this license are both obligations<br />under that agreement and conditions to
your license.<br />You must not do anything with this software that triggers<br />a
rule that you cannot or will not follow.<br />
<br />## Copyright<br />
<br />Each contributor licenses you to do everything with this<br />software that
would otherwise infringe that contributor's<br />copyright in it.<br />
<br />## Notices<br />
<br />You must ensure that everyone who gets a copy of<br />any part of this
software from you, with or without<br />changes, also gets the text of this license