@blinklabs/dingo 0.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (195) hide show
  1. package/.dockerignore +5 -0
  2. package/.github/CODEOWNERS +5 -0
  3. package/.github/assets/dingo-ate-my-blockchain.png +0 -0
  4. package/.github/assets/dingo-illustration.png +0 -0
  5. package/.github/assets/dingo-logo-with-text-horizontal.png +0 -0
  6. package/.github/assets/dingo-logo-with-text.png +0 -0
  7. package/.github/dependabot.yml +19 -0
  8. package/.github/dingo-20241210.png +0 -0
  9. package/.github/dingo.md +56 -0
  10. package/.github/workflows/ci-docker.yml +36 -0
  11. package/.github/workflows/conventional-commits.yml +17 -0
  12. package/.github/workflows/go-test.yml +29 -0
  13. package/.github/workflows/golangci-lint.yml +23 -0
  14. package/.github/workflows/publish.yml +207 -0
  15. package/.golangci.yml +71 -0
  16. package/Dockerfile +25 -0
  17. package/LICENSE +201 -0
  18. package/Makefile +53 -0
  19. package/README.md +150 -0
  20. package/blockfetch.go +144 -0
  21. package/chain/chain.go +504 -0
  22. package/chain/chain_test.go +468 -0
  23. package/chain/errors.go +80 -0
  24. package/chain/event.go +33 -0
  25. package/chain/iter.go +64 -0
  26. package/chainsync/chainsync.go +97 -0
  27. package/chainsync.go +223 -0
  28. package/cmd/dingo/load.go +52 -0
  29. package/cmd/dingo/main.go +118 -0
  30. package/cmd/dingo/serve.go +49 -0
  31. package/config/cardano/node.go +192 -0
  32. package/config/cardano/node_test.go +85 -0
  33. package/config/cardano/preview/README.md +4 -0
  34. package/config/cardano/preview/alonzo-genesis.json +196 -0
  35. package/config/cardano/preview/byron-genesis.json +117 -0
  36. package/config/cardano/preview/config.json +114 -0
  37. package/config/cardano/preview/conway-genesis.json +297 -0
  38. package/config/cardano/preview/shelley-genesis.json +68 -0
  39. package/config.go +245 -0
  40. package/connmanager/connection_manager.go +105 -0
  41. package/connmanager/connection_manager_test.go +185 -0
  42. package/connmanager/event.go +37 -0
  43. package/connmanager/listener.go +140 -0
  44. package/connmanager/outbound.go +93 -0
  45. package/connmanager/socket.go +55 -0
  46. package/connmanager/unix.go +78 -0
  47. package/custom-p2p-topology.json +24 -0
  48. package/custom-p2p-topology.json.backup +24 -0
  49. package/custom-p2p-topology.json.mainnet +37 -0
  50. package/database/account.go +138 -0
  51. package/database/block.go +362 -0
  52. package/database/certs.go +53 -0
  53. package/database/commit_timestamp.go +77 -0
  54. package/database/database.go +118 -0
  55. package/database/database_test.go +62 -0
  56. package/database/drep.go +27 -0
  57. package/database/epoch.go +121 -0
  58. package/database/immutable/chunk.go +182 -0
  59. package/database/immutable/immutable.go +350 -0
  60. package/database/immutable/immutable_test.go +59 -0
  61. package/database/immutable/primary.go +106 -0
  62. package/database/immutable/secondary.go +103 -0
  63. package/database/immutable/testdata/08893.chunk +0 -0
  64. package/database/immutable/testdata/08893.primary +0 -0
  65. package/database/immutable/testdata/08893.secondary +0 -0
  66. package/database/immutable/testdata/08894.chunk +0 -0
  67. package/database/immutable/testdata/08894.primary +0 -0
  68. package/database/immutable/testdata/08894.secondary +0 -0
  69. package/database/immutable/testdata/README.md +4 -0
  70. package/database/plugin/blob/badger/commit_timestamp.go +50 -0
  71. package/database/plugin/blob/badger/database.go +152 -0
  72. package/database/plugin/blob/badger/logger.go +63 -0
  73. package/database/plugin/blob/badger/metrics.go +98 -0
  74. package/database/plugin/blob/blob.go +19 -0
  75. package/database/plugin/blob/store.go +40 -0
  76. package/database/plugin/log.go +27 -0
  77. package/database/plugin/metadata/metadata.go +19 -0
  78. package/database/plugin/metadata/sqlite/account.go +224 -0
  79. package/database/plugin/metadata/sqlite/certs.go +58 -0
  80. package/database/plugin/metadata/sqlite/commit_timestamp.go +68 -0
  81. package/database/plugin/metadata/sqlite/database.go +218 -0
  82. package/database/plugin/metadata/sqlite/epoch.go +120 -0
  83. package/database/plugin/metadata/sqlite/models/account.go +81 -0
  84. package/database/plugin/metadata/sqlite/models/auth_committee_hot.go +26 -0
  85. package/database/plugin/metadata/sqlite/models/deregistration_drep.go +26 -0
  86. package/database/plugin/metadata/sqlite/models/drep.go +27 -0
  87. package/database/plugin/metadata/sqlite/models/epoch.go +31 -0
  88. package/database/plugin/metadata/sqlite/models/models.go +45 -0
  89. package/database/plugin/metadata/sqlite/models/pool.go +97 -0
  90. package/database/plugin/metadata/sqlite/models/pparam_update.go +27 -0
  91. package/database/plugin/metadata/sqlite/models/pparams.go +27 -0
  92. package/database/plugin/metadata/sqlite/models/registration_drep.go +28 -0
  93. package/database/plugin/metadata/sqlite/models/resign_committee_cold.go +27 -0
  94. package/database/plugin/metadata/sqlite/models/stake_registration_delegation.go +27 -0
  95. package/database/plugin/metadata/sqlite/models/stake_vote_delegation.go +27 -0
  96. package/database/plugin/metadata/sqlite/models/stake_vote_registration_delegation.go +27 -0
  97. package/database/plugin/metadata/sqlite/models/tip.go +26 -0
  98. package/database/plugin/metadata/sqlite/models/update_drep.go +27 -0
  99. package/database/plugin/metadata/sqlite/models/utxo.go +30 -0
  100. package/database/plugin/metadata/sqlite/models/vote_delegation.go +26 -0
  101. package/database/plugin/metadata/sqlite/models/vote_registration_delegation.go +26 -0
  102. package/database/plugin/metadata/sqlite/pool.go +240 -0
  103. package/database/plugin/metadata/sqlite/pparams.go +110 -0
  104. package/database/plugin/metadata/sqlite/tip.go +83 -0
  105. package/database/plugin/metadata/sqlite/utxo.go +292 -0
  106. package/database/plugin/metadata/store.go +168 -0
  107. package/database/plugin/option.go +190 -0
  108. package/database/plugin/plugin.go +20 -0
  109. package/database/plugin/register.go +118 -0
  110. package/database/pparams.go +145 -0
  111. package/database/tip.go +45 -0
  112. package/database/txn.go +147 -0
  113. package/database/types/types.go +74 -0
  114. package/database/types/types_test.go +83 -0
  115. package/database/utxo.go +263 -0
  116. package/dist/artifacts.json +1 -0
  117. package/dist/checksums.txt +22 -0
  118. package/dist/config.yaml +253 -0
  119. package/dist/dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz +0 -0
  120. package/dist/dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz.sbom.json +1 -0
  121. package/dist/dingo_0.5.0-SNAPSHOT-d9431e4_darwin_arm64.tar.gz +0 -0
  122. package/dist/dingo_0.5.0-SNAPSHOT-d9431e4_darwin_arm64.tar.gz.sbom.json +1 -0
  123. package/dist/dingo_0.5.0-SNAPSHOT-d9431e4_darwin_x86_64.tar.gz +0 -0
  124. package/dist/dingo_0.5.0-SNAPSHOT-d9431e4_darwin_x86_64.tar.gz.sbom.json +1 -0
  125. package/dist/dingo_0.5.0-SNAPSHOT-d9431e4_linux_amd64.apk +0 -0
  126. package/dist/dingo_0.5.0-SNAPSHOT-d9431e4_linux_amd64.apk.sbom.json +1 -0
  127. package/dist/dingo_0.5.0-SNAPSHOT-d9431e4_linux_amd64.deb +0 -0
  128. package/dist/dingo_0.5.0-SNAPSHOT-d9431e4_linux_amd64.deb.sbom.json +1 -0
  129. package/dist/dingo_0.5.0-SNAPSHOT-d9431e4_linux_amd64.rpm +0 -0
  130. package/dist/dingo_0.5.0-SNAPSHOT-d9431e4_linux_amd64.rpm.sbom.json +1 -0
  131. package/dist/dingo_0.5.0-SNAPSHOT-d9431e4_linux_arm64.apk +0 -0
  132. package/dist/dingo_0.5.0-SNAPSHOT-d9431e4_linux_arm64.apk.sbom.json +1 -0
  133. package/dist/dingo_0.5.0-SNAPSHOT-d9431e4_linux_arm64.deb +0 -0
  134. package/dist/dingo_0.5.0-SNAPSHOT-d9431e4_linux_arm64.deb.sbom.json +1 -0
  135. package/dist/dingo_0.5.0-SNAPSHOT-d9431e4_linux_arm64.rpm +0 -0
  136. package/dist/dingo_0.5.0-SNAPSHOT-d9431e4_linux_arm64.rpm.sbom.json +1 -0
  137. package/dist/dingo_0.5.0-SNAPSHOT-d9431e4_linux_arm64.tar.gz +0 -0
  138. package/dist/dingo_0.5.0-SNAPSHOT-d9431e4_linux_arm64.tar.gz.sbom.json +1 -0
  139. package/dist/dingo_0.5.0-SNAPSHOT-d9431e4_linux_x86_64.tar.gz +0 -0
  140. package/dist/dingo_0.5.0-SNAPSHOT-d9431e4_linux_x86_64.tar.gz.sbom.json +1 -0
  141. package/dist/dingo_darwin_amd64_v1/dingo +0 -0
  142. package/dist/dingo_darwin_arm64_v8.0/dingo +0 -0
  143. package/dist/dingo_linux_amd64_v1/dingo +0 -0
  144. package/dist/dingo_linux_arm64_v8.0/dingo +0 -0
  145. package/dist/homebrew/dingo.rb +51 -0
  146. package/dist/metadata.json +1 -0
  147. package/event/event.go +141 -0
  148. package/event/event_test.go +115 -0
  149. package/event/metrics.go +44 -0
  150. package/go.mod +98 -0
  151. package/go.sum +358 -0
  152. package/internal/config/config.go +145 -0
  153. package/internal/config/config_test.go +118 -0
  154. package/internal/node/load.go +149 -0
  155. package/internal/node/node.go +176 -0
  156. package/internal/version/version.go +33 -0
  157. package/ledger/certs.go +113 -0
  158. package/ledger/chainsync.go +578 -0
  159. package/ledger/eras/allegra.go +154 -0
  160. package/ledger/eras/alonzo.go +156 -0
  161. package/ledger/eras/babbage.go +154 -0
  162. package/ledger/eras/byron.go +42 -0
  163. package/ledger/eras/conway.go +158 -0
  164. package/ledger/eras/eras.go +44 -0
  165. package/ledger/eras/mary.go +154 -0
  166. package/ledger/eras/shelley.go +164 -0
  167. package/ledger/error.go +19 -0
  168. package/ledger/event.go +50 -0
  169. package/ledger/metrics.go +53 -0
  170. package/ledger/queries.go +260 -0
  171. package/ledger/slot.go +127 -0
  172. package/ledger/slot_test.go +147 -0
  173. package/ledger/state.go +726 -0
  174. package/ledger/view.go +73 -0
  175. package/localstatequery.go +50 -0
  176. package/localtxmonitor.go +44 -0
  177. package/localtxsubmission.go +52 -0
  178. package/mempool/consumer.go +98 -0
  179. package/mempool/mempool.go +322 -0
  180. package/node.go +320 -0
  181. package/package.json +33 -0
  182. package/peergov/event.go +27 -0
  183. package/peergov/peer.go +67 -0
  184. package/peergov/peergov.go +290 -0
  185. package/peersharing.go +70 -0
  186. package/preview-local-topology.json +23 -0
  187. package/topology/topology.go +69 -0
  188. package/topology/topology_test.go +179 -0
  189. package/tracing.go +65 -0
  190. package/txsubmission.go +233 -0
  191. package/utxorpc/query.go +311 -0
  192. package/utxorpc/submit.go +395 -0
  193. package/utxorpc/sync.go +276 -0
  194. package/utxorpc/utxorpc.go +166 -0
  195. package/utxorpc/watch.go +310 -0
@@ -0,0 +1 @@
1
+ {"spdxVersion":"SPDX-2.3","dataLicense":"CC0-1.0","SPDXID":"SPDXRef-DOCUMENT","name":"dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","documentNamespace":"https://anchore.com/syft/file/dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz-92f81ee8-21ca-42ea-9be9-8b7db54975db","creationInfo":{"licenseListVersion":"3.25","creators":["Organization: Anchore, Inc","Tool: syft-1.22.0"],"created":"2025-04-17T21:08:41Z"},"packages":[{"name":"actions/attest-build-provenance","SPDXID":"SPDXRef-Package-github-action-actions-attest-build-provenance-309475d72b03cc4b","versionInfo":"v2","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from GitHub Actions workflow file or composite action file: .github/workflows/publish.yml","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:actions\\/attest-build-provenance:actions\\/attest-build-provenance:v2:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:actions\\/attest-build-provenance:actions\\/attest_build_provenance:v2:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:actions\\/attest_build_provenance:actions\\/attest-build-provenance:v2:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:actions\\/attest_build_provenance:actions\\/attest_build_provenance:v2:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:actions\\/attest-build:actions\\/attest-build-provenance:v2:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:actions\\/attest-build:actions\\/attest_build_provenance:v2:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:actions\\/attest_build:actions\\/attest-build-provenance:v2:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:actions\\/attest_build:actions\\/attest_build_provenance:v2:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:actions\\/attest:actions\\/attest-build-provenance:v2:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:actions\\/attest:actions\\/attest_build_provenance:v2:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:github/actions/attest-build-provenance@v2"}]},{"name":"actions/checkout","SPDXID":"SPDXRef-Package-github-action-actions-checkout-040b480a3cd7c109","versionInfo":"v4","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from GitHub Actions workflow file or composite action file: .github/workflows/ci-docker.yml","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:actions\\/checkout:actions\\/checkout:v4:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:github/actions/checkout@v4"}]},{"name":"actions/checkout","SPDXID":"SPDXRef-Package-github-action-actions-checkout-95d924d24cc8d0da","versionInfo":"v4","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from GitHub Actions workflow file or composite action file: .github/workflows/conventional-commits.yml","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:actions\\/checkout:actions\\/checkout:v4:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:github/actions/checkout@v4"}]},{"name":"actions/checkout","SPDXID":"SPDXRef-Package-github-action-actions-checkout-417d27677147df93","versionInfo":"v4","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from GitHub Actions workflow file or composite action file: .github/workflows/go-test.yml","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:actions\\/checkout:actions\\/checkout:v4:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:github/actions/checkout@v4"}]},{"name":"actions/checkout","SPDXID":"SPDXRef-Package-github-action-actions-checkout-97f6fc9047d27564","versionInfo":"v4","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from GitHub Actions workflow file or composite action file: .github/workflows/golangci-lint.yml","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:actions\\/checkout:actions\\/checkout:v4:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:github/actions/checkout@v4"}]},{"name":"actions/checkout","SPDXID":"SPDXRef-Package-github-action-actions-checkout-f4d17fe624e7e24e","versionInfo":"v4","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from GitHub Actions workflow file or composite action file: .github/workflows/publish.yml","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:actions\\/checkout:actions\\/checkout:v4:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:github/actions/checkout@v4"}]},{"name":"actions/checkout","SPDXID":"SPDXRef-Package-github-action-actions-checkout-d3c4f1ad7cdcb634","versionInfo":"v4","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from GitHub Actions workflow file or composite action file: .github/workflows/release.yml","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:actions\\/checkout:actions\\/checkout:v4:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:github/actions/checkout@v4"}]},{"name":"actions/github-script","SPDXID":"SPDXRef-Package-github-action-actions-github-script-f0f2609f1b858807","versionInfo":"v7","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from GitHub Actions workflow file or composite action file: .github/workflows/publish.yml","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:actions\\/github-script:actions\\/github-script:v7:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:actions\\/github-script:actions\\/github_script:v7:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:actions\\/github_script:actions\\/github-script:v7:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:actions\\/github_script:actions\\/github_script:v7:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:actions\\/github:actions\\/github-script:v7:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:actions\\/github:actions\\/github_script:v7:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:github/actions/github-script@v7"}]},{"name":"actions/setup-go","SPDXID":"SPDXRef-Package-github-action-actions-setup-go-12ef75c423b2d5ba","versionInfo":"v5","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from GitHub Actions workflow file or composite action file: .github/workflows/go-test.yml","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:actions\\/setup-go:actions\\/setup-go:v5:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:actions\\/setup-go:actions\\/setup_go:v5:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:actions\\/setup_go:actions\\/setup-go:v5:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:actions\\/setup_go:actions\\/setup_go:v5:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:actions\\/setup:actions\\/setup-go:v5:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:actions\\/setup:actions\\/setup_go:v5:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:github/actions/setup-go@v5"}]},{"name":"actions/setup-go","SPDXID":"SPDXRef-Package-github-action-actions-setup-go-33187fd11dbf6911","versionInfo":"v5","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from GitHub Actions workflow file or composite action file: .github/workflows/golangci-lint.yml","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:actions\\/setup-go:actions\\/setup-go:v5:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:actions\\/setup-go:actions\\/setup_go:v5:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:actions\\/setup_go:actions\\/setup-go:v5:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:actions\\/setup_go:actions\\/setup_go:v5:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:actions\\/setup:actions\\/setup-go:v5:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:actions\\/setup:actions\\/setup_go:v5:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:github/actions/setup-go@v5"}]},{"name":"actions/setup-go","SPDXID":"SPDXRef-Package-github-action-actions-setup-go-bceb423d5ee5ae8d","versionInfo":"v5","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from GitHub Actions workflow file or composite action file: .github/workflows/publish.yml","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:actions\\/setup-go:actions\\/setup-go:v5:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:actions\\/setup-go:actions\\/setup_go:v5:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:actions\\/setup_go:actions\\/setup-go:v5:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:actions\\/setup_go:actions\\/setup_go:v5:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:actions\\/setup:actions\\/setup-go:v5:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:actions\\/setup:actions\\/setup_go:v5:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:github/actions/setup-go@v5"}]},{"name":"actions/setup-go","SPDXID":"SPDXRef-Package-github-action-actions-setup-go-55d8c2937decbac3","versionInfo":"v5","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from GitHub Actions workflow file or composite action file: .github/workflows/release.yml","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:actions\\/setup-go:actions\\/setup-go:v5:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:actions\\/setup-go:actions\\/setup_go:v5:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:actions\\/setup_go:actions\\/setup-go:v5:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:actions\\/setup_go:actions\\/setup_go:v5:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:actions\\/setup:actions\\/setup-go:v5:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:actions\\/setup:actions\\/setup_go:v5:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:github/actions/setup-go@v5"}]},{"name":"andrewslotin/go-proxy-pull-action","SPDXID":"SPDXRef-Package-github-action-andrewslotin-go-proxy-pull-action-a31bb37ff4120e21","versionInfo":"v1.3.0","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from GitHub Actions workflow file or composite action file: .github/workflows/publish.yml","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:andrewslotin\\/go-proxy-pull-action:andrewslotin\\/go-proxy-pull-action:v1.3.0:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:andrewslotin\\/go-proxy-pull-action:andrewslotin\\/go_proxy_pull_action:v1.3.0:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:andrewslotin\\/go_proxy_pull_action:andrewslotin\\/go-proxy-pull-action:v1.3.0:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:andrewslotin\\/go_proxy_pull_action:andrewslotin\\/go_proxy_pull_action:v1.3.0:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:andrewslotin\\/go-proxy-pull:andrewslotin\\/go-proxy-pull-action:v1.3.0:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:andrewslotin\\/go-proxy-pull:andrewslotin\\/go_proxy_pull_action:v1.3.0:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:andrewslotin\\/go_proxy_pull:andrewslotin\\/go-proxy-pull-action:v1.3.0:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:andrewslotin\\/go_proxy_pull:andrewslotin\\/go_proxy_pull_action:v1.3.0:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:andrewslotin\\/go-proxy:andrewslotin\\/go-proxy-pull-action:v1.3.0:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:andrewslotin\\/go-proxy:andrewslotin\\/go_proxy_pull_action:v1.3.0:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:andrewslotin\\/go_proxy:andrewslotin\\/go-proxy-pull-action:v1.3.0:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:andrewslotin\\/go_proxy:andrewslotin\\/go_proxy_pull_action:v1.3.0:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:andrewslotin\\/go:andrewslotin\\/go-proxy-pull-action:v1.3.0:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:andrewslotin\\/go:andrewslotin\\/go_proxy_pull_action:v1.3.0:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:github/andrewslotin/go-proxy-pull-action@v1.3.0"}]},{"name":"andrewslotin/go-proxy-pull-action","SPDXID":"SPDXRef-Package-github-action-andrewslotin-go-proxy-pull-action-839455beeaf4dd08","versionInfo":"v1.3.0","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from GitHub Actions workflow file or composite action file: .github/workflows/release.yml","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:andrewslotin\\/go-proxy-pull-action:andrewslotin\\/go-proxy-pull-action:v1.3.0:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:andrewslotin\\/go-proxy-pull-action:andrewslotin\\/go_proxy_pull_action:v1.3.0:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:andrewslotin\\/go_proxy_pull_action:andrewslotin\\/go-proxy-pull-action:v1.3.0:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:andrewslotin\\/go_proxy_pull_action:andrewslotin\\/go_proxy_pull_action:v1.3.0:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:andrewslotin\\/go-proxy-pull:andrewslotin\\/go-proxy-pull-action:v1.3.0:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:andrewslotin\\/go-proxy-pull:andrewslotin\\/go_proxy_pull_action:v1.3.0:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:andrewslotin\\/go_proxy_pull:andrewslotin\\/go-proxy-pull-action:v1.3.0:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:andrewslotin\\/go_proxy_pull:andrewslotin\\/go_proxy_pull_action:v1.3.0:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:andrewslotin\\/go-proxy:andrewslotin\\/go-proxy-pull-action:v1.3.0:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:andrewslotin\\/go-proxy:andrewslotin\\/go_proxy_pull_action:v1.3.0:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:andrewslotin\\/go_proxy:andrewslotin\\/go-proxy-pull-action:v1.3.0:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:andrewslotin\\/go_proxy:andrewslotin\\/go_proxy_pull_action:v1.3.0:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:andrewslotin\\/go:andrewslotin\\/go-proxy-pull-action:v1.3.0:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:andrewslotin\\/go:andrewslotin\\/go_proxy_pull_action:v1.3.0:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:github/andrewslotin/go-proxy-pull-action@v1.3.0"}]},{"name":"connectrpc.com/connect","SPDXID":"SPDXRef-Package-go-module-connectrpc.com-connect-dc7f386fce693393","versionInfo":"v1.18.1","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from go module information: go.mod","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:golang/connectrpc.com/connect@v1.18.1"}]},{"name":"connectrpc.com/grpchealth","SPDXID":"SPDXRef-Package-go-module-connectrpc.com-grpchealth-2859747d99d0dafe","versionInfo":"v1.3.0","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from go module information: go.mod","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:golang/connectrpc.com/grpchealth@v1.3.0"}]},{"name":"connectrpc.com/grpcreflect","SPDXID":"SPDXRef-Package-go-module-connectrpc.com-grpcreflect-0607a7ce12e930ea","versionInfo":"v1.3.0","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from go module information: go.mod","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:golang/connectrpc.com/grpcreflect@v1.3.0"}]},{"name":"crazy-max/ghaction-import-gpg","SPDXID":"SPDXRef-Package-github-action-crazy-max-ghaction-import-gpg-f46d91e557bebb7c","versionInfo":"v6","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from GitHub Actions workflow file or composite action file: .github/workflows/release.yml","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:crazy-max\\/ghaction-import-gpg:crazy-max\\/ghaction-import-gpg:v6:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:crazy-max\\/ghaction-import-gpg:crazy_max\\/ghaction_import_gpg:v6:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:crazy_max\\/ghaction_import_gpg:crazy-max\\/ghaction-import-gpg:v6:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:crazy_max\\/ghaction_import_gpg:crazy_max\\/ghaction_import_gpg:v6:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:crazy-max\\/ghaction-import:crazy-max\\/ghaction-import-gpg:v6:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:crazy-max\\/ghaction-import:crazy_max\\/ghaction_import_gpg:v6:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:crazy_max\\/ghaction_import:crazy-max\\/ghaction-import-gpg:v6:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:crazy_max\\/ghaction_import:crazy_max\\/ghaction_import_gpg:v6:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:crazy-max\\/ghaction:crazy-max\\/ghaction-import-gpg:v6:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:crazy-max\\/ghaction:crazy_max\\/ghaction_import_gpg:v6:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:crazy_max\\/ghaction:crazy-max\\/ghaction-import-gpg:v6:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:crazy_max\\/ghaction:crazy_max\\/ghaction_import_gpg:v6:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:crazy:crazy-max\\/ghaction-import-gpg:v6:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:crazy:crazy_max\\/ghaction_import_gpg:v6:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:github/crazy-max/ghaction-import-gpg@v6"}]},{"name":"docker/build-push-action","SPDXID":"SPDXRef-Package-github-action-docker-build-push-action-48a53bf103ed8aeb","versionInfo":"v6","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from GitHub Actions workflow file or composite action file: .github/workflows/ci-docker.yml","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/build-push-action:docker\\/build-push-action:v6:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/build-push-action:docker\\/build_push_action:v6:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/build_push_action:docker\\/build-push-action:v6:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/build_push_action:docker\\/build_push_action:v6:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/build-push:docker\\/build-push-action:v6:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/build-push:docker\\/build_push_action:v6:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/build_push:docker\\/build-push-action:v6:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/build_push:docker\\/build_push_action:v6:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/build:docker\\/build-push-action:v6:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/build:docker\\/build_push_action:v6:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:github/docker/build-push-action@v6"}]},{"name":"docker/build-push-action","SPDXID":"SPDXRef-Package-github-action-docker-build-push-action-720b1a119cbc11ae","versionInfo":"v6","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from GitHub Actions workflow file or composite action file: .github/workflows/publish.yml","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/build-push-action:docker\\/build-push-action:v6:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/build-push-action:docker\\/build_push_action:v6:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/build_push_action:docker\\/build-push-action:v6:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/build_push_action:docker\\/build_push_action:v6:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/build-push:docker\\/build-push-action:v6:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/build-push:docker\\/build_push_action:v6:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/build_push:docker\\/build-push-action:v6:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/build_push:docker\\/build_push_action:v6:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/build:docker\\/build-push-action:v6:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/build:docker\\/build_push_action:v6:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:github/docker/build-push-action@v6"}]},{"name":"docker/login-action","SPDXID":"SPDXRef-Package-github-action-docker-login-action-7b8d01a96b500a2c","versionInfo":"v3","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from GitHub Actions workflow file or composite action file: .github/workflows/publish.yml","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/login-action:docker\\/login-action:v3:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/login-action:docker\\/login_action:v3:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/login_action:docker\\/login-action:v3:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/login_action:docker\\/login_action:v3:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/login:docker\\/login-action:v3:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/login:docker\\/login_action:v3:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:github/docker/login-action@v3"}]},{"name":"docker/metadata-action","SPDXID":"SPDXRef-Package-github-action-docker-metadata-action-94a4a6afdb35f321","versionInfo":"v5","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from GitHub Actions workflow file or composite action file: .github/workflows/ci-docker.yml","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/metadata-action:docker\\/metadata-action:v5:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/metadata-action:docker\\/metadata_action:v5:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/metadata_action:docker\\/metadata-action:v5:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/metadata_action:docker\\/metadata_action:v5:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/metadata:docker\\/metadata-action:v5:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/metadata:docker\\/metadata_action:v5:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:github/docker/metadata-action@v5"}]},{"name":"docker/metadata-action","SPDXID":"SPDXRef-Package-github-action-docker-metadata-action-8f591bbce96cfd92","versionInfo":"v5","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from GitHub Actions workflow file or composite action file: .github/workflows/publish.yml","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/metadata-action:docker\\/metadata-action:v5:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/metadata-action:docker\\/metadata_action:v5:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/metadata_action:docker\\/metadata-action:v5:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/metadata_action:docker\\/metadata_action:v5:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/metadata:docker\\/metadata-action:v5:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/metadata:docker\\/metadata_action:v5:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:github/docker/metadata-action@v5"}]},{"name":"docker/setup-buildx-action","SPDXID":"SPDXRef-Package-github-action-docker-setup-buildx-action-831d4ae7d14efcb8","versionInfo":"v3","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from GitHub Actions workflow file or composite action file: .github/workflows/ci-docker.yml","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/setup-buildx-action:docker\\/setup-buildx-action:v3:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/setup-buildx-action:docker\\/setup_buildx_action:v3:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/setup_buildx_action:docker\\/setup-buildx-action:v3:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/setup_buildx_action:docker\\/setup_buildx_action:v3:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/setup-buildx:docker\\/setup-buildx-action:v3:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/setup-buildx:docker\\/setup_buildx_action:v3:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/setup_buildx:docker\\/setup-buildx-action:v3:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/setup_buildx:docker\\/setup_buildx_action:v3:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/setup:docker\\/setup-buildx-action:v3:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/setup:docker\\/setup_buildx_action:v3:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:github/docker/setup-buildx-action@v3"}]},{"name":"docker/setup-buildx-action","SPDXID":"SPDXRef-Package-github-action-docker-setup-buildx-action-fe4c7097088cacb8","versionInfo":"v3","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from GitHub Actions workflow file or composite action file: .github/workflows/publish.yml","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/setup-buildx-action:docker\\/setup-buildx-action:v3:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/setup-buildx-action:docker\\/setup_buildx_action:v3:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/setup_buildx_action:docker\\/setup-buildx-action:v3:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/setup_buildx_action:docker\\/setup_buildx_action:v3:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/setup-buildx:docker\\/setup-buildx-action:v3:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/setup-buildx:docker\\/setup_buildx_action:v3:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/setup_buildx:docker\\/setup-buildx-action:v3:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/setup_buildx:docker\\/setup_buildx_action:v3:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/setup:docker\\/setup-buildx-action:v3:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/setup:docker\\/setup_buildx_action:v3:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:github/docker/setup-buildx-action@v3"}]},{"name":"docker/setup-qemu-action","SPDXID":"SPDXRef-Package-github-action-docker-setup-qemu-action-222c5d16a30dfb0a","versionInfo":"v3","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from GitHub Actions workflow file or composite action file: .github/workflows/ci-docker.yml","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/setup-qemu-action:docker\\/setup-qemu-action:v3:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/setup-qemu-action:docker\\/setup_qemu_action:v3:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/setup_qemu_action:docker\\/setup-qemu-action:v3:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/setup_qemu_action:docker\\/setup_qemu_action:v3:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/setup-qemu:docker\\/setup-qemu-action:v3:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/setup-qemu:docker\\/setup_qemu_action:v3:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/setup_qemu:docker\\/setup-qemu-action:v3:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/setup_qemu:docker\\/setup_qemu_action:v3:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/setup:docker\\/setup-qemu-action:v3:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/setup:docker\\/setup_qemu_action:v3:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:github/docker/setup-qemu-action@v3"}]},{"name":"docker/setup-qemu-action","SPDXID":"SPDXRef-Package-github-action-docker-setup-qemu-action-ade3454960df0004","versionInfo":"v3","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from GitHub Actions workflow file or composite action file: .github/workflows/publish.yml","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/setup-qemu-action:docker\\/setup-qemu-action:v3:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/setup-qemu-action:docker\\/setup_qemu_action:v3:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/setup_qemu_action:docker\\/setup-qemu-action:v3:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/setup_qemu_action:docker\\/setup_qemu_action:v3:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/setup-qemu:docker\\/setup-qemu-action:v3:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/setup-qemu:docker\\/setup_qemu_action:v3:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/setup_qemu:docker\\/setup-qemu-action:v3:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/setup_qemu:docker\\/setup_qemu_action:v3:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/setup:docker\\/setup-qemu-action:v3:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:docker\\/setup:docker\\/setup_qemu_action:v3:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:github/docker/setup-qemu-action@v3"}]},{"name":"filippo.io/edwards25519","SPDXID":"SPDXRef-Package-go-module-filippo.io-edwards25519-700a4d975b30f010","versionInfo":"v1.1.0","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from go module information: go.mod","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:golang/filippo.io/edwards25519@v1.1.0"}]},{"name":"github.com/beorn7/perks","SPDXID":"SPDXRef-Package-go-module-github.com-beorn7-perks-c5df2f39a644bda7","versionInfo":"v1.0.1","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from go module information: go.mod","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:beorn7:perks:v1.0.1:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:golang/github.com/beorn7/perks@v1.0.1"}]},{"name":"github.com/blinklabs-io/gouroboros","SPDXID":"SPDXRef-Package-go-module-github.com-blinklabs-io-gouroboros-917247bb64f79d22","versionInfo":"v0.117.0","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from go module information: go.mod","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:blinklabs-io:gouroboros:v0.117.0:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:blinklabs_io:gouroboros:v0.117.0:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:blinklabs:gouroboros:v0.117.0:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:golang/github.com/blinklabs-io/gouroboros@v0.117.0"}]},{"name":"github.com/blinklabs-io/ouroboros-mock","SPDXID":"SPDXRef-Package-go-module-github.com-blinklabs-io-ouroboros-mock-5e5a5e2979e6c04b","versionInfo":"v0.3.7","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from go module information: go.mod","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:blinklabs-io:ouroboros-mock:v0.3.7:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:blinklabs-io:ouroboros_mock:v0.3.7:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:blinklabs_io:ouroboros-mock:v0.3.7:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:blinklabs_io:ouroboros_mock:v0.3.7:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:blinklabs:ouroboros-mock:v0.3.7:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:blinklabs:ouroboros_mock:v0.3.7:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:golang/github.com/blinklabs-io/ouroboros-mock@v0.3.7"}]},{"name":"github.com/btcsuite/btcd/btcutil","SPDXID":"SPDXRef-Package-go-module-github.com-btcsuite-btcd-btcutil-6a2fd12cd1e15919","versionInfo":"v1.1.6","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from go module information: go.mod","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:btcsuite:btcd\\/btcutil:v1.1.6:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:golang/github.com/btcsuite/btcd@v1.1.6#btcutil"}]},{"name":"github.com/cenkalti/backoff/v4","SPDXID":"SPDXRef-Package-go-module-github.com-cenkalti-backoff-v4-f52bfd7b6c19ac78","versionInfo":"v4.3.0","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from go module information: go.mod","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:cenkalti:backoff\\/v4:v4.3.0:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:golang/github.com/cenkalti/backoff@v4.3.0#v4"}]},{"name":"github.com/cespare/xxhash/v2","SPDXID":"SPDXRef-Package-go-module-github.com-cespare-xxhash-v2-a19e795f9b52f756","versionInfo":"v2.3.0","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from go module information: go.mod","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:cespare:xxhash\\/v2:v2.3.0:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:golang/github.com/cespare/xxhash@v2.3.0#v2"}]},{"name":"github.com/dgraph-io/badger/v4","SPDXID":"SPDXRef-Package-go-module-github.com-dgraph-io-badger-v4-44f6313d7b0f67cc","versionInfo":"v4.7.0","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from go module information: go.mod","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:dgraph-io:badger\\/v4:v4.7.0:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:dgraph_io:badger\\/v4:v4.7.0:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:dgraph:badger\\/v4:v4.7.0:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:golang/github.com/dgraph-io/badger@v4.7.0#v4"}]},{"name":"github.com/dgraph-io/ristretto/v2","SPDXID":"SPDXRef-Package-go-module-github.com-dgraph-io-ristretto-v2-978feed7069f9467","versionInfo":"v2.2.0","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from go module information: go.mod","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:dgraph-io:ristretto\\/v2:v2.2.0:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:dgraph_io:ristretto\\/v2:v2.2.0:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:dgraph:ristretto\\/v2:v2.2.0:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:golang/github.com/dgraph-io/ristretto@v2.2.0#v2"}]},{"name":"github.com/dustin/go-humanize","SPDXID":"SPDXRef-Package-go-module-github.com-dustin-go-humanize-d955c23d6bf3c0ba","versionInfo":"v1.0.1","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from go module information: go.mod","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:dustin:go-humanize:v1.0.1:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:dustin:go_humanize:v1.0.1:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:golang/github.com/dustin/go-humanize@v1.0.1"}]},{"name":"github.com/fxamacker/cbor/v2","SPDXID":"SPDXRef-Package-go-module-github.com-fxamacker-cbor-v2-0c4ad880888c7041","versionInfo":"v2.8.0","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from go module information: go.mod","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:fxamacker:cbor\\/v2:v2.8.0:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:golang/github.com/fxamacker/cbor@v2.8.0#v2"}]},{"name":"github.com/glebarez/go-sqlite","SPDXID":"SPDXRef-Package-go-module-github.com-glebarez-go-sqlite-33f62283de18d51a","versionInfo":"v1.21.2","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from go module information: go.mod","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:glebarez:go-sqlite:v1.21.2:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:glebarez:go_sqlite:v1.21.2:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:golang/github.com/glebarez/go-sqlite@v1.21.2"}]},{"name":"github.com/glebarez/sqlite","SPDXID":"SPDXRef-Package-go-module-github.com-glebarez-sqlite-87ccc94dc6295c7c","versionInfo":"v1.11.0","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from go module information: go.mod","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:glebarez:sqlite:v1.11.0:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:golang/github.com/glebarez/sqlite@v1.11.0"}]},{"name":"github.com/go-logr/logr","SPDXID":"SPDXRef-Package-go-module-github.com-go-logr-logr-9a89ea5d65f11b69","versionInfo":"v1.4.2","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from go module information: go.mod","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:go-logr:logr:v1.4.2:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:go_logr:logr:v1.4.2:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:go:logr:v1.4.2:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:golang/github.com/go-logr/logr@v1.4.2"}]},{"name":"github.com/go-logr/stdr","SPDXID":"SPDXRef-Package-go-module-github.com-go-logr-stdr-ccf41d160ec08231","versionInfo":"v1.2.2","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from go module information: go.mod","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:go-logr:stdr:v1.2.2:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:go_logr:stdr:v1.2.2:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:go:stdr:v1.2.2:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:golang/github.com/go-logr/stdr@v1.2.2"}]},{"name":"github.com/google/flatbuffers","SPDXID":"SPDXRef-Package-go-module-github.com-google-flatbuffers-b4501232f3549be4","versionInfo":"v25.2.10+incompatible","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from go module information: go.mod","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:google:flatbuffers:v25.2.10\\+incompatible:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:golang/github.com/google/flatbuffers@v25.2.10%2Bincompatible"}]},{"name":"github.com/google/uuid","SPDXID":"SPDXRef-Package-go-module-github.com-google-uuid-7363d9d6ade1b0b6","versionInfo":"v1.6.0","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from go module information: go.mod","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:google:uuid:v1.6.0:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:golang/github.com/google/uuid@v1.6.0"}]},{"name":"github.com/grpc-ecosystem/grpc-gateway/v2","SPDXID":"SPDXRef-Package-go-module-github.com-grpc-ecosystem-grpc-gateway-v2-9d3bc90930b250fd","versionInfo":"v2.26.1","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from go module information: go.mod","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:grpc-ecosystem:grpc-gateway\\/v2:v2.26.1:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:grpc-ecosystem:grpc_gateway\\/v2:v2.26.1:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:grpc_ecosystem:grpc-gateway\\/v2:v2.26.1:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:grpc_ecosystem:grpc_gateway\\/v2:v2.26.1:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:grpc:grpc-gateway\\/v2:v2.26.1:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:grpc:grpc_gateway\\/v2:v2.26.1:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:golang/github.com/grpc-ecosystem/grpc-gateway@v2.26.1#v2"}]},{"name":"github.com/inconshreveable/mousetrap","SPDXID":"SPDXRef-Package-go-module-github.com-inconshreveable-mousetrap-1b77f177248f10dd","versionInfo":"v1.1.0","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from go module information: go.mod","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:inconshreveable:mousetrap:v1.1.0:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:golang/github.com/inconshreveable/mousetrap@v1.1.0"}]},{"name":"github.com/jinzhu/copier","SPDXID":"SPDXRef-Package-go-module-github.com-jinzhu-copier-e28f0ddade3f63d3","versionInfo":"v0.4.0","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from go module information: go.mod","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:jinzhu:copier:v0.4.0:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:golang/github.com/jinzhu/copier@v0.4.0"}]},{"name":"github.com/jinzhu/inflection","SPDXID":"SPDXRef-Package-go-module-github.com-jinzhu-inflection-8f982e8546028fe9","versionInfo":"v1.0.0","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from go module information: go.mod","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:jinzhu:inflection:v1.0.0:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:golang/github.com/jinzhu/inflection@v1.0.0"}]},{"name":"github.com/jinzhu/now","SPDXID":"SPDXRef-Package-go-module-github.com-jinzhu-now-bea9cd74804190ff","versionInfo":"v1.1.5","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from go module information: go.mod","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:jinzhu:now:v1.1.5:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:golang/github.com/jinzhu/now@v1.1.5"}]},{"name":"github.com/kelseyhightower/envconfig","SPDXID":"SPDXRef-Package-go-module-github.com-kelseyhightower-envconfig-0bd6fc52edcedb2b","versionInfo":"v1.4.0","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from go module information: go.mod","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:kelseyhightower:envconfig:v1.4.0:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:golang/github.com/kelseyhightower/envconfig@v1.4.0"}]},{"name":"github.com/klauspost/compress","SPDXID":"SPDXRef-Package-go-module-github.com-klauspost-compress-e30af096126b2c66","versionInfo":"v1.18.0","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from go module information: go.mod","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:klauspost:compress:v1.18.0:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:golang/github.com/klauspost/compress@v1.18.0"}]},{"name":"github.com/mattn/go-isatty","SPDXID":"SPDXRef-Package-go-module-github.com-mattn-go-isatty-230d051b1ae4540d","versionInfo":"v0.0.17","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from go module information: go.mod","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:mattn:go-isatty:v0.0.17:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:mattn:go_isatty:v0.0.17:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:golang/github.com/mattn/go-isatty@v0.0.17"}]},{"name":"github.com/munnerz/goautoneg","SPDXID":"SPDXRef-Package-go-module-github.com-munnerz-goautoneg-ecf7fd354c32aa83","versionInfo":"v0.0.0-20191010083416-a7dc8b61c822","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from go module information: go.mod","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:munnerz:goautoneg:v0.0.0-20191010083416-a7dc8b61c822:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:golang/github.com/munnerz/goautoneg@v0.0.0-20191010083416-a7dc8b61c822"}]},{"name":"github.com/prometheus/client_golang","SPDXID":"SPDXRef-Package-go-module-github.com-prometheus-client-golang-1c56a1145d69433e","versionInfo":"v1.22.0","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from go module information: go.mod","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:prometheus:client-golang:v1.22.0:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:prometheus:client_golang:v1.22.0:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:golang/github.com/prometheus/client_golang@v1.22.0"}]},{"name":"github.com/prometheus/client_model","SPDXID":"SPDXRef-Package-go-module-github.com-prometheus-client-model-73fccfb2d0f6ef62","versionInfo":"v0.6.1","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from go module information: go.mod","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:prometheus:client-model:v0.6.1:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:prometheus:client_model:v0.6.1:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:golang/github.com/prometheus/client_model@v0.6.1"}]},{"name":"github.com/prometheus/common","SPDXID":"SPDXRef-Package-go-module-github.com-prometheus-common-51fa8666faa94396","versionInfo":"v0.62.0","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from go module information: go.mod","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:prometheus:common:v0.62.0:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:golang/github.com/prometheus/common@v0.62.0"}]},{"name":"github.com/prometheus/procfs","SPDXID":"SPDXRef-Package-go-module-github.com-prometheus-procfs-2f6cae1ee69fab2f","versionInfo":"v0.15.1","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from go module information: go.mod","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:prometheus:procfs:v0.15.1:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:golang/github.com/prometheus/procfs@v0.15.1"}]},{"name":"github.com/remyoudompheng/bigfft","SPDXID":"SPDXRef-Package-go-module-github.com-remyoudompheng-bigfft-bdf12799d15b7d1a","versionInfo":"v0.0.0-20230129092748-24d4a6f8daec","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from go module information: go.mod","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:remyoudompheng:bigfft:v0.0.0-20230129092748-24d4a6f8daec:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:golang/github.com/remyoudompheng/bigfft@v0.0.0-20230129092748-24d4a6f8daec"}]},{"name":"github.com/spf13/cobra","SPDXID":"SPDXRef-Package-go-module-github.com-spf13-cobra-d2a3016e2115d707","versionInfo":"v1.9.1","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from go module information: go.mod","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:spf13:cobra:v1.9.1:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:golang/github.com/spf13/cobra@v1.9.1"}]},{"name":"github.com/spf13/pflag","SPDXID":"SPDXRef-Package-go-module-github.com-spf13-pflag-c249a4f4468d5147","versionInfo":"v1.0.6","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from go module information: go.mod","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:spf13:pflag:v1.0.6:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:golang/github.com/spf13/pflag@v1.0.6"}]},{"name":"github.com/utxorpc/go-codegen","SPDXID":"SPDXRef-Package-go-module-github.com-utxorpc-go-codegen-31e6bb266ab8764d","versionInfo":"v0.16.0","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from go module information: go.mod","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:utxorpc:go-codegen:v0.16.0:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:utxorpc:go_codegen:v0.16.0:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:golang/github.com/utxorpc/go-codegen@v0.16.0"}]},{"name":"github.com/x448/float16","SPDXID":"SPDXRef-Package-go-module-github.com-x448-float16-d000429fdb2a0af9","versionInfo":"v0.8.4","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from go module information: go.mod","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:x448:float16:v0.8.4:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:golang/github.com/x448/float16@v0.8.4"}]},{"name":"go.opentelemetry.io/auto/sdk","SPDXID":"SPDXRef-Package-go-module-go.opentelemetry.io-auto-sdk-d396f1761e514e89","versionInfo":"v1.1.0","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from go module information: go.mod","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:auto:sdk:v1.1.0:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:golang/go.opentelemetry.io/auto/sdk@v1.1.0"}]},{"name":"go.opentelemetry.io/otel","SPDXID":"SPDXRef-Package-go-module-go.opentelemetry.io-otel-b99dac77e1ff4fde","versionInfo":"v1.35.0","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from go module information: go.mod","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:golang/go.opentelemetry.io/otel@v1.35.0"}]},{"name":"go.opentelemetry.io/otel/exporters/otlp/otlptrace","SPDXID":"SPDXRef-Package-go-module-go.opentelemetry.io-otel-exporters-otlp-otlptrace-e6b66610f1cc31f1","versionInfo":"v1.35.0","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from go module information: go.mod","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:otel:exporters\\/otlp\\/otlptrace:v1.35.0:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:golang/go.opentelemetry.io/otel/exporters@v1.35.0#otlp/otlptrace"}]},{"name":"go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp","SPDXID":"SPDXRef-Package-go-module-go.opentelemetry.io-otel-exporters-otlp-otlptrace-otlptracehttp-a96154b51f2c3573","versionInfo":"v1.35.0","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from go module information: go.mod","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:otel:exporters\\/otlp\\/otlptrace\\/otlptracehttp:v1.35.0:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:golang/go.opentelemetry.io/otel/exporters@v1.35.0#otlp/otlptrace/otlptracehttp"}]},{"name":"go.opentelemetry.io/otel/exporters/stdout/stdouttrace","SPDXID":"SPDXRef-Package-go-module-go.opentelemetry.io-otel-exporters-stdout-stdouttrace-2ffafb3e3a8fcc81","versionInfo":"v1.35.0","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from go module information: go.mod","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:otel:exporters\\/stdout\\/stdouttrace:v1.35.0:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:golang/go.opentelemetry.io/otel/exporters@v1.35.0#stdout/stdouttrace"}]},{"name":"go.opentelemetry.io/otel/metric","SPDXID":"SPDXRef-Package-go-module-go.opentelemetry.io-otel-metric-71f9aac75bfac307","versionInfo":"v1.35.0","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from go module information: go.mod","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:otel:metric:v1.35.0:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:golang/go.opentelemetry.io/otel/metric@v1.35.0"}]},{"name":"go.opentelemetry.io/otel/sdk","SPDXID":"SPDXRef-Package-go-module-go.opentelemetry.io-otel-sdk-46a6ee9657a8a845","versionInfo":"v1.35.0","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from go module information: go.mod","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:otel:sdk:v1.35.0:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:golang/go.opentelemetry.io/otel/sdk@v1.35.0"}]},{"name":"go.opentelemetry.io/otel/trace","SPDXID":"SPDXRef-Package-go-module-go.opentelemetry.io-otel-trace-1a7116bbc5b2e2f6","versionInfo":"v1.35.0","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from go module information: go.mod","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:otel:trace:v1.35.0:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:golang/go.opentelemetry.io/otel/trace@v1.35.0"}]},{"name":"go.opentelemetry.io/proto/otlp","SPDXID":"SPDXRef-Package-go-module-go.opentelemetry.io-proto-otlp-f630284a9ad076a7","versionInfo":"v1.5.0","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from go module information: go.mod","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:proto:otlp:v1.5.0:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:golang/go.opentelemetry.io/proto/otlp@v1.5.0"}]},{"name":"go.uber.org/automaxprocs","SPDXID":"SPDXRef-Package-go-module-go.uber.org-automaxprocs-ffff65f46561d7cc","versionInfo":"v1.6.0","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from go module information: go.mod","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:golang/go.uber.org/automaxprocs@v1.6.0"}]},{"name":"go.uber.org/goleak","SPDXID":"SPDXRef-Package-go-module-go.uber.org-goleak-39c377ccc1e68f17","versionInfo":"v1.3.0","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from go module information: go.mod","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:golang/go.uber.org/goleak@v1.3.0"}]},{"name":"golang.org/x/crypto","SPDXID":"SPDXRef-Package-go-module-golang.org-x-crypto-c59ea120abd52cd5","versionInfo":"v0.37.0","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from go module information: go.mod","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:golang:x\\/crypto:v0.37.0:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:golang/golang.org/x/crypto@v0.37.0"}]},{"name":"golang.org/x/net","SPDXID":"SPDXRef-Package-go-module-golang.org-x-net-488782e67b864b63","versionInfo":"v0.39.0","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from go module information: go.mod","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:golang:networking:v0.39.0:*:*:*:*:go:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:golang/golang.org/x/net@v0.39.0"}]},{"name":"golang.org/x/sys","SPDXID":"SPDXRef-Package-go-module-golang.org-x-sys-9e383abed7ef4504","versionInfo":"v0.32.0","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from go module information: go.mod","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:golang:x\\/sys:v0.32.0:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:golang/golang.org/x/sys@v0.32.0"}]},{"name":"golang.org/x/text","SPDXID":"SPDXRef-Package-go-module-golang.org-x-text-d7eba279475d3481","versionInfo":"v0.24.0","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from go module information: go.mod","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:golang:text:v0.24.0:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:golang/golang.org/x/text@v0.24.0"}]},{"name":"golangci/golangci-lint-action","SPDXID":"SPDXRef-Package-github-action-golangci-golangci-lint-action-a8357a6bf29d7253","versionInfo":"v7","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from GitHub Actions workflow file or composite action file: .github/workflows/golangci-lint.yml","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:golangci\\/golangci-lint-action:golangci\\/golangci-lint-action:v7:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:golangci\\/golangci-lint-action:golangci\\/golangci_lint_action:v7:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:golangci\\/golangci_lint_action:golangci\\/golangci-lint-action:v7:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:golangci\\/golangci_lint_action:golangci\\/golangci_lint_action:v7:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:golangci\\/golangci-lint:golangci\\/golangci-lint-action:v7:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:golangci\\/golangci-lint:golangci\\/golangci_lint_action:v7:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:golangci\\/golangci_lint:golangci\\/golangci-lint-action:v7:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:golangci\\/golangci_lint:golangci\\/golangci_lint_action:v7:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:golangci\\/golangci:golangci\\/golangci-lint-action:v7:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:golangci\\/golangci:golangci\\/golangci_lint_action:v7:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:github/golangci/golangci-lint-action@v7"}]},{"name":"google.golang.org/genproto/googleapis/api","SPDXID":"SPDXRef-Package-go-module-google.golang.org-genproto-googleapis-api-fdf04067a89304ab","versionInfo":"v0.0.0-20250218202821-56aae31c358a","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from go module information: go.mod","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:google:genproto:v0.0.0-20250218202821-56aae31c358a:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:golang/google.golang.org/genproto/googleapis@v0.0.0-20250218202821-56aae31c358a#api"}]},{"name":"google.golang.org/genproto/googleapis/rpc","SPDXID":"SPDXRef-Package-go-module-google.golang.org-genproto-googleapis-rpc-2c279f3e9efc51c8","versionInfo":"v0.0.0-20250218202821-56aae31c358a","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from go module information: go.mod","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:google:genproto:v0.0.0-20250218202821-56aae31c358a:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:golang/google.golang.org/genproto/googleapis@v0.0.0-20250218202821-56aae31c358a#rpc"}]},{"name":"google.golang.org/grpc","SPDXID":"SPDXRef-Package-go-module-google.golang.org-grpc-82b74d694adb0d58","versionInfo":"v1.71.0","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from go module information: go.mod","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:google:grpc:v1.71.0:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:golang/google.golang.org/grpc@v1.71.0"}]},{"name":"google.golang.org/protobuf","SPDXID":"SPDXRef-Package-go-module-google.golang.org-protobuf-034ddf2eedc433f4","versionInfo":"v1.36.6","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from go module information: go.mod","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:google:protobuf:v1.36.6:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:golang/google.golang.org/protobuf@v1.36.6"}]},{"name":"gopkg.in/yaml.v3","SPDXID":"SPDXRef-Package-go-module-gopkg.in-yaml.v3-3d75d4e8a0a24e9f","versionInfo":"v3.0.1","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from go module information: go.mod","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:yaml_project:yaml:v3.0.1:*:*:*:*:go:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:golang/gopkg.in/yaml.v3@v3.0.1"}]},{"name":"goreleaser/goreleaser-action","SPDXID":"SPDXRef-Package-github-action-goreleaser-goreleaser-action-16e4b287c8a6a495","versionInfo":"v6","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from GitHub Actions workflow file or composite action file: .github/workflows/release.yml","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:goreleaser\\/goreleaser-action:goreleaser\\/goreleaser-action:v6:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:goreleaser\\/goreleaser-action:goreleaser\\/goreleaser_action:v6:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:goreleaser\\/goreleaser_action:goreleaser\\/goreleaser-action:v6:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:goreleaser\\/goreleaser_action:goreleaser\\/goreleaser_action:v6:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:goreleaser\\/goreleaser:goreleaser\\/goreleaser-action:v6:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:goreleaser\\/goreleaser:goreleaser\\/goreleaser_action:v6:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:github/goreleaser/goreleaser-action@v6"}]},{"name":"gorm.io/gorm","SPDXID":"SPDXRef-Package-go-module-gorm.io-gorm-112aebe4cac84f78","versionInfo":"v1.25.12","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from go module information: go.mod","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:golang/gorm.io/gorm@v1.25.12"}]},{"name":"gorm.io/plugin/opentelemetry","SPDXID":"SPDXRef-Package-go-module-gorm.io-plugin-opentelemetry-76fe10e200db7ca5","versionInfo":"v0.1.12","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from go module information: go.mod","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:plugin:opentelemetry:v0.1.12:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:golang/gorm.io/plugin/opentelemetry@v0.1.12"}]},{"name":"modernc.org/libc","SPDXID":"SPDXRef-Package-go-module-modernc.org-libc-c5d901440f261626","versionInfo":"v1.22.5","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from go module information: go.mod","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:golang/modernc.org/libc@v1.22.5"}]},{"name":"modernc.org/mathutil","SPDXID":"SPDXRef-Package-go-module-modernc.org-mathutil-d7695f7998a5892a","versionInfo":"v1.5.0","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from go module information: go.mod","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:golang/modernc.org/mathutil@v1.5.0"}]},{"name":"modernc.org/memory","SPDXID":"SPDXRef-Package-go-module-modernc.org-memory-371b5e511f6c5fa9","versionInfo":"v1.5.0","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from go module information: go.mod","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:golang/modernc.org/memory@v1.5.0"}]},{"name":"modernc.org/sqlite","SPDXID":"SPDXRef-Package-go-module-modernc.org-sqlite-c88247944dbc5c12","versionInfo":"v1.23.1","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from go module information: go.mod","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:golang/modernc.org/sqlite@v1.23.1"}]},{"name":"peter-evans/dockerhub-description","SPDXID":"SPDXRef-Package-github-action-peter-evans-dockerhub-description-1cac90329d89eedd","versionInfo":"v4","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from GitHub Actions workflow file or composite action file: .github/workflows/publish.yml","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:peter-evans\\/dockerhub-description:peter-evans\\/dockerhub-description:v4:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:peter-evans\\/dockerhub-description:peter_evans\\/dockerhub_description:v4:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:peter_evans\\/dockerhub_description:peter-evans\\/dockerhub-description:v4:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:peter_evans\\/dockerhub_description:peter_evans\\/dockerhub_description:v4:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:peter-evans\\/dockerhub:peter-evans\\/dockerhub-description:v4:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:peter-evans\\/dockerhub:peter_evans\\/dockerhub_description:v4:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:peter_evans\\/dockerhub:peter-evans\\/dockerhub-description:v4:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:peter_evans\\/dockerhub:peter_evans\\/dockerhub_description:v4:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:peter:peter-evans\\/dockerhub-description:v4:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:peter:peter_evans\\/dockerhub_description:v4:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:github/peter-evans/dockerhub-description@v4"}]},{"name":"webiny/action-conventional-commits","SPDXID":"SPDXRef-Package-github-action-webiny-action-conventional-commits-4f486b3bef939d40","versionInfo":"v1.3.0","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"sourceInfo":"acquired package info from GitHub Actions workflow file or composite action file: .github/workflows/conventional-commits.yml","licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","externalRefs":[{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:webiny\\/action-conventional-commits:webiny\\/action-conventional-commits:v1.3.0:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:webiny\\/action-conventional-commits:webiny\\/action_conventional_commits:v1.3.0:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:webiny\\/action_conventional_commits:webiny\\/action-conventional-commits:v1.3.0:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:webiny\\/action_conventional_commits:webiny\\/action_conventional_commits:v1.3.0:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:webiny\\/action-conventional:webiny\\/action-conventional-commits:v1.3.0:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:webiny\\/action-conventional:webiny\\/action_conventional_commits:v1.3.0:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:webiny\\/action_conventional:webiny\\/action-conventional-commits:v1.3.0:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:webiny\\/action_conventional:webiny\\/action_conventional_commits:v1.3.0:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:webiny\\/action:webiny\\/action-conventional-commits:v1.3.0:*:*:*:*:*:*:*"},{"referenceCategory":"SECURITY","referenceType":"cpe23Type","referenceLocator":"cpe:2.3:a:webiny\\/action:webiny\\/action_conventional_commits:v1.3.0:*:*:*:*:*:*:*"},{"referenceCategory":"PACKAGE-MANAGER","referenceType":"purl","referenceLocator":"pkg:github/webiny/action-conventional-commits@v1.3.0"}]},{"name":"dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","SPDXID":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","versionInfo":"sha256:0a14ca3f064209e429aa1788f319f7472244d0e30456c36d505a16242ccc7dcc","supplier":"NOASSERTION","downloadLocation":"NOASSERTION","filesAnalyzed":false,"checksums":[{"algorithm":"SHA256","checksumValue":"0a14ca3f064209e429aa1788f319f7472244d0e30456c36d505a16242ccc7dcc"}],"licenseConcluded":"NOASSERTION","licenseDeclared":"NOASSERTION","copyrightText":"NOASSERTION","primaryPackagePurpose":"FILE"}],"files":[{"fileName":".github/workflows/ci-docker.yml","SPDXID":"SPDXRef-File-.github-workflows-ci-docker.yml-ea396165396d2be5","fileTypes":["TEXT"],"checksums":[{"algorithm":"SHA1","checksumValue":"d415f08498b33396bf7b4140bd0f84140480bb56"},{"algorithm":"SHA256","checksumValue":"0486d436faf73649b64c17791d22936a157a9549fef2bce9f8ab8d3d36e9acc2"}],"licenseConcluded":"NOASSERTION","licenseInfoInFiles":["NOASSERTION"],"copyrightText":"NOASSERTION"},{"fileName":".github/workflows/conventional-commits.yml","SPDXID":"SPDXRef-File-...workflows-conventional-commits.yml-ae930ef4ffbd84cd","fileTypes":["TEXT"],"checksums":[{"algorithm":"SHA1","checksumValue":"e483fe16cea3f7ada137d9b228f6ff96c2f307e8"},{"algorithm":"SHA256","checksumValue":"6a58813fd6889231d859751a21fffb2e0f613aa95fbdd7f026a0e0028613ffba"}],"licenseConcluded":"NOASSERTION","licenseInfoInFiles":["NOASSERTION"],"copyrightText":"NOASSERTION"},{"fileName":".github/workflows/go-test.yml","SPDXID":"SPDXRef-File-.github-workflows-go-test.yml-b02b93ebd15c0679","fileTypes":["TEXT"],"checksums":[{"algorithm":"SHA1","checksumValue":"956df9654076b5484bb907226b95e635ed8a716f"},{"algorithm":"SHA256","checksumValue":"8e667ed7380c1ffed447ce2f63e419b68bf4ccaf5a44888b1f1c729128bd1ff0"}],"licenseConcluded":"NOASSERTION","licenseInfoInFiles":["NOASSERTION"],"copyrightText":"NOASSERTION"},{"fileName":".github/workflows/golangci-lint.yml","SPDXID":"SPDXRef-File-.github-workflows-golangci-lint.yml-759d2c9575fcbd65","fileTypes":["TEXT"],"checksums":[{"algorithm":"SHA1","checksumValue":"d744649f271a023463b18ed54a6c2e6deb7e31f9"},{"algorithm":"SHA256","checksumValue":"1aca4770362db8d81ff05c2172389ca657d1a042e00d6fbc9f68229224f36f06"}],"licenseConcluded":"NOASSERTION","licenseInfoInFiles":["NOASSERTION"],"copyrightText":"NOASSERTION"},{"fileName":".github/workflows/publish.yml","SPDXID":"SPDXRef-File-.github-workflows-publish.yml-e8a3da41f18c27dd","fileTypes":["TEXT"],"checksums":[{"algorithm":"SHA1","checksumValue":"4d874cdf4dcb9e0b2e9f31f0a5e0b30ff3e91cf9"},{"algorithm":"SHA256","checksumValue":"b8ddce5472b28b7646ca4e50b7f91803d9de021a50275d9a9bd585ae60f3dda0"}],"licenseConcluded":"NOASSERTION","licenseInfoInFiles":["NOASSERTION"],"copyrightText":"NOASSERTION"},{"fileName":".github/workflows/release.yml","SPDXID":"SPDXRef-File-.github-workflows-release.yml-fae49ca0df863ff7","fileTypes":["TEXT"],"checksums":[{"algorithm":"SHA1","checksumValue":"9853d469df9f610a4d82ce90372c22a7a6afc36c"},{"algorithm":"SHA256","checksumValue":"0c62a08a3de0d4fb6ca98ad2acfab80e22e568cee69d211fb09dda8d2b75312c"}],"licenseConcluded":"NOASSERTION","licenseInfoInFiles":["NOASSERTION"],"copyrightText":"NOASSERTION"},{"fileName":"go.mod","SPDXID":"SPDXRef-File-go.mod-ed9ca1d5b0eb32bc","fileTypes":["TEXT"],"checksums":[{"algorithm":"SHA1","checksumValue":"c114c5e674dd55653aa09b746f45b2f0b62b716a"},{"algorithm":"SHA256","checksumValue":"e70acc71ed5420f607b66c2bdceaf9561c65a4b373503737fb4a2a1ab41ead0f"}],"licenseConcluded":"NOASSERTION","licenseInfoInFiles":["NOASSERTION"],"copyrightText":"NOASSERTION"}],"relationships":[{"spdxElementId":"SPDXRef-Package-go-module-google.golang.org-protobuf-034ddf2eedc433f4","relatedSpdxElement":"SPDXRef-File-go.mod-ed9ca1d5b0eb32bc","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-github-action-actions-checkout-040b480a3cd7c109","relatedSpdxElement":"SPDXRef-File-.github-workflows-ci-docker.yml-ea396165396d2be5","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-go-module-connectrpc.com-grpcreflect-0607a7ce12e930ea","relatedSpdxElement":"SPDXRef-File-go.mod-ed9ca1d5b0eb32bc","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-go-module-github.com-kelseyhightower-envconfig-0bd6fc52edcedb2b","relatedSpdxElement":"SPDXRef-File-go.mod-ed9ca1d5b0eb32bc","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-go-module-github.com-fxamacker-cbor-v2-0c4ad880888c7041","relatedSpdxElement":"SPDXRef-File-go.mod-ed9ca1d5b0eb32bc","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-go-module-gorm.io-gorm-112aebe4cac84f78","relatedSpdxElement":"SPDXRef-File-go.mod-ed9ca1d5b0eb32bc","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-github-action-actions-setup-go-12ef75c423b2d5ba","relatedSpdxElement":"SPDXRef-File-.github-workflows-go-test.yml-b02b93ebd15c0679","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-github-action-goreleaser-goreleaser-action-16e4b287c8a6a495","relatedSpdxElement":"SPDXRef-File-.github-workflows-release.yml-fae49ca0df863ff7","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-go-module-go.opentelemetry.io-otel-trace-1a7116bbc5b2e2f6","relatedSpdxElement":"SPDXRef-File-go.mod-ed9ca1d5b0eb32bc","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-go-module-github.com-inconshreveable-mousetrap-1b77f177248f10dd","relatedSpdxElement":"SPDXRef-File-go.mod-ed9ca1d5b0eb32bc","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-go-module-github.com-prometheus-client-golang-1c56a1145d69433e","relatedSpdxElement":"SPDXRef-File-go.mod-ed9ca1d5b0eb32bc","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-github-action-peter-evans-dockerhub-description-1cac90329d89eedd","relatedSpdxElement":"SPDXRef-File-.github-workflows-publish.yml-e8a3da41f18c27dd","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-github-action-docker-setup-qemu-action-222c5d16a30dfb0a","relatedSpdxElement":"SPDXRef-File-.github-workflows-ci-docker.yml-ea396165396d2be5","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-go-module-github.com-mattn-go-isatty-230d051b1ae4540d","relatedSpdxElement":"SPDXRef-File-go.mod-ed9ca1d5b0eb32bc","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-go-module-connectrpc.com-grpchealth-2859747d99d0dafe","relatedSpdxElement":"SPDXRef-File-go.mod-ed9ca1d5b0eb32bc","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-go-module-google.golang.org-genproto-googleapis-rpc-2c279f3e9efc51c8","relatedSpdxElement":"SPDXRef-File-go.mod-ed9ca1d5b0eb32bc","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-go-module-github.com-prometheus-procfs-2f6cae1ee69fab2f","relatedSpdxElement":"SPDXRef-File-go.mod-ed9ca1d5b0eb32bc","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-go-module-go.opentelemetry.io-otel-exporters-stdout-stdouttrace-2ffafb3e3a8fcc81","relatedSpdxElement":"SPDXRef-File-go.mod-ed9ca1d5b0eb32bc","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-github-action-actions-attest-build-provenance-309475d72b03cc4b","relatedSpdxElement":"SPDXRef-File-.github-workflows-publish.yml-e8a3da41f18c27dd","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-go-module-github.com-utxorpc-go-codegen-31e6bb266ab8764d","relatedSpdxElement":"SPDXRef-File-go.mod-ed9ca1d5b0eb32bc","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-github-action-actions-setup-go-33187fd11dbf6911","relatedSpdxElement":"SPDXRef-File-.github-workflows-golangci-lint.yml-759d2c9575fcbd65","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-go-module-github.com-glebarez-go-sqlite-33f62283de18d51a","relatedSpdxElement":"SPDXRef-File-go.mod-ed9ca1d5b0eb32bc","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-go-module-modernc.org-memory-371b5e511f6c5fa9","relatedSpdxElement":"SPDXRef-File-go.mod-ed9ca1d5b0eb32bc","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-go-module-go.uber.org-goleak-39c377ccc1e68f17","relatedSpdxElement":"SPDXRef-File-go.mod-ed9ca1d5b0eb32bc","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-go-module-gopkg.in-yaml.v3-3d75d4e8a0a24e9f","relatedSpdxElement":"SPDXRef-File-go.mod-ed9ca1d5b0eb32bc","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-github-action-actions-checkout-417d27677147df93","relatedSpdxElement":"SPDXRef-File-.github-workflows-go-test.yml-b02b93ebd15c0679","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-go-module-github.com-dgraph-io-badger-v4-44f6313d7b0f67cc","relatedSpdxElement":"SPDXRef-File-go.mod-ed9ca1d5b0eb32bc","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-go-module-go.opentelemetry.io-otel-sdk-46a6ee9657a8a845","relatedSpdxElement":"SPDXRef-File-go.mod-ed9ca1d5b0eb32bc","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-go-module-golang.org-x-net-488782e67b864b63","relatedSpdxElement":"SPDXRef-File-go.mod-ed9ca1d5b0eb32bc","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-github-action-docker-build-push-action-48a53bf103ed8aeb","relatedSpdxElement":"SPDXRef-File-.github-workflows-ci-docker.yml-ea396165396d2be5","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-github-action-webiny-action-conventional-commits-4f486b3bef939d40","relatedSpdxElement":"SPDXRef-File-...workflows-conventional-commits.yml-ae930ef4ffbd84cd","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-go-module-github.com-prometheus-common-51fa8666faa94396","relatedSpdxElement":"SPDXRef-File-go.mod-ed9ca1d5b0eb32bc","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-github-action-actions-setup-go-55d8c2937decbac3","relatedSpdxElement":"SPDXRef-File-.github-workflows-release.yml-fae49ca0df863ff7","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-go-module-github.com-blinklabs-io-ouroboros-mock-5e5a5e2979e6c04b","relatedSpdxElement":"SPDXRef-File-go.mod-ed9ca1d5b0eb32bc","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-go-module-github.com-btcsuite-btcd-btcutil-6a2fd12cd1e15919","relatedSpdxElement":"SPDXRef-File-go.mod-ed9ca1d5b0eb32bc","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-go-module-filippo.io-edwards25519-700a4d975b30f010","relatedSpdxElement":"SPDXRef-File-go.mod-ed9ca1d5b0eb32bc","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-go-module-go.opentelemetry.io-otel-metric-71f9aac75bfac307","relatedSpdxElement":"SPDXRef-File-go.mod-ed9ca1d5b0eb32bc","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-github-action-docker-build-push-action-720b1a119cbc11ae","relatedSpdxElement":"SPDXRef-File-.github-workflows-publish.yml-e8a3da41f18c27dd","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-go-module-github.com-google-uuid-7363d9d6ade1b0b6","relatedSpdxElement":"SPDXRef-File-go.mod-ed9ca1d5b0eb32bc","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-go-module-github.com-prometheus-client-model-73fccfb2d0f6ef62","relatedSpdxElement":"SPDXRef-File-go.mod-ed9ca1d5b0eb32bc","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-go-module-gorm.io-plugin-opentelemetry-76fe10e200db7ca5","relatedSpdxElement":"SPDXRef-File-go.mod-ed9ca1d5b0eb32bc","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-github-action-docker-login-action-7b8d01a96b500a2c","relatedSpdxElement":"SPDXRef-File-.github-workflows-publish.yml-e8a3da41f18c27dd","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-go-module-google.golang.org-grpc-82b74d694adb0d58","relatedSpdxElement":"SPDXRef-File-go.mod-ed9ca1d5b0eb32bc","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-github-action-docker-setup-buildx-action-831d4ae7d14efcb8","relatedSpdxElement":"SPDXRef-File-.github-workflows-ci-docker.yml-ea396165396d2be5","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-github-action-andrewslotin-go-proxy-pull-action-839455beeaf4dd08","relatedSpdxElement":"SPDXRef-File-.github-workflows-release.yml-fae49ca0df863ff7","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-go-module-github.com-glebarez-sqlite-87ccc94dc6295c7c","relatedSpdxElement":"SPDXRef-File-go.mod-ed9ca1d5b0eb32bc","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-github-action-docker-metadata-action-8f591bbce96cfd92","relatedSpdxElement":"SPDXRef-File-.github-workflows-publish.yml-e8a3da41f18c27dd","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-go-module-github.com-jinzhu-inflection-8f982e8546028fe9","relatedSpdxElement":"SPDXRef-File-go.mod-ed9ca1d5b0eb32bc","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-go-module-github.com-blinklabs-io-gouroboros-917247bb64f79d22","relatedSpdxElement":"SPDXRef-File-go.mod-ed9ca1d5b0eb32bc","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-github-action-docker-metadata-action-94a4a6afdb35f321","relatedSpdxElement":"SPDXRef-File-.github-workflows-ci-docker.yml-ea396165396d2be5","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-github-action-actions-checkout-95d924d24cc8d0da","relatedSpdxElement":"SPDXRef-File-...workflows-conventional-commits.yml-ae930ef4ffbd84cd","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-go-module-github.com-dgraph-io-ristretto-v2-978feed7069f9467","relatedSpdxElement":"SPDXRef-File-go.mod-ed9ca1d5b0eb32bc","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-github-action-actions-checkout-97f6fc9047d27564","relatedSpdxElement":"SPDXRef-File-.github-workflows-golangci-lint.yml-759d2c9575fcbd65","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-go-module-github.com-go-logr-logr-9a89ea5d65f11b69","relatedSpdxElement":"SPDXRef-File-go.mod-ed9ca1d5b0eb32bc","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-go-module-github.com-grpc-ecosystem-grpc-gateway-v2-9d3bc90930b250fd","relatedSpdxElement":"SPDXRef-File-go.mod-ed9ca1d5b0eb32bc","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-go-module-golang.org-x-sys-9e383abed7ef4504","relatedSpdxElement":"SPDXRef-File-go.mod-ed9ca1d5b0eb32bc","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-go-module-github.com-cespare-xxhash-v2-a19e795f9b52f756","relatedSpdxElement":"SPDXRef-File-go.mod-ed9ca1d5b0eb32bc","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-github-action-andrewslotin-go-proxy-pull-action-a31bb37ff4120e21","relatedSpdxElement":"SPDXRef-File-.github-workflows-publish.yml-e8a3da41f18c27dd","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-github-action-golangci-golangci-lint-action-a8357a6bf29d7253","relatedSpdxElement":"SPDXRef-File-.github-workflows-golangci-lint.yml-759d2c9575fcbd65","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-go-module-go.opentelemetry.io-otel-exporters-otlp-otlptrace-otlptracehttp-a96154b51f2c3573","relatedSpdxElement":"SPDXRef-File-go.mod-ed9ca1d5b0eb32bc","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-github-action-docker-setup-qemu-action-ade3454960df0004","relatedSpdxElement":"SPDXRef-File-.github-workflows-publish.yml-e8a3da41f18c27dd","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-go-module-github.com-google-flatbuffers-b4501232f3549be4","relatedSpdxElement":"SPDXRef-File-go.mod-ed9ca1d5b0eb32bc","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-go-module-go.opentelemetry.io-otel-b99dac77e1ff4fde","relatedSpdxElement":"SPDXRef-File-go.mod-ed9ca1d5b0eb32bc","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-github-action-actions-setup-go-bceb423d5ee5ae8d","relatedSpdxElement":"SPDXRef-File-.github-workflows-publish.yml-e8a3da41f18c27dd","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-go-module-github.com-remyoudompheng-bigfft-bdf12799d15b7d1a","relatedSpdxElement":"SPDXRef-File-go.mod-ed9ca1d5b0eb32bc","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-go-module-github.com-jinzhu-now-bea9cd74804190ff","relatedSpdxElement":"SPDXRef-File-go.mod-ed9ca1d5b0eb32bc","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-go-module-github.com-spf13-pflag-c249a4f4468d5147","relatedSpdxElement":"SPDXRef-File-go.mod-ed9ca1d5b0eb32bc","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-go-module-golang.org-x-crypto-c59ea120abd52cd5","relatedSpdxElement":"SPDXRef-File-go.mod-ed9ca1d5b0eb32bc","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-go-module-modernc.org-libc-c5d901440f261626","relatedSpdxElement":"SPDXRef-File-go.mod-ed9ca1d5b0eb32bc","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-go-module-github.com-beorn7-perks-c5df2f39a644bda7","relatedSpdxElement":"SPDXRef-File-go.mod-ed9ca1d5b0eb32bc","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-go-module-modernc.org-sqlite-c88247944dbc5c12","relatedSpdxElement":"SPDXRef-File-go.mod-ed9ca1d5b0eb32bc","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-go-module-github.com-go-logr-stdr-ccf41d160ec08231","relatedSpdxElement":"SPDXRef-File-go.mod-ed9ca1d5b0eb32bc","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-go-module-github.com-x448-float16-d000429fdb2a0af9","relatedSpdxElement":"SPDXRef-File-go.mod-ed9ca1d5b0eb32bc","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-go-module-github.com-spf13-cobra-d2a3016e2115d707","relatedSpdxElement":"SPDXRef-File-go.mod-ed9ca1d5b0eb32bc","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-go-module-go.opentelemetry.io-auto-sdk-d396f1761e514e89","relatedSpdxElement":"SPDXRef-File-go.mod-ed9ca1d5b0eb32bc","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-github-action-actions-checkout-d3c4f1ad7cdcb634","relatedSpdxElement":"SPDXRef-File-.github-workflows-release.yml-fae49ca0df863ff7","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-go-module-modernc.org-mathutil-d7695f7998a5892a","relatedSpdxElement":"SPDXRef-File-go.mod-ed9ca1d5b0eb32bc","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-go-module-golang.org-x-text-d7eba279475d3481","relatedSpdxElement":"SPDXRef-File-go.mod-ed9ca1d5b0eb32bc","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-go-module-github.com-dustin-go-humanize-d955c23d6bf3c0ba","relatedSpdxElement":"SPDXRef-File-go.mod-ed9ca1d5b0eb32bc","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-go-module-connectrpc.com-connect-dc7f386fce693393","relatedSpdxElement":"SPDXRef-File-go.mod-ed9ca1d5b0eb32bc","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-go-module-github.com-jinzhu-copier-e28f0ddade3f63d3","relatedSpdxElement":"SPDXRef-File-go.mod-ed9ca1d5b0eb32bc","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-go-module-github.com-klauspost-compress-e30af096126b2c66","relatedSpdxElement":"SPDXRef-File-go.mod-ed9ca1d5b0eb32bc","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-go-module-go.opentelemetry.io-otel-exporters-otlp-otlptrace-e6b66610f1cc31f1","relatedSpdxElement":"SPDXRef-File-go.mod-ed9ca1d5b0eb32bc","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-go-module-github.com-munnerz-goautoneg-ecf7fd354c32aa83","relatedSpdxElement":"SPDXRef-File-go.mod-ed9ca1d5b0eb32bc","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-github-action-actions-github-script-f0f2609f1b858807","relatedSpdxElement":"SPDXRef-File-.github-workflows-publish.yml-e8a3da41f18c27dd","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-github-action-crazy-max-ghaction-import-gpg-f46d91e557bebb7c","relatedSpdxElement":"SPDXRef-File-.github-workflows-release.yml-fae49ca0df863ff7","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-github-action-actions-checkout-f4d17fe624e7e24e","relatedSpdxElement":"SPDXRef-File-.github-workflows-publish.yml-e8a3da41f18c27dd","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-go-module-github.com-cenkalti-backoff-v4-f52bfd7b6c19ac78","relatedSpdxElement":"SPDXRef-File-go.mod-ed9ca1d5b0eb32bc","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-go-module-go.opentelemetry.io-proto-otlp-f630284a9ad076a7","relatedSpdxElement":"SPDXRef-File-go.mod-ed9ca1d5b0eb32bc","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-go-module-google.golang.org-genproto-googleapis-api-fdf04067a89304ab","relatedSpdxElement":"SPDXRef-File-go.mod-ed9ca1d5b0eb32bc","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-github-action-docker-setup-buildx-action-fe4c7097088cacb8","relatedSpdxElement":"SPDXRef-File-.github-workflows-publish.yml-e8a3da41f18c27dd","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-Package-go-module-go.uber.org-automaxprocs-ffff65f46561d7cc","relatedSpdxElement":"SPDXRef-File-go.mod-ed9ca1d5b0eb32bc","relationshipType":"OTHER","comment":"evident-by: indicates the package's existence is evident by the given file"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-github-action-actions-attest-build-provenance-309475d72b03cc4b","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-github-action-actions-checkout-040b480a3cd7c109","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-github-action-actions-checkout-95d924d24cc8d0da","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-github-action-actions-checkout-417d27677147df93","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-github-action-actions-checkout-97f6fc9047d27564","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-github-action-actions-checkout-f4d17fe624e7e24e","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-github-action-actions-checkout-d3c4f1ad7cdcb634","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-github-action-actions-github-script-f0f2609f1b858807","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-github-action-actions-setup-go-12ef75c423b2d5ba","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-github-action-actions-setup-go-33187fd11dbf6911","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-github-action-actions-setup-go-bceb423d5ee5ae8d","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-github-action-actions-setup-go-55d8c2937decbac3","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-github-action-andrewslotin-go-proxy-pull-action-a31bb37ff4120e21","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-github-action-andrewslotin-go-proxy-pull-action-839455beeaf4dd08","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-go-module-connectrpc.com-connect-dc7f386fce693393","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-go-module-connectrpc.com-grpchealth-2859747d99d0dafe","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-go-module-connectrpc.com-grpcreflect-0607a7ce12e930ea","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-github-action-crazy-max-ghaction-import-gpg-f46d91e557bebb7c","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-github-action-docker-build-push-action-48a53bf103ed8aeb","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-github-action-docker-build-push-action-720b1a119cbc11ae","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-github-action-docker-login-action-7b8d01a96b500a2c","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-github-action-docker-metadata-action-94a4a6afdb35f321","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-github-action-docker-metadata-action-8f591bbce96cfd92","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-github-action-docker-setup-buildx-action-831d4ae7d14efcb8","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-github-action-docker-setup-buildx-action-fe4c7097088cacb8","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-github-action-docker-setup-qemu-action-222c5d16a30dfb0a","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-github-action-docker-setup-qemu-action-ade3454960df0004","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-go-module-filippo.io-edwards25519-700a4d975b30f010","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-go-module-github.com-beorn7-perks-c5df2f39a644bda7","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-go-module-github.com-blinklabs-io-gouroboros-917247bb64f79d22","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-go-module-github.com-blinklabs-io-ouroboros-mock-5e5a5e2979e6c04b","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-go-module-github.com-btcsuite-btcd-btcutil-6a2fd12cd1e15919","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-go-module-github.com-cenkalti-backoff-v4-f52bfd7b6c19ac78","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-go-module-github.com-cespare-xxhash-v2-a19e795f9b52f756","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-go-module-github.com-dgraph-io-badger-v4-44f6313d7b0f67cc","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-go-module-github.com-dgraph-io-ristretto-v2-978feed7069f9467","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-go-module-github.com-dustin-go-humanize-d955c23d6bf3c0ba","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-go-module-github.com-fxamacker-cbor-v2-0c4ad880888c7041","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-go-module-github.com-glebarez-go-sqlite-33f62283de18d51a","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-go-module-github.com-glebarez-sqlite-87ccc94dc6295c7c","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-go-module-github.com-go-logr-logr-9a89ea5d65f11b69","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-go-module-github.com-go-logr-stdr-ccf41d160ec08231","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-go-module-github.com-google-flatbuffers-b4501232f3549be4","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-go-module-github.com-google-uuid-7363d9d6ade1b0b6","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-go-module-github.com-grpc-ecosystem-grpc-gateway-v2-9d3bc90930b250fd","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-go-module-github.com-inconshreveable-mousetrap-1b77f177248f10dd","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-go-module-github.com-jinzhu-copier-e28f0ddade3f63d3","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-go-module-github.com-jinzhu-inflection-8f982e8546028fe9","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-go-module-github.com-jinzhu-now-bea9cd74804190ff","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-go-module-github.com-kelseyhightower-envconfig-0bd6fc52edcedb2b","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-go-module-github.com-klauspost-compress-e30af096126b2c66","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-go-module-github.com-mattn-go-isatty-230d051b1ae4540d","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-go-module-github.com-munnerz-goautoneg-ecf7fd354c32aa83","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-go-module-github.com-prometheus-client-golang-1c56a1145d69433e","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-go-module-github.com-prometheus-client-model-73fccfb2d0f6ef62","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-go-module-github.com-prometheus-common-51fa8666faa94396","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-go-module-github.com-prometheus-procfs-2f6cae1ee69fab2f","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-go-module-github.com-remyoudompheng-bigfft-bdf12799d15b7d1a","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-go-module-github.com-spf13-cobra-d2a3016e2115d707","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-go-module-github.com-spf13-pflag-c249a4f4468d5147","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-go-module-github.com-utxorpc-go-codegen-31e6bb266ab8764d","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-go-module-github.com-x448-float16-d000429fdb2a0af9","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-go-module-go.opentelemetry.io-auto-sdk-d396f1761e514e89","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-go-module-go.opentelemetry.io-otel-b99dac77e1ff4fde","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-go-module-go.opentelemetry.io-otel-exporters-otlp-otlptrace-e6b66610f1cc31f1","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-go-module-go.opentelemetry.io-otel-exporters-otlp-otlptrace-otlptracehttp-a96154b51f2c3573","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-go-module-go.opentelemetry.io-otel-exporters-stdout-stdouttrace-2ffafb3e3a8fcc81","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-go-module-go.opentelemetry.io-otel-metric-71f9aac75bfac307","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-go-module-go.opentelemetry.io-otel-sdk-46a6ee9657a8a845","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-go-module-go.opentelemetry.io-otel-trace-1a7116bbc5b2e2f6","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-go-module-go.opentelemetry.io-proto-otlp-f630284a9ad076a7","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-go-module-go.uber.org-automaxprocs-ffff65f46561d7cc","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-go-module-go.uber.org-goleak-39c377ccc1e68f17","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-go-module-golang.org-x-crypto-c59ea120abd52cd5","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-go-module-golang.org-x-net-488782e67b864b63","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-go-module-golang.org-x-sys-9e383abed7ef4504","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-go-module-golang.org-x-text-d7eba279475d3481","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-github-action-golangci-golangci-lint-action-a8357a6bf29d7253","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-go-module-google.golang.org-genproto-googleapis-api-fdf04067a89304ab","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-go-module-google.golang.org-genproto-googleapis-rpc-2c279f3e9efc51c8","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-go-module-google.golang.org-grpc-82b74d694adb0d58","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-go-module-google.golang.org-protobuf-034ddf2eedc433f4","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-go-module-gopkg.in-yaml.v3-3d75d4e8a0a24e9f","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-github-action-goreleaser-goreleaser-action-16e4b287c8a6a495","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-go-module-gorm.io-gorm-112aebe4cac84f78","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-go-module-gorm.io-plugin-opentelemetry-76fe10e200db7ca5","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-go-module-modernc.org-libc-c5d901440f261626","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-go-module-modernc.org-mathutil-d7695f7998a5892a","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-go-module-modernc.org-memory-371b5e511f6c5fa9","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-go-module-modernc.org-sqlite-c88247944dbc5c12","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-github-action-peter-evans-dockerhub-description-1cac90329d89eedd","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relatedSpdxElement":"SPDXRef-Package-github-action-webiny-action-conventional-commits-4f486b3bef939d40","relationshipType":"CONTAINS"},{"spdxElementId":"SPDXRef-DOCUMENT","relatedSpdxElement":"SPDXRef-DocumentRoot-File-dingo-0.5.0-SNAPSHOT-d9431e4.tar.gz","relationshipType":"DESCRIBES"}]}