diff --git a/.dockerignore b/.dockerignore
new file mode 100644
index 000000000..72e9aa425
--- /dev/null
+++ b/.dockerignore
@@ -0,0 +1,7 @@
+Dockerfile
+.dockerignore
+node_modules
+npm-debug.log
+README.md
+.next
+.git
\ No newline at end of file
diff --git a/.env.example b/.env.example
index 4cf175e40..ae41653c1 100644
--- a/.env.example
+++ b/.env.example
@@ -18,13 +18,26 @@
#NEXT_PUBLIC_PRIVACY_PREFERENCE_CENTER="true"
# Development Preference Center
-#NEXT_PUBLIC_NFT_FACTORY_ADDRESS='0xxx'
-#NEXT_PUBLIC_OPF_COMMUNITY_FEE_COLECTOR='0xxx'
-#NEXT_PUBLIC_FIXED_RATE_EXCHANGE_ADDRESS='0xxx'
-#NEXT_PUBLIC_DISPENSER_ADDRESS='0xxx'
-#NEXT_PUBLIC_OCEAN_TOKEN_ADDRESS='0xxx'
-#NEXT_PUBLIC_MARKET_DEVELOPMENT='true'
-#NEXT_PUBLIC_PROVIDER_URL="http://xxx:xxx"
-#NEXT_PUBLIC_SUBGRAPH_URI="http://xxx:xxx"
-#NEXT_PUBLIC_METADATACACHE_URI="http://xxx:xxx"
-#NEXT_PUBLIC_RPC_URI="http://xxx:xxx"
\ No newline at end of file
+NEXT_PUBLIC_NFT_FACTORY_ADDRESS='0xxx'
+NEXT_PUBLIC_OPF_COMMUNITY_FEE_COLECTOR='0xxx'
+NEXT_PUBLIC_FIXED_RATE_EXCHANGE_ADDRESS='0xxx'
+NEXT_PUBLIC_DISPENSER_ADDRESS='0xxx'
+NEXT_PUBLIC_OCEAN_TOKEN_ADDRESS='0xxx'
+NEXT_PUBLIC_MARKET_DEVELOPMENT='true'
+NEXT_PUBLIC_PROVIDER_URL="http://xxx:xxx"
+NEXT_PUBLIC_SUBGRAPH_URI="http://xxx:xxx"
+NEXT_PUBLIC_METADATACACHE_URI="http://xxx:xxx"
+NEXT_PUBLIC_RPC_URI="http://xxx:xxx"
+
+# Credentials
+CONSENTS_API_URL=http://localhost:8050/api
+CREDENTIALS_REDIS_URL=redis://localhost:6379
+CREDENTIALS_REDIS_USERNAME=default
+CREDENTIALS_REDIS_PASSWORD=1234
+
+# Opentelemetry
+OTEL_EXPORTER_OTLP_ENDPOINT="http://localhost:4317"
+NEXT_TELEMETRY_DISABLED=1
+
+# AgroPortal
+AGROPORTAL_API_KEY=your_agroportal_api_key_here
\ No newline at end of file
diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS
index ea1345d63..a78d7a55a 100644
--- a/.github/CODEOWNERS
+++ b/.github/CODEOWNERS
@@ -10,3 +10,6 @@ pontusxAddresses.json @deltaDAO/qa @deltaDAO/frontend
/content/ @deltaDAO/qa @deltaDAO/frontend
# Directory managing publicly hosted images
/public/images/ @deltaDAO/qa @deltaDAO/frontend
+
+# Adaptations for the AgrospAI marketplace
+* @rogargon
diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml
new file mode 100644
index 000000000..a6961adff
--- /dev/null
+++ b/.github/workflows/deploy.yml
@@ -0,0 +1,30 @@
+name: deploy
+
+on:
+ push:
+ branches:
+ - 'agrospai'
+
+jobs:
+ docker:
+ runs-on: ubuntu-latest
+ steps:
+ - name: Set up QEMU
+ uses: docker/setup-qemu-action@v2
+ - name: Set up Docker Buildx
+ uses: docker/setup-buildx-action@v2
+ env:
+ COMMIT_REF: ${{ github.sha }}
+ BRANCH: 'agrospai'
+ - name: Login to Docker Hub
+ uses: docker/login-action@v2
+ with:
+ username: ${{ secrets.DOCKERHUB_USERNAME }}
+ password: ${{ secrets.DOCKERHUB_TOKEN }}
+ - name: Build and push
+ uses: docker/build-push-action@v4
+ with:
+ push: true
+ tags: |
+ rhizomik/marketplace:${{ github.sha }}
+ rhizomik/marketplace:latest
diff --git a/.nvmrc b/.nvmrc
index 25bf17fc5..2edeafb09 100644
--- a/.nvmrc
+++ b/.nvmrc
@@ -1 +1 @@
-18
\ No newline at end of file
+20
\ No newline at end of file
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 000000000..c74dec4d9
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,64 @@
+# syntax=docker.io/docker/dockerfile:1
+
+FROM node:20-alpine AS base
+
+# Install dependencies only when needed
+FROM base AS deps
+# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed.
+RUN apk add --no-cache libc6-compat git
+WORKDIR /app
+
+# Install dependencies based on the preferred package manager
+COPY package.json yarn.lock* package-lock.json* pnpm-lock.yaml* ./
+RUN \
+ if [ -f yarn.lock ]; then yarn --frozen-lockfile; \
+ elif [ -f package-lock.json ]; then npm ci --ignore-scripts; \
+ elif [ -f pnpm-lock.yaml ]; then yarn global add pnpm && pnpm i --frozen-lockfile; \
+ else echo "Lockfile not found." && exit 1; \
+ fi
+
+
+# Rebuild the source code only when needed
+FROM base AS builder
+WORKDIR /app
+COPY --from=deps /app/node_modules ./node_modules
+COPY . .
+
+ENV NEXT_TELEMETRY_DISABLED=1
+
+RUN \
+ if [ -f yarn.lock ]; then yarn run build; \
+ elif [ -f package-lock.json ]; then npm run build; \
+ elif [ -f pnpm-lock.yaml ]; then corepack enable pnpm && pnpm run build; \
+ else echo "Lockfile not found." && exit 1; \
+ fi
+
+# Production image, copy all the files and run next
+FROM base AS runner
+WORKDIR /app
+
+ENV NODE_ENV=production
+ENV NEXT_TELEMETRY_DISABLED=1
+
+RUN addgroup --system --gid 1001 nodejs
+RUN adduser --system --uid 1001 nextjs
+
+USER nextjs
+
+COPY --from=builder /app/public ./public
+
+# Automatically leverage output traces to reduce image size
+# https://nextjs.org/docs/advanced-features/output-file-tracing
+COPY --from=builder --chown=nextjs:nodejs /app/.next/standalone ./
+COPY --from=builder --chown=nextjs:nodejs /app/.next/static ./.next/static
+
+USER nextjs
+
+EXPOSE 3000
+
+ENV PORT=3000
+
+# server.js is created by next build from the standalone output
+# https://nextjs.org/docs/pages/api-reference/config/next-config-js/output
+ENV HOSTNAME="0.0.0.0"
+CMD ["node", "server.js"]
diff --git a/README.md b/README.md
index acfae3c8e..422bdb210 100644
--- a/README.md
+++ b/README.md
@@ -1,12 +1,6 @@
-[](https://oceanprotocol.com)
+
AgrospAI Data Space
-
Ocean Marketplace
-
-[](https://github.com/oceanprotocol/market/actions)
-[](https://app.netlify.com/sites/market-oceanprotocol/deploys)
-[](https://codeclimate.com/repos/5e3933869a31771fd800011c/maintainability)
-[](https://codeclimate.com/github/oceanprotocol/market/test_coverage)
-[](https://github.com/oceanprotocol/eslint-config-oceanprotocol)
+[](https://github.com/rhizomik/mvg-portal/actions)
**Table of Contents**
diff --git a/address.config.js b/address.config.js
index 12c3a4d9f..9d4ba9ede 100644
--- a/address.config.js
+++ b/address.config.js
@@ -7,52 +7,43 @@ module.exports = {
},
featured: [
{
- title: 'Smart Mobility, Automotive',
+ title:
+ 'Monitoring and certifying environmental sustainability in pig farming',
assets: [
- 'did:op:f892fdeb6e4aead439a992ee66322d96d625f7acfed999e633c4b5c81b0968a9', // Hamburg Urban Data
- 'did:op:60345a1cffaf69e978846858760f69ebe6688e3fa1b9a21f2cdb81b82c415049', // Road Condition Short
- 'did:op:4103da1b9000f90c4262b94353b23175e490f47e3fd9bf3bda440f550178f423', // Road Condition Long
- 'did:op:423ae6f53c14980e871ba8109f1f493077c1691dac7a56c413a973238a90f2fa', // Hamburg Road 18
- 'did:op:61788149bc0837d0bea0ee32b04eb8bebb20c2e73e1098cfdec4807d86eddac7', // Hamburg Road 17
- 'did:op:1cccfa6b2de76b2f831183c9404675a84f12c336c2ebde87dbfad9e2b39c1295', // SH Road 16
- 'did:op:f6b81477c783e84cb9fbb0d7b57b1974b6f0a86067f2f17bbdd9f2e2dd7802a3', // SH Road 15
- 'did:op:555b7d7c03f365c9166afb4524fe5e332f9794fbeb5e9770fe47d1da9adff9c4', // SH Road 14
- 'did:op:aea8d72bd0ea2f2633599caa69488b212ecaa7fb0b44abb0e3c58494da143b95', // SH Road 13
- 'did:op:1501d13f41eca77a6a5449a1ecf5d8ff5ca4a1881889af5b8912629ab71856e5', // zone
- 'did:op:14f5679644249e7889b85d9964abb96eb31eb5537651d3458b9616d29450772c' // ArcGIS
+ // NetPig - Environmental Sustainability Report Generator
+ 'did:op:f0f0e7de07529aac4907a619c53dc6884ccb01cadd2666174216cd1a3f94f426',
+ // CEP - Environment and Comfort - 2021 S1
+ 'did:op:75afadb65591ca977344fa598c2b42c0ca5c7e8620b7c8bf47533e8f222d7997'
]
},
{
- title: 'Manufacturing, Industry 4.0',
+ title: 'Soil tests data integration and sharing using Generative AI',
assets: [
- 'did:op:ec6abd810b3f3d9f3cf7fbbfd3462e289ee9700f0a1ca492adaf6a8c7d0bdce7', // EuPro 882
- 'did:op:291ac52240e7c422aa8e67f9369efa7b30cbdc3f494922f1b646a8091a97fdb6', // CO2
- 'did:op:c524a2ad8aab175315cdbb106289114079637529af988874c1a31e9a179e4540', // Condition Monitoring
- 'did:op:3bee178505bf07494aeaafe67b5d98b5ebd0986bb56d6673e718f8ac4e090c8a', // EuPro 881
- 'did:op:daecfe8261713a3854bdb59de6e6eba1e614dae3a40f436f955f2a94559a88ca', // EuPro 880
- 'did:op:f203cde14dc2fa67b58156009463cae1b6679b76e6387da8c43951846788d1a8', // Defects Algo
- 'did:op:535c60bdf170de37d818f69765f1382dd680b63f245b1a30b897b46ddc753064', // Defects Data
- 'did:op:8b6e04b2f06290c75926756f814413c134a4fb701c607824fd7f7877f0292483', // AAS
- 'did:op:e75f58835ca5ac41bdd3464a4229108e1f74e81b71bd691ecca37ac33a79a6e8', // AAS
- 'did:op:ba056765418629a645d1cea3b6254d1ae8f374fd893edba6c4ddee5f097fefc2', // AAS
- 'did:op:ea274c721f8c7d36787401dbe7b0fd83670ee50a83aee9d7f1e49060257aa618', // AAS
- 'did:op:77cb936c42ca521393cdb423926c022b0cbb4442aff2b63a9cfecb2c74941843', // AAS
- 'did:op:b5c7eb3887469a532a021020365259055084af3d7bd047a8a79a865ee848598e' // AAS
+ // GenAI Soil Analysis PDF Report Data Extractor
+ 'did:op:d1349e0239c432b1fb598abc082b9484859ba04618f4b28a34c16fc3e3012685',
+ // Soil test report in PDF format
+ 'did:op:ee7047510645b71055f092572073eb7ad34895a698cf737b9bf8af8fea84ef58'
]
},
{
- title: 'Text Analysis, Language Processing, and more',
+ title: 'Computer Vision for animal well-being in the pig sector',
assets: [
- 'did:op:73c511711d6ad19794cd3797149e3a9fbd6d615246ae2be8d56938985b715ed4', // Cross Asia Text
- 'did:op:fca47f74bd99d3a3c523bc3242497df4a098ceb028940428db18200c26e74995', // Cross Asia Algo
- 'did:op:ee381eb15d25d27b663565984601699473afeba4ba2efa43d9b6f9c88827f625', // XAsia Prob Data
- 'did:op:a63864d02fbda42fa945eb071093bfd69e2b9de2e083382028c531d468996875' // XAsia Prob Algo
+ // Mask R-CNN segmentation & Tracking
+ 'did:op:60d977086cc8e499b996c3a50e1f2f57c023e25b77db58b394beb70b10fdfd21',
+ // CEP Pigs Images
+ 'did:op:42bac83af0e801f25ccaa3cffe8db3afa1bff9a94be9c12388b95feb641dc5a6'
]
},
{
- title: 'Finance, Business Analytics, and more',
+ title:
+ 'Precision livestock farming data sharing, integration and exploitation',
assets: [
- 'did:op:ab4b4a4953b8fddb69c5a68ce12c10727a002cc160fb9d0dd37aadbfb8de95af' // PMO
+ // CEP's CSV Data Mapper and Semantic Data Pooler
+ 'did:op:ffa62c4e6306d24c68d3a0f0825804045abb91f27a12f5452403cf6b804ca519',
+ // CEP Pigs Feeding Data
+ 'did:op:c898901a7133b6ec92e871d9d692073d18effb0f4d5fe955d3f8f0a7b9f8b962',
+ // Exploratory Data Analysis
+ 'did:op:80d669824854177e42fe4e23f42ba5f7e9823d8ac6f9f224fec157e25d5f04da'
]
}
],
diff --git a/app.config.js b/app.config.js
index 593d8e2b1..3cf86a940 100644
--- a/app.config.js
+++ b/app.config.js
@@ -76,7 +76,7 @@ module.exports = {
process.env.NEXT_PUBLIC_PRIVACY_PREFERENCE_CENTER || 'false',
// Default terms to be used for service offerings made on this marketplace
- defaultTermsAndConditionsUrl: 'https://portal.pontus-x.eu/terms',
+ defaultTermsAndConditionsUrl: 'https://portal.agrospai.udl.cat/terms',
// Purgatory URI, leave as an empty string to disable the API call
purgatoryUrl: process.env.NEXT_PUBLIC_PURGATORY_URI || '',
@@ -128,7 +128,7 @@ module.exports = {
'https://registry.lab.gaia-x.eu/v2206'
],
- plausibleDataDomain: 'portal.pontus-x.eu',
+ plausibleDataDomain: false,
// token symbol used as fallback value in various components
defaultTokenSymbol: 'EURAU'
diff --git a/chains.config.js b/chains.config.js
index 5c0aac1a0..f727f5468 100644
--- a/chains.config.js
+++ b/chains.config.js
@@ -18,12 +18,12 @@ const chains = [
transactionConfirmationBlocks: 1,
transactionPollingTimeout: 750,
gasFeeMultiplier: 1.1,
- providerUri: 'https://provider.dev.pontus-x.eu',
- providerAddress: '0x68C24FA5b2319C81b34f248d1f928601D2E5246B',
+ providerUri: 'https://provider.agrospai.udl.cat',
+ providerAddress: '0x94549951623DD6c3265DBbB1b032d6cF48Ba7811',
metadataCacheUri: 'https://aquarius.pontus-x.eu',
nodeUri: 'https://rpc.dev.pontus-x.eu',
subgraphUri: 'https://subgraph.dev.pontus-x.eu',
- explorerUri: 'https://explorer.pontus-x.eu/devnet/pontusx'
+ explorerUri: 'https://explorer.pontus-x.eu/pontusx/dev'
},
{
chainId: 32457,
@@ -41,12 +41,12 @@ const chains = [
transactionConfirmationBlocks: 1,
transactionPollingTimeout: 750,
gasFeeMultiplier: 1.1,
- providerUri: 'https://provider.test.pontus-x.eu',
- providerAddress: '0x9546d39CE3E48BC942f0be4AA9652cBe0Aff3592',
+ providerUri: 'https://provider.agrospai.udl.cat',
+ providerAddress: '0x94549951623DD6c3265DBbB1b032d6cF48Ba7811',
metadataCacheUri: 'https://aquarius.pontus-x.eu',
nodeUri: 'https://rpc.test.pontus-x.eu',
subgraphUri: 'https://subgraph.test.pontus-x.eu',
- explorerUri: 'https://explorer.pontus-x.eu/testnet/pontusx'
+ explorerUri: 'https://explorer.pontus-x.eu/pontusx/test'
}
]
diff --git a/content/pages/editMetadata.json b/content/pages/editMetadata.json
index e5cdac3f9..71b23f91b 100644
--- a/content/pages/editMetadata.json
+++ b/content/pages/editMetadata.json
@@ -190,6 +190,12 @@
"placeholder": "e.g. logistics",
"required": false
},
+ {
+ "name": "ontologyTerms",
+ "label": "New ontology terms",
+ "type": "ontologyTerms",
+ "placeholder": "e.g. agriculture"
+ },
{
"name": "usesConsumerParameters",
"label": "Algorithm custom parameters",
@@ -244,8 +250,8 @@
{
"name": "license",
"label": "License",
- "placeholder": "e.g. MIT",
- "help": "A SPDX identifier of the license applicable to this service."
+ "placeholder": "e.g. MIT or https://sample.licenses/mine.html",
+ "help": "A URL pointing to a custom license applicable to this asset or a SPDX identifier of the license."
},
{
"name": "accessTermsAndConditions",
diff --git a/content/pages/home/content.json b/content/pages/home/content.json
index 67dccb72b..2e0ce169b 100644
--- a/content/pages/home/content.json
+++ b/content/pages/home/content.json
@@ -1,7 +1,7 @@
{
"teaser": {
- "title": "Pontus-X: Technical Data Sovereignty",
- "text": "Pontus-X represents the next generation of data infrastructure: an **open, transparent and secure digital ecosystem**, where data and services can be made available, collated and shared in an environment of trust. The architecture of Pontus-X is based on Gaia-X and on the principle of decentralization."
+ "title": "",
+ "text": ""
},
"paragraphs": [
{
@@ -12,18 +12,11 @@
"image": "/images/ecosystem.webp"
},
{
- "title": "Compute-to-Data and its benefits",
- "body": "One core concept of Ocean Enterprise is the **Compute-to-Data (CtD)** approach. Compute-to-Data is the functionality that solves the current trade-off between the benefits of using private data and the risks of exposing it. It allows data consumers to run compute jobs on private data while the data stays on-premise with the data provider.",
+ "title": "Data Sovereignty by Design",
+ "body": "One core concept of AgrospAI is the **Compute-to-Data (CtD)** approach. Compute-to-Data is the functionality that solves the current trade-off between the benefits of using private data and the risks of exposing it. It allows data consumers to run compute jobs on private data while the data stays on-premise with the data provider, who retains control.",
"cta": "Learn More",
"ctaTo": "https://docs.pontus-x.eu/docs/technical-architecture/architecture-overview",
"image": "/images/ctd_benefits.webp"
- },
- {
- "title": "Gaia-X Digital Clearing House (GXDCH)",
- "body": "The Pontus-X ecosystem provided a direct integration with the Gaia-X Digital Clearing Houses (GXDCH). We fast track your onboarding to X-ecosystems and to offering your services in Gaia-X ecosystems. The GXDCH safeguard the distributed, decentralised ways of running the Gaia-X compliance.",
- "cta": "Learn More",
- "ctaTo": "https://gaia-x.eu/gxdch/",
- "image": "/images/gxdch_powered.webp"
}
]
}
diff --git a/content/pages/imprint.md b/content/pages/imprint.md
index 86ca66777..227977a25 100644
--- a/content/pages/imprint.md
+++ b/content/pages/imprint.md
@@ -1,20 +1,12 @@
---
-title: Imprint
-description: Thanks for using our product and services.
+title: Contact Information
---
-deltaDAO AG
-Katharinenstraße 30a (Contor)
-20457 Hamburg
-Germany
+Roberto García ([roberto.garcia@udl.cat](mailto:roberto.garcia@udl.cat))
+Associate Professor
-**Phone**: +49 40 43281904
-**E-Mail**: [contact@delta-dao.com](mailto:contact@delta-dao.com)
-
-**Members of the Board**: Frederic Schwill, Kai Meinke, Albert Peci
-**Chairman of the Supervisory Board**: Dr. Sven Hildebrandt
-
-**Commercial register**: Handelsregister B des Amtsgerichts Hamburg, HRB 170364
-**USt – IdNr**: DE346013532
-
-The European Commission provides a platform for online dispute resolution, which you can find here: . We are not obliged or willing to participate in a dispute resolution procedure before a consumer arbitration board.
+Computer Science and Digital Design Department
+Universitat de Lleida
+Jaume II, 69
+25001 Lleida
+Spain
diff --git a/content/pages/privacy/en.md b/content/pages/privacy/en.md
index ee97cc8d5..c9b17d82f 100644
--- a/content/pages/privacy/en.md
+++ b/content/pages/privacy/en.md
@@ -1,6 +1,6 @@
---
title: Privacy Policy
-description: This privacy policy informs you about how deltaDAO AG (in the following deltaDAO) processes your personal data when you visit our portal demonstrator, when you use one of our portal demonstrator functionalities and when you contact us. Moreover, this privacy policy informs you about your rights.
+description: This privacy policy informs you about how Universitat de Lleida (in the following UdL) processes your personal data when you visit our portal demonstrator, when you use one of our portal demonstrator functionalities and when you contact us. Moreover, this privacy policy informs you about your rights.
---
### Table of contents
@@ -9,47 +9,39 @@ description: This privacy policy informs you about how deltaDAO AG (in the follo
The controller pursuant to the EU General Data Protection Regulation ("GDPR") for the processing of your personal data is:
-deltaDAO AG
-Katharinenstraße 30a
-20457 Hamburg
-Germany
-E-mail: contact@delta-dao.com
+Universitat de Lleida
+Víctor Siurana, 1
+25003 Lleida
+Spain
+E-mail: agrospai@udl.cat
-If you have any questions about the protection of your personal data at deltaDAO, please contact our Data Protection Officer:
+If you have any questions about the protection of your personal data at UdL, please contact our Data Protection Officer:
Data Protection Officer
-deltaDAO AG
-Katharinenstraße 30a
-20457 Hamburg
-Germany
-E-mail:
+Universitat de Lleida
+Víctor Siurana, 1
+25003 Lleida
+Spain
+E-mail:
## 2. What's personal data?
-Personal data is any information that can be (directly or indirectly) related to you. deltaDAO processes a minimal amount of personal data, as we believe your personal data belongs to you. We process the following personal data.
+Personal data is any information that can be (directly or indirectly) related to you. UdL processes a minimal amount of personal data, as we believe your personal data belongs to you. We process the following personal data.
- **IP address:** Your IP address is processed when visiting and using our portal demonstrator.
-- **E-mail:** If you contact deltaDAO via e-mail, we process your e-mail address and any personal data you decide to provide in your message (such as your name).
+- **E-mail:** If you contact UdL via e-mail, we process your e-mail address and any personal data you decide to provide in your message (such as your name).
For detailed information about the processing operations, lawfulness, purposes, and how your personal data serves to reach these purposes, please take a look at the chapter "Processing operations according to Article 13 GDPR".
## 3. Recipients and cross-border data transfer
-**Vercel**
-When visiting and using our portal demonstrator, your IP address is processed by Vercel Inc., 340 S Lemon Ave #4133, Walnut, CA 91789, **USA**. Vercel is a service provider that hosts our portal demonstrator. Our portal demonstrator is served by Vercel using a Content Delivery Network, a geographically distributed network, with servers within and outside of the European Economic Area (EEA). This means, if you are located within the EEA, your IP address will most likely (but not guaranteed) be processed on a Vercel server within the EEA. Further information about the **purpose, legal basis, and retention period** can be found in chapter 4.
-
-There is no adequacy decision for the USA from the European Commission. Our cooperation with Vercel is based on a Data Processing Agreement (DPA) including Standard Contractual Clauses (SCC). You have the right to receive a copy of these SCC. To exercise your right, please contact us at .
-
-- Here you can find Vercel's current [**DPA including SCC** ↗](https://vercel.com/legal/dpa).
-- Here you can find Vercel's [**privacy policy** ↗](https://vercel.com/legal/privacy-policy).
-
**Exoscale and OVH Cloud**
-When using our portal demonstrator functionalities, your IP address is processed by our portal demonstrator backend. Portal demonstrator backend components are managed by deltaDAO and hosted hosted on
+The portal demonstrator and the UdL compute provider are hosted and managed by UdL on its premises. However, when using our portal demonstrator functionalities, your IP address is processed by the Pontus-X ecosystem backend components, which are managed by deltaDAO AG and hosted on
- **Exoscale** servers located in Frankfurt, **Germany**. Akenes SAE (hereafter Exoscale) is headquartered in Boulevard de Grancy 19A, 1006 – Lausanne, Switzerland.
- **OVH Cloud** servers located in **Germany, France and Poland**. OVH GmbH is headquartered in Oskar-Jäger-Str. 173/K6, 50825 Cologne, **Germany**.
-Our cooperation with Exoscale and OVH GmbH is based on a Data Processing Agreement (DPA).
+deltaDAO cooperation with Exoscale and OVH GmbH is based on a Data Processing Agreement (DPA).
- Here you can find Exoscale's current [**DPA** ↗](https://www.exoscale.com/dpa/).
- Here you can find OVH GmbH's current [**DPA** ↗](https://storage.gra.cloud.ovh.net/v1/AUTH_325716a587c64897acbef9a4a4726e38/contracts/231417d-OVH_Data_Protection_Agreement-DE-7.3.pdf).
@@ -57,26 +49,19 @@ Our cooperation with Exoscale and OVH GmbH is based on a Data Processing Agreeme
Further information about the **purpose, legal basis, and retention period** can be found in chapter 4.
**Microsoft Corporation**
-When you contact us via e-mail, our (mail) service provider Microsoft Corporation (located at 1 Microsoft Way, Redmond, Washington 98052-8300, **USA**) supports us in processing your personal data so we can communicate with you. There is no adequacy decision for the USA from the European Commission. We have **restricted storage on the EEA** and signed SCC with our provider. You have the right to receive a copy of these SCC. To exercise your right, please contact us at privacy@delta-dao.com.
+When you contact us via e-mail, our (mail) service provider Microsoft Corporation (located at 1 Microsoft Way, Redmond, Washington 98052-8300, **USA**) supports us in processing your personal data so we can communicate with you. There is no adequacy decision for the USA from the European Commission. We have **restricted storage on the EEA** and signed SCC with our provider. You have the right to receive a copy of these SCC. To exercise your right, please contact us at agrospai@udl.cat.
- Here you can find Microsoft's current [**DPA including SCC** ↗](https://www.microsoft.com/licensing/docs/view/Microsoft-Products-and-Services-Data-Protection-Addendum-DPA).
- Here you can find Microsoft's [**privacy policy** ↗](https://privacy.microsoft.com/de-de/privacystatement).
Further information about the **purpose, legal basis, and retention period** can be found in chapter 4.
-**Plausible**
-deltaDAO uses [**Plausible Analytics**](https://plausible.io/) (by Plausible Insights OÜ, Västriku tn 2, 50403, Tartu, **Estonia**, Registration number 14709274), a privacy-friendly web analytics tool for tracking overall trends in our website traffic. deltaDAO signed a DPA with Plausible Analytics. Further information about the **purpose, legal basis, and retention period** can be found in chapter 4.
-
-- Here you can find Plausible Analytic's current [**DPA** ↗](https://plausible.io/dpa).
-- Here you can find Plausible Analytic's [**privacy policy** ↗](https://plausible.io/privacy).
-- Here you can find more information about Plausible Analytic's [**privacy practices** ↗](https://plausible.io/data-policy), [**security practices** ↗](https://plausible.io/security) and a [**legal assessment on GDPR compliance** ↗](https://plausible.io/blog/legal-assessment-gdpr-eprivacy).
-
## 4. Processing operations according to Article 13 GDPR
We process your personal data for the following purposes.
**4.1 Providing our portal demonstrator and ensuring its security**
-Your IP address is collected, used, and stored when visiting our portal demonstrator. Our portal demonstrator (frontend) is hosted externally by our service provider Vercel (see also chapter 3).
+Your IP address is collected, used, and stored when visiting our portal demonstrator. Our portal demonstrator (frontend) is hosted by UdL.
**Purpose:**
Collecting and using your IP address is necessary for providing our portal demonstrator because it is a technical requirement for ensuring communication between your device and our portal demonstrator. Your IP address and other log file data are also processed for security, fraud-prevention, abuse-prevention, and troubleshooting purposes.
@@ -88,13 +73,13 @@ The legal basis for this processing is our legitimate interest, according to Art
Our legitimate interest is to provide the portal demonstrator and to enable security, a technically error-free presentation, and the optimization of the portal demonstrator.
**Retention period:**
-Vercel retains your personal data for as long as needed to provide their services. Additionally, Vercel does not delete the data when it is needed for the establishment, exercise, or defense of legal claims. In this case, the information is retained as long as needed for exercising respective potential legal claims.
+We retain your personal data for as long as needed to provide the portal services. Additionally, we do not delete the data when it is needed for the establishment, exercise, or defense of legal claims. In this case, the information is retained as long as needed for exercising respective potential legal claims.
**Right to object:**
You have the right to object to the processing of your personal data (see also chapter 8.6).
**4.2 Providing portal demonstrator functionalities**
-When using our portal demonstrator functionalities (viewing, publishing, editing and consuming services, and requesting tokens), your IP address is collected, used, and stord by our portal demonstrator backend. Backend components are managed by deltaDAO and hosted on Exoscale and OVH Cloud (see also chapter 3).
+When using our portal demonstrator functionalities (viewing, publishing, editing and consuming services, and requesting tokens), your IP address is collected, used, and stored by our portal demonstrator backend. Backend components are managed by deltaDAO and hosted on Exoscale and OVH Cloud (see also chapter 3).
**Purpose:**
Collecting and using your IP address is necessary for providing our portal demonstrator functionalities because it is a technical requirement for ensuring communication between your device and our portal demonstrator backend.
@@ -111,7 +96,7 @@ IP addresses received by the backend components are only retained for the minimu
You have the right to object to the processing of your personal data where we based the processing on legitimate interests (see also chapter 8.6).
**4.3 Contact via e-mail**
-If you contact us via e-mail, deltaDAO collects, uses, and stores your e-mail address, and any other information you provide us in your message, such as your name. When you send us an e-mail, our (mail) service provider Microsoft Corporation (see also chapter 3) supports us in processing your personal data so we can communicate with you.
+If you contact us via e-mail, UdL collects, uses, and stores your e-mail address, and any other information you provide us in your message, such as your name. When you send us an e-mail, our (mail) service provider Microsoft Corporation (see also chapter 3) supports us in processing your personal data so we can communicate with you.
**Purpose:**
We collect, use and store this personal data to respond to your inquiries.
@@ -129,17 +114,7 @@ We store your personal data as long as we need it to process your inquires. We s
**4.4 Aggregated statistics**
-deltaDAO uses [**Plausible Analytics**](https://plausible.io/) (see also chapter 3), a privacy-friendly web analytics tool for tracking overall trends in our website traffic. Plausible Analytics **does not use cookies or similar technologies** that require information to be stored on your device. Instead, the tool focuses on analyzing **aggregated data without the need to access your end device or store information there**. Plausible Analytics **does not track individual visitors** and **does not create persistent identifiers**. It **does not use cross-platform or cross-device tracking** and **does not pass on data** to third parties. Plausible Analytics primarily uses data that is recorded by default in server logs, such as requested URLs, access times, HTTP status codes and transferred data volumes. This information is used to analyze website traffic. Data processing at Plausible Analytics takes place in two steps:
-
-- **Pseudonymization**: When the data is received, it is pseudonymized using a hash function and a regularly changing key (“salt”). This process aims to change personal data in such a way that data subjects are no longer directly identifiable, but a distinction between sessions is made possible.
-
- hash(daily_salt + website_domain + ip_address + user_agent)
-
- Plausible Analytics never stores the raw data IP address and User-Agent in logs, databases or anywhere on disk at all.
-
-- **Anonymization after 24 hours**: Within 24 hours of pseudonymization, the data is completely anonymized by removing the “salt” so that it can no longer be traced back to the original user data. The remaining data does not allow any direct or indirect identification of data subjects.
-
-Plausible Analytics only uses **EU-based service providers** for hosting and additional services such as CDN and DDoS protection. The servers are located in Germany (operated by Hetzner) and additional services are provided by Bunny (based in Slovenia).
+UdL uses [**Umami**](https://umami.is/), an open-source, **privacy-focused web analytics tool** that serves as an alternative to Google Analytics. It provides essential insights into website traffic, user behavior, and performance, all while prioritizing data privacy. Unlike many traditional analytics platforms, Umami **does not collect or store personal data**, avoiding the need for cookies, and is **GDPR and PECR compliant**. UdL uses a self-hosted deployment of Umami on our own servers. .
**Purpose:**
We process your personal data to reach measurement and website optimization.
@@ -151,7 +126,7 @@ The legal basis for this processing is our legitimate interest, according to Art
Our legitimate interest is to gain insights to improve existing and future features and services, and to evaluate user engagement.
**Retention period:**
-As described above, your personal data is anonymized after 24 hours.
+Umami does not collect any personally identifiable information and anonymizes all data collected. Users cannot be identified and are never tracked across websites.
**Right to object:** You have the right to object to the processing of your personal data (see also chapter 8.6).
@@ -171,18 +146,18 @@ On our portal demonstrator we are using local storage enabling you to use our po
**6.2 Analytics**
-deltaDAO uses [**Plausible Analytics**](https://plausible.io/), a privacy-friendly web analytics tool for tracking overall trends in our website traffic. Plausible Analytics **does not use cookies or similar technologies** that require information to be stored on your device. Plausible Analytics **does not track individual visitors** and **does not create persistent identifiers**. It does not use cross-platform or cross-device tracking and does not pass on data to third parties. You can find further information in chapter 3 and 4.
+UdL uses [**Umami**](https://umami.is), a privacy-friendly web analytics tool for tracking overall trends in our website traffic. Umami **does not use cookies or similar technologies** that require information to be stored on your device. Umami **does not track individual visitors** and **does not create persistent identifiers**. It does not use cross-platform or cross-device tracking and does not pass on data to third parties as it is self-hosted on UdL servers.
## 7. External links
-Our portal demonstrator contains links to external websites that are beyond the control and responsibility of deltaDAO.
+Our portal demonstrator contains links to external websites that are beyond the control and responsibility of UdL.
## 8. Your rights
If you want to make use of your rights described below, do not hesitate to contact us.
**8.1 Right of access (Art. 15 GDPR)**
-You have the right to obtain confirmation as to whether deltaDAO processes personal data about you. If we are processing personal data about you, you have the right to access these personal data and to gain the information defined in Art. 15 GDPR.
+You have the right to obtain confirmation as to whether UdL processes personal data about you. If we are processing personal data about you, you have the right to access these personal data and to gain the information defined in Art. 15 GDPR.
**8.2 Right to rectification (Art. 16 GDPR)**
You have the right to obtain without undue delay the rectification of inaccurate personal data about you. Additionally, you have the right that incomplete personal data about you are completed.
@@ -197,10 +172,10 @@ Moreover, you have the right to obtain the restriction of processing your person
You have the right to receive your personal data in a structured, commonly used, and machine-readable format. Additionally, you have the right to transmit those data to another controller without hindrance, where the defined legal grounds in Art. 20 GDPR apply. You can make use of your right to data portability by contacting us.
**8.6 Right to object (Art. 21 GDPR)**
-On grounds relating to your particular situation, you have the right to object to the processing of your personal data where we based the processing on legitimate interests (Art. 6(1)(f) GDPR). If you object, deltaDAO will no longer process your personal data unless we can demonstrate compelling legitimate grounds for the processing, overriding your rights, freedoms, and interests, or if the processing is required to establish, exercise, or defend legal claims.
+On grounds relating to your particular situation, you have the right to object to the processing of your personal data where we based the processing on legitimate interests (Art. 6(1)(f) GDPR). If you object, UdL will no longer process your personal data unless we can demonstrate compelling legitimate grounds for the processing, overriding your rights, freedoms, and interests, or if the processing is required to establish, exercise, or defend legal claims.
**8.7 Right to lodge a complaint (Art. 77 GDPR)**
-You have the right to lodge a complaint with a supervisory authority if you consider the processing of your personal data by deltaDAO to infringe the GDPR. You can lodge a complaint in particular
+You have the right to lodge a complaint with a supervisory authority if you consider the processing of your personal data by UdL to infringe the GDPR. You can lodge a complaint in particular
- in the Member State of your habitual residence,
- in the Member State of your place of work, and
@@ -208,7 +183,7 @@ You have the right to lodge a complaint with a supervisory authority if you cons
## 9. Questions
-For any requests regarding our privacy policy, please send us an e-mail to .
+For any requests regarding our privacy policy, please send us an e-mail to .
## 10. Changes to the Privacy Policy
diff --git a/content/pages/terms.md b/content/pages/terms.md
index 725242789..f6267aebe 100644
--- a/content/pages/terms.md
+++ b/content/pages/terms.md
@@ -3,9 +3,9 @@ title: Terms and Conditions
description: Thanks for using our product and services.
---
-# deltaDAO DATA PORTAL - TERMS AND CONDITIONS
+# AgrospAI DATA PORTAL - TERMS AND CONDITIONS
-deltaDAO (as defined below) provides a technical infrastructure for a digital portal enabling access to Data (as defined below). Based on these terms and conditions, a customer (as defined below) and deltaDAO enter into an agreement which governs the customer’s access to and use of the data portal (as defined below) and takes effect on the date of deltaDAO’s acceptance of such customer’s offer.
+UdL (as defined below) provides a technical infrastructure for a digital portal enabling access to Data (as defined below). Based on these terms and conditions, a customer (as defined below) and UdL enter into an agreement which governs the customer’s access to and use of the data portal (as defined below) and takes effect on the date of UdL’s acceptance of such customer’s offer.
### Table of contents
@@ -16,11 +16,11 @@ Capitalised terms shall have the meaning given to them in this Agreement; and:
**"Access Controllers"** means an infrastructure component of the Data ecosystem managing access to Data.
-**"Agreement"** means the agreement between the Customer and deltaDAO based on these terms and conditions.
+**"Agreement"** means the agreement between the Customer and UdL based on these terms and conditions.
**"Consumption"** means the transfer of the Service Offering Token to the respective Publisher by which the respective Customer redeems the Service Offering Token for the respective Service Offering and creates the respective Data audit trail (i.e., documentation of access activities to the Data).
-**"Customer"** means any legal entity acting as an entrepreneur pursuant to § 14 of the German Civil Code, duly registered on the Data Portal, that: (a) creates a Service Offering, (b) uses (including compute-to-data) such Service Offering, or (c) otherwise accesses or uses the Data Portal, including pseudonymous users.
+**"Customer"** means any legal entity duly registered on the Data Portal, that: (a) creates a Service Offering, (b) uses (including compute-to-data) such Service Offering, or (c) otherwise accesses or uses the Data Portal, including pseudonymous users.
**"Customer Account"** means the functionality by means of which the Customer gains permission for the Consumption and Publication of Service Offerings on the Data Portal by SSI/DID and Verifiable Credentials and, if applicable, further authentication data or alternative authentication techniques (e.g., entering username and password) if available.
@@ -34,16 +34,14 @@ Capitalised terms shall have the meaning given to them in this Agreement; and:
**"Service Offering Token"** means a token created by the Publisher enabling the use of the related Service Offering and creating the respective Data audit trail via the selected EVM Compatible Blockchain (i.e., documentation of access activities to the Data).
-**"deltaDAO"** means deltaDAO AG, Katharinenstraße 30a, 20457 Hamburg, Germany as provider of the Data Portal.
+**"UdL"** means Universitat de Lleida, Víctor Siurana 1, 25003 Lleida, Spain, as provider of the Data Portal.
-**"deltaDAO Content"** means software or data which deltaDAO is entitled to.
+**"UdL Content"** means software or data which UdL is entitled to.
**"EVM Compatible Blockchain"** means any blockchain or distributed ledger technology solutions compatible with the Ethereum Virtual Machine technology.
**"Gas Fee"** means the transaction fee required by EVM Compatible Blockchains for processing a transaction, if any.
-**"German Civil Code"** means the Bürgerliches Gesetzbuch as amended from time to time.
-
**"Lifecycle State"** means the following properties of metadata: "active", "end-of-life", "deprecated", "revoked", “disabled”, and “unlisted”, describing the state of Service Offerings throughout their lifecycles and being subject to the Service Lifecycle Management pursuant to respective Policies, made available on the Data Portal.
**"Personal Data"** means any information relating to an identified or identifiable natural person.
@@ -56,13 +54,13 @@ Capitalised terms shall have the meaning given to them in this Agreement; and:
**“Service Lifecycle Management”** means a mechanism to change the visibility of any Service Offering from the Data Portal depending on the Lifecycle State.
-**"Service"** means all websites, software and services offered and operated by deltaDAO in connection with the provision of the Data Portal from time to time.
+**"Service"** means all websites, software and services offered and operated by UdL in connection with the provision of the Data Portal from time to time.
**“Terms”** means these terms and conditions.
**"Third-Party Content"** means Service Offerings published by other parties but the Customer.
-**"Website"** means the website at https://portal.pontus-x.eu/ (and any successor or related site designated by deltaDAO), as may be updated by deltaDAO from time to time.
+**"Website"** means the website at https://portal.agrospai.udl.cat (and any successor or related site designated by UdL), as may be updated by UdL from time to time.
**1.2 Interpretation**
**1.2.1** Unless specified otherwise, these Terms shall be construed as follows:
@@ -75,35 +73,35 @@ Capitalised terms shall have the meaning given to them in this Agreement; and:
**_1.2.1.4_** insofar as the context permits, a reference to the feminine form shall include the masculine form and vice versa.
-**1.2.2** This Agreement is made in the English language. For the avoidance of doubt, the English language version of this Agreement shall prevail over any translation of this Agreement. However, where a German language term has been added to an English language term, such German term shall be decisive throughout.
+**1.2.2** This Agreement is made in the English language. For the avoidance of doubt, the English language version of this Agreement shall prevail over any translation of this Agreement. However, where a Spanish language term has been added to an English language term, such Spanish term shall be decisive throughout.
## 2. Registration, Access to and Use of the Data Portal
-**2.1** The use of the Data Portal requires the registration of the Customer. The Customer shall complete the accreditation process and provide all specified information and documents. The Customer confirms their offer to consume or publish Service Offerings via the Data Portal by actively selecting the respective Terms and Conditions checkbox and thereby accepting this Terms. Upon acceptance of this Terms by the Customer an Agreement is concluded which entitles the Customer to the Consumption and Publication of Service Offering on the Data Portal. The Customer waives the receipt of the acceptance declaration pursuant to section 151 German Civil Code.
+**2.1** The use of the Data Portal requires the registration of the Customer. The Customer shall complete the accreditation process and provide all specified information and documents. The Customer confirms their offer to consume or publish Service Offerings via the Data Portal by actively selecting the respective Terms and Conditions checkbox and thereby accepting this Terms. Upon acceptance of this Terms by the Customer an Agreement is concluded which entitles the Customer to the Consumption and Publication of Service Offering on the Data Portal.
**2.2** The Customer can access and use the Data Portal in accordance with the Agreement. The Customer undertakes to comply with this Agreement and all laws, rules and regulations as well as Policies applicable to Customer’s use of the Data Portal.
-**2.3** The Data Portal provides a portal enabling Customers to access and utilise Service Offerings. Publishers can publish Service Offerings on the portal by using the form provided by deltaDAO and then clicking the “SUBMIT” button. The Publisher is responsible for the information provided in the form which describes the Service Offering and for the content of the Service Offering. When publishing the Service offering, a Service Offering Token will be created via the respective EVM Compatible Blockchain. The Service Offering Token manages access rights to the respective Service Offering and enables Data Buyers to interact directly with Publishers.
+**2.3** The Data Portal provides a portal enabling Customers to access and utilise Service Offerings. Publishers can publish Service Offerings on the portal by using the form provided by UdL and then clicking the “SUBMIT” button. The Publisher is responsible for the information provided in the form which describes the Service Offering and for the content of the Service Offering. When publishing the Service offering, a Service Offering Token will be created via the respective EVM Compatible Blockchain. The Service Offering Token manages access rights to the respective Service Offering and enables Data Buyers to interact directly with Publishers.
**2.4** The Data Portal displays published Service Offerings including their description and enables Customers to discover Service Offerings by means of a query mechanism.
**2.5** The Data Portal further enables the Consumption of Service Offerings by acquiring the respective Service Offering Token via the respective EVM Compatible Blockchain and hence access to the Service Offering.
-**2.6** The Customer is responsible for its own activity on the Data Portal. The Customer must adhere to the laws in its own legal jurisdiction as well as their conscience. deltaDAO is not responsible for any malicious use of the Data Portal or any losses associated with the use of the Data Portal of any source. Some layers in Data ecosystems also accessible via the Data Portal may require the Customer to create and keep up to date verified credentials.
+**2.6** The Customer is responsible for its own activity on the Data Portal. The Customer must adhere to the laws in its own legal jurisdiction as well as their conscience. UdL is not responsible for any malicious use of the Data Portal or any losses associated with the use of the Data Portal of any source. Some layers in Data ecosystems also accessible via the Data Portal may require the Customer to create and keep up to date verified credentials.
## 3. Customer’s Responsibilities
-**3.1** The Customer is responsible for all activities undertaken from its Customer Account, regardless of whether the activities are authorized by the Customer or undertaken by the Customer, the Customer’s employees or a third party (including the Customer’s contractors and agents). deltaDAO and its affiliates are not responsible for unauthorized access to the Customer Account. The Customer will be deemed to have taken any action relating to its Customer Account.
+**3.1** The Customer is responsible for all activities undertaken from its Customer Account, regardless of whether the activities are authorized by the Customer or undertaken by the Customer, the Customer’s employees or a third party (including the Customer’s contractors and agents). UdL and its affiliates are not responsible for unauthorized access to the Customer Account. The Customer will be deemed to have taken any action relating to its Customer Account.
**3.2** The Customer will ensure that published Service Offerings and the Customer’s use of Service Offerings or the Data Portal will not violate any of the Policies or any applicable law. The Customer is solely responsible for the development, content, operation, maintenance, availability, and use of published Service Offerings. The Publisher is also solely responsible for ensuring that the content of the metadata provided via the description form complies with applicable law. **The Customer will not provide Personal Data in the metadata and Service Offering.**
-**3.3** The Customer will ensure that all third parties comply with its obligations according to this Agreement, mirroring those of the Customer under the Agreement and that the terms of any Customer’s agreements with third parties are consistent with this Agreement. If the Customer becomes aware of any violation of Customer’s obligations under this Agreement caused by a third party, the Customer will immediately suspend access to published Service Offerings and the Data Portal by such third party. deltaDAO does not provide any support or services to third parties, unless deltaDAO has a separate agreement with the Customer or a third party obligating deltaDAO to provide such support or services.
+**3.3** The Customer will ensure that all third parties comply with its obligations according to this Agreement, mirroring those of the Customer under the Agreement and that the terms of any Customer’s agreements with third parties are consistent with this Agreement. If the Customer becomes aware of any violation of Customer’s obligations under this Agreement caused by a third party, the Customer will immediately suspend access to published Service Offerings and the Data Portal by such third party. UdL does not provide any support or services to third parties, unless UdL has a separate agreement with the Customer or a third party obligating UdL to provide such support or services.
-**3.4** deltaDAO does not store or has access to any sensitive account information including keys. The Customer is responsible for the availability and maintenance of any information related to the Customer Account.
+**3.4** UdL does not store or has access to any sensitive account information including keys. The Customer is responsible for the availability and maintenance of any information related to the Customer Account.
## 4. Fees and Payment
-**4.1** If a Customer elects to publish or consume Service Offerings on the Data Portal, which includes the generation and purchase of the respective Service Offering Token, it will be conducted solely through EVM Compatible Blockchains via compatible Web3 wallets. deltaDAO will have no insight into or control over these activities, nor does deltaDAO have the ability to reverse any of these or any transaction resulting therefrom.
+**4.1** If a Customer elects to publish or consume Service Offerings on the Data Portal, which includes the generation and purchase of the respective Service Offering Token, it will be conducted solely through EVM Compatible Blockchains via compatible Web3 wallets. UdL will have no insight into or control over these activities, nor does UdL have the ability to reverse any of these or any transaction resulting therefrom.
**4.2** EVM Compatible Blockchains may require the payment of a Gas Fee for every transaction occurring. The Gas Fee typically funds the network of computers that run the EVM Compatible Blockchains. This means that the Customer will need to pay a Gas Fee for each transaction that occurs via the Data Portal and transacting via the Data Portal will require an accordingly funded wallet.
@@ -111,13 +109,13 @@ Capitalised terms shall have the meaning given to them in this Agreement; and:
## 5. Suspension
-**5.1** deltaDAO may suspend all or parts of the Customer's or any third party's right to access or use any component or all of the Data Portal immediately with no prior notice to the Customer if deltaDAO determines that the Customer or a third party’s use of the Data Portal:
+**5.1** UdL may suspend all or parts of the Customer's or any third party's right to access or use any component or all of the Data Portal immediately with no prior notice to the Customer if UdL determines that the Customer or a third party’s use of the Data Portal:
**_5.1.1_** poses a security risk to the Data Portal or any other third party;
-**_5.1.2_** could adversely impact deltaDAO`s systems, the Data Portal or the systems or content of any other deltaDAO user;
+**_5.1.2_** could adversely impact UdL`s systems, the Data Portal or the systems or content of any other UdL user;
-**_5.1.3_** could subject deltaDAO, deltaDAO`s affiliates, or any third party to liability, and/or
+**_5.1.3_** could subject UdL, UdL`s affiliates, or any third party to liability, and/or
**_5.1.4_** could be fraudulent;
@@ -125,7 +123,7 @@ Capitalised terms shall have the meaning given to them in this Agreement; and:
**_5.1.6_** Customer has ceased to operate in the ordinary course, made an assignment for the benefit of creditors or similar disposition of Customer assets, or become the subject of any bankruptcy, reorganization, liquidation, dissolution or similar proceeding.
-**5.2** If deltaDAO, according to Section 5.1, suspends Customer’s right to access or use any component or all of the Data Portal:
+**5.2** If UdL, according to Section 5.1, suspends Customer’s right to access or use any component or all of the Data Portal:
**_5.2.1_** the Customer remains responsible for all fees and charges the Customer incurs during the period of suspension; and
@@ -137,15 +135,15 @@ Service Offerings are subject to Service Lifecycle Management. Service Offerings
## 7. Security and Data Protection
-**7.1** Without limiting the Customer’s obligations under Section 3.2, deltaDAO will implement reasonable and appropriate measures regarding the Access Controller to help the Customer secure published Data against accidental or unlawful loss, access or disclosure.
+**7.1** Without limiting the Customer’s obligations under Section 3.2, UdL will implement reasonable and appropriate measures regarding the Access Controller to help the Customer secure published Data against accidental or unlawful loss, access or disclosure.
-**7.2** Data is always stored off-chain. deltaDAO has no control over this Data. Ensuring the confidentiality, integrity and availability of the Data is in the sole responsibility of the Customer. Only metadata relating to Data is stored on-chain. To provide for the functionality of the Data Portal deltaDAO saves on-chain Data in a custom database. **Metadata and Service Offerings must not contain Personal Data**.
+**7.2** Data is always stored off-chain. UdL has no control over this Data. Ensuring the confidentiality, integrity and availability of the Data is in the sole responsibility of the Customer. Only metadata relating to Data is stored on-chain. To provide for the functionality of the Data Portal UdL saves on-chain Data in a custom database. **Metadata and Service Offerings must not contain Personal Data**.
**7.3** Transactions that take place via the Data Portal are managed and confirmed via the respective EVM Compatible Blockchain. The **Customer’s public key on such EVM Compatible Blockchain is publicly visible** whenever the Customer engages in a transaction on the Data Portal.
-**7.4** deltaDAO neither owns nor controls the EVM Compatible Blockchains, any Customer's Web3 wallets, nor other tools, or any other third parties’ site, product, or service that the Customer might access, visit, or use when interacting via the Data Portal. deltaDAO will not be liable for the acts or omissions of any such third parties, nor will deltaDAO be liable for any damage that the Customer may suffer as a result of transactions or any other interaction with any such third parties.
+**7.4** UdL neither owns nor controls the EVM Compatible Blockchains, any Customer's Web3 wallets, nor other tools, or any other third parties’ site, product, or service that the Customer might access, visit, or use when interacting via the Data Portal. UdL will not be liable for the acts or omissions of any such third parties, nor will UdL be liable for any damage that the Customer may suffer as a result of transactions or any other interaction with any such third parties.
-**7.5** The security of the Customer's data is important to deltaDAO, but the Customer is aware that no method of transmission over the Internet, or method of electronic storage is 100% secure. While deltaDAO strives to use commercially acceptable means to protect the Customer's Personal Data, deltaDAO cannot guarantee its absolute security.
+**7.5** The security of the Customer's data is important to UdL, but the Customer is aware that no method of transmission over the Internet, or method of electronic storage is 100% secure. While UdL strives to use commercially acceptable means to protect the Customer's Personal Data, UdL cannot guarantee its absolute security.
## 8. Term and Termination
@@ -153,33 +151,33 @@ Service Offerings are subject to Service Lifecycle Management. Service Offerings
**8.2** This Agreement can be terminated by either party upon one months' notice to the end of any month.
-**8.3** Each party shall have the right to terminate this Agreement for good cause without the need to adhere to a notice period. Good cause for deltaDAO shall, in particular, include the following: (a) breach of essential obligations of the Agreement by the Customer (b) tortious acts by a Customer or the attempt of any such act, e.g. fraud; circumstances pursuant to section 5.1 relating to the Customer.
+**8.3** Each party shall have the right to terminate this Agreement for good cause without the need to adhere to a notice period. Good cause for UdL shall, in particular, include the following: (a) breach of essential obligations of the Agreement by the Customer (b) tortious acts by a Customer or the attempt of any such act, e.g. fraud; circumstances pursuant to section 5.1 relating to the Customer.
**8.4** All notices of termination must be given in writing. Termination notice by e-mail is deemed to comport with the written form requirement.
-**8.5** In case of termination, the access to the Data Portal, including the ability to publish, consume, or access consumed Service Offerings on the Data Portal, will be suspended. deltaDAO will not be liable to you or to any third party for any such suspension. The Customer will not receive any refunds.
+**8.5** In case of termination, the access to the Data Portal, including the ability to publish, consume, or access consumed Service Offerings on the Data Portal, will be suspended. UdL will not be liable to you or to any third party for any such suspension. The Customer will not receive any refunds.
## 9. Intellectual Property Rights
-**9.1** Except as provided in this Section 9, deltaDAO obtains no rights whatsoever under this Agreement from the Customer (or Customer’s licensors) regarding published Data.
+**9.1** Except as provided in this Section 9, UdL obtains no rights whatsoever under this Agreement from the Customer (or Customer’s licensors) regarding published Data.
-**9.2** Data will be utilized at the sole discretion of the Customer. Therefore, the Customer represents and warrants to deltaDAO that
+**9.2** Data will be utilized at the sole discretion of the Customer. Therefore, the Customer represents and warrants to UdL that
**_9.2.1_** the Customer or Customer’s licensors own all rights, in particular copyrights, trademark rights, patent rights, utility model rights, design rights, title, and interest in and of the published Data and
**_9.2.2_** the Customer will not provide any content that is illegal or infringes third party rights, in particular any copyrights or trademark rights, patent rights, utility model rights and design rights of third parties.
-**9.3** deltaDAO grants the Customer a limited, revocable, non-exclusive, non-sublicensable, non-transferable license to use the Data Portal solely in accordance with this Agreement.
+**9.3** UdL grants the Customer a limited, revocable, non-exclusive, non-sublicensable, non-transferable license to use the Data Portal solely in accordance with this Agreement.
-**9.4** Except as provided in Section 9.3, the Customer obtains no rights under this Agreement from deltaDAO, deltaDAO’s affiliates or deltaDAO’s licensors to the Data Portal, including any related intellectual property rights.
+**9.4** Except as provided in Section 9.3, the Customer obtains no rights under this Agreement from UdL, UdL’s affiliates or UdL’s licensors to the Data Portal, including any related intellectual property rights.
-**9.5** deltaDAO or Third-Party Content may be provided to the Customer under a separate agreement and/or a separate license. In the event of a conflict between this Agreement and any separate agreement and/or separate license, the separate agreement and/or separate license will prevail with respect to the deltaDAO Content or Third-Party Content that is the subject of such separate agreement and/or separate license.
+**9.5** UdL or Third-Party Content may be provided to the Customer under a separate agreement and/or a separate license. In the event of a conflict between this Agreement and any separate agreement and/or separate license, the separate agreement and/or separate license will prevail with respect to the UdL Content or Third-Party Content that is the subject of such separate agreement and/or separate license.
## 10. Performance Quality and Warranties
**10.1** The Data Portal and all Services are provided in the manner accessible to the Customer. The Data Portal and all Services may be unavailable at any time as it is a test environment. A shortfall of the Data Portal and all Services can be long-term or permanent.
-**10.2** Except to the extent prohibited by law, or to the extent any statutory rights apply that cannot be excluded, limited or waived, deltaDAO its affiliates and licensors:
+**10.2** Except to the extent prohibited by law, or to the extent any statutory rights apply that cannot be excluded, limited or waived, UdL its affiliates and licensors:
**_10.2.1_** make no representations or warranties of any kind, whether express, implied, statutory or otherwise regarding the Services or the Third-Party Content, and
@@ -187,46 +185,46 @@ Service Offerings are subject to Service Lifecycle Management. Service Offerings
## 11. Liability
-**11.1** deltaDAO shall bear unlimited liability for intentional acts and gross negligence but shall only bear liability in cases of slight negligence where it has breached obligations which are material to the Agreement. As material obligations are considered obligations, the fulfilment of which makes the proper execution of the Agreement possible, the violation of which endangers the achievement of the purpose of the Agreement and the compliance with which the Customer may regularly rely on (so-called "cardinal obligations"). In the cases of breach of any such material obligations deltaDAO shall only be liable for the foreseeable damage typical for the Agreement. The above exclusions of liability shall not apply in the event of injury to life, limb, and health.
+**11.1** UdL shall bear unlimited liability for intentional acts and gross negligence but shall only bear liability in cases of slight negligence where it has breached obligations which are material to the Agreement. As material obligations are considered obligations, the fulfilment of which makes the proper execution of the Agreement possible, the violation of which endangers the achievement of the purpose of the Agreement and the compliance with which the Customer may regularly rely on (so-called "cardinal obligations"). In the cases of breach of any such material obligations UdL shall only be liable for the foreseeable damage typical for the Agreement. The above exclusions of liability shall not apply in the event of injury to life, limb, and health.
-**11.2** deltaDAO assumes no liability for any faults or disruptions within the Data Portal for which it is not responsible.
+**11.2** UdL assumes no liability for any faults or disruptions within the Data Portal for which it is not responsible.
-**11.3** deltaDAO assumes no liability for losses of Data or Service Offerings where such a loss would have been unavoidable.
+**11.3** UdL assumes no liability for losses of Data or Service Offerings where such a loss would have been unavoidable.
-**11.4** deltaDAO assumes no liability for any legal consequences arising from the Publication or Consumption of Service Offerings on the Data Portal. This applies in particular to any claims made by third parties due to legal or factual errors regarding the Data underlying such Service Offerings. This also applies to claims by third parties regarding Service Offerings in the Lifecycle States of "end-of-live", "deprecated", “revoked”, “disabled”, and “unlisted”.
+**11.4** UdL assumes no liability for any legal consequences arising from the Publication or Consumption of Service Offerings on the Data Portal. This applies in particular to any claims made by third parties due to legal or factual errors regarding the Data underlying such Service Offerings. This also applies to claims by third parties regarding Service Offerings in the Lifecycle States of "end-of-live", "deprecated", “revoked”, “disabled”, and “unlisted”.
-**11.5** deltaDAO’s liability does not extend to any impairments or damages resulting from the Customer’s improper or incorrect use of the Data Portal.
+**11.5** UdL’s liability does not extend to any impairments or damages resulting from the Customer’s improper or incorrect use of the Data Portal.
-**11.6** The above limitations on liability shall apply mutatis mutandis in favor of deltaDAO’s vicarious agents, as well.
+**11.6** The above limitations on liability shall apply mutatis mutandis in favor of UdL’s vicarious agents, as well.
-**11.7** To the extent that Customers may be redirected to databases, websites, services etc. of third parties via the Data Portal deltaDAO shall not be liable either for the accessibility, existence or security of such databases or services or for the contents thereof.
+**11.7** To the extent that Customers may be redirected to databases, websites, services etc. of third parties via the Data Portal UdL shall not be liable either for the accessibility, existence or security of such databases or services or for the contents thereof.
-**11.8** deltaDAO has no liability to the Customer or to any third party for any claims or damages that may arise as a result of any transactions that the Customer engages in via a Web3 wallet, or using Smart Contracts, or any other transactions that the Customer conducts via EVM Compatible Blockchains.
+**11.8** UdL has no liability to the Customer or to any third party for any claims or damages that may arise as a result of any transactions that the Customer engages in via a Web3 wallet, or using Smart Contracts, or any other transactions that the Customer conducts via EVM Compatible Blockchains.
## 12. Modifications
-**12.1** Insofar as the functionality of the Data Portal is preserved, deltaDAO may modify, change or discontinue any Service including any policies at any time with no prior notification. Modifications, changes or discontinuation of Services concerning the essential functionality of the Data Portal will be notified to the Customer one month prior to becoming effective.
+**12.1** Insofar as the functionality of the Data Portal is preserved, UdL may modify, change or discontinue any Service including any policies at any time with no prior notification. Modifications, changes or discontinuation of Services concerning the essential functionality of the Data Portal will be notified to the Customer one month prior to becoming effective.
-**12.2** deltaDAO shall be entitled to amend or modify this Agreement with a reasonable period of notice. deltaDAO shall notify the Customer in writing (e-mail sufficient) of the changes at the latest one month before they take effect. The Customer shall be deemed to have agreed to the notified amendments or modifications if the Customer has not notified deltaDAO in writing (e-mail sufficient) of its rejection by the time the amendments take effect. deltaDAO shall specifically draw the attention of the Customer to this effect of approval in its notification of the amendment or modification of this Agreement.
+**12.2** UdL shall be entitled to amend or modify this Agreement with a reasonable period of notice. UdL shall notify the Customer in writing (e-mail sufficient) of the changes at the latest one month before they take effect. The Customer shall be deemed to have agreed to the notified amendments or modifications if the Customer has not notified UdL in writing (e-mail sufficient) of its rejection by the time the amendments take effect. UdL shall specifically draw the attention of the Customer to this effect of approval in its notification of the amendment or modification of this Agreement.
## 13. Miscellaneous
-**13.1** All notices and announcements by deltaDAO concerning the Services will be published via the Data Portal.
+**13.1** All notices and announcements by UdL concerning the Services will be published via the Data Portal.
**13.2** The Customer is not entitled to offset, unless counterclaims are legally established or undisputed.
-**13.3** The Customer may transfer the rights and obligations arising from the Agreement to a third party only with the prior written consent of deltaDAO. deltaDAO shall refuse such consent only for good cause. The Customer shall inform deltaDAO immediately if it intends to transfer rights and obligations under the Agreement with deltaDAO.
+**13.3** The Customer may transfer the rights and obligations arising from the Agreement to a third party only with the prior written consent of UdL. UdL shall refuse such consent only for good cause. The Customer shall inform UdL immediately if it intends to transfer rights and obligations under the Agreement with UdL.
-**13.4** This Agreement (including references) contains the entirety of the terms and conditions applicable between the Customer and deltaDAO with respect to the Service. There are no verbal side agreements.
+**13.4** This Agreement (including references) contains the entirety of the terms and conditions applicable between the Customer and UdL with respect to the Service. There are no verbal side agreements.
-**13.5** Terms and conditions or other deviating conditions of the Customer shall only apply if deltaDAO has expressly accepted them in writing. The validity of individual conditions or clauses of the Customer that deviate from or supplement this Agreement shall be excluded even if deltaDAO has not objected to them.
+**13.5** Terms and conditions or other deviating conditions of the Customer shall only apply if UdL has expressly accepted them in writing. The validity of individual conditions or clauses of the Customer that deviate from or supplement this Agreement shall be excluded even if UdL has not objected to them.
-**13.6** Should any of the provisions of this Agreement be or become invalid or unenforceable in whole or in part, the validity or the enforceability of the remaining provisions shall not in any way be affected or impaired thereby. In this case, the invalid or unenforceable provision shall be replaced by a provision, which, to the extent legally possible, provides for an interpretation in keeping with the meaning and the economic purposes of this Agreement at the time of the conclusion of the Agreement between the Customer and the deltaDAO. Under circumstances in which this Agreement proves to be incomplete, a supplementary interpretation in accordance with the meaning and the purposes of this Agreement under due considerations of the legitimate interest of the Parties involved shall be applied.
+**13.6** Should any of the provisions of this Agreement be or become invalid or unenforceable in whole or in part, the validity or the enforceability of the remaining provisions shall not in any way be affected or impaired thereby. In this case, the invalid or unenforceable provision shall be replaced by a provision, which, to the extent legally possible, provides for an interpretation in keeping with the meaning and the economic purposes of this Agreement at the time of the conclusion of the Agreement between the Customer and the UdL. Under circumstances in which this Agreement proves to be incomplete, a supplementary interpretation in accordance with the meaning and the purposes of this Agreement under due considerations of the legitimate interest of the Parties involved shall be applied.
-**13.7** Unless otherwise stated in this Agreement, it is sufficient to comply with the written form also by using text form according to sec. 126b German Civil Code, e.g., e-mail.
+**13.7** Unless otherwise stated in this Agreement, it is sufficient to comply with the written form also by using text form, e.g., e-mail.
-**13.8** The authentic language of this Agreement is English. The English language shall prevail unless a German language term is added to an English language term then such German term shall be decisive throughout. In case of ambiguity or vagueness of a legal or non-legal term, the term shall be construed in light of German statutory law and in such a way that it corresponds to the German equivalent.
+**13.8** The authentic language of this Agreement is English. The English language shall prevail unless a Spanish language term is added to an English language term then such Spanish term shall be decisive throughout. In case of ambiguity or vagueness of a legal or non-legal term, the term shall be construed in light of Spanish statutory law and in such a way that it corresponds to the Spanish equivalent.
-**13.9** This Agreement shall be governed by the laws of the Federal Republic of Germany. The application of the uniform UN Convention on Contracts for the International Sale of Goods (CISG) shall be excluded.
+**13.9** This Agreement shall be governed by the laws of Spain. The application of the uniform UN Convention on Contracts for the International Sale of Goods (CISG) shall be excluded.
-**13.10** Exclusive - also international - place of jurisdiction for all disputes arising from or in connection with the Agreement shall be the registered office of deltaDAO. The above shall not apply if another - legally mandatory - exclusive jurisdiction exists.
+**13.10** Exclusive - also international - place of jurisdiction for all disputes arising from or in connection with the Agreement shall be the registered office of UdL. The above shall not apply if another - legally mandatory - exclusive jurisdiction exists.
diff --git a/content/publish/form.json b/content/publish/form.json
index d02878165..c3758a49d 100644
--- a/content/publish/form.json
+++ b/content/publish/form.json
@@ -42,11 +42,17 @@
"type": "tags",
"placeholder": "e.g. logistics"
},
+ {
+ "name": "ontologyTerms",
+ "label": "Ontology terms",
+ "type": "ontologyTerms",
+ "placeholder": "e.g. agriculture"
+ },
{
"name": "license",
"label": "License",
- "placeholder": "e.g. MIT",
- "help": "A SPDX identifier of the license applicable to this service."
+ "placeholder": "e.g. MIT or https://sample.licenses/mine.html",
+ "help": "A URL pointing to a custom license applicable to this asset or a SPDX identifier of the license."
},
{
"name": "accessTermsAndConditions",
diff --git a/content/site.json b/content/site.json
index 4cc47ceec..28f236b13 100644
--- a/content/site.json
+++ b/content/site.json
@@ -1,10 +1,14 @@
{
- "siteTitle": "Pontus-X Ecosystem - powered by Gaia-X",
- "siteTagline": "Streamlined interoperability across digital service ecosystems.",
- "siteUrl": "https://portal.pontus-x.eu",
+ "siteTitle": "AgrospAI",
+ "siteTagline": "Agri-food Data Space Demonstrator for Sovereign Data-Sharing and Artificial Intelligence Services",
+ "siteUrl": "https://portal.agrospai.udl.cat",
"siteImage": "/share.png",
- "copyright": "All Rights Reserved. Powered by [Gaia-X](https://gaia-x.eu/), [Oasis](https://oasisprotocol.org/) and [Ocean Enterprise](https://www.oceanenterprise.io/). Built by [deltaDAO](https://delta-dao.com).",
+ "copyright": "All Rights Reserved. Powered by [Gaia-X](https://gaia-x.eu/), [Oasis](https://oasisprotocol.org/) and [Ocean Enterprise](https://www.oceanenterprise.io/). Built by [deltaDAO](https://delta-dao.com) and [Universitat de Lleida](https://www.udl.cat).",
"menu": [
+ {
+ "name": "About",
+ "link": "https://agrospai.udl.cat/en"
+ },
{
"name": "Catalogue",
"link": "/search?sort=nft.created&sortOrder=desc"
@@ -95,7 +99,7 @@
},
{
"name": "AgrospAI",
- "link": "https://agrospai.udl.cat/",
+ "link": "https://agrospai.udl.cat/en/",
"description": "Agri-food Data Space Demonstrator for Sovereign Data-Sharing and Artificial Intelligence Services.",
"image": "agrospai-logo.webp",
"category": "agriculture",
@@ -149,6 +153,14 @@
"category": "smart city",
"isLive": true
},
+ {
+ "name": "Agrifood TEF",
+ "link": "https://dataspace.agrifoodtef.eu/",
+ "description": "The European Testing and Experimentation Facilities for Agrifood Innovation.",
+ "image": "agrifoodTEF.webp",
+ "category": "agriculture",
+ "isLive": true
+ },
{
"name": "Polish Agriculture Data Space",
"link": "https://dataspaces.psnc.pl/",
@@ -187,7 +199,7 @@
},
"footer": {
"subtitle": "Transforming Data Act Compliance into Scalable Monetization Opportunities",
- "copyright": "Built by [deltaDAO](https://delta-dao.com)",
+ "copyright": "Developed by [Universitat de Lleida](https://www.udl.cat) and powered by [deltaDAO](https://delta-dao.com)",
"privacyTitle": "Legal",
"content": [
{
diff --git a/networksMetadata.config.js b/networksMetadata.config.js
index 099aab6cd..3c1a60423 100644
--- a/networksMetadata.config.js
+++ b/networksMetadata.config.js
@@ -19,7 +19,7 @@ const networksMetadata = [
explorers: [
{
name: 'Pontus-X Devnet Explorer',
- url: 'https://explorer.pontus-x.eu/devnet/pontusx',
+ url: 'https://explorer.pontus-x.eu/pontusx/dev',
standard: ''
}
]
@@ -41,7 +41,7 @@ const networksMetadata = [
explorers: [
{
name: 'Pontus-X Testnet Explorer',
- url: 'https://explorer.pontus-x.eu/testnet/pontusx',
+ url: 'https://explorer.pontus-x.eu/pontusx/test',
standard: ''
}
]
diff --git a/next.config.js b/next.config.js
index 30c173b1b..41e59e8d8 100644
--- a/next.config.js
+++ b/next.config.js
@@ -3,6 +3,7 @@ module.exports = (phase, { defaultConfig }) => {
* @type {import('next').NextConfig}
*/
const nextConfig = {
+ output: 'standalone',
webpack: (config, options) => {
config.module.rules.push(
{
@@ -42,12 +43,14 @@ module.exports = (phase, { defaultConfig }) => {
})
config.resolve.fallback = fallback
- config.plugins = (config.plugins || []).concat([
- new options.webpack.ProvidePlugin({
- process: 'process/browser',
- Buffer: ['buffer', 'Buffer']
- })
- ])
+ if (!options.isServer) {
+ config.plugins.push(
+ new options.webpack.ProvidePlugin({
+ process: 'process/browser',
+ Buffer: ['buffer', 'Buffer']
+ })
+ )
+ }
return typeof defaultConfig.webpack === 'function'
? defaultConfig.webpack(config, options)
: config
@@ -60,11 +63,11 @@ module.exports = (phase, { defaultConfig }) => {
permanent: true
}
]
- }
+ },
- // Prefer loading of ES Modules over CommonJS
- // https://nextjs.org/blog/next-11-1#es-modules-support
- // experimental: { esmExternals: true }
+ experimental: {
+ instrumentationHook: true /* REMOVE WHEN NEXT>=15.0.0 */
+ }
}
return nextConfig
diff --git a/package-lock.json b/package-lock.json
index e6272215c..2a1387024 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -18,9 +18,12 @@
"@oceanprotocol/lib": "^3.1.3",
"@oceanprotocol/typographies": "^0.1.0",
"@oceanprotocol/use-dark-mode": "^2.4.3",
+ "@opentelemetry/instrumentation-http": "^0.209.0",
+ "@tanstack/react-query": "^4.42.0",
"@tippyjs/react": "^4.2.6",
"@uiw/react-codemirror": "^4.19.5",
"@urql/exchange-refocus": "^1.0.0",
+ "@vercel/otel": "^2.1.0",
"axios": "^1.2.0",
"classnames": "^2.3.2",
"connectkit": "^1.3.0",
@@ -31,12 +34,14 @@
"filesize": "^10.0.7",
"formik": "^2.4.2",
"gray-matter": "^4.0.3",
+ "inversify": "^7.10.3",
"is-ipfs": "^8.0.1",
"is-url-superb": "^6.1.0",
"js-cookie": "^3.0.5",
"match-sorter": "^6.3.1",
"myetherwallet-blockies": "^0.1.1",
- "next": "13.0.5",
+ "next": "13.3.4",
+ "next-runtime-env": "^3.3.0",
"npm": "^9.6.5",
"query-string": "^8.1.0",
"react": "^18.2.0",
@@ -44,6 +49,7 @@
"react-data-table-component": "^7.5.3",
"react-dom": "^18.2.0",
"react-dotdotdot": "^1.3.1",
+ "react-error-boundary": "^6.0.0",
"react-modal": "^3.16.1",
"react-paginate": "^8.1.4",
"react-select": "^5.7.3",
@@ -51,6 +57,7 @@
"react-string-replace": "^1.1.1",
"react-tabs": "^6.0.2",
"react-toastify": "^9.1.3",
+ "react18-json-view": "^0.2.9",
"rehype-slug": "^6.0.0",
"rehype-stringify": "^10.0.0",
"remark": "^15.0.1",
@@ -64,7 +71,8 @@
"urql": "^3.0.3",
"use-debounce": "^9.0.4",
"wagmi": "^0.12.12",
- "yup": "^0.32.11"
+ "yup": "^0.32.11",
+ "zod": "^4.1.12"
},
"devDependencies": {
"@storybook/addon-essentials": "^6.5.13",
@@ -109,7 +117,7 @@
"typescript": "^5.2.2"
},
"engines": {
- "node": "18"
+ "node": "22"
}
},
"node_modules/@aashutoshrathi/word-wrap": {
@@ -3373,6 +3381,62 @@
"integrity": "sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw==",
"dev": true
},
+ "node_modules/@inversifyjs/common": {
+ "version": "1.5.2",
+ "resolved": "https://registry.npmjs.org/@inversifyjs/common/-/common-1.5.2.tgz",
+ "integrity": "sha512-WlzR9xGadABS9gtgZQ+luoZ8V6qm4Ii6RQfcfC9Ho2SOlE6ZuemFo7PKJvKI0ikm8cmKbU8hw5UK6E4qovH21w==",
+ "license": "MIT"
+ },
+ "node_modules/@inversifyjs/container": {
+ "version": "1.14.0",
+ "resolved": "https://registry.npmjs.org/@inversifyjs/container/-/container-1.14.0.tgz",
+ "integrity": "sha512-jOxjPgkDGc8N6tm2kuAg911/83Ybnf4u70EanXZPSdOskUSnxohCZmLrOJ1WRr/kzLJYCg3sqhZ5iK32z0uOPQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@inversifyjs/common": "1.5.2",
+ "@inversifyjs/core": "9.1.0",
+ "@inversifyjs/plugin": "0.2.0",
+ "@inversifyjs/reflect-metadata-utils": "1.4.1"
+ },
+ "peerDependencies": {
+ "reflect-metadata": "~0.2.2"
+ }
+ },
+ "node_modules/@inversifyjs/core": {
+ "version": "9.1.0",
+ "resolved": "https://registry.npmjs.org/@inversifyjs/core/-/core-9.1.0.tgz",
+ "integrity": "sha512-SEpW7Rqa/9f1OcaqtqSTGJQOiuSlauSDcyOcZZCyK1g15efshVw0LsYQS+wpUFkpgEYKhGRBIfvlfgWKKYiFuQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@inversifyjs/common": "1.5.2",
+ "@inversifyjs/prototype-utils": "0.1.2",
+ "@inversifyjs/reflect-metadata-utils": "1.4.1"
+ }
+ },
+ "node_modules/@inversifyjs/plugin": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/@inversifyjs/plugin/-/plugin-0.2.0.tgz",
+ "integrity": "sha512-R/JAdkTSD819pV1zi0HP54mWHyX+H2m8SxldXRgPQarS3ySV4KPyRdosWcfB8Se0JJZWZLHYiUNiS6JvMWSPjw==",
+ "license": "MIT"
+ },
+ "node_modules/@inversifyjs/prototype-utils": {
+ "version": "0.1.2",
+ "resolved": "https://registry.npmjs.org/@inversifyjs/prototype-utils/-/prototype-utils-0.1.2.tgz",
+ "integrity": "sha512-WZAEycwVd8zVCPCQ7GRzuQmjYF7X5zbjI9cGigDbBoTHJ8y5US9om00IAp0RYislO+fYkMzgcB2SnlIVIzyESA==",
+ "license": "MIT",
+ "dependencies": {
+ "@inversifyjs/common": "1.5.2"
+ }
+ },
+ "node_modules/@inversifyjs/reflect-metadata-utils": {
+ "version": "1.4.1",
+ "resolved": "https://registry.npmjs.org/@inversifyjs/reflect-metadata-utils/-/reflect-metadata-utils-1.4.1.tgz",
+ "integrity": "sha512-Cp77C4d2wLaHXiUB7iH6Cxb7i1lD/YDuTIHLTDzKINqGSz0DCSoL/Dg2wVkW/6Qx03r/yQMLJ+32Agl32N2X8g==",
+ "license": "MIT",
+ "peerDependencies": {
+ "reflect-metadata": "~0.2.2"
+ }
+ },
"node_modules/@istanbuljs/load-nyc-config": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz",
@@ -5112,47 +5176,19 @@
"integrity": "sha512-cXEIW6cfr15lFv563k4GuVuW/fiwjknytD37jIOLSdSWuOI6WnO/oKwmP2FQTU2l01LP8/M5TSAJpzUaGe3uWg=="
},
"node_modules/@next/env": {
- "version": "13.0.5",
- "resolved": "https://registry.npmjs.org/@next/env/-/env-13.0.5.tgz",
- "integrity": "sha512-F3KLtiDrUslAZhTYTh8Zk5ZaavbYwLUn3NYPBnOjAXU8hWm0QVGVzKIOuURQ098ofRU4e9oglf3Sj9pFx5nI5w=="
- },
- "node_modules/@next/swc-android-arm-eabi": {
- "version": "13.0.5",
- "resolved": "https://registry.npmjs.org/@next/swc-android-arm-eabi/-/swc-android-arm-eabi-13.0.5.tgz",
- "integrity": "sha512-YO691dxHlviy6H0eghgwqn+5kU9J3iQnKERHTDSppqjjGDBl6ab4wz9XfI5AhljjkaTg3TknHoIEWFDoZ4Ve8g==",
- "cpu": [
- "arm"
- ],
- "optional": true,
- "os": [
- "android"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@next/swc-android-arm64": {
- "version": "13.0.5",
- "resolved": "https://registry.npmjs.org/@next/swc-android-arm64/-/swc-android-arm64-13.0.5.tgz",
- "integrity": "sha512-ugbwffkUmp8cd2afehDC8LtQeFUxElRUBBngfB5UYSWBx18HW4OgzkPFIY8jUBH16zifvGZWXbICXJWDHrOLtw==",
- "cpu": [
- "arm64"
- ],
- "optional": true,
- "os": [
- "android"
- ],
- "engines": {
- "node": ">= 10"
- }
+ "version": "13.3.4",
+ "resolved": "https://registry.npmjs.org/@next/env/-/env-13.3.4.tgz",
+ "integrity": "sha512-oTK/wRV2qga86m/4VdrR1+/56UA6U1Qv3sIgowB+bZjahniZLEG5BmmQjfoGv7ZuLXBZ8Eec6hkL9BqJcrEL2g==",
+ "license": "MIT"
},
"node_modules/@next/swc-darwin-arm64": {
- "version": "13.0.5",
- "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.0.5.tgz",
- "integrity": "sha512-mshlh8QOtOalfZbc17uNAftWgqHTKnrv6QUwBe+mpGz04eqsSUzVz1JGZEdIkmuDxOz00cK2NPoc+VHDXh99IQ==",
+ "version": "13.3.4",
+ "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.3.4.tgz",
+ "integrity": "sha512-vux7RWfzxy1lD21CMwZsy9Ej+0+LZdIIj1gEhVmzOQqQZ5N56h8JamrjIVCfDL+Lpj8KwOmFZbPHE8qaYnL2pg==",
"cpu": [
"arm64"
],
+ "license": "MIT",
"optional": true,
"os": [
"darwin"
@@ -5162,12 +5198,13 @@
}
},
"node_modules/@next/swc-darwin-x64": {
- "version": "13.0.5",
- "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-13.0.5.tgz",
- "integrity": "sha512-SfigOKW4Z2UB3ruUPyvrlDIkcJq1hiw1wvYApWugD+tQsAkYZKEoz+/8emCmeYZ6Gwgi1WHV+z52Oj8u7bEHPg==",
+ "version": "13.3.4",
+ "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-13.3.4.tgz",
+ "integrity": "sha512-1tb+6JT98+t7UIhVQpKL7zegKnCs9RKU6cKNyj+DYKuC/NVl49/JaIlmwCwK8Ibl+RXxJrK7uSXSIO71feXsgw==",
"cpu": [
"x64"
],
+ "license": "MIT",
"optional": true,
"os": [
"darwin"
@@ -5176,43 +5213,14 @@
"node": ">= 10"
}
},
- "node_modules/@next/swc-freebsd-x64": {
- "version": "13.0.5",
- "resolved": "https://registry.npmjs.org/@next/swc-freebsd-x64/-/swc-freebsd-x64-13.0.5.tgz",
- "integrity": "sha512-0NJg8HZr4yG8ynmMGFXQf+Mahvq4ZgBmUwSlLXXymgxEQgH17erH/LoR69uITtW+KTsALgk9axEt5AAabM4ucg==",
- "cpu": [
- "x64"
- ],
- "optional": true,
- "os": [
- "freebsd"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@next/swc-linux-arm-gnueabihf": {
- "version": "13.0.5",
- "resolved": "https://registry.npmjs.org/@next/swc-linux-arm-gnueabihf/-/swc-linux-arm-gnueabihf-13.0.5.tgz",
- "integrity": "sha512-Cye+h3oDT3NDWjACMlRaolL8fokpKie34FlPj9nfoW7bYKmoMBY1d4IO/GgBF+5xEl7HkH0Ny/qex63vQ0pN+A==",
- "cpu": [
- "arm"
- ],
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
"node_modules/@next/swc-linux-arm64-gnu": {
- "version": "13.0.5",
- "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.0.5.tgz",
- "integrity": "sha512-5BfDS/VoRDR5QUGG9oedOCEZGmV2zxUVFYLUJVPMSMeIgqkjxWQBiG2BUHZI6/LGk9yvHmjx7BTvtBCLtRg6IQ==",
+ "version": "13.3.4",
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.3.4.tgz",
+ "integrity": "sha512-UqcKkYTKslf5YAJNtZ5XV1D5MQJIkVtDHL8OehDZERHzqOe7jvy41HFto33IDPPU8gJiP5eJb3V9U26uifqHjw==",
"cpu": [
"arm64"
],
+ "license": "MIT",
"optional": true,
"os": [
"linux"
@@ -5222,12 +5230,13 @@
}
},
"node_modules/@next/swc-linux-arm64-musl": {
- "version": "13.0.5",
- "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.0.5.tgz",
- "integrity": "sha512-xenvqlXz+KxVKAB1YR723gnVNszpsCvKZkiFFaAYqDGJ502YuqU2fwLsaSm/ASRizNcBYeo9HPLTyc3r/9cdMQ==",
+ "version": "13.3.4",
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.3.4.tgz",
+ "integrity": "sha512-HE/FmE8VvstAfehyo/XsrhGgz97cEr7uf9IfkgJ/unqSXE0CDshDn/4as6rRid74eDR8/exi7c2tdo49Tuqxrw==",
"cpu": [
"arm64"
],
+ "license": "MIT",
"optional": true,
"os": [
"linux"
@@ -5237,12 +5246,13 @@
}
},
"node_modules/@next/swc-linux-x64-gnu": {
- "version": "13.0.5",
- "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.0.5.tgz",
- "integrity": "sha512-9Ahi1bbdXwhrWQmOyoTod23/hhK05da/FzodiNqd6drrMl1y7+RujoEcU8Dtw3H1mGWB+yuTlWo8B4Iba8hqiQ==",
+ "version": "13.3.4",
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.3.4.tgz",
+ "integrity": "sha512-xU+ugaupGA4SL5aK1ZYEqVHrW3TPOhxVcpaJLfpANm2443J4GfxCmOacu9XcSgy5c51Mq7C9uZ1LODKHfZosRQ==",
"cpu": [
"x64"
],
+ "license": "MIT",
"optional": true,
"os": [
"linux"
@@ -5252,12 +5262,13 @@
}
},
"node_modules/@next/swc-linux-x64-musl": {
- "version": "13.0.5",
- "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.0.5.tgz",
- "integrity": "sha512-V+1mnh49qmS9fOZxVRbzjhBEz9IUGJ7AQ80JPWAYQM5LI4TxfdiF4APLPvJ52rOmNeTqnVz1bbKtVOso+7EZ4w==",
+ "version": "13.3.4",
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.3.4.tgz",
+ "integrity": "sha512-cZvmf5KcYeTfIK6bCypfmxGUjme53Ep7hx94JJtGrYgCA1VwEuYdh+KouubJaQCH3aqnNE7+zGnVEupEKfoaaA==",
"cpu": [
"x64"
],
+ "license": "MIT",
"optional": true,
"os": [
"linux"
@@ -5267,12 +5278,13 @@
}
},
"node_modules/@next/swc-win32-arm64-msvc": {
- "version": "13.0.5",
- "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.0.5.tgz",
- "integrity": "sha512-wRE9rkp7I+/3Jf2T9PFIJOKq3adMWYEFkPOA7XAkUfYbQHlDJm/U5cVCWUsKByyQq5RThwufI91sgd19MfxRxg==",
+ "version": "13.3.4",
+ "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.3.4.tgz",
+ "integrity": "sha512-7dL+CAUAjmgnVbjXPIpdj7/AQKFqEUL3bKtaOIE1JzJ5UMHHAXCPwzQtibrsvQpf9MwcAmiv8aburD3xH1xf8w==",
"cpu": [
"arm64"
],
+ "license": "MIT",
"optional": true,
"os": [
"win32"
@@ -5282,12 +5294,13 @@
}
},
"node_modules/@next/swc-win32-ia32-msvc": {
- "version": "13.0.5",
- "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.0.5.tgz",
- "integrity": "sha512-Q1XQSLEhFuFhkKFdJIGt7cYQ4T3u6P5wrtUNreg5M+7P+fjSiC8+X+Vjcw+oebaacsdl0pWZlK+oACGafush1w==",
+ "version": "13.3.4",
+ "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.3.4.tgz",
+ "integrity": "sha512-qplTyzEl1vPkS+/DRK3pKSL0HeXrPHkYsV7U6gboHYpfqoHY+bcLUj3gwVUa9PEHRIoq4vXvPzx/WtzE6q52ng==",
"cpu": [
"ia32"
],
+ "license": "MIT",
"optional": true,
"os": [
"win32"
@@ -5297,12 +5310,13 @@
}
},
"node_modules/@next/swc-win32-x64-msvc": {
- "version": "13.0.5",
- "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.0.5.tgz",
- "integrity": "sha512-t5gRblrwwiNZP6cT7NkxlgxrFgHWtv9ei5vUraCLgBqzvIsa7X+PnarZUeQCXqz6Jg9JSGGT9j8lvzD97UqeJQ==",
+ "version": "13.3.4",
+ "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.3.4.tgz",
+ "integrity": "sha512-usdvZT7JHrTuXC+4OKN5mCzUkviFkCyJJTkEz8jhBpucg+T7s83e7owm3oNFzmj5iKfvxU2St6VkcnSgpFvEYA==",
"cpu": [
"x64"
],
+ "license": "MIT",
"optional": true,
"os": [
"win32"
@@ -6144,6 +6158,251 @@
"node": ">=12.0.0"
}
},
+ "node_modules/@opentelemetry/api": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/api/-/api-1.9.0.tgz",
+ "integrity": "sha512-3giAOQvZiH5F9bMlMiv8+GSPMeqg0dbaeo58/0SlA9sxSqZhnUtxzX9/2FzyhS9sWQf5S0GJE0AKBrFqjpeYcg==",
+ "license": "Apache-2.0",
+ "engines": {
+ "node": ">=8.0.0"
+ }
+ },
+ "node_modules/@opentelemetry/api-logs": {
+ "version": "0.211.0",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/api-logs/-/api-logs-0.211.0.tgz",
+ "integrity": "sha512-swFdZq8MCdmdR22jTVGQDhwqDzcI4M10nhjXkLr1EsIzXgZBqm4ZlmmcWsg3TSNf+3mzgOiqveXmBLZuDi2Lgg==",
+ "license": "Apache-2.0",
+ "peer": true,
+ "dependencies": {
+ "@opentelemetry/api": "^1.3.0"
+ },
+ "engines": {
+ "node": ">=8.0.0"
+ }
+ },
+ "node_modules/@opentelemetry/core": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/core/-/core-2.3.0.tgz",
+ "integrity": "sha512-PcmxJQzs31cfD0R2dE91YGFcLxOSN4Bxz7gez5UwSUjCai8BwH/GI5HchfVshHkWdTkUs0qcaPJgVHKXUp7I3A==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@opentelemetry/semantic-conventions": "^1.29.0"
+ },
+ "engines": {
+ "node": "^18.19.0 || >=20.6.0"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": ">=1.0.0 <1.10.0"
+ }
+ },
+ "node_modules/@opentelemetry/instrumentation": {
+ "version": "0.211.0",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation/-/instrumentation-0.211.0.tgz",
+ "integrity": "sha512-h0nrZEC/zvI994nhg7EgQ8URIHt0uDTwN90r3qQUdZORS455bbx+YebnGeEuFghUT0HlJSrLF4iHw67f+odY+Q==",
+ "license": "Apache-2.0",
+ "peer": true,
+ "dependencies": {
+ "@opentelemetry/api-logs": "0.211.0",
+ "import-in-the-middle": "^2.0.0",
+ "require-in-the-middle": "^8.0.0"
+ },
+ "engines": {
+ "node": "^18.19.0 || >=20.6.0"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": "^1.3.0"
+ }
+ },
+ "node_modules/@opentelemetry/instrumentation-http": {
+ "version": "0.209.0",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-http/-/instrumentation-http-0.209.0.tgz",
+ "integrity": "sha512-hsZt3bwnbpDGYv397YnYHMydwJwwk+aCfezrX/pkBt3/sKnZ3lte6e8V/qfmU6TlwEnhS3ewcgnzHpa23ZcckA==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@opentelemetry/core": "2.3.0",
+ "@opentelemetry/instrumentation": "0.209.0",
+ "@opentelemetry/semantic-conventions": "^1.29.0",
+ "forwarded-parse": "2.1.2"
+ },
+ "engines": {
+ "node": "^18.19.0 || >=20.6.0"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": "^1.3.0"
+ }
+ },
+ "node_modules/@opentelemetry/instrumentation-http/node_modules/@opentelemetry/api-logs": {
+ "version": "0.209.0",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/api-logs/-/api-logs-0.209.0.tgz",
+ "integrity": "sha512-xomnUNi7TiAGtOgs0tb54LyrjRZLu9shJGGwkcN7NgtiPYOpNnKLkRJtzZvTjD/w6knSZH9sFZcUSUovYOPg6A==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@opentelemetry/api": "^1.3.0"
+ },
+ "engines": {
+ "node": ">=8.0.0"
+ }
+ },
+ "node_modules/@opentelemetry/instrumentation-http/node_modules/@opentelemetry/instrumentation": {
+ "version": "0.209.0",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation/-/instrumentation-0.209.0.tgz",
+ "integrity": "sha512-Cwe863ojTCnFlxVuuhG7s6ODkAOzKsAEthKAcI4MDRYz1OmGWYnmSl4X2pbyS+hBxVTdvfZePfoEA01IjqcEyw==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@opentelemetry/api-logs": "0.209.0",
+ "import-in-the-middle": "^2.0.0",
+ "require-in-the-middle": "^8.0.0"
+ },
+ "engines": {
+ "node": "^18.19.0 || >=20.6.0"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": "^1.3.0"
+ }
+ },
+ "node_modules/@opentelemetry/resources": {
+ "version": "2.5.0",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/resources/-/resources-2.5.0.tgz",
+ "integrity": "sha512-F8W52ApePshpoSrfsSk1H2yJn9aKjCrbpQF1M9Qii0GHzbfVeFUB+rc3X4aggyZD8x9Gu3Slua+s6krmq6Dt8g==",
+ "license": "Apache-2.0",
+ "peer": true,
+ "dependencies": {
+ "@opentelemetry/core": "2.5.0",
+ "@opentelemetry/semantic-conventions": "^1.29.0"
+ },
+ "engines": {
+ "node": "^18.19.0 || >=20.6.0"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": ">=1.3.0 <1.10.0"
+ }
+ },
+ "node_modules/@opentelemetry/resources/node_modules/@opentelemetry/core": {
+ "version": "2.5.0",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/core/-/core-2.5.0.tgz",
+ "integrity": "sha512-ka4H8OM6+DlUhSAZpONu0cPBtPPTQKxbxVzC4CzVx5+K4JnroJVBtDzLAMx4/3CDTJXRvVFhpFjtl4SaiTNoyQ==",
+ "license": "Apache-2.0",
+ "peer": true,
+ "dependencies": {
+ "@opentelemetry/semantic-conventions": "^1.29.0"
+ },
+ "engines": {
+ "node": "^18.19.0 || >=20.6.0"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": ">=1.0.0 <1.10.0"
+ }
+ },
+ "node_modules/@opentelemetry/sdk-logs": {
+ "version": "0.211.0",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/sdk-logs/-/sdk-logs-0.211.0.tgz",
+ "integrity": "sha512-O5nPwzgg2JHzo59kpQTPUOTzFi0Nv5LxryG27QoXBciX3zWM3z83g+SNOHhiQVYRWFSxoWn1JM2TGD5iNjOwdA==",
+ "license": "Apache-2.0",
+ "peer": true,
+ "dependencies": {
+ "@opentelemetry/api-logs": "0.211.0",
+ "@opentelemetry/core": "2.5.0",
+ "@opentelemetry/resources": "2.5.0"
+ },
+ "engines": {
+ "node": "^18.19.0 || >=20.6.0"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": ">=1.4.0 <1.10.0"
+ }
+ },
+ "node_modules/@opentelemetry/sdk-logs/node_modules/@opentelemetry/core": {
+ "version": "2.5.0",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/core/-/core-2.5.0.tgz",
+ "integrity": "sha512-ka4H8OM6+DlUhSAZpONu0cPBtPPTQKxbxVzC4CzVx5+K4JnroJVBtDzLAMx4/3CDTJXRvVFhpFjtl4SaiTNoyQ==",
+ "license": "Apache-2.0",
+ "peer": true,
+ "dependencies": {
+ "@opentelemetry/semantic-conventions": "^1.29.0"
+ },
+ "engines": {
+ "node": "^18.19.0 || >=20.6.0"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": ">=1.0.0 <1.10.0"
+ }
+ },
+ "node_modules/@opentelemetry/sdk-metrics": {
+ "version": "2.5.0",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/sdk-metrics/-/sdk-metrics-2.5.0.tgz",
+ "integrity": "sha512-BeJLtU+f5Gf905cJX9vXFQorAr6TAfK3SPvTFqP+scfIpDQEJfRaGJWta7sJgP+m4dNtBf9y3yvBKVAZZtJQVA==",
+ "license": "Apache-2.0",
+ "peer": true,
+ "dependencies": {
+ "@opentelemetry/core": "2.5.0",
+ "@opentelemetry/resources": "2.5.0"
+ },
+ "engines": {
+ "node": "^18.19.0 || >=20.6.0"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": ">=1.9.0 <1.10.0"
+ }
+ },
+ "node_modules/@opentelemetry/sdk-metrics/node_modules/@opentelemetry/core": {
+ "version": "2.5.0",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/core/-/core-2.5.0.tgz",
+ "integrity": "sha512-ka4H8OM6+DlUhSAZpONu0cPBtPPTQKxbxVzC4CzVx5+K4JnroJVBtDzLAMx4/3CDTJXRvVFhpFjtl4SaiTNoyQ==",
+ "license": "Apache-2.0",
+ "peer": true,
+ "dependencies": {
+ "@opentelemetry/semantic-conventions": "^1.29.0"
+ },
+ "engines": {
+ "node": "^18.19.0 || >=20.6.0"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": ">=1.0.0 <1.10.0"
+ }
+ },
+ "node_modules/@opentelemetry/sdk-trace-base": {
+ "version": "2.5.0",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/sdk-trace-base/-/sdk-trace-base-2.5.0.tgz",
+ "integrity": "sha512-VzRf8LzotASEyNDUxTdaJ9IRJ1/h692WyArDBInf5puLCjxbICD6XkHgpuudis56EndyS7LYFmtTMny6UABNdQ==",
+ "license": "Apache-2.0",
+ "peer": true,
+ "dependencies": {
+ "@opentelemetry/core": "2.5.0",
+ "@opentelemetry/resources": "2.5.0",
+ "@opentelemetry/semantic-conventions": "^1.29.0"
+ },
+ "engines": {
+ "node": "^18.19.0 || >=20.6.0"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": ">=1.3.0 <1.10.0"
+ }
+ },
+ "node_modules/@opentelemetry/sdk-trace-base/node_modules/@opentelemetry/core": {
+ "version": "2.5.0",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/core/-/core-2.5.0.tgz",
+ "integrity": "sha512-ka4H8OM6+DlUhSAZpONu0cPBtPPTQKxbxVzC4CzVx5+K4JnroJVBtDzLAMx4/3CDTJXRvVFhpFjtl4SaiTNoyQ==",
+ "license": "Apache-2.0",
+ "peer": true,
+ "dependencies": {
+ "@opentelemetry/semantic-conventions": "^1.29.0"
+ },
+ "engines": {
+ "node": "^18.19.0 || >=20.6.0"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": ">=1.0.0 <1.10.0"
+ }
+ },
+ "node_modules/@opentelemetry/semantic-conventions": {
+ "version": "1.39.0",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/semantic-conventions/-/semantic-conventions-1.39.0.tgz",
+ "integrity": "sha512-R5R9tb2AXs2IRLNKLBJDynhkfmx7mX0vi8NkhZb3gUkPWHn6HXk5J8iQ/dql0U3ApfWym4kXXmBDRGO+oeOfjg==",
+ "license": "Apache-2.0",
+ "engines": {
+ "node": ">=14"
+ }
+ },
"node_modules/@pedrouid/environment": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@pedrouid/environment/-/environment-1.0.1.tgz",
@@ -21896,10 +22155,17 @@
"url": "https://github.com/sponsors/gregberge"
}
},
+ "node_modules/@swc/counter": {
+ "version": "0.1.3",
+ "resolved": "https://registry.npmjs.org/@swc/counter/-/counter-0.1.3.tgz",
+ "integrity": "sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==",
+ "license": "Apache-2.0"
+ },
"node_modules/@swc/helpers": {
- "version": "0.4.14",
- "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.4.14.tgz",
- "integrity": "sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==",
+ "version": "0.5.1",
+ "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.1.tgz",
+ "integrity": "sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==",
+ "license": "Apache-2.0",
"dependencies": {
"tslib": "^2.4.0"
}
@@ -21950,11 +22216,12 @@
}
},
"node_modules/@tanstack/react-query": {
- "version": "4.29.5",
- "resolved": "https://registry.npmjs.org/@tanstack/react-query/-/react-query-4.29.5.tgz",
- "integrity": "sha512-F87cibC3s3eG0Q90g2O+hqntpCrudKFnR8P24qkH9uccEhXErnJxBC/AAI4cJRV2bfMO8IeGZQYf3WyYgmSg0w==",
+ "version": "4.42.0",
+ "resolved": "https://registry.npmjs.org/@tanstack/react-query/-/react-query-4.42.0.tgz",
+ "integrity": "sha512-j0tiofkzE3CSrYKmVRaKuwGgvCE+P2OOEDlhmfjeZf5ufcuFHwYwwgw3j08n4WYPVZ+OpsHblcFYezhKA3jDwg==",
+ "license": "MIT",
"dependencies": {
- "@tanstack/query-core": "4.29.5",
+ "@tanstack/query-core": "4.41.0",
"use-sync-external-store": "^1.2.0"
},
"funding": {
@@ -21962,8 +22229,8 @@
"url": "https://github.com/sponsors/tannerlinsley"
},
"peerDependencies": {
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
- "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0",
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
"react-native": "*"
},
"peerDependenciesMeta": {
@@ -21976,18 +22243,52 @@
}
},
"node_modules/@tanstack/react-query-persist-client": {
- "version": "4.29.5",
- "resolved": "https://registry.npmjs.org/@tanstack/react-query-persist-client/-/react-query-persist-client-4.29.5.tgz",
- "integrity": "sha512-zvQChSqO/HpRHWjCn+4L4M45Yr2eslogJcQr2HFxRw27Wj/5WlFYhnQFo5SCCR+gZh09tMnkzD+zFhN76wMEGw==",
+ "version": "4.42.0",
+ "resolved": "https://registry.npmjs.org/@tanstack/react-query-persist-client/-/react-query-persist-client-4.42.0.tgz",
+ "integrity": "sha512-Wn7oChcIhu1FXZbPfKPLz2sKLa/CjQ1V1BQPJa5IEx+Na94ozQccXYGhZuaSwt/PyhkmFwtI49i/Jx0JAhG4mA==",
+ "license": "MIT",
"dependencies": {
- "@tanstack/query-persist-client-core": "4.29.5"
+ "@tanstack/query-persist-client-core": "4.41.0"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/tannerlinsley"
},
"peerDependencies": {
- "@tanstack/react-query": "4.29.5"
+ "@tanstack/react-query": "^4.42.0"
+ }
+ },
+ "node_modules/@tanstack/react-query-persist-client/node_modules/@tanstack/query-core": {
+ "version": "4.41.0",
+ "resolved": "https://registry.npmjs.org/@tanstack/query-core/-/query-core-4.41.0.tgz",
+ "integrity": "sha512-193R4Jp9hjvlij6LryxrB5Mpbffd2L9PeWh3KlIy/hJV4SkBOfiQZ+jc5qAZLDCrdbkA5FjGj+UoDYw6TcNnyA==",
+ "license": "MIT",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/tannerlinsley"
+ }
+ },
+ "node_modules/@tanstack/react-query-persist-client/node_modules/@tanstack/query-persist-client-core": {
+ "version": "4.41.0",
+ "resolved": "https://registry.npmjs.org/@tanstack/query-persist-client-core/-/query-persist-client-core-4.41.0.tgz",
+ "integrity": "sha512-1CBSufr8Hl+D2V0/oPczycOo6qeEcEDDC0nfEg+K5y7ulGmuTXOojgNFP/i5+ej9iyv8upa7zpYuMl79Xd9BLg==",
+ "license": "MIT",
+ "dependencies": {
+ "@tanstack/query-core": "4.41.0"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/tannerlinsley"
+ }
+ },
+ "node_modules/@tanstack/react-query/node_modules/@tanstack/query-core": {
+ "version": "4.41.0",
+ "resolved": "https://registry.npmjs.org/@tanstack/query-core/-/query-core-4.41.0.tgz",
+ "integrity": "sha512-193R4Jp9hjvlij6LryxrB5Mpbffd2L9PeWh3KlIy/hJV4SkBOfiQZ+jc5qAZLDCrdbkA5FjGj+UoDYw6TcNnyA==",
+ "license": "MIT",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/tannerlinsley"
}
},
"node_modules/@testing-library/dom": {
@@ -23494,6 +23795,24 @@
"react": ">=16.8.0"
}
},
+ "node_modules/@vercel/otel": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/@vercel/otel/-/otel-2.1.0.tgz",
+ "integrity": "sha512-Zwu2Cu4t46DzBnY1DQSTxZ4MBLVfYsOjnlWuZuLRWnmVPX+SNrVHbs3ssiJ6uvY1J1JJswor4zSn8mHYxzYeBA==",
+ "license": "MIT",
+ "engines": {
+ "node": "^18.19.0 || >=20.6.0"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": ">=1.9.0 <2.0.0",
+ "@opentelemetry/api-logs": ">=0.200.0 <0.300.0",
+ "@opentelemetry/instrumentation": ">=0.200.0 <0.300.0",
+ "@opentelemetry/resources": ">=2.0.0 <3.0.0",
+ "@opentelemetry/sdk-logs": ">=0.200.0 <0.300.0",
+ "@opentelemetry/sdk-metrics": ">=2.0.0 <3.0.0",
+ "@opentelemetry/sdk-trace-base": ">=2.0.0 <3.0.0"
+ }
+ },
"node_modules/@wagmi/chains": {
"version": "0.2.19",
"resolved": "https://registry.npmjs.org/@wagmi/chains/-/chains-0.2.19.tgz",
@@ -27059,7 +27378,6 @@
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz",
"integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==",
- "peer": true,
"dependencies": {
"streamsearch": "^1.1.0"
},
@@ -27452,9 +27770,9 @@
"integrity": "sha512-W2lPwkBkMZwFlPCXhIlYgxu+7gC/NUlCtdK652DAJ1JdgV0sTrvuPFshNPrFa1TY2JOkLhgdeEBplB4ezEa+xg=="
},
"node_modules/caniuse-lite": {
- "version": "1.0.30001502",
- "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001502.tgz",
- "integrity": "sha512-AZ+9tFXw1sS0o0jcpJQIXvFTOB/xGiQ4OQ2t98QX3NDn2EZTSRBC801gxrsGgViuq2ak/NLkNgSNEPtCr5lfKg==",
+ "version": "1.0.30001751",
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001751.tgz",
+ "integrity": "sha512-A0QJhug0Ly64Ii3eIqHu5X51ebln3k4yTUkY1j8drqpWHVreg/VLijN48cZ1bYPiqOQuqpkIKnzr/Ul8V+p6Cw==",
"funding": [
{
"type": "opencollective",
@@ -27468,7 +27786,8 @@
"type": "github",
"url": "https://github.com/sponsors/ai"
}
- ]
+ ],
+ "license": "CC-BY-4.0"
},
"node_modules/capital-case": {
"version": "1.0.4",
@@ -29674,11 +29993,12 @@
"integrity": "sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug=="
},
"node_modules/debug": {
- "version": "4.3.4",
- "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz",
- "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==",
+ "version": "4.4.3",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
+ "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
+ "license": "MIT",
"dependencies": {
- "ms": "2.1.2"
+ "ms": "^2.1.3"
},
"engines": {
"node": ">=6.0"
@@ -33144,6 +33464,12 @@
"node": ">= 0.6"
}
},
+ "node_modules/forwarded-parse": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/forwarded-parse/-/forwarded-parse-2.1.2.tgz",
+ "integrity": "sha512-alTFZZQDKMporBH77856pXgzhEzaUVmLCDk+egLgIgHst3Tpndzz8MnKe+GzRJRfvVdn69HhpW7cmXzvtLvJAw==",
+ "license": "MIT"
+ },
"node_modules/fragment-cache": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz",
@@ -33861,9 +34187,10 @@
}
},
"node_modules/graceful-fs": {
- "version": "4.2.10",
- "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz",
- "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA=="
+ "version": "4.2.11",
+ "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
+ "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
+ "license": "ISC"
},
"node_modules/graphemer": {
"version": "1.4.0",
@@ -35228,6 +35555,45 @@
"node": ">=4"
}
},
+ "node_modules/import-in-the-middle": {
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/import-in-the-middle/-/import-in-the-middle-2.0.5.tgz",
+ "integrity": "sha512-0InH9/4oDCBRzWXhpOqusspLBrVfK1vPvbn9Wxl8DAQ8yyx5fWJRETICSwkiAMaYntjJAMBP1R4B6cQnEUYVEA==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "acorn": "^8.15.0",
+ "acorn-import-attributes": "^1.9.5",
+ "cjs-module-lexer": "^2.2.0",
+ "module-details-from-path": "^1.0.4"
+ }
+ },
+ "node_modules/import-in-the-middle/node_modules/acorn": {
+ "version": "8.15.0",
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz",
+ "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==",
+ "license": "MIT",
+ "bin": {
+ "acorn": "bin/acorn"
+ },
+ "engines": {
+ "node": ">=0.4.0"
+ }
+ },
+ "node_modules/import-in-the-middle/node_modules/acorn-import-attributes": {
+ "version": "1.9.5",
+ "resolved": "https://registry.npmjs.org/acorn-import-attributes/-/acorn-import-attributes-1.9.5.tgz",
+ "integrity": "sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==",
+ "license": "MIT",
+ "peerDependencies": {
+ "acorn": "^8"
+ }
+ },
+ "node_modules/import-in-the-middle/node_modules/cjs-module-lexer": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-2.2.0.tgz",
+ "integrity": "sha512-4bHTS2YuzUvtoLjdy+98ykbNB5jS0+07EvFNXerqZQJ89F7DI6ET7OQo/HJuW6K0aVsKA9hj9/RVb2kQVOrPDQ==",
+ "license": "MIT"
+ },
"node_modules/import-local": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz",
@@ -35398,6 +35764,17 @@
"loose-envify": "^1.0.0"
}
},
+ "node_modules/inversify": {
+ "version": "7.10.3",
+ "resolved": "https://registry.npmjs.org/inversify/-/inversify-7.10.3.tgz",
+ "integrity": "sha512-pqcnrXWOg28LykoR/ndoPQJIgkoxtUgxbkcsH+43nmf1BcM4GfCBKjzC0IncWdQRYOKUdkKhOGAtQfdlhwAEiQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@inversifyjs/common": "1.5.2",
+ "@inversifyjs/container": "1.14.0",
+ "@inversifyjs/core": "9.1.0"
+ }
+ },
"node_modules/ip": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz",
@@ -42878,6 +43255,12 @@
"integrity": "sha512-qYvlv/exQ4+svI3UOvPUpLDF0OMX5euvUH0Ny4N5QyRyhNdgAgUrVH3iUINSzEPLvx0kbo/Bp28GJKIqvE7URw==",
"peer": true
},
+ "node_modules/module-details-from-path": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/module-details-from-path/-/module-details-from-path-1.0.4.tgz",
+ "integrity": "sha512-EGWKgxALGMgzvxYF1UyGTy0HXX/2vHLkw6+NvDKW2jypWbHpjQuj4UMcqQWXHERJhVGKikolT06G3bcKe4fi7w==",
+ "license": "MIT"
+ },
"node_modules/moment": {
"version": "2.29.3",
"resolved": "https://registry.npmjs.org/moment/-/moment-2.29.3.tgz",
@@ -42954,9 +43337,10 @@
}
},
"node_modules/ms": {
- "version": "2.1.2",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
- "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
+ "version": "2.1.3",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
+ "license": "MIT"
},
"node_modules/multibase": {
"version": "0.6.1",
@@ -43181,38 +43565,38 @@
"dev": true
},
"node_modules/next": {
- "version": "13.0.5",
- "resolved": "https://registry.npmjs.org/next/-/next-13.0.5.tgz",
- "integrity": "sha512-awpc3DkphyKydwCotcBnuKwh6hMqkT5xdiBK4OatJtOZurDPBYLP62jtM2be/4OunpmwIbsS0Eyv+ZGU97ciEg==",
+ "version": "13.3.4",
+ "resolved": "https://registry.npmjs.org/next/-/next-13.3.4.tgz",
+ "integrity": "sha512-sod7HeokBSvH5QV0KB+pXeLfcXUlLrGnVUXxHpmhilQ+nQYT3Im2O8DswD5e4uqbR8Pvdu9pcWgb1CbXZQZlmQ==",
+ "deprecated": "This version has a security vulnerability. Please upgrade to a patched version. See https://nextjs.org/blog/security-update-2025-12-11 for more details.",
+ "license": "MIT",
"dependencies": {
- "@next/env": "13.0.5",
- "@swc/helpers": "0.4.14",
+ "@next/env": "13.3.4",
+ "@swc/helpers": "0.5.1",
+ "busboy": "1.6.0",
"caniuse-lite": "^1.0.30001406",
"postcss": "8.4.14",
- "styled-jsx": "5.1.0"
+ "styled-jsx": "5.1.1"
},
"bin": {
"next": "dist/bin/next"
},
"engines": {
- "node": ">=14.6.0"
+ "node": ">=16.8.0"
},
"optionalDependencies": {
- "@next/swc-android-arm-eabi": "13.0.5",
- "@next/swc-android-arm64": "13.0.5",
- "@next/swc-darwin-arm64": "13.0.5",
- "@next/swc-darwin-x64": "13.0.5",
- "@next/swc-freebsd-x64": "13.0.5",
- "@next/swc-linux-arm-gnueabihf": "13.0.5",
- "@next/swc-linux-arm64-gnu": "13.0.5",
- "@next/swc-linux-arm64-musl": "13.0.5",
- "@next/swc-linux-x64-gnu": "13.0.5",
- "@next/swc-linux-x64-musl": "13.0.5",
- "@next/swc-win32-arm64-msvc": "13.0.5",
- "@next/swc-win32-ia32-msvc": "13.0.5",
- "@next/swc-win32-x64-msvc": "13.0.5"
- },
- "peerDependencies": {
+ "@next/swc-darwin-arm64": "13.3.4",
+ "@next/swc-darwin-x64": "13.3.4",
+ "@next/swc-linux-arm64-gnu": "13.3.4",
+ "@next/swc-linux-arm64-musl": "13.3.4",
+ "@next/swc-linux-x64-gnu": "13.3.4",
+ "@next/swc-linux-x64-musl": "13.3.4",
+ "@next/swc-win32-arm64-msvc": "13.3.4",
+ "@next/swc-win32-ia32-msvc": "13.3.4",
+ "@next/swc-win32-x64-msvc": "13.3.4"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": "^1.1.0",
"fibers": ">= 3.1.0",
"node-sass": "^6.0.0 || ^7.0.0",
"react": "^18.2.0",
@@ -43220,6 +43604,9 @@
"sass": "^1.3.0"
},
"peerDependenciesMeta": {
+ "@opentelemetry/api": {
+ "optional": true
+ },
"fibers": {
"optional": true
},
@@ -43231,6 +43618,264 @@
}
}
},
+ "node_modules/next-runtime-env": {
+ "version": "3.3.0",
+ "resolved": "https://registry.npmjs.org/next-runtime-env/-/next-runtime-env-3.3.0.tgz",
+ "integrity": "sha512-JgKVnog9mNbjbjH9csVpMnz2tB2cT5sLF+7O47i6Ze/s/GoiKdV7dHhJHk1gwXpo6h5qPj5PTzryldtSjvrHuQ==",
+ "license": "MIT",
+ "dependencies": {
+ "next": "^14",
+ "react": "^18"
+ },
+ "peerDependencies": {
+ "next": "^14",
+ "react": "^18"
+ }
+ },
+ "node_modules/next-runtime-env/node_modules/@next/env": {
+ "version": "14.2.33",
+ "resolved": "https://registry.npmjs.org/@next/env/-/env-14.2.33.tgz",
+ "integrity": "sha512-CgVHNZ1fRIlxkLhIX22flAZI/HmpDaZ8vwyJ/B0SDPTBuLZ1PJ+DWMjCHhqnExfmSQzA/PbZi8OAc7PAq2w9IA==",
+ "license": "MIT"
+ },
+ "node_modules/next-runtime-env/node_modules/@next/swc-darwin-arm64": {
+ "version": "14.2.33",
+ "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-14.2.33.tgz",
+ "integrity": "sha512-HqYnb6pxlsshoSTubdXKu15g3iivcbsMXg4bYpjL2iS/V6aQot+iyF4BUc2qA/J/n55YtvE4PHMKWBKGCF/+wA==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/next-runtime-env/node_modules/@next/swc-darwin-x64": {
+ "version": "14.2.33",
+ "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-14.2.33.tgz",
+ "integrity": "sha512-8HGBeAE5rX3jzKvF593XTTFg3gxeU4f+UWnswa6JPhzaR6+zblO5+fjltJWIZc4aUalqTclvN2QtTC37LxvZAA==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/next-runtime-env/node_modules/@next/swc-linux-arm64-gnu": {
+ "version": "14.2.33",
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-14.2.33.tgz",
+ "integrity": "sha512-JXMBka6lNNmqbkvcTtaX8Gu5by9547bukHQvPoLe9VRBx1gHwzf5tdt4AaezW85HAB3pikcvyqBToRTDA4DeLw==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/next-runtime-env/node_modules/@next/swc-linux-arm64-musl": {
+ "version": "14.2.33",
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-14.2.33.tgz",
+ "integrity": "sha512-Bm+QulsAItD/x6Ih8wGIMfRJy4G73tu1HJsrccPW6AfqdZd0Sfm5Imhgkgq2+kly065rYMnCOxTBvmvFY1BKfg==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/next-runtime-env/node_modules/@next/swc-linux-x64-gnu": {
+ "version": "14.2.33",
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-14.2.33.tgz",
+ "integrity": "sha512-FnFn+ZBgsVMbGDsTqo8zsnRzydvsGV8vfiWwUo1LD8FTmPTdV+otGSWKc4LJec0oSexFnCYVO4hX8P8qQKaSlg==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/next-runtime-env/node_modules/@next/swc-linux-x64-musl": {
+ "version": "14.2.33",
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-14.2.33.tgz",
+ "integrity": "sha512-345tsIWMzoXaQndUTDv1qypDRiebFxGYx9pYkhwY4hBRaOLt8UGfiWKr9FSSHs25dFIf8ZqIFaPdy5MljdoawA==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/next-runtime-env/node_modules/@next/swc-win32-arm64-msvc": {
+ "version": "14.2.33",
+ "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-14.2.33.tgz",
+ "integrity": "sha512-nscpt0G6UCTkrT2ppnJnFsYbPDQwmum4GNXYTeoTIdsmMydSKFz9Iny2jpaRupTb+Wl298+Rh82WKzt9LCcqSQ==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/next-runtime-env/node_modules/@next/swc-win32-ia32-msvc": {
+ "version": "14.2.33",
+ "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-14.2.33.tgz",
+ "integrity": "sha512-pc9LpGNKhJ0dXQhZ5QMmYxtARwwmWLpeocFmVG5Z0DzWq5Uf0izcI8tLc+qOpqxO1PWqZ5A7J1blrUIKrIFc7Q==",
+ "cpu": [
+ "ia32"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/next-runtime-env/node_modules/@next/swc-win32-x64-msvc": {
+ "version": "14.2.33",
+ "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-14.2.33.tgz",
+ "integrity": "sha512-nOjfZMy8B94MdisuzZo9/57xuFVLHJaDj5e/xrduJp9CV2/HrfxTRH2fbyLe+K9QT41WBLUd4iXX3R7jBp0EUg==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/next-runtime-env/node_modules/@swc/helpers": {
+ "version": "0.5.5",
+ "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.5.tgz",
+ "integrity": "sha512-KGYxvIOXcceOAbEk4bi/dVLEK9z8sZ0uBB3Il5b1rhfClSpcX0yfRO0KmTkqR2cnQDymwLB+25ZyMzICg/cm/A==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@swc/counter": "^0.1.3",
+ "tslib": "^2.4.0"
+ }
+ },
+ "node_modules/next-runtime-env/node_modules/next": {
+ "version": "14.2.33",
+ "resolved": "https://registry.npmjs.org/next/-/next-14.2.33.tgz",
+ "integrity": "sha512-GiKHLsD00t4ACm1p00VgrI0rUFAC9cRDGReKyERlM57aeEZkOQGcZTpIbsGn0b562FTPJWmYfKwplfO9EaT6ng==",
+ "license": "MIT",
+ "dependencies": {
+ "@next/env": "14.2.33",
+ "@swc/helpers": "0.5.5",
+ "busboy": "1.6.0",
+ "caniuse-lite": "^1.0.30001579",
+ "graceful-fs": "^4.2.11",
+ "postcss": "8.4.31",
+ "styled-jsx": "5.1.1"
+ },
+ "bin": {
+ "next": "dist/bin/next"
+ },
+ "engines": {
+ "node": ">=18.17.0"
+ },
+ "optionalDependencies": {
+ "@next/swc-darwin-arm64": "14.2.33",
+ "@next/swc-darwin-x64": "14.2.33",
+ "@next/swc-linux-arm64-gnu": "14.2.33",
+ "@next/swc-linux-arm64-musl": "14.2.33",
+ "@next/swc-linux-x64-gnu": "14.2.33",
+ "@next/swc-linux-x64-musl": "14.2.33",
+ "@next/swc-win32-arm64-msvc": "14.2.33",
+ "@next/swc-win32-ia32-msvc": "14.2.33",
+ "@next/swc-win32-x64-msvc": "14.2.33"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": "^1.1.0",
+ "@playwright/test": "^1.41.2",
+ "react": "^18.2.0",
+ "react-dom": "^18.2.0",
+ "sass": "^1.3.0"
+ },
+ "peerDependenciesMeta": {
+ "@opentelemetry/api": {
+ "optional": true
+ },
+ "@playwright/test": {
+ "optional": true
+ },
+ "sass": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/next-runtime-env/node_modules/picocolors": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
+ "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
+ "license": "ISC"
+ },
+ "node_modules/next-runtime-env/node_modules/postcss": {
+ "version": "8.4.31",
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz",
+ "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==",
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/postcss/"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/postcss"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "nanoid": "^3.3.6",
+ "picocolors": "^1.0.0",
+ "source-map-js": "^1.0.2"
+ },
+ "engines": {
+ "node": "^10 || ^12 || >=14"
+ }
+ },
"node_modules/next-tick": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.1.0.tgz",
@@ -43238,9 +43883,10 @@
"peer": true
},
"node_modules/next/node_modules/picocolors": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz",
- "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ=="
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
+ "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
+ "license": "ISC"
},
"node_modules/next/node_modules/postcss": {
"version": "8.4.14",
@@ -43256,6 +43902,7 @@
"url": "https://tidelift.com/funding/github/npm/postcss"
}
],
+ "license": "MIT",
"dependencies": {
"nanoid": "^3.3.4",
"picocolors": "^1.0.0",
@@ -48807,6 +49454,18 @@
"react-dom": "*"
}
},
+ "node_modules/react-error-boundary": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/react-error-boundary/-/react-error-boundary-6.0.0.tgz",
+ "integrity": "sha512-gdlJjD7NWr0IfkPlaREN2d9uUZUlksrfOx7SX62VRerwXbMY6ftGCIZua1VG1aXFNOimhISsTq+Owp725b9SiA==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/runtime": "^7.12.5"
+ },
+ "peerDependencies": {
+ "react": ">=16.13.1"
+ }
+ },
"node_modules/react-fast-compare": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/react-fast-compare/-/react-fast-compare-2.0.4.tgz",
@@ -49250,6 +49909,18 @@
"object-assign": "^4.1.1"
}
},
+ "node_modules/react18-json-view": {
+ "version": "0.2.9",
+ "resolved": "https://registry.npmjs.org/react18-json-view/-/react18-json-view-0.2.9.tgz",
+ "integrity": "sha512-z3JQgCwZRKbmWh54U94loCU6vE0ZoDBK7C8ZpcMYQB8jYMi+mR/fcgMI9jKgATeF0I6+OAF025PD+UKkXIqueQ==",
+ "license": "MIT",
+ "dependencies": {
+ "copy-to-clipboard": "^3.3.3"
+ },
+ "peerDependencies": {
+ "react": ">=16.8.0"
+ }
+ },
"node_modules/read-pkg": {
"version": "5.2.0",
"resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz",
@@ -49460,6 +50131,13 @@
"esprima": "~4.0.0"
}
},
+ "node_modules/reflect-metadata": {
+ "version": "0.2.2",
+ "resolved": "https://registry.npmjs.org/reflect-metadata/-/reflect-metadata-0.2.2.tgz",
+ "integrity": "sha512-urBwgfrvVP/eAyXx4hluJivBKzuEbSQs9rKWCrCkbSxNv8mxPcUZKeuoF3Uy4mJl3Lwprp6yy5/39VWigZ4K6Q==",
+ "license": "Apache-2.0",
+ "peer": true
+ },
"node_modules/reflect.getprototypeof": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.4.tgz",
@@ -51086,6 +51764,19 @@
"node": ">=0.10.0"
}
},
+ "node_modules/require-in-the-middle": {
+ "version": "8.0.1",
+ "resolved": "https://registry.npmjs.org/require-in-the-middle/-/require-in-the-middle-8.0.1.tgz",
+ "integrity": "sha512-QT7FVMXfWOYFbeRBF6nu+I6tr2Tf3u0q8RIEjNob/heKY/nh7drD/k7eeMFmSQgnTtCzLDcCu/XEnpW2wk4xCQ==",
+ "license": "MIT",
+ "dependencies": {
+ "debug": "^4.3.5",
+ "module-details-from-path": "^1.0.3"
+ },
+ "engines": {
+ "node": ">=9.3.0 || >=8.10.0 <9.0.0"
+ }
+ },
"node_modules/require-main-filename": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz",
@@ -51895,11 +52586,6 @@
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
"integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="
},
- "node_modules/send/node_modules/ms": {
- "version": "2.1.3",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
- "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="
- },
"node_modules/sentence-case": {
"version": "3.0.4",
"resolved": "https://registry.npmjs.org/sentence-case/-/sentence-case-3.0.4.tgz",
@@ -53162,7 +53848,6 @@
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz",
"integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==",
- "peer": true,
"engines": {
"node": ">=10.0.0"
}
@@ -53529,9 +54214,10 @@
}
},
"node_modules/styled-jsx": {
- "version": "5.1.0",
- "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.0.tgz",
- "integrity": "sha512-/iHaRJt9U7T+5tp6TRelLnqBqiaIT0HsO0+vgyj8hK2KUk7aejFqRrumqPUlAqDwAj8IbS/1hk3IhBAAK/FCUQ==",
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.1.tgz",
+ "integrity": "sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==",
+ "license": "MIT",
"dependencies": {
"client-only": "0.0.1"
},
@@ -57426,6 +58112,15 @@
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==",
"dev": true
},
+ "node_modules/zod": {
+ "version": "4.1.12",
+ "resolved": "https://registry.npmjs.org/zod/-/zod-4.1.12.tgz",
+ "integrity": "sha512-JInaHOamG8pt5+Ey8kGmdcAcg3OL9reK8ltczgHTAwNhMys/6ThXHityHxVV2p3fkw/c+MAvBHFVYHFZDmjMCQ==",
+ "license": "MIT",
+ "funding": {
+ "url": "https://github.com/sponsors/colinhacks"
+ }
+ },
"node_modules/zustand": {
"version": "3.7.2",
"resolved": "https://registry.npmjs.org/zustand/-/zustand-3.7.2.tgz",
diff --git a/package.json b/package.json
index 23d2908d4..784381e5f 100644
--- a/package.json
+++ b/package.json
@@ -6,11 +6,11 @@
"homepage": "https://pontus-x.eu",
"scripts": {
"start": "npm run pregenerate && next dev -p 8000",
- "build": "npm run pregenerate && next build",
+ "build": "npm run postinstall && npm run pregenerate && next build",
"build:static": "npm run build && next export",
"serve": "serve -s public/",
- "pregenerate": "bash scripts/pregenerate.sh",
- "set-barge-env": "bash scripts/barge-env.sh",
+ "pregenerate": "sh scripts/pregenerate.sh",
+ "set-barge-env": "sh scripts/barge-env.sh",
"test": "npm run pregenerate && npm run lint && npm run type-check && npm run jest",
"jest": "jest -c .jest/jest.config.js",
"jest:watch": "jest -c .jest/jest.config.js --watch",
@@ -33,9 +33,12 @@
"@oceanprotocol/lib": "^3.1.3",
"@oceanprotocol/typographies": "^0.1.0",
"@oceanprotocol/use-dark-mode": "^2.4.3",
+ "@opentelemetry/instrumentation-http": "^0.209.0",
+ "@tanstack/react-query": "^4.42.0",
"@tippyjs/react": "^4.2.6",
"@uiw/react-codemirror": "^4.19.5",
"@urql/exchange-refocus": "^1.0.0",
+ "@vercel/otel": "^2.1.0",
"axios": "^1.2.0",
"classnames": "^2.3.2",
"connectkit": "^1.3.0",
@@ -46,12 +49,14 @@
"filesize": "^10.0.7",
"formik": "^2.4.2",
"gray-matter": "^4.0.3",
+ "inversify": "^7.10.3",
"is-ipfs": "^8.0.1",
"is-url-superb": "^6.1.0",
"js-cookie": "^3.0.5",
"match-sorter": "^6.3.1",
"myetherwallet-blockies": "^0.1.1",
- "next": "13.0.5",
+ "next": "13.3.4",
+ "next-runtime-env": "^3.3.0",
"npm": "^9.6.5",
"query-string": "^8.1.0",
"react": "^18.2.0",
@@ -59,6 +64,7 @@
"react-data-table-component": "^7.5.3",
"react-dom": "^18.2.0",
"react-dotdotdot": "^1.3.1",
+ "react-error-boundary": "^6.0.0",
"react-modal": "^3.16.1",
"react-paginate": "^8.1.4",
"react-select": "^5.7.3",
@@ -66,6 +72,7 @@
"react-string-replace": "^1.1.1",
"react-tabs": "^6.0.2",
"react-toastify": "^9.1.3",
+ "react18-json-view": "^0.2.9",
"rehype-slug": "^6.0.0",
"rehype-stringify": "^10.0.0",
"remark": "^15.0.1",
@@ -79,7 +86,8 @@
"urql": "^3.0.3",
"use-debounce": "^9.0.4",
"wagmi": "^0.12.12",
- "yup": "^0.32.11"
+ "yup": "^0.32.11",
+ "zod": "^4.1.12"
},
"devDependencies": {
"@storybook/addon-essentials": "^6.5.13",
diff --git a/pontusxAddresses.json b/pontusxAddresses.json
index baa2602a0..f8fd3ea6d 100644
--- a/pontusxAddresses.json
+++ b/pontusxAddresses.json
@@ -1,736 +1,3651 @@
{
- "0x28080F654eED6CC00e8b16F4841E92CD0c2C0778": "deltaDAO AG",
- "0x628677D9A9d93a913182fa04893Da0ce4E6570Ee": "deltaDAO AG",
- "0xf8A493af0e72C2C62651Bf7b7d1a006806Fb646f": "deltaDAO AG",
- "0xf5b1E6f9a566E20de35d0C240D47F9cc08f33c0F": "deltaDAO AG",
- "0x50499814AE402563b5c34F6BD2F5C829A7693964": "deltaDAO AG",
- "0x04863f1E29Ea1aBF006fB1ecB129cAD892db0C90": "deltaDAO AG",
- "0xdA9ED09a94B1A2315e22157d75fd0b0bfC63B6Cc": "deltaDAO AG",
- "0x7AF6c5F0950A37b7C25da4367E9B56C03dE8234D": "deltaDAO AG",
- "0xC0E3B447c1e7B22769952E89389Ef2cD9B812Cc5": "deltaDAO AG",
- "0xBf252dD5b3a31A50Db34113e12517b21D143AC52": "deltaDAO AG",
- "0x0bd21cF4Da78f74c483a1109ac3A30794FBd556B": "deltaDAO AG",
- "0x9c26685b6E8e2997d9aAf3f1a642f1b1b3dB9580": "deltaDAO AG",
- "0xd0ea08826FA10eEaA3871a6AE680E5f15149F355": "deltaDAO AG",
- "0x4C84a36fCDb7Bc750294A7f3B5ad5CA8F74C4A52": "deltaDAO AG",
- "0x68C24FA5b2319C81b34f248d1f928601D2E5246B": "deltaDAO AG",
- "0x2859d961a6dBa6e7d30b2d383Af468edb4E7F4f6": "deltaDAO AG",
- "0xaBaf56FC1bB6b4FF9fA4378C3C8723d2B2444324": "deltaDAO AG",
- "0x0a7B96885b28deDE4a6887CA1150E36edb385BeE": "deltaDAO AG",
- "0xDF1c35c3d5178e9d98043b35a6737Bd861c191c9": "deltaDAO AG",
- "0x01e66950353400E93AEe7F041C0303103E2ef5Ab": "deltaDAO AG",
- "0x862E3fe199723945a38871dE4F736f1233589CE5": "deltaDAO AG",
- "0xFDC7BEc0aED8a584577fd59CbF56805eE8c976B3": "deltaDAO AG",
- "0x5f525cd29377DC2155C2AbCDaC0Ce45e630318b7": "deltaDAO AG",
- "0x3a69B365769a9dAb67865Ca5530c4B1D5259bCb7": "deltaDAO AG",
- "0x97870c129abc9877b66534e49f152585D6Ca3655": "deltaDAO AG",
- "0x1Ad061ad839f82C05767dACd2B5ab384E72B45a5": "deltaDAO AG",
- "0xFd4b5ae43f2aA446b02209098438890d3998cC9F": "deltaDAO AG",
- "0x732BF4fA8E57200621b0e1acbe8855c238823016": "deltaDAO AG",
- "0xa76Fa6837A6ffc9F123F2193717A5965c68B0cbA": "deltaDAO AG",
- "0xFaeb57c16D5E9A9f06c8c5dB12796f5a432Eb7d6": "deltaDAO AG",
- "0xb501FDaad0F0863C4c72f7EB9Abc23965DCa973d": "deltaDAO AG",
- "0x3dB4E0b1fC6072271BF51e9a0CC17E3c7C4C99f5": "deltaDAO AG",
- "0xe2DD09d719Da89e5a3D0F2549c7E24566e947260": "deltaDAO AG",
- "0x1072D3287A5cC513F40b425735E04355487f5F57": "deltaDAO AG",
- "0x26818079Ba707b2facFfcdc41445322f0e7e3042": "deltaDAO AG",
- "0x18aa7C29527E71b9F295f1bfB63e57F5a0A97282": "deltaDAO AG",
- "0x8d4198E9af22863d4269dDA6a41eF2BfA187AbAc": "deltaDAO AG",
- "0xb4026ac3562245bB0DAb9205D698Ab0410e3d723": "deltaDAO AG",
- "0x24D68bFBA0fB06ccFfD21dC3a5c0B65207Bd479a": "deltaDAO AG",
- "0xa51815143e6C578D3c27A7b6fA6E4C1Dfcac555C": "deltaDAO AG",
- "0xF9589F61C5Fc52113E12638CF6A7Fdffe443DfA1": "deltaDAO AG",
- "0x6432956a98E522F1B8a73a45245a5C6ff2c7f8f1": "deltaDAO AG",
- "0xD1Cb3E73a7bC632d2279114AA2783dcaD06517ca": "deltaDAO AG",
- "0xAEC291E9Eb4293d45a5B8aBE3549c0C7464e5C24": "deltaDAO AG",
- "0x4c7BfE3D6278eb996FC13c5f748bC7b1dBe593D8": "deltaDAO AG",
- "0x59bcD9665301CAB78bc6C31286F7203934c5fc0E": "deltaDAO AG",
- "0xf958C1F667f71C1C66C1702830A89057a90F40eE": "deltaDAO AG",
- "0xb042E9387f9dcBE2a98e8eeE0fe7e4e694115604": "deltaDAO AG",
- "0x4B010D64C7b2037ea2Dabea4d303c4c24b723d00": "deltaDAO AG",
- "0x03606Ad8E09caCf3269188fc04755d7556CFC1bf": "deltaDAO AG (dev0000)",
- "0x4A806a4851472F7cFd579d3FF5465F03c3c2B5d4": "PTW - TU Darmstadt",
- "0x257Ac5e233005d5C960BC261d04ad98166718d4a": "PTW - TU Darmstadt",
- "0x21CF19e1FaF3A62f82B432f82152e8c5C0FdBdaF": "PTW - TU Darmstadt",
- "0x6f9c23cAeB661D1ca9c58e0665fF3FEac008a33E": "PTW - TU Darmstadt",
- "0x9f4ceE0eBD03a1e9E4DcffaF876873d7a3e9595c": "AMIDS",
- "0x6E7bec8715955B6Cc90A5A1767cd981b90C5a245": "PTW - TU Darmstadt",
- "0x81336c245712DbF0E971de5463173bCaA9826d84": "IONOS Cloud",
- "0x56eA3Cc92144Db3bA2bdE25131F40c7B98F7eD32": "Exoscale",
- "0x6d006671dA78354C200B03eF5E58F948977362cD": "A1 Digital",
- "0x9Dc6aDA184fc98012D74F1C4f3f223183A4745D4": "Wobcom",
- "0x0337b320DEfAddd9aDbC518f8A9cee30b606d15b": "Arsys",
- "0xD7b90d6476091F6bc4CAaC40180FB300351fAb9F": "Arsys",
- "0xF20113edd04d98A64AD2A003B836677E1c9aACAD": "State Library of Berlin",
- "0x0279F7D611e8745BA16A4F1e83B752f8fc173870": "State Library of Berlin",
- "0x6B33b4Cc1CAa5b49bB2752D23B9B78e524e17654": "State Library of Berlin",
- "0x23035d7E3cddc44b345eBF9DDDA2e1aaeCeeEeA1": "State Library of Berlin",
- "0xb98B9304860Be2a90F86CFa738dbedEb6C6AdF98": "State Library of Berlin",
- "0xE098a4DE67034a17b23CDfB7E81C49296361974F": "State Library of Berlin",
- "0x67c39F79B1e5430104bCc4009A6210EAeB2672Bf": "State Library of Berlin",
- "0xEF193A800e956b9fF1c379B7Ac3C55FCA38aDB15": "State Library of Berlin",
- "0x8337649C1d86ab41d42ef91E303B814f9FfEC04d": "State Library of Berlin",
- "0xC309b5Cd4833315D495F8616A1B957E6c3F0Cc0b": "State Library of Berlin",
- "0x04707912117fb09c68F48BDC15Cf78F50501fF92": "State Library of Berlin",
- "0x92DCe2e6b29863CF190c520B81CB4153f2642a49": "State Library of Berlin",
- "0xD274318C312174eb7CCe872eE415b7398c8dA2be": "State Library of Berlin",
- "0x2E32B0e4e20C7A4162A6455b4A12e01D09472556": "State Library of Berlin",
- "0x4d7fE037831F077583a259B6437E542EffD6f2cD": "State Library of Berlin",
- "0xdf89102cDd2ccA60E88e480C6D609FB3bfFD4d54": "State Library of Berlin",
- "0x62078F05Eb4450272D7E492F3660835826906822": "Universitat de Lleida (UdL)",
- "0xD999bAaE98AC5246568FD726be8832c49626867D": "Universitat de Lleida (UdL)",
- "0x94549951623DD6c3265DBbB1b032d6cF48Ba7811": "Universitat de Lleida (UdL)",
- "0x38f8c44FFaa8bE015F2DCDcD258ceBBed911840d": "Centre d'Estudis Porcins (CEP)",
- "0xDf7a37EA1f42588Ea219Ec19328757F67BaBCeCD": "Centre d'Estudis Porcins (CEP)",
- "0xa702032E187E6A53EAddC28a735B414220712689": "Software AG",
- "0x0a477f6297413f20C4fBc15F93e34dacE4136123": "Software AG",
- "0x586000e6DA330E140b11a4aeEbb81963d67F336b": "TU Wien",
- "0x5c0bADfeEaE06699ABa04f465D1Fc360e6D38779": "TU Wien",
- "0xBA87B2E7F71013Fe6561a877928EA265531B06d1": "TU Wien",
- "0xcBd4c7A0C1fCC93aba46b8311c150D07cc7235c4": "TU Wien",
- "0xf596D17C4a3A5c92c4721627B9e5E5064651BF46": "Materna SE",
- "0xE90e1f337cBBaeD2bf30dD66165246e477F59158": "Materna SE",
- "0x3CEA8fBCbD1c745E081fD3937C18eE0b6Cc3f1b1": "Airbus",
- "0xF8dB4a6d529a14e3E029e2b8A9279f408909Fa20": "OHB",
- "0x48535044200dAE3FD4f5b5C3f9b077fa5c230Ef3": "T-Systems Multimedia Solutions GmbH",
- "0x212c355c3ce41a272606da61F661dDd2b7F8a4B1": "IKS - Gesellschaft für Informations- und Kommunikationssysteme mbH",
- "0x44C34FbBB727bDC648E65feCfF3FB9D4c85f1fe4": "msg David GmbH",
- "0x8fBF860883BB71D691053A4363030Dc1c65f7017": "Detecon",
- "0x7DF1674a1e3449778eEB324652d3FF3Cb5046753": "SINTEF",
- "0xe3Df4851c094f5F6F1AC9AbfA4FC2075276195Ec": "Peaq",
- "0xB21282F443EB0D490819d98F2976758af5C979B3": "Datarella",
- "0x0aec046a558F13Ff18aAEc5E6f76084185358cdf": "Datarella",
- "0x6fE8aD445AD86b3d1325F79955Ef28d6e9cb2258": "Robert Bosch GmbH",
- "0x51Decd187744bCfAD1BAb0A3E71dD68fAC0ba478": "TU Dortmund",
- "0xa98A6eefbAE870b88a9C7A43f4b50066A01c93b6": "RWS",
- "0x9dfbda23b65efB1c836828D74a96eB8528A60f3C": "Craftworks",
- "0xb2AF8b92bFaC5299Cb6EDEf16150BFD1d4d26a93": "Concircle Österreich GmbH",
- "0x2b92BF0496B7B41ea2d723325DDE96651795c784": "DENSO AUTOMOTIVE Deutschland GmbH",
- "0xe761F8e33c71D08A9323Cb2c711aB4Fae2634276": "DENSO AUTOMOTIVE Deutschland GmbH",
- "0x895975869261A215813e33568a295F94A3F301ed": "Struggle Creative Oy",
- "0xDa4fc9E82Ac4E44207a1f74137493D3437D80761": "Sphereon",
- "0xfc739f2F91921eb710878ad2Ca38C147a784C96f": "Austrian Institute of Technology",
- "0xF62bF6371Ee020Cb2164Ac3C338514DBbb93A0D4": "acatech",
- "0x6E1cE3530A12F89cF567788C132454E5dC7D3cCE": "Spanish Ministry of Economic Affairs and Digital Transformation",
- "0x943CaA8afCAdd2F64a7cE9E53A91d5ea0BEb40c1": "Eviden Germany GmbH",
- "0x7A6246e02B2aA276203469Cfb839a2666520D8b5": "Eviden Germany GmbH",
- "0x9391291b0Df512B20810183744De8272774b6655": "TU Delft",
- "0x2ee3c4F19f90237B7C45cfAD6B5dC4b5840563Ec": "Perpetuum Progress GmbH",
- "0x203C7AA993EED06932FA327a192de9A8370b5Ab4": "Mercedes-Benz Singapore Pte. Ltd.",
- "0x4d6240C7Ef355a2E85c13B26A49A35908ce853E5": "Mercedes-Benz Singapore Pte. Ltd.",
- "0x2E33C6014222A47585605F8379a1877eaaF0ec13": "Mercedes-Benz Singapore Pte. Ltd.",
- "0x6bF77769e84045a9EAC64573e70a5562457C52ad": "Höchstleistungsrechenzentrum Stuttgart (HLRS)",
- "0x17c8D253443F9E7305A2539d7aF177B21aAD3355": "Ruhr-Universität Bochum",
- "0xFDF411B7A23182e7F0a635bdF0d25f0fCb2aAf74": "north.io GmbH",
- "0x3560626F234eD181E807E4e31ded56D9aca1ac58": "CONTACT Software GmbH",
- "0xF0926FbE8e60E54aFB4fD296B2698230ab32799b": "Universität Siegen",
- "0xAA782a260Ad773bca5Ff0535356CB0F7B94Cd254": "AWS-Institut für digitale Produkte und Prozesse gGmbH",
- "0x2aC6802160A74677B7cEC1aaD7E41Ec968D57896": "5D Institut GmbH",
- "0xFd1BEC7E551fAeA6102045D720dD693c4e9C8E06": "Accenture",
- "0xa2199E3f60fC244037Efd5A77714CC05F604F855": "Airbus Defence and Space GmbH",
- "0x5101ea56E29f5dc03285809b6157f0588ff255D0": "Bernard Technologies GmbH",
- "0x8B7f2b75B7F87D3125C8B0eDB85639B441BBcE21": "Deutsches Forschungszentrum für Künstliche Intelligenz GmbH",
- "0xB64d95B85FcbDb868AaF0075B023E36f374Bc4F7": "Deutsches Forschungszentrum für Künstliche Intelligenz GmbH",
- "0xb11124Dfa40E44b3283068fd07bf6FdE60caf06A": "Hochschule für angewandte Wissenschaften Kempten",
- "0x632460b14aDd90aD9430e381B4662779cC1ab7a6": "Fraunhofer-Institut für Graphische Datenverarbeitung IGD",
- "0x1f65110b63B6044f1E92543C09231842131798C7": "52°North GmbH",
- "0xDFa29AE20eac7f203DdDbe15E1830985e99143B8": "TrueOcean GmbH",
- "0xFfA05d656465568BE83B11bf274c5458AC8401AC": "Institute for Language and Speech Processing",
- "0xb500BfE3d89b5D6b0d2b91841c3A3aD568Cb0FdC": "Vicomtech",
- "0x8BF36BEFC22a7b9c1a546139bFd4ae8420bcFf0e": "Fraunhofer IAIS",
- "0x2dB30B996C0E2990F836685Cf1A2939b3299f8e5": "Berger Holding GmbH & Co. KG",
- "0x224482ebcf914b9FA9E312036B377e26B676E534": "Christoph Kroschke GmbH",
- "0xD580c01E2f503287006138a94eBBc537Fe7eBD25": "Brinkhaus GmbH",
- "0x4B107057aB8278c7d9436bf76230d16e5F7BaD16": "Gühring KG",
- "0x7bf493b142AB0bb37c7f766A1585245901891685": "Fraunhofer-Institut für Werkzeugmaschinen und Umformtechnik IWU",
- "0x1c0c9211E8Ec8E0253A53880D5481e4580B62125": "imc information multimedia communication AG",
- "0xEEe803bEFd2B4f229E57523Edb11CDE38DD1a23E": "SAP Fioneer GmbH",
- "0xb828bA1850aA11daA1890896573Aa6008221A671": "NT Neue Technologie AG",
- "0x005d24698bF41c398ECF15a93455621932a6e19F": "IONOS SE",
- "0x746d4715c24fc4d26D02A558ACF98dC717C68E1e": "ScopeSET GmbH",
- "0x1Bf21DCb771Aba18B1D23AA6D8a619C1AB1811a4": "RIB Software GmbH",
- "0x04FEA446847c3539d35Cca0a74Cb82Da811BAfc3": "msg DAVID GmbH",
- "0x69bF63B2Bb6A93fc4ff434595A72a4ED313E5698": "Arvato Systems GmbH",
- "0xEdfd506dd449Cd06c91f51Fe9DfE4e3E57B2F8f5": "Fraunhofer-Institut für Produktionsanlagen und Konstruktionstechnik",
- "0x0763BfBcBfA0126b5A5509fB1185b7b6476BdAd8": "OSISM GmbH",
- "0x54d2946677CC16E06Efd6161A4abFA17fc98Afc3": "Netcompany-Intrasoft S.A.",
- "0x5880C2C30C922FE700fc079e1b6BBa7e9E7DE577": "Stackable GmbH",
- "0xc2350eA5913511A95c1aBED51de377A0b92846Be": "FZI Forschungszentrum Informatik",
- "0x0c85Cd08E6643Fa3E4B75268431d19CcFC99C916": "ProCarement GmbH",
- "0x1153265057782e8C57292CA590E50acC36037204": "Hochschule Furtwangen University (HFU)",
- "0xF211efa0C51559e6730db3Ba6FE1f1D46A68BE14": "Daten-Kompetenzzentrum Städte und Regionen DKSR GmbH",
- "0x7209bd8fDd841358a3CF9E7DaD8D9dCe2E4BbBB8": "GMN Paul Müller Industrie GmbH & Co. KG",
- "0xDB5807EacA2937f6264c5725538f8Ec357b4d3b2": "Fraunhofer-Institut für Offene Kommunikationssysteme FOKUS",
- "0x8482256AC35fcA568a53CfD77Af9538FEC0691bb": "Bechtle Aktiengesellschaft",
- "0x985f314171DFc0Ec3443E32b262c3135E094eD72": "Bundesdruckerei Gruppe GmbH",
- "0x99c030936B5E7381E65B645d3762A93147EB15F7": "Fraunhofer IOSB",
- "0x7104a77Ca5FfC6D3f0840048C307d05EA3b529C0": "embeteco GmbH & Co. KG",
- "0x9c373e9f125497281f37AeF603fa99572856Bc38": "T-Systems International GmbH",
- "0x8FAF0702C51c94b5848774129047d75cEe49EE87": "IPROconsult GmbH",
- "0x3EAbA16E4Ac451D85839A42eb9e7C61F157C88b7": "Elektra Solar GmbH",
- "0x1c99F7C29EE0e79CAAD8E4d0Cc0b95D5Ece62294": "Setlabs Research",
- "0xb9C596E9eC598a865b51f3F53ae7d122B7b7a937": "Schüßler-Plan Digital GmbH",
- "0xb7cF56a08F2B6ccF250B431125850968b7f6a950": "Data Machine Intelligence Solutions GmbH",
- "0x4476123c4B4706cf88CbfA055b72726Baa1e8041": "Deutsches Zentrum für Luft- und Raumfahrt e. V. (DLR)",
- "0x9309Ce467475DbB0a9c549B988F6571EB024507C": "OHB System AG",
- "0xb51d556E910Dd1887602034bbB66DA63EaA80ce2": "C&S Computer und Software GmbH",
- "0x007dB3DC8De9ae0F8AfeeBf1f7C92CcbD1A75Fd7": "eco - Verband der Internetwirtschaft e.V.",
- "0xe70bBA7bC033Bf1Ce6Fa3328eCFAAc8966E66966": "Institut für Automation und Kommunikation e. V.",
- "0xE4EE92b3a6B661b7148305Fa3A8d96062CBFAFc5": "Fujitsu Services GmbH",
- "0x37e01308d6A0E322dECc457a13E0B2b2086D84B1": "RADIUSMEDIA KG",
- "0x9Adf8e343ec1C7dB2B44e420bB8F4Cc51dEbFb7a": "ahu GmbH Wasser Boden Geomatik",
- "0xE64872A181F0695DA0660fE0B809a89A3bA359AA": "Hochschule Offenburg (HSO)",
- "0x533d456D3D5c16E6390647E2167678b7a76A4840": "FeltLabs",
- "0x56e194D46fF305560f51D06cE84649C1DD91d2F8": "FeltLabs",
- "0x61DB12d8b636Cb49ea09eCa58a893dA9480E1F33": "BigchainDB GmbH",
- "0xC8a08b33995594bfdB0ef9c18EB72da0469E396F": "Deal ex Machina",
- "0x289Ff19C1e544B6E9488d5E79966491A2bAa88C9": "Deloitte",
- "0x2650e382770A04bE0f7E362ed578FB261A60F4b3": "3D Mapping Solutions GmbH",
- "0x172b3eB3BDa62e81c171d340eC4a8C70f3d044EF": "Vodafone Group Services Limited",
- "0xf1F30d7048775F02139Be30067e984F2C2d1812a": "Vodafone Group Services Limited",
- "0xc21854fC5B997afa00c75b5098842a61F6E18e5B": "Feuerwehr Braunschweig",
- "0x3561F6126Ce77A98fdC09DA2815919d5E04879D5": "Airbus Defense and Space GmbH",
- "0xaDD9344fc33530dE1F2fb338de4Cf25f7d8a6E92": "Airbus Defense and Space GmbH",
- "0xD9d17aC4b23222D0F9055723127acCaeeE834AD7": "Airbus Defense and Space GmbH",
- "0x81c337F4a5113E30919F588F178a361ade1D1Be2": "ZARM Technik AG",
- "0xA38E2b6fFf3d9c66270253c7fE4Dcb5B088020D5": "htw Saar",
- "0x3BB6944351d156fAF798f952C2838ef5bac68E40": "Centre de Visió per Computador (CVC)",
- "0xC09c6A1d5538E7ed135d6146241c8da11e92130B": "Freie und Hansestadt Hamburg",
- "0xA933f297ca605434850419951685ACeEcE2Bc88e": "IGH Infotec AG",
- "0xd1E02B17524C53B337C22BF9D414bc15f933C3f0": "itemis AG",
- "0x4DdaE8989871DB4fAB65d62775e20c577340F8bE": "inovex GmbH",
- "0xAaeA7A824cffffFFf9Dd6EC51D7D7B0abA3f205F": "neusta aerospace GmbH",
- "0xf9eaebd346E9D414f4D4210CB12e43cc226038cF": "DLR GfR mbH",
- "0xdbe749D939ea958aC64A5bdf163B05096E260572": "Valispace GmbH",
- "0x938224aC9e4832C517818B147BB1f6b10ADdCd26": "Valispace GmbH",
- "0xAE823B7a6ad5b79da6d180Dbe91E7C810abAcCA4": "grandcentrix GmbH",
- "0x2B9C7E0d7Be68ec6b519Dad050CD0A4bf130B6A4": "DIO",
- "0x8e8D96aD41025EAFE3D4C198afca6c1eb5EB7a32": "SSC-Services GmbH",
- "0x689aB080FeF2e5D7C3e434E4f383d0Cf266F5F26": "enviroCar-01",
- "0xdd0a0278f6BAF167999ccd8Aa6C11A9e2fA37F0a": "Approve EUROe",
- "0xdCa2bf6c67d7ffc8003B62bE3517b45506Ca2950": "XAsia Probability Data",
- "0x90A5C7b01A19D451056086789b7932bfd393EADC": "XAsia Probability",
- "0x952D30877699598e10fCAF57D1728d1D08cCf626": "OCR Test 1",
- "0xF9be108f1e6D1C053273b87f6eE1cb6B6AdCf615": "XAsia Data",
- "0x744a5B098dbf7FD7c4326F9424C29Fdd63921f97": "XAsia Analysis",
- "0x5C2867c3862cC9fA134fE3441354A877262b4D63": "Digital PMO",
- "0x629A5175d4ee48AC7F9F4b05F92B9714d38C445a": "Detect Software",
- "0xf2204753Cbf117622900Ac62eA97Fd5FE1c5855A": "Defect Imageset 1 v2",
- "0xef0E7512F7AF5d4254eA39c7295D411bb3b73321": "CO2 Estimate",
- "0xe6b1b66E6f2610B76e92aF9EEeE94a3a153fb733": "EuProGigant 820C",
- "0x4FD0745e945AE67FDbbD2935d8F434c0cc3331f7": "EuProGigant 821C",
- "0xD73b05792607dB02C7d5b280C8cc51D1F5cB0aeB": "EuProGigant 824C",
- "0xCBb032a8E5862981eFfCD8883cdf3871e58BC124": "EuProGigant 829C",
- "0x7a79678fB31C855B382797e029b7f517a6B581A1": "EuProGigant 830C",
- "0x59Ba45B05F68b95B57e69D0d391aF732B3c241a0": "EuProGigant 844C",
- "0x269D6c8c3741c86B318493c41F186994956B8dd8": "EuProGigant 846C",
- "0x401fABA45ad4D66095Ad394f701499B920392308": "EuProGigant 847C",
- "0x7210fA5f4F82b66564181699C8Cb09A1FdD7D474": "EuProGigant 848C",
- "0x06815Dc89b8d804935447abB3EcF78e588ED4FeD": "EuProGigant 849C",
- "0x94E6892daBBb49373199744eE694CbC6128c4a16": "EuProGigant 850C",
- "0x83565B4fD5C24aa8075671BeC7d6463baa7D6554": "EuProGigant 851C",
- "0x46B08D505195F4826797dC67D315dEfa77E08C92": "EuProGigant 853C",
- "0x0A1d8040C1CCe0597586e5CB033737E12ad1F178": "EuProGigant 854C",
- "0x5217fC46348C6404Ed45A06DFe38374263C6Dac1": "EuProGigant 855C",
- "0xdDdB40FF8b2971EB7D87AFdFe189Ab814Dd36c88": "EuProGigant 856C",
- "0x218F13bB2d52CE5B9Eaa440B923FC738e916706F": "EuProGigant 857C",
- "0xbCd8c5eEC87bb67f61C0D7c61bd1e144667a97d7": "EuProGigant 858C",
- "0x721c13C16914b1Dcc9f16Ca7F36443E3FF1f669d": "EuProGigant 880C",
- "0x4800A8709656D23707260831552252C28D71B7A3": "EuProGigant 881C",
- "0xA1C749aA0b77D129c181Cb7C7bDCB0D677AA5679": "EuProGigant 882C",
- "0xbB340Bb7211AF5eE61DF181CAD3c46E5cce7C18B": "Map Service HH 01",
- "0x085BD42cFf8a197866635F24200d34BEa2E562e7": "moveID RCM 02",
- "0xE598D4f268253c933db79CdE21eed9ccd7C06AEA": "moveID RCM 01",
- "0x4E0d0d9442036Ab25DD0318Ea14d1652b5e0B4Ff": "moveID Images 18",
- "0x382045266FB802c261d9755E7724594753DD611d": "moveID Images 17",
- "0xfe93047A10e4540977386004bF2863D4230639C2": "moveID Images 16",
- "0xbEe092Bb89C7B167D6E63E952d15e53D3B08cA45": "moveID Images 15",
- "0x998aB7f4d9620FD1DBBF12272435caE458D16e1A": "moveID Images 14",
- "0x56163d00093bDdA803Cb826DBB563f4c5Bb2b1B2": "moveID Images 13",
- "0x411b68263ece6f7179Eec3F537F4a1981d075ec0": "moveID Images 12",
- "0x28FAf2743f21AA0EAE14a37A4daDF25E79f38AE0": "moveID Images 11",
- "0x23E55F6DF3325ad0a2605d4930CBbBDd68CfAF51": "moveID Images 10",
- "0x68a6a229c1485B68A759a9731983456364de5DAD": "moveID Images 9",
- "0x16dD1FB1e55918dccd7fBa2525e764BB1Ee33a86": "moveID Images 8",
- "0xf4C33572Ca1c9A06D3d1D92e601B3559c2E1A436": "moveID Images 7",
- "0xc9EC083C3aaaAC367643F5C72F5003d4ccb67397": "moveID Images 6",
- "0x0A5adb41901ac503fC2400B5a2e38c70A6CE86bd": "moveID Images 5",
- "0xe8ecC6c91391854861EB55fa270C30E12Af4F1E4": "moveID Images 4",
- "0xAcec258c049Bbf6955e25c84184ba38C54552a27": "moveID Images 3",
- "0x2010bEEe740F4aE18d203Fc07cc8F5d92760eb76": "moveID Images 2",
- "0x5bfa02EA01566a52593F6B218d95Cfd3Ac7b4A4b": "moveID Images 1",
- "0x6C09c6561618E84052204Efdd1a5844a8EA2cAd5": "pro-micron GmbH",
- "0x56289213416634216ff0BccF3671653863CE6aa1": "Goudappel BV",
- "0x1E423FD6c2Ce13E34bF0dB8f0Ad5CCF372578C33": "Posedio",
- "0xD7783c77A0bd22914872BEbdFa1c00204fF9Ec50": "Deal ex Machina SAS",
- "0x3F820b9D0A310a3C689EbC425a5D864D31bFE454": "Nimbus Connected",
- "0x25582EaCC369Fa9830394A78664337ED3eD7a367": "Secret Dummy",
- "0x70adaBC2BbD139e64f06f2cf6d0e2180cb5E523a": "Zoning Service",
- "0x8D8CBbf19b94e2C2B456AC218C5e833C9eA08b5e": "THL600 Spec.",
- "0x707d9Cf07b2349315e87448A1C4A4B5092468287": "THL600 Spec.",
- "0xAeb4A2bE7Eb32Ce51A64d75AD00DBfb7E05966a4": "Sun Sensor v1",
- "0x6044e53f7Aaf1fA456cD7461143657f3c53CeCe1": "GPS v2",
- "0x7Ef230b905927Bf5aD7610894Da728f85C828faB": "Gyroscope v1",
- "0x2678228892CE9c15382BC8F38911e4098f8c131C": "Magnetometer v3",
- "0x3D308451D0eE3B1E1c6c2b24f3722A09331C566E": "Magnettorquer v1",
- "0x5c87001e824910bFd22F216150413C8EB52e7c4a": "Reaction v2",
- "0x0f788f429950fa70961297227B0669109f0Ab5B7": "Star_Tracker v2",
- "0x5144012b36Ff713448b9D11CA9aC75f00CD143CC": "Star_Tracker v3",
- "0xA2cd83A9a9779d8434927843247ee685A1e03a7A": "Star_Tracker v4",
- "0x60115cc83fc5a44D37bA6c4C1a25323019e255A1": "Star_Tracker v5",
- "0x539158e4bdCf966E301881fcbfB6E88cB6491BEe": "HEATER v1",
- "0x80126b685f0aB7358745Eccc1AB1376D6BdBB12f": "THERMISTOR_1K v2",
- "0x5C5637268bd9fD28e365B7a492e8cF9e19da8f24": "TVL",
- "0xc1dF3Cd04BE1159f1b6e27Dfa04a846FAbc959dc": "BEEBUCKET GmbH",
- "0xd794CeB60d49755762C17bD7Cc5f613FE363b9F6": "Neoception GmbH",
- "0x70aef11232114e64d8ff1bc1b77dcea0dfeb5af7": "Load Test 20",
- "0x8019b807912f3fc1787f7f4c60200bbe3e0cea09": "Load Test 19",
- "0x98efc94ada3397f1e8a36d5b393350f1c3b6da5b": "Load Test 18",
- "0x09f012fd0e6d9d5be8b1c2e98e8a221b4bee121b": "Load Test 17",
- "0x3d49b6ce1eb74b01c6ded0a275a22949e2726715": "Load Test 16",
- "0xed7a18fdee06e3e4fb50e717567a357711615f09": "Load Test 15",
- "0x9332c77c7cbddee7824bab4f20002e7aa716898e": "Load Test 14",
- "0x0dfe520a6f548bf0688914b109055e77f39d7941": "Load Test 13",
- "0x181aaaa8b8fa28b909b15e7d039e242410fdd526": "Load Test 12",
- "0x32d5114ef59b0567865caa1110a6ce7369e886d4": "Load Test 11",
- "0x6fcc2c7bec531289c47126c8113822788e147304": "Load Test 10",
- "0xefe599c6fc93e83ecca15a6e22bf33372a0cab4f": "Load Test 09",
- "0x35d8592f5b7c616442fc1053db23b582661b335f": "Load Test 08",
- "0x53c25cd5cdb0bdb444f0b972622c43d5a1787476": "Load Test 07",
- "0x9e8be5df26a1e2e5356118a54b40832aad3ea99d": "Load Test 06",
- "0x8e7092d647648359ad504650e5555d7ff41c4476": "Load Test 05",
- "0x5a2b79e232f205af2a6fbc20edadd2952b73fe8d": "Load Test 04",
- "0xab10aaa8da79f5d1a126b98fe663024e38cc2d39": "Load Test 03",
- "0x5460fccb858793ea5d176fedc6b46ed1a1f9e1ce": "Load Test 02",
- "0x85ac41ef595ae19dfe7fa5c7fceb251fdcfce327": "Load Test 01",
- "0x1B76F1026B29f4bBf18009E44fD069b8915B3960": "Load Tester 01",
- "0x3307020Da97cE08e1B296042E99015bF99ad1D43": "Load Tester 02",
- "0x772ff6cA16103de9ADC15faea85e68Ba87b885DE": "Load Tester 03",
- "0x660B6D6b83cE812c8d2B977B5Ee216b89e10153c": "Load Tester 04",
- "0xd7827e25Ab8aFF11C21a9B6655fD7a6CE304f912": "Load Tester 05",
- "0x10b07F5D3ba056dF3afe94dCC29c446a59462fBe": "Load Tester 06",
- "0x1Eb047444D65EAB14EcBd8d0c8d290CCF1D74480": "Load Tester 07",
- "0x741F71533929bffB17d37830db3A1B88997D7936": "Load Tester 08",
- "0xC7e1a8858760C09fe24b46dE0DFaEa7ee3CF8721": "Load Tester 09",
- "0x27b7534b018ac11BD377f668546906C6aCD52c28": "Load Tester 10",
- "0xC844DE2AF6b401B10Fe6f0733EfE2C98048b0C90": "Load Tester 11",
- "0x87C1B399DDc7Ffdc2849672fd80600b2Fe1BE49a": "Load Tester 12",
- "0x1057c71CF2932E7ceF4Fab53c42f974FA6462494": "Load Tester 13",
- "0x1eC6c60332b676d9f81CB9DED9cC21CB4294cbFc": "Load Tester 14",
- "0x80D70Ac246695E925ba32389d062041Ddc3b36b5": "Load Tester 15",
- "0x3541901cF20E57cE127ca19960De4bB907FfBaB3": "Load Tester 16",
- "0x77d48a2Ed620e9743eefcf9109BeaB361c21A7d5": "Load Tester 17",
- "0x89974C9Bb0A2433afD4Ae8A11D189e7aAC1Cae9F": "Load Tester 18",
- "0x7Cc6a9486AcCa9756a19504f9d3DD5E75C0c0850": "Load Tester 19",
- "0x8e2dA7fc24D4b253F4829987240BF5FDC73550A3": "Load Tester 20",
- "0xdA1177705EC8ac8AaCD222140031f4066faFD552": "Load Tester 21",
- "0x7C052DED09B3275a5aCd0f7395886ec489bfD524": "Load Tester 22",
- "0xe3426274150c4a0662D213f490ADb71015E5264F": "Load Tester 23",
- "0x241C279Dc6cDd323d4Ea7c9eb6523bEDaCeC32E9": "Load Tester 24",
- "0x2C8909E9F06e35a0f5E30Ee4864ba5B9d69bb2FD": "Load Tester 25",
- "0x083C0EeE08e5A2604cEb685e44e292825A22bD99": "Load Tester 26",
- "0x1A9eB6f22907fDF82885EF317691D5a736c3b26c": "Load Tester 27",
- "0x28c816efb4caDeF6871f87AfF80E968105FEb534": "Load Tester 28",
- "0x997a77423aA7E94461255A0ADA92B042Da96A4F4": "Load Tester 29",
- "0x4342df26FFA55043E90Aac6459c56f1f19955d09": "Load Tester 30",
- "0x5Dd4b45b0209bB093AA4e2555255ee099f168eE8": "Load Tester 31",
- "0x04c787818F35922475561C6E89eFcD98e2c662d0": "Load Tester 32",
- "0x2f56Cb0560bf75c56395a26DcC7359a5FFCA579b": "Load Tester 33",
- "0x8256d95B16170E60b3f0f43dA671F3F65Ca8e6ef": "Load Tester 34",
- "0xf447B099fe1436649BE6243d0D47A938373D0828": "Load Tester 35",
- "0x7f849F47aC00B4c28CB6F40E3E2fe5fD611E6818": "Load Tester 36",
- "0x1CA2D65f5E77ebDb01cf07C100cddC076c07e50A": "Load Tester 37",
- "0x817b569b9907b193fFc3EB6398F5f2d44681f8ab": "Load Tester 38",
- "0x7c537c0ef735eFAA0BffA8FC6e1A1c6384674745": "Load Tester 39",
- "0x8c01fa36a7792950F567B386C3f8e57C10C45798": "Load Tester 40",
- "0xBdb3D87390F841126b1dbE7424c62b22537418c0": "Load Tester 41",
- "0xd1E1B335666acCBd5b29b38B3fB3D804D0A92082": "Load Tester 42",
- "0xBd06EeA98B715a4479D2431E9C466E72466F6863": "Load Tester 43",
- "0x6828038D66f0151E2b77808DFb5Ee85033dEC989": "Load Tester 44",
- "0xD9ff7196baAAf1D789937A09FbD48629fba5FDD5": "Load Tester 45",
- "0xCD5Bb8bDAD37D66a210C9DDDCD048405AA56659a": "Load Tester 46",
- "0x8b93Ee1bF059CEDbc2804CC2600DFcaF18D22885": "Load Tester 47",
- "0x9C7Bb07F78282c94A41Df6957762a25fFE9C537f": "Load Tester 48",
- "0x3B89Dc71d8f672dEaE93aDf1285eBd08fDf44244": "Load Tester 49",
- "0x858783462412A54A7ad9F163d70D0cC801bc7e16": "Load Tester 50",
- "0xdDc76C84745D49635e6c39e49D18CeF9DB195122": "Load Tester 51",
- "0x2C1605e60e3019fa5FdF70f0715d6fCaab7cFec7": "Load Tester 52",
- "0xB1267700D5F30DE00772342E67A827A1203307bB": "Load Tester 53",
- "0x26Eb315Ec8fe49fcFF9D633e2a8d40d8F32fc796": "Load Tester 54",
- "0x8dD9Cc8d55d2e6691b9e2B7949A122299D5cE705": "Load Tester 55",
- "0x42126600ce103CEe55e014fa2202006501cCe353": "Load Tester 56",
- "0xD6DDAacac332ae83294Eb6829E8A4a528AF4693e": "Load Tester 57",
- "0x7EaaAf241dA677cF6228A760c6Dd9Ff320cc485e": "Load Tester 58",
- "0xb88C670CFd5D394398EB67f9BfCa2412a4fA4551": "Load Tester 59",
- "0x4C9608F75B1A1644beA371659a2f7855C9Cc9365": "Load Tester 60",
- "0x62De34F259FE1DFA6D1f052112ec9311DB5970a2": "Load Tester 61",
- "0xe73AD17E137D6c461023624a361dE73a4c4b44E2": "Load Tester 62",
- "0x7F455c46E2C344D16a4f2b6B64e8B1F2e32efBB6": "Load Tester 63",
- "0x5D295C73d81dc0007155cB747Bf8A64A764bE8a9": "Load Tester 64",
- "0xFf9B9702E5793ffDD2bC96Cd0251A9762B5c478D": "Load Tester 65",
- "0x49D8c57648d0D1BC7A171c7c750be0a2796bada2": "Load Tester 66",
- "0x51FF3049B740069B0f6233F7bBBbfe2cEB421FEB": "Load Tester 67",
- "0x778277990021B0491F1217FA2Ccc4988a932623C": "Load Tester 68",
- "0xc66dF9a5e337a5544a8931e1F982A40281eCBaec": "Load Tester 69",
- "0x70A997Ac1e85a34a3bae65F493b13b72c56Db9f4": "Load Tester 70",
- "0x59e41768E6a0cbDAD5Aea9ccE73708db58d60792": "Load Tester 71",
- "0xA51837F0666722cB7f52632E771F4AA5cd88F2d0": "Load Tester 72",
- "0x2f604877943F3DBb9d3a386e1624E6c678e4897c": "Load Tester 73",
- "0x8c2a91C6ba92e113971C0c5EE1655CB216f3b0B3": "Load Tester 74",
- "0x9Dd1111588a9d738CF3547EF00C63130D17F5A76": "Load Tester 75",
- "0xef5D4f89eE6e2741ceCB171e29d359F29b385daE": "Load Tester 76",
- "0xB4DB1f7646Ce22Ed99A1677e849396F6ee61D856": "Load Tester 77",
- "0xFca4005898f118d3dD09b50096b92CA8fb1d37d9": "Load Tester 78",
- "0xFDEa5E54A8BD60f5950e150E5904C42De5F680EB": "Load Tester 79",
- "0x32F50dcA56A707fE21D304Cee8A45c0B9F00faB4": "Load Tester 80",
- "0xeca6894a723a6ECcf962Ed12B1e153E53a24Cda5": "Load Tester 81",
- "0x6f6f82b38c405C0d271C46f7635beba2B4C93787": "Load Tester 82",
- "0xC48caeDEaDFA66D0854E334d82BCF035397e807f": "Load Tester 83",
- "0x2b3764709b5F0F2B172e0DCb8942cE46b9EBd367": "Load Tester 84",
- "0x8FE39eE8ef9BdD91A2C8667C5139c022b35cF7A0": "Load Tester 85",
- "0x6B95a0c4a5c8775d9Ee5b2d35429Ca2bBE7630Fd": "Load Tester 86",
- "0x66Bd91B858d09e6f379A39d12c39F3088570f051": "Load Tester 87",
- "0x9667370A147F286bDE86f61E7fCeFb6d6e8921B4": "Load Tester 88",
- "0xf64B9bc55d207E02f5227fEc9F7cDa96C1195E3b": "Load Tester 89",
- "0x65b3E81e6F6a967a3830e137247AfeFF16D795c2": "Load Tester 90",
- "0x8F8084597Fc6A850bEf4c3dC772067d6B41a89aD": "Load Tester 91",
- "0xA4fa9712B4F1b024fda22B37e82537eC3a21C311": "Load Tester 92",
- "0x42E6ABd191a9292115bdc09930d29614331A8c65": "Load Tester 93",
- "0x7973639DD3e769dFE6735825676BFA1C1c552606": "Load Tester 94",
- "0x669a27ba1C63E9633340282a46FFb2b70cDC8Fb1": "Load Tester 95",
- "0x123Ddc4C53722EA57A0c664767d0Ed13aEbB4Fd2": "Load Tester 96",
- "0x2BB61F51Fa3E4062eFC74119D429fdc5F9118E84": "Load Tester 97",
- "0xf23Ce790658A0C29bAa59A6B36e0c14BFc32461F": "Load Tester 98",
- "0x88e3f14684BC12c97dB86440ac0Ec855C7121e2e": "Load Tester 99",
- "0x574631770FBe286C017698C53cD980A4D9685551": "Load Tester 100",
- "0xd96F92fc501bbF5aB3A0C8ddC910FC74bAD1CAdC": "Load Tester 101",
- "0xDE7Dab8354E7f438555606c8Dbf4F51BCD8EF0bf": "Load Tester 102",
- "0x496c69783A5B2148EF5459C6F0eaE7B536D004D5": "Load Tester 103",
- "0x3703738B4781b70930F0Bc0af07662D82F0D1e97": "Load Tester 104",
- "0x9cdA1740B30Fe10F54967aCB516235593AFAa51e": "Load Tester 105",
- "0xEa4164e9cC1Afd8814FB12F4Cb9a2738ebac2F73": "Load Tester 106",
- "0x7cAc1431eCb9C579Af08f7c3a5c02c28CEC99c54": "Load Tester 107",
- "0x8a7F98F273A1FAbd434F73A5928CbD47777aE493": "Load Tester 108",
- "0xB7163e5DCbB1Ab25dAe18Eb54f3603A686B523A0": "Load Tester 109",
- "0x87c32c2918f13a05cCF249DD82c305a46Fc1D9Ed": "Load Tester 110",
- "0xe9F676c7601eE857aA4BCBeDA98160FA71B7b33F": "Load Tester 111",
- "0x5F35ea7688ADa03Fb1a6d92A37044b39162B2B9d": "Load Tester 112",
- "0x02282Eb07e557316C4fbCa7f4Cea79C6013EA4E3": "Load Tester 113",
- "0xBf006A1F68478a9DED116D1D572294F7EC63413C": "Load Tester 114",
- "0x560D3dbe51D73139d135dF9DC033163A4491E1e0": "Load Tester 115",
- "0x35312e08473b68C442438B2e382F4F56AF21F320": "Load Tester 116",
- "0xCb3541Ad275c5FB456A377d210267aD462e472dD": "Load Tester 117",
- "0x62efA4b9FF22A62f3bb2300dBC344c1e9002bA58": "Load Tester 118",
- "0x7D35076F2A39C1ff772385eCBbe0e772e3A1287C": "Load Tester 119",
- "0x8dB5a7A91c706180fC7d39FAf1e353d2F069620E": "Load Tester 120",
- "0x571A95AfC59D37F68B507a8c77f977AFD6BDcA09": "Load Tester 121",
- "0x27Bd063E8e3EA4a806C1527d804bAdFda14869b5": "Load Tester 122",
- "0x2988495d8054451c48D598c124b8D6cd7BD4B252": "Load Tester 123",
- "0x0189DfF4F7682080446202D7B3ac7652a658e8A5": "Load Tester 124",
- "0x5024D56F4AcA6434735be71e11Bd9FB18E31E9EE": "Load Tester 125",
- "0x0CeB858724433d846cB0F976081026EcE4B6aD78": "Load Tester 126",
- "0x97687688De3De19dD1bDCDE8925d87012dB59F05": "Load Tester 127",
- "0xA9c9379178C91c33F3eB6060F819fdc93a36Ddb1": "Load Tester 128",
- "0x8806f8d4B885136Ba84224DbB69314cC84eda334": "Load Tester 129",
- "0xAEE34DF14149Da710D49819D22b9eAd3bCcc2551": "Load Tester 130",
- "0x418788125ED5316E3451429f4a93C46806F838A8": "Load Tester 131",
- "0x4E71939dD8862b996Bc3ed2Cd88b26B93b017421": "Load Tester 132",
- "0xbF396f96be00701d9F49bC339f49dE6EAA53fCB0": "Load Tester 133",
- "0xCc8ebdBE18fE6345c20F8CDF41d1491a2A3f7484": "Load Tester 134",
- "0x2D5B985E8C7cc33C1Ce986fBBcab28Fb395B0663": "Load Tester 135",
- "0xbb4034FCEefB6299f6DB1932D3088ca3b3005B9b": "Load Tester 136",
- "0x4Ae7DabEc3fDB0B415c050d3a07116442173D8f0": "Load Tester 137",
- "0x87b9Cfc32Cd8c736248D72d4cf15035eb5f67cf1": "Load Tester 138",
- "0xb844Dc0B6dcD1E4CAb4ff812CB28F40CD98b8728": "Load Tester 139",
- "0x339c6f1fa825469E75FE8A98a037cfC3701750c0": "Load Tester 140",
- "0x141CAf354d32a55fe4b32f48383E8519d2AF13e8": "Load Tester 141",
- "0x1d1619071D2ec40B928Af424baA2e5F1E1D55493": "Load Tester 142",
- "0x3e26c4e9f358bD14AccFa25e1cd6f8a0b3A266F2": "Load Tester 143",
- "0x8bb68a764A6d82100dB7337fD8d8826410D902e4": "Load Tester 144",
- "0x5c0b569e971f6992851f8516bdfdA72b22114a62": "Load Tester 145",
- "0x1b5D9eAf7d869Aa7279d952406f7B6F6F6CEE50A": "Load Tester 146",
- "0xa50b5aDab2Ae16c571A4D475D72FBcD40870Df0C": "Load Tester 147",
- "0xD5AB5Be323AB68E0e12F722917C68fab8150Ec24": "Load Tester 148",
- "0x4ac041265092021217BC3aBA4B3C1aeCb4f254b9": "Load Tester 149",
- "0x176df81DeEf6c6F98E7E9359D56d728db42Ce72C": "Load Tester 150",
- "0xA12ffd0B9915ED28A1E1Bd61f6Eb18Bb5acA7D23": "Load Tester 151",
- "0x97064466eaAfc6E9a7616AefE1490a0cc0a0453B": "Load Tester 152",
- "0xFd36cD95b50A7A33fB294D6C659986B4Cd3CD2F9": "Load Tester 153",
- "0xFd3B4924464eee00137Fcc7E3Edca3658D2e0Cf0": "Load Tester 154",
- "0xD36230d583ad2e4e5528517beE67a854e72D3332": "Load Tester 155",
- "0x3a2902EC36b9F602e216C64696280DecF6603a0C": "Load Tester 156",
- "0x8A15e09329Eb9c3De48092ea9fB9D3a1FbDd2C8b": "Load Tester 157",
- "0x293d7483b4e3A1cd53C00EAE4e0Dee122118B1dB": "Load Tester 158",
- "0xb1c3d2A796Dd8f2e86c08ca0e9503Fd8A5dA22c7": "Load Tester 159",
- "0xe4b776ca42e4acA267b3bB78343e2aeFBe3645B4": "Load Tester 160",
- "0x60f006C15cA8C926182712852D5d0e5862EeB4C9": "LoadTest80",
- "0xC46f467A760b692e28972b36ED4b5fFAb0fe49dE": "LoadTest79",
- "0xafA3b2d6C082c46b02fd0F7F3047B8417F7aCc8f": "LoadTest78",
- "0x2D13bB0F7C440aC139B83CF4df578266bc37f6C2": "LoadTest77",
- "0x57Cb8672E1BdfbFcD04D4f9Ad66DA1322F692591": "LoadTest76",
- "0x0eC0F058bab909a08f0B3225B6DcAF52E2caca4b": "LoadTest75",
- "0x25Fe467357bc9351F1B3d7f2D7CE94920E4BEe23": "LoadTest74",
- "0xbC8EA107b89fF4f7215e2290d6c80d36Aba1d74d": "LoadTest73",
- "0xabB6ac396AF983fD337Ad357474efaAC634f609c": "LoadTest72",
- "0xC637922373b0214F1b625BB591c7090F0763c901": "LoadTest71",
- "0x62E2e3ecDB957cb185B3459ce0fDcc719E57d426": "LoadTest70",
- "0xeb2e652778C26C4Be9c3CBb10C703b2bfcbCEB22": "LoadTest69",
- "0xFb1F1653b922077F3c03c8eeD7490168A112912B": "LoadTest68",
- "0x0Ad80025eFc915C7B94c2AaCc05E62db1113DB30": "LoadTest67",
- "0x4B03C238321E00572dead9522C3639911e258935": "LoadTest66",
- "0x65c87Aab20154aC2f487313aC4ED7f9E453B1212": "LoadTest65",
- "0x14b2fCdfEF97314FF6CB51a98E6AE1080B8033B1": "LoadTest64",
- "0x1385c37C2fBb77454095927C92912570d2fd07fE": "LoadTest63",
- "0xF46f6e59E46D8E825B59d6b2Be823D931BC16465": "LoadTest62",
- "0xEF1287D523eA5ea0E4C33a477856BecBDc854783": "LoadTest61",
- "0xf35448810255FA38d52d38Ab1aE9B8CE169d5f70": "LoadTest60",
- "0xB80479003af216e9bE54ed63ad9492D5692F9Eb3": "LoadTest59",
- "0x4526d22D166dCC4Fa805d2e9BA926bFde8F7eF09": "LoadTest58",
- "0xFd0A81352689571dD8d8D9337fAB59eC846f6092": "LoadTest57",
- "0x244A9D06BB35d72879eaEa8ADd834B59d2cb4cC4": "LoadTest56",
- "0xF32d13F21FC6090bDF830740FC9d9B1FcbCDd50b": "LoadTest55",
- "0xae6b4263a399999943EeE81b96cbE063aeE21737": "LoadTest54",
- "0x22faAb7EC46970Ee79E4AAf0dc31369ae77E7aCE": "LoadTest53",
- "0x0dFc0121222a56934660B018cA2c5e648B1A4E9C": "LoadTest52",
- "0x1B25dC7505626A4bD5D6ba86614520Bf52524D1a": "LoadTest51",
- "0x91AC270Ba655bf3AF5f767e94AB6a2C9185B6A58": "LoadTest50",
- "0x6649c5f0C8C796CF99B8B388685e2B4Ea92E1746": "LoadTest49",
- "0x8627f4E450527B92C01Bc940CcAD7104B4b015C6": "LoadTest48",
- "0x872f7a9f4C26f69F57C96E0Eb1b8B63483Af128d": "LoadTest47",
- "0xeBe93614b9C098430aE7F31e176cB82B337Ea3bb": "LoadTest46",
- "0xd578f55dA936F772b243e43bAF4385d79CEd917E": "LoadTest45",
- "0xD679F3d868E238d5837fa9B209cC60160ff06F56": "LoadTest44",
- "0x6d00174A0AFdb9C810a7e83F1D5A8C14F9aEbb8c": "LoadTest43",
- "0xa81441f4867497745075C0E6D976eE7495b7D2a2": "LoadTest42",
- "0x49D6A5FF500C7cF2C7BCbCffcefAf732D1AFd33b": "LoadTest41",
- "0x0472ab131f68CD5038649CC766323a2D9835D322": "LoadTest40",
- "0xe9F85257717c82a8E998bbbaCD28522ed1ed2b31": "LoadTest39",
- "0x5722B3bfda9FB091870b9D0a982fd01A6Cb8eF6f": "LoadTest38",
- "0xaEaBc49D0f5AE8158F11e34A517c471B73145760": "LoadTest37",
- "0xD29dD5C78F4FAa2c79B9a208a5caFf348f4FC505": "LoadTest36",
- "0x1cF31871628EA7B3F03D11fF76b2E9E6f998a3D4": "LoadTest35",
- "0xc5eB3597466170F09117c8f692876513B99B4d9e": "LoadTest34",
- "0xc4850BFD392c0d2a47c3575ca7564e8791349768": "LoadTest33",
- "0xB3a51a289666Ad2fA55869F3cc5d70f8ceAD1331": "LoadTest32",
- "0xF6871fc2b3c49cB88B16679a61d3fE73FAc7770D": "LoadTest31",
- "0xCf591DE9621CE0259c182aAA15Df785fCc60A454": "LoadTest30",
- "0xf9C63D730B195Dd1a6Cc464BFc8102f117808c93": "LoadTest29",
- "0xA6f7753ef5b09379afF441c10a44B2178CD3D288": "LoadTest28",
- "0x77E09cF9Ec978dc94202A2Ea839A18b326A5cbe4": "LoadTest27",
- "0x39f887FD35F445DF074BfF8F5d318f40be168ec6": "LoadTest26",
- "0x920C76f64f9aF922D09eEF6cAF1fd2d6B9B5889e": "LoadTest25",
- "0xD4F55F8AF3d5d57e79dAb8E8Cf72Cd3cf5Bd49A5": "LoadTest24",
- "0x51e6Cc8267fC09DCa613765D535D50730db6F9d0": "LoadTest23",
- "0x7403887426Abd1D18bE053f45F5ddAefC7b7B9Bf": "LoadTest22",
- "0xC83328eE9d828cA3191643FEbF80a7382d173060": "LoadTest21",
- "0xEa1352fF39b456d3a2f686397Aa7cF0c99A0c9f1": "LoadTest80",
- "0x7ce440F5186Ab1f847b3476Eff5a00A08d33e807": "LoadTest79",
- "0x4ce31C3ace03EBE84388d91385ACb07dEFB5c647": "LoadTest78",
- "0xb2C9b05cB07CEfEEa67C727AdC05dC32Ba7Fb5be": "LoadTest77",
- "0x40e3F47822D0827d658054c7310957b8Fdda7a0c": "LoadTest76",
- "0xFA421A133807afFec30d7bCF47284666Ae7f5E65": "LoadTest75",
- "0x4d236E7706F1f4A4F1485D57AFe267c64455fCD8": "LoadTest74",
- "0x005A42D80C0412Ef70b851AAf34D288A6bdfC33D": "LoadTest73",
- "0x9AF6ED1442DCE73CB90040585BAF69Aa34975BE9": "LoadTest72",
- "0xf10Ec2c7C0F425Aff347A3bDc39C1432cBB3669c": "LoadTest71",
- "0xCbD1cCf7B8430143250F506daee2f3B79eD654A7": "LoadTest70",
- "0x7101e724ef79B0A6D4ef84b4D22377d251DDc6b6": "LoadTest69",
- "0x0d854416429bfebcdB1528D2ea1dD43C59242b91": "LoadTest68",
- "0x3EC97Bf02df2808E09039Fff150845FCec1CFA56": "LoadTest67",
- "0x30454f61F66651A765572f6a3F2BF931F3CBcd6f": "LoadTest66",
- "0x6A92535c4A4c6125189e8fe686a4270aBf06B5dA": "LoadTest65",
- "0x8B7eDC33CEB2E0529559c1B1c9211F78C17a3E3f": "LoadTest64",
- "0x1B99A6F05112C4da889277A124FbA2a6D8F35f23": "LoadTest63",
- "0xC702Ea524559cD0BCDdf1DA161e01af57D0deE2e": "LoadTest62",
- "0x4DE045f5609691Ee561B5Dd89886834d19d25CC2": "LoadTest61",
- "0x09B6DE227e6CCC3d35ac2493d610f9F12081406C": "LoadTest60",
- "0x42df4128492d6d791f6d9AFaB8915A23793822B8": "LoadTest59",
- "0x66d2aF171A51063568c44811390C7AF097F74667": "LoadTest58",
- "0xE6431Ae8fB8fAbcD91483dE6C2f1E13dCFe0Ec22": "LoadTest57",
- "0xdF3c9C9d95a7902A86B20a4C421beb1a13ba79da": "LoadTest56",
- "0x5c931CB4a76bF2F863f85A10523311Da313F7D2f": "LoadTest55",
- "0x65ABFc3f7f966d0Ea0a17A2d05DF0C1812B50BDE": "LoadTest54",
- "0x8f7F28D8D6a159E28437a814Ae7D539615F29e26": "LoadTest53",
- "0x0b20C50EcAe0d006BEc0f4793862CC3DcB8fc8Fb": "LoadTest52",
- "0x0743bdD3835E6108e5BAcc9f6F34b8AbFc3E736c": "LoadTest51",
- "0x2d4a27Bc98b5bE1d159c212aD269b14257Ed5BF0": "LoadTest50",
- "0xD167E4C7099aac8Eb9F76D41CCAa711852558522": "LoadTest49",
- "0x62D39224D1369420A81417a823a77c104Aa7C2E2": "LoadTest48",
- "0x166Becd4191Fa0593e1f2bB383e87F95184c3395": "LoadTest47",
- "0x2890c9aF7548e186Cb8B3627b058EE7E6F84F218": "LoadTest46",
- "0xF553515A3280057699992880b3245C8ed52cCc18": "LoadTest45",
- "0x2d3DEa9c6d848069b3D5d5855285636b0Be4F8a9": "LoadTest44",
- "0x9d31bb0E31e7B86F1ED8e227F7feF55523C52E83": "LoadTest43",
- "0xF4A8d062947f04f450D3168414DD4c8A1237bF61": "LoadTest42",
- "0xB818908d66E2D13a150BE8DFeE1cD625A9855792": "LoadTest41",
- "0xfD491F4cFA2425b4b41F5EEcfc5694f0782bFE27": "LoadTest40",
- "0xE011426Bb05156f41f108eDf2f3a60323E151Ab6": "LoadTest39",
- "0x605941a96995360c0e84253515dc95Ebe07c210b": "LoadTest38",
- "0x8b8b1f22491785d511d39D335eAB1a3C395E317d": "LoadTest37",
- "0x8a97c7b93e50fBC5C65a5D7aa5C36272a804DfB9": "LoadTest36",
- "0xD0af94f26CA2ec137B22C2193B6d3A82C79F567A": "LoadTest35",
- "0xA9641917565cB06B719239F6a47A0Cf35d2e87c0": "LoadTest34",
- "0x4BB28417F19abf8317b6986c6B6d68B2E9e6BBCF": "LoadTest33",
- "0xf95F3961E9ac263709813bfcD64B9ae59F253513": "LoadTest32",
- "0xE3710d290b54743fb2c395A13d2177Fc9a4066a9": "LoadTest31",
- "0xC24AD31eCf822B3b1042c91e63A8c2525352a5bD": "LoadTest30",
- "0xf937593E18cFC7C69ad6007373Da94354b335A8F": "LoadTest29",
- "0x824616e85Ffce2bdfCDA6c071568bBfefFe16B86": "LoadTest28",
- "0xc39CC83069849d674919A20c8fe5BBd09cf33CD7": "LoadTest27",
- "0xDd90d7C5F66a4c269719bD510D7E44BB7e440576": "LoadTest26",
- "0xD48E580bceb6e3883b6c8C6060fC058d44438A06": "LoadTest25",
- "0x6ab5e54f7Da4aC6E184b12B7f5A60E8a33Db49A3": "LoadTest24",
- "0xc8EB567375f23c0199E7ed29Ae05b5B837D46E64": "LoadTest23",
- "0xeF98b60f0E31Ee97C7898Cd9CE2E67c1166F3838": "LoadTest22",
- "0x13105a3580560DC209859801e7289E60F44F880a": "LoadTest21",
- "0xb2D3015C7356Dfde2FFe3AaBf148460A03dc74A3": "Hochschule Osnabrück",
- "0x103501f5db82F162ec6807d21A8D847ed4b77cAc": "Hochschule Osnabrück",
- "0x4aADFC11088Bd53033297fDb7D97329500F34e9f": "FIWARE Foundation e.V.",
- "0x345d301C97eb25468fDd7eDfb1B6e9C7f0B9F784": "Universität Siegen",
- "0xEa458168651e7D254408Ea941BAf4210de1564E1": "Hans Berg GmbH & Co. KG",
- "0x6Ec302A62ed554878b9e7862BF1bd5cdd22d03c7": "Netcompany-Intrasoft",
- "0xA6FEd8D39cF98C6f7d4c31Da790c9c94e837c3ca": "Laboratory for Manufacturing Systems & Automation",
- "0xD63fFbB727dc1Bf681F727b78b5F4C738E01f6Db": "Beia Consult International",
- "0xAACA0075fF1B3E4ea45F9A1B758aD564c494dDA6": "Anasoft Technology AG",
- "0x66867df4d2f36F56BC11B439A9f94A74D8bF7724": "AAS Info",
- "0x8794d6a657a7fBA841f652C67c73788fd26cE3E9": "PFG001 Info",
- "0x340bE58F9e963D02EA44d7505fb5458EfDc8f9ad": "DTI AAS Submodel",
- "0x951Bc7F73c18880a012CCdD826901Ae89a085bc7": "PFG001 Technical",
- "0x95c4DCC1ffffF15408798741155f0af793732f0B": "PFG001 Logs",
- "0x9e39b65823240014787D435C41D5D060De985270": "PFG001 Nameplate",
- "0x660Efd8b8BdA4428b9021Cd83620ee765e68b15e": "Berger Holding GmbH & Co. KG",
- "0x47cE30B4F213802c17770c97dEa32e1EC3B64Ca7": "Load Test 01",
- "0xA05555a187BdCB944694B5793776fD66d6ea63D4": "Load Test 02",
- "0xa7092969eF3065678a41deb20ac31A5aB1F57D59": "Load Test 03",
- "0x355b0D5855698f9585865462C3fB83128782cb06": "Load Test 04",
- "0xCaa643e87398756324459AD932CD8976090A5414": "Load Test 05",
- "0xcd40fEAE40407183835c99365ffC5dD7A24B9c63": "Load Test 06",
- "0x5A7EAD2342fB60Cb417F4c5dB88DA141054c1471": "Load Test 07",
- "0x6589da080ff3998d771Da6CB66F66f2484f73104": "Load Test 08",
- "0x87009Da243ABA40AD3Aea0ed5412134AB797A2BF": "Load Test 09",
- "0xe4aB3f5e474d2B1744fD0f092C009d95737AF9b7": "Load Test 10",
- "0xf8E1067F6180D9f2d6dB2B5700444660E124601F": "Load Test 11",
- "0xAd69D5cfCeD384C2DF605D7e035d2877A23358d9": "Load Test 12",
- "0xE3624076eF8E50E5295e42C6c1A021DC8d5219AD": "Load Test 13",
- "0xeDb71622A8e8B0a5d221D6C3aD8b8362eD79753A": "Load Test 14",
- "0x556EB581bd7D5dF11Fe8e6935552B0845d8b14FB": "Load Test 15",
- "0xc3215d478bE967c0006466d460626c78d0a93Eed": "Load Test 16",
- "0x8BEFE9429298df2653F6Fc9B73D96dB99b819644": "Load Test 17",
- "0xe19b2bce4ffEbFbF3C34E8aE7C9E4b860E007E06": "Load Test 18",
- "0xD09a7644b0F3a8DC2256865c4E6eFe1e64025476": "Load Test 19",
- "0x9E78FaFF24f21b68aaaa9acC781ffeF269A0D559": "Load Test 20",
- "0x43d3004D0232243cC4878419b6897f5f50713eAE": "Bruno Kessler Foundation",
- "0x32e561E6A8615f3Ec6aD2397e6F75d05cd81d0f5": "neogramm GmbH",
- "0xD9BAB8E6279CE41C2bC3f1D44ceF855235e0CdB7": "Gühring KG",
- "0x6406F91b03a7ffbf858e57C3fa205Ae549EFB1a5": "Tool Performance",
- "0x6417A347Ad30d0745cBB3a851DF7C72517c4705C": "Process Optimization",
- "0xb20D3889931517d9AA1D7306c9a521F506f88245": "Tool Recommendation",
- "0xb505CB7D3d251867968e72D628036A5c501F5466": "Xayn AG",
- "0x0021a0cF84f83a04dFE402549e97C7DD21c5adA4": "SCHUNK SE & Co. KG",
- "0xd480cfd1decc61cec35127e26611b47088b5f619": "Transport Dimensions SAR-1300",
- "0x6E9F4E8890A8e3401FF632FC61f7cBF839d5BB70": "Design Rules SAR-1300",
- "0x2588DCeC3f6a8400D0eAaa57669f8EC8e261fd59": "Scanner Specification SAR-1300",
- "0xCf53CfbFabCc7Fa74cc8fB4218Ac7621bEe6bf0f": "Specifications for SAR-1300",
- "0xA8C26ab25C8F476aB488078B9bA6D60C4E7bEE2B": "SAR-1300 Technical Drawing",
- "0xe5AfCf1BF4FfCa6c1f19463605578e8146CdF4b1": "University of British Columbia",
- "0x1BBfB23F49C75c0DA85c6787F3C8362bDECb9775": "University of British Columbia",
- "0xb993dfC7cAf2477770e60E1Ae6188F6147BDA92d": "ZERTIFIER SL",
- "0x6F28a052eeb897d6412A8198D0DDF1FC15fe3D94": "Future Mobility Network B.V.",
- "0x1504d3AE9224091990Cb2F71D0e10B8F7E84E7De": "NVWA",
- "0x4680420FD71E0C8ABDae60EFdF685206E9bdbF3E": "LMIS AG",
- "0x477274a7e0f05849D583e20165600775AFAE8a1d": "LMIS AG",
- "0x0228BdC3d0a8dBBD9baF39803999f54E4a669aC1": "LMIS AG",
- "0x89b11a81520E090A03e66f92c1e1798d31611D3C": "LMIS AG",
- "0x57fa18A57f4B8198a4781D4Cc850631F7be8333F": "DEKRA Digital GmbH",
- "0x9B421d0f5d378b66324251d6CDc1945a6560110b": "SIMAVI",
- "0x13a9FfFC7fb684CCc623C305B46b7eD6b3a73C66": "ENGINSOFT",
- "0x7d46Bb46ba45f08480bA80150d3594fd9f3e212d": "IMT Atlantique",
- "0xc9034e58176c59153F53C6B59d5CFD5BBD58b5Fc": "Aarhus University",
- "0xB9fB84b093D8bE26A78208b324D8074627374F49": "HWR Berlin",
- "0xEEC041b73BC4FcAE2B0a66F9992d2b6d1959BbD1": "Tronico SAS",
- "0x7e7cea5dda047F66b8755Cb4Bf1d8eDBFB236e35": "Airbus Atlantic",
- "0x13f8514cA72C83386929f0BAa9bCe6B840cbA03A": "Continental Automotive",
- "0x98bDc1EaDE6D4ad7032A091Dc8bE6D217cB37eF3": "iED",
- "0xFB7Cb9F2E15F3935B22FB9846d69b46bD31edf07": "Health Check 1",
- "0xB33185E37610bC6f5b00cC26827317EE6fDF547a": "PTW TU Darmstadt",
- "0x8e9307D95f3aF50DCc655Af3EAE89B24501b848D": "Poznan Supercomputing and Networking Center (PSNC)",
- "0xe1D7Cf58357Ce5dFCa2343221610138A196C0FEE": "Hochschule für angewandte Wissenschaften Kempten",
- "0xdEB9D710BF2B1BB1C86845e52CAA86fBEEB87819": "Fundació i2CAT",
- "0x0E05173b57b5a7e69932792617614e8e9601438F": "Fraunhofer IVI",
- "0x874B6a89B201d8249c11e908b21554d14f6B3F2a": "NTT DATA Spain",
- "0xD231e64574a18eb5FB49cE2e18923681c07a7E51": "IMEC Belgium",
- "0x7E13628a092637e480c7c266692381784d909069": "AStar Technologies",
- "0x35C38A98dC3c452062d7af71A08aeA11a3353dB6": "AStar Technologies",
- "0x7bEe4CD4DD492390eB76B5Af125763BF40484d28": "TSG Technologie und Service GmbH",
- "0x12aFee9a899aF6037552bE750958F6bD3Db12A03": "Gebr. Heller Maschinenfabrik GmbH",
- "0xF8F830B34C61493E7A688515660d5c38e9700C19": "SIDENOR STEEL INDUSTRY S.A.",
- "0xCBeD907179189073c5861a8059Fa98F10dE2ACE9": "Pontus-X DAO",
- "0x35C626b7BD8F844C59D3E4753a7268614EC785b7": "AW 4.0 Hub",
- "0x165318B79640b7860cc4eb021496E7c166F6f113": "Flight Analyzer",
- "0xa7606279cf6674Da0800afbEBe85b940B2906CF8": "Lambda Model",
- "0xa290eb2B44e8A4f7CC50fa4724eF59D322A6890e": "Pressure Model",
- "0x2617EEE3A757986C3d8319699c8427d771f3f417": "Track Machines Connected GmbH",
- "0xB7A7814300d601fb0B2702ea5666d441bcE678e9": "H&F Solutions GmbH",
- "0x105Bf736Ae0Fc0Aefe3339498da149bb207890b9": "Capgemini Deutschland GmbH",
- "0x2912106B140669e5038A0cf768a4BDB202D67604": "Leitat",
- "0x68D550A3ab5C3B8f354D0E6af9Eb9E7100818f2A": "ITK Engineering GmbH",
- "0xe065d46Af7984E3350A54A4eB8C7b9fA6f23188a": "neusta aerospace GmbH",
- "0x7c73f0c152A81E2f75D301e848e59cA5711e92A5": "Radiusmedia KG",
- "0x55A569079E3Ee9C1f13A7B29d77bD08025f884e6": "deltaDAO AG",
- "0xfcd5e72c1aA8ac3872662f202480E65eafabF289": "ZARM Technik AG",
- "0x29963e99f52e149fc1aa80750e882f332e753bee": "Holowork",
- "0x20d5f579f9b4a070c14Cc9AAB4663500f3B94022": "Airbus Defense and Space GmbH",
- "0x270c3fcbc466ea28862f2b6c332f14360d9a19aa": "Functional Simulation aaS",
- "0xd163c99ec1b16d704060a6903793691ae6fee983": "Magnetic Torquer",
- "0x83253572e146aD1b66e631280BC573f5C39c0163": "neusta aerospace GmbH",
- "0x599Eb75866526822Df3fb32241506bDd3bA5F22E": "Inspirators! OÜ",
- "0x194Ce4c180aE0878A05D2D7FEc16716dF942B4c4": "Savvy Data Systems S.L.",
- "0x1cb07921EC1362c6394EEECF86959A5DB6797Afe": "Savvy Data Systems S.L.",
- "0xfDcD17DA1aDCae158feeAEe20C9367fD14c2eF33": "Medsavana S.L.",
- "0x0B5c909d358e77B72e01f42C9Bf65F79867b793a": "Humatects GmbH",
- "0x9A5F6f589171d55216cb1278Faf2701cfC4ab1F2": "Universidad de Córdoba (UCO)",
- "0x179De85793A690308719AF9CD7D2F9BE0Db5ee90": "Fruits de Ponent",
- "0xFB6aaD927d026Ec21Ef8f699450Ed2ee416570a1": "BEEGroup-CIMNE",
- "0x86cDDD03fDb7E4f62a4A31DA7483d370C03e96C8": "Tragsa",
- "0xE8E3570Ad8CBa8f4a6c78E981F9be8d2A2954344": "Fruits d'Alfarràs",
- "0x6f3B5ffF0219CE805E5E09A8254D125f6b73AD25": "Dutch Drone Company B.V.",
- "0x34b126d602772C0D0c111527A4fb97410dD50d77": "Siemens Digital Business Builder GmbH",
- "0x4f66C8BA84FbAFFa5131f469cDac4A5eA3592cb4": "EDPS Service",
- "0xfb27dae6b46dcfcf21eeefa6fd291c8e456888af": "EDPS Service",
- "0x28553327C3e469a2De5D53faaE2d27C0c0Fa4d1b": "IDEKO S. Coop.",
- "0x28CfeE16dD16A17F57Bd44b0231077b479F021fb": "Technological University of the Shannon",
- "0x9187df88f374a2c7e2b062a9d2ecc0b3e33852b8": "Instituto Tecnológico de Informática (ITI)",
- "0xE30DD32904E5c3D7f35D5324E638c45916143b20": "Noumena Digital AG",
- "0x7bbceba47d20d657b2a706329c0617262d5a2e17": "JDS GmbH",
- "0xb0747287c71Bc3d376531856b6d346697A3DD233": "Galicia Supercomputing Center (CESGA)",
- "0x38B7c70DE4283e9ebD11eCEFf1Be74858d43D001": "Dunavnet Limited",
- "0xb1e31cd85b1fe8b3a21c9d10e1567ec987599809": "Cartagena Parking Sensor Data",
- "0x7266cb767d7c8a627f074ed763660881c7d5e32b": "Cartagena Air Quality Data",
- "0x15450500f46aa57d0f0f9b0e0a649a96a0301ae9": "Cartagena Noise Levels Data",
- "0xab4eeb199b2d35cdced01d82426cd18907033d1d": "Cartagena Weather Data",
- "0x33a89336a8f49687f42e1c5fc565f54c46a9984a": "Water Level Kiel Fjord",
- "0x083c47124016d928159f45580abde3682a8f6cda": "GeoJSON Coastline German Baltic Sea",
- "0xc619bfc77c52d36bf10e1429a146a7d435504f3c": "AllUnity GmbH",
- "0x9E0B5856234ea825499b1741c9bEf95a02D18790": "AllUnity GmbH",
- "0xA17F074dB2785b84D96153c42822002A26b98c34": "FIDES Labs B.V.",
- "0xd0f60a735E28e192fc2bC9d1dbae90D43029420B": "Politecnico di Milano (POLIMI)",
- "0x069c8A8b33C893A6B2b60A20C7EbA7438c5b2D0d": "Josephinum Research (JR)",
- "0xBcEf1784f5A7d12D9281840db626A8faFA247a59": "Turku University of Applied Sciences",
- "0x752bcd04a2b0ef9b4cafbdebfc98739a6b2d6a52": "Kiel Parking Data",
- "0xE158265FD2be5BCc208621f2c0f8AfCF11aC8408": "EURAU",
- "0x852381bB887d3Cf4AEB9e1E9De3eB033AF82fBeE": "EURAU",
- "0x6e9d6595d216477dc57F966415Dd34d9585A0bc3": "Proalpha GmbH",
- "0x3D5a386abA3f010Ca84548b7150E38F6a7c2deB2": "Proalpha GmbH",
- "0xCF33e39a02Bc27e2F8bFB30AE8E1f4dBda8E72fe": "Poznan Supercomputing and Networking Center",
- "0x051AFc22BBb3Bb337971973330D0b15bEc32405E": "Stichting Wageningen Research",
- "0x8a20c7E4758Db8D60Cbd409D71bF2195660aDB69": "Gradiant",
- "0xc47975a7e8fC3A5dC3b7D6447f15A06B4b755b22": "Hispatec Erpagro SL",
- "0x4b350b804f125548A49cb4e95eb4192011149e17": "Laboratoire National de Métrologie et d’Essais (LNE)",
- "0xb09d7Dc2DA521689D160029cf2141A35E0c96141": "Eigen Vermogen van het Instituut voor Landbouw- en Visserijonderzoek (ILVO)",
- "0x28972b7A0bF03107FCF0031Baf116846d3044BDF": "RISE Research Institutes of Sweden AB",
- "0x6EDAaA73854C65164869E098DFD67C5eDB591ae7": "Celtiberian Solutions S.L.",
- "0x498FaBC738CdF72C26a819852bDb46c0cF8451b0": "Disi Servicios Informáticos, S.L.",
- "0x86917649A176763b25ec9214b7a4a518C04c60c6": "Łukasiewicz Research Network – Poznań Institute of Technology",
- "0x45cce053ab6Cc02dFF4B24222D769eF90fBEDfF5": "Institut National de Recherche pour l’Agriculture, l’Alimentation et l’Environnement (INRAE)",
- "0xbF78f3aAe85f92c35E71916d27147105c5F03270": "Confederación de Asociaciones de Frisona Española"
+ "0x28080F654eED6CC00e8b16F4841E92CD0c2C0778": {
+ "name": "deltaDAO AG",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/2210_gx_participant.json"
+ ]
+ },
+ "0x628677D9A9d93a913182fa04893Da0ce4E6570Ee": {
+ "name": "deltaDAO AG",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/2210_gx_participant.json"
+ ]
+ },
+ "0xf8A493af0e72C2C62651Bf7b7d1a006806Fb646f": {
+ "name": "deltaDAO AG",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/2210_gx_participant.json"
+ ]
+ },
+ "0xf5b1E6f9a566E20de35d0C240D47F9cc08f33c0F": {
+ "name": "deltaDAO AG",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/2210_gx_participant.json"
+ ]
+ },
+ "0x50499814AE402563b5c34F6BD2F5C829A7693964": {
+ "name": "deltaDAO AG",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/2210_gx_participant.json"
+ ]
+ },
+ "0x04863f1E29Ea1aBF006fB1ecB129cAD892db0C90": {
+ "name": "deltaDAO AG",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/2210_gx_participant.json"
+ ]
+ },
+ "0xdA9ED09a94B1A2315e22157d75fd0b0bfC63B6Cc": {
+ "name": "deltaDAO AG",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/2210_gx_participant.json"
+ ]
+ },
+ "0x7AF6c5F0950A37b7C25da4367E9B56C03dE8234D": {
+ "name": "deltaDAO AG",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/2210_gx_participant.json"
+ ]
+ },
+ "0xC0E3B447c1e7B22769952E89389Ef2cD9B812Cc5": {
+ "name": "deltaDAO AG",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/2210_gx_participant.json"
+ ]
+ },
+ "0xBf252dD5b3a31A50Db34113e12517b21D143AC52": {
+ "name": "deltaDAO AG",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/2210_gx_participant.json"
+ ]
+ },
+ "0x0bd21cF4Da78f74c483a1109ac3A30794FBd556B": {
+ "name": "deltaDAO AG",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/2210_gx_participant.json"
+ ]
+ },
+ "0x9c26685b6E8e2997d9aAf3f1a642f1b1b3dB9580": {
+ "name": "deltaDAO AG",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/2210_gx_participant.json"
+ ]
+ },
+ "0xd0ea08826FA10eEaA3871a6AE680E5f15149F355": {
+ "name": "deltaDAO AG",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/2210_gx_participant.json"
+ ]
+ },
+ "0x4C84a36fCDb7Bc750294A7f3B5ad5CA8F74C4A52": {
+ "name": "deltaDAO AG",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/2210_gx_participant.json"
+ ]
+ },
+ "0x68C24FA5b2319C81b34f248d1f928601D2E5246B": {
+ "name": "deltaDAO AG",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/2210_gx_participant.json"
+ ]
+ },
+ "0x2859d961a6dBa6e7d30b2d383Af468edb4E7F4f6": {
+ "name": "deltaDAO AG",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/2210_gx_participant.json"
+ ]
+ },
+ "0xaBaf56FC1bB6b4FF9fA4378C3C8723d2B2444324": {
+ "name": "deltaDAO AG",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/2210_gx_participant.json"
+ ]
+ },
+ "0x0a7B96885b28deDE4a6887CA1150E36edb385BeE": {
+ "name": "deltaDAO AG",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/2210_gx_participant.json"
+ ]
+ },
+ "0xDF1c35c3d5178e9d98043b35a6737Bd861c191c9": {
+ "name": "deltaDAO AG",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/2210_gx_participant.json"
+ ]
+ },
+ "0x01e66950353400E93AEe7F041C0303103E2ef5Ab": {
+ "name": "deltaDAO AG",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/2210_gx_participant.json"
+ ]
+ },
+ "0x862E3fe199723945a38871dE4F736f1233589CE5": {
+ "name": "deltaDAO AG",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/2210_gx_participant.json"
+ ]
+ },
+ "0xFDC7BEc0aED8a584577fd59CbF56805eE8c976B3": {
+ "name": "deltaDAO AG",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/2210_gx_participant.json"
+ ]
+ },
+ "0x5f525cd29377DC2155C2AbCDaC0Ce45e630318b7": {
+ "name": "deltaDAO AG",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/2210_gx_participant.json"
+ ]
+ },
+ "0x3a69B365769a9dAb67865Ca5530c4B1D5259bCb7": {
+ "name": "deltaDAO AG",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/2210_gx_participant.json"
+ ]
+ },
+ "0x97870c129abc9877b66534e49f152585D6Ca3655": {
+ "name": "deltaDAO AG",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/2210_gx_participant.json"
+ ]
+ },
+ "0x1Ad061ad839f82C05767dACd2B5ab384E72B45a5": {
+ "name": "deltaDAO AG",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/2210_gx_participant.json"
+ ]
+ },
+ "0xFd4b5ae43f2aA446b02209098438890d3998cC9F": {
+ "name": "deltaDAO AG",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/2210_gx_participant.json"
+ ]
+ },
+ "0x732BF4fA8E57200621b0e1acbe8855c238823016": {
+ "name": "deltaDAO AG",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/2210_gx_participant.json"
+ ]
+ },
+ "0xa76Fa6837A6ffc9F123F2193717A5965c68B0cbA": {
+ "name": "deltaDAO AG",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/2210_gx_participant.json"
+ ]
+ },
+ "0xFaeb57c16D5E9A9f06c8c5dB12796f5a432Eb7d6": {
+ "name": "deltaDAO AG",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/2210_gx_participant.json"
+ ]
+ },
+ "0xb501FDaad0F0863C4c72f7EB9Abc23965DCa973d": {
+ "name": "deltaDAO AG",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/2210_gx_participant.json"
+ ]
+ },
+ "0x3dB4E0b1fC6072271BF51e9a0CC17E3c7C4C99f5": {
+ "name": "deltaDAO AG",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/2210_gx_participant.json"
+ ]
+ },
+ "0xe2DD09d719Da89e5a3D0F2549c7E24566e947260": {
+ "name": "deltaDAO AG",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/2210_gx_participant.json"
+ ]
+ },
+ "0x1072D3287A5cC513F40b425735E04355487f5F57": {
+ "name": "deltaDAO AG",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/2210_gx_participant.json"
+ ]
+ },
+ "0x26818079Ba707b2facFfcdc41445322f0e7e3042": {
+ "name": "deltaDAO AG",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/2210_gx_participant.json"
+ ]
+ },
+ "0x18aa7C29527E71b9F295f1bfB63e57F5a0A97282": {
+ "name": "deltaDAO AG",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/2210_gx_participant.json"
+ ]
+ },
+ "0x8d4198E9af22863d4269dDA6a41eF2BfA187AbAc": {
+ "name": "deltaDAO AG",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/2210_gx_participant.json"
+ ]
+ },
+ "0xb4026ac3562245bB0DAb9205D698Ab0410e3d723": {
+ "name": "deltaDAO AG",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/2210_gx_participant.json"
+ ]
+ },
+ "0x24D68bFBA0fB06ccFfD21dC3a5c0B65207Bd479a": {
+ "name": "deltaDAO AG",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/2210_gx_participant.json"
+ ]
+ },
+ "0xa51815143e6C578D3c27A7b6fA6E4C1Dfcac555C": {
+ "name": "deltaDAO AG",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/2210_gx_participant.json"
+ ]
+ },
+ "0xF9589F61C5Fc52113E12638CF6A7Fdffe443DfA1": {
+ "name": "deltaDAO AG",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/2210_gx_participant.json"
+ ]
+ },
+ "0x6432956a98E522F1B8a73a45245a5C6ff2c7f8f1": {
+ "name": "deltaDAO AG",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/2210_gx_participant.json"
+ ]
+ },
+ "0xD1Cb3E73a7bC632d2279114AA2783dcaD06517ca": {
+ "name": "deltaDAO AG",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/2210_gx_participant.json"
+ ]
+ },
+ "0xAEC291E9Eb4293d45a5B8aBE3549c0C7464e5C24": {
+ "name": "deltaDAO AG",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/2210_gx_participant.json"
+ ]
+ },
+ "0x4c7BfE3D6278eb996FC13c5f748bC7b1dBe593D8": {
+ "name": "deltaDAO AG",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/2210_gx_participant.json"
+ ]
+ },
+ "0x59bcD9665301CAB78bc6C31286F7203934c5fc0E": {
+ "name": "deltaDAO AG",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/2210_gx_participant.json"
+ ]
+ },
+ "0xf958C1F667f71C1C66C1702830A89057a90F40eE": {
+ "name": "deltaDAO AG",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/2210_gx_participant.json"
+ ]
+ },
+ "0xb042E9387f9dcBE2a98e8eeE0fe7e4e694115604": {
+ "name": "deltaDAO AG",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/2210_gx_participant.json"
+ ]
+ },
+ "0x4B010D64C7b2037ea2Dabea4d303c4c24b723d00": {
+ "name": "deltaDAO AG",
+ "credentials": []
+ },
+ "0x03606Ad8E09caCf3269188fc04755d7556CFC1bf": {
+ "name": "deltaDAO AG (dev0000)",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/2210_gx_participant.json"
+ ]
+ },
+ "0x4A806a4851472F7cFd579d3FF5465F03c3c2B5d4": {
+ "name": "PTW - TU Darmstadt",
+ "credentials": [
+ "https://ptw.tu-darmstadt.euprogigant.io/sd/participant.json"
+ ]
+ },
+ "0x257Ac5e233005d5C960BC261d04ad98166718d4a": {
+ "name": "PTW - TU Darmstadt",
+ "credentials": []
+ },
+ "0x21CF19e1FaF3A62f82B432f82152e8c5C0FdBdaF": {
+ "name": "PTW - TU Darmstadt",
+ "credentials": [
+ "https://ptw.tu-darmstadt.euprogigant.io/sd/participant.json"
+ ]
+ },
+ "0x6f9c23cAeB661D1ca9c58e0665fF3FEac008a33E": {
+ "name": "PTW - TU Darmstadt",
+ "credentials": []
+ },
+ "0x9f4ceE0eBD03a1e9E4DcffaF876873d7a3e9595c": {
+ "name": "AMIDS",
+ "credentials": []
+ },
+ "0x6E7bec8715955B6Cc90A5A1767cd981b90C5a245": {
+ "name": "PTW - TU Darmstadt",
+ "credentials": [
+ "https://ptw.tu-darmstadt.euprogigant.io/sd/participant.json"
+ ]
+ },
+ "0x81336c245712DbF0E971de5463173bCaA9826d84": {
+ "name": "IONOS Cloud",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/2210_gx_participant_Ionos.json"
+ ]
+ },
+ "0x56eA3Cc92144Db3bA2bdE25131F40c7B98F7eD32": {
+ "name": "Exoscale",
+ "credentials": ["https://a1.digital.euprogigant.io/sd/participant.json"]
+ },
+ "0x6d006671dA78354C200B03eF5E58F948977362cD": {
+ "name": "A1 Digital",
+ "credentials": []
+ },
+ "0x9Dc6aDA184fc98012D74F1C4f3f223183A4745D4": {
+ "name": "Wobcom",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/2210_participant_WOBCOM.json"
+ ]
+ },
+ "0x0337b320DEfAddd9aDbC518f8A9cee30b606d15b": {
+ "name": "Arsys",
+ "credentials": [
+ "https://arlabdevelopments.com/.well-known/ArsysParticipant.json"
+ ]
+ },
+ "0xD7b90d6476091F6bc4CAaC40180FB300351fAb9F": {
+ "name": "Arsys",
+ "credentials": [
+ "https://arlabdevelopments.com/.well-known/ArsysParticipant.json"
+ ]
+ },
+ "0xF20113edd04d98A64AD2A003B836677E1c9aACAD": {
+ "name": "State Library of Berlin",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/participantStateLibraryBerlin.json"
+ ]
+ },
+ "0x0279F7D611e8745BA16A4F1e83B752f8fc173870": {
+ "name": "State Library of Berlin",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/participantStateLibraryBerlin.json"
+ ]
+ },
+ "0x6B33b4Cc1CAa5b49bB2752D23B9B78e524e17654": {
+ "name": "State Library of Berlin",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/participantStateLibraryBerlin.json"
+ ]
+ },
+ "0x23035d7E3cddc44b345eBF9DDDA2e1aaeCeeEeA1": {
+ "name": "State Library of Berlin",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/participantStateLibraryBerlin.json"
+ ]
+ },
+ "0xb98B9304860Be2a90F86CFa738dbedEb6C6AdF98": {
+ "name": "State Library of Berlin",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/participantStateLibraryBerlin.json"
+ ]
+ },
+ "0xE098a4DE67034a17b23CDfB7E81C49296361974F": {
+ "name": "State Library of Berlin",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/participantStateLibraryBerlin.json"
+ ]
+ },
+ "0x67c39F79B1e5430104bCc4009A6210EAeB2672Bf": {
+ "name": "State Library of Berlin",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/participantStateLibraryBerlin.json"
+ ]
+ },
+ "0xEF193A800e956b9fF1c379B7Ac3C55FCA38aDB15": {
+ "name": "State Library of Berlin",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/participantStateLibraryBerlin.json"
+ ]
+ },
+ "0x8337649C1d86ab41d42ef91E303B814f9FfEC04d": {
+ "name": "State Library of Berlin",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/participantStateLibraryBerlin.json"
+ ]
+ },
+ "0xC309b5Cd4833315D495F8616A1B957E6c3F0Cc0b": {
+ "name": "State Library of Berlin",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/participantStateLibraryBerlin.json"
+ ]
+ },
+ "0x04707912117fb09c68F48BDC15Cf78F50501fF92": {
+ "name": "State Library of Berlin",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/participantStateLibraryBerlin.json"
+ ]
+ },
+ "0x92DCe2e6b29863CF190c520B81CB4153f2642a49": {
+ "name": "State Library of Berlin",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/participantStateLibraryBerlin.json"
+ ]
+ },
+ "0xD274318C312174eb7CCe872eE415b7398c8dA2be": {
+ "name": "State Library of Berlin",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/participantStateLibraryBerlin.json"
+ ]
+ },
+ "0x2E32B0e4e20C7A4162A6455b4A12e01D09472556": {
+ "name": "State Library of Berlin",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/participantStateLibraryBerlin.json"
+ ]
+ },
+ "0x4d7fE037831F077583a259B6437E542EffD6f2cD": {
+ "name": "State Library of Berlin",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/participantStateLibraryBerlin.json"
+ ]
+ },
+ "0xdf89102cDd2ccA60E88e480C6D609FB3bfFD4d54": {
+ "name": "State Library of Berlin",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/participantStateLibraryBerlin.json"
+ ]
+ },
+ "0x62078F05Eb4450272D7E492F3660835826906822": {
+ "name": "Universitat de Lleida (UdL)",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/UdL.vp.json"
+ ]
+ },
+ "0xD999bAaE98AC5246568FD726be8832c49626867D": {
+ "name": "Universitat de Lleida (UdL)",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/UdL.vp.json"
+ ]
+ },
+ "0x94549951623DD6c3265DBbB1b032d6cF48Ba7811": {
+ "name": "Universitat de Lleida (UdL)",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/UdL.vp.json"
+ ]
+ },
+ "0x7774693eBe0352092cF1C81368AfB034E4D042D1": {
+ "name": "Universitat de Lleida (UdL)",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/UdL.vp.json"
+ ]
+ },
+ "0x7e102FF28971Be04C3EcB5B486eDC94ED2b83C12": {
+ "name": "Universitat de Lleida (UdL)",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/UdL.vp.json"
+ ]
+ },
+ "0x38f8c44FFaa8bE015F2DCDcD258ceBBed911840d": {
+ "name": "Centre d'Estudis Porcins (CEP)",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/CEP.vp.json"
+ ]
+ },
+ "0xDf7a37EA1f42588Ea219Ec19328757F67BaBCeCD": {
+ "name": "Centre d'Estudis Porcins (CEP)",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/CEP.vp.json"
+ ]
+ },
+ "0xa702032E187E6A53EAddC28a735B414220712689": {
+ "name": "Software AG",
+ "credentials": [
+ "https://sagresearch.de/.well-known/participantSoftwareAG.json"
+ ]
+ },
+ "0x0a477f6297413f20C4fBc15F93e34dacE4136123": {
+ "name": "Software AG",
+ "credentials": [
+ "https://sagresearch.de/.well-known/participantSoftwareAG.json"
+ ]
+ },
+ "0x586000e6DA330E140b11a4aeEbb81963d67F336b": {
+ "name": "TU Wien",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/participantTUWien.json"
+ ]
+ },
+ "0x5c0bADfeEaE06699ABa04f465D1Fc360e6D38779": {
+ "name": "TU Wien",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/participantTUWien.json"
+ ]
+ },
+ "0xBA87B2E7F71013Fe6561a877928EA265531B06d1": {
+ "name": "TU Wien",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/participantTUWien.json"
+ ]
+ },
+ "0xcBd4c7A0C1fCC93aba46b8311c150D07cc7235c4": {
+ "name": "TU Wien",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/participantTUWien.json"
+ ]
+ },
+ "0xf596D17C4a3A5c92c4721627B9e5E5064651BF46": {
+ "name": "Materna SE",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/2210_gx_participant_Materna.json"
+ ]
+ },
+ "0xE90e1f337cBBaeD2bf30dD66165246e477F59158": {
+ "name": "Materna SE",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/2210_gx_participant_Materna.json"
+ ]
+ },
+ "0x3CEA8fBCbD1c745E081fD3937C18eE0b6Cc3f1b1": {
+ "name": "Airbus",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/2210_gx_participant_AIRBUS_DS.json"
+ ]
+ },
+ "0xF8dB4a6d529a14e3E029e2b8A9279f408909Fa20": {
+ "name": "OHB",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/2210_gx_participant_OHB.json"
+ ]
+ },
+ "0x48535044200dAE3FD4f5b5C3f9b077fa5c230Ef3": {
+ "name": "T-Systems Multimedia Solutions GmbH",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/participantTsystemsMMS.json"
+ ]
+ },
+ "0x212c355c3ce41a272606da61F661dDd2b7F8a4B1": {
+ "name": "IKS - Gesellschaft für Informations- und Kommunikationssysteme mbH",
+ "credentials": ["https://www.delta-dao.com/.well-known/participantIKS.json"]
+ },
+ "0x44C34FbBB727bDC648E65feCfF3FB9D4c85f1fe4": {
+ "name": "msg David GmbH",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/participantMsgDavid.json"
+ ]
+ },
+ "0x8fBF860883BB71D691053A4363030Dc1c65f7017": {
+ "name": "Detecon",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/participantDetecon.json"
+ ]
+ },
+ "0x7DF1674a1e3449778eEB324652d3FF3Cb5046753": {
+ "name": "SINTEF",
+ "credentials": []
+ },
+ "0xe3Df4851c094f5F6F1AC9AbfA4FC2075276195Ec": {
+ "name": "Peaq",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/participantPeaq.json"
+ ]
+ },
+ "0xB21282F443EB0D490819d98F2976758af5C979B3": {
+ "name": "Datarella",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/2210_participant_Datarella.json"
+ ]
+ },
+ "0x0aec046a558F13Ff18aAEc5E6f76084185358cdf": {
+ "name": "Datarella",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/2210_participant_Datarella.json"
+ ]
+ },
+ "0x6fE8aD445AD86b3d1325F79955Ef28d6e9cb2258": {
+ "name": "Robert Bosch GmbH",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/participantBosch.json"
+ ]
+ },
+ "0x51Decd187744bCfAD1BAb0A3E71dD68fAC0ba478": {
+ "name": "TU Dortmund",
+ "credentials": []
+ },
+ "0xa98A6eefbAE870b88a9C7A43f4b50066A01c93b6": {
+ "name": "RWS",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/participantRijkswaterstaat.json"
+ ]
+ },
+ "0x9dfbda23b65efB1c836828D74a96eB8528A60f3C": {
+ "name": "Craftworks",
+ "credentials": ["https://craftworks.euprogigant.io/sd/participant.json"]
+ },
+ "0xb2AF8b92bFaC5299Cb6EDEf16150BFD1d4d26a93": {
+ "name": "Concircle Österreich GmbH",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/participantConcircleAustria.json"
+ ]
+ },
+ "0x2b92BF0496B7B41ea2d723325DDE96651795c784": {
+ "name": "DENSO AUTOMOTIVE Deutschland GmbH",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/participantDenso.json"
+ ]
+ },
+ "0xe761F8e33c71D08A9323Cb2c711aB4Fae2634276": {
+ "name": "DENSO AUTOMOTIVE Deutschland GmbH",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/participantDenso.json"
+ ]
+ },
+ "0x895975869261A215813e33568a295F94A3F301ed": {
+ "name": "Struggle Creative Oy",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/participantStruggle.json"
+ ]
+ },
+ "0xDa4fc9E82Ac4E44207a1f74137493D3437D80761": {
+ "name": "Sphereon",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/participantSphereon.json."
+ ]
+ },
+ "0xfc739f2F91921eb710878ad2Ca38C147a784C96f": {
+ "name": "Austrian Institute of Technology",
+ "credentials": ["https://www.delta-dao.com/.well-known/participant.json"]
+ },
+ "0xF62bF6371Ee020Cb2164Ac3C338514DBbb93A0D4": {
+ "name": "acatech",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/2210_gx_participant_acatech.json"
+ ]
+ },
+ "0x6E1cE3530A12F89cF567788C132454E5dC7D3cCE": {
+ "name": "Spanish Ministry of Economic Affairs and Digital Transformation",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/participantspanishministryofeconomicaffairs.json.json"
+ ]
+ },
+ "0x943CaA8afCAdd2F64a7cE9E53A91d5ea0BEb40c1": {
+ "name": "Eviden Germany GmbH",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/2210_participant_Eviden.json"
+ ]
+ },
+ "0x7A6246e02B2aA276203469Cfb839a2666520D8b5": {
+ "name": "Eviden Germany GmbH",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/2210_participant_Eviden.json"
+ ]
+ },
+ "0x9391291b0Df512B20810183744De8272774b6655": {
+ "name": "TU Delft",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/participantTUDelft.json"
+ ]
+ },
+ "0x2ee3c4F19f90237B7C45cfAD6B5dC4b5840563Ec": {
+ "name": "Perpetuum Progress GmbH",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/participantPerpetuumProgress.json"
+ ]
+ },
+ "0x203C7AA993EED06932FA327a192de9A8370b5Ab4": {
+ "name": "Mercedes-Benz Singapore Pte. Ltd.",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/participantMercedesBenzLtd.json"
+ ]
+ },
+ "0x4d6240C7Ef355a2E85c13B26A49A35908ce853E5": {
+ "name": "Mercedes-Benz Singapore Pte. Ltd.",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/participantMercedesBenzLtd.json"
+ ]
+ },
+ "0x2E33C6014222A47585605F8379a1877eaaF0ec13": {
+ "name": "Mercedes-Benz Singapore Pte. Ltd.",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/participantMercedesBenzLtd.json"
+ ]
+ },
+ "0x6bF77769e84045a9EAC64573e70a5562457C52ad": {
+ "name": "Höchstleistungsrechenzentrum Stuttgart (HLRS)",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/participantHLRS.json"
+ ]
+ },
+ "0x17c8D253443F9E7305A2539d7aF177B21aAD3355": {
+ "name": "Ruhr-Universität Bochum",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/participantRuhrUniversityBochum.json"
+ ]
+ },
+ "0xFDF411B7A23182e7F0a635bdF0d25f0fCb2aAf74": {
+ "name": "north.io GmbH",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/participantNorthIO.json"
+ ]
+ },
+ "0x3560626F234eD181E807E4e31ded56D9aca1ac58": {
+ "name": "CONTACT Software GmbH",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/participantContactSoftware.json"
+ ]
+ },
+ "0xF0926FbE8e60E54aFB4fD296B2698230ab32799b": {
+ "name": "Universität Siegen",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/participantUniversitaetSiegen.json"
+ ]
+ },
+ "0xAA782a260Ad773bca5Ff0535356CB0F7B94Cd254": {
+ "name": "AWS-Institut für digitale Produkte und Prozesse gGmbH",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/participantAWSi.json"
+ ]
+ },
+ "0x2aC6802160A74677B7cEC1aaD7E41Ec968D57896": {
+ "name": "5D Institut GmbH",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/participant5DInstitut.json"
+ ]
+ },
+ "0xFd1BEC7E551fAeA6102045D720dD693c4e9C8E06": {
+ "name": "Accenture",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/participantAccenture.json"
+ ]
+ },
+ "0xa2199E3f60fC244037Efd5A77714CC05F604F855": {
+ "name": "Airbus Defence and Space GmbH",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/participantAIRBUS_DEFENCE_AND_SPACE_GMBH.json"
+ ]
+ },
+ "0x5101ea56E29f5dc03285809b6157f0588ff255D0": {
+ "name": "Bernard Technologies GmbH",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/participantBernardTechnologies.json"
+ ]
+ },
+ "0x8B7f2b75B7F87D3125C8B0eDB85639B441BBcE21": {
+ "name": "Deutsches Forschungszentrum für Künstliche Intelligenz GmbH",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/2210_gx_participant_DFKI.json"
+ ]
+ },
+ "0xB64d95B85FcbDb868AaF0075B023E36f374Bc4F7": {
+ "name": "Deutsches Forschungszentrum für Künstliche Intelligenz GmbH",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/2210_gx_participant_DFKI.json"
+ ]
+ },
+ "0xb11124Dfa40E44b3283068fd07bf6FdE60caf06A": {
+ "name": "Hochschule für angewandte Wissenschaften Kempten",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/participantHSKempten.json"
+ ]
+ },
+ "0x632460b14aDd90aD9430e381B4662779cC1ab7a6": {
+ "name": "Fraunhofer-Institut für Graphische Datenverarbeitung IGD",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/participantFraunhoferIGD.json"
+ ]
+ },
+ "0x1f65110b63B6044f1E92543C09231842131798C7": {
+ "name": "52°North GmbH",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/2210_gx_participant_52north.json"
+ ]
+ },
+ "0xDFa29AE20eac7f203DdDbe15E1830985e99143B8": {
+ "name": "TrueOcean GmbH",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/participantTrueOcean.json"
+ ]
+ },
+ "0xFfA05d656465568BE83B11bf274c5458AC8401AC": {
+ "name": "Institute for Language and Speech Processing",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/participantILSP.json"
+ ]
+ },
+ "0xb500BfE3d89b5D6b0d2b91841c3A3aD568Cb0FdC": {
+ "name": "Vicomtech",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/participantVicomtech.json"
+ ]
+ },
+ "0x8BF36BEFC22a7b9c1a546139bFd4ae8420bcFf0e": {
+ "name": "Fraunhofer IAIS",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/participantFraunhoferIAIS.json"
+ ]
+ },
+ "0x2dB30B996C0E2990F836685Cf1A2939b3299f8e5": {
+ "name": "Berger Holding GmbH & Co. KG",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/participantBergerHolding.json"
+ ]
+ },
+ "0x224482ebcf914b9FA9E312036B377e26B676E534": {
+ "name": "Christoph Kroschke GmbH",
+ "credentials": ["https://kroschke.de/.well-known/participantKroschke.json"]
+ },
+ "0xD580c01E2f503287006138a94eBBc537Fe7eBD25": {
+ "name": "Brinkhaus GmbH",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/participantBrinkhausGmbH.json"
+ ]
+ },
+ "0x4B107057aB8278c7d9436bf76230d16e5F7BaD16": {
+ "name": "Gühring KG",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known//2210_gx_participant_guehring.json"
+ ]
+ },
+ "0x7bf493b142AB0bb37c7f766A1585245901891685": {
+ "name": "Fraunhofer-Institut für Werkzeugmaschinen und Umformtechnik IWU",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/2210_gx_participant_Fraunhofer_IWU.json"
+ ]
+ },
+ "0x1c0c9211E8Ec8E0253A53880D5481e4580B62125": {
+ "name": "imc information multimedia communication AG",
+ "credentials": ["https://www.delta-dao.com/.well-known/participantIMC.json"]
+ },
+ "0xEEe803bEFd2B4f229E57523Edb11CDE38DD1a23E": {
+ "name": "SAP Fioneer GmbH",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/participantSAPFioneer.json"
+ ]
+ },
+ "0xb828bA1850aA11daA1890896573Aa6008221A671": {
+ "name": "NT Neue Technologie AG",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/participantNeueTechnologie.json"
+ ]
+ },
+ "0x005d24698bF41c398ECF15a93455621932a6e19F": {
+ "name": "IONOS SE",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/2210_gx_participant_Ionos.json",
+ "https://www.delta-dao.com/.well-known/participantIONOS2.json"
+ ]
+ },
+ "0x746d4715c24fc4d26D02A558ACF98dC717C68E1e": {
+ "name": "ScopeSET GmbH",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/2210_gx_participant_ScopeSET.json"
+ ]
+ },
+ "0x1Bf21DCb771Aba18B1D23AA6D8a619C1AB1811a4": {
+ "name": "RIB Software GmbH",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/participantRIBSoftware.json"
+ ]
+ },
+ "0x04FEA446847c3539d35Cca0a74Cb82Da811BAfc3": {
+ "name": "msg DAVID GmbH",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/participantmsgDAVID_2.json"
+ ]
+ },
+ "0x69bF63B2Bb6A93fc4ff434595A72a4ED313E5698": {
+ "name": "Arvato Systems GmbH",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/participantArvatoSystemsGmbH.json"
+ ]
+ },
+ "0xEdfd506dd449Cd06c91f51Fe9DfE4e3E57B2F8f5": {
+ "name": "Fraunhofer-Institut für Produktionsanlagen und Konstruktionstechnik",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/participantFHGIPK.json"
+ ]
+ },
+ "0x0763BfBcBfA0126b5A5509fB1185b7b6476BdAd8": {
+ "name": "OSISM GmbH",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/participantOSISM.json"
+ ]
+ },
+ "0x54d2946677CC16E06Efd6161A4abFA17fc98Afc3": {
+ "name": "Netcompany-Intrasoft S.A.",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/participantNetcompanyInfrasoft.json"
+ ]
+ },
+ "0x5880C2C30C922FE700fc079e1b6BBa7e9E7DE577": {
+ "name": "Stackable GmbH",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/participantStackable.json"
+ ]
+ },
+ "0xc2350eA5913511A95c1aBED51de377A0b92846Be": {
+ "name": "FZI Forschungszentrum Informatik",
+ "credentials": []
+ },
+ "0x0c85Cd08E6643Fa3E4B75268431d19CcFC99C916": {
+ "name": "ProCarement GmbH",
+ "credentials": []
+ },
+ "0x1153265057782e8C57292CA590E50acC36037204": {
+ "name": "Hochschule Furtwangen University (HFU)",
+ "credentials": []
+ },
+ "0xF211efa0C51559e6730db3Ba6FE1f1D46A68BE14": {
+ "name": "Daten-Kompetenzzentrum Städte und Regionen DKSR GmbH",
+ "credentials": []
+ },
+ "0x7209bd8fDd841358a3CF9E7DaD8D9dCe2E4BbBB8": {
+ "name": "GMN Paul Müller Industrie GmbH & Co. KG",
+ "credentials": []
+ },
+ "0xDB5807EacA2937f6264c5725538f8Ec357b4d3b2": {
+ "name": "Fraunhofer-Institut für Offene Kommunikationssysteme FOKUS",
+ "credentials": []
+ },
+ "0x8482256AC35fcA568a53CfD77Af9538FEC0691bb": {
+ "name": "Bechtle Aktiengesellschaft",
+ "credentials": []
+ },
+ "0x985f314171DFc0Ec3443E32b262c3135E094eD72": {
+ "name": "Bundesdruckerei Gruppe GmbH",
+ "credentials": []
+ },
+ "0x99c030936B5E7381E65B645d3762A93147EB15F7": {
+ "name": "Fraunhofer IOSB",
+ "credentials": []
+ },
+ "0x7104a77Ca5FfC6D3f0840048C307d05EA3b529C0": {
+ "name": "embeteco GmbH & Co. KG",
+ "credentials": []
+ },
+ "0x9c373e9f125497281f37AeF603fa99572856Bc38": {
+ "name": "T-Systems International GmbH",
+ "credentials": []
+ },
+ "0x8FAF0702C51c94b5848774129047d75cEe49EE87": {
+ "name": "IPROconsult GmbH",
+ "credentials": []
+ },
+ "0x3EAbA16E4Ac451D85839A42eb9e7C61F157C88b7": {
+ "name": "Elektra Solar GmbH",
+ "credentials": []
+ },
+ "0x1c99F7C29EE0e79CAAD8E4d0Cc0b95D5Ece62294": {
+ "name": "Setlabs Research",
+ "credentials": []
+ },
+ "0xb9C596E9eC598a865b51f3F53ae7d122B7b7a937": {
+ "name": "Schüßler-Plan Digital GmbH",
+ "credentials": []
+ },
+ "0xb7cF56a08F2B6ccF250B431125850968b7f6a950": {
+ "name": "Data Machine Intelligence Solutions GmbH",
+ "credentials": []
+ },
+ "0x4476123c4B4706cf88CbfA055b72726Baa1e8041": {
+ "name": "Deutsches Zentrum für Luft- und Raumfahrt e. V. (DLR)",
+ "credentials": []
+ },
+ "0x9309Ce467475DbB0a9c549B988F6571EB024507C": {
+ "name": "OHB System AG",
+ "credentials": []
+ },
+ "0xb51d556E910Dd1887602034bbB66DA63EaA80ce2": {
+ "name": "C&S Computer und Software GmbH",
+ "credentials": []
+ },
+ "0x007dB3DC8De9ae0F8AfeeBf1f7C92CcbD1A75Fd7": {
+ "name": "eco - Verband der Internetwirtschaft e.V.",
+ "credentials": []
+ },
+ "0xe70bBA7bC033Bf1Ce6Fa3328eCFAAc8966E66966": {
+ "name": "Institut für Automation und Kommunikation e. V.",
+ "credentials": []
+ },
+ "0xE4EE92b3a6B661b7148305Fa3A8d96062CBFAFc5": {
+ "name": "Fujitsu Services GmbH",
+ "credentials": []
+ },
+ "0x37e01308d6A0E322dECc457a13E0B2b2086D84B1": {
+ "name": "RADIUSMEDIA KG",
+ "credentials": []
+ },
+ "0x9Adf8e343ec1C7dB2B44e420bB8F4Cc51dEbFb7a": {
+ "name": "ahu GmbH Wasser Boden Geomatik",
+ "credentials": []
+ },
+ "0xE64872A181F0695DA0660fE0B809a89A3bA359AA": {
+ "name": "Hochschule Offenburg (HSO)",
+ "credentials": []
+ },
+ "0x533d456D3D5c16E6390647E2167678b7a76A4840": {
+ "name": "FeltLabs",
+ "credentials": []
+ },
+ "0x56e194D46fF305560f51D06cE84649C1DD91d2F8": {
+ "name": "FeltLabs",
+ "credentials": []
+ },
+ "0x61DB12d8b636Cb49ea09eCa58a893dA9480E1F33": {
+ "name": "BigchainDB GmbH",
+ "credentials": []
+ },
+ "0xC8a08b33995594bfdB0ef9c18EB72da0469E396F": {
+ "name": "Deal ex Machina",
+ "credentials": []
+ },
+ "0x289Ff19C1e544B6E9488d5E79966491A2bAa88C9": {
+ "name": "Deloitte",
+ "credentials": []
+ },
+ "0x2650e382770A04bE0f7E362ed578FB261A60F4b3": {
+ "name": "3D Mapping Solutions GmbH",
+ "credentials": []
+ },
+ "0x172b3eB3BDa62e81c171d340eC4a8C70f3d044EF": {
+ "name": "Vodafone Group Services Limited",
+ "credentials": []
+ },
+ "0xf1F30d7048775F02139Be30067e984F2C2d1812a": {
+ "name": "Vodafone Group Services Limited",
+ "credentials": []
+ },
+ "0xc21854fC5B997afa00c75b5098842a61F6E18e5B": {
+ "name": "Feuerwehr Braunschweig",
+ "credentials": []
+ },
+ "0x3561F6126Ce77A98fdC09DA2815919d5E04879D5": {
+ "name": "Airbus Defense and Space GmbH",
+ "credentials": []
+ },
+ "0xaDD9344fc33530dE1F2fb338de4Cf25f7d8a6E92": {
+ "name": "Airbus Defense and Space GmbH",
+ "credentials": []
+ },
+ "0xD9d17aC4b23222D0F9055723127acCaeeE834AD7": {
+ "name": "Airbus Defense and Space GmbH",
+ "credentials": []
+ },
+ "0x81c337F4a5113E30919F588F178a361ade1D1Be2": {
+ "name": "ZARM Technik AG",
+ "credentials": []
+ },
+ "0xA38E2b6fFf3d9c66270253c7fE4Dcb5B088020D5": {
+ "name": "htw Saar",
+ "credentials": []
+ },
+ "0x3BB6944351d156fAF798f952C2838ef5bac68E40": {
+ "name": "Centre de Visió per Computador (CVC)",
+ "credentials": []
+ },
+ "0xC09c6A1d5538E7ed135d6146241c8da11e92130B": {
+ "name": "Freie und Hansestadt Hamburg",
+ "credentials": []
+ },
+ "0xA933f297ca605434850419951685ACeEcE2Bc88e": {
+ "name": "IGH Infotec AG",
+ "credentials": []
+ },
+ "0xd1E02B17524C53B337C22BF9D414bc15f933C3f0": {
+ "name": "itemis AG",
+ "credentials": []
+ },
+ "0x4DdaE8989871DB4fAB65d62775e20c577340F8bE": {
+ "name": "inovex GmbH",
+ "credentials": []
+ },
+ "0xAaeA7A824cffffFFf9Dd6EC51D7D7B0abA3f205F": {
+ "name": "neusta aerospace GmbH",
+ "credentials": []
+ },
+ "0xf9eaebd346E9D414f4D4210CB12e43cc226038cF": {
+ "name": "DLR GfR mbH",
+ "credentials": []
+ },
+ "0xdbe749D939ea958aC64A5bdf163B05096E260572": {
+ "name": "Valispace GmbH",
+ "credentials": []
+ },
+ "0x938224aC9e4832C517818B147BB1f6b10ADdCd26": {
+ "name": "Valispace GmbH",
+ "credentials": []
+ },
+ "0xAE823B7a6ad5b79da6d180Dbe91E7C810abAcCA4": {
+ "name": "grandcentrix GmbH",
+ "credentials": []
+ },
+ "0x2B9C7E0d7Be68ec6b519Dad050CD0A4bf130B6A4": {
+ "name": "DIO",
+ "credentials": []
+ },
+ "0x8e8D96aD41025EAFE3D4C198afca6c1eb5EB7a32": {
+ "name": "SSC-Services GmbH",
+ "credentials": []
+ },
+ "0x689aB080FeF2e5D7C3e434E4f383d0Cf266F5F26": {
+ "name": "enviroCar-01",
+ "credentials": []
+ },
+ "0xdd0a0278f6BAF167999ccd8Aa6C11A9e2fA37F0a": {
+ "name": "Approve EUROe",
+ "credentials": []
+ },
+ "0xdCa2bf6c67d7ffc8003B62bE3517b45506Ca2950": {
+ "name": "XAsia Probability Data",
+ "credentials": []
+ },
+ "0x90A5C7b01A19D451056086789b7932bfd393EADC": {
+ "name": "XAsia Probability",
+ "credentials": []
+ },
+ "0x952D30877699598e10fCAF57D1728d1D08cCf626": {
+ "name": "OCR Test 1",
+ "credentials": []
+ },
+ "0xF9be108f1e6D1C053273b87f6eE1cb6B6AdCf615": {
+ "name": "XAsia Data",
+ "credentials": []
+ },
+ "0x744a5B098dbf7FD7c4326F9424C29Fdd63921f97": {
+ "name": "XAsia Analysis",
+ "credentials": []
+ },
+ "0x5C2867c3862cC9fA134fE3441354A877262b4D63": {
+ "name": "Digital PMO",
+ "credentials": []
+ },
+ "0x629A5175d4ee48AC7F9F4b05F92B9714d38C445a": {
+ "name": "Detect Software",
+ "credentials": []
+ },
+ "0xf2204753Cbf117622900Ac62eA97Fd5FE1c5855A": {
+ "name": "Defect Imageset 1 v2",
+ "credentials": []
+ },
+ "0xef0E7512F7AF5d4254eA39c7295D411bb3b73321": {
+ "name": "CO2 Estimate",
+ "credentials": []
+ },
+ "0xe6b1b66E6f2610B76e92aF9EEeE94a3a153fb733": {
+ "name": "EuProGigant 820C",
+ "credentials": []
+ },
+ "0x4FD0745e945AE67FDbbD2935d8F434c0cc3331f7": {
+ "name": "EuProGigant 821C",
+ "credentials": []
+ },
+ "0xD73b05792607dB02C7d5b280C8cc51D1F5cB0aeB": {
+ "name": "EuProGigant 824C",
+ "credentials": []
+ },
+ "0xCBb032a8E5862981eFfCD8883cdf3871e58BC124": {
+ "name": "EuProGigant 829C",
+ "credentials": []
+ },
+ "0x7a79678fB31C855B382797e029b7f517a6B581A1": {
+ "name": "EuProGigant 830C",
+ "credentials": []
+ },
+ "0x59Ba45B05F68b95B57e69D0d391aF732B3c241a0": {
+ "name": "EuProGigant 844C",
+ "credentials": []
+ },
+ "0x269D6c8c3741c86B318493c41F186994956B8dd8": {
+ "name": "EuProGigant 846C",
+ "credentials": []
+ },
+ "0x401fABA45ad4D66095Ad394f701499B920392308": {
+ "name": "EuProGigant 847C",
+ "credentials": []
+ },
+ "0x7210fA5f4F82b66564181699C8Cb09A1FdD7D474": {
+ "name": "EuProGigant 848C",
+ "credentials": []
+ },
+ "0x06815Dc89b8d804935447abB3EcF78e588ED4FeD": {
+ "name": "EuProGigant 849C",
+ "credentials": []
+ },
+ "0x94E6892daBBb49373199744eE694CbC6128c4a16": {
+ "name": "EuProGigant 850C",
+ "credentials": []
+ },
+ "0x83565B4fD5C24aa8075671BeC7d6463baa7D6554": {
+ "name": "EuProGigant 851C",
+ "credentials": []
+ },
+ "0x46B08D505195F4826797dC67D315dEfa77E08C92": {
+ "name": "EuProGigant 853C",
+ "credentials": []
+ },
+ "0x0A1d8040C1CCe0597586e5CB033737E12ad1F178": {
+ "name": "EuProGigant 854C",
+ "credentials": []
+ },
+ "0x5217fC46348C6404Ed45A06DFe38374263C6Dac1": {
+ "name": "EuProGigant 855C",
+ "credentials": []
+ },
+ "0xdDdB40FF8b2971EB7D87AFdFe189Ab814Dd36c88": {
+ "name": "EuProGigant 856C",
+ "credentials": []
+ },
+ "0x218F13bB2d52CE5B9Eaa440B923FC738e916706F": {
+ "name": "EuProGigant 857C",
+ "credentials": []
+ },
+ "0xbCd8c5eEC87bb67f61C0D7c61bd1e144667a97d7": {
+ "name": "EuProGigant 858C",
+ "credentials": []
+ },
+ "0x721c13C16914b1Dcc9f16Ca7F36443E3FF1f669d": {
+ "name": "EuProGigant 880C",
+ "credentials": []
+ },
+ "0x4800A8709656D23707260831552252C28D71B7A3": {
+ "name": "EuProGigant 881C",
+ "credentials": []
+ },
+ "0xA1C749aA0b77D129c181Cb7C7bDCB0D677AA5679": {
+ "name": "EuProGigant 882C",
+ "credentials": []
+ },
+ "0xbB340Bb7211AF5eE61DF181CAD3c46E5cce7C18B": {
+ "name": "Map Service HH 01",
+ "credentials": []
+ },
+ "0x085BD42cFf8a197866635F24200d34BEa2E562e7": {
+ "name": "moveID RCM 02",
+ "credentials": []
+ },
+ "0xE598D4f268253c933db79CdE21eed9ccd7C06AEA": {
+ "name": "moveID RCM 01",
+ "credentials": []
+ },
+ "0x4E0d0d9442036Ab25DD0318Ea14d1652b5e0B4Ff": {
+ "name": "moveID Images 18",
+ "credentials": []
+ },
+ "0x382045266FB802c261d9755E7724594753DD611d": {
+ "name": "moveID Images 17",
+ "credentials": []
+ },
+ "0xfe93047A10e4540977386004bF2863D4230639C2": {
+ "name": "moveID Images 16",
+ "credentials": []
+ },
+ "0xbEe092Bb89C7B167D6E63E952d15e53D3B08cA45": {
+ "name": "moveID Images 15",
+ "credentials": []
+ },
+ "0x998aB7f4d9620FD1DBBF12272435caE458D16e1A": {
+ "name": "moveID Images 14",
+ "credentials": []
+ },
+ "0x56163d00093bDdA803Cb826DBB563f4c5Bb2b1B2": {
+ "name": "moveID Images 13",
+ "credentials": []
+ },
+ "0x411b68263ece6f7179Eec3F537F4a1981d075ec0": {
+ "name": "moveID Images 12",
+ "credentials": []
+ },
+ "0x28FAf2743f21AA0EAE14a37A4daDF25E79f38AE0": {
+ "name": "moveID Images 11",
+ "credentials": []
+ },
+ "0x23E55F6DF3325ad0a2605d4930CBbBDd68CfAF51": {
+ "name": "moveID Images 10",
+ "credentials": []
+ },
+ "0x68a6a229c1485B68A759a9731983456364de5DAD": {
+ "name": "moveID Images 9",
+ "credentials": []
+ },
+ "0x16dD1FB1e55918dccd7fBa2525e764BB1Ee33a86": {
+ "name": "moveID Images 8",
+ "credentials": []
+ },
+ "0xf4C33572Ca1c9A06D3d1D92e601B3559c2E1A436": {
+ "name": "moveID Images 7",
+ "credentials": []
+ },
+ "0xc9EC083C3aaaAC367643F5C72F5003d4ccb67397": {
+ "name": "moveID Images 6",
+ "credentials": []
+ },
+ "0x0A5adb41901ac503fC2400B5a2e38c70A6CE86bd": {
+ "name": "moveID Images 5",
+ "credentials": []
+ },
+ "0xe8ecC6c91391854861EB55fa270C30E12Af4F1E4": {
+ "name": "moveID Images 4",
+ "credentials": []
+ },
+ "0xAcec258c049Bbf6955e25c84184ba38C54552a27": {
+ "name": "moveID Images 3",
+ "credentials": []
+ },
+ "0x2010bEEe740F4aE18d203Fc07cc8F5d92760eb76": {
+ "name": "moveID Images 2",
+ "credentials": []
+ },
+ "0x5bfa02EA01566a52593F6B218d95Cfd3Ac7b4A4b": {
+ "name": "moveID Images 1",
+ "credentials": []
+ },
+ "0x6C09c6561618E84052204Efdd1a5844a8EA2cAd5": {
+ "name": "pro-micron GmbH",
+ "credentials": []
+ },
+ "0x56289213416634216ff0BccF3671653863CE6aa1": {
+ "name": "Goudappel BV",
+ "credentials": []
+ },
+ "0x1E423FD6c2Ce13E34bF0dB8f0Ad5CCF372578C33": {
+ "name": "Posedio",
+ "credentials": []
+ },
+ "0xD7783c77A0bd22914872BEbdFa1c00204fF9Ec50": {
+ "name": "Deal ex Machina SAS",
+ "credentials": []
+ },
+ "0x3F820b9D0A310a3C689EbC425a5D864D31bFE454": {
+ "name": "Nimbus Connected",
+ "credentials": []
+ },
+ "0x25582EaCC369Fa9830394A78664337ED3eD7a367": {
+ "name": "Secret Dummy",
+ "credentials": []
+ },
+ "0x70adaBC2BbD139e64f06f2cf6d0e2180cb5E523a": {
+ "name": "Zoning Service",
+ "credentials": []
+ },
+ "0x8D8CBbf19b94e2C2B456AC218C5e833C9eA08b5e": {
+ "name": "THL600 Spec.",
+ "credentials": []
+ },
+ "0x707d9Cf07b2349315e87448A1C4A4B5092468287": {
+ "name": "THL600 Spec.",
+ "credentials": []
+ },
+ "0xAeb4A2bE7Eb32Ce51A64d75AD00DBfb7E05966a4": {
+ "name": "Sun Sensor v1",
+ "credentials": []
+ },
+ "0x6044e53f7Aaf1fA456cD7461143657f3c53CeCe1": {
+ "name": "GPS v2",
+ "credentials": []
+ },
+ "0x7Ef230b905927Bf5aD7610894Da728f85C828faB": {
+ "name": "Gyroscope v1",
+ "credentials": []
+ },
+ "0x2678228892CE9c15382BC8F38911e4098f8c131C": {
+ "name": "Magnetometer v3",
+ "credentials": []
+ },
+ "0x3D308451D0eE3B1E1c6c2b24f3722A09331C566E": {
+ "name": "Magnettorquer v1",
+ "credentials": []
+ },
+ "0x5c87001e824910bFd22F216150413C8EB52e7c4a": {
+ "name": "Reaction v2",
+ "credentials": []
+ },
+ "0x0f788f429950fa70961297227B0669109f0Ab5B7": {
+ "name": "Star_Tracker v2",
+ "credentials": []
+ },
+ "0x5144012b36Ff713448b9D11CA9aC75f00CD143CC": {
+ "name": "Star_Tracker v3",
+ "credentials": []
+ },
+ "0xA2cd83A9a9779d8434927843247ee685A1e03a7A": {
+ "name": "Star_Tracker v4",
+ "credentials": []
+ },
+ "0x60115cc83fc5a44D37bA6c4C1a25323019e255A1": {
+ "name": "Star_Tracker v5",
+ "credentials": []
+ },
+ "0x539158e4bdCf966E301881fcbfB6E88cB6491BEe": {
+ "name": "HEATER v1",
+ "credentials": []
+ },
+ "0x80126b685f0aB7358745Eccc1AB1376D6BdBB12f": {
+ "name": "THERMISTOR_1K v2",
+ "credentials": []
+ },
+ "0x5C5637268bd9fD28e365B7a492e8cF9e19da8f24": {
+ "name": "TVL",
+ "credentials": []
+ },
+ "0xc1dF3Cd04BE1159f1b6e27Dfa04a846FAbc959dc": {
+ "name": "BEEBUCKET GmbH",
+ "credentials": []
+ },
+ "0xd794CeB60d49755762C17bD7Cc5f613FE363b9F6": {
+ "name": "Neoception GmbH",
+ "credentials": []
+ },
+ "0x70aef11232114e64d8ff1bc1b77dcea0dfeb5af7": {
+ "name": "Load Test 20",
+ "credentials": []
+ },
+ "0x8019b807912f3fc1787f7f4c60200bbe3e0cea09": {
+ "name": "Load Test 19",
+ "credentials": []
+ },
+ "0x98efc94ada3397f1e8a36d5b393350f1c3b6da5b": {
+ "name": "Load Test 18",
+ "credentials": []
+ },
+ "0x09f012fd0e6d9d5be8b1c2e98e8a221b4bee121b": {
+ "name": "Load Test 17",
+ "credentials": []
+ },
+ "0x3d49b6ce1eb74b01c6ded0a275a22949e2726715": {
+ "name": "Load Test 16",
+ "credentials": []
+ },
+ "0xed7a18fdee06e3e4fb50e717567a357711615f09": {
+ "name": "Load Test 15",
+ "credentials": []
+ },
+ "0x9332c77c7cbddee7824bab4f20002e7aa716898e": {
+ "name": "Load Test 14",
+ "credentials": []
+ },
+ "0x0dfe520a6f548bf0688914b109055e77f39d7941": {
+ "name": "Load Test 13",
+ "credentials": []
+ },
+ "0x181aaaa8b8fa28b909b15e7d039e242410fdd526": {
+ "name": "Load Test 12",
+ "credentials": []
+ },
+ "0x32d5114ef59b0567865caa1110a6ce7369e886d4": {
+ "name": "Load Test 11",
+ "credentials": []
+ },
+ "0x6fcc2c7bec531289c47126c8113822788e147304": {
+ "name": "Load Test 10",
+ "credentials": []
+ },
+ "0xefe599c6fc93e83ecca15a6e22bf33372a0cab4f": {
+ "name": "Load Test 09",
+ "credentials": []
+ },
+ "0x35d8592f5b7c616442fc1053db23b582661b335f": {
+ "name": "Load Test 08",
+ "credentials": []
+ },
+ "0x53c25cd5cdb0bdb444f0b972622c43d5a1787476": {
+ "name": "Load Test 07",
+ "credentials": []
+ },
+ "0x9e8be5df26a1e2e5356118a54b40832aad3ea99d": {
+ "name": "Load Test 06",
+ "credentials": []
+ },
+ "0x8e7092d647648359ad504650e5555d7ff41c4476": {
+ "name": "Load Test 05",
+ "credentials": []
+ },
+ "0x5a2b79e232f205af2a6fbc20edadd2952b73fe8d": {
+ "name": "Load Test 04",
+ "credentials": []
+ },
+ "0xab10aaa8da79f5d1a126b98fe663024e38cc2d39": {
+ "name": "Load Test 03",
+ "credentials": []
+ },
+ "0x5460fccb858793ea5d176fedc6b46ed1a1f9e1ce": {
+ "name": "Load Test 02",
+ "credentials": []
+ },
+ "0x85ac41ef595ae19dfe7fa5c7fceb251fdcfce327": {
+ "name": "Load Test 01",
+ "credentials": []
+ },
+ "0x1B76F1026B29f4bBf18009E44fD069b8915B3960": {
+ "name": "Load Tester 01",
+ "credentials": []
+ },
+ "0x3307020Da97cE08e1B296042E99015bF99ad1D43": {
+ "name": "Load Tester 02",
+ "credentials": []
+ },
+ "0x772ff6cA16103de9ADC15faea85e68Ba87b885DE": {
+ "name": "Load Tester 03",
+ "credentials": []
+ },
+ "0x660B6D6b83cE812c8d2B977B5Ee216b89e10153c": {
+ "name": "Load Tester 04",
+ "credentials": []
+ },
+ "0xd7827e25Ab8aFF11C21a9B6655fD7a6CE304f912": {
+ "name": "Load Tester 05",
+ "credentials": []
+ },
+ "0x10b07F5D3ba056dF3afe94dCC29c446a59462fBe": {
+ "name": "Load Tester 06",
+ "credentials": []
+ },
+ "0x1Eb047444D65EAB14EcBd8d0c8d290CCF1D74480": {
+ "name": "Load Tester 07",
+ "credentials": []
+ },
+ "0x741F71533929bffB17d37830db3A1B88997D7936": {
+ "name": "Load Tester 08",
+ "credentials": []
+ },
+ "0xC7e1a8858760C09fe24b46dE0DFaEa7ee3CF8721": {
+ "name": "Load Tester 09",
+ "credentials": []
+ },
+ "0x27b7534b018ac11BD377f668546906C6aCD52c28": {
+ "name": "Load Tester 10",
+ "credentials": []
+ },
+ "0xC844DE2AF6b401B10Fe6f0733EfE2C98048b0C90": {
+ "name": "Load Tester 11",
+ "credentials": []
+ },
+ "0x87C1B399DDc7Ffdc2849672fd80600b2Fe1BE49a": {
+ "name": "Load Tester 12",
+ "credentials": []
+ },
+ "0x1057c71CF2932E7ceF4Fab53c42f974FA6462494": {
+ "name": "Load Tester 13",
+ "credentials": []
+ },
+ "0x1eC6c60332b676d9f81CB9DED9cC21CB4294cbFc": {
+ "name": "Load Tester 14",
+ "credentials": []
+ },
+ "0x80D70Ac246695E925ba32389d062041Ddc3b36b5": {
+ "name": "Load Tester 15",
+ "credentials": []
+ },
+ "0x3541901cF20E57cE127ca19960De4bB907FfBaB3": {
+ "name": "Load Tester 16",
+ "credentials": []
+ },
+ "0x77d48a2Ed620e9743eefcf9109BeaB361c21A7d5": {
+ "name": "Load Tester 17",
+ "credentials": []
+ },
+ "0x89974C9Bb0A2433afD4Ae8A11D189e7aAC1Cae9F": {
+ "name": "Load Tester 18",
+ "credentials": []
+ },
+ "0x7Cc6a9486AcCa9756a19504f9d3DD5E75C0c0850": {
+ "name": "Load Tester 19",
+ "credentials": []
+ },
+ "0x8e2dA7fc24D4b253F4829987240BF5FDC73550A3": {
+ "name": "Load Tester 20",
+ "credentials": []
+ },
+ "0xdA1177705EC8ac8AaCD222140031f4066faFD552": {
+ "name": "Load Tester 21",
+ "credentials": []
+ },
+ "0x7C052DED09B3275a5aCd0f7395886ec489bfD524": {
+ "name": "Load Tester 22",
+ "credentials": []
+ },
+ "0xe3426274150c4a0662D213f490ADb71015E5264F": {
+ "name": "Load Tester 23",
+ "credentials": []
+ },
+ "0x241C279Dc6cDd323d4Ea7c9eb6523bEDaCeC32E9": {
+ "name": "Load Tester 24",
+ "credentials": []
+ },
+ "0x2C8909E9F06e35a0f5E30Ee4864ba5B9d69bb2FD": {
+ "name": "Load Tester 25",
+ "credentials": []
+ },
+ "0x083C0EeE08e5A2604cEb685e44e292825A22bD99": {
+ "name": "Load Tester 26",
+ "credentials": []
+ },
+ "0x1A9eB6f22907fDF82885EF317691D5a736c3b26c": {
+ "name": "Load Tester 27",
+ "credentials": []
+ },
+ "0x28c816efb4caDeF6871f87AfF80E968105FEb534": {
+ "name": "Load Tester 28",
+ "credentials": []
+ },
+ "0x997a77423aA7E94461255A0ADA92B042Da96A4F4": {
+ "name": "Load Tester 29",
+ "credentials": []
+ },
+ "0x4342df26FFA55043E90Aac6459c56f1f19955d09": {
+ "name": "Load Tester 30",
+ "credentials": []
+ },
+ "0x5Dd4b45b0209bB093AA4e2555255ee099f168eE8": {
+ "name": "Load Tester 31",
+ "credentials": []
+ },
+ "0x04c787818F35922475561C6E89eFcD98e2c662d0": {
+ "name": "Load Tester 32",
+ "credentials": []
+ },
+ "0x2f56Cb0560bf75c56395a26DcC7359a5FFCA579b": {
+ "name": "Load Tester 33",
+ "credentials": []
+ },
+ "0x8256d95B16170E60b3f0f43dA671F3F65Ca8e6ef": {
+ "name": "Load Tester 34",
+ "credentials": []
+ },
+ "0xf447B099fe1436649BE6243d0D47A938373D0828": {
+ "name": "Load Tester 35",
+ "credentials": []
+ },
+ "0x7f849F47aC00B4c28CB6F40E3E2fe5fD611E6818": {
+ "name": "Load Tester 36",
+ "credentials": []
+ },
+ "0x1CA2D65f5E77ebDb01cf07C100cddC076c07e50A": {
+ "name": "Load Tester 37",
+ "credentials": []
+ },
+ "0x817b569b9907b193fFc3EB6398F5f2d44681f8ab": {
+ "name": "Load Tester 38",
+ "credentials": []
+ },
+ "0x7c537c0ef735eFAA0BffA8FC6e1A1c6384674745": {
+ "name": "Load Tester 39",
+ "credentials": []
+ },
+ "0x8c01fa36a7792950F567B386C3f8e57C10C45798": {
+ "name": "Load Tester 40",
+ "credentials": []
+ },
+ "0xBdb3D87390F841126b1dbE7424c62b22537418c0": {
+ "name": "Load Tester 41",
+ "credentials": []
+ },
+ "0xd1E1B335666acCBd5b29b38B3fB3D804D0A92082": {
+ "name": "Load Tester 42",
+ "credentials": []
+ },
+ "0xBd06EeA98B715a4479D2431E9C466E72466F6863": {
+ "name": "Load Tester 43",
+ "credentials": []
+ },
+ "0x6828038D66f0151E2b77808DFb5Ee85033dEC989": {
+ "name": "Load Tester 44",
+ "credentials": []
+ },
+ "0xD9ff7196baAAf1D789937A09FbD48629fba5FDD5": {
+ "name": "Load Tester 45",
+ "credentials": []
+ },
+ "0xCD5Bb8bDAD37D66a210C9DDDCD048405AA56659a": {
+ "name": "Load Tester 46",
+ "credentials": []
+ },
+ "0x8b93Ee1bF059CEDbc2804CC2600DFcaF18D22885": {
+ "name": "Load Tester 47",
+ "credentials": []
+ },
+ "0x9C7Bb07F78282c94A41Df6957762a25fFE9C537f": {
+ "name": "Load Tester 48",
+ "credentials": []
+ },
+ "0x3B89Dc71d8f672dEaE93aDf1285eBd08fDf44244": {
+ "name": "Load Tester 49",
+ "credentials": []
+ },
+ "0x858783462412A54A7ad9F163d70D0cC801bc7e16": {
+ "name": "Load Tester 50",
+ "credentials": []
+ },
+ "0xdDc76C84745D49635e6c39e49D18CeF9DB195122": {
+ "name": "Load Tester 51",
+ "credentials": []
+ },
+ "0x2C1605e60e3019fa5FdF70f0715d6fCaab7cFec7": {
+ "name": "Load Tester 52",
+ "credentials": []
+ },
+ "0xB1267700D5F30DE00772342E67A827A1203307bB": {
+ "name": "Load Tester 53",
+ "credentials": []
+ },
+ "0x26Eb315Ec8fe49fcFF9D633e2a8d40d8F32fc796": {
+ "name": "Load Tester 54",
+ "credentials": []
+ },
+ "0x8dD9Cc8d55d2e6691b9e2B7949A122299D5cE705": {
+ "name": "Load Tester 55",
+ "credentials": []
+ },
+ "0x42126600ce103CEe55e014fa2202006501cCe353": {
+ "name": "Load Tester 56",
+ "credentials": []
+ },
+ "0xD6DDAacac332ae83294Eb6829E8A4a528AF4693e": {
+ "name": "Load Tester 57",
+ "credentials": []
+ },
+ "0x7EaaAf241dA677cF6228A760c6Dd9Ff320cc485e": {
+ "name": "Load Tester 58",
+ "credentials": []
+ },
+ "0xb88C670CFd5D394398EB67f9BfCa2412a4fA4551": {
+ "name": "Load Tester 59",
+ "credentials": []
+ },
+ "0x4C9608F75B1A1644beA371659a2f7855C9Cc9365": {
+ "name": "Load Tester 60",
+ "credentials": []
+ },
+ "0x62De34F259FE1DFA6D1f052112ec9311DB5970a2": {
+ "name": "Load Tester 61",
+ "credentials": []
+ },
+ "0xe73AD17E137D6c461023624a361dE73a4c4b44E2": {
+ "name": "Load Tester 62",
+ "credentials": []
+ },
+ "0x7F455c46E2C344D16a4f2b6B64e8B1F2e32efBB6": {
+ "name": "Load Tester 63",
+ "credentials": []
+ },
+ "0x5D295C73d81dc0007155cB747Bf8A64A764bE8a9": {
+ "name": "Load Tester 64",
+ "credentials": []
+ },
+ "0xFf9B9702E5793ffDD2bC96Cd0251A9762B5c478D": {
+ "name": "Load Tester 65",
+ "credentials": []
+ },
+ "0x49D8c57648d0D1BC7A171c7c750be0a2796bada2": {
+ "name": "Load Tester 66",
+ "credentials": []
+ },
+ "0x51FF3049B740069B0f6233F7bBBbfe2cEB421FEB": {
+ "name": "Load Tester 67",
+ "credentials": []
+ },
+ "0x778277990021B0491F1217FA2Ccc4988a932623C": {
+ "name": "Load Tester 68",
+ "credentials": []
+ },
+ "0xc66dF9a5e337a5544a8931e1F982A40281eCBaec": {
+ "name": "Load Tester 69",
+ "credentials": []
+ },
+ "0x70A997Ac1e85a34a3bae65F493b13b72c56Db9f4": {
+ "name": "Load Tester 70",
+ "credentials": []
+ },
+ "0x59e41768E6a0cbDAD5Aea9ccE73708db58d60792": {
+ "name": "Load Tester 71",
+ "credentials": []
+ },
+ "0xA51837F0666722cB7f52632E771F4AA5cd88F2d0": {
+ "name": "Load Tester 72",
+ "credentials": []
+ },
+ "0x2f604877943F3DBb9d3a386e1624E6c678e4897c": {
+ "name": "Load Tester 73",
+ "credentials": []
+ },
+ "0x8c2a91C6ba92e113971C0c5EE1655CB216f3b0B3": {
+ "name": "Load Tester 74",
+ "credentials": []
+ },
+ "0x9Dd1111588a9d738CF3547EF00C63130D17F5A76": {
+ "name": "Load Tester 75",
+ "credentials": []
+ },
+ "0xef5D4f89eE6e2741ceCB171e29d359F29b385daE": {
+ "name": "Load Tester 76",
+ "credentials": []
+ },
+ "0xB4DB1f7646Ce22Ed99A1677e849396F6ee61D856": {
+ "name": "Load Tester 77",
+ "credentials": []
+ },
+ "0xFca4005898f118d3dD09b50096b92CA8fb1d37d9": {
+ "name": "Load Tester 78",
+ "credentials": []
+ },
+ "0xFDEa5E54A8BD60f5950e150E5904C42De5F680EB": {
+ "name": "Load Tester 79",
+ "credentials": []
+ },
+ "0x32F50dcA56A707fE21D304Cee8A45c0B9F00faB4": {
+ "name": "Load Tester 80",
+ "credentials": []
+ },
+ "0xeca6894a723a6ECcf962Ed12B1e153E53a24Cda5": {
+ "name": "Load Tester 81",
+ "credentials": []
+ },
+ "0x6f6f82b38c405C0d271C46f7635beba2B4C93787": {
+ "name": "Load Tester 82",
+ "credentials": []
+ },
+ "0xC48caeDEaDFA66D0854E334d82BCF035397e807f": {
+ "name": "Load Tester 83",
+ "credentials": []
+ },
+ "0x2b3764709b5F0F2B172e0DCb8942cE46b9EBd367": {
+ "name": "Load Tester 84",
+ "credentials": []
+ },
+ "0x8FE39eE8ef9BdD91A2C8667C5139c022b35cF7A0": {
+ "name": "Load Tester 85",
+ "credentials": []
+ },
+ "0x6B95a0c4a5c8775d9Ee5b2d35429Ca2bBE7630Fd": {
+ "name": "Load Tester 86",
+ "credentials": []
+ },
+ "0x66Bd91B858d09e6f379A39d12c39F3088570f051": {
+ "name": "Load Tester 87",
+ "credentials": []
+ },
+ "0x9667370A147F286bDE86f61E7fCeFb6d6e8921B4": {
+ "name": "Load Tester 88",
+ "credentials": []
+ },
+ "0xf64B9bc55d207E02f5227fEc9F7cDa96C1195E3b": {
+ "name": "Load Tester 89",
+ "credentials": []
+ },
+ "0x65b3E81e6F6a967a3830e137247AfeFF16D795c2": {
+ "name": "Load Tester 90",
+ "credentials": []
+ },
+ "0x8F8084597Fc6A850bEf4c3dC772067d6B41a89aD": {
+ "name": "Load Tester 91",
+ "credentials": []
+ },
+ "0xA4fa9712B4F1b024fda22B37e82537eC3a21C311": {
+ "name": "Load Tester 92",
+ "credentials": []
+ },
+ "0x42E6ABd191a9292115bdc09930d29614331A8c65": {
+ "name": "Load Tester 93",
+ "credentials": []
+ },
+ "0x7973639DD3e769dFE6735825676BFA1C1c552606": {
+ "name": "Load Tester 94",
+ "credentials": []
+ },
+ "0x669a27ba1C63E9633340282a46FFb2b70cDC8Fb1": {
+ "name": "Load Tester 95",
+ "credentials": []
+ },
+ "0x123Ddc4C53722EA57A0c664767d0Ed13aEbB4Fd2": {
+ "name": "Load Tester 96",
+ "credentials": []
+ },
+ "0x2BB61F51Fa3E4062eFC74119D429fdc5F9118E84": {
+ "name": "Load Tester 97",
+ "credentials": []
+ },
+ "0xf23Ce790658A0C29bAa59A6B36e0c14BFc32461F": {
+ "name": "Load Tester 98",
+ "credentials": []
+ },
+ "0x88e3f14684BC12c97dB86440ac0Ec855C7121e2e": {
+ "name": "Load Tester 99",
+ "credentials": []
+ },
+ "0x574631770FBe286C017698C53cD980A4D9685551": {
+ "name": "Load Tester 100",
+ "credentials": []
+ },
+ "0xd96F92fc501bbF5aB3A0C8ddC910FC74bAD1CAdC": {
+ "name": "Load Tester 101",
+ "credentials": []
+ },
+ "0xDE7Dab8354E7f438555606c8Dbf4F51BCD8EF0bf": {
+ "name": "Load Tester 102",
+ "credentials": []
+ },
+ "0x496c69783A5B2148EF5459C6F0eaE7B536D004D5": {
+ "name": "Load Tester 103",
+ "credentials": []
+ },
+ "0x3703738B4781b70930F0Bc0af07662D82F0D1e97": {
+ "name": "Load Tester 104",
+ "credentials": []
+ },
+ "0x9cdA1740B30Fe10F54967aCB516235593AFAa51e": {
+ "name": "Load Tester 105",
+ "credentials": []
+ },
+ "0xEa4164e9cC1Afd8814FB12F4Cb9a2738ebac2F73": {
+ "name": "Load Tester 106",
+ "credentials": []
+ },
+ "0x7cAc1431eCb9C579Af08f7c3a5c02c28CEC99c54": {
+ "name": "Load Tester 107",
+ "credentials": []
+ },
+ "0x8a7F98F273A1FAbd434F73A5928CbD47777aE493": {
+ "name": "Load Tester 108",
+ "credentials": []
+ },
+ "0xB7163e5DCbB1Ab25dAe18Eb54f3603A686B523A0": {
+ "name": "Load Tester 109",
+ "credentials": []
+ },
+ "0x87c32c2918f13a05cCF249DD82c305a46Fc1D9Ed": {
+ "name": "Load Tester 110",
+ "credentials": []
+ },
+ "0xe9F676c7601eE857aA4BCBeDA98160FA71B7b33F": {
+ "name": "Load Tester 111",
+ "credentials": []
+ },
+ "0x5F35ea7688ADa03Fb1a6d92A37044b39162B2B9d": {
+ "name": "Load Tester 112",
+ "credentials": []
+ },
+ "0x02282Eb07e557316C4fbCa7f4Cea79C6013EA4E3": {
+ "name": "Load Tester 113",
+ "credentials": []
+ },
+ "0xBf006A1F68478a9DED116D1D572294F7EC63413C": {
+ "name": "Load Tester 114",
+ "credentials": []
+ },
+ "0x560D3dbe51D73139d135dF9DC033163A4491E1e0": {
+ "name": "Load Tester 115",
+ "credentials": []
+ },
+ "0x35312e08473b68C442438B2e382F4F56AF21F320": {
+ "name": "Load Tester 116",
+ "credentials": []
+ },
+ "0xCb3541Ad275c5FB456A377d210267aD462e472dD": {
+ "name": "Load Tester 117",
+ "credentials": []
+ },
+ "0x62efA4b9FF22A62f3bb2300dBC344c1e9002bA58": {
+ "name": "Load Tester 118",
+ "credentials": []
+ },
+ "0x7D35076F2A39C1ff772385eCBbe0e772e3A1287C": {
+ "name": "Load Tester 119",
+ "credentials": []
+ },
+ "0x8dB5a7A91c706180fC7d39FAf1e353d2F069620E": {
+ "name": "Load Tester 120",
+ "credentials": []
+ },
+ "0x571A95AfC59D37F68B507a8c77f977AFD6BDcA09": {
+ "name": "Load Tester 121",
+ "credentials": []
+ },
+ "0x27Bd063E8e3EA4a806C1527d804bAdFda14869b5": {
+ "name": "Load Tester 122",
+ "credentials": []
+ },
+ "0x2988495d8054451c48D598c124b8D6cd7BD4B252": {
+ "name": "Load Tester 123",
+ "credentials": []
+ },
+ "0x0189DfF4F7682080446202D7B3ac7652a658e8A5": {
+ "name": "Load Tester 124",
+ "credentials": []
+ },
+ "0x5024D56F4AcA6434735be71e11Bd9FB18E31E9EE": {
+ "name": "Load Tester 125",
+ "credentials": []
+ },
+ "0x0CeB858724433d846cB0F976081026EcE4B6aD78": {
+ "name": "Load Tester 126",
+ "credentials": []
+ },
+ "0x97687688De3De19dD1bDCDE8925d87012dB59F05": {
+ "name": "Load Tester 127",
+ "credentials": []
+ },
+ "0xA9c9379178C91c33F3eB6060F819fdc93a36Ddb1": {
+ "name": "Load Tester 128",
+ "credentials": []
+ },
+ "0x8806f8d4B885136Ba84224DbB69314cC84eda334": {
+ "name": "Load Tester 129",
+ "credentials": []
+ },
+ "0xAEE34DF14149Da710D49819D22b9eAd3bCcc2551": {
+ "name": "Load Tester 130",
+ "credentials": []
+ },
+ "0x418788125ED5316E3451429f4a93C46806F838A8": {
+ "name": "Load Tester 131",
+ "credentials": []
+ },
+ "0x4E71939dD8862b996Bc3ed2Cd88b26B93b017421": {
+ "name": "Load Tester 132",
+ "credentials": []
+ },
+ "0xbF396f96be00701d9F49bC339f49dE6EAA53fCB0": {
+ "name": "Load Tester 133",
+ "credentials": []
+ },
+ "0xCc8ebdBE18fE6345c20F8CDF41d1491a2A3f7484": {
+ "name": "Load Tester 134",
+ "credentials": []
+ },
+ "0x2D5B985E8C7cc33C1Ce986fBBcab28Fb395B0663": {
+ "name": "Load Tester 135",
+ "credentials": []
+ },
+ "0xbb4034FCEefB6299f6DB1932D3088ca3b3005B9b": {
+ "name": "Load Tester 136",
+ "credentials": []
+ },
+ "0x4Ae7DabEc3fDB0B415c050d3a07116442173D8f0": {
+ "name": "Load Tester 137",
+ "credentials": []
+ },
+ "0x87b9Cfc32Cd8c736248D72d4cf15035eb5f67cf1": {
+ "name": "Load Tester 138",
+ "credentials": []
+ },
+ "0xb844Dc0B6dcD1E4CAb4ff812CB28F40CD98b8728": {
+ "name": "Load Tester 139",
+ "credentials": []
+ },
+ "0x339c6f1fa825469E75FE8A98a037cfC3701750c0": {
+ "name": "Load Tester 140",
+ "credentials": []
+ },
+ "0x141CAf354d32a55fe4b32f48383E8519d2AF13e8": {
+ "name": "Load Tester 141",
+ "credentials": []
+ },
+ "0x1d1619071D2ec40B928Af424baA2e5F1E1D55493": {
+ "name": "Load Tester 142",
+ "credentials": []
+ },
+ "0x3e26c4e9f358bD14AccFa25e1cd6f8a0b3A266F2": {
+ "name": "Load Tester 143",
+ "credentials": []
+ },
+ "0x8bb68a764A6d82100dB7337fD8d8826410D902e4": {
+ "name": "Load Tester 144",
+ "credentials": []
+ },
+ "0x5c0b569e971f6992851f8516bdfdA72b22114a62": {
+ "name": "Load Tester 145",
+ "credentials": []
+ },
+ "0x1b5D9eAf7d869Aa7279d952406f7B6F6F6CEE50A": {
+ "name": "Load Tester 146",
+ "credentials": []
+ },
+ "0xa50b5aDab2Ae16c571A4D475D72FBcD40870Df0C": {
+ "name": "Load Tester 147",
+ "credentials": []
+ },
+ "0xD5AB5Be323AB68E0e12F722917C68fab8150Ec24": {
+ "name": "Load Tester 148",
+ "credentials": []
+ },
+ "0x4ac041265092021217BC3aBA4B3C1aeCb4f254b9": {
+ "name": "Load Tester 149",
+ "credentials": []
+ },
+ "0x176df81DeEf6c6F98E7E9359D56d728db42Ce72C": {
+ "name": "Load Tester 150",
+ "credentials": []
+ },
+ "0xA12ffd0B9915ED28A1E1Bd61f6Eb18Bb5acA7D23": {
+ "name": "Load Tester 151",
+ "credentials": []
+ },
+ "0x97064466eaAfc6E9a7616AefE1490a0cc0a0453B": {
+ "name": "Load Tester 152",
+ "credentials": []
+ },
+ "0xFd36cD95b50A7A33fB294D6C659986B4Cd3CD2F9": {
+ "name": "Load Tester 153",
+ "credentials": []
+ },
+ "0xFd3B4924464eee00137Fcc7E3Edca3658D2e0Cf0": {
+ "name": "Load Tester 154",
+ "credentials": []
+ },
+ "0xD36230d583ad2e4e5528517beE67a854e72D3332": {
+ "name": "Load Tester 155",
+ "credentials": []
+ },
+ "0x3a2902EC36b9F602e216C64696280DecF6603a0C": {
+ "name": "Load Tester 156",
+ "credentials": []
+ },
+ "0x8A15e09329Eb9c3De48092ea9fB9D3a1FbDd2C8b": {
+ "name": "Load Tester 157",
+ "credentials": []
+ },
+ "0x293d7483b4e3A1cd53C00EAE4e0Dee122118B1dB": {
+ "name": "Load Tester 158",
+ "credentials": []
+ },
+ "0xb1c3d2A796Dd8f2e86c08ca0e9503Fd8A5dA22c7": {
+ "name": "Load Tester 159",
+ "credentials": []
+ },
+ "0xe4b776ca42e4acA267b3bB78343e2aeFBe3645B4": {
+ "name": "Load Tester 160",
+ "credentials": []
+ },
+ "0x60f006C15cA8C926182712852D5d0e5862EeB4C9": {
+ "name": "LoadTest80",
+ "credentials": []
+ },
+ "0xC46f467A760b692e28972b36ED4b5fFAb0fe49dE": {
+ "name": "LoadTest79",
+ "credentials": []
+ },
+ "0xafA3b2d6C082c46b02fd0F7F3047B8417F7aCc8f": {
+ "name": "LoadTest78",
+ "credentials": []
+ },
+ "0x2D13bB0F7C440aC139B83CF4df578266bc37f6C2": {
+ "name": "LoadTest77",
+ "credentials": []
+ },
+ "0x57Cb8672E1BdfbFcD04D4f9Ad66DA1322F692591": {
+ "name": "LoadTest76",
+ "credentials": []
+ },
+ "0x0eC0F058bab909a08f0B3225B6DcAF52E2caca4b": {
+ "name": "LoadTest75",
+ "credentials": []
+ },
+ "0x25Fe467357bc9351F1B3d7f2D7CE94920E4BEe23": {
+ "name": "LoadTest74",
+ "credentials": []
+ },
+ "0xbC8EA107b89fF4f7215e2290d6c80d36Aba1d74d": {
+ "name": "LoadTest73",
+ "credentials": []
+ },
+ "0xabB6ac396AF983fD337Ad357474efaAC634f609c": {
+ "name": "LoadTest72",
+ "credentials": []
+ },
+ "0xC637922373b0214F1b625BB591c7090F0763c901": {
+ "name": "LoadTest71",
+ "credentials": []
+ },
+ "0x62E2e3ecDB957cb185B3459ce0fDcc719E57d426": {
+ "name": "LoadTest70",
+ "credentials": []
+ },
+ "0xeb2e652778C26C4Be9c3CBb10C703b2bfcbCEB22": {
+ "name": "LoadTest69",
+ "credentials": []
+ },
+ "0xFb1F1653b922077F3c03c8eeD7490168A112912B": {
+ "name": "LoadTest68",
+ "credentials": []
+ },
+ "0x0Ad80025eFc915C7B94c2AaCc05E62db1113DB30": {
+ "name": "LoadTest67",
+ "credentials": []
+ },
+ "0x4B03C238321E00572dead9522C3639911e258935": {
+ "name": "LoadTest66",
+ "credentials": []
+ },
+ "0x65c87Aab20154aC2f487313aC4ED7f9E453B1212": {
+ "name": "LoadTest65",
+ "credentials": []
+ },
+ "0x14b2fCdfEF97314FF6CB51a98E6AE1080B8033B1": {
+ "name": "LoadTest64",
+ "credentials": []
+ },
+ "0x1385c37C2fBb77454095927C92912570d2fd07fE": {
+ "name": "LoadTest63",
+ "credentials": []
+ },
+ "0xF46f6e59E46D8E825B59d6b2Be823D931BC16465": {
+ "name": "LoadTest62",
+ "credentials": []
+ },
+ "0xEF1287D523eA5ea0E4C33a477856BecBDc854783": {
+ "name": "LoadTest61",
+ "credentials": []
+ },
+ "0xf35448810255FA38d52d38Ab1aE9B8CE169d5f70": {
+ "name": "LoadTest60",
+ "credentials": []
+ },
+ "0xB80479003af216e9bE54ed63ad9492D5692F9Eb3": {
+ "name": "LoadTest59",
+ "credentials": []
+ },
+ "0x4526d22D166dCC4Fa805d2e9BA926bFde8F7eF09": {
+ "name": "LoadTest58",
+ "credentials": []
+ },
+ "0xFd0A81352689571dD8d8D9337fAB59eC846f6092": {
+ "name": "LoadTest57",
+ "credentials": []
+ },
+ "0x244A9D06BB35d72879eaEa8ADd834B59d2cb4cC4": {
+ "name": "LoadTest56",
+ "credentials": []
+ },
+ "0xF32d13F21FC6090bDF830740FC9d9B1FcbCDd50b": {
+ "name": "LoadTest55",
+ "credentials": []
+ },
+ "0xae6b4263a399999943EeE81b96cbE063aeE21737": {
+ "name": "LoadTest54",
+ "credentials": []
+ },
+ "0x22faAb7EC46970Ee79E4AAf0dc31369ae77E7aCE": {
+ "name": "LoadTest53",
+ "credentials": []
+ },
+ "0x0dFc0121222a56934660B018cA2c5e648B1A4E9C": {
+ "name": "LoadTest52",
+ "credentials": []
+ },
+ "0x1B25dC7505626A4bD5D6ba86614520Bf52524D1a": {
+ "name": "LoadTest51",
+ "credentials": []
+ },
+ "0x91AC270Ba655bf3AF5f767e94AB6a2C9185B6A58": {
+ "name": "LoadTest50",
+ "credentials": []
+ },
+ "0x6649c5f0C8C796CF99B8B388685e2B4Ea92E1746": {
+ "name": "LoadTest49",
+ "credentials": []
+ },
+ "0x8627f4E450527B92C01Bc940CcAD7104B4b015C6": {
+ "name": "LoadTest48",
+ "credentials": []
+ },
+ "0x872f7a9f4C26f69F57C96E0Eb1b8B63483Af128d": {
+ "name": "LoadTest47",
+ "credentials": []
+ },
+ "0xeBe93614b9C098430aE7F31e176cB82B337Ea3bb": {
+ "name": "LoadTest46",
+ "credentials": []
+ },
+ "0xd578f55dA936F772b243e43bAF4385d79CEd917E": {
+ "name": "LoadTest45",
+ "credentials": []
+ },
+ "0xD679F3d868E238d5837fa9B209cC60160ff06F56": {
+ "name": "LoadTest44",
+ "credentials": []
+ },
+ "0x6d00174A0AFdb9C810a7e83F1D5A8C14F9aEbb8c": {
+ "name": "LoadTest43",
+ "credentials": []
+ },
+ "0xa81441f4867497745075C0E6D976eE7495b7D2a2": {
+ "name": "LoadTest42",
+ "credentials": []
+ },
+ "0x49D6A5FF500C7cF2C7BCbCffcefAf732D1AFd33b": {
+ "name": "LoadTest41",
+ "credentials": []
+ },
+ "0x0472ab131f68CD5038649CC766323a2D9835D322": {
+ "name": "LoadTest40",
+ "credentials": []
+ },
+ "0xe9F85257717c82a8E998bbbaCD28522ed1ed2b31": {
+ "name": "LoadTest39",
+ "credentials": []
+ },
+ "0x5722B3bfda9FB091870b9D0a982fd01A6Cb8eF6f": {
+ "name": "LoadTest38",
+ "credentials": []
+ },
+ "0xaEaBc49D0f5AE8158F11e34A517c471B73145760": {
+ "name": "LoadTest37",
+ "credentials": []
+ },
+ "0xD29dD5C78F4FAa2c79B9a208a5caFf348f4FC505": {
+ "name": "LoadTest36",
+ "credentials": []
+ },
+ "0x1cF31871628EA7B3F03D11fF76b2E9E6f998a3D4": {
+ "name": "LoadTest35",
+ "credentials": []
+ },
+ "0xc5eB3597466170F09117c8f692876513B99B4d9e": {
+ "name": "LoadTest34",
+ "credentials": []
+ },
+ "0xc4850BFD392c0d2a47c3575ca7564e8791349768": {
+ "name": "LoadTest33",
+ "credentials": []
+ },
+ "0xB3a51a289666Ad2fA55869F3cc5d70f8ceAD1331": {
+ "name": "LoadTest32",
+ "credentials": []
+ },
+ "0xF6871fc2b3c49cB88B16679a61d3fE73FAc7770D": {
+ "name": "LoadTest31",
+ "credentials": []
+ },
+ "0xCf591DE9621CE0259c182aAA15Df785fCc60A454": {
+ "name": "LoadTest30",
+ "credentials": []
+ },
+ "0xf9C63D730B195Dd1a6Cc464BFc8102f117808c93": {
+ "name": "LoadTest29",
+ "credentials": []
+ },
+ "0xA6f7753ef5b09379afF441c10a44B2178CD3D288": {
+ "name": "LoadTest28",
+ "credentials": []
+ },
+ "0x77E09cF9Ec978dc94202A2Ea839A18b326A5cbe4": {
+ "name": "LoadTest27",
+ "credentials": []
+ },
+ "0x39f887FD35F445DF074BfF8F5d318f40be168ec6": {
+ "name": "LoadTest26",
+ "credentials": []
+ },
+ "0x920C76f64f9aF922D09eEF6cAF1fd2d6B9B5889e": {
+ "name": "LoadTest25",
+ "credentials": []
+ },
+ "0xD4F55F8AF3d5d57e79dAb8E8Cf72Cd3cf5Bd49A5": {
+ "name": "LoadTest24",
+ "credentials": []
+ },
+ "0x51e6Cc8267fC09DCa613765D535D50730db6F9d0": {
+ "name": "LoadTest23",
+ "credentials": []
+ },
+ "0x7403887426Abd1D18bE053f45F5ddAefC7b7B9Bf": {
+ "name": "LoadTest22",
+ "credentials": []
+ },
+ "0xC83328eE9d828cA3191643FEbF80a7382d173060": {
+ "name": "LoadTest21",
+ "credentials": []
+ },
+ "0xEa1352fF39b456d3a2f686397Aa7cF0c99A0c9f1": {
+ "name": "LoadTest80",
+ "credentials": []
+ },
+ "0x7ce440F5186Ab1f847b3476Eff5a00A08d33e807": {
+ "name": "LoadTest79",
+ "credentials": []
+ },
+ "0x4ce31C3ace03EBE84388d91385ACb07dEFB5c647": {
+ "name": "LoadTest78",
+ "credentials": []
+ },
+ "0xb2C9b05cB07CEfEEa67C727AdC05dC32Ba7Fb5be": {
+ "name": "LoadTest77",
+ "credentials": []
+ },
+ "0x40e3F47822D0827d658054c7310957b8Fdda7a0c": {
+ "name": "LoadTest76",
+ "credentials": []
+ },
+ "0xFA421A133807afFec30d7bCF47284666Ae7f5E65": {
+ "name": "LoadTest75",
+ "credentials": []
+ },
+ "0x4d236E7706F1f4A4F1485D57AFe267c64455fCD8": {
+ "name": "LoadTest74",
+ "credentials": []
+ },
+ "0x005A42D80C0412Ef70b851AAf34D288A6bdfC33D": {
+ "name": "LoadTest73",
+ "credentials": []
+ },
+ "0x9AF6ED1442DCE73CB90040585BAF69Aa34975BE9": {
+ "name": "LoadTest72",
+ "credentials": []
+ },
+ "0xf10Ec2c7C0F425Aff347A3bDc39C1432cBB3669c": {
+ "name": "LoadTest71",
+ "credentials": []
+ },
+ "0xCbD1cCf7B8430143250F506daee2f3B79eD654A7": {
+ "name": "LoadTest70",
+ "credentials": []
+ },
+ "0x7101e724ef79B0A6D4ef84b4D22377d251DDc6b6": {
+ "name": "LoadTest69",
+ "credentials": []
+ },
+ "0x0d854416429bfebcdB1528D2ea1dD43C59242b91": {
+ "name": "LoadTest68",
+ "credentials": []
+ },
+ "0x3EC97Bf02df2808E09039Fff150845FCec1CFA56": {
+ "name": "LoadTest67",
+ "credentials": []
+ },
+ "0x30454f61F66651A765572f6a3F2BF931F3CBcd6f": {
+ "name": "LoadTest66",
+ "credentials": []
+ },
+ "0x6A92535c4A4c6125189e8fe686a4270aBf06B5dA": {
+ "name": "LoadTest65",
+ "credentials": []
+ },
+ "0x8B7eDC33CEB2E0529559c1B1c9211F78C17a3E3f": {
+ "name": "LoadTest64",
+ "credentials": []
+ },
+ "0x1B99A6F05112C4da889277A124FbA2a6D8F35f23": {
+ "name": "LoadTest63",
+ "credentials": []
+ },
+ "0xC702Ea524559cD0BCDdf1DA161e01af57D0deE2e": {
+ "name": "LoadTest62",
+ "credentials": []
+ },
+ "0x4DE045f5609691Ee561B5Dd89886834d19d25CC2": {
+ "name": "LoadTest61",
+ "credentials": []
+ },
+ "0x09B6DE227e6CCC3d35ac2493d610f9F12081406C": {
+ "name": "LoadTest60",
+ "credentials": []
+ },
+ "0x42df4128492d6d791f6d9AFaB8915A23793822B8": {
+ "name": "LoadTest59",
+ "credentials": []
+ },
+ "0x66d2aF171A51063568c44811390C7AF097F74667": {
+ "name": "LoadTest58",
+ "credentials": []
+ },
+ "0xE6431Ae8fB8fAbcD91483dE6C2f1E13dCFe0Ec22": {
+ "name": "LoadTest57",
+ "credentials": []
+ },
+ "0xdF3c9C9d95a7902A86B20a4C421beb1a13ba79da": {
+ "name": "LoadTest56",
+ "credentials": []
+ },
+ "0x5c931CB4a76bF2F863f85A10523311Da313F7D2f": {
+ "name": "LoadTest55",
+ "credentials": []
+ },
+ "0x65ABFc3f7f966d0Ea0a17A2d05DF0C1812B50BDE": {
+ "name": "LoadTest54",
+ "credentials": []
+ },
+ "0x8f7F28D8D6a159E28437a814Ae7D539615F29e26": {
+ "name": "LoadTest53",
+ "credentials": []
+ },
+ "0x0b20C50EcAe0d006BEc0f4793862CC3DcB8fc8Fb": {
+ "name": "LoadTest52",
+ "credentials": []
+ },
+ "0x0743bdD3835E6108e5BAcc9f6F34b8AbFc3E736c": {
+ "name": "LoadTest51",
+ "credentials": []
+ },
+ "0x2d4a27Bc98b5bE1d159c212aD269b14257Ed5BF0": {
+ "name": "LoadTest50",
+ "credentials": []
+ },
+ "0xD167E4C7099aac8Eb9F76D41CCAa711852558522": {
+ "name": "LoadTest49",
+ "credentials": []
+ },
+ "0x62D39224D1369420A81417a823a77c104Aa7C2E2": {
+ "name": "LoadTest48",
+ "credentials": []
+ },
+ "0x166Becd4191Fa0593e1f2bB383e87F95184c3395": {
+ "name": "LoadTest47",
+ "credentials": []
+ },
+ "0x2890c9aF7548e186Cb8B3627b058EE7E6F84F218": {
+ "name": "LoadTest46",
+ "credentials": []
+ },
+ "0xF553515A3280057699992880b3245C8ed52cCc18": {
+ "name": "LoadTest45",
+ "credentials": []
+ },
+ "0x2d3DEa9c6d848069b3D5d5855285636b0Be4F8a9": {
+ "name": "LoadTest44",
+ "credentials": []
+ },
+ "0x9d31bb0E31e7B86F1ED8e227F7feF55523C52E83": {
+ "name": "LoadTest43",
+ "credentials": []
+ },
+ "0xF4A8d062947f04f450D3168414DD4c8A1237bF61": {
+ "name": "LoadTest42",
+ "credentials": []
+ },
+ "0xB818908d66E2D13a150BE8DFeE1cD625A9855792": {
+ "name": "LoadTest41",
+ "credentials": []
+ },
+ "0xfD491F4cFA2425b4b41F5EEcfc5694f0782bFE27": {
+ "name": "LoadTest40",
+ "credentials": []
+ },
+ "0xE011426Bb05156f41f108eDf2f3a60323E151Ab6": {
+ "name": "LoadTest39",
+ "credentials": []
+ },
+ "0x605941a96995360c0e84253515dc95Ebe07c210b": {
+ "name": "LoadTest38",
+ "credentials": []
+ },
+ "0x8b8b1f22491785d511d39D335eAB1a3C395E317d": {
+ "name": "LoadTest37",
+ "credentials": []
+ },
+ "0x8a97c7b93e50fBC5C65a5D7aa5C36272a804DfB9": {
+ "name": "LoadTest36",
+ "credentials": []
+ },
+ "0xD0af94f26CA2ec137B22C2193B6d3A82C79F567A": {
+ "name": "LoadTest35",
+ "credentials": []
+ },
+ "0xA9641917565cB06B719239F6a47A0Cf35d2e87c0": {
+ "name": "LoadTest34",
+ "credentials": []
+ },
+ "0x4BB28417F19abf8317b6986c6B6d68B2E9e6BBCF": {
+ "name": "LoadTest33",
+ "credentials": []
+ },
+ "0xf95F3961E9ac263709813bfcD64B9ae59F253513": {
+ "name": "LoadTest32",
+ "credentials": []
+ },
+ "0xE3710d290b54743fb2c395A13d2177Fc9a4066a9": {
+ "name": "LoadTest31",
+ "credentials": []
+ },
+ "0xC24AD31eCf822B3b1042c91e63A8c2525352a5bD": {
+ "name": "LoadTest30",
+ "credentials": []
+ },
+ "0xf937593E18cFC7C69ad6007373Da94354b335A8F": {
+ "name": "LoadTest29",
+ "credentials": []
+ },
+ "0x824616e85Ffce2bdfCDA6c071568bBfefFe16B86": {
+ "name": "LoadTest28",
+ "credentials": []
+ },
+ "0xc39CC83069849d674919A20c8fe5BBd09cf33CD7": {
+ "name": "LoadTest27",
+ "credentials": []
+ },
+ "0xDd90d7C5F66a4c269719bD510D7E44BB7e440576": {
+ "name": "LoadTest26",
+ "credentials": []
+ },
+ "0xD48E580bceb6e3883b6c8C6060fC058d44438A06": {
+ "name": "LoadTest25",
+ "credentials": []
+ },
+ "0x6ab5e54f7Da4aC6E184b12B7f5A60E8a33Db49A3": {
+ "name": "LoadTest24",
+ "credentials": []
+ },
+ "0xc8EB567375f23c0199E7ed29Ae05b5B837D46E64": {
+ "name": "LoadTest23",
+ "credentials": []
+ },
+ "0xeF98b60f0E31Ee97C7898Cd9CE2E67c1166F3838": {
+ "name": "LoadTest22",
+ "credentials": []
+ },
+ "0x13105a3580560DC209859801e7289E60F44F880a": {
+ "name": "LoadTest21",
+ "credentials": []
+ },
+ "0xb2D3015C7356Dfde2FFe3AaBf148460A03dc74A3": {
+ "name": "Hochschule Osnabrück",
+ "credentials": []
+ },
+ "0x103501f5db82F162ec6807d21A8D847ed4b77cAc": {
+ "name": "Hochschule Osnabrück",
+ "credentials": []
+ },
+ "0x4aADFC11088Bd53033297fDb7D97329500F34e9f": {
+ "name": "FIWARE Foundation e.V.",
+ "credentials": []
+ },
+ "0x345d301C97eb25468fDd7eDfb1B6e9C7f0B9F784": {
+ "name": "Universität Siegen",
+ "credentials": []
+ },
+ "0xEa458168651e7D254408Ea941BAf4210de1564E1": {
+ "name": "Hans Berg GmbH & Co. KG",
+ "credentials": []
+ },
+ "0x6Ec302A62ed554878b9e7862BF1bd5cdd22d03c7": {
+ "name": "Netcompany-Intrasoft",
+ "credentials": []
+ },
+ "0xA6FEd8D39cF98C6f7d4c31Da790c9c94e837c3ca": {
+ "name": "Laboratory for Manufacturing Systems & Automation",
+ "credentials": []
+ },
+ "0xD63fFbB727dc1Bf681F727b78b5F4C738E01f6Db": {
+ "name": "Beia Consult International",
+ "credentials": []
+ },
+ "0xAACA0075fF1B3E4ea45F9A1B758aD564c494dDA6": {
+ "name": "Anasoft Technology AG",
+ "credentials": []
+ },
+ "0x66867df4d2f36F56BC11B439A9f94A74D8bF7724": {
+ "name": "AAS Info",
+ "credentials": []
+ },
+ "0x8794d6a657a7fBA841f652C67c73788fd26cE3E9": {
+ "name": "PFG001 Info",
+ "credentials": []
+ },
+ "0x340bE58F9e963D02EA44d7505fb5458EfDc8f9ad": {
+ "name": "DTI AAS Submodel",
+ "credentials": []
+ },
+ "0x951Bc7F73c18880a012CCdD826901Ae89a085bc7": {
+ "name": "PFG001 Technical",
+ "credentials": []
+ },
+ "0x95c4DCC1ffffF15408798741155f0af793732f0B": {
+ "name": "PFG001 Logs",
+ "credentials": []
+ },
+ "0x9e39b65823240014787D435C41D5D060De985270": {
+ "name": "PFG001 Nameplate",
+ "credentials": []
+ },
+ "0x660Efd8b8BdA4428b9021Cd83620ee765e68b15e": {
+ "name": "Berger Holding GmbH & Co. KG",
+ "credentials": []
+ },
+ "0x47cE30B4F213802c17770c97dEa32e1EC3B64Ca7": {
+ "name": "Load Test 01",
+ "credentials": []
+ },
+ "0xA05555a187BdCB944694B5793776fD66d6ea63D4": {
+ "name": "Load Test 02",
+ "credentials": []
+ },
+ "0xa7092969eF3065678a41deb20ac31A5aB1F57D59": {
+ "name": "Load Test 03",
+ "credentials": []
+ },
+ "0x355b0D5855698f9585865462C3fB83128782cb06": {
+ "name": "Load Test 04",
+ "credentials": []
+ },
+ "0xCaa643e87398756324459AD932CD8976090A5414": {
+ "name": "Load Test 05",
+ "credentials": []
+ },
+ "0xcd40fEAE40407183835c99365ffC5dD7A24B9c63": {
+ "name": "Load Test 06",
+ "credentials": []
+ },
+ "0x5A7EAD2342fB60Cb417F4c5dB88DA141054c1471": {
+ "name": "Load Test 07",
+ "credentials": []
+ },
+ "0x6589da080ff3998d771Da6CB66F66f2484f73104": {
+ "name": "Load Test 08",
+ "credentials": []
+ },
+ "0x87009Da243ABA40AD3Aea0ed5412134AB797A2BF": {
+ "name": "Load Test 09",
+ "credentials": []
+ },
+ "0xe4aB3f5e474d2B1744fD0f092C009d95737AF9b7": {
+ "name": "Load Test 10",
+ "credentials": []
+ },
+ "0xf8E1067F6180D9f2d6dB2B5700444660E124601F": {
+ "name": "Load Test 11",
+ "credentials": []
+ },
+ "0xAd69D5cfCeD384C2DF605D7e035d2877A23358d9": {
+ "name": "Load Test 12",
+ "credentials": []
+ },
+ "0xE3624076eF8E50E5295e42C6c1A021DC8d5219AD": {
+ "name": "Load Test 13",
+ "credentials": []
+ },
+ "0xeDb71622A8e8B0a5d221D6C3aD8b8362eD79753A": {
+ "name": "Load Test 14",
+ "credentials": []
+ },
+ "0x556EB581bd7D5dF11Fe8e6935552B0845d8b14FB": {
+ "name": "Load Test 15",
+ "credentials": []
+ },
+ "0xc3215d478bE967c0006466d460626c78d0a93Eed": {
+ "name": "Load Test 16",
+ "credentials": []
+ },
+ "0x8BEFE9429298df2653F6Fc9B73D96dB99b819644": {
+ "name": "Load Test 17",
+ "credentials": []
+ },
+ "0xe19b2bce4ffEbFbF3C34E8aE7C9E4b860E007E06": {
+ "name": "Load Test 18",
+ "credentials": []
+ },
+ "0xD09a7644b0F3a8DC2256865c4E6eFe1e64025476": {
+ "name": "Load Test 19",
+ "credentials": []
+ },
+ "0x9E78FaFF24f21b68aaaa9acC781ffeF269A0D559": {
+ "name": "Load Test 20",
+ "credentials": []
+ },
+ "0x43d3004D0232243cC4878419b6897f5f50713eAE": {
+ "name": "Bruno Kessler Foundation",
+ "credentials": []
+ },
+ "0x32e561E6A8615f3Ec6aD2397e6F75d05cd81d0f5": {
+ "name": "neogramm GmbH",
+ "credentials": []
+ },
+ "0xD9BAB8E6279CE41C2bC3f1D44ceF855235e0CdB7": {
+ "name": "Gühring KG",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known//2210_gx_participant_guehring.json"
+ ]
+ },
+ "0x6406F91b03a7ffbf858e57C3fa205Ae549EFB1a5": {
+ "name": "Tool Performance",
+ "credentials": []
+ },
+ "0x6417A347Ad30d0745cBB3a851DF7C72517c4705C": {
+ "name": "Process Optimization",
+ "credentials": []
+ },
+ "0xb20D3889931517d9AA1D7306c9a521F506f88245": {
+ "name": "Tool Recommendation",
+ "credentials": []
+ },
+ "0xb505CB7D3d251867968e72D628036A5c501F5466": {
+ "name": "Xayn AG",
+ "credentials": []
+ },
+ "0x0021a0cF84f83a04dFE402549e97C7DD21c5adA4": {
+ "name": "SCHUNK SE & Co. KG",
+ "credentials": []
+ },
+ "0xd480cfd1decc61cec35127e26611b47088b5f619": {
+ "name": "Transport Dimensions SAR-1300",
+ "credentials": []
+ },
+ "0x6E9F4E8890A8e3401FF632FC61f7cBF839d5BB70": {
+ "name": "Design Rules SAR-1300",
+ "credentials": []
+ },
+ "0x2588DCeC3f6a8400D0eAaa57669f8EC8e261fd59": {
+ "name": "Scanner Specification SAR-1300",
+ "credentials": []
+ },
+ "0xCf53CfbFabCc7Fa74cc8fB4218Ac7621bEe6bf0f": {
+ "name": "Specifications for SAR-1300",
+ "credentials": []
+ },
+ "0xA8C26ab25C8F476aB488078B9bA6D60C4E7bEE2B": {
+ "name": "SAR-1300 Technical Drawing",
+ "credentials": []
+ },
+ "0xe5AfCf1BF4FfCa6c1f19463605578e8146CdF4b1": {
+ "name": "University of British Columbia",
+ "credentials": []
+ },
+ "0x1BBfB23F49C75c0DA85c6787F3C8362bDECb9775": {
+ "name": "University of British Columbia",
+ "credentials": []
+ },
+ "0xb993dfC7cAf2477770e60E1Ae6188F6147BDA92d": {
+ "name": "ZERTIFIER SL",
+ "credentials": []
+ },
+ "0x6F28a052eeb897d6412A8198D0DDF1FC15fe3D94": {
+ "name": "Future Mobility Network B.V.",
+ "credentials": []
+ },
+ "0x1504d3AE9224091990Cb2F71D0e10B8F7E84E7De": {
+ "name": "NVWA",
+ "credentials": []
+ },
+ "0x4680420FD71E0C8ABDae60EFdF685206E9bdbF3E": {
+ "name": "LMIS AG",
+ "credentials": []
+ },
+ "0x477274a7e0f05849D583e20165600775AFAE8a1d": {
+ "name": "LMIS AG",
+ "credentials": []
+ },
+ "0x0228BdC3d0a8dBBD9baF39803999f54E4a669aC1": {
+ "name": "LMIS AG",
+ "credentials": []
+ },
+ "0x89b11a81520E090A03e66f92c1e1798d31611D3C": {
+ "name": "LMIS AG",
+ "credentials": []
+ },
+ "0x57fa18A57f4B8198a4781D4Cc850631F7be8333F": {
+ "name": "DEKRA Digital GmbH",
+ "credentials": []
+ },
+ "0x9B421d0f5d378b66324251d6CDc1945a6560110b": {
+ "name": "SIMAVI",
+ "credentials": []
+ },
+ "0x13a9FfFC7fb684CCc623C305B46b7eD6b3a73C66": {
+ "name": "ENGINSOFT",
+ "credentials": []
+ },
+ "0x7d46Bb46ba45f08480bA80150d3594fd9f3e212d": {
+ "name": "IMT Atlantique",
+ "credentials": []
+ },
+ "0xc9034e58176c59153F53C6B59d5CFD5BBD58b5Fc": {
+ "name": "Aarhus University",
+ "credentials": []
+ },
+ "0xB9fB84b093D8bE26A78208b324D8074627374F49": {
+ "name": "HWR Berlin",
+ "credentials": []
+ },
+ "0xEEC041b73BC4FcAE2B0a66F9992d2b6d1959BbD1": {
+ "name": "Tronico SAS",
+ "credentials": []
+ },
+ "0x7e7cea5dda047F66b8755Cb4Bf1d8eDBFB236e35": {
+ "name": "Airbus Atlantic",
+ "credentials": []
+ },
+ "0x13f8514cA72C83386929f0BAa9bCe6B840cbA03A": {
+ "name": "Continental Automotive",
+ "credentials": []
+ },
+ "0x98bDc1EaDE6D4ad7032A091Dc8bE6D217cB37eF3": {
+ "name": "iED",
+ "credentials": []
+ },
+ "0xFB7Cb9F2E15F3935B22FB9846d69b46bD31edf07": {
+ "name": "Health Check 1",
+ "credentials": [
+ "https://www.delta-dao.com/.well-known/2210_gx_participant.json"
+ ]
+ },
+ "0xB33185E37610bC6f5b00cC26827317EE6fDF547a": {
+ "name": "PTW TU Darmstadt",
+ "credentials": [
+ "https://ptw.tu-darmstadt.euprogigant.io/sd/participant.json"
+ ]
+ },
+ "0x8e9307D95f3aF50DCc655Af3EAE89B24501b848D": {
+ "name": "Poznan Supercomputing and Networking Center (PSNC)",
+ "credentials": []
+ },
+ "0xe1D7Cf58357Ce5dFCa2343221610138A196C0FEE": {
+ "name": "Hochschule für angewandte Wissenschaften Kempten",
+ "credentials": []
+ },
+ "0xdEB9D710BF2B1BB1C86845e52CAA86fBEEB87819": {
+ "name": "Fundació i2CAT",
+ "credentials": []
+ },
+ "0x0E05173b57b5a7e69932792617614e8e9601438F": {
+ "name": "Fraunhofer IVI",
+ "credentials": []
+ },
+ "0x874B6a89B201d8249c11e908b21554d14f6B3F2a": {
+ "name": "NTT DATA Spain",
+ "credentials": []
+ },
+ "0xD231e64574a18eb5FB49cE2e18923681c07a7E51": {
+ "name": "IMEC Belgium",
+ "credentials": []
+ },
+ "0x7E13628a092637e480c7c266692381784d909069": {
+ "name": "AStar Technologies",
+ "credentials": []
+ },
+ "0x35C38A98dC3c452062d7af71A08aeA11a3353dB6": {
+ "name": "AStar Technologies",
+ "credentials": []
+ },
+ "0x7bEe4CD4DD492390eB76B5Af125763BF40484d28": {
+ "name": "TSG Technologie und Service GmbH",
+ "credentials": []
+ },
+ "0x12aFee9a899aF6037552bE750958F6bD3Db12A03": {
+ "name": "Gebr. Heller Maschinenfabrik GmbH",
+ "credentials": []
+ },
+ "0xF8F830B34C61493E7A688515660d5c38e9700C19": {
+ "name": "SIDENOR STEEL INDUSTRY S.A.",
+ "credentials": []
+ },
+ "0xCBeD907179189073c5861a8059Fa98F10dE2ACE9": {
+ "name": "Pontus-X DAO",
+ "credentials": []
+ },
+ "0x35C626b7BD8F844C59D3E4753a7268614EC785b7": {
+ "name": "AW 4.0 Hub",
+ "credentials": []
+ },
+ "0x165318B79640b7860cc4eb021496E7c166F6f113": {
+ "name": "Flight Analyzer",
+ "credentials": []
+ },
+ "0xa7606279cf6674Da0800afbEBe85b940B2906CF8": {
+ "name": "Lambda Model",
+ "credentials": []
+ },
+ "0xa290eb2B44e8A4f7CC50fa4724eF59D322A6890e": {
+ "name": "Pressure Model",
+ "credentials": []
+ },
+ "0x2617EEE3A757986C3d8319699c8427d771f3f417": {
+ "name": "Track Machines Connected GmbH",
+ "credentials": []
+ },
+ "0xB7A7814300d601fb0B2702ea5666d441bcE678e9": {
+ "name": "H&F Solutions GmbH",
+ "credentials": []
+ },
+ "0x105Bf736Ae0Fc0Aefe3339498da149bb207890b9": {
+ "name": "Capgemini Deutschland GmbH",
+ "credentials": []
+ },
+ "0x2912106B140669e5038A0cf768a4BDB202D67604": {
+ "name": "Leitat",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/Leitat.vp.json"
+ ]
+ },
+ "0x68D550A3ab5C3B8f354D0E6af9Eb9E7100818f2A": {
+ "name": "ITK Engineering GmbH",
+ "credentials": []
+ },
+ "0xe065d46Af7984E3350A54A4eB8C7b9fA6f23188a": {
+ "name": "neusta aerospace GmbH",
+ "credentials": []
+ },
+ "0x7c73f0c152A81E2f75D301e848e59cA5711e92A5": {
+ "name": "Radiusmedia KG",
+ "credentials": []
+ },
+ "0x55A569079E3Ee9C1f13A7B29d77bD08025f884e6": {
+ "name": "deltaDAO AG",
+ "credentials": []
+ },
+ "0xfcd5e72c1aA8ac3872662f202480E65eafabF289": {
+ "name": "ZARM Technik AG",
+ "credentials": []
+ },
+ "0x29963e99f52e149fc1aa80750e882f332e753bee": {
+ "name": "Holowork",
+ "credentials": []
+ },
+ "0x20d5f579f9b4a070c14Cc9AAB4663500f3B94022": {
+ "name": "Airbus Defense and Space GmbH",
+ "credentials": []
+ },
+ "0x270c3fcbc466ea28862f2b6c332f14360d9a19aa": {
+ "name": "Functional Simulation aaS",
+ "credentials": []
+ },
+ "0xd163c99ec1b16d704060a6903793691ae6fee983": {
+ "name": "Magnetic Torquer",
+ "credentials": []
+ },
+ "0x83253572e146aD1b66e631280BC573f5C39c0163": {
+ "name": "neusta aerospace GmbH",
+ "credentials": []
+ },
+ "0x599Eb75866526822Df3fb32241506bDd3bA5F22E": {
+ "name": "Inspirators! OÜ",
+ "credentials": []
+ },
+ "0x194Ce4c180aE0878A05D2D7FEc16716dF942B4c4": {
+ "name": "Savvy Data Systems S.L.",
+ "credentials": []
+ },
+ "0x1cb07921EC1362c6394EEECF86959A5DB6797Afe": {
+ "name": "Savvy Data Systems S.L.",
+ "credentials": []
+ },
+ "0xfDcD17DA1aDCae158feeAEe20C9367fD14c2eF33": {
+ "name": "Medsavana S.L.",
+ "credentials": []
+ },
+ "0x0B5c909d358e77B72e01f42C9Bf65F79867b793a": {
+ "name": "Humatects GmbH",
+ "credentials": []
+ },
+ "0x9A5F6f589171d55216cb1278Faf2701cfC4ab1F2": {
+ "name": "Universidad de Córdoba (UCO)",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/UCO.vp.json"
+ ]
+ },
+ "0x179De85793A690308719AF9CD7D2F9BE0Db5ee90": {
+ "name": "Fruits de Ponent",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/FruitsPonent.vp.json"
+ ]
+ },
+ "0xFB6aaD927d026Ec21Ef8f699450Ed2ee416570a1": {
+ "name": "BEEGroup-CIMNE",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/BEEGroup-CIMNE.vp.json"
+ ]
+ },
+ "0x86cDDD03fDb7E4f62a4A31DA7483d370C03e96C8": {
+ "name": "Tragsa",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/Tragsa.vp.json"
+ ]
+ },
+ "0xE8E3570Ad8CBa8f4a6c78E981F9be8d2A2954344": {
+ "name": "Fruits d'Alfarràs",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/FruitsAlfarras.vp.json"
+ ]
+ },
+ "0x6f3B5ffF0219CE805E5E09A8254D125f6b73AD25": {
+ "name": "Dutch Drone Company B.V.",
+ "credentials": []
+ },
+ "0x34b126d602772C0D0c111527A4fb97410dD50d77": {
+ "name": "Siemens Digital Business Builder GmbH",
+ "credentials": []
+ },
+ "0x4f66C8BA84FbAFFa5131f469cDac4A5eA3592cb4": {
+ "name": "EDPS Service",
+ "credentials": []
+ },
+ "0xfb27dae6b46dcfcf21eeefa6fd291c8e456888af": {
+ "name": "EDPS Service",
+ "credentials": []
+ },
+ "0x28553327C3e469a2De5D53faaE2d27C0c0Fa4d1b": {
+ "name": "IDEKO S. Coop.",
+ "credentials": []
+ },
+ "0x28CfeE16dD16A17F57Bd44b0231077b479F021fb": {
+ "name": "Technological University of the Shannon",
+ "credentials": []
+ },
+ "0x9187DF88F374a2c7e2b062a9D2ecC0b3e33852B8": {
+ "name": "Instituto Tecnológico de Informática (ITI)",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/ITI.vp.json"
+ ]
+ },
+ "0xE30DD32904E5c3D7f35D5324E638c45916143b20": {
+ "name": "Noumena Digital AG",
+ "credentials": []
+ },
+ "0x7bbceba47d20d657b2a706329c0617262d5a2e17": {
+ "name": "JDS GmbH",
+ "credentials": []
+ },
+ "0xb0747287c71Bc3d376531856b6d346697A3DD233": {
+ "name": "Galicia Supercomputing Center (CESGA)",
+ "credentials": []
+ },
+ "0x38B7c70DE4283e9ebD11eCEFf1Be74858d43D001": {
+ "name": "Dunavnet Limited",
+ "credentials": []
+ },
+ "0xb1e31cd85b1fe8b3a21c9d10e1567ec987599809": {
+ "name": "Cartagena Parking Sensor Data",
+ "credentials": []
+ },
+ "0x7266cb767d7c8a627f074ed763660881c7d5e32b": {
+ "name": "Cartagena Air Quality Data",
+ "credentials": []
+ },
+ "0x15450500f46aa57d0f0f9b0e0a649a96a0301ae9": {
+ "name": "Cartagena Noise Levels Data",
+ "credentials": []
+ },
+ "0xab4eeb199b2d35cdced01d82426cd18907033d1d": {
+ "name": "Cartagena Weather Data",
+ "credentials": []
+ },
+ "0x33a89336a8f49687f42e1c5fc565f54c46a9984a": {
+ "name": "Water Level Kiel Fjord",
+ "credentials": []
+ },
+ "0x083c47124016d928159f45580abde3682a8f6cda": {
+ "name": "GeoJSON Coastline German Baltic Sea",
+ "credentials": []
+ },
+ "0xc619bfc77c52d36bf10e1429a146a7d435504f3c": {
+ "name": "AllUnity GmbH",
+ "credentials": []
+ },
+ "0x9E0B5856234ea825499b1741c9bEf95a02D18790": {
+ "name": "AllUnity GmbH",
+ "credentials": []
+ },
+ "0xA17F074dB2785b84D96153c42822002A26b98c34": {
+ "name": "FIDES Labs B.V.",
+ "credentials": []
+ },
+ "0xd0f60a735E28e192fc2bC9d1dbae90D43029420B": {
+ "name": "Politecnico di Milano (POLIMI)",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/POLIMI.vp.json"
+ ]
+ },
+ "0x069c8A8b33C893A6B2b60A20C7EbA7438c5b2D0d": {
+ "name": "Josephinum Research (JR)",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/JR.vp.json"
+ ]
+ },
+ "0xBcEf1784f5A7d12D9281840db626A8faFA247a59": {
+ "name": "Turku University of Applied Sciences",
+ "credentials": []
+ },
+ "0x752bcd04a2b0ef9b4cafbdebfc98739a6b2d6a52": {
+ "name": "Kiel Parking Data",
+ "credentials": []
+ },
+ "0xE158265FD2be5BCc208621f2c0f8AfCF11aC8408": {
+ "name": "EURAU",
+ "credentials": []
+ },
+ "0x852381bB887d3Cf4AEB9e1E9De3eB033AF82fBeE": {
+ "name": "EURAU",
+ "credentials": []
+ },
+ "0x6e9d6595d216477dc57F966415Dd34d9585A0bc3": {
+ "name": "Proalpha GmbH",
+ "credentials": []
+ },
+ "0x3D5a386abA3f010Ca84548b7150E38F6a7c2deB2": {
+ "name": "Proalpha GmbH",
+ "credentials": []
+ },
+ "0xCF33e39a02Bc27e2F8bFB30AE8E1f4dBda8E72fe": {
+ "name": "Poznan Supercomputing and Networking Center",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/PSNC.vp.json"
+ ]
+ },
+ "0x051AFc22BBb3Bb337971973330D0b15bEc32405E": {
+ "name": "Stichting Wageningen Research",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/WR.vp.json"
+ ]
+ },
+ "0x8a20c7E4758Db8D60Cbd409D71bF2195660aDB69": {
+ "name": "Gradiant",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/Gradiant.vp.json"
+ ]
+ },
+ "0xc47975a7e8fC3A5dC3b7D6447f15A06B4b755b22": {
+ "name": "Hispatec Erpagro SL",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/Hispatec.vp.json"
+ ]
+ },
+ "0x4b350b804f125548A49cb4e95eb4192011149e17": {
+ "name": "Laboratoire National de Métrologie et d’Essais (LNE)",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/LNE.vp.json"
+ ]
+ },
+ "0xb09d7Dc2DA521689D160029cf2141A35E0c96141": {
+ "name": "Eigen Vermogen van het Instituut voor Landbouw- en Visserijonderzoek (ILVO)",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/ILVO.vp.json"
+ ]
+ },
+ "0x28972b7A0bF03107FCF0031Baf116846d3044BDF": {
+ "name": "RISE Research Institutes of Sweden AB",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/RISE.vp.json"
+ ]
+ },
+ "0x6EDAaA73854C65164869E098DFD67C5eDB591ae7": {
+ "name": "Celtiberian Solutions S.L.",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/Celtiberian.vp.json"
+ ]
+ },
+ "0x498FaBC738CdF72C26a819852bDb46c0cF8451b0": {
+ "name": "Disi Servicios Informáticos, S.L.",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/DISI.vp.json"
+ ]
+ },
+ "0x86917649A176763b25ec9214b7a4a518C04c60c6": {
+ "name": "Łukasiewicz Research Network – Poznań Institute of Technology",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/L-PIT.vp.json"
+ ]
+ },
+ "0x45cce053ab6Cc02dFF4B24222D769eF90fBEDfF5": {
+ "name": "Institut National de Recherche pour l’Agriculture, l’Alimentation et l’Environnement (INRAE)",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/INRAE.vp.json"
+ ]
+ },
+ "0xbF78f3aAe85f92c35E71916d27147105c5F03270": {
+ "name": "Confederación de Asociaciones de Frisona Española",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/CONAFE.vp.json"
+ ]
+ },
+ "0x5993Ff26108bAd4b66498DF92B5cDBC297708496": {
+ "name": "Espacio SOA SLU",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/EspacioSOA.vp.json"
+ ]
+ },
+ "0x07e393F4F2B48C81409732fdBc87120D254CfB02": {
+ "name": "Höhere Bundeslehr- und Forschungsanstalt für Landwirtschaft Raumberg-Gumpenstein",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/Raumberg-Gumpenstein.vp.json"
+ ]
+ },
+ "0xE8Cbc1fe884059Fe169AFe877D8a8617AdEb7bB7": {
+ "name": "Fachhochschule Wiener Neustadt GmbH",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/FHWN.vp.json"
+ ]
+ },
+ "0xEdC161aECb97596193a5a9a1714CfBC0C4CD3430": {
+ "name": "Avícola Sucer SL",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/AvicolaSucer.vp.json"
+ ]
+ },
+ "0xA8E2DeCF026E2acaf66dB5357f4A381E6B8838aE": {
+ "name": "Avícola Subirats SL",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/AvicolaSubirats.vp.json"
+ ]
+ },
+ "0xF19758fC2Ab767712698B0eCB9Db22342a603DAA": {
+ "name": "Martirbas 1000 SL",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/Martirbas1000.vp.json"
+ ]
+ },
+ "0xf45C1dEeA721778Ef95027C8e751d84d1885f78e": {
+ "name": "Comercialització Avícola Subirats SL",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/ComercialitzacioAvicolaSubirats.vp.json"
+ ]
+ },
+ "0xd40b6e0873159e9e71D9f7a9Fa764Ef342d3d654": {
+ "name": "PROLEC SA",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/PROLEC.vp.json"
+ ]
+ },
+ "0x71Bdc620651c65A62E998e57969491896e38F3C0": {
+ "name": "Pecus Veterinaria SL",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/PecusVet.vp.json"
+ ]
+ },
+ "0xbf5A2888E291A477f9FfD746d27cCd599c47a305": {
+ "name": "Didac Tomàs Comunicació SL",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/DTComunicacio.vp.json"
+ ]
+ },
+ "0xb74cdae0b0C80F9EFa38841ba4354Fe271412288": {
+ "name": "Pauonaada Soluciones Empresariales SL",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/PAUONAADA.vp.json"
+ ]
+ },
+ "0xdA00ba4f28335B294492744FB78740627dCE064f": {
+ "name": "DISI TALENT BCN SL",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/DISITALENT.vp.json"
+ ]
+ },
+ "0xFbd9289E2FDdDa9b532063DD059c4A3d006b5B30": {
+ "name": "Econutrients Biomarkets SL",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/ECONUTRIENTSBIOMARKET.vp.json"
+ ]
+ },
+ "0xC71Dc3Fb0410FBa013164c70a1C1e68400cb767A": {
+ "name": "Servicios Profesionales de la Formación Empresarial SL",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/FORMATE.vp.json"
+ ]
+ },
+ "0x38A1406CF0dCa1815f6f69f8C595226d039648B7": {
+ "name": "Optimal Artificial Social Intelligence Solutions SL",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/OASIS.vp.json"
+ ]
+ },
+ "0x031F4456Ed25a04369E66B6197D76374eF6E51df": {
+ "name": "Imagina Ràdio SL",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/IMAGINARADIO.vp.json"
+ ]
+ },
+ "0x0c41573f23856F23ee285399A248bB3d583EAfC3": {
+ "name": "LAU71 Serveis Integrals SL",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/LAU71.vp.json"
+ ]
+ },
+ "0x7e1Fa1181331230C79A987DcdBdf43844F541E05": {
+ "name": "FILAMAN SL",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/FILAMAN.vp.json"
+ ]
+ },
+ "0x549a283bFcc7b1791fADc9741C8a1bb04847d3fB": {
+ "name": "Terres de l'Ebre Comunicació Multimèdia SL",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/TERRESEBRECOMUNICACIO.vp.json"
+ ]
+ },
+ "0x02148423eB4Cee60D4603267f533ED64817b2AE9": {
+ "name": "Sie-Systems Packaging Solutions SL",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/SIE-SYSTEMS.vp.json"
+ ]
+ },
+ "0xC2Ea7061cBa715B8494A072C5180cc99DbaE6C03": {
+ "name": "CADEPA GLOBAL PACKAGING SL",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/CADEPA.vp.json"
+ ]
+ },
+ "0x2ff1666D1a7d7b0FaB16B505fAf048C196931a73": {
+ "name": "PuntDoc Consultors SL",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/PUNTDOC.vp.json"
+ ]
+ },
+ "0x2D615d6BbeFcBe5F285DF2e888581408186DB06D": {
+ "name": "Blauver Foods SL",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/Blauver.vp.json"
+ ]
+ },
+ "0x9DCdC61B789B6e710E08a67c81666A0DAE4c961f": {
+ "name": "Bacallaners Sorolla SLU",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/Sorolla.vp.json"
+ ]
+ },
+ "0x5c63DFd42807906d90c80cF638A2dC4B4DF0FdD5": {
+ "name": "Hermitransa SL",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/Hermitransa.vp.json"
+ ]
+ },
+ "0xD87820A484c4101d8Fd7A5306bd35B223D89D509": {
+ "name": "Europillow SL",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/Europillow.vp.json"
+ ]
+ },
+ "0xeC7EC64f48d13C0bC1d6F6b8ca658dE1AB59F6f8": {
+ "name": "Agricultura4Data SL",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/Agro4Data.vp.json"
+ ]
+ },
+ "0x1a36725511EE1Dba90E6C6FbbCC9DD1f7F8DBB93": {
+ "name": "1919 IBERICA SL",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/1919IBERICA.vp.json"
+ ]
+ },
+ "0x1535210F2566C7692b93F92eF1780C682FD6C134": {
+ "name": "SASCOM INFORMATICA SLU",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/SASCOM.vp.json"
+ ]
+ },
+ "0x47ae438e3a7D307D4a3A4e439B93d58AC548E31a": {
+ "name": "BAU GRUP SL",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/BAUGRUP.vp.json"
+ ]
+ },
+ "0xa3E9CE7F5405248153eF4C9Ae0be518ccEB45119": {
+ "name": "JJP Muebles SA",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/JJPMuebles.vp.json"
+ ]
+ },
+ "0x82d653D481179932593590caa6185dcb1748d053": {
+ "name": "Albacar Assessors i Consultors SL",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/Albacar.vp.json"
+ ]
+ },
+ "0x60e0bF3512E95C6301A9E2bDfD485140ec9980E0": {
+ "name": "Aillaments i Reformes Bertomeu SL",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/Imperebre.vp.json"
+ ]
+ },
+ "0xf044C797a540a5A851F9F56e0B1a2f0685749D72": {
+ "name": "CEALVET SLU",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/CEALVET.vp.json"
+ ]
+ },
+ "0xb7Aa36CaEe95E4f127CE973239aDA311881C83eD": {
+ "name": "Also Casals Instal·lacions SL",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/AlsoCasals.vp.json"
+ ]
+ },
+ "0x2C101eA58692C9B922c2Ce66E6412F82036818b5": {
+ "name": "Ferros Coll de l'Alba SL",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/FerrosCA.vp.json"
+ ]
+ },
+ "0x538289EcA73f83A7ee0A53b960Ca42B943989caD": {
+ "name": "Laboratori d'aigues QUIMLAB SL",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/QUIMLAB.vp.json"
+ ]
+ },
+ "0x0E6e6FC27b13F0939988A42F09CcB4A2664B20e2": {
+ "name": "Tennders Europe SL",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/Tennders.vp.json"
+ ]
+ },
+ "0x78E9335A32EfAacF2dcd9747722C24408A07fBC0": {
+ "name": "Picas-de la Rosa & Asociados SAP",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/PICAS.vp.json"
+ ]
+ },
+ "0xb83cAFA4cE9eFDab11f67Fe8cf1C8561E87A993d": {
+ "name": "Lonja Online Española SL",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/Abastores.vp.json"
+ ]
+ },
+ "0x7D754baF1425bC357FA90e41f0145C941e253C42": {
+ "name": "Graves del Mediterrani, SL",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/GravesMediterrani.vp.json"
+ ]
+ },
+ "0x60EBd7BA8D432174475a81C4EB7cD787aAdBF8d4": {
+ "name": "Mora Botigues de Moda SL",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/MoraBotigues.vp.json"
+ ]
+ },
+ "0xaf67DC62836de0B5D845A55ed79E3Ba756362fE0": {
+ "name": "Subvenza MCA SL",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/Subvenza.vp.json"
+ ]
+ },
+ "0x910D78A4a2afB22Ef9E5943c68f74d94c215E3df": {
+ "name": "P&R Advanced Consultancy Group SLP",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/PRAdvancedConsultancy.vp.json"
+ ]
+ },
+ "0x0Bf8525b4255659f062d7B41Fca9E84d2A273F57": {
+ "name": "Exportcargo Logistica Integral SL",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/Exportcargo.vp.json"
+ ]
+ },
+ "0xBe5683a73070bb77aF0113803189f31FBdd3b4e3": {
+ "name": "Complutum Tecnologías de la Información Geográfica SL",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/COMPLUTIG.vp.json"
+ ]
+ },
+ "0x26788633FE72D58322E3fC80304d742b72b9A308": {
+ "name": "Unimedia Technology SLU",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/Unimedia.vp.json"
+ ]
+ },
+ "0x29113807ccC8C0cae08b2A441514EfB9f7c86E02": {
+ "name": "Torta Castello Assessors SL",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/TortaCastello.vp.json"
+ ]
+ },
+ "0xBaA7Ca6CD84D1Df35125ed958b50bd2e2edF18dA": {
+ "name": "Maquinaria Atomizadora SL",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/MAKATO.vp.json"
+ ]
+ },
+ "0x9dAdf18aAc879AbFF40D33a766954E7085e53818": {
+ "name": "SIMBIONATUR SLU",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/SIMBIONATUR.vp.json"
+ ]
+ },
+ "0x7A045EEef9B074D8e4549A5cCAB89Abd2C9Ebd33": {
+ "name": "Centre Especial de Treball El Pla",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/CETElPla.vp.json"
+ ]
+ },
+ "0x34BD4e0e19F2aC69330611aE542dEa8C8F1A6Ef2": {
+ "name": "Disseny i Moda SL",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/DissenyModa.vp.json"
+ ]
+ },
+ "0xFDC98BDF61976A20De0c62244C2F1f1AE581F729": {
+ "name": "Transportes Sedano SA",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/TranSedano.vp.json"
+ ]
+ },
+ "0x29913B86fC6fe73760feC6Aef559058FfAdE8C1c": {
+ "name": "MARTI MOTOSPAIN SL",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/MartiMotoSpain.vp.json"
+ ]
+ },
+ "0x78f94e0116fE689a3018b7B431341c288691b8FD": {
+ "name": "Senyum Management SL",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/Senyum.vp.json"
+ ]
+ },
+ "0x62ED43720AC024c6bC781E543485fEF2037f1CBd": {
+ "name": "Sundis SA",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/Sundisa.vp.json"
+ ]
+ },
+ "0xD6f82122A2279fc02E28cee7019900fB93d5f1aF": {
+ "name": "Sanidad y Nutrición Ganadera SL",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/sngveterinaria.vp.json"
+ ]
+ },
+ "0x37725E9FfD22C10814FEE67Abec6890584Af8219": {
+ "name": "Cultilogic Global SL",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/Cultilogic.vp.json"
+ ]
+ },
+ "0x7caE3C97dec1Ac748A1A676b82e864b31A4F176D": {
+ "name": "ITV Barbastro SAU",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/ITVBarbastro.vp.json"
+ ]
+ },
+ "0x7f322Fbe62AB51EC8165db97C5611FE499f3De16": {
+ "name": "Eurotrucha SLU",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/Eurotrucha.vp.json"
+ ]
+ },
+ "0x2Ac4E396d72A4162F245f99736b683A710cC7DDD": {
+ "name": "Piszolla SLU",
+ "credentials": [
+ "https://compliance.agrospai.udl.cat/.well-known/Piszolla.vp.json"
+ ]
+ }
}
diff --git a/public/favicon.ico b/public/favicon.ico
index 93e8ba123..039468a27 100644
Binary files a/public/favicon.ico and b/public/favicon.ico differ
diff --git a/public/icon.svg b/public/icon.svg
index 873ccc556..878b53716 100644
--- a/public/icon.svg
+++ b/public/icon.svg
@@ -1,15 +1,174 @@
-
-