From f6c62e257f7f33191856b76ddffd6c3275d483cd Mon Sep 17 00:00:00 2001 From: "Sahu, Jyoti" Date: Tue, 24 Sep 2024 16:14:38 -0600 Subject: [PATCH 1/6] add task_id for ACT_HI_VARINST table for task variables --- .../producer/DefaultHistoryEventProducer.java | 17 ++++++++++ .../HistoricVariableInstanceScopeTest.java | 9 ++++++ .../history/HistoricVariableInstanceTest.java | 27 ++++++++++++++++ .../UserOperationLogQueryTest.java | 31 +++++++++++++++++-- 4 files changed, 82 insertions(+), 2 deletions(-) diff --git a/engine/src/main/java/org/camunda/bpm/engine/impl/history/producer/DefaultHistoryEventProducer.java b/engine/src/main/java/org/camunda/bpm/engine/impl/history/producer/DefaultHistoryEventProducer.java index 15a7c15766f..7ba8c0a7c6d 100644 --- a/engine/src/main/java/org/camunda/bpm/engine/impl/history/producer/DefaultHistoryEventProducer.java +++ b/engine/src/main/java/org/camunda/bpm/engine/impl/history/producer/DefaultHistoryEventProducer.java @@ -65,6 +65,7 @@ import org.camunda.bpm.engine.impl.persistence.entity.ExecutionEntity; import org.camunda.bpm.engine.impl.persistence.entity.ExternalTaskEntity; import org.camunda.bpm.engine.impl.persistence.entity.HistoricJobLogEventEntity; +import org.camunda.bpm.engine.impl.persistence.entity.HistoricVariableInstanceEntity; import org.camunda.bpm.engine.impl.persistence.entity.IncidentEntity; import org.camunda.bpm.engine.impl.persistence.entity.JobEntity; import org.camunda.bpm.engine.impl.persistence.entity.ProcessDefinitionEntity; @@ -422,6 +423,7 @@ protected void initHistoricIncidentEvent(HistoricIncidentEventEntity evt, Incide protected HistoryEvent createHistoricVariableEvent(VariableInstanceEntity variableInstance, VariableScope sourceVariableScope, HistoryEventType eventType) { String scopeActivityInstanceId = null; String sourceActivityInstanceId = null; + String taskId = null; if(variableInstance.getExecutionId() != null) { ExecutionEntity scopeExecution = Context.getCommandContext() @@ -449,6 +451,10 @@ else if (variableInstance.getCaseExecutionId() != null) { } else if (sourceVariableScope instanceof TaskEntity) { sourceExecution = ((TaskEntity) sourceVariableScope).getExecution(); if (sourceExecution != null) { + List taskEntityList = sourceExecution.getTasks(); + if(taskEntityList!=null && taskEntityList.size()>0) + taskId = taskEntityList.get(0).getId(); + sourceActivityInstanceId = sourceExecution.getActivityInstanceId(); } else { @@ -475,6 +481,8 @@ else if (sourceVariableScope instanceof CaseExecutionEntity) { // set source activity instance id evt.setActivityInstanceId(sourceActivityInstanceId); + if(taskId!=null && evt.getTaskId()==null) + evt.setTaskId(taskId); // mark initial variables on process start if (sourceExecution != null && sourceExecution.isProcessInstanceStarting() @@ -727,6 +735,15 @@ public HistoryEvent createActivityInstanceUpdateEvt(DelegateExecution execution, if(task != null) { evt.setTaskId(task.getId()); evt.setTaskAssignee(task.getAssignee()); + + List cachedHistoricVariableInstances = Context.getCommandContext().getDbEntityManager().getCachedEntitiesByType(HistoricVariableInstanceEntity.class); + for (HistoricVariableInstanceEntity historicVariableInstance : cachedHistoricVariableInstances) { + if(executionEntity.getActivityInstanceId()!=null && historicVariableInstance.getActivityInstanceId()!=null) { + if (historicVariableInstance.getActivityInstanceId().equals(executionEntity.getActivityInstanceId())) { + historicVariableInstance.setTaskId(task.getId()); + } + } + } } return evt; diff --git a/engine/src/test/java/org/camunda/bpm/engine/test/history/HistoricVariableInstanceScopeTest.java b/engine/src/test/java/org/camunda/bpm/engine/test/history/HistoricVariableInstanceScopeTest.java index 7063113ad62..ed9f6a7a7dc 100644 --- a/engine/src/test/java/org/camunda/bpm/engine/test/history/HistoricVariableInstanceScopeTest.java +++ b/engine/src/test/java/org/camunda/bpm/engine/test/history/HistoricVariableInstanceScopeTest.java @@ -18,6 +18,7 @@ import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNotNull; +import static org.junit.Assert.assertNull; import java.util.HashMap; import java.util.List; @@ -86,6 +87,7 @@ public void testSetVariableLocalOnUserTask() { HistoricVariableInstance variable = query.singleResult(); assertNotNull(variable); + assertEquals(task.getId(),variable.getTaskId()); // the variable is in the task scope assertEquals(taskExecution.getActivityInstanceId(), variable.getActivityInstanceId()); @@ -118,12 +120,14 @@ public void testSetVariableOnProcessIntanceStartAndSetVariableLocalOnUserTask() assertEquals("testValue", firstVar.getValue()); // the variable is in the process instance scope assertEquals(pi.getId(), firstVar.getActivityInstanceId()); + assertNull(firstVar.getTaskId()); HistoricVariableInstance secondVar = result.get(1); assertEquals("testVar", secondVar.getVariableName()); assertEquals("anotherTestValue", secondVar.getValue()); // the variable is in the task scope assertEquals(taskExecution.getActivityInstanceId(), secondVar.getActivityInstanceId()); + assertEquals(task.getId(),secondVar.getTaskId()); taskService.complete(task.getId()); testRule.assertProcessEnded(pi.getId()); @@ -145,6 +149,7 @@ public void testSetVariableOnUserTaskInsideSubProcess() { HistoricVariableInstance variable = query.singleResult(); // the variable is in the process instance scope assertEquals(pi.getId(), variable.getActivityInstanceId()); + assertEquals(task.getId(),variable.getTaskId()); taskService.complete(task.getId()); testRule.assertProcessEnded(pi.getId()); @@ -161,6 +166,7 @@ public void testSetVariableOnServiceTaskInsideSubProcess() { HistoricVariableInstance variable = query.singleResult(); // the variable is in the process instance scope assertEquals(pi.getId(), variable.getActivityInstanceId()); + assertNull(variable.getTaskId()); testRule.assertProcessEnded(pi.getId()); } @@ -205,6 +211,7 @@ public void testSetVariableLocalOnTaskInsideParallelBranch() { HistoricVariableInstance variable = query.singleResult(); // the variable is in the user task scope assertEquals(taskExecution.getActivityInstanceId(), variable.getActivityInstanceId()); + assertEquals(task.getId(),variable.getTaskId()); taskService.complete(task.getId()); @@ -227,6 +234,7 @@ public void testSetVariableOnTaskInsideParallelBranch() { HistoricVariableInstance variable = query.singleResult(); // the variable is in the process instance scope assertEquals(pi.getId(), variable.getActivityInstanceId()); + assertEquals(task.getId(),variable.getTaskId()); taskService.complete(task.getId()); @@ -244,6 +252,7 @@ public void testSetVariableOnServiceTaskInsideParallelBranch() { HistoricVariableInstance variable = query.singleResult(); // the variable is in the process instance scope assertEquals(pi.getId(), variable.getActivityInstanceId()); + assertNull(variable.getTaskId()); testRule.assertProcessEnded(pi.getId()); } diff --git a/engine/src/test/java/org/camunda/bpm/engine/test/history/HistoricVariableInstanceTest.java b/engine/src/test/java/org/camunda/bpm/engine/test/history/HistoricVariableInstanceTest.java index e7305899f2e..ed0bb835e59 100644 --- a/engine/src/test/java/org/camunda/bpm/engine/test/history/HistoricVariableInstanceTest.java +++ b/engine/src/test/java/org/camunda/bpm/engine/test/history/HistoricVariableInstanceTest.java @@ -672,6 +672,24 @@ public void testBinaryFetchingEnabled() { taskService.deleteTask(newTask.getId(), true); } + @Test + public void testTaskIdInHistoricVariableInstance() { + + Task newTask = taskService.newTask(); + taskService.saveTask(newTask); + + String variableName = "varName"; + taskService.setVariable(newTask.getId(), variableName, "varValue"); + + HistoricVariableInstance variableInstance = historyService.createHistoricVariableInstanceQuery() + .variableName(variableName) + .singleResult(); + + assertEquals(newTask.getId(),variableInstance.getTaskId()); + + taskService.deleteTask(newTask.getId(), true); + } + @Test public void testBinaryFetchingDisabled() { @@ -798,6 +816,7 @@ public void testDisableCustomObjectDeserializationNativeQuery() { for (HistoricVariableInstance variableInstance : variableInstances) { assertNull(variableInstance.getErrorMessage()); + assertEquals(newTask.getId(),variableInstance.getTaskId()); ObjectValue typedValue = (ObjectValue) variableInstance.getTypedValue(); assertNotNull(typedValue); @@ -829,6 +848,7 @@ public void testErrorMessage() { .singleResult(); assertNull(variableInstance.getValue()); + assertEquals(newTask.getId(),variableInstance.getTaskId()); assertNotNull(variableInstance.getErrorMessage()); taskService.deleteTask(newTask.getId(), true); @@ -1315,6 +1335,7 @@ public void testTaskVariableUpdateOrder() { .createHistoricVariableInstanceQuery() .singleResult(); assertNotNull(variable); + assertEquals(taskId, variable.getTaskId()); String variableInstanceId = variable.getId(); @@ -1349,6 +1370,7 @@ public void testTaskVariableUpdateOrder() { .createHistoricVariableInstanceQuery() .singleResult(); assertNotNull(variable); + assertEquals(taskId, variable.getTaskId()); if (isFullHistoryEnabled()) { @@ -1557,6 +1579,7 @@ public void testSetSameVariableUpdateOrder() { .createHistoricVariableInstanceQuery() .singleResult(); assertNotNull(variable); + assertEquals(taskId,variable.getTaskId()); String variableInstanceId = variable.getId(); @@ -1626,6 +1649,8 @@ public void testProcessDefinitionProperty() { assertNotNull(instance.getProcessDefinitionKey()); assertEquals(key, instance.getProcessDefinitionKey()); + assertEquals(taskId,instance.getTaskId()); + assertNotNull(instance.getProcessDefinitionId()); assertEquals(processInstance.getProcessDefinitionId(), instance.getProcessDefinitionId()); @@ -1673,6 +1698,7 @@ public void testCaseDefinitionProperty() { // then (2) assertCaseVariable(key, caseInstance, instance); + assertEquals(taskId,instance.getTaskId()); // when (3) instance = historyService @@ -2312,6 +2338,7 @@ public void testSetDifferentStates() { createdCounter += 1; } else if (variable.getName().equals("bar")) { Assert.assertEquals(HistoricVariableInstance.STATE_DELETED, variable.getState()); + assertEquals(task.getId(),variable.getTaskId()); deletedCounter += 1; } } diff --git a/engine/src/test/java/org/camunda/bpm/engine/test/history/useroperationlog/UserOperationLogQueryTest.java b/engine/src/test/java/org/camunda/bpm/engine/test/history/useroperationlog/UserOperationLogQueryTest.java index 6db1e25ff76..f400d0468fd 100644 --- a/engine/src/test/java/org/camunda/bpm/engine/test/history/useroperationlog/UserOperationLogQueryTest.java +++ b/engine/src/test/java/org/camunda/bpm/engine/test/history/useroperationlog/UserOperationLogQueryTest.java @@ -1409,7 +1409,8 @@ public void testQueryDeleteVariableHistoryOperationOnTaskOfRunningInstance() { historyService.deleteHistoricVariableInstance(variableInstanceId); // then - verifyHistoricVariableOperationAsserts(1, UserOperationLogEntry.OPERATION_TYPE_DELETE_HISTORY); + //verifyHistoricVariableOperationAsserts(1, UserOperationLogEntry.OPERATION_TYPE_DELETE_HISTORY); + verifyHistoricVariableOperationAssertsWithTaskId(1, UserOperationLogEntry.OPERATION_TYPE_DELETE_HISTORY); verifySingleVariableOperationPropertyChange("name", "testVariable", UserOperationLogEntry.OPERATION_TYPE_DELETE_HISTORY); } @@ -1427,7 +1428,8 @@ public void testQueryDeleteVariableHistoryOperationOnTaskOfHistoricInstance() { historyService.deleteHistoricVariableInstance(variableInstanceId); // then - verifyHistoricVariableOperationAsserts(1, UserOperationLogEntry.OPERATION_TYPE_DELETE_HISTORY); + //verifyHistoricVariableOperationAsserts(1, UserOperationLogEntry.OPERATION_TYPE_DELETE_HISTORY); + verifyHistoricVariableOperationAssertsWithTaskId(1, UserOperationLogEntry.OPERATION_TYPE_DELETE_HISTORY); verifySingleVariableOperationPropertyChange("name", "testVariable", UserOperationLogEntry.OPERATION_TYPE_DELETE_HISTORY); } @@ -1814,6 +1816,31 @@ private void verifyHistoricVariableOperationAsserts(int countAssertValue, String } } + private void verifyHistoricVariableOperationAssertsWithTaskId(int countAssertValue, String operationType) { + String deploymentId = repositoryService.createDeploymentQuery().singleResult().getId(); + UserOperationLogQuery logQuery = query().entityType(EntityTypes.VARIABLE).operationType(operationType); + assertEquals(countAssertValue, logQuery.count()); + + if(countAssertValue > 1) { + List logEntryList = logQuery.list(); + + for (UserOperationLogEntry logEntry : logEntryList) { + assertEquals(process.getProcessDefinitionId(), logEntry.getProcessDefinitionId()); + assertEquals(process.getProcessInstanceId(), logEntry.getProcessInstanceId()); + assertEquals(deploymentId, logEntry.getDeploymentId()); + assertNotNull(logEntry.getTaskId()); + assertEquals(UserOperationLogEntry.CATEGORY_OPERATOR, logEntry.getCategory()); + } + } else { + UserOperationLogEntry logEntry = logQuery.singleResult(); + assertEquals(process.getProcessDefinitionId(), logEntry.getProcessDefinitionId()); + assertEquals(process.getProcessInstanceId(), logEntry.getProcessInstanceId()); + assertEquals(deploymentId, logEntry.getDeploymentId()); + assertNotNull(logEntry.getTaskId()); + assertEquals(UserOperationLogEntry.CATEGORY_OPERATOR, logEntry.getCategory()); + } + } + private void verifySingleVariableOperationPropertyChange(String property, String newValue, String operationType) { UserOperationLogQuery logQuery = query().entityType(EntityTypes.VARIABLE).operationType(operationType); assertEquals(1, logQuery.count()); From aa4d41164a11cbaa289d4496509e9d1ba5cf784b Mon Sep 17 00:00:00 2001 From: "Sahu, Jyoti" Date: Tue, 24 Sep 2024 16:20:45 -0600 Subject: [PATCH 2/6] add task_id for ACT_HI_VARINST table for task variables --- .../history/useroperationlog/UserOperationLogQueryTest.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/engine/src/test/java/org/camunda/bpm/engine/test/history/useroperationlog/UserOperationLogQueryTest.java b/engine/src/test/java/org/camunda/bpm/engine/test/history/useroperationlog/UserOperationLogQueryTest.java index f400d0468fd..aa2bafe6536 100644 --- a/engine/src/test/java/org/camunda/bpm/engine/test/history/useroperationlog/UserOperationLogQueryTest.java +++ b/engine/src/test/java/org/camunda/bpm/engine/test/history/useroperationlog/UserOperationLogQueryTest.java @@ -1409,7 +1409,6 @@ public void testQueryDeleteVariableHistoryOperationOnTaskOfRunningInstance() { historyService.deleteHistoricVariableInstance(variableInstanceId); // then - //verifyHistoricVariableOperationAsserts(1, UserOperationLogEntry.OPERATION_TYPE_DELETE_HISTORY); verifyHistoricVariableOperationAssertsWithTaskId(1, UserOperationLogEntry.OPERATION_TYPE_DELETE_HISTORY); verifySingleVariableOperationPropertyChange("name", "testVariable", UserOperationLogEntry.OPERATION_TYPE_DELETE_HISTORY); } @@ -1428,7 +1427,6 @@ public void testQueryDeleteVariableHistoryOperationOnTaskOfHistoricInstance() { historyService.deleteHistoricVariableInstance(variableInstanceId); // then - //verifyHistoricVariableOperationAsserts(1, UserOperationLogEntry.OPERATION_TYPE_DELETE_HISTORY); verifyHistoricVariableOperationAssertsWithTaskId(1, UserOperationLogEntry.OPERATION_TYPE_DELETE_HISTORY); verifySingleVariableOperationPropertyChange("name", "testVariable", UserOperationLogEntry.OPERATION_TYPE_DELETE_HISTORY); } From 4c8dfef6075c3c64992a7641deff98b6bacd116a Mon Sep 17 00:00:00 2001 From: tasso94 <3015690+tasso94@users.noreply.github.com> Date: Wed, 25 Sep 2024 11:42:36 +0200 Subject: [PATCH 3/6] chore(license-book): update license book for 7.22.0 (#4654) related to camunda/camunda-bpm-platform#4249 --- .../src/main/resources/license-book.txt | 6340 ++--------------- 1 file changed, 617 insertions(+), 5723 deletions(-) diff --git a/distro/license-book/src/main/resources/license-book.txt b/distro/license-book/src/main/resources/license-book.txt index 06a98d74420..5dd07548396 100644 --- a/distro/license-book/src/main/resources/license-book.txt +++ b/distro/license-book/src/main/resources/license-book.txt @@ -1,20 +1,20 @@ -License Book for Camunda Platform 7.21 +License Book for Camunda Platform 7.22 -This is a license book. It contains licensing information for third-party libraries which are used in this release of Camunda Platform 7.21 -(Document generated on: 2024-03-28) +This is a license book. It contains licensing information for third-party libraries which are used in this release of Camunda Platform 7.22 +(Document generated on: 2024-09-24) Introduction This Licensing Information document is a part of the program documentation and is intended to help you understand the license terms and copyright for third-party libraries associated with the Camunda Platform software. -Product License - Camunda Platform 7.21 -This is a distribution of Camunda Platform v7.21 (visit http://docs.camunda.org/) a Java-based framework. The software is mainly published under the Apache License 2.0 and other open source licenses (Community Platform) and in parts under a commercial license agreement (additional features of the Enterprise Platform). Which components are published under an open source license is clearly stated in the license header of a source code file or a LICENSE file present in the root directory of the software code repository. +Product License - Camunda Platform 7.22 +This is a distribution of Camunda Platform v7.22 (visit http://docs.camunda.org/) a Java-based framework. The software is mainly published under the Apache License 2.0 and other open source licenses (Community Platform) and in parts under a commercial license agreement (additional features of the Enterprise Platform). Which components are published under an open source license is clearly stated in the license header of a source code file or a LICENSE file present in the root directory of the software code repository. Licenses for Third-Party Libraries The following sections contain licensing information for third-party libraries that we distribute with the Camunda Platform source code and binaries (Community and Enterprise Platform) for your convenience. None of the Libraries are modified or changed and they are solely distributed as is. For practicality, the license text is only referenced once. Each library (whether provided in source or object form) is licensed to you by its copyright holders under the original open source license listed in this License Book. Nothing in this License Book or any license agreement we enter into with you removes or restricts any rights you may have in respect of any component under its original open source license, or makes any of the original authors or copyright holders of the component liable to you in respect of your use or distribution of that component. We are thankful to all individuals that have created these. -The Libraries used within the Camunda Platform v7.21 are published under the following licenses: +The Libraries used within the Camunda Platform v7.22 are published under the following licenses: * Apache 2.0 * bpmn.io @@ -960,15 +960,15 @@ Last updated: 2022-04-30 =========================================================================================== =========================================================================================== -ch.qos.logback:logback-classic:jar:1.4.14 -https://github.com/qos-ch/logback -Copyright (c) 1999-2015, QOS.ch. All rights reserved +ch.qos.logback:logback-classic:jar:1.5.7 +https://github.com/qos-ch/logback/tree/v_1.5.7 +Copyright (C) 1999-2024, QOS.ch. All rights reserved. Licensed under EPL 1.0 =========================================================================================== -ch.qos.logback:logback-core:jar:1.4.14 -https://github.com/qos-ch/logback -Copyright (c) 1999-2015, QOS.ch. All rights reserved +ch.qos.logback:logback-core:jar:1.5.7 +https://github.com/qos-ch/logback/tree/v_1.5.7 +Copyright (C) 1999-2024, QOS.ch. All rights reserved. Licensed under EPL 1.0 =========================================================================================== @@ -979,27 +979,16 @@ Jackson is a high-performance, Free/Open Source JSON processing library. It was originally written by Tatu Saloranta (tatu.saloranta@iki.fi), and has been in development since 2007. It is currently developed by a community of developers: - Licensed under Apache 2.0 =========================================================================================== -com.fasterxml.jackson.core:jackson-annotations:jar:2.15.3 -https://github.com/FasterXML/jackson-annotations -# Jackson JSON processor +com.fasterxml.jackson.core:jackson-annotations:jar:2.17.2 +https://github.com/FasterXML/jackson-annotations/tree/2.17 +Copyright 2007-, Tatu Saloranta (tatu.saloranta@iki.fi) Jackson is a high-performance, Free/Open Source JSON processing library. It was originally written by Tatu Saloranta (tatu.saloranta@iki.fi), and has been in development since 2007. -It is currently developed by a community of developers. -## Copyright -Copyright 2007-, Tatu Saloranta (tatu.saloranta@iki.fi) -## Licensing -Jackson 2.x core and extension components are licensed under Apache License 2.0 -To find the details that apply to this artifact see the accompanying LICENSE file. -## Credits -A list of contributors may be found from CREDITS(-2.x) file, which is included -in some artifacts (usually source distributions); but is always available -from the source code management (SCM) system project uses. - +It is currently developed by a community of developers: Licensed under Apache 2.0 =========================================================================================== @@ -1010,37 +999,16 @@ Jackson is a high-performance, Free/Open Source JSON processing library. It was originally written by Tatu Saloranta (tatu.saloranta@iki.fi), and has been in development since 2007. It is currently developed by a community of developers: https://github.com/FasterXML/jackson-core/blob/2.16/release-notes/CREDITS-2.x - Licensed under Apache 2.0 =========================================================================================== -com.fasterxml.jackson.core:jackson-core:jar:2.15.3 -https://github.com/FasterXML/jackson-core -# Jackson JSON processor - +com.fasterxml.jackson.core:jackson-core:jar:2.17.2 +https://github.com/FasterXML/jackson-core/tree/2.17 +Copyright 2007-, Tatu Saloranta (tatu.saloranta@iki.fi) Jackson is a high-performance, Free/Open Source JSON processing library. It was originally written by Tatu Saloranta (tatu.saloranta@iki.fi), and has been in development since 2007. -It is currently developed by a community of developers. - -## Copyright -Copyright 2007-, Tatu Saloranta (tatu.saloranta@iki.fi) -## Licensing -Jackson 2.x core and extension components are licensed under Apache License 2.0 -To find the details that apply to this artifact see the accompanying LICENSE file. -## Credits - -A list of contributors may be found from CREDITS(-2.x) file, which is included -in some artifacts (usually source distributions); but is always available -from the source code management (SCM) system project uses. -## FastDoubleParser -jackson-core bundles a shaded copy of FastDoubleParser . -That code is available under an MIT license -under the following copyright. -Copyright © 2023 Werner Randelshofer, Switzerland. MIT License. -See FastDoubleParser-NOTICE for details of other source code included in FastDoubleParser -and the licenses and copyrights that apply to that code. - +It is currently developed by a community of developers: Licensed under Apache 2.0 =========================================================================================== @@ -1051,34 +1019,16 @@ Jackson is a high-performance, Free/Open Source JSON processing library. It was originally written by Tatu Saloranta (tatu.saloranta@iki.fi), and has been in development since 2007. It is currently developed by a community of developers: https://github.com/FasterXML/jackson-databind/blob/2.16/release-notes/CREDITS-2.x - Licensed under Apache 2.0 =========================================================================================== -com.fasterxml.jackson.core:jackson-databind:jar:2.15.3 -https://github.com/FasterXML/jackson-databind -# Jackson JSON processor - +com.fasterxml.jackson.core:jackson-databind:jar:2.17.2 +https://github.com/FasterXML/jackson-databind/tree/2.17 +Copyright 2007-, Tatu Saloranta (tatu.saloranta@iki.fi) Jackson is a high-performance, Free/Open Source JSON processing library. It was originally written by Tatu Saloranta (tatu.saloranta@iki.fi), and has been in development since 2007. -It is currently developed by a community of developers. - -## Copyright - -Copyright 2007-, Tatu Saloranta (tatu.saloranta@iki.fi) - -## Licensing - -Jackson 2.x core and extension components are licensed under Apache License 2.0 -To find the details that apply to this artifact see the accompanying LICENSE file. - -## Credits - -A list of contributors may be found from CREDITS(-2.x) file, which is included -in some artifacts (usually source distributions); but is always available -from the source code management (SCM) system project uses. - +It is currently developed by a community of developers: Licensed under Apache 2.0 =========================================================================================== @@ -1089,57 +1039,26 @@ Jackson is a high-performance, Free/Open Source JSON processing library. It was originally written by Tatu Saloranta (tatu.saloranta@iki.fi), and has been in development since 2007. It is currently developed by a community of developers: https://github.com/FasterXML/jackson-dataformats-text/blob/2.16/release-notes/CREDITS-2.x - Licensed under Apache 2.0 =========================================================================================== -com.fasterxml.jackson.dataformat:jackson-dataformat-csv:jar:2.15.3 -https://github.com/FasterXML/jackson-dataformats-text -# Jackson JSON processor - +com.fasterxml.jackson.dataformat:jackson-dataformat-csv:jar:2.17.2 +https://github.com/FasterXML/jackson-dataformats-text/tree/2.17 +Copyright 2007-, Tatu Saloranta (tatu.saloranta@iki.fi) Jackson is a high-performance, Free/Open Source JSON processing library. It was originally written by Tatu Saloranta (tatu.saloranta@iki.fi), and has been in development since 2007. -It is currently developed by a community of developers. - -## Copyright - -Copyright 2007-, Tatu Saloranta (tatu.saloranta@iki.fi) - -## Licensing - -Jackson components are licensed under Apache (Software) License, version 2.0, -as per accompanying LICENSE file. - -## Credits - -A list of contributors may be found from CREDITS file, which is included -in some artifacts (usually source distributions); but is always available -from the source code management (SCM) system project uses. - +It is currently developed by a community of developers: Licensed under Apache 2.0 =========================================================================================== -com.fasterxml.jackson.datatype:jackson-datatype-jdk8:jar:2.15.3 -https://github.com/FasterXML/jackson-modules-java8 -# Jackson JSON processor - +com.fasterxml.jackson.datatype:jackson-datatype-jdk8:jar:2.17.2 +https://github.com/FasterXML/jackson-modules-java8/tree/2.17 +Copyright 2007-, Tatu Saloranta (tatu.saloranta@iki.fi) Jackson is a high-performance, Free/Open Source JSON processing library. It was originally written by Tatu Saloranta (tatu.saloranta@iki.fi), and has been in development since 2007. -It is currently developed by a community of developers. - -## Licensing - -Jackson components are licensed under Apache (Software) License, version 2.0, -as per accompanying LICENSE file. - -## Credits - -A list of contributors may be found from CREDITS file, which is included -in some artifacts (usually source distributions); but is always available -from the source code management (SCM) system project uses. - +It is currently developed by a community of developers: Licensed under Apache 2.0 =========================================================================================== @@ -1150,30 +1069,16 @@ Jackson is a high-performance, Free/Open Source JSON processing library. It was originally written by Tatu Saloranta (tatu.saloranta@iki.fi), and has been in development since 2007. It is currently developed by a community of developers: https://github.com/FasterXML/jackson-modules-java8/blob/2.16/release-notes/CREDITS-2.x - Licensed under Apache 2.0 =========================================================================================== -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:2.15.3 -https://github.com/FasterXML/jackson-modules-java8 -# Jackson JSON processor - +com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:2.17.2 +https://github.com/FasterXML/jackson-modules-java8/tree/2.17 +Copyright 2007-, Tatu Saloranta (tatu.saloranta@iki.fi) Jackson is a high-performance, Free/Open Source JSON processing library. It was originally written by Tatu Saloranta (tatu.saloranta@iki.fi), and has been in development since 2007. -It is currently developed by a community of developers. - -## Licensing - -Jackson components are licensed under Apache (Software) License, version 2.0, -as per accompanying LICENSE file. - -## Credits - -A list of contributors may be found from CREDITS file, which is included -in some artifacts (usually source distributions); but is always available -from the source code management (SCM) system project uses. - +It is currently developed by a community of developers: Licensed under Apache 2.0 =========================================================================================== @@ -1184,30 +1089,16 @@ Jackson is a high-performance, Free/Open Source JSON processing library. It was originally written by Tatu Saloranta (tatu.saloranta@iki.fi), and has been in development since 2007. It is currently developed by a community of developers: https://github.com/FasterXML/jackson-jakarta-rs-providers/blob/2.16/release-notes/CREDITS-2.x - Licensed under Apache 2.0 =========================================================================================== -com.fasterxml.jackson.jakarta.rs:jackson-jakarta-rs-base:jar:2.15.3 -https://github.com/FasterXML/jackson-jakarta-rs-providers -# Jackson JSON processor - +com.fasterxml.jackson.jakarta.rs:jackson-jakarta-rs-base:jar:2.17.2 +https://github.com/FasterXML/jackson-jakarta-rs-providers/tree/2.17 +Copyright 2007-, Tatu Saloranta (tatu.saloranta@iki.fi) Jackson is a high-performance, Free/Open Source JSON processing library. It was originally written by Tatu Saloranta (tatu.saloranta@iki.fi), and has been in development since 2007. -It is currently developed by a community of developers. - -## Licensing - -Jackson components are licensed under Apache (Software) License, version 2.0, -as per accompanying LICENSE file. - -## Credits - -A list of contributors may be found from CREDITS file, which is included -in some artifacts (usually source distributions); but is always available -from the source code management (SCM) system project uses. - +It is currently developed by a community of developers: Licensed under Apache 2.0 =========================================================================================== @@ -1218,30 +1109,16 @@ Jackson is a high-performance, Free/Open Source JSON processing library. It was originally written by Tatu Saloranta (tatu.saloranta@iki.fi), and has been in development since 2007. It is currently developed by a community of developers: https://github.com/FasterXML/jackson-jakarta-rs-providers/blob/2.16/release-notes/CREDITS-2.x - Licensed under Apache 2.0 =========================================================================================== -com.fasterxml.jackson.jakarta.rs:jackson-jakarta-rs-json-provider:jar:2.15.3 -https://github.com/FasterXML/jackson-jakarta-rs-providers -# Jackson JSON processor - +com.fasterxml.jackson.jakarta.rs:jackson-jakarta-rs-json-provider:jar:2.17.2 +https://github.com/FasterXML/jackson-jakarta-rs-providers/tree/2.17 +Copyright 2007-, Tatu Saloranta (tatu.saloranta@iki.fi) Jackson is a high-performance, Free/Open Source JSON processing library. It was originally written by Tatu Saloranta (tatu.saloranta@iki.fi), and has been in development since 2007. -It is currently developed by a community of developers. - -## Licensing - -Jackson components are licensed under Apache (Software) License, version 2.0, -as per accompanying LICENSE file. - -## Credits - -A list of contributors may be found from CREDITS file, which is included -in some artifacts (usually source distributions); but is always available -from the source code management (SCM) system project uses. - +It is currently developed by a community of developers: Licensed under Apache 2.0 =========================================================================================== @@ -1252,7 +1129,6 @@ Jackson is a high-performance, Free/Open Source JSON processing library. It was originally written by Tatu Saloranta (tatu.saloranta@iki.fi), and has been in development since 2007. It is currently developed by a community of developers: https://github.com/FasterXML/jackson-jaxrs-providers/blob/2.16/release-notes/CREDITS-2.x - Licensed under Apache 2.0 =========================================================================================== @@ -1263,7 +1139,6 @@ Jackson is a high-performance, Free/Open Source JSON processing library. It was originally written by Tatu Saloranta (tatu.saloranta@iki.fi), and has been in development since 2007. It is currently developed by a community of developers: https://github.com/FasterXML/jackson-jaxrs-providers/blob/2.16/release-notes/CREDITS-2.x - Licensed under Apache 2.0 =========================================================================================== @@ -1274,30 +1149,16 @@ Jackson is a high-performance, Free/Open Source JSON processing library. It was originally written by Tatu Saloranta (tatu.saloranta@iki.fi), and has been in development since 2007. It is currently developed by a community of developers: https://github.com/FasterXML/jackson-modules-base/blob/2.16/release-notes/CREDITS-2.x - Licensed under Apache 2.0 =========================================================================================== -com.fasterxml.jackson.module:jackson-module-jakarta-xmlbind-annotations:jar:2.15.3 -https://github.com/FasterXML/jackson-modules-base -# Jackson JSON processor - +com.fasterxml.jackson.module:jackson-module-jakarta-xmlbind-annotations:jar:2.17.2 +https://github.com/FasterXML/jackson-modules-base/tree/2.17 +Copyright 2007-, Tatu Saloranta (tatu.saloranta@iki.fi) Jackson is a high-performance, Free/Open Source JSON processing library. It was originally written by Tatu Saloranta (tatu.saloranta@iki.fi), and has been in development since 2007. -It is currently developed by a community of developers. - -## Licensing - -Jackson components are licensed under Apache (Software) License, version 2.0, -as per accompanying LICENSE file. - -## Credits - -A list of contributors may be found from CREDITS file, which is included -in some artifacts (usually source distributions); but is always available -from the source code management (SCM) system project uses. - +It is currently developed by a community of developers: Licensed under Apache 2.0 =========================================================================================== @@ -1308,30 +1169,16 @@ Jackson is a high-performance, Free/Open Source JSON processing library. It was originally written by Tatu Saloranta (tatu.saloranta@iki.fi), and has been in development since 2007. It is currently developed by a community of developers: https://github.com/FasterXML/jackson-modules-base/blob/2.16/release-notes/CREDITS-2.x - Licensed under Apache 2.0 =========================================================================================== -com.fasterxml.jackson.module:jackson-module-parameter-names:jar:2.15.3 -https://github.com/FasterXML/jackson-modules-java8 -# Jackson JSON processor - +com.fasterxml.jackson.module:jackson-module-parameter-names:jar:2.17.2 +https://github.com/FasterXML/jackson-modules-java8/tree/2.17 +Copyright 2007-, Tatu Saloranta (tatu.saloranta@iki.fi) Jackson is a high-performance, Free/Open Source JSON processing library. It was originally written by Tatu Saloranta (tatu.saloranta@iki.fi), and has been in development since 2007. -It is currently developed by a community of developers. - -## Licensing - -Jackson components are licensed under Apache (Software) License, version 2.0, -as per accompanying LICENSE file. - -## Credits - -A list of contributors may be found from CREDITS file, which is included -in some artifacts (usually source distributions); but is always available -from the source code management (SCM) system project uses. - +It is currently developed by a community of developers: Licensed under Apache 2.0 =========================================================================================== @@ -1343,22 +1190,16 @@ Other developers who have contributed code are: * Eric Bie contributed extensive unit test suite which has helped ensure high implementation quality - Licensed under Apache 2.0 =========================================================================================== -com.fasterxml:classmate:jar:1.6.0 -https://github.com/FasterXML/java-classmate -Java ClassMate library was originally written by Tatu Saloranta (tatu.saloranta@iki.fi) - -Other developers who have contributed code are: - -* Brian Langel - -## Copyright - +com.fasterxml:classmate:jar:1.7.0 +https://github.com/FasterXML/java-classmate/tree/classmate-1.7.0 Copyright 2007-, Tatu Saloranta (tatu.saloranta@iki.fi) - +Jackson is a high-performance, Free/Open Source JSON processing library. +It was originally written by Tatu Saloranta (tatu.saloranta@iki.fi), and has +been in development since 2007. +It is currently developed by a community of developers Licensed under Apache 2.0 =========================================================================================== @@ -1374,11 +1215,17 @@ Copyright: 2008 Google Inc. Licensed under Apache 2.0 =========================================================================================== -com.h2database:h2:jar:2.1.214 -https://github.com/h2database/h2database -Copyright (c) various contributors: https://github.com/h2database/h2database/graphs/contributors +com.h2database:h2:jar:2.3.232 +https://github.com/h2database/h2database/tree/version-2.3.232 +Copyright 2004-2024 H2 Group Licensed under EPL 1.0 +=========================================================================================== +com.ibm.async:asyncutil:jar:0.1.0 +https://github.com/IBM/java-async-util/tree/v0.1.0/asyncutil +Copyright (c) IBM Corporation 2017. All Rights Reserved +Licensed under Apache 2.0 + =========================================================================================== com.ibm.icu:icu4j:jar:68.2 https://github.com/unicode-org/icu @@ -1392,7 +1239,6 @@ Licensed under Unicode com.jayway.jsonpath:json-path:jar:2.9.0 https://github.com/json-path/JsonPath Copyright 2011 the original author or authors - Licensed under Apache 2.0 =========================================================================================== @@ -1405,7 +1251,6 @@ Licensed under MIT com.lihaoyi:geny_2.13:jar:1.0.0 https://github.com/com-lihaoyi/geny Copyright (c) 2016 Li Haoyi (haoyi.sg@gmail.com) - Licensed under MIT =========================================================================================== @@ -1414,6 +1259,30 @@ https://github.com/com-lihaoyi/sourcecode Copyright (c) 2014 Li Haoyi (haoyi.sg@gmail.com) Licensed under MIT +=========================================================================================== +com.nimbusds:content-type:jar:2.2 +https://bitbucket.org/connect2id/nimbus-content-type/src/2.2/ +Copyright 2020, Connect2id Ltd. +Licensed under Apache 2.0 + +=========================================================================================== +com.nimbusds:lang-tag:jar:1.7 +https://bitbucket.org/connect2id/nimbus-language-tags/src/1.7/ +Copyright 2012-2022, Connect2id Ltd. +Licensed under Apache 2.0 + +=========================================================================================== +com.nimbusds:nimbus-jose-jwt:jar:9.37.3 +https://bitbucket.org/connect2id/nimbus-jose-jwt/src/9.37.3/ +Copyright 2012 - 2022, Connect2id Ltd. +Licensed under Apache 2.0 + +=========================================================================================== +com.nimbusds:oauth2-oidc-sdk:jar:9.43.4 +https://bitbucket.org/connect2id/oauth-2.0-sdk-with-openid-connect-extensions/src/9.43.4/ +Copyright 2012-2022, Connect2id Ltd and contributors. +Licensed under Apache 2.0 + =========================================================================================== com.sun.activation:jakarta.activation:jar:1.2.2 https://github.com/eclipse-ee4j/jaf/tree/1.2.2/activation @@ -1421,10 +1290,9 @@ Copyright (c) 2018 Oracle and/or its affiliates. All rights reserved Licensed under EDL 1.0 =========================================================================================== -com.sun.xml.bind:jaxb-core:jar:4.0.4 -https://github.com/eclipse-ee4j/jaxb-ri/ +com.sun.xml.bind:jaxb-core:jar:4.0.5 +https://github.com/eclipse-ee4j/jaxb-ri/tree/4.0.5-RI Copyright (c) 2018 Oracle and/or its affiliates. All rights reserved. - Licensed under BSD-3-Clause =========================================================================================== @@ -1434,15 +1302,15 @@ Copyright (c) 2018 Oracle and/or its affiliates. All rights reserved. Licensed under EDL 1.0 =========================================================================================== -com.sun.xml.bind:jaxb-impl:jar:4.0.4 -https://github.com/eclipse-ee4j/jaxb-ri/ +com.sun.xml.bind:jaxb-impl:jar:4.0.5 +https://github.com/eclipse-ee4j/jaxb-ri/tree/4.0.5-RI Copyright (c) 2018 Oracle and/or its affiliates. All rights reserved. Licensed under BSD-3-Clause =========================================================================================== -com.zaxxer:HikariCP:jar:5.0.1 -https://github.com/brettwooldridge/HikariCP -Copyright (C) Brett Wooldridge +com.zaxxer:HikariCP:jar:5.1.0 +https://github.com/brettwooldridge/HikariCP/tree/HikariCP-5.1.0 +Copyright (C) Brett Wooldridge Licensed under Apache 2.0 =========================================================================================== @@ -1463,16 +1331,23 @@ with permission from the original authors. Original source copyright: Copyright (c) 2008 Alexander Beider & Stephen P. Morse. ====================================================================== - Licensed under Apache 2.0 =========================================================================================== -commons-codec:commons-codec:jar:1.16.0 +commons-codec:commons-codec:jar:1.16.1 http://commons.apache.org/codec/ -Copyright 2002-2024 The Apache Software Foundation +Apache Commons Codec +Copyright 2002-2021 The Apache Software Foundation This product includes software developed at The Apache Software Foundation (https://www.apache.org/). - +src/test/org/apache/commons/codec/language/DoubleMetaphoneTest.java +contains test data from http://aspell.net/test/orig/batch0.tab. +Copyright (C) 2002 Kevin Atkinson (kevina@gnu.org) +The content of package org.apache.commons.codec.language.bm has been translated +from the original php source code available at http://stevemorse.org/phoneticinfo.htm +with permission from the original authors. +Original source copyright: +Copyright (c) 2008 Alexander Beider & Stephen P. Morse. Licensed under Apache 2.0 =========================================================================================== @@ -1483,7 +1358,6 @@ Apache Commons FileUpload Copyright 2002-2023 The Apache Software Foundation This product includes software developed at The Apache Software Foundation (http://www.apache.org/). - Licensed under Apache 2.0 =========================================================================================== @@ -1496,7 +1370,6 @@ Copyright 2002-2020 The Apache Software Foundation This product includes software developed at The Apache Software Foundation (https://www.apache.org/). ====================================================================== - Licensed under Apache 2.0 =========================================================================================== @@ -1520,105 +1393,15 @@ Copyright 2003-2016 The Apache Software Foundation Licensed under Apache 2.0 =========================================================================================== -io.micrometer:micrometer-commons:jar:1.12.2 -https://github.com/micrometer-metrics/micrometer -Micrometer - +io.micrometer:micrometer-commons:jar:1.13.3 +https://github.com/micrometer-metrics/micrometer/tree/v1.13.3 Copyright (c) 2017-Present VMware, Inc. All Rights Reserved. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - https://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. - -------------------------------------------------------------------------------- - -This product contains a modified portion of 'io.netty.util.internal.logging', -in the Netty/Common library distributed by The Netty Project: - - * Copyright 2013 The Netty Project - * License: Apache License v2.0 - * Homepage: https://netty.io - -This product contains a modified portion of 'StringUtils.isBlank()', -in the Commons Lang library distributed by The Apache Software Foundation: - - * Copyright 2001-2019 The Apache Software Foundation - * License: Apache License v2.0 - * Homepage: https://commons.apache.org/proper/commons-lang/ - -This product contains a modified portion of 'JsonUtf8Writer', -in the Moshi library distributed by Square, Inc: - - * Copyright 2010 Google Inc. - * License: Apache License v2.0 - * Homepage: https://github.com/square/moshi - -This product contains a modified portion of the 'org.springframework.lang' -package in the Spring Framework library, distributed by VMware, Inc: - - * Copyright 2002-2019 the original author or authors. - * License: Apache License v2.0 - * Homepage: https://spring.io/projects/spring-framework - Licensed under Apache 2.0 =========================================================================================== -io.micrometer:micrometer-observation:jar:1.12.2 -https://github.com/micrometer-metrics/micrometer -Micrometer - +io.micrometer:micrometer-observation:jar:1.13.3 +https://github.com/micrometer-metrics/micrometer/tree/v1.13.3 Copyright (c) 2017-Present VMware, Inc. All Rights Reserved. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - https://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. - -------------------------------------------------------------------------------- - -This product contains a modified portion of 'io.netty.util.internal.logging', -in the Netty/Common library distributed by The Netty Project: - - * Copyright 2013 The Netty Project - * License: Apache License v2.0 - * Homepage: https://netty.io - -This product contains a modified portion of 'StringUtils.isBlank()', -in the Commons Lang library distributed by The Apache Software Foundation: - - * Copyright 2001-2019 The Apache Software Foundation - * License: Apache License v2.0 - * Homepage: https://commons.apache.org/proper/commons-lang/ - -This product contains a modified portion of 'JsonUtf8Writer', -in the Moshi library distributed by Square, Inc: - - * Copyright 2010 Google Inc. - * License: Apache License v2.0 - * Homepage: https://github.com/square/moshi - -This product contains a modified portion of the 'org.springframework.lang' -package in the Spring Framework library, distributed by VMware, Inc: - - * Copyright 2002-2019 the original author or authors. - * License: Apache License v2.0 - * Homepage: https://spring.io/projects/spring-framework - Licensed under Apache 2.0 =========================================================================================== @@ -1650,10 +1433,15 @@ JUnit (4.12) Licensed under BSD-3-Clause =========================================================================================== -jakarta.activation:jakarta.activation-api:jar:2.1.2 -https://github.com/eclipse-ee4j/jaf -Copyright (c) 2018 Oracle and/or its affiliates. All rights reserved +jakarta.activation:jakarta.activation-api:jar:2.1.0 +https://github.com/jakartaee/jaf-api/tree/2.1.0 +Copyright (c) 2018 Oracle and/or its affiliates. All rights reserved. +Licensed under BSD-3-Clause +=========================================================================================== +jakarta.activation:jakarta.activation-api:jar:2.1.3 +https://github.com/jakartaee/jaf-api/tree/2.1.3 +Copyright (c) 2018 Oracle and/or its affiliates. All rights reserved. Licensed under BSD-3-Clause =========================================================================================== @@ -1700,9 +1488,14 @@ Licensed under EPL 2.0 jakarta.inject:jakarta.inject-api:jar:2.0.1 https://github.com/jakartaee/inject/tree/master Copyright (c) Eclipse Jakarta Dependency Injection project. All content is the property of the respective authors or their employers. For more information regarding authorship of content, please consult the listed source code repository logs - Licensed under Apache 2.0 +=========================================================================================== +jakarta.servlet:jakarta.servlet-api:jar:6.0.0 +https://github.com/jakartaee/servlet/tree/6.0.0-RELEASE +Copyright (c) 1997, 2021 Oracle and/or its affiliates. All rights reserved. +Licensed under EPL 2.0 + =========================================================================================== jakarta.validation:jakarta.validation-api:jar:2.0.2 https://github.com/eclipse-ee4j/beanvalidation-api @@ -1755,16 +1548,26 @@ jakarta.xml.bind:jakarta.xml.bind-api:jar:2.3.3 https://github.com/eclipse-ee4j/jaxb-api Copyright:(c) 2017, 2018 Oracle and/or its affiliates. All rights reserved. Notice file: https://github.com/eclipse-ee4j/jaxb-api/blob/master/NOTICE.md - Licensed under EDL 1.0 =========================================================================================== -jakarta.xml.bind:jakarta.xml.bind-api:jar:4.0.1 -https://github.com/eclipse-ee4j/jaxb-api -Copyright © 2017, 2018 Oracle and/or its affiliates. All rights reserved. +jakarta.xml.bind:jakarta.xml.bind-api:jar:3.0.1 +https://github.com/jakartaee/jaxb-api/tree/3.0.1 +Copyright (c) 1997, 2021 Oracle and/or its affiliates. All rights reserved. +Licensed under EPL 2.0 +=========================================================================================== +jakarta.xml.bind:jakarta.xml.bind-api:jar:4.0.0 +https://github.com/eclipse-ee4j/jaxb-api +Copyright (c) 2018 Oracle and/or its affiliates. All rights reserved Licensed under BSD-3-Clause +=========================================================================================== +jakarta.xml.bind:jakarta.xml.bind-api:jar:4.0.2 +https://github.com/jakartaee/jaxb-api/tree/4.0.2 +Copyright (c) 1997, 2024 Oracle and/or its affiliates. All rights reserved. +Licensed under EPL 2.0 + =========================================================================================== joda-time:joda-time:jar:2.12.5 https://github.com/JodaOrg/joda-time @@ -1773,400 +1576,247 @@ https://github.com/JodaOrg/joda-time ============================================================================= This product includes software developed by Joda.org (https://www.joda.org/). - Licensed under Apache 2.0 =========================================================================================== net.minidev:accessors-smart:jar:2.5.0 https://github.com/netplex/json-smart-v2 Copyright 2011-2023 JSON-SMART authors +Licensed under Apache 2.0 +=========================================================================================== +net.minidev:accessors-smart:jar:2.5.1 +https://github.com/netplex/json-smart-v2/tree/2.5.1 +Copyright 2011-2024 JSON-SMART authors Licensed under Apache 2.0 =========================================================================================== net.minidev:json-smart:jar:2.5.0 https://github.com/netplex/json-smart-v2 Copyright 2011-2023 JSON-SMART authors +Licensed under Apache 2.0 +=========================================================================================== +net.minidev:json-smart:jar:2.5.1 +https://github.com/netplex/json-smart-v2/tree/2.5.1 +Copyright 2011-2023 JSON-SMART authors Licensed under Apache 2.0 =========================================================================================== -org.apache.commons:commons-lang3:jar:3.13.0 +org.apache.commons:commons-lang3:jar:3.14.0 https://commons.apache.org/proper/commons-lang/ -Copyright 2002-2024 The Apache Software Foundation +Apache Commons Codec +Copyright 2002-2021 The Apache Software Foundation This product includes software developed at The Apache Software Foundation (https://www.apache.org/). - +src/test/org/apache/commons/codec/language/DoubleMetaphoneTest.java +contains test data from http://aspell.net/test/orig/batch0.tab. +Copyright (C) 2002 Kevin Atkinson (kevina@gnu.org) +The content of package org.apache.commons.codec.language.bm has been translated +from the original php source code available at http://stevemorse.org/phoneticinfo.htm +with permission from the original authors. +Original source copyright: +Copyright (c) 2008 Alexander Beider & Stephen P. Morse Licensed under Apache 2.0 =========================================================================================== -org.apache.httpcomponents:httpclient:jar:4.5.13 -http://hc.apache.org/ -Notice file -====================================================================== -Apache HttpComponents Client -Copyright 1999-2021 The Apache Software Foundation +org.apache.groovy:groovy-datetime:jar:4.0.22 +https://github.com/apache/groovy/tree/GROOVY_4_0_22/subprojects/groovy-datetime +Copyright 2003-2023 The Apache Software Foundation +Licensed under Apache 2.0 +Notice This product includes software developed at The Apache Software Foundation (http://www.apache.org/). -====================================================================== - +The Java source files in src/main/java/org/apache/groovy/util/concurrent/concurrentlinkedhashmap/ +are from https://github.com/ben-manes/concurrentlinkedhashmap and the following notice applies: +Copyright 2010-2012 Google Inc. All Rights Reserved. +The Java source file src/main/java/org/apache/groovy/util/concurrent/ConcurrentReferenceHashMap +is from https://github.com/hazelcast/hazelcast and the following notice applies: +Copyright (c) 2008-2020, Hazelcast, Inc. All Rights Reserved. +This product bundles icons from the famfamfam.com silk icons set +http://www.famfamfam.com/lab/icons/silk/ +Licensed under the Creative Commons Attribution Licence v2.5 +http://creativecommons.org/licenses/by/2.5/ Licensed under Apache 2.0 =========================================================================================== -org.apache.httpcomponents:httpcore:jar:4.4.13 -http://hc.apache.org/ -Copyright: 2005-2020 The Apache Software Foundation This product includes software developed at -The Apache Software Foundation (http://www.apache.org/) +org.apache.groovy:groovy-dateutil:jar:4.0.22 +https://github.com/apache/groovy/tree/GROOVY_4_0_22/subprojects/groovy-dateutil +Copyright 2003-2023 The Apache Software Foundation +Licensed under Apache 2.0 +Notice +This product includes software developed at +The Apache Software Foundation (http://www.apache.org/). +The Java source files in src/main/java/org/apache/groovy/util/concurrent/concurrentlinkedhashmap/ +are from https://github.com/ben-manes/concurrentlinkedhashmap and the following notice applies: +Copyright 2010-2012 Google Inc. All Rights Reserved. +The Java source file src/main/java/org/apache/groovy/util/concurrent/ConcurrentReferenceHashMap +is from https://github.com/hazelcast/hazelcast and the following notice applies: +Copyright (c) 2008-2020, Hazelcast, Inc. All Rights Reserved. +This product bundles icons from the famfamfam.com silk icons set +http://www.famfamfam.com/lab/icons/silk/ +Licensed under the Creative Commons Attribution Licence v2.5 +http://creativecommons.org/licenses/by/2.5/ Licensed under Apache 2.0 =========================================================================================== -org.apache.logging.log4j:log4j-api:jar:2.21.1 -https://logging.apache.org/log4j/2.x/ -Copyright 2002-2024 The Apache Software Foundation +org.apache.groovy:groovy-json:jar:4.0.22 +https://github.com/apache/groovy/tree/GROOVY_4_0_22/subprojects/groovy-json +Copyright 2003-2023 The Apache Software Foundation +Licensed under Apache 2.0 +Notice This product includes software developed at -The Apache Software Foundation (https://www.apache.org/). - +The Apache Software Foundation (http://www.apache.org/). +The Java source files in src/main/java/org/apache/groovy/util/concurrent/concurrentlinkedhashmap/ +are from https://github.com/ben-manes/concurrentlinkedhashmap and the following notice applies: +Copyright 2010-2012 Google Inc. All Rights Reserved. +The Java source file src/main/java/org/apache/groovy/util/concurrent/ConcurrentReferenceHashMap +is from https://github.com/hazelcast/hazelcast and the following notice applies: +Copyright (c) 2008-2020, Hazelcast, Inc. All Rights Reserved. +This product bundles icons from the famfamfam.com silk icons set +http://www.famfamfam.com/lab/icons/silk/ +Licensed under the Creative Commons Attribution Licence v2.5 +http://creativecommons.org/licenses/by/2.5/ Licensed under Apache 2.0 =========================================================================================== -org.apache.logging.log4j:log4j-to-slf4j:jar:2.21.1 -https://logging.apache.org/log4j/2.x/ -Copyright 2002-2024 The Apache Software Foundation +org.apache.groovy:groovy-jsr223:jar:4.0.22 +https://github.com/apache/groovy/tree/GROOVY_4_0_22/subprojects/groovy-jsr223 +Copyright 2003-2023 The Apache Software Foundation +Licensed under Apache 2.0 +Notice This product includes software developed at -The Apache Software Foundation (https://www.apache.org/). - +The Apache Software Foundation (http://www.apache.org/). +The Java source files in src/main/java/org/apache/groovy/util/concurrent/concurrentlinkedhashmap/ +are from https://github.com/ben-manes/concurrentlinkedhashmap and the following notice applies: +Copyright 2010-2012 Google Inc. All Rights Reserved. +The Java source file src/main/java/org/apache/groovy/util/concurrent/ConcurrentReferenceHashMap +is from https://github.com/hazelcast/hazelcast and the following notice applies: +Copyright (c) 2008-2020, Hazelcast, Inc. All Rights Reserved. +This product bundles icons from the famfamfam.com silk icons set +http://www.famfamfam.com/lab/icons/silk/ +Licensed under the Creative Commons Attribution Licence v2.5 +http://creativecommons.org/licenses/by/2.5/ Licensed under Apache 2.0 =========================================================================================== -org.apache.tomcat.embed:tomcat-embed-core:jar:10.1.18 -https://github.com/apache/tomcat -Apache Tomcat -Copyright 1999-2024 The Apache Software Foundation - +org.apache.groovy:groovy-templates:jar:4.0.22 +https://github.com/apache/groovy/tree/GROOVY_4_0_22/subprojects/groovy-templates +Copyright 2003-2023 The Apache Software Foundation +Licensed under Apache 2.0 +Notice This product includes software developed at -The Apache Software Foundation (https://www.apache.org/). - -This software contains code derived from netty-native -developed by the Netty project -(https://netty.io, https://github.com/netty/netty-tcnative/) -and from finagle-native developed at Twitter -(https://github.com/twitter/finagle). - -This software contains code derived from jgroups-kubernetes -developed by the JGroups project (http://www.jgroups.org/). - -The Windows Installer is built with the Nullsoft -Scriptable Install System (NSIS), which is -open source software. The original software and -related information is available at -http://nsis.sourceforge.net. - -Java compilation software for JSP pages is provided by the Eclipse -JDT Core Batch Compiler component, which is open source software. -The original software and related information is available at -https://www.eclipse.org/jdt/core/. - -org.apache.tomcat.util.json.JSONParser.jj is a public domain javacc grammar -for JSON written by Robert Fischer. -https://github.com/RobertFischer/json-parser - -For portions of the Tomcat JNI OpenSSL API and the OpenSSL JSSE integration -The org.apache.tomcat.jni and the org.apache.tomcat.net.openssl packages -are derivative work originating from the Netty project and the finagle-native -project developed at Twitter -* Copyright 2014 The Netty Project -* Copyright 2014 Twitter - -For portions of the Tomcat cloud support -The org.apache.catalina.tribes.membership.cloud package contains derivative -work originating from the jgroups project. -https://github.com/jgroups-extras/jgroups-kubernetes -Copyright 2002-2018 Red Hat Inc. - -The original XML Schemas for Java EE Deployment Descriptors: - - javaee_5.xsd - - javaee_web_services_1_2.xsd - - javaee_web_services_client_1_2.xsd - - javaee_6.xsd - - javaee_web_services_1_3.xsd - - javaee_web_services_client_1_3.xsd - - jsp_2_2.xsd - - web-app_3_0.xsd - - web-common_3_0.xsd - - web-fragment_3_0.xsd - - javaee_7.xsd - - javaee_web_services_1_4.xsd - - javaee_web_services_client_1_4.xsd - - jsp_2_3.xsd - - web-app_3_1.xsd - - web-common_3_1.xsd - - web-fragment_3_1.xsd - - javaee_8.xsd - - web-app_4_0.xsd - - web-common_4_0.xsd - - web-fragment_4_0.xsd - -may be obtained from: -http://www.oracle.com/webfolder/technetwork/jsc/xml/ns/javaee/index.html - +The Apache Software Foundation (http://www.apache.org/). +The Java source files in src/main/java/org/apache/groovy/util/concurrent/concurrentlinkedhashmap/ +are from https://github.com/ben-manes/concurrentlinkedhashmap and the following notice applies: +Copyright 2010-2012 Google Inc. All Rights Reserved. +The Java source file src/main/java/org/apache/groovy/util/concurrent/ConcurrentReferenceHashMap +is from https://github.com/hazelcast/hazelcast and the following notice applies: +Copyright (c) 2008-2020, Hazelcast, Inc. All Rights Reserved. +This product bundles icons from the famfamfam.com silk icons set +http://www.famfamfam.com/lab/icons/silk/ +Licensed under the Creative Commons Attribution Licence v2.5 +http://creativecommons.org/licenses/by/2.5/ Licensed under Apache 2.0 =========================================================================================== -org.apache.tomcat.embed:tomcat-embed-el:jar:10.1.18 -https://github.com/apache/tomcat -Apache Tomcat -Copyright 1999-2024 The Apache Software Foundation - +org.apache.groovy:groovy-xml:jar:4.0.22 +https://github.com/apache/groovy/tree/GROOVY_4_0_22/subprojects/groovy-xml +Copyright 2003-2023 The Apache Software Foundation +Licensed under Apache 2.0 +Notice This product includes software developed at -The Apache Software Foundation (https://www.apache.org/). - -This software contains code derived from netty-native -developed by the Netty project -(https://netty.io, https://github.com/netty/netty-tcnative/) -and from finagle-native developed at Twitter -(https://github.com/twitter/finagle). - -This software contains code derived from jgroups-kubernetes -developed by the JGroups project (http://www.jgroups.org/). - -The Windows Installer is built with the Nullsoft -Scriptable Install System (NSIS), which is -open source software. The original software and -related information is available at -http://nsis.sourceforge.net. - -Java compilation software for JSP pages is provided by the Eclipse -JDT Core Batch Compiler component, which is open source software. -The original software and related information is available at -https://www.eclipse.org/jdt/core/. - -org.apache.tomcat.util.json.JSONParser.jj is a public domain javacc grammar -for JSON written by Robert Fischer. -https://github.com/RobertFischer/json-parser - -For portions of the Tomcat JNI OpenSSL API and the OpenSSL JSSE integration -The org.apache.tomcat.jni and the org.apache.tomcat.net.openssl packages -are derivative work originating from the Netty project and the finagle-native -project developed at Twitter -* Copyright 2014 The Netty Project -* Copyright 2014 Twitter - -For portions of the Tomcat cloud support -The org.apache.catalina.tribes.membership.cloud package contains derivative -work originating from the jgroups project. -https://github.com/jgroups-extras/jgroups-kubernetes -Copyright 2002-2018 Red Hat Inc. - -The original XML Schemas for Java EE Deployment Descriptors: - - javaee_5.xsd - - javaee_web_services_1_2.xsd - - javaee_web_services_client_1_2.xsd - - javaee_6.xsd - - javaee_web_services_1_3.xsd - - javaee_web_services_client_1_3.xsd - - jsp_2_2.xsd - - web-app_3_0.xsd - - web-common_3_0.xsd - - web-fragment_3_0.xsd - - javaee_7.xsd - - javaee_web_services_1_4.xsd - - javaee_web_services_client_1_4.xsd - - jsp_2_3.xsd - - web-app_3_1.xsd - - web-common_3_1.xsd - - web-fragment_3_1.xsd - - javaee_8.xsd - - web-app_4_0.xsd - - web-common_4_0.xsd - - web-fragment_4_0.xsd - -may be obtained from: -http://www.oracle.com/webfolder/technetwork/jsc/xml/ns/javaee/index.html - +The Apache Software Foundation (http://www.apache.org/). +The Java source files in src/main/java/org/apache/groovy/util/concurrent/concurrentlinkedhashmap/ +are from https://github.com/ben-manes/concurrentlinkedhashmap and the following notice applies: +Copyright 2010-2012 Google Inc. All Rights Reserved. +The Java source file src/main/java/org/apache/groovy/util/concurrent/ConcurrentReferenceHashMap +is from https://github.com/hazelcast/hazelcast and the following notice applies: +Copyright (c) 2008-2020, Hazelcast, Inc. All Rights Reserved. +This product bundles icons from the famfamfam.com silk icons set +http://www.famfamfam.com/lab/icons/silk/ +Licensed under the Creative Commons Attribution Licence v2.5 +http://creativecommons.org/licenses/by/2.5/ Licensed under Apache 2.0 =========================================================================================== -org.apache.tomcat.embed:tomcat-embed-websocket:jar:10.1.18 -https://github.com/apache/tomcat -Apache Tomcat -Copyright 1999-2024 The Apache Software Foundation - +org.apache.groovy:groovy:jar:4.0.22 +https://github.com/apache/groovy/tree/GROOVY_4_0_22 +Copyright 2003-2023 The Apache Software Foundation +Licensed under Apache 2.0 +Notice This product includes software developed at -The Apache Software Foundation (https://www.apache.org/). - -This software contains code derived from netty-native -developed by the Netty project -(https://netty.io, https://github.com/netty/netty-tcnative/) -and from finagle-native developed at Twitter -(https://github.com/twitter/finagle). - -This software contains code derived from jgroups-kubernetes -developed by the JGroups project (http://www.jgroups.org/). - -The Windows Installer is built with the Nullsoft -Scriptable Install System (NSIS), which is -open source software. The original software and -related information is available at -http://nsis.sourceforge.net. - -Java compilation software for JSP pages is provided by the Eclipse -JDT Core Batch Compiler component, which is open source software. -The original software and related information is available at -https://www.eclipse.org/jdt/core/. - -org.apache.tomcat.util.json.JSONParser.jj is a public domain javacc grammar -for JSON written by Robert Fischer. -https://github.com/RobertFischer/json-parser - -For portions of the Tomcat JNI OpenSSL API and the OpenSSL JSSE integration -The org.apache.tomcat.jni and the org.apache.tomcat.net.openssl packages -are derivative work originating from the Netty project and the finagle-native -project developed at Twitter -* Copyright 2014 The Netty Project -* Copyright 2014 Twitter - -For portions of the Tomcat cloud support -The org.apache.catalina.tribes.membership.cloud package contains derivative -work originating from the jgroups project. -https://github.com/jgroups-extras/jgroups-kubernetes -Copyright 2002-2018 Red Hat Inc. - -The original XML Schemas for Java EE Deployment Descriptors: - - javaee_5.xsd - - javaee_web_services_1_2.xsd - - javaee_web_services_client_1_2.xsd - - javaee_6.xsd - - javaee_web_services_1_3.xsd - - javaee_web_services_client_1_3.xsd - - jsp_2_2.xsd - - web-app_3_0.xsd - - web-common_3_0.xsd - - web-fragment_3_0.xsd - - javaee_7.xsd - - javaee_web_services_1_4.xsd - - javaee_web_services_client_1_4.xsd - - jsp_2_3.xsd - - web-app_3_1.xsd - - web-common_3_1.xsd - - web-fragment_3_1.xsd - - javaee_8.xsd - - web-app_4_0.xsd - - web-common_4_0.xsd - - web-fragment_4_0.xsd - -may be obtained from: -http://www.oracle.com/webfolder/technetwork/jsc/xml/ns/javaee/index.html - +The Apache Software Foundation (http://www.apache.org/). +The Java source files in src/main/java/org/apache/groovy/util/concurrent/concurrentlinkedhashmap/ +are from https://github.com/ben-manes/concurrentlinkedhashmap and the following notice applies: +Copyright 2010-2012 Google Inc. All Rights Reserved. +The Java source file src/main/java/org/apache/groovy/util/concurrent/ConcurrentReferenceHashMap +is from https://github.com/hazelcast/hazelcast and the following notice applies: +Copyright (c) 2008-2020, Hazelcast, Inc. All Rights Reserved. +This product bundles icons from the famfamfam.com silk icons set +http://www.famfamfam.com/lab/icons/silk/ +Licensed under the Creative Commons Attribution Licence v2.5 +http://creativecommons.org/licenses/by/2.5/ Licensed under Apache 2.0 =========================================================================================== -org.apache.tomcat:tomcat:tar.gz:9.0.85 -https://github.com/apache/tomcat -Apache Tomcat -Copyright 1999-2024 The Apache Software Foundation - -This product includes software developed at -The Apache Software Foundation (https://www.apache.org/). +org.apache.httpcomponents:httpclient:jar:4.5.14 +http://hc.apache.org/ +Copyright The Apache Software Foundation +Licensed under Apache 2.0 -This software contains code derived from netty-native -developed by the Netty project -(https://netty.io, https://github.com/netty/netty-tcnative/) -and from finagle-native developed at Twitter -(https://github.com/twitter/finagle). - -This software contains code derived from jgroups-kubernetes -developed by the JGroups project (http://www.jgroups.org/). - -The Windows Installer is built with the Nullsoft -Scriptable Install System (NSIS), which is -open source software. The original software and -related information is available at -http://nsis.sourceforge.net. - -Java compilation software for JSP pages is provided by the Eclipse -JDT Core Batch Compiler component, which is open source software. -The original software and related information is available at -https://www.eclipse.org/jdt/core/. - -org.apache.tomcat.util.json.JSONParser.jj is a public domain javacc grammar -for JSON written by Robert Fischer. -https://github.com/RobertFischer/json-parser - -For portions of the Tomcat JNI OpenSSL API and the OpenSSL JSSE integration -The org.apache.tomcat.jni and the org.apache.tomcat.net.openssl packages -are derivative work originating from the Netty project and the finagle-native -project developed at Twitter -* Copyright 2014 The Netty Project -* Copyright 2014 Twitter - -For portions of the Tomcat cloud support -The org.apache.catalina.tribes.membership.cloud package contains derivative -work originating from the jgroups project. -https://github.com/jgroups-extras/jgroups-kubernetes -Copyright 2002-2018 Red Hat Inc. - -The original XML Schemas for Java EE Deployment Descriptors: - - javaee_5.xsd - - javaee_web_services_1_2.xsd - - javaee_web_services_client_1_2.xsd - - javaee_6.xsd - - javaee_web_services_1_3.xsd - - javaee_web_services_client_1_3.xsd - - jsp_2_2.xsd - - web-app_3_0.xsd - - web-common_3_0.xsd - - web-fragment_3_0.xsd - - javaee_7.xsd - - javaee_web_services_1_4.xsd - - javaee_web_services_client_1_4.xsd - - jsp_2_3.xsd - - web-app_3_1.xsd - - web-common_3_1.xsd - - web-fragment_3_1.xsd - - javaee_8.xsd - - web-app_4_0.xsd - - web-common_4_0.xsd - - web-fragment_4_0.xsd - -may be obtained from: -http://www.oracle.com/webfolder/technetwork/jsc/xml/ns/javaee/index.html +=========================================================================================== +org.apache.httpcomponents:httpcore:jar:4.4.16 +http://hc.apache.org/ +Copyright The Apache Software Foundation +Licensed under Apache 2.0 +=========================================================================================== +org.apache.logging.log4j:log4j-api:jar:2.23.1 +https://logging.apache.org/log4j/2.x/ +Copyright The Apache Software Foundation Licensed under Apache 2.0 =========================================================================================== -org.codehaus.groovy:groovy-json:jar:2.4.21 -https://github.com/apache/groovy -Copyright 2003-2022 The Apache Software Foundation +org.apache.logging.log4j:log4j-to-slf4j:jar:2.23.1 +https://logging.apache.org/log4j/2.x/ +Copyright The Apache Software Foundation Licensed under Apache 2.0 =========================================================================================== -org.codehaus.groovy:groovy-jsr223:jar:2.4.21 -https://github.com/apache/groovy -Copyright 2003-2022 The Apache Software Foundation +org.apache.tomcat.embed:tomcat-embed-core:jar:10.1.28 +https://github.com/apache/tomcat/tree/10.1.28 +Copyright 1999-2024 The Apache Software Foundation Licensed under Apache 2.0 =========================================================================================== -org.codehaus.groovy:groovy-templates:jar:2.4.21 -https://github.com/apache/groovy -Copyright 2003-2022 The Apache Software Foundation +org.apache.tomcat.embed:tomcat-embed-el:jar:10.1.28 +https://github.com/apache/tomcat/tree/10.1.28 +Copyright 1999-2024 The Apache Software Foundation Licensed under Apache 2.0 =========================================================================================== -org.codehaus.groovy:groovy-xml:jar:2.4.21 -https://github.com/apache/groovy -Copyright 2003-2022 The Apache Software Foundation +org.apache.tomcat.embed:tomcat-embed-websocket:jar:10.1.28 +https://github.com/apache/tomcat/tree/10.1.28 +Copyright 1999-2024 The Apache Software Foundation Licensed under Apache 2.0 =========================================================================================== -org.codehaus.groovy:groovy:jar:2.4.21 -https://github.com/apache/groovy -Copyright 2003-2022 The Apache Software Foundation +org.apache.tomcat:tomcat:tar.gz:10.1.30 +https://github.com/apache/tomcat/tree/10.1.30 +Copyright 1999-2024 The Apache Software Foundation Licensed under Apache 2.0 =========================================================================================== -org.eclipse.angus:angus-activation:jar:2.0.1 -https://github.com/eclipse-ee4j/angus-activation -Copyright (c) 2018 Oracle and/or its affiliates. All rights reserved +org.eclipse.angus:angus-activation:jar:1.0.0 +https://github.com/eclipse-ee4j/angus-activation/tree/1.0.0 +Copyright (c) 2018 Oracle and/or its affiliates. All rights reserved. +Licensed under BSD-3-Clause + +=========================================================================================== +org.eclipse.angus:angus-activation:jar:2.0.2 +https://github.com/eclipse-ee4j/angus-activation/tree/2.0.2 +Copyright (c) 2018 Oracle and/or its affiliates. All rights reserved. Licensed under BSD-3-Clause =========================================================================================== @@ -2176,6 +1826,13 @@ Copyright: Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. Licensed under Apache 2.0 +=========================================================================================== +org.glassfish.expressly:expressly:jar:5.0.0 +https://github.com/eclipse-ee4j/expressly/tree/5.0.0 +Copyright (c) 2022 Contributors to the Eclipse Foundation. +Copyright (c) 1997, 2021 Oracle and/or its affiliates and others. +Licensed under EPL 2.0 + =========================================================================================== org.glassfish.hk2.external:aopalliance-repackaged:jar:2.6.1 https://github.com/eclipse-ee4j/glassfish-hk2/tree/master/external/aopalliance @@ -2184,11 +1841,10 @@ Copyright (c) 2019 Payara Services Ltd. Licensed under EPL-2.0 =========================================================================================== -org.glassfish.hk2.external:aopalliance-repackaged:jar:3.0.5 -https://github.com/eclipse-ee4j/glassfish-hk2/tree/master/external/aopalliance +org.glassfish.hk2.external:aopalliance-repackaged:jar:3.0.6 +https://github.com/eclipse-ee4j/glassfish-hk2/tree/3.0.6-RELEASE/external/aopalliance Copyright (c) 2013, 2018 Oracle and/or its affiliates. All rights reserved. -Copyright (c) 2019 Payara Services Ltd. - +Copyright (c) 2019 Payara Services Ltd Licensed under EPL 2.0 =========================================================================================== @@ -2198,11 +1854,10 @@ Copyright (c) 2010, 2018 Oracle and/or its affiliates. All rights reserved. Licensed under EPL-2.0 =========================================================================================== -org.glassfish.hk2:class-model:jar:3.0.5 -https://github.com/eclipse-ee4j/glassfish-hk2/tree/master/class-model +org.glassfish.hk2:class-model:jar:3.0.6 +https://github.com/eclipse-ee4j/glassfish-hk2/tree/3.0.6-RELEASE/class-model Copyright (c) 2010, 2018 Oracle and/or its affiliates. All rights reserved. -Copyright (c) 2019 Payara Services Ltd. - +Copyright (c) 2019, 2020 Payara Services Ltd. Licensed under EPL 2.0 =========================================================================================== @@ -2213,19 +1868,17 @@ Copyright (c) 2019 Payara Services Ltd. Licensed under EPL-2.0 =========================================================================================== -org.glassfish.hk2:hk2-api:jar:3.0.5 -https://github.com/eclipse-ee4j/glassfish-hk2/tree/master/hk2-api +org.glassfish.hk2:hk2-api:jar:3.0.6 +https://github.com/eclipse-ee4j/glassfish-hk2/tree/3.0.6-RELEASE/hk2-api Copyright (c) 2010, 2018 Oracle and/or its affiliates. All rights reserved. Copyright (c) 2019, 2020 Payara Services Ltd. - Licensed under EPL 2.0 =========================================================================================== -org.glassfish.hk2:hk2-core:jar:3.0.5 -https://github.com/eclipse-ee4j/glassfish-hk2/tree/master/hk2-core +org.glassfish.hk2:hk2-core:jar:3.0.6 +https://github.com/eclipse-ee4j/glassfish-hk2/tree/3.0.6-RELEASE/hk2-core Copyright (c) 2010, 2018 Oracle and/or its affiliates. All rights reserved. -Copyright (c) 2019 Payara Services Ltd. - +Copyright (c) 2019 Payara Services Ltd Licensed under EPL 2.0 =========================================================================================== @@ -2236,19 +1889,17 @@ Copyright (c) 2019 Payara Services Ltd. Licensed under EPL-2.0 =========================================================================================== -org.glassfish.hk2:hk2-locator:jar:3.0.5 -https://github.com/eclipse-ee4j/glassfish-hk2/tree/master/hk2-locator +org.glassfish.hk2:hk2-locator:jar:3.0.6 +https://github.com/eclipse-ee4j/glassfish-hk2/tree/3.0.6-RELEASE/hk2-locator Copyright (c) 2010, 2018 Oracle and/or its affiliates. All rights reserved. -Copyright (c) 2019, 2020 Payara Services Ltd. - +Copyright (c) 2019, 2020 Payara Services Ltd Licensed under EPL 2.0 =========================================================================================== -org.glassfish.hk2:hk2-runlevel:jar:3.0.5 -https://github.com/eclipse-ee4j/glassfish-hk2/tree/master/hk2-runlevel +org.glassfish.hk2:hk2-runlevel:jar:3.0.6 +https://github.com/eclipse-ee4j/glassfish-hk2/tree/3.0.6-RELEASE/hk2-runlevel Copyright (c) 2010, 2018 Oracle and/or its affiliates. All rights reserved. Copyright (c) 2019 Payara Services Ltd. - Licensed under EPL 2.0 =========================================================================================== @@ -2259,17 +1910,16 @@ Copyright (c) 2019 Payara Services Ltd. Licensed under EPL-2.0 =========================================================================================== -org.glassfish.hk2:hk2-utils:jar:3.0.5 -https://github.com/eclipse-ee4j/glassfish-hk2/tree/master/hk2-utils +org.glassfish.hk2:hk2-utils:jar:3.0.6 +https://github.com/eclipse-ee4j/glassfish-hk2/tree/3.0.6-RELEASE/hk2-utils Copyright (c) 2010, 2018 Oracle and/or its affiliates. All rights reserved. Copyright (c) 2019, 2020 Payara Services Ltd. - Licensed under EPL 2.0 =========================================================================================== -org.glassfish.hk2:hk2:jar:3.0.5 -https://github.com/eclipse-ee4j/glassfish-hk2/tree/master/hk2 -Copyright (c) 2010, 2018 Oracle and/or its affiliates. All rights reserved +org.glassfish.hk2:hk2:jar:3.0.6 +https://github.com/eclipse-ee4j/glassfish-hk2/tree/3.0.6-RELEASE/hk2 +Copyright (c) 2010, 2018 Oracle and/or its affiliates. All rights reserved. Licensed under EPL 2.0 =========================================================================================== @@ -2279,11 +1929,10 @@ Copyright (c) 2018, 2019 Oracle and/or its affiliates. All rights reserved. Licensed under EPL-2.0 =========================================================================================== -org.glassfish.hk2:spring-bridge:jar:3.0.5 -https://github.com/eclipse-ee4j/glassfish-hk2/tree/master/spring-bridge +org.glassfish.hk2:spring-bridge:jar:3.0.6 +https://github.com/eclipse-ee4j/glassfish-hk2/tree/3.0.6-RELEASE/spring-bridge Copyright (c) 2013, 2018 Oracle and/or its affiliates. All rights reserved. Copyright (c) 2019, 2020 Payara Services Ltd. - Licensed under EPL 2.0 =========================================================================================== @@ -2295,10 +1944,9 @@ Further third-party content may be included: https://github.com/eclipse-ee4j/jer Licensed under EPL-2.0 =========================================================================================== -org.glassfish.jersey.containers:jersey-container-servlet-core:jar:3.1.5 +org.glassfish.jersey.containers:jersey-container-servlet-core:jar:3.1.8 https://github.com/eclipse-ee4j/jersey/tree/3.1 Copyright (c) 2010, 2024 Oracle and/or its affiliates. All rights reserved. - Licensed under EPL-2.0 =========================================================================================== @@ -2310,10 +1958,9 @@ Further third-party content may be included: https://github.com/eclipse-ee4j/jer Licensed under EPL-2.0 =========================================================================================== -org.glassfish.jersey.containers:jersey-container-servlet:jar:3.1.5 +org.glassfish.jersey.containers:jersey-container-servlet:jar:3.1.8 https://github.com/eclipse-ee4j/jersey/tree/3.1 -Copyright (c) 2010, 2024 Oracle and/or its affiliates. All rights reserved - +Copyright (c) 2010, 2024 Oracle and/or its affiliates. All rights reserved. Licensed under EPL-2.0 =========================================================================================== @@ -2325,10 +1972,9 @@ Further third-party content may be included: https://github.com/eclipse-ee4j/jer Licensed under EPL-2.0 =========================================================================================== -org.glassfish.jersey.core:jersey-client:jar:3.1.5 +org.glassfish.jersey.core:jersey-client:jar:3.1.8 https://github.com/eclipse-ee4j/jersey/tree/3.1 Copyright (c) 2010, 2024 Oracle and/or its affiliates. All rights reserved. - Licensed under EPL-2.0 =========================================================================================== @@ -2340,10 +1986,9 @@ Further third-party content may be included: https://github.com/eclipse-ee4j/jer Licensed under EPL-2.0 =========================================================================================== -org.glassfish.jersey.core:jersey-common:jar:3.1.5 +org.glassfish.jersey.core:jersey-common:jar:3.1.8 https://github.com/eclipse-ee4j/jersey/tree/3.1 Copyright (c) 2010, 2024 Oracle and/or its affiliates. All rights reserved. - Licensed under EPL-2.0 =========================================================================================== @@ -2355,31 +2000,27 @@ Further third-party content may be included: https://github.com/eclipse-ee4j/jer Licensed under EPL-2.0 =========================================================================================== -org.glassfish.jersey.core:jersey-server:jar:3.1.5 +org.glassfish.jersey.core:jersey-server:jar:3.1.8 https://github.com/eclipse-ee4j/jersey/tree/3.1 Copyright (c) 2010, 2024 Oracle and/or its affiliates. All rights reserved. - Licensed under EPL-2.0 =========================================================================================== -org.glassfish.jersey.ext:jersey-bean-validation:jar:3.1.5 +org.glassfish.jersey.ext:jersey-bean-validation:jar:3.1.8 https://github.com/eclipse-ee4j/jersey/tree/3.1 Copyright (c) 2010, 2024 Oracle and/or its affiliates. All rights reserved. - Licensed under EPL-2.0 =========================================================================================== -org.glassfish.jersey.ext:jersey-entity-filtering:jar:3.1.5 +org.glassfish.jersey.ext:jersey-entity-filtering:jar:3.1.8 https://github.com/eclipse-ee4j/jersey/tree/3.1 Copyright (c) 2010, 2024 Oracle and/or its affiliates. All rights reserved. - Licensed under EPL-2.0 =========================================================================================== -org.glassfish.jersey.ext:jersey-spring6:jar:3.1.5 +org.glassfish.jersey.ext:jersey-spring6:jar:3.1.8 https://github.com/eclipse-ee4j/jersey/tree/3.1 Copyright (c) 2010, 2024 Oracle and/or its affiliates. All rights reserved. - Licensed under EPL-2.0 =========================================================================================== @@ -2391,17 +2032,15 @@ Further third-party content may be included: https://github.com/eclipse-ee4j/jer Licensed under EPL-2.0 =========================================================================================== -org.glassfish.jersey.inject:jersey-hk2:jar:3.1.5 +org.glassfish.jersey.inject:jersey-hk2:jar:3.1.8 https://github.com/eclipse-ee4j/jersey/tree/3.1 Copyright (c) 2010, 2024 Oracle and/or its affiliates. All rights reserved. - Licensed under EPL-2.0 =========================================================================================== -org.glassfish.jersey.media:jersey-media-json-jackson:jar:3.1.5 +org.glassfish.jersey.media:jersey-media-json-jackson:jar:3.1.8 https://github.com/eclipse-ee4j/jersey/tree/3.1 Copyright (c) 2010, 2024 Oracle and/or its affiliates. All rights reserved. - Licensed under EPL-2.0 =========================================================================================== @@ -2412,7 +2051,6 @@ https://github.com/oracle/graaljs/blob/master/3rd_party_licenses.txt See this link for third-party software notices and/or additional terms for licensed third-party software components included within graaljis libraries - Licensed under UPL =========================================================================================== @@ -2423,7 +2061,6 @@ https://github.com/oracle/graaljs/blob/master/3rd_party_licenses.txt See this link for third-party software notices and/or additional terms for licensed third-party software components included within graaljis libraries - Licensed under UPL =========================================================================================== @@ -2438,7 +2075,6 @@ https://github.com/oracle/graal/tree/master/sdk Copyright (c) Oracle and/or its affiliates. See this link for third-party software notices and/or additional terms for licensed third-party software components included within the LLVM Project. The LLVM Project is under the Apache License v2.0 with LLVM Exceptions:https://github.com/oracle/graal/blob/master/sdk/3rd_party_license_llvm-toolchain.txt - Licensed under UPL =========================================================================================== @@ -2451,7 +2087,6 @@ Licensed under UPL org.hibernate.validator:hibernate-validator:jar:8.0.1.Final https://github.com/hibernate/hibernate-validator Copyright various authors https://github.com/hibernate/hibernate-validator/blob/main/copyright.txt - Licensed under Apache 2.0 =========================================================================================== @@ -2461,13 +2096,11 @@ Copyright: (C) 1999-2020 by Shigeru Chiba, All rights reserved. Licensed under Apache 2.0 =========================================================================================== -org.javassist:javassist:jar:3.29.2-GA -https://github.com/jboss-javassist/javassist +org.javassist:javassist:jar:3.30.2-GA +https://github.com/jboss-javassist/javassist/tree/rel_3_30_2_ga Copyright (C) 1999-2023 by Shigeru Chiba, All rights reserved. - Licensed under Apache 2.0 - =========================================================================================== org.jboss.logging:jboss-logging:jar:3.4.1.Final https://github.com/jboss-logging/jboss-logging @@ -2475,17 +2108,34 @@ Copyright JBoss, Home of Professional Open Source Copyright 2010 Red Hat, Inc., and individual contributorsas indicated by the @author tags. Licensed under Apache 2.0 +=========================================================================================== +org.jboss.logging:jboss-logging:jar:3.5.0.Final +https://github.com/jboss-logging/jboss-logging/tree/3.5.0.Final +Copyright 2010 Red Hat, Inc. +Licensed under Apache 2.0 + =========================================================================================== org.jboss.logging:jboss-logging:jar:3.5.3.Final https://github.com/jboss-logging/jboss-logging Copyright 2023 Red Hat, Inc. Licensed under Apache 2.0 +=========================================================================================== +org.jboss.resteasy:resteasy-core-spi:jar:6.2.3.Final +https://github.com/resteasy/resteasy/tree/6.2.3.Final/resteasy-core-spi +Copyright 2010 Red Hat, Inc. +Licensed under Apache 2.0 + +=========================================================================================== +org.jboss.resteasy:resteasy-core:jar:6.2.3.Final +https://github.com/resteasy/resteasy/tree/6.2.3.Final//resteasy-core +Copyright 2013 Red Hat, Inc., and individual contributors +Licensed under Apache 2.0 + =========================================================================================== org.jboss.resteasy:resteasy-jaxrs:jar:3.15.6.Final https://github.com/resteasy/Resteasy Copyright: list of conributors https://github.com/resteasy/resteasy/graphs/contributors - Licensed under Apache 2.0 =========================================================================================== @@ -2558,6 +2208,12 @@ https://github.com/jboss/jboss-jakarta-jaxb-api_spec Copyright Red Hat Licensed under Apache 2.0 +=========================================================================================== +org.jboss:jandex:jar:2.4.3.Final +https://github.com/smallrye/jandex/tree/2.4 +Copyright 2013 Red Hat, Inc., and individual contributors +Licensed under Apache 2.0 + =========================================================================================== org.mybatis:mybatis:jar:3.5.15 http://www.mybatis.org/mybatis-3 @@ -2631,15 +2287,8 @@ Refactored SqlBuilder class (SQL, AbstractSQL) WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. - Licensed under Apache 2.0 -=========================================================================================== -org.ow2.asm:asm-analysis:jar:9.6 -https://asm.ow2.io/ -Copyright (c) 2000-2011 INRIA, France Telecom -Licensed under BSD-3-Clause - =========================================================================================== org.ow2.asm:asm-commons:jar:9.6 https://asm.ow2.io/ @@ -2647,13 +2296,7 @@ Copyright (c) 2000-2011 INRIA, France Telecom Licensed under BSD-3-Clause =========================================================================================== -org.ow2.asm:asm-tree:jar:9.6 -https://asm.ow2.io/ -Copyright (c) 2000-2011 INRIA, France Telecom -Licensed under BSD-3-Clause - -=========================================================================================== -org.ow2.asm:asm-util:jar:9.6 +org.ow2.asm:asm:jar:9.6 https://asm.ow2.io/ Copyright (c) 2000-2011 INRIA, France Telecom Licensed under BSD-3-Clause @@ -2664,6 +2307,12 @@ https://github.com/reactive-streams/reactive-streams-jvm CopyrightWaiver:https://github.com/reactive-streams/reactive-streams-jvm/blob/master/CopyrightWaivers.txt Licensed under CC0 +=========================================================================================== +org.reactivestreams:reactive-streams:jar:1.0.4 +https://github.com/reactive-streams/reactive-streams-jvm/tree/v1.0.4 +Copyright 2014 Reactive Streams +Licensed under MIT + =========================================================================================== org.scala-lang:scala-library:jar:2.13.12 https://github.com/scala/scala @@ -2682,14 +2331,12 @@ See the License for the specific language governing permissions and limitations under the License. This software includes projects with other licenses -- see `doc/LICENSE.md`. - Licensed under Apache 2.0 =========================================================================================== -org.slf4j:jul-to-slf4j:jar:2.0.11 +org.slf4j:jul-to-slf4j:jar:2.0.16 http://www.slf4j.org/index.html -Copyright (c) 2004-2022 QOS.ch Sarl (Switzerland) - +Copyright (c) 2004-2023 QOS.ch Licensed under MIT =========================================================================================== @@ -2711,10 +2358,9 @@ Copyright (c) 2004-2017 QOS.ch Licensed under MIT =========================================================================================== -org.slf4j:slf4j-api:jar:2.0.11 +org.slf4j:slf4j-api:jar:2.0.16 http://www.slf4j.org/index.html Copyright (c) 2004-2023 QOS.ch - Licensed under MIT =========================================================================================== @@ -2724,230 +2370,250 @@ Copyright (c) 2004-2017 QOS.ch Licensed under MIT =========================================================================================== -org.springframework.boot:spring-boot-autoconfigure:jar:3.2.2 -https://github.com/spring-projects/spring-boot/tree/main/spring-boot-project/spring-boot-autoconfigure -Copyright 2012-2023 the original author or authors. - +org.springframework.boot:spring-boot-autoconfigure:jar:3.3.3 +https://github.com/spring-projects/spring-boot/tree/v3.3.3/spring-boot-project/spring-boot-autoconfigure +Copyright © 2015-2021 the original authors. Licensed under Apache 2.0 =========================================================================================== -org.springframework.boot:spring-boot-starter-jdbc:jar:3.2.2 -https://github.com/spring-projects/spring-boot/tree/main/spring-boot-project/spring-boot-starters/spring-boot-starter-jdbc -Copyright 2012-2023 the original author or authors. - +org.springframework.boot:spring-boot-starter-jdbc:jar:3.3.3 +https://github.com/spring-projects/spring-boot/tree/v3.3.3/spring-boot-project/spring-boot-starters/spring-boot-starter-jdbc +Copyright © 2015-2021 the original authors. Licensed under Apache 2.0 =========================================================================================== -org.springframework.boot:spring-boot-starter-jersey:jar:3.2.2 -https://github.com/spring-projects/spring-boot/tree/main/spring-boot-project/spring-boot-starters/spring-boot-starter-jersey -Copyright 2012-2023 the original author or authors. - +org.springframework.boot:spring-boot-starter-jersey:jar:3.3.3 +https://github.com/spring-projects/spring-boot/tree/v3.3.3/spring-boot-project/spring-boot-starters/spring-boot-starter-jersey +Copyright © 2015-2021 the original authors. Licensed under Apache 2.0 =========================================================================================== -org.springframework.boot:spring-boot-starter-json:jar:3.2.2 -https://github.com/spring-projects/spring-boot/tree/main/spring-boot-project/spring-boot-starters/spring-boot-starter-json -Copyright 2012-2023 the original author or authors. - +org.springframework.boot:spring-boot-starter-json:jar:3.3.3 +https://github.com/spring-projects/spring-boot/tree/v3.3.3/spring-boot-project/spring-boot-starters/spring-boot-starter-json +Copyright © 2015-2021 the original authors. Licensed under Apache 2.0 =========================================================================================== -org.springframework.boot:spring-boot-starter-logging:jar:3.2.2 -https://github.com/spring-projects/spring-boot/tree/main/spring-boot-project/spring-boot-starters/spring-boot-starter-logging -Copyright 2012-2023 the original author or authors. - +org.springframework.boot:spring-boot-starter-logging:jar:3.3.3 +https://github.com/spring-projects/spring-boot/tree/v3.3.3/spring-boot-project/spring-boot-starters/spring-boot-starter-logging +Copyright © 2015-2021 the original authors. Licensed under Apache 2.0 =========================================================================================== -org.springframework.boot:spring-boot-starter-tomcat:jar:3.2.2 -https://github.com/spring-projects/spring-boot/tree/main/spring-boot-project/spring-boot-starters/spring-boot-starter-tomcat -Copyright 2012-2023 the original author or authors. - +org.springframework.boot:spring-boot-starter-oauth2-client:jar:3.3.3 +https://github.com/spring-projects/spring-boot/tree/v3.3.3/spring-boot-project/spring-boot-starters/spring-boot-starter-oauth2-client +Copyright © 2015-2021 the original authors. Licensed under Apache 2.0 =========================================================================================== -org.springframework.boot:spring-boot-starter-validation:jar:3.2.2 -https://github.com/spring-projects/spring-boot/tree/main/spring-boot-project/spring-boot-starters/spring-boot-starter-validation -Copyright 2012-2023 the original author or authors. - +org.springframework.boot:spring-boot-starter-security:jar:3.3.3 +https://github.com/spring-projects/spring-boot/tree/v3.3.3/spring-boot-project/spring-boot-starters/spring-boot-starter-security +Copyright © 2015-2021 the original authors. Licensed under Apache 2.0 =========================================================================================== -org.springframework.boot:spring-boot-starter-web:jar:3.2.2 -https://github.com/spring-projects/spring-boot/tree/main/spring-boot-project/spring-boot-starters/spring-boot-starter-web -Copyright 2012-2023 the original author or authors. - +org.springframework.boot:spring-boot-starter-tomcat:jar:3.3.3 +https://github.com/spring-projects/spring-boot/tree/v3.3.3/spring-boot-project/spring-boot-starters/spring-boot-starter-tomcat +Copyright © 2015-2021 the original authors. Licensed under Apache 2.0 =========================================================================================== -org.springframework.boot:spring-boot-starter:jar:3.2.2 -https://github.com/spring-projects/spring-boot/tree/main/spring-boot-project/spring-boot-starters/spring-boot-starter -Copyright 2012-2023 the original author or authors. - +org.springframework.boot:spring-boot-starter-validation:jar:3.3.3 +https://github.com/spring-projects/spring-boot/tree/v3.3.3/spring-boot-project/spring-boot-starters/spring-boot-starter-validation +Copyright © 2015-2021 the original authors. Licensed under Apache 2.0 =========================================================================================== -org.springframework.boot:spring-boot:jar:3.2.2 -https://github.com/spring-projects/spring-boot/tree/main/spring-boot-project/spring-boot -Copyright 2012-2023 the original author or authors. - +org.springframework.boot:spring-boot-starter-web:jar:3.3.3 +https://github.com/spring-projects/spring-boot/tree/v3.3.3/spring-boot-project/spring-boot-starters/spring-boot-starter-web +Copyright © 2015-2021 the original authors. Licensed under Apache 2.0 =========================================================================================== -org.springframework:spring-aop:jar:5.3.27 -https://github.com/spring-projects/spring-framework/tree/main/spring-aop -Copyright the original author or authors. - +org.springframework.boot:spring-boot-starter:jar:3.3.3 +https://github.com/spring-projects/spring-boot/tree/v3.3.3/spring-boot-project/spring-boot-starters/spring-boot-starter-jdbc +Copyright © 2015-2021 the original authors. Licensed under Apache 2.0 =========================================================================================== -org.springframework:spring-aop:jar:6.1.3 -https://github.com/spring-projects/spring-framework/tree/main/spring-aop -Copyright 2012-2022 the original author or authors. - +org.springframework.boot:spring-boot:jar:3.3.3 +https://github.com/spring-projects/spring-boot/tree/v3.3.3/spring-boot-project/spring-boot-starters/spring-boot-starter +Copyright © 2015-2021 the original authors. Licensed under Apache 2.0 =========================================================================================== -org.springframework:spring-beans:jar:5.3.27 -https://github.com/spring-projects/spring-framework/tree/main/spring-beans -Copyright the original author or authors. - +org.springframework.security:spring-security-config:jar:6.3.3 +https://github.com/spring-projects/spring-secuCoaching iks still rity/tree/6.3.3/config +Copyright © 2015-2021 the original authors. Licensed under Apache 2.0 =========================================================================================== -org.springframework:spring-beans:jar:6.1.3 -https://github.com/spring-projects/spring-framework/tree/main/spring-beans -Copyright 2012-2022 the original author or authors. - +org.springframework.security:spring-security-core:jar:6.3.3 +https://github.com/spring-projects/spring-security/tree/6.3.3/core +Copyright © 2015-2021 the original authors. Licensed under Apache 2.0 =========================================================================================== -org.springframework:spring-context:jar:5.3.27 -https://github.com/spring-projects/spring-framework/tree/main/spring-context -Copyright the original author or authors. - +org.springframework.security:spring-security-crypto:jar:6.3.3 +https://github.com/spring-projects/spring-security/tree/6.3.3/crypto +Copyright © 2015-2021 the original authors. Licensed under Apache 2.0 =========================================================================================== -org.springframework:spring-context:jar:6.1.3 -https://github.com/spring-projects/spring-framework/tree/main/spring-context -Copyright 2012-2022 the original author or authors. - +org.springframework.security:spring-security-oauth2-client:jar:6.3.3 +https://github.com/spring-projects/spring-security/tree/6.3.3/oauth2/oauth2-client +Copyright © 2015-2021 the original authors. Licensed under Apache 2.0 =========================================================================================== -org.springframework:spring-core:jar:5.3.27 -https://github.com/spring-projects/spring-framework/tree/main/spring-core -Copyright the original author or authors. - +org.springframework.security:spring-security-oauth2-core:jar:6.3.3 +https://github.com/spring-projects/spring-security/tree/6.3.3/oauth2/oauth2-core +Copyright © 2015-2021 the original authors. Licensed under Apache 2.0 =========================================================================================== -org.springframework:spring-core:jar:6.1.3 -https://github.com/spring-projects/spring-framework/tree/main/spring-core -Copyright 2012-2023 the original author or authors. - +org.springframework.security:spring-security-oauth2-jose:jar:6.3.3 +https://github.com/spring-projects/spring-security/tree/6.3.3/oauth2/oauth2-jose +Copyright © 2015-2021 the original authors. Licensed under Apache 2.0 =========================================================================================== -org.springframework:spring-expression:jar:5.3.27 -https://github.com/spring-projects/spring-framework/tree/main/spring-expression -Copyright the original author or authors. - +org.springframework.security:spring-security-web:jar:6.3.3 +https://github.com/spring-projects/spring-security/tree/6.3.3/web +Copyright © 2015-2021 the original authors. Licensed under Apache 2.0 =========================================================================================== -org.springframework:spring-expression:jar:6.1.3 -https://github.com/spring-projects/spring-framework/tree/main/spring-expression -Copyright 2002-2020 the original author or authors. - +org.springframework:spring-aop:jar:5.3.36 +https://github.com/spring-projects/spring-framework/tree/v5.3.36/spring-aop +Copyright © 2015-2021 the original authors. Licensed under Apache 2.0 =========================================================================================== -org.springframework:spring-jcl:jar:5.3.27 -https://github.com/spring-projects/spring-framework/tree/main/spring-jcl -Copyright the original author or authors. - +org.springframework:spring-aop:jar:6.1.12 +https://github.com/spring-projects/spring-framework/tree/v6.1.12/spring-aop +Copyright © 2015-2021 the original authors. Licensed under Apache 2.0 =========================================================================================== -org.springframework:spring-jcl:jar:6.1.3 -https://github.com/spring-projects/spring-framework/tree/main/spring-jcl -Copyright 2002-2023 the original author or authors. - +org.springframework:spring-beans:jar:5.3.36 +https://github.com/spring-projects/spring-framework/tree/v5.3.36/spring-context +Copyright © 2015-2021 the original authors. Licensed under Apache 2.0 =========================================================================================== -org.springframework:spring-jdbc:jar:5.3.27 -https://github.com/spring-projects/spring-framework/tree/main/spring-jdbc -Copyright the original author or authors. - +org.springframework:spring-beans:jar:6.1.12 +https://github.com/spring-projects/spring-framework/tree/v6.1.12/spring-beans +Copyright © 2015-2021 the original authors. Licensed under Apache 2.0 =========================================================================================== -org.springframework:spring-jdbc:jar:6.1.3 -https://github.com/spring-projects/spring-framework/tree/main/spring-jdbc -Copyright 2002-2024 the original author or authors. - +org.springframework:spring-context:jar:5.3.36 +https://github.com/spring-projects/spring-framework/tree/v5.3.36/spring-context +Copyright © 2015-2021 the original authors. Licensed under Apache 2.0 =========================================================================================== -org.springframework:spring-orm:jar:5.3.27 -https://github.com/spring-projects/spring-framework/tree/main/spring-orm -Copyright the original author or authors. - +org.springframework:spring-context:jar:6.1.12 +https://github.com/spring-projects/spring-framework/tree/v6.1.12/spring-context +Copyright © 2015-2021 the original authors. Licensed under Apache 2.0 =========================================================================================== -org.springframework:spring-orm:jar:6.1.3 -https://github.com/spring-projects/spring-framework/tree/main/spring-orm -Copyright 2002-2023 the original author or authors. +org.springframework:spring-core:jar:5.3.36 +https://github.com/spring-projects/spring-framework/tree/v5.3.36/spring-core +Copyright © 2015-2021 the original authors. +Licensed under Apache 2.0 +=========================================================================================== +org.springframework:spring-core:jar:6.1.12 +https://github.com/spring-projects/spring-framework/tree/v6.1.12/spring-core +Copyright © 2015-2021 the original authors. Licensed under Apache 2.0 =========================================================================================== -org.springframework:spring-tx:jar:5.3.27 -https://github.com/spring-projects/spring-framework/tree/main/spring-tx -Copyright the original author or authors. +org.springframework:spring-expression:jar:5.3.36 +https://github.com/spring-projects/spring-framework/tree/v5.3.36/spring-expression +Copyright © 2015-2021 the original authors. +Licensed under Apache 2.0 +=========================================================================================== +org.springframework:spring-expression:jar:6.1.12 +https://github.com/spring-projects/spring-framework/tree/v6.1.12/spring-expression +Copyright © 2015-2021 the original authors. Licensed under Apache 2.0 =========================================================================================== -org.springframework:spring-tx:jar:6.1.3 -https://github.com/spring-projects/spring-framework/tree/main/spring-tx -Copyright 2002-2023 the original author or authors. +org.springframework:spring-jcl:jar:5.3.36 +https://github.com/spring-projects/spring-framework/tree/v5.3.36/spring-jcl +Copyright © 2015-2021 the original authors. +Licensed under Apache 2.0 +=========================================================================================== +org.springframework:spring-jcl:jar:6.1.12 +https://github.com/spring-projects/spring-framework/tree/v6.1.12/spring-jcl +Copyright © 2015-2021 the original authors. Licensed under Apache 2.0 =========================================================================================== -org.springframework:spring-web:jar:6.1.3 -https://github.com/spring-projects/spring-framework/tree/main/spring-web -Copyright 2002-2023 the original author or authors. +org.springframework:spring-jdbc:jar:5.3.36 +https://github.com/spring-projects/spring-framework/tree/v5.3.36/spring-jdbc +Copyright © 2015-2021 the original authors. +Licensed under Apache 2.0 +=========================================================================================== +org.springframework:spring-jdbc:jar:6.1.12 +https://github.com/spring-projects/spring-framework/tree/v6.1.12/spring-jdbc +Copyright © 2015-2021 the original authors. Licensed under Apache 2.0 =========================================================================================== -org.springframework:spring-webmvc:jar:6.1.3 -https://github.com/spring-projects/spring-framework/tree/main/spring-webmvc -Copyright 2002-2023 the original author or authors. +org.springframework:spring-orm:jar:5.3.36 +https://github.com/spring-projects/spring-framework/tree/v5.3.36/spring-orm +Copyright © 2015-2021 the original authors. +Licensed under Apache 2.0 +=========================================================================================== +org.springframework:spring-orm:jar:6.1.12 +https://github.com/spring-projects/spring-framework/tree/v6.1.12/spring-orm +Copyright © 2015-2021 the original authors. Licensed under Apache 2.0 =========================================================================================== -org.wildfly:wildfly-dist:tar.gz:31.0.0.Final -https://github.com/wildfly/wildfly/tree/main/dist -Copyright The WildFly Authors (https://github.com/wildfly/wildfly/blob/31.0.0.Final/ee-feature-pack/galleon-shared/src/main/resources/content/copyright.txt) +org.springframework:spring-tx:jar:5.3.36 +https://github.com/spring-projects/spring-framework/tree/v5.3.36/spring-tx +Copyright © 2015-2021 the original authors. +Licensed under Apache 2.0 +=========================================================================================== +org.springframework:spring-tx:jar:6.1.12 +https://github.com/spring-projects/spring-framework/tree/v6.1.12/spring-tx +Copyright © 2015-2021 the original authors. Licensed under Apache 2.0 +=========================================================================================== +org.springframework:spring-web:jar:6.1.12 +https://github.com/spring-projects/spring-framework/tree/v6.1.12/spring-web +Copyright © 2015-2021 the original authors. +Licensed under Apache 2.0 =========================================================================================== -org.wildfly:wildfly-galleon-pack:zip:31.0.0.Final -https://github.com/wildfly/wildfly/tree/main/galleon-pack -Copyright The WildFly Authors (https://github.com/wildfly/wildfly/blob/31.0.0.Final/ee-feature-pack/galleon-shared/src/main/resources/content/copyright.txt) +org.springframework:spring-webmvc:jar:6.1.12 +https://github.com/spring-projects/spring-framework/tree/v6.1.12/spring-webmvc +Copyright © 2015-2021 the original authors. +Licensed under Apache 2.0 +=========================================================================================== +org.wildfly:wildfly-dist:tar.gz:33.0.1.Final +https://github.com/wildfly/wildfly/tree/33.0.1.Final/dist +Copyright The WildFly Authors Licensed under Apache 2.0 +=========================================================================================== +org.wildfly:wildfly-galleon-pack:zip:33.0.1.Final +https://github.com/wildfly/wildfly/tree/33.0.1.Final/galleon-pack +Copyright The WildFly Authors +Licensed under Apache 2.0 =========================================================================================== org.yaml:snakeyaml:jar:2.2 @@ -3106,7 +2772,7 @@ THE SOFTWARE. =========================================================================================== =========================================================================================== -@bpmn-io/draggle@4.0.0 +@bpmn-io/draggle@4.1.0 https://github.com/bpmn-io/draggle.git Licensed under MIT Notice file: @@ -3135,7 +2801,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. =========================================================================================== =========================================================================================== -@bpmn-io/feel-editor@1.2.0 +@bpmn-io/feel-editor@1.4.0 git+https://github.com/bpmn-io/feel-editor.git Licensed under MIT Notice file: @@ -3191,7 +2857,7 @@ THE SOFTWARE. =========================================================================================== =========================================================================================== -@bpmn-io/form-js@1.7.0 +@bpmn-io/form-js@1.8.7 git+https://github.com/bpmn-io/form-js.git Licensed under SEE LICENSE IN LICENSE Notice file: @@ -3231,7 +2897,7 @@ OR OTHER DEALINGS IN THE SOFTWARE. =========================================================================================== =========================================================================================== -@bpmn-io/form-js-editor@1.7.0 +@bpmn-io/form-js-editor@1.8.7 git+https://github.com/bpmn-io/form-js.git Licensed under SEE LICENSE IN LICENSE Notice file: @@ -3271,7 +2937,7 @@ OR OTHER DEALINGS IN THE SOFTWARE. =========================================================================================== =========================================================================================== -@bpmn-io/form-js-playground@1.7.0 +@bpmn-io/form-js-playground@1.8.7 git+https://github.com/bpmn-io/form-js.git Licensed under SEE LICENSE IN LICENSE Notice file: @@ -3311,7 +2977,7 @@ OR OTHER DEALINGS IN THE SOFTWARE. =========================================================================================== =========================================================================================== -@bpmn-io/form-js-viewer@1.7.0 +@bpmn-io/form-js-viewer@1.8.7 git+https://github.com/bpmn-io/form-js.git Licensed under SEE LICENSE IN LICENSE Notice file: @@ -3351,7 +3017,7 @@ OR OTHER DEALINGS IN THE SOFTWARE. =========================================================================================== =========================================================================================== -@bpmn-io/properties-panel@3.18.1 +@bpmn-io/properties-panel@3.18.2 git+https://github.com/bpmn-io/properties-panel.git Licensed under MIT Notice file: @@ -3379,7 +3045,7 @@ THE SOFTWARE. =========================================================================================== =========================================================================================== -@codemirror/autocomplete@6.12.0 +@codemirror/autocomplete@6.16.0 https://github.com/codemirror/autocomplete.git Licensed under MIT Notice file: @@ -3408,7 +3074,7 @@ THE SOFTWARE. =========================================================================================== =========================================================================================== -@codemirror/commands@6.3.3 +@codemirror/commands@6.5.0 https://github.com/codemirror/commands.git Licensed under MIT Notice file: @@ -3495,7 +3161,7 @@ THE SOFTWARE. =========================================================================================== =========================================================================================== -@codemirror/lint@6.5.0 +@codemirror/lint@6.7.1 https://github.com/codemirror/lint.git Licensed under MIT Notice file: @@ -3524,7 +3190,7 @@ THE SOFTWARE. =========================================================================================== =========================================================================================== -@codemirror/search@6.5.5 +@codemirror/search@6.5.6 https://github.com/codemirror/search.git Licensed under MIT Notice file: @@ -3553,7 +3219,7 @@ THE SOFTWARE. =========================================================================================== =========================================================================================== -@codemirror/state@6.4.0 +@codemirror/state@6.4.1 https://github.com/codemirror/state.git Licensed under MIT Notice file: @@ -3582,7 +3248,7 @@ THE SOFTWARE. =========================================================================================== =========================================================================================== -@codemirror/view@6.23.1 +@codemirror/view@6.26.3 https://github.com/codemirror/view.git Licensed under MIT Notice file: @@ -3857,7 +3523,7 @@ THE SOFTWARE. =========================================================================================== =========================================================================================== -@lezer/markdown@1.2.0 +@lezer/markdown@1.3.0 https://github.com/lezer-parser/markdown.git Licensed under MIT Notice file: @@ -4616,7 +4282,7 @@ SOFTWARE. =========================================================================================== =========================================================================================== -camunda-bpm-webapp@7.21.0-SNAPSHOT +camunda-bpm-webapp@7.22.0-SNAPSHOT Licensed under Notice file: @@ -5519,12 +5185,12 @@ THE SOFTWARE. =========================================================================================== =========================================================================================== -dompurify@3.0.8 +dompurify@3.1.3 git://github.com/cure53/DOMPurify.git Licensed under (MPL-2.0 OR Apache-2.0) Notice file: DOMPurify -Copyright 2023 Dr.-Ing. Mario Heiderich, Cure53 +Copyright 2024 Dr.-Ing. Mario Heiderich, Cure53 DOMPurify is free software; you can redistribute it and/or modify it under the terms of either: @@ -6246,7 +5912,7 @@ SOFTWARE. =========================================================================================== =========================================================================================== -feelers@1.3.0 +feelers@1.3.1 Licensed under MIT Notice file: @@ -6279,7 +5945,7 @@ OR OTHER DEALINGS IN THE SOFTWARE. =========================================================================================== =========================================================================================== -feelin@3.0.0 +feelin@3.1.0 https://github.com/nikku/feelin Licensed under MIT Notice file: @@ -6307,7 +5973,7 @@ THE SOFTWARE. =========================================================================================== =========================================================================================== -file-drops@0.4.0 +file-drops@0.5.0 git+ssh://git@github.com/nikku/file-drops.git Licensed under MIT Notice file: @@ -6958,7 +6624,7 @@ THE SOFTWARE. =========================================================================================== =========================================================================================== -lezer-feel@1.2.4 +lezer-feel@1.2.8 https://github.com/nikku/lezer-feel.git Licensed under MIT Notice file: @@ -7012,6 +6678,73 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. =========================================================================================== +=========================================================================================== +marked@12.0.2 +git://github.com/markedjs/marked.git +Licensed under MIT +Notice file: +# License information + +## Contribution License Agreement + +If you contribute code to this project, you are implicitly allowing your code +to be distributed under the MIT license. You are also implicitly verifying that +all code is your original work. `` + +## Marked + +Copyright (c) 2018+, MarkedJS (https://github.com/markedjs/) +Copyright (c) 2011-2018, Christopher Jeffrey (https://github.com/chjj/) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + +## Markdown + +Copyright © 2004, John Gruber +http://daringfireball.net/ +All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above copyright notice, this +list of conditions and the following disclaimer. +* Redistributions in binary form must reproduce the above copyright notice, this +list of conditions and the following disclaimer in the documentation and/or +other materials provided with the distribution. +* Neither the name “Markdown” nor the names of its contributors may be used to +endorse or promote products derived from this software without specific prior +written permission. + +This software is provided by the copyright holders and contributors “as is” and +any express or implied warranties, including, but not limited to, the implied +warranties of merchantability and fitness for a particular purpose are +disclaimed. In no event shall the copyright owner or contributors be liable for +any direct, indirect, incidental, special, exemplary, or consequential damages +(including, but not limited to, procurement of substitute goods or services; +loss of use, data, or profits; or business interruption) however caused and on +any theory of liability, whether in contract, strict liability, or tort +(including negligence or otherwise) arising in any way out of the use of this +software, even if advised of the possibility of such damage. + +=========================================================================================== + =========================================================================================== min-dash@4.2.1 git+https://github.com/bpmn-io/min-dash.git @@ -7647,34 +7380,6 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. =========================================================================================== -=========================================================================================== -showdown@2.1.0 -https://github.com/showdownjs/showdown.git -Licensed under MIT -Notice file: -MIT License - -Copyright (c) 2018,2021 ShowdownJS - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -=========================================================================================== - =========================================================================================== side-channel@1.0.4 git+https://github.com/ljharb/side-channel.git @@ -7876,4814 +7581,3 @@ THE SOFTWARE. =========================================================================================== - -=========================================================================================== -@babel/runtime@7.22.5 -https://github.com/babel/babel.git -Licensed under MIT -Notice file: -MIT License - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -=========================================================================================== - -=========================================================================================== -@babel/runtime-corejs3@7.23.9 -https://github.com/babel/babel.git -Licensed under MIT -Notice file: -MIT License - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -=========================================================================================== - -=========================================================================================== -@braintree/sanitize-url@7.0.0 -git+https://github.com/braintree/sanitize-url.git -Licensed under MIT -Notice file: -MIT License - -Copyright (c) 2017 Braintree - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -=========================================================================================== - -=========================================================================================== -@swagger-api/apidom-ast@0.93.0 -git+https://github.com/swagger-api/apidom.git -Licensed under Apache-2.0 -Notice file: - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - -=========================================================================================== - -=========================================================================================== -@swagger-api/apidom-core@0.93.0 -git+https://github.com/swagger-api/apidom.git -Licensed under Apache-2.0 -Notice file: - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - -=========================================================================================== - -=========================================================================================== -@swagger-api/apidom-error@0.93.0 -git+https://github.com/swagger-api/apidom.git -Licensed under Apache-2.0 -Notice file: - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - -=========================================================================================== - -=========================================================================================== -@swagger-api/apidom-json-pointer@0.93.0 -git+https://github.com/swagger-api/apidom.git -Licensed under Apache-2.0 -Notice file: - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - -=========================================================================================== - -=========================================================================================== -@swagger-api/apidom-ns-json-schema-draft-4@0.93.0 -git+https://github.com/swagger-api/apidom.git -Licensed under Apache-2.0 -Notice file: - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - -=========================================================================================== - -=========================================================================================== -@swagger-api/apidom-ns-openapi-3-0@0.93.0 -git+https://github.com/swagger-api/apidom.git -Licensed under Apache-2.0 -Notice file: - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - -=========================================================================================== - -=========================================================================================== -@swagger-api/apidom-ns-openapi-3-1@0.93.0 -git+https://github.com/swagger-api/apidom.git -Licensed under Apache-2.0 -Notice file: - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - -=========================================================================================== - -=========================================================================================== -@swagger-api/apidom-reference@0.93.0 -git+https://github.com/swagger-api/apidom.git -Licensed under Apache-2.0 -Notice file: - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - -=========================================================================================== - -=========================================================================================== -autolinker@3.16.2 -git://github.com/gregjacobs/Autolinker.js.git -Licensed under MIT -Notice file: -The MIT License (MIT) - -Copyright (c) 2014 Gregory Jacobs (http://greg-jacobs.com) - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -=========================================================================================== - -=========================================================================================== -base64-js@1.5.1 -git://github.com/beatgammit/base64-js.git -Licensed under MIT -Notice file: -The MIT License (MIT) - -Copyright (c) 2014 Jameson Little - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - -=========================================================================================== - -=========================================================================================== -call-bind@1.0.5 -git+https://github.com/ljharb/call-bind.git -Licensed under MIT -Notice file: -MIT License - -Copyright (c) 2020 Jordan Harband - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -=========================================================================================== - -=========================================================================================== -classnames@2.5.1 -git+https://github.com/JedWatson/classnames.git -Licensed under MIT -Notice file: -The MIT License (MIT) - -Copyright (c) 2018 Jed Watson - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -=========================================================================================== - -=========================================================================================== -cookie@0.6.0 -jshttp/cookie -Licensed under MIT -Notice file: -(The MIT License) - -Copyright (c) 2012-2014 Roman Shtylman -Copyright (c) 2015 Douglas Christopher Wilson - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -'Software'), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - -=========================================================================================== - -=========================================================================================== -copy-to-clipboard@3.3.3 -git+https://github.com/sudodoki/copy-to-clipboard -Licensed under MIT -Notice file: -MIT License - -Copyright (c) 2017 sudodoki - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -=========================================================================================== - -=========================================================================================== -core-js-pure@3.35.1 -https://github.com/zloirock/core-js.git -Licensed under MIT -Notice file: -Copyright (c) 2014-2024 Denis Pushkarev - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - -=========================================================================================== - -=========================================================================================== -css.escape@1.5.1 -https://github.com/mathiasbynens/CSS.escape.git -Licensed under MIT -Notice file: -Copyright Mathias Bynens - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -=========================================================================================== - -=========================================================================================== -deepmerge@4.3.1 -git://github.com/TehShrike/deepmerge.git -Licensed under MIT -Notice file: -The MIT License (MIT) - -Copyright (c) 2012 James Halliday, Josh Duff, and other contributors - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - -=========================================================================================== - -=========================================================================================== -define-data-property@1.1.1 -git+https://github.com/ljharb/define-data-property.git -Licensed under MIT -Notice file: -MIT License - -Copyright (c) 2023 Jordan Harband - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -=========================================================================================== - -=========================================================================================== -dompurify@3.0.8 -git://github.com/cure53/DOMPurify.git -Licensed under (MPL-2.0 OR Apache-2.0) -Notice file: -DOMPurify -Copyright 2023 Dr.-Ing. Mario Heiderich, Cure53 - -DOMPurify is free software; you can redistribute it and/or modify it under the -terms of either: - -a) the Apache License Version 2.0, or -b) the Mozilla Public License Version 2.0 - ------------------------------------------------------------------------------ - -Apache License -Version 2.0, January 2004 -http://www.apache.org/licenses/ - -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - -"License" shall mean the terms and conditions for use, reproduction, -and distribution as defined by Sections 1 through 9 of this document. - -"Licensor" shall mean the copyright owner or entity authorized by -the copyright owner that is granting the License. - -"Legal Entity" shall mean the union of the acting entity and all -other entities that control, are controlled by, or are under common -control with that entity. For the purposes of this definition, -"control" means (i) the power, direct or indirect, to cause the -direction or management of such entity, whether by contract or -otherwise, or (ii) ownership of fifty percent (50%) or more of the -outstanding shares, or (iii) beneficial ownership of such entity. - -"You" (or "Your") shall mean an individual or Legal Entity -exercising permissions granted by this License. - -"Source" form shall mean the preferred form for making modifications, -including but not limited to software source code, documentation -source, and configuration files. - -"Object" form shall mean any form resulting from mechanical -transformation or translation of a Source form, including but -not limited to compiled object code, generated documentation, -and conversions to other media types. - -"Work" shall mean the work of authorship, whether in Source or -Object form, made available under the License, as indicated by a -copyright notice that is included in or attached to the work -(an example is provided in the Appendix below). - -"Derivative Works" shall mean any work, whether in Source or Object -form, that is based on (or derived from) the Work and for which the -editorial revisions, annotations, elaborations, or other modifications -represent, as a whole, an original work of authorship. For the purposes -of this License, Derivative Works shall not include works that remain -separable from, or merely link (or bind by name) to the interfaces of, -the Work and Derivative Works thereof. - -"Contribution" shall mean any work of authorship, including -the original version of the Work and any modifications or additions -to that Work or Derivative Works thereof, that is intentionally -submitted to Licensor for inclusion in the Work by the copyright owner -or by an individual or Legal Entity authorized to submit on behalf of -the copyright owner. For the purposes of this definition, "submitted" -means any form of electronic, verbal, or written communication sent -to the Licensor or its representatives, including but not limited to -communication on electronic mailing lists, source code control systems, -and issue tracking systems that are managed by, or on behalf of, the -Licensor for the purpose of discussing and improving the Work, but -excluding communication that is conspicuously marked or otherwise -designated in writing by the copyright owner as "Not a Contribution." - -"Contributor" shall mean Licensor and any individual or Legal Entity -on behalf of whom a Contribution has been received by Licensor and -subsequently incorporated within the Work. - -2. Grant of Copyright License. Subject to the terms and conditions of -this License, each Contributor hereby grants to You a perpetual, -worldwide, non-exclusive, no-charge, royalty-free, irrevocable -copyright license to reproduce, prepare Derivative Works of, -publicly display, publicly perform, sublicense, and distribute the -Work and such Derivative Works in Source or Object form. - -3. Grant of Patent License. Subject to the terms and conditions of -this License, each Contributor hereby grants to You a perpetual, -worldwide, non-exclusive, no-charge, royalty-free, irrevocable -(except as stated in this section) patent license to make, have made, -use, offer to sell, sell, import, and otherwise transfer the Work, -where such license applies only to those patent claims licensable -by such Contributor that are necessarily infringed by their -Contribution(s) alone or by combination of their Contribution(s) -with the Work to which such Contribution(s) was submitted. If You -institute patent litigation against any entity (including a -cross-claim or counterclaim in a lawsuit) alleging that the Work -or a Contribution incorporated within the Work constitutes direct -or contributory patent infringement, then any patent licenses -granted to You under this License for that Work shall terminate -as of the date such litigation is filed. - -4. Redistribution. You may reproduce and distribute copies of the -Work or Derivative Works thereof in any medium, with or without -modifications, and in Source or Object form, provided that You -meet the following conditions: - -(a) You must give any other recipients of the Work or -Derivative Works a copy of this License; and - -(b) You must cause any modified files to carry prominent notices -stating that You changed the files; and - -(c) You must retain, in the Source form of any Derivative Works -that You distribute, all copyright, patent, trademark, and -attribution notices from the Source form of the Work, -excluding those notices that do not pertain to any part of -the Derivative Works; and - -(d) If the Work includes a "NOTICE" text file as part of its -distribution, then any Derivative Works that You distribute must -include a readable copy of the attribution notices contained -within such NOTICE file, excluding those notices that do not -pertain to any part of the Derivative Works, in at least one -of the following places: within a NOTICE text file distributed -as part of the Derivative Works; within the Source form or -documentation, if provided along with the Derivative Works; or, -within a display generated by the Derivative Works, if and -wherever such third-party notices normally appear. The contents -of the NOTICE file are for informational purposes only and -do not modify the License. You may add Your own attribution -notices within Derivative Works that You distribute, alongside -or as an addendum to the NOTICE text from the Work, provided -that such additional attribution notices cannot be construed -as modifying the License. - -You may add Your own copyright statement to Your modifications and -may provide additional or different license terms and conditions -for use, reproduction, or distribution of Your modifications, or -for any such Derivative Works as a whole, provided Your use, -reproduction, and distribution of the Work otherwise complies with -the conditions stated in this License. - -5. Submission of Contributions. Unless You explicitly state otherwise, -any Contribution intentionally submitted for inclusion in the Work -by You to the Licensor shall be under the terms and conditions of -this License, without any additional terms or conditions. -Notwithstanding the above, nothing herein shall supersede or modify -the terms of any separate license agreement you may have executed -with Licensor regarding such Contributions. - -6. Trademarks. This License does not grant permission to use the trade -names, trademarks, service marks, or product names of the Licensor, -except as required for reasonable and customary use in describing the -origin of the Work and reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. Unless required by applicable law or -agreed to in writing, Licensor provides the Work (and each -Contributor provides its Contributions) on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or -implied, including, without limitation, any warranties or conditions -of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A -PARTICULAR PURPOSE. You are solely responsible for determining the -appropriateness of using or redistributing the Work and assume any -risks associated with Your exercise of permissions under this License. - -8. Limitation of Liability. In no event and under no legal theory, -whether in tort (including negligence), contract, or otherwise, -unless required by applicable law (such as deliberate and grossly -negligent acts) or agreed to in writing, shall any Contributor be -liable to You for damages, including any direct, indirect, special, -incidental, or consequential damages of any character arising as a -result of this License or out of the use or inability to use the -Work (including but not limited to damages for loss of goodwill, -work stoppage, computer failure or malfunction, or any and all -other commercial damages or losses), even if such Contributor -has been advised of the possibility of such damages. - -9. Accepting Warranty or Additional Liability. While redistributing -the Work or Derivative Works thereof, You may choose to offer, -and charge a fee for, acceptance of support, warranty, indemnity, -or other liability obligations and/or rights consistent with this -License. However, in accepting such obligations, You may act only -on Your own behalf and on Your sole responsibility, not on behalf -of any other Contributor, and only if You agree to indemnify, -defend, and hold each Contributor harmless for any liability -incurred by, or claims asserted against, such Contributor by reason -of your accepting any such warranty or additional liability. - -END OF TERMS AND CONDITIONS - -APPENDIX: How to apply the Apache License to your work. - -To apply the Apache License to your work, attach the following -boilerplate notice, with the fields enclosed by brackets "[]" -replaced with your own identifying information. (Don't include -the brackets!) The text should be enclosed in the appropriate -comment syntax for the file format. We also recommend that a -file or class name and description of purpose be included on the -same "printed page" as the copyright notice for easier -identification within third-party archives. - -Copyright [yyyy] [name of copyright owner] - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - -http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. - ------------------------------------------------------------------------------ -Mozilla Public License, version 2.0 - -1. Definitions - -1.1. “Contributor” - -means each individual or legal entity that creates, contributes to the -creation of, or owns Covered Software. - -1.2. “Contributor Version” - -means the combination of the Contributions of others (if any) used by a -Contributor and that particular Contributor’s Contribution. - -1.3. “Contribution” - -means Covered Software of a particular Contributor. - -1.4. “Covered Software” - -means Source Code Form to which the initial Contributor has attached the -notice in Exhibit A, the Executable Form of such Source Code Form, and -Modifications of such Source Code Form, in each case including portions -thereof. - -1.5. “Incompatible With Secondary Licenses” -means - -a. that the initial Contributor has attached the notice described in -Exhibit B to the Covered Software; or - -b. that the Covered Software was made available under the terms of version -1.1 or earlier of the License, but not also under the terms of a -Secondary License. - -1.6. “Executable Form” - -means any form of the work other than Source Code Form. - -1.7. “Larger Work” - -means a work that combines Covered Software with other material, in a separate -file or files, that is not Covered Software. - -1.8. “License” - -means this document. - -1.9. “Licensable” - -means having the right to grant, to the maximum extent possible, whether at the -time of the initial grant or subsequently, any and all of the rights conveyed by -this License. - -1.10. “Modifications” - -means any of the following: - -a. any file in Source Code Form that results from an addition to, deletion -from, or modification of the contents of Covered Software; or - -b. any new file in Source Code Form that contains any Covered Software. - -1.11. “Patent Claims” of a Contributor - -means any patent claim(s), including without limitation, method, process, -and apparatus claims, in any patent Licensable by such Contributor that -would be infringed, but for the grant of the License, by the making, -using, selling, offering for sale, having made, import, or transfer of -either its Contributions or its Contributor Version. - -1.12. “Secondary License” - -means either the GNU General Public License, Version 2.0, the GNU Lesser -General Public License, Version 2.1, the GNU Affero General Public -License, Version 3.0, or any later versions of those licenses. - -1.13. “Source Code Form” - -means the form of the work preferred for making modifications. - -1.14. “You” (or “Your”) - -means an individual or a legal entity exercising rights under this -License. For legal entities, “You” includes any entity that controls, is -controlled by, or is under common control with You. For purposes of this -definition, “control” means (a) the power, direct or indirect, to cause -the direction or management of such entity, whether by contract or -otherwise, or (b) ownership of more than fifty percent (50%) of the -outstanding shares or beneficial ownership of such entity. - - -2. License Grants and Conditions - -2.1. Grants - -Each Contributor hereby grants You a world-wide, royalty-free, -non-exclusive license: - -a. under intellectual property rights (other than patent or trademark) -Licensable by such Contributor to use, reproduce, make available, -modify, display, perform, distribute, and otherwise exploit its -Contributions, either on an unmodified basis, with Modifications, or as -part of a Larger Work; and - -b. under Patent Claims of such Contributor to make, use, sell, offer for -sale, have made, import, and otherwise transfer either its Contributions -or its Contributor Version. - -2.2. Effective Date - -The licenses granted in Section 2.1 with respect to any Contribution become -effective for each Contribution on the date the Contributor first distributes -such Contribution. - -2.3. Limitations on Grant Scope - -The licenses granted in this Section 2 are the only rights granted under this -License. No additional rights or licenses will be implied from the distribution -or licensing of Covered Software under this License. Notwithstanding Section -2.1(b) above, no patent license is granted by a Contributor: - -a. for any code that a Contributor has removed from Covered Software; or - -b. for infringements caused by: (i) Your and any other third party’s -modifications of Covered Software, or (ii) the combination of its -Contributions with other software (except as part of its Contributor -Version); or - -c. under Patent Claims infringed by Covered Software in the absence of its -Contributions. - -This License does not grant any rights in the trademarks, service marks, or -logos of any Contributor (except as may be necessary to comply with the -notice requirements in Section 3.4). - -2.4. Subsequent Licenses - -No Contributor makes additional grants as a result of Your choice to -distribute the Covered Software under a subsequent version of this License -(see Section 10.2) or under the terms of a Secondary License (if permitted -under the terms of Section 3.3). - -2.5. Representation - -Each Contributor represents that the Contributor believes its Contributions -are its original creation(s) or it has sufficient rights to grant the -rights to its Contributions conveyed by this License. - -2.6. Fair Use - -This License is not intended to limit any rights You have under applicable -copyright doctrines of fair use, fair dealing, or other equivalents. - -2.7. Conditions - -Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in -Section 2.1. - - -3. Responsibilities - -3.1. Distribution of Source Form - -All distribution of Covered Software in Source Code Form, including any -Modifications that You create or to which You contribute, must be under the -terms of this License. You must inform recipients that the Source Code Form -of the Covered Software is governed by the terms of this License, and how -they can obtain a copy of this License. You may not attempt to alter or -restrict the recipients’ rights in the Source Code Form. - -3.2. Distribution of Executable Form - -If You distribute Covered Software in Executable Form then: - -a. such Covered Software must also be made available in Source Code Form, -as described in Section 3.1, and You must inform recipients of the -Executable Form how they can obtain a copy of such Source Code Form by -reasonable means in a timely manner, at a charge no more than the cost -of distribution to the recipient; and - -b. You may distribute such Executable Form under the terms of this License, -or sublicense it under different terms, provided that the license for -the Executable Form does not attempt to limit or alter the recipients’ -rights in the Source Code Form under this License. - -3.3. Distribution of a Larger Work - -You may create and distribute a Larger Work under terms of Your choice, -provided that You also comply with the requirements of this License for the -Covered Software. If the Larger Work is a combination of Covered Software -with a work governed by one or more Secondary Licenses, and the Covered -Software is not Incompatible With Secondary Licenses, this License permits -You to additionally distribute such Covered Software under the terms of -such Secondary License(s), so that the recipient of the Larger Work may, at -their option, further distribute the Covered Software under the terms of -either this License or such Secondary License(s). - -3.4. Notices - -You may not remove or alter the substance of any license notices (including -copyright notices, patent notices, disclaimers of warranty, or limitations -of liability) contained within the Source Code Form of the Covered -Software, except that You may alter any license notices to the extent -required to remedy known factual inaccuracies. - -3.5. Application of Additional Terms - -You may choose to offer, and to charge a fee for, warranty, support, -indemnity or liability obligations to one or more recipients of Covered -Software. However, You may do so only on Your own behalf, and not on behalf -of any Contributor. You must make it absolutely clear that any such -warranty, support, indemnity, or liability obligation is offered by You -alone, and You hereby agree to indemnify every Contributor for any -liability incurred by such Contributor as a result of warranty, support, -indemnity or liability terms You offer. You may include additional -disclaimers of warranty and limitations of liability specific to any -jurisdiction. - -4. Inability to Comply Due to Statute or Regulation - -If it is impossible for You to comply with any of the terms of this License -with respect to some or all of the Covered Software due to statute, judicial -order, or regulation then You must: (a) comply with the terms of this License -to the maximum extent possible; and (b) describe the limitations and the code -they affect. Such description must be placed in a text file included with all -distributions of the Covered Software under this License. Except to the -extent prohibited by statute or regulation, such description must be -sufficiently detailed for a recipient of ordinary skill to be able to -understand it. - -5. Termination - -5.1. The rights granted under this License will terminate automatically if You -fail to comply with any of its terms. However, if You become compliant, -then the rights granted under this License from a particular Contributor -are reinstated (a) provisionally, unless and until such Contributor -explicitly and finally terminates Your grants, and (b) on an ongoing basis, -if such Contributor fails to notify You of the non-compliance by some -reasonable means prior to 60 days after You have come back into compliance. -Moreover, Your grants from a particular Contributor are reinstated on an -ongoing basis if such Contributor notifies You of the non-compliance by -some reasonable means, this is the first time You have received notice of -non-compliance with this License from such Contributor, and You become -compliant prior to 30 days after Your receipt of the notice. - -5.2. If You initiate litigation against any entity by asserting a patent -infringement claim (excluding declaratory judgment actions, counter-claims, -and cross-claims) alleging that a Contributor Version directly or -indirectly infringes any patent, then the rights granted to You by any and -all Contributors for the Covered Software under Section 2.1 of this License -shall terminate. - -5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user -license agreements (excluding distributors and resellers) which have been -validly granted by You or Your distributors under this License prior to -termination shall survive termination. - -6. Disclaimer of Warranty - -Covered Software is provided under this License on an “as is” basis, without -warranty of any kind, either expressed, implied, or statutory, including, -without limitation, warranties that the Covered Software is free of defects, -merchantable, fit for a particular purpose or non-infringing. The entire -risk as to the quality and performance of the Covered Software is with You. -Should any Covered Software prove defective in any respect, You (not any -Contributor) assume the cost of any necessary servicing, repair, or -correction. This disclaimer of warranty constitutes an essential part of this -License. No use of any Covered Software is authorized under this License -except under this disclaimer. - -7. Limitation of Liability - -Under no circumstances and under no legal theory, whether tort (including -negligence), contract, or otherwise, shall any Contributor, or anyone who -distributes Covered Software as permitted above, be liable to You for any -direct, indirect, special, incidental, or consequential damages of any -character including, without limitation, damages for lost profits, loss of -goodwill, work stoppage, computer failure or malfunction, or any and all -other commercial damages or losses, even if such party shall have been -informed of the possibility of such damages. This limitation of liability -shall not apply to liability for death or personal injury resulting from such -party’s negligence to the extent applicable law prohibits such limitation. -Some jurisdictions do not allow the exclusion or limitation of incidental or -consequential damages, so this exclusion and limitation may not apply to You. - -8. Litigation - -Any litigation relating to this License may be brought only in the courts of -a jurisdiction where the defendant maintains its principal place of business -and such litigation shall be governed by laws of that jurisdiction, without -reference to its conflict-of-law provisions. Nothing in this Section shall -prevent a party’s ability to bring cross-claims or counter-claims. - -9. Miscellaneous - -This License represents the complete agreement concerning the subject matter -hereof. If any provision of this License is held to be unenforceable, such -provision shall be reformed only to the extent necessary to make it -enforceable. Any law or regulation which provides that the language of a -contract shall be construed against the drafter shall not be used to construe -this License against a Contributor. - - -10. Versions of the License - -10.1. New Versions - -Mozilla Foundation is the license steward. Except as provided in Section -10.3, no one other than the license steward has the right to modify or -publish new versions of this License. Each version will be given a -distinguishing version number. - -10.2. Effect of New Versions - -You may distribute the Covered Software under the terms of the version of -the License under which You originally received the Covered Software, or -under the terms of any subsequent version published by the license -steward. - -10.3. Modified Versions - -If you create software not governed by this License, and you want to -create a new license for such software, you may create and use a modified -version of this License if you rename the license and remove any -references to the name of the license steward (except to note that such -modified license differs from this License). - -10.4. Distributing Source Code Form that is Incompatible With Secondary Licenses -If You choose to distribute Source Code Form that is Incompatible With -Secondary Licenses under the terms of this version of the License, the -notice described in Exhibit B of this License must be attached. - -Exhibit A - Source Code Form License Notice - -This Source Code Form is subject to the -terms of the Mozilla Public License, v. -2.0. If a copy of the MPL was not -distributed with this file, You can -obtain one at -http://mozilla.org/MPL/2.0/. - -If it is not possible or desirable to put the notice in a particular file, then -You may include the notice in a location (such as a LICENSE file in a relevant -directory) where a recipient would be likely to look for such a notice. - -You may add additional accurate notices of copyright ownership. - -Exhibit B - “Incompatible With Secondary Licenses” Notice - -This Source Code Form is “Incompatible -With Secondary Licenses”, as defined by -the Mozilla Public License, v. 2.0. - - -=========================================================================================== - -=========================================================================================== -drange@1.1.1 -https://github.com/fent/node-drange.git -Licensed under MIT -Notice file: -The MIT License (MIT) - -Copyright (c) 2014 David Tudury - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -=========================================================================================== - -=========================================================================================== -fast-json-patch@3.1.1 -git://github.com/Starcounter-Jack/JSON-Patch.git -Licensed under MIT -Notice file: -(The MIT License) - -Copyright (c) 2013, 2014, 2020 Joachim Wester - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -'Software'), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -=========================================================================================== - -=========================================================================================== -fault@1.0.4 -wooorm/fault -Licensed under MIT -Notice file: -(The MIT License) - -Copyright (c) 2015 Titus Wormer - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -'Software'), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -=========================================================================================== - -=========================================================================================== -format@0.2.2 -git://github.com/samsonjs/format.git -Licensed under MIT -Notice file: -The MIT License (MIT) - -Copyright © 2023 Sami Samhuri, http://samhuri.net - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the “Software”), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. -=========================================================================================== - -=========================================================================================== -function-bind@1.1.2 -https://github.com/Raynos/function-bind.git -Licensed under MIT -Notice file: -Copyright (c) 2013 Raynos. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - -=========================================================================================== - -=========================================================================================== -get-intrinsic@1.2.2 -git+https://github.com/ljharb/get-intrinsic.git -Licensed under MIT -Notice file: -MIT License - -Copyright (c) 2020 Jordan Harband - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -=========================================================================================== - -=========================================================================================== -gopd@1.0.1 -git+https://github.com/ljharb/gopd.git -Licensed under MIT -Notice file: -MIT License - -Copyright (c) 2022 Jordan Harband - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -=========================================================================================== - -=========================================================================================== -has-property-descriptors@1.0.1 -git+https://github.com/inspect-js/has-property-descriptors.git -Licensed under MIT -Notice file: -MIT License - -Copyright (c) 2022 Inspect JS - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -=========================================================================================== - -=========================================================================================== -has-proto@1.0.1 -git+https://github.com/inspect-js/has-proto.git -Licensed under MIT -Notice file: -MIT License - -Copyright (c) 2022 Inspect JS - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -=========================================================================================== - -=========================================================================================== -has-symbols@1.0.3 -git://github.com/inspect-js/has-symbols.git -Licensed under MIT -Notice file: -MIT License - -Copyright (c) 2016 Jordan Harband - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -=========================================================================================== - -=========================================================================================== -hasown@2.0.0 -git+https://github.com/inspect-js/hasOwn.git -Licensed under MIT -Notice file: -MIT License - -Copyright (c) Jordan Harband and contributors - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -=========================================================================================== - -=========================================================================================== -highlight.js@10.7.3 -git://github.com/highlightjs/highlight.js.git -Licensed under BSD-3-Clause -Notice file: -BSD 3-Clause License - -Copyright (c) 2006, Ivan Sagalaev. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -* Redistributions of source code must retain the above copyright notice, this -list of conditions and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -* Neither the name of the copyright holder nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -=========================================================================================== - -=========================================================================================== -ieee754@1.2.1 -git://github.com/feross/ieee754.git -Licensed under BSD-3-Clause -Notice file: -Copyright 2008 Fair Oaks Labs, Inc. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this -list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation and/or -other materials provided with the distribution. - -3. Neither the name of the copyright holder nor the names of its contributors -may be used to endorse or promote products derived from this software without -specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -=========================================================================================== - -=========================================================================================== -immutable@3.8.2 -git://github.com/facebook/immutable-js.git -Licensed under MIT -Notice file: -MIT License - -Copyright (c) 2014-present, Facebook, Inc. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -=========================================================================================== - -=========================================================================================== -is-plain-object@5.0.0 -jonschlinkert/is-plain-object -Licensed under MIT -Notice file: -The MIT License (MIT) - -Copyright (c) 2014-2017, Jon Schlinkert. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - -=========================================================================================== - -=========================================================================================== -js-file-download@0.4.12 -git@github.com:kennethjiang/js-file-download.git -Licensed under MIT -Notice file: -Copyright 2017 Kenneth Jiang - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE - -=========================================================================================== - -=========================================================================================== -js-yaml@4.1.0 -nodeca/js-yaml -Licensed under MIT -Notice file: -(The MIT License) - -Copyright (C) 2011-2015 by Vitaly Puzrin - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - -=========================================================================================== - -=========================================================================================== -lodash@4.17.21 -lodash/lodash -Licensed under MIT -Notice file: -Copyright OpenJS Foundation and other contributors - -Based on Underscore.js, copyright Jeremy Ashkenas, -DocumentCloud and Investigative Reporters & Editors - -This software consists of voluntary contributions made by many -individuals. For exact contribution history, see the revision history -available at https://github.com/lodash/lodash - -The following license applies to all parts of this software except as -documented below: - -==== - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -==== - -Copyright and related rights for sample code are waived via CC0. Sample -code is defined as all source code displayed within the prose of the -documentation. - -CC0: http://creativecommons.org/publicdomain/zero/1.0/ - -==== - -Files located in the node_modules and vendor directories are externally -maintained libraries used by this software which have their own -licenses; we recommend you read them, as their terms may differ from the -terms above. - -=========================================================================================== - -=========================================================================================== -lodash.debounce@4.0.8 -lodash/lodash -Licensed under MIT -Notice file: -Copyright jQuery Foundation and other contributors - -Based on Underscore.js, copyright Jeremy Ashkenas, -DocumentCloud and Investigative Reporters & Editors - -This software consists of voluntary contributions made by many -individuals. For exact contribution history, see the revision history -available at https://github.com/lodash/lodash - -The following license applies to all parts of this software except as -documented below: - -==== - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -==== - -Copyright and related rights for sample code are waived via CC0. Sample -code is defined as all source code displayed within the prose of the -documentation. - -CC0: http://creativecommons.org/publicdomain/zero/1.0/ - -==== - -Files located in the node_modules and vendor directories are externally -maintained libraries used by this software which have their own -licenses; we recommend you read them, as their terms may differ from the -terms above. - -=========================================================================================== - -=========================================================================================== -lowlight@1.20.0 -wooorm/lowlight -Licensed under MIT -Notice file: -(The MIT License) - -Copyright (c) 2016 Titus Wormer - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -'Software'), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -=========================================================================================== - -=========================================================================================== -minim@0.23.8 -http://github.com/refractproject/minim -Licensed under MIT -Notice file: -The MIT License (MIT) - -Copyright (c) 2014 Stephen Mizell - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -=========================================================================================== - -=========================================================================================== -object-inspect@1.13.1 -git://github.com/inspect-js/object-inspect.git -Licensed under MIT -Notice file: -MIT License - -Copyright (c) 2013 James Halliday - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -=========================================================================================== - -=========================================================================================== -process@0.11.10 -git://github.com/shtylman/node-process.git -Licensed under MIT -Notice file: -(The MIT License) - -Copyright (c) 2013 Roman Shtylman - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -'Software'), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -=========================================================================================== - -=========================================================================================== -prop-types@15.8.1 -facebook/prop-types -Licensed under MIT -Notice file: -MIT License - -Copyright (c) 2013-present, Facebook, Inc. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -=========================================================================================== - -=========================================================================================== -qs@6.11.2 -https://github.com/ljharb/qs.git -Licensed under BSD-3-Clause -Notice file: -BSD 3-Clause License - -Copyright (c) 2014, Nathan LaFreniere and other -[contributors](https://github.com/ljharb/qs/graphs/contributors) -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this -list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -3. Neither the name of the copyright holder nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -=========================================================================================== - -=========================================================================================== -querystringify@2.2.0 -https://github.com/unshiftio/querystringify -Licensed under MIT -Notice file: -The MIT License (MIT) - -Copyright (c) 2015 Unshift.io, Arnout Kazemier, the Contributors. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -=========================================================================================== - -=========================================================================================== -ramda@0.29.1 -git://github.com/ramda/ramda.git -Licensed under MIT -Notice file: -The MIT License (MIT) - -Copyright (c) 2013-2023 Scott Sauyet and Michael Hurley - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - -=========================================================================================== - -=========================================================================================== -ramda-adjunct@4.1.1 -git://github.com/char0n/ramda-adjunct.git -Licensed under BSD-3-Clause -Notice file: -BSD 3-Clause License - -Copyright 2017-2019 Vladimír Gorej and the Ramda Adjunct contributors - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation and/or -other materials provided with the distribution. - -3. Neither the name of the copyright holder nor the names of its contributors -may be used -to endorse or promote products derived from this software without specific prior -written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, -INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, -PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR -BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, -EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -=========================================================================================== - -=========================================================================================== -randexp@0.5.3 -git://github.com/fent/randexp.js.git -Licensed under MIT -Notice file: -MIT License - -Copyright (C) 2011 by fent - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - -=========================================================================================== - -=========================================================================================== -react@18.2.0 -https://github.com/facebook/react.git -Licensed under MIT -Notice file: -MIT License - -Copyright (c) Facebook, Inc. and its affiliates. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -=========================================================================================== - -=========================================================================================== -react-copy-to-clipboard@5.1.0 -https://github.com/nkbt/react-copy-to-clipboard.git -Licensed under MIT -Notice file: -The MIT License (MIT) - -Copyright (c) 2016 Nik Butenko - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -=========================================================================================== - -=========================================================================================== -react-debounce-input@3.3.0 -https://github.com/nkbt/react-debounce-input.git -Licensed under MIT -Notice file: -The MIT License (MIT) - -Copyright (c) 2016 Nik Butenko - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -=========================================================================================== - -=========================================================================================== -react-dom@18.2.0 -https://github.com/facebook/react.git -Licensed under MIT -Notice file: -MIT License - -Copyright (c) Facebook, Inc. and its affiliates. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -=========================================================================================== - -=========================================================================================== -react-immutable-proptypes@2.2.0 -https://github.com/HurricaneJames/react-immutable-proptypes -Licensed under MIT -Notice file: -The MIT License (MIT) - -Copyright (c) 2015 James Burnett - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -=========================================================================================== - -=========================================================================================== -react-immutable-pure-component@2.2.2 -https://github.com/Monar/react-immutable-pure-component -Licensed under MIT -Notice file: -The MIT License (MIT) - -Copyright (c) 2017 Piotr Tomasz Monarski - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -=========================================================================================== - -=========================================================================================== -react-redux@9.1.0 -github:reduxjs/react-redux -Licensed under MIT -Notice file: -The MIT License (MIT) - -Copyright (c) 2015-present Dan Abramov - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -=========================================================================================== - -=========================================================================================== -react-syntax-highlighter@15.5.0 -git+https://github.com/react-syntax-highlighter/react-syntax-highlighter.git -Licensed under MIT -Notice file: -MIT License - -Copyright (c) 2019 Conor Hastings - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -=========================================================================================== - -=========================================================================================== -redux@5.0.1 -github:reduxjs/redux -Licensed under MIT -Notice file: -The MIT License (MIT) - -Copyright (c) 2015-present Dan Abramov - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -=========================================================================================== - -=========================================================================================== -redux-immutable@4.0.0 -https://github.com/gajus/redux-immutable -Licensed under BSD-3-Clause -Notice file: -Copyright (c) 2016, Gajus Kuizinas (http://gajus.com/) -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: -* Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. -* Redistributions in binary form must reproduce the above copyright -notice, this list of conditions and the following disclaimer in the -documentation and/or other materials provided with the distribution. -* Neither the name of the Gajus Kuizinas (http://gajus.com/) nor the -names of its contributors may be used to endorse or promote products -derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL ANUARY BE LIABLE FOR ANY -DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND -ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -=========================================================================================== - -=========================================================================================== -remarkable@2.0.1 -https://github.com/jonschlinkert/remarkable -Licensed under MIT -Notice file: -The MIT License (MIT) - -Copyright (c) 2014-2016, Jon Schlinkert -Copyright (c) 2014 Jon Schlinkert, Vitaly Puzrin. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - -=========================================================================================== - -=========================================================================================== -repeat-string@1.6.1 -jonschlinkert/repeat-string -Licensed under MIT -Notice file: -The MIT License (MIT) - -Copyright (c) 2014-2016, Jon Schlinkert. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - -=========================================================================================== - -=========================================================================================== -requires-port@1.0.0 -https://github.com/unshiftio/requires-port -Licensed under MIT -Notice file: -The MIT License (MIT) - -Copyright (c) 2015 Unshift.io, Arnout Kazemier, the Contributors. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -=========================================================================================== - -=========================================================================================== -reselect@5.1.0 -https://github.com/reduxjs/reselect.git -Licensed under MIT -Notice file: -The MIT License (MIT) - -Copyright (c) 2015-2018 Reselect Contributors - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -=========================================================================================== - -=========================================================================================== -ret@0.2.2 -git://github.com/fent/ret.js.git -Licensed under MIT -Notice file: -MIT License - -Copyright (C) 2011 by fent - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - -=========================================================================================== - -=========================================================================================== -scheduler@0.23.0 -https://github.com/facebook/react.git -Licensed under MIT -Notice file: -MIT License - -Copyright (c) Facebook, Inc. and its affiliates. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -=========================================================================================== - -=========================================================================================== -serialize-error@8.1.0 -sindresorhus/serialize-error -Licensed under MIT -Notice file: -MIT License - -Copyright (c) Sindre Sorhus (https://sindresorhus.com) - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -=========================================================================================== - -=========================================================================================== -set-function-length@1.1.1 -git+https://github.com/ljharb/set-function-length.git -Licensed under MIT -Notice file: -MIT License - -Copyright (c) Jordan Harband and contributors - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -=========================================================================================== - -=========================================================================================== -short-unique-id@5.0.3 -https://github.com/jeanlescure/short-unique-id -Licensed under Apache-2.0 -Notice file: -Copyright 2017-2021 the Short Unique ID authors. All rights reserved. Apache 2.0 license. -=========================================================================================== - -=========================================================================================== -side-channel@1.0.4 -git+https://github.com/ljharb/side-channel.git -Licensed under MIT -Notice file: -MIT License - -Copyright (c) 2019 Jordan Harband - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -=========================================================================================== - -=========================================================================================== -stampit@4.3.2 -git@github.com:stampit-org/stampit.git -Licensed under MIT -Notice file: -The MIT License (MIT) - -Copyright (c) 2013 Eric Elliott. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - -=========================================================================================== - -=========================================================================================== -swagger-client@3.25.0 -git@github.com:swagger-api/swagger-js.git -Licensed under Apache-2.0 -Notice file: - -Apache License -Version 2.0, January 2004 -http://www.apache.org/licenses/ - -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - -"License" shall mean the terms and conditions for use, reproduction, -and distribution as defined by Sections 1 through 9 of this document. - -"Licensor" shall mean the copyright owner or entity authorized by -the copyright owner that is granting the License. - -"Legal Entity" shall mean the union of the acting entity and all -other entities that control, are controlled by, or are under common -control with that entity. For the purposes of this definition, -"control" means (i) the power, direct or indirect, to cause the -direction or management of such entity, whether by contract or -otherwise, or (ii) ownership of fifty percent (50%) or more of the -outstanding shares, or (iii) beneficial ownership of such entity. - -"You" (or "Your") shall mean an individual or Legal Entity -exercising permissions granted by this License. - -"Source" form shall mean the preferred form for making modifications, -including but not limited to software source code, documentation -source, and configuration files. - -"Object" form shall mean any form resulting from mechanical -transformation or translation of a Source form, including but -not limited to compiled object code, generated documentation, -and conversions to other media types. - -"Work" shall mean the work of authorship, whether in Source or -Object form, made available under the License, as indicated by a -copyright notice that is included in or attached to the work -(an example is provided in the Appendix below). - -"Derivative Works" shall mean any work, whether in Source or Object -form, that is based on (or derived from) the Work and for which the -editorial revisions, annotations, elaborations, or other modifications -represent, as a whole, an original work of authorship. For the purposes -of this License, Derivative Works shall not include works that remain -separable from, or merely link (or bind by name) to the interfaces of, -the Work and Derivative Works thereof. - -"Contribution" shall mean any work of authorship, including -the original version of the Work and any modifications or additions -to that Work or Derivative Works thereof, that is intentionally -submitted to Licensor for inclusion in the Work by the copyright owner -or by an individual or Legal Entity authorized to submit on behalf of -the copyright owner. For the purposes of this definition, "submitted" -means any form of electronic, verbal, or written communication sent -to the Licensor or its representatives, including but not limited to -communication on electronic mailing lists, source code control systems, -and issue tracking systems that are managed by, or on behalf of, the -Licensor for the purpose of discussing and improving the Work, but -excluding communication that is conspicuously marked or otherwise -designated in writing by the copyright owner as "Not a Contribution." - -"Contributor" shall mean Licensor and any individual or Legal Entity -on behalf of whom a Contribution has been received by Licensor and -subsequently incorporated within the Work. - -2. Grant of Copyright License. Subject to the terms and conditions of -this License, each Contributor hereby grants to You a perpetual, -worldwide, non-exclusive, no-charge, royalty-free, irrevocable -copyright license to reproduce, prepare Derivative Works of, -publicly display, publicly perform, sublicense, and distribute the -Work and such Derivative Works in Source or Object form. - -3. Grant of Patent License. Subject to the terms and conditions of -this License, each Contributor hereby grants to You a perpetual, -worldwide, non-exclusive, no-charge, royalty-free, irrevocable -(except as stated in this section) patent license to make, have made, -use, offer to sell, sell, import, and otherwise transfer the Work, -where such license applies only to those patent claims licensable -by such Contributor that are necessarily infringed by their -Contribution(s) alone or by combination of their Contribution(s) -with the Work to which such Contribution(s) was submitted. If You -institute patent litigation against any entity (including a -cross-claim or counterclaim in a lawsuit) alleging that the Work -or a Contribution incorporated within the Work constitutes direct -or contributory patent infringement, then any patent licenses -granted to You under this License for that Work shall terminate -as of the date such litigation is filed. - -4. Redistribution. You may reproduce and distribute copies of the -Work or Derivative Works thereof in any medium, with or without -modifications, and in Source or Object form, provided that You -meet the following conditions: - -(a) You must give any other recipients of the Work or -Derivative Works a copy of this License; and - -(b) You must cause any modified files to carry prominent notices -stating that You changed the files; and - -(c) You must retain, in the Source form of any Derivative Works -that You distribute, all copyright, patent, trademark, and -attribution notices from the Source form of the Work, -excluding those notices that do not pertain to any part of -the Derivative Works; and - -(d) If the Work includes a "NOTICE" text file as part of its -distribution, then any Derivative Works that You distribute must -include a readable copy of the attribution notices contained -within such NOTICE file, excluding those notices that do not -pertain to any part of the Derivative Works, in at least one -of the following places: within a NOTICE text file distributed -as part of the Derivative Works; within the Source form or -documentation, if provided along with the Derivative Works; or, -within a display generated by the Derivative Works, if and -wherever such third-party notices normally appear. The contents -of the NOTICE file are for informational purposes only and -do not modify the License. You may add Your own attribution -notices within Derivative Works that You distribute, alongside -or as an addendum to the NOTICE text from the Work, provided -that such additional attribution notices cannot be construed -as modifying the License. - -You may add Your own copyright statement to Your modifications and -may provide additional or different license terms and conditions -for use, reproduction, or distribution of Your modifications, or -for any such Derivative Works as a whole, provided Your use, -reproduction, and distribution of the Work otherwise complies with -the conditions stated in this License. - -5. Submission of Contributions. Unless You explicitly state otherwise, -any Contribution intentionally submitted for inclusion in the Work -by You to the Licensor shall be under the terms and conditions of -this License, without any additional terms or conditions. -Notwithstanding the above, nothing herein shall supersede or modify -the terms of any separate license agreement you may have executed -with Licensor regarding such Contributions. - -6. Trademarks. This License does not grant permission to use the trade -names, trademarks, service marks, or product names of the Licensor, -except as required for reasonable and customary use in describing the -origin of the Work and reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. Unless required by applicable law or -agreed to in writing, Licensor provides the Work (and each -Contributor provides its Contributions) on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or -implied, including, without limitation, any warranties or conditions -of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A -PARTICULAR PURPOSE. You are solely responsible for determining the -appropriateness of using or redistributing the Work and assume any -risks associated with Your exercise of permissions under this License. - -8. Limitation of Liability. In no event and under no legal theory, -whether in tort (including negligence), contract, or otherwise, -unless required by applicable law (such as deliberate and grossly -negligent acts) or agreed to in writing, shall any Contributor be -liable to You for damages, including any direct, indirect, special, -incidental, or consequential damages of any character arising as a -result of this License or out of the use or inability to use the -Work (including but not limited to damages for loss of goodwill, -work stoppage, computer failure or malfunction, or any and all -other commercial damages or losses), even if such Contributor -has been advised of the possibility of such damages. - -9. Accepting Warranty or Additional Liability. While redistributing -the Work or Derivative Works thereof, You may choose to offer, -and charge a fee for, acceptance of support, warranty, indemnity, -or other liability obligations and/or rights consistent with this -License. However, in accepting such obligations, You may act only -on Your own behalf and on Your sole responsibility, not on behalf -of any other Contributor, and only if You agree to indemnify, -defend, and hold each Contributor harmless for any liability -incurred by, or claims asserted against, such Contributor by reason -of your accepting any such warranty or additional liability. - -END OF TERMS AND CONDITIONS - -APPENDIX: How to apply the Apache License to your work. - -To apply the Apache License to your work, attach the following -boilerplate notice, with the fields enclosed by brackets "[]" -replaced with your own identifying information. (Don't include -the brackets!) The text should be enclosed in the appropriate -comment syntax for the file format. We also recommend that a -file or class name and description of purpose be included on the -same "printed page" as the copyright notice for easier -identification within third-party archives. - -Copyright [yyyy] [name of copyright owner] - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - -http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. - -=========================================================================================== - -=========================================================================================== -swagger-ui@5.11.2 -git@github.com:swagger-api/swagger-ui.git -Licensed under Apache-2.0 -Notice file: - ------------------------------------------------------------ -swagger-UI-dist (Licensed under Apache-2.0, 0BSD, BSD-2-Clause, BSD-3-Clause, ISC, MIT, Unlicense) -The swagger-ui-dist NPM webjar is comprised of a multitude of minified ECMAscript -and CSS libraries aggregated from several projects, under different licences. -For license information please see swagger-ui-es-bundle.js.LICENSE.txt. ------------------------------------------------------------- - - -Apache License -Version 2.0, January 2004 -http://www.apache.org/licenses/ - -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - -"License" shall mean the terms and conditions for use, reproduction, -and distribution as defined by Sections 1 through 9 of this document. - -"Licensor" shall mean the copyright owner or entity authorized by -the copyright owner that is granting the License. - -"Legal Entity" shall mean the union of the acting entity and all -other entities that control, are controlled by, or are under common -control with that entity. For the purposes of this definition, -"control" means (i) the power, direct or indirect, to cause the -direction or management of such entity, whether by contract or -otherwise, or (ii) ownership of fifty percent (50%) or more of the -outstanding shares, or (iii) beneficial ownership of such entity. - -"You" (or "Your") shall mean an individual or Legal Entity -exercising permissions granted by this License. - -"Source" form shall mean the preferred form for making modifications, -including but not limited to software source code, documentation -source, and configuration files. - -"Object" form shall mean any form resulting from mechanical -transformation or translation of a Source form, including but -not limited to compiled object code, generated documentation, -and conversions to other media types. - -"Work" shall mean the work of authorship, whether in Source or -Object form, made available under the License, as indicated by a -copyright notice that is included in or attached to the work -(an example is provided in the Appendix below). - -"Derivative Works" shall mean any work, whether in Source or Object -form, that is based on (or derived from) the Work and for which the -editorial revisions, annotations, elaborations, or other modifications -represent, as a whole, an original work of authorship. For the purposes -of this License, Derivative Works shall not include works that remain -separable from, or merely link (or bind by name) to the interfaces of, -the Work and Derivative Works thereof. - -"Contribution" shall mean any work of authorship, including -the original version of the Work and any modifications or additions -to that Work or Derivative Works thereof, that is intentionally -submitted to Licensor for inclusion in the Work by the copyright owner -or by an individual or Legal Entity authorized to submit on behalf of -the copyright owner. For the purposes of this definition, "submitted" -means any form of electronic, verbal, or written communication sent -to the Licensor or its representatives, including but not limited to -communication on electronic mailing lists, source code control systems, -and issue tracking systems that are managed by, or on behalf of, the -Licensor for the purpose of discussing and improving the Work, but -excluding communication that is conspicuously marked or otherwise -designated in writing by the copyright owner as "Not a Contribution." - -"Contributor" shall mean Licensor and any individual or Legal Entity -on behalf of whom a Contribution has been received by Licensor and -subsequently incorporated within the Work. - -2. Grant of Copyright License. Subject to the terms and conditions of -this License, each Contributor hereby grants to You a perpetual, -worldwide, non-exclusive, no-charge, royalty-free, irrevocable -copyright license to reproduce, prepare Derivative Works of, -publicly display, publicly perform, sublicense, and distribute the -Work and such Derivative Works in Source or Object form. - -3. Grant of Patent License. Subject to the terms and conditions of -this License, each Contributor hereby grants to You a perpetual, -worldwide, non-exclusive, no-charge, royalty-free, irrevocable -(except as stated in this section) patent license to make, have made, -use, offer to sell, sell, import, and otherwise transfer the Work, -where such license applies only to those patent claims licensable -by such Contributor that are necessarily infringed by their -Contribution(s) alone or by combination of their Contribution(s) -with the Work to which such Contribution(s) was submitted. If You -institute patent litigation against any entity (including a -cross-claim or counterclaim in a lawsuit) alleging that the Work -or a Contribution incorporated within the Work constitutes direct -or contributory patent infringement, then any patent licenses -granted to You under this License for that Work shall terminate -as of the date such litigation is filed. - -4. Redistribution. You may reproduce and distribute copies of the -Work or Derivative Works thereof in any medium, with or without -modifications, and in Source or Object form, provided that You -meet the following conditions: - -(a) You must give any other recipients of the Work or -Derivative Works a copy of this License; and - -(b) You must cause any modified files to carry prominent notices -stating that You changed the files; and - -(c) You must retain, in the Source form of any Derivative Works -that You distribute, all copyright, patent, trademark, and -attribution notices from the Source form of the Work, -excluding those notices that do not pertain to any part of -the Derivative Works; and - -(d) If the Work includes a "NOTICE" text file as part of its -distribution, then any Derivative Works that You distribute must -include a readable copy of the attribution notices contained -within such NOTICE file, excluding those notices that do not -pertain to any part of the Derivative Works, in at least one -of the following places: within a NOTICE text file distributed -as part of the Derivative Works; within the Source form or -documentation, if provided along with the Derivative Works; or, -within a display generated by the Derivative Works, if and -wherever such third-party notices normally appear. The contents -of the NOTICE file are for informational purposes only and -do not modify the License. You may add Your own attribution -notices within Derivative Works that You distribute, alongside -or as an addendum to the NOTICE text from the Work, provided -that such additional attribution notices cannot be construed -as modifying the License. - -You may add Your own copyright statement to Your modifications and -may provide additional or different license terms and conditions -for use, reproduction, or distribution of Your modifications, or -for any such Derivative Works as a whole, provided Your use, -reproduction, and distribution of the Work otherwise complies with -the conditions stated in this License. - -5. Submission of Contributions. Unless You explicitly state otherwise, -any Contribution intentionally submitted for inclusion in the Work -by You to the Licensor shall be under the terms and conditions of -this License, without any additional terms or conditions. -Notwithstanding the above, nothing herein shall supersede or modify -the terms of any separate license agreement you may have executed -with Licensor regarding such Contributions. - -6. Trademarks. This License does not grant permission to use the trade -names, trademarks, service marks, or product names of the Licensor, -except as required for reasonable and customary use in describing the -origin of the Work and reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. Unless required by applicable law or -agreed to in writing, Licensor provides the Work (and each -Contributor provides its Contributions) on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or -implied, including, without limitation, any warranties or conditions -of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A -PARTICULAR PURPOSE. You are solely responsible for determining the -appropriateness of using or redistributing the Work and assume any -risks associated with Your exercise of permissions under this License. - -8. Limitation of Liability. In no event and under no legal theory, -whether in tort (including negligence), contract, or otherwise, -unless required by applicable law (such as deliberate and grossly -negligent acts) or agreed to in writing, shall any Contributor be -liable to You for damages, including any direct, indirect, special, -incidental, or consequential damages of any character arising as a -result of this License or out of the use or inability to use the -Work (including but not limited to damages for loss of goodwill, -work stoppage, computer failure or malfunction, or any and all -other commercial damages or losses), even if such Contributor -has been advised of the possibility of such damages. - -9. Accepting Warranty or Additional Liability. While redistributing -the Work or Derivative Works thereof, You may choose to offer, -and charge a fee for, acceptance of support, warranty, indemnity, -or other liability obligations and/or rights consistent with this -License. However, in accepting such obligations, You may act only -on Your own behalf and on Your sole responsibility, not on behalf -of any other Contributor, and only if You agree to indemnify, -defend, and hold each Contributor harmless for any liability -incurred by, or claims asserted against, such Contributor by reason -of your accepting any such warranty or additional liability. - -END OF TERMS AND CONDITIONS - -APPENDIX: How to apply the Apache License to your work. - -To apply the Apache License to your work, attach the following -boilerplate notice, with the fields enclosed by brackets "[]" -replaced with your own identifying information. (Don't include -the brackets!) The text should be enclosed in the appropriate -comment syntax for the file format. We also recommend that a -file or class name and description of purpose be included on the -same "printed page" as the copyright notice for easier -identification within third-party archives. - -Copyright [yyyy] [name of copyright owner] - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - -http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. - -=========================================================================================== - -=========================================================================================== -toggle-selection@1.0.6 -git+https://github.com/sudodoki/toggle-selection -Licensed under MIT -Notice file: -MIT License - -Copyright (c) 2017 sudodoki - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -=========================================================================================== - -=========================================================================================== -traverse@0.6.8 -git://github.com/ljharb/js-traverse.git -Licensed under MIT -Notice file: -MIT License - -Copyright (c) 2010 James Halliday and contributors - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -=========================================================================================== - -=========================================================================================== -tslib@2.5.3 -https://github.com/Microsoft/tslib.git -Licensed under 0BSD -Notice file: -Copyright (c) Microsoft Corporation. - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH -REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY -AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, -INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM -LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR -OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THIS SOFTWARE. -=========================================================================================== - -=========================================================================================== -unraw@3.0.0 -https://github.com/iansan5653/unraw -Licensed under MIT -Notice file: -MIT License - -Copyright (c) 2019 Ian Sanders - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -=========================================================================================== - -=========================================================================================== -url-parse@1.5.10 -https://github.com/unshiftio/url-parse.git -Licensed under MIT -Notice file: -The MIT License (MIT) - -Copyright (c) 2015 Unshift.io, Arnout Kazemier, the Contributors. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -=========================================================================================== - -=========================================================================================== -use-sync-external-store@1.2.0 -https://github.com/facebook/react.git -Licensed under MIT -Notice file: -MIT License - -Copyright (c) Facebook, Inc. and its affiliates. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -=========================================================================================== - -=========================================================================================== -xml-but-prettier@1.0.1 -https://github.com/shockey/xml-but-prettier -Licensed under MIT -Notice file: -The MIT License (MIT) - -Copyright (c) 2015 Jonathan Persson - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -=========================================================================================== - -=========================================================================================== -zenscroll@4.0.2 -https://github.com/zengabor/zenscroll.git -Licensed under Unlicense -Notice file: -This is free and unencumbered software released into the public domain. - -Anyone is free to copy, modify, publish, use, compile, sell, or -distribute this software, either in source code form or as a compiled -binary, for any purpose, commercial or non-commercial, and by any -means. - -In jurisdictions that recognize copyright laws, the author or authors -of this software dedicate any and all copyright interest in the -software to the public domain. We make this dedication for the benefit -of the public at large and to the detriment of our heirs and -successors. We intend this dedication to be an overt act of -relinquishment in perpetuity of all present and future rights to this -software under copyright law. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR -OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, -ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR -OTHER DEALINGS IN THE SOFTWARE. - -For more information, please refer to - - -=========================================================================================== From 18eef54a26f1dd0c3e99fb00d0077f4e2ce99d5c Mon Sep 17 00:00:00 2001 From: "Sahu, Jyoti" Date: Wed, 25 Sep 2024 14:57:40 -0600 Subject: [PATCH 4/6] add task_id for ACT_HI_VARINST table for task variables-review comments --- .../history/producer/DefaultHistoryEventProducer.java | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/engine/src/main/java/org/camunda/bpm/engine/impl/history/producer/DefaultHistoryEventProducer.java b/engine/src/main/java/org/camunda/bpm/engine/impl/history/producer/DefaultHistoryEventProducer.java index 7ba8c0a7c6d..a509fe4b7fd 100644 --- a/engine/src/main/java/org/camunda/bpm/engine/impl/history/producer/DefaultHistoryEventProducer.java +++ b/engine/src/main/java/org/camunda/bpm/engine/impl/history/producer/DefaultHistoryEventProducer.java @@ -452,8 +452,9 @@ else if (variableInstance.getCaseExecutionId() != null) { sourceExecution = ((TaskEntity) sourceVariableScope).getExecution(); if (sourceExecution != null) { List taskEntityList = sourceExecution.getTasks(); - if(taskEntityList!=null && taskEntityList.size()>0) + if(taskEntityList!=null && !taskEntityList.isEmpty()){ taskId = taskEntityList.get(0).getId(); + } sourceActivityInstanceId = sourceExecution.getActivityInstanceId(); } @@ -481,8 +482,11 @@ else if (sourceVariableScope instanceof CaseExecutionEntity) { // set source activity instance id evt.setActivityInstanceId(sourceActivityInstanceId); - if(taskId!=null && evt.getTaskId()==null) + + // set task id + if(taskId!=null && evt.getTaskId()==null) { evt.setTaskId(taskId); + } // mark initial variables on process start if (sourceExecution != null && sourceExecution.isProcessInstanceStarting() From 7dced3dbdf1b0299d83f761088ab16ae40fa7d0f Mon Sep 17 00:00:00 2001 From: "Sahu, Jyoti" Date: Thu, 26 Sep 2024 12:40:23 -0600 Subject: [PATCH 5/6] incorporated review comments --- .../impl/history/producer/DefaultHistoryEventProducer.java | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/engine/src/main/java/org/camunda/bpm/engine/impl/history/producer/DefaultHistoryEventProducer.java b/engine/src/main/java/org/camunda/bpm/engine/impl/history/producer/DefaultHistoryEventProducer.java index a509fe4b7fd..4c766316a51 100644 --- a/engine/src/main/java/org/camunda/bpm/engine/impl/history/producer/DefaultHistoryEventProducer.java +++ b/engine/src/main/java/org/camunda/bpm/engine/impl/history/producer/DefaultHistoryEventProducer.java @@ -25,7 +25,6 @@ import java.util.ArrayList; import java.util.Date; import java.util.List; - import org.camunda.bpm.engine.ProcessEngineException; import org.camunda.bpm.engine.batch.Batch; import org.camunda.bpm.engine.delegate.DelegateExecution; @@ -741,9 +740,11 @@ public HistoryEvent createActivityInstanceUpdateEvt(DelegateExecution execution, evt.setTaskAssignee(task.getAssignee()); List cachedHistoricVariableInstances = Context.getCommandContext().getDbEntityManager().getCachedEntitiesByType(HistoricVariableInstanceEntity.class); + String executionActivityInstanceId = executionEntity.getActivityInstanceId(); for (HistoricVariableInstanceEntity historicVariableInstance : cachedHistoricVariableInstances) { - if(executionEntity.getActivityInstanceId()!=null && historicVariableInstance.getActivityInstanceId()!=null) { - if (historicVariableInstance.getActivityInstanceId().equals(executionEntity.getActivityInstanceId())) { + String historicActivityInstanceId = historicVariableInstance.getActivityInstanceId(); + if(executionActivityInstanceId!=null && historicActivityInstanceId!=null) { + if (historicActivityInstanceId.equals(executionActivityInstanceId)) { historicVariableInstance.setTaskId(task.getId()); } } From 107a777b0e4ec38a67d8d22e91a699cbe7323299 Mon Sep 17 00:00:00 2001 From: "Sahu, Jyoti" Date: Tue, 1 Oct 2024 18:08:56 -0600 Subject: [PATCH 6/6] adding code comments --- .../history/producer/DefaultHistoryEventProducer.java | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/engine/src/main/java/org/camunda/bpm/engine/impl/history/producer/DefaultHistoryEventProducer.java b/engine/src/main/java/org/camunda/bpm/engine/impl/history/producer/DefaultHistoryEventProducer.java index 4c766316a51..392d614f8b5 100644 --- a/engine/src/main/java/org/camunda/bpm/engine/impl/history/producer/DefaultHistoryEventProducer.java +++ b/engine/src/main/java/org/camunda/bpm/engine/impl/history/producer/DefaultHistoryEventProducer.java @@ -450,6 +450,8 @@ else if (variableInstance.getCaseExecutionId() != null) { } else if (sourceVariableScope instanceof TaskEntity) { sourceExecution = ((TaskEntity) sourceVariableScope).getExecution(); if (sourceExecution != null) { + + //this block when executed for task listener variables, gets task id from source execution List taskEntityList = sourceExecution.getTasks(); if(taskEntityList!=null && !taskEntityList.isEmpty()){ taskId = taskEntityList.get(0).getId(); @@ -482,7 +484,7 @@ else if (sourceVariableScope instanceof CaseExecutionEntity) { // set source activity instance id evt.setActivityInstanceId(sourceActivityInstanceId); - // set task id + // set task id for task listener variables if(taskId!=null && evt.getTaskId()==null) { evt.setTaskId(taskId); } @@ -739,10 +741,16 @@ public HistoryEvent createActivityInstanceUpdateEvt(DelegateExecution execution, evt.setTaskId(task.getId()); evt.setTaskAssignee(task.getAssignee()); + /* + * this code is required for input variables of the task as the historic variable instance is created first + * and then task entity is created + * get historic variable instances from the cache as the transaction is still not committed + */ List cachedHistoricVariableInstances = Context.getCommandContext().getDbEntityManager().getCachedEntitiesByType(HistoricVariableInstanceEntity.class); String executionActivityInstanceId = executionEntity.getActivityInstanceId(); for (HistoricVariableInstanceEntity historicVariableInstance : cachedHistoricVariableInstances) { String historicActivityInstanceId = historicVariableInstance.getActivityInstanceId(); + //update task id for historic variable instances only specific to that task if(executionActivityInstanceId!=null && historicActivityInstanceId!=null) { if (historicActivityInstanceId.equals(executionActivityInstanceId)) { historicVariableInstance.setTaskId(task.getId());