From f36f832e8ecfb41a95208df211faf45c0e8aa3f8 Mon Sep 17 00:00:00 2001 From: Noah Santschi-Cooney Date: Mon, 19 May 2025 15:56:26 +0100 Subject: [PATCH 1/5] feat: implement OCI image analysis --- .eslintrc.json | 4 +- package-lock.json | 6 +- package.json | 2 +- src/analysis.js | 55 +- src/index.js | 35 +- src/oci_image/images.js | 316 + src/oci_image/platform.js | 154 + src/oci_image/utils.js | 484 + src/sbom.js | 10 +- test/providers/oci_images.test.js | 23 + .../tst_manifests/image/httpd:2.4.49.json | 55444 ++++++++++++++++ .../image/httpd:2.4.49^^amd64.json | 55444 ++++++++++++++++ ...b693a54ae9ad5e6317fcdbb7a2d9b8c3b1364.json | 55444 ++++++++++++++++ 13 files changed, 167404 insertions(+), 17 deletions(-) create mode 100644 src/oci_image/images.js create mode 100644 src/oci_image/platform.js create mode 100644 src/oci_image/utils.js create mode 100644 test/providers/oci_images.test.js create mode 100644 test/providers/tst_manifests/image/httpd:2.4.49.json create mode 100644 test/providers/tst_manifests/image/httpd:2.4.49^^amd64.json create mode 100644 test/providers/tst_manifests/image/httpd@sha256:4b5cb7697fea2aa6d398504c381b693a54ae9ad5e6317fcdbb7a2d9b8c3b1364.json diff --git a/.eslintrc.json b/.eslintrc.json index 87dc3a1..d88c846 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -18,11 +18,11 @@ ], "rules": { "curly": "warn", - "eqeqeq": "warn", + "eqeqeq": ["warn", "always", {"null": "never"}], "no-throw-literal": "warn", "sort-imports": "warn" }, "ignorePatterns": [ "integration" ] -} \ No newline at end of file +} diff --git a/package-lock.json b/package-lock.json index c0444b6..61fb7af 100644 --- a/package-lock.json +++ b/package-lock.json @@ -16,7 +16,7 @@ "help": "^3.0.2", "https-proxy-agent": "^7.0.6", "node-fetch": "^2.6.7", - "packageurl-js": "^1.0.2", + "packageurl-js": "^1.2.1", "yargs": "^17.7.2" }, "bin": { @@ -3098,7 +3098,9 @@ } }, "node_modules/packageurl-js": { - "version": "1.0.2", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/packageurl-js/-/packageurl-js-1.2.1.tgz", + "integrity": "sha512-cZ6/MzuXaoFd16/k0WnwtI298UCaDHe/XlSh85SeOKbGZ1hq0xvNbx3ILyCMyk7uFQxl6scF3Aucj6/EO9NwcA==", "license": "MIT" }, "node_modules/parent-module": { diff --git a/package.json b/package.json index f11bec0..11eb4e2 100644 --- a/package.json +++ b/package.json @@ -51,7 +51,7 @@ "help": "^3.0.2", "https-proxy-agent": "^7.0.6", "node-fetch": "^2.6.7", - "packageurl-js": "^1.0.2", + "packageurl-js": "^1.2.1", "yargs": "^17.7.2" }, "devDependencies": { diff --git a/src/analysis.js b/src/analysis.js index 747efff..cd004ed 100644 --- a/src/analysis.js +++ b/src/analysis.js @@ -1,10 +1,11 @@ import fs from "node:fs"; import path from "node:path"; -import {EOL} from "os"; -import {RegexNotToBeLogged, getCustom} from "./tools.js"; +import { EOL } from "os"; +import { RegexNotToBeLogged, getCustom } from "./tools.js"; import { HttpsProxyAgent } from "https-proxy-agent"; +import { generateImageSBOM, parseImageRef } from "./oci_image/utils.js"; -export default { requestComponent, requestStack, validateToken } +export default { requestComponent, requestStack, requestImages, validateToken } const rhdaTokenHeader = "rhda-token"; const rhdaSourceHeader = "rhda-source" @@ -133,6 +134,54 @@ async function requestComponent(provider, manifest, url, opts = {}) { return Promise.resolve(result) } +/** + * + * @param {Array} imageRefs + * @param {string} url + * @param {{}} [opts={}] - optional various options to pass along the application + * @returns {Promise} + */ +async function requestImages(imageRefs, url, html = false, opts = {}) { + const imageSboms = {} + for (const image of imageRefs) { + const parsedImageRef = parseImageRef(image) + imageSboms[parsedImageRef.getPackageURL().toString()] = generateImageSBOM(parsedImageRef) + } + + const resp = await fetch(`${url}/api/v4/batch-analysis`, { + method: 'POST', + headers: { + 'Accept': html ? 'text/html' : 'application/json', + 'Content-Type': 'application/vnd.cyclonedx+json', + ...getTokenHeaders(opts) + }, + body: JSON.stringify(imageSboms), + }) + + console.error(JSON.stringify(imageSboms, '', '\t')) + + if(resp.status === 200) { + let result; + if (!html) { + result = await resp.json() + } else { + result = await resp.text() + } + if (process.env["EXHORT_DEBUG"] === "true") { + let exRequestId = resp.headers.get("ex-request-id"); + if (exRequestId) { + console.log("Unique Identifier associated with this request - ex-request-id=" + exRequestId) + } + console.log("Response body received from exhort server : " + EOL + EOL) + console.log(JSON.stringify(result, null, 4)) + console.log("Ending time of sending component analysis request to exhort server= " + new Date()) + } + return result + } else { + throw new Error(`Got error response from exhort backend - http return code : ${resp.status}, ex-request-id: ${resp.headers.get("ex-request-id")} error message => ${await resp.text()}`) + } +} + /** * * @param url the backend url to send the request to diff --git a/src/index.js b/src/index.js index 5ebdebf..0f74ac9 100644 --- a/src/index.js +++ b/src/index.js @@ -7,7 +7,7 @@ import { getCustom } from "./tools.js"; import.meta.dirname import * as url from 'url'; -export default { componentAnalysis, stackAnalysis, validateToken } +export default { componentAnalysis, stackAnalysis, imageAnalysis, validateToken } export const exhortDevDefaultUrl = 'https://exhort.stage.devshift.net'; @@ -148,6 +148,39 @@ async function componentAnalysis(manifest, opts = {}) { return await analysis.requestComponent(provider, manifest, theUrl, opts) // throws error request sending failed } +/** + * @overload + * @param {Array} imageRefs + * @param {true} html + * @param {object} [opts={}] + * @returns {Promise} + * @throws {Error} + */ + +/** + * @overload + * @param {Array} imageRefs + * @param {false} html + * @param {object} [opts={}] + * @returns {Promise} + * @throws {Error} + */ + +/** + * Get image analysis report for a set of OCI image references. + * @overload + * @param {Array} imageRefs - OCI image references + * @param {boolean} [html=false] - true will return a html string, false will return AnalysisReport + * @param {{}} [opts={}] - optional various options to pass along the application + * @returns {Promise} + * @throws {Error} if manifest inaccessible, no matching provider, failed to get create content, + * or backend request failed + */ +async function imageAnalysis(imageRefs, html = false, opts = {}) { + theUrl = selectExhortBackend(opts) + return await analysis.requestImages(imageRefs, theUrl, opts) +} + /** * Validates the Exhort token. * @param {object} [opts={}] - Optional parameters, potentially including token override. diff --git a/src/oci_image/images.js b/src/oci_image/images.js new file mode 100644 index 0000000..eb1295c --- /dev/null +++ b/src/oci_image/images.js @@ -0,0 +1,316 @@ +import { PackageURL } from "packageurl-js"; +import { Platform } from "./platform.js"; +import { getImageDigests, getImagePlatform } from "./utils.js"; + +/** +* Helper class for parsing docker repository/image names: +* +* - If the first part before the slash contains a "." or a ":" it is considered to be a registry URL +* - A last part starting with a ":" is considered to be a tag +* - The rest is considered the repository name (which might be separated via slashes) +* +* Example of valid names: +* +* - consol/tomcat-8.0 +* - consol/tomcat-8.0:8.0.9 +* - docker.consol.de:5000/tomcat-8.0 +* - docker.consol.de:5000/jolokia/tomcat-8.0:8.0.9 +*/ +export class Image { + static nameComponentRegexp = '[a-z0-9]+(?:(?:(?:[._]|__|[-]*)[a-z0-9]+)+)?'; + static domainComponentRegexp = '(?:[a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9-]*[a-zA-Z0-9])'; + static NAME_COMP_REGEXP = new RegExp(this.nameComponentRegexp); + static IMAGE_NAME_REGEXP = new RegExp(this.nameComponentRegexp + '(?:(?:/' + this.nameComponentRegexp + ')+)?'); + static DOMAIN_REGEXP = new RegExp('^' + this.domainComponentRegexp + '(?:\\.' + this.domainComponentRegexp + ')*(?::[0-9]+)?$'); + static TAG_REGEXP = new RegExp('^[\\w][\\w.-]{0,127}$'); + static DIGEST_REGEXP = new RegExp('^sha256:[a-z0-9]{32,}$'); + + /** + * + * @param {string} fullName + * @param {string} [givenTag] + */ + constructor(fullName, givenTag) { + this.repository = ''; + this.registry = ''; + this.tag = ''; + this.digest = ''; + this.user = ''; + + if (fullName == null) { + throw new Error('Image name must not be null'); + } + + // Set digest to null as default + this.digest = null; + + // Check if digest is part of fullName + if (fullName.includes('@sha256')) { + const digestParts = fullName.split('@'); + this.digest = digestParts[1]; + fullName = digestParts[0]; + } + + // Check for tag + const tagPattern = /^(.+?)(?::([^:/]+))?$/; + const matcher = fullName.match(tagPattern); + if (!matcher) { + throw new Error(fullName + ' is not a proper image name ([registry/][repo][:port]'); + } + + this.tag = givenTag != null ? givenTag : matcher[2]; + const rest = matcher[1]; + + this.parseComponentsBeforeTag(rest); + + if (this.tag == null && this.digest == null) { + this.tag = 'latest'; + } + + this.doValidate(); + } + + static validate(image) { + new Image(image); + } + + setDigest(digest) { + if (this.digest == null) { + this.digest = digest; + } + } + + hasRegistry() { + return this.registry != null && this.registry.length > 0; + } + + /** + * @param {string[]} parts + * @returns {string} + */ + joinTail(parts) { + let builder = ''; + for (let i = 1; i < parts.length; i++) { + builder += parts[i]; + if (i < parts.length - 1) { + builder += '/'; + } + } + return builder; + } + + /** + * @param {string} part + * @returns {boolean} + */ + isRegistry(part) { + return part.includes('.') || part.includes(':'); + } + + /** + * @param {string} [optionalRegistry] + * @returns {string} + */ + getNameWithoutTag(optionalRegistry) { + let ret = ''; + if (this.registry != null || optionalRegistry != null) { + ret += (this.registry != null ? this.registry : optionalRegistry) + '/'; + } + ret += this.repository; + return ret; + } + + /** + * @param {string} [optionalRegistry] + * @returns {string} + */ + getFullName(optionalRegistry) { + let fullName = this.getNameWithoutTag(optionalRegistry); + if (this.tag != null) { + fullName = fullName + ':' + this.tag; + } + if (this.digest != null) { + fullName = fullName + '@' + this.digest; + } + return fullName; + } + + /** + * @returns {string} + */ + getUser() { + return this.user; + } + + /** + * @returns {string} + */ + getSimpleName() { + const prefix = this.user + '/'; + return this.repository.startsWith(prefix) ? this.repository.substring(prefix.length) : this.repository; + } + + /** + * @param {string} optionalRepository + * @returns {string} + */ + getNameWithOptionalRepository(optionalRepository) { + if (optionalRepository != null) { + const simpleName = this.getFullName(); + const simpleNameParts = simpleName.split('/'); + if (simpleNameParts.length > 0) { + return optionalRepository + '/' + simpleNameParts[simpleNameParts.length - 1]; + } + } + return this.getFullName(); + } + + doValidate() { + const errors = []; + const image = this.user != null ? this.repository.substring(this.user.length + 1) : this.repository; + + const checks = [ + ['registry', Image.DOMAIN_REGEXP, this.registry], + ['image', Image.IMAGE_NAME_REGEXP, image], + ['user', Image.NAME_COMP_REGEXP, this.user], + ['tag', Image.TAG_REGEXP, this.tag], + ['digest', Image.DIGEST_REGEXP, this.digest] + ]; + + for (const [name, pattern, value] of checks) { + if (value != null && !pattern.test(value)) { + errors.push(`${name} part '${value}' doesn't match allowed pattern '${pattern.source}'`); + } + } + + if (errors.length > 0) { + const message = `Given Docker name '${this.getFullName()}' is invalid:\n` + + errors.map(error => ` * ${error}`).join('\n') + + '\nSee http://bit.ly/docker_image_fmt for more details'; + throw new Error(message); + } + } + + /** + * @param {string} rest + */ + parseComponentsBeforeTag(rest) { + const parts = rest.split(/\s*\/\s*/); + if (parts.length === 1) { + this.registry = null; + this.user = null; + this.repository = parts[0]; + } else if (parts.length >= 2) { + if (this.isRegistry(parts[0])) { + this.registry = parts[0]; + if (parts.length > 2) { + this.user = parts[1]; + this.repository = this.joinTail(parts); + } else { + this.user = null; + this.repository = parts[1]; + } + } else { + this.registry = null; + this.user = parts[0]; + this.repository = rest; + } + } + } +} + +export class ImageRef { + static OCI_TYPE = "oci"; + static REPOSITORY_QUALIFIER = "repository_url"; + static TAG_QUALIFIER = "tag"; + static ARCH_QUALIFIER = "arch"; + static OS_QUALIFIER = "os"; + static VARIANT_QUALIFIER = "variant"; + + /** @type {Image} */ + image; + /** @type {Platform} */ + platform; + + /** + * @param {string} image + * @param {string} [platform] + */ + constructor(image, platform) { + this.image = new Image(image); + + if (platform != null) { + this.platform = Platform.fromString(platform); + } + + this.checkImageDigest(); + } + + /** + * @private + */ + checkImageDigest() { + if (this.image.digest == null) { + try { + const digests = getImageDigests(this); + if (digests.size === 0) { + throw new Error("Failed to get any image digest"); + } + if (digests.size === 1 && digests[Platform.EMPTY.toString()]) { + this.image.digest = digests[Platform.EMPTY.toString()]; + } else { + if (this.platform == null) { + this.platform = getImagePlatform(); + } + if (this.platform == null) { + throw new Error(`Failed to get image platform for image digest`); + } + if (!digests[this.platform.toString()]) { + throw new Error(`Failed to get image digest for platform ${this.platform}`); + } + this.image.digest = digests[this.platform.toString()]; + } + } catch (ex) { + throw new Error("Failed to get image digest", { cause: ex }); + } + } + } + + /** + * @returns {PackageURL} + * @throws {Error} + * @see https://github.com/package-url/purl-spec/blob/master/PURL-TYPES.rst#oci + */ + getPackageURL() { + /** @type {Object.} */ + const qualifiers = {}; + const repositoryUrl = this.image.getNameWithoutTag(); + const simpleName = this.image.getSimpleName(); + + if (repositoryUrl != null && repositoryUrl.toLowerCase() !== simpleName.toLowerCase()) { + qualifiers[ImageRef.REPOSITORY_QUALIFIER, repositoryUrl.toLowerCase()]; + } + + if (this.platform != null) { + qualifiers[ImageRef.ARCH_QUALIFIER, this.platform.architecture.toLowerCase()]; + qualifiers[ImageRef.OS_QUALIFIER, this.platform.os.toLowerCase()]; + if (this.platform.variant != null) { + qualifiers[ImageRef.VARIANT_QUALIFIER, this.platform.variant.toLowerCase()]; + } + } + + const tag = this.image.tag; + if (tag != null) { + qualifiers[ImageRef.TAG_QUALIFIER, tag]; + } + + return new PackageURL( + ImageRef.OCI_TYPE, + null, + this.image.getSimpleName().toLowerCase(), + this.image.digest.toLowerCase(), + qualifiers, + null + ); + } +} diff --git a/src/oci_image/platform.js b/src/oci_image/platform.js new file mode 100644 index 0000000..7e006d4 --- /dev/null +++ b/src/oci_image/platform.js @@ -0,0 +1,154 @@ +/** +* Class representing a Platform with OS, architecture, and variant information +*/ +export class Platform { + static EMPTY = new Platform(null, null, null); + + // $GOOS and $GOARCH + // https://github.com/docker-library/bashbrew/blob/v0.1.2/architecture/oci-platform.go#L14-L27 + static SUPPORTED_PLATFORMS = [ + new Platform('linux', 'amd64', null), + new Platform('linux', 'arm', 'v5'), + new Platform('linux', 'arm', 'v6'), + new Platform('linux', 'arm', 'v7'), + new Platform('linux', 'arm64', 'v8'), + new Platform('linux', '386', null), + new Platform('linux', 'mips64le', null), + new Platform('linux', 'ppc64le', null), + new Platform('linux', 'riscv64', null), + new Platform('linux', 's390x', null), + new Platform('windows', 'arm64', null) + ]; + + /** + * Create a Platform instance + * @param {string|null} os - Operating system + * @param {string|null} architecture - Architecture + * @param {string|null} [variant] - Architecture variant + * @private + */ + constructor(os, architecture, variant) { + this.os = os; + this.architecture = architecture; + this.variant = variant; + } + + /** + * Get the variant for the given OS and architecture + * @param {string} os - Operating system + * @param {string} arch - Architecture + * @returns {string|null} - Variant or null + */ + static getVariant(os, arch) { + if (os === 'linux' && arch === 'arm64') { // in case variant "v8" is not specified + return 'v8'; + } + return null; + } + + /** + * Check if a variant is required for the given OS and architecture + * @param {string} os - Operating system + * @param {string} arch - Architecture + * @returns {boolean} - True if variant is required + */ + static isVariantRequired(os, arch) { + return os === 'linux' && arch === 'arm'; + } + + /** + * Create a platform from a string + * @param {string} platform - Platform string in format "os/arch" or "os/arch/variant" + * @returns {Platform} - Platform instance + * @throws {Error} - If platform string is invalid or not supported + */ + static fromString(platform) { + if (platform == null) { + throw new Error(`Invalid platform: ${platform}`); + } + + const parts = platform.split('/'); + let os, arch, variant; + + if (parts.length === 1) { + os = 'linux'; + arch = parts[0]; + } else if (parts.length === 2) { + os = parts[0]; + arch = parts[1]; + variant = Platform.getVariant(os, arch); + } else if (parts.length === 3) { + os = parts[0]; + arch = parts[1]; + variant = parts[2]; + } else { + throw new Error(`Invalid platform: ${platform}`); + } + + const platformObj = new Platform(os, arch, variant); + + if (!Platform.isSupported(platformObj)) { + throw new Error(`Image platform is not supported: ${platformObj.toString()}`); + } + + return platformObj; + } + + /** + * Create a platform from individual components + * @param {string|null} os - Operating system + * @param {string} arch - Architecture + * @param {string|null} variant - Architecture variant + * @returns {Platform} - Platform instance + * @throws {Error} - If platform is invalid or not supported + */ + static fromComponents(os, arch, variant) { + if (arch == null) { + throw new Error(`Invalid platform arch: ${arch}`); + } + + // Default to linux if OS is not specified + if (os == null) { + os = 'linux'; + } + + // Get default variant if not specified + if (variant == null) { + variant = Platform.getVariant(os, arch); + } + + const platformObj = new Platform(os, arch, variant); + + if (!Platform.isSupported(platformObj)) { + throw new Error(`Image platform is not supported: ${os}/${arch}/${variant}`); + } + + return platformObj; + } + + /** + * Check if a platform is supported + * @param {Platform} platform - Platform to check + * @returns {boolean} - True if platform is supported + */ + static isSupported(platform) { + return Platform.SUPPORTED_PLATFORMS.some(p => + p.os === platform.os && + p.architecture === platform.architecture && + // eslint-disable-next-line eqeqeq + p.variant == platform.variant + ); + } + + /** + * Convert a platform to a string + * @returns {string} - String representation of platform + */ + toString() { + if (this.variant == null) { + return `${this.os}/${this.architecture}`; + } else { + return `${this.os}/${this.architecture}/${this.variant}`; + } + } +} diff --git a/src/oci_image/utils.js b/src/oci_image/utils.js new file mode 100644 index 0000000..f441419 --- /dev/null +++ b/src/oci_image/utils.js @@ -0,0 +1,484 @@ +import { execFileSync } from 'child_process'; +import { getCustomPath } from '../tools.js'; +import { Platform } from './platform.js'; +import { delimiter, sep } from 'path'; +import { ImageRef } from './images.js'; + +// Constants +const EXHORT_SYFT_CONFIG_PATH = "EXHORT_SYFT_CONFIG_PATH"; +const EXHORT_SYFT_IMAGE_SOURCE = "EXHORT_SYFT_IMAGE_SOURCE"; +const EXHORT_IMAGE_PLATFORM = "EXHORT_IMAGE_PLATFORM"; +const EXHORT_IMAGE_OS = "EXHORT_IMAGE_OS"; +const EXHORT_IMAGE_ARCH = "EXHORT_IMAGE_ARCH"; +const EXHORT_IMAGE_VARIANT = "EXHORT_IMAGE_VARIANT"; +const EXHORT_SKOPEO_CONFIG_PATH = "EXHORT_SKOPEO_CONFIG_PATH"; +const EXHORT_IMAGE_SERVICE_ENDPOINT = "EXHORT_IMAGE_SERVICE_ENDPOINT"; +const MEDIA_TYPE_DOCKER2_MANIFEST = "application/vnd.docker.distribution.manifest.v2+json"; +const MEDIA_TYPE_DOCKER2_MANIFEST_LIST = "application/vnd.docker.distribution.manifest.list.v2+json"; +const MEDIA_TYPE_OCI1_MANIFEST = "application/vnd.oci.image.manifest.v1+json"; +const MEDIA_TYPE_OCI1_MANIFEST_LIST = "application/vnd.oci.image.index.v1+json"; + +const archMapping = { + "amd64": "amd64", + "x86_64": "amd64", + "armv5tl": "arm", + "armv5tel": "arm", + "armv5tejl": "arm", + "armv6l": "arm", + "armv7l": "arm", + "armv7ml": "arm", + "arm64": "arm64", + "aarch64": "arm64", + "i386": "386", + "i486": "386", + "i586": "386", + "i686": "386", + "mips64le": "mips64le", + "ppc64le": "ppc64le", + "riscv64": "riscv64", + "s390x": "s390x" +}; + +const variantMapping = { + "armv5tl": "v5", + "armv5tel": "v5", + "armv5tejl": "v5", + "armv6l": "v6", + "armv7l": "v7", + "armv7ml": "v7", + "arm64": "v8", + "aarch64": "v8" +}; + +/** + * + * @param {import('./images').ImageRef} imageRef + * @returns {{}} + */ +export function generateImageSBOM(imageRef) { + const output = execSyft(imageRef); + + const node = JSON.parse(output); + if (node['metadata'] != null) { + const metadata = node['metadata']; + if (metadata['component'] != null && typeof metadata['component'] === 'object') { + const imagePurl = imageRef.getPackageURL().toString() + metadata['component']['purl'] = imagePurl + return node + } + } +} + +/** + * + * @param {string} image + * @returns {ImageRef} + */ +export function parseImageRef(image) { + const parts = image.split('^^') + if (parts[0].trim() === image) { + return new ImageRef(image, null) + } else if (parts.length === 2) { + return new ImageRef(parts[0], parts[1]) + } else { + throw new Error(`Failed to parse OCI image ref "${image}", should be in the format "image^^architecture" or "image"`) + } +} + +/** +* Executes Syft to generate SBOM +* @param {import('./images').ImageRef} imageRef - The image reference +*/ +function execSyft(imageRef) { + const syft = getCustomPath("syft"); + const docker = getCustomPath("docker"); + const podman = getCustomPath("podman"); + + const syftConfigPath = process.env[EXHORT_SYFT_CONFIG_PATH] ?? ''; + const imageSource = process.env[EXHORT_SYFT_IMAGE_SOURCE] ?? ''; + // Confirm image source exists, this will throw an error if not + getImageSource(imageSource); + + const dockerPath = + docker?.includes(sep) + ? docker.substring(0, docker.lastIndexOf(sep) + 1) + : ""; + const podmanPath = + podman?.includes(sep) + ? podman.substring(0, podman.lastIndexOf(sep) + 1) + : ""; + const envs = getSyftEnvs(dockerPath, podmanPath); + + const scheme = imageRef.image.getFullName() + + const args = [ + scheme, + "-s", + "all-layers", + "-o", + "cyclonedx-json@1.5", + "-q", + ...(syftConfigPath ? [ + "-c", + syftConfigPath, + ] : []), + ...(imageSource ? [ + "--from", + imageSource, + ] : []) + ]; + + return execFileSync(syft, args, { + env: { ...process.env, ...envs }, + }); +} + +/** +* Gets the environment variables for Syft +* @param {string} dockerPath - The Docker path +* @param {string} podmanPath - The Podman path +* @returns {Array} - The environment variables +*/ +function getSyftEnvs(dockerPath, podmanPath) { + let path = null; + if (dockerPath && podmanPath) { + path = `${dockerPath}${File.pathSeparator}${podmanPath}`; + } else if (dockerPath) { + path = dockerPath; + } else if (podmanPath) { + path = podmanPath; + } + + const prependPath = () => { + const systemPath = process.env["PATH"]; + if (systemPath) { + return `${systemPath}${delimiter}${path}`; + } else { + return `${path}`; + } + } + return path ? { 'PATH': prependPath() } : {}; +} + +/** +* Gets the platform information for an image +* @returns {Platform|null} - The platform information or null +*/ +export function getImagePlatform() { + const platform = process.env[EXHORT_IMAGE_PLATFORM]; + if (platform) { + return Platform.fromString(platform) + } + + const imageSource = process.env[EXHORT_SYFT_IMAGE_SOURCE] ?? ''; + const source = getImageSource(imageSource); + + let os = process.env[EXHORT_IMAGE_OS]; + if (!os) { + os = source.getOs(); + } + let arch = process.env[EXHORT_IMAGE_ARCH]; + if (!arch) { + arch = source.getArch(); + } + if (os && arch) { + if (!Platform.isVariantRequired(os, arch)) { + return Platform.fromComponents(os, arch, null); + } + + let variant = process.env[EXHORT_IMAGE_VARIANT]; + if (!variant) { + variant = source.getVariant(); + } + if (variant) { + return Platform.fromComponents(os, arch, variant); + } + } + + return null; +} + +/** +* Gets information about a host from a container engine +* @param {string} engine - The container engine name +* @param {string} info - The information to retrieve +* @returns {string} - The host information +*/ +function hostInfo(engine, info) { + const exec = getCustomPath(engine); + + const output = execFileSync(exec, ["info"]).toString(); + + const lines = output.split("\n"); + for (const line of lines) { + const trimmedLine = line.trimStart(); + if (trimmedLine.startsWith(`${info}:`)) { + return line.trim().substring(info.length + 1).trim(); + } + } + return ""; +} + +/** + * Gets the OS information from Docker + * @returns {string} - The OS information + */ +function dockerGetOs() { + return hostInfo("docker", "OSType"); +} + +/** + * Gets the architecture information from Docker + * @returns {string} - The architecture information + */ +function dockerGetArch() { + let arch = hostInfo("docker", "Architecture"); + arch = archMapping[arch]; + return arch || ""; +} + +/** + * Gets the variant information from Docker + * @returns {string} - The variant information + */ +function dockerGetVariant() { + let variant = hostInfo("docker", "Architecture"); + variant = variantMapping[variant]; + return variant || ""; +} + +/** + * Gets the OS information from Podman + * @returns {string} - The OS information + */ +function podmanGetOs() { + return hostInfo("podman", "os"); +} + +/** + * Gets the architecture information from Podman + * @returns {string} - The architecture information + */ +function podmanGetArch() { + return hostInfo("podman", "arch"); +} + +/** + * Gets the variant information from Podman + * @returns {string} - The variant information + */ +function podmanGetVariant() { + return hostInfo("podman", "variant"); +} + +/** + * Gets information from Docker or Podman + * @param {function(): string} dockerSupplier - function to get information from Docker + * @param {function(): string} podmanSupplier - function to get information from Podman + * @returns {string} - The information + */ +function dockerPodmanInfo(dockerSupplier, podmanSupplier) { + return dockerSupplier() ?? podmanSupplier(); +} + +/** + * Gets the digests for an image + * @param {import('./images').ImageRef} imageRef - The image reference + * @returns {Object.} - The image digests + * @throws {Error} If the image info is invalid + */ +export function getImageDigests(imageRef) { + const output = execSkopeoInspect(imageRef, true); + + const node = JSON.parse(output); + if (node.mediaType) { + const mediaType = node.mediaType; + if (typeof mediaType === 'string') { + switch (mediaType) { + case MEDIA_TYPE_OCI1_MANIFEST: + case MEDIA_TYPE_DOCKER2_MANIFEST: + return getSingleImageDigest(imageRef); + + case MEDIA_TYPE_OCI1_MANIFEST_LIST: + case MEDIA_TYPE_DOCKER2_MANIFEST_LIST: + return getMultiImageDigests(node); + } + } + } + + throw new Error(`The image info is invalid: ${output}`); +} + +/** + * Gets digests for multiple images + * @param {Object} node - The JSON node + * @returns {Object.} - The image digests + */ +function getMultiImageDigests(node) { + if (node.manifests && Array.isArray(node.manifests)) { + return node.manifests + .filter(filterMediaType) + .filter(filterDigest) + .filter(filterPlatform) + .reduce((result, manifestNode) => { + const platformNode = manifestNode.platform; + const arch = platformNode.architecture; + const os = platformNode.os; + let platform; + + if (platformNode.variant) { + platform = Platform.fromComponents(os, arch, platformNode.variant); + } else { + platform = Platform.fromComponents(os, arch); + } + + result[platform.toString()] = manifestNode.digest; + return result; + }, {}); + } + return {}; +} + +/** + * Filters manifest nodes by media type + * @param {Object} manifestNode - The manifest node + * @returns {boolean} - Whether the node passes the filter + */ +function filterMediaType(manifestNode) { + if (manifestNode.mediaType) { + const mediaType = manifestNode.mediaType; + if (typeof mediaType === 'string') { + return mediaType === MEDIA_TYPE_OCI1_MANIFEST || + mediaType === MEDIA_TYPE_DOCKER2_MANIFEST; + } + } + return false; +} + +/** + * Filters manifest nodes by digest + * @param {Object} manifestNode - The manifest node + * @returns {boolean} - Whether the node passes the filter + */ +function filterDigest(manifestNode) { + return manifestNode.digest && typeof manifestNode.digest === 'string'; +} + +/** + * Filters manifest nodes by platform + * @param {Object} manifestNode - The manifest node + * @returns {boolean} - Whether the node passes the filter + */ +function filterPlatform(manifestNode) { + if (manifestNode.platform && typeof manifestNode.platform === 'object') { + const platformNode = manifestNode.platform; + if (platformNode.architecture && platformNode.os && + typeof platformNode.architecture === 'string' && + typeof platformNode.os === 'string') { + + try { + if (platformNode.variant && typeof platformNode.variant === 'string') { + Platform.fromComponents(platformNode.os, platformNode.architecture, platformNode.variant); + return true; + } + Platform.fromComponents(platformNode.os, platformNode.architecture); + return true; + } catch (e) { + return false; + } + } + } + return false; +} + +/** + * Gets digest for a single image + * @param {import('./images').ImageRef} imageRef - The image reference + * @returns {Object.} - The image digest + */ +function getSingleImageDigest(imageRef) { + const output = execSkopeoInspect(imageRef, false); + + const node = JSON.parse(output); + + if (node.Digest && typeof node.Digest === 'string') { + const result = {}; + result[Platform.EMPTY.toString()] = node.Digest; + return result; + } + return {}; +} + +/** + * Executes Skopeo inspect + * @param {import('./images').ImageRef} imageRef - The image reference + * @param {boolean} raw - Whether to use raw output + */ +function execSkopeoInspect(imageRef, raw) { + const skopeo = getCustomPath("skopeo"); + + const configPath = process.env[EXHORT_SKOPEO_CONFIG_PATH]; + const daemonHost = process.env[EXHORT_IMAGE_SERVICE_ENDPOINT]; + + const args = [ + "inspect", + raw ? "--raw" : "", + `docker://${imageRef.image.getFullName()}`, + ...(configPath ? [ + "--authfile", + configPath, + ] : []), + ...(daemonHost ? [ + "--daemon-host", + daemonHost, + ] : []) + ] + + return execFileSync(skopeo, args); +} + +/** + * @typedef SyftImageSource + * @type {object} + * @property {function(): string} getOs + * @property {function(): string} getArch + * @property {function(): string} getVariant + */ + +/** @type {Object. { + [ + "httpd@sha256:4b5cb7697fea2aa6d398504c381b693a54ae9ad5e6317fcdbb7a2d9b8c3b1364", + "httpd:2.4.49", + "httpd:2.4.49^^amd64" + ].forEach(imageRef => { + test(`verify OCI image sbom provided with scenario ${imageRef}`, () => { + let expectedSbom = fs.readFileSync(`test/providers/tst_manifests/image/${imageRef}.json`).toString().trim() + expectedSbom = JSON.stringify(JSON.parse(expectedSbom), null, 4) + + let providedSbom = generateImageSBOM(parseImageRef(imageRef)) + providedSbom['metadata'] = null + providedSbom['serialNumber'] = null + expect(JSON.stringify(providedSbom, null, 4).trimEnd()).to.deep.equal(expectedSbom) + }).timeout(10000) + }) +}).beforeAll(() => clock = sinon.useFakeTimers(new Date('2023-08-07T00:00:00.000Z'))).afterAll(()=> clock.restore()); diff --git a/test/providers/tst_manifests/image/httpd:2.4.49.json b/test/providers/tst_manifests/image/httpd:2.4.49.json new file mode 100644 index 0000000..93e7390 --- /dev/null +++ b/test/providers/tst_manifests/image/httpd:2.4.49.json @@ -0,0 +1,55444 @@ +{ + "$schema": "http://cyclonedx.org/schema/bom-1.5.schema.json", + "bomFormat": "CycloneDX", + "specVersion": "1.5", + "serialNumber": null, + "version": 1, + "metadata": null, + "components": [ + { + "bom-ref": "pkg:deb/debian/adduser@3.118?arch=all&distro=debian-10&package-id=826edd56153fa710", + "type": "library", + "publisher": "Debian Adduser Developers ", + "name": "adduser", + "version": "3.118", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + } + ], + "cpe": "cpe:2.3:a:adduser:adduser:3.118:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/adduser@3.118?arch=all&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:10:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:10:path", + "value": "/var/lib/dpkg/info/adduser.templates" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/adduser/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/adduser.conffiles" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/adduser.md5sums" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/adduser.config" + }, + { + "name": "syft:location:7:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:7:path", + "value": "/var/lib/dpkg/info/adduser.list" + }, + { + "name": "syft:location:8:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:8:path", + "value": "/var/lib/dpkg/info/adduser.postinst" + }, + { + "name": "syft:location:9:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:9:path", + "value": "/var/lib/dpkg/info/adduser.postrm" + }, + { + "name": "syft:metadata:installedSize", + "value": "849" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/apt@1.8.2.3?arch=amd64&distro=debian-10&package-id=0e5b211b31df59d4", + "type": "library", + "publisher": "APT Development Team ", + "name": "apt", + "version": "1.8.2.3", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "name": "GPLv2+" + } + } + ], + "cpe": "cpe:2.3:a:apt:apt:1.8.2.3:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/apt@1.8.2.3?arch=amd64&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:10:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:10:path", + "value": "/var/lib/dpkg/info/apt.prerm" + }, + { + "name": "syft:location:11:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:11:path", + "value": "/var/lib/dpkg/info/apt.shlibs" + }, + { + "name": "syft:location:12:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:12:path", + "value": "/var/lib/dpkg/info/apt.triggers" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/apt/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/apt.conffiles" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/apt.md5sums" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/apt.list" + }, + { + "name": "syft:location:7:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:7:path", + "value": "/var/lib/dpkg/info/apt.postinst" + }, + { + "name": "syft:location:8:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:8:path", + "value": "/var/lib/dpkg/info/apt.postrm" + }, + { + "name": "syft:location:9:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:9:path", + "value": "/var/lib/dpkg/info/apt.preinst" + }, + { + "name": "syft:metadata:installedSize", + "value": "4064" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/base-files@10.3%2Bdeb10u10?arch=amd64&distro=debian-10&package-id=ae452714cef9cf4e", + "type": "library", + "publisher": "Santiago Vila ", + "name": "base-files", + "version": "10.3+deb10u10", + "licenses": [ + { + "license": { + "name": "GPL" + } + } + ], + "cpe": "cpe:2.3:a:base-files:base-files:10.3\\+deb10u10:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/base-files@10.3%2Bdeb10u10?arch=amd64&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:base-files:base_files:10.3\\+deb10u10:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:base_files:base-files:10.3\\+deb10u10:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:base_files:base_files:10.3\\+deb10u10:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:base:base-files:10.3\\+deb10u10:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:base:base_files:10.3\\+deb10u10:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/base-files/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/base-files.conffiles" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/base-files.md5sums" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/base-files.list" + }, + { + "name": "syft:location:7:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:7:path", + "value": "/var/lib/dpkg/info/base-files.postinst" + }, + { + "name": "syft:metadata:installedSize", + "value": "340" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/base-passwd@3.5.46?arch=amd64&distro=debian-10&package-id=f039cd1f2cf0bafa", + "type": "library", + "publisher": "Colin Watson ", + "name": "base-passwd", + "version": "3.5.46", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "name": "PD" + } + } + ], + "cpe": "cpe:2.3:a:base-passwd:base-passwd:3.5.46:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/base-passwd@3.5.46?arch=amd64&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:base-passwd:base_passwd:3.5.46:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:base_passwd:base-passwd:3.5.46:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:base_passwd:base_passwd:3.5.46:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:base:base-passwd:3.5.46:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:base:base_passwd:3.5.46:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/base-passwd/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/base-passwd.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/base-passwd.list" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/base-passwd.postinst" + }, + { + "name": "syft:location:7:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:7:path", + "value": "/var/lib/dpkg/info/base-passwd.postrm" + }, + { + "name": "syft:location:8:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:8:path", + "value": "/var/lib/dpkg/info/base-passwd.preinst" + }, + { + "name": "syft:location:9:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:9:path", + "value": "/var/lib/dpkg/info/base-passwd.templates" + }, + { + "name": "syft:metadata:installedSize", + "value": "232" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/bash@5.0-4?arch=amd64&distro=debian-10&package-id=cd34aee2896ce84f", + "type": "library", + "publisher": "Matthias Klose ", + "name": "bash", + "version": "5.0-4", + "licenses": [ + { + "license": { + "id": "GPL-3.0-only" + } + } + ], + "cpe": "cpe:2.3:a:bash:bash:5.0-4:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/bash@5.0-4?arch=amd64&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:10:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:10:path", + "value": "/var/lib/dpkg/info/bash.prerm" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/bash/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/bash.conffiles" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/bash.md5sums" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/bash.list" + }, + { + "name": "syft:location:7:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:7:path", + "value": "/var/lib/dpkg/info/bash.postinst" + }, + { + "name": "syft:location:8:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:8:path", + "value": "/var/lib/dpkg/info/bash.postrm" + }, + { + "name": "syft:location:9:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:9:path", + "value": "/var/lib/dpkg/info/bash.preinst" + }, + { + "name": "syft:metadata:installedSize", + "value": "6439" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/bsdutils@1%3A2.33.1-0.1?arch=amd64&distro=debian-10&package-id=f2a2af9c9a7c48e8&upstream=util-linux%402.33.1-0.1", + "type": "library", + "publisher": "LaMont Jones ", + "name": "bsdutils", + "version": "1:2.33.1-0.1", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + }, + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "BSD-4-Clause" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1-or-later" + } + }, + { + "license": { + "id": "LGPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-3.0-or-later" + } + }, + { + "license": { + "id": "MIT" + } + }, + { + "license": { + "name": "LGPL" + } + }, + { + "license": { + "name": "public-domain" + } + } + ], + "cpe": "cpe:2.3:a:bsdutils:bsdutils:1\\:2.33.1-0.1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/bsdutils@1%3A2.33.1-0.1?arch=amd64&distro=debian-10&upstream=util-linux%402.33.1-0.1", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/bsdutils/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/bsdutils.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/bsdutils.list" + }, + { + "name": "syft:metadata:installedSize", + "value": "293" + }, + { + "name": "syft:metadata:source", + "value": "util-linux" + }, + { + "name": "syft:metadata:sourceVersion", + "value": "2.33.1-0.1" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/coreutils@8.30-3?arch=amd64&distro=debian-10&package-id=17d4bb5fcfeac966", + "type": "library", + "publisher": "Michael Stone ", + "name": "coreutils", + "version": "8.30-3", + "licenses": [ + { + "license": { + "id": "GPL-3.0-only" + } + } + ], + "cpe": "cpe:2.3:a:coreutils:coreutils:8.30-3:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/coreutils@8.30-3?arch=amd64&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/coreutils/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/coreutils.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/coreutils.list" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/coreutils.postinst" + }, + { + "name": "syft:location:7:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:7:path", + "value": "/var/lib/dpkg/info/coreutils.postrm" + }, + { + "name": "syft:metadata:installedSize", + "value": "15719" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/dash@0.5.10.2-5?arch=amd64&distro=debian-10&package-id=9b327d82627f2476", + "type": "library", + "publisher": "Andrej Shadura ", + "name": "dash", + "version": "0.5.10.2-5", + "licenses": [ + { + "license": { + "name": "GPL" + } + } + ], + "cpe": "cpe:2.3:a:dash:dash:0.5.10.2-5:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/dash@0.5.10.2-5?arch=amd64&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:10:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:10:path", + "value": "/var/lib/dpkg/info/dash.templates" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/dash/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/dash.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/dash.config" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/dash.list" + }, + { + "name": "syft:location:7:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:7:path", + "value": "/var/lib/dpkg/info/dash.postinst" + }, + { + "name": "syft:location:8:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:8:path", + "value": "/var/lib/dpkg/info/dash.postrm" + }, + { + "name": "syft:location:9:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:9:path", + "value": "/var/lib/dpkg/info/dash.prerm" + }, + { + "name": "syft:metadata:installedSize", + "value": "212" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/debconf@1.5.71?arch=all&distro=debian-10&package-id=fe38a53949ca2b50", + "type": "library", + "publisher": "Debconf Developers ", + "name": "debconf", + "version": "1.5.71", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + } + ], + "cpe": "cpe:2.3:a:debconf:debconf:1.5.71:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/debconf@1.5.71?arch=all&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:10:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:10:path", + "value": "/var/lib/dpkg/info/debconf.preinst" + }, + { + "name": "syft:location:11:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:11:path", + "value": "/var/lib/dpkg/info/debconf.prerm" + }, + { + "name": "syft:location:12:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:12:path", + "value": "/var/lib/dpkg/info/debconf.templates" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/debconf/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/debconf.conffiles" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/debconf.md5sums" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/debconf.config" + }, + { + "name": "syft:location:7:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:7:path", + "value": "/var/lib/dpkg/info/debconf.list" + }, + { + "name": "syft:location:8:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:8:path", + "value": "/var/lib/dpkg/info/debconf.postinst" + }, + { + "name": "syft:location:9:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:9:path", + "value": "/var/lib/dpkg/info/debconf.postrm" + }, + { + "name": "syft:metadata:installedSize", + "value": "520" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/debian-archive-keyring@2019.1%2Bdeb10u1?arch=all&distro=debian-10&package-id=1ebe9d91bd632f80", + "type": "library", + "publisher": "Debian Release Team ", + "name": "debian-archive-keyring", + "version": "2019.1+deb10u1", + "licenses": [ + { + "license": { + "name": "GPL" + } + } + ], + "cpe": "cpe:2.3:a:debian-archive-keyring:debian-archive-keyring:2019.1\\+deb10u1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/debian-archive-keyring@2019.1%2Bdeb10u1?arch=all&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:debian-archive-keyring:debian_archive_keyring:2019.1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:debian_archive_keyring:debian-archive-keyring:2019.1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:debian_archive_keyring:debian_archive_keyring:2019.1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:debian-archive:debian-archive-keyring:2019.1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:debian-archive:debian_archive_keyring:2019.1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:debian_archive:debian-archive-keyring:2019.1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:debian_archive:debian_archive_keyring:2019.1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:debian:debian-archive-keyring:2019.1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:debian:debian_archive_keyring:2019.1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:10:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:10:path", + "value": "/var/lib/dpkg/info/debian-archive-keyring.prerm" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/debian-archive-keyring/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/debian-archive-keyring.conffiles" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/debian-archive-keyring.md5sums" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/debian-archive-keyring.list" + }, + { + "name": "syft:location:7:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:7:path", + "value": "/var/lib/dpkg/info/debian-archive-keyring.postinst" + }, + { + "name": "syft:location:8:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:8:path", + "value": "/var/lib/dpkg/info/debian-archive-keyring.postrm" + }, + { + "name": "syft:location:9:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:9:path", + "value": "/var/lib/dpkg/info/debian-archive-keyring.preinst" + }, + { + "name": "syft:metadata:installedSize", + "value": "235" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/debianutils@4.8.6.1?arch=amd64&distro=debian-10&package-id=b0e8f666c912d962", + "type": "library", + "publisher": "Clint Adams ", + "name": "debianutils", + "version": "4.8.6.1", + "licenses": [ + { + "license": { + "name": "GPL" + } + } + ], + "cpe": "cpe:2.3:a:debianutils:debianutils:4.8.6.1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/debianutils@4.8.6.1?arch=amd64&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/debianutils/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/debianutils.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/debianutils.list" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/debianutils.postinst" + }, + { + "name": "syft:location:7:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:7:path", + "value": "/var/lib/dpkg/info/debianutils.postrm" + }, + { + "name": "syft:metadata:installedSize", + "value": "226" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/diffutils@1%3A3.7-3?arch=amd64&distro=debian-10&package-id=a19af11f72f0db48", + "type": "library", + "publisher": "Santiago Vila ", + "name": "diffutils", + "version": "1:3.7-3", + "licenses": [ + { + "license": { + "name": "GFDL" + } + }, + { + "license": { + "name": "GPL" + } + } + ], + "cpe": "cpe:2.3:a:diffutils:diffutils:1\\:3.7-3:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/diffutils@1%3A3.7-3?arch=amd64&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/diffutils/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/diffutils.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/diffutils.list" + }, + { + "name": "syft:metadata:installedSize", + "value": "1574" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/dpkg@1.19.7?arch=amd64&distro=debian-10&package-id=da9ff9a377f09d63", + "type": "library", + "publisher": "Dpkg Developers ", + "name": "dpkg", + "version": "1.19.7", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "name": "public-domain-md5" + } + }, + { + "license": { + "name": "public-domain-s-s-d" + } + } + ], + "cpe": "cpe:2.3:a:dpkg:dpkg:1.19.7:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/dpkg@1.19.7?arch=amd64&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/dpkg/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/dpkg.conffiles" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/dpkg.md5sums" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/dpkg.list" + }, + { + "name": "syft:location:7:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:7:path", + "value": "/var/lib/dpkg/info/dpkg.postinst" + }, + { + "name": "syft:location:8:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:8:path", + "value": "/var/lib/dpkg/info/dpkg.postrm" + }, + { + "name": "syft:metadata:installedSize", + "value": "6693" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/e2fsprogs@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=1675eecc8d4a417f", + "type": "library", + "publisher": "Theodore Y. Ts'o ", + "name": "e2fsprogs", + "version": "1.44.5-1+deb10u3", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.0-only" + } + } + ], + "cpe": "cpe:2.3:a:e2fsprogs:e2fsprogs:1.44.5-1\\+deb10u3:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/e2fsprogs@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/e2fsprogs/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/e2fsprogs.conffiles" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/e2fsprogs.md5sums" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/e2fsprogs.list" + }, + { + "name": "syft:location:7:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:7:path", + "value": "/var/lib/dpkg/info/e2fsprogs.postinst" + }, + { + "name": "syft:location:8:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:8:path", + "value": "/var/lib/dpkg/info/e2fsprogs.preinst" + }, + { + "name": "syft:metadata:installedSize", + "value": "1416" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/fdisk@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=4c321df8375fa5f7&upstream=util-linux", + "type": "library", + "publisher": "LaMont Jones ", + "name": "fdisk", + "version": "2.33.1-0.1", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + }, + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "BSD-4-Clause" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1-or-later" + } + }, + { + "license": { + "id": "LGPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-3.0-or-later" + } + }, + { + "license": { + "id": "MIT" + } + }, + { + "license": { + "name": "LGPL" + } + }, + { + "license": { + "name": "public-domain" + } + } + ], + "cpe": "cpe:2.3:a:fdisk:fdisk:2.33.1-0.1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/fdisk@2.33.1-0.1?arch=amd64&distro=debian-10&upstream=util-linux", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/fdisk/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/fdisk.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/fdisk.list" + }, + { + "name": "syft:metadata:installedSize", + "value": "483" + }, + { + "name": "syft:metadata:source", + "value": "util-linux" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/findutils@4.6.0%2Bgit%2B20190209-2?arch=amd64&distro=debian-10&package-id=9b3ed054ec2849a7", + "type": "library", + "publisher": "Andreas Metzler ", + "name": "findutils", + "version": "4.6.0+git+20190209-2", + "licenses": [ + { + "license": { + "id": "GFDL-1.3-only" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + } + ], + "cpe": "cpe:2.3:a:findutils:findutils:4.6.0\\+git\\+20190209-2:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/findutils@4.6.0%2Bgit%2B20190209-2?arch=amd64&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/findutils/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/findutils.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/findutils.list" + }, + { + "name": "syft:metadata:installedSize", + "value": "1938" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/gcc-8-base@8.3.0-6?arch=amd64&distro=debian-10&package-id=0b418e36eec6c020&upstream=gcc-8", + "type": "library", + "publisher": "Debian GCC Maintainers ", + "name": "gcc-8-base", + "version": "8.3.0-6", + "licenses": [ + { + "license": { + "id": "GFDL-1.2-only" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "name": "Artistic" + } + }, + { + "license": { + "name": "GPL" + } + }, + { + "license": { + "name": "LGPL" + } + } + ], + "cpe": "cpe:2.3:a:gcc-8-base:gcc-8-base:8.3.0-6:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/gcc-8-base@8.3.0-6?arch=amd64&distro=debian-10&upstream=gcc-8", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gcc-8-base:gcc_8_base:8.3.0-6:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gcc_8_base:gcc-8-base:8.3.0-6:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gcc_8_base:gcc_8_base:8.3.0-6:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gcc-8:gcc-8-base:8.3.0-6:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gcc-8:gcc_8_base:8.3.0-6:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gcc_8:gcc-8-base:8.3.0-6:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gcc_8:gcc_8_base:8.3.0-6:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gcc:gcc-8-base:8.3.0-6:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gcc:gcc_8_base:8.3.0-6:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/gcc-8-base/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/gcc-8-base:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "248" + }, + { + "name": "syft:metadata:source", + "value": "gcc-8" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/gpgv@2.2.12-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=7f936fc60378589a&upstream=gnupg2", + "type": "library", + "publisher": "Debian GnuPG Maintainers ", + "name": "gpgv", + "version": "2.2.12-1+deb10u1", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "CC0-1.0" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1-or-later" + } + }, + { + "license": { + "id": "LGPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-3.0-or-later" + } + }, + { + "license": { + "name": "Expat" + } + }, + { + "license": { + "name": "RFC-Reference" + } + }, + { + "license": { + "name": "TinySCHEME" + } + }, + { + "license": { + "name": "permissive" + } + } + ], + "cpe": "cpe:2.3:a:gpgv:gpgv:2.2.12-1\\+deb10u1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/gpgv@2.2.12-1%2Bdeb10u1?arch=amd64&distro=debian-10&upstream=gnupg2", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/gpgv/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/gpgv.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/gpgv.list" + }, + { + "name": "syft:metadata:installedSize", + "value": "837" + }, + { + "name": "syft:metadata:source", + "value": "gnupg2" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/grep@3.3-1?arch=amd64&distro=debian-10&package-id=d53561e4ff2a03a4", + "type": "library", + "publisher": "Anibal Monsalve Salazar ", + "name": "grep", + "version": "3.3-1", + "licenses": [ + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + } + ], + "cpe": "cpe:2.3:a:grep:grep:3.3-1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/grep@3.3-1?arch=amd64&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/grep/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/grep.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/grep.list" + }, + { + "name": "syft:metadata:installedSize", + "value": "1014" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/gzip@1.9-3?arch=amd64&distro=debian-10&package-id=febd6969a44b6c8c", + "type": "library", + "publisher": "Bdale Garbee ", + "name": "gzip", + "version": "1.9-3", + "licenses": [ + { + "license": { + "name": "GPL" + } + } + ], + "cpe": "cpe:2.3:a:gzip:gzip:1.9-3:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/gzip@1.9-3?arch=amd64&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/gzip/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/gzip.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/gzip.list" + }, + { + "name": "syft:metadata:installedSize", + "value": "243" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/hostname@3.21?arch=amd64&distro=debian-10&package-id=ca88bf2c2ca324fb", + "type": "library", + "publisher": "Michael Meskes ", + "name": "hostname", + "version": "3.21", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + } + ], + "cpe": "cpe:2.3:a:hostname:hostname:3.21:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/hostname@3.21?arch=amd64&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/hostname/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/hostname.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/hostname.list" + }, + { + "name": "syft:metadata:installedSize", + "value": "54" + } + ] + }, + { + "bom-ref": "pkg:generic/httpd@2.4.49?package-id=e031779968c5b607", + "type": "application", + "name": "httpd", + "version": "2.4.49", + "cpe": "cpe:2.3:a:apache:http_server:2.4.49:*:*:*:*:*:*:*", + "purl": "pkg:generic/httpd@2.4.49", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "binary-classifier-cataloger" + }, + { + "name": "syft:package:type", + "value": "binary" + }, + { + "name": "syft:package:metadataType", + "value": "binary-signature" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:0:path", + "value": "/usr/local/apache2/bin/httpd" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/init-system-helpers@1.56%2Bnmu1?arch=all&distro=debian-10&package-id=4a3347396c872902", + "type": "library", + "publisher": "Debian systemd Maintainers ", + "name": "init-system-helpers", + "version": "1.56+nmu1", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + } + ], + "cpe": "cpe:2.3:a:init-system-helpers:init-system-helpers:1.56\\+nmu1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/init-system-helpers@1.56%2Bnmu1?arch=all&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:init-system-helpers:init_system_helpers:1.56\\+nmu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:init_system_helpers:init-system-helpers:1.56\\+nmu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:init_system_helpers:init_system_helpers:1.56\\+nmu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:init-system:init-system-helpers:1.56\\+nmu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:init-system:init_system_helpers:1.56\\+nmu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:init_system:init-system-helpers:1.56\\+nmu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:init_system:init_system_helpers:1.56\\+nmu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:init:init-system-helpers:1.56\\+nmu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:init:init_system_helpers:1.56\\+nmu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/init-system-helpers/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/init-system-helpers.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/init-system-helpers.list" + }, + { + "name": "syft:metadata:installedSize", + "value": "133" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libacl1@2.2.53-4?arch=amd64&distro=debian-10&package-id=2f436d85fbc9eccc&upstream=acl", + "type": "library", + "publisher": "Guillem Jover ", + "name": "libacl1", + "version": "2.2.53-4", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + } + ], + "cpe": "cpe:2.3:a:libacl1:libacl1:2.2.53-4:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libacl1@2.2.53-4?arch=amd64&distro=debian-10&upstream=acl", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libacl1/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libacl1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "70" + }, + { + "name": "syft:metadata:source", + "value": "acl" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libapr1@1.6.5-1%2Bb1?arch=amd64&distro=debian-10&package-id=489cc45ede79feca&upstream=apr%401.6.5-1", + "type": "library", + "publisher": "Debian Apache Maintainers ", + "name": "libapr1", + "version": "1.6.5-1+b1", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "cpe": "cpe:2.3:a:libapr1:libapr1:1.6.5-1\\+b1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libapr1@1.6.5-1%2Bb1?arch=amd64&distro=debian-10&upstream=apr%401.6.5-1", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:2:path", + "value": "/usr/share/doc/libapr1/copyright" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:3:path", + "value": "/var/lib/dpkg/info/libapr1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "278" + }, + { + "name": "syft:metadata:source", + "value": "apr" + }, + { + "name": "syft:metadata:sourceVersion", + "value": "1.6.5-1" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libaprutil1@1.6.1-4?arch=amd64&distro=debian-10&package-id=eda9a1ee2039d110&upstream=apr-util", + "type": "library", + "publisher": "Debian Apache Maintainers ", + "name": "libaprutil1", + "version": "1.6.1-4", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "cpe": "cpe:2.3:a:libaprutil1:libaprutil1:1.6.1-4:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libaprutil1@1.6.1-4?arch=amd64&distro=debian-10&upstream=apr-util", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:2:path", + "value": "/usr/share/doc/libaprutil1/copyright" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:3:path", + "value": "/var/lib/dpkg/info/libaprutil1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "285" + }, + { + "name": "syft:metadata:source", + "value": "apr-util" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libaprutil1-ldap@1.6.1-4?arch=amd64&distro=debian-10&package-id=3d99122937baf6ae&upstream=apr-util", + "type": "library", + "publisher": "Debian Apache Maintainers ", + "name": "libaprutil1-ldap", + "version": "1.6.1-4", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "cpe": "cpe:2.3:a:libaprutil1-ldap:libaprutil1-ldap:1.6.1-4:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libaprutil1-ldap@1.6.1-4?arch=amd64&distro=debian-10&upstream=apr-util", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libaprutil1-ldap:libaprutil1_ldap:1.6.1-4:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libaprutil1_ldap:libaprutil1-ldap:1.6.1-4:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libaprutil1_ldap:libaprutil1_ldap:1.6.1-4:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libaprutil1:libaprutil1-ldap:1.6.1-4:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libaprutil1:libaprutil1_ldap:1.6.1-4:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:2:path", + "value": "/usr/share/doc/libaprutil1-ldap/copyright" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:3:path", + "value": "/var/lib/dpkg/info/libaprutil1-ldap:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "45" + }, + { + "name": "syft:metadata:source", + "value": "apr-util" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libapt-pkg5.0@1.8.2.3?arch=amd64&distro=debian-10&package-id=6424d2241f89a045&upstream=apt", + "type": "library", + "publisher": "APT Development Team ", + "name": "libapt-pkg5.0", + "version": "1.8.2.3", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "name": "GPLv2+" + } + } + ], + "cpe": "cpe:2.3:a:libapt-pkg5.0:libapt-pkg5.0:1.8.2.3:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libapt-pkg5.0@1.8.2.3?arch=amd64&distro=debian-10&upstream=apt", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libapt-pkg5.0:libapt_pkg5.0:1.8.2.3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libapt_pkg5.0:libapt-pkg5.0:1.8.2.3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libapt_pkg5.0:libapt_pkg5.0:1.8.2.3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libapt:libapt-pkg5.0:1.8.2.3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libapt:libapt_pkg5.0:1.8.2.3:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libapt-pkg5.0/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libapt-pkg5.0:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "3243" + }, + { + "name": "syft:metadata:source", + "value": "apt" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libattr1@1%3A2.4.48-4?arch=amd64&distro=debian-10&package-id=354fec30a51d2496&upstream=attr", + "type": "library", + "publisher": "Guillem Jover ", + "name": "libattr1", + "version": "1:2.4.48-4", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + } + ], + "cpe": "cpe:2.3:a:libattr1:libattr1:1\\:2.4.48-4:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libattr1@1%3A2.4.48-4?arch=amd64&distro=debian-10&upstream=attr", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libattr1/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libattr1:amd64.conffiles" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/libattr1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "55" + }, + { + "name": "syft:metadata:source", + "value": "attr" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libaudit-common@1%3A2.8.4-3?arch=all&distro=debian-10&package-id=15a24d26841e3183&upstream=audit", + "type": "library", + "publisher": "Laurent Bigonville ", + "name": "libaudit-common", + "version": "1:2.8.4-3", + "licenses": [ + { + "license": { + "id": "GPL-1.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + } + ], + "cpe": "cpe:2.3:a:libaudit-common:libaudit-common:1\\:2.8.4-3:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libaudit-common@1%3A2.8.4-3?arch=all&distro=debian-10&upstream=audit", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libaudit-common:libaudit_common:1\\:2.8.4-3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libaudit_common:libaudit-common:1\\:2.8.4-3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libaudit_common:libaudit_common:1\\:2.8.4-3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libaudit:libaudit-common:1\\:2.8.4-3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libaudit:libaudit_common:1\\:2.8.4-3:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libaudit-common/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libaudit-common.conffiles" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/libaudit-common.md5sums" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/libaudit-common.list" + }, + { + "name": "syft:metadata:installedSize", + "value": "33" + }, + { + "name": "syft:metadata:source", + "value": "audit" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libaudit1@1%3A2.8.4-3?arch=amd64&distro=debian-10&package-id=e445bed1f84bcb4b&upstream=audit", + "type": "library", + "publisher": "Laurent Bigonville ", + "name": "libaudit1", + "version": "1:2.8.4-3", + "licenses": [ + { + "license": { + "id": "GPL-1.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + } + ], + "cpe": "cpe:2.3:a:libaudit1:libaudit1:1\\:2.8.4-3:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libaudit1@1%3A2.8.4-3?arch=amd64&distro=debian-10&upstream=audit", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libaudit1/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libaudit1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "161" + }, + { + "name": "syft:metadata:source", + "value": "audit" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libblkid1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=d20eac8952a5e6b5&upstream=util-linux", + "type": "library", + "publisher": "LaMont Jones ", + "name": "libblkid1", + "version": "2.33.1-0.1", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + }, + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "BSD-4-Clause" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1-or-later" + } + }, + { + "license": { + "id": "LGPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-3.0-or-later" + } + }, + { + "license": { + "id": "MIT" + } + }, + { + "license": { + "name": "LGPL" + } + }, + { + "license": { + "name": "public-domain" + } + } + ], + "cpe": "cpe:2.3:a:libblkid1:libblkid1:2.33.1-0.1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libblkid1@2.33.1-0.1?arch=amd64&distro=debian-10&upstream=util-linux", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libblkid1/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libblkid1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "428" + }, + { + "name": "syft:metadata:source", + "value": "util-linux" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libbrotli1@1.0.7-2%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=d61cdb80f6254e3e&upstream=brotli", + "type": "library", + "publisher": "Tomasz Buchert ", + "name": "libbrotli1", + "version": "1.0.7-2+deb10u1", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "cpe": "cpe:2.3:a:libbrotli1:libbrotli1:1.0.7-2\\+deb10u1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libbrotli1@1.0.7-2%2Bdeb10u1?arch=amd64&distro=debian-10&upstream=brotli", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/usr/share/doc/libbrotli1/copyright" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/libbrotli1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "775" + }, + { + "name": "syft:metadata:source", + "value": "brotli" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libbz2-1.0@1.0.6-9.2~deb10u1?arch=amd64&distro=debian-10&package-id=0908c2a2770a4bad&upstream=bzip2", + "type": "library", + "publisher": "Anibal Monsalve Salazar ", + "name": "libbz2-1.0", + "version": "1.0.6-9.2~deb10u1", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "name": "BSD-variant" + } + } + ], + "cpe": "cpe:2.3:a:libbz2-1.0:libbz2-1.0:1.0.6-9.2\\~deb10u1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libbz2-1.0@1.0.6-9.2~deb10u1?arch=amd64&distro=debian-10&upstream=bzip2", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libbz2-1.0:libbz2_1.0:1.0.6-9.2\\~deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libbz2_1.0:libbz2-1.0:1.0.6-9.2\\~deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libbz2_1.0:libbz2_1.0:1.0.6-9.2\\~deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libbz2:libbz2-1.0:1.0.6-9.2\\~deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libbz2:libbz2_1.0:1.0.6-9.2\\~deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libbz2-1.0/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libbz2-1.0:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "104" + }, + { + "name": "syft:metadata:source", + "value": "bzip2" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libc-bin@2.28-10?arch=amd64&distro=debian-10&package-id=324d5fb6de70a42b&upstream=glibc", + "type": "library", + "publisher": "GNU Libc Maintainers ", + "name": "libc-bin", + "version": "2.28-10", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + } + ], + "cpe": "cpe:2.3:a:libc-bin:libc-bin:2.28-10:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libc-bin@2.28-10?arch=amd64&distro=debian-10&upstream=glibc", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libc-bin:libc_bin:2.28-10:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libc_bin:libc-bin:2.28-10:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libc_bin:libc_bin:2.28-10:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libc:libc-bin:2.28-10:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libc:libc_bin:2.28-10:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libc-bin/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libc-bin.conffiles" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/libc-bin.md5sums" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/libc-bin.list" + }, + { + "name": "syft:location:7:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:7:path", + "value": "/var/lib/dpkg/info/libc-bin.postinst" + }, + { + "name": "syft:location:8:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:8:path", + "value": "/var/lib/dpkg/info/libc-bin.triggers" + }, + { + "name": "syft:metadata:installedSize", + "value": "3493" + }, + { + "name": "syft:metadata:source", + "value": "glibc" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "type": "library", + "publisher": "GNU Libc Maintainers ", + "name": "libc6", + "version": "2.28-10", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + } + ], + "cpe": "cpe:2.3:a:libc6:libc6:2.28-10:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&upstream=glibc", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libc6/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libc6:amd64.conffiles" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/libc6:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "12337" + }, + { + "name": "syft:metadata:source", + "value": "glibc" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libcap-ng0@0.7.9-2?arch=amd64&distro=debian-10&package-id=aaab7004e87358fb&upstream=libcap-ng", + "type": "library", + "publisher": "Pierre Chifflier ", + "name": "libcap-ng0", + "version": "0.7.9-2", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + } + ], + "cpe": "cpe:2.3:a:libcap-ng0:libcap-ng0:0.7.9-2:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libcap-ng0@0.7.9-2?arch=amd64&distro=debian-10&upstream=libcap-ng", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libcap-ng0:libcap_ng0:0.7.9-2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libcap_ng0:libcap-ng0:0.7.9-2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libcap_ng0:libcap_ng0:0.7.9-2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libcap:libcap-ng0:0.7.9-2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libcap:libcap_ng0:0.7.9-2:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libcap-ng0/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libcap-ng0:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "47" + }, + { + "name": "syft:metadata:source", + "value": "libcap-ng" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libcom-err2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=1a8a9dbb194df5d1&upstream=e2fsprogs", + "type": "library", + "publisher": "Theodore Y. Ts'o ", + "name": "libcom-err2", + "version": "1.44.5-1+deb10u3", + "licenses": [ + { + "license": { + "name": "LicenseRef-sha256:9e3a4384b6d8d2358d44103f62bcd948328b3f8a63a1a6baa66abeb43302d581" + } + } + ], + "cpe": "cpe:2.3:a:libcom-err2:libcom-err2:1.44.5-1\\+deb10u3:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libcom-err2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&upstream=e2fsprogs", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libcom-err2:libcom_err2:1.44.5-1\\+deb10u3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libcom_err2:libcom-err2:1.44.5-1\\+deb10u3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libcom_err2:libcom_err2:1.44.5-1\\+deb10u3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libcom:libcom-err2:1.44.5-1\\+deb10u3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libcom:libcom_err2:1.44.5-1\\+deb10u3:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libcom-err2/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libcom-err2:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "92" + }, + { + "name": "syft:metadata:source", + "value": "e2fsprogs" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libcurl4@7.64.0-4%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=af03801f530228cd&upstream=curl", + "type": "library", + "publisher": "Alessandro Ghedini ", + "name": "libcurl4", + "version": "7.64.0-4+deb10u2", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "BSD-4-Clause" + } + }, + { + "license": { + "id": "ISC" + } + }, + { + "license": { + "id": "curl" + } + }, + { + "license": { + "name": "other" + } + }, + { + "license": { + "name": "public-domain" + } + } + ], + "cpe": "cpe:2.3:a:libcurl4:libcurl4:7.64.0-4\\+deb10u2:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libcurl4@7.64.0-4%2Bdeb10u2?arch=amd64&distro=debian-10&upstream=curl", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/usr/share/doc/libcurl4/copyright" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/libcurl4:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "698" + }, + { + "name": "syft:metadata:source", + "value": "curl" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libdb5.3@5.3.28%2Bdfsg1-0.5?arch=amd64&distro=debian-10&package-id=910a20bdce3547ea&upstream=db5.3", + "type": "library", + "publisher": "Debian Berkeley DB Team ", + "name": "libdb5.3", + "version": "5.3.28+dfsg1-0.5", + "licenses": [ + { + "license": { + "name": "LicenseRef-sha256:b3bbc6fbb3f2a0e6a487e953eb8c3cc4bdb6f4150f7f51d20b1e9a3c8ef92d3d" + } + } + ], + "cpe": "cpe:2.3:a:libdb5.3:libdb5.3:5.3.28\\+dfsg1-0.5:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libdb5.3@5.3.28%2Bdfsg1-0.5?arch=amd64&distro=debian-10&upstream=db5.3", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libdb5.3/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libdb5.3:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "1802" + }, + { + "name": "syft:metadata:source", + "value": "db5.3" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libdebconfclient0@0.249?arch=amd64&distro=debian-10&package-id=0ab574cc914c04a7&upstream=cdebconf", + "type": "library", + "publisher": "Debian Install System Team ", + "name": "libdebconfclient0", + "version": "0.249", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + } + ], + "cpe": "cpe:2.3:a:libdebconfclient0:libdebconfclient0:0.249:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libdebconfclient0@0.249?arch=amd64&distro=debian-10&upstream=cdebconf", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libdebconfclient0/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libdebconfclient0:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "72" + }, + { + "name": "syft:metadata:source", + "value": "cdebconf" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libexpat1@2.2.6-2%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=d55bfe42f054b394&upstream=expat", + "type": "library", + "publisher": "Laszlo Boszormenyi (GCS) ", + "name": "libexpat1", + "version": "2.2.6-2+deb10u1", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "cpe": "cpe:2.3:a:libexpat1:libexpat1:2.2.6-2\\+deb10u1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libexpat1@2.2.6-2%2Bdeb10u1?arch=amd64&distro=debian-10&upstream=expat", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:2:path", + "value": "/usr/share/doc/libexpat1/copyright" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:3:path", + "value": "/var/lib/dpkg/info/libexpat1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "519" + }, + { + "name": "syft:metadata:source", + "value": "expat" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libext2fs2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=e40d517f10e825e0&upstream=e2fsprogs", + "type": "library", + "publisher": "Theodore Y. Ts'o ", + "name": "libext2fs2", + "version": "1.44.5-1+deb10u3", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.0-only" + } + } + ], + "cpe": "cpe:2.3:a:libext2fs2:libext2fs2:1.44.5-1\\+deb10u3:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libext2fs2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&upstream=e2fsprogs", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libext2fs2/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libext2fs2:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "476" + }, + { + "name": "syft:metadata:source", + "value": "e2fsprogs" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libfdisk1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=54c2753ee170e0ea&upstream=util-linux", + "type": "library", + "publisher": "LaMont Jones ", + "name": "libfdisk1", + "version": "2.33.1-0.1", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + }, + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "BSD-4-Clause" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1-or-later" + } + }, + { + "license": { + "id": "LGPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-3.0-or-later" + } + }, + { + "license": { + "id": "MIT" + } + }, + { + "license": { + "name": "LGPL" + } + }, + { + "license": { + "name": "public-domain" + } + } + ], + "cpe": "cpe:2.3:a:libfdisk1:libfdisk1:2.33.1-0.1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libfdisk1@2.33.1-0.1?arch=amd64&distro=debian-10&upstream=util-linux", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libfdisk1/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libfdisk1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "546" + }, + { + "name": "syft:metadata:source", + "value": "util-linux" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libffi6@3.2.1-9?arch=amd64&distro=debian-10&package-id=81f81c06eb491929&upstream=libffi", + "type": "library", + "publisher": "Debian GCC Maintainers ", + "name": "libffi6", + "version": "3.2.1-9", + "licenses": [ + { + "license": { + "name": "GPL" + } + } + ], + "cpe": "cpe:2.3:a:libffi6:libffi6:3.2.1-9:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libffi6@3.2.1-9?arch=amd64&distro=debian-10&upstream=libffi", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libffi6/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libffi6:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "56" + }, + { + "name": "syft:metadata:source", + "value": "libffi" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libgcc1@1%3A8.3.0-6?arch=amd64&distro=debian-10&package-id=715380b30f28d876&upstream=gcc-8%408.3.0-6", + "type": "library", + "publisher": "Debian GCC Maintainers ", + "name": "libgcc1", + "version": "1:8.3.0-6", + "licenses": [ + { + "license": { + "id": "GFDL-1.2-only" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "name": "Artistic" + } + }, + { + "license": { + "name": "GPL" + } + }, + { + "license": { + "name": "LGPL" + } + } + ], + "cpe": "cpe:2.3:a:libgcc1:libgcc1:1\\:8.3.0-6:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libgcc1@1%3A8.3.0-6?arch=amd64&distro=debian-10&upstream=gcc-8%408.3.0-6", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/gcc-8-base/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libgcc1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "116" + }, + { + "name": "syft:metadata:source", + "value": "gcc-8" + }, + { + "name": "syft:metadata:sourceVersion", + "value": "8.3.0-6" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libgcrypt20@1.8.4-5%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=7957520e1bba8fa0", + "type": "library", + "publisher": "Debian GnuTLS Maintainers ", + "name": "libgcrypt20", + "version": "1.8.4-5+deb10u1", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "name": "LGPL" + } + } + ], + "cpe": "cpe:2.3:a:libgcrypt20:libgcrypt20:1.8.4-5\\+deb10u1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libgcrypt20@1.8.4-5%2Bdeb10u1?arch=amd64&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libgcrypt20/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libgcrypt20:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "1343" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libgdbm6@1.18.1-4?arch=amd64&distro=debian-10&package-id=c9afbf45b6ae55eb&upstream=gdbm", + "type": "library", + "publisher": "Dmitry Bogatov ", + "name": "libgdbm6", + "version": "1.18.1-4", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "name": "GFDL-NIV-1.3+" + } + } + ], + "cpe": "cpe:2.3:a:libgdbm6:libgdbm6:1.18.1-4:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libgdbm6@1.18.1-4?arch=amd64&distro=debian-10&upstream=gdbm", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:2:path", + "value": "/usr/share/doc/libgdbm6/copyright" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:3:path", + "value": "/var/lib/dpkg/info/libgdbm6:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "117" + }, + { + "name": "syft:metadata:source", + "value": "gdbm" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libgmp10@2%3A6.1.2%2Bdfsg-4?arch=amd64&distro=debian-10&package-id=5a68e3044376edb7&upstream=gmp", + "type": "library", + "publisher": "Debian Science Team ", + "name": "libgmp10", + "version": "2:6.1.2+dfsg-4", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-3.0-only" + } + }, + { + "license": { + "name": "GPL" + } + } + ], + "cpe": "cpe:2.3:a:libgmp10:libgmp10:2\\:6.1.2\\+dfsg-4:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libgmp10@2%3A6.1.2%2Bdfsg-4?arch=amd64&distro=debian-10&upstream=gmp", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libgmp10/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libgmp10:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "565" + }, + { + "name": "syft:metadata:source", + "value": "gmp" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libgnutls30@3.6.7-4%2Bdeb10u7?arch=amd64&distro=debian-10&package-id=2b175f545e2e827e&upstream=gnutls28", + "type": "library", + "publisher": "Debian GnuTLS Maintainers ", + "name": "libgnutls30", + "version": "3.6.7-4+deb10u7", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + }, + { + "license": { + "id": "GFDL-1.3-only" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-3.0-only" + } + }, + { + "license": { + "name": "CC0" + } + }, + { + "license": { + "name": "GPL" + } + }, + { + "license": { + "name": "GPLv3+" + } + }, + { + "license": { + "name": "LGPL" + } + }, + { + "license": { + "name": "LGPLv3+_or_GPLv2+" + } + }, + { + "license": { + "name": "The" + } + } + ], + "cpe": "cpe:2.3:a:libgnutls30:libgnutls30:3.6.7-4\\+deb10u7:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libgnutls30@3.6.7-4%2Bdeb10u7?arch=amd64&distro=debian-10&upstream=gnutls28", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libgnutls30/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libgnutls30:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "2649" + }, + { + "name": "syft:metadata:source", + "value": "gnutls28" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libgpg-error0@1.35-1?arch=amd64&distro=debian-10&package-id=07738f8b4e87f646&upstream=libgpg-error", + "type": "library", + "publisher": "Debian GnuPG Maintainers ", + "name": "libgpg-error0", + "version": "1.35-1", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1-or-later" + } + }, + { + "license": { + "name": "g10-permissive" + } + } + ], + "cpe": "cpe:2.3:a:libgpg-error0:libgpg-error0:1.35-1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libgpg-error0@1.35-1?arch=amd64&distro=debian-10&upstream=libgpg-error", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libgpg-error0:libgpg_error0:1.35-1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libgpg_error0:libgpg-error0:1.35-1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libgpg_error0:libgpg_error0:1.35-1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libgpg:libgpg-error0:1.35-1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libgpg:libgpg_error0:1.35-1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libgpg-error0/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libgpg-error0:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "175" + }, + { + "name": "syft:metadata:source", + "value": "libgpg-error" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libgssapi-krb5-2@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=563dc09768844327&upstream=krb5", + "type": "library", + "publisher": "Sam Hartman ", + "name": "libgssapi-krb5-2", + "version": "1.17-3+deb10u2", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + } + ], + "cpe": "cpe:2.3:a:libgssapi-krb5-2:libgssapi-krb5-2:1.17-3\\+deb10u2:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libgssapi-krb5-2@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&upstream=krb5", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libgssapi-krb5-2:libgssapi_krb5_2:1.17-3\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libgssapi_krb5_2:libgssapi-krb5-2:1.17-3\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libgssapi_krb5_2:libgssapi_krb5_2:1.17-3\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libgssapi-krb5:libgssapi-krb5-2:1.17-3\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libgssapi-krb5:libgssapi_krb5_2:1.17-3\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libgssapi_krb5:libgssapi-krb5-2:1.17-3\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libgssapi_krb5:libgssapi_krb5_2:1.17-3\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libgssapi:libgssapi-krb5-2:1.17-3\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libgssapi:libgssapi_krb5_2:1.17-3\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/usr/share/doc/libgssapi-krb5-2/copyright" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/libgssapi-krb5-2:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "428" + }, + { + "name": "syft:metadata:source", + "value": "krb5" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libhogweed4@3.4.1-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=1c418be752fe00a9&upstream=nettle", + "type": "library", + "publisher": "Magnus Holmgren ", + "name": "libhogweed4", + "version": "3.4.1-1+deb10u1", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-or-later" + } + }, + { + "license": { + "name": "GAP" + } + }, + { + "license": { + "name": "GPL" + } + }, + { + "license": { + "name": "LGPL" + } + }, + { + "license": { + "name": "other" + } + }, + { + "license": { + "name": "public-domain" + } + } + ], + "cpe": "cpe:2.3:a:libhogweed4:libhogweed4:3.4.1-1\\+deb10u1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libhogweed4@3.4.1-1%2Bdeb10u1?arch=amd64&distro=debian-10&upstream=nettle", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libnettle6/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libhogweed4:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "246" + }, + { + "name": "syft:metadata:source", + "value": "nettle" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libicu63@63.1-6%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=a180ea9e3b7989a3&upstream=icu", + "type": "library", + "publisher": "Laszlo Boszormenyi (GCS) ", + "name": "libicu63", + "version": "63.1-6+deb10u1", + "licenses": [ + { + "license": { + "name": "LicenseRef-sha256:0515ea67c829d73cf54d074ef7bd030968419f98a83e523d4300ea0f4d18ebc9" + } + } + ], + "cpe": "cpe:2.3:a:libicu63:libicu63:63.1-6\\+deb10u1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libicu63@63.1-6%2Bdeb10u1?arch=amd64&distro=debian-10&upstream=icu", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/usr/share/doc/libicu63/copyright" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/libicu63:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "31687" + }, + { + "name": "syft:metadata:source", + "value": "icu" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libidn2-0@2.0.5-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=5a5081d247582e95&upstream=libidn2", + "type": "library", + "publisher": "Debian Libidn team ", + "name": "libidn2-0", + "version": "2.0.5-1+deb10u1", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "id": "LGPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-3.0-or-later" + } + }, + { + "license": { + "name": "Unicode" + } + } + ], + "cpe": "cpe:2.3:a:libidn2-0:libidn2-0:2.0.5-1\\+deb10u1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libidn2-0@2.0.5-1%2Bdeb10u1?arch=amd64&distro=debian-10&upstream=libidn2", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libidn2-0:libidn2_0:2.0.5-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libidn2_0:libidn2-0:2.0.5-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libidn2_0:libidn2_0:2.0.5-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libidn2:libidn2-0:2.0.5-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libidn2:libidn2_0:2.0.5-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libidn2-0/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libidn2-0:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "280" + }, + { + "name": "syft:metadata:source", + "value": "libidn2" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libjansson4@2.12-1?arch=amd64&distro=debian-10&package-id=88fb69b90900ef4f&upstream=jansson", + "type": "library", + "publisher": "Alessandro Ghedini ", + "name": "libjansson4", + "version": "2.12-1", + "licenses": [ + { + "license": { + "name": "Expat" + } + } + ], + "cpe": "cpe:2.3:a:libjansson4:libjansson4:2.12-1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libjansson4@2.12-1?arch=amd64&distro=debian-10&upstream=jansson", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/usr/share/doc/libjansson4/copyright" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/libjansson4:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "87" + }, + { + "name": "syft:metadata:source", + "value": "jansson" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libk5crypto3@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=04ecc244c55268d8&upstream=krb5", + "type": "library", + "publisher": "Sam Hartman ", + "name": "libk5crypto3", + "version": "1.17-3+deb10u2", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + } + ], + "cpe": "cpe:2.3:a:libk5crypto3:libk5crypto3:1.17-3\\+deb10u2:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libk5crypto3@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&upstream=krb5", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/usr/share/doc/libk5crypto3/copyright" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/libk5crypto3:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "313" + }, + { + "name": "syft:metadata:source", + "value": "krb5" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libkeyutils1@1.6-6?arch=amd64&distro=debian-10&package-id=1ed46086dbffc087&upstream=keyutils", + "type": "library", + "publisher": "Christian Kastner ", + "name": "libkeyutils1", + "version": "1.6-6", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.0-or-later" + } + } + ], + "cpe": "cpe:2.3:a:libkeyutils1:libkeyutils1:1.6-6:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libkeyutils1@1.6-6?arch=amd64&distro=debian-10&upstream=keyutils", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/usr/share/doc/libkeyutils1/copyright" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/libkeyutils1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "45" + }, + { + "name": "syft:metadata:source", + "value": "keyutils" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libkrb5-3@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=2702e37fa523f601&upstream=krb5", + "type": "library", + "publisher": "Sam Hartman ", + "name": "libkrb5-3", + "version": "1.17-3+deb10u2", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + } + ], + "cpe": "cpe:2.3:a:libkrb5-3:libkrb5-3:1.17-3\\+deb10u2:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libkrb5-3@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&upstream=krb5", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libkrb5-3:libkrb5_3:1.17-3\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libkrb5_3:libkrb5-3:1.17-3\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libkrb5_3:libkrb5_3:1.17-3\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libkrb5:libkrb5-3:1.17-3\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libkrb5:libkrb5_3:1.17-3\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/usr/share/doc/libkrb5-3/copyright" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/libkrb5-3:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "1134" + }, + { + "name": "syft:metadata:source", + "value": "krb5" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libkrb5support0@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=23be6b473ec0b06b&upstream=krb5", + "type": "library", + "publisher": "Sam Hartman ", + "name": "libkrb5support0", + "version": "1.17-3+deb10u2", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + } + ], + "cpe": "cpe:2.3:a:libkrb5support0:libkrb5support0:1.17-3\\+deb10u2:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libkrb5support0@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&upstream=krb5", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/usr/share/doc/libkrb5support0/copyright" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/libkrb5support0:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "170" + }, + { + "name": "syft:metadata:source", + "value": "krb5" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libldap-2.4-2@2.4.47%2Bdfsg-3%2Bdeb10u6?arch=amd64&distro=debian-10&package-id=b63707706e516b73&upstream=openldap", + "type": "library", + "publisher": "Debian OpenLDAP Maintainers ", + "name": "libldap-2.4-2", + "version": "2.4.47+dfsg-3+deb10u6", + "licenses": [ + { + "license": { + "name": "LicenseRef-sha256:0690f1ee382f98e95b446743db55395641d5e258de65939e9cb1c660d67a43a8" + } + } + ], + "cpe": "cpe:2.3:a:libldap-2.4-2:libldap-2.4-2:2.4.47\\+dfsg-3\\+deb10u6:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libldap-2.4-2@2.4.47%2Bdfsg-3%2Bdeb10u6?arch=amd64&distro=debian-10&upstream=openldap", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libldap-2.4-2:libldap_2.4_2:2.4.47\\+dfsg-3\\+deb10u6:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libldap_2.4_2:libldap-2.4-2:2.4.47\\+dfsg-3\\+deb10u6:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libldap_2.4_2:libldap_2.4_2:2.4.47\\+dfsg-3\\+deb10u6:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libldap-2.4:libldap-2.4-2:2.4.47\\+dfsg-3\\+deb10u6:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libldap-2.4:libldap_2.4_2:2.4.47\\+dfsg-3\\+deb10u6:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libldap_2.4:libldap-2.4-2:2.4.47\\+dfsg-3\\+deb10u6:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libldap_2.4:libldap_2.4_2:2.4.47\\+dfsg-3\\+deb10u6:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libldap:libldap-2.4-2:2.4.47\\+dfsg-3\\+deb10u6:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libldap:libldap_2.4_2:2.4.47\\+dfsg-3\\+deb10u6:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:2:path", + "value": "/usr/share/doc/libldap-2.4-2/copyright" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:3:path", + "value": "/var/lib/dpkg/info/libldap-2.4-2:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "526" + }, + { + "name": "syft:metadata:source", + "value": "openldap" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libldap-common@2.4.47%2Bdfsg-3%2Bdeb10u6?arch=all&distro=debian-10&package-id=f04113280174888f&upstream=openldap", + "type": "library", + "publisher": "Debian OpenLDAP Maintainers ", + "name": "libldap-common", + "version": "2.4.47+dfsg-3+deb10u6", + "licenses": [ + { + "license": { + "name": "LicenseRef-sha256:0690f1ee382f98e95b446743db55395641d5e258de65939e9cb1c660d67a43a8" + } + } + ], + "cpe": "cpe:2.3:a:libldap-common:libldap-common:2.4.47\\+dfsg-3\\+deb10u6:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libldap-common@2.4.47%2Bdfsg-3%2Bdeb10u6?arch=all&distro=debian-10&upstream=openldap", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libldap-common:libldap_common:2.4.47\\+dfsg-3\\+deb10u6:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libldap_common:libldap-common:2.4.47\\+dfsg-3\\+deb10u6:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libldap_common:libldap_common:2.4.47\\+dfsg-3\\+deb10u6:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libldap:libldap-common:2.4.47\\+dfsg-3\\+deb10u6:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libldap:libldap_common:2.4.47\\+dfsg-3\\+deb10u6:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:2:path", + "value": "/usr/share/doc/libldap-common/copyright" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:3:path", + "value": "/var/lib/dpkg/info/libldap-common.conffiles" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libldap-common.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/libldap-common.list" + }, + { + "name": "syft:metadata:installedSize", + "value": "113" + }, + { + "name": "syft:metadata:source", + "value": "openldap" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/liblua5.2-0@5.2.4-1.1%2Bb2?arch=amd64&distro=debian-10&package-id=60163e6ffcd36f87&upstream=lua5.2%405.2.4-1.1", + "type": "library", + "publisher": "Enrico Tassi ", + "name": "liblua5.2-0", + "version": "5.2.4-1.1+b2", + "licenses": [ + { + "license": { + "name": "Expat" + } + } + ], + "cpe": "cpe:2.3:a:liblua5.2-0:liblua5.2-0:5.2.4-1.1\\+b2:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/liblua5.2-0@5.2.4-1.1%2Bb2?arch=amd64&distro=debian-10&upstream=lua5.2%405.2.4-1.1", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:liblua5.2-0:liblua5.2_0:5.2.4-1.1\\+b2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:liblua5.2_0:liblua5.2-0:5.2.4-1.1\\+b2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:liblua5.2_0:liblua5.2_0:5.2.4-1.1\\+b2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:liblua5.2:liblua5.2-0:5.2.4-1.1\\+b2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:liblua5.2:liblua5.2_0:5.2.4-1.1\\+b2:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/usr/share/doc/liblua5.2-0/copyright" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/liblua5.2-0:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "425" + }, + { + "name": "syft:metadata:source", + "value": "lua5.2" + }, + { + "name": "syft:metadata:sourceVersion", + "value": "5.2.4-1.1" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/liblz4-1@1.8.3-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=2ee01fd2c453e926&upstream=lz4", + "type": "library", + "publisher": "Nobuhiro Iwamatsu ", + "name": "liblz4-1", + "version": "1.8.3-1+deb10u1", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + } + ], + "cpe": "cpe:2.3:a:liblz4-1:liblz4-1:1.8.3-1\\+deb10u1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/liblz4-1@1.8.3-1%2Bdeb10u1?arch=amd64&distro=debian-10&upstream=lz4", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:liblz4-1:liblz4_1:1.8.3-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:liblz4_1:liblz4-1:1.8.3-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:liblz4_1:liblz4_1:1.8.3-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:liblz4:liblz4-1:1.8.3-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:liblz4:liblz4_1:1.8.3-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/liblz4-1/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/liblz4-1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "141" + }, + { + "name": "syft:metadata:source", + "value": "lz4" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/liblzma5@5.2.4-1?arch=amd64&distro=debian-10&package-id=c32191f717ec58de&upstream=xz-utils", + "type": "library", + "publisher": "Jonathan Nieder ", + "name": "liblzma5", + "version": "5.2.4-1", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1-or-later" + } + }, + { + "license": { + "name": "Autoconf" + } + }, + { + "license": { + "name": "PD" + } + }, + { + "license": { + "name": "PD-debian" + } + }, + { + "license": { + "name": "config-h" + } + }, + { + "license": { + "name": "noderivs" + } + }, + { + "license": { + "name": "permissive-fsf" + } + }, + { + "license": { + "name": "permissive-nowarranty" + } + }, + { + "license": { + "name": "probably-PD" + } + } + ], + "cpe": "cpe:2.3:a:liblzma5:liblzma5:5.2.4-1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/liblzma5@5.2.4-1?arch=amd64&distro=debian-10&upstream=xz-utils", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/liblzma5/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/liblzma5:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "263" + }, + { + "name": "syft:metadata:source", + "value": "xz-utils" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libmount1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=c6f6118ba99c54cb&upstream=util-linux", + "type": "library", + "publisher": "LaMont Jones ", + "name": "libmount1", + "version": "2.33.1-0.1", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + }, + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "BSD-4-Clause" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1-or-later" + } + }, + { + "license": { + "id": "LGPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-3.0-or-later" + } + }, + { + "license": { + "id": "MIT" + } + }, + { + "license": { + "name": "LGPL" + } + }, + { + "license": { + "name": "public-domain" + } + } + ], + "cpe": "cpe:2.3:a:libmount1:libmount1:2.33.1-0.1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libmount1@2.33.1-0.1?arch=amd64&distro=debian-10&upstream=util-linux", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libmount1/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libmount1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "475" + }, + { + "name": "syft:metadata:source", + "value": "util-linux" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libncursesw6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=6c56928a7efb44d4&upstream=ncurses", + "type": "library", + "publisher": "Craig Small ", + "name": "libncursesw6", + "version": "6.1+20181013-2+deb10u2", + "licenses": [ + { + "license": { + "name": "LicenseRef-sha256:5e8ee902c8906ddb7779fd36dc9979cb08b51fbebf7c0b1a9aeb78af382af590" + } + } + ], + "cpe": "cpe:2.3:a:libncursesw6:libncursesw6:6.1\\+20181013-2\\+deb10u2:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libncursesw6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&upstream=ncurses", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libtinfo6/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libncursesw6:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "411" + }, + { + "name": "syft:metadata:source", + "value": "ncurses" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libnettle6@3.4.1-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=89d7efaea95993d3&upstream=nettle", + "type": "library", + "publisher": "Magnus Holmgren ", + "name": "libnettle6", + "version": "3.4.1-1+deb10u1", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-or-later" + } + }, + { + "license": { + "name": "GAP" + } + }, + { + "license": { + "name": "GPL" + } + }, + { + "license": { + "name": "LGPL" + } + }, + { + "license": { + "name": "other" + } + }, + { + "license": { + "name": "public-domain" + } + } + ], + "cpe": "cpe:2.3:a:libnettle6:libnettle6:3.4.1-1\\+deb10u1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libnettle6@3.4.1-1%2Bdeb10u1?arch=amd64&distro=debian-10&upstream=nettle", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libnettle6/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libnettle6:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "380" + }, + { + "name": "syft:metadata:source", + "value": "nettle" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libnghttp2-14@1.36.0-2%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=0ee3c902a7004593&upstream=nghttp2", + "type": "library", + "publisher": "Tomasz Buchert ", + "name": "libnghttp2-14", + "version": "1.36.0-2+deb10u1", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "id": "MIT" + } + }, + { + "license": { + "name": "Expat" + } + }, + { + "license": { + "name": "SIL-OFL-1.1" + } + }, + { + "license": { + "name": "all-permissive" + } + } + ], + "cpe": "cpe:2.3:a:libnghttp2-14:libnghttp2-14:1.36.0-2\\+deb10u1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libnghttp2-14@1.36.0-2%2Bdeb10u1?arch=amd64&distro=debian-10&upstream=nghttp2", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libnghttp2-14:libnghttp2_14:1.36.0-2\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libnghttp2_14:libnghttp2-14:1.36.0-2\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libnghttp2_14:libnghttp2_14:1.36.0-2\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libnghttp2:libnghttp2-14:1.36.0-2\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libnghttp2:libnghttp2_14:1.36.0-2\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/usr/share/doc/libnghttp2-14/copyright" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/libnghttp2-14:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "210" + }, + { + "name": "syft:metadata:source", + "value": "nghttp2" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libp11-kit0@0.23.15-2%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=dac1be12b689bc10&upstream=p11-kit", + "type": "library", + "publisher": "Debian GnuTLS Maintainers ", + "name": "libp11-kit0", + "version": "0.23.15-2+deb10u1", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "ISC" + } + }, + { + "license": { + "name": "ISC+IBM" + } + }, + { + "license": { + "name": "permissive-like-automake-output" + } + }, + { + "license": { + "name": "same-as-rest-of-p11kit" + } + } + ], + "cpe": "cpe:2.3:a:libp11-kit0:libp11-kit0:0.23.15-2\\+deb10u1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libp11-kit0@0.23.15-2%2Bdeb10u1?arch=amd64&distro=debian-10&upstream=p11-kit", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libp11-kit0:libp11_kit0:0.23.15-2\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libp11_kit0:libp11-kit0:0.23.15-2\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libp11_kit0:libp11_kit0:0.23.15-2\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libp11:libp11-kit0:0.23.15-2\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libp11:libp11_kit0:0.23.15-2\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libp11-kit0/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libp11-kit0:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "1365" + }, + { + "name": "syft:metadata:source", + "value": "p11-kit" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libpam-modules@1.3.1-5?arch=amd64&distro=debian-10&package-id=5913b683bb6ecea4&upstream=pam", + "type": "library", + "publisher": "Steve Langasek ", + "name": "libpam-modules", + "version": "1.3.1-5", + "licenses": [ + { + "license": { + "name": "GPL" + } + } + ], + "cpe": "cpe:2.3:a:libpam-modules:libpam-modules:1.3.1-5:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libpam-modules@1.3.1-5?arch=amd64&distro=debian-10&upstream=pam", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam-modules:libpam_modules:1.3.1-5:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam_modules:libpam-modules:1.3.1-5:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam_modules:libpam_modules:1.3.1-5:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam:libpam-modules:1.3.1-5:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam:libpam_modules:1.3.1-5:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libpam-modules/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libpam-modules:amd64.conffiles" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/libpam-modules:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "1059" + }, + { + "name": "syft:metadata:source", + "value": "pam" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libpam-modules-bin@1.3.1-5?arch=amd64&distro=debian-10&package-id=631d9f9526108591&upstream=pam", + "type": "library", + "publisher": "Steve Langasek ", + "name": "libpam-modules-bin", + "version": "1.3.1-5", + "licenses": [ + { + "license": { + "name": "GPL" + } + } + ], + "cpe": "cpe:2.3:a:libpam-modules-bin:libpam-modules-bin:1.3.1-5:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libpam-modules-bin@1.3.1-5?arch=amd64&distro=debian-10&upstream=pam", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam-modules-bin:libpam_modules_bin:1.3.1-5:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam_modules_bin:libpam-modules-bin:1.3.1-5:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam_modules_bin:libpam_modules_bin:1.3.1-5:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam-modules:libpam-modules-bin:1.3.1-5:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam-modules:libpam_modules_bin:1.3.1-5:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam_modules:libpam-modules-bin:1.3.1-5:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam_modules:libpam_modules_bin:1.3.1-5:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam:libpam-modules-bin:1.3.1-5:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam:libpam_modules_bin:1.3.1-5:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libpam-modules-bin/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libpam-modules-bin.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/libpam-modules-bin.list" + }, + { + "name": "syft:metadata:installedSize", + "value": "238" + }, + { + "name": "syft:metadata:source", + "value": "pam" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libpam-runtime@1.3.1-5?arch=all&distro=debian-10&package-id=25a1580763811c2a&upstream=pam", + "type": "library", + "publisher": "Steve Langasek ", + "name": "libpam-runtime", + "version": "1.3.1-5", + "licenses": [ + { + "license": { + "name": "GPL" + } + } + ], + "cpe": "cpe:2.3:a:libpam-runtime:libpam-runtime:1.3.1-5:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libpam-runtime@1.3.1-5?arch=all&distro=debian-10&upstream=pam", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam-runtime:libpam_runtime:1.3.1-5:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam_runtime:libpam-runtime:1.3.1-5:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam_runtime:libpam_runtime:1.3.1-5:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam:libpam-runtime:1.3.1-5:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam:libpam_runtime:1.3.1-5:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:10:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:10:path", + "value": "/var/lib/dpkg/info/libpam-runtime.templates" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libpam-runtime/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libpam-runtime.conffiles" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/libpam-runtime.md5sums" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/libpam-runtime.list" + }, + { + "name": "syft:location:7:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:7:path", + "value": "/var/lib/dpkg/info/libpam-runtime.postinst" + }, + { + "name": "syft:location:8:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:8:path", + "value": "/var/lib/dpkg/info/libpam-runtime.postrm" + }, + { + "name": "syft:location:9:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:9:path", + "value": "/var/lib/dpkg/info/libpam-runtime.prerm" + }, + { + "name": "syft:metadata:installedSize", + "value": "1072" + }, + { + "name": "syft:metadata:source", + "value": "pam" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libpam0g@1.3.1-5?arch=amd64&distro=debian-10&package-id=75c54a61b843e467&upstream=pam", + "type": "library", + "publisher": "Steve Langasek ", + "name": "libpam0g", + "version": "1.3.1-5", + "licenses": [ + { + "license": { + "name": "GPL" + } + } + ], + "cpe": "cpe:2.3:a:libpam0g:libpam0g:1.3.1-5:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libpam0g@1.3.1-5?arch=amd64&distro=debian-10&upstream=pam", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libpam0g/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libpam0g:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "244" + }, + { + "name": "syft:metadata:source", + "value": "pam" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libpcre3@2%3A8.39-12?arch=amd64&distro=debian-10&package-id=35b7de3a80d53d59&upstream=pcre3", + "type": "library", + "publisher": "Matthew Vernon ", + "name": "libpcre3", + "version": "2:8.39-12", + "licenses": [ + { + "license": { + "name": "LicenseRef-sha256:ac9276490d2fa167442ae1aae33926514ad10c8886baa40046c5e367fccc5938" + } + } + ], + "cpe": "cpe:2.3:a:libpcre3:libpcre3:2\\:8.39-12:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libpcre3@2%3A8.39-12?arch=amd64&distro=debian-10&upstream=pcre3", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libpcre3/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libpcre3:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "673" + }, + { + "name": "syft:metadata:source", + "value": "pcre3" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libpsl5@0.20.2-2?arch=amd64&distro=debian-10&package-id=409f4da8465b655e&upstream=libpsl", + "type": "library", + "publisher": "Tim Rühsen ", + "name": "libpsl5", + "version": "0.20.2-2", + "licenses": [ + { + "license": { + "id": "MIT" + } + }, + { + "license": { + "name": "Chromium" + } + } + ], + "cpe": "cpe:2.3:a:libpsl5:libpsl5:0.20.2-2:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libpsl5@0.20.2-2?arch=amd64&distro=debian-10&upstream=libpsl", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/usr/share/doc/libpsl5/copyright" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/libpsl5:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "90" + }, + { + "name": "syft:metadata:source", + "value": "libpsl" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/librtmp1@2.4%2B20151223.gitfa8646d.1-2?arch=amd64&distro=debian-10&package-id=4e31bab7a6ca0f63&upstream=rtmpdump", + "type": "library", + "publisher": "Debian Multimedia Maintainers ", + "name": "librtmp1", + "version": "2.4+20151223.gitfa8646d.1-2", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + } + ], + "cpe": "cpe:2.3:a:librtmp1:librtmp1:2.4\\+20151223.gitfa8646d.1-2:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/librtmp1@2.4%2B20151223.gitfa8646d.1-2?arch=amd64&distro=debian-10&upstream=rtmpdump", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/usr/share/doc/librtmp1/copyright" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/librtmp1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "141" + }, + { + "name": "syft:metadata:source", + "value": "rtmpdump" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libsasl2-2@2.1.27%2Bdfsg-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=56eb272c9677fc6a&upstream=cyrus-sasl2", + "type": "library", + "publisher": "Debian Cyrus Team ", + "name": "libsasl2-2", + "version": "2.1.27+dfsg-1+deb10u1", + "licenses": [ + { + "license": { + "id": "BSD-4-Clause" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + } + ], + "cpe": "cpe:2.3:a:libsasl2-2:libsasl2-2:2.1.27\\+dfsg-1\\+deb10u1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libsasl2-2@2.1.27%2Bdfsg-1%2Bdeb10u1?arch=amd64&distro=debian-10&upstream=cyrus-sasl2", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsasl2-2:libsasl2_2:2.1.27\\+dfsg-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsasl2_2:libsasl2-2:2.1.27\\+dfsg-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsasl2_2:libsasl2_2:2.1.27\\+dfsg-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsasl2:libsasl2-2:2.1.27\\+dfsg-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsasl2:libsasl2_2:2.1.27\\+dfsg-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:2:path", + "value": "/usr/share/doc/libsasl2-2/copyright" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:3:path", + "value": "/var/lib/dpkg/info/libsasl2-2:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "188" + }, + { + "name": "syft:metadata:source", + "value": "cyrus-sasl2" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libsasl2-modules-db@2.1.27%2Bdfsg-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=0dddbf5f31db948d&upstream=cyrus-sasl2", + "type": "library", + "publisher": "Debian Cyrus Team ", + "name": "libsasl2-modules-db", + "version": "2.1.27+dfsg-1+deb10u1", + "licenses": [ + { + "license": { + "id": "BSD-4-Clause" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + } + ], + "cpe": "cpe:2.3:a:libsasl2-modules-db:libsasl2-modules-db:2.1.27\\+dfsg-1\\+deb10u1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libsasl2-modules-db@2.1.27%2Bdfsg-1%2Bdeb10u1?arch=amd64&distro=debian-10&upstream=cyrus-sasl2", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsasl2-modules-db:libsasl2_modules_db:2.1.27\\+dfsg-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsasl2_modules_db:libsasl2-modules-db:2.1.27\\+dfsg-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsasl2_modules_db:libsasl2_modules_db:2.1.27\\+dfsg-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsasl2-modules:libsasl2-modules-db:2.1.27\\+dfsg-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsasl2-modules:libsasl2_modules_db:2.1.27\\+dfsg-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsasl2_modules:libsasl2-modules-db:2.1.27\\+dfsg-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsasl2_modules:libsasl2_modules_db:2.1.27\\+dfsg-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsasl2:libsasl2-modules-db:2.1.27\\+dfsg-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsasl2:libsasl2_modules_db:2.1.27\\+dfsg-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:2:path", + "value": "/usr/share/doc/libsasl2-modules-db/copyright" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:3:path", + "value": "/var/lib/dpkg/info/libsasl2-modules-db:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "101" + }, + { + "name": "syft:metadata:source", + "value": "cyrus-sasl2" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libseccomp2@2.3.3-4?arch=amd64&distro=debian-10&package-id=b46e6445b6660a4d&upstream=libseccomp", + "type": "library", + "publisher": "Kees Cook ", + "name": "libseccomp2", + "version": "2.3.3-4", + "licenses": [ + { + "license": { + "id": "LGPL-2.1-only" + } + } + ], + "cpe": "cpe:2.3:a:libseccomp2:libseccomp2:2.3.3-4:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libseccomp2@2.3.3-4?arch=amd64&distro=debian-10&upstream=libseccomp", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libseccomp2/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libseccomp2:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "306" + }, + { + "name": "syft:metadata:source", + "value": "libseccomp" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libselinux1@2.8-1%2Bb1?arch=amd64&distro=debian-10&package-id=49addc4e237b1a0d&upstream=libselinux%402.8-1", + "type": "library", + "publisher": "Debian SELinux maintainers ", + "name": "libselinux1", + "version": "2.8-1+b1", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + } + ], + "cpe": "cpe:2.3:a:libselinux1:libselinux1:2.8-1\\+b1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libselinux1@2.8-1%2Bb1?arch=amd64&distro=debian-10&upstream=libselinux%402.8-1", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libselinux1/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libselinux1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "194" + }, + { + "name": "syft:metadata:source", + "value": "libselinux" + }, + { + "name": "syft:metadata:sourceVersion", + "value": "2.8-1" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libsemanage-common@2.8-2?arch=all&distro=debian-10&package-id=f140402ff5125f8f&upstream=libsemanage", + "type": "library", + "publisher": "Debian SELinux maintainers ", + "name": "libsemanage-common", + "version": "2.8-2", + "licenses": [ + { + "license": { + "name": "GPL" + } + }, + { + "license": { + "name": "LGPL" + } + } + ], + "cpe": "cpe:2.3:a:libsemanage-common:libsemanage-common:2.8-2:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libsemanage-common@2.8-2?arch=all&distro=debian-10&upstream=libsemanage", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsemanage-common:libsemanage_common:2.8-2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsemanage_common:libsemanage-common:2.8-2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsemanage_common:libsemanage_common:2.8-2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsemanage:libsemanage-common:2.8-2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsemanage:libsemanage_common:2.8-2:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libsemanage-common/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libsemanage-common.conffiles" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/libsemanage-common.md5sums" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/libsemanage-common.list" + }, + { + "name": "syft:metadata:installedSize", + "value": "30" + }, + { + "name": "syft:metadata:source", + "value": "libsemanage" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libsemanage1@2.8-2?arch=amd64&distro=debian-10&package-id=ee0c44fcf6fdf849&upstream=libsemanage", + "type": "library", + "publisher": "Debian SELinux maintainers ", + "name": "libsemanage1", + "version": "2.8-2", + "licenses": [ + { + "license": { + "name": "GPL" + } + }, + { + "license": { + "name": "LGPL" + } + } + ], + "cpe": "cpe:2.3:a:libsemanage1:libsemanage1:2.8-2:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libsemanage1@2.8-2?arch=amd64&distro=debian-10&upstream=libsemanage", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libsemanage1/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libsemanage1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "301" + }, + { + "name": "syft:metadata:source", + "value": "libsemanage" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libsepol1@2.8-1?arch=amd64&distro=debian-10&package-id=e475ad99443adf15&upstream=libsepol", + "type": "library", + "publisher": "Debian SELinux maintainers ", + "name": "libsepol1", + "version": "2.8-1", + "licenses": [ + { + "license": { + "name": "GPL" + } + }, + { + "license": { + "name": "LGPL" + } + } + ], + "cpe": "cpe:2.3:a:libsepol1:libsepol1:2.8-1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libsepol1@2.8-1?arch=amd64&distro=debian-10&upstream=libsepol", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libsepol1/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libsepol1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "724" + }, + { + "name": "syft:metadata:source", + "value": "libsepol" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libsmartcols1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=a95e9a21c0932258&upstream=util-linux", + "type": "library", + "publisher": "LaMont Jones ", + "name": "libsmartcols1", + "version": "2.33.1-0.1", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + }, + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "BSD-4-Clause" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1-or-later" + } + }, + { + "license": { + "id": "LGPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-3.0-or-later" + } + }, + { + "license": { + "id": "MIT" + } + }, + { + "license": { + "name": "LGPL" + } + }, + { + "license": { + "name": "public-domain" + } + } + ], + "cpe": "cpe:2.3:a:libsmartcols1:libsmartcols1:2.33.1-0.1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libsmartcols1@2.33.1-0.1?arch=amd64&distro=debian-10&upstream=util-linux", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libsmartcols1/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libsmartcols1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "314" + }, + { + "name": "syft:metadata:source", + "value": "util-linux" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libss2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=63fa318f9eefbc75&upstream=e2fsprogs", + "type": "library", + "publisher": "Theodore Y. Ts'o ", + "name": "libss2", + "version": "1.44.5-1+deb10u3", + "licenses": [ + { + "license": { + "name": "LicenseRef-sha256:6f717a1464301a641ac17e7301f1a1b221da802e8edf8cf4bc963721d487b146" + } + } + ], + "cpe": "cpe:2.3:a:libss2:libss2:1.44.5-1\\+deb10u3:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libss2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&upstream=e2fsprogs", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libss2/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libss2:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "104" + }, + { + "name": "syft:metadata:source", + "value": "e2fsprogs" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libssh2-1@1.8.0-2.1?arch=amd64&distro=debian-10&package-id=16faa100e8d6ebcf&upstream=libssh2", + "type": "library", + "publisher": "Mikhail Gusarov ", + "name": "libssh2-1", + "version": "1.8.0-2.1", + "licenses": [ + { + "license": { + "name": "BSD3" + } + } + ], + "cpe": "cpe:2.3:a:libssh2-1:libssh2-1:1.8.0-2.1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libssh2-1@1.8.0-2.1?arch=amd64&distro=debian-10&upstream=libssh2", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libssh2-1:libssh2_1:1.8.0-2.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libssh2_1:libssh2-1:1.8.0-2.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libssh2_1:libssh2_1:1.8.0-2.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libssh2:libssh2-1:1.8.0-2.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libssh2:libssh2_1:1.8.0-2.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/usr/share/doc/libssh2-1/copyright" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/libssh2-1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "270" + }, + { + "name": "syft:metadata:source", + "value": "libssh2" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libssl1.1@1.1.1d-0%2Bdeb10u7?arch=amd64&distro=debian-10&package-id=0aa101ed766132f9&upstream=openssl", + "type": "library", + "publisher": "Debian OpenSSL Team ", + "name": "libssl1.1", + "version": "1.1.1d-0+deb10u7", + "licenses": [ + { + "license": { + "id": "OpenSSL" + } + } + ], + "cpe": "cpe:2.3:a:libssl1.1:libssl1.1:1.1.1d-0\\+deb10u7:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libssl1.1@1.1.1d-0%2Bdeb10u7?arch=amd64&distro=debian-10&upstream=openssl", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:2:path", + "value": "/usr/share/doc/libssl1.1/copyright" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:3:path", + "value": "/var/lib/dpkg/info/libssl1.1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "4078" + }, + { + "name": "syft:metadata:source", + "value": "openssl" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libstdc%2B%2B6@8.3.0-6?arch=amd64&distro=debian-10&package-id=f6ea4c954058336d&upstream=gcc-8", + "type": "library", + "publisher": "Debian GCC Maintainers ", + "name": "libstdc++6", + "version": "8.3.0-6", + "licenses": [ + { + "license": { + "id": "GFDL-1.2-only" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "name": "Artistic" + } + }, + { + "license": { + "name": "GPL" + } + }, + { + "license": { + "name": "LGPL" + } + } + ], + "cpe": "cpe:2.3:a:libstdc\\+\\+6:libstdc\\+\\+6:8.3.0-6:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libstdc%2B%2B6@8.3.0-6?arch=amd64&distro=debian-10&upstream=gcc-8", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/gcc-8-base/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libstdc++6:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "2017" + }, + { + "name": "syft:metadata:source", + "value": "gcc-8" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libsystemd0@241-7~deb10u8?arch=amd64&distro=debian-10&package-id=af5fa602069b9853&upstream=systemd", + "type": "library", + "publisher": "Debian systemd Maintainers ", + "name": "libsystemd0", + "version": "241-7~deb10u8", + "licenses": [ + { + "license": { + "id": "CC0-1.0" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1-or-later" + } + }, + { + "license": { + "name": "Expat" + } + }, + { + "license": { + "name": "public-domain" + } + } + ], + "cpe": "cpe:2.3:a:libsystemd0:libsystemd0:241-7\\~deb10u8:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libsystemd0@241-7~deb10u8?arch=amd64&distro=debian-10&upstream=systemd", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libsystemd0/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libsystemd0:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "768" + }, + { + "name": "syft:metadata:source", + "value": "systemd" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libtasn1-6@4.13-3?arch=amd64&distro=debian-10&package-id=4472b190d0061f51", + "type": "library", + "publisher": "Debian GnuTLS Maintainers ", + "name": "libtasn1-6", + "version": "4.13-3", + "licenses": [ + { + "license": { + "id": "GFDL-1.3-only" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "name": "LGPL" + } + } + ], + "cpe": "cpe:2.3:a:libtasn1-6:libtasn1-6:4.13-3:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libtasn1-6@4.13-3?arch=amd64&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libtasn1-6:libtasn1_6:4.13-3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libtasn1_6:libtasn1-6:4.13-3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libtasn1_6:libtasn1_6:4.13-3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libtasn1:libtasn1-6:4.13-3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libtasn1:libtasn1_6:4.13-3:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libtasn1-6/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libtasn1-6:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "112" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libtinfo6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=4d50fedeec9db609&upstream=ncurses", + "type": "library", + "publisher": "Craig Small ", + "name": "libtinfo6", + "version": "6.1+20181013-2+deb10u2", + "licenses": [ + { + "license": { + "name": "LicenseRef-sha256:5e8ee902c8906ddb7779fd36dc9979cb08b51fbebf7c0b1a9aeb78af382af590" + } + } + ], + "cpe": "cpe:2.3:a:libtinfo6:libtinfo6:6.1\\+20181013-2\\+deb10u2:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libtinfo6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&upstream=ncurses", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libtinfo6/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libtinfo6:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "521" + }, + { + "name": "syft:metadata:source", + "value": "ncurses" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libudev1@241-7~deb10u8?arch=amd64&distro=debian-10&package-id=1650009f99e14534&upstream=systemd", + "type": "library", + "publisher": "Debian systemd Maintainers ", + "name": "libudev1", + "version": "241-7~deb10u8", + "licenses": [ + { + "license": { + "id": "CC0-1.0" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1-or-later" + } + }, + { + "license": { + "name": "Expat" + } + }, + { + "license": { + "name": "public-domain" + } + } + ], + "cpe": "cpe:2.3:a:libudev1:libudev1:241-7\\~deb10u8:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libudev1@241-7~deb10u8?arch=amd64&distro=debian-10&upstream=systemd", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libudev1/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libudev1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "259" + }, + { + "name": "syft:metadata:source", + "value": "systemd" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libunistring2@0.9.10-1?arch=amd64&distro=debian-10&package-id=337ddb48ec21ed97&upstream=libunistring", + "type": "library", + "publisher": "Jörg Frings-Fürst ", + "name": "libunistring2", + "version": "0.9.10-1", + "licenses": [ + { + "license": { + "id": "GFDL-1.2-only" + } + }, + { + "license": { + "id": "GFDL-1.2-or-later" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "id": "LGPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-3.0-or-later" + } + }, + { + "license": { + "id": "MIT" + } + }, + { + "license": { + "name": "FreeSoftware" + } + } + ], + "cpe": "cpe:2.3:a:libunistring2:libunistring2:0.9.10-1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libunistring2@0.9.10-1?arch=amd64&distro=debian-10&upstream=libunistring", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libunistring2/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libunistring2:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "1600" + }, + { + "name": "syft:metadata:source", + "value": "libunistring" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libuuid1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=cc943ca139d0e67b&upstream=util-linux", + "type": "library", + "publisher": "LaMont Jones ", + "name": "libuuid1", + "version": "2.33.1-0.1", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + }, + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "BSD-4-Clause" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1-or-later" + } + }, + { + "license": { + "id": "LGPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-3.0-or-later" + } + }, + { + "license": { + "id": "MIT" + } + }, + { + "license": { + "name": "LGPL" + } + }, + { + "license": { + "name": "public-domain" + } + } + ], + "cpe": "cpe:2.3:a:libuuid1:libuuid1:2.33.1-0.1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libuuid1@2.33.1-0.1?arch=amd64&distro=debian-10&upstream=util-linux", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libuuid1/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libuuid1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "120" + }, + { + "name": "syft:metadata:source", + "value": "util-linux" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libxml2@2.9.4%2Bdfsg1-7%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=2b71d5263434c464", + "type": "library", + "publisher": "Debian XML/SGML Group ", + "name": "libxml2", + "version": "2.9.4+dfsg1-7+deb10u2", + "licenses": [ + { + "license": { + "id": "ISC" + } + }, + { + "license": { + "name": "MIT-1" + } + } + ], + "cpe": "cpe:2.3:a:libxml2:libxml2:2.9.4\\+dfsg1-7\\+deb10u2:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libxml2@2.9.4%2Bdfsg1-7%2Bdeb10u2?arch=amd64&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/usr/share/doc/libxml2/copyright" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/libxml2:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "1858" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libzstd1@1.3.8%2Bdfsg-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=f15273b1b73a0197&upstream=libzstd", + "type": "library", + "publisher": "Debian Med Packaging Team ", + "name": "libzstd1", + "version": "1.3.8+dfsg-3+deb10u2", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "Zlib" + } + }, + { + "license": { + "name": "Expat" + } + } + ], + "cpe": "cpe:2.3:a:libzstd1:libzstd1:1.3.8\\+dfsg-3\\+deb10u2:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libzstd1@1.3.8%2Bdfsg-3%2Bdeb10u2?arch=amd64&distro=debian-10&upstream=libzstd", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libzstd1/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libzstd1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "666" + }, + { + "name": "syft:metadata:source", + "value": "libzstd" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/login@1%3A4.5-1.1?arch=amd64&distro=debian-10&package-id=beffe62c711b8d0b&upstream=shadow", + "type": "library", + "publisher": "Shadow package maintainers ", + "name": "login", + "version": "1:4.5-1.1", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + } + ], + "cpe": "cpe:2.3:a:login:login:1\\:4.5-1.1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/login@1%3A4.5-1.1?arch=amd64&distro=debian-10&upstream=shadow", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/login/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/login.conffiles" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/login.md5sums" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/login.list" + }, + { + "name": "syft:location:7:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:7:path", + "value": "/var/lib/dpkg/info/login.postinst" + }, + { + "name": "syft:location:8:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:8:path", + "value": "/var/lib/dpkg/info/login.preinst" + }, + { + "name": "syft:metadata:installedSize", + "value": "2695" + }, + { + "name": "syft:metadata:source", + "value": "shadow" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/lsb-base@10.2019051400?arch=all&distro=debian-10&package-id=c16dd04f5572aaed&upstream=lsb", + "type": "library", + "publisher": "Debian LSB Team ", + "name": "lsb-base", + "version": "10.2019051400", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + } + ], + "cpe": "cpe:2.3:a:lsb-base:lsb-base:10.2019051400:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/lsb-base@10.2019051400?arch=all&distro=debian-10&upstream=lsb", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:lsb-base:lsb_base:10.2019051400:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:lsb_base:lsb-base:10.2019051400:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:lsb_base:lsb_base:10.2019051400:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:lsb:lsb-base:10.2019051400:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:lsb:lsb_base:10.2019051400:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/usr/share/doc/lsb-base/copyright" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/lsb-base.md5sums" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:3:path", + "value": "/var/lib/dpkg/info/lsb-base.list" + }, + { + "name": "syft:metadata:installedSize", + "value": "49" + }, + { + "name": "syft:metadata:source", + "value": "lsb" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/mawk@1.3.3-17%2Bb3?arch=amd64&distro=debian-10&package-id=a795c3217ac08dfa&upstream=mawk%401.3.3-17", + "type": "library", + "publisher": "Steve Langasek ", + "name": "mawk", + "version": "1.3.3-17+b3", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + } + ], + "cpe": "cpe:2.3:a:mawk:mawk:1.3.3-17\\+b3:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/mawk@1.3.3-17%2Bb3?arch=amd64&distro=debian-10&upstream=mawk%401.3.3-17", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/mawk/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/mawk.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/mawk.list" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/mawk.postinst" + }, + { + "name": "syft:location:7:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:7:path", + "value": "/var/lib/dpkg/info/mawk.prerm" + }, + { + "name": "syft:metadata:installedSize", + "value": "183" + }, + { + "name": "syft:metadata:source", + "value": "mawk" + }, + { + "name": "syft:metadata:sourceVersion", + "value": "1.3.3-17" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/mount@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=0cd3087f123a0ab4&upstream=util-linux", + "type": "library", + "publisher": "LaMont Jones ", + "name": "mount", + "version": "2.33.1-0.1", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + }, + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "BSD-4-Clause" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1-or-later" + } + }, + { + "license": { + "id": "LGPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-3.0-or-later" + } + }, + { + "license": { + "id": "MIT" + } + }, + { + "license": { + "name": "LGPL" + } + }, + { + "license": { + "name": "public-domain" + } + } + ], + "cpe": "cpe:2.3:a:mount:mount:2.33.1-0.1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/mount@2.33.1-0.1?arch=amd64&distro=debian-10&upstream=util-linux", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/mount/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/mount.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/mount.list" + }, + { + "name": "syft:metadata:installedSize", + "value": "418" + }, + { + "name": "syft:metadata:source", + "value": "util-linux" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/ncurses-base@6.1%2B20181013-2%2Bdeb10u2?arch=all&distro=debian-10&package-id=3238e6b392c1b881&upstream=ncurses", + "type": "library", + "publisher": "Craig Small ", + "name": "ncurses-base", + "version": "6.1+20181013-2+deb10u2", + "licenses": [ + { + "license": { + "name": "LicenseRef-sha256:5e8ee902c8906ddb7779fd36dc9979cb08b51fbebf7c0b1a9aeb78af382af590" + } + } + ], + "cpe": "cpe:2.3:a:ncurses-base:ncurses-base:6.1\\+20181013-2\\+deb10u2:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/ncurses-base@6.1%2B20181013-2%2Bdeb10u2?arch=all&distro=debian-10&upstream=ncurses", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:ncurses-base:ncurses_base:6.1\\+20181013-2\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:ncurses_base:ncurses-base:6.1\\+20181013-2\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:ncurses_base:ncurses_base:6.1\\+20181013-2\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:ncurses:ncurses-base:6.1\\+20181013-2\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:ncurses:ncurses_base:6.1\\+20181013-2\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/ncurses-base/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/ncurses-base.conffiles" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/ncurses-base.md5sums" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/ncurses-base.list" + }, + { + "name": "syft:metadata:installedSize", + "value": "368" + }, + { + "name": "syft:metadata:source", + "value": "ncurses" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/ncurses-bin@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=68e8ed2220f015ff&upstream=ncurses", + "type": "library", + "publisher": "Craig Small ", + "name": "ncurses-bin", + "version": "6.1+20181013-2+deb10u2", + "licenses": [ + { + "license": { + "name": "LicenseRef-sha256:5e8ee902c8906ddb7779fd36dc9979cb08b51fbebf7c0b1a9aeb78af382af590" + } + } + ], + "cpe": "cpe:2.3:a:ncurses-bin:ncurses-bin:6.1\\+20181013-2\\+deb10u2:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/ncurses-bin@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&upstream=ncurses", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:ncurses-bin:ncurses_bin:6.1\\+20181013-2\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:ncurses_bin:ncurses-bin:6.1\\+20181013-2\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:ncurses_bin:ncurses_bin:6.1\\+20181013-2\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:ncurses:ncurses-bin:6.1\\+20181013-2\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:ncurses:ncurses_bin:6.1\\+20181013-2\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/ncurses-bin/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/ncurses-bin.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/ncurses-bin.list" + }, + { + "name": "syft:metadata:installedSize", + "value": "616" + }, + { + "name": "syft:metadata:source", + "value": "ncurses" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/passwd@1%3A4.5-1.1?arch=amd64&distro=debian-10&package-id=8b4ea518599f59aa&upstream=shadow", + "type": "library", + "publisher": "Shadow package maintainers ", + "name": "passwd", + "version": "1:4.5-1.1", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + } + ], + "cpe": "cpe:2.3:a:passwd:passwd:1\\:4.5-1.1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/passwd@1%3A4.5-1.1?arch=amd64&distro=debian-10&upstream=shadow", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/passwd/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/passwd.conffiles" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/passwd.md5sums" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/passwd.list" + }, + { + "name": "syft:location:7:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:7:path", + "value": "/var/lib/dpkg/info/passwd.postinst" + }, + { + "name": "syft:location:8:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:8:path", + "value": "/var/lib/dpkg/info/passwd.preinst" + }, + { + "name": "syft:metadata:installedSize", + "value": "2591" + }, + { + "name": "syft:metadata:source", + "value": "shadow" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/perl-base@5.28.1-6%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=12ef1f27f6a6900d&upstream=perl", + "type": "library", + "publisher": "Niko Tyni ", + "name": "perl-base", + "version": "5.28.1-6+deb10u1", + "licenses": [ + { + "license": { + "id": "Artistic-2.0" + } + }, + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "GPL-1.0-only" + } + }, + { + "license": { + "id": "GPL-1.0-or-later" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "Zlib" + } + }, + { + "license": { + "name": "Artistic" + } + }, + { + "license": { + "name": "Artistic-dist" + } + }, + { + "license": { + "name": "BSD-3-clause-GENERIC" + } + }, + { + "license": { + "name": "BSD-3-clause-with-weird-numbering" + } + }, + { + "license": { + "name": "BSD-4-clause-POWERDOG" + } + }, + { + "license": { + "name": "BZIP" + } + }, + { + "license": { + "name": "DONT-CHANGE-THE-GPL" + } + }, + { + "license": { + "name": "Expat" + } + }, + { + "license": { + "name": "GPL-3+-WITH-BISON-EXCEPTION" + } + }, + { + "license": { + "name": "HSIEH-BSD" + } + }, + { + "license": { + "name": "HSIEH-DERIVATIVE" + } + }, + { + "license": { + "name": "REGCOMP" + } + }, + { + "license": { + "name": "REGCOMP," + } + }, + { + "license": { + "name": "RRA-KEEP-THIS-NOTICE" + } + }, + { + "license": { + "name": "S2P" + } + }, + { + "license": { + "name": "SDBM-PUBLIC-DOMAIN" + } + }, + { + "license": { + "name": "TEXT-TABS" + } + }, + { + "license": { + "name": "Unicode" + } + } + ], + "cpe": "cpe:2.3:a:perl-base:perl-base:5.28.1-6\\+deb10u1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/perl-base@5.28.1-6%2Bdeb10u1?arch=amd64&distro=debian-10&upstream=perl", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:perl-base:perl_base:5.28.1-6\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:perl_base:perl-base:5.28.1-6\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:perl_base:perl_base:5.28.1-6\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:perl:perl-base:5.28.1-6\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:perl:perl_base:5.28.1-6\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/perl/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/perl-base.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/perl-base.list" + }, + { + "name": "syft:metadata:installedSize", + "value": "10148" + }, + { + "name": "syft:metadata:source", + "value": "perl" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/sed@4.7-1?arch=amd64&distro=debian-10&package-id=8afeab9e14add71f", + "type": "library", + "publisher": "Clint Adams ", + "name": "sed", + "version": "4.7-1", + "licenses": [ + { + "license": { + "id": "GPL-3.0-only" + } + } + ], + "cpe": "cpe:2.3:a:sed:sed:4.7-1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/sed@4.7-1?arch=amd64&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/sed/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/sed.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/sed.list" + }, + { + "name": "syft:metadata:installedSize", + "value": "883" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/sysvinit-utils@2.93-8?arch=amd64&distro=debian-10&package-id=84b2ad21b188f1d2&upstream=sysvinit", + "type": "library", + "publisher": "Debian sysvinit maintainers ", + "name": "sysvinit-utils", + "version": "2.93-8", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + } + ], + "cpe": "cpe:2.3:a:sysvinit-utils:sysvinit-utils:2.93-8:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/sysvinit-utils@2.93-8?arch=amd64&distro=debian-10&upstream=sysvinit", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:sysvinit-utils:sysvinit_utils:2.93-8:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:sysvinit_utils:sysvinit-utils:2.93-8:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:sysvinit_utils:sysvinit_utils:2.93-8:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:sysvinit:sysvinit-utils:2.93-8:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:sysvinit:sysvinit_utils:2.93-8:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/sysvinit-utils/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/sysvinit-utils.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/sysvinit-utils.list" + }, + { + "name": "syft:metadata:installedSize", + "value": "131" + }, + { + "name": "syft:metadata:source", + "value": "sysvinit" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/tar@1.30%2Bdfsg-6?arch=amd64&distro=debian-10&package-id=62da3202d5716782", + "type": "library", + "publisher": "Bdale Garbee ", + "name": "tar", + "version": "1.30+dfsg-6", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + } + ], + "cpe": "cpe:2.3:a:tar:tar:1.30\\+dfsg-6:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/tar@1.30%2Bdfsg-6?arch=amd64&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/tar/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/tar.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/tar.list" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/tar.postinst" + }, + { + "name": "syft:location:7:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:7:path", + "value": "/var/lib/dpkg/info/tar.prerm" + }, + { + "name": "syft:metadata:installedSize", + "value": "2884" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/tzdata@2021a-0%2Bdeb10u1?arch=all&distro=debian-10&package-id=11e09e914c1cd4a6", + "type": "library", + "publisher": "GNU Libc Maintainers ", + "name": "tzdata", + "version": "2021a-0+deb10u1", + "licenses": [ + { + "license": { + "name": "LicenseRef-sha256:75b41b8de75b1596a239f6fa8e4caa409de4cf985cee2943d2a94b4e96a5197d" + } + } + ], + "cpe": "cpe:2.3:a:tzdata:tzdata:2021a-0\\+deb10u1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/tzdata@2021a-0%2Bdeb10u1?arch=all&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/tzdata/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/tzdata.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/tzdata.config" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/tzdata.list" + }, + { + "name": "syft:location:7:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:7:path", + "value": "/var/lib/dpkg/info/tzdata.postinst" + }, + { + "name": "syft:location:8:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:8:path", + "value": "/var/lib/dpkg/info/tzdata.postrm" + }, + { + "name": "syft:location:9:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:9:path", + "value": "/var/lib/dpkg/info/tzdata.templates" + }, + { + "name": "syft:metadata:installedSize", + "value": "3040" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/util-linux@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=3d071e40c62fe471", + "type": "library", + "publisher": "LaMont Jones ", + "name": "util-linux", + "version": "2.33.1-0.1", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + }, + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "BSD-4-Clause" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1-or-later" + } + }, + { + "license": { + "id": "LGPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-3.0-or-later" + } + }, + { + "license": { + "id": "MIT" + } + }, + { + "license": { + "name": "LGPL" + } + }, + { + "license": { + "name": "public-domain" + } + } + ], + "cpe": "cpe:2.3:a:util-linux:util-linux:2.33.1-0.1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/util-linux@2.33.1-0.1?arch=amd64&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:util-linux:util_linux:2.33.1-0.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:util_linux:util-linux:2.33.1-0.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:util_linux:util_linux:2.33.1-0.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:util:util-linux:2.33.1-0.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:util:util_linux:2.33.1-0.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/util-linux/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/util-linux.conffiles" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/util-linux.md5sums" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/util-linux.list" + }, + { + "name": "syft:location:7:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:7:path", + "value": "/var/lib/dpkg/info/util-linux.postinst" + }, + { + "name": "syft:location:8:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:8:path", + "value": "/var/lib/dpkg/info/util-linux.postrm" + }, + { + "name": "syft:location:9:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:9:path", + "value": "/var/lib/dpkg/info/util-linux.prerm" + }, + { + "name": "syft:metadata:installedSize", + "value": "4327" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/zlib1g@1%3A1.2.11.dfsg-1?arch=amd64&distro=debian-10&package-id=bcc78aeb924eb6b8&upstream=zlib", + "type": "library", + "publisher": "Mark Brown ", + "name": "zlib1g", + "version": "1:1.2.11.dfsg-1", + "licenses": [ + { + "license": { + "id": "Zlib" + } + } + ], + "cpe": "cpe:2.3:a:zlib1g:zlib1g:1\\:1.2.11.dfsg-1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/zlib1g@1%3A1.2.11.dfsg-1?arch=amd64&distro=debian-10&upstream=zlib", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/zlib1g/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/zlib1g:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "174" + }, + { + "name": "syft:metadata:source", + "value": "zlib" + } + ] + }, + { + "bom-ref": "os:debian@10", + "type": "operating-system", + "name": "debian", + "version": "10", + "description": "Debian GNU/Linux 10 (buster)", + "swid": { + "tagId": "debian", + "name": "debian", + "version": "10" + }, + "externalReferences": [ + { + "url": "https://bugs.debian.org/", + "type": "issue-tracker" + }, + { + "url": "https://www.debian.org/", + "type": "website" + }, + { + "url": "https://www.debian.org/support", + "comment": "support", + "type": "other" + } + ], + "properties": [ + { + "name": "syft:distro:id", + "value": "debian" + }, + { + "name": "syft:distro:prettyName", + "value": "Debian GNU/Linux 10 (buster)" + }, + { + "name": "syft:distro:versionCodename", + "value": "buster" + }, + { + "name": "syft:distro:versionID", + "value": "10" + } + ] + }, + { + "bom-ref": "7647ff73f948e895", + "type": "file", + "name": "/bin/bash", + "hashes": [ + { + "alg": "SHA-1", + "content": "0533efae0065e72c1d833b9f7a678a20995bd5a6" + }, + { + "alg": "SHA-256", + "content": "059fce560704769f9ee72e095e85c77cbcd528dc21cc51d9255cfe46856b5f02" + } + ] + }, + { + "bom-ref": "d0ce5f36825566d3", + "type": "file", + "name": "/bin/cat", + "hashes": [ + { + "alg": "SHA-1", + "content": "b0c322d6803b507c89f3db104a519163e00c57eb" + }, + { + "alg": "SHA-256", + "content": "6491ea0df4ab05962dea6c303aaec1b8478caa38c3fe9345b82c55c576299141" + } + ] + }, + { + "bom-ref": "3dbe11c116109283", + "type": "file", + "name": "/bin/chgrp", + "hashes": [ + { + "alg": "SHA-1", + "content": "5136c2b91d328c29fd2ca945c0402c14b1842520" + }, + { + "alg": "SHA-256", + "content": "4d0a7056b0b20a1d99782de7db552b257ecce50b98aed6cae0d3e1f4674738e7" + } + ] + }, + { + "bom-ref": "49c3afbaecd3c2eb", + "type": "file", + "name": "/bin/chmod", + "hashes": [ + { + "alg": "SHA-1", + "content": "3611e33c16523781b7bb4cb08dd707a0daf3e6c4" + }, + { + "alg": "SHA-256", + "content": "0a6b004cc244f34b40dbfce5f5d44250a6c7788620f4c07ba869e799a23798f1" + } + ] + }, + { + "bom-ref": "8f109257280daca0", + "type": "file", + "name": "/bin/chown", + "hashes": [ + { + "alg": "SHA-1", + "content": "6113f3136c9d8cadde08b97ad99bdc1f83bea367" + }, + { + "alg": "SHA-256", + "content": "0caed90a56afdb575f9cb4279ead1ab917a6c318cfe820f162d4ebfbd7e7f95e" + } + ] + }, + { + "bom-ref": "c2dd210c24757b75", + "type": "file", + "name": "/bin/cp", + "hashes": [ + { + "alg": "SHA-1", + "content": "220687a082fb9d0dbb48e9a2b1093cbb4e9de55a" + }, + { + "alg": "SHA-256", + "content": "23f8a715ee1adb514f00825bc95faf77dc9007aeb12ce971b77cdf860ddd643a" + } + ] + }, + { + "bom-ref": "36dbfdc1a2956571", + "type": "file", + "name": "/bin/dash", + "hashes": [ + { + "alg": "SHA-1", + "content": "45ee5e210fc27623672fa59e1226122005bcd8e6" + }, + { + "alg": "SHA-256", + "content": "350b2973dd4a2d828fd7417e85b4cd7590ef353c8f7d77a4b55a9c6a11c6b571" + } + ] + }, + { + "bom-ref": "f53b7a69201f0626", + "type": "file", + "name": "/bin/date", + "hashes": [ + { + "alg": "SHA-1", + "content": "8562afe7ba4410f732c4442264bddbe237cb8042" + }, + { + "alg": "SHA-256", + "content": "65a20a37076e3376d32f1e1433ec17d12a3b1813333fb08d490306249e0d79c0" + } + ] + }, + { + "bom-ref": "fdfe50249a6fc36c", + "type": "file", + "name": "/bin/dd", + "hashes": [ + { + "alg": "SHA-1", + "content": "03b9db96085a7e127fb02dfeb7497d2d99e27110" + }, + { + "alg": "SHA-256", + "content": "7ec2f70b469593f61685271ebdf8f5ba18ce8e2c7bcb3ff7bd5b9d1f6257d2e4" + } + ] + }, + { + "bom-ref": "1e193ff3d500be9e", + "type": "file", + "name": "/bin/df", + "hashes": [ + { + "alg": "SHA-1", + "content": "894dc51c493e2cb8e96941f620a2acc9d38b66bb" + }, + { + "alg": "SHA-256", + "content": "54d02eaa1ac0ce90467c9d0dc316e29b02155302b3e8f9a62623359c580f9db2" + } + ] + }, + { + "bom-ref": "d7895ec9f3e9f29d", + "type": "file", + "name": "/bin/dir", + "hashes": [ + { + "alg": "SHA-1", + "content": "f7b7f02f8357a25f375aa3b6f777c735ccef3156" + }, + { + "alg": "SHA-256", + "content": "94526b69bae98cf6b56257408162dab1895af0c32ba915c50d05c90501b9a9c5" + } + ] + }, + { + "bom-ref": "d1cd68719098c8f8", + "type": "file", + "name": "/bin/dmesg", + "hashes": [ + { + "alg": "SHA-1", + "content": "c48d21c491a7e347fa41b93077a8060ac563ad42" + }, + { + "alg": "SHA-256", + "content": "12ada41ae0d91148f444d99dc757c981b15fb39d1d9f56b32c277bcdd805aa51" + } + ] + }, + { + "bom-ref": "1e1b3ba900109281", + "type": "file", + "name": "/bin/echo", + "hashes": [ + { + "alg": "SHA-1", + "content": "c78a474a04034c4c0b40e36eab77bdcb8fda8c28" + }, + { + "alg": "SHA-256", + "content": "2b9254e56c59be0cd8d951c099c101649fb8be19f3d8bb52ac6eae5e8ffba148" + } + ] + }, + { + "bom-ref": "d5dccb4768cb09a8", + "type": "file", + "name": "/bin/egrep", + "hashes": [ + { + "alg": "SHA-1", + "content": "92ab8b62375eae26758b91d285ec24a39af1abe8" + }, + { + "alg": "SHA-256", + "content": "f7c621ae0ceb26a76802743830bc469288996f64342901ae5292950ff713e981" + } + ] + }, + { + "bom-ref": "e6b3d66363a5ab8e", + "type": "file", + "name": "/bin/false", + "hashes": [ + { + "alg": "SHA-1", + "content": "086163b141e82098041c74ad3b7c8de811942322" + }, + { + "alg": "SHA-256", + "content": "d7c674b150fc5329a3bf0f9d12002d941f89ddcab5e20fd588d5e27d7bee46f3" + } + ] + }, + { + "bom-ref": "49cf481e73e71244", + "type": "file", + "name": "/bin/fgrep", + "hashes": [ + { + "alg": "SHA-1", + "content": "ad12bd4526ae3f3172987179d850ad1077be0100" + }, + { + "alg": "SHA-256", + "content": "5c8b1486de899cdd010d3cacde94579999cb82d0be9ec8c131b1b56886cfd36b" + } + ] + }, + { + "bom-ref": "296cab0b2dfe4ca9", + "type": "file", + "name": "/bin/findmnt", + "hashes": [ + { + "alg": "SHA-1", + "content": "3dd09b5e8bb8b50cbae2e932c1d42931dd900100" + }, + { + "alg": "SHA-256", + "content": "d29f52b3f6ad577f0a8c3d37ecdc2dbe9b4d04528193ab2f3e86c3a8d6ca57e6" + } + ] + }, + { + "bom-ref": "c4d67f818721a7cf", + "type": "file", + "name": "/bin/grep", + "hashes": [ + { + "alg": "SHA-1", + "content": "7e65599ae85bd86fdbf5aee6340cc71a06718374" + }, + { + "alg": "SHA-256", + "content": "9c10f95df9759ee36b6c0350be168ca67c41bf2594298147bbb9280c02c3f136" + } + ] + }, + { + "bom-ref": "4b9e0652b3011993", + "type": "file", + "name": "/bin/gunzip", + "hashes": [ + { + "alg": "SHA-1", + "content": "4c33d9bcc9d5398d11d8f367c6b856af78a6f495" + }, + { + "alg": "SHA-256", + "content": "0011d06d8822b2097140be7ef6bbfaf0e01b9519a179644c6593a56f2bf5f903" + } + ] + }, + { + "bom-ref": "a51f2de872d65146", + "type": "file", + "name": "/bin/gzexe", + "hashes": [ + { + "alg": "SHA-1", + "content": "cfc6280aef5513aab59e38f9d2a68617b5a3a94a" + }, + { + "alg": "SHA-256", + "content": "f73ab4e05077cddef5de23005312869ea9513d810b02542ece2ff37655711475" + } + ] + }, + { + "bom-ref": "b65e3a8ef221edaf", + "type": "file", + "name": "/bin/gzip", + "hashes": [ + { + "alg": "SHA-1", + "content": "8d597ca749267377dbaf0c05781b48bb82c8053c" + }, + { + "alg": "SHA-256", + "content": "66d2c25b19ed845fb70c8436f9b9739dd8515dde36bd31f382ec1821819ff474" + } + ] + }, + { + "bom-ref": "523243cd508ceb9f", + "type": "file", + "name": "/bin/hostname", + "hashes": [ + { + "alg": "SHA-1", + "content": "adc74340d45adcd463986d24c71a36df19429f5c" + }, + { + "alg": "SHA-256", + "content": "6a3347df1c90c0895464920727a6ee40404de6ad72cf6da3e666e1626df66111" + } + ] + }, + { + "bom-ref": "7554143a67c8905b", + "type": "file", + "name": "/bin/ln", + "hashes": [ + { + "alg": "SHA-1", + "content": "84f3cc59798d4dcb6e97791afd5866060d19fbec" + }, + { + "alg": "SHA-256", + "content": "c4ab3b319776615385b9e262b77afaf3ebce682e95a7650364838a33ad5e6c5f" + } + ] + }, + { + "bom-ref": "93b68eb75fdbe449", + "type": "file", + "name": "/bin/login", + "hashes": [ + { + "alg": "SHA-1", + "content": "b98e8a0ab6a2dacc310ba5bd2861533b47a7e4ae" + }, + { + "alg": "SHA-256", + "content": "6565fa2c97c36311390228ac15001595003ea271e1e23ede2cb0f48f6f4dfe9a" + } + ] + }, + { + "bom-ref": "a462f79f2125efec", + "type": "file", + "name": "/bin/ls", + "hashes": [ + { + "alg": "SHA-1", + "content": "646503c01c841c04e3c0cbc8f6edcc737da466ef" + }, + { + "alg": "SHA-256", + "content": "075e188324c2f4e54359128371a01e4d5e3b7be08382e4433bd53523f8bf6217" + } + ] + }, + { + "bom-ref": "426fec9a5d9f4301", + "type": "file", + "name": "/bin/lsblk", + "hashes": [ + { + "alg": "SHA-1", + "content": "fbbe7d4ce0d295961a006d5b72664218c011c73d" + }, + { + "alg": "SHA-256", + "content": "fcebd7e0c7fc95a516367a131b2a697658c9344a6d7b30d2e1e0308514a06aaa" + } + ] + }, + { + "bom-ref": "54f84cf6bdabd8f6", + "type": "file", + "name": "/bin/mkdir", + "hashes": [ + { + "alg": "SHA-1", + "content": "6f48332524f30ee55932e85fe50377cd4dbf0b23" + }, + { + "alg": "SHA-256", + "content": "49bcc51087a41459b4b2304d05ee50f9c8e217fc23548cd80f13d1d89a6269bf" + } + ] + }, + { + "bom-ref": "75bc071db280ad79", + "type": "file", + "name": "/bin/mknod", + "hashes": [ + { + "alg": "SHA-1", + "content": "0302063704c110bff08e57cc9be4d7418d0bbaca" + }, + { + "alg": "SHA-256", + "content": "6b79d643ae52acd699f32b9610f3700cb97ca90a74351721b544b6dcdc471e5b" + } + ] + }, + { + "bom-ref": "9e608aab1d273724", + "type": "file", + "name": "/bin/mktemp", + "hashes": [ + { + "alg": "SHA-1", + "content": "044214746557077b86c2298fdd519c1866ba460d" + }, + { + "alg": "SHA-256", + "content": "a7588bf8ca0bd9fd862d2da4bf007f2fcafee74bd96292197ea2f448cfc30240" + } + ] + }, + { + "bom-ref": "fcc7856b8a8a7cee", + "type": "file", + "name": "/bin/more", + "hashes": [ + { + "alg": "SHA-1", + "content": "ac2d6ef90a1fe50278d0036d5470f2d9048dfcc6" + }, + { + "alg": "SHA-256", + "content": "e80da1c859d36c8c67b86b339cd54a2961998b1d334c4ec0c2cf9761fc655aec" + } + ] + }, + { + "bom-ref": "245127eaf7414f46", + "type": "file", + "name": "/bin/mount", + "hashes": [ + { + "alg": "SHA-1", + "content": "19199cc4510332cf45179891503019e770117df5" + }, + { + "alg": "SHA-256", + "content": "281d80fc9d9c698ec3a3a4afaf25553929c4897fe23852f93b2548d0e36641a0" + } + ] + }, + { + "bom-ref": "1140aadade4f901a", + "type": "file", + "name": "/bin/mountpoint", + "hashes": [ + { + "alg": "SHA-1", + "content": "459ea8591ed0759bd735e23df49c88a9e4c929da" + }, + { + "alg": "SHA-256", + "content": "0c35bd7c0d1a5f28b23aeddc73d9b8d94581df47c5c6d22e3aab5b968b9e0e22" + } + ] + }, + { + "bom-ref": "540ec82f639837bc", + "type": "file", + "name": "/bin/mv", + "hashes": [ + { + "alg": "SHA-1", + "content": "46e71d67df7eb1c41f8f8c9039f401e242cce94a" + }, + { + "alg": "SHA-256", + "content": "8d9f23ef147c042ed7004620b0dfea220b8aa836c269fc51164fc9365417926d" + } + ] + }, + { + "bom-ref": "92d7145e7dbe32d9", + "type": "file", + "name": "/bin/pwd", + "hashes": [ + { + "alg": "SHA-1", + "content": "4e30495211c5d02cd9036e64b63efc096c0e7c76" + }, + { + "alg": "SHA-256", + "content": "616a8be11ec092debc222d5f8534347f37faf41ce888e7d43bd5658792f4a28a" + } + ] + }, + { + "bom-ref": "16b9d6ce4ce9a508", + "type": "file", + "name": "/bin/readlink", + "hashes": [ + { + "alg": "SHA-1", + "content": "795312b32a5faa75a8a1dc5cae1a2c239e8872c4" + }, + { + "alg": "SHA-256", + "content": "bc5e688f8a016b30ea52eb96c208ee561f595a00c2d6a7b325fade5841aa07de" + } + ] + }, + { + "bom-ref": "c361eaa3070aafac", + "type": "file", + "name": "/bin/rm", + "hashes": [ + { + "alg": "SHA-1", + "content": "d63ca4a768997ba50b916e01c669fb26096a1c55" + }, + { + "alg": "SHA-256", + "content": "144007f9f0217be9bb5e90da781d5155c306ef8b991cfdf4551b89fcbf21434a" + } + ] + }, + { + "bom-ref": "c7751d988c26421d", + "type": "file", + "name": "/bin/rmdir", + "hashes": [ + { + "alg": "SHA-1", + "content": "514da9743a0948ddae9a0aeeb58d4cc303c3a0d3" + }, + { + "alg": "SHA-256", + "content": "57d1e80a8f8c026f085e76958bbc382afb5e3a13845f0801acdeb93afb55e210" + } + ] + }, + { + "bom-ref": "73474bd888a2811a", + "type": "file", + "name": "/bin/run-parts", + "hashes": [ + { + "alg": "SHA-1", + "content": "46b6e74e28e5daf69c1dd0f18a8e911ae2922dda" + }, + { + "alg": "SHA-256", + "content": "3346b4d47c637a8c02cb6865eee42d2a5aa9c4e46c6371a9143621348d27420f" + } + ] + }, + { + "bom-ref": "f136a660e7de8eff", + "type": "file", + "name": "/bin/sed", + "hashes": [ + { + "alg": "SHA-1", + "content": "3e42d7a1221448f7aac232e3733541ec4b9f46a5" + }, + { + "alg": "SHA-256", + "content": "6baa01dd34e2b67590865b24b92cc9b6c43a2566e4803ea5630e41b00a846827" + } + ] + }, + { + "bom-ref": "ecb2331aa30b32b9", + "type": "file", + "name": "/bin/sleep", + "hashes": [ + { + "alg": "SHA-1", + "content": "e8973744ded432415d3411fe621fec3e78a9b4a9" + }, + { + "alg": "SHA-256", + "content": "3e27ced4ece1aab2cf2af72ad66587cfeb3f9ea70dd07472714ffb805a0009f4" + } + ] + }, + { + "bom-ref": "4f9b5c513657a9e3", + "type": "file", + "name": "/bin/stty", + "hashes": [ + { + "alg": "SHA-1", + "content": "8b0d3f3fd8a82a7ef2c40bf8756dfb4a72f0256f" + }, + { + "alg": "SHA-256", + "content": "3a5758a98305d2fe5f8261b8c7eb9cac5df88606ef8e7edeae6fbaba2434c9d5" + } + ] + }, + { + "bom-ref": "e69229679a5b791e", + "type": "file", + "name": "/bin/su", + "hashes": [ + { + "alg": "SHA-1", + "content": "9fa3fe6cfffbb20e7f589c6520e5acb510c12e34" + }, + { + "alg": "SHA-256", + "content": "7d28fb83ff782a8cf221ca813e71b830783fe1af56d264a9547a63aa615b9590" + } + ] + }, + { + "bom-ref": "a40efcabf5ad9594", + "type": "file", + "name": "/bin/sync", + "hashes": [ + { + "alg": "SHA-1", + "content": "647a5e79af4d6b04f5e39acc3cf04e7bfae61138" + }, + { + "alg": "SHA-256", + "content": "fcc3583f0babeaa31560b304213e9d1cac8fd640cfb7025c0116d12d77ee5d9c" + } + ] + }, + { + "bom-ref": "8ccae5b8f0f5a2e8", + "type": "file", + "name": "/bin/tar", + "hashes": [ + { + "alg": "SHA-1", + "content": "1be5d274d29959ab6272793b7aaf38887e536094" + }, + { + "alg": "SHA-256", + "content": "50d65b58a1ee305b2f5eda7bae420ccb0879887a5b40ea3a9dc84740b4a19e7f" + } + ] + }, + { + "bom-ref": "725b3cd6f4a53ded", + "type": "file", + "name": "/bin/tempfile", + "hashes": [ + { + "alg": "SHA-1", + "content": "8f113e684766c129c7a210a7333f44b427007ae3" + }, + { + "alg": "SHA-256", + "content": "1bbf66cb001425a9db884e9614f0e8df674be2e6fe2ff2794d1f910ef2d9f062" + } + ] + }, + { + "bom-ref": "a1bac483816088c8", + "type": "file", + "name": "/bin/touch", + "hashes": [ + { + "alg": "SHA-1", + "content": "f43c8fa8238ce7e0822caa99e376c9eced6b3d2f" + }, + { + "alg": "SHA-256", + "content": "362815dc70f3675a862223c3613ab636ba3ea9903e7e91916e843077711053d6" + } + ] + }, + { + "bom-ref": "ea9fb6cdf77fc2e1", + "type": "file", + "name": "/bin/true", + "hashes": [ + { + "alg": "SHA-1", + "content": "c01bd7cc37d662393cf74235c1311e6e929b31fb" + }, + { + "alg": "SHA-256", + "content": "a7393b08d786ceb7f85de701b48a8ddc0991ff0fcfed00c20fccb9f8bb208907" + } + ] + }, + { + "bom-ref": "025338bae8f9fa3b", + "type": "file", + "name": "/bin/umount", + "hashes": [ + { + "alg": "SHA-1", + "content": "40a06a911d6618e12bc056604a3f3ca8d81cb6d7" + }, + { + "alg": "SHA-256", + "content": "82b09c39bc387424b0d126089e8fc0c78bff29e6c54277c0e55ef0ad2f925bc5" + } + ] + }, + { + "bom-ref": "bd30486f46d7f65e", + "type": "file", + "name": "/bin/uname", + "hashes": [ + { + "alg": "SHA-1", + "content": "7d432a1652d163fb451db3548a441d45ba6be261" + }, + { + "alg": "SHA-256", + "content": "7a6d0bac06112166ed527062baaf3f34b383c15926245edfb74118f9d5d40b30" + } + ] + }, + { + "bom-ref": "c85e442bfb2f8186", + "type": "file", + "name": "/bin/vdir", + "hashes": [ + { + "alg": "SHA-1", + "content": "205bc16375eed4ac29ce89bf3b1729d7d441cd95" + }, + { + "alg": "SHA-256", + "content": "7cd8645eee561bfd0b6c28f2ed70c8970fb6a3cccca524921f2a9e584a36a40b" + } + ] + }, + { + "bom-ref": "e06522066c1062b8", + "type": "file", + "name": "/bin/wdctl", + "hashes": [ + { + "alg": "SHA-1", + "content": "4b8747fed3c44cb487ce7e8055a5d8324164d6fe" + }, + { + "alg": "SHA-256", + "content": "ba5d74ffc0a663f39ca8499c96783fca1b960c83096730162baa3c52569f251d" + } + ] + }, + { + "bom-ref": "bdcf8e5e5fa1f8c8", + "type": "file", + "name": "/bin/which", + "hashes": [ + { + "alg": "SHA-1", + "content": "cd2cdf42c04fba4123f4b8f12bca9bbd76552c95" + }, + { + "alg": "SHA-256", + "content": "7bdde142dc5cb004ab82f55adba0c56fc78430a6f6b23afd33be491d4c7c238b" + } + ] + }, + { + "bom-ref": "23db2ae61655eefd", + "type": "file", + "name": "/bin/zcat", + "hashes": [ + { + "alg": "SHA-1", + "content": "2ad72c8366dcb3e87f16cc38effb86d16c4515bd" + }, + { + "alg": "SHA-256", + "content": "4cdce728b8d9c53e855853a2414b7d93251f632cc7bc34bcf0bf688f2da74ecf" + } + ] + }, + { + "bom-ref": "687a4b7705f727ab", + "type": "file", + "name": "/bin/zcmp", + "hashes": [ + { + "alg": "SHA-1", + "content": "9284b1bfb9b56685ebad1593e80585e0d3f2d099" + }, + { + "alg": "SHA-256", + "content": "dbfb20b6ae482c2f7f8365e3fe71f42266ef2c56e77f0787ad2f094083550a36" + } + ] + }, + { + "bom-ref": "e4dc3a373cc0f3ea", + "type": "file", + "name": "/bin/zdiff", + "hashes": [ + { + "alg": "SHA-1", + "content": "4da39585aa159314a7be0408c30f875bf1849ddf" + }, + { + "alg": "SHA-256", + "content": "1bf1cef165c5265317d9bba07a58a28899fffe331ffa52a87d483e482d539296" + } + ] + }, + { + "bom-ref": "e7286caa943a56c5", + "type": "file", + "name": "/bin/zegrep", + "hashes": [ + { + "alg": "SHA-1", + "content": "0b4eebddbd95c099c22e75245f001e10c4fd934d" + }, + { + "alg": "SHA-256", + "content": "67ee7fadec7ea53b4c1f8cfc3c81427b29c0b1381e80b55642617620c84d0bcc" + } + ] + }, + { + "bom-ref": "3eb46d365d4cee45", + "type": "file", + "name": "/bin/zfgrep", + "hashes": [ + { + "alg": "SHA-1", + "content": "c6cbe086a0c5d526960a93759673fa452251e77e" + }, + { + "alg": "SHA-256", + "content": "87ab5f4c7cb344e409d614d1a69cc156b3b1053d6ae0b59d8e2c2131f3e63e5a" + } + ] + }, + { + "bom-ref": "dfcc24da4c7f1c48", + "type": "file", + "name": "/bin/zforce", + "hashes": [ + { + "alg": "SHA-1", + "content": "0c4efcd870c70eab1bd8ace455c1a377ae96fba7" + }, + { + "alg": "SHA-256", + "content": "136b8f154b0c63d346af66498254e3aec25731d0897f80081d9e8819ff79da31" + } + ] + }, + { + "bom-ref": "9282c43e356b92a4", + "type": "file", + "name": "/bin/zgrep", + "hashes": [ + { + "alg": "SHA-1", + "content": "bba7cbb08c128aada9620f878c53a6481580819b" + }, + { + "alg": "SHA-256", + "content": "a8cebc1fb2afe5639f56371b16d926202cc389907f46f852aac95ba7e819c14d" + } + ] + }, + { + "bom-ref": "78bd5262fbd36486", + "type": "file", + "name": "/bin/zless", + "hashes": [ + { + "alg": "SHA-1", + "content": "130e10b6339cf0b480d14b5b3e423cbc5578c5e7" + }, + { + "alg": "SHA-256", + "content": "d877394651502655a165962d79514bd67e3193f935aeacfea0baa22864739c75" + } + ] + }, + { + "bom-ref": "d37a221764c32e1b", + "type": "file", + "name": "/bin/zmore", + "hashes": [ + { + "alg": "SHA-1", + "content": "cf34c2aa8491fc84e94021e063145871c964e142" + }, + { + "alg": "SHA-256", + "content": "c1700b78ebb87a4806ca6e249abc66ffb18d89913349781b771cf39b9cf09aab" + } + ] + }, + { + "bom-ref": "b591190a760df00b", + "type": "file", + "name": "/bin/znew", + "hashes": [ + { + "alg": "SHA-1", + "content": "22bb54a658ddcb37d647811631fac9e6a515aa19" + }, + { + "alg": "SHA-256", + "content": "60cbb9f5388ebadd7dae2c9d9d061ef999818b18e324bdca9315ecea2771e1ac" + } + ] + }, + { + "bom-ref": "b7995c8758b43332", + "type": "file", + "name": "/etc/alternatives/README", + "hashes": [ + { + "alg": "SHA-1", + "content": "de50c1abd6fca390d6ba22505f9aded89c150fc8" + }, + { + "alg": "SHA-256", + "content": "a44afdb50eacfc09e45f6dac1e18ae231c179feec633c106e1060bae8ae11df1" + } + ] + }, + { + "bom-ref": "320c630a51a4feb7", + "type": "file", + "name": "/etc/apt/apt.conf.d/01autoremove", + "hashes": [ + { + "alg": "SHA-1", + "content": "6ad6e2b1b1545b33798d8adbb25eeb15c0770717" + }, + { + "alg": "SHA-256", + "content": "b646d08e9886f38b33e34ed3ebb71ce6825055a08ae7509030afd3e07d35ad40" + } + ] + }, + { + "bom-ref": "48d8e90b53aa62bf", + "type": "file", + "name": "/etc/apt/apt.conf.d/70debconf", + "hashes": [ + { + "alg": "SHA-1", + "content": "8d02d7c5507330294f8eba69adc413e35c70225b" + }, + { + "alg": "SHA-256", + "content": "db749e19baf3b72ca2c157c70c52522cae23d94bc8b2dc5793fd43d427445367" + } + ] + }, + { + "bom-ref": "17aa7268d4b587d9", + "type": "file", + "name": "/etc/apt/trusted.gpg.d/debian-archive-bullseye-automatic.gpg", + "hashes": [ + { + "alg": "SHA-1", + "content": "27d0f29dc003b5a8c91ba4d61eb39b7a4301c4c1" + }, + { + "alg": "SHA-256", + "content": "9395df01c1c6226584206a77d237c60fdc7039a015ece4e6bd3b1947db6c3b1e" + } + ] + }, + { + "bom-ref": "62e5060c3f738c6c", + "type": "file", + "name": "/etc/apt/trusted.gpg.d/debian-archive-bullseye-security-automatic.gpg", + "hashes": [ + { + "alg": "SHA-1", + "content": "4c3899132dad707cbbe44cf490ba43e35a0dec12" + }, + { + "alg": "SHA-256", + "content": "e551f90fa954a65b3b6c54160f9d8485bee806318afe7a6998c4d9bece8e0df3" + } + ] + }, + { + "bom-ref": "9861af942f3d21aa", + "type": "file", + "name": "/etc/apt/trusted.gpg.d/debian-archive-bullseye-stable.gpg", + "hashes": [ + { + "alg": "SHA-1", + "content": "30a6bce0cab0fe98ca0b13447904f14c33f60b45" + }, + { + "alg": "SHA-256", + "content": "0cdd043ff2e04448802488fd4a4e3812c298a1ab5d81374ea9a9693a274cef8c" + } + ] + }, + { + "bom-ref": "36f25ef40aa349c2", + "type": "file", + "name": "/etc/apt/trusted.gpg.d/debian-archive-buster-automatic.gpg", + "hashes": [ + { + "alg": "SHA-1", + "content": "a6f83aced5193f1f7c1e155785f5b61d38361615" + }, + { + "alg": "SHA-256", + "content": "89d89bcedee9ed88b25eabb5be786fbca6259f121e6ad6ebf5651f852f5227cf" + } + ] + }, + { + "bom-ref": "8a051d92289ca993", + "type": "file", + "name": "/etc/apt/trusted.gpg.d/debian-archive-buster-security-automatic.gpg", + "hashes": [ + { + "alg": "SHA-1", + "content": "400181c4e2ebaf97a4e8b37b904b6bbe94998429" + }, + { + "alg": "SHA-256", + "content": "bd5d7f0384531497968f1866efa6118938e812582a8d2fe86d87b0266c495783" + } + ] + }, + { + "bom-ref": "2ddcde6f2553c698", + "type": "file", + "name": "/etc/apt/trusted.gpg.d/debian-archive-buster-stable.gpg", + "hashes": [ + { + "alg": "SHA-1", + "content": "a4f90d5b993f61a779f40bc1dff6551a5d7b2b03" + }, + { + "alg": "SHA-256", + "content": "488a60d5065a97cc8b3c907be6d2c12ba5dee5b88f5efeebbd8beb60cc9cced1" + } + ] + }, + { + "bom-ref": "8a61232b09b88c9a", + "type": "file", + "name": "/etc/apt/trusted.gpg.d/debian-archive-stretch-automatic.gpg", + "hashes": [ + { + "alg": "SHA-1", + "content": "d62ea924a47d9a3fb24f8a98e32bd88947ba2986" + }, + { + "alg": "SHA-256", + "content": "6e6648330a58db617dd13ba9f51b4101932559d477e7fe5fb656d3a4352efb57" + } + ] + }, + { + "bom-ref": "b1d8a052c1aecebc", + "type": "file", + "name": "/etc/apt/trusted.gpg.d/debian-archive-stretch-security-automatic.gpg", + "hashes": [ + { + "alg": "SHA-1", + "content": "2687cdcd03c9d5a22e619783b721cdfd60fb7fbd" + }, + { + "alg": "SHA-256", + "content": "481618230f62a29729c58e35684eec7be8774c68b7f94f4a70dae668874e12df" + } + ] + }, + { + "bom-ref": "031ed0cddfbd2fac", + "type": "file", + "name": "/etc/apt/trusted.gpg.d/debian-archive-stretch-stable.gpg", + "hashes": [ + { + "alg": "SHA-1", + "content": "6f24e387825ddc9f9df9192e5f94c7c6464885b2" + }, + { + "alg": "SHA-256", + "content": "5306306431152a3fc27406f420b9e1d9905c221ad9565ac7f11abaa3867b0885" + } + ] + }, + { + "bom-ref": "855e4926f397da3c", + "type": "file", + "name": "/etc/bash.bashrc", + "hashes": [ + { + "alg": "SHA-1", + "content": "ccfa17866498a392e99db5e9d4e37f713f58e738" + }, + { + "alg": "SHA-256", + "content": "af4f09eb27cb7f140dfee7f3285574a68ca50ac1db2019652cef4196ee346307" + } + ] + }, + { + "bom-ref": "539f7dfb84a4c540", + "type": "file", + "name": "/etc/bindresvport.blacklist", + "hashes": [ + { + "alg": "SHA-1", + "content": "fc9fced97aa5db3c66342ebd24d92b075e1e5d9d" + }, + { + "alg": "SHA-256", + "content": "63229551ffc257f56e3df60ca97e1f2963f3ab2128ce27a0f398b4418fa454d0" + } + ] + }, + { + "bom-ref": "a5b5c44295780981", + "type": "file", + "name": "/etc/cron.daily/apt-compat", + "hashes": [ + { + "alg": "SHA-1", + "content": "e1e67f58d930134522d140939dd2b8681b8d8ba7" + }, + { + "alg": "SHA-256", + "content": "a069113148fc81e3c72f76249f77bff234d933d1be88909a896d672ea81bfaed" + } + ] + }, + { + "bom-ref": "6daefab9606e293f", + "type": "file", + "name": "/etc/cron.daily/dpkg", + "hashes": [ + { + "alg": "SHA-1", + "content": "670f7b1508e3347264825cfbccac283bbef56dc5" + }, + { + "alg": "SHA-256", + "content": "172557932b09e6b22519653ce4bb4397767c96c270ac9271c8e92df9bba009bf" + } + ] + }, + { + "bom-ref": "834e57f76d41800d", + "type": "file", + "name": "/etc/cron.daily/passwd", + "hashes": [ + { + "alg": "SHA-1", + "content": "387303696a796e27f559c73679e979f2a538072d" + }, + { + "alg": "SHA-256", + "content": "777a9112ee093d8683645b031eb6cfeb9ce77274f40575c48ff2054ea24114d1" + } + ] + }, + { + "bom-ref": "976a8de6022e1b22", + "type": "file", + "name": "/etc/debconf.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "d0f08b9c8893167ab7892c62a3bc6e48cdf3f20d" + }, + { + "alg": "SHA-256", + "content": "fe7e76d4162e80e0bc8c24bc638c56ae92c07a80db750cbf0a87e0904e143f4e" + } + ] + }, + { + "bom-ref": "61c0afd9e4d449ed", + "type": "file", + "name": "/etc/debian_version", + "hashes": [ + { + "alg": "SHA-1", + "content": "a8f4d558f94be8871908764fe8337c7968efe4b8" + }, + { + "alg": "SHA-256", + "content": "0766953c9406158ca41f2d49e96a59972e9cd8ccdc3f19dba8755558f0464d1c" + } + ] + }, + { + "bom-ref": "84153e8980cf4264", + "type": "file", + "name": "/etc/default/hwclock", + "hashes": [ + { + "alg": "SHA-1", + "content": "bcc1aed639afbce9b9096cd2541971ab48e798c2" + }, + { + "alg": "SHA-256", + "content": "827cf5c033ba11433d2b4087ec1e36e82766eab39ceed8e7f8f09d983d2d8235" + } + ] + }, + { + "bom-ref": "9a6c0cc1018eee69", + "type": "file", + "name": "/etc/default/nss", + "hashes": [ + { + "alg": "SHA-1", + "content": "aeaf61a9f1ce085fa16ed22c4cc60d2f565f7d7a" + }, + { + "alg": "SHA-256", + "content": "836614e9d4d501d0af43087c9c9300365a38d53f24f845efcf0b2ad8194cbaa0" + } + ] + }, + { + "bom-ref": "e232a910f238eebd", + "type": "file", + "name": "/etc/default/useradd", + "hashes": [ + { + "alg": "SHA-1", + "content": "9e8f95b9ce7a15c03dc2ded11072774983ca57b1" + }, + { + "alg": "SHA-256", + "content": "03b603de7e8c7a8192902d827edea1891360bd094cf2c810669af13aee823c70" + } + ] + }, + { + "bom-ref": "57099dea7602e7ca", + "type": "file", + "name": "/etc/deluser.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "40e84d9b448fe5f603cecb7e0d03f28cf7c244c8" + }, + { + "alg": "SHA-256", + "content": "946e0f11a8997bf41dbafca1f6f5a4bedf46746c91801ca4f2e90dd0172f06b6" + } + ] + }, + { + "bom-ref": "ef71a75894484cf7", + "type": "file", + "name": "/etc/dpkg/dpkg.cfg", + "hashes": [ + { + "alg": "SHA-1", + "content": "17c8e76036626a55e95f91dca7f60ac4dc027bb5" + }, + { + "alg": "SHA-256", + "content": "fead43b89af3ea5691c48f32d7fe1ba0f7ab229fb5d230f612d76fe8e6f5a015" + } + ] + }, + { + "bom-ref": "3f04c868c349d397", + "type": "file", + "name": "/etc/dpkg/origins/debian", + "hashes": [ + { + "alg": "SHA-1", + "content": "b65f7f2af66c53b51765877bbe91a22bc6fca1e2" + }, + { + "alg": "SHA-256", + "content": "50f35af8ac4a5df3690991a4b428fa49d56580b0020fcc6e38283b3b1b2e6c74" + } + ] + }, + { + "bom-ref": "c70e5ce6be1811a7", + "type": "file", + "name": "/etc/gai.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "37be61f791e145d69bba57a2c402268f4de6db69" + }, + { + "alg": "SHA-256", + "content": "76a5771adee7b9f36c7ae66eae78d72f325557500269107f2d98a7e3560a1808" + } + ] + }, + { + "bom-ref": "bd29efa7a287b7f3", + "type": "file", + "name": "/etc/host.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "b10cafadc043aec4056a948914f011bc39d2ec13" + }, + { + "alg": "SHA-256", + "content": "380f5fe21d755923b44203b58ca3c8b9681c485d152bd5d7e3914f67d821d32a" + } + ] + }, + { + "bom-ref": "8799472c7f1d02e3", + "type": "file", + "name": "/etc/init.d/hwclock.sh", + "hashes": [ + { + "alg": "SHA-1", + "content": "6de496930dfe00e705fa244d77e7dfa2d1c6aef8" + }, + { + "alg": "SHA-256", + "content": "a919f9434b681974a2f1d4120af10c0527b30e8cda6fdec1dea1eee3077b6609" + } + ] + }, + { + "bom-ref": "4f0c6db580d6bdef", + "type": "file", + "name": "/etc/issue", + "hashes": [ + { + "alg": "SHA-1", + "content": "a34985b8cd50f896b76a565c6e88ece484950db5" + }, + { + "alg": "SHA-256", + "content": "79c0ca52a61dfa27c0e15f690ba75d3d74175ce1172befc2d652049a9dbb0d72" + } + ] + }, + { + "bom-ref": "cd9f735e37b1dc18", + "type": "file", + "name": "/etc/issue.net", + "hashes": [ + { + "alg": "SHA-1", + "content": "46e52010170debfae9611c599b65dd54e65f9684" + }, + { + "alg": "SHA-256", + "content": "eb72eb257952111e91991693753bbe7f1e21c95a6be2c1c1fef7379b151794cf" + } + ] + }, + { + "bom-ref": "f11f367a88852739", + "type": "file", + "name": "/etc/kernel/postinst.d/apt-auto-removal", + "hashes": [ + { + "alg": "SHA-1", + "content": "9f778d51b8f046e093bc0220e90ae21d9c8ebbed" + }, + { + "alg": "SHA-256", + "content": "64fef575566fd0ab647200ed6849156d07432997d22c65a06694c8852bdb7255" + } + ] + }, + { + "bom-ref": "0136735b332d7008", + "type": "file", + "name": "/etc/ld.so.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "addee0472ac552e7c43db27234ee260282b9b988" + }, + { + "alg": "SHA-256", + "content": "d4b198c463418b493208485def26a6f4c57279467b9dfa491b70433cedb602e8" + } + ] + }, + { + "bom-ref": "e2dfbe6e6bc68e27", + "type": "file", + "name": "/etc/ld.so.conf.d/libc.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "651d33456c313b129dcff7e6f961b4450add4209" + }, + { + "alg": "SHA-256", + "content": "90d4c7e43e7661cd116010eb9f50ad5817e43162df344bd1ad10898851b15d41" + } + ] + }, + { + "bom-ref": "293c3c60597a0a43", + "type": "file", + "name": "/etc/ld.so.conf.d/x86_64-linux-gnu.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "74613698f745df3c5ae0a9c06fbb8ab3942c1446" + }, + { + "alg": "SHA-256", + "content": "f03e4740e6922b4f4a1181cd696b52f62f9f10d003740a8940f7121795c59c98" + } + ] + }, + { + "bom-ref": "2234bf132aba1144", + "type": "file", + "name": "/etc/libaudit.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "f86b14eb6371b0d99b968dabc1b853b99530cb8a" + }, + { + "alg": "SHA-256", + "content": "d48318c90620fde96cb6a8e6eb1eb64663b21200f9d1d053f9e3b4fce24a2543" + } + ] + }, + { + "bom-ref": "83ad1ac323113c22", + "type": "file", + "name": "/etc/login.defs", + "hashes": [ + { + "alg": "SHA-1", + "content": "62c51d20cdb346a4f40ae34e3aa3901c5bb7397b" + }, + { + "alg": "SHA-256", + "content": "ff7cf6759ea81d72c51ab879e751c23bb4aa73307b737743aae9f034a314e7b6" + } + ] + }, + { + "bom-ref": "be7ecee1a46582b3", + "type": "file", + "name": "/etc/logrotate.d/alternatives", + "hashes": [ + { + "alg": "SHA-1", + "content": "f5db99ee8accefa35a355ce32a02c13fb4d488b7" + }, + { + "alg": "SHA-256", + "content": "edd383958ce315a642cdfa6aa3fbe2779aa5c674b305fe910449b90cee594c58" + } + ] + }, + { + "bom-ref": "d5a1829bca4ba0ee", + "type": "file", + "name": "/etc/logrotate.d/apt", + "hashes": [ + { + "alg": "SHA-1", + "content": "2d2bbc1c53f0ca9962cf971f906ffde3426f0663" + }, + { + "alg": "SHA-256", + "content": "fcc2510172fd914ca22762c4b2dc43d36152e65becf8e84abec59f7652da5e3f" + } + ] + }, + { + "bom-ref": "138eb106592963c5", + "type": "file", + "name": "/etc/logrotate.d/dpkg", + "hashes": [ + { + "alg": "SHA-1", + "content": "86cbac3b434a27c0b627e1f6c50aa06ad0bfffa0" + }, + { + "alg": "SHA-256", + "content": "e4103352545278e47a88b2ca2f2d3681ca474d400d8057ba6ac4f18d71c32042" + } + ] + }, + { + "bom-ref": "9a239484cb65a5ec", + "type": "file", + "name": "/etc/mke2fs.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "42b81300f7946a9c0fe32072a6fe05848fcaf430" + }, + { + "alg": "SHA-256", + "content": "b155410ad87acfcfeceab9db3e6e0ac926e4a37b6a3323963cea884fa4e95d9f" + } + ] + }, + { + "bom-ref": "a054c2356c7eca83", + "type": "file", + "name": "/etc/pam.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "f3a131387778ba216d9095823f4e30c545dde167" + }, + { + "alg": "SHA-256", + "content": "8aa7f3472ec88a24a572d6ffd9748ce3da223fba3b2545098eaaae768b6408c4" + } + ] + }, + { + "bom-ref": "e92c981d052f8c1e", + "type": "file", + "name": "/etc/pam.d/chfn", + "hashes": [ + { + "alg": "SHA-1", + "content": "f16a87690b85fb554bce4ae58cbe8e189cf461f7" + }, + { + "alg": "SHA-256", + "content": "d66a095a330d7e20d0bbb56a4cb28a4b1bfc92e8a5a5e9bfc3d0a51c5e3d7170" + } + ] + }, + { + "bom-ref": "aa407d8286b4eb20", + "type": "file", + "name": "/etc/pam.d/chpasswd", + "hashes": [ + { + "alg": "SHA-1", + "content": "1754cf95dc7720ba76b08b75de077f4cc5d8a868" + }, + { + "alg": "SHA-256", + "content": "f3f96229e82bf41a7fd3ec12e697b3465235d96bb1e44c39ba91157425a36082" + } + ] + }, + { + "bom-ref": "139baa1f615f6646", + "type": "file", + "name": "/etc/pam.d/chsh", + "hashes": [ + { + "alg": "SHA-1", + "content": "7df5f989cbe88e06089bcb4f17d70c8925b6c2b6" + }, + { + "alg": "SHA-256", + "content": "0101e7e589ce40435c5a8709888225400a78ab6be86dfc5fef86ee23ba5338ad" + } + ] + }, + { + "bom-ref": "d6a428799679fec6", + "type": "file", + "name": "/etc/pam.d/login", + "hashes": [ + { + "alg": "SHA-1", + "content": "c6e460ab1394d6ff3527c3e3fdad2270a282fc20" + }, + { + "alg": "SHA-256", + "content": "42e1e68613a5e0d2942ceeb8b5a4544341bde732fed47630108a163545359f6d" + } + ] + }, + { + "bom-ref": "5281639c50e112ab", + "type": "file", + "name": "/etc/pam.d/newusers", + "hashes": [ + { + "alg": "SHA-1", + "content": "cc07d944c1a6d1eeaa00e3a79d9362d8de572ea2" + }, + { + "alg": "SHA-256", + "content": "26e75ce7c9066801b8db380ff9d8ba58a5e8cf2de5fb38ffd1db5ba62c85acef" + } + ] + }, + { + "bom-ref": "a8f20947cdbe11eb", + "type": "file", + "name": "/etc/pam.d/other", + "hashes": [ + { + "alg": "SHA-1", + "content": "22053a92a95f1d81b1932299496f9dd33def03ed" + }, + { + "alg": "SHA-256", + "content": "d13078e71d3351ef7f63a7265ddb50b710a2598b9febc78810fbb0130a02695a" + } + ] + }, + { + "bom-ref": "8ae12df55df178d7", + "type": "file", + "name": "/etc/pam.d/passwd", + "hashes": [ + { + "alg": "SHA-1", + "content": "a7a73b5ddcb02358a988de56376822cd7d8c8f17" + }, + { + "alg": "SHA-256", + "content": "87696fad1046d6b33b6d3407bb419980987331b4dcd8905f7a6041bced90c51d" + } + ] + }, + { + "bom-ref": "163537382ac01221", + "type": "file", + "name": "/etc/pam.d/runuser", + "hashes": [ + { + "alg": "SHA-1", + "content": "5eee0c00c9193b8cfc26a85605a4a10727844295" + }, + { + "alg": "SHA-256", + "content": "2d430cb6628248953568010427d663f3305856f3cb055955c2239bea226c5280" + } + ] + }, + { + "bom-ref": "cba6716ac71034db", + "type": "file", + "name": "/etc/pam.d/runuser-l", + "hashes": [ + { + "alg": "SHA-1", + "content": "ba76bbb7fd56968bb1bd438758c0ec3570b36c5e" + }, + { + "alg": "SHA-256", + "content": "be9329a8b26e3cfd4af879fe60900f646f8188f3fbe491688f23d4d8b491c5b1" + } + ] + }, + { + "bom-ref": "ac41db52ec21d2a4", + "type": "file", + "name": "/etc/pam.d/su", + "hashes": [ + { + "alg": "SHA-1", + "content": "4528698605616fee721d7ef1f28e933b1ac58828" + }, + { + "alg": "SHA-256", + "content": "f7cac62fbcd50f9931d09a9190fc3ec390fd48fb5b8bec57e0996a7246856b12" + } + ] + }, + { + "bom-ref": "8e1de04167a300e2", + "type": "file", + "name": "/etc/pam.d/su-l", + "hashes": [ + { + "alg": "SHA-1", + "content": "4847d6a186c2054aac587fe73fff59aaab57f0a7" + }, + { + "alg": "SHA-256", + "content": "4d10241676e97e5e8d8935e5c8e8f6cb2f871afb881059715f155909be9ebd77" + } + ] + }, + { + "bom-ref": "dc975212ea7500dc", + "type": "file", + "name": "/etc/securetty", + "hashes": [ + { + "alg": "SHA-1", + "content": "c1036f03b47e4f89ad35d57d4dfa670da446bda2" + }, + { + "alg": "SHA-256", + "content": "0dd82ae636d59993f23c411ace459c54b19339f637013aa502c5dc5f542bc31f" + } + ] + }, + { + "bom-ref": "3c1fd83fcdb8f11f", + "type": "file", + "name": "/etc/security/access.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "e2a2cfb8bbf2f3ec5b1b65a1cb8aa1d7e1ace604" + }, + { + "alg": "SHA-256", + "content": "f68915c4eb637aacbfa01cf26dc469a73f70acb0495efc4b074ecbc626bcb345" + } + ] + }, + { + "bom-ref": "3dea8692483fa18a", + "type": "file", + "name": "/etc/security/group.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "251da41358d9e88d303e192a0bb216f19c774483" + }, + { + "alg": "SHA-256", + "content": "41df4bc646811997d0390c6d37d839d2aef4a9a1a940c44ee1a798a9dc1ac864" + } + ] + }, + { + "bom-ref": "1e40f5d9c4c2e952", + "type": "file", + "name": "/etc/security/limits.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "f9a82848e6930edf3dcd9550b0bfa8c49969df21" + }, + { + "alg": "SHA-256", + "content": "efe8446a3c499818e7c5736c9494f222cb9098e8733aee91508b3631ad053b27" + } + ] + }, + { + "bom-ref": "ad0526c7c34be035", + "type": "file", + "name": "/etc/security/namespace.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "239860a486a350256bea8d0a1e032a18fbfd1fc1" + }, + { + "alg": "SHA-256", + "content": "d0c3045ba5071b8375fde6165d4e4db9b69f49af5d2525cecd2bca1cb7538552" + } + ] + }, + { + "bom-ref": "ef3cc12c1ec825c9", + "type": "file", + "name": "/etc/security/namespace.init", + "hashes": [ + { + "alg": "SHA-1", + "content": "0bde0dbd7776db602fadf3b7f0676e314b094d5a" + }, + { + "alg": "SHA-256", + "content": "2d76094c06f10839c566ef64bde5624c325aeab7991e7f5d776c5310e8f41932" + } + ] + }, + { + "bom-ref": "3ab48b2bf8e1767d", + "type": "file", + "name": "/etc/security/pam_env.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "1b7c088fb216a16b6da3149c0f1a86494ec8f282" + }, + { + "alg": "SHA-256", + "content": "ff4956721a3f53e56e25ffffde62fe4fa0267e5dd94c3411def12de50322fb8f" + } + ] + }, + { + "bom-ref": "9acab1d87b94696b", + "type": "file", + "name": "/etc/security/sepermit.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "0519a9bbe7b0dbd3c58df9b3fbf4cf9724e132ff" + }, + { + "alg": "SHA-256", + "content": "885ec2a43042ad88d7f849e5e1cbef4e34e58229764a84a927c0e09cd7d47d70" + } + ] + }, + { + "bom-ref": "a4ae459ea219680d", + "type": "file", + "name": "/etc/security/time.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "f534f75c1e5be8ef028b9daf90836e531e929579" + }, + { + "alg": "SHA-256", + "content": "6802adfc8efc6168f87e98e960fa7d15e516a295fef7a6472ef5359527e886ff" + } + ] + }, + { + "bom-ref": "38644e9f56a97324", + "type": "file", + "name": "/etc/selinux/semanage.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "a0a77875fc424ec2897acf5d2a642c325ffeb878" + }, + { + "alg": "SHA-256", + "content": "80464fb793459392ffbf1e79e57df3247a7b2fe413854f2c155848a0b8c6004f" + } + ] + }, + { + "bom-ref": "b22cc1401f91a2cc", + "type": "file", + "name": "/etc/skel/.bash_logout", + "hashes": [ + { + "alg": "SHA-1", + "content": "dc216ac4a4c232815731979db6e494f315b507dd" + }, + { + "alg": "SHA-256", + "content": "26882b79471c25f945c970f8233d8ce29d54e9d5eedcd2884f88affa84a18f56" + } + ] + }, + { + "bom-ref": "23ce756cb0bc2c46", + "type": "file", + "name": "/etc/skel/.bashrc", + "hashes": [ + { + "alg": "SHA-1", + "content": "1912d65db378e86db92e0ec08c9d90b93e4b0349" + }, + { + "alg": "SHA-256", + "content": "afae8986f549c6403410e029f9cce7983311512d04b1f02af02e4ce0af0dd2bf" + } + ] + }, + { + "bom-ref": "84826bf74c1aa37e", + "type": "file", + "name": "/etc/skel/.profile", + "hashes": [ + { + "alg": "SHA-1", + "content": "2b9ee6d446f8f9ffccaab42b6df5649f749a9a07" + }, + { + "alg": "SHA-256", + "content": "28b4a453b68dde64f814e94bab14ee651f4f162e15dd9920490aa1d49f05d2a4" + } + ] + }, + { + "bom-ref": "08f3bf4372d271e1", + "type": "file", + "name": "/etc/terminfo/README", + "hashes": [ + { + "alg": "SHA-1", + "content": "36fda0c2e04ae4003a9264876dd9a446f135ed53" + }, + { + "alg": "SHA-256", + "content": "cfc3399b782bb0ecb14b9727dbd5ffd82ef774d473f6c47c39e621f8f4850603" + } + ] + }, + { + "bom-ref": "b5ca75dcd49de034", + "type": "file", + "name": "/etc/update-motd.d/10-uname", + "hashes": [ + { + "alg": "SHA-1", + "content": "9149a9aa0c7a6658e96e06aa63a930e07d172b74" + }, + { + "alg": "SHA-256", + "content": "1dca09550a75048731bbd17f17e027cc71ae50a86e0d911a8b3813e88d9b5ab6" + } + ] + }, + { + "bom-ref": "a259fcfe9a7ae21d", + "type": "file", + "name": "/etc/xattr.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "54113a3771fd7b2b8bb63ccf0a899ac9af88f685" + }, + { + "alg": "SHA-256", + "content": "c1259ead36165a9477c9e1948500fb1ae58f33140d2c8b9fdf09ae54425d62b6" + } + ] + }, + { + "bom-ref": "03fbdb9fbb1d9fab", + "type": "file", + "name": "/lib/init/init-d-script", + "hashes": [ + { + "alg": "SHA-1", + "content": "3e5ec921029a42726007cc4070cf8164b1be908c" + }, + { + "alg": "SHA-256", + "content": "1c0da4a585f34258490ea506e96729eb0749634ba80c57f7c88be0aa69f6cd72" + } + ] + }, + { + "bom-ref": "3bca7fd093803a42", + "type": "file", + "name": "/lib/init/vars.sh", + "hashes": [ + { + "alg": "SHA-1", + "content": "e89abe80b0c8b2a77218b6fc3f93e0788f4c6de6" + }, + { + "alg": "SHA-256", + "content": "49d734860b46c62805fc29a67b9d61210113b6eac2409e4ffd5cf14589f4f0a3" + } + ] + }, + { + "bom-ref": "5f7834e13ae80bf3", + "type": "file", + "name": "/lib/systemd/system/apt-daily-upgrade.service", + "hashes": [ + { + "alg": "SHA-1", + "content": "8252d95fe4156f822791ea2a650d6be426938ae9" + }, + { + "alg": "SHA-256", + "content": "da0651537cad0ed384291bd50c0bbc3268e6c625626ec9344150de4e8db3925e" + } + ] + }, + { + "bom-ref": "e8100615ef958985", + "type": "file", + "name": "/lib/systemd/system/apt-daily-upgrade.timer", + "hashes": [ + { + "alg": "SHA-1", + "content": "173ec55519854c75b34e226ac35fffd3be0c021e" + }, + { + "alg": "SHA-256", + "content": "b804d7bab8eb41202384f9270e25d5383346ace8b3d7c4f5029c150638d77bcd" + } + ] + }, + { + "bom-ref": "aa54e7f8cea59155", + "type": "file", + "name": "/lib/systemd/system/apt-daily.service", + "hashes": [ + { + "alg": "SHA-1", + "content": "6d3b7e4314ea883ca6e4f0f10771c1fc6da2bf0d" + }, + { + "alg": "SHA-256", + "content": "90f87047f4ea2f261f9117d02870de8719f808b911bb1808bf039ff3c162e5e9" + } + ] + }, + { + "bom-ref": "ea66102929c24236", + "type": "file", + "name": "/lib/systemd/system/apt-daily.timer", + "hashes": [ + { + "alg": "SHA-1", + "content": "a20cbb7385ba01d03cb70b1b3e5193f0695cce13" + }, + { + "alg": "SHA-256", + "content": "0075e974af4e3a94757e219ba50ccb8348d4d1a8834d938f6cc9b1f4fd1db4e5" + } + ] + }, + { + "bom-ref": "a3e2e4b45d281787", + "type": "file", + "name": "/lib/systemd/system/fstrim.service", + "hashes": [ + { + "alg": "SHA-1", + "content": "702ceed03cbab8376a66408e317f9c9cec08d6e6" + }, + { + "alg": "SHA-256", + "content": "eb3345973ec6502143e56d9f6fc5bf45ac0f3798ea22cbfcc5189f5664f257d6" + } + ] + }, + { + "bom-ref": "311749e0f9c06262", + "type": "file", + "name": "/lib/systemd/system/fstrim.timer", + "hashes": [ + { + "alg": "SHA-1", + "content": "e1b95615491a6ce6e6d3f3974dfde86b09f745b4" + }, + { + "alg": "SHA-256", + "content": "c0207b760f12b3da601be9ffea48872bc446dcd295103563122c3b1eca0faeee" + } + ] + }, + { + "bom-ref": "1ba0da2b5f1a8468", + "type": "file", + "name": "/lib/terminfo/E/Eterm", + "hashes": [ + { + "alg": "SHA-1", + "content": "c171f101adf9f707f41d522837f410e3031114ea" + }, + { + "alg": "SHA-256", + "content": "c22ee12bc37dbdc11378b2125474be364cc2ddc384646593822626a766e5803f" + } + ] + }, + { + "bom-ref": "631ae5e24e85e97a", + "type": "file", + "name": "/lib/terminfo/a/ansi", + "hashes": [ + { + "alg": "SHA-1", + "content": "b5211ae4c20d69e9913b175c3645c5ce97837ce3" + }, + { + "alg": "SHA-256", + "content": "93ec8cb9beb0c898ebc7dda0f670de31addb605be9005735228680d592cff657" + } + ] + }, + { + "bom-ref": "59aaa1c053977957", + "type": "file", + "name": "/lib/terminfo/c/cons25", + "hashes": [ + { + "alg": "SHA-1", + "content": "b9fe14cf5f090381ae40637d02c3734b28fdd3ff" + }, + { + "alg": "SHA-256", + "content": "acd69b88fbc9045037b562dd67c876e88cc5d2616af20b9ca6c41d33ee335606" + } + ] + }, + { + "bom-ref": "f57e68dd9a777381", + "type": "file", + "name": "/lib/terminfo/c/cons25-debian", + "hashes": [ + { + "alg": "SHA-1", + "content": "3da6a66ef89960184340cd835d49e1e46d4f7c18" + }, + { + "alg": "SHA-256", + "content": "0437ef75abb06ca00a0ca444a8aa7402276b7217a20330217c84b59fdd8e0b4f" + } + ] + }, + { + "bom-ref": "0bb631a1039f1e16", + "type": "file", + "name": "/lib/terminfo/c/cygwin", + "hashes": [ + { + "alg": "SHA-1", + "content": "76d9469b0fc8838dacfd5d3922bfc95a06a6ba1c" + }, + { + "alg": "SHA-256", + "content": "3e04bfdcc0764f4e28655701864845752cd3f77d0c52390637ebe588f91665cf" + } + ] + }, + { + "bom-ref": "a64014e9e8bc2f60", + "type": "file", + "name": "/lib/terminfo/d/dumb", + "hashes": [ + { + "alg": "SHA-1", + "content": "df4b4d8fa4137e85510ddb04c84cc7b0bfc518f6" + }, + { + "alg": "SHA-256", + "content": "123c85a2812a517d967db5f31660db0e6aded4a0b95ed943c5ab435368e7a25c" + } + ] + }, + { + "bom-ref": "ddf9aeee60f4a54f", + "type": "file", + "name": "/lib/terminfo/h/hurd", + "hashes": [ + { + "alg": "SHA-1", + "content": "a8e77b1e651fb48c82d4c55574928929596c8984" + }, + { + "alg": "SHA-256", + "content": "d5dc00724a04eb3b030addab6914380521d40f416818943171070ec64c623607" + } + ] + }, + { + "bom-ref": "b1b9906c222ccc30", + "type": "file", + "name": "/lib/terminfo/l/linux", + "hashes": [ + { + "alg": "SHA-1", + "content": "2c24ba7a71a8f1bb9bc1c93f70b3ede700273160" + }, + { + "alg": "SHA-256", + "content": "50b1e7dde373b337efecb490bd514d9deab49accb06361f17c14f554dfc09b92" + } + ] + }, + { + "bom-ref": "f964e215ce0105b0", + "type": "file", + "name": "/lib/terminfo/m/mach", + "hashes": [ + { + "alg": "SHA-1", + "content": "2164ebc6389b2eb81f855aff81dd512a9c0ef589" + }, + { + "alg": "SHA-256", + "content": "ecd31c58040e5908eb434514e67620b2e4be538655126f427155760b273c7e9b" + } + ] + }, + { + "bom-ref": "da6b962a590933b8", + "type": "file", + "name": "/lib/terminfo/m/mach-bold", + "hashes": [ + { + "alg": "SHA-1", + "content": "b31e68274d7e658c3d20302c10f3a8dee2d45a6a" + }, + { + "alg": "SHA-256", + "content": "4e4400e3ad4df2dbbf90920860c540cd72552ca71a24b556a0b6ba62fa091b84" + } + ] + }, + { + "bom-ref": "f1037661871cbde0", + "type": "file", + "name": "/lib/terminfo/m/mach-color", + "hashes": [ + { + "alg": "SHA-1", + "content": "519df843a8d27ca36bb1703c3edc893135793dd1" + }, + { + "alg": "SHA-256", + "content": "5caa825bd606e26c8b6c55a3206eccfea525e788f74da5e7cb48cc713db52239" + } + ] + }, + { + "bom-ref": "2b6a12dd8050bc98", + "type": "file", + "name": "/lib/terminfo/m/mach-gnu", + "hashes": [ + { + "alg": "SHA-1", + "content": "bf9269b2a7a463c68e2ba9200b28ae3115f6b362" + }, + { + "alg": "SHA-256", + "content": "99372cd399478be723230692595362004df345dee6c4145e4d109113a2357717" + } + ] + }, + { + "bom-ref": "f580b88cdfac3f17", + "type": "file", + "name": "/lib/terminfo/m/mach-gnu-color", + "hashes": [ + { + "alg": "SHA-1", + "content": "4466e8a9353f3400cfba527abcf0d26c28f364c2" + }, + { + "alg": "SHA-256", + "content": "e1c62541670d0e10fe46daabce8ce95d9fd77115a68106e5eb2c2a7647e40a13" + } + ] + }, + { + "bom-ref": "552a1864ca3c1d2a", + "type": "file", + "name": "/lib/terminfo/p/pcansi", + "hashes": [ + { + "alg": "SHA-1", + "content": "6867ac96a0cfed1d9df1e9a64f122c75cac71a99" + }, + { + "alg": "SHA-256", + "content": "ecda9662049c96ee0a574f40cfb8950b0198b508b5b72a3de05774eb3cb3f34e" + } + ] + }, + { + "bom-ref": "9061d46a414e1c61", + "type": "file", + "name": "/lib/terminfo/r/rxvt", + "hashes": [ + { + "alg": "SHA-1", + "content": "31ca4123a34c92d39773a055ce13ad80ef6682a7" + }, + { + "alg": "SHA-256", + "content": "75395ba8ddb3660c63f82fc337c63af071307f9211727afd2fedd944baf24285" + } + ] + }, + { + "bom-ref": "2cfcfb0ca6895a1e", + "type": "file", + "name": "/lib/terminfo/r/rxvt-basic", + "hashes": [ + { + "alg": "SHA-1", + "content": "a6ef1550021e08088f68c750f0a46a8f81aa17c5" + }, + { + "alg": "SHA-256", + "content": "6065778e3cb2aa6fac521fc3d1717800956c335fe32f742bfe1655a665da8b02" + } + ] + }, + { + "bom-ref": "7b910e7da0e377e8", + "type": "file", + "name": "/lib/terminfo/r/rxvt-unicode", + "hashes": [ + { + "alg": "SHA-1", + "content": "ed5b20e981296b3f500fd7416a67fd4977dd0a57" + }, + { + "alg": "SHA-256", + "content": "280165734528e93ec7c770524e8ce3a3d29dcf5ca5696dacd093d1eb5ce3460a" + } + ] + }, + { + "bom-ref": "581873c9c4b5ebf2", + "type": "file", + "name": "/lib/terminfo/r/rxvt-unicode-256color", + "hashes": [ + { + "alg": "SHA-1", + "content": "7e4f85a3aaaaed6b1a215daf987738f14b267d9c" + }, + { + "alg": "SHA-256", + "content": "8855f7a9c77a4447f16398cc2542eb56ee80f3e066ad0a01e7183673d0e9e3c9" + } + ] + }, + { + "bom-ref": "12eeca70394f80b2", + "type": "file", + "name": "/lib/terminfo/s/screen", + "hashes": [ + { + "alg": "SHA-1", + "content": "b43375d8185fb26a2f4258639085cc3946e5be41" + }, + { + "alg": "SHA-256", + "content": "b2ca8fc467310c135be658fd93b8175af3ede6e4403a42951f72b388e72e8c43" + } + ] + }, + { + "bom-ref": "1afc68e50b575929", + "type": "file", + "name": "/lib/terminfo/s/screen-256color", + "hashes": [ + { + "alg": "SHA-1", + "content": "f3a5cd83c8216f6e5cb7da5130166b43c5e12669" + }, + { + "alg": "SHA-256", + "content": "ea72d649e11e30ed2bd2385400fea5b17b37f08aa18ccbc1d1c13e18b7ea3af2" + } + ] + }, + { + "bom-ref": "a9bab538463fd8d4", + "type": "file", + "name": "/lib/terminfo/s/screen-256color-bce", + "hashes": [ + { + "alg": "SHA-1", + "content": "f57eb86e5355cf6aa943d452f5a9e73bf15d35e7" + }, + { + "alg": "SHA-256", + "content": "f5719df3d0d6bc1184896a6f385a24c7c75a4677ed5d44fecb9c50256a44911a" + } + ] + }, + { + "bom-ref": "b8a17f6274cafa66", + "type": "file", + "name": "/lib/terminfo/s/screen-bce", + "hashes": [ + { + "alg": "SHA-1", + "content": "21dab0a8e0b80db0b31c401cefef8790bcd3615d" + }, + { + "alg": "SHA-256", + "content": "348ca9c008b9ce4a4e10744a7a5208220f5110e253a6768152ac8bef82bd395f" + } + ] + }, + { + "bom-ref": "62b5065301aa6ae5", + "type": "file", + "name": "/lib/terminfo/s/screen-s", + "hashes": [ + { + "alg": "SHA-1", + "content": "a53bd44e484fd9e07e43c303efea80e5e07c1848" + }, + { + "alg": "SHA-256", + "content": "fc7a12199df61866165db3a902e2d3c9082aba79b6bc49cc9b1b138200968d57" + } + ] + }, + { + "bom-ref": "44daf59fc2ac9190", + "type": "file", + "name": "/lib/terminfo/s/screen-w", + "hashes": [ + { + "alg": "SHA-1", + "content": "183b2fdf34ab0715f471f75a1e16d14330bfa54a" + }, + { + "alg": "SHA-256", + "content": "a2ccf6d70361bd17348e97f88f0e5efee9b076dd64e8e1a5662f5d0baabdb1a5" + } + ] + }, + { + "bom-ref": "9dc260bd375352ae", + "type": "file", + "name": "/lib/terminfo/s/screen.xterm-256color", + "hashes": [ + { + "alg": "SHA-1", + "content": "9ac96d35d03f90aebc9b16498e3f12016dccddd0" + }, + { + "alg": "SHA-256", + "content": "08055417ac9a97e0f896036961861e0ef57fec8bbd141ecd86a07d03ca692d5a" + } + ] + }, + { + "bom-ref": "b6c0fd3c7c5dc7d3", + "type": "file", + "name": "/lib/terminfo/s/sun", + "hashes": [ + { + "alg": "SHA-1", + "content": "faf6b1b33d6c3a6aae31f7b657810b6171d91a8d" + }, + { + "alg": "SHA-256", + "content": "02e392161cb23f49a8fb1ba2f1a6583e013c0c26672f58c5eaca828db3b19914" + } + ] + }, + { + "bom-ref": "9eb50f7f04b50308", + "type": "file", + "name": "/lib/terminfo/v/vt100", + "hashes": [ + { + "alg": "SHA-1", + "content": "604682c15cc708fbd02fecf33d0d23bed5e735e6" + }, + { + "alg": "SHA-256", + "content": "44fe1bfcc36f3a7669a387b623a44c360f9e150868f9924920182b44bcbbdba6" + } + ] + }, + { + "bom-ref": "7173b652a6bc59fe", + "type": "file", + "name": "/lib/terminfo/v/vt102", + "hashes": [ + { + "alg": "SHA-1", + "content": "0647b65463bb39b373e3fa4019249f2b2f84991b" + }, + { + "alg": "SHA-256", + "content": "60e451f57c0308b79004ebc6189b49417b4ac11d783154072cae803a11af7d3f" + } + ] + }, + { + "bom-ref": "f79827425768a704", + "type": "file", + "name": "/lib/terminfo/v/vt220", + "hashes": [ + { + "alg": "SHA-1", + "content": "dd532c9347e2c83c9fe6a3116fb5edc98a4bdad0" + }, + { + "alg": "SHA-256", + "content": "75a4723bfcdcd22756366838f1d65233f386d7592b019740c8ca5b578e9a5857" + } + ] + }, + { + "bom-ref": "852cbcf88d2d1700", + "type": "file", + "name": "/lib/terminfo/v/vt52", + "hashes": [ + { + "alg": "SHA-1", + "content": "b455a64f6289bade2326b57838f8fecc2a0f6c73" + }, + { + "alg": "SHA-256", + "content": "1d8e7d40be89fe71e5d2582caa5168fe53ed85d9063e0ccf42e5c53f4d17b069" + } + ] + }, + { + "bom-ref": "b56ffdbd401b75ce", + "type": "file", + "name": "/lib/terminfo/w/wsvt25", + "hashes": [ + { + "alg": "SHA-1", + "content": "6e544110ee387257fad3048674d0b6cb5e81291c" + }, + { + "alg": "SHA-256", + "content": "28d3410e6b83a3b78a41f108098ac8772a3af3ee2b627b9f9bb4b19b363a5be3" + } + ] + }, + { + "bom-ref": "2d0ce6ea805b51a4", + "type": "file", + "name": "/lib/terminfo/w/wsvt25m", + "hashes": [ + { + "alg": "SHA-1", + "content": "74ef27fc6d81c6a43dd40f231777c0ffb485a559" + }, + { + "alg": "SHA-256", + "content": "18c85db3b0ef0ab15b7eb8dc4ac6ea14a37d851628220c8bb61e2edfa4f81683" + } + ] + }, + { + "bom-ref": "50132bca1c183e9f", + "type": "file", + "name": "/lib/terminfo/x/xterm", + "hashes": [ + { + "alg": "SHA-1", + "content": "e58130030e2a31d1e19a221ffaad7f75331a9778" + }, + { + "alg": "SHA-256", + "content": "d400f558425694bbc618b1faf3c6c92c09f4b264de824d0dea7af8fa3a5096c7" + } + ] + }, + { + "bom-ref": "6bca70c96dab4e70", + "type": "file", + "name": "/lib/terminfo/x/xterm-256color", + "hashes": [ + { + "alg": "SHA-1", + "content": "3b425fa893f5312bcaf576ca7e7fbcd793e03689" + }, + { + "alg": "SHA-256", + "content": "91f49283d1ae04cd8bbbea813268aa4d0bf25ffed0f1d4e2fd24e147eba1d3d0" + } + ] + }, + { + "bom-ref": "47df3ed68fe08b65", + "type": "file", + "name": "/lib/terminfo/x/xterm-color", + "hashes": [ + { + "alg": "SHA-1", + "content": "c198d7918676777aadbe39503332054fbb5a5922" + }, + { + "alg": "SHA-256", + "content": "0b270450c7498756c0e99cfb24341e68f7443344adcf1656e30a0333e48f550f" + } + ] + }, + { + "bom-ref": "a6687485937c67c3", + "type": "file", + "name": "/lib/terminfo/x/xterm-mono", + "hashes": [ + { + "alg": "SHA-1", + "content": "949ff8f7258762b67a3753b2c2f4d5457cfcb0e9" + }, + { + "alg": "SHA-256", + "content": "183c527a8cbec5b5fef3eb8c28473a0530317eea7d01150eec74c01a214fef59" + } + ] + }, + { + "bom-ref": "6f5a9ef19fd8b3eb", + "type": "file", + "name": "/lib/terminfo/x/xterm-r5", + "hashes": [ + { + "alg": "SHA-1", + "content": "a4283a7cf44e9e4a4a9e5ac166328ba8d6ddf632" + }, + { + "alg": "SHA-256", + "content": "82098ec067be6189e91e8264278bb85fe3b7bfdeaa3754be301313be140522ca" + } + ] + }, + { + "bom-ref": "e4babad886480240", + "type": "file", + "name": "/lib/terminfo/x/xterm-r6", + "hashes": [ + { + "alg": "SHA-1", + "content": "97bfc10103a98e54eb646a2e9b39d9e23a983336" + }, + { + "alg": "SHA-256", + "content": "ee12fe6d2d8e1d0b83d1042fe8a38f1aed6fd73e2c7316e6db5ec5b061b09ef8" + } + ] + }, + { + "bom-ref": "5222d67dd72a905b", + "type": "file", + "name": "/lib/terminfo/x/xterm-vt220", + "hashes": [ + { + "alg": "SHA-1", + "content": "196db38ee77ee48febbaf235be78957a82f716c0" + }, + { + "alg": "SHA-256", + "content": "2bfcc418ca74608db0f37f7d4a33353e50a0624ef4f8f422041e22493a0a5b83" + } + ] + }, + { + "bom-ref": "0790d5446891cfab", + "type": "file", + "name": "/lib/terminfo/x/xterm-xfree86", + "hashes": [ + { + "alg": "SHA-1", + "content": "46db5031e65a8ac9143fcf1703133750588a8811" + }, + { + "alg": "SHA-256", + "content": "c9c698fde3f11aa26faa9cc71d3b2f82ee80c60904868054048bc7770910e7e2" + } + ] + }, + { + "bom-ref": "8f10eb36d96dc12d", + "type": "file", + "name": "/lib/udev/hwclock-set", + "hashes": [ + { + "alg": "SHA-1", + "content": "3e2983e594bc5c8b4e26b09cbb1ed9b074a1b2cf" + }, + { + "alg": "SHA-256", + "content": "bec691723c892b77efe3c718846c2f320b4218d6448c8cf71d663e3be8396564" + } + ] + }, + { + "bom-ref": "e384921f0e082574", + "type": "file", + "name": "/lib/udev/rules.d/85-hwclock.rules", + "hashes": [ + { + "alg": "SHA-1", + "content": "d7e6e407d6751c16269a9619f53a65fec72575b5" + }, + { + "alg": "SHA-256", + "content": "a65b7d818578fa91ebc00d086964c0528fa28d0ca04c54f11009c6c375f3e158" + } + ] + }, + { + "bom-ref": "bb966ba09c74f187", + "type": "file", + "name": "/lib/x86_64-linux-gnu/ld-2.28.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "4196dfaca4fc796710efd3dd37bd8f5c8010b11d" + }, + { + "alg": "SHA-256", + "content": "3e7cb1a5fa4d540f582dddfdb0c69958eca738ba8d60c0bbb6719f091192f33f" + } + ] + }, + { + "bom-ref": "0a79b130a5616424", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libBrokenLocale-2.28.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "2db17e165574bb2bd9d349b56a56ea63f41b4d1c" + }, + { + "alg": "SHA-256", + "content": "3de7e493988ee582802242e50491e4d2d3555c26e0c3466343149871649579d6" + } + ] + }, + { + "bom-ref": "a1140c6d957836a4", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libSegFault.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "fb29921e1306877daecd59ccd0f5ea97f7d2cd5b" + }, + { + "alg": "SHA-256", + "content": "df82e27513032ad6cdfb6562f6bcaa0f8a6ec7da674d0617786f26338f9b403e" + } + ] + }, + { + "bom-ref": "f053e80d1f72cde5", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libanl-2.28.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "bf636be0f004ba54696c761104f0d6d00c024bcc" + }, + { + "alg": "SHA-256", + "content": "52e89813dcab84fa75e910fc55a95089489a9a7ecc90c6af15fe1e71ed5e4ef7" + } + ] + }, + { + "bom-ref": "a58e8bdee74aefd9", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libaudit.so.1.0.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "dc1b1d2506dd004332006ada2555e8fc64d50af4" + }, + { + "alg": "SHA-256", + "content": "55982527ea73d4d843b38ce1519dc76134c86f96a5b5adf641ffc14f2a42dbd5" + } + ] + }, + { + "bom-ref": "2b9c124fc481e5cf", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libblkid.so.1.1.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "0669082f3a7943e5705eec4d691b97efc539bd93" + }, + { + "alg": "SHA-256", + "content": "a4e38d30fe77709d0baaa9f0dc41d1813b0cf965a21e5657e67c154f0dc13bc5" + } + ] + }, + { + "bom-ref": "c43e5197094e0aab", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libbz2.so.1.0.4", + "hashes": [ + { + "alg": "SHA-1", + "content": "402d64e4c357a4bdd867f421d540236709831bea" + }, + { + "alg": "SHA-256", + "content": "c23771594bd3f88fee06be1db61cfca3b2b6777f17089c2fc311638375994d93" + } + ] + }, + { + "bom-ref": "e21054bd80cfada8", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libc-2.28.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "13d8d9f665c1f3a087e366e9092c112a0b8e100f" + }, + { + "alg": "SHA-256", + "content": "dedb887a5c49294ecd850d86728a0744c0e7ea780be8de2d4fc89f6948386937" + } + ] + }, + { + "bom-ref": "815a6b0cfc61b494", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libcap-ng.so.0.0.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "9e1a0bda53ea84e0367a33d22d258e57440d982d" + }, + { + "alg": "SHA-256", + "content": "9ab3216433240efd918f6840a7246d83fd325dcdc7dc4efaea42b4a7ca2bc9b0" + } + ] + }, + { + "bom-ref": "f82d8447f5bde0d2", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libcom_err.so.2.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "84c21158a8175f233fcb0b380c862345e28d3ba4" + }, + { + "alg": "SHA-256", + "content": "83d9014e42d348d09940dda2d23ae68cf669b80bf344e45fef50dbe204973656" + } + ] + }, + { + "bom-ref": "e6baf857c6479ff8", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libcrypt-2.28.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "af627a7f2aa2428426b0d15b1269086de40f3577" + }, + { + "alg": "SHA-256", + "content": "fff3ce8707bce57e439ea3602be6e1e30ed26baa495c6c507a70608af8dfbd1e" + } + ] + }, + { + "bom-ref": "942ecc99011b4b8d", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libdl-2.28.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "56da5cc3a589da572aee045c89057fefd9e0d6bf" + }, + { + "alg": "SHA-256", + "content": "c60003f02517b92fafa2b06a3c8a7b18dccc4c17f1ad76b30f41445ea92bf178" + } + ] + }, + { + "bom-ref": "6982ba6e8059d67c", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libe2p.so.2.3", + "hashes": [ + { + "alg": "SHA-1", + "content": "577346b6fd2af331c288d047915cefff3efacf63" + }, + { + "alg": "SHA-256", + "content": "5023e85fba261092753f9533dacfb8b58db669893f79a68978ee2b5a0e8c5289" + } + ] + }, + { + "bom-ref": "47a44811f7025d47", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libext2fs.so.2.4", + "hashes": [ + { + "alg": "SHA-1", + "content": "97d0c180760a58de6653769f4306986b32d2932d" + }, + { + "alg": "SHA-256", + "content": "e69b13fb52e6223cd4f3e014857d89710ea6fe2515c38d34a29ad0c2b1fac231" + } + ] + }, + { + "bom-ref": "d4e71c884c00dd57", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libfdisk.so.1.1.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "638985b3f089025b35262e19ab84a1daa0719455" + }, + { + "alg": "SHA-256", + "content": "e70a12deaeb1f3aee9d185824af0f7373b3ae0388ab2f87d84a3d4e2ef5c0ac2" + } + ] + }, + { + "bom-ref": "abb75a5a213ebb01", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libgcc_s.so.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "ef08acc3362dacac1fa59e288ad2985eee6cb768" + }, + { + "alg": "SHA-256", + "content": "7557f83a5769d557bdf0bfd81220e4af0c7c5bb7a2a61daf3af66918fe077e7a" + } + ] + }, + { + "bom-ref": "d50865008510f787", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libgcrypt.so.20.2.4", + "hashes": [ + { + "alg": "SHA-1", + "content": "1d4b1591df8c1e95a414770939b4ceba4ac7d2e0" + }, + { + "alg": "SHA-256", + "content": "9492390345744a7c37c6624dd10455eb187fe54f4394a3b632b0470b4fe0904b" + } + ] + }, + { + "bom-ref": "0822227015edac64", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libgpg-error.so.0.26.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "ea793b31ae5bbac8a0c803632a26aab8dc3e217a" + }, + { + "alg": "SHA-256", + "content": "fbb4087874f0f4afd4dd9b216bcad0e07aa3d81ed139bd1bc092fccd8655b1e8" + } + ] + }, + { + "bom-ref": "f40e9c71157ed8e8", + "type": "file", + "name": "/lib/x86_64-linux-gnu/liblzma.so.5.2.4", + "hashes": [ + { + "alg": "SHA-1", + "content": "ea33f5805dc6aeab44feff7ca9b3ad8d6a539422" + }, + { + "alg": "SHA-256", + "content": "38f8f22a30d21a1bd713b79b1ac3ce70026a2878d00d028aa699a9ba0075ddb4" + } + ] + }, + { + "bom-ref": "f61bbe4658d52ed3", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libm-2.28.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "b996d294e0a1ed5156b7956a430330252eaff5fa" + }, + { + "alg": "SHA-256", + "content": "b086093ac75af8a01454d29a8fd6ee8b32881b72d9d458d4dfccc8d2b07433c4" + } + ] + }, + { + "bom-ref": "31aa6d135117288c", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libmemusage.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "4d74c1718517bdad39f7ee7f290191cb2da6bd0d" + }, + { + "alg": "SHA-256", + "content": "ebdadbe60abe706840c1cc5afdd9d7790faba7df85ce84f7c9cecb9308694e9b" + } + ] + }, + { + "bom-ref": "3d1251a68eb5b4a3", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libmount.so.1.1.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "03bb71f68efa25ada13e66c5db188204e13f166a" + }, + { + "alg": "SHA-256", + "content": "0f66683ad9817fafe677f5170ab93448a63410a7d14de23c8c566779186bbe4e" + } + ] + }, + { + "bom-ref": "bd4988bd2b87bcec", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libmvec-2.28.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "a019f017e08a9cc13f0c842e99cdac7388d08fc8" + }, + { + "alg": "SHA-256", + "content": "6630a0322a360e8b5ee1353019d88550e64fb7dd5a19421c495f38da9d3c2ba4" + } + ] + }, + { + "bom-ref": "5580cc249d5e28cd", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libncursesw.so.6.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "531ee1783bab3a56dab4f933f55ca4a7f4eb8943" + }, + { + "alg": "SHA-256", + "content": "445de19902d2dcd31d1e51c199054b1c96b814ba1b1dc8c841a8343dc7d765c5" + } + ] + }, + { + "bom-ref": "6a0fe5213393ac83", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libnsl-2.28.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "b78b5b679eeee3ec351524a06f7d279f44a2195e" + }, + { + "alg": "SHA-256", + "content": "7e716d8888dbcf6782d3539602b090d5de0e6b62ad65353fbf5cded042ba977e" + } + ] + }, + { + "bom-ref": "a72d11512bf72ea6", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libnss_compat-2.28.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "290b8cd2d33bc36d2c432f7fea62be5cbd411a80" + }, + { + "alg": "SHA-256", + "content": "8a79301c3070cef8de7fc32d4ee37bcc289ffabc9969e01ea2064501444fbef4" + } + ] + }, + { + "bom-ref": "548fbc8d56afffba", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libnss_dns-2.28.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "d705a2d553e14e365e73960549015539c20eb356" + }, + { + "alg": "SHA-256", + "content": "f9539541bac3b897dc411def29764f13090b56997437787a399a85f84b752a82" + } + ] + }, + { + "bom-ref": "97d5463f0f715699", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libnss_files-2.28.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "2e8486e1a7d837822b04594ca146ac72f31d2904" + }, + { + "alg": "SHA-256", + "content": "2e1f402d888063dda595772a9ad92220ed0904d10c846134feffd55f1b74c826" + } + ] + }, + { + "bom-ref": "e0c963616bcda6ce", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libnss_hesiod-2.28.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "143d99f86d593fce81fabaceeb55f6d661c324ca" + }, + { + "alg": "SHA-256", + "content": "0db9b7de80dd3bcff7d0f81ba3799b339781767e6ef962d5579806d2f01c2d32" + } + ] + }, + { + "bom-ref": "894656ee98481d51", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libnss_nis-2.28.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "5ba4e9d38dbc4530fe41df3262c1445b9ea8274e" + }, + { + "alg": "SHA-256", + "content": "67bca7afec9d74a868bc0c2d970020e23a15976b6bdbf5833d8e2dc0241e27d4" + } + ] + }, + { + "bom-ref": "452c0cedf20b4847", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libnss_nisplus-2.28.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "3c873f41f9b2ae591674a27c9b2c2587c285968c" + }, + { + "alg": "SHA-256", + "content": "8946cbace45a656e0edb5312504541a00c6a31b2a311a5c2f7430015d83a7727" + } + ] + }, + { + "bom-ref": "29f5a0d7f4364e9a", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libpam.so.0.84.2", + "hashes": [ + { + "alg": "SHA-1", + "content": "36727f194ef8c8724457f88dfa96a9bca001d874" + }, + { + "alg": "SHA-256", + "content": "b1a3f560f06788337a05a6759c0fb2fc554342bedc87b3103c792bd78547a4a5" + } + ] + }, + { + "bom-ref": "03795c7c7dd57e98", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libpam_misc.so.0.82.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "87ae0ae93dcddf716b92d6dd33dade7fa567d0c7" + }, + { + "alg": "SHA-256", + "content": "f6418ef5d422963ec2ba4f40b82e9f05eb8a73c1c650529aff6ad947b5f74c07" + } + ] + }, + { + "bom-ref": "03bd1542eee5de7e", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libpamc.so.0.82.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "198aa10ae29cc2ddb851fb159cac926d5012fb81" + }, + { + "alg": "SHA-256", + "content": "f50b06e8433c37d08d0dc8bfa6658b3077ed7c79da73e9475f3e5f2e5189e4c4" + } + ] + }, + { + "bom-ref": "086852fa92fb44b6", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libpcprofile.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "0470d0b9f9a41e932eb4ca2a2d40ed2b68d6e139" + }, + { + "alg": "SHA-256", + "content": "3596278a5a6974e1182fb05324746d4e22a7e3d114dc7503e545a07bf2978b36" + } + ] + }, + { + "bom-ref": "0c26b5e14abe93e5", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libpcre.so.3.13.3", + "hashes": [ + { + "alg": "SHA-1", + "content": "bf8880f430704990778f8a00c1dd8b9c3de0e55a" + }, + { + "alg": "SHA-256", + "content": "22635e5747cde5d4eb9a67e86a0a909ec9c57dc51691238beb93210876a9df82" + } + ] + }, + { + "bom-ref": "cecccfd076f892c2", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libpthread-2.28.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "9fad012def8697ce352c717ee51e1f0a288edeac" + }, + { + "alg": "SHA-256", + "content": "41301d838040c1d334362417ddfeb068a21f56b807d9f3b0081aec9c1730f6cc" + } + ] + }, + { + "bom-ref": "1564f5dd8fbb1346", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libresolv-2.28.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "c85501ce5f74938fdc258d42446c988904d21f25" + }, + { + "alg": "SHA-256", + "content": "cc13cc7674052206a01f80190e743521d324964e6b69799173dd5f1887cfe3b2" + } + ] + }, + { + "bom-ref": "a2ce1561323f2751", + "type": "file", + "name": "/lib/x86_64-linux-gnu/librt-2.28.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "ff388501720daebe6581a9a7e9124734f472b686" + }, + { + "alg": "SHA-256", + "content": "11211055deebaec92ceb507ec8dc356e7225abd2914b1a8be2a7a0f284ac7c87" + } + ] + }, + { + "bom-ref": "abcef49eb8d21461", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libselinux.so.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "05b662eb06d2a17ac78cfab02decc234ea564e95" + }, + { + "alg": "SHA-256", + "content": "e88b4bacb5086abb18befa1bf4d3569791d0ed4f4c270ee25f415a18cf97ec72" + } + ] + }, + { + "bom-ref": "7bc970e3f68d4eae", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libsepol.so.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "04845fa48ee31edd9e5d6a0c61226c09c74dc06c" + }, + { + "alg": "SHA-256", + "content": "4b17ef0cf9235c0d483946a65a811fdae2779f6cc23e54f40a7ef934872540ca" + } + ] + }, + { + "bom-ref": "c519f865a66d62e9", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libsmartcols.so.1.1.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "25c35355c76d77b6b872a3952deba3c8e746a931" + }, + { + "alg": "SHA-256", + "content": "e510e2d6bcf64849b29084f258781bcee73eea9ef2bf5ad4591b419258c22af9" + } + ] + }, + { + "bom-ref": "8713b6ca02cc80c4", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libss.so.2.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "dda0b155b12264ec6222385811022cb89d224036" + }, + { + "alg": "SHA-256", + "content": "65be4ff2451945abc3189232f02ac55dfadf638f8b47b12d440a449d90db4ac5" + } + ] + }, + { + "bom-ref": "57c181e54e598580", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libsystemd.so.0.25.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "d4894011ade8526298b18a37f794b354b956e857" + }, + { + "alg": "SHA-256", + "content": "59ff11a172ad1c112f7f545091e15e41c44aae4b6037317d10228730e8356a80" + } + ] + }, + { + "bom-ref": "b409295883a2c955", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libthread_db-1.0.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "455d1e96d708a2b4123100daeebd4b33711a9194" + }, + { + "alg": "SHA-256", + "content": "795c44a933f91ebbeadddcaefbb0979dc4d72e2524a0b6987c9db7b96e437722" + } + ] + }, + { + "bom-ref": "08dd91532aa08227", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libtinfo.so.6.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "bef17407dd0b1d068e75b9e0aa09329da99c14c2" + }, + { + "alg": "SHA-256", + "content": "72c7adef419a13e01f95116626ae158ddbbbbd8510ba06d0df757ae234d0fc35" + } + ] + }, + { + "bom-ref": "05a1f7b4cd3231fe", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libudev.so.1.6.13", + "hashes": [ + { + "alg": "SHA-1", + "content": "9a670cb87977476eea7ea294bb313a0702a598c5" + }, + { + "alg": "SHA-256", + "content": "4e385b4b90d3012a7d0e2def5529c199c783f70c2bd53c088c163f4f9ce943e4" + } + ] + }, + { + "bom-ref": "40bc5fa37077012b", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libutil-2.28.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "b9bb580786432f6fcf27d8fe5d9bc412be1ed77d" + }, + { + "alg": "SHA-256", + "content": "2bf00466e9a6c4495ca041885e07306e18245cf9f4fec24a1a9f6cf5e7e62a37" + } + ] + }, + { + "bom-ref": "35a5a742f213def6", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libuuid.so.1.3.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "e081354a6fe943cb0a096a0b6c23dfb41dfacd03" + }, + { + "alg": "SHA-256", + "content": "7324d08a81ac3d9bb51026cc9c4e7701921c2243ae37908abdcd231ffec1c667" + } + ] + }, + { + "bom-ref": "b901e1ed050c1101", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libz.so.1.2.11", + "hashes": [ + { + "alg": "SHA-1", + "content": "dc4d7b20e9127b383e88d12f52e3f1bfe51bcc82" + }, + { + "alg": "SHA-256", + "content": "b6f9002df794a16defce57c6c4d4607c698bb58c12d52ef4236f8938cba242c1" + } + ] + }, + { + "bom-ref": "5416bae48714aaf3", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_access.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "774d1449b103df97bff4a92a3f655f5be57a9335" + }, + { + "alg": "SHA-256", + "content": "bab660e4cdf775697327da1113f844716c4a705866eabb687f788e7b17487c60" + } + ] + }, + { + "bom-ref": "2e356e262b9e7638", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_debug.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "93187c1670349990e9d773aad226f94e21043f19" + }, + { + "alg": "SHA-256", + "content": "2d679e7d9c383dbd2db46dfce0aff678292a9c758438fc645b1fe6b96613dcbe" + } + ] + }, + { + "bom-ref": "fb432ec62afe7d74", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_deny.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "691e9a9506b34ebe50d003648c37e3c38b1dee87" + }, + { + "alg": "SHA-256", + "content": "363c80fa49540a8a107b652e028e6cc640eba71c4b93932cc26462199566b5de" + } + ] + }, + { + "bom-ref": "0ecd56f34fd467ce", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_echo.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "767d1f6ea63b723b301fb3c16ef8624ee2f1d556" + }, + { + "alg": "SHA-256", + "content": "4032205c19c881d05fa0edf1f8a89e988f6a832163d702035bcf4f7ceebafdb2" + } + ] + }, + { + "bom-ref": "b2e78340aae19f13", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_env.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "1f31c34cab22aaa0a24a9bf0df156c0be5107aea" + }, + { + "alg": "SHA-256", + "content": "05b70b7eff290d37e22f21d46aba54a92a8993ff5bd4bc34c139dc96f07f15a2" + } + ] + }, + { + "bom-ref": "87ec9f2712f487d6", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_exec.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "3c985b2140502071cf4ddc9daf65e1bfac2e02c4" + }, + { + "alg": "SHA-256", + "content": "20efb572b64a35a2ecf803067ceadb1c205536a6655fd17e00ef1ed27faea6f3" + } + ] + }, + { + "bom-ref": "e3cff9c49a369431", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_faildelay.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "dc44e8abdc7f29c8902297ec7f3740eb5e8bd6d1" + }, + { + "alg": "SHA-256", + "content": "965ceebfdc353873e163e8f0062b58648aa36a9268ea94bcb38be3d30beaf3b8" + } + ] + }, + { + "bom-ref": "96cc3b3ac093490f", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_filter.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "8ce908520e81edb9057f70d7fac24d59e707a5f8" + }, + { + "alg": "SHA-256", + "content": "28a7c8eb39a414a1c191943566398ea8cf7666cfb51caae205194256dc8e3982" + } + ] + }, + { + "bom-ref": "6de6a08b4735d206", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_ftp.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "3ea8ef5b39b45126682d63a789f14a213a76ad76" + }, + { + "alg": "SHA-256", + "content": "2a3e1ee8d777760f823fddd1de17e6821e362be88f46466ef3772773a056eab0" + } + ] + }, + { + "bom-ref": "cce57e505929a700", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_group.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "b32b8ede2c4b0ee42b2bdf3a4ae870fb7cc2f7cd" + }, + { + "alg": "SHA-256", + "content": "07749ca3f24279b07433d3b7bcd3a6dafd76ae91a3e8b9396de6e1ef6eb17029" + } + ] + }, + { + "bom-ref": "293011057b4617c3", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_issue.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "59464a5330214e4384813371f3554f013bf831b7" + }, + { + "alg": "SHA-256", + "content": "99a7a483571e087eb163809845662fa19892291bc948778d2c4b33c25a0d0b2f" + } + ] + }, + { + "bom-ref": "6c7dcd2d92b3cd6d", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_keyinit.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "ca28f2c9a182a47b0a37267e993216e28efb125f" + }, + { + "alg": "SHA-256", + "content": "ee975d8f7295e213dd2d22a0f13b7d3ecffff33f5db3b3f9e891db5d4efe0677" + } + ] + }, + { + "bom-ref": "66d79c68253f38ee", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_lastlog.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "095bfca74b60617e65514016d51a6cf1f05162b8" + }, + { + "alg": "SHA-256", + "content": "b6392caf5e4ba559e739efcecc19818830207a410d22f12e70dfb091089a95c3" + } + ] + }, + { + "bom-ref": "e3cf05129aad17da", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_limits.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "3afad0919dc4bb14fdb03fa59866a75a691b7127" + }, + { + "alg": "SHA-256", + "content": "792f0fe9ef3694b98f359ef4ac64b30edf38a52979df9801d3237c0dd89ea5f0" + } + ] + }, + { + "bom-ref": "c0a853bbcbb86378", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_listfile.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "8b110467614bdcf0d7a8ba6a2a7998c7844b5d22" + }, + { + "alg": "SHA-256", + "content": "82ad040c0921ceb988026fb9ca2ed41738ed69c63777b5a94340445d0bc63f56" + } + ] + }, + { + "bom-ref": "24d4c3ec2f612967", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_localuser.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "c2fc0420b8334e55c05e02e7f7adb9f1fb05230a" + }, + { + "alg": "SHA-256", + "content": "b18d3fd8fe06ffa21e62bbad4081097c18b22ea8a8d3aaf87fee6dfe14935a6f" + } + ] + }, + { + "bom-ref": "78097bfe37caec01", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_loginuid.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "381e4cfcca2ca2eef92ae9667eda3e6157a848bd" + }, + { + "alg": "SHA-256", + "content": "8dc5991f485b647d4801a7893cbe8b25d51e31435e4dcdb055a90341042e1281" + } + ] + }, + { + "bom-ref": "e7d4da16bf42eaf2", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_mail.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "9b0e26efb87377baab9fc7648fc0382f89932c9a" + }, + { + "alg": "SHA-256", + "content": "b8c1e1c1addd28362b41f589f3ca34aec4f9fa96116f76cf0e7ddd04d170fe40" + } + ] + }, + { + "bom-ref": "2dcbb5eff3d4ffa2", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_mkhomedir.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "446d5c7a8813e43e6183c1ec6aca22c447dfc526" + }, + { + "alg": "SHA-256", + "content": "71de81bc3eed912bd6bdbaa6c5e7e22c9b2012a6bfcca62522a8a24e930aa969" + } + ] + }, + { + "bom-ref": "0a419cf58f0c42c7", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_motd.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "bdf8121d49f4c8cf5a01a75c5d1b8e1e3f7731d7" + }, + { + "alg": "SHA-256", + "content": "151adae65406635ce164c988ef198eab0c9424fced7ae70c431f6f8cfe5728ab" + } + ] + }, + { + "bom-ref": "8477fbd10792eba2", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_namespace.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "3494754fa286e5cf5f312eb619c3a23c66facac2" + }, + { + "alg": "SHA-256", + "content": "ab5fb90470b4bc55e3c83f0f7115520ca38b764b760a8e0894c3b59a89c2ea47" + } + ] + }, + { + "bom-ref": "00efb13427c4abc6", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_nologin.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "54722b1ceaa769763f5580184fc10c68589ce14f" + }, + { + "alg": "SHA-256", + "content": "00982438dc8f10f8f66e2951ecffb3f6f9e0d80764934a03f69a6fdf2254d1aa" + } + ] + }, + { + "bom-ref": "6ca346e05414d234", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_permit.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "e4ff19c0f9aa0f0061868a1dc1ed3c3b412b797e" + }, + { + "alg": "SHA-256", + "content": "f3065da323f94a1238b72b47c6feed630b65febe8d81940dd95789d4bce7a995" + } + ] + }, + { + "bom-ref": "676d87f48029a342", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_pwhistory.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "26494a125630d779a6cf6c37293054a17b396669" + }, + { + "alg": "SHA-256", + "content": "f28c90fcfd26720dbd59ec8bc2e1ce14d16ec25228de639d0f150c8590a676e3" + } + ] + }, + { + "bom-ref": "7c581837e13cd446", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_rhosts.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "3e640900f360baeb429018433e512f8fb2438311" + }, + { + "alg": "SHA-256", + "content": "a88ba201848f893d7e97252bba22acbfe757d894833a1ea6450c9487a6ca3827" + } + ] + }, + { + "bom-ref": "c736d6ccbc8197fc", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_rootok.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "60f1f31047572697a60f58e46d927b2c1659065f" + }, + { + "alg": "SHA-256", + "content": "242f87dbfefd392b7f4b9d57948cee38408f1a884a8107626cfbbd55d745ae77" + } + ] + }, + { + "bom-ref": "20f6e94caaae5a9d", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_securetty.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "e54c078b178439b0037af438d4c33ffa6f80cdac" + }, + { + "alg": "SHA-256", + "content": "521a222f586aec1c09d4b9b52dd5b6d5eafec657a3ade888dfef5dc3943b8f5d" + } + ] + }, + { + "bom-ref": "6e84deef0efcd1bb", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_selinux.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "c04f3a1bbce1f6152fd7b7c985e4508c92469121" + }, + { + "alg": "SHA-256", + "content": "2b0c665f761317d5a892dc241b9ac9f71008da10321fc4750710e90efce44f22" + } + ] + }, + { + "bom-ref": "c0c5a20fb55e47bb", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_sepermit.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "cb1385c202484d481f129f2b4b48a90f65640e2e" + }, + { + "alg": "SHA-256", + "content": "331288bb78fa2dc22cadb88938cf063c135b8bcf17f307ae8bb540ad076a7f17" + } + ] + }, + { + "bom-ref": "0b7b9c7057012f21", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_shells.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "1ca1c43fb171bee3ba2afe045f7d2705422c6de6" + }, + { + "alg": "SHA-256", + "content": "55c60f2ef4c1e0b06be5e7ffe79e9a06b889f19d461858620b460c8c4d6a7235" + } + ] + }, + { + "bom-ref": "d49ef6f2ed06e00e", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_stress.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "e3021434dd8b1707b6c2998bc5718c692bd1bc83" + }, + { + "alg": "SHA-256", + "content": "289cc1a3eeef51917b158b75dc27d3f1470a30e0a7c29f4763446b1e61dbe145" + } + ] + }, + { + "bom-ref": "bd6ba633ffefc2e9", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_succeed_if.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "29c125881ae80bc7ad165a8d1965996f3512a4c9" + }, + { + "alg": "SHA-256", + "content": "1d778c9a46b18684739d3b2941ad2b272004b13068d3bcbdb0cf86b3cab101af" + } + ] + }, + { + "bom-ref": "88cbad3f339f3194", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_tally.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "67425cb5b6bac3766efb96f8562050849b628e27" + }, + { + "alg": "SHA-256", + "content": "0853e0e7b0ea307bb679b0f28a82cda9941e62c57e2185f3ffc90da042edd24c" + } + ] + }, + { + "bom-ref": "e0a6d31aa85ffde5", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_tally2.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "ec8b2af76dfa301ffd7be838370d079cb094a5b9" + }, + { + "alg": "SHA-256", + "content": "12bc1472cd377616e76536bd2f1b8633d98e56ea8f184fcbf0769fd26cef2e39" + } + ] + }, + { + "bom-ref": "cca0ae2cc2f5c2c2", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_time.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "b38f5ce6bae3c1a3bb6b0b9742ff86d26575cdd0" + }, + { + "alg": "SHA-256", + "content": "9b7e611facc77a7af171f3f85ecf9defe4240a2a126b21572a13268f666791ee" + } + ] + }, + { + "bom-ref": "4aa0d437dd1bd54f", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_timestamp.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "ab2c454b1d3d4bea90b6879b5d0af5b407bc3d6d" + }, + { + "alg": "SHA-256", + "content": "f650228544bf213d6caa9ceda2de4f95f1eec1c37017fcd8679c3789a5a21b21" + } + ] + }, + { + "bom-ref": "1aadea2897493ae0", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_tty_audit.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "75f576513b85a56056635fb03fae20ae4b756ac0" + }, + { + "alg": "SHA-256", + "content": "e6a706f6d6a43fe54af833de83d5e4f441a781c6327ecb184d2484ef525b9eed" + } + ] + }, + { + "bom-ref": "48faf32374c6f13c", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_umask.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "659d1bea9c311dad4e89157b701d7a4e068a4391" + }, + { + "alg": "SHA-256", + "content": "da02bcfa356366fa15fb9931ffabdb05527f6649c249c7dac0b54d9bc5cee135" + } + ] + }, + { + "bom-ref": "e8398bfbff100a28", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_unix.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "27a2173d5c7b49257a2a0c59d5fa6c7a764e6249" + }, + { + "alg": "SHA-256", + "content": "3188549f928d6131aaf254b2a5889bc25d7e065a838399e045f6682c2f72d1cd" + } + ] + }, + { + "bom-ref": "b0c6f0e729fee005", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_userdb.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "3b19629eb43026921e12654638221300fe84a93a" + }, + { + "alg": "SHA-256", + "content": "2aff0524a5a5b1775c584bad8f282f3956b3d2faa4b0f87a0879ec2ad3a2d336" + } + ] + }, + { + "bom-ref": "463c062dad0be61f", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_warn.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "a090f567c58af49de3fdc954943b6694df8c91ff" + }, + { + "alg": "SHA-256", + "content": "bddb98e326cfc9ffc452704962c991b7bc4f87ba93c99542a3b203e13471c1b9" + } + ] + }, + { + "bom-ref": "50d4a347688f8cdf", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_wheel.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "fe10814c7c31cac0c786d37ae40ef4902f09a01c" + }, + { + "alg": "SHA-256", + "content": "482de4a63b7c0f788b51acd75d7705531d15f1099a31fc41d7eb8f7228e7a06a" + } + ] + }, + { + "bom-ref": "799b80c885e06237", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_xauth.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "0d83fdc4720f503e63d161054d2157ea2d154d91" + }, + { + "alg": "SHA-256", + "content": "eec9e86dc2fd81a12d0de835845f285435082f50809687f97ddb9720f2976eb0" + } + ] + }, + { + "bom-ref": "a601ca6a9a321807", + "type": "file", + "name": "/sbin/agetty", + "hashes": [ + { + "alg": "SHA-1", + "content": "c3f37f0cb6edea5cfd54037eebd8ecd49225c79c" + }, + { + "alg": "SHA-256", + "content": "507098410a31cc8e8cb7bf7d5ab901c9085c2c550476de8184a08f0e054372ec" + } + ] + }, + { + "bom-ref": "d80a0b136e81d2cb", + "type": "file", + "name": "/sbin/badblocks", + "hashes": [ + { + "alg": "SHA-1", + "content": "1c123f9a243c463365223daf47366c6770004365" + }, + { + "alg": "SHA-256", + "content": "dd3ddf91b38dc22b9fcad64d0832ece37906de75984795859145fe2a1798fdea" + } + ] + }, + { + "bom-ref": "663b345fda9cfb83", + "type": "file", + "name": "/sbin/blkdiscard", + "hashes": [ + { + "alg": "SHA-1", + "content": "f7eb2712c997215416a2ae53545163cb56eddcb7" + }, + { + "alg": "SHA-256", + "content": "3150f7d7801cf1cb6f12553fc09657e69a9eb3f60e52c4b57059d217f1b7dafc" + } + ] + }, + { + "bom-ref": "e7a113d6eeb924ab", + "type": "file", + "name": "/sbin/blkid", + "hashes": [ + { + "alg": "SHA-1", + "content": "4fb851b42b1e0ae2d330815aee8878c61af5d2c8" + }, + { + "alg": "SHA-256", + "content": "6da18df92fd5a42f7037533a071dd9d33fd82d586b3a2ab5137b818e192a23c3" + } + ] + }, + { + "bom-ref": "82412461d1adee7b", + "type": "file", + "name": "/sbin/blkzone", + "hashes": [ + { + "alg": "SHA-1", + "content": "4422374d835bebf9d350ec77b7594d9eb65eda76" + }, + { + "alg": "SHA-256", + "content": "2a93f640422984f2ebed543227a6c15515d62ddeeb2e8216a7b5dc3d2a72d77a" + } + ] + }, + { + "bom-ref": "badf19a805aa1550", + "type": "file", + "name": "/sbin/blockdev", + "hashes": [ + { + "alg": "SHA-1", + "content": "855d03d3491f23b14b0ca0e547f107da6d3f576c" + }, + { + "alg": "SHA-256", + "content": "18cd4bac43b046e7af66289acb2625bc31e27e48e9553df3a85d650b39b5f47b" + } + ] + }, + { + "bom-ref": "84e570d8dae33133", + "type": "file", + "name": "/sbin/cfdisk", + "hashes": [ + { + "alg": "SHA-1", + "content": "aff0a1cc61d4c0cd1e14484b41926366be511cbc" + }, + { + "alg": "SHA-256", + "content": "d042c4f898a7b972f805b6eb1a46f8543e9b921ba089eafd9de6c46907727716" + } + ] + }, + { + "bom-ref": "359ba3e4beca1b3e", + "type": "file", + "name": "/sbin/chcpu", + "hashes": [ + { + "alg": "SHA-1", + "content": "d68e93fac0a5a9f5e4db4114f559024594e88e40" + }, + { + "alg": "SHA-256", + "content": "45304f8529c017c1d1fe6ca284286a10eb23874a80ae7e5434ed41d93dbe8f35" + } + ] + }, + { + "bom-ref": "d163cc0908e7f489", + "type": "file", + "name": "/sbin/ctrlaltdel", + "hashes": [ + { + "alg": "SHA-1", + "content": "9d2bdd0202d0369634a60b7593665cb64dbccb0d" + }, + { + "alg": "SHA-256", + "content": "5446c7ac6c915e1857b238d1b1a6730c2bff506e7a44d5bf34524cff78b947c4" + } + ] + }, + { + "bom-ref": "4ae09ed6f0cb148e", + "type": "file", + "name": "/sbin/debugfs", + "hashes": [ + { + "alg": "SHA-1", + "content": "670251b1a35591f3efeffaeaa0803c5d545d02c1" + }, + { + "alg": "SHA-256", + "content": "6e18779e17918bb6d3fcbacb69d6cd4c73b22d1433afad35243ae10e21d3e4ac" + } + ] + }, + { + "bom-ref": "0fd3b1c44a110b95", + "type": "file", + "name": "/sbin/dumpe2fs", + "hashes": [ + { + "alg": "SHA-1", + "content": "1bfd7e3beba89ef2f4ae3cd58ad064f08b748810" + }, + { + "alg": "SHA-256", + "content": "179ad59633e0acb819f6dc0edaf0094385925d5159df11044022afc8c1a9b8f7" + } + ] + }, + { + "bom-ref": "bd3496c983fceec3", + "type": "file", + "name": "/sbin/e2fsck", + "hashes": [ + { + "alg": "SHA-1", + "content": "e150f444ca85cdab1a25c3c0f9c48092f6765bb0" + }, + { + "alg": "SHA-256", + "content": "8397a5ecc28630ffa3a8d402b4a7a246cc3ebefb808b8bebcf970da7c866bbde" + } + ] + }, + { + "bom-ref": "ff3c21074a9c31f3", + "type": "file", + "name": "/sbin/e2image", + "hashes": [ + { + "alg": "SHA-1", + "content": "02cc993b317d38dbfca7f10c87bcbb5945d1f26c" + }, + { + "alg": "SHA-256", + "content": "92071eae89a59f42de674139580f725d06cb6d133aca64815d1e842ba9c8ce17" + } + ] + }, + { + "bom-ref": "6a117418ce5d5f73", + "type": "file", + "name": "/sbin/e2undo", + "hashes": [ + { + "alg": "SHA-1", + "content": "ec7d677ec20b8cb6db6b74b993fe6ba70cf2c9f3" + }, + { + "alg": "SHA-256", + "content": "8bc374ca21c17333c2aca8242fe87912747ccaf57c176b88030be934287e74c5" + } + ] + }, + { + "bom-ref": "527cb8b139ac0bed", + "type": "file", + "name": "/sbin/fdisk", + "hashes": [ + { + "alg": "SHA-1", + "content": "394ef7df99c84a06da6c36c0312eb96bcaa5f84a" + }, + { + "alg": "SHA-256", + "content": "d904c4a388a3df47aaf448afedec132d8946e13a677059a1f7c26a803acf152c" + } + ] + }, + { + "bom-ref": "2f1c0b9a496aa169", + "type": "file", + "name": "/sbin/findfs", + "hashes": [ + { + "alg": "SHA-1", + "content": "efb841c463c34593e3219e22f675a38b4c5c1764" + }, + { + "alg": "SHA-256", + "content": "1d6639d7d35982b9e917da90cf060f6ab3cca0656658e777395265222a34b36b" + } + ] + }, + { + "bom-ref": "7b63cdb9989599dd", + "type": "file", + "name": "/sbin/fsck", + "hashes": [ + { + "alg": "SHA-1", + "content": "b33436c50d946cb08bb6c06a6a3df2d45bea16a0" + }, + { + "alg": "SHA-256", + "content": "696ce2fa5275711e5ae94f5bf16c972c55f861ed6b1c71d68f995c91777cea09" + } + ] + }, + { + "bom-ref": "6fe8e5ad1476d6f8", + "type": "file", + "name": "/sbin/fsck.cramfs", + "hashes": [ + { + "alg": "SHA-1", + "content": "e8458aa500c66a2474a29be00b3c1244eb834d55" + }, + { + "alg": "SHA-256", + "content": "4a1cc30c82c22eb4328d42fd9df6900c42be529d03a2be47a92a5c82c062e96f" + } + ] + }, + { + "bom-ref": "fa058527dfffdbbd", + "type": "file", + "name": "/sbin/fsck.minix", + "hashes": [ + { + "alg": "SHA-1", + "content": "5f5d95f5d9879a1d22d6fab8f1f7260924e73932" + }, + { + "alg": "SHA-256", + "content": "4c49f9aadd5ee1c8105f93d581a0e0bbe43531656f538035db6935db72bfb844" + } + ] + }, + { + "bom-ref": "a76e2bd691e8c9de", + "type": "file", + "name": "/sbin/fsfreeze", + "hashes": [ + { + "alg": "SHA-1", + "content": "eca9c8ec6f6d73e0f9832be05f1ccaaf12e1643b" + }, + { + "alg": "SHA-256", + "content": "78c61d2ada38fc73183fc720936d77bd7456cf0b821d0711e91cdebb0453bae3" + } + ] + }, + { + "bom-ref": "739383996c667bfc", + "type": "file", + "name": "/sbin/fstab-decode", + "hashes": [ + { + "alg": "SHA-1", + "content": "34cd8192eacf0931a5bc9e44da8bf92b8d314a60" + }, + { + "alg": "SHA-256", + "content": "222f2aa846bc1c57670244dd46f72b0505be4c0d8b56357f7c64224f789a0a37" + } + ] + }, + { + "bom-ref": "e9e897dcc0406c3c", + "type": "file", + "name": "/sbin/fstrim", + "hashes": [ + { + "alg": "SHA-1", + "content": "ad7b559c615425c9f4b55a49ffd2c18f971fb3cd" + }, + { + "alg": "SHA-256", + "content": "77ac907b8196ebca74f0baeb7bb6a21b15f90bcc421b85ad4b30bbf93a9d5cab" + } + ] + }, + { + "bom-ref": "69eb8d9629d0cb43", + "type": "file", + "name": "/sbin/hwclock", + "hashes": [ + { + "alg": "SHA-1", + "content": "b36b2ba08967648235f20175f14129e802927428" + }, + { + "alg": "SHA-256", + "content": "24186640655d1dcfac10eea96f6fd60d617f32d7ab4647b855dd5cd339ceb4bb" + } + ] + }, + { + "bom-ref": "1ee20edc2d7d554c", + "type": "file", + "name": "/sbin/installkernel", + "hashes": [ + { + "alg": "SHA-1", + "content": "7c2877dfffadf500415e726bd6a755620bfc3a92" + }, + { + "alg": "SHA-256", + "content": "ab0bedb106c10aa2c2ce88ca6bb9db1a973854049b36a9961a532c4496051815" + } + ] + }, + { + "bom-ref": "83634f17f89d5255", + "type": "file", + "name": "/sbin/isosize", + "hashes": [ + { + "alg": "SHA-1", + "content": "919dd9fef08faacdee2236fb482e2cf557bb1604" + }, + { + "alg": "SHA-256", + "content": "9e78578aa2b90bab935b55f2bc830a18482bf95e12326b4afa0781e392ddb6e9" + } + ] + }, + { + "bom-ref": "8c4fe9120355fbed", + "type": "file", + "name": "/sbin/killall5", + "hashes": [ + { + "alg": "SHA-1", + "content": "56ba8e1497a6920eca299a9f46a5c87aba0552d5" + }, + { + "alg": "SHA-256", + "content": "d2115b6696114843c729b6189428729ba9c308c17d7d55497593075428e2e853" + } + ] + }, + { + "bom-ref": "31cbc5fd46d62b75", + "type": "file", + "name": "/sbin/ldconfig", + "hashes": [ + { + "alg": "SHA-1", + "content": "7c84a008ec6ae69467a05633766616578b5c3fda" + }, + { + "alg": "SHA-256", + "content": "71d1eddafa6e09f4991a044b12535ffa2e61aa40b830b10534465b25ff8a0105" + } + ] + }, + { + "bom-ref": "4fac0e39999dbf83", + "type": "file", + "name": "/sbin/logsave", + "hashes": [ + { + "alg": "SHA-1", + "content": "2d27b729e9b11edbc48e54cc51c5441e03bd89e4" + }, + { + "alg": "SHA-256", + "content": "b20df480ca9b0a4cd98c6e880046b2550d4b209c6ce46f357c739031cadf726d" + } + ] + }, + { + "bom-ref": "8cc5141feb5d0dac", + "type": "file", + "name": "/sbin/losetup", + "hashes": [ + { + "alg": "SHA-1", + "content": "7b245a217f1800ff79c688e99f8e9c4fb10c41ae" + }, + { + "alg": "SHA-256", + "content": "cf48e042a74fecdd3808d300d1ae841520a5ad67a6a1ce864d3205c174869ce8" + } + ] + }, + { + "bom-ref": "74c1a5034e896318", + "type": "file", + "name": "/sbin/mke2fs", + "hashes": [ + { + "alg": "SHA-1", + "content": "2e2ef7fe806e8e602a46131cd816ed2f1884fc28" + }, + { + "alg": "SHA-256", + "content": "373f20092949fe913e8a59d6a78f23d05ab92e008c2c27852b39cfe5e7e8a59d" + } + ] + }, + { + "bom-ref": "6fdd584f43dec65f", + "type": "file", + "name": "/sbin/mkfs", + "hashes": [ + { + "alg": "SHA-1", + "content": "29639a36820adfd3a3ea1b8e45004f48b39df846" + }, + { + "alg": "SHA-256", + "content": "d6fd4d3ffd3ccc6d1d98eaebbf6bd370b378bdbac61ba5836fd9ca304b7a782b" + } + ] + }, + { + "bom-ref": "b7b58d1650e8963b", + "type": "file", + "name": "/sbin/mkfs.bfs", + "hashes": [ + { + "alg": "SHA-1", + "content": "f3f28b27662f73aee000cc757f3cc6d5a5cf8bbc" + }, + { + "alg": "SHA-256", + "content": "bca4a529a3468ccca570f9e1c32e937b5ead823c2b941a5a132babbe0e868161" + } + ] + }, + { + "bom-ref": "3dda086737b0face", + "type": "file", + "name": "/sbin/mkfs.cramfs", + "hashes": [ + { + "alg": "SHA-1", + "content": "b9c1c8e8637cdd50a53418b94e93bb297f65bba1" + }, + { + "alg": "SHA-256", + "content": "f49a6fe1ba904c6281c376ffca09424b7f33329d040011a5076c12e4829c757c" + } + ] + }, + { + "bom-ref": "f3a197792a67254b", + "type": "file", + "name": "/sbin/mkfs.minix", + "hashes": [ + { + "alg": "SHA-1", + "content": "dc2cba2ac9165a0796dc1e33439dbd7a1c135d5a" + }, + { + "alg": "SHA-256", + "content": "cccb6fb8aa5b77f85214cab7bab8f5176911a86cdf6ce89d90acb2b7ec1d6e13" + } + ] + }, + { + "bom-ref": "da83ff87ee57d9b6", + "type": "file", + "name": "/sbin/mkhomedir_helper", + "hashes": [ + { + "alg": "SHA-1", + "content": "6475e5b4f4b7bcfa908306568f8dd2dd9032ef6b" + }, + { + "alg": "SHA-256", + "content": "41e759c85335eee1c687d4ec4dc196bfdd4334b4afe815d71c7d7b670731904e" + } + ] + }, + { + "bom-ref": "4bf4b073e36e623f", + "type": "file", + "name": "/sbin/mkswap", + "hashes": [ + { + "alg": "SHA-1", + "content": "ec9cc6f5f0b531387940ccd2072b6f6e2de8f2f1" + }, + { + "alg": "SHA-256", + "content": "29e38ab412b11845dd6836e46581f3376295d37094dac7eadc8a9fa2247ad96b" + } + ] + }, + { + "bom-ref": "ed883b23fc1c078f", + "type": "file", + "name": "/sbin/pam_tally", + "hashes": [ + { + "alg": "SHA-1", + "content": "68cf525eb16866fe9add4bacd1c0c111e62f4fb8" + }, + { + "alg": "SHA-256", + "content": "fa7f09027fdb5ac6685a0ec40d1e4f011261b589232f64320d38a383c5085c48" + } + ] + }, + { + "bom-ref": "a5adb654276bb0cf", + "type": "file", + "name": "/sbin/pam_tally2", + "hashes": [ + { + "alg": "SHA-1", + "content": "11f58e0a37e6a9bbd3b4ae9dce2e0fe37072ddad" + }, + { + "alg": "SHA-256", + "content": "e5782482e0652005bfe9023a69fa1f2f5d0046f53ea591ad1ad1e3163d250faf" + } + ] + }, + { + "bom-ref": "9d5601fbeca78a8b", + "type": "file", + "name": "/sbin/pivot_root", + "hashes": [ + { + "alg": "SHA-1", + "content": "c23f9b1ddd8bca0e2e2490eb8b28a188859814c7" + }, + { + "alg": "SHA-256", + "content": "86729ee3dcae08ba99f17a244ac92d196e993227b136b0a710f2523cd91f839e" + } + ] + }, + { + "bom-ref": "7ec52f4f9b8f8a20", + "type": "file", + "name": "/sbin/raw", + "hashes": [ + { + "alg": "SHA-1", + "content": "52252b087fd0db4ba81cd536d6653c088510b79f" + }, + { + "alg": "SHA-256", + "content": "9b854ca023bbe8e84f7ac73c06d8f68f938b247b1034c1a28e432fcb99f3aacf" + } + ] + }, + { + "bom-ref": "55e056e1a4a80c39", + "type": "file", + "name": "/sbin/resize2fs", + "hashes": [ + { + "alg": "SHA-1", + "content": "14a6de4f950d5eb33913c6057eda39d02bb6d001" + }, + { + "alg": "SHA-256", + "content": "84cc6cc19c62f9159b410f26dbb33d5d229c2eb223e50efd56f166a21c09ea43" + } + ] + }, + { + "bom-ref": "66130f524f0ceb70", + "type": "file", + "name": "/sbin/runuser", + "hashes": [ + { + "alg": "SHA-1", + "content": "7431e4279e0ec8a79281a59d544d91f9f6316bc2" + }, + { + "alg": "SHA-256", + "content": "3c0c4834897e870ed2d7d2d34b66664bc02c45429377187fe06681191f9730c2" + } + ] + }, + { + "bom-ref": "642b0e088d559b61", + "type": "file", + "name": "/sbin/sfdisk", + "hashes": [ + { + "alg": "SHA-1", + "content": "f45911632af6f783e1741dd9d197a63b75037eb7" + }, + { + "alg": "SHA-256", + "content": "7fbddcff20ca72f7888d8327695d1bcb812a174120a6f7116433cf62eb613403" + } + ] + }, + { + "bom-ref": "d919903bd99bc1de", + "type": "file", + "name": "/sbin/shadowconfig", + "hashes": [ + { + "alg": "SHA-1", + "content": "cb340f1fda080d89c0ddeb7d9d7b735051522e05" + }, + { + "alg": "SHA-256", + "content": "e456ba3088c0cb498ba86d9ce496273138e9cfe523feeb1a7e7083aae349dded" + } + ] + }, + { + "bom-ref": "6decbb35d3eee631", + "type": "file", + "name": "/sbin/start-stop-daemon", + "hashes": [ + { + "alg": "SHA-1", + "content": "8f43bf9e2b8245c95b43e49298056cf77f9f5d3c" + }, + { + "alg": "SHA-256", + "content": "0d0db60349ed1548da3bfc9381cf4fb2fe64f1e08912cf88588a1fa5a9de0641" + } + ] + }, + { + "bom-ref": "fef310c72ee1deab", + "type": "file", + "name": "/sbin/sulogin", + "hashes": [ + { + "alg": "SHA-1", + "content": "4219550bd4bb1d307755f68ce1a6745fc43036b8" + }, + { + "alg": "SHA-256", + "content": "6b45d42667111bef04d3c4c193d75c8d90bd4c55b50ec89cf888b1e79351e762" + } + ] + }, + { + "bom-ref": "a6bf0bf2a5974157", + "type": "file", + "name": "/sbin/swaplabel", + "hashes": [ + { + "alg": "SHA-1", + "content": "fac6a4ddda3fd04bbe87f47fe2afb36adb7e3c6c" + }, + { + "alg": "SHA-256", + "content": "d630c34074ffaafa66824c5fe6ad18f6d850e115dab4a6f850d934c10bb4e156" + } + ] + }, + { + "bom-ref": "150cfd50715868de", + "type": "file", + "name": "/sbin/swapoff", + "hashes": [ + { + "alg": "SHA-1", + "content": "f26b9ac58ced080e024d9215ab0d923ca936a196" + }, + { + "alg": "SHA-256", + "content": "423ccc69452a362f22985ec382b6c62f2fa7beed656f0a185a0bb589ff8f4e43" + } + ] + }, + { + "bom-ref": "0f974b5950cb5803", + "type": "file", + "name": "/sbin/swapon", + "hashes": [ + { + "alg": "SHA-1", + "content": "59e067da45cf36589443c0d6689ccad341cd4caf" + }, + { + "alg": "SHA-256", + "content": "c02ef3d3042e99b194567d7bf6eda3546bcfd30b797ed0c82dca0d0bd2991563" + } + ] + }, + { + "bom-ref": "db13c6cf3a8a6756", + "type": "file", + "name": "/sbin/switch_root", + "hashes": [ + { + "alg": "SHA-1", + "content": "3eac3d10517a854038922cf0885a91bf90eca9ad" + }, + { + "alg": "SHA-256", + "content": "0d01d5f98281a8fea65f59d2776087bd4470b01e2ab50eec3bd44eba26077333" + } + ] + }, + { + "bom-ref": "0bd98246e2319325", + "type": "file", + "name": "/sbin/tune2fs", + "hashes": [ + { + "alg": "SHA-1", + "content": "8b714ebfb943479fb8a4c78ea098afe7793472eb" + }, + { + "alg": "SHA-256", + "content": "bd45fd6febf7b164233650f5e9b4127ef7a26b72c3726d99685fe5d870964c0a" + } + ] + }, + { + "bom-ref": "ebc960611b6838ec", + "type": "file", + "name": "/sbin/unix_chkpwd", + "hashes": [ + { + "alg": "SHA-1", + "content": "21eb30ed2e0c583157a60126f6afb9b8f7a5f4d9" + }, + { + "alg": "SHA-256", + "content": "9924df1f84a1603abe1fab58b5ede42e8acf245f6ecba580e20cb3e698a4d158" + } + ] + }, + { + "bom-ref": "df1fbb94cad8de63", + "type": "file", + "name": "/sbin/unix_update", + "hashes": [ + { + "alg": "SHA-1", + "content": "0d79b449eba25b31abbac0410c8c74fb0c77e73c" + }, + { + "alg": "SHA-256", + "content": "661fcf8f2b0604d7dcc91412c369513a7787487f0a32a61bc8789477c1294277" + } + ] + }, + { + "bom-ref": "3b3c4a3f7fbebf46", + "type": "file", + "name": "/sbin/wipefs", + "hashes": [ + { + "alg": "SHA-1", + "content": "0392f95e6c183856fc5c0d80f99b481f5701ba41" + }, + { + "alg": "SHA-256", + "content": "ab614a6465bfbe4dee1767c844885b242749ec536dd41303c7fcc2a38ce38a65" + } + ] + }, + { + "bom-ref": "a912a2b6dbccdcba", + "type": "file", + "name": "/sbin/zramctl", + "hashes": [ + { + "alg": "SHA-1", + "content": "492c85d8a689e9ac61f9cc345f6270eb278bdea0" + }, + { + "alg": "SHA-256", + "content": "4a3e88232eb18fa8f80543f0d4536d20138cf532d20a49029fc0839471d30ac7" + } + ] + }, + { + "bom-ref": "75f74f57e4642bd7", + "type": "file", + "name": "/usr/bin/[", + "hashes": [ + { + "alg": "SHA-1", + "content": "78f6a87622a17fef7e841e8e0902c361d29a3a1d" + }, + { + "alg": "SHA-256", + "content": "0d019b94ab38b099a2d51a90cebb22a2d06f9b6754862eb99c85df906abe70f8" + } + ] + }, + { + "bom-ref": "fae1f07baca3473b", + "type": "file", + "name": "/usr/bin/addpart", + "hashes": [ + { + "alg": "SHA-1", + "content": "0e42b38b035869d02f3d2d72a501d303a30ff820" + }, + { + "alg": "SHA-256", + "content": "405e79fae01caa30b951f51c7c1c0784b7c2bd8782561e9a9b0516a534be34f7" + } + ] + }, + { + "bom-ref": "910bd2666ee38bfa", + "type": "file", + "name": "/usr/bin/apt", + "hashes": [ + { + "alg": "SHA-1", + "content": "5504d65ef97bc3091c064018021b723c3f82f841" + }, + { + "alg": "SHA-256", + "content": "eeca3ffa98fb4501a447d06c8a81cacaa8058968e5d9775a43ecfccbb22430ff" + } + ] + }, + { + "bom-ref": "141662044e034e21", + "type": "file", + "name": "/usr/bin/apt-cache", + "hashes": [ + { + "alg": "SHA-1", + "content": "0033c4e456054b696a7e62c9cbe6637fc4dde2e3" + }, + { + "alg": "SHA-256", + "content": "b1a90fdc9b9b18c5490999dd1759b4f59101a1801de29154fa0f556f757c5c32" + } + ] + }, + { + "bom-ref": "f00a4da39bd7c2f1", + "type": "file", + "name": "/usr/bin/apt-cdrom", + "hashes": [ + { + "alg": "SHA-1", + "content": "b71950191fdbf079e0cf7fdd3cf1ec64c886b7fa" + }, + { + "alg": "SHA-256", + "content": "cbc7a0407377e88f1c9a8d217d967d524a2d1363cec46ef23ede28194be466c3" + } + ] + }, + { + "bom-ref": "38e55dd497584df1", + "type": "file", + "name": "/usr/bin/apt-config", + "hashes": [ + { + "alg": "SHA-1", + "content": "e01fa47cdec9b41afd63cbe89bd8fcdf8a9873e3" + }, + { + "alg": "SHA-256", + "content": "7717bdbd58a6f19bc9782fa17674a951b20d959254f10f84f9ae90c29c82c3dd" + } + ] + }, + { + "bom-ref": "29bf63c23b5774cf", + "type": "file", + "name": "/usr/bin/apt-get", + "hashes": [ + { + "alg": "SHA-1", + "content": "df2df28a7aff92487b14543629f372ec2a310c51" + }, + { + "alg": "SHA-256", + "content": "64a67f0e95c6fc931cf85c8e60d5885e7e68259d99c3675453a32c273503326d" + } + ] + }, + { + "bom-ref": "2a6d894efd6f2f2e", + "type": "file", + "name": "/usr/bin/apt-key", + "hashes": [ + { + "alg": "SHA-1", + "content": "5c3a08c3c8f50fcdeb1b512d70918daf6ddebb82" + }, + { + "alg": "SHA-256", + "content": "820c1c9b3aac8147aa9312d3f01a0132b085c6ab0b28790f95185f0a49f07da2" + } + ] + }, + { + "bom-ref": "740246cd0047d6c1", + "type": "file", + "name": "/usr/bin/apt-mark", + "hashes": [ + { + "alg": "SHA-1", + "content": "2f006d15b362f38b920632c0a4445b837e391b20" + }, + { + "alg": "SHA-256", + "content": "c23f36a11af89270eabeddc134325e5869d31bb48f32c10124c74804618d2c50" + } + ] + }, + { + "bom-ref": "e0cefd9c8af27994", + "type": "file", + "name": "/usr/bin/arch", + "hashes": [ + { + "alg": "SHA-1", + "content": "f8f0f01366ed35aee7bc07577b75ae53bea10049" + }, + { + "alg": "SHA-256", + "content": "7fd525b937cbc47f186e4fec788805ccba5490521bb7b6f4bdd85adc7f0cc63a" + } + ] + }, + { + "bom-ref": "81a0b1e9cbdb88f7", + "type": "file", + "name": "/usr/bin/b2sum", + "hashes": [ + { + "alg": "SHA-1", + "content": "b615a3bec1e15e6ccae37e4f9693c8e6e41f7f09" + }, + { + "alg": "SHA-256", + "content": "a569c91067478059e7b00dd69feae10920d738d7055ad269e4d6758e22762657" + } + ] + }, + { + "bom-ref": "6ca85edb39feb293", + "type": "file", + "name": "/usr/bin/base32", + "hashes": [ + { + "alg": "SHA-1", + "content": "f5afd167016d6eb9cfd0bbe85901deba6510ebfc" + }, + { + "alg": "SHA-256", + "content": "2d290f90f33dc93538c8932addbac120446e850bf97bf2ccf2c67f8115764fd9" + } + ] + }, + { + "bom-ref": "fc6cf549c8b41760", + "type": "file", + "name": "/usr/bin/base64", + "hashes": [ + { + "alg": "SHA-1", + "content": "932c2954b40e6e72ab180aec1f897f4f9d7797a8" + }, + { + "alg": "SHA-256", + "content": "42d393d1d6a7a7a61dbd9b4e4927b7014b32dd60d978774259bdaee3a356e24d" + } + ] + }, + { + "bom-ref": "0bb42505bd856fbc", + "type": "file", + "name": "/usr/bin/basename", + "hashes": [ + { + "alg": "SHA-1", + "content": "23afc8b4a34bd94a32c7b05a9f5c5ace69f40331" + }, + { + "alg": "SHA-256", + "content": "39b8ab40f79a2b8594eb0d25d48a1a76508e0b9b1ca969a5fb5f27307bd2839f" + } + ] + }, + { + "bom-ref": "1580ebc7d74a9974", + "type": "file", + "name": "/usr/bin/bashbug", + "hashes": [ + { + "alg": "SHA-1", + "content": "8e8e05c5d45000af4070c7a47ad537d83e9d040b" + }, + { + "alg": "SHA-256", + "content": "23c2cac11a40e09cf296bb3d1632ab63a650eefc6428131b8589ec4ecf786695" + } + ] + }, + { + "bom-ref": "8f4c0d2a68ea0beb", + "type": "file", + "name": "/usr/bin/catchsegv", + "hashes": [ + { + "alg": "SHA-1", + "content": "6d53d45eb1aa8b45b193d293d25b5839cc8e1b56" + }, + { + "alg": "SHA-256", + "content": "df5bf542a5b90c094541dcade99254a4de6ead94710b14507e993def5b075534" + } + ] + }, + { + "bom-ref": "a3d32b964f7d10b2", + "type": "file", + "name": "/usr/bin/chage", + "hashes": [ + { + "alg": "SHA-1", + "content": "52a93308fb2a565da97c732facb3b6828a5f07a7" + }, + { + "alg": "SHA-256", + "content": "ce8fd714eca98ab1c1d88b2b7c4504da92cca82faa27efecbe2ed6cff43654fa" + } + ] + }, + { + "bom-ref": "841d2ac100de50e0", + "type": "file", + "name": "/usr/bin/chattr", + "hashes": [ + { + "alg": "SHA-1", + "content": "cc15c1e6852d2ade693aa9b9df1cfa46b1643831" + }, + { + "alg": "SHA-256", + "content": "5a828bb6febbd3cc8d2681eb21557a893cabd28fd3567b371290cf7129c90635" + } + ] + }, + { + "bom-ref": "59ba4094c68c7be6", + "type": "file", + "name": "/usr/bin/chcon", + "hashes": [ + { + "alg": "SHA-1", + "content": "0574f6031047b9497213683e2f2d7904b6f9eca2" + }, + { + "alg": "SHA-256", + "content": "5181c7a39844f780e7ccf2db9d6fe9a181a1be125efa5b93508cd9899229f378" + } + ] + }, + { + "bom-ref": "90ac343a52567805", + "type": "file", + "name": "/usr/bin/chfn", + "hashes": [ + { + "alg": "SHA-1", + "content": "b7a4c87ea63fe6143d3f3fae19b150108e411223" + }, + { + "alg": "SHA-256", + "content": "cbceea7340d68dcc30e4eb9e6cc4f69a26c078ef1ff26c55360fb65184a8296c" + } + ] + }, + { + "bom-ref": "a4ef30c6071efaef", + "type": "file", + "name": "/usr/bin/choom", + "hashes": [ + { + "alg": "SHA-1", + "content": "e4a9a2884bc607526c070ba98afb01030e4c9ec6" + }, + { + "alg": "SHA-256", + "content": "93fd8c46e0f08929daff3012abbfa1c2cdd66c6ef3c18977870b03967f86949a" + } + ] + }, + { + "bom-ref": "d20c075db63fac89", + "type": "file", + "name": "/usr/bin/chrt", + "hashes": [ + { + "alg": "SHA-1", + "content": "31de858fb8e5b01d2275d66b3eca394b27afc13e" + }, + { + "alg": "SHA-256", + "content": "ec0d2f48407f61040efabe720000329e17e0a60968ad940e2c05e642125429e2" + } + ] + }, + { + "bom-ref": "d22253c01acd6196", + "type": "file", + "name": "/usr/bin/chsh", + "hashes": [ + { + "alg": "SHA-1", + "content": "0c581db9459610550b11ac36532b9fa24d251ebd" + }, + { + "alg": "SHA-256", + "content": "82d20231cdf5423495a00b4e35b544497d6293d85b5e72133668bafe342587d1" + } + ] + }, + { + "bom-ref": "1b053276106ba54c", + "type": "file", + "name": "/usr/bin/cksum", + "hashes": [ + { + "alg": "SHA-1", + "content": "7a51bf06099e5d1b11238e63b7ebd18ee56a9056" + }, + { + "alg": "SHA-256", + "content": "9349e8260e4d984b798bec8a65fea7a3797feef793dfae7ecc4333200862f844" + } + ] + }, + { + "bom-ref": "79907bb1627515e2", + "type": "file", + "name": "/usr/bin/clear", + "hashes": [ + { + "alg": "SHA-1", + "content": "3f4fab0f46e02a10b6f4e4131e7217019e943b1f" + }, + { + "alg": "SHA-256", + "content": "5a39bf45e605a36b7c8ba0397b74383cdc99bf089d1c454260a5c2fdbc41cd93" + } + ] + }, + { + "bom-ref": "7a1a83acaac53a70", + "type": "file", + "name": "/usr/bin/clear_console", + "hashes": [ + { + "alg": "SHA-1", + "content": "67902adb84f7b0e7fbad087ef925a1786c5eb3a9" + }, + { + "alg": "SHA-256", + "content": "401a53500876f168a0725b2db2668de574435d8f6b01e755ec5e17c6bdadc3c7" + } + ] + }, + { + "bom-ref": "b259a4a7841c4b84", + "type": "file", + "name": "/usr/bin/cmp", + "hashes": [ + { + "alg": "SHA-1", + "content": "7dab48f32960e31c872439b4e6950b58469504c9" + }, + { + "alg": "SHA-256", + "content": "37c56ef3028f1622476d6861466183a421b7bbeb2cf7c651aa781a34660eadb1" + } + ] + }, + { + "bom-ref": "63ae9bd29a38b541", + "type": "file", + "name": "/usr/bin/comm", + "hashes": [ + { + "alg": "SHA-1", + "content": "807261986996aed457a9c8fdaf1c40773b9f76e3" + }, + { + "alg": "SHA-256", + "content": "df7c233963926c4c971d0b85f1af9845984635bbc46d9557319995100afabe27" + } + ] + }, + { + "bom-ref": "02c6d71ade074bc8", + "type": "file", + "name": "/usr/bin/csplit", + "hashes": [ + { + "alg": "SHA-1", + "content": "81cfb5be928e70a900e56c29837f3e25a3eef38c" + }, + { + "alg": "SHA-256", + "content": "a10aac32f80e8286115ea7d6a08a7db6d0cdef5dbf1490206fcc1314840cc3a8" + } + ] + }, + { + "bom-ref": "48f990387610d02e", + "type": "file", + "name": "/usr/bin/cut", + "hashes": [ + { + "alg": "SHA-1", + "content": "0689f59ff263ec91e74f637634b6942e3b9fd231" + }, + { + "alg": "SHA-256", + "content": "d1dc9ec31835e244e7233b25f0785ce67327c99dcc274062a1aff5cacf5dd613" + } + ] + }, + { + "bom-ref": "99d38e86e1a16515", + "type": "file", + "name": "/usr/bin/deb-systemd-helper", + "hashes": [ + { + "alg": "SHA-1", + "content": "dfde7cbdc8714059cd2b25801809231e4c42cd4e" + }, + { + "alg": "SHA-256", + "content": "76e6e95c8a57ffa45df1ca84342b97f331958b9af6066178c67bf447c6d12447" + } + ] + }, + { + "bom-ref": "4fea8db6322b2f83", + "type": "file", + "name": "/usr/bin/deb-systemd-invoke", + "hashes": [ + { + "alg": "SHA-1", + "content": "018fd487b799048c59199ae69e42d2ec06178271" + }, + { + "alg": "SHA-256", + "content": "dcbfd9ec0b940d3eb53f63285b396994f1e091280e632a12c708cc6d49ea4806" + } + ] + }, + { + "bom-ref": "34d0c0364d770d55", + "type": "file", + "name": "/usr/bin/debconf", + "hashes": [ + { + "alg": "SHA-1", + "content": "e5fdf013a529ab1fafea520535b660feca1a5658" + }, + { + "alg": "SHA-256", + "content": "d365d13eb1dff880be7361e4043d25875075776445d4edd1eb4fb1e451a2e41a" + } + ] + }, + { + "bom-ref": "1096cd8ad1cb8b9e", + "type": "file", + "name": "/usr/bin/debconf-apt-progress", + "hashes": [ + { + "alg": "SHA-1", + "content": "c6e90c187f546d4e2b1968b56dbb2904f9b5a3ef" + }, + { + "alg": "SHA-256", + "content": "93fb257df4185cc6b83858bdae3c7aec0a4f759a848c743a0b0fd7c7091cf34b" + } + ] + }, + { + "bom-ref": "fd12174dd1d8e6fa", + "type": "file", + "name": "/usr/bin/debconf-communicate", + "hashes": [ + { + "alg": "SHA-1", + "content": "5783cff11d024454030745e28bc81edae1278792" + }, + { + "alg": "SHA-256", + "content": "705b8ce793f999f21bf2f20348b390738a139116c9e483fb39165a508fde4d27" + } + ] + }, + { + "bom-ref": "c7ebcbd96d98be8f", + "type": "file", + "name": "/usr/bin/debconf-copydb", + "hashes": [ + { + "alg": "SHA-1", + "content": "dcd02e9edac2712756664b713d4ec5f0066b861a" + }, + { + "alg": "SHA-256", + "content": "085ff55904c81115d8d65f8862f0a5ad393e062da3047762e4d9cd4f5ba761f4" + } + ] + }, + { + "bom-ref": "c6d09bcd6885c74c", + "type": "file", + "name": "/usr/bin/debconf-escape", + "hashes": [ + { + "alg": "SHA-1", + "content": "de0e7ce4e7369158826dd9caa0894eb5a357e743" + }, + { + "alg": "SHA-256", + "content": "6c17a536ca0fcefa24a7d37f7eaebc02e774415b3160836918cff6cecdef807d" + } + ] + }, + { + "bom-ref": "92ab3dab3fdf39f6", + "type": "file", + "name": "/usr/bin/debconf-set-selections", + "hashes": [ + { + "alg": "SHA-1", + "content": "3a407308248020865ad84bf58807ee96f9e518ac" + }, + { + "alg": "SHA-256", + "content": "8085a988bb9850fd9a3405c8a1f8e643c197811f6edf53dfc5ad20ef85040224" + } + ] + }, + { + "bom-ref": "399347d4d931c99f", + "type": "file", + "name": "/usr/bin/debconf-show", + "hashes": [ + { + "alg": "SHA-1", + "content": "28c58caf56dfd7a565de284297c301bfd3e5b33f" + }, + { + "alg": "SHA-256", + "content": "9dd0bfe9a51d92af868012a32a8190b83a6f4b0834385d12033732b24ee2ceca" + } + ] + }, + { + "bom-ref": "3ab046133a8ae956", + "type": "file", + "name": "/usr/bin/delpart", + "hashes": [ + { + "alg": "SHA-1", + "content": "c8ca354e8b48110c1da958ffcdde9dad7ce54ccd" + }, + { + "alg": "SHA-256", + "content": "4ea8dd80e719de087bd70482d84c763cb46e6323774ad99905099a32ab97bbb6" + } + ] + }, + { + "bom-ref": "5350eda9dd25257a", + "type": "file", + "name": "/usr/bin/diff", + "hashes": [ + { + "alg": "SHA-1", + "content": "44635916fcf393ca1d0f71939403f0b87f22bb7b" + }, + { + "alg": "SHA-256", + "content": "44b4e0c34a331c5527a342f7a997c3dc50f7fcf19090891a02fca606be6126c3" + } + ] + }, + { + "bom-ref": "dfda27b56d96b6eb", + "type": "file", + "name": "/usr/bin/diff3", + "hashes": [ + { + "alg": "SHA-1", + "content": "94d6d4ed1848e7cef8c89850d477001cf576487c" + }, + { + "alg": "SHA-256", + "content": "ac88b338c653726b8d3352abf11d4461d8b96d05db998a968cdcac89255bcb7e" + } + ] + }, + { + "bom-ref": "f64df25379591d23", + "type": "file", + "name": "/usr/bin/dircolors", + "hashes": [ + { + "alg": "SHA-1", + "content": "e3274d19b0f22a215e737335743ac2b60813508b" + }, + { + "alg": "SHA-256", + "content": "55b27e396293571d61fec217f7d915c7ba03ae08ceccaecf6f83f20f438c236f" + } + ] + }, + { + "bom-ref": "1a4adea063713682", + "type": "file", + "name": "/usr/bin/dirname", + "hashes": [ + { + "alg": "SHA-1", + "content": "079d64b7d2f5787321f1c091e9b16f4c6add56a1" + }, + { + "alg": "SHA-256", + "content": "24beee981c1b61a17830f71ff5d807429364aa5f706be15bf01fa8ced73d2fd6" + } + ] + }, + { + "bom-ref": "6f8ae637b64aaee4", + "type": "file", + "name": "/usr/bin/dpkg", + "hashes": [ + { + "alg": "SHA-1", + "content": "80fdea410509bb9d40c8cc30f8525cd539378fbc" + }, + { + "alg": "SHA-256", + "content": "7d72b31a687ec8daa6d6119c76a40cde819954c8fbd558d0085fcbc37e91567f" + } + ] + }, + { + "bom-ref": "b1e395d2c7d69a15", + "type": "file", + "name": "/usr/bin/dpkg-deb", + "hashes": [ + { + "alg": "SHA-1", + "content": "d32ba02f93034dab5cb7e93c3c5b14d110e46203" + }, + { + "alg": "SHA-256", + "content": "a26bf81b48b1b57e1352018c8179284adf568e58495337be32f8f233d3af83e6" + } + ] + }, + { + "bom-ref": "1d2d9b1996669fa6", + "type": "file", + "name": "/usr/bin/dpkg-divert", + "hashes": [ + { + "alg": "SHA-1", + "content": "e0df181db97236f160d23c5c1207f3a1ca2364aa" + }, + { + "alg": "SHA-256", + "content": "0c6009a4a1013f01957a9b70941a225267df88e4fade71541227b14f715cdf1f" + } + ] + }, + { + "bom-ref": "22687e1d9df818c7", + "type": "file", + "name": "/usr/bin/dpkg-maintscript-helper", + "hashes": [ + { + "alg": "SHA-1", + "content": "b3caa6ac32a2c2650303a2455d95d70b77fab896" + }, + { + "alg": "SHA-256", + "content": "254463753cd9c6bc4093c556b181dc418a3fa10ade361fac3bb87ec4525d7aa9" + } + ] + }, + { + "bom-ref": "a93db0da83c16a51", + "type": "file", + "name": "/usr/bin/dpkg-query", + "hashes": [ + { + "alg": "SHA-1", + "content": "ea81d9dd7c2e99f4abb760f8cbd18c2b088c1ed8" + }, + { + "alg": "SHA-256", + "content": "a31b4485435a1d83a973f49ee88247e4ad83b3f7b50383cdb461f71c490944fb" + } + ] + }, + { + "bom-ref": "7dec0ab6f5d624ae", + "type": "file", + "name": "/usr/bin/dpkg-split", + "hashes": [ + { + "alg": "SHA-1", + "content": "d6652dc50a6d22c25b4d4aeec3610f227593697c" + }, + { + "alg": "SHA-256", + "content": "1d266a7a19b9f25ae3bcaaf112b3f4a391df65a75c9f472da5859134229cb4c1" + } + ] + }, + { + "bom-ref": "57f60cc2d6704650", + "type": "file", + "name": "/usr/bin/dpkg-statoverride", + "hashes": [ + { + "alg": "SHA-1", + "content": "cd1cc65b6a119f0798190de7f18208eb54446091" + }, + { + "alg": "SHA-256", + "content": "dc07dd836f8b8cebf2d6730a0e2b34c111ce83d0625a68a466edc9ba7d2766e9" + } + ] + }, + { + "bom-ref": "ca44a57f9eff2396", + "type": "file", + "name": "/usr/bin/dpkg-trigger", + "hashes": [ + { + "alg": "SHA-1", + "content": "1f7b555fceba8cca8bacba1f7fd0a2982e7e2817" + }, + { + "alg": "SHA-256", + "content": "1d0c778f3148496e7474be0ff57f685af4807a3780854a0d3f9f52eff4a2163c" + } + ] + }, + { + "bom-ref": "fe53649d079d4bda", + "type": "file", + "name": "/usr/bin/du", + "hashes": [ + { + "alg": "SHA-1", + "content": "256d96a47adad92a30f83738ed9bd38fcf0bc4a3" + }, + { + "alg": "SHA-256", + "content": "ad0a9752107c5ef02da3a2f35d719356e290e8449a552012d6edbfe3a663127a" + } + ] + }, + { + "bom-ref": "bf1ef3e15cc0f895", + "type": "file", + "name": "/usr/bin/env", + "hashes": [ + { + "alg": "SHA-1", + "content": "a2089dd1825e29b098577a2b47ca301f5c9ddbce" + }, + { + "alg": "SHA-256", + "content": "3019d8a4257a25fd9f6f9bd728f8a7e5090bbd910175fd42d6abc7e5a9de3118" + } + ] + }, + { + "bom-ref": "83b20454ac90edae", + "type": "file", + "name": "/usr/bin/expand", + "hashes": [ + { + "alg": "SHA-1", + "content": "12939dcb46e0e91bc643b3b4ed7a9c5d0c52f343" + }, + { + "alg": "SHA-256", + "content": "6a38a721db80be5881e71d516b91d2994ae256a742944dee213e31604e1946ec" + } + ] + }, + { + "bom-ref": "7f16dc71cbd6c8ec", + "type": "file", + "name": "/usr/bin/expiry", + "hashes": [ + { + "alg": "SHA-1", + "content": "48bcad9dfda959ec7ce52f3ac5a4643933753025" + }, + { + "alg": "SHA-256", + "content": "006c97d68fbddf175f326e554693ceaea984d6406bb5f837f1a00a7c6008218d" + } + ] + }, + { + "bom-ref": "3e5188f472063f6e", + "type": "file", + "name": "/usr/bin/expr", + "hashes": [ + { + "alg": "SHA-1", + "content": "e2fd30834bb6cdf88219b335bd7be5cf0feb8675" + }, + { + "alg": "SHA-256", + "content": "25086c727990cb1afe45f76a1cd98d2e87d2cc153792f6f23f032c0705734bd9" + } + ] + }, + { + "bom-ref": "eee24e8b770cc291", + "type": "file", + "name": "/usr/bin/factor", + "hashes": [ + { + "alg": "SHA-1", + "content": "9962b8e1b983cc851505c3c097af683401ce9773" + }, + { + "alg": "SHA-256", + "content": "058b812512a84ee327f2fc5b86118b26713d285ddf92ff8fe502a7794678afb2" + } + ] + }, + { + "bom-ref": "e70bf19bfce34bb1", + "type": "file", + "name": "/usr/bin/faillog", + "hashes": [ + { + "alg": "SHA-1", + "content": "441c747693457c5696c88863ed399a39530fb663" + }, + { + "alg": "SHA-256", + "content": "31bdc92df6e728514622d7543960ab7fe242ed74bbaf101c73ac2bf59c7e67e0" + } + ] + }, + { + "bom-ref": "b5698615cd3e57d5", + "type": "file", + "name": "/usr/bin/fallocate", + "hashes": [ + { + "alg": "SHA-1", + "content": "bba1af024dec700c99276c7b8ec5c659d966f6ec" + }, + { + "alg": "SHA-256", + "content": "c5dfb56988c18ddd26bdd4939935acf79aafc030e2398381b01777f0e22a1dc0" + } + ] + }, + { + "bom-ref": "4f6f9713684f2843", + "type": "file", + "name": "/usr/bin/fincore", + "hashes": [ + { + "alg": "SHA-1", + "content": "01bf18bd050bdb3290c14aaecc0ecf41215be437" + }, + { + "alg": "SHA-256", + "content": "20e608de722b7417a60c0a6547cddac494bb51e0a5064f008bea5f9afa27d852" + } + ] + }, + { + "bom-ref": "fb4766640d37fd5f", + "type": "file", + "name": "/usr/bin/find", + "hashes": [ + { + "alg": "SHA-1", + "content": "830989cf621cadde370e9c4373a69997ca1bc66b" + }, + { + "alg": "SHA-256", + "content": "95363b9d3e08a30e17f253845b37086da2a7aebc58b9715781b5d6e4ea1ff52d" + } + ] + }, + { + "bom-ref": "fd11d3415d3702db", + "type": "file", + "name": "/usr/bin/flock", + "hashes": [ + { + "alg": "SHA-1", + "content": "1bb29c66272bde64925572b84d4b16e916b76638" + }, + { + "alg": "SHA-256", + "content": "19ef8724eaa5aee890a4f39163b8a31eff1e575ffc1382d5fa84b32a3d677b28" + } + ] + }, + { + "bom-ref": "cf48c7db61277ee4", + "type": "file", + "name": "/usr/bin/fmt", + "hashes": [ + { + "alg": "SHA-1", + "content": "b5efee8a42bc53e49184655f90a4d76a0f5de4dd" + }, + { + "alg": "SHA-256", + "content": "4be3eee43ea3f116de122a77d33a102ce8a9d9d5b36c2afbd3b1480d0b40dfa7" + } + ] + }, + { + "bom-ref": "6156236492f21cab", + "type": "file", + "name": "/usr/bin/fold", + "hashes": [ + { + "alg": "SHA-1", + "content": "d3043922dc780add6bfed89fadebf9aea818a023" + }, + { + "alg": "SHA-256", + "content": "f31d818d4e57d7d42ffdb429cbb1b6155b154067d0481a7edb915e8777bc3aba" + } + ] + }, + { + "bom-ref": "da99da51c48cd221", + "type": "file", + "name": "/usr/bin/getconf", + "hashes": [ + { + "alg": "SHA-1", + "content": "3225bf5c72ba246e4915b0b1c3b99471bdaae09e" + }, + { + "alg": "SHA-256", + "content": "69006964fcd012340b667074de8b0b8ed1426be89c5f12f23f1b7cb8d21ddfff" + } + ] + }, + { + "bom-ref": "9f9ac2827491c8e2", + "type": "file", + "name": "/usr/bin/getent", + "hashes": [ + { + "alg": "SHA-1", + "content": "0c3b629c5b27fb81630a6b4f6dae87ad963e68a1" + }, + { + "alg": "SHA-256", + "content": "f02b2b5779a71b7614996a8dbed8101eb5461d543ee6cfcfc2cc271df2573b67" + } + ] + }, + { + "bom-ref": "57b4238d64e9957b", + "type": "file", + "name": "/usr/bin/getopt", + "hashes": [ + { + "alg": "SHA-1", + "content": "f01a4071008d06a7836bd1b2884935555172ffb1" + }, + { + "alg": "SHA-256", + "content": "363e78a6c332f99c946d0590e7c9d5a1305d4205a6a080211c9918fd27bff16d" + } + ] + }, + { + "bom-ref": "f59c5cfb0b000574", + "type": "file", + "name": "/usr/bin/gpasswd", + "hashes": [ + { + "alg": "SHA-1", + "content": "579fe63f6fef2e408aaa7bd012d5b8e0cb2b5aca" + }, + { + "alg": "SHA-256", + "content": "10a744e7e2f4605e51dc9703c48b7fbfdab58f80a2761e021fed08efe57a04a4" + } + ] + }, + { + "bom-ref": "8f9c6b8bdc041e23", + "type": "file", + "name": "/usr/bin/gpgv", + "hashes": [ + { + "alg": "SHA-1", + "content": "1dbb6657f20f69b9445389e8622084dad9679027" + }, + { + "alg": "SHA-256", + "content": "b18ddb3630fbf8ea97e59581b9913d245ee46c85482b86423ab341c1401eaf3b" + } + ] + }, + { + "bom-ref": "8898879ad2bb7d8c", + "type": "file", + "name": "/usr/bin/groups", + "hashes": [ + { + "alg": "SHA-1", + "content": "817e1a830ccc8acd7797b38867826440741d96d6" + }, + { + "alg": "SHA-256", + "content": "73e1f99e8cb63ab41f70c9126d1447614eb92b91b4d73c02b8aec41632759d89" + } + ] + }, + { + "bom-ref": "4dc5d38afff99ad0", + "type": "file", + "name": "/usr/bin/head", + "hashes": [ + { + "alg": "SHA-1", + "content": "808fc4072d2f062f5ab6c349ad3fea2ca7721932" + }, + { + "alg": "SHA-256", + "content": "39d5c29be06804d15a86f9af2703987e55e2d3580ed22d36910d60bce017c22b" + } + ] + }, + { + "bom-ref": "753bf84bdac47c1a", + "type": "file", + "name": "/usr/bin/hostid", + "hashes": [ + { + "alg": "SHA-1", + "content": "2cf24cc788120476a45aa635a212cc7d1ba4a6e4" + }, + { + "alg": "SHA-256", + "content": "b59ddd548a9fffa181b4174b5e27985e2b6ea65c265d5f4a2248333d26d6c7ab" + } + ] + }, + { + "bom-ref": "35884bf26094706d", + "type": "file", + "name": "/usr/bin/iconv", + "hashes": [ + { + "alg": "SHA-1", + "content": "cafa27f746d4232fb03366e3f59ed70cae4a0ec7" + }, + { + "alg": "SHA-256", + "content": "fb8ac11fc295409e9bee397487d162ab3cdb1d837b088f3eba630519a02a723c" + } + ] + }, + { + "bom-ref": "d67a9bf49cadd80a", + "type": "file", + "name": "/usr/bin/id", + "hashes": [ + { + "alg": "SHA-1", + "content": "b3780ddea64673cbb3550d9acb2b30dfe9c03d34" + }, + { + "alg": "SHA-256", + "content": "cb7cc70d9ac7843dcede6c9ae0fe26f993cc5a9caa5fce924d289a84d3f61354" + } + ] + }, + { + "bom-ref": "1149b03d4f1c4e78", + "type": "file", + "name": "/usr/bin/infocmp", + "hashes": [ + { + "alg": "SHA-1", + "content": "db4e127949d27b8010a106c7dcf86457f0d3c07d" + }, + { + "alg": "SHA-256", + "content": "6fef5eea555f9209a8670cef97a88e36cd91d361e362955481ae8a089c9ca6c8" + } + ] + }, + { + "bom-ref": "3bbd5a9088e3d19f", + "type": "file", + "name": "/usr/bin/install", + "hashes": [ + { + "alg": "SHA-1", + "content": "a7f1dd86fd171b0abb81ab85fef5068703caba9a" + }, + { + "alg": "SHA-256", + "content": "77f8e112d7f30299d235d3c5510d508bbf2e72f236ff78fdf9f5e8fe74755c10" + } + ] + }, + { + "bom-ref": "d9314b8b0e24a53e", + "type": "file", + "name": "/usr/bin/ionice", + "hashes": [ + { + "alg": "SHA-1", + "content": "d051256487ce6f025b529ce475cdac99160f5355" + }, + { + "alg": "SHA-256", + "content": "020a4770df648af0e608425a1dba3df35a14dad7bb4d3f17dde3e3142a35f820" + } + ] + }, + { + "bom-ref": "4101f22d0fd5b4f4", + "type": "file", + "name": "/usr/bin/ipcmk", + "hashes": [ + { + "alg": "SHA-1", + "content": "b12a02551c1722f988d008e6f164380ec1056ceb" + }, + { + "alg": "SHA-256", + "content": "f138b161674fcdb002255f70e630f2ad2be2631370904617de7f9011bbe2cf94" + } + ] + }, + { + "bom-ref": "3d1c5f3279ee2ead", + "type": "file", + "name": "/usr/bin/ipcrm", + "hashes": [ + { + "alg": "SHA-1", + "content": "7e2b6532c0c11bb1f9effb3b408ee42ad9621338" + }, + { + "alg": "SHA-256", + "content": "7566f9bb14fe4a820151c18c0623bf0bd32597b68df60926e2f48831b3ce9b13" + } + ] + }, + { + "bom-ref": "53e94ab1c2cb048e", + "type": "file", + "name": "/usr/bin/ipcs", + "hashes": [ + { + "alg": "SHA-1", + "content": "b811634ef5e05053d3d1dfdf8d215c6be8403c82" + }, + { + "alg": "SHA-256", + "content": "1eed2ffb57faa6eacce030525f90715685347d84dccf976cda5e853b3fb253d8" + } + ] + }, + { + "bom-ref": "7b42b76bea8d0d3d", + "type": "file", + "name": "/usr/bin/ischroot", + "hashes": [ + { + "alg": "SHA-1", + "content": "0f28ab9690d386d90c36564755818e3a61dfb73b" + }, + { + "alg": "SHA-256", + "content": "76f622f57e04d1fe9ce2295c22b0ebe0c6f78f3e215ef9b05a7eb4b9b9844c7b" + } + ] + }, + { + "bom-ref": "ae76bc8c31f19ce0", + "type": "file", + "name": "/usr/bin/join", + "hashes": [ + { + "alg": "SHA-1", + "content": "2f3855d01341a1bb958dc8ee652072652cd74b5e" + }, + { + "alg": "SHA-256", + "content": "8a59dcf7d741cb00b2a4186812378fe17e542b45a114b9862a1255a07e1e62e9" + } + ] + }, + { + "bom-ref": "4a424e3dd841b0ed", + "type": "file", + "name": "/usr/bin/last", + "hashes": [ + { + "alg": "SHA-1", + "content": "f74456090dd2ee5c4e28c18926467c3b99ce9fe4" + }, + { + "alg": "SHA-256", + "content": "168f89efa2f45d55a5232f5becf3278cb1c7921236f47b57a2564dcb69ed69ac" + } + ] + }, + { + "bom-ref": "06ffb8ffe4a704cb", + "type": "file", + "name": "/usr/bin/lastlog", + "hashes": [ + { + "alg": "SHA-1", + "content": "a62f3cc1e5764a570ccd620dfe39f8ad24cfa420" + }, + { + "alg": "SHA-256", + "content": "df1b5da620277dcc483ec075f4cafa0ccd3947a88fb5297b05f4a3ce0b6b3d99" + } + ] + }, + { + "bom-ref": "f2f74e2e162e4a8d", + "type": "file", + "name": "/usr/bin/ldd", + "hashes": [ + { + "alg": "SHA-1", + "content": "89bd29baa70ab2a9731e18195ccb96008b9e2035" + }, + { + "alg": "SHA-256", + "content": "1aac7d17853aeec225cc8e467df72bdee385aa31ce42438bdfc9b40c9da289c3" + } + ] + }, + { + "bom-ref": "ab403198d7f48380", + "type": "file", + "name": "/usr/bin/link", + "hashes": [ + { + "alg": "SHA-1", + "content": "781592c0f593429296530813b432873acd02df12" + }, + { + "alg": "SHA-256", + "content": "996e73bac0b2f73ecf0a5a272c012beaa8ad33a7830dbfe9e8e6990382d32ee7" + } + ] + }, + { + "bom-ref": "b1dcad1173eb4e08", + "type": "file", + "name": "/usr/bin/locale", + "hashes": [ + { + "alg": "SHA-1", + "content": "debd47c1a1ad5af274e491ce785eb3eedf373a7d" + }, + { + "alg": "SHA-256", + "content": "af9bdfae49ed856386e21334b0841dfa9a333cd6ac71bb3bd9eb84206b707c00" + } + ] + }, + { + "bom-ref": "c65679c61645633e", + "type": "file", + "name": "/usr/bin/localedef", + "hashes": [ + { + "alg": "SHA-1", + "content": "1e65ddf5857154d18c35acbb339bbffe61c3df85" + }, + { + "alg": "SHA-256", + "content": "8ea9e24e31aa7783df9874471445a99ed48cfea01672b38bac8225eb4989671c" + } + ] + }, + { + "bom-ref": "ea3b4df13552a84e", + "type": "file", + "name": "/usr/bin/logger", + "hashes": [ + { + "alg": "SHA-1", + "content": "1bfb072ab8ca0711bfce43f17fd55d3e3af01ce4" + }, + { + "alg": "SHA-256", + "content": "980f078c81db4cc976376604ebd7b1482ae5ad7d5a4fae9bda89280004448595" + } + ] + }, + { + "bom-ref": "28bc08be974eabff", + "type": "file", + "name": "/usr/bin/logname", + "hashes": [ + { + "alg": "SHA-1", + "content": "d83368de80929b6b79aa589107dd39c5a159acaf" + }, + { + "alg": "SHA-256", + "content": "3cf0e8279b2629c4a72d2488feb57788e63d78578d85347b6053b650d3436f6b" + } + ] + }, + { + "bom-ref": "811e1df21d20fd1d", + "type": "file", + "name": "/usr/bin/lsattr", + "hashes": [ + { + "alg": "SHA-1", + "content": "a368ed2928f684ad013c550bd4be649421d967f1" + }, + { + "alg": "SHA-256", + "content": "563994c49467c289111e37d6b4e8f9e2535e81f06d6e7473f46c674a76f1ac3e" + } + ] + }, + { + "bom-ref": "c14265d7647a54d7", + "type": "file", + "name": "/usr/bin/lscpu", + "hashes": [ + { + "alg": "SHA-1", + "content": "1d9b2347b76c1941acf2e2a9a95f0ec9741231b0" + }, + { + "alg": "SHA-256", + "content": "d6cf21fc255dfc14d02151ffdfd0015a2bb36512e8a615d2e1e984a8f138e84f" + } + ] + }, + { + "bom-ref": "b86d6ca9c1c32e58", + "type": "file", + "name": "/usr/bin/lsipc", + "hashes": [ + { + "alg": "SHA-1", + "content": "68884ec9d2238f30ac09c32c94cbf64171c11ad0" + }, + { + "alg": "SHA-256", + "content": "6bb43ef56eb017b9d6d51d62a6fc258a66d21ce676113c53437b47e893efde6d" + } + ] + }, + { + "bom-ref": "d4666b109d1492aa", + "type": "file", + "name": "/usr/bin/lslocks", + "hashes": [ + { + "alg": "SHA-1", + "content": "5fc0c008d0425c71ee9461a5a13f5c613410e5e3" + }, + { + "alg": "SHA-256", + "content": "16ab7b23d383c590695821c6da0b28125457a65bd2c41ac3c0c4033042cbabdd" + } + ] + }, + { + "bom-ref": "67b731921cdccc08", + "type": "file", + "name": "/usr/bin/lslogins", + "hashes": [ + { + "alg": "SHA-1", + "content": "4a3362bf671c5b7c9428acb8528bd227db7b7c72" + }, + { + "alg": "SHA-256", + "content": "de1e073c4f4891b874029d57ac0301b26e5cecc89bca17ef923262c61f9a1f77" + } + ] + }, + { + "bom-ref": "b0df13a5dd3238f2", + "type": "file", + "name": "/usr/bin/lsmem", + "hashes": [ + { + "alg": "SHA-1", + "content": "143ce74de3b5fe85b847c32201a1904350c1bf90" + }, + { + "alg": "SHA-256", + "content": "b412fe7aa80294a64d5f0f0b9f4afb0f27b863e4aae0899930f40a4d03971f37" + } + ] + }, + { + "bom-ref": "ebdb1bb684c69c8e", + "type": "file", + "name": "/usr/bin/lsns", + "hashes": [ + { + "alg": "SHA-1", + "content": "42466401940698189d9cee53c79c2f61b98aaacb" + }, + { + "alg": "SHA-256", + "content": "c95e8cadf6c14597d36d3341ed5e6195d5fb22fc118df3d79ddeaa4b46666eed" + } + ] + }, + { + "bom-ref": "4a22353a4523d192", + "type": "file", + "name": "/usr/bin/mawk", + "hashes": [ + { + "alg": "SHA-1", + "content": "c3549bdcc204d9a05806b37b4cfdacbb81671b2a" + }, + { + "alg": "SHA-256", + "content": "3f791f82e19d9723c55fe3fb70e85a19c1663e5b76936293fe75070667a42cba" + } + ] + }, + { + "bom-ref": "c2f3134a189a2529", + "type": "file", + "name": "/usr/bin/mcookie", + "hashes": [ + { + "alg": "SHA-1", + "content": "d2ccc176f41fe7f2fcc67ab445edbb01016e100f" + }, + { + "alg": "SHA-256", + "content": "20645cfb8304ab3837c154a66abef20bbad27b8a3d0665ecf11c02390ec29349" + } + ] + }, + { + "bom-ref": "558f3c03bbfa3583", + "type": "file", + "name": "/usr/bin/md5sum", + "hashes": [ + { + "alg": "SHA-1", + "content": "ba3c3bb0060e3d4570a5472b2cbcb8d6750369b9" + }, + { + "alg": "SHA-256", + "content": "5aaa453c3dabb22892e4072ff46c4730a4cf25b3c0817c2952ec23b39f8a1765" + } + ] + }, + { + "bom-ref": "babe2f2ebe28afe8", + "type": "file", + "name": "/usr/bin/mesg", + "hashes": [ + { + "alg": "SHA-1", + "content": "456d8242b45af1bcbce8db07c35bf50a156a925c" + }, + { + "alg": "SHA-256", + "content": "6e042b80e4b264d0ed6792bace0326aefde44612301749f25f040ec1cad38835" + } + ] + }, + { + "bom-ref": "0cb9a199d8db1428", + "type": "file", + "name": "/usr/bin/mkfifo", + "hashes": [ + { + "alg": "SHA-1", + "content": "5ddb15c2621bd7dd46e2e5e873d93ad523325313" + }, + { + "alg": "SHA-256", + "content": "355a640c64aff10abe702a3f3e52825e4038105381547ea4b321ad5cafbd91a8" + } + ] + }, + { + "bom-ref": "9b69ceb25c2bca1f", + "type": "file", + "name": "/usr/bin/namei", + "hashes": [ + { + "alg": "SHA-1", + "content": "5b792a78a20fc0c08040a1d47a9ede5d9e10fb2d" + }, + { + "alg": "SHA-256", + "content": "25d2f97201970437f1e3e0b6492768cbbebd0302b22e4d3f4d435688ae76f5fa" + } + ] + }, + { + "bom-ref": "d66a49b60f8f3341", + "type": "file", + "name": "/usr/bin/newgrp", + "hashes": [ + { + "alg": "SHA-1", + "content": "35d17851104ed44d9821e06af5a546af018c62b9" + }, + { + "alg": "SHA-256", + "content": "f625f76368f7708b0835014474e2e415563a0dcfec62aed1d7c468908d09be49" + } + ] + }, + { + "bom-ref": "bc12ee2657406764", + "type": "file", + "name": "/usr/bin/nice", + "hashes": [ + { + "alg": "SHA-1", + "content": "61624fbe3f99bd15008dbfdfa0664d7d26044e37" + }, + { + "alg": "SHA-256", + "content": "b548a1d06b95ac7ef8327c64a4b192c4a9100fcfb38daed6d7cf4ef519d22c90" + } + ] + }, + { + "bom-ref": "43cf0cf2aee0db3b", + "type": "file", + "name": "/usr/bin/nl", + "hashes": [ + { + "alg": "SHA-1", + "content": "55976bab4239077ac7f3ac3cf1b9da5c9a7d6d95" + }, + { + "alg": "SHA-256", + "content": "9a110bf879e1e13c2996172fec34df394b751540e987e57ec6e7225e8b824cfb" + } + ] + }, + { + "bom-ref": "ab8951c27c5d1afd", + "type": "file", + "name": "/usr/bin/nohup", + "hashes": [ + { + "alg": "SHA-1", + "content": "64fb8dad82a2a7dc6897a207edad45ff241ff2f4" + }, + { + "alg": "SHA-256", + "content": "5b585877ab2f002014b14312f32f81d427eaf2191aea061ecfa975636af780f6" + } + ] + }, + { + "bom-ref": "8a88686607208185", + "type": "file", + "name": "/usr/bin/nproc", + "hashes": [ + { + "alg": "SHA-1", + "content": "ac01848d7925f07e9eb7db408928871c7a98e9c9" + }, + { + "alg": "SHA-256", + "content": "15c233f41815ad82f479ac02cb6fbcb9dc27c43b6018bde480e59ce103a849bc" + } + ] + }, + { + "bom-ref": "2ed864cc2132852b", + "type": "file", + "name": "/usr/bin/nsenter", + "hashes": [ + { + "alg": "SHA-1", + "content": "8007e8f8622d5c0cb6bb2910065d0302052a3022" + }, + { + "alg": "SHA-256", + "content": "f5a55c919c531230167ca1edaad8ab1512daf86386adb993dfd241250f2aa013" + } + ] + }, + { + "bom-ref": "fc4ba99970bef093", + "type": "file", + "name": "/usr/bin/numfmt", + "hashes": [ + { + "alg": "SHA-1", + "content": "d334c9426214a1a1d55b7784a1a555062fdc96ea" + }, + { + "alg": "SHA-256", + "content": "4200be4a31dabc9a2902ffa6fa83d5b639c7dfd52a21cd3ca6aabc66a7284c87" + } + ] + }, + { + "bom-ref": "e7365c623fb1b127", + "type": "file", + "name": "/usr/bin/od", + "hashes": [ + { + "alg": "SHA-1", + "content": "d8eb0670570cefe76c86c52d7ba877f8827bc57f" + }, + { + "alg": "SHA-256", + "content": "57e286b2e1fde7a20c2427d1f520006393b58e1f9647e0e24a625de641d95627" + } + ] + }, + { + "bom-ref": "9cc134ee2ac0f806", + "type": "file", + "name": "/usr/bin/partx", + "hashes": [ + { + "alg": "SHA-1", + "content": "72c764fc297575ad0bb4c058937722971b1107c3" + }, + { + "alg": "SHA-256", + "content": "cd2b9c6054efdc437eac75b4dce3f699fb182e64785dc70bbbc344a0cba685ca" + } + ] + }, + { + "bom-ref": "a3c732e39d542fbe", + "type": "file", + "name": "/usr/bin/passwd", + "hashes": [ + { + "alg": "SHA-1", + "content": "a1af417c59ad07c44cbcb61eff0ff920d24e878c" + }, + { + "alg": "SHA-256", + "content": "e05c0d20ef30f9dadb349f2958b9ab9e3320f6840d86e09fbea7b0a7bb087117" + } + ] + }, + { + "bom-ref": "db1c8c9ece64b4ce", + "type": "file", + "name": "/usr/bin/paste", + "hashes": [ + { + "alg": "SHA-1", + "content": "a93ab63d84dbea6654ccd47d9e06205e77d4e0d8" + }, + { + "alg": "SHA-256", + "content": "4d5ea32e0cfc404809dc97debb232521a12f0577209a2cd11583a44800d8e4d0" + } + ] + }, + { + "bom-ref": "881ffef05036bd85", + "type": "file", + "name": "/usr/bin/pathchk", + "hashes": [ + { + "alg": "SHA-1", + "content": "0fb31f19cec8978591fa1adbe3cfb23e0fa47720" + }, + { + "alg": "SHA-256", + "content": "f7f9f55c3c3bde3b856eac1395be762df6c921c86c16807096553862635a8478" + } + ] + }, + { + "bom-ref": "abc66fcfcb547cc7", + "type": "file", + "name": "/usr/bin/perl", + "hashes": [ + { + "alg": "SHA-1", + "content": "36d5ac6fbed709a88d2d29b39c58ba5bafab092c" + }, + { + "alg": "SHA-256", + "content": "a6183e3a2fb0d18980a94a7ce7d45657a52b54ff16ca925eabf9bc993dd37e24" + } + ] + }, + { + "bom-ref": "a57fe6fd8ffdbce1", + "type": "file", + "name": "/usr/bin/pinky", + "hashes": [ + { + "alg": "SHA-1", + "content": "416a1100e5016c46b8c23c837af460fe00e8a158" + }, + { + "alg": "SHA-256", + "content": "8cb654dcf86c96de61527531caf10df8b9847e7b5d065843c9b866d8a598abbc" + } + ] + }, + { + "bom-ref": "4c76c090fc30a9f3", + "type": "file", + "name": "/usr/bin/pldd", + "hashes": [ + { + "alg": "SHA-1", + "content": "c42a6979778e31393c10ddc3c8610fb51f226939" + }, + { + "alg": "SHA-256", + "content": "4790648179ee5fc1cab0d86a7e2a28cf79ba78ee6c63baa523829d6ec8ec73ed" + } + ] + }, + { + "bom-ref": "b8b7baacca4c8737", + "type": "file", + "name": "/usr/bin/pr", + "hashes": [ + { + "alg": "SHA-1", + "content": "1db7e215fc0c32b33b389100a2c160229b279de3" + }, + { + "alg": "SHA-256", + "content": "f921e51a30d43f5ccc981ef0ffd88ed24a05b67d07a63526ff1543b4ca625320" + } + ] + }, + { + "bom-ref": "1434b34a01549a93", + "type": "file", + "name": "/usr/bin/printenv", + "hashes": [ + { + "alg": "SHA-1", + "content": "fde4796508dbe14c00b70e2129fb9789a41da078" + }, + { + "alg": "SHA-256", + "content": "6af38428adc7db2ef3416119e7dbf1b93a5f7bcc4b664fb76132740e5ee2bcc5" + } + ] + }, + { + "bom-ref": "dab144b8acfe059c", + "type": "file", + "name": "/usr/bin/printf", + "hashes": [ + { + "alg": "SHA-1", + "content": "aac4558940907a261e0c40cc7ca1b8537b629f3e" + }, + { + "alg": "SHA-256", + "content": "d6ef6fa611d0e6e18f9b0653ef5140d6302b575e3c3ccd274e360c776f63bdd7" + } + ] + }, + { + "bom-ref": "d0a84f4b9bf355c7", + "type": "file", + "name": "/usr/bin/prlimit", + "hashes": [ + { + "alg": "SHA-1", + "content": "edd2862b7ddeafa3d75f829f729c039fee9c003f" + }, + { + "alg": "SHA-256", + "content": "836b4cde29904046a70bbbd7220a87001b71853686ba553d18e357bad3d17c13" + } + ] + }, + { + "bom-ref": "4434bb1741ddb2b6", + "type": "file", + "name": "/usr/bin/ptx", + "hashes": [ + { + "alg": "SHA-1", + "content": "618d568daab45c233e8d08a36dcf266c480f37f0" + }, + { + "alg": "SHA-256", + "content": "f585d840da42f573aa5832046409364f87e228be65c706a620fe76d6f999d66d" + } + ] + }, + { + "bom-ref": "d799981b7d7b7840", + "type": "file", + "name": "/usr/bin/realpath", + "hashes": [ + { + "alg": "SHA-1", + "content": "402d9268764da8ce4875d5a3a0b1b476694f6009" + }, + { + "alg": "SHA-256", + "content": "4abf0f672fe8ef16a72ac4643a6d0df5f58e40bbe1bfa06385f60f877e4f2e98" + } + ] + }, + { + "bom-ref": "a06860aab1010347", + "type": "file", + "name": "/usr/bin/rename.ul", + "hashes": [ + { + "alg": "SHA-1", + "content": "0e8a3063dc073051956d59133c331c14eaf28935" + }, + { + "alg": "SHA-256", + "content": "599d5723227b231772f32a98c877d3237e36e2716b4eb4ba4747a6740e491534" + } + ] + }, + { + "bom-ref": "2c25a0ffd7987f79", + "type": "file", + "name": "/usr/bin/renice", + "hashes": [ + { + "alg": "SHA-1", + "content": "55f1d1b595307b9d7ffdc68e177b2a83145e5e28" + }, + { + "alg": "SHA-256", + "content": "896d0ac084ddf03aa85ab04fd14c6f6582aa461450109868e37a8365527e4d4c" + } + ] + }, + { + "bom-ref": "539fcfdb84517db1", + "type": "file", + "name": "/usr/bin/resizepart", + "hashes": [ + { + "alg": "SHA-1", + "content": "f9f5ff399a6222925f0ed5b58064a32ad5e18ec1" + }, + { + "alg": "SHA-256", + "content": "0bfb4f34bd61d4b0b4a1fc58b58b59dcc0d3d0220bbfdcb6836b8b8e3c7b451e" + } + ] + }, + { + "bom-ref": "fd8b83999640644b", + "type": "file", + "name": "/usr/bin/rev", + "hashes": [ + { + "alg": "SHA-1", + "content": "a31f29ddae2febbf4ab849743b95c65f2c09cc3c" + }, + { + "alg": "SHA-256", + "content": "ba55f806d7c27254ca2e542d98c0c626cef3fdc0d080a2dde84c73e4e17d8f71" + } + ] + }, + { + "bom-ref": "441fe63fe995b9fc", + "type": "file", + "name": "/usr/bin/rgrep", + "hashes": [ + { + "alg": "SHA-1", + "content": "af86e14387b692c347dcc6659508cef278f74edc" + }, + { + "alg": "SHA-256", + "content": "0a8dd42a068115f058ae57f9f6347e1ef0ae2ffea89bf658b132974246577748" + } + ] + }, + { + "bom-ref": "6873350626ea46b7", + "type": "file", + "name": "/usr/bin/runcon", + "hashes": [ + { + "alg": "SHA-1", + "content": "cefe27219861bd2afa8c606c306b3aa00e46f3a3" + }, + { + "alg": "SHA-256", + "content": "261ca0e3ac57667833b63bd5985154e0d317a3805bef38fd00c08532c17fc07b" + } + ] + }, + { + "bom-ref": "a990ca5231869a03", + "type": "file", + "name": "/usr/bin/savelog", + "hashes": [ + { + "alg": "SHA-1", + "content": "6c635edd39daea69067f5959965666598f8bec5c" + }, + { + "alg": "SHA-256", + "content": "b5a489fb4c7a5e1240384e25ac3ff8de31e0456a3439fd7ad0ae28fda777c5db" + } + ] + }, + { + "bom-ref": "f2f187a367413886", + "type": "file", + "name": "/usr/bin/script", + "hashes": [ + { + "alg": "SHA-1", + "content": "16674a9afe91be753200145aa257bab75b87d13d" + }, + { + "alg": "SHA-256", + "content": "87eec26bdf79a18a610cc7b48e0e729ff37e05834977947c009bda981d9c4177" + } + ] + }, + { + "bom-ref": "ad090f1c3a362e0c", + "type": "file", + "name": "/usr/bin/scriptreplay", + "hashes": [ + { + "alg": "SHA-1", + "content": "ea273e9d299c1a38b6fd516e73203b95be90ff9d" + }, + { + "alg": "SHA-256", + "content": "17152532e1beb76936dc4281ef59428b3481a4402288c925ae27ed92a6972e41" + } + ] + }, + { + "bom-ref": "2753818b8a2a1882", + "type": "file", + "name": "/usr/bin/sdiff", + "hashes": [ + { + "alg": "SHA-1", + "content": "c3499b4de98b48b3739551fc5c7d99119b55247d" + }, + { + "alg": "SHA-256", + "content": "250c75399a7c30c248555fad92cd8831a376d7bc40de3fcc5c11f61b0f3e554e" + } + ] + }, + { + "bom-ref": "598003e31f716b81", + "type": "file", + "name": "/usr/bin/seq", + "hashes": [ + { + "alg": "SHA-1", + "content": "5ffa3190d7ebae1ed8028dad87f6a47125b555b9" + }, + { + "alg": "SHA-256", + "content": "ec9904627b0d154453bd1081cc4ece1d47b0d5cb0833167697a7d52e9a3ddfa6" + } + ] + }, + { + "bom-ref": "daf93d20a2f3dd7e", + "type": "file", + "name": "/usr/bin/setarch", + "hashes": [ + { + "alg": "SHA-1", + "content": "83a44bf7d40d6989b75a84b787e0231508a2f55f" + }, + { + "alg": "SHA-256", + "content": "b704c7eae64ebde4d9a989aa35e1573a310241e16266596dc049513fbfdc1bf3" + } + ] + }, + { + "bom-ref": "9e00b15984e1caee", + "type": "file", + "name": "/usr/bin/setpriv", + "hashes": [ + { + "alg": "SHA-1", + "content": "2f143b0760834c6e1e39d0c368f8c8016292d42c" + }, + { + "alg": "SHA-256", + "content": "63280721ada6697db6fbe90ef74584681c3212dee51a255ec1de7679b6aec1d2" + } + ] + }, + { + "bom-ref": "a629981f1cae4322", + "type": "file", + "name": "/usr/bin/setsid", + "hashes": [ + { + "alg": "SHA-1", + "content": "f590a9e2c56a4383e4c5e15e05502e208f2e729d" + }, + { + "alg": "SHA-256", + "content": "9c41b143d31691253cc791b47cd89bb102f083a11a762400ae3c1f27c9a134a4" + } + ] + }, + { + "bom-ref": "5509fcf306b2ff02", + "type": "file", + "name": "/usr/bin/setterm", + "hashes": [ + { + "alg": "SHA-1", + "content": "e0d412c17d430f75b0735f0a55157f2c928a6cf7" + }, + { + "alg": "SHA-256", + "content": "d4be0e239f7dcab70a5c0fff7986a5e42831a729596759c940923308492c1c96" + } + ] + }, + { + "bom-ref": "40c5c5d307922e56", + "type": "file", + "name": "/usr/bin/sha1sum", + "hashes": [ + { + "alg": "SHA-1", + "content": "44fd655f5276c743430fe1b42897abd70e159922" + }, + { + "alg": "SHA-256", + "content": "8cea75855517a6cd215900e7efc8cabb23fec146f2e19ed55d778e5c91679906" + } + ] + }, + { + "bom-ref": "cf0d982d54d47788", + "type": "file", + "name": "/usr/bin/sha224sum", + "hashes": [ + { + "alg": "SHA-1", + "content": "dfa1f0528b51f599b9c12843afb0e87041ce24dc" + }, + { + "alg": "SHA-256", + "content": "bcf4f3012c78d148864163c7bd5034aeb9c57371272032d7fb7c79111ac48bb8" + } + ] + }, + { + "bom-ref": "817f30db3309ffc8", + "type": "file", + "name": "/usr/bin/sha256sum", + "hashes": [ + { + "alg": "SHA-1", + "content": "7bf2e2ced20a3c68c9d69585f148e53f95bf1e2d" + }, + { + "alg": "SHA-256", + "content": "c40717532492c6f2681df75dd14a8fa05675e8153f9c126e8b0c0b6db7e38247" + } + ] + }, + { + "bom-ref": "73b8fe4be3c3c386", + "type": "file", + "name": "/usr/bin/sha384sum", + "hashes": [ + { + "alg": "SHA-1", + "content": "d6f3bbcda96634fc72a66ca1d7c2361a98e08ad6" + }, + { + "alg": "SHA-256", + "content": "f52ab664d62284375c1dce3083c509cc4773803c9773066a11d47027d1fd3e40" + } + ] + }, + { + "bom-ref": "2d93f88372be171b", + "type": "file", + "name": "/usr/bin/sha512sum", + "hashes": [ + { + "alg": "SHA-1", + "content": "da5e2975ef81c29dcdbd77678d465760d3976b4f" + }, + { + "alg": "SHA-256", + "content": "711ce58dc7d912bf4425ba5477f15d8f17a34059f3de1319eb4845b3ad822f21" + } + ] + }, + { + "bom-ref": "d081e7d76e7d017a", + "type": "file", + "name": "/usr/bin/shred", + "hashes": [ + { + "alg": "SHA-1", + "content": "d6802eb89b6fa1b2e7e1d5ab4d2dcabfdfe78d98" + }, + { + "alg": "SHA-256", + "content": "e531c3c87fcfafe01d42c234350fee5551ac008749cdc2e8c618d12ee58aded1" + } + ] + }, + { + "bom-ref": "9054ecd146abca3e", + "type": "file", + "name": "/usr/bin/shuf", + "hashes": [ + { + "alg": "SHA-1", + "content": "8b9995ed34e2da16b16524bc9f8d4ef50871e077" + }, + { + "alg": "SHA-256", + "content": "3e5d515222505822518bf28550042b0542e84b577680f658885326cbbaab06a7" + } + ] + }, + { + "bom-ref": "eb14c50825381cfa", + "type": "file", + "name": "/usr/bin/sort", + "hashes": [ + { + "alg": "SHA-1", + "content": "1084eba03286350be0b46777ef1172b377e794c0" + }, + { + "alg": "SHA-256", + "content": "5c9c5373d32f315833066103f848d687aa955ec9e3fa5e06c2862ed40e6d4583" + } + ] + }, + { + "bom-ref": "5044790447b6f665", + "type": "file", + "name": "/usr/bin/split", + "hashes": [ + { + "alg": "SHA-1", + "content": "4eb8a46478ae26e3ea8b765d6e2ecd21d3d68798" + }, + { + "alg": "SHA-256", + "content": "08591d85909ed8274bdb95a7d94ffb2a15b0cf405b95458bf143765d65769318" + } + ] + }, + { + "bom-ref": "4d5b7aa56760cc39", + "type": "file", + "name": "/usr/bin/stat", + "hashes": [ + { + "alg": "SHA-1", + "content": "0c6be017c5756d66934fb81ef4059d0626ee2333" + }, + { + "alg": "SHA-256", + "content": "222b21e4b91675661ecc0dee677ba575e5ee3dfe0fadae9d432cd0ac069a1f62" + } + ] + }, + { + "bom-ref": "390fae2b6e959d01", + "type": "file", + "name": "/usr/bin/stdbuf", + "hashes": [ + { + "alg": "SHA-1", + "content": "fedeeeb9d8b30236073335494331082b42e6cde7" + }, + { + "alg": "SHA-256", + "content": "00a5270c7b0262754886e4d26ebc1a5a03911c46fa3c02e2b8d2b346be1f924a" + } + ] + }, + { + "bom-ref": "ae9369f4dae67fc4", + "type": "file", + "name": "/usr/bin/sum", + "hashes": [ + { + "alg": "SHA-1", + "content": "1a9629cb042959acafddd62c6c2a0ff9b6d482f1" + }, + { + "alg": "SHA-256", + "content": "1cc7bc67a5f99eab5311c76d103c2e50f2deddc34421a8c01c0744c9fdf60066" + } + ] + }, + { + "bom-ref": "7ea599d97298f060", + "type": "file", + "name": "/usr/bin/tabs", + "hashes": [ + { + "alg": "SHA-1", + "content": "b9e76cbe2060e23151b71e9af860e487cdd2567d" + }, + { + "alg": "SHA-256", + "content": "9617f02d8f1ccd55366f04c0211e5bd6c6cf470463bf64be9e398c72ec4ce9a1" + } + ] + }, + { + "bom-ref": "71d1181e70f25994", + "type": "file", + "name": "/usr/bin/tac", + "hashes": [ + { + "alg": "SHA-1", + "content": "107ff3bf9cd9e7c44dd8a2f2925b1717d07fe1b9" + }, + { + "alg": "SHA-256", + "content": "d8d562f2fad2d3675a28535bceaad4b58a646b8bbe5f78540130b94d8ec2d42c" + } + ] + }, + { + "bom-ref": "dbdb96698cd184d9", + "type": "file", + "name": "/usr/bin/tail", + "hashes": [ + { + "alg": "SHA-1", + "content": "f2b9193d25773902ba9fc20d758d7c2aa078891c" + }, + { + "alg": "SHA-256", + "content": "62f9f84c362528336f8d0b7a8040fd7b401ec74a90b709434a56fa2583af035e" + } + ] + }, + { + "bom-ref": "2537a045a2e691e4", + "type": "file", + "name": "/usr/bin/taskset", + "hashes": [ + { + "alg": "SHA-1", + "content": "57e78b5451f96ece1be5f40dc80888af12acd4f3" + }, + { + "alg": "SHA-256", + "content": "b6865fd6e0e6114364774e33df11c537da32976ffc254c24bd834093c6cdd686" + } + ] + }, + { + "bom-ref": "6a71710948053452", + "type": "file", + "name": "/usr/bin/tee", + "hashes": [ + { + "alg": "SHA-1", + "content": "6ecb50b4a16d0e4785616471b5db3fe214eba3c9" + }, + { + "alg": "SHA-256", + "content": "ad920a0fa326ba6d09d83ab2140852c69dbf42ab3a4b2a2a378df3f4da800e78" + } + ] + }, + { + "bom-ref": "840d6467fae44ff2", + "type": "file", + "name": "/usr/bin/test", + "hashes": [ + { + "alg": "SHA-1", + "content": "cd88447fc262f9a483d5fa9a28abd1445a05d397" + }, + { + "alg": "SHA-256", + "content": "b87155acb17cfae564a2318108f196805497f5b0edaa96fb5afdcb857d7eb6c8" + } + ] + }, + { + "bom-ref": "981840e3fe520a07", + "type": "file", + "name": "/usr/bin/tic", + "hashes": [ + { + "alg": "SHA-1", + "content": "cac3ceae20fe0521f8abd941065a5b9f2ad0e8b7" + }, + { + "alg": "SHA-256", + "content": "c2ee7b4690e7b3888e05bfff39a68430a8ea4568323b459a318310999cae60ff" + } + ] + }, + { + "bom-ref": "ecc5c1b75f58c76e", + "type": "file", + "name": "/usr/bin/timeout", + "hashes": [ + { + "alg": "SHA-1", + "content": "d86212366e20a0fe28f27a177fffb016127dc3ff" + }, + { + "alg": "SHA-256", + "content": "81b1f877246269f37f2fe9c207c0a25779d189a804db5214e8a185674fd28f8b" + } + ] + }, + { + "bom-ref": "26c6d684742b730d", + "type": "file", + "name": "/usr/bin/toe", + "hashes": [ + { + "alg": "SHA-1", + "content": "4ed447db111f164b836455427cd0a3af49aec5b9" + }, + { + "alg": "SHA-256", + "content": "4e562e80a2cc7765a34a2cffca5f7444d2feccabd778a19bbbbf7655c8854d93" + } + ] + }, + { + "bom-ref": "72861f44f9b75e74", + "type": "file", + "name": "/usr/bin/tput", + "hashes": [ + { + "alg": "SHA-1", + "content": "b03253d9d929fa6766b362ca5d66c281d3735ff9" + }, + { + "alg": "SHA-256", + "content": "814958ca9c07d7fafe9830577c61e7d7665c1bf0b107c61dd21247a2952928f0" + } + ] + }, + { + "bom-ref": "2aece09671163187", + "type": "file", + "name": "/usr/bin/tr", + "hashes": [ + { + "alg": "SHA-1", + "content": "94bdf6c1207ce5e18bb7c0187d13ec0cd701358c" + }, + { + "alg": "SHA-256", + "content": "23a9e3aa04a9109e7448c167fd7e87e5413ea5f07ac5e055b9bdd8bfb6764ae2" + } + ] + }, + { + "bom-ref": "1f838a7769af277b", + "type": "file", + "name": "/usr/bin/truncate", + "hashes": [ + { + "alg": "SHA-1", + "content": "45d958c39a3ce4dbc392267b63027777f32ac391" + }, + { + "alg": "SHA-256", + "content": "cbed97bd03bf50823526eb6199ea3ae98d6a49e3e983af99ed57c7887ca33165" + } + ] + }, + { + "bom-ref": "7e229795839fc93f", + "type": "file", + "name": "/usr/bin/tset", + "hashes": [ + { + "alg": "SHA-1", + "content": "1c2125b5364c3dc15cf3ee9a68fe5c08c4bb340a" + }, + { + "alg": "SHA-256", + "content": "e1d2870f07982fa5c05bbb41bc4b2f652dcb4e84d38348fddfe7c65088ee2acb" + } + ] + }, + { + "bom-ref": "45615675bbb60234", + "type": "file", + "name": "/usr/bin/tsort", + "hashes": [ + { + "alg": "SHA-1", + "content": "d12fe9980a601fda928a01f7abd5d71d4e910523" + }, + { + "alg": "SHA-256", + "content": "40fb3aaf3d8c2d54027b42ebc3b5bb72270657584a3116a029e0fdfba3d582b0" + } + ] + }, + { + "bom-ref": "bd6073e129e3a807", + "type": "file", + "name": "/usr/bin/tty", + "hashes": [ + { + "alg": "SHA-1", + "content": "16d0946bed68213b724ed0cee499f77abbada4af" + }, + { + "alg": "SHA-256", + "content": "345a918cdcd0d1762ed3ac0675a5164c80506db8ebfc27932caabe707559aba5" + } + ] + }, + { + "bom-ref": "95878a19128677f8", + "type": "file", + "name": "/usr/bin/tzselect", + "hashes": [ + { + "alg": "SHA-1", + "content": "fbf713cff8807df097db1a4fcfe7be845f2fbf6f" + }, + { + "alg": "SHA-256", + "content": "299abe2c1b38aa21df5e6079c5b654914a6a5f14aa1a37da7463a8f3c0976a81" + } + ] + }, + { + "bom-ref": "01fc8aa8d76dfbaf", + "type": "file", + "name": "/usr/bin/unexpand", + "hashes": [ + { + "alg": "SHA-1", + "content": "0ce413dc085165050dcd73f85c04dcdc82f06cb8" + }, + { + "alg": "SHA-256", + "content": "0db66d773f2c8ff4b4994a4b3b859430e0f8857d16c28a48f29a99dd4f280e24" + } + ] + }, + { + "bom-ref": "cf33a48672568cc5", + "type": "file", + "name": "/usr/bin/uniq", + "hashes": [ + { + "alg": "SHA-1", + "content": "566523308fd47a65562a90a4dea06c838d64b5ef" + }, + { + "alg": "SHA-256", + "content": "80f3f287f39c0c81b318a4ce2e1708870703b95bb0c624ceedb285cd3ad54d3b" + } + ] + }, + { + "bom-ref": "6db21018d2933543", + "type": "file", + "name": "/usr/bin/unlink", + "hashes": [ + { + "alg": "SHA-1", + "content": "56d43d0b4d4b3aa8f2b72c40b80c14e6214aef92" + }, + { + "alg": "SHA-256", + "content": "5b91de85c66d77c8b39f3fdff754e2aa006393b94106f5350bc805908c6b037c" + } + ] + }, + { + "bom-ref": "2f4325ad11723f03", + "type": "file", + "name": "/usr/bin/unshare", + "hashes": [ + { + "alg": "SHA-1", + "content": "74b641e5b78aa79a0b0436951fd91df09bb2d4ae" + }, + { + "alg": "SHA-256", + "content": "7406bd510854c90e2bb05e705687fae5862d996a2923e7309d997cc78b2ad1e2" + } + ] + }, + { + "bom-ref": "07ad3b798baab50b", + "type": "file", + "name": "/usr/bin/update-alternatives", + "hashes": [ + { + "alg": "SHA-1", + "content": "7bd0d4014ecbe7af6776f9ee316d69d826b7e1c4" + }, + { + "alg": "SHA-256", + "content": "a51f8948733fe5d10a2a3fdfec97b7718245212f97bc82f2e9cb2dbf550e6dc4" + } + ] + }, + { + "bom-ref": "870f511aa56f76bb", + "type": "file", + "name": "/usr/bin/users", + "hashes": [ + { + "alg": "SHA-1", + "content": "6442090d2f650d955630c8e998103f16148389f3" + }, + { + "alg": "SHA-256", + "content": "cf639d336ce3215727b742b2474cbd9511d8fa3fe9307e011728fa06ff7951f0" + } + ] + }, + { + "bom-ref": "a301255b9268085e", + "type": "file", + "name": "/usr/bin/utmpdump", + "hashes": [ + { + "alg": "SHA-1", + "content": "88863bf90d72abe2b8a8f16817ef08260afb8cf6" + }, + { + "alg": "SHA-256", + "content": "6b8a5a198fbd4e1a5c21ba6b60863fdbb07a6e7f211ae71ca54b834ae933e240" + } + ] + }, + { + "bom-ref": "e253f03ec29d2901", + "type": "file", + "name": "/usr/bin/wall", + "hashes": [ + { + "alg": "SHA-1", + "content": "0131d389533cae05e991295221142cafaf9e43ee" + }, + { + "alg": "SHA-256", + "content": "e3c5462b0b0e2e6eb5b9f7f1278cf6ad0255b44abbbc6431668be14d509b01c6" + } + ] + }, + { + "bom-ref": "963cc963c0f728ee", + "type": "file", + "name": "/usr/bin/wc", + "hashes": [ + { + "alg": "SHA-1", + "content": "3a9d3466e8481031ab5bfe379b8a8b89164a2855" + }, + { + "alg": "SHA-256", + "content": "b4cbcc139e9f1cc1b9e0fa2d3afedad5391bdd2dbd05610da8994988c57ee5e0" + } + ] + }, + { + "bom-ref": "9c69d11b80c9ac9f", + "type": "file", + "name": "/usr/bin/whereis", + "hashes": [ + { + "alg": "SHA-1", + "content": "d438d7d541a3df11868f059c6f4a2601622b8728" + }, + { + "alg": "SHA-256", + "content": "b42266bb2b4a3cfa39fc0bd847a7acb316dbeea0930059422ef55c7fbe83bf2e" + } + ] + }, + { + "bom-ref": "ddb08dab8f68dca9", + "type": "file", + "name": "/usr/bin/who", + "hashes": [ + { + "alg": "SHA-1", + "content": "4788453db9a8252b69ff8405624109839475a437" + }, + { + "alg": "SHA-256", + "content": "a00e66033dc7343c9f2ba271dd8eef32cdcccdcdfd1461218da66bef4db36dee" + } + ] + }, + { + "bom-ref": "08666a2d7f3c50ca", + "type": "file", + "name": "/usr/bin/whoami", + "hashes": [ + { + "alg": "SHA-1", + "content": "8379306341f5fdfc1969c45f54a011fc89a43678" + }, + { + "alg": "SHA-256", + "content": "fa7553f568e3cedee99995fe02e2a66a4d7e9a4f9585abed4bf96daf07700ac3" + } + ] + }, + { + "bom-ref": "cd5f8b8cfa69c712", + "type": "file", + "name": "/usr/bin/xargs", + "hashes": [ + { + "alg": "SHA-1", + "content": "59a6c83a70f155b4e485927bec14ae00696235ea" + }, + { + "alg": "SHA-256", + "content": "4def535c9ca4edd7a26eab995b2c75316550b1d65bf4720e6be2238c5fdd472e" + } + ] + }, + { + "bom-ref": "f545d77052fb927e", + "type": "file", + "name": "/usr/bin/yes", + "hashes": [ + { + "alg": "SHA-1", + "content": "93f099747005433d2c42d5218126395e69298b86" + }, + { + "alg": "SHA-256", + "content": "cecffad9d7d0fd743c2b9809c51f99923991686a27c397db80385fede02aaaee" + } + ] + }, + { + "bom-ref": "6383c3661e4e18be", + "type": "file", + "name": "/usr/bin/zdump", + "hashes": [ + { + "alg": "SHA-1", + "content": "cf3a29456fe5a2bb3773edf8f1912050fec4ad14" + }, + { + "alg": "SHA-256", + "content": "3dfc284e413122f3c2ebcb310f189fe20d5e33d53fddf279ac05acae591cb5a5" + } + ] + }, + { + "bom-ref": "fb0d674ef60cb9f6", + "type": "file", + "name": "/usr/lib/apt/apt-helper", + "hashes": [ + { + "alg": "SHA-1", + "content": "da86b089e15f2e35b0152a4319dfd7ba5ef509e8" + }, + { + "alg": "SHA-256", + "content": "379758596b84b1eb38c6f5463d474c36299f3c3fc37a70fc4ded57385871428c" + } + ] + }, + { + "bom-ref": "c92bc9b4c06de17c", + "type": "file", + "name": "/usr/lib/apt/apt.systemd.daily", + "hashes": [ + { + "alg": "SHA-1", + "content": "5fcf84ec2ef5fd3ff510fa633c5a2710cc95724d" + }, + { + "alg": "SHA-256", + "content": "f05ec6f060a9d2b351f321d0d53471a9b163a7bbad465095c1b1f2cd2d9e3867" + } + ] + }, + { + "bom-ref": "e55984b3ae58ba60", + "type": "file", + "name": "/usr/lib/apt/methods/cdrom", + "hashes": [ + { + "alg": "SHA-1", + "content": "f97cb6d533faea5651632955242875bff09a0ee2" + }, + { + "alg": "SHA-256", + "content": "b9489cb71148b6459bbed0521fef59d436f32a2b9df8565907c9c2c15d32ec31" + } + ] + }, + { + "bom-ref": "64a54264af9a564c", + "type": "file", + "name": "/usr/lib/apt/methods/copy", + "hashes": [ + { + "alg": "SHA-1", + "content": "4059fbd210252d8ba3b56cdc1c9d7eaed850153d" + }, + { + "alg": "SHA-256", + "content": "d52a62d3cb3453abca6b7a399b8693694e3de8c22e6e5f413cd7e9a9cb2db093" + } + ] + }, + { + "bom-ref": "f55204048ea3646c", + "type": "file", + "name": "/usr/lib/apt/methods/file", + "hashes": [ + { + "alg": "SHA-1", + "content": "0b1bc81b4387b8109bdc3ed94c2f430e34c9151d" + }, + { + "alg": "SHA-256", + "content": "9a16873934521fc8431e3979e3db6af994c4dd22086fd569193ed498f4c04645" + } + ] + }, + { + "bom-ref": "0637ed0527940d19", + "type": "file", + "name": "/usr/lib/apt/methods/ftp", + "hashes": [ + { + "alg": "SHA-1", + "content": "7d8bd03af44d601ad9ca14f41e721c747a8af067" + }, + { + "alg": "SHA-256", + "content": "8950535d6daed6441a4323d9c97b98f797a0eef0a78e74d1a5d4d9e9b61698eb" + } + ] + }, + { + "bom-ref": "1e904871fb4c7eb6", + "type": "file", + "name": "/usr/lib/apt/methods/gpgv", + "hashes": [ + { + "alg": "SHA-1", + "content": "e70c9b5b235d75f0d07b83a782c68f0f4ea7954b" + }, + { + "alg": "SHA-256", + "content": "60572fafb9c952ca000fd4534f5bea1632426bd8a4a728c8a63fb475b75cac47" + } + ] + }, + { + "bom-ref": "1e5d4448914c488a", + "type": "file", + "name": "/usr/lib/apt/methods/http", + "hashes": [ + { + "alg": "SHA-1", + "content": "150ade638ff899a16179f989c8c6992200492ff7" + }, + { + "alg": "SHA-256", + "content": "1e4df41c3187a2b483788d8b0ea545d0e2e83ff602346275da67e642d9459e01" + } + ] + }, + { + "bom-ref": "4a9d7f802ad353ce", + "type": "file", + "name": "/usr/lib/apt/methods/mirror", + "hashes": [ + { + "alg": "SHA-1", + "content": "6d08656680b822705de59767cdf140c98be1ce16" + }, + { + "alg": "SHA-256", + "content": "7702620751134283f0cac5b63ad4dd538ac3592e814e05e51ba750abd5727329" + } + ] + }, + { + "bom-ref": "2194f6ffa96f6885", + "type": "file", + "name": "/usr/lib/apt/methods/rred", + "hashes": [ + { + "alg": "SHA-1", + "content": "4fba1e3eb84adf4fe0fabc058e6a23061d208713" + }, + { + "alg": "SHA-256", + "content": "3025a408756252ee5d687e2c894f490145c2d2acfce7cb6e5d53fa3302c661c6" + } + ] + }, + { + "bom-ref": "a27ecadeb5738e89", + "type": "file", + "name": "/usr/lib/apt/methods/rsh", + "hashes": [ + { + "alg": "SHA-1", + "content": "f44d5a9e195c0e395db44213712ab56e333b9c06" + }, + { + "alg": "SHA-256", + "content": "f9605c863e99c1e82e6650e492c8054b83b9c884a6fb2ee97125cad9d5468edb" + } + ] + }, + { + "bom-ref": "c32db9622bb7ba44", + "type": "file", + "name": "/usr/lib/apt/methods/store", + "hashes": [ + { + "alg": "SHA-1", + "content": "a908f870a6d9c50c97c72485c610abedc728c1f1" + }, + { + "alg": "SHA-256", + "content": "d51ed41d8d2c9a05c352985079a1da383d28048fb58a3ebd0884ff54e733001b" + } + ] + }, + { + "bom-ref": "e917862b99f2881d", + "type": "file", + "name": "/usr/lib/apt/solvers/dump", + "hashes": [ + { + "alg": "SHA-1", + "content": "a426befd5cf01ed4a044945d2f63757568d4e17d" + }, + { + "alg": "SHA-256", + "content": "75549b439daa6a365a0bdff757dd39258de3ee6ce2a5d7bb34d3daf67042ddf0" + } + ] + }, + { + "bom-ref": "77d64df48f130001", + "type": "file", + "name": "/usr/lib/dpkg/methods/apt/desc.apt", + "hashes": [ + { + "alg": "SHA-1", + "content": "682dc97778774b8a82b26c97782f5843c343b7d5" + }, + { + "alg": "SHA-256", + "content": "4035a2ca99d6d473f6e9a0af7b39d395bfe47e48b3a9993488fc2fae139145f8" + } + ] + }, + { + "bom-ref": "995894a681be4ed0", + "type": "file", + "name": "/usr/lib/dpkg/methods/apt/install", + "hashes": [ + { + "alg": "SHA-1", + "content": "052f3d37f45b1febda3918365145716c063b5a22" + }, + { + "alg": "SHA-256", + "content": "810da1fcf97636219401c67e891a04a7a4f01b2a0d73fd60bf3bbbdfb3775f76" + } + ] + }, + { + "bom-ref": "56db6f33a57cf5c0", + "type": "file", + "name": "/usr/lib/dpkg/methods/apt/names", + "hashes": [ + { + "alg": "SHA-1", + "content": "48accef05a84ae2361d8db806623da6623d6c37d" + }, + { + "alg": "SHA-256", + "content": "0a636de469385b41ea06f639a389c523946ec7f023fe2a12c0adf8300e2a82ad" + } + ] + }, + { + "bom-ref": "d203a0f505e0ef7d", + "type": "file", + "name": "/usr/lib/dpkg/methods/apt/setup", + "hashes": [ + { + "alg": "SHA-1", + "content": "de763d7d348211c690e6af0a5596dfa395e9ef39" + }, + { + "alg": "SHA-256", + "content": "c645a091943f61ff46847973d000cbf1817623a86e1ede412f97f437aa1eb56a" + } + ] + }, + { + "bom-ref": "c2a905288ec2b7da", + "type": "file", + "name": "/usr/lib/dpkg/methods/apt/update", + "hashes": [ + { + "alg": "SHA-1", + "content": "1921cb2b619b98dc62a6e7d0a7e4ce48da794428" + }, + { + "alg": "SHA-256", + "content": "605ae19f87289e8d4cdb80028dd071c4b3ea0e2e46da9ad697b6bd739ba4c6b3" + } + ] + }, + { + "bom-ref": "231fac698db9c89d", + "type": "file", + "name": "/usr/lib/locale/C.UTF-8/LC_ADDRESS", + "hashes": [ + { + "alg": "SHA-1", + "content": "e17f64601d95342e6977b3fe6779532c8a67a765" + }, + { + "alg": "SHA-256", + "content": "e56fdac7f4d70bdb7517a9a3c98bbfefef52fcfb082d3a49c26eec93fd8f9d9d" + } + ] + }, + { + "bom-ref": "36f23f45e8c8a1e4", + "type": "file", + "name": "/usr/lib/locale/C.UTF-8/LC_COLLATE", + "hashes": [ + { + "alg": "SHA-1", + "content": "e1853ba5ed068f3171290c2b7f948905c6e4942e" + }, + { + "alg": "SHA-256", + "content": "400602bb4b2d0e72e937ab6b4ad239b05a286d307627160ec4638a37d797e1d0" + } + ] + }, + { + "bom-ref": "85d2ee2c6f99a4a2", + "type": "file", + "name": "/usr/lib/locale/C.UTF-8/LC_CTYPE", + "hashes": [ + { + "alg": "SHA-1", + "content": "aae750bbd36295c81a03a9deeeaa81a104af5c9e" + }, + { + "alg": "SHA-256", + "content": "dac2aa98f74eb28473182732e8adaf5100bab0a085a862d8c58fcaa7096a99d0" + } + ] + }, + { + "bom-ref": "f9531940f7fa1d0b", + "type": "file", + "name": "/usr/lib/locale/C.UTF-8/LC_IDENTIFICATION", + "hashes": [ + { + "alg": "SHA-1", + "content": "7e5c3b48f452c3bd65d3185db6d568f83bdaa976" + }, + { + "alg": "SHA-256", + "content": "a18e79a14c660aa2eb90d2e145e79c23a20915552797403eed8732c6a75b6500" + } + ] + }, + { + "bom-ref": "eac49d74face29f2", + "type": "file", + "name": "/usr/lib/locale/C.UTF-8/LC_MEASUREMENT", + "hashes": [ + { + "alg": "SHA-1", + "content": "0a7d0d264f9ded94057020e807bfaa13a7573821" + }, + { + "alg": "SHA-256", + "content": "bb14a6f2cbd5092a755e8f272079822d3e842620dd4542a8dfa1e5e72fc6115b" + } + ] + }, + { + "bom-ref": "cf6f51bd2f40566e", + "type": "file", + "name": "/usr/lib/locale/C.UTF-8/LC_MESSAGES/SYS_LC_MESSAGES", + "hashes": [ + { + "alg": "SHA-1", + "content": "574d7e92bedf1373ec9506859b0d55ee7babbf20" + }, + { + "alg": "SHA-256", + "content": "f9ad02f1d8eba721d4cbd50c365b5c681c39aec008f90bfc2be2dc80bfbaddcb" + } + ] + }, + { + "bom-ref": "e7ca9fb388585958", + "type": "file", + "name": "/usr/lib/locale/C.UTF-8/LC_MONETARY", + "hashes": [ + { + "alg": "SHA-1", + "content": "e15e804a83f37be7902e75fe50b4791a32d8d1c0" + }, + { + "alg": "SHA-256", + "content": "cafa798824e8125971c72f9491b95f02f0fbeeb2429bcaeb17491fa5ef1a7f49" + } + ] + }, + { + "bom-ref": "43441b8bb5cd474c", + "type": "file", + "name": "/usr/lib/locale/C.UTF-8/LC_NAME", + "hashes": [ + { + "alg": "SHA-1", + "content": "b5d16f1042c3c1c4bef85766aa2c20c1b0d8cff6" + }, + { + "alg": "SHA-256", + "content": "14507aad9f806112e464b9ca94c93b2e4d759ddc612b5f87922d7cac7170697d" + } + ] + }, + { + "bom-ref": "56921c5bf5d5a857", + "type": "file", + "name": "/usr/lib/locale/C.UTF-8/LC_NUMERIC", + "hashes": [ + { + "alg": "SHA-1", + "content": "1bd2f3db04022b8cfe5cd7a7f90176f191e19425" + }, + { + "alg": "SHA-256", + "content": "f5976e6b3e6b24dfe03caad6a5b98d894d8110d8bd15507e690fd60fd3e04ab2" + } + ] + }, + { + "bom-ref": "6f93adebd1333a5b", + "type": "file", + "name": "/usr/lib/locale/C.UTF-8/LC_PAPER", + "hashes": [ + { + "alg": "SHA-1", + "content": "567aaf639393135b76e22e72aaee1df95764e990" + }, + { + "alg": "SHA-256", + "content": "cde048b81e2a026517cc707c906aebbd50f5ee3957b6f0c1c04699dffcb7c015" + } + ] + }, + { + "bom-ref": "d0fbfeece53639b7", + "type": "file", + "name": "/usr/lib/locale/C.UTF-8/LC_TELEPHONE", + "hashes": [ + { + "alg": "SHA-1", + "content": "3316c99e183186c5cad97a71674ef7431c3da845" + }, + { + "alg": "SHA-256", + "content": "f4caf0d12844219b65ba42edc7ec2f5ac1b2fc36a3c88c28887457275daca1ee" + } + ] + }, + { + "bom-ref": "f31b657c14013cbf", + "type": "file", + "name": "/usr/lib/locale/C.UTF-8/LC_TIME", + "hashes": [ + { + "alg": "SHA-1", + "content": "e619a4db877e0b54fa14b8a3992da2b561b3239b" + }, + { + "alg": "SHA-256", + "content": "0910b595d1d5d4e52cc0f415bbb1ff07c015d6860d34aae02505dd9973a63154" + } + ] + }, + { + "bom-ref": "abd1f47ba6f03c88", + "type": "file", + "name": "/usr/lib/mime/packages/tar", + "hashes": [ + { + "alg": "SHA-1", + "content": "c3e6f74ad526dc0aa3c1634f3a5dfa559f7508d9" + }, + { + "alg": "SHA-256", + "content": "31deef64d49013a02645bcd32e43d108d12ebb89a93034fb35947c7c576397c8" + } + ] + }, + { + "bom-ref": "861308abbb3d7359", + "type": "file", + "name": "/usr/lib/mime/packages/util-linux", + "hashes": [ + { + "alg": "SHA-1", + "content": "86976cfbb3272bf87d782fd82fc72a7a60850ba2" + }, + { + "alg": "SHA-256", + "content": "8c2a3124292211ce117712858ad06a036675a7f7d8f578e5b84267b1196c1665" + } + ] + }, + { + "bom-ref": "2cb5bb06929f4e71", + "type": "file", + "name": "/usr/lib/os-release", + "hashes": [ + { + "alg": "SHA-1", + "content": "f0ed42f3d397f3d12be10aa49760f5ece28cdbef" + }, + { + "alg": "SHA-256", + "content": "c0c501c05a85ad53cbaf4028f75c078569dadda64ae8e793339096e05a3d98b0" + } + ] + }, + { + "bom-ref": "cd52ddb6e0d9f07f", + "type": "file", + "name": "/usr/lib/tmpfiles.d/passwd.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "886f48aea32a6d5da3242dfe02abab0a94c594ad" + }, + { + "alg": "SHA-256", + "content": "1a3b927102b44454eb4c47e4fe659de2f5283f364ba27408329a54d4ad47e310" + } + ] + }, + { + "bom-ref": "a66d19225fc72cb0", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/audit/sotruss-lib.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "665dcf319f0af255610073174b86b8dac98d178c" + }, + { + "alg": "SHA-256", + "content": "af41a716d9cd3ac146b8f15e9588a23e3176d57f553ce785b8f7c43b743f7cfe" + } + ] + }, + { + "bom-ref": "1530b0de145f15c5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/coreutils/libstdbuf.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "0a5906149729c3ae56360961a8d4d4a9c22df888" + }, + { + "alg": "SHA-256", + "content": "387b5735775c8fca542d4b1ecf0f9e1f459bcbc4891f0728c49b9d580742f61d" + } + ] + }, + { + "bom-ref": "8999b962f461c719", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ANSI_X3.110.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "ab0662fab3d38c31a4fc38b826832fdba33bbb0b" + }, + { + "alg": "SHA-256", + "content": "8bd1055135eadec3ee6d9b72c74b4fb3e1e5f041c83a14c435d282e0fe1035dc" + } + ] + }, + { + "bom-ref": "cc0e14af39fdab84", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ARMSCII-8.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "08665207a2014003d49b189746d6610698fd6cd1" + }, + { + "alg": "SHA-256", + "content": "d0d039dc5bbede0e1fa78068e6054453ad79c0b0197ceb067b71c0c15d4a1ff8" + } + ] + }, + { + "bom-ref": "9ae5bba0f8ec0f54", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ASMO_449.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "c9e44499be7ead24fc5ab87fd4ccf33707b34974" + }, + { + "alg": "SHA-256", + "content": "3d2c59c8948bb7f9ef707b827b224f6b5dacb160881f6be7fdca2589b0245320" + } + ] + }, + { + "bom-ref": "5db62674e57d78d4", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/BIG5.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "7a6eb66114d07f1ba00c97d8362485a8957f066b" + }, + { + "alg": "SHA-256", + "content": "fa32a4767be2a492dcd50760805ae950f3aa0ec480f9651f9964b8fc5ff503a0" + } + ] + }, + { + "bom-ref": "39a7e425eaa17b2c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/BIG5HKSCS.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "eae19e1e6d4c5f5edf4924df6bfbfeece86ecd0e" + }, + { + "alg": "SHA-256", + "content": "d575f30cff18651ab688eee9f8b42e60a1532b72cb57aa3e6d8fd6434413fd02" + } + ] + }, + { + "bom-ref": "4b2ae255b469b3c5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/BRF.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "d46e7b38ec5ee655b5cd388328a03b80b27bfdf8" + }, + { + "alg": "SHA-256", + "content": "68caf9dc16a8d06253de07c0e4573daec01806664614adca1318dcccc10ece1a" + } + ] + }, + { + "bom-ref": "66683b8abf176005", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/CP10007.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "aedc1ba3aba126258e17369e031789291fa5cb83" + }, + { + "alg": "SHA-256", + "content": "e635d1609316c046762a449c761d6cb0ef3d14d62e3b961e379c72857ef3af01" + } + ] + }, + { + "bom-ref": "e1d6a16c2b5a78d5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/CP1125.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "1ed969318f358928f7c8cae41f4be9aa28643c4c" + }, + { + "alg": "SHA-256", + "content": "faf077ffe9786b03ea2b0cb2c7684d61f76e3e8e5e1ea7d17bc359372833b60b" + } + ] + }, + { + "bom-ref": "d0d53f7b53b7a475", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/CP1250.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "c7d53f3620b7ec610d53236594ab3706c109f3d4" + }, + { + "alg": "SHA-256", + "content": "6a74d26dff05c10fb561ec4977e6c8d392e3402503e1a012dec981ffc5a633cf" + } + ] + }, + { + "bom-ref": "7b42c2a245512567", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/CP1251.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "281b38b5571f8a8ca9236f5d233a55f7d776998b" + }, + { + "alg": "SHA-256", + "content": "707abece1c50053296939aedf261641fc46b42704d27c78780b009e923ce21ff" + } + ] + }, + { + "bom-ref": "425f24900b3dacd6", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/CP1252.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "ec622e21e5938d31eb0ecddfeabef4e88e8dc679" + }, + { + "alg": "SHA-256", + "content": "eed98d0a56001c0195bc059fc47cc7782a90f141656e9f3d39ac6f5f77068bf3" + } + ] + }, + { + "bom-ref": "89e0f877f0208c1c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/CP1253.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "e029f7e9f0d1b4b8f30e7bd0ec9a37045843db2e" + }, + { + "alg": "SHA-256", + "content": "4b4ddd241d2acb12c325ea86809525e432bb0c5fea71764830a9e9a46eef9af3" + } + ] + }, + { + "bom-ref": "483295a6bb8fce25", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/CP1254.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "80307774fb612ef63c5b6246f9d47e9c0e5cd0a1" + }, + { + "alg": "SHA-256", + "content": "67ba123f246ba621fb6910d81fd6305a5d600ee139911c569999114f60401534" + } + ] + }, + { + "bom-ref": "98dae79d93748f03", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/CP1255.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "9b312e5166c5eda1086c21b42d862df93ac8c1bd" + }, + { + "alg": "SHA-256", + "content": "fb3dc833a4e0508e80cf8b579915df241d8026de541df89449a0513f2320fa80" + } + ] + }, + { + "bom-ref": "c2b890c4c8c86817", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/CP1256.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "723aaf6b2d0372008bf6f5f944fee3ab62c5b553" + }, + { + "alg": "SHA-256", + "content": "a5a32a599a5abe9801058b93c22c0a8532d70fff72eef236bfbeab10c7feca2d" + } + ] + }, + { + "bom-ref": "ecc3fc07b1462b3c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/CP1257.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "298d31c15703183c7df4e2290a7f3f4736d1db6a" + }, + { + "alg": "SHA-256", + "content": "fc3941e1a67515e61f0aff5afee1135c7ffe8b38b9d03cd18a748c9ac72331fd" + } + ] + }, + { + "bom-ref": "db5a79597f810231", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/CP1258.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "2532f6022db964683c4b52e5b5ac21fb6cec0d81" + }, + { + "alg": "SHA-256", + "content": "47ea0f32bbe001d41e316f7f73069cf08d7493992bee7990c872b4710072bd24" + } + ] + }, + { + "bom-ref": "e4f1ed33f5394ee4", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/CP737.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "dc75bccf149afa6f519bf7390b48e3340d111aaf" + }, + { + "alg": "SHA-256", + "content": "d31b3e86bbaebcd3e7ec24144a8ba9b3e06812448dc056cd35577f84244ea674" + } + ] + }, + { + "bom-ref": "c1cb4e3d8991097c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/CP770.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "d97bd508dfff2eb282ebfd301f921adcefc79a6b" + }, + { + "alg": "SHA-256", + "content": "1fec0bcca731da96f6df3efab37ce300f48905cc3e99df7708a322d6c12a2ec5" + } + ] + }, + { + "bom-ref": "ec0fb5676d3ff2c2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/CP771.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "bda55887179daf2fb9bee33ec912209d83b5d66b" + }, + { + "alg": "SHA-256", + "content": "0c7d1fddc39a7dade319df177e0ea32d7bc10566c31c2b71e2138af66dfca710" + } + ] + }, + { + "bom-ref": "d65f287e3c08fcfa", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/CP772.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "2f3845b0156f2e576513873b89b574d20f210d13" + }, + { + "alg": "SHA-256", + "content": "29b91ccc988381ac9c92348addb90c5fc371022bb6981c44584d6f618b6228f9" + } + ] + }, + { + "bom-ref": "ecaf93a277a71897", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/CP773.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "fb3ce4ebdefd7e8b853e190e6dc7f2afc6e8a28e" + }, + { + "alg": "SHA-256", + "content": "8fcb4a7445b306e19f6c137b70b4355e16cae748b8ead506cf256c2b15326113" + } + ] + }, + { + "bom-ref": "86591647729d828d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/CP774.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "2aaeeef9bdfe831ae03c2cfb6ce5ee255bdc87af" + }, + { + "alg": "SHA-256", + "content": "31e46d08a042180daf9a7b53a4f0c25f7c22853d1fb8bacd07442a15ec59e3f4" + } + ] + }, + { + "bom-ref": "908da8c8aab40444", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/CP775.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "5f30ab4eeb075e20ad48a82757c8c0a6ef0f95d7" + }, + { + "alg": "SHA-256", + "content": "c9118dccc47c12b4d5003d0215ff48740f41cde2d7b830cb3360514fbd54ba5c" + } + ] + }, + { + "bom-ref": "fd635faf4c13327c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/CP932.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "f8184b0071fbd52a8259e0ee99f1c7443fc24506" + }, + { + "alg": "SHA-256", + "content": "e35a6aa2e28e0c4d5454312072c257dab4264463032c1d2391b9d21671439a09" + } + ] + }, + { + "bom-ref": "837184261dfcb5a4", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/CSN_369103.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "291dc32323bf1b1a34a126b4ad1ba69047c5c345" + }, + { + "alg": "SHA-256", + "content": "bc32e27f1ee5397f8a483d9e3db993878c783ca6e2f221a0fcaace630bce86d3" + } + ] + }, + { + "bom-ref": "340cfbea3fb0640d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/CWI.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "dab1a230e752a6f9b0a50ab7a94e05f50e18bbf9" + }, + { + "alg": "SHA-256", + "content": "4e935f0984c5473054dddf55fbe0264d48cd71e786cff8bbb72cbd8cd2635af6" + } + ] + }, + { + "bom-ref": "7589eeac5e2cd079", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/DEC-MCS.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "db7da16d161d0c65569f45a0a3745b209d2c6839" + }, + { + "alg": "SHA-256", + "content": "1600719c09e0269eb49e4aa3ecd8cf97107f1b59022d89f3fdcdde24e9070bfd" + } + ] + }, + { + "bom-ref": "a4615769349f18a3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-AT-DE-A.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "e1f6bddc7874a7c057a02047c96ed318a9f894c1" + }, + { + "alg": "SHA-256", + "content": "15e1929d95f8d34a6328d202e2a277b0433d1d91fb69c6fec5951a68cf30d459" + } + ] + }, + { + "bom-ref": "2c5f746687cfb9b5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-AT-DE.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "2979591d0b574558ef9985ea55b9748b6427ab26" + }, + { + "alg": "SHA-256", + "content": "d8695cf3c951d9fdbe646be215514883c73748d1a1826c4efd118d358153f04b" + } + ] + }, + { + "bom-ref": "dd1efe2b690a0c36", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-CA-FR.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "c368ea01d4039ade9bfae74c0ef1cae3ef99b8c3" + }, + { + "alg": "SHA-256", + "content": "cf4b30d7ccfefa4ef754b735e421ac152cca41cfa61a9af20e5bc30911567f2d" + } + ] + }, + { + "bom-ref": "865f4eb7490521c4", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-DK-NO-A.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "c2a7ce7aef13f15ffb2b4566af5174e5e7b6625d" + }, + { + "alg": "SHA-256", + "content": "4ac8bcc4ace7825f855c6adca9ce9e8b0d6785345a7b1aa0bf55bfb85863cba5" + } + ] + }, + { + "bom-ref": "d6f882e768c87fc3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-DK-NO.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "ada0045df7ec704adeec3e74e9d69442ce38b515" + }, + { + "alg": "SHA-256", + "content": "908c155365a9d6fb1465b75bc4a4ac5dfc716685d10a108dc406260d513f44af" + } + ] + }, + { + "bom-ref": "75c170916cf94875", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-ES-A.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "aac6b6d00b0e0d5d92e540b9ea543b409363a7e5" + }, + { + "alg": "SHA-256", + "content": "cb7b38d5b84e4207df4e203f2cee9c9008dd12c7c34a55b9274e484e837480ac" + } + ] + }, + { + "bom-ref": "796602f15a31309b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-ES-S.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "bb4881a4d0462b090c8064f286290bd6bd6d2c98" + }, + { + "alg": "SHA-256", + "content": "f16a89927b6cd65ecb4c718b3b0e5f315d7f53bc99fd2f2398c077e6ee6350c6" + } + ] + }, + { + "bom-ref": "2ec498cfb2aa398d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-ES.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "3734b5faad337f8f828e6c3c2b3ffe5879fcfc37" + }, + { + "alg": "SHA-256", + "content": "2e2bbe3e532a39eca7aab2a3d314280dde3097feed20ecc557cac357dad10d3d" + } + ] + }, + { + "bom-ref": "3a3682f4bc3bcaf7", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-FI-SE-A.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "5b4b182c216519b08e3971235f42046ebbf1d2f3" + }, + { + "alg": "SHA-256", + "content": "89c97624dbd3a160c8649dea77a99583c5e9553d696ae125884d32a65258fd22" + } + ] + }, + { + "bom-ref": "c0f27c548762befb", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-FI-SE.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "7aa1672e05779505362e62588b57b7a778e6ca45" + }, + { + "alg": "SHA-256", + "content": "3cbc7e2f6b9950fc1dc3b772429a7dd5951dbf0338a3e8a4c86bdcad33fb2c7d" + } + ] + }, + { + "bom-ref": "3b7cda50ca58ab1b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-FR.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "3908e6e067dec52481f26441df904de03fb3aead" + }, + { + "alg": "SHA-256", + "content": "b1bea56eb39baf93897b74316902c91f1cc3c4b531c15eb45776ff6a3515ab43" + } + ] + }, + { + "bom-ref": "721028f98e7ac766", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-IS-FRISS.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "84a05410f06ccbad9897609beec5127a3114e4f3" + }, + { + "alg": "SHA-256", + "content": "c5c9242e063035405884eee4374fd648b5b48dd7cc3f1d67548dffc319a90009" + } + ] + }, + { + "bom-ref": "b2d0a223da60b935", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-IT.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "7101ced17b5b68cb3c0573c8389503fdde37a1d6" + }, + { + "alg": "SHA-256", + "content": "57d6b6201894ca13af07ddd6f0e33e473590ad95f88a118237fea4bf8b2026ad" + } + ] + }, + { + "bom-ref": "659a80e4b7c6c531", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-PT.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "383fed02a226d64d34794070a60950a06003b54e" + }, + { + "alg": "SHA-256", + "content": "9d083199fa5e50f50ce3c688e46ea7f657a57a76ea405dbcb951522b2ce52a4e" + } + ] + }, + { + "bom-ref": "27799b99f6040546", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-UK.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "bda9d94fa50c19716f83ff96eb777da867a4298b" + }, + { + "alg": "SHA-256", + "content": "b387532e6647a92bbfbddf49d138205a591e1dd3e29804e83ffe9a7c1f41f96c" + } + ] + }, + { + "bom-ref": "780b03d20eb08649", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-US.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "76c580d53d1520e83a667c3aa576a7139a995d07" + }, + { + "alg": "SHA-256", + "content": "14c447d7ff4d350fb7c08cf71d9112782093096d1108b6484b0ee8e53657889e" + } + ] + }, + { + "bom-ref": "5abe83b4cceb8419", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ECMA-CYRILLIC.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "8b4a19a50906c11907dd110562a7867ef7f62e21" + }, + { + "alg": "SHA-256", + "content": "9f6551c14bcca8a6e58ae1cf4755d6c4fe8671454b5846da17d3e413af0792d0" + } + ] + }, + { + "bom-ref": "ca80d763adff906a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/EUC-CN.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "5a79d3bfc9c442fc739d7dcdee0547406e23c637" + }, + { + "alg": "SHA-256", + "content": "090f945e0f0bbe201bf981bc8f537ff72a026d3eca53949e069bde12439b8df2" + } + ] + }, + { + "bom-ref": "ed2d5b1d3bd7c332", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/EUC-JISX0213.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "c7dfd2f636e6699eea53f86632f16e86e78748b0" + }, + { + "alg": "SHA-256", + "content": "650a4f1844acf75ada832e15ac6075ece0b08324bdcdfd2338be75ac68a24344" + } + ] + }, + { + "bom-ref": "2848a99eb63aede1", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/EUC-JP-MS.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "d6b2a7fe76355c251ceae92104e60c7b12780c9c" + }, + { + "alg": "SHA-256", + "content": "4b79e7b3c75f9ffec81b56386167cce0c18e4344862468835098baa85ffe8967" + } + ] + }, + { + "bom-ref": "c29735d085aadfac", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/EUC-JP.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "3d7748b8c565fc2bad274181821ff9d4db23e00c" + }, + { + "alg": "SHA-256", + "content": "ecbabe88a9a6d82e508a43c14d8e53e10896e6bf7096642a0a5c0c47089f9d36" + } + ] + }, + { + "bom-ref": "9bf9ffd3f4e8e4db", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/EUC-KR.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "3097feeac30e33c92488aaec7a6800c14ad95063" + }, + { + "alg": "SHA-256", + "content": "a2db6ce59c38160dbf4858fc5c5d0e6854de9fd8b39fcc0222ba7f12751b2069" + } + ] + }, + { + "bom-ref": "79d04664d199eb1b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/EUC-TW.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "dc8b84d04eafc582bb1a681767d65f09144658fc" + }, + { + "alg": "SHA-256", + "content": "7cbdfdb6ea3297d5db22384321cbf0ed16fae471a4093aca76c14fdd8f21e4d1" + } + ] + }, + { + "bom-ref": "7e7b7de0cd6ae8b7", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/GB18030.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "3e66fe7d2a8b77b9e875cd8495984aaa5db5a26e" + }, + { + "alg": "SHA-256", + "content": "c261b9ee7385c7b80e695f23067b13969d93a1215f72b914dcd31a67227a2d04" + } + ] + }, + { + "bom-ref": "a82ac9c045f73b27", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/GBBIG5.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "2ae28d0fe8d54062f7dbf12a611a5ec926a0bdcd" + }, + { + "alg": "SHA-256", + "content": "46aa94bad310c1cd0854b18a8d4dae41a5c8dedfaa6586fa81bb38fc1c1bded5" + } + ] + }, + { + "bom-ref": "003f995aa248a025", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/GBGBK.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "81507605c8c80f3c2423b9f14dfa8b47968e091d" + }, + { + "alg": "SHA-256", + "content": "654ba267aef6e69767c5a3fba41955441f2e869684b77ab3cd8aa1ac47d7f74a" + } + ] + }, + { + "bom-ref": "798d3efb61a3ec5b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/GBK.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "36b66067f711cb2c7abe881989be16169794e982" + }, + { + "alg": "SHA-256", + "content": "cd474473314b5c4123e5a21b94ec2ec398b55ff186fe210df40961a116560437" + } + ] + }, + { + "bom-ref": "e30f0f10fb083a90", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/GEORGIAN-ACADEMY.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "7f317d6d4d9daa76626e10c33797e18bcd0ca47e" + }, + { + "alg": "SHA-256", + "content": "056bea644fbab1dfd8b3f50feaf7879b35da0b3b01e73a4c3f3241e95eaf87a2" + } + ] + }, + { + "bom-ref": "e29888e105a87aea", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/GEORGIAN-PS.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "571f7fdff52a4ee66d9ed9df537e683b08facbb7" + }, + { + "alg": "SHA-256", + "content": "8068a171689155e50ca308ba9ecc9488dd4606db19dfab7edbbaea67fe52853c" + } + ] + }, + { + "bom-ref": "f5d14aea3ddc369a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/GOST_19768-74.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "3e4d7c8f8ef29df0009009a3f72e838831ccf9a7" + }, + { + "alg": "SHA-256", + "content": "f09cdce594bfa5018d97c3c07fa7a59d05587a87d81d5aa73ea4fc6969f60b31" + } + ] + }, + { + "bom-ref": "ef5d4bf86c86c26d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/GREEK-CCITT.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "6f96ecb78244404416b0d9da5f5d72179bdd7581" + }, + { + "alg": "SHA-256", + "content": "fcd98019c961e118bb5a22b04f8cfd4ed05dc24892b30986242add922a2fff25" + } + ] + }, + { + "bom-ref": "6858aba0285c1ff6", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/GREEK7-OLD.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "05a1027ebd0cbe4ba6254f9a69a0b1c419d50b34" + }, + { + "alg": "SHA-256", + "content": "de15818b16fad57bd9b910578cc109e058bdfa68a6e91fce39205f5ba6ea258f" + } + ] + }, + { + "bom-ref": "8092a5ad04c410e5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/GREEK7.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "9cf4a4b2fc31013bc96b5a5d3f251e80c991600a" + }, + { + "alg": "SHA-256", + "content": "6db6ab7fb998752d80c9179a857dade2cf69b5ffeb031acea23f851f5499025f" + } + ] + }, + { + "bom-ref": "0660aa6c8b1f7424", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/HP-GREEK8.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "68c12181c137968c33c9907fb623da995b3001ab" + }, + { + "alg": "SHA-256", + "content": "4033d21e5d4a928f67f6ff3945678a9d95b1b360a7f426ba313db7c3e030cbc5" + } + ] + }, + { + "bom-ref": "9ab10b3fa130bb96", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/HP-ROMAN8.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "9fa46e7209ec7a0e6f47c0700023079e8ad757e2" + }, + { + "alg": "SHA-256", + "content": "5b69bc31febc906c946590ce146375cca2fcba7381ce03f0a7f6b94334f7a644" + } + ] + }, + { + "bom-ref": "216d9a06b36df47d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/HP-ROMAN9.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "cf2bfcf3aff6e6e8ca29c44588d7336fbf31a187" + }, + { + "alg": "SHA-256", + "content": "294bb4244e10d1230b04b34f4e16ff214d2b962234a8b5f6e05138b7936b97b2" + } + ] + }, + { + "bom-ref": "47738e72ae7ae009", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/HP-THAI8.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "e6dd52956551f2dae0bd41d2c46833d552e55688" + }, + { + "alg": "SHA-256", + "content": "7177faf207a4b668eea3bd35a37bfac8d496348db8d5ad8c9e8adf653ad196a5" + } + ] + }, + { + "bom-ref": "3d8915bbb2d8743f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/HP-TURKISH8.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "ae37f0a488ee0e94d801fbbe8bb0d4b6ca6071ac" + }, + { + "alg": "SHA-256", + "content": "3c6a43ab21096711c1b70df829588b199b16ee9d5276947efaa9cef058387c54" + } + ] + }, + { + "bom-ref": "421b86510703eed4", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM037.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "4069eb47eb1bee67a2def0da95ef5313169567d4" + }, + { + "alg": "SHA-256", + "content": "e63c7551c7043276d40c7cf9364b3d0fc87d52c8ad5e6fdc996d5dbcf0feec50" + } + ] + }, + { + "bom-ref": "54d12d0f633d356f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM038.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "66d0b849bbac7501a1eeeb2e9f6cad86ee0f4de8" + }, + { + "alg": "SHA-256", + "content": "e04fc40310e2d1580beb4f1974a1e19a757b50c1b3f57c37402e75d2ab888a6c" + } + ] + }, + { + "bom-ref": "41921345ce13cac4", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1004.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "eb8e02014a55c3575be3ad43e9a09710d6266e7b" + }, + { + "alg": "SHA-256", + "content": "a045972d585e3934d2df73910231067f10bd4dc3c85d20e569df76544adde393" + } + ] + }, + { + "bom-ref": "23c1054b09559c18", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1008.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "b31f7f66cf90b01f66711001737bfb8fb45f330b" + }, + { + "alg": "SHA-256", + "content": "d3e74071bfe6d896611b03a9e2cb6189835c6f529338eee0bb361662db77a09e" + } + ] + }, + { + "bom-ref": "85d5140e8a7f0f5d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1008_420.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "f4cc7cca421e9fe4f123a0c932d22b7871c045cc" + }, + { + "alg": "SHA-256", + "content": "f01a30c5394090595284f180d07d16f4794e1fb569b86ae5cc1c168bdf290c81" + } + ] + }, + { + "bom-ref": "11f432465eab1417", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1025.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "394501638138918f5abf3bf5b1d121515bf11566" + }, + { + "alg": "SHA-256", + "content": "4a5ba2c0547db7c9f700866aa48d14a47c6e1b503da0958fbcedc18a5a73c7de" + } + ] + }, + { + "bom-ref": "72844c040377059c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1026.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "a3588b2c69f64fbd17afa44aaa086683a70aed2c" + }, + { + "alg": "SHA-256", + "content": "08f68a40b69637ab121e43cc6a38cc62df440c597c2738ae1ce196a95dad7455" + } + ] + }, + { + "bom-ref": "62d251fd3059746c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1046.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "baf19f3d69519b2ca992d483789be04ebd86cd84" + }, + { + "alg": "SHA-256", + "content": "a8b9bab98a16878676bae578a15c73cd504a05568170939b83d0101e391e7e37" + } + ] + }, + { + "bom-ref": "c772b3ce7af6dc15", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1047.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "9a7734eacf4e76cb44593ff376b3e5f497ae4d2c" + }, + { + "alg": "SHA-256", + "content": "886912ee0689c57c19ddc22ae08e219bfd84c634d81d9c5c9ae39ac5a81e0cdf" + } + ] + }, + { + "bom-ref": "30519c61bd4b2783", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1097.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "4130755ab9c2bd5bf2c099e09cc4d4b5a46e6d9d" + }, + { + "alg": "SHA-256", + "content": "e56f05fca19876f6a4e86922dd3e8416575da64e1956f7334184823f8b46730e" + } + ] + }, + { + "bom-ref": "a3f1884edf50e5ab", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1112.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "d0df9b90e6524c7090bce43b6c7e7507dc2c8f0c" + }, + { + "alg": "SHA-256", + "content": "9945fa0fb7351caf30fb0b29305a8dac274f4e33da443ee1c5543964b6a36d7c" + } + ] + }, + { + "bom-ref": "8d486ec70bb92318", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1122.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "32f496b03b52fd782966da83adc492ea68b8ada6" + }, + { + "alg": "SHA-256", + "content": "dcb4659bc9807ac07171a5215e040b4565e00cb70955811d4e62fc687cda02c0" + } + ] + }, + { + "bom-ref": "f5d9533c4d7602a1", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1123.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "e5ce17a6906a4a1dad6abaf346f455fae18a8bd6" + }, + { + "alg": "SHA-256", + "content": "833d694d8b389404e1838ff6bf7d76a65410a3a6644945760fa3c01d5c295b76" + } + ] + }, + { + "bom-ref": "786aa36ffeccaa56", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1124.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "5cdc1b11774a78181cbc957f46363bf28ed95346" + }, + { + "alg": "SHA-256", + "content": "372e37091107d88e10d099c8d6ae1b9b3eddad4d4abe125f8240f50d6b8ac7b6" + } + ] + }, + { + "bom-ref": "652cfa55b8da3b62", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1129.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "67b310f94910108cf7559963445d86c9820d7cb5" + }, + { + "alg": "SHA-256", + "content": "1d3ef5fdef09c512cf7aeebad0b821064840006e237184c4393c3a9e02db486c" + } + ] + }, + { + "bom-ref": "197ef192a35f64b2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1130.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "bd569337cf3e438866c0c8bd7139028bc4c19da7" + }, + { + "alg": "SHA-256", + "content": "ba146225241c2749a7a90d271d2fc000784fbd3b02cc92a731d8282a208ab60a" + } + ] + }, + { + "bom-ref": "1bd6c2c06b5834ea", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1132.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "19af06b5b0b082f092842aedb07fcde4b81aca5b" + }, + { + "alg": "SHA-256", + "content": "524183c89b47e0f8b4db59cfb865505bca48f2b40c51aca80659e70678e4ad19" + } + ] + }, + { + "bom-ref": "17f02625c2f2a16e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1133.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "823dbdcff5a4d9d00793592d819cf80d47912c07" + }, + { + "alg": "SHA-256", + "content": "4ce179d8022132306310c1e4b9d052bc06dbc64847188fa152647ce345f59e64" + } + ] + }, + { + "bom-ref": "637d8a82aa0680ad", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1137.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "94b6ad6febf9cad80ad7f1b2c4df178adf3eddf5" + }, + { + "alg": "SHA-256", + "content": "6156a30a04224990d6d57b7571dd18d847b0a99af61b04593533e457d7c633e7" + } + ] + }, + { + "bom-ref": "9def3ccec684395a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1140.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "9423a3c3f876f138fdc13c91e0634f693dac73a1" + }, + { + "alg": "SHA-256", + "content": "bde6364e90246c430cef00a6e927c45d679f1c4b5469f66944f4b7a5883f4cc2" + } + ] + }, + { + "bom-ref": "fb5299aef401cc8d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1141.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "b548bc3371d6ea586d580ec50ff092e7a6955ec1" + }, + { + "alg": "SHA-256", + "content": "90ff752f8d1f14dc973d808e9e5a22d75610f4ab61e6b9c027b998882e9d04d1" + } + ] + }, + { + "bom-ref": "55d2b708b1d9ee1e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1142.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "818130e3acf1a70fffee546f16787eea147091fb" + }, + { + "alg": "SHA-256", + "content": "55fabd05962dbe55e49e50a3177e751a2a562eb7350e3bf942dec6abc42f858d" + } + ] + }, + { + "bom-ref": "85ab14172c021615", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1143.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "4403cd91c5c842afc0aed0083c1a4504cca458e8" + }, + { + "alg": "SHA-256", + "content": "a35ffb1105d7244c7e448f243cf4a51869042bf2d4480dab02b897f103ae57a7" + } + ] + }, + { + "bom-ref": "f3c0708315746876", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1144.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "447463435568f83665cc5b534f851a246bd8d496" + }, + { + "alg": "SHA-256", + "content": "0faa29bcf2c689b3a8997445b88e0eb4f425ad2c080660aeab8f9f8cf56e0695" + } + ] + }, + { + "bom-ref": "5036bcdf78359e94", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1145.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "66fb4ba9d8b19be744231cb3bda1ca42b68a4ff2" + }, + { + "alg": "SHA-256", + "content": "264bfa150fb0e87ebefbb412e3609a3526e6de328c29e4860a6b6763f63ecb26" + } + ] + }, + { + "bom-ref": "0471f3891f24cf43", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1146.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "677f0a09eaf1eba4f43e0af4b353d4d01ada94c5" + }, + { + "alg": "SHA-256", + "content": "068352dd4bb0077dc8a07e99b8adf62d05b51a07a33542981336e9c2aff47ecd" + } + ] + }, + { + "bom-ref": "585bb3acc6e4a379", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1147.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "5ba0669bbe90bc51536b3e701b05fbed65d18353" + }, + { + "alg": "SHA-256", + "content": "0eece55c76b4a2fca58012111b356ec7a5da12493179dec2ab4ef48e2b954438" + } + ] + }, + { + "bom-ref": "1cee3b3538c375a8", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1148.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "0b6202a6c87c49dff7f9d020114b2cf8112a71ce" + }, + { + "alg": "SHA-256", + "content": "f55b53b2b5918de95c8ac5bd38652b0d54eb3aa224b545c97ba7f06683223157" + } + ] + }, + { + "bom-ref": "3d4c9efc1ff1b338", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1149.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "e1c7efe812b9a4fd55e09dd524df820e7d14b061" + }, + { + "alg": "SHA-256", + "content": "4f82a72c69b174248ef5bd7aa76da3511a1a8f9d8b3c4b60d0bc3c970d01c9ce" + } + ] + }, + { + "bom-ref": "9ef0ec2289e23c8e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1153.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "a92d47f57c52757501abb600d085464596ea2a4f" + }, + { + "alg": "SHA-256", + "content": "b3fdba5fc64d1251a7807bec8ec9f66569935dd29066b2acdafd8977fc7faa2f" + } + ] + }, + { + "bom-ref": "7eefe815a1362920", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1154.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "554a56c97bb3f4611f821fea9d08b1122e3b00d4" + }, + { + "alg": "SHA-256", + "content": "0b1a52054f274056e49b4c4d1ea7dc09f74b1ebe2eaae7deccac087d747e9870" + } + ] + }, + { + "bom-ref": "25a59b95dc069687", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1155.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "70ba846090765467226ba290b66333586af2c3f6" + }, + { + "alg": "SHA-256", + "content": "f73817d79ebeab12f0e95f7c226e780459bb0aa46b56ad6a93a18a7d4bcf6f1f" + } + ] + }, + { + "bom-ref": "6ea267f22eac9901", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1156.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "3f0a916b75bcd165e208b9c25615be2c46bc2438" + }, + { + "alg": "SHA-256", + "content": "5678f2adc68f29698c8a704d2fdbc0ab9436b414cb52cc72bdd4dfd6c102c594" + } + ] + }, + { + "bom-ref": "c8b5a50f8e7b2349", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1157.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "3616e9ad9819f050d0817ec3695d3db0a5e77a16" + }, + { + "alg": "SHA-256", + "content": "9f8d416805bba233521ef4075454c41b98e5525fdf4f16eda07bb6c5b2143f18" + } + ] + }, + { + "bom-ref": "beb4cc31f500b08a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1158.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "d5ee9fa75d380a906ae2d1f547c9bc1ee60d3cf4" + }, + { + "alg": "SHA-256", + "content": "e5bf69307c43a1dd3e6b0b5fd8f9e04546f28d48715340c418580301169d260c" + } + ] + }, + { + "bom-ref": "b43c8cac6c570b96", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1160.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "81e53ac59d1b6018a4a284f6ba08306e9412b733" + }, + { + "alg": "SHA-256", + "content": "22fbd444cb08c909c247e24c3704e8c86f4a1b108ebaf4ae4e1d472a72c00021" + } + ] + }, + { + "bom-ref": "db1a6d0d7ada8b78", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1161.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "5d2c9f4853f9101e894f235eac2dcbb639ae6866" + }, + { + "alg": "SHA-256", + "content": "3b286b1b6e5f807fe9804815e27fe5bb79b2c2029d6125bc1242f3fb813642a1" + } + ] + }, + { + "bom-ref": "8649f29ec5d75b25", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1162.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "b0a98c958906c43390ba2f0f9845eec2b6aedeb7" + }, + { + "alg": "SHA-256", + "content": "8f99048ab34e0393550c3a89317213b3545e18190e5c652c559c4486f75d60ac" + } + ] + }, + { + "bom-ref": "7c3eb7a63744b4d3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1163.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "6de2756df5afbe77fbbab9c5917810c1eb75b24d" + }, + { + "alg": "SHA-256", + "content": "8a60b6ad5bc4b952b21453392487654423545446b4646aee529464f470180482" + } + ] + }, + { + "bom-ref": "733734b369eacee9", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1164.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "904aa9e1b9130b22b064abe4a3c53f186240b133" + }, + { + "alg": "SHA-256", + "content": "20621545648ef4928f66e9f39294f0809e6cd4612c5e727e6e1568a3419f536b" + } + ] + }, + { + "bom-ref": "1fa6010023983b5c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1166.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "d0074dd3f4252697cff8bceca4deab2ffda79a3c" + }, + { + "alg": "SHA-256", + "content": "69798f9a9f33e7c99e1c5828476ffa86ddad624f33b692b35e1a52fae7f5519a" + } + ] + }, + { + "bom-ref": "40fdeedbf9b582f1", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1167.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "4eba0884a24ce331830782355b009305c7d61e24" + }, + { + "alg": "SHA-256", + "content": "2a3c6b859d2bfdc6cd50002cbc137cbfe9ffbb55af1866f565fcbc7df91629d8" + } + ] + }, + { + "bom-ref": "4c26b1f88233777c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM12712.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "3efadd37b47b9ffb2b96363b63a28bdd2b542f89" + }, + { + "alg": "SHA-256", + "content": "aa92fb14d1c14c1c82e334902e5baf0ff53c68558154060c1bde1a36a9408196" + } + ] + }, + { + "bom-ref": "682edfc9b1648172", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1364.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "f1ee9e4307c9a051519ffce40d2fedc09c0396b4" + }, + { + "alg": "SHA-256", + "content": "94bfe6d3bfb022ec7bc3c1b31091a901333693d1a41c2d775b6d30cbfc39ba38" + } + ] + }, + { + "bom-ref": "1a0103e8bd9e2340", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1371.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "9b716210c77eaa283f74c4e22a6cd7b5bb127553" + }, + { + "alg": "SHA-256", + "content": "2165315043dae6f5a7c9097c15d4874652312579ceed3e62d2f387412d41d3fe" + } + ] + }, + { + "bom-ref": "2d16eb6789765034", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1388.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "52bbb9d8d24a9d20271258c85bf6a38ec8081b4a" + }, + { + "alg": "SHA-256", + "content": "3f3bdbccc01c7834a17f3a822d1c18551e98ef2fa6021198e50b87c832158861" + } + ] + }, + { + "bom-ref": "b45f3a33f20a3c41", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1390.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "57cc87662045442128b4e970b1c50d1dd99f13a7" + }, + { + "alg": "SHA-256", + "content": "099177066ce4e058e0e7fa22b9ce0566a90159ea479576e1db365986094852f0" + } + ] + }, + { + "bom-ref": "04b5cad71148da25", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1399.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "0a577d4f836c58aabcda058eb0d72fe38636f055" + }, + { + "alg": "SHA-256", + "content": "01723d47627035b65c4432d6b4810dcec1f274194812173a16248eb99827ca07" + } + ] + }, + { + "bom-ref": "46a0e17e59b8a007", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM16804.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "4c51a72dd65e609a8ddfd610c696e274a62ec5d2" + }, + { + "alg": "SHA-256", + "content": "aa393948bf86a369b89eeddd72a7592e35e34ae28519e1cf0c70236991004a40" + } + ] + }, + { + "bom-ref": "93d42862540dc360", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM256.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "5dd225cdb7e1b1c21ec388f4b915a2e6e30e080b" + }, + { + "alg": "SHA-256", + "content": "a4ea9c6d63257764ca337bf48f430b86d865653b5b8b587e2fa0fb757833ee40" + } + ] + }, + { + "bom-ref": "04c304914c98aecb", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM273.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "33d692350278ca44b4f69be05683d2222f29a0ba" + }, + { + "alg": "SHA-256", + "content": "e6db90d2325e04e3a5c4ee3e305754311c44998698ec9645d91f03274187310d" + } + ] + }, + { + "bom-ref": "df8f756f8de9511f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM274.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "c4be721b59dc5dee8643b19bed12e3f80758eaf5" + }, + { + "alg": "SHA-256", + "content": "6423caf1255d8722b9c9cb8a0abe705fbc928f8133a60c03dd59f4031bbcbc28" + } + ] + }, + { + "bom-ref": "3e3a82c959dc5456", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM275.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "2a58ca07770db3e5c0beb05e86ebf02d9cf5c92d" + }, + { + "alg": "SHA-256", + "content": "75b02600cfcf6da18f5cd1855f1e466d33ad8390b473cf9a0f0abde34ae2427f" + } + ] + }, + { + "bom-ref": "eab7a105da751d23", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM277.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "900f67c00d4611b3b7875e320f50ea38bceba2d7" + }, + { + "alg": "SHA-256", + "content": "8b7e756303e33a2fdd13af2ba5b1f7818f15949ca1c0e330dfd95d48b03378d1" + } + ] + }, + { + "bom-ref": "1daf53533899e074", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM278.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "49ccb76acd7c1c0e7aa85f7955993fae0494e6cc" + }, + { + "alg": "SHA-256", + "content": "bf7cee8a3f2f2847cea8aa5ffe461e6441861a966045f630cc73bba47dcf357f" + } + ] + }, + { + "bom-ref": "ef9e0de0734e1f14", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM280.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "9e096c5e458e7bb701aabfb58340d162698d740d" + }, + { + "alg": "SHA-256", + "content": "de09dcd7d50654c02acdea9476d7ff334f359112b50383288fe49db594d798ba" + } + ] + }, + { + "bom-ref": "c8b6a79f1496139c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM281.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "cab771312a0ca490f55b894ceaf86722d976abcf" + }, + { + "alg": "SHA-256", + "content": "16d042f1807408cda19ea1d8e5a3bf06007554536a53d4605c435f36713a08b3" + } + ] + }, + { + "bom-ref": "c290b9d8994d2211", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM284.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "5a9771a712fa0feaf25c2e99ea216fd7e5923511" + }, + { + "alg": "SHA-256", + "content": "39046bdff6f0fec840d45cb23ac4d2d5f32bb746c9a96a4ba9e42bf2178487aa" + } + ] + }, + { + "bom-ref": "0e1e64909a693fa7", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM285.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "5126abf5f08c65b844e569556889215cf13af414" + }, + { + "alg": "SHA-256", + "content": "c9f54a9bf9bc3187924ea44a862757d2faa6a5599d028efca85483ccdfbd8fd1" + } + ] + }, + { + "bom-ref": "8d9095fc85ceb232", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM290.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "06f6bb276c5d7b7de52e105fc0576b910521e1bc" + }, + { + "alg": "SHA-256", + "content": "95957db809fcea97edb0a30d9a64129f6c3cb2356770cf5e774c52fe41c7921c" + } + ] + }, + { + "bom-ref": "9cd2826a17b7c181", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM297.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "3281679834e76cef7377fed4779ef76957d77055" + }, + { + "alg": "SHA-256", + "content": "e714fe4e9d02d112e8c0480a55c1605b338543a0e8df19067769b08ee95a1923" + } + ] + }, + { + "bom-ref": "161264103c8a3a59", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM420.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "26e9045e07c2b56b1bf0b32eee5c351ec88c276e" + }, + { + "alg": "SHA-256", + "content": "0afb239f4c32b4c37783b03d37b9f66d012a45dbea85052d34ce8ba2e7cf60dd" + } + ] + }, + { + "bom-ref": "3d50f269242bc682", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM423.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "d2efff0b18be6a81cc52595d90609f2a072a34c0" + }, + { + "alg": "SHA-256", + "content": "977331b034712009115b5a92bef6aa69e74e99a5b0f6435e9532856b8ed7c352" + } + ] + }, + { + "bom-ref": "2a4faa6c3a2c6d64", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM424.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "30264bea594a0183bd6445bbd16c134f5b0871b0" + }, + { + "alg": "SHA-256", + "content": "e3d0a5b82610ca48404667eb49ed3f2c73f01b617b06cc7387b9146de543ad23" + } + ] + }, + { + "bom-ref": "17af832f46de3d1c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM437.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "ffa0bac89e2850a1cfe53f707f330e33c63405ed" + }, + { + "alg": "SHA-256", + "content": "69f1cbfd9590dd1c5e1ba31616cf80350574b887746fcd0c2569ddf47df9a8b0" + } + ] + }, + { + "bom-ref": "c47b8b6cdda6fa76", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM4517.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "aa6c38b3d70ef273c060d34415b7d45edea33fbe" + }, + { + "alg": "SHA-256", + "content": "d49b2d1c5104369f8ca85c725ac254841a0f6ffc4fc6c638b5df77d0bd368318" + } + ] + }, + { + "bom-ref": "97ba584f5503bcce", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM4899.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "52ad65109cce8592f7d14105230dd18390062227" + }, + { + "alg": "SHA-256", + "content": "e0408a48acee548641b1cafaf078899fffc6829a5cc77d931d1647262db74af5" + } + ] + }, + { + "bom-ref": "e2f86bab3d94c2af", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM4909.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "022cce45d0a2c03f467f58c140986e60865340a1" + }, + { + "alg": "SHA-256", + "content": "5c4bc1c97f714f9a81537bd5029924c086a09096d3eee68c289266816c336923" + } + ] + }, + { + "bom-ref": "4c7c6eb845417b38", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM4971.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "5daeaa4df03ecc687ba125d806adbe8c13b66380" + }, + { + "alg": "SHA-256", + "content": "a59b93909ec26b07746583de54ddf0b197047eb1955dc32ef4c8b0a5f447db9e" + } + ] + }, + { + "bom-ref": "8dfcf7f9568307f9", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM500.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "ff43a5d8a4f75c1c782abf4f936d5fe52a056f73" + }, + { + "alg": "SHA-256", + "content": "0bc970ae0e0fbcfabef8c2fb885d7f8c913bbf1614a144f550dc75656090ad45" + } + ] + }, + { + "bom-ref": "0749752e37542fb1", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM5347.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "e2ccdafd3f4c9d3a9665e0e9923528d7bf09ddd0" + }, + { + "alg": "SHA-256", + "content": "7f84282ed95da752b395e62414831a7e7f8c54abcf71e54e3dd5fb938d5f1732" + } + ] + }, + { + "bom-ref": "e1a5298d6056d20e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM803.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "190c8c7d485652bf3244a45db7fe41332e82ffbb" + }, + { + "alg": "SHA-256", + "content": "ddc7a037aaa6eab5d2c126f10d2cb2d7f2114a968d0ab9c7b38efc683cfbeda3" + } + ] + }, + { + "bom-ref": "a11fe1d29346d7ec", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM850.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "aee0ed82cdeb62b8645ebe5ff98cb3686354786b" + }, + { + "alg": "SHA-256", + "content": "ffb6a2cbeed3318cafe6d3c70af225b8080f2833d38f1d37ec14d12a77b2c4a6" + } + ] + }, + { + "bom-ref": "5dcedc08dba7227b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM851.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "c01627cc5601cc28cc1324df2825dc6415e79323" + }, + { + "alg": "SHA-256", + "content": "0e25ad7e753a913eca7478f951599b62bb6ce853bcf2d139ebb0c8d88dd1295d" + } + ] + }, + { + "bom-ref": "80ad7d944642773c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM852.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "9f9604d08eb757a19d784428bce8dac867c58c3f" + }, + { + "alg": "SHA-256", + "content": "a470e55c8307f0ca842801e54ec9c5df5a1dd0d1a2480ab1d0cd350b7dfc4f63" + } + ] + }, + { + "bom-ref": "38b776943831aef3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM855.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "ae5085bad18aded170eb585a9818790dc5b622a9" + }, + { + "alg": "SHA-256", + "content": "5c40062630597b51ff7794c045bdae2fe3139737909823560f475e497210ca41" + } + ] + }, + { + "bom-ref": "11c56a1680c243ab", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM856.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "7e722b8539e3c257d8072c16db0fe4a23293043d" + }, + { + "alg": "SHA-256", + "content": "fafa720a52b26b54d8d201e2892a3bea3276899ee48c91bcba268530452b8698" + } + ] + }, + { + "bom-ref": "e0af75035923d7d5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM857.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "cb3bb9025de1a6b99897bf7abd1dc7d268a06fc9" + }, + { + "alg": "SHA-256", + "content": "440c0ff6a3e15e7f321124ae106ab076e77f1fc7e0340cf73cf44ac9e6ab69f1" + } + ] + }, + { + "bom-ref": "2bac5abda42ef11e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM858.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "f7b39e07864c88af86046ae259bae80b07e29622" + }, + { + "alg": "SHA-256", + "content": "53018dceef2fcdcf0f2c6252816f400f54ad3bfa2754be1392cee89e3997deac" + } + ] + }, + { + "bom-ref": "0d5d89e4cbf2efae", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM860.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "cc413050a31fb1f2427d4777ea364d2ada02be80" + }, + { + "alg": "SHA-256", + "content": "d7f9a87a4060c4f041a77986616d7c8829d1957e585fcfebfe53e09ca88e8596" + } + ] + }, + { + "bom-ref": "80417a7a905cbd51", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM861.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "e3ef4d8010ee368af443ed34cf08fc283b1e9196" + }, + { + "alg": "SHA-256", + "content": "3487f19af408ac59963b89284fed25603b6b7a4aec4253d218eddfbfb99ece31" + } + ] + }, + { + "bom-ref": "4d1a9127a658c7f0", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM862.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "a4baf34d8298c770fb10a63e9d9097183074cf68" + }, + { + "alg": "SHA-256", + "content": "1660ccfe6cf5318391a8cca8db796b23bb7427175b32250ddf0833f73c4b93e2" + } + ] + }, + { + "bom-ref": "bbc5730932428ad5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM863.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "9023c16bdcbf504c19efa1e04445fbc653edb30a" + }, + { + "alg": "SHA-256", + "content": "f6c136bb5a00504fde7f3385ba6de8050a70bbe41f5c961af76c594bf01fe6a2" + } + ] + }, + { + "bom-ref": "ae66faf6446c0367", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM864.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "a9e41f0c9c85f52106e86e621c29f1923b70b941" + }, + { + "alg": "SHA-256", + "content": "3153d4af884dae2e7c30d537fbfe7980c455bf0cc14c9321f06d5eca1b3c3666" + } + ] + }, + { + "bom-ref": "c4ea436d3d65d0bc", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM865.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "49ec5688c4ea9ce5f2ee06fbc63dd043fd5a5087" + }, + { + "alg": "SHA-256", + "content": "74d4f4e3e17fb43b51af95c58c2071d504eb01332b00262ef56f48e285c1be1e" + } + ] + }, + { + "bom-ref": "2ce48e9f43c3d986", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM866.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "91f61423d079ff91fcb1ad78918ec69bfa06f71c" + }, + { + "alg": "SHA-256", + "content": "ab6d94c857ef2938d5b3709494e988a8aded464f4edc2b1600ad0be9e3f396ca" + } + ] + }, + { + "bom-ref": "67ce8f06d14ec033", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM866NAV.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "fe75c0583b4d32e6efb5b5c9e3dbed98433e6ce8" + }, + { + "alg": "SHA-256", + "content": "65eb38a63a5b3ac0d309939f6f9a9fcb20c1786b38cc431215ef7dee003ce780" + } + ] + }, + { + "bom-ref": "ff107a5b820f889b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM868.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "9099704b94f99f04feaa2a0a37feedd4631e921c" + }, + { + "alg": "SHA-256", + "content": "a24bc374bca9a8a891ea87c8c58fca681525d2575e749e5ee7d6febf42280086" + } + ] + }, + { + "bom-ref": "793fe8833b866e7d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM869.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "61cff0562cffdaa87f85425c6d24ae12f7bc77bf" + }, + { + "alg": "SHA-256", + "content": "a28fa006242455bd62003377b0e88915cc41e085155230685016719063c98752" + } + ] + }, + { + "bom-ref": "95ba45a4f5415304", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM870.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "21b759ae1feee6e5fdde8d86065483cbe5408eb4" + }, + { + "alg": "SHA-256", + "content": "7b80dbbbb106daa92a943ddce12c34a6ee9a601400b5d2f71accc4809815c195" + } + ] + }, + { + "bom-ref": "0bea1af784c9ad57", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM871.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "4996fd68a8186f39e09e4d6b9fcf2852d2ceac8f" + }, + { + "alg": "SHA-256", + "content": "b6862d39b5ca0b10131f041b23794fe1c8eb88e3d55e231ccff52dfe9fb14041" + } + ] + }, + { + "bom-ref": "425fe06c0b54e7bc", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM874.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "f5aaa5aa13568b920a24c471e35f4d43e2e016d4" + }, + { + "alg": "SHA-256", + "content": "62016a40e4ff397c443781cff1dd0059764b56ec6c2e4821c1da894dd923de75" + } + ] + }, + { + "bom-ref": "aaf319081b208c3f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM875.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "f303b19e44701779fc2c3338c046585c0c40aec0" + }, + { + "alg": "SHA-256", + "content": "c0cfe1fb3771c7cba309814f596cdbdebd281499164030ef93f9d2f394d7cc7d" + } + ] + }, + { + "bom-ref": "1aa608c071d7e012", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM880.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "afe5e35b517134e68e7470d8e9dd800938572331" + }, + { + "alg": "SHA-256", + "content": "72b0cfe45520139a2ed004043f4c7c44363c031ba52502b326529ef67dbd8518" + } + ] + }, + { + "bom-ref": "1b18cd4385708771", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM891.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "847fbf776b341a3d6f09909ad3adcbb65e4f9b37" + }, + { + "alg": "SHA-256", + "content": "c6f5b2f6a8ad447104693e8d1b146317921fb89e39d2fc03dc3067ea5f9bb87f" + } + ] + }, + { + "bom-ref": "feb0113d90099d9b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM901.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "b49b28cd1941a40de21465f31d9f74add4f07302" + }, + { + "alg": "SHA-256", + "content": "5af93e589e29cfc8c9471058107dd070addf572ea7ef410fc4aac1028fe2953b" + } + ] + }, + { + "bom-ref": "77f848f47378b48e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM902.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "faa11dbc564c9119bfa5f896b37c19fde4266533" + }, + { + "alg": "SHA-256", + "content": "341b6c5d667cf5a1d982ac22d0c396828bdfe43fd875d8284753ea8f5a5cb1bb" + } + ] + }, + { + "bom-ref": "75e0fb747c395221", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM903.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "ee39dae823908454aee02c997e1947f9a72ab047" + }, + { + "alg": "SHA-256", + "content": "0f61e26ca6139d7d0d48898143c77fd112c716089e7169c1e06daf9195f39cf3" + } + ] + }, + { + "bom-ref": "73224cc834406254", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM9030.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "ddbf079fcaebbe59e0f295ee6d5e90853e393353" + }, + { + "alg": "SHA-256", + "content": "fdc658654d1203215cc946897c8702b3cb1a4c0d57b6cb29a5d66f85d0e453d2" + } + ] + }, + { + "bom-ref": "89025b42f0c08e8d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM904.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "4136767a552fd60b109068b58bf01f459bc57b5c" + }, + { + "alg": "SHA-256", + "content": "6858bafc0a0e44eb486a17615804dc1bf22616073a99e718214c0b3b44b32e9a" + } + ] + }, + { + "bom-ref": "f18de43ac9378000", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM905.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "dd1bf7968aeffc0ebec92185960cb40d2e37de77" + }, + { + "alg": "SHA-256", + "content": "e405abd6991c3e145f607209a7bac833a9d529bf829507ce4811b372f1066542" + } + ] + }, + { + "bom-ref": "e36cce62767c6eb4", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM9066.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "4a1363aa388131a09e31c1e4b147c6fb6ca8220f" + }, + { + "alg": "SHA-256", + "content": "2ee248ad9ceca23b8bc9c3840a8cb5ee62934fa0ebe77f2d94e847c7f0a23373" + } + ] + }, + { + "bom-ref": "b0ce8e9fd5146a80", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM918.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "1ddf2cb91b98635e1123764ef90f5bd5764a910f" + }, + { + "alg": "SHA-256", + "content": "c4dab1d5dcb3abb4c65dfc6f705337a47fad6baf7a1975293465746851283732" + } + ] + }, + { + "bom-ref": "632ac74172d14805", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM921.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "c5d6670319ffc48869d78c0e850d744056ef4bd8" + }, + { + "alg": "SHA-256", + "content": "0a49179e4a16614db301c053725df745dc33f6b76a269a9f44fe2882f49f9336" + } + ] + }, + { + "bom-ref": "e82afda856f847d7", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM922.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "ec601b5f468e00528e3eaa14227ee2c3a7b051d1" + }, + { + "alg": "SHA-256", + "content": "6367c12509b2bc5b210e24c533f195fffb0e8b7966a725457a5fb7f3985fbe43" + } + ] + }, + { + "bom-ref": "a2dac02a941b8894", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM930.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "efe05c0ed6b7a966cbc68d6196f3f5ed4813c887" + }, + { + "alg": "SHA-256", + "content": "0ef72e18de175a1e465392b75645bc0e16672fdc1c995658d88bbf7ae1c8b8d4" + } + ] + }, + { + "bom-ref": "7e67bda8430c69d3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM932.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "60140943db57a37e6fd5db8d122cfa9021037bbd" + }, + { + "alg": "SHA-256", + "content": "c936c9d8c1becf9ba156215dc9e898302c1092abbbf8e771130fe740936a9889" + } + ] + }, + { + "bom-ref": "58ed72a012f650fa", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM933.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "ff79619b4f3ead8f0c0db9e1813e1c61dbcd87eb" + }, + { + "alg": "SHA-256", + "content": "d65b1ea4cf5e1f075568fa9dc3f1bcba9756b77b512c26301d1fd98b2fa05c74" + } + ] + }, + { + "bom-ref": "1b359bbae6b90ad8", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM935.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "c86d59193ffa45e56fe5684fd3f86c3500ea59cf" + }, + { + "alg": "SHA-256", + "content": "8dc36800ace6cbfc7c283a7a3a55237b965eaef7e87c2f65cf30f03938b5a042" + } + ] + }, + { + "bom-ref": "22b01add97242231", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM937.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "b545fc79067f8ac7b38c60f7f48e601761fdf35c" + }, + { + "alg": "SHA-256", + "content": "868649969df0325a5fec0aa7cd8d07ed9d594a3a3262f89abab00fe3f90706df" + } + ] + }, + { + "bom-ref": "34419478666049d2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM939.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "2d6d0fd5528d0ba61f9c14518b6048526b0e7fe0" + }, + { + "alg": "SHA-256", + "content": "1dbb575e34d352abe8abbed948aad9fc39e407a80464607312c4842291eb944d" + } + ] + }, + { + "bom-ref": "a9dab603230ebb6c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM943.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "e3cabeac57fdb55d3465af58f6027a4c2c21e649" + }, + { + "alg": "SHA-256", + "content": "1f205dcbfc592e87e5a6b300a040f6c256d9de9d938a90d9f3d982bb3b693e21" + } + ] + }, + { + "bom-ref": "adf47f0e484bead2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM9448.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "07a63e0a3d95226fee5d82ae801af80e571eb9b3" + }, + { + "alg": "SHA-256", + "content": "67699597d81ed62d947f12c0dc1f99a45bcd7d1fa0833c6b7594670afdb38b97" + } + ] + }, + { + "bom-ref": "3bbd6faf45d55b35", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IEC_P27-1.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "496e7a44e14ef5bce4447233e3df14f994fd6d81" + }, + { + "alg": "SHA-256", + "content": "b7c568b36cc94a322dff1dcd0393eba516eb71a29ebc7b19ff36bb15e204fed8" + } + ] + }, + { + "bom-ref": "be1d2411f676ffcd", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/INIS-8.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "7aaf42b98dbf86fe0c5f1a866e2190a0da09a5ec" + }, + { + "alg": "SHA-256", + "content": "6fd91c51b0f0aa58a78c940738f6e879c1ffe78b7596e5f876684bc5d33fac79" + } + ] + }, + { + "bom-ref": "f7db3d72bf720fa1", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/INIS-CYRILLIC.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "ff3d6066a12687fd53e34720f9e6d834e732b98c" + }, + { + "alg": "SHA-256", + "content": "ed62e9841e01ad724f9c8d42a0de567ef86d47209f9349daebb64686246ddf60" + } + ] + }, + { + "bom-ref": "682caa6474e049ad", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/INIS.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "4fe840bc49515285b8ccd9a0ad896c09dfb11c7f" + }, + { + "alg": "SHA-256", + "content": "5aedc89641b9973cb6f8d8367ffea6cd80c56452e336ec09d1750508da2773ad" + } + ] + }, + { + "bom-ref": "049f95a1481eef09", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISIRI-3342.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "8b6bdda4cd73f9b1bcf3ae287e5d2364725fe133" + }, + { + "alg": "SHA-256", + "content": "62cc1ae9eca5f89c88cf87f6e9ec201e1b0e4bdaf9ea81e13c636271c77ec360" + } + ] + }, + { + "bom-ref": "56f74d7a36e39b9e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO-2022-CN-EXT.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "81cac14e09cbe4699c957597c96315d9133f00e1" + }, + { + "alg": "SHA-256", + "content": "026eb42e2ca402226e7e626aee9425de8dc7b616a6fbb13a825f1af8ea54bb7b" + } + ] + }, + { + "bom-ref": "4e933a8a954e1eae", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO-2022-CN.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "e4fdcb0b706f3d787198e6aff1db63cf101e6ab0" + }, + { + "alg": "SHA-256", + "content": "e205f460bd863dea48e81f154118dfe1f4b0890c1f54a0aab0402cf9bba3d3ac" + } + ] + }, + { + "bom-ref": "094a25bb2e62607a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO-2022-JP-3.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "a9cc16ac369dfa76d48408af3c73e726775d75e0" + }, + { + "alg": "SHA-256", + "content": "aa9f8d44d1c8f8554f4439df3accb6a96ddc3931f9b1378de0ec06a8ba71e80d" + } + ] + }, + { + "bom-ref": "00958c232513d53a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO-2022-JP.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "27228923f39c87632ad15a0c7f2ef014d21495bd" + }, + { + "alg": "SHA-256", + "content": "5b5f22f43fcc4ec5c69c1d8b1a5b394c063447bccf5037430b19d6d46a69d02c" + } + ] + }, + { + "bom-ref": "8f5a24da733c8563", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO-2022-KR.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "0740c8366f9374f7210936a368c7919aef8082db" + }, + { + "alg": "SHA-256", + "content": "25b9a74b609d2925f2467ba5f39c11ffe130e1a9edcc1e6549e79510b048e49e" + } + ] + }, + { + "bom-ref": "d3561e169ae88fa1", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO-IR-197.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "609f745c798bc19e4bbe78a6f0e9d72a9bd0fbb4" + }, + { + "alg": "SHA-256", + "content": "57ed5262f481ee65c862edcac758dddfac61cff039b3ec991b55832c059e4cfd" + } + ] + }, + { + "bom-ref": "e01dfac0ded567f7", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO-IR-209.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "2399733753e2de3b28a8936d1c0cc49bb5494f0e" + }, + { + "alg": "SHA-256", + "content": "eecbdf0f88b5d147f330692b5f8d9cb011a357c56c43cea6df44eaf21ef75e68" + } + ] + }, + { + "bom-ref": "20f4a014249e378f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO646.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "e67034b127eb815a6a1d256f7c7d4f2d3a1ff326" + }, + { + "alg": "SHA-256", + "content": "59abf0a5c13017ad370df26eca662524c96038cd289f0b49f8ed2aab0beade35" + } + ] + }, + { + "bom-ref": "4ef0fd0e12fcb336", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-1.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "e810268daab2e636512290380ce0daa0ed1cefdf" + }, + { + "alg": "SHA-256", + "content": "0ed5421b730bb65f0411263b25954771a3c00dae9f9b0451425bb4a6826ebfa0" + } + ] + }, + { + "bom-ref": "9ef1da3507911a52", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-10.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "785a910314c4954d3c99da35190221a24648a768" + }, + { + "alg": "SHA-256", + "content": "2442f550f7ff44be696981edb58c0562846953b44671e4ec13187911e8190c02" + } + ] + }, + { + "bom-ref": "17329ed78ba342b2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-11.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "719f04505ee79f02c42e2656e246feb1adcb1e57" + }, + { + "alg": "SHA-256", + "content": "ddddadef47ae9994ff0461856d14931bd357a685f48008a00ba00873554e74a7" + } + ] + }, + { + "bom-ref": "cba5dbdcc5484b11", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-13.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "7c8c57882233aad24fe37afc3e94970b3ce99c61" + }, + { + "alg": "SHA-256", + "content": "05cf922e88fdbe5be06474e54f6219064d07148cf3a13c4c8135634760e8531b" + } + ] + }, + { + "bom-ref": "ea4ffd0dec203eaa", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-14.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "e157affade69f43d5a5f98022eeac14215e3b175" + }, + { + "alg": "SHA-256", + "content": "90c2e57dd1ccee6e6b06339f2452c8eabcf302353b263bd4a6a5440ef5be02bf" + } + ] + }, + { + "bom-ref": "d0d0d01c6322a312", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-15.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "2d1234cd35841b828a7e1752a2a8ff63e526f07e" + }, + { + "alg": "SHA-256", + "content": "3ebecaf31b3bd5f23df5dce450d87b9e74d7b926026ec07fa4884b6d69dcf6ec" + } + ] + }, + { + "bom-ref": "f38aeecc9832fd35", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-16.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "2c63e715a79bdafcf13e7a0f0de38b54115d4939" + }, + { + "alg": "SHA-256", + "content": "83ed57f0dcf0855a8824ba1d31e38fbc3978d932ade8f42690d3c86cb8f8b124" + } + ] + }, + { + "bom-ref": "92070c7865012b96", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-2.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "48d4987a47d44e45dcb139351d3a04e5a51edcb7" + }, + { + "alg": "SHA-256", + "content": "62c5ad5387efdbc699c41a80aa3d24a3e9dfda0714ee8c91dd3002b99a19dcce" + } + ] + }, + { + "bom-ref": "ddbfae0d6b97c4b0", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-3.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "d5c5b65188cff07d9165e236a8e02365239fdb2c" + }, + { + "alg": "SHA-256", + "content": "141183612b387fb0eebcae40058ec96977594e0fad95cb849b6de27e0b73f284" + } + ] + }, + { + "bom-ref": "b4c792b43e2e57fb", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-4.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "da43d0f219feaeadeba5d9e916c40fdfbf493667" + }, + { + "alg": "SHA-256", + "content": "9bdb563a2e170f83fd856aeba7a90eab6269af40dc0d95aa792f9fa0e0566e07" + } + ] + }, + { + "bom-ref": "2656f94547650fee", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-5.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "35a6b877f4c4b71b25de94a19f64a15276cf7c81" + }, + { + "alg": "SHA-256", + "content": "e89ba843bcbb898b7452f92fdab3b83af072734cdb5c80b8f1a9564085fc6608" + } + ] + }, + { + "bom-ref": "c9033852290225e4", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-6.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "3a275feebe6b45ed20c444bf4a68dfff19d8efb9" + }, + { + "alg": "SHA-256", + "content": "c0267fa43e71cba1c0106243d9ac8a7b2f87cf2552765b86a977dbaaf44088b2" + } + ] + }, + { + "bom-ref": "340ff541b089e970", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-7.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "f0ffa3f6e4d737654689945197fcfa5c07208251" + }, + { + "alg": "SHA-256", + "content": "10ff5c458c2a98a851d1887e7f66e1650da926f3c27e79aaaaf4fbb58f68da5f" + } + ] + }, + { + "bom-ref": "f6d856c168a12c92", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-8.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "0847cddeedb3763b3253d13910a31775f670db94" + }, + { + "alg": "SHA-256", + "content": "012d955784a414f66c835fccb74387b31a67e56d4936df973282a06122ebac28" + } + ] + }, + { + "bom-ref": "b88b4255bdb9064d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-9.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "f875b68a67a64bd8a453c50f45ac087234650e21" + }, + { + "alg": "SHA-256", + "content": "3a3ff587082b32a45752c00268d4ab87e0c417d07b55db33444f2a543dc20db8" + } + ] + }, + { + "bom-ref": "f15dcf886adc1dec", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-9E.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "ca6c1193bebed49235ebc4589ecd98d185f38cb3" + }, + { + "alg": "SHA-256", + "content": "a32056d57ef427748efc2105538811279bef3cf55a60d2ca64847ee2332d02cf" + } + ] + }, + { + "bom-ref": "e4b54e04c3cbbb20", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO_10367-BOX.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "1c95a4b1bc4ae907c28d91591ba370d89866b823" + }, + { + "alg": "SHA-256", + "content": "0b3eef2f1dbb3d33c298145b83419f5a4b7f1ef26ce774903fb887ed8a28c79b" + } + ] + }, + { + "bom-ref": "73b81f1c0e24d400", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO_11548-1.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "851997fff60f0b165f43aa7926e1713486d8a4f0" + }, + { + "alg": "SHA-256", + "content": "89f4b9afa329d7fa61fad25effccc69faec2a054688a1d8cc414e5b6567d75ce" + } + ] + }, + { + "bom-ref": "1456b8d19f7d1a7f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO_2033.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "425ac4f40ff242888670bfdbcce62f9775e026cf" + }, + { + "alg": "SHA-256", + "content": "fa96637f7051ced3d5ef0a507877bc3736fe28dd605e9e2762ded7d9a591b142" + } + ] + }, + { + "bom-ref": "bdaa966dd67a9d74", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO_5427-EXT.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "5ecd309067e1d1b4d6469fc0dc96f980ee46a62a" + }, + { + "alg": "SHA-256", + "content": "bfdf2c3beb89f1c2b066d561b5afacf19f19635ec4c7269a6754fb824f61c7ec" + } + ] + }, + { + "bom-ref": "4f6e27566b98045d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO_5427.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "5d0a4b5a31d4ae1d95c636d8d7e0e51e1290ba98" + }, + { + "alg": "SHA-256", + "content": "0b6c4334329c68b1404cc5ddc29d0afde3c7b8e6e12b399ac6e31fcf81e7a979" + } + ] + }, + { + "bom-ref": "49e315a84f1cf80e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO_5428.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "d6887a58bcacea4d4fe5dfa7d72be327c1450568" + }, + { + "alg": "SHA-256", + "content": "2853b050a6fce7367c238f4d2db05b79e5ac5ed26bd9638b1e27e82017fe509e" + } + ] + }, + { + "bom-ref": "1a7693ab0e4240c7", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO_6937-2.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "fb12355ee7894611fc3b8bbe58831b8c4c93542e" + }, + { + "alg": "SHA-256", + "content": "e46f45b0d0b4a7de4c86b7873b8ce9f4927d0398b0f296bbaef88ae1d3d0e978" + } + ] + }, + { + "bom-ref": "72f28d4409f0fb95", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO_6937.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "2b034e5f4c2d80b6a502ed9d4dda64a9ebcc7dac" + }, + { + "alg": "SHA-256", + "content": "d725e54743c215d118efc2f4f586e646a5041fe7098a1bedbbbe9ae4690323c9" + } + ] + }, + { + "bom-ref": "0c127f57ffcf2563", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/JOHAB.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "d708d28913fd687e0e02af0119dd25cf60ef08b2" + }, + { + "alg": "SHA-256", + "content": "7ae50549864ec795d769e7ce791b37225c502550d1de5dbf077d8ee279201a7b" + } + ] + }, + { + "bom-ref": "d5f587ced110c975", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/KOI-8.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "fd502424f1cf8e4bbb368b492402a2d556a42b82" + }, + { + "alg": "SHA-256", + "content": "6dad72917737247466942b1404fca2a5f95c486b771367d10d8314655f3eeb55" + } + ] + }, + { + "bom-ref": "d52fe820bc751d88", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/KOI8-R.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "a73705525184604f82ebed5de78a08bfc975d61c" + }, + { + "alg": "SHA-256", + "content": "ae320b105cc316df48740af238862708ab2e5eedc5c0cff508eeab6421da78ad" + } + ] + }, + { + "bom-ref": "de63e7fb0f9e0880", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/KOI8-RU.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "a61312e8677ab4cc345af80bf5e057ee4de85027" + }, + { + "alg": "SHA-256", + "content": "14b63a4bd69532106861f3e674122e12717c1bc4593b1343924f5c00f0b575fc" + } + ] + }, + { + "bom-ref": "d989d7a5e8147ba0", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/KOI8-T.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "902e0940eadf644c219ee88eb61f02b3ea51cbca" + }, + { + "alg": "SHA-256", + "content": "72e2444b277133a9a094dae34d3cc294bd3d54ab3bbd27a353ac14f538f50723" + } + ] + }, + { + "bom-ref": "1dfb578fb888a486", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/KOI8-U.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "97de0fa43b208e6fa4dbbab8da02efd7cd271ad4" + }, + { + "alg": "SHA-256", + "content": "871f3ce8b29ea063f354c4b1aeec06c87c00020c604075e810c5ed676ba583b6" + } + ] + }, + { + "bom-ref": "3eb81685c135f7cf", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/LATIN-GREEK-1.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "fceb44da1250525c8e82a15251db0f4d8c474e50" + }, + { + "alg": "SHA-256", + "content": "b284b511b31ab07fb4f82a9a01604a35450278ea0e19aa68ca663a074277c3db" + } + ] + }, + { + "bom-ref": "c9a5ad5685df3014", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/LATIN-GREEK.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "59727e5a69b16a15b7e6bc7674bc38394e6075e4" + }, + { + "alg": "SHA-256", + "content": "6bf2d4914220683781b0c087527052b0eac3dda89660d3e9406998dc588c552f" + } + ] + }, + { + "bom-ref": "4e9246d492c4e62a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/MAC-CENTRALEUROPE.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "58747cb432179384c521fe755c113bb36088ff9d" + }, + { + "alg": "SHA-256", + "content": "14b6d3d575baeab6060075bc55eaaae1c55a05c7b1c1c316c114f6cb8fbedb36" + } + ] + }, + { + "bom-ref": "a3b825a4c5fd66b7", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/MAC-IS.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "fec913b7230a6ce164555bd4da5634d5b3dfbd06" + }, + { + "alg": "SHA-256", + "content": "90a5495b580db443415d33fb14749aecfe820602e7d2f54155d920eb31d686d4" + } + ] + }, + { + "bom-ref": "75855c32076f0d8c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/MAC-SAMI.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "97fe75d227b4a60c96d62c4f41a9e743a2ebea31" + }, + { + "alg": "SHA-256", + "content": "9c4ea021d3f923b6941c2f9ca5fc2f87eb54b2791fa09304cec7f94c72135a14" + } + ] + }, + { + "bom-ref": "a56b62f7ba3ba2eb", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/MAC-UK.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "477edbd4558bddd693034927f0dba21c8c185d27" + }, + { + "alg": "SHA-256", + "content": "5ed579da177bf222ea53ae2f4853cecf684da5187699d7457ae2ca462b589af3" + } + ] + }, + { + "bom-ref": "7608fe034e4e6442", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/MACINTOSH.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "9817fce401388ebf6428acbefbd15143b4059e59" + }, + { + "alg": "SHA-256", + "content": "a98bb1e14fb5ca2d666443c855ac3f8c16c8409fdd21e4cc43db972574fdd3ba" + } + ] + }, + { + "bom-ref": "35a8b56b80d79963", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/MIK.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "fcf3d658aca2751e21cac3fc116f1656e51c0b3b" + }, + { + "alg": "SHA-256", + "content": "9c0447e5307806b15314aa8047295520de32a3a12174ab75bdd632a1d635ef4c" + } + ] + }, + { + "bom-ref": "671d917e2e96b5d1", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/NATS-DANO.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "fb05d038bfb999af410bb9173d65d64aaaa13bd2" + }, + { + "alg": "SHA-256", + "content": "b8ea0e2e9db836e90296ee52065375e6ebe267d5bd1386f605dab0cf07b29456" + } + ] + }, + { + "bom-ref": "3742c826cb8b4be9", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/NATS-SEFI.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "bfec8da5f270fb97fa4f575fdce430efe7b75818" + }, + { + "alg": "SHA-256", + "content": "d96332220ffe8f3f13cfd583bb0a4f9b57874ee1059b7562df592e04677e7bee" + } + ] + }, + { + "bom-ref": "df1ca1baa94832b7", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/PT154.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "45f282fcd156876a8561c755f611dad45ec8fcd0" + }, + { + "alg": "SHA-256", + "content": "ffd04b3c302ffb0a6158071746a350167492dfee1b54665bb24990f42739a712" + } + ] + }, + { + "bom-ref": "f2c4fca1f9df6570", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/RK1048.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "5c3ec4f27cf31f73fe34d2f91186e08fdf0679de" + }, + { + "alg": "SHA-256", + "content": "41b07b35b165b219b26464883725e1f1c20e3c6a361a42ed7a8073033d606d45" + } + ] + }, + { + "bom-ref": "f1c1c7482cdd0243", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/SAMI-WS2.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "73e7e76877e5c16dbc470b50e930e5a98acfd74d" + }, + { + "alg": "SHA-256", + "content": "d7e1911929236a6129a80b65fcd1f59ad387b1046ee5ca6d3ca911a5432ad45d" + } + ] + }, + { + "bom-ref": "b6a6c6d685b21de8", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/SHIFT_JISX0213.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "a73334705389906021ca24b3a9bfa8287987466a" + }, + { + "alg": "SHA-256", + "content": "62d937d7c5f02827733838b9fc8e9af95fd1b330cbeb82fd29e50bce3d9b2f2b" + } + ] + }, + { + "bom-ref": "6a522e969b383eb6", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/SJIS.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "5a5158de63138bc7c22ec9d9ecefb8d1438d6e9e" + }, + { + "alg": "SHA-256", + "content": "ae4a37109dfbdc341dbe552a56ff1f391a174ec740a7d75366a343ed0b57bd5c" + } + ] + }, + { + "bom-ref": "04136bb7fdce40f4", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/T.61.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "003d09dd83a3626619c6144bbf7d72e08800dae2" + }, + { + "alg": "SHA-256", + "content": "8a594a36619720363ff25980f6e2aa965dbabf100d8fcb02a58616fe0a0186fe" + } + ] + }, + { + "bom-ref": "4ef710437bcc0137", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/TCVN5712-1.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "014b991fec6b28e27f17b5a16ae56d911c8a3a2a" + }, + { + "alg": "SHA-256", + "content": "b487d36ec8ffc8c90d23c82822376bcf9219ceac248004d5e757d939796ebb72" + } + ] + }, + { + "bom-ref": "fa9dded1d42f0bdc", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/TIS-620.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "c2d78bd600c0fd843fc566518bec2f40df125542" + }, + { + "alg": "SHA-256", + "content": "758bddda72af8891c23c38e9d9306cefbb61ffd2cbd96013b9bc4b099502c909" + } + ] + }, + { + "bom-ref": "1af6e02025529c9e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/TSCII.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "ab2ef38eb2f4ab01fe3cdbf099b2ecea30261d1b" + }, + { + "alg": "SHA-256", + "content": "4404ce906e258b4d997006589d21a0a3feef0bf5e155285950b7c225b3283bf6" + } + ] + }, + { + "bom-ref": "7634612d66dff4dd", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/UHC.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "7a091353f607053d0e1a0ea03b9ab783b53ab0b2" + }, + { + "alg": "SHA-256", + "content": "9cbfbfefece5fc2ddc48ee861bb3f68fc86199616d0af2da359d52a7b818d4bc" + } + ] + }, + { + "bom-ref": "3fbb9613eebe11a9", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/UNICODE.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "3348ea0ec19f0343633533bed62f2890ca6ca349" + }, + { + "alg": "SHA-256", + "content": "50bf0c97154d218bd0e66050c527be6dec9a5979e17d2e423466673112321542" + } + ] + }, + { + "bom-ref": "48a0f150ec812d20", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/UTF-16.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "2d2c3d38528668cb0844b574fa84d2649795200b" + }, + { + "alg": "SHA-256", + "content": "30fd1fa847ff14f7dcbd288a4beebb76bffa3f6af4c9ea84450cc173196abd47" + } + ] + }, + { + "bom-ref": "f464c7a5cdd3a927", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/UTF-32.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "00e1e39a4e4566c356d28692b48eeb1177913e67" + }, + { + "alg": "SHA-256", + "content": "5455efa59c625ceedbcd12d59ea15ec2c7ce5f4015872e55beb2538e5184b5e1" + } + ] + }, + { + "bom-ref": "e27a9223ec7b7da4", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/UTF-7.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "6d618648f89bddd881598aeb4a58cd6d47de2978" + }, + { + "alg": "SHA-256", + "content": "5e2708da24fd889014b68da2bb521ada111037afe517cf2ab46bcb7ffb5e8d1b" + } + ] + }, + { + "bom-ref": "00eb08026af7a093", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/VISCII.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "01b0907930b7aa3436fa81c57e388941eb380efd" + }, + { + "alg": "SHA-256", + "content": "9543506b1f2487251a1cf1db277734139a85160e4c2e6a8392e1d0046daf9f7b" + } + ] + }, + { + "bom-ref": "d6cf0a3d1dbd6507", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/gconv-modules", + "hashes": [ + { + "alg": "SHA-1", + "content": "8c7a68e1ddb73b08676c834082be9982a6c92317" + }, + { + "alg": "SHA-256", + "content": "b6ff4ae1acb8453e26356956f5a6dcdab4b651b71072a2e32b94cc209b573c77" + } + ] + }, + { + "bom-ref": "0f5b6c00bb04a9f0", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache", + "hashes": [ + { + "alg": "SHA-1", + "content": "7cf7907d5b90a9acbcaf362c060168e376ebcc9c" + }, + { + "alg": "SHA-256", + "content": "c229d237dbd6d89abe5ac82f500f9ddad2612fde270d79238a63bde06f93febd" + } + ] + }, + { + "bom-ref": "b6a89edd3c38e341", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/libCNS.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "b43ab513bffb50701cf961e0f928dbaf403d303a" + }, + { + "alg": "SHA-256", + "content": "d1039d15302b5fa19d3962d330cba73fad4affde1504cbc5d7919b8b8eff3e47" + } + ] + }, + { + "bom-ref": "ce728e4721a2bbc7", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/libGB.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "d059b7414da133c95bc5dbc26f35ea69dff15f22" + }, + { + "alg": "SHA-256", + "content": "3161080afd0de2697b8f364b76d4ddfb1bd5925a5acad9e0dfe354fcd7bac0c9" + } + ] + }, + { + "bom-ref": "cbf75a34cbd5a858", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/libISOIR165.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "03102c2ea8e13f6d7f0fb1c834c459e76c14e977" + }, + { + "alg": "SHA-256", + "content": "3b0d831dafd7fdd4de5c5ab8cd7d2f0a6079c5d38745053bbb78428444201691" + } + ] + }, + { + "bom-ref": "71b0876b8e02e301", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/libJIS.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "455de09c5573e1584e31d85c87f150b62be13699" + }, + { + "alg": "SHA-256", + "content": "2bf3bb73a2c2dacf70e2f927039ebb129aad44e711f7c44332a6c8b433598b9f" + } + ] + }, + { + "bom-ref": "d6fede6950fe895e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/libJISX0213.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "655846aff43f34268d6d5bff8f175f1a478d813a" + }, + { + "alg": "SHA-256", + "content": "56570fe918655f3c60be5e759b0f272a9eb65bebdb2e9cf727a4f4fea555b2f1" + } + ] + }, + { + "bom-ref": "ebd8b0ba916ca8f0", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/libKSC.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "4276810cfdb545f3478e25edbe9fc24d7e131177" + }, + { + "alg": "SHA-256", + "content": "6679b6203dba3e53e03a287144cc6b46223ba589060460f09bbece69cfdb82ba" + } + ] + }, + { + "bom-ref": "0654e496e45abdbd", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libacl.so.1.1.2253", + "hashes": [ + { + "alg": "SHA-1", + "content": "1aba57fe9b7789762d6108caa2c8bfc255ba62fb" + }, + { + "alg": "SHA-256", + "content": "722ffe926c3ce1d46005a4bbc74c2b109b65a32607e01328a204b981249c5668" + } + ] + }, + { + "bom-ref": "e4018a02d2596a35", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libapt-pkg.so.5.0.2", + "hashes": [ + { + "alg": "SHA-1", + "content": "44bc421cac73c08c14585d6595db6c1bb7ebe23c" + }, + { + "alg": "SHA-256", + "content": "ff539d9b6aca71d1a094fcc05e498f3135e910dc77cff5804fca2a766dbe4c19" + } + ] + }, + { + "bom-ref": "6e46f3f3dfa408ef", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libapt-private.so.0.0.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "72a73cf0e2ef81824cd9ac2b1dfd7d3188ec0c5f" + }, + { + "alg": "SHA-256", + "content": "58440f33bf034ebdeb03333c3e005ddcad2fd45f7903d34a74d09d22a8e87741" + } + ] + }, + { + "bom-ref": "4d26e31ea953af09", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libattr.so.1.1.2448", + "hashes": [ + { + "alg": "SHA-1", + "content": "0245623994d36392f69ab161c9a49431bf52b2db" + }, + { + "alg": "SHA-256", + "content": "380c951ab98b152cdffe3b97a5358a1248525593df1b10d02f5163a38065a2bc" + } + ] + }, + { + "bom-ref": "cdb9543230989173", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libdb-5.3.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "f02a0d6fa7e1e0ddba8c4195af02c39eaa3c83ae" + }, + { + "alg": "SHA-256", + "content": "c02b40ecec54ac03be7bffdaa02fe3683859c269f31a233aaae5c02109483cf7" + } + ] + }, + { + "bom-ref": "91610e4dd13939f8", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libdebconfclient.so.0.0.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "8987c4cab7420ed37ce2783e7dbe2d6813c9f1b5" + }, + { + "alg": "SHA-256", + "content": "62e45e9c5fd9e71160f4cede498996368b5e21d693c53936f0613bcf03cbd6fd" + } + ] + }, + { + "bom-ref": "29bfa1c2ccacaadc", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libffi.so.6.0.4", + "hashes": [ + { + "alg": "SHA-1", + "content": "e7df747eaaea825fa1c304fe80318b2b7a2a1d2e" + }, + { + "alg": "SHA-256", + "content": "f91a4c675adf5a68dced59432d19eaec5d863d37b9ded1f928f17ebbdd7ec2ea" + } + ] + }, + { + "bom-ref": "20689edd05dacd16", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libformw.so.6.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "78b7cfdd7fc086a958abb034d301bc1bd9ac3bbf" + }, + { + "alg": "SHA-256", + "content": "74729f09eb99739a1691b64ccd5ca5d6fe27c1aa2b1b5f417a0b851a8b199545" + } + ] + }, + { + "bom-ref": "3a7b7c9814b0772b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libgmp.so.10.3.2", + "hashes": [ + { + "alg": "SHA-1", + "content": "d2ec2565f06f6637921797c69f663624739f182d" + }, + { + "alg": "SHA-256", + "content": "14748116ec8ec63cc9f4e7c911e1c32f9ff1f771aeade59234a54fd917ca198a" + } + ] + }, + { + "bom-ref": "c1dda3654757f4f3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libgnutls.so.30.23.2", + "hashes": [ + { + "alg": "SHA-1", + "content": "57615f627b1e0caef10eb8d833a6a664b04649e6" + }, + { + "alg": "SHA-256", + "content": "1b4ad830d8721c709d980c053060e23459e486395a0fabffa2a491b4c89a363d" + } + ] + }, + { + "bom-ref": "b7e6a2b62460f936", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libhogweed.so.4.5", + "hashes": [ + { + "alg": "SHA-1", + "content": "a6cb8d4b5d22f6a1ead92cffa142c1d3d92f85b7" + }, + { + "alg": "SHA-256", + "content": "4135795c36afc73f01145309c0e3acb07543b263566d612f6e4de4d53f7cb8b0" + } + ] + }, + { + "bom-ref": "ee3cd2f13a2a0269", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libidn2.so.0.3.4", + "hashes": [ + { + "alg": "SHA-1", + "content": "113179d4d43bf1f341acbfc4e3c9a0d9136982ab" + }, + { + "alg": "SHA-256", + "content": "3c1a9050920588c6a593913bee2ecfb2f3449336a43945e3e04ee0e640235e9f" + } + ] + }, + { + "bom-ref": "24390df313b7ad1b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/liblz4.so.1.8.3", + "hashes": [ + { + "alg": "SHA-1", + "content": "f6996035d854b710b0cfa0cf33bed4e64fecb02d" + }, + { + "alg": "SHA-256", + "content": "244066c277ec836afbeb1483f9a518f3166b9d077f6a8511ef80fb8148ba1e60" + } + ] + }, + { + "bom-ref": "edc7e195cd4e60b5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libmenuw.so.6.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "6254e99fe30c7f235f84faafb9f38d393ade59cf" + }, + { + "alg": "SHA-256", + "content": "44e2a7f95bf2515743c0a80fd68718fea068ca34330fe75d089a35eed427d9d8" + } + ] + }, + { + "bom-ref": "c484ac7d4403546c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libnettle.so.6.5", + "hashes": [ + { + "alg": "SHA-1", + "content": "a550509f6fc2d59b60d82edf92388fc6c602e1cd" + }, + { + "alg": "SHA-256", + "content": "e17fee9561403a2712bc825a5b6c8f098db13dea6cf323fdd798fe0dc0703054" + } + ] + }, + { + "bom-ref": "7e63f3afdde3ce47", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libp11-kit.so.0.3.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "6fafb1fea407d713511f52308b77c6e661fde30f" + }, + { + "alg": "SHA-256", + "content": "bdc5cf37024d0fce66a397603efc0cf2a4e19034e5753e907e2840211bc086c9" + } + ] + }, + { + "bom-ref": "f5908c44ddca245c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libpanelw.so.6.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "97569fcf8bb2fe4f226972e347415b9714f2af2e" + }, + { + "alg": "SHA-256", + "content": "adb7bf8aa30ff3385ac4dd033efb41241e1adb94fb0c23bd6a4026cceb6d6447" + } + ] + }, + { + "bom-ref": "fa8995410d877382", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libpcreposix.so.3.13.3", + "hashes": [ + { + "alg": "SHA-1", + "content": "dbf7654a49a1993ceb782e96e70fbd21c233dce9" + }, + { + "alg": "SHA-256", + "content": "9ef989e82be51545a5f1f1505f059faa9bc37a709bb97b5603238719706b2a2b" + } + ] + }, + { + "bom-ref": "bf5f5bddc6945ba5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libseccomp.so.2.3.3", + "hashes": [ + { + "alg": "SHA-1", + "content": "439cab8916d8520ba77d0107ee6663fd48868fea" + }, + { + "alg": "SHA-256", + "content": "010f6a6d48fb08bd76dcd0edd519bb9a8f33d4130fefa43b9106f052db25b762" + } + ] + }, + { + "bom-ref": "72e640c19009609c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libsemanage.so.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "2ee01f94cebf1d7f0b96a3118c0f496914088032" + }, + { + "alg": "SHA-256", + "content": "9be6186e79b523a542bf1ba76a8a06bfb8193329dc76631799fdeb7f50f45191" + } + ] + }, + { + "bom-ref": "b3c20e7bd8e2d699", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25", + "hashes": [ + { + "alg": "SHA-1", + "content": "d746e2a7281d476be9541271d1993d0989ed79d6" + }, + { + "alg": "SHA-256", + "content": "b62f36dd7e4926c64debe131d5bc55e32abfd9fe3f6306c08388fcc43b50cce0" + } + ] + }, + { + "bom-ref": "496535e91398864e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libtasn1.so.6.5.5", + "hashes": [ + { + "alg": "SHA-1", + "content": "954415cbd6ea73211ff59f7aaa3eb16ca52aaa79" + }, + { + "alg": "SHA-256", + "content": "41ad92453adf926d06be2cc42527c9084bb2c64a1f6806615c7ea8dac5789c3c" + } + ] + }, + { + "bom-ref": "e53fe5c894d9a8e6", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libtic.so.6.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "18a18d96b16171125b8e18944a80224076ea8018" + }, + { + "alg": "SHA-256", + "content": "1cd7f5a479f900ec91595ef738ae5ffa86c8663f45f9074cac0a171fb2499d4e" + } + ] + }, + { + "bom-ref": "233a5c48794f6158", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libunistring.so.2.1.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "0de1f130f1845e9c81c6676ce7c0488a09c97970" + }, + { + "alg": "SHA-256", + "content": "bd2fdf827aee611047c457dc6f48a1e4c831277d3016193d41fed4d8216058b5" + } + ] + }, + { + "bom-ref": "51e48139a58c466a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libzstd.so.1.3.8", + "hashes": [ + { + "alg": "SHA-1", + "content": "53cc92de8726a5b7d2a61a6ac323f78ca4cc3879" + }, + { + "alg": "SHA-256", + "content": "6f1015640fa55228fb6fa51ed0d6b705904fb758e5fc3cf58eb20d00bd479c70" + } + ] + }, + { + "bom-ref": "244a9e1ec27fbf49", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/AutoLoader.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "1f31e94944eba37da3bd3bb312d7a2269205b879" + }, + { + "alg": "SHA-256", + "content": "750ee369fbf3c34f72a823ca261d33a89bba98ad1d4a967f4f89e19b122eaabf" + } + ] + }, + { + "bom-ref": "24858762180e5768", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/Carp.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "cc2048ecf5c89cf8dd84426135357c3ad1cae2a6" + }, + { + "alg": "SHA-256", + "content": "fb5389969d145478576396a1716159d85691f08b5cc7e994b7bb9f76dd092da3" + } + ] + }, + { + "bom-ref": "665782f70367f30b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/Carp/Heavy.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "d59b9600b5ad9f1520a9ebe43109531d5ebce602" + }, + { + "alg": "SHA-256", + "content": "867846437cfd54b3603a4a9ca3583fec18ce624ca1df05ff55f1ec4815fa2157" + } + ] + }, + { + "bom-ref": "4df2f8dc7131d74e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/Config.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "94c07ffd92bc7acda614f0b2b8a512533f1b3323" + }, + { + "alg": "SHA-256", + "content": "f4e532ef61a4507b62a67908337e582d196b0f2731672862fd5971db0a26e11c" + } + ] + }, + { + "bom-ref": "b4d3c6c6e8f30b89", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/Config_git.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "0e5f48d5076ce55cc31139de71b81c7e003610e9" + }, + { + "alg": "SHA-256", + "content": "09c5e2ee35ee18d9043d95273f1cd37bc82e80567fd1372a1eb134c809c39504" + } + ] + }, + { + "bom-ref": "6c120a8255ee279b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/Config_heavy.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "6636a990f8e430ecfaea3d5dda59975f358167a7" + }, + { + "alg": "SHA-256", + "content": "1861adf41857490a4ce0c9bf0969b242c9ff2228dfea9236b4ec551b2c9f19ab" + } + ] + }, + { + "bom-ref": "cd218cf7ae5d28d3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/Cwd.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "94b66b0bbf5c078c88f5a7c8a85149e3461019e7" + }, + { + "alg": "SHA-256", + "content": "84c168cecf9770d5ba0f6f24fdea515e707f6323a8e9e08ae6b284026b009aeb" + } + ] + }, + { + "bom-ref": "530ddd32c00dc852", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/DynaLoader.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "a9e568ef830f71093627820d0838189d7be766f1" + }, + { + "alg": "SHA-256", + "content": "7ac4366d0129e3daeef5a8f2311764e0025f2812977663dbc82d11ba8fbf0021" + } + ] + }, + { + "bom-ref": "44e4c57068526b80", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/Errno.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "426a6d195aedd5aea4af9b7fadffa0cbe0d1a991" + }, + { + "alg": "SHA-256", + "content": "5c2d60c4c82acf2fa9f59ed3b71a3f8d77eaa1ef4f110d02c4ceb2c465211505" + } + ] + }, + { + "bom-ref": "81ba35e2b2cbaa09", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/Exporter.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "9759264b136707e8a8b763241f07ff88406a3e33" + }, + { + "alg": "SHA-256", + "content": "e392a2c5568140b1e76eaa4fb8579a728bdb643931c8b9cc2e57f80ee7ea2f79" + } + ] + }, + { + "bom-ref": "2c746cc990eb2f98", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/Exporter/Heavy.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "2f228aa8283047739818a6811e097ce69154cc51" + }, + { + "alg": "SHA-256", + "content": "4a05d2fb4ade7016e108d8b8cdb25b8426b232560be0874755b198fc5be0fee1" + } + ] + }, + { + "bom-ref": "4b8072c5b10cf3f3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/Fcntl.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "d5160f72b22f561d1946a1c12d8efbc4ac98e132" + }, + { + "alg": "SHA-256", + "content": "293ad7b0904fa32bf79bda796dd2244e799bb6b42450c910ef8f54d2edf076ee" + } + ] + }, + { + "bom-ref": "9ba46f6331c2a520", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/File/Basename.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "9db4c3eac640ca4d3e659edcd973adf05430c906" + }, + { + "alg": "SHA-256", + "content": "9aeea43fda475ea4e2b75633b2e25528f45b2510c7df4809449fbf938de58bd8" + } + ] + }, + { + "bom-ref": "9f80e20e902eb88d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/File/Glob.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "7bff1fa38b92429d8fdde48c70cb8015390160b2" + }, + { + "alg": "SHA-256", + "content": "4ae6ccae060c7a7dc8f688c9e3735d09b2489a34d409cdb8f059de596e098207" + } + ] + }, + { + "bom-ref": "ac6556173af2ab59", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/File/Path.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "328f3ee0a999bfd5171053693a04c9b587caf5ce" + }, + { + "alg": "SHA-256", + "content": "8e3bd6496faed3c6dfb7dbf696135aef6c362a99c7fa09d2728cd4feea334b97" + } + ] + }, + { + "bom-ref": "d7cf8883a0af4337", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/File/Spec.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "3c23500b983d600e34cc0433fdec6575070d58a2" + }, + { + "alg": "SHA-256", + "content": "cc58410399562a9c05d6954d277d6a0776db9176ac23909dad778f7a29deab09" + } + ] + }, + { + "bom-ref": "65659c42f7092703", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/File/Spec/Unix.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "bbb6f6052302f36e13b90e4f6aca89caeba464f5" + }, + { + "alg": "SHA-256", + "content": "bdcad33fe9d31537bbdbce2e32ab3b6fcf902432522e167d39531558c554450e" + } + ] + }, + { + "bom-ref": "7291efa77b5867b3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/File/Temp.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "f65bfa53b496e9759f3b5f663777725e2c293d0e" + }, + { + "alg": "SHA-256", + "content": "f83f5e969b8ba4cb9de0302624d1df4220f1ad8c5e20f83acb9967d474516fb2" + } + ] + }, + { + "bom-ref": "031ef49edf434d46", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/FileHandle.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "5ce121464335daa58fc4d0424e9639bbb0e0f00f" + }, + { + "alg": "SHA-256", + "content": "91ec6e83b34fb8501aba443335f86843d93dc5385604baaa002588c99c75b9ee" + } + ] + }, + { + "bom-ref": "0ad8e612abc4ff57", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/Getopt/Long.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "e7a4b93b3b61671141ce5b6ee46fb9938472d8e4" + }, + { + "alg": "SHA-256", + "content": "936f106aec8da64b2299914ff5c3614f9ba7c7d83053e5d13ab7f499e9235b8f" + } + ] + }, + { + "bom-ref": "3bf7e61d735ccd84", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/Hash/Util.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "c3d430e773d00a4852e2ee25164f18b503eef158" + }, + { + "alg": "SHA-256", + "content": "2aa0c6c7e43a40de48e50e57a8ddeb95b4b06d1849482d47e9bb670ef2a4ee96" + } + ] + }, + { + "bom-ref": "30045eb621465ca2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/IO.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "2a8ba6c4b3e64ae22d18d52e862a9c5901ca0292" + }, + { + "alg": "SHA-256", + "content": "4238dbe714699a77ac210bec27ab7a4e4a942deee43698db76fa98c86506ac7e" + } + ] + }, + { + "bom-ref": "45d5d086d241d828", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/IO/File.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "e923f4c162e272da40d050c561350471ae1e40fb" + }, + { + "alg": "SHA-256", + "content": "aac59ac09f638b5e1bdf4de4fd30f57b1d19fbcd06d4ab44d73f3fbf050c01e8" + } + ] + }, + { + "bom-ref": "b9bf5d75e711c74d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/IO/Handle.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "0fff14780d426be1069f8ea351dfbf13a62ac611" + }, + { + "alg": "SHA-256", + "content": "2c9749e2333144a13ae48afba8022c07a9dd42d7804347f6f581929cf4b972ad" + } + ] + }, + { + "bom-ref": "324f78c74532188d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/IO/Pipe.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "817f7d37c397485819a5ae2b59fb89deaecdeea4" + }, + { + "alg": "SHA-256", + "content": "07955c4b9eb527a81dfdbb82ed9493bdd89607310ddcd7b801866115192ebca8" + } + ] + }, + { + "bom-ref": "f3beadcc10c30e99", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/IO/Seekable.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "8f9bc758b545d036d60f40ccad52fa4e0d73b571" + }, + { + "alg": "SHA-256", + "content": "ca74503f91481275f9af45a4d088e7ed8c444a87c8cf56d3995857af95478bea" + } + ] + }, + { + "bom-ref": "5301ab0eb2ab545b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/IO/Select.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "dd7d93703935d6a5fa6342e9c6fe76751d13aad9" + }, + { + "alg": "SHA-256", + "content": "0c6b8ab7890b66ae8e60da14daaef31a81fb21ec2285a4fd6a1abe2d75d94d20" + } + ] + }, + { + "bom-ref": "b6433e187384b343", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/IO/Socket.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "e5b3355af1653502a72c3d12caa16fadcdc4a772" + }, + { + "alg": "SHA-256", + "content": "e86bcfc4297c0431f46785cf163ce467c10efe62efb0c6f28e0681b0c9d5b18f" + } + ] + }, + { + "bom-ref": "e7aad97116f4fe70", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/IO/Socket/INET.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "fe1ea6cfd6a7b553331958c2e3b03f7d780a3c0f" + }, + { + "alg": "SHA-256", + "content": "13cd3fd520d396386092dfaf96bf4577ac5c3bb3dec65586f44257b82c673b0a" + } + ] + }, + { + "bom-ref": "faf5a5f45cc3126a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/IO/Socket/IP.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "40d8eac93501f697ef5f59e9e93d8eb5dcaaf079" + }, + { + "alg": "SHA-256", + "content": "d7b09595b40b1137729897254ae867b0dcda23a8c6000286f35cf3d1648e09fe" + } + ] + }, + { + "bom-ref": "b07a57c31805aca5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/IO/Socket/UNIX.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "62e47ed49756cbe5ef97023868d034134caaec17" + }, + { + "alg": "SHA-256", + "content": "38bd2ea8705d23db1084f70404db6f7ac077831aa3847c21b5412b1cd4936cad" + } + ] + }, + { + "bom-ref": "9792acb321a7d1ef", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/IPC/Open2.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "d3db7d30c477e7890a2f4bbaf972f2fa02e66704" + }, + { + "alg": "SHA-256", + "content": "6500142ce04d79ddb58102de7bdf1427c49a9d1be04f6c908027b6240a0e6303" + } + ] + }, + { + "bom-ref": "68a34042597ad86b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/IPC/Open3.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "9f196f4852cde3eb17ea4b10ea2c7c30a72b5a36" + }, + { + "alg": "SHA-256", + "content": "2d4aa629476d90f663ebff57af566044f9cb134f4eef1699516dc13c227cdb83" + } + ] + }, + { + "bom-ref": "8de753e09005530e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/List/Util.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "7b4dbe32db7fdafbc156c2fce7eb0142a62ddd98" + }, + { + "alg": "SHA-256", + "content": "0e47e08b8980bed03bb32c7df4efdabb434dee0e27cf952240fd5ec90a65a48d" + } + ] + }, + { + "bom-ref": "8d4435a6e4b103d7", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/POSIX.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "9f95942156fb69cc4e89d50a6f7ad27419b2e914" + }, + { + "alg": "SHA-256", + "content": "d264318238441b25fa59c2d603028b27c4ace3d333aee2e291eb300bb5948ff6" + } + ] + }, + { + "bom-ref": "e29bfc13e23fd085", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/Scalar/Util.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "e2d63a19ce14546ed815630475712dae3a12f57e" + }, + { + "alg": "SHA-256", + "content": "cd15abf6613b2159360c471acdbddc8d3bdb6903acf9ade6868f809cd0ff5996" + } + ] + }, + { + "bom-ref": "b9672b63595d846e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/SelectSaver.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "4692c9c5ff0249639601fda2eef38f5f4214e5bf" + }, + { + "alg": "SHA-256", + "content": "f6f2b9bf40423e54466311866dc9f67a1318396d2d162cf84722e28d715a0ca9" + } + ] + }, + { + "bom-ref": "7c758882b0250840", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/Socket.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "4d1ee5647be23a7cf9e81b8e53e31316e0a74977" + }, + { + "alg": "SHA-256", + "content": "94cb1665b2fcdc5aa339ca7da2093590bb05b76e5334910c81f932d273d6daa6" + } + ] + }, + { + "bom-ref": "7a85f92bd83e678f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/Symbol.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "7dec2357ddc382e8e9eea5071407d94a6135c45a" + }, + { + "alg": "SHA-256", + "content": "3489f58d1a1ac356ce725d42de90155dd6821219788f593c9ac85c97123dfc0b" + } + ] + }, + { + "bom-ref": "17def102f1c304db", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/Text/ParseWords.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "4e5605cdd66f5ecca08d2a1321c0840d79c84365" + }, + { + "alg": "SHA-256", + "content": "aa7484ce8671e27adbb65f24d19d376882e84edab8da3ea91d144fefc6906184" + } + ] + }, + { + "bom-ref": "c4c1c4274e3e5b44", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/Text/Tabs.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "7f03e127f2dbd415bb18e828da46c04bfb989ebb" + }, + { + "alg": "SHA-256", + "content": "fa167b69c997b88b575b3a98013421745b41c3681b0a6a7433f17c1da19f8f25" + } + ] + }, + { + "bom-ref": "464cdeaa76250bab", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/Text/Wrap.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "073dbc8917cfc233bbda2cce25a8fd2a917f3667" + }, + { + "alg": "SHA-256", + "content": "d63777a317a5631dcfb6b0ea4ae5f782d2e718ff31b9f091ac03962a997fc095" + } + ] + }, + { + "bom-ref": "7c159727aebb3b6e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/Tie/Hash.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "0478b3087dba6ba5db66d5830aac6c3015d1acc5" + }, + { + "alg": "SHA-256", + "content": "e81ae4e495e961af321beac6695b5d43870418739901785a6b90c742f2d39d42" + } + ] + }, + { + "bom-ref": "a3a6b0009fc81aa1", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/XSLoader.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "12c586437b765be392cfae104caf9938cb4f3d71" + }, + { + "alg": "SHA-256", + "content": "b0c42116510e16ef6571ec72c04fdbc0c7488cfff690a631380652a68ba6d9e5" + } + ] + }, + { + "bom-ref": "2170db46a3a192fe", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/attributes.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "8b34e2a8b62d5d4b03e677cf46e627b4b5ab9ed1" + }, + { + "alg": "SHA-256", + "content": "613b235f27f4034a4d9aaa87672d3da1af3397cfe94032fd979df5c87f5a08dc" + } + ] + }, + { + "bom-ref": "7cce1f4983d430bd", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/auto/Cwd/Cwd.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "aa916cc77acb2099e27dee90cabaaa6656c41853" + }, + { + "alg": "SHA-256", + "content": "d4d0855c2a777faa96e2db2d29fbd51b2f4b45fe36d1d969fe15d512c63649a9" + } + ] + }, + { + "bom-ref": "63752a74978d2f53", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/auto/Fcntl/Fcntl.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "0ff9c06ff5e783553b57eed8722579df182c7946" + }, + { + "alg": "SHA-256", + "content": "af206c4247eb55501b59b72d12b93ea2af7637e526c6c44cf0ec1779d9f51b71" + } + ] + }, + { + "bom-ref": "b30fa26527c484cd", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/auto/File/Glob/Glob.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "502a9cfa41b89772f23a454945077e346821c397" + }, + { + "alg": "SHA-256", + "content": "fe64c0bc70fc19132454c8e909ef634883d5e8ca52311d05d04863ad1600174e" + } + ] + }, + { + "bom-ref": "cbbeeea85270f8c6", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/auto/Hash/Util/Util.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "43c7e94c1c96207b08afda91b328feb25ff5ed33" + }, + { + "alg": "SHA-256", + "content": "f174f9928ec813f362571b5d4c278709589bc69f6a7ad72b5863912eb345b002" + } + ] + }, + { + "bom-ref": "624d01b6afd520f7", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/auto/IO/IO.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "c2da805a39f0baf6aa8ba5f0c418a83459ff01b5" + }, + { + "alg": "SHA-256", + "content": "b813fa75c5654b92b327c847e854c6a21174b44766fcda95748e255ec80bf635" + } + ] + }, + { + "bom-ref": "b4eb23f55f3f1bbb", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/auto/List/Util/Util.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "c9caa3757a9167e408d2d4bdc3c7646082355317" + }, + { + "alg": "SHA-256", + "content": "6511226929f9ab65d377643088b28623662ffbe884fc2aff7ebdcb604dde7f62" + } + ] + }, + { + "bom-ref": "fb04e4a111008143", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/auto/POSIX/POSIX.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "057f630e58f4a693524b48aca43808a858485ab7" + }, + { + "alg": "SHA-256", + "content": "59f239f4b19825a82018859fe435fbb5ef4f32102b7490156a0a3bb74238ce6b" + } + ] + }, + { + "bom-ref": "e4af2f54ca7f6138", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/auto/Socket/Socket.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "85323d21c1bd47422aac8ba0ce1faf7e50691b1d" + }, + { + "alg": "SHA-256", + "content": "fe76ad27bccb3b4336d4685eca57a93fe22653961bd7f0ca9fa1148317c6ad67" + } + ] + }, + { + "bom-ref": "bd4a78414cd7353e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/auto/attributes/attributes.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "aee8648734be45b3dae1a159c7ff4efe086adf67" + }, + { + "alg": "SHA-256", + "content": "29fbd9e3b2e20e1cc8d02c6a9bba1224ade5198bae99377e4dad4045310cbee5" + } + ] + }, + { + "bom-ref": "cfc541fa170dbe9d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/auto/re/re.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "8c799251c70a7c72a75b7ae0098e37108ff2f306" + }, + { + "alg": "SHA-256", + "content": "c592552aeff2e98b520a6b47d365127cd2e5bf9f61497383a0afd6fb7d9acd96" + } + ] + }, + { + "bom-ref": "c36f9286efa99c95", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/base.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "a9e54ee2cf40e62e6a5cd80381c6c129567d3180" + }, + { + "alg": "SHA-256", + "content": "081a2a231e2765996d306b46b4148d7e5bd80e6c7b0294081c6cd8a15a537ce0" + } + ] + }, + { + "bom-ref": "80851a18988049c1", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/bytes.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "2237c36718cf8d884301c36e2ffe0e66673d2994" + }, + { + "alg": "SHA-256", + "content": "35ab937a2a3f4b9bac4e731d3fdca47c982e2cf40ffdebb00e2556aa7852736b" + } + ] + }, + { + "bom-ref": "5db79246e79a5285", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/bytes_heavy.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "f7c0517ae493a39e0a6b2fba90d9b69bc421b4a3" + }, + { + "alg": "SHA-256", + "content": "c7def62cbf7d031c4fe319e414117043f2a273885bff93bd18e11935d00a6677" + } + ] + }, + { + "bom-ref": "e5dc065aac8f7e53", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/constant.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "867d8c9828f16799a7e515fc7d6e1a1fc4e08614" + }, + { + "alg": "SHA-256", + "content": "5decbf923c0f5f065147a7a1a89fd351a26d5d5efd8799ba4ee992a1d00cd837" + } + ] + }, + { + "bom-ref": "cc04883214e6aa44", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/feature.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "a3171c86590f8a9e5f3843ac0fad33f584808b7d" + }, + { + "alg": "SHA-256", + "content": "7a9ddf1f3cc8842d1eb3b9334ae23b1bf82e73de3f2bbf334c7eaef4436b9aed" + } + ] + }, + { + "bom-ref": "4a048c53066ccad2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/fields.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "7ca4cd23a9d13c5a76510a640ee53d506412f574" + }, + { + "alg": "SHA-256", + "content": "ce0f1efbe6ef77f3becd4e898bb3df04ce6dce6c1e93da9eff9adf53767e2b80" + } + ] + }, + { + "bom-ref": "6d93043fe58dc7b3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/integer.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "fd2b597a1b6f3bfd72aa39af3745c7443502692a" + }, + { + "alg": "SHA-256", + "content": "1c387bfbc4bcb4046e7372c534372c7150315499bc5641328d5c3c1c1ad50373" + } + ] + }, + { + "bom-ref": "ef994f9514a5ff86", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/lib.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "c3b757c502dad1e5b175d5aecf744256aaa77093" + }, + { + "alg": "SHA-256", + "content": "93e87fe9dab7e5c3ac6a830e0a7ce06d2b4c94f1ede6a55d190d1c34e6336941" + } + ] + }, + { + "bom-ref": "c1b27f7089725659", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/locale.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "9a9d95896152cd51a70103fa90f9a6d6f21e0fc0" + }, + { + "alg": "SHA-256", + "content": "d584f47f71a525301511965b4a245933e9a936f94406b6bcd1c78e7fe63a7b6f" + } + ] + }, + { + "bom-ref": "004051ccdf3068af", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/overload.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "1edb5ea45c57bed653a0e120f642f1ddafc19a97" + }, + { + "alg": "SHA-256", + "content": "e09d4c8c421d88d19c551c2709d6515d044ae378f09577dbb6754d6376532f5e" + } + ] + }, + { + "bom-ref": "a9899c23018b0172", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/overloading.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "edcbb7cef522a06b150f2468742135128268faf1" + }, + { + "alg": "SHA-256", + "content": "5387b33943963d2e47f05b3f37926f2d454f9ded33ca857e56ffb33b3adb999d" + } + ] + }, + { + "bom-ref": "548755427b6952aa", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/parent.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "beaad3f8596aa51f803297b70566404f337764f8" + }, + { + "alg": "SHA-256", + "content": "e9877a2f677372e9a87706cc637279398191ec2f35890d641f3850a2d7f7bc2d" + } + ] + }, + { + "bom-ref": "943ebf16f97c2b5f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/re.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "f35996ad231e1234eadd1f91392696c4d70d1d5d" + }, + { + "alg": "SHA-256", + "content": "2ea070f2ccc487f31d54f722c9be424ff60ac5012a8744d0eb17453898f12db4" + } + ] + }, + { + "bom-ref": "391e475ea5737c7e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/strict.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "1aeeedf12205b93b7c047ef4e63a5826d12c6faa" + }, + { + "alg": "SHA-256", + "content": "3f100533c2abc1cd0b20060bfe71372c28443b13356fd5604133a69e844fc88b" + } + ] + }, + { + "bom-ref": "885a641c446b3c38", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/Heavy.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c5f082bb3ae167e48598b9fa34245fc0561d3d2c" + }, + { + "alg": "SHA-256", + "content": "db24bd320d0b3619fcaea9e7b94764cd7ba9199346775c464b7b7aab353638e5" + } + ] + }, + { + "bom-ref": "31feadad3f9c0e25", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Age.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "e041b78c75ebc27895168faca7f3118476d45760" + }, + { + "alg": "SHA-256", + "content": "4d028b845a5db9ed46aa6fbf84d5310f357335ca2e183fe109878c35d2f22b5d" + } + ] + }, + { + "bom-ref": "aa52906ac6c30dd2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Bc.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a4459815eafdf5eb81f8e377593bdab6f622e794" + }, + { + "alg": "SHA-256", + "content": "9f2fe3a67d982d458e39e3b950eaff005cdb445855a1a8962054fd90117c9193" + } + ] + }, + { + "bom-ref": "a47930cad9a4b70f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Bmg.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "23ab882a61f02f467dace828ebc62c2c9cfebdb9" + }, + { + "alg": "SHA-256", + "content": "dbba233b9fa658b15b74a50a4cb68e3737358b6f3576ec77b6d3ed1aaa80ede8" + } + ] + }, + { + "bom-ref": "d2763f04bbaacd5a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Bpb.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "48434858ff718a5822ec84b52c829ea2f30c912c" + }, + { + "alg": "SHA-256", + "content": "c0c252bd22d05f0aed20b63a91963176925d1e1bb3800b2960e8151488ea750b" + } + ] + }, + { + "bom-ref": "ceb97ebfc1d4ee31", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Bpt.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a01db5c12b1c1f1bd72d8a33c8045a70c7a4b9c9" + }, + { + "alg": "SHA-256", + "content": "8cb180ddee34b6c00e6a4b0efae211573a3cb0d75bdf867edf421dee73fa6b47" + } + ] + }, + { + "bom-ref": "629fceab3b3ad04a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Cf.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "91d7e79361b3f2c21f72da050d7190592001b2d0" + }, + { + "alg": "SHA-256", + "content": "6bc90370ef1c0d60d5010ed68768ab96857a2c8a2224896b79434864ded3775b" + } + ] + }, + { + "bom-ref": "24d032719c01aa5a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Digit.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c714023ff0be68390d4f08d4c4fda245242427a4" + }, + { + "alg": "SHA-256", + "content": "6431c243ee93924400d54e7bdbbcbf2d27b72df6c7785c6b974a0789e6b64d34" + } + ] + }, + { + "bom-ref": "52ebb1f2547eab90", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Ea.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "65335db2d25a629728d3b21b71f4cddbdb5dc1fe" + }, + { + "alg": "SHA-256", + "content": "9705be4733a19b02612d3a0ae34addde357562f4daeda3ecbc43894e9b8a9229" + } + ] + }, + { + "bom-ref": "e4c7d251811da02b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Fold.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "84ec66889956e728e8b4bedd8b6bc01218b4b928" + }, + { + "alg": "SHA-256", + "content": "64e73283ca6b681e1bae53665e7713ee3c66ce479613966a915c24753e97e2c7" + } + ] + }, + { + "bom-ref": "05cf55dfffb686ce", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/GCB.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "4a38931fcbcfb158f74f3559ba1d1ab7d602bbae" + }, + { + "alg": "SHA-256", + "content": "8b3a0fc99d32e9b4a78cc181fcff9e997f885dbd89370db3523a2afb8c192d1f" + } + ] + }, + { + "bom-ref": "76e1dc69a0f33570", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Gc.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "051d5a90294f8f8aff9e7fa3f257c37cbc014043" + }, + { + "alg": "SHA-256", + "content": "4c00b543acd7e1ed10135bd51f8bf97481f17f30881e663fd51d38d6567d4fc6" + } + ] + }, + { + "bom-ref": "6f5c9d80761c115f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Hst.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "b65b8fd0717df5fd71690834623571cdbdceae9e" + }, + { + "alg": "SHA-256", + "content": "0fa76426c17912f09d82e86b5a3d8740371e96e873f4ce69e4564f78c01f9b8b" + } + ] + }, + { + "bom-ref": "0a05db22d23d709b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/InPC.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "680bc43b779ed58f8fb069e9a3868cb01aedbdfc" + }, + { + "alg": "SHA-256", + "content": "812971a26fbf7e8bf3fbaac74c11a2f10e1f42d30d62c140f371aa1ed8f874a5" + } + ] + }, + { + "bom-ref": "464353eb4730bb85", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/InSC.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "700bca111f9cfa2adbda6215e9a15fea47219322" + }, + { + "alg": "SHA-256", + "content": "44547652c0559b9f7b0a5420ce01e15260042abe401fbb268b88019c41f6e03e" + } + ] + }, + { + "bom-ref": "06e2ced20e4d010b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Isc.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "71255d2770dc4f04ea9e2b5a6c3a654124f8dc35" + }, + { + "alg": "SHA-256", + "content": "5f0e6e890d064053d164b18e746fa26c8232456d5e9d13e204006c9afe66faed" + } + ] + }, + { + "bom-ref": "9de0b196bdd9e7f7", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Jg.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "ad86b9c70a01eb92616997f310f8fdb971778f23" + }, + { + "alg": "SHA-256", + "content": "40f6b6bdce2478e37c3eacb93ea66d63cb8f4bf43b3bf2a00eca5c928c8dc336" + } + ] + }, + { + "bom-ref": "6534f875ea6e6f0c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Jt.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "ff68cbf576945e0036f9a3c172521349af75135f" + }, + { + "alg": "SHA-256", + "content": "2851a6aeb5bfc14be7502cab6e4538a4e90ee2ecf318eea8421406f342fba069" + } + ] + }, + { + "bom-ref": "706886b69f4fee3b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Lb.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "b785f13adecbd4ba68bfb0cc0867f4a1a6564101" + }, + { + "alg": "SHA-256", + "content": "711b9805556488110448e79c33a561d4b9ad1192d494dee093ee93b0aa680fa1" + } + ] + }, + { + "bom-ref": "476d37a8d524d175", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Lc.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "f0c6ab213bc21ee0b38aa4f1d76cc2a3697c2e26" + }, + { + "alg": "SHA-256", + "content": "92a6e31a6557e9273f2c9a8261a4f6ccf5b24c5e9d8050a83c38230e3a25d095" + } + ] + }, + { + "bom-ref": "496c14c3a2a1a191", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Lower.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c396da29dbc0569befbc362660d0a0e33a134edd" + }, + { + "alg": "SHA-256", + "content": "91f865c126c8bb160185b21ab77e23d28a662db12ecb4bead3ae7c7f18335161" + } + ] + }, + { + "bom-ref": "0b718f4bb9c4c106", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/NFCQC.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "735e0ae6f4eb0479d2191506b099aaf409d74a1f" + }, + { + "alg": "SHA-256", + "content": "f8b8ab49be8b452880ffcff7a9903cad803ceb5a476ae3661996b62d43f801a6" + } + ] + }, + { + "bom-ref": "6338be1a06468a40", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/NFDQC.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "137ecde15f31c73c95ee3dc5bb8e6be3df1bd162" + }, + { + "alg": "SHA-256", + "content": "8fb24096855e1fb8579923047876569278fc2398f361ae8bbe3a31973ac85578" + } + ] + }, + { + "bom-ref": "a476fe55ab39247b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/NFKCCF.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a2c9df233c5e09df676d647bc36596cfa2c15724" + }, + { + "alg": "SHA-256", + "content": "f554d3723e0b5f8b151851afd1d55d4f1287a42ae4e3fbd7fe1d54fc3f2fdf33" + } + ] + }, + { + "bom-ref": "720f708e489d37d3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/NFKCQC.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "63362b5b67fca0991ae0fc7556684119ef079d92" + }, + { + "alg": "SHA-256", + "content": "6841152e3da6255534c807756fe45303983ee2921e1d56bb5e65aa3f3e1fef25" + } + ] + }, + { + "bom-ref": "1813278bfa7f3eb3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/NFKDQC.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "24b294d29f389d2c2142a47ab7cfaa1d35162098" + }, + { + "alg": "SHA-256", + "content": "3da082e319f98001015b1658e63f7b10c2013a75018191ab98296fe6c50c2318" + } + ] + }, + { + "bom-ref": "07d4a8a17386a7b0", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Na1.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a13383598edb55ef54c813bd366ae3ccef6f6a1d" + }, + { + "alg": "SHA-256", + "content": "4338bbb345f1eda23db4d98ead1f11b0fc83a68fa0c7446f8ef1254e6193ca38" + } + ] + }, + { + "bom-ref": "ee31e6fe79e323ac", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/NameAlia.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "8f3abc6aeff153e146c99a6fb2b66e78167b9802" + }, + { + "alg": "SHA-256", + "content": "677505f0fc2d62dbf3b92fa8aefd34ce0a54d34a10e657ebfc97c461dec123d7" + } + ] + }, + { + "bom-ref": "75798ea590d43687", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Nt.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "14f11292afd94346b7cb7acbab03396b30f6c1a0" + }, + { + "alg": "SHA-256", + "content": "6e248139111b53022215b537ee649b8f7410b273d8cc35941cd6a0e6267f9e74" + } + ] + }, + { + "bom-ref": "95296b2a1efe5431", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Nv.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "63c2dbe8cbb4e269b50b16e056e9e67ad5a1cf49" + }, + { + "alg": "SHA-256", + "content": "e5c0fe81d290bf7e162e59737c5da8e9832f94c64c5b8f30b6f757f989f99667" + } + ] + }, + { + "bom-ref": "685fe6b548c26acb", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/PerlDeci.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "4a048f02861697f4f16d2c7f406d026e6fcfa57c" + }, + { + "alg": "SHA-256", + "content": "a113ad3a5e05c0c67a4fdcfdf416b2543335e69a313a8d2ee5eb5857b0b67216" + } + ] + }, + { + "bom-ref": "9a1bf9f06016bee3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/SB.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "1414f66ca4d7084d4726cdb290b640659f8c5c7d" + }, + { + "alg": "SHA-256", + "content": "277aa261e41a39930d97c3dbc41d54e729a2a009a79b505cd305c781c46998f0" + } + ] + }, + { + "bom-ref": "6724cd9b5b6a808a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Sc.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "2844b3fe1a2ecda2485ef2f9d234999525a8eb43" + }, + { + "alg": "SHA-256", + "content": "41dc9d9a6a3429ebb812170f02529279c1bea478fb830e57c71753c885f6dd48" + } + ] + }, + { + "bom-ref": "734940a14623c926", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Scx.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "ffdbecbf5cc92db4eff9a266f1d2befe52b93ebc" + }, + { + "alg": "SHA-256", + "content": "cc87c2b0b6b7df26033b8f1d23226bf75f0e2059808195b18b9d7172c3b92952" + } + ] + }, + { + "bom-ref": "a030ac86a686bfea", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Tc.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "aca4c4aaaad42ae1f60ce3de01084bd119db7170" + }, + { + "alg": "SHA-256", + "content": "1378a0eedf0e6de9bc451e1a3ad055b63b7249149bbe10c3194140c6932cdd44" + } + ] + }, + { + "bom-ref": "f0def3b303fb50ff", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Title.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "bf0fee748cd3c5079e1b58fbf5b484035403fa3d" + }, + { + "alg": "SHA-256", + "content": "7169f9955eb9c3f35201a81f32a7c05c31fdfc96a5e14393fc56d60851d82b2b" + } + ] + }, + { + "bom-ref": "6f7949a9c4eea2e2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Uc.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "e3d38dc440a90134b506c7947ca2b138e2cb2da5" + }, + { + "alg": "SHA-256", + "content": "756887753b62ccc861dff6f04f4600cb6a22e981100448a42459750ae38a1810" + } + ] + }, + { + "bom-ref": "94bb5b2ccf3e134d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Upper.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "7a9abb53449940b1b85bf3fd10b26808257a9f1a" + }, + { + "alg": "SHA-256", + "content": "d42a1fff1a14c4e9ed8baeb6af9a89e50fc26362415f6b217767a0fdde87d471" + } + ] + }, + { + "bom-ref": "23651d73e3153083", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Vo.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "30bee3a239f3a99a7f02c73d68406adc078d9f89" + }, + { + "alg": "SHA-256", + "content": "a80475d7dc5b20f637c777afe7a4040b068987e730b142cd29a1bf4728d9045b" + } + ] + }, + { + "bom-ref": "6dae65ff7040d23a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/WB.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a613076e717f46b3b3d3ba087c47f171fe70dee6" + }, + { + "alg": "SHA-256", + "content": "427d902f986f5955c4bcf71cecad88976b0ae187cdf2afb77ef0c72ab3f5037a" + } + ] + }, + { + "bom-ref": "e9c52b3ad3616c1d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/_PerlLB.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "1107225ffe0e58c40380969114ecde70ad3a912e" + }, + { + "alg": "SHA-256", + "content": "1aee8bec9e89e93ed822b208d9e24a5a3ef8c754f911ed878b50897de9d52b76" + } + ] + }, + { + "bom-ref": "ab52a829a83d38c8", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/_PerlSCX.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "72bf5476b9ef01f1537f3f60556a5c2b716a31ad" + }, + { + "alg": "SHA-256", + "content": "618a1409bd777ee9a2c31e30ec45dedb726ccf1d8b71325779fff50360d44db2" + } + ] + }, + { + "bom-ref": "41f534de77fd1079", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/_PerlWB.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "62149a885ca0dc853d8accb59f139e2da1883628" + }, + { + "alg": "SHA-256", + "content": "f927f056e83fa15387d23b36a90cb14c3ce88a09d833a6b1bce47c094b0d859d" + } + ] + }, + { + "bom-ref": "b1e06d19fd56a90b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/NA.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "4083c92646923702d0378328c173190a82b395ec" + }, + { + "alg": "SHA-256", + "content": "617957caeaa7b15678ccadb80507d98c3e4aea448b43d027be2d4911a42e8d2d" + } + ] + }, + { + "bom-ref": "0cbe4bcf3d16e690", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V100.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a471458b0345640b6690e9a87c1348fd37d75afe" + }, + { + "alg": "SHA-256", + "content": "a28cb320c14df444f0f43d5ccbf19857d585cb635405d65226d82780757319f0" + } + ] + }, + { + "bom-ref": "f35bb4293d1456ec", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V11.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "152c5e1d2faf789cdca2a96433023815e0a753e0" + }, + { + "alg": "SHA-256", + "content": "99dd1cdf0dd1068df1be95d3b5f3248f22f997b6f6b5af298a7b043fc85cbe39" + } + ] + }, + { + "bom-ref": "22a14ce246c09b13", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V20.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "262ef4862f4e301724527c08fdc354a8f5266630" + }, + { + "alg": "SHA-256", + "content": "1dbc8d5ee4a08f3e8a31c2e971cd4f6894113b148d0ea7391880b4c4bae9b76b" + } + ] + }, + { + "bom-ref": "474a2fdb2fb07bb0", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V30.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "f4a2eb35d93edbe9ac2711f29542d6f2566f83b0" + }, + { + "alg": "SHA-256", + "content": "391a7d52ebcd4b405a3c3eca4a22787597ad2f6936e84ad732b4139f67fe1b04" + } + ] + }, + { + "bom-ref": "6ef56e58383b7d84", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V31.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "523ffbf87d5825cfa4cd125d87c40e1be155e74a" + }, + { + "alg": "SHA-256", + "content": "6b9de91aad62bf26bf1d349430bf89ee8bacf97cc18b185dc526b1a60df8e765" + } + ] + }, + { + "bom-ref": "9994d95783170fb5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V32.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "fe2e8c3bd22b838189762eef7a130a4f15c8bfe2" + }, + { + "alg": "SHA-256", + "content": "db3d9eb971d8073769d9be5ce9f7d9f6b06a0bb43bdd5265cf60d66af3a3f02a" + } + ] + }, + { + "bom-ref": "18a4f7362e4ee216", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V40.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "44978262e7218185ec3e679cea09cb9a75d5723e" + }, + { + "alg": "SHA-256", + "content": "3a7d0e161389cf074c659cb764a2a9ffb6a79b616e9d41ae495eb7d387951e06" + } + ] + }, + { + "bom-ref": "f0267480c25f74d2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V41.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "6607e96605172c02130758faac1ca3630362a8f1" + }, + { + "alg": "SHA-256", + "content": "b94837edc69740deae470ee4c422905e8f5b4c58598f9e5e8e565d223afc676c" + } + ] + }, + { + "bom-ref": "65421e2af33c1375", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V50.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "991ee82e6affa6ecbe0b068fdea2b0fc46fc6c2f" + }, + { + "alg": "SHA-256", + "content": "e757f5f9f2189c7e32e4c0e2c6cdec267a38785047a8a0455ef63b407ec892a1" + } + ] + }, + { + "bom-ref": "215de5c04d84ee08", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V51.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "ddb69ebb70552c00cc9f5fc2e93024fa56cc76e0" + }, + { + "alg": "SHA-256", + "content": "a6b3fd43fdc88e77d75447efa548d01a31206bb5243165e12b800263ad412080" + } + ] + }, + { + "bom-ref": "7c06430981031cac", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V52.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "4bf2305eb9e8b4e201cbd519b5118a6446f7035a" + }, + { + "alg": "SHA-256", + "content": "0590c3b2d95a5b9982f1a1943cd2260428d5bbccc37cd7f1a77a6c3edae5f6ce" + } + ] + }, + { + "bom-ref": "27dbd952c5f3e620", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V60.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a4b5bfe691440a0e8c53a62d9c0ab8b03d4a7175" + }, + { + "alg": "SHA-256", + "content": "171995416038512979d2a32ac6935049609824200ff1a0dbaf1748c5edbd68fb" + } + ] + }, + { + "bom-ref": "6a8d8fdc5082cb15", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V61.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "0efb4409bd3a38373d70533bc9603a3ca0ed0885" + }, + { + "alg": "SHA-256", + "content": "5efcf536fadd4d9ef9e2860b9b441e1d72c8296e1a73e1b4c0307a905c90c569" + } + ] + }, + { + "bom-ref": "f3c60d043e19c0e6", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V70.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c2cd96f0c2b454e4e5dd197157945b66ddf710ee" + }, + { + "alg": "SHA-256", + "content": "1e9a47e543cb3f1f8bfe9b461a3e2eaf7f11ef5b7adca7aa357c18351838ed0b" + } + ] + }, + { + "bom-ref": "380738637a2afed3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V80.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "b705f74a29396e10475c0dcccab5230acab7fdd9" + }, + { + "alg": "SHA-256", + "content": "ba74e9a07f28119d24e35c6eeaf07f8720f1f7214d139111f6e6d280c7189a62" + } + ] + }, + { + "bom-ref": "a73c93128476e743", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V90.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "e3aee3c46d8150fac4c3fd4f7857873e393de54f" + }, + { + "alg": "SHA-256", + "content": "dc2cb3e08097f098700bf4a6a04592b42b135ecf1f7b65615aa88066e52287f5" + } + ] + }, + { + "bom-ref": "099b6d2db6fe190c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Alpha/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "89044b0aac65982783241e3083a83821f783d10f" + }, + { + "alg": "SHA-256", + "content": "0d66139e7c7342d92c1a7c35626c6658f3ab3460348f7d69a338c1151ef3b49c" + } + ] + }, + { + "bom-ref": "5f431769b78311ac", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bc/AL.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "07154d7b57d99b421777211004806f4786ed5ba4" + }, + { + "alg": "SHA-256", + "content": "1c27c7455e0de25cfeef0b626e16500f13b4c56116ec16d5aebb20f6dda3317c" + } + ] + }, + { + "bom-ref": "15d39c434b5c2507", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bc/AN.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "9307141787cbff4ff0841fb66f0cd3506acf6ade" + }, + { + "alg": "SHA-256", + "content": "5f955370417128abfec4ed381d356865ab9f118a0161aa3785d9f1648310bdd1" + } + ] + }, + { + "bom-ref": "0ebdc1a3950a2cd3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bc/B.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "ba1a96fcd08c71b1056f84ccaf6e775315007cf8" + }, + { + "alg": "SHA-256", + "content": "91e59398f292e15b1f8c5a839e7033ce05b7dddcb92ab031d720817569d78763" + } + ] + }, + { + "bom-ref": "e2f03d9edff53613", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bc/BN.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "fc4d78118f5f8a14b20b7d8897bd0b365ea0dd9d" + }, + { + "alg": "SHA-256", + "content": "2c59dfb109195fce0d2b950c191679af90eed06db688fdc1a67378926936ef09" + } + ] + }, + { + "bom-ref": "249d0b3543ef007e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bc/CS.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a3ce4e949407038822cc228318884d23284198aa" + }, + { + "alg": "SHA-256", + "content": "6b2bfb9c880ef856fb1b5026741336bc5d11ab0f6f8a8590da78f8da687d3695" + } + ] + }, + { + "bom-ref": "e3140d721809cbfa", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bc/EN.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "737b5614085c16861aa865bfe0a0694ec2490156" + }, + { + "alg": "SHA-256", + "content": "9d7ba74f75f5d2ab948c69a1ae4458ccc757bec657f610e030435b6c43a5d82f" + } + ] + }, + { + "bom-ref": "2c60549f26d1b670", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bc/ES.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "67c75226832f7e45a0ace9852f653c822ce14fc0" + }, + { + "alg": "SHA-256", + "content": "44024d4c6db92408ee2067033687b9a4934a3a803bdc65ec9d9c9987cb445a65" + } + ] + }, + { + "bom-ref": "2328c8a8577789b7", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bc/ET.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "70eb355322e85dc569a3c0850c332f0763e21bca" + }, + { + "alg": "SHA-256", + "content": "94fe0b40e5a682de67a4d786e0fd684c32230f7547f2837a293475cf5c6024bd" + } + ] + }, + { + "bom-ref": "ea5fc7dc0585c66f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bc/L.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "f2250677bd8a2c4329f8e89bb04b3f3afe3cf204" + }, + { + "alg": "SHA-256", + "content": "f738b67f9f2ea65452fcde4d3b470f4c3f350bd39913e29ca29eea5172d56014" + } + ] + }, + { + "bom-ref": "6ceae4e2cd27da31", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bc/NSM.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "f82093c8c881c81294076e5dd1f5b1eb0ea8de3d" + }, + { + "alg": "SHA-256", + "content": "e3597120535589bf86d712478b15aff394386c19bc5dd3f0632e9c42b8cc5822" + } + ] + }, + { + "bom-ref": "d4f8f48d50892455", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bc/ON.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "87b38a433ffa7519ed1d142c68678eeced9ea51e" + }, + { + "alg": "SHA-256", + "content": "f2f8509923e40a5e1a33a8923f8552fca1eeb2726d07a31a1f18eb4139baaf77" + } + ] + }, + { + "bom-ref": "6d896d43bcc51e3f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bc/R.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "d1dc382c7883e9ac2adb29cba2836bb95c1b9998" + }, + { + "alg": "SHA-256", + "content": "2ae1297cf3e5cacc4f8d6ef80da3b3575baa48dd56675b5783a93b8d287a3bb7" + } + ] + }, + { + "bom-ref": "020ad9b8b2649d96", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bc/WS.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "3cc7075aad00ffdfa220241b526e3e06414aec00" + }, + { + "alg": "SHA-256", + "content": "4833df0ee5d62befd8f7178db8440dd4ecb2855cd019e7407139cc1291f8046f" + } + ] + }, + { + "bom-ref": "8485c6e6ecb4f906", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/BidiC/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "38d1257d8f9353bb67929bc957438a9a0537768a" + }, + { + "alg": "SHA-256", + "content": "27cf49e917225fea0d0faf5a503c1ad8c1093581509645768aeaedd40b7b9818" + } + ] + }, + { + "bom-ref": "6529286d1244508d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/BidiM/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "6136a2e056e5ceb6cf7111df38bdbbf1ca8e2dc0" + }, + { + "alg": "SHA-256", + "content": "67c39c53542c15877ce653f4ec03a64e3e7d710800a215a8b93783221290d6e3" + } + ] + }, + { + "bom-ref": "9eeffbd6e9c710c9", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Blk/NB.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "13c8be42fd03c8004c17c5ae448ebfea25a3ae55" + }, + { + "alg": "SHA-256", + "content": "2311eee6e5bfa326371c0bbd00108c665d5a19600834b76548c218a4a512fe04" + } + ] + }, + { + "bom-ref": "c2d10c8bd793275a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bpt/C.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "7f902519f042cb3b3688407e4b4de3cdc2e55af0" + }, + { + "alg": "SHA-256", + "content": "acfb96b11a1c55a80e67e6b767ff0961a65279c205a56680f905abeee560ef03" + } + ] + }, + { + "bom-ref": "6e206c1c807a318f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bpt/N.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "956930f1103424429993b415d0bad7f174f97f31" + }, + { + "alg": "SHA-256", + "content": "5277583252d861c9a72b756676ae07fbb27c395b37b21c546ca65b2f6155b302" + } + ] + }, + { + "bom-ref": "e1c7b549b8d323e2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bpt/O.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "da6bf08c3248e4ebeb47ce7575d98fffe1607fb9" + }, + { + "alg": "SHA-256", + "content": "542fc27ac7403300c6a64b7e6821c9c515cdaebbf49835ba7001ec36abf2ca40" + } + ] + }, + { + "bom-ref": "b396a0f76bc8fb20", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/CE/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "543c0fe0175c6fdedeb9932b77ee10b39fa0f63b" + }, + { + "alg": "SHA-256", + "content": "ca2f2d4834133c9c41a16e403744626b96e4a79af05a51a6f4cf62b196811c4d" + } + ] + }, + { + "bom-ref": "519ce254d7924ea9", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/CI/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "097cf5b57ffc6d966c047a1aa5ef6230c2ef8e27" + }, + { + "alg": "SHA-256", + "content": "3feade17477bf318e741a13849e2d10e26c377a9df1368ff7c8c3bc76a217228" + } + ] + }, + { + "bom-ref": "ea2483aa9020d8b6", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/CWCF/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "dc9537d8e7cd1bb0108369cc1119aab02f547448" + }, + { + "alg": "SHA-256", + "content": "8c87571d2d5f239f56305c68f75b5c3e4d209bb18b265439fa9ef3884e07ccf8" + } + ] + }, + { + "bom-ref": "e00f66330c3c01b2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/CWCM/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "2e6983d4c301f0e93457363a238ce091431085c8" + }, + { + "alg": "SHA-256", + "content": "546bb4318bf0f62965ea88ae2fb2e4e013712b254b77ab96d510d7e102c2daa3" + } + ] + }, + { + "bom-ref": "66efcb5aec85ab0c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/CWKCF/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "739d28110cd46be0eed065c551b90f9722aeef40" + }, + { + "alg": "SHA-256", + "content": "320dd06280a889a9011ae5813be52b0b27c1dc520cbcfeb42b20c983f5a8924d" + } + ] + }, + { + "bom-ref": "ed3ce3fb7099803f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/CWL/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "3c6df3bb96407428b049f31db0000932352d7430" + }, + { + "alg": "SHA-256", + "content": "d81bc20e625f52b51edf156aea5b014c78b6d3db30b8caeb612ec541fd09e6e3" + } + ] + }, + { + "bom-ref": "5cff23f8109bf1c0", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/CWT/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "18e9a08a62fb9ce73efe41538c908bebf41c831b" + }, + { + "alg": "SHA-256", + "content": "e7b7d2eeab7cff214d61163721315b7fc0e5b0075c1b92bb19d8e7b544074111" + } + ] + }, + { + "bom-ref": "9f1147295e140a59", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/CWU/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "1325f9931b06d19db8e26a4afbef023297f7bda1" + }, + { + "alg": "SHA-256", + "content": "439979cb58c2529070dc30bc2173207cf0be67af4582b92d0cef3f5bb58bf92d" + } + ] + }, + { + "bom-ref": "a2ae30e1998be8cc", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Cased/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "32c816e908b7ef18a235b28f3aeed27521755228" + }, + { + "alg": "SHA-256", + "content": "9c2800401d858bd32477fd1f87e12dc684d757f40e1407339ed0b0f9073b95cf" + } + ] + }, + { + "bom-ref": "6e871f6fb8f01a78", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ccc/A.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "0d859e5aa74740cc38386d70a81cb4063fb40e39" + }, + { + "alg": "SHA-256", + "content": "2718a40c2d57bfd00f0f3a702343dd28ce7b7bb889dbbdd72d86961a732d1ad5" + } + ] + }, + { + "bom-ref": "7f3f64be647cfaca", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ccc/AL.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "74289ca7a1005efa419d4200f1bfa07a64aa9575" + }, + { + "alg": "SHA-256", + "content": "e5088d2eedbf1b287aaff5d15cf3fa732e26af39ca4e15864837a2f847187c8d" + } + ] + }, + { + "bom-ref": "00db767c75a51f7f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ccc/AR.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "ee3878528e62d9fdca29564c5aa4b40304e0b643" + }, + { + "alg": "SHA-256", + "content": "ff47a865d73d70e555f2b40ac5e5d498582cab70361bf8114d207a96aaa29047" + } + ] + }, + { + "bom-ref": "4ebf7aa4ad9b31d5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ccc/ATAR.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "7b98c36ae7aa9092de11de439a2827c8b8075871" + }, + { + "alg": "SHA-256", + "content": "be356873be111e19b9d45af7c90d03fb9ab6f24a20b21d3ce83dc3590c552f48" + } + ] + }, + { + "bom-ref": "57d890d5e2929bf1", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ccc/B.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a9ed193afa1822c2cc3e826b7f0c24385932ce2d" + }, + { + "alg": "SHA-256", + "content": "c023014e90797541844278580b8c3498f47b32c200ba7871134159138fdedf45" + } + ] + }, + { + "bom-ref": "8a63659a713fdf6f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ccc/BR.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "f3669d2ab64d725bdc8223f23911b72cee04a9a0" + }, + { + "alg": "SHA-256", + "content": "779f502245ff2d8ce6df6bef379dcb76648b876419856d8210c94715e87c3297" + } + ] + }, + { + "bom-ref": "491e64718cc3dcb3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ccc/DB.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "9582d1af53d020940fbcf992d46d0ad6c4c47276" + }, + { + "alg": "SHA-256", + "content": "a69d27057a6c553c244c2bc9af83dad66de7b7ebf95c645c020ba6f82351ebbc" + } + ] + }, + { + "bom-ref": "1982a2ad0334d73d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ccc/NK.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "7754fdadd66d67403d4487b1091fe3242002c053" + }, + { + "alg": "SHA-256", + "content": "56bd09c830b951db7efb376eb3e612aba17ff80d515f98095b0bdfbe3f61f061" + } + ] + }, + { + "bom-ref": "5a60e16ac4d8a6c4", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ccc/NR.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "6fb71433eaa2316802e74ed517195262f1de5043" + }, + { + "alg": "SHA-256", + "content": "e7e2f2f544b3aa7d49e5d51980190429c781b9b5c994ecb3ffc0328be3d3d9d3" + } + ] + }, + { + "bom-ref": "6a636f889b91481c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ccc/OV.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "cf2a57a0991be325598a9f9d02498e3dd69fb5c0" + }, + { + "alg": "SHA-256", + "content": "18e0872cf6744001515335d9838cf22bec0da1a1dbc6afefb29083966152b533" + } + ] + }, + { + "bom-ref": "4a12ad76e84b31c5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ccc/VR.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "9dcea2a7839a5141d3f0674325bdc6fc5d66c310" + }, + { + "alg": "SHA-256", + "content": "7a97dde998bc1d0eb67fd5081371dc4e00725a9944756bec9ef3da6aa6a89696" + } + ] + }, + { + "bom-ref": "fbfe2dc12609f372", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/CompEx/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "1bfeadbb7543ba5b6e079c90bdd7f0fd3709ba50" + }, + { + "alg": "SHA-256", + "content": "3d1bf26c4ff351adca99b01de5d6a744202a179027dcfc12862972db2ac166a4" + } + ] + }, + { + "bom-ref": "624b66c6dce6f9d0", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/DI/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "609a46100599f24db4be52ea20c604a891f05ec2" + }, + { + "alg": "SHA-256", + "content": "923f227c6c393c372888253b081a050e8056bb040de6226df431859c80b01301" + } + ] + }, + { + "bom-ref": "8d1d1a2dcea3ea88", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dash/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "dae549a9221c31093d606acdbce6e19daf7890af" + }, + { + "alg": "SHA-256", + "content": "b8256a6f3f6a55b16d3c175743bcf1c3ae666def4935ddb5b1e8d2b3007e4e01" + } + ] + }, + { + "bom-ref": "1b818a08aeddadd7", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dep/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c8d6f47d3dfdfa3ce8f0da85e8fbc73782f54745" + }, + { + "alg": "SHA-256", + "content": "b4eed9050669b2eb5b9cf6799cf4b2a089397bc3df254d1a1c8ecd398c955027" + } + ] + }, + { + "bom-ref": "625af16d0a6b0cab", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dia/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "80e4fa67678dfbda2d542ed9ba5c715fa2add8db" + }, + { + "alg": "SHA-256", + "content": "96156f7a3b7971ffe9cb83f48e8747b55f0461e7d9f913f73c2b5f43b623988a" + } + ] + }, + { + "bom-ref": "d1c9703b732cd26c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/Com.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "95a0992b64856d94f451de8df5a3401ec162540b" + }, + { + "alg": "SHA-256", + "content": "14542c4c5981eb2d0bce2f5edeb59ab66643d931554b9787dd5f988ef16ffc0a" + } + ] + }, + { + "bom-ref": "f32f018b5c63c4e2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/Enc.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a01e0b42810c223446f64df827ea745d98f39ac7" + }, + { + "alg": "SHA-256", + "content": "a38d61911c780619814cfd19f28a1d8cdfce23c5020dfd55a11e0d728a902700" + } + ] + }, + { + "bom-ref": "1291b83c83e49e6a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/Fin.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "e9ed0500c836b8e9fb850f5ac779617947a66fb2" + }, + { + "alg": "SHA-256", + "content": "4f21a480273c93b39d1d835c0e212e97bfe95b67940948fd6462f8b041602312" + } + ] + }, + { + "bom-ref": "d8d28f2f4a80bf6d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/Font.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "7db1461aa70a11e303af42124f625bb45c99e5fe" + }, + { + "alg": "SHA-256", + "content": "b727404e6871ecffc3d60986b29b8990bbf0093c975245edd30b6ed712277cb6" + } + ] + }, + { + "bom-ref": "1e7deaa64aff51e9", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/Init.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "06dfac24c74e8da437db40e9dde8da7da45e98b2" + }, + { + "alg": "SHA-256", + "content": "2efeba37e1c94d398dca7e3e3f6e3031168efab85ab05a4fe3313491a61f07a7" + } + ] + }, + { + "bom-ref": "75d4f96001639b90", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/Iso.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "93ec438cb444a2263feab20087a246e997eace29" + }, + { + "alg": "SHA-256", + "content": "4b4541612cf7252017a94d3cee3e31608cb13c86b2b92afce449f277ea6e6254" + } + ] + }, + { + "bom-ref": "416e64f42adc60b7", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/Med.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "4e3bed7c8bcadc13ddf93d78a25506a34f663db4" + }, + { + "alg": "SHA-256", + "content": "954f874a00998e847ae660c8710a2ae43b8587d52ba1a6caab856eff2bc4c396" + } + ] + }, + { + "bom-ref": "5beb4f873aabcada", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/Nar.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "0ea7efe8170fd221ac3ad642ac08ab9308ad953a" + }, + { + "alg": "SHA-256", + "content": "43a762dd2b5eddc257122b8f8b090f529fd6fa6fd0f1aabe1e50d98704617e3f" + } + ] + }, + { + "bom-ref": "fa6c4ad501561e7d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/Nb.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "fe0152d2718170513de541af6d1bab11143ec51a" + }, + { + "alg": "SHA-256", + "content": "ac44f80eb982cd6f075fac34355cd66ee12b0286bec403ea016016d536fea395" + } + ] + }, + { + "bom-ref": "338495753a78d4a0", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/NonCanon.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "43c12400ea31d39b61d2fb60e6da5fd311b07073" + }, + { + "alg": "SHA-256", + "content": "69e228189cf372b29d554414da7ab28fd76fe47923654769eebc77f4de7f2b90" + } + ] + }, + { + "bom-ref": "d675a4734efe828d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/Sqr.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "398a1947787ba6f7bd014aeb7e6c5c58cbc97f8a" + }, + { + "alg": "SHA-256", + "content": "f30c639d1403109d826d98d9268a14cae1d017d5dd1d912f2d1b0fd830736c9b" + } + ] + }, + { + "bom-ref": "b83decb669bc2c8c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/Sub.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "0557c4c3b41fd32412e23a0e292e7546afeec97d" + }, + { + "alg": "SHA-256", + "content": "1954ebdc36d34be45faa9ac20db8cf95942a259c175ea3e47b45cc8141a67326" + } + ] + }, + { + "bom-ref": "1fd4c649a19f5c0e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/Sup.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c1e3bc746071fba3df1b4f9c45baab557cbd4bdd" + }, + { + "alg": "SHA-256", + "content": "4a235f48f048e523331281ba3ff5a1d71ec67e12355ef7f2c5dc0fb0bb254407" + } + ] + }, + { + "bom-ref": "87226b86c99f2dc2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/Vert.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "495d39a7f3fe0b80ce367030fe8481fe422a7990" + }, + { + "alg": "SHA-256", + "content": "ae56761dd27f522e4bee2b2543ee64d0ccb85664cce71e90a0a7d673f76a33db" + } + ] + }, + { + "bom-ref": "822e25069f7f40e0", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ea/A.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "e956df7a29193e007493da1351931dc8d23402f7" + }, + { + "alg": "SHA-256", + "content": "b459018a285c5ed37e4737bfca4df2cd42774296ad50b6f7117b90f9248ca918" + } + ] + }, + { + "bom-ref": "07c2861efab6ecba", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ea/H.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "8e61caf4be329e9c9c0cdab0124e9b2954e905aa" + }, + { + "alg": "SHA-256", + "content": "da7b3cec33ba565387ea09b4f6497d367d2c18c2e2f5150ddcf1616c5da8c957" + } + ] + }, + { + "bom-ref": "a82cfcfd75644f84", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ea/N.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "8638b4c39d34d326b09841b710ba368062bfb5b3" + }, + { + "alg": "SHA-256", + "content": "3acea7adcb6b7d1879af19f7c38d231a2b9ea790c28d5947a80088e5dcdaa653" + } + ] + }, + { + "bom-ref": "5e94bdf691f0b6c3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ea/Na.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "58fd94c1b196faa79da57e9324fbf98049918548" + }, + { + "alg": "SHA-256", + "content": "7055cb263dff22d78992adbb97b9d18011cac2c2032bed7b4c68e99127368aff" + } + ] + }, + { + "bom-ref": "e1bdeecb8701d77b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ea/W.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "aeeea66b901b9de3b95f777eade2e8db982ecf53" + }, + { + "alg": "SHA-256", + "content": "9b5ca242fb29ef9bd7f9748a4848f670667edfb344d19be8c2234c880d67e560" + } + ] + }, + { + "bom-ref": "351bdb5075d9153f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ext/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "396b30cc13f6c2c20b9cf784f17f9c1caf2d94e9" + }, + { + "alg": "SHA-256", + "content": "6375883e6d0116708d66691f64751f3bdeddb4c0bb81f4f8b1dbdd5d049afd5b" + } + ] + }, + { + "bom-ref": "bd6698b15f74e16b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/GCB/CN.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "032b33b494aba1792705a14cb30bec878d9ce8bf" + }, + { + "alg": "SHA-256", + "content": "292e9c3ea238f1dfe550338e176d8c7d5da394d3e779801de91d422e5d039d19" + } + ] + }, + { + "bom-ref": "31c2c5e2a529d145", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/GCB/EB.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "ff54cfe4fa4de9dd24d0475a832c454b74df8084" + }, + { + "alg": "SHA-256", + "content": "433750080ae7596886ffddf734d5029fff9efff4fa1ce0b721a0512cd2a0408e" + } + ] + }, + { + "bom-ref": "8d57a190c8d110b0", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/GCB/EX.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "8fd3c67e83d979c2a45c150cd26e23b45c6c71d6" + }, + { + "alg": "SHA-256", + "content": "fd983b42d28e19a87420f342c571043b71557065a9854e696cde10995cfaa4ed" + } + ] + }, + { + "bom-ref": "16f7c41cedd9c53c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/GCB/GAZ.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "b0711519473efe5d3406bdf5eaa159cf537db2f7" + }, + { + "alg": "SHA-256", + "content": "8f433059177ceb49097ea31c72961d5237aff7a3851b31546fe61cd436b9e1a1" + } + ] + }, + { + "bom-ref": "52e524dcda024f5e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/GCB/LV.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "f314f43461d284ceb6d860cde4715a0c7a531793" + }, + { + "alg": "SHA-256", + "content": "9ca0b31ca06b07a9c9d2dc5035d97de6c92d94952677f58031a18bd5b3474fa4" + } + ] + }, + { + "bom-ref": "36975cc1b229bdc3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/GCB/LVT.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "dabe323fc8139d8cbe4ef5d6bfadf65932afdd74" + }, + { + "alg": "SHA-256", + "content": "c71f8a85b712358572aafb9e7868ca4afd4242310cce8d96cbbcb8ab5dd61ca2" + } + ] + }, + { + "bom-ref": "ffa6007170f176a6", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/GCB/PP.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c762cc1ab8c185220b53246c1ac0906c4b3a611f" + }, + { + "alg": "SHA-256", + "content": "74b06dbbfe3be53c24e04cb1c452049847bb2ad79a8affa497c85549d895d17e" + } + ] + }, + { + "bom-ref": "9b9610cdb73bc49e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/GCB/SM.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "635e94a1d7bd05d72bec64a2ea395f4ece71bac0" + }, + { + "alg": "SHA-256", + "content": "9d223b75f0e51a30e03377b2b4bbfb9d1880026ebfa3c74b01e4c202a35c3c1a" + } + ] + }, + { + "bom-ref": "bea45f8955e08fb3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/GCB/XX.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "3c184b8837a6c08f5589d56381e65cd3b8905ed1" + }, + { + "alg": "SHA-256", + "content": "e08f1f1beab13fcf1c03ebd965094843a4c137bcaf7a5a4cd4ddef68f4b967f4" + } + ] + }, + { + "bom-ref": "e33c0c182fdc7417", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/C.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "0e5a37c840941b8848bac9441acab12009929e29" + }, + { + "alg": "SHA-256", + "content": "97e995675fc32af746766ff0b232b2b1e30860a54d3e5f3d43acbc1600d6e0ab" + } + ] + }, + { + "bom-ref": "cd76261436aa7f9d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Cf.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c2fa2fe65b24d4d1875056935df2e3b9b28ecd04" + }, + { + "alg": "SHA-256", + "content": "5741625da5602f93a49489c2c286d57011b2c23ef9bee710d13ad0a8acc03725" + } + ] + }, + { + "bom-ref": "1ee142192e54825f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Cn.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "62ff4c2f21f2bf187a56762c1b1531a316d0842a" + }, + { + "alg": "SHA-256", + "content": "daefd17528b18c03393edf81daac8fb039dc6fe39b9db3fea639197dd5a2019f" + } + ] + }, + { + "bom-ref": "587ca1ced12bc87a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/L.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "6c8c0c223e24e1abab9c5f83e0fa6c51366516c6" + }, + { + "alg": "SHA-256", + "content": "3ae80f948a4aa36bef20e8963e746f5aa89bf3af8f57624b412f45fc5e859cc8" + } + ] + }, + { + "bom-ref": "5b8019635d58bbe5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/LC.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c1eddcfbe299ea792104e706cae856d051230fe8" + }, + { + "alg": "SHA-256", + "content": "1ac403d5322e95979cd9892a56337d977ee7f6b44284a0dc74e79b9358872248" + } + ] + }, + { + "bom-ref": "590c883802fac21b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Ll.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "5717e868dcc5c2b897a2ccede4f1ee8b2e5a4c48" + }, + { + "alg": "SHA-256", + "content": "ff2b991edb5b67c3f5db10076d3df02c3dc7c01809a85759372e625eb1e220be" + } + ] + }, + { + "bom-ref": "1219f01e41bb251e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Lm.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "e9471efb0cfa6ccfb871b1be9312c7b6074d1368" + }, + { + "alg": "SHA-256", + "content": "6322da67b6003afb092577f2547b5a4844c90d9ad8c7d541c76b60db729b8037" + } + ] + }, + { + "bom-ref": "15e457570728defc", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Lo.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "878eb443855f07f463b7fa4f6a64fb7add7573d4" + }, + { + "alg": "SHA-256", + "content": "67f71a5e26b7111cf68a2d7bb316fbb1ba4781365b68a9287cf835685cad2d31" + } + ] + }, + { + "bom-ref": "37c59252df653226", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Lu.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "12574f2782472e8cda92bc4b1711be942b391275" + }, + { + "alg": "SHA-256", + "content": "d52da5c6e5fac1fd08c047d561448e06b35376e58cedd5413d146cae2250251e" + } + ] + }, + { + "bom-ref": "5e30fccb2375c579", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/M.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "5d3b95b8ff6f52c0cca38b0d4566db1f3f5afbfa" + }, + { + "alg": "SHA-256", + "content": "d1e1eaf8b0c665a156179f193f9058276843af6ea292088a71418b8d8f072b99" + } + ] + }, + { + "bom-ref": "12f21bde153329fd", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Mc.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "92bf946efc709ec6b4861f112efe2eb333c72528" + }, + { + "alg": "SHA-256", + "content": "2b721b083f86cb6add1f82310bdda65b58a1b9a981714844cafe20c96ee3893d" + } + ] + }, + { + "bom-ref": "f4833fb86a260542", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Me.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "5ba75d67e3de57b9a713c2af7a9cdef551c3d575" + }, + { + "alg": "SHA-256", + "content": "4795e74a1493084597efca9d30afb93d35f6ec5aac14f10dfbe85f029d01a158" + } + ] + }, + { + "bom-ref": "06a31091982f1d4b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Mn.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a1c4985b39e6f0af616e017b051605780408a781" + }, + { + "alg": "SHA-256", + "content": "cbf3e4cdbdc96ea636d80fe15d16931b6bcfb1dc83e54147ca22557701e3a002" + } + ] + }, + { + "bom-ref": "d36050419526588f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/N.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "feb6c5325a14b097c60fcd66d013c8cbd12fe2e8" + }, + { + "alg": "SHA-256", + "content": "9ec0de7b2dbb75abc88eeb503e9cebda4cc4863a2da66b90f02ad2b737164e7d" + } + ] + }, + { + "bom-ref": "c90ae24a78223b4b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Nd.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "eb4f2772840dc74042ba0a6aba998bcc98377f77" + }, + { + "alg": "SHA-256", + "content": "63e1f1291d99f8d76938eaccf6865f27c0191522f6c914a4191208d7504b0acb" + } + ] + }, + { + "bom-ref": "9817b22cb219543c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Nl.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "cdbfaafaf63a01e0bda1e472e4d44805d4f7b67b" + }, + { + "alg": "SHA-256", + "content": "aff3512e8f5cdc6cb269b622efbc95409072bd5b983a13e73fbef116c12bd652" + } + ] + }, + { + "bom-ref": "4ce456a72d0ec1e8", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/No.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "448db392e4743d60a9be8d65f7bace2edc95b554" + }, + { + "alg": "SHA-256", + "content": "becb3180f6dfe913ebdbc6bb30e611f516015824188e246834c3b729a7cfeb3e" + } + ] + }, + { + "bom-ref": "f3c54903ce94e861", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/P.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "73909d6bc6d21ce1db0a6d2d5ff34fb5fc1acd8f" + }, + { + "alg": "SHA-256", + "content": "ecbfb8751edf38b6e139033f2e8650165cabc81cd978103e85d040d58c5629ae" + } + ] + }, + { + "bom-ref": "44e9ea3d5ad12c24", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Pc.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "bb08f07486f1826b49ac4d263e09b166190e0be2" + }, + { + "alg": "SHA-256", + "content": "ab30f6d5f74729dacc2dd2bdf24ae528c3c9ee09ed87fcd54bfeb87d029d891e" + } + ] + }, + { + "bom-ref": "6b2a235d2bfc9cbb", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Pd.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "85470272da94db8f2fe3c206781bcb8c8854485a" + }, + { + "alg": "SHA-256", + "content": "00808b36fd5ad3b3a130648ab2438a671518e71bc5997d3ac0bce64f63f98a79" + } + ] + }, + { + "bom-ref": "2a18322f684bccbd", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Pe.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "5062be0373d4568bbad5e60438a40dec8225a945" + }, + { + "alg": "SHA-256", + "content": "1f38acd79ff15892865f9fc73287cd62033fd54faec8edf0ac30996a7f92906a" + } + ] + }, + { + "bom-ref": "f058e5265229fbc1", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Pf.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "2c96a6cefa85f5aef51e113b7b4c6b8902ef2400" + }, + { + "alg": "SHA-256", + "content": "1ff4b37fb9c6abc1acac657dcf889ffe615482c2af5c1c3be6424bf589f6ff1b" + } + ] + }, + { + "bom-ref": "2c9ecf52b29b6adb", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Pi.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "61d5d86cc1a98088a1ccd74e0864c37a23319af7" + }, + { + "alg": "SHA-256", + "content": "a645dbf9f1582d7eb47bd9e51c42681c88aa6ad77cd7a6427b1ffa2bad6cba6b" + } + ] + }, + { + "bom-ref": "50a2d7da40c5719c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Po.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a49f607dc5b777ab99d1823d5282f1113de39e07" + }, + { + "alg": "SHA-256", + "content": "3d87e6eae9de3c634c9a00b9200fc5a384e107cfe585177ae4764b68e4eb79f6" + } + ] + }, + { + "bom-ref": "fbf80bbfe8c816b7", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Ps.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "e7b4922596f748b46629eae961f4ff73cc13ab78" + }, + { + "alg": "SHA-256", + "content": "45b14b4f7c1557c1d6bbd19bc3c27563c2146636ae862f63037c5a3ff41f9df4" + } + ] + }, + { + "bom-ref": "050fbc0468b585da", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/S.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "223aa031ac2476b9df053f6b7a10a1c70a3feec8" + }, + { + "alg": "SHA-256", + "content": "1b77abca41c50430848f4e318f8086dcdcdaa8dff7a1e513543d8080d23d0653" + } + ] + }, + { + "bom-ref": "628a3949b567c591", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Sc.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "efa3b4cb980d4009ae70c18faa4cb6eb49b472e3" + }, + { + "alg": "SHA-256", + "content": "0f6816eb603c8c4c4cf14bccd06c77c8e3314efdbbb922807f827ecce920f328" + } + ] + }, + { + "bom-ref": "836180fde5693aa1", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Sk.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "025ee587cbd03aed5cc87ed15dcf6b2fe5bfb4c3" + }, + { + "alg": "SHA-256", + "content": "bb1b599e62059328e11cf239391632f4189f5433aceb64d5b370b10074fdeb4a" + } + ] + }, + { + "bom-ref": "4660850fe7a51837", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Sm.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "3d0f4649a2277ee99f5adc7b160daba0d16fa918" + }, + { + "alg": "SHA-256", + "content": "63bc639f90f4ef18c0646ecbe8572d93caec35e03276479d8c2bdbf53dae602b" + } + ] + }, + { + "bom-ref": "9a6a16df213b3a0b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/So.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "b45cccccfd9671e33631b78e1c4d8707c08ae67b" + }, + { + "alg": "SHA-256", + "content": "68666cd18ed419f0743fa4df08c35a98f95e58e9994010418b341d36d66322a7" + } + ] + }, + { + "bom-ref": "8c27218346c153d7", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Z.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c3e852eb028a229a26f7c58343b8b0b4294a0ed5" + }, + { + "alg": "SHA-256", + "content": "f16b45102de2aaa3af34b82b00f001dc682db2671e4de0cb3a17bd91df0db0cc" + } + ] + }, + { + "bom-ref": "54882195cc120780", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Zs.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "09c6ef4c51c2005c75aceb62f979c928bcce48a6" + }, + { + "alg": "SHA-256", + "content": "7df5c11d3d3bab3651ff2d969d859d97b66ca562570a8f9ba97cde06d300eb76" + } + ] + }, + { + "bom-ref": "74ca229ee2c7bb00", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/GrBase/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "6ad8da32d30bf261eaf17020327ac0956d1dc199" + }, + { + "alg": "SHA-256", + "content": "fcfe782552bdc88af49cd9295768af44c062046c0b8780ce3b266c7966bd3ba5" + } + ] + }, + { + "bom-ref": "cc28075e1b092dc2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Hex/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "3482c552226529b8baa8efed3a14b76803b86bb2" + }, + { + "alg": "SHA-256", + "content": "cd9dadf888ac1fa1b6f1bf8c18fc6d125cb5fa7728e4397356e829e8b9b4cff2" + } + ] + }, + { + "bom-ref": "09ed109d7875afe0", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Hst/NA.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "dc5842bce49ff4e8895ee6364513eda2fdf02820" + }, + { + "alg": "SHA-256", + "content": "eb50571c127db80c66e432dc3e330aa015fb96142212ccd821e3754c25a88e23" + } + ] + }, + { + "bom-ref": "3a3c02abfbf0df8d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Hyphen/T.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a60f4783953ade34423cfc4b8a643deda9a8dddf" + }, + { + "alg": "SHA-256", + "content": "71b76c8fe142ec49028b55747027e1cce1bf841fa15880083f8c890b332107b2" + } + ] + }, + { + "bom-ref": "bcdee3eda201245d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/IDC/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "1d761dc5321a868a3b699e160272a52b38a2b5fb" + }, + { + "alg": "SHA-256", + "content": "e5b7660933b74b8a9fa30b2fb3af88dcf4bd7591e2340022611e29f410c42c1f" + } + ] + }, + { + "bom-ref": "6c663dc2e4bb429b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/IDS/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "16a4883df6ba1b4afa584d5417387643493800a7" + }, + { + "alg": "SHA-256", + "content": "d0bfdd7894414a47efaf475202871560fe27d589ac5364590d7ce0ef78bf4654" + } + ] + }, + { + "bom-ref": "2b3d5289870294bb", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ideo/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "982f5370f79c8c93cd11700578d1ee72a836e4a3" + }, + { + "alg": "SHA-256", + "content": "48d27169f9ad5d58206f6dc771c945a0fd844019c0bd42d15a68e45784bc2d48" + } + ] + }, + { + "bom-ref": "d7a7e6a7d9f7bbc1", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/10_0.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "4b0c25a9a94d428f488b332d999135eaea19d81a" + }, + { + "alg": "SHA-256", + "content": "d5170c8dc588bbcc1e2de148e7dddee99b1ef8f0ae872abc5dff8e35b030b8c7" + } + ] + }, + { + "bom-ref": "d4fe1e28b0bc7aba", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/2_0.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "e5b1552f3cdc3f6fbf76cd42073b90022db362e0" + }, + { + "alg": "SHA-256", + "content": "8053ae801d7f66cb65785836ef99c7aa8ba6468b952b4ff589dcde18e0dd78cf" + } + ] + }, + { + "bom-ref": "87423651aa49f9f9", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/2_1.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "3b30ead9c03c629de4d3c27bde0064277b7a1a11" + }, + { + "alg": "SHA-256", + "content": "3d41772bc3a88473837bc1e725893cb8fa883c9ca6396a417216efa0ca86035b" + } + ] + }, + { + "bom-ref": "0675e314ee7b4dac", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/3_0.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "678828072cd852a966c47663422ac0bec88c8b21" + }, + { + "alg": "SHA-256", + "content": "08579733175c30685315564ab583a1d1dc67d7bd52cf1903e77c3c3c90fafac8" + } + ] + }, + { + "bom-ref": "046207b270aa730d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/3_1.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "7bcabc39a443f4be46dc86826d236067295c5b6a" + }, + { + "alg": "SHA-256", + "content": "f00a0981743a29046c86c03efc2f4189858fcc30c9e915b13abf2a6464c2b5c5" + } + ] + }, + { + "bom-ref": "22121067ae17e005", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/3_2.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "0ec38cbab30d40588ce74b42e360c3e3fe5971e8" + }, + { + "alg": "SHA-256", + "content": "22fc77e5d4b04ea9c0836d776bc34ed0da38b9491a96364e2ce6a1c6803526b3" + } + ] + }, + { + "bom-ref": "1364a28f409c942e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/4_0.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "33cb8b376d9cabfd205101fb525b5b1f4d94ada0" + }, + { + "alg": "SHA-256", + "content": "d60ce739b06f237d6848f34e5174e98fdfcbbbc6ad3cde0bf0c307ed3cf175fe" + } + ] + }, + { + "bom-ref": "d66acf9cd45b5064", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/4_1.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a063a7c78e9b06b5965bd762ea20d1b8f0d61050" + }, + { + "alg": "SHA-256", + "content": "d0fc0d98cd61cbc51989ad1e84fbe7c3a58b0af87acec9e8317909211309d8dc" + } + ] + }, + { + "bom-ref": "d6f46db5c5c5a7fb", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/5_0.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "d5a69fb6a328e2b000714c50de857bfa14c25536" + }, + { + "alg": "SHA-256", + "content": "8b59d27faa6b23d02e251c57b9e6ffde03d1c974f1d2a5372c3109d116c370b2" + } + ] + }, + { + "bom-ref": "bf7a15f6df6cec02", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/5_1.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "44f1e0091f1e71995f108898b60d7d06558ea362" + }, + { + "alg": "SHA-256", + "content": "cb04602584a55bb9cb1e2c242ee597e96dbb37c240b5f786aa89d377c7a7b6a6" + } + ] + }, + { + "bom-ref": "76142e3b7ca4da2d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/5_2.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "6a44995e8f59cd0b4b720ac56c7c70012a24993b" + }, + { + "alg": "SHA-256", + "content": "0b0f0de0731cfc3d2e11182c7970d6e73cbc0c01bd4c7c536791988a65395f6a" + } + ] + }, + { + "bom-ref": "796b6d59d447792c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/6_0.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "f514770c77036648dabfe37e3ad88a7dc0be6ef9" + }, + { + "alg": "SHA-256", + "content": "a273960027fa7959b66c6c1c3559018ef4765a23af5e565e0d7c7cb1bb7c1d43" + } + ] + }, + { + "bom-ref": "7fa088b123ed5ed0", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/6_1.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "e5048743d25b06762cc7a3bf8050584d41292639" + }, + { + "alg": "SHA-256", + "content": "1b35968e0053fdf1b56f733acdfcd8e58bdec2edf53dc35f8ee3a7874ae2d3e6" + } + ] + }, + { + "bom-ref": "71d41e84f6ad256f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/6_2.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "1ec30ee0ae13ba7a475a6f9378361e7cdf13940f" + }, + { + "alg": "SHA-256", + "content": "1fe320130bdc13ae02e5571102b8a826a589595a26859663153060b3313948d7" + } + ] + }, + { + "bom-ref": "de8f9b9e9736395e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/6_3.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "654413e1f29db0d75d2643fbfc77bc85ad480b77" + }, + { + "alg": "SHA-256", + "content": "15f0197ed479551139d5e0412196e0ad4c75ea10d298035eddf02c1456c5f7c4" + } + ] + }, + { + "bom-ref": "fa8b47d1def11980", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/7_0.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "bf20c1bebdfe641b56aa99cdff99dd44ede672a7" + }, + { + "alg": "SHA-256", + "content": "1faea7c88f8ecbc2022fd6302b5d780965675c408cc60d2b6376332ed8a4f2ca" + } + ] + }, + { + "bom-ref": "a6214bef2a90853d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/8_0.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "f54781a106f840ae4ecf3aeba825f52abc1162cc" + }, + { + "alg": "SHA-256", + "content": "1d57faca7db41f401db8f553cd1199875a6e5c22efc48d5b3eb5724fb4e2532f" + } + ] + }, + { + "bom-ref": "b5b18e3747bbcd2a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/9_0.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "86f4a82e3324d70dd84e378dc4d4e973ec5fa1ef" + }, + { + "alg": "SHA-256", + "content": "37e0b1005ffad23438dc95112fea084b3dc9d4b9e76d98b05c7462028a0ac922" + } + ] + }, + { + "bom-ref": "85a6e316a047a61a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InPC/Bottom.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "d9dd212c4701e33a4776366778e72572d0794304" + }, + { + "alg": "SHA-256", + "content": "0fd753f5f0eb14ae77902168a09ca2ff3a059b9cf114db81e5dc653a117b4ddc" + } + ] + }, + { + "bom-ref": "ab394552cd26b5de", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InPC/Left.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "711ecd70a316e648e77aa471e4923a585693a21c" + }, + { + "alg": "SHA-256", + "content": "4c6ee35f2c249487d015afaca32fcad5b7ac8fd7109616fdeb9dd0f45f2e5c76" + } + ] + }, + { + "bom-ref": "07acf0aaed99a30d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InPC/LeftAndR.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "4501e1372740d99dfda7c9b5113f79038c121418" + }, + { + "alg": "SHA-256", + "content": "a9cd5243aa98f336e313cb5488f0044264e6750b8ac0869e1714288462b2fa04" + } + ] + }, + { + "bom-ref": "4f3238f864cf30e7", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InPC/NA.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "4bde4a8399f0bf295d45eb7c62ef2823ba903a43" + }, + { + "alg": "SHA-256", + "content": "238a37cc10f4be7e15bbb6d621bd1307548eda2bb493d1e326e7da2ea7b47910" + } + ] + }, + { + "bom-ref": "3c55fe2a464695e0", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InPC/Overstru.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "bc098fb646fe3675920cb8351da7bca1d70e4356" + }, + { + "alg": "SHA-256", + "content": "abefa16db85dc6c6ff6ffe768fd4f20d3d97aec02e5443045243dcae6af7700e" + } + ] + }, + { + "bom-ref": "8e1760ab27af4176", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InPC/Right.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "4880955c8208aa4749cf1651308ec4a5269a7fa4" + }, + { + "alg": "SHA-256", + "content": "2562db629b3cec320f0f76f220832d0f7cde0ee5ce6ac2b23d4fba8848641140" + } + ] + }, + { + "bom-ref": "e872b2cb59840d72", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InPC/Top.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "70d75fd78e6fd55f5838f2d70d7734de4c08028e" + }, + { + "alg": "SHA-256", + "content": "92a025ee5ce9a535c25eae6d8179b7a1ffed614173a8ab03d9414a01b929f577" + } + ] + }, + { + "bom-ref": "427ba03821e82c9b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InPC/TopAndBo.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "5b7509b308466c8876c66cddd3a9c80274b26075" + }, + { + "alg": "SHA-256", + "content": "881c40b2d3bb821aa8cf816f90c36cc4f9fa124163794ce76d4e87e7b000c108" + } + ] + }, + { + "bom-ref": "2d32958b2bf4fc91", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InPC/TopAndL2.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "22da22f843bef601cde0d20cd715c28528d04f32" + }, + { + "alg": "SHA-256", + "content": "5efc958c02534fbe571f065c8403a5346692463b459af1136110064a6b27650d" + } + ] + }, + { + "bom-ref": "5b7f1a5c5ec2e308", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InPC/TopAndLe.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "42bdea55050bab0f509e24d36ade3ca768045df5" + }, + { + "alg": "SHA-256", + "content": "1f3e9fb48f9bac051b2bd0446d81236feb3f9d572894170c742c9ffa018cd0c2" + } + ] + }, + { + "bom-ref": "c9e7f2f899e5a5ce", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InPC/TopAndRi.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "dea718bfa307a025c0c562435b820681d573b271" + }, + { + "alg": "SHA-256", + "content": "180ca95d3fc899d71f973d7d3aedd67dd8e27787c682713102ef97aa101adaf7" + } + ] + }, + { + "bom-ref": "7be2d5745b5c6e65", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InPC/VisualOr.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c71faf9a0a9204499e60531bb7b9b1eff4d26b0c" + }, + { + "alg": "SHA-256", + "content": "d8b78b716e804e5a6b2d98a19ad272485edae21a11fedbe140b9fddcb023bcf4" + } + ] + }, + { + "bom-ref": "10b6072c1f329364", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Avagraha.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "20d786accd2db3cc1992581491b2f600d8328f9b" + }, + { + "alg": "SHA-256", + "content": "0081939f9fad30b5972850feb7e4549075edcf22494d6225e471ce1d52908ede" + } + ] + }, + { + "bom-ref": "fac882a4c00506ca", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Bindu.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "8c99607c52bb6d0d14d0ec85f47bb1c8644fe8d2" + }, + { + "alg": "SHA-256", + "content": "4f232b9d2819be8bbde1b62c513ff37414c4d4eaca2c80fe80f3b42e2f7fca50" + } + ] + }, + { + "bom-ref": "a2ec5299b74419b0", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Cantilla.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "bf29ab45cedf4037d65de5c61b2005ea9a3545cf" + }, + { + "alg": "SHA-256", + "content": "c288759f438bbcce71a320d9ff9f1ad2f1db863716b4743f7b9ec91f13474bc4" + } + ] + }, + { + "bom-ref": "d1cd13a4c6b8337a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Consona2.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "72803cd2026faa609721d8e8433ddb1fd4438456" + }, + { + "alg": "SHA-256", + "content": "a92e93a45c29f1539eb37c4e57b3a5df4888dd8dd6a8adbfbca4151c0d7fe661" + } + ] + }, + { + "bom-ref": "c61f8266303a28c2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Consona3.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "b276a94f67134e9a552e0ddae7367ffba8e2170e" + }, + { + "alg": "SHA-256", + "content": "24f0dc29796fe515711c17bc82f121f5d2b46b3333f1970dbc490f01575f677b" + } + ] + }, + { + "bom-ref": "8308e94b41141b2c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Consona4.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "09f575bd89284fef4eb4a510ef4db1cf90964263" + }, + { + "alg": "SHA-256", + "content": "b4e56d587ce00563065fc498f77517be6d8c101a691bbd551a48f47fe2895cbc" + } + ] + }, + { + "bom-ref": "a37fad0956b605ed", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Consona5.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "96a84ca6c028fa66bb10435fb5e534d7bc14fd66" + }, + { + "alg": "SHA-256", + "content": "a1d5b424c53d44e70ae94e423d5065d5449f3466dc6235c5872ab6bdc4963f75" + } + ] + }, + { + "bom-ref": "4cfdb61a626ab205", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Consona6.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "2ffe733e6193cf84694dc59c8fc98c4ba2cbff1c" + }, + { + "alg": "SHA-256", + "content": "aaf4bf624b1ccffd6184ec534ed6e8a8367f3d4190b3e143648f35165d553e5e" + } + ] + }, + { + "bom-ref": "37cacba43b85cc2a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Consonan.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "fcad5fd3665e371590edf4ea8e2d8322cfeec25f" + }, + { + "alg": "SHA-256", + "content": "e6ee81972a3d5f5a33510718037f3dc08863e0e91d7977c68d4eb9e20b71ddef" + } + ] + }, + { + "bom-ref": "0d7bba23bd4b7762", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Invisibl.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "68d55a6443fe0d0deeae19bba8dde20e011ae310" + }, + { + "alg": "SHA-256", + "content": "f52b787a50eb934a9868dfb7c97eea8e5c3680299730db48b408fd5a47c3b1e8" + } + ] + }, + { + "bom-ref": "287c921964e426e6", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Nukta.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "659e99cf4a110d43f90c7b11cdc53a39bb8c7ac7" + }, + { + "alg": "SHA-256", + "content": "b3674660488660b2f0b3de35c3c5463d492c91a33b9663179906aca06d3b1068" + } + ] + }, + { + "bom-ref": "8311975f864acc09", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Number.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "27caea37387231609fe006526d5bfa923585037b" + }, + { + "alg": "SHA-256", + "content": "71306721e52fbf24f90af0bf35d2be77f3177004ac11718df656ade4c028c4f6" + } + ] + }, + { + "bom-ref": "4532a52381ab29ff", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Other.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "96ade2413800e88139ab5a88061d36d974b90fbc" + }, + { + "alg": "SHA-256", + "content": "e00b47159d1661a80a1d8b7e2f27e3dd84b7f3fd1cb1d8b4cb2a8367bf7f6e80" + } + ] + }, + { + "bom-ref": "24f3ffea5c9ab219", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/PureKill.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "6869cb4997af2e972e74a07569a2bf1524935d91" + }, + { + "alg": "SHA-256", + "content": "656ef2277247585e07ccf323d207ae1bdefed41f99c4d6ae04ac5004ea2a1a67" + } + ] + }, + { + "bom-ref": "aeb00123bee3d31f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Syllable.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "b51f98f12b910d9aa3255bc85fca2161381bcf2b" + }, + { + "alg": "SHA-256", + "content": "203523eb01f4a20301105778b52afefccc8c5a2cbadefb1cec606c549de03ebe" + } + ] + }, + { + "bom-ref": "a24915598a2cc282", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/ToneMark.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "2916203b26400f8edbcfbcf75b32532f58cc426a" + }, + { + "alg": "SHA-256", + "content": "b227e08b1bb11f350a919658ba9fc0ebbdd3bdc03bd36e82f0766fa02267fbd2" + } + ] + }, + { + "bom-ref": "9d82c4d9c5a3bda1", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Virama.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a1bbd370dd5fe3065f8a768fa3e204d0c3997e41" + }, + { + "alg": "SHA-256", + "content": "caad069971da4e7633048508b6b540d30336bb87a9f25e3bdc460459704a3866" + } + ] + }, + { + "bom-ref": "68b50890ff12970b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Visarga.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "0debbaf44eb0a57181d20a156fc8988c69bcf369" + }, + { + "alg": "SHA-256", + "content": "cc7747f5aef2a22e1fcff9a05a563f4218997d8d1c4b057b2297dc4b5b1d8a4c" + } + ] + }, + { + "bom-ref": "fb119eea5ee84218", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Vowel.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "efee49de96cd1c8b32f7fbad710ce506195704c4" + }, + { + "alg": "SHA-256", + "content": "fa114cddd76e4ab7af5ad9cb2b6f678c9e29b138a70db0e1df3c5450b767ee49" + } + ] + }, + { + "bom-ref": "040e5627e8955527", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/VowelDep.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "b00f170ed72e77c85788012839bbcf11648768a4" + }, + { + "alg": "SHA-256", + "content": "1f83b136008eb03fd46d8aac64b435fac0fdbbea08ed77097610b4f9eaa083c5" + } + ] + }, + { + "bom-ref": "2d7467a7fe8f54a8", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/VowelInd.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "7baa2ccf1b6758891f058a8986e7d239d1585d8d" + }, + { + "alg": "SHA-256", + "content": "ebda4f07632a65389e7e0c7ae780806a1371419ea3937b1cfdbe584c87b0bea9" + } + ] + }, + { + "bom-ref": "4552afd31b03c4c9", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Ain.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "bc743825630550ec1013dbd6ebfcc77ede016f01" + }, + { + "alg": "SHA-256", + "content": "84eb6d4881075a3c1b68ebec6863c5bb33cd93d70ba0f8ace8d20ef766188c88" + } + ] + }, + { + "bom-ref": "7fdfa17738405176", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Alef.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "b63567feac55675cfec8a79429e8f152e56d5761" + }, + { + "alg": "SHA-256", + "content": "64fb82a7a91e3579cc1157df5c6d39912f867b8f7e2ce94ec205f4ecaf4194e0" + } + ] + }, + { + "bom-ref": "c247cb2aa32a6d0e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Beh.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "4dc27e62ba20e5bb44b1d106e3486a5d67e4fd00" + }, + { + "alg": "SHA-256", + "content": "72fa1da7b3a204c2d539b53bb52ded5dcbbf5969bfe8c9ab492987c0b1a2041f" + } + ] + }, + { + "bom-ref": "74960b17259c5025", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Dal.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "6aca2e3ec8dfb39cf9f524deaa1de82a65f78f18" + }, + { + "alg": "SHA-256", + "content": "0969319ef0fac6f93d668f8af6c60ec1800aa29ef4a3ba4ba83ea71a25a5d6a1" + } + ] + }, + { + "bom-ref": "a76ca0b275990dbb", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/FarsiYeh.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "5951d4a812b092c496b020fdf004a02a210df04b" + }, + { + "alg": "SHA-256", + "content": "6c4c384bcc2832a10d393e7201437b9def8125bd92fe58c2f131f6819c4bd2bc" + } + ] + }, + { + "bom-ref": "cb2797442ec73fa6", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Feh.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "975a7c05b3b73c0fedbc9b691ffd7716568d5ba1" + }, + { + "alg": "SHA-256", + "content": "afa1498e596ccc75a4d9ed5fd165612ffff8aa8243faebcf7b87760c45df7734" + } + ] + }, + { + "bom-ref": "b06cfe9c5fca5992", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Gaf.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "660963628718cc3b029c93fc73a37e08e3d3ae13" + }, + { + "alg": "SHA-256", + "content": "7ee1ea84d8cc9f3b8a83325dd64f9d7c05e5c3fad00f9c3e9fde0ab062c32a68" + } + ] + }, + { + "bom-ref": "47be64fe1dd83a30", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Hah.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "6276ac0542fde9ca7ba1460f841d7bc59d4d15b4" + }, + { + "alg": "SHA-256", + "content": "c4c5703322b7feb0024b34a03bdee6e061ee810a4190837b58f2f0795b8a0416" + } + ] + }, + { + "bom-ref": "e6f03f5a6dcff9f8", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Kaf.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "41f379e3ba40433ebb540686da58474833ed1922" + }, + { + "alg": "SHA-256", + "content": "cbee3f69228ff19475eae2749f243c83d893d95565feaf28fb50a29565831688" + } + ] + }, + { + "bom-ref": "ae8afe52c753d058", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Lam.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "217577b4ed598e4160f95ac650efd65547e4b984" + }, + { + "alg": "SHA-256", + "content": "d479760c712e6206767a7c13d3806dbf5f55d5e654b26a8b6a73127d85e5011b" + } + ] + }, + { + "bom-ref": "f34b64c7b6b44825", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/NoJoinin.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "11dcd31a15f7bf3745e74ca60ae0275b41883a25" + }, + { + "alg": "SHA-256", + "content": "bf66de705a12af60595915db5cce79104f2edca43a6589bebfeebed3aeb43c76" + } + ] + }, + { + "bom-ref": "f49f6df8e98b3eb5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Qaf.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "d893fae2bb27917ad872355864357ca594eae7e1" + }, + { + "alg": "SHA-256", + "content": "ee85a597952eabb5e85e3a1f30160c748e89aa1d58937f2d6a244e11a13e25c2" + } + ] + }, + { + "bom-ref": "3062c7ba40ecefd9", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Reh.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "d30fcd3762b8efff9324b3f4b8e23c15fa15cd26" + }, + { + "alg": "SHA-256", + "content": "d0e302d3b523c4d006d5f177753ab903922eac3904cee9152d29d76092912944" + } + ] + }, + { + "bom-ref": "36079fa99ad51c33", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Sad.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "4c810241762869d474c2fee14d617bce8ad95ab7" + }, + { + "alg": "SHA-256", + "content": "b7dca05f911ed46c9ef1b75925613b9ecc91722b38c95c9752da6883a5112dbe" + } + ] + }, + { + "bom-ref": "7a4a500a4462ceac", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Seen.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "269dff842e5822e30e4c18bddc26684ed1e50bd4" + }, + { + "alg": "SHA-256", + "content": "0b40e5e917c449a905f42f7edbbdedb6cbc9123fc78ec7ceb76a054ef47f43ec" + } + ] + }, + { + "bom-ref": "abe3cccc3cd5c89e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Waw.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "bd072ff54dcf3eda07de8f37c0647adb9162c266" + }, + { + "alg": "SHA-256", + "content": "78610b13b556d8d932434c7fec59dac77e6e892a978d452cf968f88a263af6cc" + } + ] + }, + { + "bom-ref": "54d5697e9b1cfe52", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Yeh.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "1a2dcfb5527f4f88097f5b39126a59a18f1edfb7" + }, + { + "alg": "SHA-256", + "content": "1cb8a27c88f6f3f5713309c4b92dc6af8f1a7d7cab12292cc0bab7a0b9663531" + } + ] + }, + { + "bom-ref": "0b947cdcf2e14be2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jt/C.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "111f46e9f9fc0ea0d6bcdc088ba7c8a42ac68e35" + }, + { + "alg": "SHA-256", + "content": "374bd61080bae3a5288d7a4c86357d5f068d251372e6c70c5d82507499c024d2" + } + ] + }, + { + "bom-ref": "fccf0b2852db9910", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jt/D.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "de54e95108a4e60734944c4e9d43ea3cee9b3df7" + }, + { + "alg": "SHA-256", + "content": "1c7a8c737e5fe929b9d252eab9bb25f06ecc98490a69f2dfb9bbac079969dc29" + } + ] + }, + { + "bom-ref": "854e4ae6166b8203", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jt/R.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "90900f7fdc5453bd8ccd409fca5946479e9be7a4" + }, + { + "alg": "SHA-256", + "content": "fa8d0cc794f123afd981c441d34fc654d5b7c8fcab44218e2f18673d5fb2adeb" + } + ] + }, + { + "bom-ref": "d1c91b199a86ee7d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jt/T.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "d72e8c1672bf081523126c83a9eb64ddaced2d6c" + }, + { + "alg": "SHA-256", + "content": "87d21d0383fd1bbeff88bf893ef216a47c1787954ea6335e476b0cd723b8fb17" + } + ] + }, + { + "bom-ref": "ed80d686b7a8a528", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jt/U.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "edb002374748cbabe1e2059b497307d398623963" + }, + { + "alg": "SHA-256", + "content": "c65140380e2e4093c68061c04d896e06f7c68bb60efe6f34da61fefd9d705b4c" + } + ] + }, + { + "bom-ref": "2d27489bbb703132", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/AI.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "d1a345178e22c1a909996686fb79d04e33c32956" + }, + { + "alg": "SHA-256", + "content": "468e704a8ee1fdc357043f2795fff34db2eeff7825c081cd3ee72dd6bb16c074" + } + ] + }, + { + "bom-ref": "d763ddec00ba3730", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/AL.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "103f4daeb7003b0256d0d30c04cf96bc6672a83d" + }, + { + "alg": "SHA-256", + "content": "330e72884fea95c8333b9b0411717f26b04132dcb2b7378e39017bc166d6c61d" + } + ] + }, + { + "bom-ref": "e9e7337e3ba1a634", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/BA.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "f2d8c9ff0806f9e008da34cfb79f28e719dc9868" + }, + { + "alg": "SHA-256", + "content": "b3323cb2268125baa71b4bba8b1314756ee533e2911f38a2a547458aaed24cfa" + } + ] + }, + { + "bom-ref": "3ab5da571a96d26f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/BB.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "9c347662284942bdaba3e13b03fe3cf6e3925f9a" + }, + { + "alg": "SHA-256", + "content": "9cca290a7b69bce6288912276226c670749d91e66c0ee4d8fb031d6a0099916c" + } + ] + }, + { + "bom-ref": "5ab1e24bf81fbae4", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/CJ.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "38e5c09d9d285df352315797b9ce4df880773fde" + }, + { + "alg": "SHA-256", + "content": "ea968460a34f6b5b5e9e7ee367f7349679d2e97be6b97b69e1a3cc3775195e6f" + } + ] + }, + { + "bom-ref": "497100d2078dbab4", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/CL.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a5dabd22d918cd267e5d18ad86dfe03843dc3703" + }, + { + "alg": "SHA-256", + "content": "97322a7099f4e123302239849327d13da83568178f05811526bfd2c9dabac5b7" + } + ] + }, + { + "bom-ref": "d50a904780cd758e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/CM.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "e003e7ad76640ee5a8f421cde21c6983d8d02944" + }, + { + "alg": "SHA-256", + "content": "0ca0bc3994159bd7e67cd6a2720416e43d3aa121aac65a28dc59424e4179e1a9" + } + ] + }, + { + "bom-ref": "3bb79939c0855bb1", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/EB.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "cf8dd31974d3ca4d9f630e2006abafa4c1e4203b" + }, + { + "alg": "SHA-256", + "content": "44ddb36fbacbb5664674bd5649da21321992ef1110b4abda484f53bd32b2a0f5" + } + ] + }, + { + "bom-ref": "9b89ce11de53d2d6", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/EX.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "2d4c0b280d808542cf84d2a757a724aa8c8cf669" + }, + { + "alg": "SHA-256", + "content": "d5b256cc2996abdc51118a95cc74acdc88411f0d08dabeb571e411fa7f49f0c4" + } + ] + }, + { + "bom-ref": "78aec6b442234046", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/GL.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a5211285ed8e1290dfffd3ad0b0de40c4cfb862d" + }, + { + "alg": "SHA-256", + "content": "efb6e15b6707a84d3c68291075e84f4d0445c8fc1a5f58ba68b24905a19d6045" + } + ] + }, + { + "bom-ref": "920655edce90591b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/ID.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c8f296c6bb4bb1ad37b3ed6f70000ff4d5e318f0" + }, + { + "alg": "SHA-256", + "content": "368468aec83d216cbb607372f0483a03fb1b446bb4471b938c15cd260e5a5d77" + } + ] + }, + { + "bom-ref": "7427e02e477fa7ed", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/IN.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "9b72bca13c997e921ded6dcd921c6d7db989acc3" + }, + { + "alg": "SHA-256", + "content": "3d9bdc308b72dc68323152724732a390b9d3f1b31f3788b3d753d91fbe4492f8" + } + ] + }, + { + "bom-ref": "4b7f3aa150869cdc", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/IS.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "488a9e40701c0cfc833644b30524be894efe955e" + }, + { + "alg": "SHA-256", + "content": "53c8f596b47eb97e0c83c9b79623ae65e55eb522ac25c0adb53dcabda794e1b4" + } + ] + }, + { + "bom-ref": "c988fc0a45e59e99", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/NS.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "4f5d42e9720965cc809fe1eced4d30a3d3a60940" + }, + { + "alg": "SHA-256", + "content": "a83f3d4d834044f31ff2b27db7cc111f3889cbca00cd09802e8c04027fccba37" + } + ] + }, + { + "bom-ref": "b681f85dc144e818", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/OP.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "dfbc3d4d1ff1139b49724f6cd848167d0f7fc504" + }, + { + "alg": "SHA-256", + "content": "df3ffe501b94a176189f275819ab6559be16c3f35fe4bf76c80974c295fe054f" + } + ] + }, + { + "bom-ref": "ead17787a884a015", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/PO.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "98a1486d4d640c75f6068cdb0db8efeb4d2072d5" + }, + { + "alg": "SHA-256", + "content": "c3b2414302230252972626e27280592949b197a4bef0be35aaa224f802af69a3" + } + ] + }, + { + "bom-ref": "c4bfba4bf7bf323c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/PR.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "9f4f968b69e042d09de1ac19122c8c25a6c8b7b2" + }, + { + "alg": "SHA-256", + "content": "818fde7896a55ddd560cacb6cf81a9f8e495be4c407a2a0be3852759f5abcb1e" + } + ] + }, + { + "bom-ref": "b5f3c85090cde08f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/QU.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "6db7fc2a6ef8902a4d16772b352ffc8378c6b510" + }, + { + "alg": "SHA-256", + "content": "2106fad5616bc411ba64dfd2a691eb09a8b40b1dcfbcb4eb113ae84e67542994" + } + ] + }, + { + "bom-ref": "cc9eb0ee34425f27", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/SA.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "f586a629ef8d639ca3fe22d70359fc21789c4df4" + }, + { + "alg": "SHA-256", + "content": "4a2f70ab4d37bef8d61d8d4dcdac44fcd57b1c3cb01f176620a72ba5129c401e" + } + ] + }, + { + "bom-ref": "549396a953ab2d41", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/XX.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "6aab8843d8b25f9959d05b40403541e0a9362652" + }, + { + "alg": "SHA-256", + "content": "9a2cb6d760bbd0fd9c9f7e40957fc6cccc782e82490410c32c6c7f872e39db2c" + } + ] + }, + { + "bom-ref": "7c0836132c1614ec", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lower/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "e7035733ad2c9660ae9f0469857506574e4c5ae7" + }, + { + "alg": "SHA-256", + "content": "52410792cb4583dd4d6b10ea6ec95482f2c7b64a075086351bc645eada6c4c6f" + } + ] + }, + { + "bom-ref": "1e88eb84eb7ba7ee", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Math/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "7d9abf817494a355c4c5c84f669745ba2ac61de7" + }, + { + "alg": "SHA-256", + "content": "951643aa72f253a7f8e08cf33b69349b5d3d945d27a6310971de0fd3efa42606" + } + ] + }, + { + "bom-ref": "73c5d322baea444e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/NFCQC/M.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "261c9d44b250568be21c6d9f9aa5edc1f879f1fe" + }, + { + "alg": "SHA-256", + "content": "7575039168dd680bb333c1f0749c1a086537b1d2b5f8f13e156c08564abbffe4" + } + ] + }, + { + "bom-ref": "2ede9442a3cfb28e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/NFCQC/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "afe6c7524093652621dda1828509ca7c7484b202" + }, + { + "alg": "SHA-256", + "content": "19a379eb048d06e98ed7b5e238514277b0652ea8e4582aedd5d65251c9b5c7ef" + } + ] + }, + { + "bom-ref": "2b4bb17344a46756", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/NFDQC/N.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "ff0dfe2ca1b3ef1346e691d472fefbd035ec00e4" + }, + { + "alg": "SHA-256", + "content": "6930ce8c3fb953fe9c8811a3b664fce344b8449f885765429dc7b06144a2bdd7" + } + ] + }, + { + "bom-ref": "408be32002847b9c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/NFDQC/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "bfc8ceacd28bd670d2eee267bcddf6a0572c1e72" + }, + { + "alg": "SHA-256", + "content": "4f01f75cfdc1638c3087f46fbb02ad39d2cfe2192b76a64e9edfaec319a1c5df" + } + ] + }, + { + "bom-ref": "34a8219afa6949b4", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/NFKCQC/N.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "ca520076516a5c907fed30f100ee82b185776f6e" + }, + { + "alg": "SHA-256", + "content": "3cd11ee07ee877f82420c871a271c9b68c7471b24a2d281108d0d210c09d8d27" + } + ] + }, + { + "bom-ref": "e704dad19956b1bb", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/NFKCQC/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "ed033427903fe3676ff735d8e789b239b63629d4" + }, + { + "alg": "SHA-256", + "content": "68d8339b7f26d07dae7024896276bf101ffb3f1b7c8aa4433c0a68b346135a46" + } + ] + }, + { + "bom-ref": "aea9dcb42908a659", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/NFKDQC/N.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "b6e9e36bcb759979056b0f3fe2aced4323c1effe" + }, + { + "alg": "SHA-256", + "content": "c39aa4421d97f4084341a00d40f599176c3f44ae1a0dd99af009fa2dd6867cbf" + } + ] + }, + { + "bom-ref": "26ce984a2d7dd186", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/NFKDQC/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "d28523de6185edefebfc1cefc3abbcdc4a06d0f0" + }, + { + "alg": "SHA-256", + "content": "ad2daf035bfa1dc839a0cf3a821ab4ae9e6be33f02f259229b167e3d3d016b5d" + } + ] + }, + { + "bom-ref": "40d277c9a753c041", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nt/Di.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "4b6e0ebc45b0cfc0c2cff83859030b397a50b76f" + }, + { + "alg": "SHA-256", + "content": "6ef1058e9e09cdc91ff49296b26c3204ae342537b5d4c32844b8d058ef45058c" + } + ] + }, + { + "bom-ref": "5b5a67531cb5f1e9", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nt/None.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "6662b1ae29a1d0753b029b644c6c18618ebdb508" + }, + { + "alg": "SHA-256", + "content": "69208c53fb3c7fa3119d28060cbf4352bbcd575fb495c79a47d07fffcde821c6" + } + ] + }, + { + "bom-ref": "4bb716b762a88c17", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nt/Nu.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a17a16da1c31256ba70c17f18894aa32e2a25e23" + }, + { + "alg": "SHA-256", + "content": "9e24fcd330b4ab4539c6bbeac20955d53caeba96bc72d51185f7e953bb1e0cb5" + } + ] + }, + { + "bom-ref": "97606a2b8170aa09", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/0.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "97b7e94bfca810a925e2eeacbdada0b3d60c8e7a" + }, + { + "alg": "SHA-256", + "content": "ac8078ed7e631d6b77912aea1e5605c7a03430d6704d3ed11d86ca846da70e93" + } + ] + }, + { + "bom-ref": "70b1f5e065881b2f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/1.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "72e6e442945db9a42d8c5308c02bac9a78000106" + }, + { + "alg": "SHA-256", + "content": "f2bed0efeb0c105bea17991965c7cbf7913908778e13ab158b838609eb7b5235" + } + ] + }, + { + "bom-ref": "7ac4b523bf2690ad", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/10.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "68cbfe2be296eaf6c288811de5964024d476a19d" + }, + { + "alg": "SHA-256", + "content": "53c915387dd77a19f828a05e90ff70170ed58148eea25055eb27cf2feba0ef8d" + } + ] + }, + { + "bom-ref": "90846c299c544b7e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/100.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "3727975d539bae311720f82f7b94f2e5a19cb8b9" + }, + { + "alg": "SHA-256", + "content": "0895053fc3ba1003a19eed2700cd9f481dee7c49acb12bbf5f66318d40ad9879" + } + ] + }, + { + "bom-ref": "8a999f3063ffc660", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/1000.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "f0acf849908509c069b1fb5e6767ad1e4faf2c9a" + }, + { + "alg": "SHA-256", + "content": "5ac4f2e74984bc4a7654c5dcfc91b15d33eae43835ad6208eb1ba8d0fcb32b73" + } + ] + }, + { + "bom-ref": "67a6a5a7563e4132", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/10000.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "dd26665ec239f498586022e24f96c195b879fb26" + }, + { + "alg": "SHA-256", + "content": "9ba675a140deb30a6a10cb01b6bb2292f261d8af9368d036d744750a5a384f7e" + } + ] + }, + { + "bom-ref": "ece32a6675f84d76", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/11.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "4a125cff7e8f7086f700244d9afedc4de22080b4" + }, + { + "alg": "SHA-256", + "content": "f93b07b6a7d5b3e69906ac5f39d28dd1f6ba724c67858dfac4ce29910502fd8c" + } + ] + }, + { + "bom-ref": "9f715569b4b8fd54", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/12.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "1c2c6056e1752d65ba968250277e748632f7d2ae" + }, + { + "alg": "SHA-256", + "content": "03c29316b3b5f7810e412665ce5b0c76a3b85028cbbfd806d90ce7871cc42af6" + } + ] + }, + { + "bom-ref": "2c58f44a9237cb53", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/13.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "f83d9b3012ed2f2e7913333274da41773ea4db14" + }, + { + "alg": "SHA-256", + "content": "b3e504bb7b0d2494467f5e3fcbdc0c6eb9dd3bdbddcad52a3cb78188950186f3" + } + ] + }, + { + "bom-ref": "9b05365c59e7e336", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/14.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "b68a265cabe70e7092e60d03f7b660d408ef66fc" + }, + { + "alg": "SHA-256", + "content": "3a9d88c7a78f53fc7976ae2c5c1fb81a76d7dffce69267ab217ccfc6e102f9f4" + } + ] + }, + { + "bom-ref": "dda82a550267d50d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/15.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "5df6d58a4dbd9572c014b4c944f1dff2571bd2b6" + }, + { + "alg": "SHA-256", + "content": "f85af9c2d29dfe9aa3037ef8846b8ce517e42a7d1a39f9cfaf32327f5f34a9ef" + } + ] + }, + { + "bom-ref": "c46f41459e58c682", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/16.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "6b40169ce21ab2afa1eed811a15ef97bbea93a26" + }, + { + "alg": "SHA-256", + "content": "748ddd3fd76a321878200607787d0fa5a65706733935865de7b981a814bb7005" + } + ] + }, + { + "bom-ref": "ab1282c110d47020", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/17.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "e9194ee6c27b968f541d35fe6a8b15f36cf0ffae" + }, + { + "alg": "SHA-256", + "content": "50df17f99eb765fe8db30c4de7bed8b69710a4c1d018dd06ac57feb828467f2f" + } + ] + }, + { + "bom-ref": "24ad68297003d5ba", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/18.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "181206a8ee0a293e7ad3c610a75fe971b44c7f39" + }, + { + "alg": "SHA-256", + "content": "a9ca115d79775e959a82e01e83caf509dd29338ea09dc23acabbdf26ebf345b7" + } + ] + }, + { + "bom-ref": "291e89cc5658e4c5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/19.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "4c9a7abc70e2ee10aa60412738aed7932a9b9170" + }, + { + "alg": "SHA-256", + "content": "b1e0abb359479a7eee30d71716b28412b25595b612a703a869efd930a14d1dac" + } + ] + }, + { + "bom-ref": "0830633e9518f530", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/1_16.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "314caa848deb26c00879f99d10dbf238948a1a79" + }, + { + "alg": "SHA-256", + "content": "8c9258cfa5520cc126ac3a073e0c28f9c1b00dfae478978db23c3f0fc4991576" + } + ] + }, + { + "bom-ref": "134af5dc56311527", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/1_2.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "e9c51bbfcc94b1d23d3e7acd1cfb759c76a371a3" + }, + { + "alg": "SHA-256", + "content": "66789087e35b4ba7d080488921cf969611278a088a3318723cb7270b55c0d315" + } + ] + }, + { + "bom-ref": "6007ca3a2d149c56", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/1_3.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "38cabea6a3bf4f4dd60da3663eef9f6f352de77b" + }, + { + "alg": "SHA-256", + "content": "2d56c4206b1b17be2af6c6021042721153fc239adda951efdf84412462a7f347" + } + ] + }, + { + "bom-ref": "10c62feee6d804f7", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/1_4.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "4e60848e60d81896278879e0e4a1e58aa1ef3130" + }, + { + "alg": "SHA-256", + "content": "45dd3483064abea0688257e8dfb91fef20d8338e2bcefeb27a51183bc3c99dd2" + } + ] + }, + { + "bom-ref": "76a661969e8fffd9", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/1_8.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "6564475e5979f710744279fd996d535a99c9710a" + }, + { + "alg": "SHA-256", + "content": "3a59f4378f5afc043beed389883ffee28f1c5be0cc1075bd0e018c85e48d1c32" + } + ] + }, + { + "bom-ref": "45626ea22a1cf364", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/2.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "025aac1ba45cb5280efc5081af464916272e6e97" + }, + { + "alg": "SHA-256", + "content": "c0b849efdede0c8ab4a7b934ac92c44850ca64166421a7a2171b9045ff70121c" + } + ] + }, + { + "bom-ref": "1d42d4025c5f2223", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/20.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "765915d809e1ea98803d2523e28cc54dc91a876f" + }, + { + "alg": "SHA-256", + "content": "1542725f9e2fd74c1216d15a92c28da79249cefc22225e6aaaa42888fb3b5848" + } + ] + }, + { + "bom-ref": "31a7c00641570307", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/200.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "0a536df0dc0da6e03cd9328be440497029936382" + }, + { + "alg": "SHA-256", + "content": "0783976aa5c8b9772c1a85a607eee8e8d935183a478f5ddb03c1e439171b2a8f" + } + ] + }, + { + "bom-ref": "f789b9e76149303d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/2_3.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "8c58d4619985400a7363892d23c89da0c91c8691" + }, + { + "alg": "SHA-256", + "content": "304c8f9a77116974200d1ebba3062217f461cd5671ff59f6ce786ddb7114db71" + } + ] + }, + { + "bom-ref": "3f7706baafa385e5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/3.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "cd20ed1da48e9efeb8644f762aa5e89931929b63" + }, + { + "alg": "SHA-256", + "content": "58171a1c6bbdaca54d88b696d4b2783e588f90f3770e8b8d03dca063e468370a" + } + ] + }, + { + "bom-ref": "cf4454ad07a1e807", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/30.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "e2bcdf308d3d8d38dd0dec0f04db06a002115eda" + }, + { + "alg": "SHA-256", + "content": "6041c1081d6df74513efa8eece77454b869b388923c0c96ae095190a3a74db6b" + } + ] + }, + { + "bom-ref": "2aa0f07314e99453", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/300.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "d06203b9124938bc1e97fe74e46667ec2c4c89e3" + }, + { + "alg": "SHA-256", + "content": "34aff18f00bb1d618ea1a9546505ed54f928d5419c6da4eb70d2ed4ca26533c7" + } + ] + }, + { + "bom-ref": "61e274dae3f189fa", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/3_16.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "236cf7d02d7d7914d1565452a231a6e41c49840b" + }, + { + "alg": "SHA-256", + "content": "a7275ec3e8aae9f6594c93ccfc70d34dbca4771326eabe756ca66fa44bc82d5f" + } + ] + }, + { + "bom-ref": "e2ad7635e4abe189", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/3_4.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "2bf289211904074e6d3202bd08f9338235c3da2b" + }, + { + "alg": "SHA-256", + "content": "92a53fdca9bc912a9dbcd8b6479f704abed478dc3385e12f6a9d7e60a0bfae4d" + } + ] + }, + { + "bom-ref": "6e9e6d47b47541d2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/4.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "d8eede02428425137dfde979decb915fb6064f6b" + }, + { + "alg": "SHA-256", + "content": "0b42b370c345be74e120c4bdd31d8ea46a5e498ca4ca4a9111172473ca52bed5" + } + ] + }, + { + "bom-ref": "2b05e468a0451338", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/40.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "d46228d10932ff435f3ebf9f69a34c3883f42be6" + }, + { + "alg": "SHA-256", + "content": "f8834b0f0c79e6c2bbdacb79c92936a8242788537236ce64dae01b3e51788578" + } + ] + }, + { + "bom-ref": "106b68800bf8aca2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/400.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "f268456fd50649fbfb7cff6053c26c312f956e33" + }, + { + "alg": "SHA-256", + "content": "bfade35fd045871d5bf95d36876746faebc22f59bb50ac5343e2e6a380bcb08d" + } + ] + }, + { + "bom-ref": "022d3a9c4a149318", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/5.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "916f7632e5b6429dc0a0df0854608c28a238e491" + }, + { + "alg": "SHA-256", + "content": "80bcbd092eb5c755388abe92d7e3ac42f0507849d45a804cb5757aaa563d6312" + } + ] + }, + { + "bom-ref": "0895ac1cf969e573", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/50.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "e605bb71b22241328133602d4ec0bccaf4198d53" + }, + { + "alg": "SHA-256", + "content": "087808cbf995cfac9dda4f7678b33612b2c22856140daf81efca424177f66975" + } + ] + }, + { + "bom-ref": "2587713bafb002ba", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/500.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "528a3b1721dec91ee47ce40a80f99ecf1dd65e03" + }, + { + "alg": "SHA-256", + "content": "a6c3f4efc4e1fc45bfccab7e9918c0c9ee44c18a3b8d3ef571672abaa8a0fc34" + } + ] + }, + { + "bom-ref": "efbb9d4e2b687445", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/5000.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "5cdfffa710cd31a7f899c5821f29a427450e9511" + }, + { + "alg": "SHA-256", + "content": "3ca27978e20b1f94315518bf66653536c982e800994aa20c1bb3cc84cf965500" + } + ] + }, + { + "bom-ref": "cdc43398bd606152", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/50000.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "25231d36078099018334b6313afc1cbc2646e910" + }, + { + "alg": "SHA-256", + "content": "3e792b6ab4bfaf92245f1b85195d3692ba4c8fbabfa65e0baa6d0548847fb0ba" + } + ] + }, + { + "bom-ref": "8a4c8edc09dc26db", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/6.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a88428268b50c1aff510a475f3a0175af7b706ac" + }, + { + "alg": "SHA-256", + "content": "1d2f28ee9c60c593aa67a94602009b53aca58334f09917fa9ade034e2abd5b9e" + } + ] + }, + { + "bom-ref": "b83904aa6f9f8c68", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/60.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "9e749247077eb7f38fde9c2981c45ee0878320bb" + }, + { + "alg": "SHA-256", + "content": "9d8ef01d1d289467b07915bf8a0f615a78b1fa45a761adf017af8bf24361247c" + } + ] + }, + { + "bom-ref": "c7466955edb80703", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/600.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "0be0b9d0c1e686534ffc776da3d36313e22a00ff" + }, + { + "alg": "SHA-256", + "content": "c35fcba01f56da6c5e485724029f4e1339d4114cdb2463efd06b6e56d0b17b67" + } + ] + }, + { + "bom-ref": "68ad9c977677fcfa", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/7.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "07460495bceb774e835023423a4af055887370e8" + }, + { + "alg": "SHA-256", + "content": "de4a53d7ea4b787cfe55d7dc6147f3cfba948dc7ee0c032042c1481416268883" + } + ] + }, + { + "bom-ref": "572771afb90872c5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/70.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "0ff5addc28f2108cb3aa6170d1a2363c516342c7" + }, + { + "alg": "SHA-256", + "content": "c389e51310a37e0b335ed15e0ab764f16ffc3f92836cdc0f72db1a7308e8e612" + } + ] + }, + { + "bom-ref": "f0508f2735082ecb", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/700.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "2c481812b48f51be6666e90e12db81581bbd2f23" + }, + { + "alg": "SHA-256", + "content": "2b13fc31c3308213095371e4a5569298085c84bb40b838aee59946bf8ca258af" + } + ] + }, + { + "bom-ref": "0e2e26a8e1d118a6", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/8.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "7886c4e078aba542db7a0211c3903fc0daf8754d" + }, + { + "alg": "SHA-256", + "content": "91c13fef4109f19412914e38274dd99c5a08016f4d47b9febe0743084214f98e" + } + ] + }, + { + "bom-ref": "4b25ca71e981e69c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/80.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "b228d64c590e437c4a9302e0caffa77c6083f15b" + }, + { + "alg": "SHA-256", + "content": "a5d14caddd4d0f7312a015b4545abced0bb907a79d92ad2fa48417a9e8a00225" + } + ] + }, + { + "bom-ref": "67004e5945d578c5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/800.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "9ff3591954c050ef9c415c33f272fbabce1cc4cd" + }, + { + "alg": "SHA-256", + "content": "69f233936c119e1fcdfea5711caa88f162ee57c0d6d7c88fbfab884f9b3592f1" + } + ] + }, + { + "bom-ref": "53e2a181db423aa3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/9.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a875270982df054e21486e47b60566ab2dacda32" + }, + { + "alg": "SHA-256", + "content": "994355cdd9ddc89546b85a55928d1752f0f3caec4043f4df0e7a48c8c1dd5dae" + } + ] + }, + { + "bom-ref": "f07b81ac4cda9c83", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/90.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "835dfcb38416d028726ffff3ac7779463beb5791" + }, + { + "alg": "SHA-256", + "content": "a4ea5261c82305fac1c13c5d70f28fe03680f28bfce5f153c90ef7164e19d321" + } + ] + }, + { + "bom-ref": "397c36850dd44a6b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/900.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "9e3d236236edf787b88c8a7d7b277386da5e5adc" + }, + { + "alg": "SHA-256", + "content": "cda0d4ff2a96443e3518d2b0edb9872951e96cec2e9b4072f9617d582d7a85da" + } + ] + }, + { + "bom-ref": "de51f0fc5b94bb42", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/PCM/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "7856ed7ed5ef87238eb6d90046eb2a4b91586fb8" + }, + { + "alg": "SHA-256", + "content": "41110e696b1e4ff5e28f59fe2f544af0a536de8bf99967b30a675db1f11b0f7e" + } + ] + }, + { + "bom-ref": "75f9ad7b65678181", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/PatSyn/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "149ffda4720897d5902730a9561dde912059080d" + }, + { + "alg": "SHA-256", + "content": "685076705658415298a0a07c181094c05e66263468340075a98a9841ee5ebb6f" + } + ] + }, + { + "bom-ref": "26ccbea4798f54ea", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/Alnum.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "e24cc62f281b1524562a4cf822b45cd554464c17" + }, + { + "alg": "SHA-256", + "content": "d347fdb287222cc6b6b9f5169d89f20641ac0252c923edb6edac98a5fa875fc5" + } + ] + }, + { + "bom-ref": "f5b858e004b23906", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/Assigned.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "91796c5c7ede5491613f67acb51ed3ad738cebc5" + }, + { + "alg": "SHA-256", + "content": "c939586074feac62219b6093979e4da8f2de560257f6a2f9b9f5540976b3a91d" + } + ] + }, + { + "bom-ref": "50873de4d172b163", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/Blank.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c800b64f4b9099ee8c48da16447a5d7dc891a9a6" + }, + { + "alg": "SHA-256", + "content": "685e6f71d6a866061e03d37369c411a2557c7e3f81e8e8bc44cd99f2c1cdf573" + } + ] + }, + { + "bom-ref": "9d1c420208482276", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/Graph.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "f4bfe8b2ccc54aad54bcb90ab76fcf0b70f3f2aa" + }, + { + "alg": "SHA-256", + "content": "db90dba71ab507960a2f54f5006a6a141be6538f0d047284aa27ee2b6fd02b12" + } + ] + }, + { + "bom-ref": "987f38bba8409bcb", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/PerlWord.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "de6e8e185c273b287de66e6c03dd868d9ef8b2e4" + }, + { + "alg": "SHA-256", + "content": "75be0dce6673e3f33a3ae3fb1cbf5c40219f7c285d9f14747ce21435ac8ce48a" + } + ] + }, + { + "bom-ref": "023d4b0b14f546ae", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/PosixPun.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "4c1c68977dbeb3c6cb4c8efbe8ec8e2ccc3dcc48" + }, + { + "alg": "SHA-256", + "content": "22b60b3931d41415f8975e2e81522798231a85e828080183824463ff93c603a8" + } + ] + }, + { + "bom-ref": "8dd875615c38796f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/Print.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "57623946b2843d79decd0def63e250d2ac6fa184" + }, + { + "alg": "SHA-256", + "content": "d6140bd64c86fdc62ccd59ef8662194ac6a7a7a805a66b21d39780abdd023daa" + } + ] + }, + { + "bom-ref": "d03a2ae67df1af35", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/SpacePer.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "635c5f96675c9682331b8966b115b1fb42c88ebc" + }, + { + "alg": "SHA-256", + "content": "a8b05ebd255603b30916a0440fd6e932d8c0e25f17775d638a301dcc795d3754" + } + ] + }, + { + "bom-ref": "be5cc4a23114c9e5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/Title.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "8939256c0ceaf65ac077c5e52311962969bea082" + }, + { + "alg": "SHA-256", + "content": "5f34fb065e9550f266af4eecd9654d8d4ab201362bebe7fb0a57b4ce9724d957" + } + ] + }, + { + "bom-ref": "8257ba0533dddb61", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/Word.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "dc8d00f5adee143720a05fb1d3dd82cd84716683" + }, + { + "alg": "SHA-256", + "content": "b86ad27d5ff32d81b515064ab307907591c72735586ad6840d293e120e7f96b5" + } + ] + }, + { + "bom-ref": "567de47d29164ea1", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/XPosixPu.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "1b9fa6e9df3e80acb1d8174ff367c0a54f4d304a" + }, + { + "alg": "SHA-256", + "content": "c480e9354fbf3209e690638bdd0e5bd803dd1d83dca1983bc6f613d86503bc26" + } + ] + }, + { + "bom-ref": "1cf9c10def9b0141", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/_PerlAny.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "5e08e2a7edb6202b693532dc492eb61d45947d69" + }, + { + "alg": "SHA-256", + "content": "155109a7ffdf78f39b5067d00158902c086d5a5e11efb60b0a005873fd23d7af" + } + ] + }, + { + "bom-ref": "add4d1833a67f29b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/_PerlCh2.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "6e22bbe7a114c3bfa7a1d885d2effe4ad9c7eea7" + }, + { + "alg": "SHA-256", + "content": "80aee9e6b17727370e5a9bc281fe90390508a6cf52a20c1e2408480e2f33dd8d" + } + ] + }, + { + "bom-ref": "70b3e1907488bc22", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/_PerlCha.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a3ab93164c0ba4afd5f552760ff1ca2bf84242cb" + }, + { + "alg": "SHA-256", + "content": "d4d5316e5a5d5798986d40a919bbbff3633e4897f67bbd2b3de45b2c1da2664a" + } + ] + }, + { + "bom-ref": "5d3d398a4698259f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/_PerlFol.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "cd2f42a6b503523c5c6bc03f18ce2139061af090" + }, + { + "alg": "SHA-256", + "content": "fd140864ce1408ea7fbf1ee8fa6c5edc6a0bcafde1d1eb4860ce57c5222ffd05" + } + ] + }, + { + "bom-ref": "7615c50041b72c86", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/_PerlIDC.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "d13f7039182b69c65926c6c8b9d4d85447f22df7" + }, + { + "alg": "SHA-256", + "content": "e5343745a8d654c5c1c3edc0aada73b48c47bb6d2fdd1243ec6bb84749ae0efb" + } + ] + }, + { + "bom-ref": "fdaf919ad5cac53e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/_PerlIDS.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "1d63e046bab337d6e4ff5f7b3fc7f9df94c60ecc" + }, + { + "alg": "SHA-256", + "content": "4fc5bdd3a37733855f15d1e3a58c7bf670084ddf114e149521f0d8bf22866e55" + } + ] + }, + { + "bom-ref": "54062e4310ab24ff", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/_PerlNch.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "5d530b1820149f2c3fcdca5e6bc971b3ca557c8e" + }, + { + "alg": "SHA-256", + "content": "cee71593e4d82dbd40f5a371aab6b3b4fe9ec0e1d37993fd013534511231633c" + } + ] + }, + { + "bom-ref": "2b04711361dd030e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/_PerlPat.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "e5bdb2bf7df4898aecc4c11878a15b9392765b1b" + }, + { + "alg": "SHA-256", + "content": "ab70372f5a2d3de00fe2a33bebb5d535c075b08af0a38e908320fbe00ed74d68" + } + ] + }, + { + "bom-ref": "e3fe2655b20fcd85", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/_PerlPr2.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "d48766531929f5c9a3236b8667af45cca1d3acf4" + }, + { + "alg": "SHA-256", + "content": "aa6f45d2085a49a9dd715741d0ac112c403842876e760c6d1a34b84cc05105c9" + } + ] + }, + { + "bom-ref": "df90e66c4525d9a5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/_PerlPro.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "e899e63c7c8f30e200584e1da362476d17fd1a6d" + }, + { + "alg": "SHA-256", + "content": "104b020ba83d6f667c648b944d48cf1c8d4104abb0c03deffc87701d5316a045" + } + ] + }, + { + "bom-ref": "6ce0bf907d2d60cc", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/_PerlQuo.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "23e02a933f90bf35da15461566f15b9f93cffad7" + }, + { + "alg": "SHA-256", + "content": "92bbc62dfe5f0112fbefc59caed88cb734981e6b16104231f4299582232e6df2" + } + ] + }, + { + "bom-ref": "1108159d0bcdc533", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/QMark/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "25b9c59d9f5a00b96286ebba34ccb80c5785bc35" + }, + { + "alg": "SHA-256", + "content": "98d5baa7c13a07618d1738e2e95fae097556d24d5bba3e799e7b6b7c003edc37" + } + ] + }, + { + "bom-ref": "d9992241663d6d5d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SB/AT.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "afb19807c1a1db611e233ff00bb5976b5f75b7b6" + }, + { + "alg": "SHA-256", + "content": "fbed34bc1aaf18f45bb559611916a62f6989eac139b38ed1679a42ce60e75c8c" + } + ] + }, + { + "bom-ref": "a8f49c55be3be017", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SB/CL.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a7e0dea6f83d283dbafc7c3fa45b9ece2953490a" + }, + { + "alg": "SHA-256", + "content": "e1dd7a250e759894f8236d38f9abedbbca48bec240b6e7da941f747c429a6bf6" + } + ] + }, + { + "bom-ref": "ff3ca718c7fa929a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SB/EX.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "7c8349b09c994cde810ca2a00215038548b1caa8" + }, + { + "alg": "SHA-256", + "content": "26f7224a94f2b44187bcaebaf81e01800f3f887d74720014a31b389b81071808" + } + ] + }, + { + "bom-ref": "a902b401c6898d2b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SB/FO.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "0f888aa38b13db5476af4bb6907b4bfaab79b859" + }, + { + "alg": "SHA-256", + "content": "2b6b9b1225ad8728082fe95216e649f57470e0784300adb25ea62fc6ca0c5fde" + } + ] + }, + { + "bom-ref": "a69b272a51b762bf", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SB/LE.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "e14c4e4cde0a735f09c6515f9c3c1ae251c8d5a6" + }, + { + "alg": "SHA-256", + "content": "b2e98d17ed1daad47e1ef3389fcffa06b8e7d4a0de3aed516d8688120a7f802b" + } + ] + }, + { + "bom-ref": "007ff9eec84127e7", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SB/LO.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c911130d829c40612f09ad36163e25e024fb04b8" + }, + { + "alg": "SHA-256", + "content": "bb003014b8f9cb539d69386036096730e4f0f9d7d16a720059470ceb05b6e8e7" + } + ] + }, + { + "bom-ref": "c92dc7b6e5c36f17", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SB/NU.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "7559c7adab9c4ccef801f7c66530c7dd8e7d9b90" + }, + { + "alg": "SHA-256", + "content": "aa70f9f8220779adf1e4e90c6ae42661bf451b0ee453ed989b366c7e5f230941" + } + ] + }, + { + "bom-ref": "faaea49134ca03b5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SB/SC.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "3592201b4564ccf6a7b1a8af5bb687c61f576cd5" + }, + { + "alg": "SHA-256", + "content": "471533f06e10e4b3dbb6b42276e17d693bd466a62823858685907093325db2cf" + } + ] + }, + { + "bom-ref": "60a3e424769f1fe9", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SB/ST.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "3bc312c345bbf9de4e87a107c2168d21ef0b20b8" + }, + { + "alg": "SHA-256", + "content": "96d24a6903d964f5b10f35e5479eab3d5de3b66d3c950ce8a77222ed1af21287" + } + ] + }, + { + "bom-ref": "95de074c76c9746d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SB/Sp.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c0cfce18101991e9d728677b13a824b43eca3ea4" + }, + { + "alg": "SHA-256", + "content": "63d60fc6498daeb4ff8e3083ece0a52d1dbcc6f4de994c95f31ecb251fdc5f09" + } + ] + }, + { + "bom-ref": "24a3d99bf00a8551", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SB/UP.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "89fdd012de3171a45d7869861394fa45eb890d02" + }, + { + "alg": "SHA-256", + "content": "94795e6989f8c313f23b117dbd36ef879b835dcbaf5078f19dc9133a2c29f555" + } + ] + }, + { + "bom-ref": "ebb6749c5d06077d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SB/XX.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "b68e54437f7327a81b026a0e0bfd191401e53626" + }, + { + "alg": "SHA-256", + "content": "fa37d4ad0ed11f5c679bf93a7a0f656723610d8a65b5d01fbf7d922891977ee9" + } + ] + }, + { + "bom-ref": "972f02a846b8a62c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SD/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "01f8b5128c8ab694c672552b139d99a642bf4372" + }, + { + "alg": "SHA-256", + "content": "dcdf1647191ff001275183db73a73c71e0e8bbabbf96a48c0e56649ee9365321" + } + ] + }, + { + "bom-ref": "a2156c7038d28089", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/STerm/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "ba323f9d520c16db435c6d24d356bef86dfb5bf7" + }, + { + "alg": "SHA-256", + "content": "cecffb68d0814a2e6ede4d68ec3f165f15bf6c5fd0c26a102c5291008b3df472" + } + ] + }, + { + "bom-ref": "42eec5fab43486ae", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Arab.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "05af3c8e6c44e860d1ab853ed6347750023fd7b5" + }, + { + "alg": "SHA-256", + "content": "7c458689eaacdf8b26f07aa82c48736a065d49fc2efd66352344921845eb2f68" + } + ] + }, + { + "bom-ref": "2d7161cf82b99157", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Armn.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "31e03b4671717344c338df3f73a2cbd3c349db4d" + }, + { + "alg": "SHA-256", + "content": "c7b4884e4f065d3d9ab79d65467cbc7fce4cc00e376a87891f063c3f2d891365" + } + ] + }, + { + "bom-ref": "45c14aebb1c5822a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Beng.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a88cc08aa5b785341278a539e17c3628bc5d42b2" + }, + { + "alg": "SHA-256", + "content": "ca25509d5ebdb241de2d32cbfdd67c7f6d1326f7978cb06a0b778c396f6c3ce7" + } + ] + }, + { + "bom-ref": "e3f891b75ed8d5cb", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Cprt.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "d00a6fa4c0ee7f5df5f219935b6b849553802dc2" + }, + { + "alg": "SHA-256", + "content": "154ba399d33fb7a85782e47e4b53ceaf1c0899012b04e82b68cc5d7641c6241f" + } + ] + }, + { + "bom-ref": "7bb6e3849d157ca9", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Cyrl.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "e88bc8f9d53b5a77e0e06d59053ca5ddd0d9c165" + }, + { + "alg": "SHA-256", + "content": "d81874cbaf0d31e3c009947123c2bf9a3836a02f89095604c5f5b2989f1e5008" + } + ] + }, + { + "bom-ref": "76c1b60315594259", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Deva.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "4b43eb5401bf3ad5e3f2166fc62bc073c40c32b8" + }, + { + "alg": "SHA-256", + "content": "068e1120d8b01c3af6ea98bce7bf31dba3dc9a38da219a72bd4de6fa765c5568" + } + ] + }, + { + "bom-ref": "d7c2c7e8b9a11d33", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Dupl.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "88ac729f43e64042b2ede2936ef0e10217d279db" + }, + { + "alg": "SHA-256", + "content": "d64973631ce7d3ed0926369e5e70982095d32def8177e6f506facc28c50fabd4" + } + ] + }, + { + "bom-ref": "80a8a9f1937ccb65", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Geor.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "993b4139eadb3241cc00aef240aec38fe4679451" + }, + { + "alg": "SHA-256", + "content": "0572658ed8d4041134d7d5733a025a1f2215fd1d39006afd4075748580504639" + } + ] + }, + { + "bom-ref": "0595460e0d884e8e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Glag.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "1322928c9f1cd5d0677866c2f5bd75a8937f47d4" + }, + { + "alg": "SHA-256", + "content": "0400bf4ac6571ee1e213af09538e53ee2eb1639432c132e2755185dce0e0ae6a" + } + ] + }, + { + "bom-ref": "bb4449e8a250e472", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Gran.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "bf79340d1b12be1ccecec1900bb9537ecb0ca3b7" + }, + { + "alg": "SHA-256", + "content": "a8ba1b7272b164622976ac6f5bfdf75aff5c195ecef7ccbd7bf3560d116c1e00" + } + ] + }, + { + "bom-ref": "18bdac61034c5015", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Grek.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a92c93383407e204cc5d46489260328fc3dda1d0" + }, + { + "alg": "SHA-256", + "content": "075d920dc1ebaa723f17320344221855595a743bc6b778d7da8cc7b5a9a70d00" + } + ] + }, + { + "bom-ref": "a25062bea52bc66b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Gujr.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "917bd8a8cffa212d4beb20f4ab9dc79871373baa" + }, + { + "alg": "SHA-256", + "content": "115a467eb875ffee7e4606886eae0d19c90add191113250240c0b5e76635821c" + } + ] + }, + { + "bom-ref": "8a39ce0749c14e57", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Guru.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "b26a38ecde8a4cc35a8a65277ab0877da2fc0328" + }, + { + "alg": "SHA-256", + "content": "e2d8941ef9c2f892e47724287248c5c48afdba877f54ac8b6b47eb1076ce89f6" + } + ] + }, + { + "bom-ref": "7924519ee64fff93", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Han.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c71ee6b41ce7374aae501ef230c6dd383a2337a9" + }, + { + "alg": "SHA-256", + "content": "a6e55607244388d04c101952cb3cffcb430cf09de337ce43f262622c17ed6d47" + } + ] + }, + { + "bom-ref": "a4731ffec3c976fa", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Hang.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "de80862a8d11ec187e8e61a7abe9f2a140ad5c01" + }, + { + "alg": "SHA-256", + "content": "fa57d51d61ec3fc51782880c054ba87b8bb9b3df3eda48afc028e7441772c314" + } + ] + }, + { + "bom-ref": "fa19507b4bf83600", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Hira.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "0e8e35b11ec1e45a9174b04d8b79d833c448a05e" + }, + { + "alg": "SHA-256", + "content": "971b8087e79e4bda003828d319700feb6fed11dd7233cabc40a5a849ca74673d" + } + ] + }, + { + "bom-ref": "a6cb14ea75960c78", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Kana.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "b740e734c9ca241b8018ae2590d20a806aedc373" + }, + { + "alg": "SHA-256", + "content": "383523c8d308a96e73799ad9c4a385df7f71fa231143e6a3281f278b5e573605" + } + ] + }, + { + "bom-ref": "010dcf1255082b11", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Knda.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "7812b60e1b58446b10f8cb5735de1044192fa702" + }, + { + "alg": "SHA-256", + "content": "672853ee36bfd451a130ea6bd5c28adc15c13dd0d9d8dafe4ad482de2432121d" + } + ] + }, + { + "bom-ref": "d717827505608f56", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Latn.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "5a0520f0859e2eebf0eee8bd8aacde4097978871" + }, + { + "alg": "SHA-256", + "content": "69725dc9d71d9456061256525ec769f1af130d003b66a4d8d86ec4d1790b982d" + } + ] + }, + { + "bom-ref": "a0ac17d8c110f44b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Limb.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "d26173b35dec4ebcf67237bdee9a9f5a34da59cd" + }, + { + "alg": "SHA-256", + "content": "98e00b043903f4f890ccadf647bd647970a4d2f1bc4fd71f8ff792c8858d50a9" + } + ] + }, + { + "bom-ref": "6d196535f638b2f7", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Linb.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "baa6ed6585e495447507271e3e37dec48de814cd" + }, + { + "alg": "SHA-256", + "content": "587402062b2c9fea174f58e686745a1c89b59fe04e3b0370f55293918ade4825" + } + ] + }, + { + "bom-ref": "6345682ebab06c5f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Mlym.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "77374a2f8153312b9a623e678aa0dcac49313697" + }, + { + "alg": "SHA-256", + "content": "eaf98ec0143805ac612da1103ec004d434b553225622d2f29e401da066b6068c" + } + ] + }, + { + "bom-ref": "48a9eebfe9731a7c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Mong.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "36864336800738c6808ea9d86bfa5312255ad0d7" + }, + { + "alg": "SHA-256", + "content": "2aa0c57c06600a105d29cf5e0b00917b992cd70ccc88e73ccfa76aedbadb6dda" + } + ] + }, + { + "bom-ref": "0299a67b87b8da34", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Mult.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "3444e0882027ffad601b896795e7b87b33d7dff1" + }, + { + "alg": "SHA-256", + "content": "aa10c2969f9de61afd6c261da12af05ee14fe173edb855c6ad1877ba88f32e15" + } + ] + }, + { + "bom-ref": "17117f49c83fb722", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Orya.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "31c35943b57240b9f46b44880bb9e06c2d87d0fb" + }, + { + "alg": "SHA-256", + "content": "cd7851f06bf4c921401746a80da63bfeba9992c2e19a9cd9e0f41d9033fb49e7" + } + ] + }, + { + "bom-ref": "69987c207c6bc048", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Sinh.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "f91b03335bfa0d7d790dcad11af649b27429b448" + }, + { + "alg": "SHA-256", + "content": "46d7e510621a5efff7f6e3049a4034ba90f7980864e45bb0c2d780dcb9777080" + } + ] + }, + { + "bom-ref": "6f882eda7b93274e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Syrc.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "8c79479ae9d7c53dcb1639216d7c9fb364c9fffd" + }, + { + "alg": "SHA-256", + "content": "293176b33747188ac47657843848c2a92f3b165ca52bf11d84226a547b4aaa30" + } + ] + }, + { + "bom-ref": "25b3b6a8b57142bf", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Taml.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "1acc4a3ca6a5b7da1b1393ec25ab1e3cad4d7b55" + }, + { + "alg": "SHA-256", + "content": "c837a3fcd38742a8623fa071eeccc3182d8f19c5c8c292cd3067a8d66689ffb9" + } + ] + }, + { + "bom-ref": "b58c3d9b6fd87f52", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Telu.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "aeac548c3056d17a69ee93bb79114e996116907b" + }, + { + "alg": "SHA-256", + "content": "dcc310c988b8577e9c9a2883d35eaeec7711dde5efda4faff5c7f3cf6c4b8641" + } + ] + }, + { + "bom-ref": "3141a6a9dc24de4d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Zinh.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "6763c6956c5be62f6e438af2d80535faea2895d6" + }, + { + "alg": "SHA-256", + "content": "2d902e28682147e361d61dca3a00367583e7b7322627a3221fd573cea83ab22a" + } + ] + }, + { + "bom-ref": "e54fef1a3b20c0c1", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Zyyy.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "081e67478ddb7986e4cd1be26adc43ed0e219dcf" + }, + { + "alg": "SHA-256", + "content": "272769ccbea9833a5415b23063ba304e38ea092b71c210e1bf8570c077babb72" + } + ] + }, + { + "bom-ref": "ab8ecf786a51bd65", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Adlm.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "b98eb17c576206c90d8e75bc1a1921431375a254" + }, + { + "alg": "SHA-256", + "content": "d0f38519b5fa10a3d52d979749edb89cd8e24598b1c467918c8ab31fc3df2f98" + } + ] + }, + { + "bom-ref": "55fd6e49d6df291e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Arab.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "bfea54e2fa026f2d3317e3c1d958c136f7312f60" + }, + { + "alg": "SHA-256", + "content": "b842174d547f311bd414a3083f5fc32c2387171c12c10f4a3bf2bfbbf40b1714" + } + ] + }, + { + "bom-ref": "5e3f89007674c118", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Armn.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "e5149ee135d2df4d02a102af8bbe7929942ff41f" + }, + { + "alg": "SHA-256", + "content": "b6b258f55f5e1ab4d817e9cb703c1fd5ad52a0ed0264df69f1b207dc4566cbc0" + } + ] + }, + { + "bom-ref": "b7dfe2a6ec54fd43", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Beng.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "776be165e3188443821d518e3f531a53548db499" + }, + { + "alg": "SHA-256", + "content": "537f9bd9799379dde4332e7901ada4f47e47575767880fe6d62df33a2951044a" + } + ] + }, + { + "bom-ref": "96b449a63543b2a3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Bhks.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "400e0924ccb09b311499ad29456fa1209c876bc0" + }, + { + "alg": "SHA-256", + "content": "19779f34f95a4f2f06796fd2c96673e259381328a46843eec7737d6f199915bc" + } + ] + }, + { + "bom-ref": "2a4b5ceda1345627", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Bopo.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c70bd8a91c4b3e12c44afb425b841dbe4f1f03af" + }, + { + "alg": "SHA-256", + "content": "4bee517f813ffea4836fd1f9aa16493e3ddb88cd2b54d3e96080af736818670b" + } + ] + }, + { + "bom-ref": "3c20a783819c632c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Cakm.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "406c4404a5c4739d7894e8a64c86bf5f2bb96599" + }, + { + "alg": "SHA-256", + "content": "249047cdea75de4546381562efe1c5fbc02188b904a7796e5a012be8deb13214" + } + ] + }, + { + "bom-ref": "4f7aca256d36f464", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Cham.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "7b17e67879b0cabdfd9148d4fc457c2436ccfe29" + }, + { + "alg": "SHA-256", + "content": "1f40f78536b1df748d57b77ad0d354800d7fe4af336c4d46ba48f61565bf3222" + } + ] + }, + { + "bom-ref": "797edf46c6baafd3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Copt.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "637432ced0a1c1d4f841b0b8e3c8e83af789c4a7" + }, + { + "alg": "SHA-256", + "content": "828a852bbdc3d566b5f4ad39d72fab829ef15db29c8d013bcf79abc61a10013d" + } + ] + }, + { + "bom-ref": "4fadb25c58cc7d29", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Cprt.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "100a4a195e3cdfdfe2146981456e4da9ef46833b" + }, + { + "alg": "SHA-256", + "content": "b78e93a90e14c57cce731ac39bd31d29eaaf86a05245e0faca5351010de3e466" + } + ] + }, + { + "bom-ref": "587966717c4bcb42", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Cyrl.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "61a1272463c9996d1658842a15c8ca35d7e836a3" + }, + { + "alg": "SHA-256", + "content": "8d3fcf8d98358ea933846dd40ca30f5e58fd102290043a0e3cddfdf1c8bbfd5d" + } + ] + }, + { + "bom-ref": "e929ce87df205243", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Deva.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "be09ff7755703f165ff3f80c10960655715767e3" + }, + { + "alg": "SHA-256", + "content": "34df473039128e85574be2617249161196e5e0dd0521a965a2a2e978e0076ad0" + } + ] + }, + { + "bom-ref": "db2515e997e28871", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Dupl.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c0c910d5c32b1c3de3b8ebf2905b35a00086ff77" + }, + { + "alg": "SHA-256", + "content": "e816bae05474d2a0b047f23ab0ab6e0b090787c9821b4532fa49fc3db91fd98d" + } + ] + }, + { + "bom-ref": "a900e226e7c4f408", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Ethi.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "1e53baf691ed37c5aaf3467541fe9c754a14e656" + }, + { + "alg": "SHA-256", + "content": "9c8a6e54af70b32e9bd2ccee7714f8ccbe601fd95a8b916ed42f754674872eac" + } + ] + }, + { + "bom-ref": "8e5d53ead09bf341", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Geor.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "50841d7de867416ea4c7ab4aa45b10f310f30f4c" + }, + { + "alg": "SHA-256", + "content": "8a01fa43e92225858b979693113b7935f5d30d41b8ceac3ba68def3324363a31" + } + ] + }, + { + "bom-ref": "1f10250d691ea0e9", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Glag.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "de0370973cb99e64fa01304febcb5bd234abbad5" + }, + { + "alg": "SHA-256", + "content": "ed7e64a7f6f74b993268fe5c03454066ef306c9432b571c2afc966d9ecd697bc" + } + ] + }, + { + "bom-ref": "99ccb142265b0b06", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Gonm.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "f4b9547d6648bc818a5edc3297275a87e883b361" + }, + { + "alg": "SHA-256", + "content": "24f515d7771d270d0b4224065f30cd7e396f9786acaf04b114016821d74f56aa" + } + ] + }, + { + "bom-ref": "5bbf84c6d37f2515", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Gran.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "447e2035f7723125247fc5b4f5b6496d7311d5e4" + }, + { + "alg": "SHA-256", + "content": "e1f1a0005108a5e75ba068640bf04c43040a0ce349871b3624170fd0e283d2b8" + } + ] + }, + { + "bom-ref": "281b61d6acb1f934", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Grek.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "1b3081735b9dc0a4de2f4b87151869f7dabf402e" + }, + { + "alg": "SHA-256", + "content": "e38b1e797b6b4a51c71ea894e907d1c42128aac229f768f06f6a7301028cffa4" + } + ] + }, + { + "bom-ref": "02bba784446be85c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Gujr.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "dc71e686fe097effe4cab71baf3624a17f19c101" + }, + { + "alg": "SHA-256", + "content": "9c25984371ec603c9b4af0868f67b32a092f9b060517dc5377ea5c4facb9bf5f" + } + ] + }, + { + "bom-ref": "9960ddaf30ead2df", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Guru.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "cd657894b534cb02cc4bb84832e41f7836275569" + }, + { + "alg": "SHA-256", + "content": "5e4d2d3ce1d53b54ac618e119bc2b7898843551c226f17222f8b48f6f8452b58" + } + ] + }, + { + "bom-ref": "78f1200cb85b6754", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Han.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a3a807c403c1d56fabe01a8f061f025c601128ea" + }, + { + "alg": "SHA-256", + "content": "860d0f3df01839ba2c5d9ce15cc6009ee534513ab787acc8be57deaeed1ebc01" + } + ] + }, + { + "bom-ref": "fe4671c348679964", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Hang.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "962549741ad969e1d206d3ae667b2cb08c65e4bb" + }, + { + "alg": "SHA-256", + "content": "6ec84d61b886f409b5f445d628244290b5ef76dd82f2e420c62a01b0f041bfee" + } + ] + }, + { + "bom-ref": "a6bdc543d233bb1b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Hebr.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "84757b09b732e63890e114a1e92dbbe9536997ae" + }, + { + "alg": "SHA-256", + "content": "269f9b9798cef2d7726b9d468dfa9e0b5881cd08ba9f474f0aaab37ea31d310b" + } + ] + }, + { + "bom-ref": "e4e8651b2b5724ee", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Hira.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "37d486c5f2056275454fa85fd26e73901bf2e200" + }, + { + "alg": "SHA-256", + "content": "7102721b57e68c616f9b3be836a61d8bfe2d844e13efd578faad53024f15f29f" + } + ] + }, + { + "bom-ref": "2189cc572b94e340", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Hmng.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "60f3eb00e9cdb124413dcf58ee1e9a51bb3f16ad" + }, + { + "alg": "SHA-256", + "content": "b21bfbb06d111574226585321b814fe5848ecae3b82a73e312c427d50bcaac55" + } + ] + }, + { + "bom-ref": "02007f6a349012c0", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Kana.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "cec18101979c0c1e386ce9767fae592ed0395289" + }, + { + "alg": "SHA-256", + "content": "746b746debb50ec9ad9b4d43440c460c1de4752577c6dd705cb4f1ae7f5690dd" + } + ] + }, + { + "bom-ref": "3424d0775da3ed25", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Khar.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "ffa5613b20c0c9bd336e40033ef64f026a4677f3" + }, + { + "alg": "SHA-256", + "content": "dc841b83289d9df1f3264f35f31f7ff01a8b11124f6470abb58ae81770420f1d" + } + ] + }, + { + "bom-ref": "f515c69fb5b3c739", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Khmr.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "446f65053589a9041bd93da8b38cc6c01f3506d5" + }, + { + "alg": "SHA-256", + "content": "117ebe2777b90a2026e651db8ac9e9e69eeed8dc6cfd6eae04972d7107721215" + } + ] + }, + { + "bom-ref": "0de8882ea158bf65", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Knda.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "d97db88035b3319fad7896b0debb7dac268c5f75" + }, + { + "alg": "SHA-256", + "content": "dc6404b88a99648491882ec4ba7c14656c5ab660f8bd5051d47d5073c6daeb24" + } + ] + }, + { + "bom-ref": "73045ad2464b187e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Lana.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c88f502fc7d5e92eeb81c146da5fc3dc1844e232" + }, + { + "alg": "SHA-256", + "content": "c224b507803412fc3ce2db7c8c622ef0a5f6f229c24ad20a699500ca2339c24a" + } + ] + }, + { + "bom-ref": "b98c8a31999298f2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Lao.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "0bfbfbc8361e639905d81eb0b80b1f4509aa0e3b" + }, + { + "alg": "SHA-256", + "content": "4e3592576bd367ba5b6708daee0f4374d085945d9b587a4ba5268548868d6012" + } + ] + }, + { + "bom-ref": "e3818f717afce736", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Latn.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "d1fe6ac9ed9fabc4a80f1794c6b504f05f76c3d2" + }, + { + "alg": "SHA-256", + "content": "d6fdd416851b5a7426daab5c172ab47aaff3e8a13e7025710103381be2c04faf" + } + ] + }, + { + "bom-ref": "10c51c090f2e2f1b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Limb.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "078327f0d1be431f6b594c9cdc47e691051de87f" + }, + { + "alg": "SHA-256", + "content": "e6429d77abb7ca195f4a1f0a9a2c6a48739e9a607cdfc58a5961111d1948e319" + } + ] + }, + { + "bom-ref": "5e69d2ddff9c759b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Lina.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "d35227396a702518057f40efe496bf6fd2095875" + }, + { + "alg": "SHA-256", + "content": "820dccb48a8f37c106b7b470f3366c345972ecfe837f50e3dc63d37397b2aed0" + } + ] + }, + { + "bom-ref": "6ea575ee0e99ba7d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Linb.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "5ffda753e43ec91cd66f4ab8fc214bb054f984fc" + }, + { + "alg": "SHA-256", + "content": "c1f0c945de13c9475b63e4b476159366990da289eb73cb13cf10f8378c9bf214" + } + ] + }, + { + "bom-ref": "2128277ccf718d6f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Mlym.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "fb315a39a075868e9e4547255a5e03bdb760f3ee" + }, + { + "alg": "SHA-256", + "content": "dc007c64d6a06f01e155a5c76849a04d8d203f9d96b30b867d592df71f5f6e05" + } + ] + }, + { + "bom-ref": "4d320c95fcb790cc", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Mong.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "92b30dc3b14dc3f7d9088633a4b5007831c0c713" + }, + { + "alg": "SHA-256", + "content": "658657045928a90bddef580a0b0133525e17d1f9e6d427589e0887f35030f2ce" + } + ] + }, + { + "bom-ref": "d63300a330a11ab4", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Mult.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c9f93f8e37bb0117f88091b9a16c416f17d1d198" + }, + { + "alg": "SHA-256", + "content": "6d89864335f80f813a2206c350bb020122cb3918f73b2cfac9c45189c8c4e16d" + } + ] + }, + { + "bom-ref": "c5d440342ad5edf8", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Mymr.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "714e3af1f32d481d23a5d789310337d2d4492a5b" + }, + { + "alg": "SHA-256", + "content": "7c09dcb5c71985a6755db1d383a53ccba6a90515880f38cdacee3937815486ae" + } + ] + }, + { + "bom-ref": "709c95bd12759806", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Orya.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "3b19fa258935f69c84cdc4f58d7c0c8c6604ce95" + }, + { + "alg": "SHA-256", + "content": "8a318f9962732baa5dae0d99796860fb221afd76de5d64cfb035e22b2f94190c" + } + ] + }, + { + "bom-ref": "dd3e0d07d7106996", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Phlp.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c3b38bd26bff8943508da2d4dcf969e1213fffa4" + }, + { + "alg": "SHA-256", + "content": "b501fbbd6e1d1980cc3fbdea87569062763c7814ceb5102c956b6121f9b6c478" + } + ] + }, + { + "bom-ref": "ce5a5ebec6baadf6", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Shrd.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "415f8035c82088f04cf3d6916e1c355c37c787e9" + }, + { + "alg": "SHA-256", + "content": "7c2f07a67335dfdb217ae689692554d6ce86ea0c270d57a233856f03ae0b2ba7" + } + ] + }, + { + "bom-ref": "4633674b9e2c828f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Sind.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "2fc6f1e4fa087c0a0b6604467015a19bf18fa9ae" + }, + { + "alg": "SHA-256", + "content": "31a994689c0be70cae29b487e0e5fa6ba9824a3e1f5c17d70dc309bf5fe07f06" + } + ] + }, + { + "bom-ref": "151acde9b83b3dd3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Sinh.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "d8e9b83e33c406998cebc83510905178636327a1" + }, + { + "alg": "SHA-256", + "content": "8f601397c339ddaa9dc9d9dbd6d7d3aadac1b002df2275042aeff65235fec48e" + } + ] + }, + { + "bom-ref": "dbcf1efc53fbca8b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Syrc.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "b6d4aa7a8f2505fd2e63fe720efe5d453e5c561e" + }, + { + "alg": "SHA-256", + "content": "ae2528f2184288aa0763606e4a609a28699809dcf3c4d25128066fe0b7d9c5db" + } + ] + }, + { + "bom-ref": "d34c2bc17c96b196", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Tagb.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "7a014fa5b871aedf1b56449862c359c31af0dbdd" + }, + { + "alg": "SHA-256", + "content": "86a4026845539bc274172c57168cb5074913b2c065c570b5c36578eb3ff01cc3" + } + ] + }, + { + "bom-ref": "bfa9f44d4a614109", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Takr.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "992cc83a23dd7dc10320bb35b149699a9f8279f9" + }, + { + "alg": "SHA-256", + "content": "a568736c971ff7f413e31947283c5fb504baf8a58390ee03060b2cea28c64c93" + } + ] + }, + { + "bom-ref": "5a0646714aa52827", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Talu.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "313135b43d8a37d2fb197b40c0a9b308ebc7ed33" + }, + { + "alg": "SHA-256", + "content": "c065dc61853df82316b796bf26a8e632803ac31ffb9bd5b3878a7d6afc48ffbe" + } + ] + }, + { + "bom-ref": "c52ce839b8ebf061", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Taml.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a029d879b105006137cc7ffb23a3d8afcc810abe" + }, + { + "alg": "SHA-256", + "content": "3650671d47aff1c3fc807b483c7c75d259e5080c8db28a21485ee8932749a46c" + } + ] + }, + { + "bom-ref": "bf22bdf87bd6b6a8", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Telu.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "d119ddd7a350e868ea4fbfdc35886e4cea210ded" + }, + { + "alg": "SHA-256", + "content": "472282ab964381b1e3d42fd8a21a14ac9dc893eec45271e021d68fab6629a2e5" + } + ] + }, + { + "bom-ref": "955b53ec10a419d1", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Thaa.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "70157cc820288c32448192d891e1be8ce398948f" + }, + { + "alg": "SHA-256", + "content": "d53974bfbadabcf925b4e454b9b785bdebff96b0d555280ca4e2cb04faa8706a" + } + ] + }, + { + "bom-ref": "8ebf91df215adc19", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Tibt.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "418d2dc794f074324072a062a4aad9d2414b8764" + }, + { + "alg": "SHA-256", + "content": "550372b4194556e776b3d7c582f798166751877f4c4f9725a2d9eb2df860907a" + } + ] + }, + { + "bom-ref": "e22607d31d72df94", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Tirh.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "071effc097245a4b5633765745daefd60dc08b0e" + }, + { + "alg": "SHA-256", + "content": "1e735616d21651f9ad720ce107598a7b079565b65af42c72338ec5617dbd2773" + } + ] + }, + { + "bom-ref": "7276e5951e9a984f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Xsux.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "487a4f8dc0dd8458f0145a431e679c0636589a13" + }, + { + "alg": "SHA-256", + "content": "27cc4079760b4a3fb3a9fe3070f551e5e672f2a9bf5893ab4a079080d061f2bf" + } + ] + }, + { + "bom-ref": "06dd1f8065d95e0e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Yi.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "8cb8e258569aefd06aa803a6e8e30c66d6519c2c" + }, + { + "alg": "SHA-256", + "content": "3cf2ca166c9cf3649419e4fbf49e37a4690cdd98a9683affd2c13541837e2fe5" + } + ] + }, + { + "bom-ref": "5db86d3f0262e9f5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Zinh.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "dabc4c453eff89f1ac008883f88b284de9221010" + }, + { + "alg": "SHA-256", + "content": "1eba8b8bd3296067a5a4d5ec59a7202b7bd1900a90fa7ad92f3ed20be5f6d51e" + } + ] + }, + { + "bom-ref": "1a5984901d4ef639", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Zyyy.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "dd4c355869ccd42ebfe26b633c76de9b1625fc08" + }, + { + "alg": "SHA-256", + "content": "6056d6013fc84cda77273e5511b308c78c4261316b2a183ff3f42d7730180e6a" + } + ] + }, + { + "bom-ref": "da3dad5ddc585ce4", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Zzzz.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c61414fe0514ac3ccb7890b5610ab8853354cfd6" + }, + { + "alg": "SHA-256", + "content": "c571970d8b558a70f6c5da7bcf610b48e4b775d910e398f8dd6be807e855d34f" + } + ] + }, + { + "bom-ref": "4ab6f94b26764069", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Term/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "4d8b2f9efe53455fe6684699f9acfbd3938efa1f" + }, + { + "alg": "SHA-256", + "content": "ffe5e6cdea14b3268591bdec0d941b22016982982e262d67707b10f36fe9c232" + } + ] + }, + { + "bom-ref": "e87d668ad5590b2a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/UIdeo/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "6b3678cd861f6ad69f0fa078d99abf663069b948" + }, + { + "alg": "SHA-256", + "content": "81ec72c987fa9a848f94e9d5e42a028d2ea11a6ceb958480508c0107cc04667a" + } + ] + }, + { + "bom-ref": "17ea6a84677eb2d9", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Upper/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "88ad544510a01e44938bad518706670945d0f59a" + }, + { + "alg": "SHA-256", + "content": "ee21717ce1c6dbecf04743139f66b7d0a54876dd26e1fe46b3e22e80e1f60c26" + } + ] + }, + { + "bom-ref": "9941221059e1e6fd", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Vo/R.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "1cc483e077ba8b6ad5607ab5c51508a17ec03904" + }, + { + "alg": "SHA-256", + "content": "bd8812289efcc4faaa56e2411b196d15aa74e97df166b3c3e1e84d09f16444c3" + } + ] + }, + { + "bom-ref": "9e9a6e1e8ae0c651", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Vo/Tr.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "d98cf17ab0ff8d6af6fbc2c3737ebf4ac9cd84c5" + }, + { + "alg": "SHA-256", + "content": "9a023030433092de52fc0a2a07db86baba747cf9cdbdb30870ed00af1a5059d5" + } + ] + }, + { + "bom-ref": "a0fac9f301b59ca1", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Vo/Tu.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "9ea551fbb35fc40efb3334142574553a4f949c93" + }, + { + "alg": "SHA-256", + "content": "a38a08ccef6ae0ccecf1851b2010c0d241fff08f836683295a61037f38bc2a26" + } + ] + }, + { + "bom-ref": "93063de0aa3193a5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Vo/U.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "8da6d30cf4041fcde9d6abe04d25a5dc04f06c48" + }, + { + "alg": "SHA-256", + "content": "6c29dfa812250f4a1697d99007b557317feab1199b3c13dd8aad031839be3eff" + } + ] + }, + { + "bom-ref": "6d8f6349c6c60d73", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/WB/EX.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "cc50719b64db32df1f965adc7e70a884cb0a8326" + }, + { + "alg": "SHA-256", + "content": "76c30a2bb4f548c97b6ffd9de104e50578f72d7dcd4f6644e08178c2755a8b59" + } + ] + }, + { + "bom-ref": "a2d173dc16a55c9c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/WB/Extend.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "668e04a9007da4dc74ac376ea9709618573f8062" + }, + { + "alg": "SHA-256", + "content": "1f8cdc0385504c8decf9eaf1f6875e45adb2dc3c4b40675155c73faad0dc5b9b" + } + ] + }, + { + "bom-ref": "826f710f5fd419b2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/WB/FO.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "2031f6b9d7e3a9e01262e129343c0427aef45514" + }, + { + "alg": "SHA-256", + "content": "63955f6f52a0f863c844303cb6f2df5b4d70743cedad080b0c21dce50e13ea65" + } + ] + }, + { + "bom-ref": "3dafd4a2710292ba", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/WB/HL.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c6f9d0126706ac027f62de5929a9762200dd28d1" + }, + { + "alg": "SHA-256", + "content": "3849af7ad94e7489a38e417359442d0a42a9e7449c2ee528fe535865d25537d2" + } + ] + }, + { + "bom-ref": "6e23956c2932974d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/WB/KA.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "2c52eb591c16dbf3719525e83ccf21f28a91aa04" + }, + { + "alg": "SHA-256", + "content": "398fbb581f6fc9841c61abb4248d487a0f803d2db0858331b2cac00e6b402cf8" + } + ] + }, + { + "bom-ref": "001c4af95e835a25", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/WB/LE.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "eb17a90ddab51ec80e40d9dffbf73b89f04a36a9" + }, + { + "alg": "SHA-256", + "content": "1b7737906c1ea741dc1967e383f2c5a32e06099a1871a2b638ffb489fce670cc" + } + ] + }, + { + "bom-ref": "2d86f61937305679", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/WB/MB.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "ae26b575e4bd4085c226b860e93554d5d48bde9c" + }, + { + "alg": "SHA-256", + "content": "6a05346d2a93c05790dbd1eda4af3f9d4e5f41afa6c31d6feda5bb1a4e0fe3ca" + } + ] + }, + { + "bom-ref": "ea9ca70da13633a3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/WB/ML.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "0d70eec900de6ed59874686197dda81b3ec7ffd5" + }, + { + "alg": "SHA-256", + "content": "f15ee00643baf3f66c4b0868d31ced360ef8201095806ddd3128fb00e0ad313c" + } + ] + }, + { + "bom-ref": "f226414e8bceebe3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/WB/MN.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a50cf3ef18dbae3b87cc0514f809a148eb12f535" + }, + { + "alg": "SHA-256", + "content": "f458e7f0495cf11ea6b13e867cdbd830943761aceeebccff3e9861f8ad7d9f81" + } + ] + }, + { + "bom-ref": "558ffc4d59ed6922", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/WB/NU.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "f91cac5502dc480f442e7b93d63446006edf8c11" + }, + { + "alg": "SHA-256", + "content": "3fa78e29e157412db0024fb9bf896d0eca1e8ed46309f6529a56bc1aca6b488c" + } + ] + }, + { + "bom-ref": "f4700ebe4c56a13d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/WB/XX.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "002e9b5e999a2683808cfde84bc77bb3a4c48824" + }, + { + "alg": "SHA-256", + "content": "c81cf745a2ce6449abf999a577eefa3445c60e3f5ba567b1e85483b4b455d647" + } + ] + }, + { + "bom-ref": "d33b405d6fc8fe57", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/XIDC/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "63a521072f1bf0885fee9d60e0af5873b28538f6" + }, + { + "alg": "SHA-256", + "content": "661fee477084217acd3c162aeb7489e92ad827dac48d5978c2ccb37d46988c34" + } + ] + }, + { + "bom-ref": "a14396e914968e31", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/XIDS/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "63ec23a55ff550771584095dd426a4e3cb9bb2d3" + }, + { + "alg": "SHA-256", + "content": "3f3ff636724fda5ba689d066f701c186b0b394f129fce7a1e0f2e62707b1eab7" + } + ] + }, + { + "bom-ref": "06c67c6a7689d33e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/utf8.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "b43a646db31947e52e0dd497dc0391adbcc32fbf" + }, + { + "alg": "SHA-256", + "content": "3e8c5dbbcc41514f0329f1d91a69acf39c8666cbceb43932dcf546d34b0f33e5" + } + ] + }, + { + "bom-ref": "b7e4b5ee51c851ad", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/utf8_heavy.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "8b9df7a96d80741fd23e2841b41adf143013150c" + }, + { + "alg": "SHA-256", + "content": "dd1cea927bfb0cd3ddc6020ee822aac3745aa7723ccfbd4beb1d70a652224a4b" + } + ] + }, + { + "bom-ref": "7e6b8bb763d9d52b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/vars.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "5065f6654a4598e951d37460b859d7f2336d051a" + }, + { + "alg": "SHA-256", + "content": "2c8f74e255d3f1157bf44e9f6764d93f15540adc8eb10ec67b57f0438cb455fa" + } + ] + }, + { + "bom-ref": "3063b6a571663c67", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/warnings.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "4c476f419f8b3a58fcd1174c50ec277e5e53e59b" + }, + { + "alg": "SHA-256", + "content": "87271a4ecdbf35210db836e7afc48965081c5dfa7f1938cef4c265ee2becd856" + } + ] + }, + { + "bom-ref": "4bcf7ce00f2bc84c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/warnings/register.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "d5d2c542dc97b134df36d6966897a61d2de1fde5" + }, + { + "alg": "SHA-256", + "content": "962110d3faf3e55749a260d97edaf8a9d31293b0f33d2e7771663a9ef364aa94" + } + ] + }, + { + "bom-ref": "9f8e9d972f184e24", + "type": "file", + "name": "/usr/sbin/add-shell", + "hashes": [ + { + "alg": "SHA-1", + "content": "47e9e8533982606eb7b5b1c76e17a692d87917e7" + }, + { + "alg": "SHA-256", + "content": "959e8afe5754f4f09e70e95f3aa952d265e9344b0cb635663aeb4bbf70347bf3" + } + ] + }, + { + "bom-ref": "cfafc156ed926524", + "type": "file", + "name": "/usr/sbin/adduser", + "hashes": [ + { + "alg": "SHA-1", + "content": "a816eeefbd97e85c2440879c7bff331ffdad4be1" + }, + { + "alg": "SHA-256", + "content": "f13ad85950859c760c12b090241c723103a9ce9c1034b03db695a4b39fa5623c" + } + ] + }, + { + "bom-ref": "5b2d23ccf14038ea", + "type": "file", + "name": "/usr/sbin/chgpasswd", + "hashes": [ + { + "alg": "SHA-1", + "content": "728cbe062adb3da0afb7412750cee21c7b0c3ea6" + }, + { + "alg": "SHA-256", + "content": "dbda3ab0df73fbd7c6e8a5c3c4032d930f1488675110f05a9c25e3265af3a203" + } + ] + }, + { + "bom-ref": "cae8fa9e14626bf1", + "type": "file", + "name": "/usr/sbin/chmem", + "hashes": [ + { + "alg": "SHA-1", + "content": "ee1a35d71c7ec5a101ef35da24f99e15cb21ceb2" + }, + { + "alg": "SHA-256", + "content": "1087e09e36e4d389938a8b0354dc2be91580b1a22e08b44539711fa8d8b2e777" + } + ] + }, + { + "bom-ref": "5f8610b186bcadf2", + "type": "file", + "name": "/usr/sbin/chpasswd", + "hashes": [ + { + "alg": "SHA-1", + "content": "bceb4496bac4eb5a5820570a9adf71854fe8795c" + }, + { + "alg": "SHA-256", + "content": "214e13ae4f9f3a5b6df5fa3a78ed1dbddf003173e32f0e7bab2133a582dc3572" + } + ] + }, + { + "bom-ref": "ade958e3184e6382", + "type": "file", + "name": "/usr/sbin/chroot", + "hashes": [ + { + "alg": "SHA-1", + "content": "c66fd8ca4593b599e3d3e5f8704a35d14794cf40" + }, + { + "alg": "SHA-256", + "content": "cfdfb4ae550de4f89ca9a2658a84b738da04fb205b16626146b641d3a82eb4b3" + } + ] + }, + { + "bom-ref": "598b48691a5984a1", + "type": "file", + "name": "/usr/sbin/cppw", + "hashes": [ + { + "alg": "SHA-1", + "content": "cd875c7785de62f5a8f5ad1042f130c1df7437ef" + }, + { + "alg": "SHA-256", + "content": "7b809806dc857d1bd0a9a8cea0a117d68014a30035231b1853231a833c563a9b" + } + ] + }, + { + "bom-ref": "439dc9750494e848", + "type": "file", + "name": "/usr/sbin/deluser", + "hashes": [ + { + "alg": "SHA-1", + "content": "42f487960855d0cac935dd1aed90828f1edd357c" + }, + { + "alg": "SHA-256", + "content": "916a9338b199f8e78086e7ea787b992f5672c62cd693c7a2f9b1c6f74c8c0fda" + } + ] + }, + { + "bom-ref": "b4945c4204ee25a0", + "type": "file", + "name": "/usr/sbin/dpkg-preconfigure", + "hashes": [ + { + "alg": "SHA-1", + "content": "fe7f225c5a0dfc40f9af3cb119f44ff94ef1b64b" + }, + { + "alg": "SHA-256", + "content": "be85745cc3f23a9bd5d9eed0aa8fe2c4504abaf1c5e669120432ee35dee1c479" + } + ] + }, + { + "bom-ref": "836657f3cf735ee2", + "type": "file", + "name": "/usr/sbin/dpkg-reconfigure", + "hashes": [ + { + "alg": "SHA-1", + "content": "f46ada5edd0ba3a95d948ea46925bddbcf1458cc" + }, + { + "alg": "SHA-256", + "content": "a6aadf25a48b6662b185a4a5bbbb3fb53d1ab72beb43087c145deced9e209844" + } + ] + }, + { + "bom-ref": "a140c671a2ee39f6", + "type": "file", + "name": "/usr/sbin/e2freefrag", + "hashes": [ + { + "alg": "SHA-1", + "content": "ab45689d0f0bf91ecac7a30ae4fd5bbd01617fb2" + }, + { + "alg": "SHA-256", + "content": "16cb1c6021990d46aaeac4384e28281c88113cef4f3b60f822af4d02beb501cc" + } + ] + }, + { + "bom-ref": "2990087c0af3fe95", + "type": "file", + "name": "/usr/sbin/e4crypt", + "hashes": [ + { + "alg": "SHA-1", + "content": "ac379bfbe765764108789b1f5b86fb00e5c0a284" + }, + { + "alg": "SHA-256", + "content": "000f029110db9e82938af924a74409d5db3a4c840ea2a1ea295001cda299e2b7" + } + ] + }, + { + "bom-ref": "ee8e935b79329c59", + "type": "file", + "name": "/usr/sbin/e4defrag", + "hashes": [ + { + "alg": "SHA-1", + "content": "dfd149323d86506f5ba4a97a24b3aa01e4bfcf57" + }, + { + "alg": "SHA-256", + "content": "6554ca3148d6dabf4b13a5c1df7e83353d54aaa6a7dd8b016e2c8f91d79d2ebc" + } + ] + }, + { + "bom-ref": "6ac14414d5ed3d0c", + "type": "file", + "name": "/usr/sbin/fdformat", + "hashes": [ + { + "alg": "SHA-1", + "content": "b163b50cbb7e9dcbf2de93ef949b1ad5ae3528d8" + }, + { + "alg": "SHA-256", + "content": "628e7cefe43ac273a79dafdeddf986a1a8d17c63fbac6f7a1586f1868609072d" + } + ] + }, + { + "bom-ref": "9211d74c96a8e3a9", + "type": "file", + "name": "/usr/sbin/filefrag", + "hashes": [ + { + "alg": "SHA-1", + "content": "69241cbe6ca303b6f47a4aff8cf3373e31e66ef8" + }, + { + "alg": "SHA-256", + "content": "dca51e84e138f0fee8a8099e34bfe7ca569579ee8ea7c221819308e455d7aea2" + } + ] + }, + { + "bom-ref": "dd26269f921fca14", + "type": "file", + "name": "/usr/sbin/groupadd", + "hashes": [ + { + "alg": "SHA-1", + "content": "659f0b011f41a597ce887508fadfb0572371173b" + }, + { + "alg": "SHA-256", + "content": "d2f48e521f94b2c1b2bece1166e92f9460b738ba859ee36f6edd609e454b60da" + } + ] + }, + { + "bom-ref": "00ebef6aca5a2e91", + "type": "file", + "name": "/usr/sbin/groupdel", + "hashes": [ + { + "alg": "SHA-1", + "content": "05ffab57cd3dcb03423d2cf17d57669b3621ed36" + }, + { + "alg": "SHA-256", + "content": "f02366b0c2b9e67bf38898ca39ca0a7af4c3638e8933bd6db13f5710ebbccf88" + } + ] + }, + { + "bom-ref": "d07b979fcd7522bc", + "type": "file", + "name": "/usr/sbin/groupmems", + "hashes": [ + { + "alg": "SHA-1", + "content": "b1dec722a72a6adfa00449af95d6814ef1fc8282" + }, + { + "alg": "SHA-256", + "content": "3b407cd77762e53d639546542200ac443c8db25e767d74fc69b4e0b5954ec11c" + } + ] + }, + { + "bom-ref": "182ec0c129dd243d", + "type": "file", + "name": "/usr/sbin/groupmod", + "hashes": [ + { + "alg": "SHA-1", + "content": "d604a08ca4b961e3efe6286202730030d5b77f74" + }, + { + "alg": "SHA-256", + "content": "9ef64d9f11983a7d44d742b8f6902b48741bc03c58153fbadf5b829531264d6c" + } + ] + }, + { + "bom-ref": "bfdda280919f9269", + "type": "file", + "name": "/usr/sbin/grpck", + "hashes": [ + { + "alg": "SHA-1", + "content": "932f2b0c50988d356fe2a147128d05b6e05b4804" + }, + { + "alg": "SHA-256", + "content": "b74d443e4e3879edb7bc5994ba623f9f0bb1286fda74003e922ab15471d41436" + } + ] + }, + { + "bom-ref": "cbc3f745e468b4df", + "type": "file", + "name": "/usr/sbin/grpconv", + "hashes": [ + { + "alg": "SHA-1", + "content": "1fbbe95a7c42261cb2ca34bb37681d6113055a66" + }, + { + "alg": "SHA-256", + "content": "db8a05df481efb9dbe47dde5b340d2158ac4b1b9bb7c8f6a5970405dad71ee36" + } + ] + }, + { + "bom-ref": "26643545517a8cd7", + "type": "file", + "name": "/usr/sbin/grpunconv", + "hashes": [ + { + "alg": "SHA-1", + "content": "54f1ec3159a04dd10c047aeb63bce59d430a354c" + }, + { + "alg": "SHA-256", + "content": "797f41d47a10eeff13a876e9b1edd09388fcd90b6778bf405937803ff39f8031" + } + ] + }, + { + "bom-ref": "4902c438c9240caf", + "type": "file", + "name": "/usr/sbin/iconvconfig", + "hashes": [ + { + "alg": "SHA-1", + "content": "efd0c54690dbd7d6a114b2e65ca95e3af9f9727c" + }, + { + "alg": "SHA-256", + "content": "839c33a0f1f38d93bd6e088f047c0294ef996acf502f2a038548758330070afc" + } + ] + }, + { + "bom-ref": "1ccfb80877059005", + "type": "file", + "name": "/usr/sbin/invoke-rc.d", + "hashes": [ + { + "alg": "SHA-1", + "content": "c4d03a533fc24580d9ad9f9f74ce20068323cf51" + }, + { + "alg": "SHA-256", + "content": "e23bd68aa92ea828f64b67839906ec0a3ad6bb81611100a6db907830e77945ab" + } + ] + }, + { + "bom-ref": "31a2d67cfc3adb98", + "type": "file", + "name": "/usr/sbin/ldattach", + "hashes": [ + { + "alg": "SHA-1", + "content": "a435f466a50f803959cbdc5c1edb1d729b686931" + }, + { + "alg": "SHA-256", + "content": "2af8c02baa62f4c6c90fa4307be01a49fbfe404e805f79255c2326111f9cda7a" + } + ] + }, + { + "bom-ref": "23a440d9a2c80762", + "type": "file", + "name": "/usr/sbin/mklost+found", + "hashes": [ + { + "alg": "SHA-1", + "content": "d7de24f0ebefc974ecd70cf41a09589114efb7e3" + }, + { + "alg": "SHA-256", + "content": "1d958a999843f959bfe6b730eafc77cdf727f8323ecc7ed2f8e11ed88ef6bc59" + } + ] + }, + { + "bom-ref": "07771e58de61f66a", + "type": "file", + "name": "/usr/sbin/newusers", + "hashes": [ + { + "alg": "SHA-1", + "content": "6e5a7ff8652384d3a31d7373985b06432c54c5dc" + }, + { + "alg": "SHA-256", + "content": "911e819ca85edcea5fc0a3e92e9d9842eab6626ffed1b8464f4d1c98a5e6d51d" + } + ] + }, + { + "bom-ref": "9e397f131de83bb1", + "type": "file", + "name": "/usr/sbin/nologin", + "hashes": [ + { + "alg": "SHA-1", + "content": "11580e4554a3f32f0205bbc6e4ac9c8c8d70a168" + }, + { + "alg": "SHA-256", + "content": "56c0323b20b43f41daed7bc65cb27a0f196acab42eac69ff7334513215c7c1ea" + } + ] + }, + { + "bom-ref": "6a77e154fbf1ddba", + "type": "file", + "name": "/usr/sbin/pam-auth-update", + "hashes": [ + { + "alg": "SHA-1", + "content": "f97182863d0eceab654d3bc430d2aa7e4a46173c" + }, + { + "alg": "SHA-256", + "content": "05f863328fc375a59dcff3a1165cbc1ba39fa1e0a08fa6f0862295df0e4d7e84" + } + ] + }, + { + "bom-ref": "e68c0b64139483f1", + "type": "file", + "name": "/usr/sbin/pam_getenv", + "hashes": [ + { + "alg": "SHA-1", + "content": "5378554fd443fa3c515fa581395eb1f6c364cb0a" + }, + { + "alg": "SHA-256", + "content": "982cca7d6a9afe07d7ba3fc929082ef11ed1cadb88d253f6464bfc0a19730674" + } + ] + }, + { + "bom-ref": "daf7946f7b37889d", + "type": "file", + "name": "/usr/sbin/pam_timestamp_check", + "hashes": [ + { + "alg": "SHA-1", + "content": "6936a459591059e72622ebb684ff4da95fc0b633" + }, + { + "alg": "SHA-256", + "content": "950b7b60269275707d98fa5f6bd8be307d152c83e69c269d7a762fd13cb246e8" + } + ] + }, + { + "bom-ref": "f8749187dff31ddb", + "type": "file", + "name": "/usr/sbin/pwck", + "hashes": [ + { + "alg": "SHA-1", + "content": "36ee22ab78b703003b498951dd779e45f5a4301e" + }, + { + "alg": "SHA-256", + "content": "f82f04958d384886823345865d8bfb75fe0e4e842c5e4110efaf30fb931990c8" + } + ] + }, + { + "bom-ref": "19baf68f829b57b8", + "type": "file", + "name": "/usr/sbin/pwconv", + "hashes": [ + { + "alg": "SHA-1", + "content": "ad8b05e68f34b6c980b69bda73aff9e355c1b7e7" + }, + { + "alg": "SHA-256", + "content": "27e4ce3a50261d088eb5b65bd1f06bac38d4211c3f21edff36d4983862eca9f7" + } + ] + }, + { + "bom-ref": "a996091da032bc92", + "type": "file", + "name": "/usr/sbin/pwunconv", + "hashes": [ + { + "alg": "SHA-1", + "content": "afd177fc7dba852e43199ea2c07e923acdbfb1d4" + }, + { + "alg": "SHA-256", + "content": "ed1e5ede244c9ecd2d1e0908bfa12e7eb047eda733ccf82b94b970544b92ac24" + } + ] + }, + { + "bom-ref": "7ad33c2c32bbb16a", + "type": "file", + "name": "/usr/sbin/readprofile", + "hashes": [ + { + "alg": "SHA-1", + "content": "737757d4015fd698af0a73b79817c5cf66e3a9ca" + }, + { + "alg": "SHA-256", + "content": "d02c0800f642f70e88070c9c5bb7a6b4758b67ae09d4d461813d3686f4fed568" + } + ] + }, + { + "bom-ref": "5cb7a88b6d925c39", + "type": "file", + "name": "/usr/sbin/remove-shell", + "hashes": [ + { + "alg": "SHA-1", + "content": "66e936843f0357648c6e560d101bbede6fe70f97" + }, + { + "alg": "SHA-256", + "content": "5a15986f8fd235bccf215832a5c39070acd6c48176c73a2415a7148bed327267" + } + ] + }, + { + "bom-ref": "812c70e7f1bdd0b5", + "type": "file", + "name": "/usr/sbin/rmt-tar", + "hashes": [ + { + "alg": "SHA-1", + "content": "97f0d0e2eac4bf6769bd9426d072ef9a7f62039f" + }, + { + "alg": "SHA-256", + "content": "d380f8974bc87f58e01aecc08e2e09802ce32d9a524f8cb650e5a85a4018cfbe" + } + ] + }, + { + "bom-ref": "82aeb3301d171871", + "type": "file", + "name": "/usr/sbin/rtcwake", + "hashes": [ + { + "alg": "SHA-1", + "content": "9330ed67addabb7445c65877e7a7e319a9cbb23f" + }, + { + "alg": "SHA-256", + "content": "2cf9af2cde35a9ff2842d8a0b546c37bcc93fd53fe4b25519fcf57c91d506562" + } + ] + }, + { + "bom-ref": "03c9f107d75551de", + "type": "file", + "name": "/usr/sbin/service", + "hashes": [ + { + "alg": "SHA-1", + "content": "c72e31b74e8654867c5558b19502dd14d03fbe55" + }, + { + "alg": "SHA-256", + "content": "90d290edebced3366414da3c362561b7fa817e85fc3d9e4ba8ef814869c8919e" + } + ] + }, + { + "bom-ref": "3f824f0e7d0541d9", + "type": "file", + "name": "/usr/sbin/tarcat", + "hashes": [ + { + "alg": "SHA-1", + "content": "442ba2dad8d3acbd48ed226215791fb8a0707141" + }, + { + "alg": "SHA-256", + "content": "4307aa7cc97a4db32a674ad32f893b251188903cafa6d5266c813fc5c9ea755e" + } + ] + }, + { + "bom-ref": "8a3adf1d8e02d5c3", + "type": "file", + "name": "/usr/sbin/tzconfig", + "hashes": [ + { + "alg": "SHA-1", + "content": "4f67e105f64cca78218b0c4d054257c09c349607" + }, + { + "alg": "SHA-256", + "content": "816e1759cc6a017900439acc6c85dd2293cc78948d54bf76c1f23bf16437b1fc" + } + ] + }, + { + "bom-ref": "df50652cdf0b1e0d", + "type": "file", + "name": "/usr/sbin/update-passwd", + "hashes": [ + { + "alg": "SHA-1", + "content": "cc8c09e59f5d5719a4208e83fbf9dd94cc4b4cb2" + }, + { + "alg": "SHA-256", + "content": "02650d987b3803832f92999d96da44b8339e26c854787a1bc744091a85794f08" + } + ] + }, + { + "bom-ref": "d0ce0e3a5b500a2b", + "type": "file", + "name": "/usr/sbin/update-rc.d", + "hashes": [ + { + "alg": "SHA-1", + "content": "46f0eda094e2d58c364c5833be5e6714a6ff03ea" + }, + { + "alg": "SHA-256", + "content": "1102a9c7a3edbfd57bf7b7b466aaf45a10763a186093f65bac3966f0da8a5448" + } + ] + }, + { + "bom-ref": "a7c3d1ce361774d4", + "type": "file", + "name": "/usr/sbin/useradd", + "hashes": [ + { + "alg": "SHA-1", + "content": "e4d5a3dbd0c2d33a1405c17171743ff32147348d" + }, + { + "alg": "SHA-256", + "content": "fb24d8fa8ccd8fe991422d77c9778fcc04c75709cbe7086a3330dbda54886e72" + } + ] + }, + { + "bom-ref": "bb47d141473a345e", + "type": "file", + "name": "/usr/sbin/userdel", + "hashes": [ + { + "alg": "SHA-1", + "content": "a3405adca202946f8c0bd4a24c1f331545eb50dc" + }, + { + "alg": "SHA-256", + "content": "90f05dcb559fe7e8f2048dbfec649088e47050105c320b437fae37171b00e37c" + } + ] + }, + { + "bom-ref": "5744164e348d67f3", + "type": "file", + "name": "/usr/sbin/usermod", + "hashes": [ + { + "alg": "SHA-1", + "content": "f2c541a84531a1d997478a2a4e40cb68a4621ce2" + }, + { + "alg": "SHA-256", + "content": "ec2c279d48f407101c71ef44acc0d5e8b4c938f098493266388029fba92ede26" + } + ] + }, + { + "bom-ref": "ed76483f17a165dc", + "type": "file", + "name": "/usr/sbin/vipw", + "hashes": [ + { + "alg": "SHA-1", + "content": "2541cc4ec75ec6ec5609e681d35e9fbbfb01516c" + }, + { + "alg": "SHA-256", + "content": "f8efa6fbae96c822070e8c1afe38adbb6733491cf284e9a241a3a8f2869a23f0" + } + ] + }, + { + "bom-ref": "f0b3d548760d5f27", + "type": "file", + "name": "/usr/sbin/zic", + "hashes": [ + { + "alg": "SHA-1", + "content": "d6f9f4ba32bd7c2901fb333e1c0bbeca673688f0" + }, + { + "alg": "SHA-256", + "content": "b10eeafa724b44fea527d3a597b7aea2075debbaf7ecaf0a903531473a2b77e7" + } + ] + }, + { + "bom-ref": "766c2631fe80df22", + "type": "file", + "name": "/usr/share/adduser/adduser.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "4b5690a85d28731d4c2ed043e38a5a2680c46216" + }, + { + "alg": "SHA-256", + "content": "ccdc9675d7bd39c3cc79c2a5d6938f2562dd4062350dbed3058c1faee48b353e" + } + ] + }, + { + "bom-ref": "fb3d2655c97f05f7", + "type": "file", + "name": "/usr/share/base-files/dot.bashrc", + "hashes": [ + { + "alg": "SHA-1", + "content": "b737c392222ddac2271cc8d0d8cc0308d08cf458" + }, + { + "alg": "SHA-256", + "content": "41f1685d04031d88891dea1cd02d5154f8aa841119001a72017b0e7158159e23" + } + ] + }, + { + "bom-ref": "b51bed7f76d24389", + "type": "file", + "name": "/usr/share/base-files/dot.profile", + "hashes": [ + { + "alg": "SHA-1", + "content": "dcd1b431c955cf1fb6064756c6044a49ef507c37" + }, + { + "alg": "SHA-256", + "content": "74bc92bcf960bfb62b22aa65370cdd1cd37739baa4eab9b240d72692c898ef1f" + } + ] + }, + { + "bom-ref": "bcfcf8105e4c33c0", + "type": "file", + "name": "/usr/share/base-files/dot.profile.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "349bd16693e670bda2b38dbd86c31297775c5491" + }, + { + "alg": "SHA-256", + "content": "8961ee041c712c735fb05287740ab62737777bd58ce631b54b07d8083efad3bf" + } + ] + }, + { + "bom-ref": "690168615e0864e9", + "type": "file", + "name": "/usr/share/base-files/info.dir", + "hashes": [ + { + "alg": "SHA-1", + "content": "3551f8dfbf114c159f692d5e823099cdd53b16cf" + }, + { + "alg": "SHA-256", + "content": "c58a258cb9c410c29486aa8fa37f4e5b738bfeedc2b8e97be1cd6cff1df28459" + } + ] + }, + { + "bom-ref": "014a5d59b3ab5909", + "type": "file", + "name": "/usr/share/base-files/motd", + "hashes": [ + { + "alg": "SHA-1", + "content": "8b55aac644e9e6f2701805584cc391ff81d3ecec" + }, + { + "alg": "SHA-256", + "content": "a378977155fb42bb006496321cbe31f74cbda803c3f6ca590f30e76d1afad921" + } + ] + }, + { + "bom-ref": "611cae39865c2aba", + "type": "file", + "name": "/usr/share/base-files/profile", + "hashes": [ + { + "alg": "SHA-1", + "content": "3aee14773c38f138ed4b1d93a649bdbce112115e" + }, + { + "alg": "SHA-256", + "content": "b8ffd2c97588047e1cea84b7dfdb68bfde167e2957f667ca2b6ab2929feb4f49" + } + ] + }, + { + "bom-ref": "474bfad743e066da", + "type": "file", + "name": "/usr/share/base-files/profile.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "ca4245aad6551f17d0ed032bb062ef9d3f64b9fc" + }, + { + "alg": "SHA-256", + "content": "7d09366be1eb6bd4fa6b3cf9837e87236bbb9ec5ebe4e2428fbec3f88b7ec762" + } + ] + }, + { + "bom-ref": "7b0a78f5b97f24c9", + "type": "file", + "name": "/usr/share/base-files/staff-group-for-usr-local", + "hashes": [ + { + "alg": "SHA-1", + "content": "7e36ba0fdd3b1f5b267821d4b06a1f8c17336efb" + }, + { + "alg": "SHA-256", + "content": "64a482506f00572df1d4909a347d6f4fa8e6ce23686b7f058bfbd650ec0658ce" + } + ] + }, + { + "bom-ref": "a8041fd649d5a4f1", + "type": "file", + "name": "/usr/share/base-passwd/group.master", + "hashes": [ + { + "alg": "SHA-1", + "content": "845525bcc8c4464b770fbf36690e8ee8e7a25591" + }, + { + "alg": "SHA-256", + "content": "cfde4574c857edbfbd31667000d75d07efe6bc61f22063693010dee2a912450b" + } + ] + }, + { + "bom-ref": "be5f6cdb5bf96dca", + "type": "file", + "name": "/usr/share/base-passwd/passwd.master", + "hashes": [ + { + "alg": "SHA-1", + "content": "e813d4016f0bf8c042183d3585075750f3312c42" + }, + { + "alg": "SHA-256", + "content": "5e66dea2e22fa69f64b4f92053bedbf8ea2550dffb95967994730b718f4eb930" + } + ] + }, + { + "bom-ref": "1bd61392600e0cff", + "type": "file", + "name": "/usr/share/bash-completion/completions/addpart", + "hashes": [ + { + "alg": "SHA-1", + "content": "66ab6204b219cee6dc5377a33eb4478270db4fc4" + }, + { + "alg": "SHA-256", + "content": "61badc8851eb6f1c153df1a07c9c2f3bffa048fbd05d1ef775384087440a08c8" + } + ] + }, + { + "bom-ref": "0a8e7e5e2c4d59ac", + "type": "file", + "name": "/usr/share/bash-completion/completions/apt", + "hashes": [ + { + "alg": "SHA-1", + "content": "cad4eb1d01f08f16a868ba7997667ccccb830fa7" + }, + { + "alg": "SHA-256", + "content": "d5e1eca3f19f16abdb59af4ab5494770ab6f17d31ee495dcb3756eb0393ca997" + } + ] + }, + { + "bom-ref": "479524053cf95d0e", + "type": "file", + "name": "/usr/share/bash-completion/completions/blkdiscard", + "hashes": [ + { + "alg": "SHA-1", + "content": "d47e122278bbd91872ef97e8865c913a47ce9ef8" + }, + { + "alg": "SHA-256", + "content": "52ae5cec0990942b3e239d9bae331ea237d6dd457575746e382d07fbabf9ad70" + } + ] + }, + { + "bom-ref": "bd59ceadb1310027", + "type": "file", + "name": "/usr/share/bash-completion/completions/blkid", + "hashes": [ + { + "alg": "SHA-1", + "content": "b20843cfd4eef9ac1e7b83a57b568e936fccb377" + }, + { + "alg": "SHA-256", + "content": "f4ec23b0db103c742d655c8e9dbbe3e2d59f1b711abe6a241c91a8211895e624" + } + ] + }, + { + "bom-ref": "495437da2e6856f1", + "type": "file", + "name": "/usr/share/bash-completion/completions/blkzone", + "hashes": [ + { + "alg": "SHA-1", + "content": "4e86a43da2fef3709584a0c94a5b1a941ae8e64e" + }, + { + "alg": "SHA-256", + "content": "bf20f342237b951779fb457d68cc4bc7900e6db044becb5419efa109b77ffadf" + } + ] + }, + { + "bom-ref": "7c7a8d2e40ff41a3", + "type": "file", + "name": "/usr/share/bash-completion/completions/blockdev", + "hashes": [ + { + "alg": "SHA-1", + "content": "1522f9a9dfab815c2630ce91c090ab25b6a415b6" + }, + { + "alg": "SHA-256", + "content": "32a9db482f3941d0d22c12b5feb8a73c71489f7bf83693a9c3b4d3d27e97d8b0" + } + ] + }, + { + "bom-ref": "3900dbb63480787c", + "type": "file", + "name": "/usr/share/bash-completion/completions/cfdisk", + "hashes": [ + { + "alg": "SHA-1", + "content": "fa23b3d28c54302a3936005755b2a305d90d08b4" + }, + { + "alg": "SHA-256", + "content": "2995b77066141f0a0b67dec82d554a20909466eca6a3e8f237eb709b7f5b4c62" + } + ] + }, + { + "bom-ref": "8ce2f732107e76fc", + "type": "file", + "name": "/usr/share/bash-completion/completions/chcpu", + "hashes": [ + { + "alg": "SHA-1", + "content": "32991098188f537cd23345037950d572d96a01c5" + }, + { + "alg": "SHA-256", + "content": "38548158ca1b6d13b515c4fb5107a6fc85ae04c8444f3edd75e98e42dba100f6" + } + ] + }, + { + "bom-ref": "07584815da423474", + "type": "file", + "name": "/usr/share/bash-completion/completions/chmem", + "hashes": [ + { + "alg": "SHA-1", + "content": "5c421450f8c8ce9039fbc912dd24132207ab4eea" + }, + { + "alg": "SHA-256", + "content": "6bb1f0dbb7af9f2891badb28f90e7ab9b82647a4b982a284b541968f669f2a9f" + } + ] + }, + { + "bom-ref": "d72ee7f3a744c9ed", + "type": "file", + "name": "/usr/share/bash-completion/completions/chrt", + "hashes": [ + { + "alg": "SHA-1", + "content": "37f14d93b1a354fc3cfa78af794d133a0cbe013d" + }, + { + "alg": "SHA-256", + "content": "1dd13080d71c8d880e628eee89e8f493c979441692ef364e01ca8c8a761d381e" + } + ] + }, + { + "bom-ref": "b08c9f5a2971ad0e", + "type": "file", + "name": "/usr/share/bash-completion/completions/ctrlaltdel", + "hashes": [ + { + "alg": "SHA-1", + "content": "665f505fb4ff41b64b660dbf800ed6977e9c474f" + }, + { + "alg": "SHA-256", + "content": "52021091a5554e9b6275cdabbf1820ccd18eff38d8b0094284ef7fb68c38f66f" + } + ] + }, + { + "bom-ref": "ec3badb56286dc81", + "type": "file", + "name": "/usr/share/bash-completion/completions/debconf", + "hashes": [ + { + "alg": "SHA-1", + "content": "66c69cc37dafb9a38da52c29e55c89013876780e" + }, + { + "alg": "SHA-256", + "content": "45a6978806b39111a579c0e7d4e85937bd6c8e20c3f6732d3ecf5fbd2344cfb0" + } + ] + }, + { + "bom-ref": "8a66e426ea4f0286", + "type": "file", + "name": "/usr/share/bash-completion/completions/delpart", + "hashes": [ + { + "alg": "SHA-1", + "content": "e139c4b8c55ee4ceda62b1e9828a3d743de8447b" + }, + { + "alg": "SHA-256", + "content": "e337b3898cacda9485085c522d9306a043146cc52c780bbcf2c65b8d366f095a" + } + ] + }, + { + "bom-ref": "c7648f73f26d277d", + "type": "file", + "name": "/usr/share/bash-completion/completions/dmesg", + "hashes": [ + { + "alg": "SHA-1", + "content": "502d94cbc727bc0e0ddbb9b6fb462cf2330d3ff1" + }, + { + "alg": "SHA-256", + "content": "5cd7dd59ef1558c7d5bf8fe58581eb6b173f823b21f1e83598328de2d7695060" + } + ] + }, + { + "bom-ref": "13a59265a68b85d3", + "type": "file", + "name": "/usr/share/bash-completion/completions/fallocate", + "hashes": [ + { + "alg": "SHA-1", + "content": "df548fa9e77ed5f1cb96be7b5d938d2c638b50ab" + }, + { + "alg": "SHA-256", + "content": "f775a5a4e4d051193cfc5dbcc2ba373d5cfe350604f3c4b79372ef4a7e494f02" + } + ] + }, + { + "bom-ref": "f405b33f3ffbfa3f", + "type": "file", + "name": "/usr/share/bash-completion/completions/fdformat", + "hashes": [ + { + "alg": "SHA-1", + "content": "968494cb7ab4864df6d4af51082e42cbf2db62e7" + }, + { + "alg": "SHA-256", + "content": "d1478a7f29aa6e2ac647acb10a2b1036bf2e2cb98e9627abb43fb1bf6ac561ec" + } + ] + }, + { + "bom-ref": "2d36aad3dc38f7fc", + "type": "file", + "name": "/usr/share/bash-completion/completions/fdisk", + "hashes": [ + { + "alg": "SHA-1", + "content": "e63dc6b35be32a69cfcd41c5e1d9f0a57c1319c6" + }, + { + "alg": "SHA-256", + "content": "2eddd6f947b6246d18959c173aac7112e1e9b2d523ffe852f88011dd2e4836c6" + } + ] + }, + { + "bom-ref": "354077cc0b2f81d8", + "type": "file", + "name": "/usr/share/bash-completion/completions/fincore", + "hashes": [ + { + "alg": "SHA-1", + "content": "475baa9cc4f25946e16551a06e6604031b468422" + }, + { + "alg": "SHA-256", + "content": "0d66d90486e2f0b6eee9a962adc762cd19f7311b42d344cf47e49ef1261f90e4" + } + ] + }, + { + "bom-ref": "cc547f1ed14a51b0", + "type": "file", + "name": "/usr/share/bash-completion/completions/findfs", + "hashes": [ + { + "alg": "SHA-1", + "content": "337c51a0628d03a16500b06bbaba129fd338cb22" + }, + { + "alg": "SHA-256", + "content": "ff73ffe3f15cc6ec0bfeed0a2c87b67eb1c9890ec5e7a23d18eab733d16c0df8" + } + ] + }, + { + "bom-ref": "07d6895e719d9322", + "type": "file", + "name": "/usr/share/bash-completion/completions/findmnt", + "hashes": [ + { + "alg": "SHA-1", + "content": "515ab77c245338ce0827012038b93df6a3733b8b" + }, + { + "alg": "SHA-256", + "content": "40332dfec0e1d317cf5f9782d95cec282e649635b33e6449d67f664f74ae5199" + } + ] + }, + { + "bom-ref": "6f41cb86a219e084", + "type": "file", + "name": "/usr/share/bash-completion/completions/flock", + "hashes": [ + { + "alg": "SHA-1", + "content": "b542856570c6961e100aa509cc6109fe78ccf166" + }, + { + "alg": "SHA-256", + "content": "4ea2ecf934319c37348fddefdf0f028614ce04cc1840574242bf47219cb0a8c8" + } + ] + }, + { + "bom-ref": "3af81562f7ca3386", + "type": "file", + "name": "/usr/share/bash-completion/completions/fsck", + "hashes": [ + { + "alg": "SHA-1", + "content": "35b50c434e12b3d80467af148bf70d895fdc690d" + }, + { + "alg": "SHA-256", + "content": "feb2b95abe8caac7840120e9575816d9e02dc8d08fe883293211f6f88389dfd8" + } + ] + }, + { + "bom-ref": "45b32d87d38c3196", + "type": "file", + "name": "/usr/share/bash-completion/completions/fsck.cramfs", + "hashes": [ + { + "alg": "SHA-1", + "content": "e3ebab334ca469b70b24eace55544c9c5f3675e0" + }, + { + "alg": "SHA-256", + "content": "74f9052c2e8991509621e742d39b65beb9489deef2b2b1f7a443f05acf11db46" + } + ] + }, + { + "bom-ref": "691a61f061fdddf1", + "type": "file", + "name": "/usr/share/bash-completion/completions/fsck.minix", + "hashes": [ + { + "alg": "SHA-1", + "content": "7909b234a5d2e41dce6f1ae2d9a35c899ae7ac25" + }, + { + "alg": "SHA-256", + "content": "c80e2696bcb4fb7642418d3aec96f7c2931cdcfdaf245786ee3b6cded99e22fe" + } + ] + }, + { + "bom-ref": "80d05b88250d572c", + "type": "file", + "name": "/usr/share/bash-completion/completions/fsfreeze", + "hashes": [ + { + "alg": "SHA-1", + "content": "4f5b727591789ee1f07547241d4d00c1233c3b1c" + }, + { + "alg": "SHA-256", + "content": "7f99f914f660697f78e57850e4e70c027e73a0aa5074a28bd3a5d25c2564b371" + } + ] + }, + { + "bom-ref": "b29809ca3f56f9dd", + "type": "file", + "name": "/usr/share/bash-completion/completions/fstrim", + "hashes": [ + { + "alg": "SHA-1", + "content": "44f71d0de76cc5c93f9918b2d0f68c83baa413cd" + }, + { + "alg": "SHA-256", + "content": "00d3ec98092ad7a2c698c1865015368d7be5fead7d3ad171def63cc78658b6b2" + } + ] + }, + { + "bom-ref": "dccde07121101552", + "type": "file", + "name": "/usr/share/bash-completion/completions/getopt", + "hashes": [ + { + "alg": "SHA-1", + "content": "126f08636509e707669ccf575a548e1d8b2589b2" + }, + { + "alg": "SHA-256", + "content": "0ae50ed789c556f2abdabe09362169d385f9facf1bd05c13cf57b3f8e0078a5d" + } + ] + }, + { + "bom-ref": "2ca5c3349e432877", + "type": "file", + "name": "/usr/share/bash-completion/completions/hwclock", + "hashes": [ + { + "alg": "SHA-1", + "content": "7049d785c5826b92aab74274c5610426008d905e" + }, + { + "alg": "SHA-256", + "content": "1cfd65593d59333936ba7e71a2306d7f0c33f9a7cc1f68ccc3232eb2815b93e6" + } + ] + }, + { + "bom-ref": "0a52e66c9feb5934", + "type": "file", + "name": "/usr/share/bash-completion/completions/ionice", + "hashes": [ + { + "alg": "SHA-1", + "content": "a117c036cce1cd9cf660c9070f2be2159aaa6722" + }, + { + "alg": "SHA-256", + "content": "8a92b4a98b89f6c3af9baf94aab2cc24f58e0e2c4ffc6e2ea822cdc093d940ff" + } + ] + }, + { + "bom-ref": "f5ffb0f46bd92a43", + "type": "file", + "name": "/usr/share/bash-completion/completions/ipcmk", + "hashes": [ + { + "alg": "SHA-1", + "content": "23b0931088d6691871338347a1c2ce34b11102a1" + }, + { + "alg": "SHA-256", + "content": "701db74a1133159cf159c9a182a46eb77ecdab618c52e373f432b3924d8e2707" + } + ] + }, + { + "bom-ref": "74f60b17d72d9def", + "type": "file", + "name": "/usr/share/bash-completion/completions/ipcrm", + "hashes": [ + { + "alg": "SHA-1", + "content": "bf22725bdc3926b961eb4024bd1a3ebcf981dd9c" + }, + { + "alg": "SHA-256", + "content": "454731bfb20b7be1e41f5b0704536a549ebf7ee755d64bd9ef882b04ae84173d" + } + ] + }, + { + "bom-ref": "4116a36aa6754c39", + "type": "file", + "name": "/usr/share/bash-completion/completions/ipcs", + "hashes": [ + { + "alg": "SHA-1", + "content": "b8e74ed1e3347f50c8cd618b5ef97d1c98467525" + }, + { + "alg": "SHA-256", + "content": "c8d2fc0706082e013fdec16a7b7fcc3aadbc0c3e22f87d8a818d9aa95f364acf" + } + ] + }, + { + "bom-ref": "62519fc3f616b1f5", + "type": "file", + "name": "/usr/share/bash-completion/completions/isosize", + "hashes": [ + { + "alg": "SHA-1", + "content": "4e001a21169ac9b9980ef424a19f69c36f2c00d5" + }, + { + "alg": "SHA-256", + "content": "0afdd61db90044908eef15ef623eb9e6f4598cdfe581f20b1b812650d961f567" + } + ] + }, + { + "bom-ref": "a21635682e864005", + "type": "file", + "name": "/usr/share/bash-completion/completions/last", + "hashes": [ + { + "alg": "SHA-1", + "content": "bbf954b3f10c0b0e9d1de96f7639d606750b3961" + }, + { + "alg": "SHA-256", + "content": "406ba6772a881f22d10cad9096093673513c8426e81594c44977e1a57e7c4724" + } + ] + }, + { + "bom-ref": "8f631982db687a8b", + "type": "file", + "name": "/usr/share/bash-completion/completions/ldattach", + "hashes": [ + { + "alg": "SHA-1", + "content": "679909fc2522233de721a3cf4871743bd24297ed" + }, + { + "alg": "SHA-256", + "content": "f2a5396940e79dbdeea768970b2960d067e8a2fb78e9379a1b1b0fa250906595" + } + ] + }, + { + "bom-ref": "e6ebe988b3e3d407", + "type": "file", + "name": "/usr/share/bash-completion/completions/logger", + "hashes": [ + { + "alg": "SHA-1", + "content": "fbb9db937f7060655aff9f8975e8c3f6b38b4311" + }, + { + "alg": "SHA-256", + "content": "20a52821ce9e70f58e72f9050e3037aba96986aa39403a7b36bf5fac3de1b2c5" + } + ] + }, + { + "bom-ref": "ed2d2825ae350f66", + "type": "file", + "name": "/usr/share/bash-completion/completions/losetup", + "hashes": [ + { + "alg": "SHA-1", + "content": "57a4c07cd33a261fe332a3dd02bcfce081c30c11" + }, + { + "alg": "SHA-256", + "content": "97287d6f705c048fe6fa6e78c2e9693af0e3fdcc13efe56bbbebc6c7fdf71a93" + } + ] + }, + { + "bom-ref": "fdc25dbf993d4538", + "type": "file", + "name": "/usr/share/bash-completion/completions/lsblk", + "hashes": [ + { + "alg": "SHA-1", + "content": "d39aa23d4069a736b33e352feed1a6e6846aa8a6" + }, + { + "alg": "SHA-256", + "content": "b736ec0a304992cfdc981ef92d854827fe5192a04cfe88e68f48b3e1b320773d" + } + ] + }, + { + "bom-ref": "6600c00bd7a3e00c", + "type": "file", + "name": "/usr/share/bash-completion/completions/lscpu", + "hashes": [ + { + "alg": "SHA-1", + "content": "62000095654c0871c7d964764fcad86e5e056057" + }, + { + "alg": "SHA-256", + "content": "e036a5c87c232e9d9d3521dc9ae4208726fdc8efcc48941e69111f761be3e779" + } + ] + }, + { + "bom-ref": "185bfaa26f59d1f2", + "type": "file", + "name": "/usr/share/bash-completion/completions/lsipc", + "hashes": [ + { + "alg": "SHA-1", + "content": "524f46257dfe5a71b3ac3a842455bab8eb59e4a7" + }, + { + "alg": "SHA-256", + "content": "650711cc8c467b10fc463a333d3bba815810ae9cc1dd8b5c8bc0181b9721df82" + } + ] + }, + { + "bom-ref": "bcbcddc7a62ff727", + "type": "file", + "name": "/usr/share/bash-completion/completions/lslocks", + "hashes": [ + { + "alg": "SHA-1", + "content": "43a36735b6ac253436755c267e262997ce66a890" + }, + { + "alg": "SHA-256", + "content": "57b7d517dee24e93362bafa490b7904f37286f954a2bed21b256b3ca1fd8f4d9" + } + ] + }, + { + "bom-ref": "941d8ca10fee43c6", + "type": "file", + "name": "/usr/share/bash-completion/completions/lslogins", + "hashes": [ + { + "alg": "SHA-1", + "content": "751e8757bd83a3107876cf40b18ffa14c353994b" + }, + { + "alg": "SHA-256", + "content": "b7db5c076e389f7d4f13919978664d61e5924bee9e4df5880af7b49e71f656e3" + } + ] + }, + { + "bom-ref": "e3e0f1c4b41c39de", + "type": "file", + "name": "/usr/share/bash-completion/completions/lsmem", + "hashes": [ + { + "alg": "SHA-1", + "content": "1d464c74d3dacbd31c74b3173679b2dcb145d8c3" + }, + { + "alg": "SHA-256", + "content": "d6d396f2c0581a5a3a6ab1bd9ba3c12a6159bd370bafb58d73ffa1f638a7eb56" + } + ] + }, + { + "bom-ref": "223de08e6294ff90", + "type": "file", + "name": "/usr/share/bash-completion/completions/lsns", + "hashes": [ + { + "alg": "SHA-1", + "content": "4b5432d17529820bdb091314094e5628be47754d" + }, + { + "alg": "SHA-256", + "content": "48d857b7124298243da9467e1ab2c32244784a55d9032976319df7908163c9af" + } + ] + }, + { + "bom-ref": "76c78e06d77a9121", + "type": "file", + "name": "/usr/share/bash-completion/completions/mcookie", + "hashes": [ + { + "alg": "SHA-1", + "content": "3d62a53a3b104c6e48f7d851655dc7158a107297" + }, + { + "alg": "SHA-256", + "content": "c1460f2f78f58e0195f4dc3af4a5e92925aa23f3f6ec5c73a7565329a7eb8b3b" + } + ] + }, + { + "bom-ref": "38184119bd1f6571", + "type": "file", + "name": "/usr/share/bash-completion/completions/mesg", + "hashes": [ + { + "alg": "SHA-1", + "content": "e6e9d2c18f0e48a69e6b33137a355799bda706d8" + }, + { + "alg": "SHA-256", + "content": "67d09288e327f405fa72009d7e85b81a70d20c5577ffb8b418b6b0de043e7fc1" + } + ] + }, + { + "bom-ref": "fe8baba5a1b76fca", + "type": "file", + "name": "/usr/share/bash-completion/completions/mkfs", + "hashes": [ + { + "alg": "SHA-1", + "content": "ac77a804001bd2ed009ac46f21f39d675ea183ab" + }, + { + "alg": "SHA-256", + "content": "b90a36595a7585f33e27d5028c66fecb8db2f01832240b70527aa93f9d93c486" + } + ] + }, + { + "bom-ref": "77c831ad66270bed", + "type": "file", + "name": "/usr/share/bash-completion/completions/mkfs.bfs", + "hashes": [ + { + "alg": "SHA-1", + "content": "b91ea3d0712ed922f802e248ec5834dbae86278a" + }, + { + "alg": "SHA-256", + "content": "fd5315672633d2cc96166fedd130416e7ec9c37a87f8afe57dc906059a4fac04" + } + ] + }, + { + "bom-ref": "23a30d766c0d388e", + "type": "file", + "name": "/usr/share/bash-completion/completions/mkfs.cramfs", + "hashes": [ + { + "alg": "SHA-1", + "content": "161ac0b5765b66b0375c260f35e476ee8316160a" + }, + { + "alg": "SHA-256", + "content": "a33449ad64a9c1e51ad0b82fc6afbb07febd5650842fea214231f399d7f3bf4d" + } + ] + }, + { + "bom-ref": "6bd3056cd077fa76", + "type": "file", + "name": "/usr/share/bash-completion/completions/mkfs.minix", + "hashes": [ + { + "alg": "SHA-1", + "content": "9d2e79b266343749a60d0421a04972baa761e576" + }, + { + "alg": "SHA-256", + "content": "aa873021ae3d172211a649626f466efd53423970ba15d29d6f5ce4fc5d78fcc9" + } + ] + }, + { + "bom-ref": "8202d8aadc648069", + "type": "file", + "name": "/usr/share/bash-completion/completions/mkswap", + "hashes": [ + { + "alg": "SHA-1", + "content": "cd4267666fdf7a24ce9a488f886521b54597747e" + }, + { + "alg": "SHA-256", + "content": "e1cf77f54f0bd20cc47638b163a4b4adab20f4901ff4ef296cd2a9e3ebbb6577" + } + ] + }, + { + "bom-ref": "79164e6da8f72345", + "type": "file", + "name": "/usr/share/bash-completion/completions/more", + "hashes": [ + { + "alg": "SHA-1", + "content": "941c04b53f3c45cf7a20548fdf79160e2fb28c3e" + }, + { + "alg": "SHA-256", + "content": "f2a14123adff1db7144fa503b2e939d9383055e7b893a7730e146dd93c328032" + } + ] + }, + { + "bom-ref": "60cd0e1df594934e", + "type": "file", + "name": "/usr/share/bash-completion/completions/mount", + "hashes": [ + { + "alg": "SHA-1", + "content": "55a7f4ac1bbab68ec43083e62da7e66436781448" + }, + { + "alg": "SHA-256", + "content": "18e67a52959c1dbcd2d3706e6e300cb28556ecd1257d1289a629ffbf7a1af3ad" + } + ] + }, + { + "bom-ref": "825ce41680e0576b", + "type": "file", + "name": "/usr/share/bash-completion/completions/mountpoint", + "hashes": [ + { + "alg": "SHA-1", + "content": "f644865326fd7cd1b8d04c480d08ea35a2f14d06" + }, + { + "alg": "SHA-256", + "content": "4b9350fe71eac2b6927a0e0ea228c4d5d809d96320c0c2db233af2c6e522ae94" + } + ] + }, + { + "bom-ref": "79d44549bac05625", + "type": "file", + "name": "/usr/share/bash-completion/completions/namei", + "hashes": [ + { + "alg": "SHA-1", + "content": "4863488e0a27839d3d29da103cfc24d6194fb28d" + }, + { + "alg": "SHA-256", + "content": "1519a1b96f840f476647daa9d041a7d5db2dde0d80d3c99e973b1eccff8b259d" + } + ] + }, + { + "bom-ref": "0201a66a0d8d74d8", + "type": "file", + "name": "/usr/share/bash-completion/completions/nsenter", + "hashes": [ + { + "alg": "SHA-1", + "content": "5e470200ec18bc63b8bc182ceba7295dda440c9d" + }, + { + "alg": "SHA-256", + "content": "c60762eff4f9768cda50c4e719c869ad6f2d9396f48c3bd4cb6c5bb90e847a3b" + } + ] + }, + { + "bom-ref": "4f0c5b4a31c78fc2", + "type": "file", + "name": "/usr/share/bash-completion/completions/partx", + "hashes": [ + { + "alg": "SHA-1", + "content": "61e1b252cbebb2fed5fa231da9972185c29d403a" + }, + { + "alg": "SHA-256", + "content": "fd4885b8a4a683c1058210fbecf4c291cdc3de9a968128e7051eaf2d7a07c81d" + } + ] + }, + { + "bom-ref": "86c5b1d114e4f184", + "type": "file", + "name": "/usr/share/bash-completion/completions/pivot_root", + "hashes": [ + { + "alg": "SHA-1", + "content": "8d82a895d17a6409ff64afb828a17d553100e48c" + }, + { + "alg": "SHA-256", + "content": "e3fd2fed08fe53b1bdf0b344633375273ce54bdb75c65a4383f2bf29aa9868dd" + } + ] + }, + { + "bom-ref": "40d562fec12add3f", + "type": "file", + "name": "/usr/share/bash-completion/completions/prlimit", + "hashes": [ + { + "alg": "SHA-1", + "content": "0495fb7093dc819f191bb52b16dd1388499089d7" + }, + { + "alg": "SHA-256", + "content": "feb868f23ea5c5833a4fc9a642b78a83dd186259826304be649e7902086b8f9f" + } + ] + }, + { + "bom-ref": "79af9c3d0d7b9b63", + "type": "file", + "name": "/usr/share/bash-completion/completions/raw", + "hashes": [ + { + "alg": "SHA-1", + "content": "a8763bfe8398d96adf7fbe6adbdc11c021b585ac" + }, + { + "alg": "SHA-256", + "content": "f546700af22030dffeefaa6b13e9ebb7c24538adb0941dcb98a9d68a6426640f" + } + ] + }, + { + "bom-ref": "8d5e35b335c01269", + "type": "file", + "name": "/usr/share/bash-completion/completions/readprofile", + "hashes": [ + { + "alg": "SHA-1", + "content": "d6fc0cb9b9e14e75ad60cb58158936fc231e1d66" + }, + { + "alg": "SHA-256", + "content": "874cf09268bc51c0dd77267ef8e3d9948ff9c8c376a1b9ce911ca135b7baf9a5" + } + ] + }, + { + "bom-ref": "164c348a969afe06", + "type": "file", + "name": "/usr/share/bash-completion/completions/renice", + "hashes": [ + { + "alg": "SHA-1", + "content": "e71a05683ee770328d315546faa735e217536f9a" + }, + { + "alg": "SHA-256", + "content": "6fdf113c8a43356f2bddaff1613e3f66679f5f0b64d061a30e474f146163569b" + } + ] + }, + { + "bom-ref": "e35b1b9719ce83e3", + "type": "file", + "name": "/usr/share/bash-completion/completions/resizepart", + "hashes": [ + { + "alg": "SHA-1", + "content": "042f02299c6959d7144f1930789f79094c6e4e68" + }, + { + "alg": "SHA-256", + "content": "e0692d25787a3625816b07ea00ef66cfeada23fff0016cf0a37efd95ad84b0d5" + } + ] + }, + { + "bom-ref": "0bc11a532d093d26", + "type": "file", + "name": "/usr/share/bash-completion/completions/rev", + "hashes": [ + { + "alg": "SHA-1", + "content": "5c7004e84ad961fff850953258e72e4efcf5f0ec" + }, + { + "alg": "SHA-256", + "content": "ffab4735212694543267952b527e72f3ee4ac9b0e07d49b432db219bd26a3aae" + } + ] + }, + { + "bom-ref": "9554d674638699d6", + "type": "file", + "name": "/usr/share/bash-completion/completions/rtcwake", + "hashes": [ + { + "alg": "SHA-1", + "content": "9ca5329c1b893884bcddda0b04344fdcbe93a0bd" + }, + { + "alg": "SHA-256", + "content": "00d17c7f0f1d58372d1687ddc0004c0758818bc845de2caf1ec65435297b8a9b" + } + ] + }, + { + "bom-ref": "8f1ccf383e0e6bea", + "type": "file", + "name": "/usr/share/bash-completion/completions/script", + "hashes": [ + { + "alg": "SHA-1", + "content": "9c5982a08b96ff4f1767d503826956187f39d2d6" + }, + { + "alg": "SHA-256", + "content": "d6a324ae3d54016e7defbf7259e750bf86b73c5f9b822eae158889f17945167c" + } + ] + }, + { + "bom-ref": "439487e9d7c56789", + "type": "file", + "name": "/usr/share/bash-completion/completions/scriptreplay", + "hashes": [ + { + "alg": "SHA-1", + "content": "79c88bdcd306f20428099d3ed7d388747828c1e8" + }, + { + "alg": "SHA-256", + "content": "58d1c51c587e26dec022c31a4beaac423f4157b858a35a28dd6d3b4575f1111f" + } + ] + }, + { + "bom-ref": "ffa92e9e89ca9586", + "type": "file", + "name": "/usr/share/bash-completion/completions/setarch", + "hashes": [ + { + "alg": "SHA-1", + "content": "bf0ae521849c62366833a3793724d69eb2a204a0" + }, + { + "alg": "SHA-256", + "content": "bccea2e0e6fd329c9614c4c04f09093de21ba76595ef093bd70027df28bda533" + } + ] + }, + { + "bom-ref": "158191b54c46d5ea", + "type": "file", + "name": "/usr/share/bash-completion/completions/setpriv", + "hashes": [ + { + "alg": "SHA-1", + "content": "5a08d01c020927db51a69124055f5adf6f62448c" + }, + { + "alg": "SHA-256", + "content": "06ae6f7d80cdb4f1675690b89bf17298c9dfcc4c42c118fb04cf9cfa950cd3c8" + } + ] + }, + { + "bom-ref": "de1bb6ef91dbf458", + "type": "file", + "name": "/usr/share/bash-completion/completions/setsid", + "hashes": [ + { + "alg": "SHA-1", + "content": "3fee7139b8ecb800e922ea8b88ccdcb286466da8" + }, + { + "alg": "SHA-256", + "content": "376e5ac5d2a289c03bf36a8f9a86ae160cffc6693112043bf33d2d4f99614c30" + } + ] + }, + { + "bom-ref": "bceeb60f82e4c085", + "type": "file", + "name": "/usr/share/bash-completion/completions/setterm", + "hashes": [ + { + "alg": "SHA-1", + "content": "1b810345924a2f0e3853b87c62b434c57a949d8f" + }, + { + "alg": "SHA-256", + "content": "19ba4c6271e87a588517a67d2c02aae0683b2ab45c047784200e6a435da9248f" + } + ] + }, + { + "bom-ref": "123c18e26705feff", + "type": "file", + "name": "/usr/share/bash-completion/completions/sfdisk", + "hashes": [ + { + "alg": "SHA-1", + "content": "4e28762db5bbaf7deb5e932d9d65aaae75835f42" + }, + { + "alg": "SHA-256", + "content": "37d03e1a9db3c6d7539b46ac99395811c6d33a00c33ad400abff2765e0618bcc" + } + ] + }, + { + "bom-ref": "c05a374783113357", + "type": "file", + "name": "/usr/share/bash-completion/completions/su", + "hashes": [ + { + "alg": "SHA-1", + "content": "9bdbd36186191ecdd3b7a6a040bf62fdf355a6f8" + }, + { + "alg": "SHA-256", + "content": "f163759953aafc083e9ee25c20cda300ae01e37612eb24e54086cacffe1aca5a" + } + ] + }, + { + "bom-ref": "e11a90d7d32ec4d4", + "type": "file", + "name": "/usr/share/bash-completion/completions/swaplabel", + "hashes": [ + { + "alg": "SHA-1", + "content": "8e3d220da1365b70bc338c3adafb68a51bdb340b" + }, + { + "alg": "SHA-256", + "content": "1805b9fa1953570fa4bb99339afbb25a6d701ce5a442d22b8ddabe486b46c9c9" + } + ] + }, + { + "bom-ref": "516f2a91d70ae687", + "type": "file", + "name": "/usr/share/bash-completion/completions/swapoff", + "hashes": [ + { + "alg": "SHA-1", + "content": "5aa90bbd655fd080943ef9ac3979053361128cb8" + }, + { + "alg": "SHA-256", + "content": "e84478bfbcfb4eb0accf290e7b158085cb0db7f679afade1a270f7e1e731a691" + } + ] + }, + { + "bom-ref": "220b56805404c4cb", + "type": "file", + "name": "/usr/share/bash-completion/completions/swapon", + "hashes": [ + { + "alg": "SHA-1", + "content": "a34b9707c7ae2e96db198182593e841eeb234e39" + }, + { + "alg": "SHA-256", + "content": "717091ab909ce678799aef4aba00469550dfb05736640440686fecab2d41ae3c" + } + ] + }, + { + "bom-ref": "c34818507b2601cf", + "type": "file", + "name": "/usr/share/bash-completion/completions/taskset", + "hashes": [ + { + "alg": "SHA-1", + "content": "95a1b38ea7ae4ccd643fefe25bbac65ceec3ff9b" + }, + { + "alg": "SHA-256", + "content": "3128f328cc438f772ace3b8428c2be81f1bf061e3fe7d4c67a5c89b829654e36" + } + ] + }, + { + "bom-ref": "6f51f03593f0546e", + "type": "file", + "name": "/usr/share/bash-completion/completions/umount", + "hashes": [ + { + "alg": "SHA-1", + "content": "cbd93370b5f97e8a3297ca103048305a37479e77" + }, + { + "alg": "SHA-256", + "content": "bfd1b799c1a4b09c14bfad5995a4328dd2169815252c56a1efe4a12f29d53a1b" + } + ] + }, + { + "bom-ref": "2831389fc323328e", + "type": "file", + "name": "/usr/share/bash-completion/completions/unshare", + "hashes": [ + { + "alg": "SHA-1", + "content": "86831bb481b4f7db51b73b7a1a1cbd71f6e535e1" + }, + { + "alg": "SHA-256", + "content": "716ea1e75c1f6d2bb3480863ccb9f145a222dee237f766901083fc3f0b884644" + } + ] + }, + { + "bom-ref": "a91e7bb026a2ca03", + "type": "file", + "name": "/usr/share/bash-completion/completions/utmpdump", + "hashes": [ + { + "alg": "SHA-1", + "content": "1c571fa1b7769f3270270a71cd9cd4a0202ecaec" + }, + { + "alg": "SHA-256", + "content": "69a8a5a630ce32790499b7690d033c7d73c40c861a5985ca23c4f1585fd69b48" + } + ] + }, + { + "bom-ref": "b1f6f84bf1ca31d2", + "type": "file", + "name": "/usr/share/bash-completion/completions/wall", + "hashes": [ + { + "alg": "SHA-1", + "content": "906becc9681dececb4924b605aab8cb5cd2d9da9" + }, + { + "alg": "SHA-256", + "content": "bc527b9f476ec852921e2cbbc9fbfc2ecc4c1677c58103fb88678e25e11528a1" + } + ] + }, + { + "bom-ref": "17df0346d8d7e4c0", + "type": "file", + "name": "/usr/share/bash-completion/completions/wdctl", + "hashes": [ + { + "alg": "SHA-1", + "content": "4b4c95e5cc0d723729d8ee4e3ec32f99d77ecd24" + }, + { + "alg": "SHA-256", + "content": "d2c3148ba44506574ddfa4cb939d91bd99e8e83b73fbe36119cdba9452e68401" + } + ] + }, + { + "bom-ref": "8c83dbba7aaf0fc9", + "type": "file", + "name": "/usr/share/bash-completion/completions/whereis", + "hashes": [ + { + "alg": "SHA-1", + "content": "906a64de9762f25393d387a83d3bbfd8b34a86b6" + }, + { + "alg": "SHA-256", + "content": "2a040afc44337e73ffcb2b910180aacf09566b784f887e82255a09cc42689d50" + } + ] + }, + { + "bom-ref": "3c39866fbd4d43bb", + "type": "file", + "name": "/usr/share/bash-completion/completions/wipefs", + "hashes": [ + { + "alg": "SHA-1", + "content": "ede679e3f2ff2d53a4c8fb613b75d9166cfa722e" + }, + { + "alg": "SHA-256", + "content": "3850447cb9c3d7e2f2a99f556b88d944cb9b15be6fe9a0d9699ee62242b19412" + } + ] + }, + { + "bom-ref": "dd1aa5b4a57ad84b", + "type": "file", + "name": "/usr/share/bash-completion/completions/zramctl", + "hashes": [ + { + "alg": "SHA-1", + "content": "8f2777708bac7f4ee7f1f78f19043a33e6cfbeeb" + }, + { + "alg": "SHA-256", + "content": "3f7de813fbd3178cac3953891b3c2629f0f911001f2e6e480c25aab193510ebe" + } + ] + }, + { + "bom-ref": "94cfb6badfdedc57", + "type": "file", + "name": "/usr/share/bug/apt/script", + "hashes": [ + { + "alg": "SHA-1", + "content": "5c4fccbb703362ac2d15780606f3cb55c52b9bc8" + }, + { + "alg": "SHA-256", + "content": "b2cba592c2bd6e4077dd8b732d4895c22e77f555ed51540899b9a7bc908751bb" + } + ] + }, + { + "bom-ref": "6f9b67e0b444f7d8", + "type": "file", + "name": "/usr/share/bug/dpkg", + "hashes": [ + { + "alg": "SHA-1", + "content": "3c322bc2a74b42a29db4322a3fa8a9c2021f5ee5" + }, + { + "alg": "SHA-256", + "content": "c25b9bf426a98c31a5e744660f5ba647147a2f5588f538f76d3691e73b28b80c" + } + ] + }, + { + "bom-ref": "9780c8d15dbcf182", + "type": "file", + "name": "/usr/share/bug/init-system-helpers/control", + "hashes": [ + { + "alg": "SHA-1", + "content": "bc2c6c6013f430a68c1bc86eaa98af7b6a2ed019" + }, + { + "alg": "SHA-256", + "content": "c0306308b3e8655628cca8238616b8750ab7003201bdd68937a4739fe087ce5c" + } + ] + }, + { + "bom-ref": "67c55813f31dba46", + "type": "file", + "name": "/usr/share/common-licenses/Apache-2.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "2b8b815229aa8a61e483fb4ba0588b8b6c491890" + }, + { + "alg": "SHA-256", + "content": "cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30" + } + ] + }, + { + "bom-ref": "803ddc72450046ce", + "type": "file", + "name": "/usr/share/common-licenses/Artistic", + "hashes": [ + { + "alg": "SHA-1", + "content": "be0627fff2e8aef3d2a14d5d7486babc8a4873ba" + }, + { + "alg": "SHA-256", + "content": "b7fd9b73ea99602016a326e0b62e6646060d18febdd065ceca8bb482208c3d88" + } + ] + }, + { + "bom-ref": "afba75e9ca4f7093", + "type": "file", + "name": "/usr/share/common-licenses/BSD", + "hashes": [ + { + "alg": "SHA-1", + "content": "095d1f504f6fd8add73a4e4964e37f260f332b6a" + }, + { + "alg": "SHA-256", + "content": "5d588eb3b157d52112afea935c88a7ff9efddc1e2d95a42c25d3b96ad9055008" + } + ] + }, + { + "bom-ref": "eb3316e05a9e81c3", + "type": "file", + "name": "/usr/share/common-licenses/CC0-1.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "82da472f6d00dc5f0a651f33ebb320aa9c7b08d0" + }, + { + "alg": "SHA-256", + "content": "a2010f343487d3f7618affe54f789f5487602331c0a8d03f49e9a7c547cf0499" + } + ] + }, + { + "bom-ref": "e2ff0c48aa2e5c90", + "type": "file", + "name": "/usr/share/common-licenses/GFDL-1.2", + "hashes": [ + { + "alg": "SHA-1", + "content": "fcbf818f92ef8679a88f3778b12b4c8b5810545b" + }, + { + "alg": "SHA-256", + "content": "56976e64523fa1e68db4e6f464f5b2cb89d7d08f54b1d012e317b8db286b3faf" + } + ] + }, + { + "bom-ref": "4d57b0dda2974c1a", + "type": "file", + "name": "/usr/share/common-licenses/GFDL-1.3", + "hashes": [ + { + "alg": "SHA-1", + "content": "e1d31e42d2a477d6def889000aa8ffc251f2354c" + }, + { + "alg": "SHA-256", + "content": "4748f03ed2dbcc14cde6ebc30799899c403e356a7465dc30fcf2b80c45fc0059" + } + ] + }, + { + "bom-ref": "49b7f9c276d4bd52", + "type": "file", + "name": "/usr/share/common-licenses/GPL-1", + "hashes": [ + { + "alg": "SHA-1", + "content": "18eaf66587c5eea277721d5e569a6e3cd869f855" + }, + { + "alg": "SHA-256", + "content": "d77d235e41d54594865151f4751e835c5a82322b0e87ace266567c3391a4b912" + } + ] + }, + { + "bom-ref": "82bad77189dcddc6", + "type": "file", + "name": "/usr/share/common-licenses/GPL-2", + "hashes": [ + { + "alg": "SHA-1", + "content": "4cc77b90af91e615a64ae04893fdffa7939db84c" + }, + { + "alg": "SHA-256", + "content": "8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643" + } + ] + }, + { + "bom-ref": "57b1621fd139e3be", + "type": "file", + "name": "/usr/share/common-licenses/GPL-3", + "hashes": [ + { + "alg": "SHA-1", + "content": "8624bcdae55baeef00cd11d5dfcfa60f68710a02" + }, + { + "alg": "SHA-256", + "content": "8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903" + } + ] + }, + { + "bom-ref": "e34d5d21fff90c88", + "type": "file", + "name": "/usr/share/common-licenses/LGPL-2", + "hashes": [ + { + "alg": "SHA-1", + "content": "ba8966e2473a9969bdcab3dc82274c817cfd98a1" + }, + { + "alg": "SHA-256", + "content": "b7993225104d90ddd8024fd838faf300bea5e83d91203eab98e29512acebd69c" + } + ] + }, + { + "bom-ref": "df24232e1824688f", + "type": "file", + "name": "/usr/share/common-licenses/LGPL-2.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "01a6b4bf79aca9b556822601186afab86e8c4fbf" + }, + { + "alg": "SHA-256", + "content": "dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551" + } + ] + }, + { + "bom-ref": "df6970cc4db906bd", + "type": "file", + "name": "/usr/share/common-licenses/LGPL-3", + "hashes": [ + { + "alg": "SHA-1", + "content": "f45ee1c765646813b442ca58de72e20a64a7ddba" + }, + { + "alg": "SHA-256", + "content": "da7eabb7bafdf7d3ae5e9f223aa5bdc1eece45ac569dc21b3b037520b4464768" + } + ] + }, + { + "bom-ref": "9c2138931b3948be", + "type": "file", + "name": "/usr/share/common-licenses/MPL-1.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "ee93a1907dafcb7901b28f14ee05e49176ab7c87" + }, + { + "alg": "SHA-256", + "content": "f849fc26a7a99981611a3a370e83078deb617d12a45776d6c4cada4d338be469" + } + ] + }, + { + "bom-ref": "d16d00259a895701", + "type": "file", + "name": "/usr/share/common-licenses/MPL-2.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "9744cedce099f727b327cd9913a1fdc58a7f5599" + }, + { + "alg": "SHA-256", + "content": "fab3dd6bdab226f1c08630b1dd917e11fcb4ec5e1e020e2c16f83a0a13863e85" + } + ] + }, + { + "bom-ref": "fa79db32b6996332", + "type": "file", + "name": "/usr/share/debconf/confmodule", + "hashes": [ + { + "alg": "SHA-1", + "content": "ec2348ceb3861d43ab2fcab9da5734d2a20e1d9c" + }, + { + "alg": "SHA-256", + "content": "c441d29fb3a1e75d9a9b35535067f73abf7104ab77cd4286087a154517dfa3dd" + } + ] + }, + { + "bom-ref": "f1992dd1318373d3", + "type": "file", + "name": "/usr/share/debconf/confmodule.sh", + "hashes": [ + { + "alg": "SHA-1", + "content": "65f3de36c25e7baff823a44707c14c78d588b305" + }, + { + "alg": "SHA-256", + "content": "9bb739cea6c1f88c3282c6743a230acba64ac1d12c40a89daf12fe5f2390cb68" + } + ] + }, + { + "bom-ref": "f8c3194c98f7f6dc", + "type": "file", + "name": "/usr/share/debconf/debconf.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "52b154a47b950dfce5dff3103c656f69966a67f9" + }, + { + "alg": "SHA-256", + "content": "2ed2f1e25211c95ae120cecfff540e33a533c03bb2793504c3d692b0b034c2dd" + } + ] + }, + { + "bom-ref": "5fd12eb225a19783", + "type": "file", + "name": "/usr/share/debconf/fix_db.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "5e25875cabcb393d8513ea28d07ede4b53827b3c" + }, + { + "alg": "SHA-256", + "content": "3023d816728349ffe6647f852722046631f1802737753f75517ebff0461473df" + } + ] + }, + { + "bom-ref": "30189de1ce13b9c7", + "type": "file", + "name": "/usr/share/debconf/frontend", + "hashes": [ + { + "alg": "SHA-1", + "content": "e7eaf7b3ce2970e17351bf25dcb51d3cbad23edf" + }, + { + "alg": "SHA-256", + "content": "4425ec2e272875006ca7dde26d1c11b79a0a3570ececcd11f65baddd4b474ae0" + } + ] + }, + { + "bom-ref": "6084cfc28daad706", + "type": "file", + "name": "/usr/share/debconf/transition_db.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "24457df505bb4fe2697e7f185e21aad0705b8e66" + }, + { + "alg": "SHA-256", + "content": "9dbd7e5dcf314de4f1c1f15c46c69754f9c61c6be632b7c5a6efee08df0aa798" + } + ] + }, + { + "bom-ref": "c98b6afbbc151471", + "type": "file", + "name": "/usr/share/debianutils/shells", + "hashes": [ + { + "alg": "SHA-1", + "content": "4f360cd116c9366f8090f987d06a0f415f0c71a8" + }, + { + "alg": "SHA-256", + "content": "184fd1ac95af5ad460ee875e9fddb4975e8720ee7d805d964c68d125573537be" + } + ] + }, + { + "bom-ref": "3ec41edaa59b8ae2", + "type": "file", + "name": "/usr/share/doc-base/findutils", + "hashes": [ + { + "alg": "SHA-1", + "content": "2858e44bc9841dfbad3465e594198820819d396c" + }, + { + "alg": "SHA-256", + "content": "83026123456c2f7c1cc44196701180752a65423ade28344ef277cf577b12faa6" + } + ] + }, + { + "bom-ref": "6ec834183a25d065", + "type": "file", + "name": "/usr/share/doc-base/users-and-groups", + "hashes": [ + { + "alg": "SHA-1", + "content": "7013bfeff328ba446a0d01306f3264cbe8f908ed" + }, + { + "alg": "SHA-256", + "content": "159902a0284dbbcc039824ebab914948f8a803280fa2b67742b8f7fd40c50250" + } + ] + }, + { + "bom-ref": "68449184dd6193fa", + "type": "file", + "name": "/usr/share/doc/adduser/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "31388b9f41add43b5193c735ff757f98e0b56b4e" + }, + { + "alg": "SHA-256", + "content": "3e67668ed552fe3a0684e77282325d07fa8847f2575ea1e1906000de571b5c1e" + } + ] + }, + { + "bom-ref": "5835dd156119c0bd", + "type": "file", + "name": "/usr/share/doc/apt/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "a78f979f237619213f2a0dc4279020c775d2ac38" + }, + { + "alg": "SHA-256", + "content": "307e96c4b7e8170b422d86cfb04d9ae4a404e6d46755448331cdedb23cf1c3b0" + } + ] + }, + { + "bom-ref": "a024e6ef974490e1", + "type": "file", + "name": "/usr/share/doc/base-files/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "ead0e582771a70943265c346c0a16283ee46d513" + }, + { + "alg": "SHA-256", + "content": "cdb5461d8515002d0fe3babb764eec3877458b20f4e4bb16219f62ea953afeea" + } + ] + }, + { + "bom-ref": "fe0d9ed9923c1baf", + "type": "file", + "name": "/usr/share/doc/base-passwd/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "adefc60f944f90ee41d0ac84a9aeda5447987a30" + }, + { + "alg": "SHA-256", + "content": "a77c7e339acd99c86320ee3b47789eebbeaab1bc0d6b5eb966977c4ccf2a6563" + } + ] + }, + { + "bom-ref": "e819c370caccf13a", + "type": "file", + "name": "/usr/share/doc/bash/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "ec167386a742ce0d0a69b2eebbd9d7c6a223dbb0" + }, + { + "alg": "SHA-256", + "content": "da7a8d93abf1eccdeaf326642c8ce9ed760f3a973ca46f3f69b3cf755bb81ade" + } + ] + }, + { + "bom-ref": "177d0e68bc89ec85", + "type": "file", + "name": "/usr/share/doc/bsdutils/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "b0d6c1ee6ae5779cb634f2e65717725201cd53c0" + }, + { + "alg": "SHA-256", + "content": "9fe7275892298c35c8da084b1f5114e6baacb1af56aea0031d6dfec3097301f1" + } + ] + }, + { + "bom-ref": "ea23ab841c4521a7", + "type": "file", + "name": "/usr/share/doc/coreutils/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "83777ceb56f76ff602dfb10f2ac82277c730176e" + }, + { + "alg": "SHA-256", + "content": "350c1a60923248396acdf5aa3d20cdd5156e82648b3411bf9dff3a16b1ce9c7e" + } + ] + }, + { + "bom-ref": "69c9536b6aafe924", + "type": "file", + "name": "/usr/share/doc/dash/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "615fc49104b31c521d435f8f4776460bd19ef298" + }, + { + "alg": "SHA-256", + "content": "7c77d28679de92b8aca0b3dd400eabac91bf9f6c68171e49355888d2593a968f" + } + ] + }, + { + "bom-ref": "cfa0801fc7d2a33b", + "type": "file", + "name": "/usr/share/doc/debconf/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "a9e28b15ea1090dd00910c09f47b4844ed80d8ac" + }, + { + "alg": "SHA-256", + "content": "29162b7d5d9aabc3351d9e834dba936ee0e7b31d8bed2b87bea4b72745f36a66" + } + ] + }, + { + "bom-ref": "04c37f50a862967b", + "type": "file", + "name": "/usr/share/doc/debian-archive-keyring/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "5c99fb4a07cfc548bb209f469ef276106196b252" + }, + { + "alg": "SHA-256", + "content": "b32aecaae84643700a33bc9ee83fa9b36938d35aa7b61b5042092eca77ddb732" + } + ] + }, + { + "bom-ref": "3bd0e76d84eadf44", + "type": "file", + "name": "/usr/share/doc/debianutils/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "5319d6423e4da642ed0aa3f7b79ac7501843c888" + }, + { + "alg": "SHA-256", + "content": "a8698f078cd21fc501e66d070e12cf2f23ec1eaf5841bbc87629de76858ef7a7" + } + ] + }, + { + "bom-ref": "e1301ba84e4540c1", + "type": "file", + "name": "/usr/share/doc/diffutils/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "cacd7d5a52ec2dfeaf512ea45d7aa4d546749979" + }, + { + "alg": "SHA-256", + "content": "b3c97bfbcbb85a128e4408a67bbd7d2b4dd28469e9382a9b42ff4a72cad65024" + } + ] + }, + { + "bom-ref": "0a1fbccbcfbbe800", + "type": "file", + "name": "/usr/share/doc/dpkg/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "f749f6719867a620a66ada355fa5e351b914e3e5" + }, + { + "alg": "SHA-256", + "content": "1a87ca75439f4e5be763913b21e9d23476b7e5c37814b9a0500c819e437f9b8f" + } + ] + }, + { + "bom-ref": "23ba3393864ff4bd", + "type": "file", + "name": "/usr/share/doc/e2fsprogs/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "fc6b02ddb7365d99d34715f755cd7a1a44f59e8e" + }, + { + "alg": "SHA-256", + "content": "b7b391571e7253d4cf607e33e3b463895768fad264471e7774882974f834faa1" + } + ] + }, + { + "bom-ref": "989cd977e70ee157", + "type": "file", + "name": "/usr/share/doc/fdisk/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "b0d6c1ee6ae5779cb634f2e65717725201cd53c0" + }, + { + "alg": "SHA-256", + "content": "9fe7275892298c35c8da084b1f5114e6baacb1af56aea0031d6dfec3097301f1" + } + ] + }, + { + "bom-ref": "ab723a3b4ce8a36c", + "type": "file", + "name": "/usr/share/doc/findutils/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "5b46ef799873422a5e105ad4f2470cac2d6bf77f" + }, + { + "alg": "SHA-256", + "content": "fb98507cf4fa9d3fd299f8d493ae1b3ed0f4d3b530f88a5d4eab187be2a22e26" + } + ] + }, + { + "bom-ref": "d0ada769ddd9ca94", + "type": "file", + "name": "/usr/share/doc/gcc-8-base/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "384081e36f380ffd31b84f5fb1625ddb01cc6412" + }, + { + "alg": "SHA-256", + "content": "9865be517c31de50eb2b36a8957ccd97942807974afad2515578101d1168887a" + } + ] + }, + { + "bom-ref": "ecca6677f42d4558", + "type": "file", + "name": "/usr/share/doc/gpgv/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "cc497524f2e2ae1677f2b8699de4424ff66cb4b6" + }, + { + "alg": "SHA-256", + "content": "8e565dd3d0bf5675e3641b144a7e805ed11be4fbcfdcbc93dc869f7107c0f252" + } + ] + }, + { + "bom-ref": "dd31ca641287535e", + "type": "file", + "name": "/usr/share/doc/grep/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "07c64f0cfe0196aa7cd4cce2d949c2900d9dfc79" + }, + { + "alg": "SHA-256", + "content": "42d9b4d610396b1e8d1303dcb9487af3f5a2d2709623cf03a04cf76acdf6c5e3" + } + ] + }, + { + "bom-ref": "4b47bfe1dc848621", + "type": "file", + "name": "/usr/share/doc/gzip/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "37c2aea0e12b8948ce0c48935ac167442bc5e492" + }, + { + "alg": "SHA-256", + "content": "f9ac4a5d7a670e3891881a2cdba5fa2cd625c4d58eae4a7aa372ac00a06803bd" + } + ] + }, + { + "bom-ref": "9499c9d54cb04f05", + "type": "file", + "name": "/usr/share/doc/hostname/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "4ee28eb61e908c48a9d8e1885df467079d173af5" + }, + { + "alg": "SHA-256", + "content": "272c5b1c9235edc311f202b2a6abfff24ba96a47c779b4db3b97c2e60eb3e81a" + } + ] + }, + { + "bom-ref": "a221b91efa353b2b", + "type": "file", + "name": "/usr/share/doc/init-system-helpers/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "72cc0ea56f3548cb5f649cd6d1428e53f19569b8" + }, + { + "alg": "SHA-256", + "content": "6679b51cc827aeec6b2d10909435db6312a4ecb8a8a8a15cb7194d98460f8869" + } + ] + }, + { + "bom-ref": "2cec65930d3000f5", + "type": "file", + "name": "/usr/share/doc/libacl1/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "50560c96790ad20e386b50012221d6bf298e2e01" + }, + { + "alg": "SHA-256", + "content": "9a2dfb4a5abc7e84be2cc41f1089be665519c9409549296f6c19de57ab1d37c2" + } + ] + }, + { + "bom-ref": "81d903d15d1e7c2f", + "type": "file", + "name": "/usr/share/doc/libapt-pkg5.0/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "a78f979f237619213f2a0dc4279020c775d2ac38" + }, + { + "alg": "SHA-256", + "content": "307e96c4b7e8170b422d86cfb04d9ae4a404e6d46755448331cdedb23cf1c3b0" + } + ] + }, + { + "bom-ref": "a3e324c12d139ddb", + "type": "file", + "name": "/usr/share/doc/libattr1/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "f139a3ba90f2635b230183acd7ff4e8b2caae75e" + }, + { + "alg": "SHA-256", + "content": "0cbec745d85ea775450b2d54fac55277197f429e52d611f72852ed420450620e" + } + ] + }, + { + "bom-ref": "74ce42ceb4917b8b", + "type": "file", + "name": "/usr/share/doc/libaudit-common/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "88131231e40bbcca38b2852b7c8c84c5fc28dd74" + }, + { + "alg": "SHA-256", + "content": "44cda705476da1eea0a6ab4c3d941f756d7b995743214b6f2fa7c7d52d8813e2" + } + ] + }, + { + "bom-ref": "3d06a2468b93c4c1", + "type": "file", + "name": "/usr/share/doc/libaudit1/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "88131231e40bbcca38b2852b7c8c84c5fc28dd74" + }, + { + "alg": "SHA-256", + "content": "44cda705476da1eea0a6ab4c3d941f756d7b995743214b6f2fa7c7d52d8813e2" + } + ] + }, + { + "bom-ref": "908dca9e5306d6d1", + "type": "file", + "name": "/usr/share/doc/libblkid1/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "b0d6c1ee6ae5779cb634f2e65717725201cd53c0" + }, + { + "alg": "SHA-256", + "content": "9fe7275892298c35c8da084b1f5114e6baacb1af56aea0031d6dfec3097301f1" + } + ] + }, + { + "bom-ref": "cdf9f0288d4fd6e8", + "type": "file", + "name": "/usr/share/doc/libbz2-1.0/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "d29b4fd58a4a1923e6fd75369d58d7ded84e54de" + }, + { + "alg": "SHA-256", + "content": "832ed535ff3c3d025a8d2348eb1b697b89addcf2eaadbc17650262040b9145e2" + } + ] + }, + { + "bom-ref": "7a5a555f97b3135d", + "type": "file", + "name": "/usr/share/doc/libc-bin/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "5c4df62d190848821200ce4041d2753bd431a7eb" + }, + { + "alg": "SHA-256", + "content": "40c7e1f2118531f038ca22999bd976901254e1bc5cd1b0f0211bdd064c599987" + } + ] + }, + { + "bom-ref": "6f4bfa124fe29a9d", + "type": "file", + "name": "/usr/share/doc/libc6/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "5c4df62d190848821200ce4041d2753bd431a7eb" + }, + { + "alg": "SHA-256", + "content": "40c7e1f2118531f038ca22999bd976901254e1bc5cd1b0f0211bdd064c599987" + } + ] + }, + { + "bom-ref": "d007ebb9b3dee5f2", + "type": "file", + "name": "/usr/share/doc/libcap-ng0/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "d365603c1824ae72bf09c6613f03a8facbe21d07" + }, + { + "alg": "SHA-256", + "content": "8cdc2d0eeeb4ed84963c58be27389b148e830ce5ec42c2598cf194721d0430ec" + } + ] + }, + { + "bom-ref": "dfd87528c58627be", + "type": "file", + "name": "/usr/share/doc/libcom-err2/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "964940cab57f7a95a1ab2edf904e0018285c13f3" + }, + { + "alg": "SHA-256", + "content": "9e3a4384b6d8d2358d44103f62bcd948328b3f8a63a1a6baa66abeb43302d581" + } + ] + }, + { + "bom-ref": "393938b6d3f0cbf9", + "type": "file", + "name": "/usr/share/doc/libdb5.3/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "6b19d88c2421c47ec380b588ce0558f9b80574f6" + }, + { + "alg": "SHA-256", + "content": "b3bbc6fbb3f2a0e6a487e953eb8c3cc4bdb6f4150f7f51d20b1e9a3c8ef92d3d" + } + ] + }, + { + "bom-ref": "85a072eb69fe4d94", + "type": "file", + "name": "/usr/share/doc/libdebconfclient0/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "88f497736f11896da400269efd7d255d14bc2331" + }, + { + "alg": "SHA-256", + "content": "1f48252e8bd71085c67fe1f5468c67da1d2d7cc34cd8a7e9d90b9ad2df080e8e" + } + ] + }, + { + "bom-ref": "2ce11e0c88eb72f6", + "type": "file", + "name": "/usr/share/doc/libext2fs2/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "fc6b02ddb7365d99d34715f755cd7a1a44f59e8e" + }, + { + "alg": "SHA-256", + "content": "b7b391571e7253d4cf607e33e3b463895768fad264471e7774882974f834faa1" + } + ] + }, + { + "bom-ref": "1bdcab5d04d7995f", + "type": "file", + "name": "/usr/share/doc/libfdisk1/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "b0d6c1ee6ae5779cb634f2e65717725201cd53c0" + }, + { + "alg": "SHA-256", + "content": "9fe7275892298c35c8da084b1f5114e6baacb1af56aea0031d6dfec3097301f1" + } + ] + }, + { + "bom-ref": "ed4f88dc7c0c2385", + "type": "file", + "name": "/usr/share/doc/libffi6/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "da80f4f4082fe6cfabf61ed51f7059ae0c02424e" + }, + { + "alg": "SHA-256", + "content": "7258c8acc378030d8dbe1fcdf394e915769fa31dcbaf3d2991d9a79891f3bcdc" + } + ] + }, + { + "bom-ref": "c4f2b4d7214f631c", + "type": "file", + "name": "/usr/share/doc/libgcrypt20/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "697d2792af8686cbcf1720ed92edd313041e103e" + }, + { + "alg": "SHA-256", + "content": "26c21767c3a769ed688e2fe3d890963bd0992b5a53ee9cd18babd680e665f131" + } + ] + }, + { + "bom-ref": "c92997c457810b89", + "type": "file", + "name": "/usr/share/doc/libgmp10/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "d57b164902c5f5657f38711f25f0883f57722e56" + }, + { + "alg": "SHA-256", + "content": "f73f781beb9f85b3f921f9bf540fc89d6eff9e20689ef9323ce510d077a30878" + } + ] + }, + { + "bom-ref": "ccb2259ec97e8a7c", + "type": "file", + "name": "/usr/share/doc/libgnutls30/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "36379e049de0b6e6447225ba8ed51f447804063c" + }, + { + "alg": "SHA-256", + "content": "d35f0abecc61a3676965c20cf13a44815b05d9b4a68985fa1809b13c2aff9090" + } + ] + }, + { + "bom-ref": "46152a33af2f169a", + "type": "file", + "name": "/usr/share/doc/libgpg-error0/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "73486a0eb60de2396b9306a117bc82885d993594" + }, + { + "alg": "SHA-256", + "content": "ef74578dd392759954c80d4ad3986273d05d8c2098b2e9ee18980f88e0ad3342" + } + ] + }, + { + "bom-ref": "b467d6a5788827c9", + "type": "file", + "name": "/usr/share/doc/libidn2-0/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "c4f462d6880bdf10c6f370dd86ae52a979180e98" + }, + { + "alg": "SHA-256", + "content": "7266ea99392fc30a070358029621c5381fa73a9cec9111d1befb3edf2f379568" + } + ] + }, + { + "bom-ref": "bfcf08e058174c92", + "type": "file", + "name": "/usr/share/doc/liblz4-1/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "ab4cd2512a83c3ba76f3bb529f3233da95ba405e" + }, + { + "alg": "SHA-256", + "content": "a82c5d50439c6d9f32b874dbc75ae5292ba5a3e50318bed80e82a8f5254689ca" + } + ] + }, + { + "bom-ref": "dd55fc7fc95a8cf4", + "type": "file", + "name": "/usr/share/doc/liblzma5/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "1e2322cee162497b530386a6dddc00ffde6e601e" + }, + { + "alg": "SHA-256", + "content": "a2dc8fac0f496e1c58aff67018cf0c6b88336316afa5642f9335b71642e28aa8" + } + ] + }, + { + "bom-ref": "540ea297c0dba3ae", + "type": "file", + "name": "/usr/share/doc/libmount1/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "b0d6c1ee6ae5779cb634f2e65717725201cd53c0" + }, + { + "alg": "SHA-256", + "content": "9fe7275892298c35c8da084b1f5114e6baacb1af56aea0031d6dfec3097301f1" + } + ] + }, + { + "bom-ref": "9a665a1e64a6af9a", + "type": "file", + "name": "/usr/share/doc/libnettle6/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "285aa936bb57c1ecc16c01ba7edb7d7ae85ebc8f" + }, + { + "alg": "SHA-256", + "content": "84de5caab44520665c49dff405356c56de9d371a9f63cf67c09589af14c3f008" + } + ] + }, + { + "bom-ref": "2446cb4505508e16", + "type": "file", + "name": "/usr/share/doc/libp11-kit0/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "127c1aab48bef48205049847a3975711f3041016" + }, + { + "alg": "SHA-256", + "content": "7e0942c830cd46f69d01e0806c63b6757bb229b635f0bdd48bcc0e7c32ea4787" + } + ] + }, + { + "bom-ref": "adbf6f7cd942daa6", + "type": "file", + "name": "/usr/share/doc/libpam-modules-bin/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "4f6dd617065f06173e48f2cd98be073405b2d14b" + }, + { + "alg": "SHA-256", + "content": "7c584b7b1f37b612da7fdf3b076eb2b2c1bae72865f0699d745ae2ac7d40d13e" + } + ] + }, + { + "bom-ref": "61034c6cf1a63d4e", + "type": "file", + "name": "/usr/share/doc/libpam-modules/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "4f6dd617065f06173e48f2cd98be073405b2d14b" + }, + { + "alg": "SHA-256", + "content": "7c584b7b1f37b612da7fdf3b076eb2b2c1bae72865f0699d745ae2ac7d40d13e" + } + ] + }, + { + "bom-ref": "fa50d5bb106640c5", + "type": "file", + "name": "/usr/share/doc/libpam-runtime/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "4f6dd617065f06173e48f2cd98be073405b2d14b" + }, + { + "alg": "SHA-256", + "content": "7c584b7b1f37b612da7fdf3b076eb2b2c1bae72865f0699d745ae2ac7d40d13e" + } + ] + }, + { + "bom-ref": "810df1339419d539", + "type": "file", + "name": "/usr/share/doc/libpam0g/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "4f6dd617065f06173e48f2cd98be073405b2d14b" + }, + { + "alg": "SHA-256", + "content": "7c584b7b1f37b612da7fdf3b076eb2b2c1bae72865f0699d745ae2ac7d40d13e" + } + ] + }, + { + "bom-ref": "81f489454b416c59", + "type": "file", + "name": "/usr/share/doc/libpcre3/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "4fbf031fd132fc284b85934b33df5c858b1e83df" + }, + { + "alg": "SHA-256", + "content": "ac9276490d2fa167442ae1aae33926514ad10c8886baa40046c5e367fccc5938" + } + ] + }, + { + "bom-ref": "a99346798d335209", + "type": "file", + "name": "/usr/share/doc/libseccomp2/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "64fc5a7c28d530bfb4daf70fa41d0946a8c98319" + }, + { + "alg": "SHA-256", + "content": "6da0653a365b80ab31478dbfe9e7c358e80d58b6d2b52b4e16b4dbb42d7d9f5c" + } + ] + }, + { + "bom-ref": "51646cf67af0ee49", + "type": "file", + "name": "/usr/share/doc/libselinux1/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "7457a4fcc8b1f370f9fabb1f3e1df3bd7426977c" + }, + { + "alg": "SHA-256", + "content": "641806738b0c6a3d03168c2649e6b94205198bb66cd557e6bae3a20b71c9bb0b" + } + ] + }, + { + "bom-ref": "68136b838d49a259", + "type": "file", + "name": "/usr/share/doc/libsemanage-common/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "80f13496ec787fb5b457c6cdd9b0fa4b284865be" + }, + { + "alg": "SHA-256", + "content": "e00e6a86c598f9e24ced0180a70a5f2f2e45e133d93adf2b17ce8a06ce4b1b51" + } + ] + }, + { + "bom-ref": "20c7856cce787fcb", + "type": "file", + "name": "/usr/share/doc/libsemanage1/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "80f13496ec787fb5b457c6cdd9b0fa4b284865be" + }, + { + "alg": "SHA-256", + "content": "e00e6a86c598f9e24ced0180a70a5f2f2e45e133d93adf2b17ce8a06ce4b1b51" + } + ] + }, + { + "bom-ref": "8f05dad219b5f871", + "type": "file", + "name": "/usr/share/doc/libsepol1/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "eef1f936876810bdc90eb31dcffabaa2a461702b" + }, + { + "alg": "SHA-256", + "content": "34414ad829fcea0064729c14f1f900632bfa7d38061b13a9797eec320c372d9e" + } + ] + }, + { + "bom-ref": "2480d34f17a5c272", + "type": "file", + "name": "/usr/share/doc/libsmartcols1/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "b0d6c1ee6ae5779cb634f2e65717725201cd53c0" + }, + { + "alg": "SHA-256", + "content": "9fe7275892298c35c8da084b1f5114e6baacb1af56aea0031d6dfec3097301f1" + } + ] + }, + { + "bom-ref": "a7f21c997cadb0fa", + "type": "file", + "name": "/usr/share/doc/libss2/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "67e778ea9b95ab6ab7b40ba50986c2d6dac124da" + }, + { + "alg": "SHA-256", + "content": "6f717a1464301a641ac17e7301f1a1b221da802e8edf8cf4bc963721d487b146" + } + ] + }, + { + "bom-ref": "1d019285db11bcfb", + "type": "file", + "name": "/usr/share/doc/libsystemd0/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "5fcefe8d03de158446e2749ba29fcd404f5b0b57" + }, + { + "alg": "SHA-256", + "content": "c4b0169d4d79af9996c35f65c75daa1f919e1eac60180295c18331a31deb134c" + } + ] + }, + { + "bom-ref": "21a8f52c91009ed3", + "type": "file", + "name": "/usr/share/doc/libtasn1-6/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "092bf1eebd07625a23b844d767001cbb2ef9b625" + }, + { + "alg": "SHA-256", + "content": "dc1e5deaae0e497cdf0833a38742749695ad77fb8cfb5ef1e608724e6add9c81" + } + ] + }, + { + "bom-ref": "d9b0f9c0678d7fb2", + "type": "file", + "name": "/usr/share/doc/libtinfo6/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "37dcd9c6a4af70f278c55c8370a1dfd610058c22" + }, + { + "alg": "SHA-256", + "content": "5e8ee902c8906ddb7779fd36dc9979cb08b51fbebf7c0b1a9aeb78af382af590" + } + ] + }, + { + "bom-ref": "f25ebf3b2df7c200", + "type": "file", + "name": "/usr/share/doc/libudev1/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "5fcefe8d03de158446e2749ba29fcd404f5b0b57" + }, + { + "alg": "SHA-256", + "content": "c4b0169d4d79af9996c35f65c75daa1f919e1eac60180295c18331a31deb134c" + } + ] + }, + { + "bom-ref": "5a5e62a41604be0f", + "type": "file", + "name": "/usr/share/doc/libunistring2/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "fba3b7b26f1df1e7b497f4be1825dfdbfccfc279" + }, + { + "alg": "SHA-256", + "content": "61b72a0430a1ec0c5cbabf6982bb4e4f7b4f040c50a31bbd503e95f890a32c87" + } + ] + }, + { + "bom-ref": "dbc893d2cbdb837b", + "type": "file", + "name": "/usr/share/doc/libuuid1/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "b0d6c1ee6ae5779cb634f2e65717725201cd53c0" + }, + { + "alg": "SHA-256", + "content": "9fe7275892298c35c8da084b1f5114e6baacb1af56aea0031d6dfec3097301f1" + } + ] + }, + { + "bom-ref": "7eca8f5e2aff279d", + "type": "file", + "name": "/usr/share/doc/libzstd1/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "7df6e78680e189da370a4606e71c45c7ffea5337" + }, + { + "alg": "SHA-256", + "content": "61dd6d9f6c02e3ccb52dc6924ddea5808be432835a454b64d807db546d80c25f" + } + ] + }, + { + "bom-ref": "005fe6228cec9ebb", + "type": "file", + "name": "/usr/share/doc/login/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "6cf403ae824277b0dbf6424d83262997442be5ea" + }, + { + "alg": "SHA-256", + "content": "56ca9c00cdef4d69b35d2013465c539eb9e09a80fec538d0f6dc91423dbaa1d3" + } + ] + }, + { + "bom-ref": "1d2a3da9ae96bda2", + "type": "file", + "name": "/usr/share/doc/mawk/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "9de239f48e335976027302ad1f672ff01e3873ff" + }, + { + "alg": "SHA-256", + "content": "80910bdabaf183ae4d3ffd72d9fe9066a9a1035be8e5d7dd541ddc6755d19abb" + } + ] + }, + { + "bom-ref": "10d131a95602437d", + "type": "file", + "name": "/usr/share/doc/mount/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "b0d6c1ee6ae5779cb634f2e65717725201cd53c0" + }, + { + "alg": "SHA-256", + "content": "9fe7275892298c35c8da084b1f5114e6baacb1af56aea0031d6dfec3097301f1" + } + ] + }, + { + "bom-ref": "3b78b8e21b22e0c5", + "type": "file", + "name": "/usr/share/doc/ncurses-base/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "37dcd9c6a4af70f278c55c8370a1dfd610058c22" + }, + { + "alg": "SHA-256", + "content": "5e8ee902c8906ddb7779fd36dc9979cb08b51fbebf7c0b1a9aeb78af382af590" + } + ] + }, + { + "bom-ref": "059332ea8e39eb67", + "type": "file", + "name": "/usr/share/doc/ncurses-bin/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "37dcd9c6a4af70f278c55c8370a1dfd610058c22" + }, + { + "alg": "SHA-256", + "content": "5e8ee902c8906ddb7779fd36dc9979cb08b51fbebf7c0b1a9aeb78af382af590" + } + ] + }, + { + "bom-ref": "0555889a73b1072e", + "type": "file", + "name": "/usr/share/doc/passwd/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "6cf403ae824277b0dbf6424d83262997442be5ea" + }, + { + "alg": "SHA-256", + "content": "56ca9c00cdef4d69b35d2013465c539eb9e09a80fec538d0f6dc91423dbaa1d3" + } + ] + }, + { + "bom-ref": "7dd889cd535c4ee0", + "type": "file", + "name": "/usr/share/doc/perl/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "7dbffb4103bf00705d3ae598a9739e4a4e8938bf" + }, + { + "alg": "SHA-256", + "content": "d4d4d09e501ff40950f29373512a4db1721604a5c3e0c0d9510f23f72ef0860c" + } + ] + }, + { + "bom-ref": "960d7c1077634fca", + "type": "file", + "name": "/usr/share/doc/sed/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "e8a478d071577c0f555120a909538ab015adb2e8" + }, + { + "alg": "SHA-256", + "content": "60886b6264e9531565ccf1e31a63cd9b23f0bf4bbd7053b46aa9e6ae7622d31d" + } + ] + }, + { + "bom-ref": "1a7c5faa3f1df97c", + "type": "file", + "name": "/usr/share/doc/sysvinit-utils/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "66130e3610ecfee561a2690f95714d267fd7ccc6" + }, + { + "alg": "SHA-256", + "content": "ce1edf366d5e3d9a26ca2708247ce57c7475c526ec7f8048fb5ca0296e2c2837" + } + ] + }, + { + "bom-ref": "c260f0937fc050cb", + "type": "file", + "name": "/usr/share/doc/tar/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "6684fe4a523a2266552fb5f3af6266af7674dfa6" + }, + { + "alg": "SHA-256", + "content": "9292780f2dfd11900e92ea67c7a316cf9df740b955956f87ec099a5b4f3d9136" + } + ] + }, + { + "bom-ref": "91cf0fdf6575c0b4", + "type": "file", + "name": "/usr/share/doc/tzdata/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "372af7c5572684c49c9bb641c2a2a42f0967cc67" + }, + { + "alg": "SHA-256", + "content": "75b41b8de75b1596a239f6fa8e4caa409de4cf985cee2943d2a94b4e96a5197d" + } + ] + }, + { + "bom-ref": "ffa1bcb2a229c5d3", + "type": "file", + "name": "/usr/share/doc/util-linux/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "b0d6c1ee6ae5779cb634f2e65717725201cd53c0" + }, + { + "alg": "SHA-256", + "content": "9fe7275892298c35c8da084b1f5114e6baacb1af56aea0031d6dfec3097301f1" + } + ] + }, + { + "bom-ref": "81ba383cf93074da", + "type": "file", + "name": "/usr/share/doc/zlib1g/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "39128d0780a010c6fa3b9002b383a98a7439dee5" + }, + { + "alg": "SHA-256", + "content": "d77204eee882807240f6351c4f5ae2a4bcdb5b773ff77d10647b9b66b826b2fb" + } + ] + }, + { + "bom-ref": "f57acc87558d09e6", + "type": "file", + "name": "/usr/share/dpkg/abitable", + "hashes": [ + { + "alg": "SHA-1", + "content": "f217c6a7b190107dedb49c792653f19322f65193" + }, + { + "alg": "SHA-256", + "content": "c9ed655f391a2dffdfee2070e9c4bd1f502ffff17d19abff21ba492ab643c919" + } + ] + }, + { + "bom-ref": "d0b5f3636a2661f9", + "type": "file", + "name": "/usr/share/dpkg/cputable", + "hashes": [ + { + "alg": "SHA-1", + "content": "113af339a74ad34b6f3adaa35e5311e96d9789dc" + }, + { + "alg": "SHA-256", + "content": "88d770b7e95d793c6250285c4d901365487c44e460a8ebdd4895685f7613d104" + } + ] + }, + { + "bom-ref": "9254d4309bdf1d2c", + "type": "file", + "name": "/usr/share/dpkg/ostable", + "hashes": [ + { + "alg": "SHA-1", + "content": "f3a941c26e8f6a4f7c3b43b14714ab013e9d089d" + }, + { + "alg": "SHA-256", + "content": "49b8a094236fd9f06463afab94d49956cf6fba363ec14d75da6ae3310214ca42" + } + ] + }, + { + "bom-ref": "e987b540cd8a534d", + "type": "file", + "name": "/usr/share/dpkg/tupletable", + "hashes": [ + { + "alg": "SHA-1", + "content": "fccda70d1771b3bca71f0b6ca0aa5e7da3590b93" + }, + { + "alg": "SHA-256", + "content": "8e67a11365119686218b5a245c60fc62484050daf676c6e009d9a0a0e4265f0a" + } + ] + }, + { + "bom-ref": "f240ec2e394b7f38", + "type": "file", + "name": "/usr/share/gcc-8/python/libstdcxx/__init__.py", + "hashes": [ + { + "alg": "SHA-1", + "content": "adc83b19e793491b1c6ea0fd8b46cd9f32e592fc" + }, + { + "alg": "SHA-256", + "content": "01ba4719c80b6fe911b091a7c05124b64eeece964e09c058ef8f9805daca546b" + } + ] + }, + { + "bom-ref": "1e4b41dbee4c8322", + "type": "file", + "name": "/usr/share/gcc-8/python/libstdcxx/v6/__init__.py", + "hashes": [ + { + "alg": "SHA-1", + "content": "47a94a4c7ae319ddeddea45d8c60854f4cf80c50" + }, + { + "alg": "SHA-256", + "content": "fc792a50d118d5feb068481d0328f89fe8762b7705011910281bfe65c1170c8f" + } + ] + }, + { + "bom-ref": "af32f44a32ac2f9c", + "type": "file", + "name": "/usr/share/gcc-8/python/libstdcxx/v6/printers.py", + "hashes": [ + { + "alg": "SHA-1", + "content": "120175fe9c596fb98e17650dc8ff6979212a8f84" + }, + { + "alg": "SHA-256", + "content": "1e7e02c740c4cc73e5992d39d0f6e8bcf580dbbf52b65f96d70923db2069e800" + } + ] + }, + { + "bom-ref": "d020cdfdaf47c7f9", + "type": "file", + "name": "/usr/share/gcc-8/python/libstdcxx/v6/xmethods.py", + "hashes": [ + { + "alg": "SHA-1", + "content": "9a3595a01636b3c76dfa45907fa09661f4dc5afa" + }, + { + "alg": "SHA-256", + "content": "98db47a3b61cf963823b628160a329db5c38812a0886deeca7195046df87a908" + } + ] + }, + { + "bom-ref": "d206f75eee94e52c", + "type": "file", + "name": "/usr/share/gdb/auto-load/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25-gdb.py", + "hashes": [ + { + "alg": "SHA-1", + "content": "7548794459302e04df1bad2812fd8d8425bac892" + }, + { + "alg": "SHA-256", + "content": "d6380489539aa349920cb13761c9d3dd223866f05320a195ace37566fd064572" + } + ] + }, + { + "bom-ref": "75dc68068d61124f", + "type": "file", + "name": "/usr/share/keyrings/debian-archive-bullseye-automatic.gpg", + "hashes": [ + { + "alg": "SHA-1", + "content": "27d0f29dc003b5a8c91ba4d61eb39b7a4301c4c1" + }, + { + "alg": "SHA-256", + "content": "9395df01c1c6226584206a77d237c60fdc7039a015ece4e6bd3b1947db6c3b1e" + } + ] + }, + { + "bom-ref": "7649d555efd34a43", + "type": "file", + "name": "/usr/share/keyrings/debian-archive-bullseye-security-automatic.gpg", + "hashes": [ + { + "alg": "SHA-1", + "content": "4c3899132dad707cbbe44cf490ba43e35a0dec12" + }, + { + "alg": "SHA-256", + "content": "e551f90fa954a65b3b6c54160f9d8485bee806318afe7a6998c4d9bece8e0df3" + } + ] + }, + { + "bom-ref": "d4f938feef64ada2", + "type": "file", + "name": "/usr/share/keyrings/debian-archive-bullseye-stable.gpg", + "hashes": [ + { + "alg": "SHA-1", + "content": "30a6bce0cab0fe98ca0b13447904f14c33f60b45" + }, + { + "alg": "SHA-256", + "content": "0cdd043ff2e04448802488fd4a4e3812c298a1ab5d81374ea9a9693a274cef8c" + } + ] + }, + { + "bom-ref": "d2e5595b4090be1b", + "type": "file", + "name": "/usr/share/keyrings/debian-archive-buster-automatic.gpg", + "hashes": [ + { + "alg": "SHA-1", + "content": "a6f83aced5193f1f7c1e155785f5b61d38361615" + }, + { + "alg": "SHA-256", + "content": "89d89bcedee9ed88b25eabb5be786fbca6259f121e6ad6ebf5651f852f5227cf" + } + ] + }, + { + "bom-ref": "21dbaa4c354aa179", + "type": "file", + "name": "/usr/share/keyrings/debian-archive-buster-security-automatic.gpg", + "hashes": [ + { + "alg": "SHA-1", + "content": "400181c4e2ebaf97a4e8b37b904b6bbe94998429" + }, + { + "alg": "SHA-256", + "content": "bd5d7f0384531497968f1866efa6118938e812582a8d2fe86d87b0266c495783" + } + ] + }, + { + "bom-ref": "58ae5f56a3cfc170", + "type": "file", + "name": "/usr/share/keyrings/debian-archive-buster-stable.gpg", + "hashes": [ + { + "alg": "SHA-1", + "content": "a4f90d5b993f61a779f40bc1dff6551a5d7b2b03" + }, + { + "alg": "SHA-256", + "content": "488a60d5065a97cc8b3c907be6d2c12ba5dee5b88f5efeebbd8beb60cc9cced1" + } + ] + }, + { + "bom-ref": "2c80310af7852ca1", + "type": "file", + "name": "/usr/share/keyrings/debian-archive-keyring.gpg", + "hashes": [ + { + "alg": "SHA-1", + "content": "840de30631af61f66914d4f2a162d4dd15dda88b" + }, + { + "alg": "SHA-256", + "content": "a75b59c2c00e3e84dc5c37cf2a459702bd8e0f990d09bf4c3acb6dd2953a3998" + } + ] + }, + { + "bom-ref": "27959408624a5bb5", + "type": "file", + "name": "/usr/share/keyrings/debian-archive-removed-keys.gpg", + "hashes": [ + { + "alg": "SHA-1", + "content": "1f98e588d8eb046df11dbf7d02f2f986a172382a" + }, + { + "alg": "SHA-256", + "content": "2bf17b8b38083e34a0bd6787264f3827df849a66d6960d3f11e77acb5c340922" + } + ] + }, + { + "bom-ref": "0bc69db7d2234f69", + "type": "file", + "name": "/usr/share/keyrings/debian-archive-stretch-automatic.gpg", + "hashes": [ + { + "alg": "SHA-1", + "content": "d62ea924a47d9a3fb24f8a98e32bd88947ba2986" + }, + { + "alg": "SHA-256", + "content": "6e6648330a58db617dd13ba9f51b4101932559d477e7fe5fb656d3a4352efb57" + } + ] + }, + { + "bom-ref": "fe2ffc7f96b4d117", + "type": "file", + "name": "/usr/share/keyrings/debian-archive-stretch-security-automatic.gpg", + "hashes": [ + { + "alg": "SHA-1", + "content": "2687cdcd03c9d5a22e619783b721cdfd60fb7fbd" + }, + { + "alg": "SHA-256", + "content": "481618230f62a29729c58e35684eec7be8774c68b7f94f4a70dae668874e12df" + } + ] + }, + { + "bom-ref": "0a87d4946e442ae2", + "type": "file", + "name": "/usr/share/keyrings/debian-archive-stretch-stable.gpg", + "hashes": [ + { + "alg": "SHA-1", + "content": "6f24e387825ddc9f9df9192e5f94c7c6464885b2" + }, + { + "alg": "SHA-256", + "content": "5306306431152a3fc27406f420b9e1d9905c221ad9565ac7f11abaa3867b0885" + } + ] + }, + { + "bom-ref": "5f6aa9a8c130ef84", + "type": "file", + "name": "/usr/share/libc-bin/nsswitch.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "6dffef69c10367a91b048d9180a4424eede80b74" + }, + { + "alg": "SHA-256", + "content": "eec30745bade42a3f3f792e4d4192e57d2bcfe8e472433b1de426fe39a39cddb" + } + ] + }, + { + "bom-ref": "f6c7e7ec4e82cf74", + "type": "file", + "name": "/usr/share/lintian/profiles/dpkg/main.profile", + "hashes": [ + { + "alg": "SHA-1", + "content": "e744141dcd15fb4e2c10ecf50458a2d70f000081" + }, + { + "alg": "SHA-256", + "content": "9c7ad7d30a894b98266051bab347007009898aa0ddd0aa234cc127a92aefd0d0" + } + ] + }, + { + "bom-ref": "1f45c2944b9d215f", + "type": "file", + "name": "/usr/share/menu/bash", + "hashes": [ + { + "alg": "SHA-1", + "content": "076b29db00bf32456969bd5b1815df7a806abfa4" + }, + { + "alg": "SHA-256", + "content": "1e862c7883df7a31e995769e90b4e6b87399a70f2cad6b2ce95fd865975286aa" + } + ] + }, + { + "bom-ref": "a65b5a88d2ac41ce", + "type": "file", + "name": "/usr/share/menu/dash", + "hashes": [ + { + "alg": "SHA-1", + "content": "28daf8a290b88e61acf188ed687992e2b42e8f9e" + }, + { + "alg": "SHA-256", + "content": "c8bdff923cdb32fc55c80c70546c344e22444dfdccdea6280d9c4c6fa25c7c38" + } + ] + }, + { + "bom-ref": "d2bd8bf3e5932915", + "type": "file", + "name": "/usr/share/pam-configs/mkhomedir", + "hashes": [ + { + "alg": "SHA-1", + "content": "01da6ef5f074c49588a5f08e9084558f2454d319" + }, + { + "alg": "SHA-256", + "content": "ea2840c7336e177f75943580824fe69a5edff790c30c1c40c286462151e22dfa" + } + ] + }, + { + "bom-ref": "3a0679fc0f0b2813", + "type": "file", + "name": "/usr/share/pam-configs/unix", + "hashes": [ + { + "alg": "SHA-1", + "content": "727dc8f53ceaea0264d0877fcbb2a52eb341ff10" + }, + { + "alg": "SHA-256", + "content": "5b434421d10875a53932e967eddc9b885ea42bd9f1360600af04248e8d42be74" + } + ] + }, + { + "bom-ref": "7c0701caf897da96", + "type": "file", + "name": "/usr/share/pam/common-account", + "hashes": [ + { + "alg": "SHA-1", + "content": "dc0573f2ff8f2fc9b73566aafc08f1932f97161e" + }, + { + "alg": "SHA-256", + "content": "8657819f898333b2ff09e8bb4fcc6ffabb02acd015411d0ec89f28a70e672537" + } + ] + }, + { + "bom-ref": "dec0efc0cc43d621", + "type": "file", + "name": "/usr/share/pam/common-account.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "3c813640dfab3bb74d75c3a21fd69b067e55d8c7" + }, + { + "alg": "SHA-256", + "content": "8e2e9985399c29f44638f97acc1b71f9b2b946cfedb21ead16a54cd12c25992a" + } + ] + }, + { + "bom-ref": "d895c20ba0895050", + "type": "file", + "name": "/usr/share/pam/common-auth", + "hashes": [ + { + "alg": "SHA-1", + "content": "483e67258ebaf6ea234773804eca370267fea030" + }, + { + "alg": "SHA-256", + "content": "940827d13f472a45ebd38cca4c4b2f91b7fc22f08a266a9e987222e88df4cc9b" + } + ] + }, + { + "bom-ref": "74dbb82d75fc1c6f", + "type": "file", + "name": "/usr/share/pam/common-auth.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "5bec296feed2e1ee63844074e0211549b1d796d6" + }, + { + "alg": "SHA-256", + "content": "9dfd7b4897f508b7e327e7a511c7d097551d7063145b411e266aa91f2c0c1d57" + } + ] + }, + { + "bom-ref": "9f40897563d01962", + "type": "file", + "name": "/usr/share/pam/common-password", + "hashes": [ + { + "alg": "SHA-1", + "content": "6106317c56b17c5dee2adb2156223a1a35fd3aa5" + }, + { + "alg": "SHA-256", + "content": "fa54ac2f7b8f18c22c1a73dc63d471bfd2694686686fd244d02cd774772dc911" + } + ] + }, + { + "bom-ref": "ce83895bf333ede0", + "type": "file", + "name": "/usr/share/pam/common-password.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "75ae9a1a6c4ddedd753e8dfbe215125bf5c919bc" + }, + { + "alg": "SHA-256", + "content": "5f44a9db909d4ec8cc580261a4674f9a609ad5e7a776a7896087b738e9581b38" + } + ] + }, + { + "bom-ref": "5757432efd3d7f7a", + "type": "file", + "name": "/usr/share/pam/common-session", + "hashes": [ + { + "alg": "SHA-1", + "content": "0bd34b41e75c07e4d521e9fb229cab47e0a479fd" + }, + { + "alg": "SHA-256", + "content": "b1413e5c9105ebdaec6be4eee00535552331a09c5f6206006e8c280374b5a2df" + } + ] + }, + { + "bom-ref": "f4a4f1efd970c907", + "type": "file", + "name": "/usr/share/pam/common-session-noninteractive", + "hashes": [ + { + "alg": "SHA-1", + "content": "2e5f555beff3731d027fed20072ba528f2cb5758" + }, + { + "alg": "SHA-256", + "content": "7ac763203bc998dde4c1ddbdf0c572be2afa61e3f59d82194a51f7b3a5d11f7f" + } + ] + }, + { + "bom-ref": "f4cd678100c84fb7", + "type": "file", + "name": "/usr/share/pam/common-session-noninteractive.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "84e8ae9d5fb3816a33fa83c6e803d30c2dcc53aa" + }, + { + "alg": "SHA-256", + "content": "c4e029edf22d18a793db84b3092d36b88ddfacc5e361b785364e4756755b10e1" + } + ] + }, + { + "bom-ref": "35114347f1a749b2", + "type": "file", + "name": "/usr/share/pam/common-session.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "cc9918b908f52c7c298d8ddb58b208bfb4dfb55d" + }, + { + "alg": "SHA-256", + "content": "b80d0e21fd90493886ba1dd4a4fbacf283e6ffc07815469a0ccb130f2e5d156b" + } + ] + }, + { + "bom-ref": "7683bdf9aa56cc2d", + "type": "file", + "name": "/usr/share/perl5/Debconf/AutoSelect.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "e107e183410ea3afdb443cb398097c9a11c9e754" + }, + { + "alg": "SHA-256", + "content": "1ba6314adcb7339b9730255a752b78863688d7628fe75fe5d02ea04607b7f80d" + } + ] + }, + { + "bom-ref": "f5cb831360b697c4", + "type": "file", + "name": "/usr/share/perl5/Debconf/Base.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "6122fa7bf985a3dba2b8a7b6355222da172ca993" + }, + { + "alg": "SHA-256", + "content": "66ddc0f2cb2cae1e92bce9f5ae48cc82aea652a9ade8ab86cf9a1a3093e1f3e1" + } + ] + }, + { + "bom-ref": "0d23b7808c5dc4d0", + "type": "file", + "name": "/usr/share/perl5/Debconf/Client/ConfModule.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "b50df3b24b8ac4cfa07aa84dd930887ca510a65f" + }, + { + "alg": "SHA-256", + "content": "7d1b308c40b249d160ca49488f5ef1658db695940b53c7bf83bc89f49640b066" + } + ] + }, + { + "bom-ref": "075bf35233073601", + "type": "file", + "name": "/usr/share/perl5/Debconf/ConfModule.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "ba68143a442a8a7ee46f6d6f666bcb9e0eb5b017" + }, + { + "alg": "SHA-256", + "content": "387c6f3a403d3e4cd862b3e68450ab014be1b3b7b6c5824e09ad2f590aae2314" + } + ] + }, + { + "bom-ref": "a699e11fdfc9ec93", + "type": "file", + "name": "/usr/share/perl5/Debconf/Config.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "96b35c728b9570b37a9e3b085feac97d8c446eba" + }, + { + "alg": "SHA-256", + "content": "cd8de0d581b2ef08ff3deddd060fed52e4a914ddc0b59d46e3af617ee4961d1d" + } + ] + }, + { + "bom-ref": "1725126a6b9e3744", + "type": "file", + "name": "/usr/share/perl5/Debconf/Db.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "f7505af908ff3f42d42b9cf41cfe245c8ecc4595" + }, + { + "alg": "SHA-256", + "content": "c0e7a554455e3cf9c42d937bbc8a701627b43f048cbf7a1d7590af44f218338f" + } + ] + }, + { + "bom-ref": "520be2d6b6cd2dc4", + "type": "file", + "name": "/usr/share/perl5/Debconf/DbDriver.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "49aaa9fa144c0ddfb1d5a00cc0de2ceb74d19924" + }, + { + "alg": "SHA-256", + "content": "7ce0f564262a8d5dcdc1027951b080af151669b1841ac88cf6db54f9f5dcacab" + } + ] + }, + { + "bom-ref": "70c2ea51728c4bc0", + "type": "file", + "name": "/usr/share/perl5/Debconf/DbDriver/Backup.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "4423c82d0001e5f0d481c5179db639e6e790175c" + }, + { + "alg": "SHA-256", + "content": "0dd39de90e426e2062483ea468348aef62ecbdfb76fb1292728f3679a42b9dfd" + } + ] + }, + { + "bom-ref": "1cb1c6a0ae0fb3fc", + "type": "file", + "name": "/usr/share/perl5/Debconf/DbDriver/Cache.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "ad42cb683bfe58fe2cab66c9fb843d8c19a425ec" + }, + { + "alg": "SHA-256", + "content": "7075a4f322db7e12d96e2391267073cf11a01277ed972b8fd5285c8b3b89e272" + } + ] + }, + { + "bom-ref": "f83ec3371590fcba", + "type": "file", + "name": "/usr/share/perl5/Debconf/DbDriver/Copy.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "e9c686bdeb9f57047ff204ccda738029dc86dc11" + }, + { + "alg": "SHA-256", + "content": "d79bf94498c68355489fdd90c09d7aaa62116e42f0845ae78ba2c3b45fef9859" + } + ] + }, + { + "bom-ref": "297b8dd52288d7e3", + "type": "file", + "name": "/usr/share/perl5/Debconf/DbDriver/Debug.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "9050a7cd0fb2f2c3ab7a5ff7e6db44d2c94f92ce" + }, + { + "alg": "SHA-256", + "content": "feb9793dbf296b01cc866c0bb792843e711f2126a2ed4171f4a1f2561da76cb8" + } + ] + }, + { + "bom-ref": "103d600d1b33ef9e", + "type": "file", + "name": "/usr/share/perl5/Debconf/DbDriver/DirTree.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "df8bc8c333020098e3bd2a3d2d93259bd43ffe07" + }, + { + "alg": "SHA-256", + "content": "57aba77c08bd3c0106b9d21c1c177984e20a477c2528b85b13ef1345b20af677" + } + ] + }, + { + "bom-ref": "809bcab1b6b0983f", + "type": "file", + "name": "/usr/share/perl5/Debconf/DbDriver/Directory.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "b8053edbd613ec9a61f22dc43fbf8a7acbc6d369" + }, + { + "alg": "SHA-256", + "content": "ecf618cb2a38996f131f775e72084062b9c942c274133f7adb50ab8c36ef598f" + } + ] + }, + { + "bom-ref": "717b2d240225733b", + "type": "file", + "name": "/usr/share/perl5/Debconf/DbDriver/File.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "5fc8769cfd59b52fbb5004e7723ca0d736a7c142" + }, + { + "alg": "SHA-256", + "content": "18906996142065a6c897392a366934054c821d08f34acacb645724da5f6235d5" + } + ] + }, + { + "bom-ref": "9bd6376cb01640f0", + "type": "file", + "name": "/usr/share/perl5/Debconf/DbDriver/LDAP.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "14235bdbfa2df6778a94c57fff0de58aabbd5644" + }, + { + "alg": "SHA-256", + "content": "633a36005440e5101b822a293751d63e0574787fe2b13157aacc2bc00fb0ef02" + } + ] + }, + { + "bom-ref": "55ffb70536f1d995", + "type": "file", + "name": "/usr/share/perl5/Debconf/DbDriver/PackageDir.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "2f601a30edc10170218670abf3670382fabfd2af" + }, + { + "alg": "SHA-256", + "content": "081953795cd5ffbfc2b56cdc1e24c59f76be1fd7664ceaaee6688a55f12c1a3e" + } + ] + }, + { + "bom-ref": "a5d75d034afcc307", + "type": "file", + "name": "/usr/share/perl5/Debconf/DbDriver/Pipe.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "d15a410f5d522aa23c9d4ed78d02036a4113d73c" + }, + { + "alg": "SHA-256", + "content": "b50341f54a9e86d13c0fc1b607466df39f8db062f226b22123a97d73b1d73063" + } + ] + }, + { + "bom-ref": "795fbae5bb447665", + "type": "file", + "name": "/usr/share/perl5/Debconf/DbDriver/Stack.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "7bf894d30b739a17975090168a9684a3161169e1" + }, + { + "alg": "SHA-256", + "content": "f55d0e3f3f4f3ad8910ca1db54838eea67ee5b4fd4efdfa668e4fb23b432f6b9" + } + ] + }, + { + "bom-ref": "3459e77aa4ad0c73", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "21e05af09e6f14ced01d6d3c90c6e50994639007" + }, + { + "alg": "SHA-256", + "content": "00c10272de11fd0ddfbacf752982b22623e629b9d796533c95d586d858ce2c39" + } + ] + }, + { + "bom-ref": "49ec7361531acdbb", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Dialog/Boolean.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "4fb3eb2e96d075090df0733d25fc1ed08dbc3ddc" + }, + { + "alg": "SHA-256", + "content": "81d60ef5716baeedcd3ec9ed5d59d8d310d6a187d7c902133770fa201604cfa5" + } + ] + }, + { + "bom-ref": "a85dd42d5ca4e5c1", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Dialog/Error.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "235b1a24d7a044bbb39379dd3bd76bf2632e170b" + }, + { + "alg": "SHA-256", + "content": "94044eacc5f6137204dc1c805e9323d8ee370163e21e16485961c073bd244c16" + } + ] + }, + { + "bom-ref": "ae61336e42246327", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Dialog/Multiselect.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "d866481152d59808652f248131e0ecf4997fb569" + }, + { + "alg": "SHA-256", + "content": "5a89b6e6233776c40896589664ad74bf8c78235f23ebcc19e9dcda32beb21e9e" + } + ] + }, + { + "bom-ref": "9c97dd96d54fcc5e", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Dialog/Note.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "a105586f6bf5510cc1897c29376572dde7ceadd5" + }, + { + "alg": "SHA-256", + "content": "768e0c2ebfbc4e9227ce359f38b2469e070135c56adba1ec7f5b7505e8ec87e6" + } + ] + }, + { + "bom-ref": "16f8c8910ce2d4e6", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Dialog/Password.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "510387c0ff17a7ae937956816fd389dce181033a" + }, + { + "alg": "SHA-256", + "content": "0f795cb55435e9660233584f899e769e263d1e605e9748860b5edb02ffad3aae" + } + ] + }, + { + "bom-ref": "6c2d7ea9bce02cf9", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Dialog/Progress.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "1def1fe9cb3b91b2a2c9e293f2d61aba2aa82061" + }, + { + "alg": "SHA-256", + "content": "abe844eae752340e23f9f21ddcb6b24764f0eb980471c25f5158c452cfce961d" + } + ] + }, + { + "bom-ref": "6d99306e39a95259", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Dialog/Select.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "0e0091068d5d20e97d3bbfd97b35849ccb5f6773" + }, + { + "alg": "SHA-256", + "content": "024a308e995a3721990978bfc60d584e3a0fc8ed08753692727e1012cfdba322" + } + ] + }, + { + "bom-ref": "faca027b2c165acd", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Dialog/String.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "154ba2078e5fad71f6870bb9dfb66db893b3a8ea" + }, + { + "alg": "SHA-256", + "content": "6c2a414ab5362a2d25f5d080c18da7dfb6efee6d6073635b6e3f1da5793ffac8" + } + ] + }, + { + "bom-ref": "c26a5742c6241645", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Dialog/Text.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "2243bb3d5647e8ee596f9902f0db200d0c00b5d3" + }, + { + "alg": "SHA-256", + "content": "d95c589193ffc32fa5f5c7fb151a458f210ec17a8f33ef5d1644b61110c7a8b0" + } + ] + }, + { + "bom-ref": "632324c7d165d6fc", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Editor/Boolean.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "5be970a25fc546071c277ce4ff68c8003f298658" + }, + { + "alg": "SHA-256", + "content": "03aaf5a065ce57bce012d4ac22f19c776eb5b49daf5842f06bf50de0948b7b17" + } + ] + }, + { + "bom-ref": "7c39181312fed2d6", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Editor/Error.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "e23bcf644cab0bfb1932823a0b8c503d16bfa1f3" + }, + { + "alg": "SHA-256", + "content": "dea5e8e710441f23f824944d013a72167c5e5a0eb9ed31502b543e6aea6d33ba" + } + ] + }, + { + "bom-ref": "4274e0f516f688aa", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Editor/Multiselect.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "9a9a80c08c81874255275c18847d39ee0da41b25" + }, + { + "alg": "SHA-256", + "content": "6a607d19aec535e157cc301eb01a49d25335000d3312f5d0a06e9701d46edfb3" + } + ] + }, + { + "bom-ref": "7a94ff5e7d235868", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Editor/Note.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "db62b31245889af550cffea72fa027e4204bc3bc" + }, + { + "alg": "SHA-256", + "content": "f3922ec83c3ff8ab7f2a0c9a832628c64aeff1a92249544259df48f642df14b7" + } + ] + }, + { + "bom-ref": "911679347e395cff", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Editor/Password.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "5f1872a8a18cce59ba31b8edb1876dea994a1a9e" + }, + { + "alg": "SHA-256", + "content": "e0802d54649714aafd6d6ef426ed4bf4f0429bc8b5ad930e8822b4835d66c4be" + } + ] + }, + { + "bom-ref": "5f3e57554edaa358", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Editor/Progress.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "2366f5883a86aca30a2272d0f316ef14f0231f4c" + }, + { + "alg": "SHA-256", + "content": "f5b8cf39ff9f833f719d260e27466e4e11839a488286c25dacb56a23b049f831" + } + ] + }, + { + "bom-ref": "28595c919d1fcb68", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Editor/Select.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "c08ae3e6c64ae1529801d61f0c52f4a5f86ba6d9" + }, + { + "alg": "SHA-256", + "content": "4d8a031e7a23ad208675d097d700692b04304704fca6764630ffaeaa647843d0" + } + ] + }, + { + "bom-ref": "2c0b8f9055c561ad", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Editor/String.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "901b3e8623ff3dd177461cba5330be9c464753b4" + }, + { + "alg": "SHA-256", + "content": "f8aec4b503d26da2b87eba5acb67456aa6752ad37add8915beee15646626d4a6" + } + ] + }, + { + "bom-ref": "6f2351093bd1ac12", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Editor/Text.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "7f7670944fca9fc5739f42fa3832949ac661144f" + }, + { + "alg": "SHA-256", + "content": "5478c4f864725771238f7a4d42071be055fdf1781098f9a67671ce4c082d6236" + } + ] + }, + { + "bom-ref": "b9e5bbb5703df1fb", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Gnome.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "99d9a2c86889d73a2717d6302e889ec20542d660" + }, + { + "alg": "SHA-256", + "content": "2de0e06b467b7c1682dc4f301cc2443076540c0450e21ab3ac0aba1f9b9d00a5" + } + ] + }, + { + "bom-ref": "66d5d2bce1f749b4", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Gnome/Boolean.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "45f6bf84c05d7fcd92a72379b9d82c1f3a4e156b" + }, + { + "alg": "SHA-256", + "content": "254847cc4aeceeeb3b64a1c84cba614c2ce33dd63182246e5e1a8cf2f7d924fc" + } + ] + }, + { + "bom-ref": "5a35b15f55b31bde", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Gnome/Error.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "6ee33d55116f5af3b23fc8d7105f2530de2a258f" + }, + { + "alg": "SHA-256", + "content": "2292d7d3d45fd14c8ee4d276fdb1a6858365249df49868518114fb6dc19e682e" + } + ] + }, + { + "bom-ref": "432851f3337430da", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Gnome/Multiselect.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "ca52d15764797fac35cba076435997819682cfd7" + }, + { + "alg": "SHA-256", + "content": "df7fa143150ffcd85c5fe4cb83a79d533c0d6408e15537a593d4dd0217afbcfe" + } + ] + }, + { + "bom-ref": "6840e18f52149ca6", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Gnome/Note.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "d90a83939938f3fc75c583d0de9dbd4705f91736" + }, + { + "alg": "SHA-256", + "content": "5f87a9c18562d15b6d7933e1e76894f5b7058d66dd738fd37b9aa07981561ed9" + } + ] + }, + { + "bom-ref": "5ef10194cfbf0ca4", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Gnome/Password.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "8d1bef89efbd13a44ad193bb806716560d03351f" + }, + { + "alg": "SHA-256", + "content": "58755994eafd92c42fd7765afb988f6e1522f1a43a289fc85ed0ffa712403a3f" + } + ] + }, + { + "bom-ref": "a449f8164d56ebd4", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Gnome/Progress.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "ae37ca8b58d490a53c17fb274dd4806992ffa708" + }, + { + "alg": "SHA-256", + "content": "04f10cf7e7c163ec96266afb533bc94828ae1343e13af66c32fb47be2ef1d09d" + } + ] + }, + { + "bom-ref": "abec0606f63fe817", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Gnome/Select.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "2ea35ebb55a877fcabe1f9a86e3afac1a6763166" + }, + { + "alg": "SHA-256", + "content": "2a5bf7f95334d01613049b945144682653b977c49b664ca610fee3636c29b8bc" + } + ] + }, + { + "bom-ref": "e52ef07f29cfe542", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Gnome/String.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "5709f3000b232c6979a76b19b89999673f7dcda0" + }, + { + "alg": "SHA-256", + "content": "382add68ada4f5658b2efa1d5b0bc34356c6b5e3d5ca3445e2b1e17aac45e4e6" + } + ] + }, + { + "bom-ref": "9feb44a0e8c804dd", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Gnome/Text.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "09c4c41d4f6c987f9d8d6ee883f91de04392ef40" + }, + { + "alg": "SHA-256", + "content": "5cd8ceb1ccaca18d12569710eca5a868b953b79fd3e5f4193fc4ae7440f5a204" + } + ] + }, + { + "bom-ref": "c7af44da4ac2226f", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Multiselect.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "8e155c3c1cd69aa5611ba7859cc93052300d7753" + }, + { + "alg": "SHA-256", + "content": "8f4919e0b67b61f650af51406b13998467a477cd04f7772bc8b5ad6cb18649c3" + } + ] + }, + { + "bom-ref": "0a464be7d46698b5", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Noninteractive.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "a3f978944aa4f9599292aad12a436f881b8bd8c4" + }, + { + "alg": "SHA-256", + "content": "e1b6db74cda4b4b43bdf2244350494ea6a53d13a1f7dfeaca90ed16b22d13791" + } + ] + }, + { + "bom-ref": "21a63ff45407d756", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Noninteractive/Boolean.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "a8b214e8a7e3bd653d24453da62b2f7bc35c107f" + }, + { + "alg": "SHA-256", + "content": "13e3e74cafc97617862521b51e2c4ba4b87e87658363d1537452fcd5d874d261" + } + ] + }, + { + "bom-ref": "a423bca0fc0a9734", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Noninteractive/Error.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "52c244be7a9ccbdc289cc6797e43b21cb5aed4ff" + }, + { + "alg": "SHA-256", + "content": "799e48fc5a362d653334159305bafe67cd451420d98988d3047d515b2408120b" + } + ] + }, + { + "bom-ref": "5e27d6a4d278b2b7", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Noninteractive/Multiselect.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "6351b52798bb04e387ccc21acfe21962efbabdfc" + }, + { + "alg": "SHA-256", + "content": "14bbbea9a46115ea16632083ea3ba850b13594957e5dc49b7907ec07e14a0789" + } + ] + }, + { + "bom-ref": "95a3f54bd3fb8e10", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Noninteractive/Note.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "06d4d6f2ac40be9d01657c8ce0b0f5659712d470" + }, + { + "alg": "SHA-256", + "content": "88f2b6eaca06a4b404d62cbdaad4f497aa17aca4d44e785c3a78a763b66c24d4" + } + ] + }, + { + "bom-ref": "e6e914b513d54891", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Noninteractive/Password.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "1134f92fa09282afa577f3cf1b5bda489e45c51a" + }, + { + "alg": "SHA-256", + "content": "5a046112c91b00436a614d93590338a04ad14710cf3af56ebdb883041e38a955" + } + ] + }, + { + "bom-ref": "80d2e2addd0e8c28", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Noninteractive/Progress.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "a13dfe57f366f3b9efa049e5f9c7bd3b3a74dee9" + }, + { + "alg": "SHA-256", + "content": "f21d00539d3a4b8dafa82322d0e0cb1281f0493995723dfdd9a6fc7cc28a7434" + } + ] + }, + { + "bom-ref": "85315eb10032a4b5", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Noninteractive/Select.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "621dfa331e87c3abddcc20df5089582b452b69b3" + }, + { + "alg": "SHA-256", + "content": "e0b972e4af3cefd2ab4858fac0a20df5ac91feb886bb8f0003cfac187581609b" + } + ] + }, + { + "bom-ref": "d54df21bf29cacd6", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Noninteractive/String.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "e9d33b38f0be2d3d2c3cba665f7e137a83e6e490" + }, + { + "alg": "SHA-256", + "content": "505643b340d236ba8fe6e3bb930640e79ecf6ac15b43513456cb81228c946e23" + } + ] + }, + { + "bom-ref": "7d80d69b68a0554c", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Noninteractive/Text.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "7966daf5c90ef053bd39bb2acaec81b39b429270" + }, + { + "alg": "SHA-256", + "content": "17d40add0e5bf98fdfb6ad5f71f337a04536c57c5b4e663cb6f5308398f27349" + } + ] + }, + { + "bom-ref": "70b899198c10bc52", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Select.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "7f0704abc2be1c497d1c3f3328eb0105e323e97d" + }, + { + "alg": "SHA-256", + "content": "249a05d5f564db0f40e09c13d79b0a77ab128563a19a1ceee585c3431b844d1e" + } + ] + }, + { + "bom-ref": "17a5924a3b3e1e68", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Teletype/Boolean.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "262d1e1d6ce5e79ea77389fab444abda8e206314" + }, + { + "alg": "SHA-256", + "content": "a97d6deb504426af124f6c1dd8d522a6abd009dbb37fbe0a3e2a284b921ea1f3" + } + ] + }, + { + "bom-ref": "3c7eb0a19b422f29", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Teletype/Error.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "1587e057380f7b1b380caeecc33dc8abedd575a7" + }, + { + "alg": "SHA-256", + "content": "a271b558a75a7617474d93cd77402c339334e84938651ea0a01f7336db09d010" + } + ] + }, + { + "bom-ref": "d11a45136e89d370", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Teletype/Multiselect.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "1a89c9963db442a3ee81e916d682e7e7ee51c17f" + }, + { + "alg": "SHA-256", + "content": "dccdb67e08a4053c00c2395d4178ecf37ce8e64e81c63b4807e1d763ab0d5450" + } + ] + }, + { + "bom-ref": "4c85310a036bbb4b", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Teletype/Note.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "6f347f1ddce1f697e64011301269fa9eeae0210a" + }, + { + "alg": "SHA-256", + "content": "0ea94576f9890a0f5f9a4a59361bd1e0f6153b3ff23b883e6078b2e08063155d" + } + ] + }, + { + "bom-ref": "31012b02cd26f32e", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Teletype/Password.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "019a352fd8884730cf1619c0a911447fb2781d6b" + }, + { + "alg": "SHA-256", + "content": "9c3cc0ef1ccbe6da38b3885610369edef2005a691d043023c27689621e027a39" + } + ] + }, + { + "bom-ref": "79cd6d225078a626", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Teletype/Progress.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "6ba57990c768c5b5360bc16063e8afc3c782b0d4" + }, + { + "alg": "SHA-256", + "content": "63968f89058f1066176e80bc3a4e4ada8f4f24dcf78fc56c722edc7aa12f0f9c" + } + ] + }, + { + "bom-ref": "2a85d172291eb0e1", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Teletype/Select.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "3e0a994b5200a380a28784aad26b48dfd472de6e" + }, + { + "alg": "SHA-256", + "content": "a5749589dee50745a7db1e2c6743788334381461cca018552058183edae81d8c" + } + ] + }, + { + "bom-ref": "056284765c58cfe7", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Teletype/String.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "b9070ee1b4486a772e967b8684a6a24131f04012" + }, + { + "alg": "SHA-256", + "content": "9bbe2c52e9629b135b888fe81fdcaf9eb1280076df252bb86292ba904aad8a1c" + } + ] + }, + { + "bom-ref": "701e77531befc566", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Teletype/Text.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "1de79733ccc2cdb968361110492ae77b35f128f4" + }, + { + "alg": "SHA-256", + "content": "f61a5ec96a09bf7671dadd87281a75622df7043b2736d788af6767f6827bcbba" + } + ] + }, + { + "bom-ref": "eeaac639730d0dc2", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Web/Boolean.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "9a4c41c34cb2a534ebf048172b355650e3af3597" + }, + { + "alg": "SHA-256", + "content": "e74c742b01709c060bd24a58f960c03cbe688a818919037295d6222f8c3165ee" + } + ] + }, + { + "bom-ref": "646650a072ff7c5f", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Web/Error.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "083e19175f027c9437a1282c923f336e3cf06357" + }, + { + "alg": "SHA-256", + "content": "1699c8211d030d2d67fcfaafd5e30867d2661c21dad41c574dec2d88bd96ebc6" + } + ] + }, + { + "bom-ref": "d948f3ec730cf5ec", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Web/Multiselect.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "59108a76dfd01df30a0df1e859b63e30eaf54f45" + }, + { + "alg": "SHA-256", + "content": "367f3dce72c5bb9e40587416570903867824a063eb04319b6d57afdce1039d01" + } + ] + }, + { + "bom-ref": "e1edf0c18cb6c2cb", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Web/Note.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "e47edd2095db13c0bf9252de07eb7573efe6de9e" + }, + { + "alg": "SHA-256", + "content": "6654230ab4dc25692f22f7eae0798896067c2f5471ceabc4bbfdfa63258970aa" + } + ] + }, + { + "bom-ref": "a8a06af36f0cb4e6", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Web/Password.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "08da4571327b05bdc61b6ecf10501ac28edc4798" + }, + { + "alg": "SHA-256", + "content": "aff9175f3d6d46cd1a98d602e670d565c66005bc1e482174ca8ca75b53a40300" + } + ] + }, + { + "bom-ref": "7b4f110a1a58efbf", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Web/Progress.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "9c015e55475ec5964d07819bce69a60fcbb2e594" + }, + { + "alg": "SHA-256", + "content": "430c8365d9c3278fc0375434cc93725f8fa75a5353b072f0f8cfdfe4c7dd4dfc" + } + ] + }, + { + "bom-ref": "42a7f73329cb7639", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Web/Select.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "593e64a2958877338e8c2c5c6bd7ad21e706c23b" + }, + { + "alg": "SHA-256", + "content": "42a7752151c302e29228a17fa3d0fa8bd65dc999025846c013ee580e06d78766" + } + ] + }, + { + "bom-ref": "88738fc89edb4d8f", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Web/String.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "4f81007eb3597bab810402f95d58b42c9fbd0b2e" + }, + { + "alg": "SHA-256", + "content": "3dacc1ab78f01cd9db77d95163cc33fec708f1ba1d3ca10146f5b14c6096def7" + } + ] + }, + { + "bom-ref": "749b952fcd9ada22", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Web/Text.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "ee74023bfe3306485ce0c6ede37ffb6c68818e22" + }, + { + "alg": "SHA-256", + "content": "03e9ea3bda1040086d423f3fbe2ee6cc93f59d90d26b4bf8554ab5c6cdc73885" + } + ] + }, + { + "bom-ref": "0875f8d28d54b26a", + "type": "file", + "name": "/usr/share/perl5/Debconf/Encoding.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "aaf7af5ba0fce8be71737b491010366de840590e" + }, + { + "alg": "SHA-256", + "content": "801fe349da27f9312f3b6c60ea38e44e34bf7fce5138a0a9235b5efd1f7ff7eb" + } + ] + }, + { + "bom-ref": "7b1d2bdf3b67928f", + "type": "file", + "name": "/usr/share/perl5/Debconf/Format.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "782a823865146e2f384097763c26817eaf720313" + }, + { + "alg": "SHA-256", + "content": "5ce727bb1a20759b641ffb8bd6c45176bae65e65f907e237c6dc1f093899b02f" + } + ] + }, + { + "bom-ref": "d6ed59e9e2dca77e", + "type": "file", + "name": "/usr/share/perl5/Debconf/Format/822.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "3ecbb7bf740a5f64c0dcd213a1db57f56792752e" + }, + { + "alg": "SHA-256", + "content": "47bb2e39010d9e051b79bdae364bb5824c663441b05037babae6a634fd4c0fb4" + } + ] + }, + { + "bom-ref": "0ba22a5599ffdc91", + "type": "file", + "name": "/usr/share/perl5/Debconf/FrontEnd.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "072272f571560e29c81883230c559f6d2c9bacb2" + }, + { + "alg": "SHA-256", + "content": "e7a545c137bb45bfc70dc75f6f14f2246219a4cf9a60344bff9dcf04b1e25b33" + } + ] + }, + { + "bom-ref": "4ca64bf9d7ec3b79", + "type": "file", + "name": "/usr/share/perl5/Debconf/FrontEnd/Dialog.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "a1f645fee57432b970658d3381d4aac1912468fb" + }, + { + "alg": "SHA-256", + "content": "954d3f0c3b3d84a54b449d4f186136dd2c5dc30943c364aee625728171712e34" + } + ] + }, + { + "bom-ref": "6ec8432299c02ecc", + "type": "file", + "name": "/usr/share/perl5/Debconf/FrontEnd/Editor.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "8867c9cb644986bcd98881d8db0e4875febd2700" + }, + { + "alg": "SHA-256", + "content": "24b3da6ed94ce2682a51501683188675dbb50d4b154496e875ef1488c391711c" + } + ] + }, + { + "bom-ref": "75663e87dcd5a741", + "type": "file", + "name": "/usr/share/perl5/Debconf/FrontEnd/Gnome.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "d197214d7b7d65059b88d1f42164acf8bde7d8f0" + }, + { + "alg": "SHA-256", + "content": "0bcbe1bc51af79f25aa3c2de2427cd27936c5e1aff04ffb45b6dc4cd92d58de7" + } + ] + }, + { + "bom-ref": "3739daafceda2e3e", + "type": "file", + "name": "/usr/share/perl5/Debconf/FrontEnd/Kde.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "2975e47a9629d4eabac23597796d5ba0dc1afcdf" + }, + { + "alg": "SHA-256", + "content": "af31800eed184035c7cb762fdeff4ecf77d76b37fe433836cfed540c38dacccd" + } + ] + }, + { + "bom-ref": "04d080ffb97799e4", + "type": "file", + "name": "/usr/share/perl5/Debconf/FrontEnd/Noninteractive.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "9e11bd3808a207003cdec8e703aa56edee1b32c5" + }, + { + "alg": "SHA-256", + "content": "1604a04e4c2ddebc03659bef3bfe94a1f97330ca8e4ea88b036b10ca509308e5" + } + ] + }, + { + "bom-ref": "287628a28241dad4", + "type": "file", + "name": "/usr/share/perl5/Debconf/FrontEnd/Passthrough.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "ad4d4b4a6af80c1cedb84e1ce8b432cadaa4de06" + }, + { + "alg": "SHA-256", + "content": "ef86bb94c07c56f825585a680e65bdfe5f5f2cf6abc31903643945e1fa949cf2" + } + ] + }, + { + "bom-ref": "6945b48d2834f61d", + "type": "file", + "name": "/usr/share/perl5/Debconf/FrontEnd/Readline.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "69be3ca5d8337a93e84f53c8144d1273b2912038" + }, + { + "alg": "SHA-256", + "content": "de513abc3901f8244dc3cee1f84ccbeb817f7c3594167c9d3d52c074ea586d81" + } + ] + }, + { + "bom-ref": "ee0539ee126555e1", + "type": "file", + "name": "/usr/share/perl5/Debconf/FrontEnd/ScreenSize.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "3bd174fcc0ca463728ae0e23c6baa8f5506e6d98" + }, + { + "alg": "SHA-256", + "content": "abd4a309996b0f8798df81bd51d881fa014b66ebbd0d626220884aee2868922e" + } + ] + }, + { + "bom-ref": "b66cd756f1849af6", + "type": "file", + "name": "/usr/share/perl5/Debconf/FrontEnd/Teletype.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "848bcaf68f651358ef30a5f7c12797f120f0cc04" + }, + { + "alg": "SHA-256", + "content": "e01ec0a98b14a8092dda1656e66248212dc4f164248f4058178e2964e5b72928" + } + ] + }, + { + "bom-ref": "947c0defc928f32f", + "type": "file", + "name": "/usr/share/perl5/Debconf/FrontEnd/Text.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "5e0301a2ab3ee5b130a8164c1656fadf06895b56" + }, + { + "alg": "SHA-256", + "content": "cf4595fb746e12a9c0a43cd6806aec7d45523aa71b2bf9d98328d8c713c8470b" + } + ] + }, + { + "bom-ref": "636209252737af75", + "type": "file", + "name": "/usr/share/perl5/Debconf/FrontEnd/Web.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "910c2bd665c4bd6323abbaaffc57e9e3928f8989" + }, + { + "alg": "SHA-256", + "content": "ca7b97f7c6ecd207e6b161a89a0d42e5e547c81206b09c430b9a4ac1f0b9f847" + } + ] + }, + { + "bom-ref": "0d53aa8556a6b27c", + "type": "file", + "name": "/usr/share/perl5/Debconf/Gettext.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "59ea6fc7709c4fbdfc636472dc24a19f86bdec0c" + }, + { + "alg": "SHA-256", + "content": "a88fa616d014b4668aa0acddd4b62c6f16f23ca4d770f74c42a465bccd757ddf" + } + ] + }, + { + "bom-ref": "c83636cfaa7d3ba2", + "type": "file", + "name": "/usr/share/perl5/Debconf/Iterator.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "79ee9180377943905e2135efb0403b7dc5f71e94" + }, + { + "alg": "SHA-256", + "content": "25e26945b7cd46f0807fc71e4aa0187668d883f9068076356ec4fc3515d58b15" + } + ] + }, + { + "bom-ref": "d98fc5c3535b2c68", + "type": "file", + "name": "/usr/share/perl5/Debconf/Log.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "995335798836a14f29ea0a05c749e466ef8853f4" + }, + { + "alg": "SHA-256", + "content": "295705788c02bc5ecab17acab91e8bca411c88a5ec5404b64ea1bf85f408d98a" + } + ] + }, + { + "bom-ref": "5d468c881c298b42", + "type": "file", + "name": "/usr/share/perl5/Debconf/Path.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "d34d4806a30eb72fd8995df70d17ffcde736baf7" + }, + { + "alg": "SHA-256", + "content": "028380a22abab29ad18b0f4411bb3f1a1f3bf192f139ae61121393cebf5acc6e" + } + ] + }, + { + "bom-ref": "ce0629fefe17ae96", + "type": "file", + "name": "/usr/share/perl5/Debconf/Priority.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "dbae40c9239cb9980b80522a30043a875ffcb31a" + }, + { + "alg": "SHA-256", + "content": "bf398f78a07d12eb8aee3fb782ffd002f311027279d076eaa6fffd0de11ce0d1" + } + ] + }, + { + "bom-ref": "10dc84124e22483a", + "type": "file", + "name": "/usr/share/perl5/Debconf/Question.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "10ee6cce8d922f84fa6e25c1374c98018b3ee010" + }, + { + "alg": "SHA-256", + "content": "457f0d6a12d8dc4ab1fc109b5c54c423a703184630b50e49abfd3b2cbba2e640" + } + ] + }, + { + "bom-ref": "f7500d5575c13ebc", + "type": "file", + "name": "/usr/share/perl5/Debconf/Template.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "46316168279ab0c1f2fe4744f0ab1b5181283bb1" + }, + { + "alg": "SHA-256", + "content": "4ee3d67fccb651ed7bca60a48bd85758e3a177fdda3167a5209f1513379eb6ac" + } + ] + }, + { + "bom-ref": "d70fbb9aadc898da", + "type": "file", + "name": "/usr/share/perl5/Debconf/Template/Transient.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "408fd328862f731c8a8d60bc3da2a50c83efe8bc" + }, + { + "alg": "SHA-256", + "content": "3a0e780834bf3c643f32931ad4fe02b3447343b1a54def72f03e15823e6723ae" + } + ] + }, + { + "bom-ref": "2ad4196ade112006", + "type": "file", + "name": "/usr/share/perl5/Debconf/TmpFile.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "101fb9b4e0870e0c9309aa7c2a1b83be4ee27bc7" + }, + { + "alg": "SHA-256", + "content": "01a27c6a5acbf11d145efb8341e0328892a0c00db0526ad522a8c2165e4e01f6" + } + ] + }, + { + "bom-ref": "e2d6e2e92aac8c1e", + "type": "file", + "name": "/usr/share/perl5/Debian/AdduserCommon.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "83e9c48c9b8a5a0c7e2f2831191828f98d57304d" + }, + { + "alg": "SHA-256", + "content": "94551d94231a98889d4fe7559c990cd5b26abf14c53a5ed8d072287e66b637d1" + } + ] + }, + { + "bom-ref": "535060592141d2fc", + "type": "file", + "name": "/usr/share/perl5/Debian/DebConf/Client/ConfModule.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "11fdd2f4192753536cbf74cae4fad5859eb168a0" + }, + { + "alg": "SHA-256", + "content": "18613eb5076afb75cd5cd97811c465b78533ab566d482023c9f3379f4f7fe7a0" + } + ] + }, + { + "bom-ref": "31bbf287ce9a859f", + "type": "file", + "name": "/usr/share/pixmaps/debian-logo.png", + "hashes": [ + { + "alg": "SHA-1", + "content": "164ea613e4f6a6b6a146ecfb2da202fb3111f62b" + }, + { + "alg": "SHA-256", + "content": "429c611b72d40aaf52281b6b3033c4631cdee1c4a88c17ae999244dc2245ab65" + } + ] + }, + { + "bom-ref": "0f5ac55fda00ac9d", + "type": "file", + "name": "/usr/share/polkit-1/actions/org.dpkg.pkexec.update-alternatives.policy", + "hashes": [ + { + "alg": "SHA-1", + "content": "55c15545fd19b64be03f5819c95c2d8f1fc7436e" + }, + { + "alg": "SHA-256", + "content": "6e63b446c50efe364d96b17941c8daef12f2e66a326eedb287986fa8457ef877" + } + ] + }, + { + "bom-ref": "bb2c782a66f55208", + "type": "file", + "name": "/usr/share/tabset/std", + "hashes": [ + { + "alg": "SHA-1", + "content": "0969b2c95d9430c81b0d4b05d81146a6cced5f31" + }, + { + "alg": "SHA-256", + "content": "fbadb5f608b355fe481c0c7d9c6265b2372bfa35250662f81f68d46540080770" + } + ] + }, + { + "bom-ref": "266218b6b52d4191", + "type": "file", + "name": "/usr/share/tabset/stdcrt", + "hashes": [ + { + "alg": "SHA-1", + "content": "e1fae2fc4bba672fc26554780be21d74106a064b" + }, + { + "alg": "SHA-256", + "content": "cf6c37b18ceea7c306f7e3a5e604a03b0dfb9c22ec99163e4b52f885ce063145" + } + ] + }, + { + "bom-ref": "4c301fd6ccb0a819", + "type": "file", + "name": "/usr/share/tabset/vt100", + "hashes": [ + { + "alg": "SHA-1", + "content": "b84fb01263cd003588e9a164e80bd0b8ea2e56b5" + }, + { + "alg": "SHA-256", + "content": "075251754239d9973945d82b95c18cd90997acd2017393e70c8832e9297de056" + } + ] + }, + { + "bom-ref": "02ead6d96505d492", + "type": "file", + "name": "/usr/share/tabset/vt300", + "hashes": [ + { + "alg": "SHA-1", + "content": "5246984995036718d05516acefc59c8bbd17b3ce" + }, + { + "alg": "SHA-256", + "content": "61f8388cad6a381feb819bc6a8d299d06a853d15e1f4bfdfd6b6f40069ad4956" + } + ] + }, + { + "bom-ref": "515a2234fa4502fd", + "type": "file", + "name": "/usr/share/zoneinfo/Africa/Abidjan", + "hashes": [ + { + "alg": "SHA-1", + "content": "2761dd20ffe255714f9005b59407db9bc75b5f08" + }, + { + "alg": "SHA-256", + "content": "d5ded126df8f693ce1ff83e85aa4d44185c2bdef7da1f915b214f53deffdee47" + } + ] + }, + { + "bom-ref": "fc87250654cd3080", + "type": "file", + "name": "/usr/share/zoneinfo/Africa/Accra", + "hashes": [ + { + "alg": "SHA-1", + "content": "abf8b8bee2d38fa403c83703cbcc1b3dfe3011a6" + }, + { + "alg": "SHA-256", + "content": "382d63af9c6d9ba351a764dc0b2b90cf1b7933489d068397f775e57ec2b3e879" + } + ] + }, + { + "bom-ref": "2c7b368941de05b8", + "type": "file", + "name": "/usr/share/zoneinfo/Africa/Addis_Ababa", + "hashes": [ + { + "alg": "SHA-1", + "content": "3396be7a5f3bd8d2ab7af6a62d95f95b7fb9e58b" + }, + { + "alg": "SHA-256", + "content": "010faad7279f538d056c0d17843b423123ab8de29ba42432eaa745514e59de20" + } + ] + }, + { + "bom-ref": "4628ade86fc3f9f2", + "type": "file", + "name": "/usr/share/zoneinfo/Africa/Algiers", + "hashes": [ + { + "alg": "SHA-1", + "content": "7f956aa470703a90b3ff026f8007a31bda793aa9" + }, + { + "alg": "SHA-256", + "content": "80e523121788b9c011b1c375ab28b167446aa30d3e4596e54b4957a5c988bd06" + } + ] + }, + { + "bom-ref": "2207539e05d5b295", + "type": "file", + "name": "/usr/share/zoneinfo/Africa/Bangui", + "hashes": [ + { + "alg": "SHA-1", + "content": "e078d8241d68f71c3fe87f4375d498ded945d19c" + }, + { + "alg": "SHA-256", + "content": "11c1b6f2796a91b26a3779d3b5d81ad862b143e324deda58060fa74c76392563" + } + ] + }, + { + "bom-ref": "c9b83f89da774196", + "type": "file", + "name": "/usr/share/zoneinfo/Africa/Bissau", + "hashes": [ + { + "alg": "SHA-1", + "content": "a79052fafa065a251228c0c001e5dc65ae391096" + }, + { + "alg": "SHA-256", + "content": "8ddad13adc33cdee8eaf55cfa31efcafd79305ae8dfcc3be06ff78299f29f1d8" + } + ] + }, + { + "bom-ref": "c9b4a163cd821b57", + "type": "file", + "name": "/usr/share/zoneinfo/Africa/Blantyre", + "hashes": [ + { + "alg": "SHA-1", + "content": "2f6afbdba37f364f0eca9ffe905d0abbcde401d3" + }, + { + "alg": "SHA-256", + "content": "3d7e6d17cabdaa1814a56dddec02687e1087bc3334fe920ad268a892bf080511" + } + ] + }, + { + "bom-ref": "333736512c336eb0", + "type": "file", + "name": "/usr/share/zoneinfo/Africa/Casablanca", + "hashes": [ + { + "alg": "SHA-1", + "content": "a85292f6af795954480c87b6edfa8c1b40b9d2e2" + }, + { + "alg": "SHA-256", + "content": "2b7a7b77743d1ae6779591fbe01fbb39042cff06cbaf4a9e2d05de77a3ab73bb" + } + ] + }, + { + "bom-ref": "173df6b8c2e6b6d6", + "type": "file", + "name": "/usr/share/zoneinfo/Africa/Ceuta", + "hashes": [ + { + "alg": "SHA-1", + "content": "80550c17972d6ebb0f1a25c557f8a5a2917b0d2e" + }, + { + "alg": "SHA-256", + "content": "387d2c354117fe2a22f6f3b429e4193a331d3e93d7007a55c50b3b9eedee63de" + } + ] + }, + { + "bom-ref": "9c6dea0637bf56a1", + "type": "file", + "name": "/usr/share/zoneinfo/Africa/El_Aaiun", + "hashes": [ + { + "alg": "SHA-1", + "content": "a19dce22d4a4bc1b72ff87324ad90217fed6aecb" + }, + { + "alg": "SHA-256", + "content": "cf993587fac56e670c1f8f70a72e5c5c0adfe97d3cabab512dc75046f56fea94" + } + ] + }, + { + "bom-ref": "bd2c906d4411b596", + "type": "file", + "name": "/usr/share/zoneinfo/Africa/Johannesburg", + "hashes": [ + { + "alg": "SHA-1", + "content": "50802275b65126faf8b763a47d7c22112a39648e" + }, + { + "alg": "SHA-256", + "content": "fcec4247091905d88a0b869e8e5c7ee6bcfba7db6c310165baa95078b0be31af" + } + ] + }, + { + "bom-ref": "3cd6a9ed29cd7045", + "type": "file", + "name": "/usr/share/zoneinfo/Africa/Juba", + "hashes": [ + { + "alg": "SHA-1", + "content": "2fb0e4738086360089061d685e4190cc83165a16" + }, + { + "alg": "SHA-256", + "content": "b4c8d41efe33e187a39a9640e67320b2b6f396c37a5d1ca7b42f30c23ccf960e" + } + ] + }, + { + "bom-ref": "c87bf4dbb14f1721", + "type": "file", + "name": "/usr/share/zoneinfo/Africa/Khartoum", + "hashes": [ + { + "alg": "SHA-1", + "content": "5bb911b4318e21a1534207657bbc8e61fa16d856" + }, + { + "alg": "SHA-256", + "content": "5256a96f78382e82db80ad8591240c3886fc58f9a83fe94506e3a192fbcf2f4e" + } + ] + }, + { + "bom-ref": "971abe185fbba4f9", + "type": "file", + "name": "/usr/share/zoneinfo/Africa/Monrovia", + "hashes": [ + { + "alg": "SHA-1", + "content": "aed4c9626b74960c1e976f3f8d97c81ba76668f8" + }, + { + "alg": "SHA-256", + "content": "3f9672c98983af595b3c6274cf8135728c8815a4f9c98ffba043707609e5d122" + } + ] + }, + { + "bom-ref": "1c9e966579ca75e3", + "type": "file", + "name": "/usr/share/zoneinfo/Africa/Ndjamena", + "hashes": [ + { + "alg": "SHA-1", + "content": "9ee39466dfe171c6df83f53cff9eb85932d365a3" + }, + { + "alg": "SHA-256", + "content": "b1391c8edd23b3f73e0bfacf8b878801c58206ca42349c30b22fcb7e8d13de3a" + } + ] + }, + { + "bom-ref": "fa72997ca7bbc52d", + "type": "file", + "name": "/usr/share/zoneinfo/Africa/Sao_Tome", + "hashes": [ + { + "alg": "SHA-1", + "content": "588334c31eb301cb045bece4395503caced8e6b7" + }, + { + "alg": "SHA-256", + "content": "1c04b1866beb73b69104997850cce075376d62716f8d01156e796d878b160545" + } + ] + }, + { + "bom-ref": "dcc15122ff6e3ab1", + "type": "file", + "name": "/usr/share/zoneinfo/Africa/Tunis", + "hashes": [ + { + "alg": "SHA-1", + "content": "e0e395375053b9eff061c9aec6444acaece15351" + }, + { + "alg": "SHA-256", + "content": "eecc34436d1dd96c49d6b671ed61bc594548d280a967537a9653841b537a9a92" + } + ] + }, + { + "bom-ref": "5c8d7264a92a23e1", + "type": "file", + "name": "/usr/share/zoneinfo/Africa/Windhoek", + "hashes": [ + { + "alg": "SHA-1", + "content": "600c6e60dc2c8247493d7b77125c06c5bbbf61de" + }, + { + "alg": "SHA-256", + "content": "f6d37353c3cf02bb1b950cdc1cc024e9849a374532a8f7e4ee0bb00bdd4b6ab1" + } + ] + }, + { + "bom-ref": "3c6d601c26643339", + "type": "file", + "name": "/usr/share/zoneinfo/America/Adak", + "hashes": [ + { + "alg": "SHA-1", + "content": "bf488900e8f61278e9b4e0a0acb1715f0923e269" + }, + { + "alg": "SHA-256", + "content": "c45c94d316413c8f666aff65ed1f837a7e2d392262de31ce59fac2e96a1edc81" + } + ] + }, + { + "bom-ref": "8dccdffe222c67b5", + "type": "file", + "name": "/usr/share/zoneinfo/America/Anchorage", + "hashes": [ + { + "alg": "SHA-1", + "content": "0b94eba3b05525a45a3d95848ca71c3996274e22" + }, + { + "alg": "SHA-256", + "content": "f5df0a6f7f9d43cbbd3e74d33a23fe686080eb55965f5d9246b6e859b3db9d18" + } + ] + }, + { + "bom-ref": "a34be61e8b4fc492", + "type": "file", + "name": "/usr/share/zoneinfo/America/Anguilla", + "hashes": [ + { + "alg": "SHA-1", + "content": "0fa20e8413a337c1d603389fb46484f1cfa5d71e" + }, + { + "alg": "SHA-256", + "content": "b2659c267f7555c0640505660234cbe0d7feead3a5e29f41272e28a1d7d18962" + } + ] + }, + { + "bom-ref": "535e2ac4ea8ae9d3", + "type": "file", + "name": "/usr/share/zoneinfo/America/Araguaina", + "hashes": [ + { + "alg": "SHA-1", + "content": "b3076e49bce6515d37df19b1e19e7820777dcfd3" + }, + { + "alg": "SHA-256", + "content": "fb7fe2d06e8ee5c5d9a8a568c8cb37efbb0086824f38d1bc4d8505f963b5970d" + } + ] + }, + { + "bom-ref": "f3d34ed51b7b8a7f", + "type": "file", + "name": "/usr/share/zoneinfo/America/Argentina/La_Rioja", + "hashes": [ + { + "alg": "SHA-1", + "content": "b3007950b298abb368a5ee5f824db100e51990ff" + }, + { + "alg": "SHA-256", + "content": "edc82d9225b8ae3ca911eab14f8201a8916928cfab233e182f807e715cf18435" + } + ] + }, + { + "bom-ref": "c4692d01bd3c4f48", + "type": "file", + "name": "/usr/share/zoneinfo/America/Argentina/Rio_Gallegos", + "hashes": [ + { + "alg": "SHA-1", + "content": "2be81c5a3a0236c75db8aff78c5de9798b2299c8" + }, + { + "alg": "SHA-256", + "content": "f762067b25cc7e6141b06a6eae77764caccccbfe8716f1370c33e169ec2e1723" + } + ] + }, + { + "bom-ref": "034c10fbbafb60d5", + "type": "file", + "name": "/usr/share/zoneinfo/America/Argentina/Salta", + "hashes": [ + { + "alg": "SHA-1", + "content": "888c5ecc4dee02cdf074192ab776f3cea0b12c34" + }, + { + "alg": "SHA-256", + "content": "1deede9c14ed0b4dc6e5a40110c7056083c8fed557b84aadc0fa2a045411e560" + } + ] + }, + { + "bom-ref": "c68976662fbf350e", + "type": "file", + "name": "/usr/share/zoneinfo/America/Argentina/San_Juan", + "hashes": [ + { + "alg": "SHA-1", + "content": "95ec23a249f9ba72ac72a073de70dbc746badca7" + }, + { + "alg": "SHA-256", + "content": "100c000b03b9a0e19c778d9e81ad8e5c2c34db4b7da24c55d67c0ad8050a67c5" + } + ] + }, + { + "bom-ref": "79601ca86db8e766", + "type": "file", + "name": "/usr/share/zoneinfo/America/Argentina/San_Luis", + "hashes": [ + { + "alg": "SHA-1", + "content": "68c574db8d0f14268b6402da8669920fb3bbcbdc" + }, + { + "alg": "SHA-256", + "content": "ab15b1141b87b1381e5cad386fc374b5a9a2ca922504da5b848074fab91e9abc" + } + ] + }, + { + "bom-ref": "ae9ce9b86edcb804", + "type": "file", + "name": "/usr/share/zoneinfo/America/Argentina/Tucuman", + "hashes": [ + { + "alg": "SHA-1", + "content": "e04515ab8b71eeb874eb28492d8e441bf5adb0f7" + }, + { + "alg": "SHA-256", + "content": "6a623bbcd2144f1e43892777084bde4e2613ae6f22bf92dedf6e1dc6e68248b3" + } + ] + }, + { + "bom-ref": "5cc98e057ac41930", + "type": "file", + "name": "/usr/share/zoneinfo/America/Argentina/Ushuaia", + "hashes": [ + { + "alg": "SHA-1", + "content": "e0417294a56ad2adf5ab8b1823f28004cee6955b" + }, + { + "alg": "SHA-256", + "content": "02f9a96426823c7bf25ff15a1f241069e2cb15969d48d0c6cc31aad13a7d0f49" + } + ] + }, + { + "bom-ref": "734bb106c773b327", + "type": "file", + "name": "/usr/share/zoneinfo/America/Aruba", + "hashes": [ + { + "alg": "SHA-1", + "content": "b1a1b54c10a8add3cc0cfe981de532763c906673" + }, + { + "alg": "SHA-256", + "content": "023d877932f35d889772f561f79e266c8541b984e0ce2bd257723aafc7d883c1" + } + ] + }, + { + "bom-ref": "b4d89197adb6fc66", + "type": "file", + "name": "/usr/share/zoneinfo/America/Asuncion", + "hashes": [ + { + "alg": "SHA-1", + "content": "3eb693904c60c9a27732a7251fa98c5c7477e3fa" + }, + { + "alg": "SHA-256", + "content": "1e29f7cdc530419ad31e4afc8fc2adf40d9577f55e2174a3a82358a027780ca2" + } + ] + }, + { + "bom-ref": "4c98820dd0ae5871", + "type": "file", + "name": "/usr/share/zoneinfo/America/Atikokan", + "hashes": [ + { + "alg": "SHA-1", + "content": "71491e34457361fb0d53de48c8c617e625949bf6" + }, + { + "alg": "SHA-256", + "content": "c30226b472b507b5a30b69557d56f24fcc8e9467110e4d3ec15c2c51de5d245c" + } + ] + }, + { + "bom-ref": "6c547f4193cddd8c", + "type": "file", + "name": "/usr/share/zoneinfo/America/Bahia", + "hashes": [ + { + "alg": "SHA-1", + "content": "50adfb46d2c7e3c941c0eef64d0db232b23cad52" + }, + { + "alg": "SHA-256", + "content": "2e1c1b5e2579e15a623bfd3774db703a49b937790e68b44a6b99a308c6ecba66" + } + ] + }, + { + "bom-ref": "c11bc140b4859992", + "type": "file", + "name": "/usr/share/zoneinfo/America/Bahia_Banderas", + "hashes": [ + { + "alg": "SHA-1", + "content": "458df0252aa57110ed4c8b0e7fec2d3fa1dd4979" + }, + { + "alg": "SHA-256", + "content": "9d0e0d9f6168635a5f98550a170d423854ff5b662ce0d874c3cba77199bf1cbd" + } + ] + }, + { + "bom-ref": "9ea03d214bd7b0dd", + "type": "file", + "name": "/usr/share/zoneinfo/America/Barbados", + "hashes": [ + { + "alg": "SHA-1", + "content": "521ea82e07f12a271237dd8bd592d11acd96b9c6" + }, + { + "alg": "SHA-256", + "content": "9b1a7857a01ae2a3ae9a51e0b40cfbed91bac468579ed3c08b54466276bbb1fa" + } + ] + }, + { + "bom-ref": "77ae49791085f568", + "type": "file", + "name": "/usr/share/zoneinfo/America/Belem", + "hashes": [ + { + "alg": "SHA-1", + "content": "b75b5d3bc094676a4ffb075049355109a6a8c3aa" + }, + { + "alg": "SHA-256", + "content": "84749f6075de59dc62bd69343194806cfd552641b912a6f8e96c83c99914a187" + } + ] + }, + { + "bom-ref": "d79f0828965ca421", + "type": "file", + "name": "/usr/share/zoneinfo/America/Belize", + "hashes": [ + { + "alg": "SHA-1", + "content": "6c1bf18ff8c6088e847c3d9bc11571e8288ffe71" + }, + { + "alg": "SHA-256", + "content": "dec5c63068e5ad99b53be62bb22eea068c8fb7782042dd3829be2424c5cf3c3c" + } + ] + }, + { + "bom-ref": "42a22a4333112fb7", + "type": "file", + "name": "/usr/share/zoneinfo/America/Blanc-Sablon", + "hashes": [ + { + "alg": "SHA-1", + "content": "66a2fee5e66c5cec095bf435b72bcd645b3f5703" + }, + { + "alg": "SHA-256", + "content": "c7d383bfb7e85331030f8091a9055a5f424e3674407ca0c76cce06b5a0316fdb" + } + ] + }, + { + "bom-ref": "70f56a114e7c2e96", + "type": "file", + "name": "/usr/share/zoneinfo/America/Boa_Vista", + "hashes": [ + { + "alg": "SHA-1", + "content": "fd57654adfaf9c9c1742b8c055bf38da9122a0ca" + }, + { + "alg": "SHA-256", + "content": "c57a63f22280c2c46587414956efc8fcaadc36ed422589b48929dcc7ab4f6680" + } + ] + }, + { + "bom-ref": "4ac921a8fcea13bb", + "type": "file", + "name": "/usr/share/zoneinfo/America/Bogota", + "hashes": [ + { + "alg": "SHA-1", + "content": "3039300336c1a540f03d732faeda9dfce2dfb356" + }, + { + "alg": "SHA-256", + "content": "3611de34f765f2d65ec0593e79c678de36092549898680dc4639b8c68f7137ba" + } + ] + }, + { + "bom-ref": "3db82a2b6de68f40", + "type": "file", + "name": "/usr/share/zoneinfo/America/Boise", + "hashes": [ + { + "alg": "SHA-1", + "content": "1f8cb096410dba57ca0ab7c93874770553628533" + }, + { + "alg": "SHA-256", + "content": "33353ef05ccdda7debe757cf865ee7bd78031f38c6797b8fbfc11f9010f55a10" + } + ] + }, + { + "bom-ref": "ce10b4d81d5081af", + "type": "file", + "name": "/usr/share/zoneinfo/America/Buenos_Aires", + "hashes": [ + { + "alg": "SHA-1", + "content": "d24c701f981fcabfa2aa5a7b0fa5655c7da065fa" + }, + { + "alg": "SHA-256", + "content": "841b9bca947f2acd9adc6cb5c10171204eecec1e46e6042654f355c89debc43f" + } + ] + }, + { + "bom-ref": "a2be458a37a08d66", + "type": "file", + "name": "/usr/share/zoneinfo/America/Cambridge_Bay", + "hashes": [ + { + "alg": "SHA-1", + "content": "5338d502ca9fb08d55b43941f021df4423b8265b" + }, + { + "alg": "SHA-256", + "content": "0aeaed5b104ee99ab13a9f5b5a7aaf7f6c9a7f59bdefd15d3c9951551c7b5f6f" + } + ] + }, + { + "bom-ref": "52c9cb99591ec80b", + "type": "file", + "name": "/usr/share/zoneinfo/America/Campo_Grande", + "hashes": [ + { + "alg": "SHA-1", + "content": "f12d6a93ce42b6c01c5f89f3e52eabb2a034c1aa" + }, + { + "alg": "SHA-256", + "content": "e670b40a7dd3adf79f66ea43382a70e60caee6ffb59ae92c4c9ee081d16259d2" + } + ] + }, + { + "bom-ref": "c0337070add6b57b", + "type": "file", + "name": "/usr/share/zoneinfo/America/Cancun", + "hashes": [ + { + "alg": "SHA-1", + "content": "a4fbe5e13cf390a886f3d4bec8596ed195564d1c" + }, + { + "alg": "SHA-256", + "content": "d22316873f309799c6f97fefb8a0a8897d0df4eb376f84bb0b71602ec240d04f" + } + ] + }, + { + "bom-ref": "4ac59cc3f953d2b0", + "type": "file", + "name": "/usr/share/zoneinfo/America/Caracas", + "hashes": [ + { + "alg": "SHA-1", + "content": "db673a7fafdf27e614cb8d61b45c15e771d85655" + }, + { + "alg": "SHA-256", + "content": "94e8efae88e096d6dd0abda2661d826c004f0c587f97782cb2f911ed7c942f1a" + } + ] + }, + { + "bom-ref": "b270e4c76e05f013", + "type": "file", + "name": "/usr/share/zoneinfo/America/Catamarca", + "hashes": [ + { + "alg": "SHA-1", + "content": "2e5938d213dc0e815cc04934d1cf4d0f9ce7b63a" + }, + { + "alg": "SHA-256", + "content": "e844a8f34c71c2d04bfdac6b11e913b5f20ea9fddb5d145433d0831087f1c5d6" + } + ] + }, + { + "bom-ref": "70397f731e53caa5", + "type": "file", + "name": "/usr/share/zoneinfo/America/Cayenne", + "hashes": [ + { + "alg": "SHA-1", + "content": "54da1196e5ae621c56255596ea45e73585bc4cec" + }, + { + "alg": "SHA-256", + "content": "af8de87447f7093759a595cc3d403e5fa7b51fc3520959c4da54956ffbac856a" + } + ] + }, + { + "bom-ref": "a49574c046796162", + "type": "file", + "name": "/usr/share/zoneinfo/America/Cayman", + "hashes": [ + { + "alg": "SHA-1", + "content": "73f1a382a74f1b2299f385699e7ce9feabdeb03a" + }, + { + "alg": "SHA-256", + "content": "fc4fbba14653a3186f3c5b719f7b9bf7d8a5824401064cf6d508205592e55a9f" + } + ] + }, + { + "bom-ref": "b0f2e486a5db8b72", + "type": "file", + "name": "/usr/share/zoneinfo/America/Chicago", + "hashes": [ + { + "alg": "SHA-1", + "content": "9c757e7e753439aa21384dfbb42401067ff2831b" + }, + { + "alg": "SHA-256", + "content": "143f29b957173a46008187230a38125bd3a03b3dbcba0dc1d1b8661331f71693" + } + ] + }, + { + "bom-ref": "60a305cc87591b42", + "type": "file", + "name": "/usr/share/zoneinfo/America/Chihuahua", + "hashes": [ + { + "alg": "SHA-1", + "content": "9e513e6a2f898d015fb3f3a702c1e4f852a0b886" + }, + { + "alg": "SHA-256", + "content": "a7d150e716db5b1c96bb0e50252b80306e1d9e8bcc2bf90a3ae7071906e71513" + } + ] + }, + { + "bom-ref": "12526439d1747a6a", + "type": "file", + "name": "/usr/share/zoneinfo/America/Cordoba", + "hashes": [ + { + "alg": "SHA-1", + "content": "756fb0415446127d1c2ebbe2fcbb75ce3995334c" + }, + { + "alg": "SHA-256", + "content": "254a30f9b9b00558350d0c1f40a1d9c8738045bb7fe88e56c81bbb9fbd161026" + } + ] + }, + { + "bom-ref": "287f0d656702480c", + "type": "file", + "name": "/usr/share/zoneinfo/America/Costa_Rica", + "hashes": [ + { + "alg": "SHA-1", + "content": "65eaee26f1178ff3ffb2bba735c1432d43f255e8" + }, + { + "alg": "SHA-256", + "content": "4e6ff29a776e053226bf590ebe734896f9150d69074f22a16a1c7199a1484ec5" + } + ] + }, + { + "bom-ref": "7c66b7bf46c528a8", + "type": "file", + "name": "/usr/share/zoneinfo/America/Creston", + "hashes": [ + { + "alg": "SHA-1", + "content": "27c5e7e651cf3d8e609d3bb1e1780c0f8be44f27" + }, + { + "alg": "SHA-256", + "content": "97b74beec3714be518219f24533cc21edf9b53d01f4ab792a6fe0f88973449eb" + } + ] + }, + { + "bom-ref": "da22001788e91caf", + "type": "file", + "name": "/usr/share/zoneinfo/America/Cuiaba", + "hashes": [ + { + "alg": "SHA-1", + "content": "832438b3e483d7154ae419dc7c22ca7855ce4e40" + }, + { + "alg": "SHA-256", + "content": "309f877286fad7d01fbbae6bb1a64e23227688e1687a90b6ce67faaef5b0cb67" + } + ] + }, + { + "bom-ref": "d5995008e00ac36e", + "type": "file", + "name": "/usr/share/zoneinfo/America/Danmarkshavn", + "hashes": [ + { + "alg": "SHA-1", + "content": "4ecc592cd923d7cbe06961af9f31545916ad9c26" + }, + { + "alg": "SHA-256", + "content": "087e39cd6f10b6944b68b1de557289ef33769467f1b29806b96a16cf8e438e6e" + } + ] + }, + { + "bom-ref": "d95ad83750d59ffe", + "type": "file", + "name": "/usr/share/zoneinfo/America/Dawson", + "hashes": [ + { + "alg": "SHA-1", + "content": "4abb7005efddaf48260e79063982a20bd179ed3b" + }, + { + "alg": "SHA-256", + "content": "e8f52ccbfc01ab99e46f66fcb8e2e5e46b3239a6a6f7bfdc2279f6dc3fb10013" + } + ] + }, + { + "bom-ref": "09fa582874c83baf", + "type": "file", + "name": "/usr/share/zoneinfo/America/Dawson_Creek", + "hashes": [ + { + "alg": "SHA-1", + "content": "766d212da5f33609b8509a006084174c31f62228" + }, + { + "alg": "SHA-256", + "content": "29d0245bc04dadcbb196a3b6a81bace1696451166a7417d5bb2a8610f37ec5ba" + } + ] + }, + { + "bom-ref": "325613d8d02199ca", + "type": "file", + "name": "/usr/share/zoneinfo/America/Detroit", + "hashes": [ + { + "alg": "SHA-1", + "content": "a62154cb793804dc3199ee66d5cef8f50ed4e478" + }, + { + "alg": "SHA-256", + "content": "e668e3859786c92f462769f87d5bc4ef31b5d6646bbd1635b91007e2a03dbc6c" + } + ] + }, + { + "bom-ref": "c1816e43acca74a7", + "type": "file", + "name": "/usr/share/zoneinfo/America/Edmonton", + "hashes": [ + { + "alg": "SHA-1", + "content": "e7d76dfdb07759b945aa19ae6723844d3974b904" + }, + { + "alg": "SHA-256", + "content": "92ac6208f1ef357787fcfce6a334990252189eb0b427b28bc60e21ab5e792b3c" + } + ] + }, + { + "bom-ref": "ecaff1961530ce8b", + "type": "file", + "name": "/usr/share/zoneinfo/America/Eirunepe", + "hashes": [ + { + "alg": "SHA-1", + "content": "09ee8af38d9a7a75755fcd91c76a08a410ba7bda" + }, + { + "alg": "SHA-256", + "content": "07761278f5c58867c645625c9b819ea09e4703d76564e231979e48d6d2e0881a" + } + ] + }, + { + "bom-ref": "e635e540eaafa3a7", + "type": "file", + "name": "/usr/share/zoneinfo/America/El_Salvador", + "hashes": [ + { + "alg": "SHA-1", + "content": "892b21f94039cfe4b56b36c9ba5c173c2801678e" + }, + { + "alg": "SHA-256", + "content": "63215b213a31505bfd545fd52b11214cb614f13f0f55911f414edb44286e7f8a" + } + ] + }, + { + "bom-ref": "1895489fb07f3fa3", + "type": "file", + "name": "/usr/share/zoneinfo/America/Ensenada", + "hashes": [ + { + "alg": "SHA-1", + "content": "10ef18acecef25f6884428c5f32b874efe62c159" + }, + { + "alg": "SHA-256", + "content": "d827b95b4fa16b8c56d9a1636341c9112657e567ae84b37a9bfca133ae31babb" + } + ] + }, + { + "bom-ref": "4c47dc0f7bbae37b", + "type": "file", + "name": "/usr/share/zoneinfo/America/Fort_Nelson", + "hashes": [ + { + "alg": "SHA-1", + "content": "483f23913b25d359a8ba5bcc87611f916f8537ad" + }, + { + "alg": "SHA-256", + "content": "e7ce9a01cdd313d20352112430341c262e1b90182de490fc95c132daac118ce7" + } + ] + }, + { + "bom-ref": "ee6c8c4b9d86a3b0", + "type": "file", + "name": "/usr/share/zoneinfo/America/Fort_Wayne", + "hashes": [ + { + "alg": "SHA-1", + "content": "d822888ba3588c0509ec806a03197c53097ba742" + }, + { + "alg": "SHA-256", + "content": "55c2f3feb241f88435e9876e76e2c69ddfd0dfd36a273b551ff480e2cfad99fe" + } + ] + }, + { + "bom-ref": "2ac3f980e4d0700d", + "type": "file", + "name": "/usr/share/zoneinfo/America/Fortaleza", + "hashes": [ + { + "alg": "SHA-1", + "content": "d37e06512abc08a885320aa83243fbdd342cf821" + }, + { + "alg": "SHA-256", + "content": "ca3cd6cdd4ec5f945742cd72a91e539756e0ad2eac3dfa62afc21397061eea99" + } + ] + }, + { + "bom-ref": "a93756599c40618b", + "type": "file", + "name": "/usr/share/zoneinfo/America/Glace_Bay", + "hashes": [ + { + "alg": "SHA-1", + "content": "6c4af69874ce85dca30a2a27cd2f24aead45f624" + }, + { + "alg": "SHA-256", + "content": "e6af24e3b9f1240abb8618fac326ee3a1ecccd25d2fa4936b2a28b0b0880e550" + } + ] + }, + { + "bom-ref": "cbc81a2e297507e3", + "type": "file", + "name": "/usr/share/zoneinfo/America/Godthab", + "hashes": [ + { + "alg": "SHA-1", + "content": "888e7e4d9b26898829fc3cd10686a9f53eb95d87" + }, + { + "alg": "SHA-256", + "content": "356cd2d4e74c958622b77385ae0509b5ea87e691f21207230f6fe1fa67e220af" + } + ] + }, + { + "bom-ref": "e3ea415df800301a", + "type": "file", + "name": "/usr/share/zoneinfo/America/Goose_Bay", + "hashes": [ + { + "alg": "SHA-1", + "content": "37cce6f40c4d131dc51e5122e4f4feb0f7095826" + }, + { + "alg": "SHA-256", + "content": "f0c06c6a1841cdc37bfb311c11caba1c974d0d6c27725c04b69657e7ca112a49" + } + ] + }, + { + "bom-ref": "28bf06998e7856c2", + "type": "file", + "name": "/usr/share/zoneinfo/America/Grand_Turk", + "hashes": [ + { + "alg": "SHA-1", + "content": "7771ad3f812f68776883993eb5aac30aeb36af3f" + }, + { + "alg": "SHA-256", + "content": "73da89488b297b080468938594242c7f898e2c391e8575e8be832d56a1b87246" + } + ] + }, + { + "bom-ref": "58f914e44d4ee445", + "type": "file", + "name": "/usr/share/zoneinfo/America/Guatemala", + "hashes": [ + { + "alg": "SHA-1", + "content": "2ffc6ac0c1270f793d1e5c7dbaa2aaa60bc92c7c" + }, + { + "alg": "SHA-256", + "content": "795cc25e5ffe825a8b3d86eed98ad5f9bb9f6d152df2b624f0e2a63b17f0ee43" + } + ] + }, + { + "bom-ref": "164d6e1c34a248a8", + "type": "file", + "name": "/usr/share/zoneinfo/America/Guayaquil", + "hashes": [ + { + "alg": "SHA-1", + "content": "f721580d255bca9852e08d6536111faaddd7a95d" + }, + { + "alg": "SHA-256", + "content": "6f52c0cff32100d797e64032c4ce19fa5a94b75b7678f1beb3c0cb549cdc00f7" + } + ] + }, + { + "bom-ref": "9d67a92a26760e83", + "type": "file", + "name": "/usr/share/zoneinfo/America/Guyana", + "hashes": [ + { + "alg": "SHA-1", + "content": "83afa10270f6b6da37c0b7f79c99b7f52b3186a9" + }, + { + "alg": "SHA-256", + "content": "ffa4db9ef9c8a2902355de59b3693aa3dabd21e7a06054772bfcd754902e9342" + } + ] + }, + { + "bom-ref": "f75819589843d9ca", + "type": "file", + "name": "/usr/share/zoneinfo/America/Halifax", + "hashes": [ + { + "alg": "SHA-1", + "content": "72a35d81e965c2e98da92056c8369f9d50f2bf27" + }, + { + "alg": "SHA-256", + "content": "627e18218c6f3c3f446c4970abe8164672e2a7ba94bcf841b1e06af5089b94ea" + } + ] + }, + { + "bom-ref": "aee7cdd50a8e59e2", + "type": "file", + "name": "/usr/share/zoneinfo/America/Hermosillo", + "hashes": [ + { + "alg": "SHA-1", + "content": "afd34f472515ef1c3694a3a4337e9bc4c7e2ad05" + }, + { + "alg": "SHA-256", + "content": "ec6eb21d068f1ca8e80a9e825206ad1b5a04b1e8abb2dd981c6c90b7686b8820" + } + ] + }, + { + "bom-ref": "68841c27c02b5549", + "type": "file", + "name": "/usr/share/zoneinfo/America/Indiana/Marengo", + "hashes": [ + { + "alg": "SHA-1", + "content": "eec0be36f8dd019b5c5e5a367eb8cad0e1ab8bb8" + }, + { + "alg": "SHA-256", + "content": "64bb87669a7c161454b283e5855e28de7655450680cc403eea0572e580eb2625" + } + ] + }, + { + "bom-ref": "64136822bc0209ac", + "type": "file", + "name": "/usr/share/zoneinfo/America/Indiana/Petersburg", + "hashes": [ + { + "alg": "SHA-1", + "content": "3283907667ccc19804647b4bca6bc4c0d4caa751" + }, + { + "alg": "SHA-256", + "content": "3eb5dd510d677f9118ec4bca7892db4ed181722fbaf94ef9cb1a441718400321" + } + ] + }, + { + "bom-ref": "04c5adef0e626bc0", + "type": "file", + "name": "/usr/share/zoneinfo/America/Indiana/Tell_City", + "hashes": [ + { + "alg": "SHA-1", + "content": "526961884c7f95e6ba2cfdcb11d934f1f530ef10" + }, + { + "alg": "SHA-256", + "content": "6814c2b71389711819f44b98c880caf317c03a42064b2217103795114781a80f" + } + ] + }, + { + "bom-ref": "94291e7d167aa7d1", + "type": "file", + "name": "/usr/share/zoneinfo/America/Indiana/Vevay", + "hashes": [ + { + "alg": "SHA-1", + "content": "19e347531c46e3bc0cd7685509bf9dda33f56ba4" + }, + { + "alg": "SHA-256", + "content": "5cf728ac267cce51bddf1875219bf0e800d5aaa17794dc2c7408293773f516e5" + } + ] + }, + { + "bom-ref": "554f062cbf945979", + "type": "file", + "name": "/usr/share/zoneinfo/America/Indiana/Vincennes", + "hashes": [ + { + "alg": "SHA-1", + "content": "4a1ea520e4d2a6e806b8c4c63d5c947522ba6328" + }, + { + "alg": "SHA-256", + "content": "8a9db38f7575f9e2a624c9466128927caef0eea7e9a3841679cd6eb129b019d3" + } + ] + }, + { + "bom-ref": "f5c2339672630b21", + "type": "file", + "name": "/usr/share/zoneinfo/America/Indiana/Winamac", + "hashes": [ + { + "alg": "SHA-1", + "content": "c36a7df4d05086e80791f91b959b4b44dfbf0472" + }, + { + "alg": "SHA-256", + "content": "d2dc919207b8db95bd82aff68b8a498a6d3bec2c33220ba5381ebca171dcc095" + } + ] + }, + { + "bom-ref": "8b03f8329e497380", + "type": "file", + "name": "/usr/share/zoneinfo/America/Inuvik", + "hashes": [ + { + "alg": "SHA-1", + "content": "124ba21361900c06708d1d8b76055407f8e51796" + }, + { + "alg": "SHA-256", + "content": "ea64cbc0bf92cf88c8917222f11db8838f42e2d41360cd81bb93f669a2bc685b" + } + ] + }, + { + "bom-ref": "0dee3e698c2fc204", + "type": "file", + "name": "/usr/share/zoneinfo/America/Iqaluit", + "hashes": [ + { + "alg": "SHA-1", + "content": "5a78f8e5017551eb2866d05ed2ed70611a9e9387" + }, + { + "alg": "SHA-256", + "content": "eb8797250b8bd8c3d09893b4f261ffb1bedd668869a051c8e2c80f6c0d63408c" + } + ] + }, + { + "bom-ref": "ff90f11c096988c4", + "type": "file", + "name": "/usr/share/zoneinfo/America/Jujuy", + "hashes": [ + { + "alg": "SHA-1", + "content": "ecf30bd926e6b7feaf6a29cbcfb092c78b939e7b" + }, + { + "alg": "SHA-256", + "content": "233f43f895b08f21cd28918fbdb9c22892511c0996ac6212e019c3e866aca455" + } + ] + }, + { + "bom-ref": "ac28a9c8b7a43be4", + "type": "file", + "name": "/usr/share/zoneinfo/America/Juneau", + "hashes": [ + { + "alg": "SHA-1", + "content": "d1dd03c5e2818945179368c4c0a8886a3aec5bae" + }, + { + "alg": "SHA-256", + "content": "8185913ee68f7ec72cd98efcee68d1b6bd0c304e303a2dc613b06cd97e6333c8" + } + ] + }, + { + "bom-ref": "af3cee74ef1ae3a4", + "type": "file", + "name": "/usr/share/zoneinfo/America/Kentucky/Monticello", + "hashes": [ + { + "alg": "SHA-1", + "content": "30cceea7b1eb757b7e6c7e2a436ee9f6f4865e94" + }, + { + "alg": "SHA-256", + "content": "b87081e46bbe688816a7e03cfdc5b4efe10bd6b92cb5a780df6b0c86af4c1a37" + } + ] + }, + { + "bom-ref": "5b91442948c8c501", + "type": "file", + "name": "/usr/share/zoneinfo/America/Knox_IN", + "hashes": [ + { + "alg": "SHA-1", + "content": "06b80b933cdf747c3dd0ce5d68278874b64b93f0" + }, + { + "alg": "SHA-256", + "content": "9e75dd6c52c5339c8e2b195ff8ac6a7212e2c5e84b2be3023cc355972c20d856" + } + ] + }, + { + "bom-ref": "314da58dcaf09365", + "type": "file", + "name": "/usr/share/zoneinfo/America/La_Paz", + "hashes": [ + { + "alg": "SHA-1", + "content": "5e234a018666fe58baa4917cd9fffeb9e9fd489b" + }, + { + "alg": "SHA-256", + "content": "1f10b013aea85ad55c3b3f65d68fa09bba4abe7fb5311018698823f0ab909a88" + } + ] + }, + { + "bom-ref": "383e87ec2e577562", + "type": "file", + "name": "/usr/share/zoneinfo/America/Lima", + "hashes": [ + { + "alg": "SHA-1", + "content": "e8d01c61a972ba427254883d16e6ba2633dd7c0e" + }, + { + "alg": "SHA-256", + "content": "5f514d5245abb9de7c35fabed4c4cc86f6c027548cd1be04cc84b122878e1ad3" + } + ] + }, + { + "bom-ref": "fdf1b46198c7694d", + "type": "file", + "name": "/usr/share/zoneinfo/America/Los_Angeles", + "hashes": [ + { + "alg": "SHA-1", + "content": "6b272416122dae794487818603243b1e86866234" + }, + { + "alg": "SHA-256", + "content": "fea9d66ff6522e69d22073dc4e84179b7cac2e372b398dc2fafdfdb61a9eb2e1" + } + ] + }, + { + "bom-ref": "bd65903dbe6aa71b", + "type": "file", + "name": "/usr/share/zoneinfo/America/Louisville", + "hashes": [ + { + "alg": "SHA-1", + "content": "c96f194ce7e669dd7116206b53b48f4ac36ed387" + }, + { + "alg": "SHA-256", + "content": "31e1152a8de9463bcef2b5db10415965b96b83a93bd940609bc390bab963f384" + } + ] + }, + { + "bom-ref": "258a8d4cd25cc679", + "type": "file", + "name": "/usr/share/zoneinfo/America/Maceio", + "hashes": [ + { + "alg": "SHA-1", + "content": "79cf3326476fdd903e50c9f9ab907374975758cd" + }, + { + "alg": "SHA-256", + "content": "3241ce8df0004a0cb5db2eb3800a3dfe770cc1d24d144fee27862c4dd7400840" + } + ] + }, + { + "bom-ref": "363cd11c149b899a", + "type": "file", + "name": "/usr/share/zoneinfo/America/Managua", + "hashes": [ + { + "alg": "SHA-1", + "content": "4f8bbf2929c33667126d8bb2996c89efef9f7c17" + }, + { + "alg": "SHA-256", + "content": "a3c1f00bc879ee84e623d25252f1fb8ffd8cf43cd9c8b8bf12b6b5eda8045683" + } + ] + }, + { + "bom-ref": "62fb2119919233e6", + "type": "file", + "name": "/usr/share/zoneinfo/America/Manaus", + "hashes": [ + { + "alg": "SHA-1", + "content": "54c83a6d547f5e744b614e681d5393c8941de300" + }, + { + "alg": "SHA-256", + "content": "e1213e7b97cfa580b4f9c728c34ffa64a6ab277b06b558893b299c20d3528e6c" + } + ] + }, + { + "bom-ref": "263ac1c43ff2c71c", + "type": "file", + "name": "/usr/share/zoneinfo/America/Martinique", + "hashes": [ + { + "alg": "SHA-1", + "content": "1ae26dfd7c388dd2cc5552817727200b292af0b7" + }, + { + "alg": "SHA-256", + "content": "e087c3e4ae20234a08667adcf6ab4cd03ab3aeee7e035278f271ddb0b65cfff2" + } + ] + }, + { + "bom-ref": "7a805d89fb2041ea", + "type": "file", + "name": "/usr/share/zoneinfo/America/Matamoros", + "hashes": [ + { + "alg": "SHA-1", + "content": "77c13685c3d1ac515114769aa17af02cb6805ff5" + }, + { + "alg": "SHA-256", + "content": "4398d831df4bfcfd9bafa22ac35cd55dbb7dfd5f25c138452e8adf275ea11735" + } + ] + }, + { + "bom-ref": "4f8587c018933dd4", + "type": "file", + "name": "/usr/share/zoneinfo/America/Mazatlan", + "hashes": [ + { + "alg": "SHA-1", + "content": "0fe37e001e5e1824c0a0319cc5ef1184ab44fbb7" + }, + { + "alg": "SHA-256", + "content": "9340b719b250773262cec62e771d121105aed168836723dfc305e30bb04cfbb1" + } + ] + }, + { + "bom-ref": "ceea1f023050a941", + "type": "file", + "name": "/usr/share/zoneinfo/America/Mendoza", + "hashes": [ + { + "alg": "SHA-1", + "content": "f7d1839c51686e31e318b8df98869915ae1475fc" + }, + { + "alg": "SHA-256", + "content": "d50f245cf1eeb3650dbbdd45720ddc6b1c5e22aede7981f20b9efe2c7ac68c4d" + } + ] + }, + { + "bom-ref": "737f2b8c0b7ceb82", + "type": "file", + "name": "/usr/share/zoneinfo/America/Menominee", + "hashes": [ + { + "alg": "SHA-1", + "content": "4ead905a8f5fe1ea8e81824dc3440c422d6d10bd" + }, + { + "alg": "SHA-256", + "content": "46ced580e74834d2c68a80a60ae05a0b715014bb2b4dad67cf994ac20ce2ac22" + } + ] + }, + { + "bom-ref": "e2e85a7f01f34bde", + "type": "file", + "name": "/usr/share/zoneinfo/America/Merida", + "hashes": [ + { + "alg": "SHA-1", + "content": "c30785c626637481bd7ce933d36a8dce1cea22aa" + }, + { + "alg": "SHA-256", + "content": "ecdcf4b29f7b439152b9e9b559f04d7d4ba759dd942c2fd685a4ee36798fc8d1" + } + ] + }, + { + "bom-ref": "a3fa429c481d8b82", + "type": "file", + "name": "/usr/share/zoneinfo/America/Metlakatla", + "hashes": [ + { + "alg": "SHA-1", + "content": "2be6672607cb5e862d3a7e63a7073a39bd389566" + }, + { + "alg": "SHA-256", + "content": "9d091e1f411ccec6f2274317c53cc3ca45d6895f2c7497583e71ffca496716f3" + } + ] + }, + { + "bom-ref": "c9690247f2cceb82", + "type": "file", + "name": "/usr/share/zoneinfo/America/Mexico_City", + "hashes": [ + { + "alg": "SHA-1", + "content": "ca23e2e897c830658da03a6c292380f149bb24ff" + }, + { + "alg": "SHA-256", + "content": "88bc3fcb1a92ef053e0af4af9053ecbf12855fdf18f859b2a54d826dbfacb655" + } + ] + }, + { + "bom-ref": "77f9951934c20f01", + "type": "file", + "name": "/usr/share/zoneinfo/America/Miquelon", + "hashes": [ + { + "alg": "SHA-1", + "content": "321f965ce0aabc7cf60309eac1debe55f07e39a5" + }, + { + "alg": "SHA-256", + "content": "21fabc9c2cafd8eef46af9126040cced6ef27d648d73d48951178143e6bb006b" + } + ] + }, + { + "bom-ref": "ed69c647a8dda838", + "type": "file", + "name": "/usr/share/zoneinfo/America/Moncton", + "hashes": [ + { + "alg": "SHA-1", + "content": "81ab3fb3b457816b5d54417cf105fb64d083d21d" + }, + { + "alg": "SHA-256", + "content": "1300d5a93bb376cbf23a890a23ea05fa2b229486e7eb7d5959c7834260fbb7b7" + } + ] + }, + { + "bom-ref": "fbb47501496c3640", + "type": "file", + "name": "/usr/share/zoneinfo/America/Monterrey", + "hashes": [ + { + "alg": "SHA-1", + "content": "76f7f5df8e8884a6b594446775d44915ad53285e" + }, + { + "alg": "SHA-256", + "content": "89dadca852ebf52e4405c958132255c25fb195604d7df9b844bf50b48a0865d8" + } + ] + }, + { + "bom-ref": "ac66434b105e3956", + "type": "file", + "name": "/usr/share/zoneinfo/America/Montevideo", + "hashes": [ + { + "alg": "SHA-1", + "content": "936bcb6592d68644ac7fca6e99080e12a0b6fe38" + }, + { + "alg": "SHA-256", + "content": "550efc39d3e1c9e6909aa80a9d067f9355c47a874fcaf4f59302407ef6f968e1" + } + ] + }, + { + "bom-ref": "f634ee71dbb9f872", + "type": "file", + "name": "/usr/share/zoneinfo/America/Montreal", + "hashes": [ + { + "alg": "SHA-1", + "content": "f0738b3fc039a2d1233a856343b883fa81380a70" + }, + { + "alg": "SHA-256", + "content": "842f7a103dfac9c0c2c33c9cc392a113d266ac064c5c7497883ab41b797ce194" + } + ] + }, + { + "bom-ref": "7fb2f70f22d0f618", + "type": "file", + "name": "/usr/share/zoneinfo/America/Nassau", + "hashes": [ + { + "alg": "SHA-1", + "content": "7c542f4384a270295b44d73d67502b04e2dac34e" + }, + { + "alg": "SHA-256", + "content": "9631141bea8930f28ed079a6ccdf52bf27ac52fff85c53329f50b6fa9dd5881a" + } + ] + }, + { + "bom-ref": "2803e121dddce5bb", + "type": "file", + "name": "/usr/share/zoneinfo/America/Nipigon", + "hashes": [ + { + "alg": "SHA-1", + "content": "cb3d30ffa912161d0d42628f2808e022d70b260d" + }, + { + "alg": "SHA-256", + "content": "7100ca4bf3044211ff8e770dade20b683880f3965f146ebbdd72c644aaec7c37" + } + ] + }, + { + "bom-ref": "93db7ee1cf9f0944", + "type": "file", + "name": "/usr/share/zoneinfo/America/Nome", + "hashes": [ + { + "alg": "SHA-1", + "content": "148d8f791d8265b2218060da66a072a4a7581b7e" + }, + { + "alg": "SHA-256", + "content": "d312bc797eb1b384ccfba0c40822d50b2e0abf37d5daa43dd3e255fdc7573b00" + } + ] + }, + { + "bom-ref": "8aaca6c16cc80809", + "type": "file", + "name": "/usr/share/zoneinfo/America/Noronha", + "hashes": [ + { + "alg": "SHA-1", + "content": "0c5c9d4d3c6e0cfa9d7680b042bd4f4cba6a9bec" + }, + { + "alg": "SHA-256", + "content": "cb4e968f415ed53e769108c9d5f9710e898716af74536d39b7077b0426f3960d" + } + ] + }, + { + "bom-ref": "ac76e2f681479449", + "type": "file", + "name": "/usr/share/zoneinfo/America/North_Dakota/Beulah", + "hashes": [ + { + "alg": "SHA-1", + "content": "294e1cfb1ce1eef45d5ba77b554491edf4389c63" + }, + { + "alg": "SHA-256", + "content": "f604eb42f0197f5edefcd6d43051a0b64e6e1327dbd2d3cfa94d0348b23e1fa8" + } + ] + }, + { + "bom-ref": "5467fca25008be93", + "type": "file", + "name": "/usr/share/zoneinfo/America/North_Dakota/Center", + "hashes": [ + { + "alg": "SHA-1", + "content": "af9fbd86a4d955d1f91aaaf9309cf5b7e0e6ba74" + }, + { + "alg": "SHA-256", + "content": "08efea4af9a2b6a5ab25e86116cfcf4b93c16ba9b7b22f762d9cb3481ecf3ac8" + } + ] + }, + { + "bom-ref": "79aaaa7dfa8a5755", + "type": "file", + "name": "/usr/share/zoneinfo/America/North_Dakota/New_Salem", + "hashes": [ + { + "alg": "SHA-1", + "content": "9bedd2da1055142e7bc246b31dfc62306e0c17c0" + }, + { + "alg": "SHA-256", + "content": "c5a43eb6776c326b1250f914f00e9e00e121b9b51f63665f90f245376da2017a" + } + ] + }, + { + "bom-ref": "8658fce51af5fb82", + "type": "file", + "name": "/usr/share/zoneinfo/America/Ojinaga", + "hashes": [ + { + "alg": "SHA-1", + "content": "cdc0fd0441d135f266dd2bd1417d98a2ca02c453" + }, + { + "alg": "SHA-256", + "content": "a07ff8fe3ee3531f866afca0f7937d86acec1826fb3eaa655d54300ec22dc713" + } + ] + }, + { + "bom-ref": "7836fa5c677e9c63", + "type": "file", + "name": "/usr/share/zoneinfo/America/Pangnirtung", + "hashes": [ + { + "alg": "SHA-1", + "content": "816558b9b031dcc687ebb9f54c5d4809fc147238" + }, + { + "alg": "SHA-256", + "content": "1b6a497653df9220c30a022d87ec2aa1320af9e51bb3cdc48756e72d770a6738" + } + ] + }, + { + "bom-ref": "fb9d4ea18ad7ecce", + "type": "file", + "name": "/usr/share/zoneinfo/America/Paramaribo", + "hashes": [ + { + "alg": "SHA-1", + "content": "7564b798823189ebdf27cd281dee91fb808e0063" + }, + { + "alg": "SHA-256", + "content": "57039b31a68b30ba0731916cffa7b9a1bbb52bf7650f7aa62052e89a8fc9edf6" + } + ] + }, + { + "bom-ref": "8cabda29c566e8fd", + "type": "file", + "name": "/usr/share/zoneinfo/America/Phoenix", + "hashes": [ + { + "alg": "SHA-1", + "content": "5edada5d6ac5d8909739b7b00d27f074e6c6cace" + }, + { + "alg": "SHA-256", + "content": "9c013ecf82b6ed1dde235b5fc983fe9d23c8d56d610323f7c94c6ba3cd7b4564" + } + ] + }, + { + "bom-ref": "84d9d68b7a7e6d42", + "type": "file", + "name": "/usr/share/zoneinfo/America/Port-au-Prince", + "hashes": [ + { + "alg": "SHA-1", + "content": "2bc58f6987d7f845b97c1f7861e8a647fd2a0fcc" + }, + { + "alg": "SHA-256", + "content": "b0b60ad1c557c41596e0fcc7fc8b9b39444c78295b147cee495e29985a225da6" + } + ] + }, + { + "bom-ref": "177ae7f7205d5593", + "type": "file", + "name": "/usr/share/zoneinfo/America/Porto_Acre", + "hashes": [ + { + "alg": "SHA-1", + "content": "a4bde518acfca0525379b7358bc04d89d300cb14" + }, + { + "alg": "SHA-256", + "content": "16c86cccc93c7ebfeffae880e439ce848055e421578982d5cabef8aaec15f802" + } + ] + }, + { + "bom-ref": "6a68331868d07253", + "type": "file", + "name": "/usr/share/zoneinfo/America/Porto_Velho", + "hashes": [ + { + "alg": "SHA-1", + "content": "7c8fd62280312a0d238e94046d4e52c6bb840d00" + }, + { + "alg": "SHA-256", + "content": "29f8daaa8fdca090df7145e69ecdc936cd3fedacea0b723f5c93da2a8c80f976" + } + ] + }, + { + "bom-ref": "130ef8377231b8fd", + "type": "file", + "name": "/usr/share/zoneinfo/America/Puerto_Rico", + "hashes": [ + { + "alg": "SHA-1", + "content": "b0e67202647204698dbd16902eabd3e93de36049" + }, + { + "alg": "SHA-256", + "content": "7eee44e1cb7ac885fdd5042815c548bcb6ca84cff8de007e52b53c0b9ad53f19" + } + ] + }, + { + "bom-ref": "74fdea840ef18415", + "type": "file", + "name": "/usr/share/zoneinfo/America/Punta_Arenas", + "hashes": [ + { + "alg": "SHA-1", + "content": "8f8945a86ab7327b22ded1c5291ae09df84e9e8f" + }, + { + "alg": "SHA-256", + "content": "33e26b3c8bf3dd7100151d3c1842ae9aa8ef69b15f961aa2eee2e1dc3508c6e5" + } + ] + }, + { + "bom-ref": "24d12eae8fabf9e5", + "type": "file", + "name": "/usr/share/zoneinfo/America/Rainy_River", + "hashes": [ + { + "alg": "SHA-1", + "content": "57280d5a602e233309a164ba2efd57c629b4e0ae" + }, + { + "alg": "SHA-256", + "content": "9a7b8dd4c968de31fe35fd9fe075fad8afc15892067119f638b5aef0d2288d83" + } + ] + }, + { + "bom-ref": "dc1ab4d52cab5605", + "type": "file", + "name": "/usr/share/zoneinfo/America/Rankin_Inlet", + "hashes": [ + { + "alg": "SHA-1", + "content": "8545dd3ef55384579e53f80c337f816935c860ed" + }, + { + "alg": "SHA-256", + "content": "b3ae38ccfa3091ebd8037fd5e1fd2715a72008932f94526a15fb1aa7fae722dc" + } + ] + }, + { + "bom-ref": "08e2b2276ffb7b3b", + "type": "file", + "name": "/usr/share/zoneinfo/America/Recife", + "hashes": [ + { + "alg": "SHA-1", + "content": "40b933cac6d1041ac9238f3fcdb42e25e6fa6002" + }, + { + "alg": "SHA-256", + "content": "cebb6d30c20b00bc437d4e0a8c6a0c91db120a3aef2c28bc56960f682b3fc30c" + } + ] + }, + { + "bom-ref": "358bfca547d0d616", + "type": "file", + "name": "/usr/share/zoneinfo/America/Regina", + "hashes": [ + { + "alg": "SHA-1", + "content": "76e2a4142b661be49545b622318268b3de4ef526" + }, + { + "alg": "SHA-256", + "content": "929d07457407529637626d09f5ca975b4f05801f35d0bfac4e3b0027efee6776" + } + ] + }, + { + "bom-ref": "712cd717c9790089", + "type": "file", + "name": "/usr/share/zoneinfo/America/Resolute", + "hashes": [ + { + "alg": "SHA-1", + "content": "c995fd52ddec0b15ee86b146087114f65f8d728f" + }, + { + "alg": "SHA-256", + "content": "c529141807704725b059187b9f458080f911b6dd4313e74139d2c7dac287c901" + } + ] + }, + { + "bom-ref": "57302a4ae3aac3c8", + "type": "file", + "name": "/usr/share/zoneinfo/America/Santarem", + "hashes": [ + { + "alg": "SHA-1", + "content": "03af6dbbbd217be2348e73e70d9ab86274dadf43" + }, + { + "alg": "SHA-256", + "content": "78440d01f4c5b7c13d1dbe6500ba71188efdcf90069979c80a224d831c8bd97b" + } + ] + }, + { + "bom-ref": "3eeabfe57500cd67", + "type": "file", + "name": "/usr/share/zoneinfo/America/Santiago", + "hashes": [ + { + "alg": "SHA-1", + "content": "7d32f6045377f3788d4015d66eb27b0777439730" + }, + { + "alg": "SHA-256", + "content": "b83e4129763ef7a22be3fba68029b4ecb6f14a360112498446d8c89640f420b5" + } + ] + }, + { + "bom-ref": "78cd1148df21a6b3", + "type": "file", + "name": "/usr/share/zoneinfo/America/Santo_Domingo", + "hashes": [ + { + "alg": "SHA-1", + "content": "a29f83f20c2a6cf56576054d80e0f8266de2c86e" + }, + { + "alg": "SHA-256", + "content": "adf349e4c7314aaa699c4893c589b077f6dfa7d9a54ea9eae459658f9af41dc7" + } + ] + }, + { + "bom-ref": "fd0a1553d160fcbd", + "type": "file", + "name": "/usr/share/zoneinfo/America/Sao_Paulo", + "hashes": [ + { + "alg": "SHA-1", + "content": "1fc57d2f4fb5a14833f253bf2fd7abed447f0016" + }, + { + "alg": "SHA-256", + "content": "a4090cbdfa5168012d460585f7eab9302f8848cca0419d73cf03993ef12c08c4" + } + ] + }, + { + "bom-ref": "b543336a241ff7a9", + "type": "file", + "name": "/usr/share/zoneinfo/America/Scoresbysund", + "hashes": [ + { + "alg": "SHA-1", + "content": "928c70dd1b85e8d32c344a19936c04330cac5c7c" + }, + { + "alg": "SHA-256", + "content": "c668772d49326cde3798d158089d2f9ced43788f904360a6dc67a53868b28f96" + } + ] + }, + { + "bom-ref": "6576f778678fc816", + "type": "file", + "name": "/usr/share/zoneinfo/America/Sitka", + "hashes": [ + { + "alg": "SHA-1", + "content": "ef1b9d1ce149a6f4877f0e5318b9b349184e4f15" + }, + { + "alg": "SHA-256", + "content": "ba79b89ecd8e64dba4119f2c5af2373167557c4bc71b7b134ab252e0b7485fdb" + } + ] + }, + { + "bom-ref": "6b7bc846f4bfa8cd", + "type": "file", + "name": "/usr/share/zoneinfo/America/St_Johns", + "hashes": [ + { + "alg": "SHA-1", + "content": "4aad3891be9ae7da8151cf34aa7ec12874c5952a" + }, + { + "alg": "SHA-256", + "content": "2b960a58d6d3f6a272707f941f55b15b8ba3fd0fd55f8680ea84af6b1e98bae0" + } + ] + }, + { + "bom-ref": "9faf0c679d3c5486", + "type": "file", + "name": "/usr/share/zoneinfo/America/Swift_Current", + "hashes": [ + { + "alg": "SHA-1", + "content": "a7eef9d862fa3bc2374813578f5712f3320aa66e" + }, + { + "alg": "SHA-256", + "content": "6b6029f04ac07c382e20d315da7a72d9204d813ef83585f042562e7f6788a78f" + } + ] + }, + { + "bom-ref": "a14db45e8c5dd4b1", + "type": "file", + "name": "/usr/share/zoneinfo/America/Tegucigalpa", + "hashes": [ + { + "alg": "SHA-1", + "content": "148518623ec71040a6431d9f0b6d30728e0e1652" + }, + { + "alg": "SHA-256", + "content": "fd295a9cc689a966786b6e0ec9d0f101796ac8b4f04a6f529b192937df3a2115" + } + ] + }, + { + "bom-ref": "f76b041bfbfa4115", + "type": "file", + "name": "/usr/share/zoneinfo/America/Thule", + "hashes": [ + { + "alg": "SHA-1", + "content": "b30145a508f7076ed907a1f09d828875d97d7aa2" + }, + { + "alg": "SHA-256", + "content": "9a474a1fc764343470d310369cdbf6d7007ea611116e25bea68f60ddf5a6cd68" + } + ] + }, + { + "bom-ref": "9cf83baad17806c9", + "type": "file", + "name": "/usr/share/zoneinfo/America/Thunder_Bay", + "hashes": [ + { + "alg": "SHA-1", + "content": "af6db11bf14add853af6f69bacea7e6636fd29ba" + }, + { + "alg": "SHA-256", + "content": "aef45e1474369f52e1afb1cd7f312e9f035ca13686092cf2351a353133e1cee6" + } + ] + }, + { + "bom-ref": "c496718af43e4ef7", + "type": "file", + "name": "/usr/share/zoneinfo/America/Vancouver", + "hashes": [ + { + "alg": "SHA-1", + "content": "7b2de208fd65d137c4176b50c191ab3b674fb7be" + }, + { + "alg": "SHA-256", + "content": "460182c93960fd636820b1b43cfec871da4f0197556bb6bdb2fa527b637a4332" + } + ] + }, + { + "bom-ref": "f97c0e3e96b0ea06", + "type": "file", + "name": "/usr/share/zoneinfo/America/Whitehorse", + "hashes": [ + { + "alg": "SHA-1", + "content": "800b76218fe759b14741b4659e0e92e8b93ac690" + }, + { + "alg": "SHA-256", + "content": "7e9e052642d3571e477bc6041031df8990350435e42ce38e7a802720d0f3a836" + } + ] + }, + { + "bom-ref": "b63a738b3959e091", + "type": "file", + "name": "/usr/share/zoneinfo/America/Winnipeg", + "hashes": [ + { + "alg": "SHA-1", + "content": "9b638a6d8f6138aa8a3c2af1e59ec2ce467c26a0" + }, + { + "alg": "SHA-256", + "content": "77be5c08f6f8ebe5330fb86a60c4447ea2549620609f4ef6a7a7a68d1a12d9d6" + } + ] + }, + { + "bom-ref": "00d712ef695b393d", + "type": "file", + "name": "/usr/share/zoneinfo/America/Yakutat", + "hashes": [ + { + "alg": "SHA-1", + "content": "71467f6640996eab149a9d1d03c27df76f97370b" + }, + { + "alg": "SHA-256", + "content": "07f189f49873b1392989ecbde19d19d33cd6c16953bf7e6b927ca2f1040f7106" + } + ] + }, + { + "bom-ref": "ee4047ee357a0490", + "type": "file", + "name": "/usr/share/zoneinfo/America/Yellowknife", + "hashes": [ + { + "alg": "SHA-1", + "content": "6f24a025e7ea0853b4e1bd993423f19ccfdbcfc2" + }, + { + "alg": "SHA-256", + "content": "3140de7fe4136fb4920e8bb8ed8d707256e78c672edfce1657ae22672de68768" + } + ] + }, + { + "bom-ref": "c41c034a1f2658a4", + "type": "file", + "name": "/usr/share/zoneinfo/Antarctica/Casey", + "hashes": [ + { + "alg": "SHA-1", + "content": "8a271e2c35ad54bc1da08c458943b7bad6b155dd" + }, + { + "alg": "SHA-256", + "content": "68cb638c8729bfad8bc7ac2f39892b90424e97aadb3107ed531e04e6fc83bbbe" + } + ] + }, + { + "bom-ref": "015a93f3bded5bdb", + "type": "file", + "name": "/usr/share/zoneinfo/Antarctica/Davis", + "hashes": [ + { + "alg": "SHA-1", + "content": "839a076e633ad6d3b9276a3cc53da10a5e5a0cea" + }, + { + "alg": "SHA-256", + "content": "8dec77b2a23389d30c680a6fb0241cae32f1c0c71bf28fde1679bdb035a2939b" + } + ] + }, + { + "bom-ref": "916b62a272bd2dcd", + "type": "file", + "name": "/usr/share/zoneinfo/Antarctica/DumontDUrville", + "hashes": [ + { + "alg": "SHA-1", + "content": "790b5785af51a9f201fb1ece8cf89a9e605b6cd0" + }, + { + "alg": "SHA-256", + "content": "86d1e72a7cad1d9817f57d456e39184b749436a02783a272f2109994addfbd55" + } + ] + }, + { + "bom-ref": "227838352df5cb07", + "type": "file", + "name": "/usr/share/zoneinfo/Antarctica/Macquarie", + "hashes": [ + { + "alg": "SHA-1", + "content": "c1a70264890f7f9e412e62faa3af20abde474f9e" + }, + { + "alg": "SHA-256", + "content": "84c67090354098f795919978c62b6b18f9e4fd2d05fd33a76067f84152d1c7f5" + } + ] + }, + { + "bom-ref": "c8dd87e0c06aea89", + "type": "file", + "name": "/usr/share/zoneinfo/Antarctica/Mawson", + "hashes": [ + { + "alg": "SHA-1", + "content": "1309b9108f7bf6f91dc007fad88770fd40355743" + }, + { + "alg": "SHA-256", + "content": "afa4aec36d9ff91992970b4c645e038810f25d8e58118a56568dbc9226704543" + } + ] + }, + { + "bom-ref": "b29cb461a656aa23", + "type": "file", + "name": "/usr/share/zoneinfo/Antarctica/Palmer", + "hashes": [ + { + "alg": "SHA-1", + "content": "d024e5b4a1b859fa79de798845bb946cacee2b3e" + }, + { + "alg": "SHA-256", + "content": "aa3fc7dd1b1f1599bf71ed328ae5dba81e09ac3e3a914689e7ea5ff3adc28183" + } + ] + }, + { + "bom-ref": "1388797829f9f00a", + "type": "file", + "name": "/usr/share/zoneinfo/Antarctica/Rothera", + "hashes": [ + { + "alg": "SHA-1", + "content": "b96df6c298173a3e9b4603a42620f6dd0199008a" + }, + { + "alg": "SHA-256", + "content": "e67d9eb78b53d3a415865402758eca495c69c347ed0ca7d5a0238c5f7ac01d8b" + } + ] + }, + { + "bom-ref": "83972c2341d2fc7a", + "type": "file", + "name": "/usr/share/zoneinfo/Antarctica/Syowa", + "hashes": [ + { + "alg": "SHA-1", + "content": "e18f1930aba6968e26250d0d4c73f226826e7c12" + }, + { + "alg": "SHA-256", + "content": "aef765ec9b3fae2cedbbaf2b525505008aa24f2f4e06abae3f770a9677387879" + } + ] + }, + { + "bom-ref": "d2afa18711057d1d", + "type": "file", + "name": "/usr/share/zoneinfo/Antarctica/Troll", + "hashes": [ + { + "alg": "SHA-1", + "content": "390f051d8f9efc940336fb27a150dc06f73f7a05" + }, + { + "alg": "SHA-256", + "content": "1d8bdfe767292729981993a64fd8a2f745b24058c8bcbcf21bf3b0b6d5075c2d" + } + ] + }, + { + "bom-ref": "da4f2e84d7d4c75d", + "type": "file", + "name": "/usr/share/zoneinfo/Antarctica/Vostok", + "hashes": [ + { + "alg": "SHA-1", + "content": "50d803475d5d8c5ba151e9a7b4179fdcc1d8721c" + }, + { + "alg": "SHA-256", + "content": "903d2010d8a06be20cd57000e89d92e6f8307dca3810294215a58cd7c7c863e2" + } + ] + }, + { + "bom-ref": "1e4449414f672cd4", + "type": "file", + "name": "/usr/share/zoneinfo/Arctic/Longyearbyen", + "hashes": [ + { + "alg": "SHA-1", + "content": "a69be8a3e576dce7b744191865b30344af571257" + }, + { + "alg": "SHA-256", + "content": "0fa4e635da2b178fa3ea13ff3829c702844cf8bd69e16bca8e1d34dbd9249d01" + } + ] + }, + { + "bom-ref": "176b0b4c1d9b934e", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Aden", + "hashes": [ + { + "alg": "SHA-1", + "content": "dd378bd1f0c89ad3893652f696720212d24552b5" + }, + { + "alg": "SHA-256", + "content": "3102c1755d9a64b2e2b363381bbf52d6a01eb866a4d2cdfd0cf7e0832517094d" + } + ] + }, + { + "bom-ref": "841c197c81804e27", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Almaty", + "hashes": [ + { + "alg": "SHA-1", + "content": "a8f39dc95d87e5a5a7cc1584a7fab4e414d69388" + }, + { + "alg": "SHA-256", + "content": "4401628c6d2a36430efdddec3d9aeb9ff091e85daa21d0783298cddfe70c38c4" + } + ] + }, + { + "bom-ref": "9107edb48dae9835", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Amman", + "hashes": [ + { + "alg": "SHA-1", + "content": "435774413c6bde74aa08f7f620280bacfde8963d" + }, + { + "alg": "SHA-256", + "content": "ba18a1f823f77e478e7030eeb82ddd71a5f3fae6efdf56325b7776304912da08" + } + ] + }, + { + "bom-ref": "cddd2f788346ad12", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Anadyr", + "hashes": [ + { + "alg": "SHA-1", + "content": "139bc8f7d5fc83a8f864668f4d5ff9e1745e5c02" + }, + { + "alg": "SHA-256", + "content": "b4b88045d6624e21cb233c7c6226edee88afb63e0ca8d4e3df580d74a6c8a34c" + } + ] + }, + { + "bom-ref": "dc9ec30d3f167088", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Aqtau", + "hashes": [ + { + "alg": "SHA-1", + "content": "093aea4dc4618d428344a3b9956551a86b9e8d49" + }, + { + "alg": "SHA-256", + "content": "e2e79c79371b0c8601cc8da9dc613145b60721e9c574310ed4b7fa9ae9baa30b" + } + ] + }, + { + "bom-ref": "e1fdea4ebe0f33fc", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Aqtobe", + "hashes": [ + { + "alg": "SHA-1", + "content": "c26ad860f6c6f3f23aa2fd01fb7afb447beef6f2" + }, + { + "alg": "SHA-256", + "content": "ccd2ab0718fc8a637bb44576e4ca3ff267151cc4081dc697e69ebd426dbe4c1d" + } + ] + }, + { + "bom-ref": "2f5e6d18bd8f7b7e", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Ashgabat", + "hashes": [ + { + "alg": "SHA-1", + "content": "410dfa09a7a4e9e8d409539222348627d5ea930c" + }, + { + "alg": "SHA-256", + "content": "46284acf00fcee991886ee879f507f970bef4105a05d5e330736a02b329d3375" + } + ] + }, + { + "bom-ref": "bdd905d9286957ad", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Atyrau", + "hashes": [ + { + "alg": "SHA-1", + "content": "e2be1c6fba4a1512c5daed23036631e2142d118b" + }, + { + "alg": "SHA-256", + "content": "44812ada1ccc49ab42dd04e3c5ebe8f9f592682765b0e400972662c34ef6e931" + } + ] + }, + { + "bom-ref": "25d40640a1ee4f3e", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Baghdad", + "hashes": [ + { + "alg": "SHA-1", + "content": "ade20aa3de5a2efc729a922e86700ca2624b080d" + }, + { + "alg": "SHA-256", + "content": "942ba9632d564f1e29f60e75a7edf598d3b001515ecdd7d403b147e5bf703cb1" + } + ] + }, + { + "bom-ref": "26f46cb7a829089b", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Bahrain", + "hashes": [ + { + "alg": "SHA-1", + "content": "aeb68f2a5bd34e659e15c6634d8e7768ad06de65" + }, + { + "alg": "SHA-256", + "content": "f15d455b503a1d9b99a9bc15f27e0d87d9bf3cac8100709f6a3140e63bab56bd" + } + ] + }, + { + "bom-ref": "8e4059a175f5203e", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Baku", + "hashes": [ + { + "alg": "SHA-1", + "content": "eae4d1d23621f55e0ff05ec805d3a2c71288720e" + }, + { + "alg": "SHA-256", + "content": "8efffa197f6ee0747d60f4b37db8823d2f712f3df7350bfb40461641d9e7ca31" + } + ] + }, + { + "bom-ref": "157c8d859fd1f1de", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Bangkok", + "hashes": [ + { + "alg": "SHA-1", + "content": "30b3e86db6a7ec38ab2fdbf7cb58b62f73c1b652" + }, + { + "alg": "SHA-256", + "content": "cf866703a05b067069db05f87584d5c8a3489bcaad3e41bb012609904915c11b" + } + ] + }, + { + "bom-ref": "7b43b28684e112a3", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Barnaul", + "hashes": [ + { + "alg": "SHA-1", + "content": "d663be2180fb10bcda48ce333717664f97506e59" + }, + { + "alg": "SHA-256", + "content": "b556552d881c7729f21a4fb10c5e75e3885afc08e539461d40d6e4e359dcdd7f" + } + ] + }, + { + "bom-ref": "e73434b415edf3b7", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Beirut", + "hashes": [ + { + "alg": "SHA-1", + "content": "423142944fe014fb5ca12b7143860875ddfdb68f" + }, + { + "alg": "SHA-256", + "content": "abdfa509ed982455873c1035962d8642ae8b88ab75f7f1a9a4cf7eea5ce120ef" + } + ] + }, + { + "bom-ref": "3ffa251f4f3f0c5f", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Bishkek", + "hashes": [ + { + "alg": "SHA-1", + "content": "ebf278322a9737a3654e567bf1cad7ab59659362" + }, + { + "alg": "SHA-256", + "content": "8b449cf64ad7d46bae4196787f47012bfd0899aafd7cac77f8794dd7730b41ee" + } + ] + }, + { + "bom-ref": "a7c2e2758c0b5112", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Brunei", + "hashes": [ + { + "alg": "SHA-1", + "content": "39199590f60b22ddcdac2cd4048f426ae32d6e67" + }, + { + "alg": "SHA-256", + "content": "cd14c89f40eaece7f87f9679ebd6fdc23356c1ee31da031400c59806044ca4d1" + } + ] + }, + { + "bom-ref": "ff5c9963011047f0", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Calcutta", + "hashes": [ + { + "alg": "SHA-1", + "content": "1c7d91634cdf31b11ccec65b10af71e60d325be7" + }, + { + "alg": "SHA-256", + "content": "c71d7bc10d52c64f59eae8eac701c1b156bbec3fd9fe750970bed15e9b408fa5" + } + ] + }, + { + "bom-ref": "39bd109fd2abc788", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Chita", + "hashes": [ + { + "alg": "SHA-1", + "content": "25aacb126b3415f4df339ef5bf9d933c572df6cf" + }, + { + "alg": "SHA-256", + "content": "3bc537b6c3f62fbcd134ce4c8e58c351a5770b9216f2483f1e36d8ec9035b3bc" + } + ] + }, + { + "bom-ref": "962e8138f1c1739f", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Choibalsan", + "hashes": [ + { + "alg": "SHA-1", + "content": "aee2340ec0d73e8717d29536f919ae6c0b2eac1e" + }, + { + "alg": "SHA-256", + "content": "6ea08272fe78ef15058b5821d053e907ea937db9bb6ca8f71cb9997a44c64315" + } + ] + }, + { + "bom-ref": "b03e7ab1211edcd0", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Colombo", + "hashes": [ + { + "alg": "SHA-1", + "content": "74b1b37eaeb1116450c92f6fd04cd4685f918bb1" + }, + { + "alg": "SHA-256", + "content": "60108a5aec08236b5e9132d33de72649cdf01f854c86d01a8bd609d820b569ba" + } + ] + }, + { + "bom-ref": "4b7504460cd473b3", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Dacca", + "hashes": [ + { + "alg": "SHA-1", + "content": "8a796bb4e40123f1645d268e342ae3a7ce468534" + }, + { + "alg": "SHA-256", + "content": "b17631c1fb3033ffde15391d2fbec4e3d29b846fd2cfb089898c6b61308eb7b2" + } + ] + }, + { + "bom-ref": "1056eec1b49d8621", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Damascus", + "hashes": [ + { + "alg": "SHA-1", + "content": "85feb76073847aaa72d5c1a12d2cbe0a765e4d9e" + }, + { + "alg": "SHA-256", + "content": "0f42d5702ee52944dde43071569de645a5d668a385c4a2e0cd8aa43d39d2ea21" + } + ] + }, + { + "bom-ref": "a96dbc37ef4af309", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Dili", + "hashes": [ + { + "alg": "SHA-1", + "content": "dd7cd762be47f9afc60962fc182d3dd78d2cf69f" + }, + { + "alg": "SHA-256", + "content": "1f691df244d73613de758975adca5454ee9a91821b3f4382ea9b793ef04b1fc4" + } + ] + }, + { + "bom-ref": "2a798adf8fe5e316", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Dubai", + "hashes": [ + { + "alg": "SHA-1", + "content": "b9f4bb0d046d524840453d3f3c88aebc4d15acd4" + }, + { + "alg": "SHA-256", + "content": "52c19684fb4943773d86c43f78c7ad7b46ae7557a8ae9ed16508342bd319678a" + } + ] + }, + { + "bom-ref": "d6051204ee19af6e", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Dushanbe", + "hashes": [ + { + "alg": "SHA-1", + "content": "1d6731f0b2b13355eda808d119cba8e22a85b380" + }, + { + "alg": "SHA-256", + "content": "e832524a0d020a34015e423182bec05920c1e73b4149aab1bb31b7479a0a8f4c" + } + ] + }, + { + "bom-ref": "224b7e96ea562ff2", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Famagusta", + "hashes": [ + { + "alg": "SHA-1", + "content": "c5ffa8a169584e44cd2d9543f7d888105dfb04f7" + }, + { + "alg": "SHA-256", + "content": "4a3e66759c060ff5d9e338169781678161df5b9acd9aec6146f1d4d3cfd9030b" + } + ] + }, + { + "bom-ref": "bbe818a5951bd166", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Gaza", + "hashes": [ + { + "alg": "SHA-1", + "content": "0826f27f9cc4b1ebd31259e5170c9d5bd5329693" + }, + { + "alg": "SHA-256", + "content": "d4d929f809e81c47ed0f187b8dc4dbd5abb68d4045d59c9064217aee0101211e" + } + ] + }, + { + "bom-ref": "e4be75d45f3afa7a", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Hebron", + "hashes": [ + { + "alg": "SHA-1", + "content": "d90742ba86aa995fc03f3c9640df67b46cb11746" + }, + { + "alg": "SHA-256", + "content": "0a34a339fd7d63ee4566dff8875ee351e058c4728a6451092a7e15685984c1ef" + } + ] + }, + { + "bom-ref": "5d4307a13a7f8b1a", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Ho_Chi_Minh", + "hashes": [ + { + "alg": "SHA-1", + "content": "c0bca9911f6048e950b4e2e5ce3e0b29238e348f" + }, + { + "alg": "SHA-256", + "content": "013ffccf1a05a9e7b509b55f6b949569dd9e676bfcce10c886fffe59745440e5" + } + ] + }, + { + "bom-ref": "e6086366cf9d69cc", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Hovd", + "hashes": [ + { + "alg": "SHA-1", + "content": "846d4572a744589252523b9eb24e43c3e20d7380" + }, + { + "alg": "SHA-256", + "content": "cdc65f913f2b67cd1d23286944546c42fabb64720b78aaf32f88605a1943689a" + } + ] + }, + { + "bom-ref": "bdff4cc3e72858c0", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Irkutsk", + "hashes": [ + { + "alg": "SHA-1", + "content": "d841d87562525bcd57f200f17a1ba12314fdcd5a" + }, + { + "alg": "SHA-256", + "content": "77ed8a38a9f3e4a65a5ded6a846089c4c8a60eb245c476f7ee20d62780303eef" + } + ] + }, + { + "bom-ref": "8512651fc18398aa", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Jakarta", + "hashes": [ + { + "alg": "SHA-1", + "content": "ed751a8a8ced3291285589653abc637f1d7f24bf" + }, + { + "alg": "SHA-256", + "content": "7ea1c3e53a0d3f40cb6d7724f1bacb4fca1cf0ae96d9ab42f00f2d30dc0dee3a" + } + ] + }, + { + "bom-ref": "d68da15c5bc6d333", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Jayapura", + "hashes": [ + { + "alg": "SHA-1", + "content": "ca2a2780d397283ae77b84dd353b87f869ec3a02" + }, + { + "alg": "SHA-256", + "content": "c6fa24de2e83f471878b8e10ecd68828eb3aba1f49ce462dac7721661386eb0c" + } + ] + }, + { + "bom-ref": "c5884679f43dd23e", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Kabul", + "hashes": [ + { + "alg": "SHA-1", + "content": "ab40907a8517feacf530dee564f2c55bdf4a54a0" + }, + { + "alg": "SHA-256", + "content": "386b98b95b19bbec52c6d8f334e04a178f4f99f2b8a1cea33c142375668d7227" + } + ] + }, + { + "bom-ref": "923248b90623f47c", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Kamchatka", + "hashes": [ + { + "alg": "SHA-1", + "content": "d06af9faa2f5e420abcd659585a482d4ea12d31e" + }, + { + "alg": "SHA-256", + "content": "a45d587c7134607cb6feade6af9a04203c38b1ed481f7c7ce8eb10e7cd972cac" + } + ] + }, + { + "bom-ref": "59d4420c34fba0ce", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Karachi", + "hashes": [ + { + "alg": "SHA-1", + "content": "7b2381e3b2392323f0279c97a7706ca3b4b7cbac" + }, + { + "alg": "SHA-256", + "content": "fc4b2a68ad79efadecf52f333fa19cbaa5dd084cdc9bf96ab8b65a75c559a370" + } + ] + }, + { + "bom-ref": "5951d98036a65b6b", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Kashgar", + "hashes": [ + { + "alg": "SHA-1", + "content": "2ed8cbea508c323cfc4b11ae1d2186e9b11a10c8" + }, + { + "alg": "SHA-256", + "content": "9ae8868df5441ce4ac33aaed777f5ea6883eb95050b7d66d1e5ec5648c9e3fcc" + } + ] + }, + { + "bom-ref": "753f43285d5fd82e", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Kathmandu", + "hashes": [ + { + "alg": "SHA-1", + "content": "af5c092e0e7b9ea3dde01895761552b52a9eff00" + }, + { + "alg": "SHA-256", + "content": "5c557b86c5f0fdd19d105afbd38bd9daaad1cd075e9efdbe80547ddca85ae5ae" + } + ] + }, + { + "bom-ref": "ada7a52c775c35c1", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Khandyga", + "hashes": [ + { + "alg": "SHA-1", + "content": "06f6bb734790985eab879598c5101dbed0c67aa2" + }, + { + "alg": "SHA-256", + "content": "0169f2ad82832f6466984cad9cc673fb4098ee15e14b21521ce54f37a3fa6de3" + } + ] + }, + { + "bom-ref": "d8cb00937e880b0f", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Krasnoyarsk", + "hashes": [ + { + "alg": "SHA-1", + "content": "969dcde7f9c3a26d76ccc1b93588893e2b22d5ea" + }, + { + "alg": "SHA-256", + "content": "9122ec3df9d2f1e1767edfbc9cce49e7cff95491cb9de234c4588f985eb361c8" + } + ] + }, + { + "bom-ref": "893c2e013324128c", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Kuala_Lumpur", + "hashes": [ + { + "alg": "SHA-1", + "content": "2b4631070726d586f76b9377454e71a954e189fa" + }, + { + "alg": "SHA-256", + "content": "268d3cc29dae9854fea1b9109da2873602c48806994d3f3df0b9ca9863fcf59b" + } + ] + }, + { + "bom-ref": "ec6574ac1adbf37d", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Kuching", + "hashes": [ + { + "alg": "SHA-1", + "content": "f70d463d17a65a6cdd69c5bfca9601f8bf43e80c" + }, + { + "alg": "SHA-256", + "content": "0d0c68d2cddcf9431056b27b884c89951de456a484fdf96a2b10c78faf195bd8" + } + ] + }, + { + "bom-ref": "0bdff9af0ab40a11", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Macao", + "hashes": [ + { + "alg": "SHA-1", + "content": "532a4a7527d7785e52cefee887e7b048e1ffd5d9" + }, + { + "alg": "SHA-256", + "content": "bc423d28d8ba83fb0ba6984472c46dc83c014dd4876b59f6c8e2a4d8761fc585" + } + ] + }, + { + "bom-ref": "b11f35770888a629", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Magadan", + "hashes": [ + { + "alg": "SHA-1", + "content": "db1c111bafa860ff65e664a77816189f824b8031" + }, + { + "alg": "SHA-256", + "content": "a32f022b2aa9b370f41866047c28b6d96007bec7e7f05e4fd1a2f06111057e8b" + } + ] + }, + { + "bom-ref": "df15b0d372b17d2d", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Makassar", + "hashes": [ + { + "alg": "SHA-1", + "content": "ac0380229d33532006c8646649ef60972e3b65cf" + }, + { + "alg": "SHA-256", + "content": "24fac901695ef43b73fa8b3cd9e4bf893ceb757c5200b6628ae6a0fc70f01956" + } + ] + }, + { + "bom-ref": "084c106a88e660a9", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Manila", + "hashes": [ + { + "alg": "SHA-1", + "content": "6954bc96e87b2a3530eef2e4bc19d1e184abf562" + }, + { + "alg": "SHA-256", + "content": "01cb854c5033bef7324b3102f4362206e1a792d703a478fe090135943b180392" + } + ] + }, + { + "bom-ref": "464620d3f868cfff", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Nicosia", + "hashes": [ + { + "alg": "SHA-1", + "content": "9d7a0ebc8f361eb6f9633974dab221f99f4ae6e2" + }, + { + "alg": "SHA-256", + "content": "f2aa2a3f77a43b7558a7508a6cd6c50fdf7d991f9d64da5948fd9003923b1d72" + } + ] + }, + { + "bom-ref": "7c1b16a247cc1a3e", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Novokuznetsk", + "hashes": [ + { + "alg": "SHA-1", + "content": "c1dc59ef5900a474624f3c32828ad8512da6ed25" + }, + { + "alg": "SHA-256", + "content": "45df208266ce41dccdae6a47b6b78235a2e70c4eeb69b28e30125e03e7b9e0d3" + } + ] + }, + { + "bom-ref": "259d78b287d807e4", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Novosibirsk", + "hashes": [ + { + "alg": "SHA-1", + "content": "5200a3e45f27edbb8eed9aa73393bd466f3535af" + }, + { + "alg": "SHA-256", + "content": "53f555c078378d726db6d203c96bee7efc9b138c10cfd634f750b28cb6212ba5" + } + ] + }, + { + "bom-ref": "ba6703da29edb1c9", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Omsk", + "hashes": [ + { + "alg": "SHA-1", + "content": "e09b569a4006c139b44f9622120335653d5f487a" + }, + { + "alg": "SHA-256", + "content": "e32bfb976274657a892f5918b3f42e56c838dac040e06ac60c2d36318c80fd49" + } + ] + }, + { + "bom-ref": "7de837e686d86c9a", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Oral", + "hashes": [ + { + "alg": "SHA-1", + "content": "b204984139c932f387e13b0c8bf82a4b40891d6f" + }, + { + "alg": "SHA-256", + "content": "4ddd665f81f9ffe7fa3c7540f5065ddad72274da22913885eefe86951a857998" + } + ] + }, + { + "bom-ref": "6702f626976142c9", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Pontianak", + "hashes": [ + { + "alg": "SHA-1", + "content": "e49cfa5c2f0cfc52ca12d240c06d9ee2e4fd2ba5" + }, + { + "alg": "SHA-256", + "content": "2516ac2bc84fe6498a50bc8865ec00e3499b38f2f485403cd5028578a98d1fd8" + } + ] + }, + { + "bom-ref": "7f3e25ce84a0df12", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Pyongyang", + "hashes": [ + { + "alg": "SHA-1", + "content": "82b4f8b8e0ae8e4e1be46ba8082ba4e08c526d02" + }, + { + "alg": "SHA-256", + "content": "a108bfd54c6c22fbc67177c281c1058dfb1f00f40803ffc04fda5f41d4ba6505" + } + ] + }, + { + "bom-ref": "1e1bb79e4744d4ba", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Qostanay", + "hashes": [ + { + "alg": "SHA-1", + "content": "93aad277a6e3665bc5b532f67e3ac17763afb9de" + }, + { + "alg": "SHA-256", + "content": "b763af98dc579384866d60e3541d7f87c10b492310a4bdd3f927d28d091edeca" + } + ] + }, + { + "bom-ref": "57566a9b5fe197d1", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Qyzylorda", + "hashes": [ + { + "alg": "SHA-1", + "content": "f0f7be3b155e18d1e8c4fade0ccfb4e6dc255e20" + }, + { + "alg": "SHA-256", + "content": "e116692a053d3b100258a742dd5577df8ae1e262d0f23830606c87b80031d4a2" + } + ] + }, + { + "bom-ref": "3db84d13ebd2df07", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Rangoon", + "hashes": [ + { + "alg": "SHA-1", + "content": "247d6b94633bae9d97078e96267e69ef127c305a" + }, + { + "alg": "SHA-256", + "content": "1b4605825adbae3c7136f3f055d7cbac76faad62703516eaf94fc8d10e1df3ad" + } + ] + }, + { + "bom-ref": "8df961a8b187d4de", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Sakhalin", + "hashes": [ + { + "alg": "SHA-1", + "content": "00456e0df377d09389485512efc26c7ed8cf976f" + }, + { + "alg": "SHA-256", + "content": "d6af67dd853ea20ec92aa39fdd647b70ec329606e7565536030dbdd70f062148" + } + ] + }, + { + "bom-ref": "e70d343fcac9db89", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Samarkand", + "hashes": [ + { + "alg": "SHA-1", + "content": "e9999b0f3a616c0bd2fee0323464683205c33f2e" + }, + { + "alg": "SHA-256", + "content": "fd928b56ff2b6fdf1e28c198d8871e87979473109dfc395a51d8aaed0efb5924" + } + ] + }, + { + "bom-ref": "3f8e8dd535c7f6bc", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Srednekolymsk", + "hashes": [ + { + "alg": "SHA-1", + "content": "06e107b0f1fdc59b32b0916795a5a80115a3ff93" + }, + { + "alg": "SHA-256", + "content": "35c545e24d61a31f5fd4fa712d8b6cc09ecbdfddee10e5b859d6b29e57d98806" + } + ] + }, + { + "bom-ref": "108ebff903f9595b", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Tashkent", + "hashes": [ + { + "alg": "SHA-1", + "content": "c7b429dbc1dfafdb6baeb2c5aa4fbbce2c32c886" + }, + { + "alg": "SHA-256", + "content": "8674eb501cd25c540258e94006ce151f91f653849e800aa97986551b89ead688" + } + ] + }, + { + "bom-ref": "952f27c87b4cc5b8", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Tbilisi", + "hashes": [ + { + "alg": "SHA-1", + "content": "f3b1e7531ab8864b9d87e7163e53a4114ce14c00" + }, + { + "alg": "SHA-256", + "content": "bc88efdf57da66aaa71c15d8fbc36d87242adca776e103ddd5531aa45ca21177" + } + ] + }, + { + "bom-ref": "6d676d8ad7a1e307", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Thimbu", + "hashes": [ + { + "alg": "SHA-1", + "content": "9b3c82077ec322cea9d996df4b0127ed4130a137" + }, + { + "alg": "SHA-256", + "content": "e54c4d565a4be5f34209ba351c7aadd1071dccf8a0380d69e06e936a425203a2" + } + ] + }, + { + "bom-ref": "5b7b39cf7e4a68f4", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Tomsk", + "hashes": [ + { + "alg": "SHA-1", + "content": "e5e681c82cb11b4125a8e0359a80314feb766f9a" + }, + { + "alg": "SHA-256", + "content": "1142db40b91678b4ab3c2935346f6f0bce6a84353392a1ab97dbeba0ee1582d5" + } + ] + }, + { + "bom-ref": "821f53806787ed0b", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Ulaanbaatar", + "hashes": [ + { + "alg": "SHA-1", + "content": "8f54e74dd4a2f8bad4fdb029b8be5929e0273b03" + }, + { + "alg": "SHA-256", + "content": "17a31d0ea8eaf0d1484b54e53d6803eaeaa832740d521a340e1d5c073de97e22" + } + ] + }, + { + "bom-ref": "d0bd592ae3319480", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Ust-Nera", + "hashes": [ + { + "alg": "SHA-1", + "content": "0625c1c29719a7781d4081fc941fdacafc509488" + }, + { + "alg": "SHA-256", + "content": "ab0edbe8871813e11548d34641521878aca12634a44683945d24ef85016bd0aa" + } + ] + }, + { + "bom-ref": "9b48aa930088cd28", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Vladivostok", + "hashes": [ + { + "alg": "SHA-1", + "content": "15aaadfee879261a6374129d79484f3c8e358b94" + }, + { + "alg": "SHA-256", + "content": "32eb6e1405aa048e6cba3396d4b09ad04ed05c239dbcb054f82e4dbbd2dbbd31" + } + ] + }, + { + "bom-ref": "b49086bca82a35d1", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Yakutsk", + "hashes": [ + { + "alg": "SHA-1", + "content": "116dfcc0c33b37de379c16208d66d786eeac3567" + }, + { + "alg": "SHA-256", + "content": "545036a8cb48068d5f6f98bd28eb90bb6c25d3136b58f01486b875780519208e" + } + ] + }, + { + "bom-ref": "8015d591b3e96212", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Yekaterinburg", + "hashes": [ + { + "alg": "SHA-1", + "content": "2407b7fc5239e02a80cb9e761d4ac7af93b9739f" + }, + { + "alg": "SHA-256", + "content": "8819eff29a90ad2c0d3588f56d6e974d99419e80104bfc9313274f0a33e0b590" + } + ] + }, + { + "bom-ref": "d5ded6ee265c2d44", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Yerevan", + "hashes": [ + { + "alg": "SHA-1", + "content": "5a88ec2e2eddef2b2098c9d3c62d6ac121ca68d9" + }, + { + "alg": "SHA-256", + "content": "2e456011e9e0d8c1958c17bf34116fe89a3239028010e7db61ae46012c8f2304" + } + ] + }, + { + "bom-ref": "64227921b38acf09", + "type": "file", + "name": "/usr/share/zoneinfo/Atlantic/Azores", + "hashes": [ + { + "alg": "SHA-1", + "content": "5eca289c7d93b0d37c40086b38710d146113f6da" + }, + { + "alg": "SHA-256", + "content": "d3dfcd9c77d1e2a49e15c87aff9e43f0d5283a532b4bc6c7afa22fa14fa0c377" + } + ] + }, + { + "bom-ref": "43a1a766b1b03130", + "type": "file", + "name": "/usr/share/zoneinfo/Atlantic/Bermuda", + "hashes": [ + { + "alg": "SHA-1", + "content": "584f1071a47fb83c2f6f8f4af3c68faf4febbe72" + }, + { + "alg": "SHA-256", + "content": "8800de9ba0f7cf61fe38433d9a29591ec0d8a1192f1f3d5dfcf6f6ec912002b7" + } + ] + }, + { + "bom-ref": "d6b5fa825fe980cb", + "type": "file", + "name": "/usr/share/zoneinfo/Atlantic/Canary", + "hashes": [ + { + "alg": "SHA-1", + "content": "1acb0c3f885aefcc8f2a375b70cc917f8ebb4638" + }, + { + "alg": "SHA-256", + "content": "4617cb1aa75514003f181908e9ccfc1d3d062ef22bb0196867dbe530ec2e1416" + } + ] + }, + { + "bom-ref": "bd23fd3e15073eb3", + "type": "file", + "name": "/usr/share/zoneinfo/Atlantic/Cape_Verde", + "hashes": [ + { + "alg": "SHA-1", + "content": "d55ac68b63124c12de79af743813c20afb59d63b" + }, + { + "alg": "SHA-256", + "content": "f7a81342ed5884f34fdc07e6ebf8f0f322e41ba3e2d399d7f516b4d28771350b" + } + ] + }, + { + "bom-ref": "df78f42601eeda7b", + "type": "file", + "name": "/usr/share/zoneinfo/Atlantic/Faeroe", + "hashes": [ + { + "alg": "SHA-1", + "content": "13bbd1c04101cdb566ea5598921896abc7a4fdb1" + }, + { + "alg": "SHA-256", + "content": "6b1a5769f8ffa2ec29bf298dffd7fb324e625e36fc527c14bb66b6520e6f76a7" + } + ] + }, + { + "bom-ref": "df743cbe2c10a2a3", + "type": "file", + "name": "/usr/share/zoneinfo/Atlantic/Madeira", + "hashes": [ + { + "alg": "SHA-1", + "content": "327b25bebe9a1dfc0d577e1af5712d3169e03db5" + }, + { + "alg": "SHA-256", + "content": "24c616780589fb6a7e22913e3402522517ba4a7460738ccd38f1a3a0e4a21f40" + } + ] + }, + { + "bom-ref": "adce0be8b06669b7", + "type": "file", + "name": "/usr/share/zoneinfo/Atlantic/South_Georgia", + "hashes": [ + { + "alg": "SHA-1", + "content": "7c62036fdc9aac7f1fb155bd83e5a528a87a08dc" + }, + { + "alg": "SHA-256", + "content": "f745dca3964c6ae3e8b88166e0db6df487ee8f6e6ad7fb1ac3ad4e6ab2e0a361" + } + ] + }, + { + "bom-ref": "f65e1fbc2956bdf7", + "type": "file", + "name": "/usr/share/zoneinfo/Atlantic/Stanley", + "hashes": [ + { + "alg": "SHA-1", + "content": "9681c85f05247c8f0e74612317dd578dde7e951d" + }, + { + "alg": "SHA-256", + "content": "57ee27fac7d72ba2c34725702e5876aa27462a09ac4b841b40122afe103a4c41" + } + ] + }, + { + "bom-ref": "ec9bb7ea669b58bb", + "type": "file", + "name": "/usr/share/zoneinfo/Australia/ACT", + "hashes": [ + { + "alg": "SHA-1", + "content": "f9a74134cba1ebe57c4ba568f15737d0f2f8e704" + }, + { + "alg": "SHA-256", + "content": "5089cd93b5102c5b1c8ae3dd9e42cd2255ae1e6a469484cadaa1f3692a7e6e79" + } + ] + }, + { + "bom-ref": "e534309133b8b657", + "type": "file", + "name": "/usr/share/zoneinfo/Australia/Adelaide", + "hashes": [ + { + "alg": "SHA-1", + "content": "910897528f237dbd7cda52c2289570d313c9cbaf" + }, + { + "alg": "SHA-256", + "content": "ad5289c19982758edd995a5f5ad5f8bf5611024d306f1b8188b8356932f633fd" + } + ] + }, + { + "bom-ref": "7f45306926eb0356", + "type": "file", + "name": "/usr/share/zoneinfo/Australia/Brisbane", + "hashes": [ + { + "alg": "SHA-1", + "content": "3655a0c8315063d62b85c3b8a977f1496e2c0a98" + }, + { + "alg": "SHA-256", + "content": "1b39bd80c21383d71e93a73d17579467fd15131e5ee0277f34c30413809f11af" + } + ] + }, + { + "bom-ref": "9d3431c3da82bd50", + "type": "file", + "name": "/usr/share/zoneinfo/Australia/Broken_Hill", + "hashes": [ + { + "alg": "SHA-1", + "content": "68a64d5a46dd309152466f559733cfd2f4f6ce74" + }, + { + "alg": "SHA-256", + "content": "794920e79f48b868598908f4ef72684108c4db6ac510c970a87c812a70b5e2fd" + } + ] + }, + { + "bom-ref": "a603154c357e74b2", + "type": "file", + "name": "/usr/share/zoneinfo/Australia/Currie", + "hashes": [ + { + "alg": "SHA-1", + "content": "b2d6c5837af83c814acd1283a7580482cc101863" + }, + { + "alg": "SHA-256", + "content": "1429d2cd2a0e2db83e016c66a011d4c429e9b2860356ed29375c5855bf728d2b" + } + ] + }, + { + "bom-ref": "5c30838fac5d4dd9", + "type": "file", + "name": "/usr/share/zoneinfo/Australia/Darwin", + "hashes": [ + { + "alg": "SHA-1", + "content": "b84c0b2834e49dc895e82c2bee9ab13b16859653" + }, + { + "alg": "SHA-256", + "content": "fe250e8d59a4f96dd9f7fa78206839ebe77a89f55bcc8fe67c3ce6d2c8a9dfe2" + } + ] + }, + { + "bom-ref": "0c1d4d187e267e27", + "type": "file", + "name": "/usr/share/zoneinfo/Australia/Eucla", + "hashes": [ + { + "alg": "SHA-1", + "content": "5a4cfa85b9e8b442284a00679aedc9d5fa87b042" + }, + { + "alg": "SHA-256", + "content": "ad57bce0ab2a3a7c7477783fbf6ff4b25784889a08eba3bdf8104d63081a652d" + } + ] + }, + { + "bom-ref": "cb1cbfc3e7abbfdb", + "type": "file", + "name": "/usr/share/zoneinfo/Australia/LHI", + "hashes": [ + { + "alg": "SHA-1", + "content": "dcc2512abf4a8ecb10a10775e2ae8a5dd8eae8e8" + }, + { + "alg": "SHA-256", + "content": "09626975ee86238fd5f85bc275eafad83bc696709d78144cc0bd4ced75acaf2d" + } + ] + }, + { + "bom-ref": "77a97baa5667b007", + "type": "file", + "name": "/usr/share/zoneinfo/Australia/Lindeman", + "hashes": [ + { + "alg": "SHA-1", + "content": "a49c32c7a0951d0cbd57c97ebf2246f653b4f48b" + }, + { + "alg": "SHA-256", + "content": "6d064110c6d10fb62ce0bfff5f14b40a80dfbec2b656406158392555146ad378" + } + ] + }, + { + "bom-ref": "778a01729746a49f", + "type": "file", + "name": "/usr/share/zoneinfo/Australia/Melbourne", + "hashes": [ + { + "alg": "SHA-1", + "content": "717e55a8e8978f525b3dcb14f6194e87902afec1" + }, + { + "alg": "SHA-256", + "content": "e2a531c30cac43b4090464d519ef17bebe99cfd9cf6adb5ba8bc76b7157b5176" + } + ] + }, + { + "bom-ref": "193e42defa3d2570", + "type": "file", + "name": "/usr/share/zoneinfo/Australia/Perth", + "hashes": [ + { + "alg": "SHA-1", + "content": "058331354b135202d43ae5dae2746455b0f0efb0" + }, + { + "alg": "SHA-256", + "content": "7bf635f2b826c7f98b52cef52f779e3b93335f5808b8f6deee8ff0a3fcd35078" + } + ] + }, + { + "bom-ref": "d27996c3eca10fbe", + "type": "file", + "name": "/usr/share/zoneinfo/CET", + "hashes": [ + { + "alg": "SHA-1", + "content": "02ac393901944e270a2e47c39e34dd6a85a86cc1" + }, + { + "alg": "SHA-256", + "content": "3c0029045f6f80bc5a84f1bb8ed36230454759c54578eb9a8c195d14f442213c" + } + ] + }, + { + "bom-ref": "c52f0842f08ae7a1", + "type": "file", + "name": "/usr/share/zoneinfo/CST6CDT", + "hashes": [ + { + "alg": "SHA-1", + "content": "78c416c796c41bc6e6171801fe0857895510ef41" + }, + { + "alg": "SHA-256", + "content": "44e8b569e60027647f9801a33d0b43be0106a6d3f6cd059677e0ed65c9b8b831" + } + ] + }, + { + "bom-ref": "eb8d1f507e0ed293", + "type": "file", + "name": "/usr/share/zoneinfo/Chile/EasterIsland", + "hashes": [ + { + "alg": "SHA-1", + "content": "af473be91814f80a320fc1fc675b42e5edfffd02" + }, + { + "alg": "SHA-256", + "content": "d344955a3a8dea47b50a72d2af7fde01a6a27365bef0fefb2c11429a4f5dfca1" + } + ] + }, + { + "bom-ref": "1f80e0801d8107c8", + "type": "file", + "name": "/usr/share/zoneinfo/Cuba", + "hashes": [ + { + "alg": "SHA-1", + "content": "8535bea419dc64beaa2aa452e0ee6d304869693d" + }, + { + "alg": "SHA-256", + "content": "7871f875a8819f415c292519db1590556a0dc1a6ce691bf4f7af55e6716fb894" + } + ] + }, + { + "bom-ref": "40402bbd25f69f6b", + "type": "file", + "name": "/usr/share/zoneinfo/EET", + "hashes": [ + { + "alg": "SHA-1", + "content": "78c398114cc733ec0912a80574fa67c7c4ccf7c0" + }, + { + "alg": "SHA-256", + "content": "0bf6d2669ab45c13a1c9be47c351972feb671770b90a61d9d313fc60b721b2b4" + } + ] + }, + { + "bom-ref": "17bfbbe873e2f689", + "type": "file", + "name": "/usr/share/zoneinfo/EST", + "hashes": [ + { + "alg": "SHA-1", + "content": "d90139b75126d98f5c15b249e6192a38424944c3" + }, + { + "alg": "SHA-256", + "content": "c9e75f112a498ff00344551c3c5c4a62bd15d5c218ee951f4363ab218c5d88eb" + } + ] + }, + { + "bom-ref": "eecb52e045a70a07", + "type": "file", + "name": "/usr/share/zoneinfo/EST5EDT", + "hashes": [ + { + "alg": "SHA-1", + "content": "c8e4c1c29f53514483944f1114529b696635be0e" + }, + { + "alg": "SHA-256", + "content": "79ce27e03a2752091e8a49cc7e7ccc9ac202d6c52dd5d224571fe82262fbeec8" + } + ] + }, + { + "bom-ref": "b1ba23b79617a73d", + "type": "file", + "name": "/usr/share/zoneinfo/Egypt", + "hashes": [ + { + "alg": "SHA-1", + "content": "bc2e0cd8e76aa4788536cb273388ced307b118b3" + }, + { + "alg": "SHA-256", + "content": "279bbe1fa62da67387c63593b60bb655252ef5c8f189cf43469087740af2b4fc" + } + ] + }, + { + "bom-ref": "9bb02ab995b6de5e", + "type": "file", + "name": "/usr/share/zoneinfo/Eire", + "hashes": [ + { + "alg": "SHA-1", + "content": "4bc6cc19e0d28ab61e5092859b1ef4131bcd2d52" + }, + { + "alg": "SHA-256", + "content": "44bdc5d63e5b1663867491cc0d30b81820fc8694ad0fd5ef500ba8ac6b7fba5f" + } + ] + }, + { + "bom-ref": "49fed6b7b97630d4", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT+1", + "hashes": [ + { + "alg": "SHA-1", + "content": "ff6caab6b80254a6f9fae7b0623873cf53374247" + }, + { + "alg": "SHA-256", + "content": "35d004edb2a0b1137ae1ea3659ef8e95a753330f0713fc94929d0f79d8021b07" + } + ] + }, + { + "bom-ref": "38eecd451ec6fd54", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT+10", + "hashes": [ + { + "alg": "SHA-1", + "content": "0f657867c23d4a51ee9d4cede010655f2a3320dc" + }, + { + "alg": "SHA-256", + "content": "4762603f3f51c0d5063ea549f9a578b7ebf26e47fd7109a6e34495ac3e09b2ed" + } + ] + }, + { + "bom-ref": "2697a77d33a9c44d", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT+11", + "hashes": [ + { + "alg": "SHA-1", + "content": "88c627e90a17c33b9fd1bdee7326653db7b7bd06" + }, + { + "alg": "SHA-256", + "content": "8a23521d6e93326291dbdacf2857f8a78970bef3dd93a53557da4cc2e79c36ba" + } + ] + }, + { + "bom-ref": "3f17a613bb1cda68", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT+12", + "hashes": [ + { + "alg": "SHA-1", + "content": "14413540aa4fdfbbde51aa2b58af9ee086f18448" + }, + { + "alg": "SHA-256", + "content": "ec7046f7e41252f839950ce04e3f20e41ba228e678aae2a45b5b050ba990e626" + } + ] + }, + { + "bom-ref": "3fdc4a2af3bd7d9b", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT+2", + "hashes": [ + { + "alg": "SHA-1", + "content": "f4a593c22d5200a472782ba1795ee5cddcd7e5bd" + }, + { + "alg": "SHA-256", + "content": "21319b8c2634a8349e84c3bef422998f6dd4f79bad91f79fa38145c1f6b694dd" + } + ] + }, + { + "bom-ref": "2a6200d6fc5dba08", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT+3", + "hashes": [ + { + "alg": "SHA-1", + "content": "91c0b6105495ccf38ec36ddcdbddbd4c51f42bde" + }, + { + "alg": "SHA-256", + "content": "e7861defa0a8bc5e0ee58d8a7a993ac22950e3fed608c9532c680b74ef6cc67f" + } + ] + }, + { + "bom-ref": "82765e6ae189d6fe", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT+4", + "hashes": [ + { + "alg": "SHA-1", + "content": "1342063a3314f801239931063fd38527f4ba752a" + }, + { + "alg": "SHA-256", + "content": "0f0ab77c5beca68231484090c38ecc1ce211b135511d5431dc1994f8a2580c89" + } + ] + }, + { + "bom-ref": "a93ea18a3c1bdd7d", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT+5", + "hashes": [ + { + "alg": "SHA-1", + "content": "6350d13d9df8746de3859aa9f7ababe515d73029" + }, + { + "alg": "SHA-256", + "content": "be7cef32cf0094520b344fc461bc28747e617d6043b8be0b0871e87225ee8568" + } + ] + }, + { + "bom-ref": "a1e1b8a6c7c15904", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT+6", + "hashes": [ + { + "alg": "SHA-1", + "content": "118df72ae51c29a80d0d07c508c66697df06a23c" + }, + { + "alg": "SHA-256", + "content": "d285eec873a91b2660ff29816304693056ee61ac1e9bd3485e26c4bcc067e041" + } + ] + }, + { + "bom-ref": "9edd80d89dd59a0e", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT+7", + "hashes": [ + { + "alg": "SHA-1", + "content": "e12192613742e97dbe07492c4d67462bca7093c4" + }, + { + "alg": "SHA-256", + "content": "631be5659ae83739e1056e088289b642caf4d07be5887f74c6cc954e2b0e9e5c" + } + ] + }, + { + "bom-ref": "3960e3f162dce78b", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT+8", + "hashes": [ + { + "alg": "SHA-1", + "content": "5595167f0801b6e827a3d66fbaa7427e341c2f51" + }, + { + "alg": "SHA-256", + "content": "f0ede5d811e0d8b283b18b80aebe6ce617267664ec313fc5bf01e2880a8c4229" + } + ] + }, + { + "bom-ref": "5c84955cf5edcd2c", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT+9", + "hashes": [ + { + "alg": "SHA-1", + "content": "4203286566c0f26919ecfad16a808bc1fbee1c8e" + }, + { + "alg": "SHA-256", + "content": "6aab552f947986b00b2d43ff28a3257ab7b88967322b9ce067e45c5ea96cc014" + } + ] + }, + { + "bom-ref": "dca386e182c8a9ea", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT-1", + "hashes": [ + { + "alg": "SHA-1", + "content": "35ba0f95113aec023762c431629c0c1de812abfb" + }, + { + "alg": "SHA-256", + "content": "d5f7f0682e71000de343fce27f2e8cff9e37e50cb064bf0f61245dc7ff6806ed" + } + ] + }, + { + "bom-ref": "7262ab5c2ec06695", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT-10", + "hashes": [ + { + "alg": "SHA-1", + "content": "58d3f666db188e7e659d09e92c6e1216d14d80ba" + }, + { + "alg": "SHA-256", + "content": "2fdcfd00c1be46329891da92b46f49258b35c09eb9e1103e3789a3d58338eb78" + } + ] + }, + { + "bom-ref": "bd325ed314e9bfa2", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT-11", + "hashes": [ + { + "alg": "SHA-1", + "content": "7b13e982a8abe452b2ce6b22e1a931492e13cb43" + }, + { + "alg": "SHA-256", + "content": "4439c8a7d5a8c87c47b7a81bd2e9534c8c676f610d4038fdf3b3951089a5db91" + } + ] + }, + { + "bom-ref": "cf51e1936a747811", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT-12", + "hashes": [ + { + "alg": "SHA-1", + "content": "892df33e9cf33799bf642195ca2f4a06c037d0b0" + }, + { + "alg": "SHA-256", + "content": "5f0c2c21cec4020ec3116c038ca9ff5e5a9e863ddb7fc0beba7136c321b05851" + } + ] + }, + { + "bom-ref": "e1f71cb482925dde", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT-13", + "hashes": [ + { + "alg": "SHA-1", + "content": "b679b71f4900b409327dd022162f719f1c6b1665" + }, + { + "alg": "SHA-256", + "content": "0c4e6bff6354406378f2bdb165fae025fa100fe8c7d76c6cfaabb716f6f096ca" + } + ] + }, + { + "bom-ref": "fecd4669bb849cfb", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT-14", + "hashes": [ + { + "alg": "SHA-1", + "content": "04874a155c42a87a6d0d105487f0a95246f7b8ef" + }, + { + "alg": "SHA-256", + "content": "4685f92efa5bbdb625dd8d6454a340af8ac0510308b6b66847ad5f7bc3c4fc84" + } + ] + }, + { + "bom-ref": "577fed2dc33b767b", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT-2", + "hashes": [ + { + "alg": "SHA-1", + "content": "ced9f38a88567ccc24f6afceaa23a99fc437cfa8" + }, + { + "alg": "SHA-256", + "content": "530335b26ac0306edc8f0683a830bc1e7f5111ad228df4b74c197d2cb9c31387" + } + ] + }, + { + "bom-ref": "a0733769508c8ed5", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT-3", + "hashes": [ + { + "alg": "SHA-1", + "content": "5601017498006e3a9a539ceb66ff028f156f4469" + }, + { + "alg": "SHA-256", + "content": "a59e1e4a707222ac22fefb3a6dc495cef266872a94d51e5ca862ffde74ef0c4c" + } + ] + }, + { + "bom-ref": "f6979a083902f9db", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT-4", + "hashes": [ + { + "alg": "SHA-1", + "content": "8797e3fd301f6a17c926ec2f7983a5b245c7f0b3" + }, + { + "alg": "SHA-256", + "content": "7d6471f8835da5e7906f8220dd9674b664573fee650f0a28b5ab51aa54a4524e" + } + ] + }, + { + "bom-ref": "ee210b8616d39cbe", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT-5", + "hashes": [ + { + "alg": "SHA-1", + "content": "bc651984d42e07846a5d027c4d539d48b6ba92ff" + }, + { + "alg": "SHA-256", + "content": "33a439130048c8b6400ad082b2e4011c7b85fafe9171e13110aa86f266bedfa4" + } + ] + }, + { + "bom-ref": "cba6f9dd51d37154", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT-6", + "hashes": [ + { + "alg": "SHA-1", + "content": "054e38de39b951b82ef404bc3ec3a6714903f803" + }, + { + "alg": "SHA-256", + "content": "f2ae16bd9a3a9a75788ca13a281bcc39567c93aaf5ad5402fcbfebac473b6cf7" + } + ] + }, + { + "bom-ref": "b84ce12f087293ff", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT-7", + "hashes": [ + { + "alg": "SHA-1", + "content": "f3f769440f44515a643d813d83a92bb8f5b9db0c" + }, + { + "alg": "SHA-256", + "content": "b0e37d9bf496f375b7c024e81b6ae5943ccbace0ffbecb684d8bd1847c5cb93a" + } + ] + }, + { + "bom-ref": "9f708e3c1a1def59", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT-8", + "hashes": [ + { + "alg": "SHA-1", + "content": "00931bd6e94afaa960f1388e41233e3db5e3234a" + }, + { + "alg": "SHA-256", + "content": "5ec67811fbce13ee23123eee60791be8cb5f9c84451ae0d8297738af9b7f0cca" + } + ] + }, + { + "bom-ref": "b040cb8c2e1c37c6", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT-9", + "hashes": [ + { + "alg": "SHA-1", + "content": "2da37c3d09d24399bf2092ec69915043d376e145" + }, + { + "alg": "SHA-256", + "content": "16ed57cd7c3577fdc22d57683841e922b208a535e6125e686be4f8702a75f485" + } + ] + }, + { + "bom-ref": "ba498bc3c3f9dd0f", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Amsterdam", + "hashes": [ + { + "alg": "SHA-1", + "content": "91eb366d96b507ecf104b8a06c33504948a6948b" + }, + { + "alg": "SHA-256", + "content": "8a813ac6b8d1b68a7960242cae5325a2269fd1c791b203f8d22f2dfa3b61ba87" + } + ] + }, + { + "bom-ref": "63253ec9af6749d9", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Andorra", + "hashes": [ + { + "alg": "SHA-1", + "content": "7cde74ca7b99326a70d9c02bfcc34a90ae365e17" + }, + { + "alg": "SHA-256", + "content": "add5505c473225e33a884a02105610a9b95003f429195624b953c18f771317af" + } + ] + }, + { + "bom-ref": "5e325a8a6045edb0", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Astrakhan", + "hashes": [ + { + "alg": "SHA-1", + "content": "ed0e0d5ffa5faeada90736decaaf26063e828846" + }, + { + "alg": "SHA-256", + "content": "a027561f493c02a04d699903a08e9e78ac76eb3a719c4749d9ae9480418baad8" + } + ] + }, + { + "bom-ref": "f9ee81a2f643350f", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Athens", + "hashes": [ + { + "alg": "SHA-1", + "content": "a1fefa96ad4a9d2b967e1ff90697c8a95e291f17" + }, + { + "alg": "SHA-256", + "content": "799090551202c0b8417f836facf75049573dd1c27b5e6adeb584fcc414051139" + } + ] + }, + { + "bom-ref": "9ea7a1bf7b9bbcdf", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Belgrade", + "hashes": [ + { + "alg": "SHA-1", + "content": "44797e1d8343743f9f77ee24527db98491c1609e" + }, + { + "alg": "SHA-256", + "content": "e957543623baaba84999b40188e7e0948471b75a8ff4f88abb267e773feb8e5c" + } + ] + }, + { + "bom-ref": "4038b0642712af89", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Berlin", + "hashes": [ + { + "alg": "SHA-1", + "content": "99ba42dd86467512b1d1699a6129bbd5ce7388c2" + }, + { + "alg": "SHA-256", + "content": "7eb93dcba603d528fdf536160ef6911c16f834afcf88ce23a382b97ff28319d4" + } + ] + }, + { + "bom-ref": "e1a9058bbf771438", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Bratislava", + "hashes": [ + { + "alg": "SHA-1", + "content": "0c1fecf11fdd8c8d20988f0bca6936bf95e00aaf" + }, + { + "alg": "SHA-256", + "content": "a50be470a22de9def3e4fec7bcd95d5d7e24e5b11edf448a82b04d19da3d3e52" + } + ] + }, + { + "bom-ref": "27005acb61c3774b", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Brussels", + "hashes": [ + { + "alg": "SHA-1", + "content": "5138859e805d84b20b63d1fe5490ff255ee82858" + }, + { + "alg": "SHA-256", + "content": "11497c2fd62834d7c1ab568fb47e5947a7f5a63378dc723d7f73ccab21da5342" + } + ] + }, + { + "bom-ref": "56b56be304570f21", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Bucharest", + "hashes": [ + { + "alg": "SHA-1", + "content": "8a63b772f37d2ae386b0455fd0e59a87e0218b59" + }, + { + "alg": "SHA-256", + "content": "3b3a0017333b2f466e59c8ac3dc0cf7aa4f0a4608040a3180f752b19d6a93526" + } + ] + }, + { + "bom-ref": "a5511a586f130b76", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Budapest", + "hashes": [ + { + "alg": "SHA-1", + "content": "59ea894eecb461e9f5fe18f47a2ff7faadfc4c3b" + }, + { + "alg": "SHA-256", + "content": "b98bde5a204ae4b583174d206bc77005e96a3121e217782b3255ddf3de9fd4f9" + } + ] + }, + { + "bom-ref": "7733637d10d6fe3a", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Busingen", + "hashes": [ + { + "alg": "SHA-1", + "content": "75bca683f46cb7b34728cbec259e91e4f4447bfd" + }, + { + "alg": "SHA-256", + "content": "bc45f8c6c8190477cdaae46f77059fab74fde92a02fc57b733f07cb9a55e98a3" + } + ] + }, + { + "bom-ref": "008cd73832ad28f0", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Chisinau", + "hashes": [ + { + "alg": "SHA-1", + "content": "5fa517df491b152daca27eba1861cbb4cad6df09" + }, + { + "alg": "SHA-256", + "content": "5749f01c78d0c2fd50d0dc2280c1957ce0419edbfc7c4073c67e6da78153d8c8" + } + ] + }, + { + "bom-ref": "06ef7443be64692a", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Copenhagen", + "hashes": [ + { + "alg": "SHA-1", + "content": "bdb13d9ab968612b6e88666b575dc1924d396889" + }, + { + "alg": "SHA-256", + "content": "d2d9a359ef02d2afe293f429c4fd60fc04fbf8d1d8343c9b224dcfc116c011a8" + } + ] + }, + { + "bom-ref": "6595427f00eefc05", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Gibraltar", + "hashes": [ + { + "alg": "SHA-1", + "content": "e14236c7b6944713a4a0edbcd0cf0dedae46a330" + }, + { + "alg": "SHA-256", + "content": "c79088f67ba5d3fa9ad989bd573bfdef0e86c89e310ea70bc3e01e14dca1075e" + } + ] + }, + { + "bom-ref": "c0152a1e31231acb", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Helsinki", + "hashes": [ + { + "alg": "SHA-1", + "content": "f70cdd43ef4f7c47a29bbd1e3ebc915d42a646c7" + }, + { + "alg": "SHA-256", + "content": "ed7d89fae1fb40a9582edd7e03ed02d7fe81ba456b9c1ed8d6ee5f0b931aad45" + } + ] + }, + { + "bom-ref": "3fa34c27e010573d", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Kaliningrad", + "hashes": [ + { + "alg": "SHA-1", + "content": "d9313a3aa4b7b5bd519d3305db9eed390c09ec30" + }, + { + "alg": "SHA-256", + "content": "78018b1f78b60635b744bc5d78ca209f87c184a634ffe11510b3dfe885eed165" + } + ] + }, + { + "bom-ref": "8ac170b57e401a1e", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Kiev", + "hashes": [ + { + "alg": "SHA-1", + "content": "9f18dcc63d109a4b83a267f418e72dfe05bfd863" + }, + { + "alg": "SHA-256", + "content": "242912df3212e0725ded4aab25fd869c52f13c3ce619764a883adcbbd937afc5" + } + ] + }, + { + "bom-ref": "70cc4aa720a15c91", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Kirov", + "hashes": [ + { + "alg": "SHA-1", + "content": "c89ee11141a7669a0b6b08d779f977c04e06b6be" + }, + { + "alg": "SHA-256", + "content": "a44267313cba43fb671622af5b17cda285def184f6121e8ec6007164643e3c25" + } + ] + }, + { + "bom-ref": "16b6ba7b142cdb11", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Luxembourg", + "hashes": [ + { + "alg": "SHA-1", + "content": "ace67ea11b9557266507dca203b6634083ddb3f9" + }, + { + "alg": "SHA-256", + "content": "90b76259274c78a40f34aa5b58545b5409edfbba2fd08efa1b300896cb4062ee" + } + ] + }, + { + "bom-ref": "046c3621c6fc6a1e", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Madrid", + "hashes": [ + { + "alg": "SHA-1", + "content": "7486d3d7c6637773fc920cbbb366443fe2697478" + }, + { + "alg": "SHA-256", + "content": "74103ad1e48f71f4cd9b6d1c03dcd97b58d87bb8affb02b1d6967b204036ebd6" + } + ] + }, + { + "bom-ref": "a8920a40995602c6", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Malta", + "hashes": [ + { + "alg": "SHA-1", + "content": "a4eb2da99676eb54f10e9327ed68e47ee64b7407" + }, + { + "alg": "SHA-256", + "content": "7c4134c8d37bd159e31fd739e8b1b8203a9f3023788bd9c83b8109e361eee5d5" + } + ] + }, + { + "bom-ref": "502eac06b504bbe0", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Minsk", + "hashes": [ + { + "alg": "SHA-1", + "content": "93ee118b2776a73060ecf25b5206f233d44090ef" + }, + { + "alg": "SHA-256", + "content": "c82aa831a68fec1c918d23393d795fef9dbf4d0948791bcba6ba09f45b3826c4" + } + ] + }, + { + "bom-ref": "d36fc50c7bac0368", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Monaco", + "hashes": [ + { + "alg": "SHA-1", + "content": "e5959bb542d4390caf820c415da58e2f379fbe9f" + }, + { + "alg": "SHA-256", + "content": "991fc96ee87786ba55cfb3e8f1310ed84b418937a0f2cb72f3cf510417ae8deb" + } + ] + }, + { + "bom-ref": "193ffa5c24867bfd", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Paris", + "hashes": [ + { + "alg": "SHA-1", + "content": "4bc5f5ceb14882eb94674559fed6f4a9428d8718" + }, + { + "alg": "SHA-256", + "content": "e9e280ef5a4603e11f70b37762129ae4daa10635fdd96cac2a9e0559f4e7cbaf" + } + ] + }, + { + "bom-ref": "01cdf18e256dac63", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Riga", + "hashes": [ + { + "alg": "SHA-1", + "content": "5f80655c66e2737dc8eee9d2c622e39246138b85" + }, + { + "alg": "SHA-256", + "content": "79d10debbaa2743458d0dec1fb71d3c576cea80d245f84819da82a25d93c1401" + } + ] + }, + { + "bom-ref": "a6562413fbd39ac2", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Rome", + "hashes": [ + { + "alg": "SHA-1", + "content": "892f0a0fa8e336e53bfe6e5473299f8ab237f096" + }, + { + "alg": "SHA-256", + "content": "e878580b27d866d9803e3b82eed5c0b851ef55174e2b76e13caa5e741421a138" + } + ] + }, + { + "bom-ref": "b82fb9a9eb8437cb", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Samara", + "hashes": [ + { + "alg": "SHA-1", + "content": "08b92c8f3c911110d72768698ff4edc347f477c8" + }, + { + "alg": "SHA-256", + "content": "52278e6f22bf900faeda4266078cfa7fed25cc1d5653bd345cf3090fde6e9114" + } + ] + }, + { + "bom-ref": "b939279056550f2f", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Saratov", + "hashes": [ + { + "alg": "SHA-1", + "content": "328f9955d364c1c3930b1a1d65bec6be6bf832ed" + }, + { + "alg": "SHA-256", + "content": "29ab2a05f63412656a143515fe57218a8e19b9c916dfd05de15a87afcc0d9849" + } + ] + }, + { + "bom-ref": "0f703b0b907fd680", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Simferopol", + "hashes": [ + { + "alg": "SHA-1", + "content": "869aba8df03ae6b33637bdf117aaff2848e20e40" + }, + { + "alg": "SHA-256", + "content": "b1ee6f714fd88fd61fef6df54f95abacb80dd3036c25e9a10708fec9b11c34cf" + } + ] + }, + { + "bom-ref": "ccdadab633c7e459", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Sofia", + "hashes": [ + { + "alg": "SHA-1", + "content": "8bf90f00a0a67a3d3b48161fc945740fe4019695" + }, + { + "alg": "SHA-256", + "content": "16813fb30f2ebb782a806ce0664014ddfbf921890d32ec3d1398bd182bf9245c" + } + ] + }, + { + "bom-ref": "347f995714c443e9", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Stockholm", + "hashes": [ + { + "alg": "SHA-1", + "content": "52f93313dc34ddf0953210ef441d7162320285cd" + }, + { + "alg": "SHA-256", + "content": "07b242f9e3d8150663bfaf417fe7d209927fc299fac487789b70841956c35335" + } + ] + }, + { + "bom-ref": "b5122073a9398785", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Tallinn", + "hashes": [ + { + "alg": "SHA-1", + "content": "79a3d50fd287819f372692515a438aaf027e2790" + }, + { + "alg": "SHA-256", + "content": "e3c4ba916c25500c709c56395c040abad62a834fafaf5163a89974b7f66b019a" + } + ] + }, + { + "bom-ref": "8a75f4d1d419256d", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Tirane", + "hashes": [ + { + "alg": "SHA-1", + "content": "2eb38a0e1edf118f9d251f41510803e786c62e46" + }, + { + "alg": "SHA-256", + "content": "62dbc606a32a5f50ceca86c6f96d088ea689bced60a1623c986f045cde9c730a" + } + ] + }, + { + "bom-ref": "d9c6b4367b3b9229", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Ulyanovsk", + "hashes": [ + { + "alg": "SHA-1", + "content": "e568d5c9bcc6223e63e7ac10f064f76c6f93a2e4" + }, + { + "alg": "SHA-256", + "content": "9cfe87e108465369f14dbf5f8eed9285028f6500c09d06cc3e787be94c55cb91" + } + ] + }, + { + "bom-ref": "72639fabc5225d89", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Uzhgorod", + "hashes": [ + { + "alg": "SHA-1", + "content": "4ce66f6b1b5f293d6791d6410952bc93b2fc730c" + }, + { + "alg": "SHA-256", + "content": "098575b4ec6599758c85bcad8dd21d89bca213a9f890c0ead6defd14878705f3" + } + ] + }, + { + "bom-ref": "c7f182a2acb9fbba", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Vienna", + "hashes": [ + { + "alg": "SHA-1", + "content": "0b331488dd93646f22f2f77e19e320311b071f3a" + }, + { + "alg": "SHA-256", + "content": "116fab88b849fbbba59b136477814d2e0fa7d7f735166554d6e72a787cd2ccf8" + } + ] + }, + { + "bom-ref": "75dbe05015c449c7", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Vilnius", + "hashes": [ + { + "alg": "SHA-1", + "content": "2381fea618f5d7029b2a29753232733021337581" + }, + { + "alg": "SHA-256", + "content": "75adc0a906b39e283f5e5020984a36f34b4f58ef1d3099efbc899ff07f035f7e" + } + ] + }, + { + "bom-ref": "f1140613fb1babd7", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Volgograd", + "hashes": [ + { + "alg": "SHA-1", + "content": "df7f439877b13d7198dfa8c48ff72b87a2f0ec73" + }, + { + "alg": "SHA-256", + "content": "e8dd322bdb997a5de1885744c8e03b3e6c0eec2689712ad7e3f2ef05e0be5880" + } + ] + }, + { + "bom-ref": "abdee5a4682c15a0", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Zaporozhye", + "hashes": [ + { + "alg": "SHA-1", + "content": "1579a787fb93e6350aea43bfd42f7a603bb23373" + }, + { + "alg": "SHA-256", + "content": "b6c5127b52518818e3b4211e89e5e1e9a479cca65f7763a0afb145d512c38e34" + } + ] + }, + { + "bom-ref": "835a0ec5459f486d", + "type": "file", + "name": "/usr/share/zoneinfo/Factory", + "hashes": [ + { + "alg": "SHA-1", + "content": "390d3d7898a36ad1e31a939339fd7160e464ca54" + }, + { + "alg": "SHA-256", + "content": "46c9e49942a62722b9bf1737fcb8130dd160938faa7c035862ef02637c37aa1d" + } + ] + }, + { + "bom-ref": "99c3559661f7af29", + "type": "file", + "name": "/usr/share/zoneinfo/GB", + "hashes": [ + { + "alg": "SHA-1", + "content": "ebbbd8852b59532ffdb5c32b1623afdfa8231780" + }, + { + "alg": "SHA-256", + "content": "b14c486019e3cb259cf8235a0d6a4bc3ff6cfa726a165f1ea2df403c8ae31b86" + } + ] + }, + { + "bom-ref": "ba618cbc8be9a768", + "type": "file", + "name": "/usr/share/zoneinfo/GMT", + "hashes": [ + { + "alg": "SHA-1", + "content": "0e94823baf3e5865c79f728bf51191bab399070c" + }, + { + "alg": "SHA-256", + "content": "d7b39879094135d13efd282937690b43f48bb53597ce3e78697f48dcceaeb3ec" + } + ] + }, + { + "bom-ref": "1c1a36a77afb6a24", + "type": "file", + "name": "/usr/share/zoneinfo/HST", + "hashes": [ + { + "alg": "SHA-1", + "content": "2892dc88fbd47a7a0e16d03cc87c6d595ba38fef" + }, + { + "alg": "SHA-256", + "content": "44048bf7df61bdcf45972c13426b039f0d34d80947d60a2603183b3b6be4027f" + } + ] + }, + { + "bom-ref": "829c7064188b3c5d", + "type": "file", + "name": "/usr/share/zoneinfo/Hongkong", + "hashes": [ + { + "alg": "SHA-1", + "content": "d326333ca3e2edca7f786918c7951a06f1c44aba" + }, + { + "alg": "SHA-256", + "content": "680a46ee9866bd0c8435fef70694663c1e8ca2ba1e50ff2979ad62f27295707a" + } + ] + }, + { + "bom-ref": "1fea6136b9ed0b2b", + "type": "file", + "name": "/usr/share/zoneinfo/Iceland", + "hashes": [ + { + "alg": "SHA-1", + "content": "3aa67a08d552bd8051258ce645372b22c558d7c6" + }, + { + "alg": "SHA-256", + "content": "9cdcea6aa1eed8276d3f6620e0c0ffae9cfcc3722c443ea6ba39147975eafaa3" + } + ] + }, + { + "bom-ref": "69ad588bc4d64b6e", + "type": "file", + "name": "/usr/share/zoneinfo/Indian/Chagos", + "hashes": [ + { + "alg": "SHA-1", + "content": "326a413bc818167376dd2fc9c1ac14a9dd416f11" + }, + { + "alg": "SHA-256", + "content": "f9d2fc010d11285d8430248e7a9ca16c5fe67949e768866f00b3be70aa0ea871" + } + ] + }, + { + "bom-ref": "775a8f3f1323fae8", + "type": "file", + "name": "/usr/share/zoneinfo/Indian/Christmas", + "hashes": [ + { + "alg": "SHA-1", + "content": "1e62a2bf7c15beeb78d1c062b226331db4446a65" + }, + { + "alg": "SHA-256", + "content": "6d094a3d9b022ed04fc53e4a665588bd73f4eeaee9c23667b46944bac5dbbe05" + } + ] + }, + { + "bom-ref": "ed832f9476921c56", + "type": "file", + "name": "/usr/share/zoneinfo/Indian/Cocos", + "hashes": [ + { + "alg": "SHA-1", + "content": "7761aa167cd699a73e0d0c70c7f1a00a699b95ad" + }, + { + "alg": "SHA-256", + "content": "3a57c446d6734a074659b854ed56cec53c40831a33c1052ce6ef4b5f0f6b0009" + } + ] + }, + { + "bom-ref": "225a94bd38ac0558", + "type": "file", + "name": "/usr/share/zoneinfo/Indian/Kerguelen", + "hashes": [ + { + "alg": "SHA-1", + "content": "dd9391ef00bf4781c1dae786c233c8a81825bc3a" + }, + { + "alg": "SHA-256", + "content": "4dcaa3dc0c2628097499d2cfd37ab2ad70011ee31be9f7e45391ea2faee63b07" + } + ] + }, + { + "bom-ref": "59293ca07bc5660d", + "type": "file", + "name": "/usr/share/zoneinfo/Indian/Mahe", + "hashes": [ + { + "alg": "SHA-1", + "content": "23a234646bfbf6ee27031bf32b15bbd43e0823d4" + }, + { + "alg": "SHA-256", + "content": "478e69e66f9c02bb7e2810469322695475a612353403ee54c812e56cf37d1075" + } + ] + }, + { + "bom-ref": "3d8a00f5bcfab4db", + "type": "file", + "name": "/usr/share/zoneinfo/Indian/Maldives", + "hashes": [ + { + "alg": "SHA-1", + "content": "f69ba692aa4c7d712bf51a09b8fe68b1cfb5be19" + }, + { + "alg": "SHA-256", + "content": "b5b933b3fc554914587c6af95702a4c0d93941418737a8895372ea514aa7d475" + } + ] + }, + { + "bom-ref": "235240a97668fb60", + "type": "file", + "name": "/usr/share/zoneinfo/Indian/Mauritius", + "hashes": [ + { + "alg": "SHA-1", + "content": "1e21cdd9ca44996775e8b46d232ef1e497bf7076" + }, + { + "alg": "SHA-256", + "content": "f257466ded0ce1a324c63e6ebc3a39354e6cde0504f1daa35136c6855278ef0f" + } + ] + }, + { + "bom-ref": "a837bd4574a80ed0", + "type": "file", + "name": "/usr/share/zoneinfo/Indian/Reunion", + "hashes": [ + { + "alg": "SHA-1", + "content": "97bff51604c3625fdc7dbfe384e1ec9f065333ba" + }, + { + "alg": "SHA-256", + "content": "c3d95eaceb2806a82b1f2c093f3d73ca0cfa0034ad0446aefbe8c4904f6a955e" + } + ] + }, + { + "bom-ref": "adb94b7138e2b056", + "type": "file", + "name": "/usr/share/zoneinfo/Iran", + "hashes": [ + { + "alg": "SHA-1", + "content": "469ae4fa0c85ca6402e54bf09bd00d746995baf8" + }, + { + "alg": "SHA-256", + "content": "29fc1861f6e088decab370c3ef2c090d0c3fbdea50b78c2d3158ddaf001b8088" + } + ] + }, + { + "bom-ref": "16fabc0918db1979", + "type": "file", + "name": "/usr/share/zoneinfo/Israel", + "hashes": [ + { + "alg": "SHA-1", + "content": "45b76c650154fbdd0ac740b7d909f4d603515004" + }, + { + "alg": "SHA-256", + "content": "7d24df9162d3bd40305941c5f3589f35befa85c03595b571c0037c7c05d2837c" + } + ] + }, + { + "bom-ref": "efcebe4a44a38cd2", + "type": "file", + "name": "/usr/share/zoneinfo/Jamaica", + "hashes": [ + { + "alg": "SHA-1", + "content": "1f325b0b117255cca531eb9c5df64d2591ca7578" + }, + { + "alg": "SHA-256", + "content": "addb98caf3459bb75d6e14ed76aa66e642bead2d067e7fe81814a4f02cf13503" + } + ] + }, + { + "bom-ref": "7a7efedc773e89f4", + "type": "file", + "name": "/usr/share/zoneinfo/Japan", + "hashes": [ + { + "alg": "SHA-1", + "content": "9f4e57c6ea9aed36aaffede660db9c6991b3ec02" + }, + { + "alg": "SHA-256", + "content": "046bb09bc08554ef8a54dc05685d0eab10e04c692f6320b6091b6a6f07214c83" + } + ] + }, + { + "bom-ref": "0823dd9e2908ce49", + "type": "file", + "name": "/usr/share/zoneinfo/Kwajalein", + "hashes": [ + { + "alg": "SHA-1", + "content": "a172c7e4992f1da096f844620bdd1efe8dfe8476" + }, + { + "alg": "SHA-256", + "content": "94c42dbf73fe0fde173fed33b5f15512b1ea614f40108ac0dacf6e15c23785e0" + } + ] + }, + { + "bom-ref": "ec4b8cc5a208c451", + "type": "file", + "name": "/usr/share/zoneinfo/Libya", + "hashes": [ + { + "alg": "SHA-1", + "content": "fd17573587b5564fa583933a2b75fdfbe89a97c7" + }, + { + "alg": "SHA-256", + "content": "8ff53f7072863fb56f1e71339392b6de7e50675efa4333b9e032b677c9c9a527" + } + ] + }, + { + "bom-ref": "fc723dcfb3d8ecad", + "type": "file", + "name": "/usr/share/zoneinfo/MET", + "hashes": [ + { + "alg": "SHA-1", + "content": "97a4ab6f36331422d7ea697ba846f1103ff9733e" + }, + { + "alg": "SHA-256", + "content": "1fff331a4414e98097d33bec1a9bbf2a155d991b57acd1bb4c11f8559fb4e514" + } + ] + }, + { + "bom-ref": "974a89057d6f244e", + "type": "file", + "name": "/usr/share/zoneinfo/MST", + "hashes": [ + { + "alg": "SHA-1", + "content": "f03bf6321d2b81a107f6ba56548078b5ea256f7c" + }, + { + "alg": "SHA-256", + "content": "f8fb610056087bb3ca8ecf5cdcb5305c1652b649fde512f606b9ee1b3556fb9e" + } + ] + }, + { + "bom-ref": "685379acb1564fda", + "type": "file", + "name": "/usr/share/zoneinfo/MST7MDT", + "hashes": [ + { + "alg": "SHA-1", + "content": "09c6d5bba53a1136dda4611046b06c80acea5c1b" + }, + { + "alg": "SHA-256", + "content": "85452d031526621178e9b24c91af69b7ecc30df47036669378956135c4e735d0" + } + ] + }, + { + "bom-ref": "b132717d927ce6a1", + "type": "file", + "name": "/usr/share/zoneinfo/NZ", + "hashes": [ + { + "alg": "SHA-1", + "content": "76a7b65f6566d6019f7c0ebbaa2bf6dc93823bb1" + }, + { + "alg": "SHA-256", + "content": "d7b5175387ac78e29f7b9021e411512756be283ed3d1819942ef5d45ecf338e4" + } + ] + }, + { + "bom-ref": "7ac2f2d030e75625", + "type": "file", + "name": "/usr/share/zoneinfo/NZ-CHAT", + "hashes": [ + { + "alg": "SHA-1", + "content": "487fe8bbe967648ce2fe400dc29f8d427667a805" + }, + { + "alg": "SHA-256", + "content": "58019f2faa29dc7db7081293230a728769054dd7c0d0fa9e96e8c4299e71314d" + } + ] + }, + { + "bom-ref": "a3ef9574b8b2f824", + "type": "file", + "name": "/usr/share/zoneinfo/Navajo", + "hashes": [ + { + "alg": "SHA-1", + "content": "a578e7e933eac5e8b0f676e50f11a807392b19ce" + }, + { + "alg": "SHA-256", + "content": "f4df3cc74c79d070a25a7927744d3a422a05d862a9a234a12105c5c964efb22d" + } + ] + }, + { + "bom-ref": "62c31e834bf0413b", + "type": "file", + "name": "/usr/share/zoneinfo/PRC", + "hashes": [ + { + "alg": "SHA-1", + "content": "59a6816c1006b00de53daf1c6142e7f759804a7f" + }, + { + "alg": "SHA-256", + "content": "395b1d4ba9ef45348272c98ecab314999ecaa510f7c5830342ed6eba42cfc25d" + } + ] + }, + { + "bom-ref": "6581ab248d0c659b", + "type": "file", + "name": "/usr/share/zoneinfo/PST8PDT", + "hashes": [ + { + "alg": "SHA-1", + "content": "1102d7c6b701efc0b09c32323ed45c1a960c8922" + }, + { + "alg": "SHA-256", + "content": "4d8e69bd43e8d71f0f58e115593814d68c1a6aa441255b17b3e9a92a9d6efc46" + } + ] + }, + { + "bom-ref": "1cb4c15e07437c53", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Apia", + "hashes": [ + { + "alg": "SHA-1", + "content": "b5aeb901fbf1e9f32c3c19167592d2a600603a61" + }, + { + "alg": "SHA-256", + "content": "fb24a31e538dd3ad0b22cf4788d80cb17d79134622510e2aa67c8712d09721cb" + } + ] + }, + { + "bom-ref": "f2afd53a1d71e366", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Bougainville", + "hashes": [ + { + "alg": "SHA-1", + "content": "d7b061e1766da69d77269b8954c939f2481509d5" + }, + { + "alg": "SHA-256", + "content": "c1b670d434aa6c04cbf73b647a07e5be7dcf2ff30663e10c24e0f0cfabe55b36" + } + ] + }, + { + "bom-ref": "194d400d896ba396", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Chuuk", + "hashes": [ + { + "alg": "SHA-1", + "content": "ab74ddc48bc0ccf1054218f2a38195d228651e48" + }, + { + "alg": "SHA-256", + "content": "cd2606a5760aa15600fa906aec3ddea4aba9b89b1e1143de20c7db52ace5bf32" + } + ] + }, + { + "bom-ref": "24cfd8868d228a47", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Efate", + "hashes": [ + { + "alg": "SHA-1", + "content": "b88a82019adb99d337aa9bdcd74793159e7b7c1c" + }, + { + "alg": "SHA-256", + "content": "c86380cf2219e957e6ee00ad07545d6584cf64ecd19b9fd7e6a36c3dc0ff8751" + } + ] + }, + { + "bom-ref": "f783736bc4155050", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Enderbury", + "hashes": [ + { + "alg": "SHA-1", + "content": "35ee62f80ffb1a5a1a83574d4b465c08e5e9dca6" + }, + { + "alg": "SHA-256", + "content": "5bf2e193795d4a8ec88bcdcf338097dfa71c254332ed3235e7d3270ea7051cf7" + } + ] + }, + { + "bom-ref": "9ba9164b1e2a145b", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Fakaofo", + "hashes": [ + { + "alg": "SHA-1", + "content": "60cfe4f5795a042eacc60004c974b953c3c6b760" + }, + { + "alg": "SHA-256", + "content": "ebcdbbb97d8fa7c9a20ecf62964d207f1ed81e73a3cbea77dc8be5144950af6d" + } + ] + }, + { + "bom-ref": "8d5e58c368ccc0b7", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Fiji", + "hashes": [ + { + "alg": "SHA-1", + "content": "76b35aa5cc0195f0dfe759d182ca70aacdf4b08b" + }, + { + "alg": "SHA-256", + "content": "123f7bceecb95a0378bc8d03815f11efe25ff4e49d313557de133c375373439f" + } + ] + }, + { + "bom-ref": "3e9921e230fc7bb1", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Funafuti", + "hashes": [ + { + "alg": "SHA-1", + "content": "009b3e9a1010b4cd37ddb66bff6cbdcb52cc2862" + }, + { + "alg": "SHA-256", + "content": "812f276576cae6bbd0135d40700fde4fce64f830f75fea928cabe77c51dce579" + } + ] + }, + { + "bom-ref": "a75eba753c360da9", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Galapagos", + "hashes": [ + { + "alg": "SHA-1", + "content": "b4f4f3a0643b920ea506258c239de87417005b01" + }, + { + "alg": "SHA-256", + "content": "3727ec66f71d8629656377c1f3a004c5cfade0f6c52b8da8b7c3ba2d36998603" + } + ] + }, + { + "bom-ref": "d36e35db657064b2", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Gambier", + "hashes": [ + { + "alg": "SHA-1", + "content": "1489e9d0c595de571e44480d46b44c0097e7fe43" + }, + { + "alg": "SHA-256", + "content": "abd4f7e51731d259e30ec4b33c2bcb899e147ee102eb278a1a9b2bb8001c64db" + } + ] + }, + { + "bom-ref": "ff2b6e74a307824e", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Guadalcanal", + "hashes": [ + { + "alg": "SHA-1", + "content": "68093961343adcd06db9d0237e8b50419ab64e61" + }, + { + "alg": "SHA-256", + "content": "a69b3ab3a6e6541933831609ab8bbc3ed5bf0ff678e519226b8df966b4973f20" + } + ] + }, + { + "bom-ref": "a3398fdfc64fa77d", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Guam", + "hashes": [ + { + "alg": "SHA-1", + "content": "f963e0e4c288e9aaeadf120eae3cb0ff7013a53c" + }, + { + "alg": "SHA-256", + "content": "c97a94f15eb7ed24c114ed3b6103987aedd65435aabb85217845df4695fa9069" + } + ] + }, + { + "bom-ref": "aff7ee3b00497396", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Honolulu", + "hashes": [ + { + "alg": "SHA-1", + "content": "51a0bfcc4ed77ba41ead3fa764378e0f09455cfc" + }, + { + "alg": "SHA-256", + "content": "528f01a0a7c21d9cc853eb79b32ecabe8a343028d116b67e6d05cd616d83d5ee" + } + ] + }, + { + "bom-ref": "970f5b123b66f55c", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Kiritimati", + "hashes": [ + { + "alg": "SHA-1", + "content": "78298a4aedeca734a304f178e91606b4d72962f6" + }, + { + "alg": "SHA-256", + "content": "b78f341b3f703c5dc508805923c91e3884d91ae8bd1e2f82d9b28b2308cd8eef" + } + ] + }, + { + "bom-ref": "0ac0fb2d08bc8c5b", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Kosrae", + "hashes": [ + { + "alg": "SHA-1", + "content": "cf5e2f0d23a8313543ca47582114ea0c835cf0b9" + }, + { + "alg": "SHA-256", + "content": "b5e1e429c7d31a845f3ff7f73604e13049ac51626da067b2cd2f4cceac34b2c3" + } + ] + }, + { + "bom-ref": "35ee66a11c6e8947", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Majuro", + "hashes": [ + { + "alg": "SHA-1", + "content": "c5d14cb64f88c062ab8d82f8b69afe45519ca616" + }, + { + "alg": "SHA-256", + "content": "5663127802eeab9ef7b7eb3c889e76ca9683001ed76a2a4549906e864fd10f32" + } + ] + }, + { + "bom-ref": "6e78bf980f46e34d", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Marquesas", + "hashes": [ + { + "alg": "SHA-1", + "content": "45026965250b45d26e1af62045b54b36b9885af6" + }, + { + "alg": "SHA-256", + "content": "5a63de681b53d7bfc728c5d491b2986ab47347a9f2fd15a6f3b6ff978d2f826d" + } + ] + }, + { + "bom-ref": "4296804fc7c90214", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Midway", + "hashes": [ + { + "alg": "SHA-1", + "content": "715b5c39b4bb71131168910bdce8bf720a83b235" + }, + { + "alg": "SHA-256", + "content": "7218a2ae386cd5e8981a940f6b56f6f9b60a65f3e3bd2ec1fe6c9d43bac4db1a" + } + ] + }, + { + "bom-ref": "85fa67ae990b6cbf", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Nauru", + "hashes": [ + { + "alg": "SHA-1", + "content": "60b1014c5a6132889aebb41b59a324abe7470518" + }, + { + "alg": "SHA-256", + "content": "90f5b914416c9e4189a530cd7fcf878a19e5f5569da00bc926a4d2b6c0cdf0d5" + } + ] + }, + { + "bom-ref": "7fe6ffd3e57793ab", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Niue", + "hashes": [ + { + "alg": "SHA-1", + "content": "58a0bc5f95bdae5bbc5870bb33bfb7403f7d48d7" + }, + { + "alg": "SHA-256", + "content": "c16c73631f28c41351fff90d3108bc5751cbd40010fdf872da112a10e9739a53" + } + ] + }, + { + "bom-ref": "b2280d7cb7e3a004", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Norfolk", + "hashes": [ + { + "alg": "SHA-1", + "content": "2fac72e613b57aee6e9d326abb16a53f5045992b" + }, + { + "alg": "SHA-256", + "content": "d3ea212e8cfe37da5b6becba0cbc308a26bd5590986d4f046845bb5571aa899c" + } + ] + }, + { + "bom-ref": "ba50f25256355fba", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Noumea", + "hashes": [ + { + "alg": "SHA-1", + "content": "203a22bfa639189f6aceb9338dc7ce01ff79bace" + }, + { + "alg": "SHA-256", + "content": "13e18b4bb426c3739b34e37d6cdc00d488721a05865cdeca94af76246f55a4de" + } + ] + }, + { + "bom-ref": "4680d562ef82db64", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Palau", + "hashes": [ + { + "alg": "SHA-1", + "content": "f093cf245401ee7432df8375e88f18aaebe7eb67" + }, + { + "alg": "SHA-256", + "content": "fa004039c36449b9a8e280ff0c768e4d15d3853d9f2b87a177d365d8ad864525" + } + ] + }, + { + "bom-ref": "5ba5e1cd0a38f4f4", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Pitcairn", + "hashes": [ + { + "alg": "SHA-1", + "content": "0a44730a6999f2609d4319458fd5cb86f2f19f20" + }, + { + "alg": "SHA-256", + "content": "b0ad4cbe872b4d208d45bc6d326290cd240c1886150f0ee42638386276a8b0b0" + } + ] + }, + { + "bom-ref": "d046740b0c636a0d", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Pohnpei", + "hashes": [ + { + "alg": "SHA-1", + "content": "3d48500d89c7db8de96169df0b5ce033d7a10fe1" + }, + { + "alg": "SHA-256", + "content": "ee4a05d2735ebff35c2f093f0b2d03f70434de110a5403ed7a218e1b73bcf3ed" + } + ] + }, + { + "bom-ref": "b4714f02ea347143", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Port_Moresby", + "hashes": [ + { + "alg": "SHA-1", + "content": "e7fbde066f758c4d965a7ab799f27ac8428ebd27" + }, + { + "alg": "SHA-256", + "content": "1fb4613fb4bf246f537e265e441fe5f62713037df40338cfd80cb7d768e8ca5f" + } + ] + }, + { + "bom-ref": "ea82d18faff30085", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Rarotonga", + "hashes": [ + { + "alg": "SHA-1", + "content": "63370823946b5e953c4aac05a657dbdc10da28ed" + }, + { + "alg": "SHA-256", + "content": "9695a885289664511eb65f931860f584e7c5443d6f05b10b5197ac7834d47cde" + } + ] + }, + { + "bom-ref": "97829b3a5355c7f3", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Tahiti", + "hashes": [ + { + "alg": "SHA-1", + "content": "c5bae1f0278c5d05f571d2b04f1fd75df40472ad" + }, + { + "alg": "SHA-256", + "content": "c9a22621ddb737b5d6342691dc2d94e265c81b0e743010b6713986db122fc855" + } + ] + }, + { + "bom-ref": "c39753d77586a0c2", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Tarawa", + "hashes": [ + { + "alg": "SHA-1", + "content": "d084772ab43accb3713e5c0ed9c651434d662b96" + }, + { + "alg": "SHA-256", + "content": "28fea38528135a54fd642fe3d2bbb41aa8da6b7c892c3991ab2612a81144e799" + } + ] + }, + { + "bom-ref": "bac771288e912ede", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Tongatapu", + "hashes": [ + { + "alg": "SHA-1", + "content": "a6ff0943688ec6d3158f8d0f72595ca6a9badbb1" + }, + { + "alg": "SHA-256", + "content": "14d5bf3a7fea21eb6c9e63970d1dad5b9fbedc5f5b0fd3f5069ee74f7a0f4d8d" + } + ] + }, + { + "bom-ref": "7ed3a8e572dea8a4", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Wake", + "hashes": [ + { + "alg": "SHA-1", + "content": "7b8879d283b5817679207a6635dcd0ad9059cc6c" + }, + { + "alg": "SHA-256", + "content": "0346a78cf610bc43eae87c0a332d30ac5cf9c95001a4264731563cccf3c38331" + } + ] + }, + { + "bom-ref": "12c50f49cee11c29", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Wallis", + "hashes": [ + { + "alg": "SHA-1", + "content": "688c8c8a3d61b0d09892a5e34a3f72089dc52787" + }, + { + "alg": "SHA-256", + "content": "837699bd07ada63d632fc2303a687e5ef9e194e063bac786055885258206ee5c" + } + ] + }, + { + "bom-ref": "d8241a6b91d95218", + "type": "file", + "name": "/usr/share/zoneinfo/Poland", + "hashes": [ + { + "alg": "SHA-1", + "content": "7af2dd5a07b4b8c26e16524120b85424fde44ebf" + }, + { + "alg": "SHA-256", + "content": "68e7493c1ca050e4134062a74aa4a4fc32159c042b4c9d8d40c8bfc9d273c5fa" + } + ] + }, + { + "bom-ref": "c9bc72c909f72af9", + "type": "file", + "name": "/usr/share/zoneinfo/Portugal", + "hashes": [ + { + "alg": "SHA-1", + "content": "9fc34f4f1a590d67386c71f270ef494ceb4c09b3" + }, + { + "alg": "SHA-256", + "content": "4bbe65d4ff3394ffa1b4ae6fe2296e333f55bad0ae49ca6717b6076e53490ea2" + } + ] + }, + { + "bom-ref": "fd204161ac30af2c", + "type": "file", + "name": "/usr/share/zoneinfo/ROC", + "hashes": [ + { + "alg": "SHA-1", + "content": "e5635f0691154dfc95a832e4445d2c9dfa44309c" + }, + { + "alg": "SHA-256", + "content": "25cfd02bc847bdcb11e586445ba886a76315f1f9be86f7e74944a6e8e8644543" + } + ] + }, + { + "bom-ref": "374c7016d7db6f46", + "type": "file", + "name": "/usr/share/zoneinfo/ROK", + "hashes": [ + { + "alg": "SHA-1", + "content": "30b1499e7dedb135ee71068846e50fa4a86bed2b" + }, + { + "alg": "SHA-256", + "content": "3673a9439d49ea97b47c9fb28433c6d41c469ca03ad320768f1514d075647c26" + } + ] + }, + { + "bom-ref": "35612f698c80af24", + "type": "file", + "name": "/usr/share/zoneinfo/Singapore", + "hashes": [ + { + "alg": "SHA-1", + "content": "b59595c88e53389d07914e7630f65dfaed3a6de7" + }, + { + "alg": "SHA-256", + "content": "e6929fde43ffc48bbac4081b31bbf7fd42643b3c26fadf322bdeadeb23cfc748" + } + ] + }, + { + "bom-ref": "cdf83d8894f58ccd", + "type": "file", + "name": "/usr/share/zoneinfo/Turkey", + "hashes": [ + { + "alg": "SHA-1", + "content": "d3fdf5120ff3dde53ccac2094830d51359d14ab3" + }, + { + "alg": "SHA-256", + "content": "2f24f072fa325c0a9bbecc48ea2782317c459a6cad941a37f7e305238443c45a" + } + ] + }, + { + "bom-ref": "8abca652d79cd9d4", + "type": "file", + "name": "/usr/share/zoneinfo/UCT", + "hashes": [ + { + "alg": "SHA-1", + "content": "d7948ef155843e0c7d055bdc3632877b49873864" + }, + { + "alg": "SHA-256", + "content": "3c71b358be81e13b1c24e199a119fd001dbcdb90edc7d44c2c7ae175321a0215" + } + ] + }, + { + "bom-ref": "f56fdbb715bd5d49", + "type": "file", + "name": "/usr/share/zoneinfo/W-SU", + "hashes": [ + { + "alg": "SHA-1", + "content": "7216c72e5b65d8aa6a7f2b0d73d1c673be4a0a7d" + }, + { + "alg": "SHA-256", + "content": "02d55516d0f9d497998260b4f129aee59867b77a920ba2ca0c58b15ec8588e7a" + } + ] + }, + { + "bom-ref": "8f0caf7d5ecf57af", + "type": "file", + "name": "/usr/share/zoneinfo/WET", + "hashes": [ + { + "alg": "SHA-1", + "content": "d1acd595a5d4a1e5c04f91a1b80e86a11b394efb" + }, + { + "alg": "SHA-256", + "content": "e5e7c4631295e7f17085e3530f99fc2984cc7e4bdb9a07db7702de8c18c2aab1" + } + ] + }, + { + "bom-ref": "4b0057544d788d05", + "type": "file", + "name": "/usr/share/zoneinfo/iso3166.tab", + "hashes": [ + { + "alg": "SHA-1", + "content": "0fc6d5c93a74b418876236fcac9d710b695c87a0" + }, + { + "alg": "SHA-256", + "content": "04c87fc98ecc5e9f03304cbbd636ab157dc8252369c2e132223228d872945c3e" + } + ] + }, + { + "bom-ref": "f3a269363b04981d", + "type": "file", + "name": "/usr/share/zoneinfo/leap-seconds.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "7f2cd8c69ac0c947d97c21b8999f49725d96f1d7" + }, + { + "alg": "SHA-256", + "content": "4aa024da4b2e7a45b57f5c3c464983f5d8efab18883d2250b96bd53b1d4e58f7" + } + ] + }, + { + "bom-ref": "8968d471ba70c83a", + "type": "file", + "name": "/usr/share/zoneinfo/posixrules", + "hashes": [ + { + "alg": "SHA-1", + "content": "1607371cc3e09de17ce3746d2f9d731f9887e2f2" + }, + { + "alg": "SHA-256", + "content": "5fa6dccc303352e1195c4348b189f3085014d8a56a1976c8e8a32bd4fedb69fd" + } + ] + }, + { + "bom-ref": "a03ccbbdd5ec9f71", + "type": "file", + "name": "/usr/share/zoneinfo/right/Africa/Abidjan", + "hashes": [ + { + "alg": "SHA-1", + "content": "76188a6d88196419831371b91928ac9db6bc83b2" + }, + { + "alg": "SHA-256", + "content": "c177f3894cfb7acf27cfefcefd177aebfa1699e409e7fc4cd5a11ef116f8d236" + } + ] + }, + { + "bom-ref": "5d16c51ce04b37be", + "type": "file", + "name": "/usr/share/zoneinfo/right/Africa/Accra", + "hashes": [ + { + "alg": "SHA-1", + "content": "02dd430d38adc7997ff4b7c544898e4ff0ae3f17" + }, + { + "alg": "SHA-256", + "content": "9863eb82771cf02cf4ee1de5ea5f77ee1f64735c3177ec2d5d88d16c3c22adac" + } + ] + }, + { + "bom-ref": "9a0bccf8719f18ba", + "type": "file", + "name": "/usr/share/zoneinfo/right/Africa/Addis_Ababa", + "hashes": [ + { + "alg": "SHA-1", + "content": "1a2dae6fb6469402fdb152b761cee35a40f11631" + }, + { + "alg": "SHA-256", + "content": "d2247051e9475386f19fdaa6bf7d12ce1512f7ef608783d89edd8a88d9b48f55" + } + ] + }, + { + "bom-ref": "b72d420855dfef26", + "type": "file", + "name": "/usr/share/zoneinfo/right/Africa/Algiers", + "hashes": [ + { + "alg": "SHA-1", + "content": "ae11b17e4be49dd4c75cb66f0651355b057b19fc" + }, + { + "alg": "SHA-256", + "content": "ae1ed232eba1c94a05f5e19ad6232076b09addb808405129e77b1629713beabc" + } + ] + }, + { + "bom-ref": "739abfeaf16f3f8d", + "type": "file", + "name": "/usr/share/zoneinfo/right/Africa/Bangui", + "hashes": [ + { + "alg": "SHA-1", + "content": "67e2c5ae05cb209fb1e38c8cab276ad2a6909cd4" + }, + { + "alg": "SHA-256", + "content": "0918dd4428aa52ae36a135800f5fcc423b8ca08ed77874b11920cd944c4fb72d" + } + ] + }, + { + "bom-ref": "499a1975e5172f2c", + "type": "file", + "name": "/usr/share/zoneinfo/right/Africa/Bissau", + "hashes": [ + { + "alg": "SHA-1", + "content": "2c00fc95dae85dd1b64e2d4dab8e83fdab1d4fa7" + }, + { + "alg": "SHA-256", + "content": "197606820a95c35d6c3d2f64e5e1d9542e198732db52d3b9ca6ff7294bb0ff9b" + } + ] + }, + { + "bom-ref": "0d2a6fe581e23b18", + "type": "file", + "name": "/usr/share/zoneinfo/right/Africa/Blantyre", + "hashes": [ + { + "alg": "SHA-1", + "content": "994639b2cfee59f64836c05f3b48931e2ff63462" + }, + { + "alg": "SHA-256", + "content": "3e39755e95604e242f4218d248dafd51ffa09392975c3f86c26907e6aad60da9" + } + ] + }, + { + "bom-ref": "a0b621bea0613174", + "type": "file", + "name": "/usr/share/zoneinfo/right/Africa/Casablanca", + "hashes": [ + { + "alg": "SHA-1", + "content": "fee57787cf71f1c38c6ffbeca6d31253c5a69724" + }, + { + "alg": "SHA-256", + "content": "30dceeb1934dc0eefd00a92e5776ac4fec085e20667523e363254ac857ac5789" + } + ] + }, + { + "bom-ref": "38aba3ede870f3a3", + "type": "file", + "name": "/usr/share/zoneinfo/right/Africa/Ceuta", + "hashes": [ + { + "alg": "SHA-1", + "content": "d487615d5a7455c44944247f9d4f533d3a749473" + }, + { + "alg": "SHA-256", + "content": "ca6b06411c93017e93ded83d917cac8399690d6fb2771bcc66ecf132ee2e3ef6" + } + ] + }, + { + "bom-ref": "1956d7fbefeb0df1", + "type": "file", + "name": "/usr/share/zoneinfo/right/Africa/El_Aaiun", + "hashes": [ + { + "alg": "SHA-1", + "content": "2804013ca3e4a532260206eb0747ebed696b057b" + }, + { + "alg": "SHA-256", + "content": "40d77bc305fa567c1a1442b0624f4f0d26f1c0f368367c85a58917bde31750e2" + } + ] + }, + { + "bom-ref": "aced37d45b6216eb", + "type": "file", + "name": "/usr/share/zoneinfo/right/Africa/Johannesburg", + "hashes": [ + { + "alg": "SHA-1", + "content": "fa8e7f696051fddc3e5018466ffa5edabab3da55" + }, + { + "alg": "SHA-256", + "content": "af7338314b4255661ce9afdd064e487321d4369ce15488395bb20bb4627d1ae2" + } + ] + }, + { + "bom-ref": "afa60be9fb711466", + "type": "file", + "name": "/usr/share/zoneinfo/right/Africa/Juba", + "hashes": [ + { + "alg": "SHA-1", + "content": "585e858ed6894183743783da23d1066a546aedef" + }, + { + "alg": "SHA-256", + "content": "5416feae2ba255834605ca4e707c721d2c3f3e7fde21d8c256329445c8c67ee8" + } + ] + }, + { + "bom-ref": "babffb762cac5aec", + "type": "file", + "name": "/usr/share/zoneinfo/right/Africa/Khartoum", + "hashes": [ + { + "alg": "SHA-1", + "content": "f3bb2e955ff8f3feef911d2c3258517bfa351675" + }, + { + "alg": "SHA-256", + "content": "0cd1350c87bd18606418d615dd78790f8ee9458ade7acb1af82b67afbdfc27f1" + } + ] + }, + { + "bom-ref": "77ab1d8e9610c5cd", + "type": "file", + "name": "/usr/share/zoneinfo/right/Africa/Monrovia", + "hashes": [ + { + "alg": "SHA-1", + "content": "f0a0ae93cc645c702b828887a140d8c4dc79f44b" + }, + { + "alg": "SHA-256", + "content": "eb1deb0dd9325844227c376d1532b484511c76f79f42032806553d36a9464e55" + } + ] + }, + { + "bom-ref": "02ef266a1336376d", + "type": "file", + "name": "/usr/share/zoneinfo/right/Africa/Ndjamena", + "hashes": [ + { + "alg": "SHA-1", + "content": "c1fcef0c4ec5fde9fca5fb83dc8867eea3377d7a" + }, + { + "alg": "SHA-256", + "content": "180050fab205819406f6d6b572fe6f37eb805cc3f796543185c3229108470189" + } + ] + }, + { + "bom-ref": "2c9d84332df3fc69", + "type": "file", + "name": "/usr/share/zoneinfo/right/Africa/Sao_Tome", + "hashes": [ + { + "alg": "SHA-1", + "content": "774bc2c324c817bcdef74d2d5b11a9c0ffa7d95f" + }, + { + "alg": "SHA-256", + "content": "0de4113ee9dadb292b55aaf2d49c4726604149a44fd6c52af4f098e6d3be5560" + } + ] + }, + { + "bom-ref": "175544d92c547101", + "type": "file", + "name": "/usr/share/zoneinfo/right/Africa/Tunis", + "hashes": [ + { + "alg": "SHA-1", + "content": "4171db54db6da784d8a37b04f5f5620e81376e43" + }, + { + "alg": "SHA-256", + "content": "dbc64f2ddde5756e10d2ec8156bbe83f6f9ecbeb33b5bd6d771542f623d8fc39" + } + ] + }, + { + "bom-ref": "11cc4d9d97f549ef", + "type": "file", + "name": "/usr/share/zoneinfo/right/Africa/Windhoek", + "hashes": [ + { + "alg": "SHA-1", + "content": "f8f3ac428751bf9ea93e626aa0f9bc162fb34ff1" + }, + { + "alg": "SHA-256", + "content": "9232e815aee566ea37642ad831abe23161c2f1c286dcffdc72d95f71d5e40289" + } + ] + }, + { + "bom-ref": "2eb1d2f7d14a0b77", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Adak", + "hashes": [ + { + "alg": "SHA-1", + "content": "3d28ea1ce4b362c587ad652992e556fbc288f7d9" + }, + { + "alg": "SHA-256", + "content": "6d3e31970fee36399f30950e3f68ce7a5038be38a64547241c2ac97daaccd994" + } + ] + }, + { + "bom-ref": "6e020924ee61b52d", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Anchorage", + "hashes": [ + { + "alg": "SHA-1", + "content": "4ace94a500dd294d5b21be750776291f7237b87f" + }, + { + "alg": "SHA-256", + "content": "b5b62f7337785e26117bbc34ef7976018f021e63eb3e208f8c752d4f949ef2ef" + } + ] + }, + { + "bom-ref": "de81ed4d7572f394", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Anguilla", + "hashes": [ + { + "alg": "SHA-1", + "content": "bae93c9976621e2dbdbb7ee2459cb49968e8bda8" + }, + { + "alg": "SHA-256", + "content": "dbe365d9a8abfd164690db1cec6c51c19f86154900595509c991401e13a16585" + } + ] + }, + { + "bom-ref": "b43dbcb99ec55ed4", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Araguaina", + "hashes": [ + { + "alg": "SHA-1", + "content": "7388ed13a231d869dc15b13e417fc1935a6dd0e1" + }, + { + "alg": "SHA-256", + "content": "82109fd707c8edb4e656ff24c036c4745b6eb99568f9f8be4a9480f69718b893" + } + ] + }, + { + "bom-ref": "c629be66cec46b4e", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Argentina/La_Rioja", + "hashes": [ + { + "alg": "SHA-1", + "content": "82533bc0548e570b18e7e333bdf75ca77294d307" + }, + { + "alg": "SHA-256", + "content": "ca44f15fcc0edf702aa78d83f590d05964fffa5955e697ad7e12c1231f974402" + } + ] + }, + { + "bom-ref": "eed9b623cd815c61", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Argentina/Rio_Gallegos", + "hashes": [ + { + "alg": "SHA-1", + "content": "881e6be7cd8224cc360d840e4c9e6efe01cbdb43" + }, + { + "alg": "SHA-256", + "content": "91cf62d744daee339ecffef8c6d3222602c0edcbac281a986de084084eee0a66" + } + ] + }, + { + "bom-ref": "8f579f37e66f3a50", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Argentina/Salta", + "hashes": [ + { + "alg": "SHA-1", + "content": "112ca0f3afdd0d437acc562f68d207001ccbfaeb" + }, + { + "alg": "SHA-256", + "content": "29c28845ace42cd30c66b7368489b0739b6e576a6ec994612aa6b0f21e3e41e7" + } + ] + }, + { + "bom-ref": "93314549cf5ca90b", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Argentina/San_Juan", + "hashes": [ + { + "alg": "SHA-1", + "content": "fbc1d8d41180bc9192e29d3b1fd659fede1946df" + }, + { + "alg": "SHA-256", + "content": "f37e4d35b9e3881d3a842b82322841fba4b1af27a4cc6a6e32a29ee516f5b7d9" + } + ] + }, + { + "bom-ref": "89b6f9a35bc7f76b", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Argentina/San_Luis", + "hashes": [ + { + "alg": "SHA-1", + "content": "c848c360bd64108d6b95bccc00176c1a6a00f48d" + }, + { + "alg": "SHA-256", + "content": "792ff8486d80c28aca88a4dd4a235f7fa2d8096c78b712807867d70ed696350b" + } + ] + }, + { + "bom-ref": "c85b518f38325562", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Argentina/Tucuman", + "hashes": [ + { + "alg": "SHA-1", + "content": "1d3dfd44ca2bdb1b1d0a11320c62eaa4f9dfd328" + }, + { + "alg": "SHA-256", + "content": "ff5b362c9623df8cc3c5322a8bc5fc68b8cb55a0bb2e869856244559179e65f4" + } + ] + }, + { + "bom-ref": "6266e4c2cc57bf40", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Argentina/Ushuaia", + "hashes": [ + { + "alg": "SHA-1", + "content": "a4df280d48d561b9fee5798c6f6f0e4dc61aca4c" + }, + { + "alg": "SHA-256", + "content": "ef3d614cc912b10dfd59f42f529a41d4e4f5dc0a653a5cbecf7f49eaf32518a7" + } + ] + }, + { + "bom-ref": "20c57484a8893b13", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Aruba", + "hashes": [ + { + "alg": "SHA-1", + "content": "ed5a29a5d798fc60c69fd6af3828f454c3ec15bd" + }, + { + "alg": "SHA-256", + "content": "ec9709d87bbdd0aae7be4070156e5dc05c12d822da203cb1030354342bae2df0" + } + ] + }, + { + "bom-ref": "978980949e9fa2cf", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Asuncion", + "hashes": [ + { + "alg": "SHA-1", + "content": "0ba1df05e941d9c7119123c02b0c77595bcafa2c" + }, + { + "alg": "SHA-256", + "content": "a8578deb3800b6aacd9e448736cc82f80dbb0247516df7a22663e822bf3d959c" + } + ] + }, + { + "bom-ref": "ae39fd1b85e41425", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Atikokan", + "hashes": [ + { + "alg": "SHA-1", + "content": "b0c0f69d250ee9cf1f6b95262e7f5543fe19c6c8" + }, + { + "alg": "SHA-256", + "content": "2fe220cd5f52ece0e3aa468ed33c443eaad61fc9e3bfbb47b7b754e8ad1a4613" + } + ] + }, + { + "bom-ref": "38dc0ae6e54e56e6", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Bahia", + "hashes": [ + { + "alg": "SHA-1", + "content": "4a9331fe3fda81bc83cbfd5b69181a0b77b43396" + }, + { + "alg": "SHA-256", + "content": "57be9fcdea20da18d7324009677d390f2098a1035f052a946e4c0ab101b52aa7" + } + ] + }, + { + "bom-ref": "82463ecce7fdf48b", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Bahia_Banderas", + "hashes": [ + { + "alg": "SHA-1", + "content": "ccdd1e5a46bb8a9eb391f51bd90a6396d80d5fbe" + }, + { + "alg": "SHA-256", + "content": "e44343d2e96738b96a6d83d5327dda8d041b1fb8e62b281f7fac7e56642b960b" + } + ] + }, + { + "bom-ref": "55548c82c5a0ddce", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Barbados", + "hashes": [ + { + "alg": "SHA-1", + "content": "919d66d2092de7c669be2eeee0f44cda00bac53f" + }, + { + "alg": "SHA-256", + "content": "64d664790217c76976a3a1f386ac82fc0f2295247f64547385711656b9f8f13b" + } + ] + }, + { + "bom-ref": "032e7cec592ae906", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Belem", + "hashes": [ + { + "alg": "SHA-1", + "content": "466c0d84da6083f734e16639b4c93d305868bccf" + }, + { + "alg": "SHA-256", + "content": "b42a81883f67e3e7f2ab0d7599a7828babe2847de45cca683ad9c1b9e0e5f517" + } + ] + }, + { + "bom-ref": "b3af90fe113eb210", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Belize", + "hashes": [ + { + "alg": "SHA-1", + "content": "f6fc69bf833eee40484767928b9e742441045a8e" + }, + { + "alg": "SHA-256", + "content": "64c8ad5880386d6b4b00707ee7f83b0e327b72fbf4ba8f9cb71f8d083eca8472" + } + ] + }, + { + "bom-ref": "4f28c73b066f11eb", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Blanc-Sablon", + "hashes": [ + { + "alg": "SHA-1", + "content": "f155d2fadcc0c41bb0723e9338e1b43b0531fcf2" + }, + { + "alg": "SHA-256", + "content": "6e9969e343200d865e82628b88310774524c38ae9c5ede30b7e5163acb70e6a1" + } + ] + }, + { + "bom-ref": "f9f178c1e26e2803", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Boa_Vista", + "hashes": [ + { + "alg": "SHA-1", + "content": "c66dacc8e76def17ca6c30e7d66c84180c2d42dc" + }, + { + "alg": "SHA-256", + "content": "571117b369cd426ece6f39b03b5105236c6b45bb48a14633c510b8217f9d1425" + } + ] + }, + { + "bom-ref": "1299d59f1fd67bed", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Bogota", + "hashes": [ + { + "alg": "SHA-1", + "content": "ee37b38299af8bcfe3e9f6dda3af96767c9b6909" + }, + { + "alg": "SHA-256", + "content": "2e6720337c693fb0d3d5b9da958aed2736a828d3db08d060262c04e98dd4d09d" + } + ] + }, + { + "bom-ref": "0a29edf80d271049", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Boise", + "hashes": [ + { + "alg": "SHA-1", + "content": "d06afb5c0682d254f9e95d79241b386d00173ec8" + }, + { + "alg": "SHA-256", + "content": "7189c739198e19615b75a8a336aabd3cb223a765487382eb16c783cbb91c8c95" + } + ] + }, + { + "bom-ref": "e221d8f735444f25", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Buenos_Aires", + "hashes": [ + { + "alg": "SHA-1", + "content": "ba25c5008a687b76ce047dc3305a427ecfa88bcd" + }, + { + "alg": "SHA-256", + "content": "11f0d85022c24b9744ed8511f75ca67bed67a3e5d8b439fd02ec0d05d1afa710" + } + ] + }, + { + "bom-ref": "49e7f020cc6e462a", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Cambridge_Bay", + "hashes": [ + { + "alg": "SHA-1", + "content": "c74dbfbf0b88e75f52e47fb079aa495a6dee3446" + }, + { + "alg": "SHA-256", + "content": "dfa58c30cd1217d5f8e9dcb757d64bfb901c28a5f9475a38ac7de9e03c2d80c0" + } + ] + }, + { + "bom-ref": "1aa6f42c40e6d5b9", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Campo_Grande", + "hashes": [ + { + "alg": "SHA-1", + "content": "261091289dcc1c5362bc96e47d45981456606a95" + }, + { + "alg": "SHA-256", + "content": "a8706aa08dfa1b1d590cbea13a10219797f5462aaba556a2173265c54c3ee514" + } + ] + }, + { + "bom-ref": "74adb00dc64b67ec", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Cancun", + "hashes": [ + { + "alg": "SHA-1", + "content": "ccae0bc2a899957e88c15214d9892fd105f8b4ec" + }, + { + "alg": "SHA-256", + "content": "c8ce65577ce494166ad8f57f14a55ae961e27dd7aa356d8802fb5c9f2d510fb6" + } + ] + }, + { + "bom-ref": "d42122e830780632", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Caracas", + "hashes": [ + { + "alg": "SHA-1", + "content": "707c66a94fe672b5633d5c5b9982fd6af5df080a" + }, + { + "alg": "SHA-256", + "content": "a96e2b167e1bada8a827a7102f82ab54b80f2e34748c157c39d50d4605a1b3f6" + } + ] + }, + { + "bom-ref": "b25e1e2891dbbd88", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Catamarca", + "hashes": [ + { + "alg": "SHA-1", + "content": "dbe691ff5debb639fefe1c128189603f8d03344f" + }, + { + "alg": "SHA-256", + "content": "e8eb2f2a5ceead008a4000d50d3e8363a3181dd29a51600efd0328fe1ff75ba0" + } + ] + }, + { + "bom-ref": "4400eeb18d898a5c", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Cayenne", + "hashes": [ + { + "alg": "SHA-1", + "content": "f197ce5cecb67f9144800955a54994983c92b126" + }, + { + "alg": "SHA-256", + "content": "0eafc920b259f82d386d82c7ba4dae9301cec9a9dea17abcfd27f40dd2b06d18" + } + ] + }, + { + "bom-ref": "d944058bdf34b277", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Cayman", + "hashes": [ + { + "alg": "SHA-1", + "content": "84d0f1cef0809cde20925163306efad1f2998dd0" + }, + { + "alg": "SHA-256", + "content": "6962181adfca6314029efa4c3a2dae17c775d6031cff3bd6c63d49ed30c31cb1" + } + ] + }, + { + "bom-ref": "efbceddc68808a5d", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Chicago", + "hashes": [ + { + "alg": "SHA-1", + "content": "0e5f83d394a5eb74856f9798a51a9dac1563e44d" + }, + { + "alg": "SHA-256", + "content": "94f71253caa6bde6db52f2f5ad3b816df0c2da9af7cc7d4a4abf1b91e391821f" + } + ] + }, + { + "bom-ref": "4c7af512c8386a40", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Chihuahua", + "hashes": [ + { + "alg": "SHA-1", + "content": "81d540e6967344737be0acdcd98d07705e0245e0" + }, + { + "alg": "SHA-256", + "content": "1f0007a74669d2ede5ccea2c49ff17ced52ae2e28756ebbf5eb08aa08b3e9d45" + } + ] + }, + { + "bom-ref": "c64450b885b18bfa", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Cordoba", + "hashes": [ + { + "alg": "SHA-1", + "content": "79b7fcf0fe3572d931bf79b43869b0b5826b2804" + }, + { + "alg": "SHA-256", + "content": "71317d3d37f6c9547838beb260ddc830350e32ebb702fc280a878e0cc20b5b01" + } + ] + }, + { + "bom-ref": "130465c931560dca", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Costa_Rica", + "hashes": [ + { + "alg": "SHA-1", + "content": "44dd7772680277d86ae2e0719d7067b9ea75c374" + }, + { + "alg": "SHA-256", + "content": "a697b205589062aab7599c2e812f164df50b32f2d9c8f2ea7b42f1e53b4e3e94" + } + ] + }, + { + "bom-ref": "4f28d7115fca5449", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Creston", + "hashes": [ + { + "alg": "SHA-1", + "content": "2b59fa53be5813f7a84664b23345f98d7cc1338a" + }, + { + "alg": "SHA-256", + "content": "071acbeb9c771d5bd244b0d6bd73b7e7893aa40deb19c1074908a0094de4463f" + } + ] + }, + { + "bom-ref": "a1a994bc3fad406b", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Cuiaba", + "hashes": [ + { + "alg": "SHA-1", + "content": "bc9f6730538e0fd6bc6fe7716b6a4e19332c14ce" + }, + { + "alg": "SHA-256", + "content": "8df0f198ed0c5152081615876698fccee1adf1a84368ea30b3e7a00671e231e2" + } + ] + }, + { + "bom-ref": "9a1fdcce8a9b0373", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Danmarkshavn", + "hashes": [ + { + "alg": "SHA-1", + "content": "c250afb955a658311ad581078b2c4df23b69f49a" + }, + { + "alg": "SHA-256", + "content": "99b1ff4ad370c93145279b56504ccd2d0bb39f92c002aaa490bd5969285cdd1f" + } + ] + }, + { + "bom-ref": "8ec5793328d3ddf7", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Dawson", + "hashes": [ + { + "alg": "SHA-1", + "content": "20fdccf15239a70feface1a4ab39d07e1d3801f6" + }, + { + "alg": "SHA-256", + "content": "80603f40526cf878ecb1d2d6d65a94f8c1021fe53acd720174dd856219566ddd" + } + ] + }, + { + "bom-ref": "4a9e8dcc469cae29", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Dawson_Creek", + "hashes": [ + { + "alg": "SHA-1", + "content": "9a07ac3d92a5541d8a85c88841973e2ca90e25cc" + }, + { + "alg": "SHA-256", + "content": "4f2bb35e6c4c8804409dc81ad024881457705dca4ae468184f73c04bff51ead1" + } + ] + }, + { + "bom-ref": "c06fcd9faa20fab9", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Detroit", + "hashes": [ + { + "alg": "SHA-1", + "content": "1fb7c485aabe5e02a2dd569424f76906ba9648d6" + }, + { + "alg": "SHA-256", + "content": "5549176b1eddafbfea4f7156db3872560d9c7085e200706ca281103c7918d1dd" + } + ] + }, + { + "bom-ref": "3c624f1212834152", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Edmonton", + "hashes": [ + { + "alg": "SHA-1", + "content": "bd885797915f08217c88b32535258f184ec62296" + }, + { + "alg": "SHA-256", + "content": "022478c15aee3ef60c10f350122529278adf3954d02e30f78df5ca8d6eb937ee" + } + ] + }, + { + "bom-ref": "85edb339bd7be1dd", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Eirunepe", + "hashes": [ + { + "alg": "SHA-1", + "content": "1f594862fa42fd4bb8ae2ae8c9f8d63cd3b96196" + }, + { + "alg": "SHA-256", + "content": "c4f55d375fc0af9be895823939d16d5b414619368817025e4ca1cd33b72b251f" + } + ] + }, + { + "bom-ref": "99511da6306a7698", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/El_Salvador", + "hashes": [ + { + "alg": "SHA-1", + "content": "c5d1c6aab980fdb2aefd94b11ae48a32e847e70f" + }, + { + "alg": "SHA-256", + "content": "04993007b8086580ac35e8fa524bbdcd45f045c965608fca3da26deaa1ede337" + } + ] + }, + { + "bom-ref": "b3139526cef35eba", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Ensenada", + "hashes": [ + { + "alg": "SHA-1", + "content": "18a7448d2014ec7c4c6fdc13cea755c37aab411d" + }, + { + "alg": "SHA-256", + "content": "a1a5199868d6aa4c24fef5e908e99e4c6e116d16afc554d25ec431990d8f02da" + } + ] + }, + { + "bom-ref": "d16900f27591794a", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Fort_Nelson", + "hashes": [ + { + "alg": "SHA-1", + "content": "3509ae723694d605035e21406cfe20a5d28af632" + }, + { + "alg": "SHA-256", + "content": "c20108fb21d7e76aef2c0bd669f1dfd6043b5269020bde6cff669f088d13abec" + } + ] + }, + { + "bom-ref": "2ec30d8b1436bc10", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Fort_Wayne", + "hashes": [ + { + "alg": "SHA-1", + "content": "6235f82350f693318f4ae7aca340200669854d9a" + }, + { + "alg": "SHA-256", + "content": "7dfb7b2796f9b9d9a69d402b2e8269a2f834e1d01e2da34af490b2b24c21ace5" + } + ] + }, + { + "bom-ref": "182aa33f975e0f39", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Fortaleza", + "hashes": [ + { + "alg": "SHA-1", + "content": "9ed4395adccd655edbda8af1ae3be46299e9e383" + }, + { + "alg": "SHA-256", + "content": "0c7c0174e80d20bb3233959a3c804006cbeff3d3ac86ab6b1e21988da7efdc9c" + } + ] + }, + { + "bom-ref": "86f73221b8c5c792", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Glace_Bay", + "hashes": [ + { + "alg": "SHA-1", + "content": "ebcc97f62e0650249d02b903f709a28a91a1d277" + }, + { + "alg": "SHA-256", + "content": "799c72cab5fafdcf48dfe766d52c24e7fd7f4a61e0d554c97888023766219287" + } + ] + }, + { + "bom-ref": "68227008c1d53259", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Godthab", + "hashes": [ + { + "alg": "SHA-1", + "content": "71b1fb003b57b6f8c40cb7cf11322bd4bcb775ae" + }, + { + "alg": "SHA-256", + "content": "9624c131f68def896035d8ad7e011456dfc60c90a2956e32545fc391e4ec9a44" + } + ] + }, + { + "bom-ref": "6695438651999c5c", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Goose_Bay", + "hashes": [ + { + "alg": "SHA-1", + "content": "221aec59fa0187e94587132a88c9c1338930b352" + }, + { + "alg": "SHA-256", + "content": "462bef059c879d10cbcce574a128bc2d847dfc342dd77f43e6494f3aba6cf94c" + } + ] + }, + { + "bom-ref": "89ee442664bfeec8", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Grand_Turk", + "hashes": [ + { + "alg": "SHA-1", + "content": "62d260571dc9499085ffd0ad050bd2bc0f5d2582" + }, + { + "alg": "SHA-256", + "content": "62c8422fa9715c9897596d74d1960cd40018f44a1253b0380a33017fcc3fdde3" + } + ] + }, + { + "bom-ref": "323fe1577c43e076", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Guatemala", + "hashes": [ + { + "alg": "SHA-1", + "content": "c18e465cc61e853f11e3daaaeaf9cf12ccd5eaa7" + }, + { + "alg": "SHA-256", + "content": "b8d8d7b3edd1a237b4d4aee860162700cf11e25aa9102ba61bed6640ced94463" + } + ] + }, + { + "bom-ref": "4950f8ca77b092a9", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Guayaquil", + "hashes": [ + { + "alg": "SHA-1", + "content": "f04f648e2ad9640677dd29cbcf453757e919c6e2" + }, + { + "alg": "SHA-256", + "content": "261c214acf962a01f616006a670d717ed104b80afb006f3c78e7e1054c9637fa" + } + ] + }, + { + "bom-ref": "6e5ee5a960228dec", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Guyana", + "hashes": [ + { + "alg": "SHA-1", + "content": "e13bdff705b99b33d018ba358a8a1bc4a77a75e4" + }, + { + "alg": "SHA-256", + "content": "8664ad5ccf6551c731f7235c7dc307cf5ef4106dc109e99da1cfc3b193b8d536" + } + ] + }, + { + "bom-ref": "9e4169e8a70c0523", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Halifax", + "hashes": [ + { + "alg": "SHA-1", + "content": "8cee8ad21c24925851825ee17a04a879a04a927c" + }, + { + "alg": "SHA-256", + "content": "86c84ef0a21a387fdd0058046268c5eca94c10cb73231638724d344cc478bd10" + } + ] + }, + { + "bom-ref": "19cce8269aa740f7", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Hermosillo", + "hashes": [ + { + "alg": "SHA-1", + "content": "594d0994f5c120f536740a1cd137b15145ebcd5e" + }, + { + "alg": "SHA-256", + "content": "778350bbb96f05ab2e74834f35be215801da358dd7c261f1ba3bfe6f1c9b07e9" + } + ] + }, + { + "bom-ref": "4bacf41000dbf867", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Indiana/Marengo", + "hashes": [ + { + "alg": "SHA-1", + "content": "509c06d6dc8d8888c88820f10c509e90cd6ef36d" + }, + { + "alg": "SHA-256", + "content": "b3e8fe887a5ce407f7208f16d0b296a4594b3f93de33b70d5a260139f66cfab2" + } + ] + }, + { + "bom-ref": "dc8eda18b273328d", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Indiana/Petersburg", + "hashes": [ + { + "alg": "SHA-1", + "content": "f7d0797ce609388d83337592db21ff1dfaf1759c" + }, + { + "alg": "SHA-256", + "content": "285f27ebb54838060d3a33238dae6ee695af5c258d40780fc89c797a239360ba" + } + ] + }, + { + "bom-ref": "855548412080c35b", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Indiana/Tell_City", + "hashes": [ + { + "alg": "SHA-1", + "content": "091003cb997362f96cd0435e1fd563f009c13257" + }, + { + "alg": "SHA-256", + "content": "2e364ec1dc4a5ebca7a3bbe89b3f498f9d2f1362739d26a08d887571f3a65d19" + } + ] + }, + { + "bom-ref": "0bbd74ec49ebf8cc", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Indiana/Vevay", + "hashes": [ + { + "alg": "SHA-1", + "content": "a4f3e0316af346c4104d7ace8b915064a565eb8e" + }, + { + "alg": "SHA-256", + "content": "74d2b6f797d63017075f1425e695e5f61a6e1b3ef08f812bc330e22fae18333a" + } + ] + }, + { + "bom-ref": "3790845ccd4e4a37", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Indiana/Vincennes", + "hashes": [ + { + "alg": "SHA-1", + "content": "2b1fcc354b93cae8a9ab816f9eaefc88d71be3b4" + }, + { + "alg": "SHA-256", + "content": "970baaf1ed777c07d74546d61282e9df9a0488ad90084210a770c82ae78b8357" + } + ] + }, + { + "bom-ref": "08ed403daeb8527e", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Indiana/Winamac", + "hashes": [ + { + "alg": "SHA-1", + "content": "c921575d7e5138a21e5701c60b91257640f9660e" + }, + { + "alg": "SHA-256", + "content": "cade9b122bd306fd5bb1fd4ff0471861c8eaed414a166ba570554a349a7a20b6" + } + ] + }, + { + "bom-ref": "59207e94102a2df7", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Inuvik", + "hashes": [ + { + "alg": "SHA-1", + "content": "26d19218f2493ce9bffc049cd8e83b91c585a607" + }, + { + "alg": "SHA-256", + "content": "c51f2f3cef4844e5c800ed3592d85bc69e5f05dc4a53e94c76b2433be16b1a5f" + } + ] + }, + { + "bom-ref": "f32bbe9f65242841", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Iqaluit", + "hashes": [ + { + "alg": "SHA-1", + "content": "fa5b5992a1fd349412efe973004e87f17b6bc67b" + }, + { + "alg": "SHA-256", + "content": "7179d696e8f2aac641bbe8a0b0635128246fd4669e258befaac2e91170f75d1e" + } + ] + }, + { + "bom-ref": "99113e3af95fbb18", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Jujuy", + "hashes": [ + { + "alg": "SHA-1", + "content": "f37bf373231dc62e6dc9292dd1a7a5a6ea350062" + }, + { + "alg": "SHA-256", + "content": "f9b3f77caa862cee71a893e64fe1e4dbb24eda9ceff5875ae5b744638810aa14" + } + ] + }, + { + "bom-ref": "327b63068da6865a", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Juneau", + "hashes": [ + { + "alg": "SHA-1", + "content": "d6b8c5b1267edbb53b88b4027aec2d47dccf8c50" + }, + { + "alg": "SHA-256", + "content": "2be628832b78514026f7932644e221fd4490d502f686f069d7ebf8ba0b220c40" + } + ] + }, + { + "bom-ref": "2845f6b93bdaf424", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Kentucky/Monticello", + "hashes": [ + { + "alg": "SHA-1", + "content": "26b30fd3d1b05906f7dcff54f74022702762811c" + }, + { + "alg": "SHA-256", + "content": "ff56ff4d9ee52923c57354d5d836e87cc8acb748bbf0648c2406bcbafaa4227c" + } + ] + }, + { + "bom-ref": "2c04ee8426fa9a42", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Knox_IN", + "hashes": [ + { + "alg": "SHA-1", + "content": "2e4bbd4d2d4a5985eaf70306a65630ccaac5a8ce" + }, + { + "alg": "SHA-256", + "content": "ac4c928ad03acaf42f346aa81bf9d269a513adb14a955ff55a5177927832c6a8" + } + ] + }, + { + "bom-ref": "8628f9c6d5e11522", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/La_Paz", + "hashes": [ + { + "alg": "SHA-1", + "content": "f3f98197ac2eff5c28b03f46aff257aeb4fbb9dd" + }, + { + "alg": "SHA-256", + "content": "c95fb5fbc80f32110f36c756e648d901e362e4d96bc48e5b8d5eaf8c232654f7" + } + ] + }, + { + "bom-ref": "9b5885ac568b2616", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Lima", + "hashes": [ + { + "alg": "SHA-1", + "content": "19f85755b9bb958c43f7a3ce779c51124e65a490" + }, + { + "alg": "SHA-256", + "content": "f1ddf01592db3ede97b94d43fd210e2a841365b84017601248f51b21c20314eb" + } + ] + }, + { + "bom-ref": "ef6fa1061b15f7b3", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Los_Angeles", + "hashes": [ + { + "alg": "SHA-1", + "content": "8bc90b409c65a4297e874d896b9e216dd4dece6c" + }, + { + "alg": "SHA-256", + "content": "5f2a6fb2744e29e2a6ac88e89843ce0c74f8934b37d1b35d67e115d5363c9e57" + } + ] + }, + { + "bom-ref": "2e9a880f21959ee5", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Louisville", + "hashes": [ + { + "alg": "SHA-1", + "content": "4e438926303c8d5ca99bbee3499f5b93f483e290" + }, + { + "alg": "SHA-256", + "content": "afb7d1fa10278e2b8275017c592ba7679b4800a5fd1c875f5ecc8aa5ab21befe" + } + ] + }, + { + "bom-ref": "385d67f8e2584c63", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Maceio", + "hashes": [ + { + "alg": "SHA-1", + "content": "28f5555d5d9249fd9a5de665814bebb8e2a30ed1" + }, + { + "alg": "SHA-256", + "content": "564da2e13a0ac0d0bf7901bef8f811e53c3d78b51dbd5dc200630ba34151e6c8" + } + ] + }, + { + "bom-ref": "52b9f20cc4245d6f", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Managua", + "hashes": [ + { + "alg": "SHA-1", + "content": "7f121c056b462b7487792b722f42e07ad6c2b3e6" + }, + { + "alg": "SHA-256", + "content": "1a2e937499925a46e4d2b93113e7b035fdc270174a8fb4b65fd61f163b430ca3" + } + ] + }, + { + "bom-ref": "eedb66a970ce0e32", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Manaus", + "hashes": [ + { + "alg": "SHA-1", + "content": "f63c6e91bcfc4ff715db2fde78bd87049dc6ff52" + }, + { + "alg": "SHA-256", + "content": "c921cc8c1a0a1ed91805b81c0f22d5ee3a78fe3422f6366160c37b03302fd250" + } + ] + }, + { + "bom-ref": "f2d1911b4137de91", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Martinique", + "hashes": [ + { + "alg": "SHA-1", + "content": "9b750b0dfd1d66c3f0f7c5eb956db417720db5d0" + }, + { + "alg": "SHA-256", + "content": "18a0f75cca7c62ff1b7c8e0463856c1fa811e796806ef23cfd53d40a860861fa" + } + ] + }, + { + "bom-ref": "fbed0b4cd920aff0", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Matamoros", + "hashes": [ + { + "alg": "SHA-1", + "content": "07b19eb170ea97f00ff6b929a441806154e78e00" + }, + { + "alg": "SHA-256", + "content": "298a0a44d6576a9c127e048262a3f7f1b613653e0520a75bf912a65ccef50771" + } + ] + }, + { + "bom-ref": "a4a39cf5b008ea2a", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Mazatlan", + "hashes": [ + { + "alg": "SHA-1", + "content": "b95a3aa1ef177390a7c8c8ed20ef6c785883485c" + }, + { + "alg": "SHA-256", + "content": "972ebc94965c29a285412a68e853fc7729bd741b5be52edeb9f3b9a1a707ac43" + } + ] + }, + { + "bom-ref": "a5a258be78010959", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Mendoza", + "hashes": [ + { + "alg": "SHA-1", + "content": "a76cf095cb0ed10703f3c85b2d9a71d24d519beb" + }, + { + "alg": "SHA-256", + "content": "f5005f3971c083b81c94b0fa05262178468f7fb74462576a412f3d42b8dde50d" + } + ] + }, + { + "bom-ref": "5882418d2de2fced", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Menominee", + "hashes": [ + { + "alg": "SHA-1", + "content": "9c990d28995cc94bafb947838e91e2c6a98bc081" + }, + { + "alg": "SHA-256", + "content": "a9f238c519f7699a3bdd001ffb5588fc5c80329a14c95309aa424c0026440108" + } + ] + }, + { + "bom-ref": "5bccb37b54834a9d", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Merida", + "hashes": [ + { + "alg": "SHA-1", + "content": "6e1b686131de13c08420145d0f21482f50c5e3ac" + }, + { + "alg": "SHA-256", + "content": "a6352eb8ee46c326f0231e5e22ae330d465964514c21390e28aa5ddee377fb5c" + } + ] + }, + { + "bom-ref": "b6d93b55e99927df", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Metlakatla", + "hashes": [ + { + "alg": "SHA-1", + "content": "3273e15f439e1e11aaa295efb23d958a3f47b0ac" + }, + { + "alg": "SHA-256", + "content": "fc8c8661c4ebe17757c7fcc12b570674a0a84af90cdb36edf7e19d0293c36dfd" + } + ] + }, + { + "bom-ref": "abb266f01c535cd9", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Mexico_City", + "hashes": [ + { + "alg": "SHA-1", + "content": "b302b90247759fbd663cc375af4b950c7757941e" + }, + { + "alg": "SHA-256", + "content": "2b2e4e7d462f693d46142205a03882b383f3cfbc6eaa0a4c514fe71fd5112f12" + } + ] + }, + { + "bom-ref": "fa7778191f5e9aa4", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Miquelon", + "hashes": [ + { + "alg": "SHA-1", + "content": "ad885d883f932e876c32794a8fb89d777e79c33a" + }, + { + "alg": "SHA-256", + "content": "fa668103b3e90dc7ebbb2666fe3e76b29b15627b2eb6a82317a2f9b474ce98c2" + } + ] + }, + { + "bom-ref": "a67b44a4b017aaa9", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Moncton", + "hashes": [ + { + "alg": "SHA-1", + "content": "acbf1d07459a3b7adaeaeec2ec381e4aa61c264b" + }, + { + "alg": "SHA-256", + "content": "d587577011570e8271781f98b52f5ccb8650a7a1dc2c50789f4cb5d5d7e9c13a" + } + ] + }, + { + "bom-ref": "5446e6457b799bbc", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Monterrey", + "hashes": [ + { + "alg": "SHA-1", + "content": "f7145722a1b99d6645ee4e50284ba0af5720f999" + }, + { + "alg": "SHA-256", + "content": "a0334e1c8f6ebfdb959a536fea620a72031db45036d563864cdaba4e34b0c2c7" + } + ] + }, + { + "bom-ref": "3247afb499000cca", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Montevideo", + "hashes": [ + { + "alg": "SHA-1", + "content": "59f2a2ad905959d66047a742e7ae54203fbde17f" + }, + { + "alg": "SHA-256", + "content": "5717f3694cbcfdddb8b0ce33c5b50193f3cc1af97474230f0fe4f230d4769b01" + } + ] + }, + { + "bom-ref": "d4796e38ed3bc1ee", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Montreal", + "hashes": [ + { + "alg": "SHA-1", + "content": "c3c12775f021f944101bf960dfa4b392c5b48ae0" + }, + { + "alg": "SHA-256", + "content": "bd1fdaf567be65339c2fe8cadf9e690d0929548cd731edcb41ae7f322885a590" + } + ] + }, + { + "bom-ref": "f9a1aa35386240ac", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Nassau", + "hashes": [ + { + "alg": "SHA-1", + "content": "d8c61c85f823ffd277764baf52646a247f47a256" + }, + { + "alg": "SHA-256", + "content": "4ca3f90b3314d2fd13ba6310ac2e97a772dfdf1074ad87e9d2bc292549743ad2" + } + ] + }, + { + "bom-ref": "473b154752b4fbef", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/New_York", + "hashes": [ + { + "alg": "SHA-1", + "content": "1706f2e355174cb274f14fce57c79dc51d645575" + }, + { + "alg": "SHA-256", + "content": "9699b3dbf1b5a2fe33cc0eeb1bae542d83608786c0b1872b07b24adda81556a1" + } + ] + }, + { + "bom-ref": "2c9a377f882f7073", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Nipigon", + "hashes": [ + { + "alg": "SHA-1", + "content": "07fdd514959ac8a16e2a08288f903412f781c805" + }, + { + "alg": "SHA-256", + "content": "bedddedf42d1ecd3db1eeb61988fa1216f75b06c45a768822a16b4bf3e78542f" + } + ] + }, + { + "bom-ref": "6eabc6441299d978", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Nome", + "hashes": [ + { + "alg": "SHA-1", + "content": "c7c58c11806cdd649b569853b17ccfcb0a3baeff" + }, + { + "alg": "SHA-256", + "content": "2f167608a9d4171d89ee0a4d68c3ee845ebbd073e3759dc663a95dc8c865e4c1" + } + ] + }, + { + "bom-ref": "7294dd9d34b94c66", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Noronha", + "hashes": [ + { + "alg": "SHA-1", + "content": "7463d6f86dfd5e4590cfa67a1c4d66ee35fe118b" + }, + { + "alg": "SHA-256", + "content": "cc5b5c148b76dc58c925f589124f7f1ac05a52e9bc8f8cb0bf8bbef2b5779c78" + } + ] + }, + { + "bom-ref": "b33a360135a1b558", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/North_Dakota/Beulah", + "hashes": [ + { + "alg": "SHA-1", + "content": "7df91787b13ea67d6226d626ae11e5d84b1179d7" + }, + { + "alg": "SHA-256", + "content": "5a05c79be4ba9c4ed5a70aedbb8e83c2864c9ee5d974824130552d11097f654d" + } + ] + }, + { + "bom-ref": "7a8e982afbf5d2ad", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/North_Dakota/Center", + "hashes": [ + { + "alg": "SHA-1", + "content": "f78e004bd1a4f59f918da3fba9e1a261ecf4ca58" + }, + { + "alg": "SHA-256", + "content": "c4daf0f8f179948ca4f3edfef1c4bf6ea9926d157cbb83334d990c4f3ae76fb3" + } + ] + }, + { + "bom-ref": "f58926b661c65883", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/North_Dakota/New_Salem", + "hashes": [ + { + "alg": "SHA-1", + "content": "88da36a7aa3ecfdfca5480dc5f381a10aaf41f14" + }, + { + "alg": "SHA-256", + "content": "f728e13f15039666ade97ebb9e0e7d54b575495e14aa88ccf2761d29e5a390f4" + } + ] + }, + { + "bom-ref": "4c39c783f7542185", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Ojinaga", + "hashes": [ + { + "alg": "SHA-1", + "content": "66d477c00667d75459902693f2f844398f8b849b" + }, + { + "alg": "SHA-256", + "content": "e9cb05ec786e833e837b19a3d7bfe611e6d3ff3da1fc576fa5ea4f44c43f937f" + } + ] + }, + { + "bom-ref": "59efa0c7ed121bd5", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Pangnirtung", + "hashes": [ + { + "alg": "SHA-1", + "content": "96c1c7ecd3b0734074f9f2388ecd66d9e7964acc" + }, + { + "alg": "SHA-256", + "content": "c71e8ae865312e517ebc4076ecb9665c2cfdc7155549d18462e01275961925b8" + } + ] + }, + { + "bom-ref": "11d8a04286289486", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Paramaribo", + "hashes": [ + { + "alg": "SHA-1", + "content": "ac95bd0c866b405628685d462d93bc5d0dcdda42" + }, + { + "alg": "SHA-256", + "content": "cf4b95b3e776a776aaffb4c77cb62dcad960796b0876d0663c01ae3da38c078c" + } + ] + }, + { + "bom-ref": "fa1493654af04aee", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Phoenix", + "hashes": [ + { + "alg": "SHA-1", + "content": "b07023c58f0f07134b1fa44a7909483bc2ece29d" + }, + { + "alg": "SHA-256", + "content": "8a89f0e65cd0a0b2edbbf65a7a81441aa91073b133edac17c25c6c9f809b8995" + } + ] + }, + { + "bom-ref": "bea7c029d1d658fc", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Port-au-Prince", + "hashes": [ + { + "alg": "SHA-1", + "content": "53c15bf2fa7782bc15a8687a1cb7d8308d395ebe" + }, + { + "alg": "SHA-256", + "content": "aab1855d3200ed78c12406a44d8558a9a875dc57f94090b2c205811a92b5e066" + } + ] + }, + { + "bom-ref": "927ae03fe5388cd9", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Porto_Acre", + "hashes": [ + { + "alg": "SHA-1", + "content": "98e9d883dd26bbe4c274c4d8d676c2bcb42d1e27" + }, + { + "alg": "SHA-256", + "content": "90e09a708c3c756baf60fafda6f8a5f3316b8f0f13ae2433bcad860c74bd544c" + } + ] + }, + { + "bom-ref": "30e7d909d51e607e", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Porto_Velho", + "hashes": [ + { + "alg": "SHA-1", + "content": "f90471cd035d25edead4992f60dbc3a6eca0eea2" + }, + { + "alg": "SHA-256", + "content": "651eea662c20cfff098d84663237abba967604a6d0258d138d75e06ab483390b" + } + ] + }, + { + "bom-ref": "7374bb9894615250", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Puerto_Rico", + "hashes": [ + { + "alg": "SHA-1", + "content": "c5844b848fd8ed8ab2a728aff7a6ce46f95eeeca" + }, + { + "alg": "SHA-256", + "content": "a9e478dd8515a4c8086ff535afe44db1cf53b9400ec62aed7b6d122ecfb778f3" + } + ] + }, + { + "bom-ref": "eaffc8ba1702a489", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Punta_Arenas", + "hashes": [ + { + "alg": "SHA-1", + "content": "d7ca8a643873bf48ad4697d401c43e47ba80b040" + }, + { + "alg": "SHA-256", + "content": "300872a317db68e683587783e80e3a464c63971da1774b539fea0ee26763c451" + } + ] + }, + { + "bom-ref": "2b6eaaebe5e4cc74", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Rainy_River", + "hashes": [ + { + "alg": "SHA-1", + "content": "99f2f4a197a52778862adee4b1b7a593a43c695f" + }, + { + "alg": "SHA-256", + "content": "1680a0ae7e1d154aa9672b6e2d24155987de256acd7273f23177ef258d4ffe16" + } + ] + }, + { + "bom-ref": "85cc98a72a73adbf", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Rankin_Inlet", + "hashes": [ + { + "alg": "SHA-1", + "content": "5f30e146bb73e225902358bf4309e75a2ed5f5dd" + }, + { + "alg": "SHA-256", + "content": "1bb3cc33e21e5e7663a0cabcb02f9e7f74ee0619dcd0d84d4a4a31f611698b57" + } + ] + }, + { + "bom-ref": "9ab82e83855dec73", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Recife", + "hashes": [ + { + "alg": "SHA-1", + "content": "0ba2ca08f2fba631caea8fb6fc940d3026bc9ac4" + }, + { + "alg": "SHA-256", + "content": "4bf3764907eedcdc1325748d005e883ead0253178f552bf8c26f91c9472c5884" + } + ] + }, + { + "bom-ref": "5863cc301e8427f6", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Regina", + "hashes": [ + { + "alg": "SHA-1", + "content": "c9423136b4d214d9832eeeb9561b4b8058fead5f" + }, + { + "alg": "SHA-256", + "content": "7ef7b8f3a4e1baf07289907c77a4218ac0be68c7a24e980940a05cbba77e53c9" + } + ] + }, + { + "bom-ref": "7eff2080e21d8386", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Resolute", + "hashes": [ + { + "alg": "SHA-1", + "content": "0bbb9f0143829619a86c1d73e7db0bef63dbb063" + }, + { + "alg": "SHA-256", + "content": "2a208ed79da175c5081c8db0fb767d9b0e0270e4a73bb95f24ae0ffd22b6354f" + } + ] + }, + { + "bom-ref": "655205cbc11cef39", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Santarem", + "hashes": [ + { + "alg": "SHA-1", + "content": "cffc80e0c503d0567d0e6e27e8f8e2fc166c0157" + }, + { + "alg": "SHA-256", + "content": "5994056b5ce743dfdcdc80dba996df44665d743abbdff8d8841b7b4ac326339f" + } + ] + }, + { + "bom-ref": "bee4689f97a44e47", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Santiago", + "hashes": [ + { + "alg": "SHA-1", + "content": "99f95d99170d73e2a90aaacf6d17ec41d1e8ab3c" + }, + { + "alg": "SHA-256", + "content": "986a3d87481910c37ff5045ecb26e8d7832333bb9b8bf0cefa8f2518c787fcb5" + } + ] + }, + { + "bom-ref": "9053ec0a223960d9", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Santo_Domingo", + "hashes": [ + { + "alg": "SHA-1", + "content": "34ae761d5b22852d593396d7ba47682b06060f4c" + }, + { + "alg": "SHA-256", + "content": "24bf349defe5c3ed5d8950593acbcd57dc662784ddfae68b31cddfa02746f2ba" + } + ] + }, + { + "bom-ref": "3163e81d0a33749b", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Sao_Paulo", + "hashes": [ + { + "alg": "SHA-1", + "content": "119fc141a11808d15be7407b2894ef4601dbe919" + }, + { + "alg": "SHA-256", + "content": "30ef7b506e76ac5286ad4415d7daa8abf0af2b6c63abb540869a8dc1c61f28a0" + } + ] + }, + { + "bom-ref": "0042af14e527093f", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Scoresbysund", + "hashes": [ + { + "alg": "SHA-1", + "content": "b784fa1e86c247f48d02a4faddd8db6ed5ed9afa" + }, + { + "alg": "SHA-256", + "content": "fa41c201d42521e8a0db51e00fa9487fad84467b15706e00221088e217ba129d" + } + ] + }, + { + "bom-ref": "d1f052b0b59e7112", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Sitka", + "hashes": [ + { + "alg": "SHA-1", + "content": "a6f9b4f0b66aec72cdca591a856243d529776e95" + }, + { + "alg": "SHA-256", + "content": "81ba6e3b87b7f9c9814c4f607a3c722a0bbd8355ab1647c51847882b3a3c0628" + } + ] + }, + { + "bom-ref": "e55ce43482255194", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/St_Johns", + "hashes": [ + { + "alg": "SHA-1", + "content": "400e3b11cff8acf487e4739bad557c1b7a157364" + }, + { + "alg": "SHA-256", + "content": "10784794564849767481803ad10924bd7092c041b5e5859dc7cdf883abe13a7e" + } + ] + }, + { + "bom-ref": "8e669dd61a674854", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Swift_Current", + "hashes": [ + { + "alg": "SHA-1", + "content": "5e88cf6e6fbe05951f3950856c6a396994bbd5e9" + }, + { + "alg": "SHA-256", + "content": "7752d4a7cd93e6c9a16f89dfa148ce6ac6f491cf40359f9d6730e03b4aedf848" + } + ] + }, + { + "bom-ref": "5ebcd3490f0e32d6", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Tegucigalpa", + "hashes": [ + { + "alg": "SHA-1", + "content": "d469e4255a563de31fbd87ae8cd97598f32222c5" + }, + { + "alg": "SHA-256", + "content": "c37dd7463adb25b95fd20bd17473e710e03c9c5d36481b4626a82aabd7469983" + } + ] + }, + { + "bom-ref": "7c33ff6ebd2593fd", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Thule", + "hashes": [ + { + "alg": "SHA-1", + "content": "b6310a4db7591b006fa2cd5b1f33699cc482f54c" + }, + { + "alg": "SHA-256", + "content": "67e571d61867a4ea726d7b19f5fabca2a7751219685d57eee29570ec9225f0ea" + } + ] + }, + { + "bom-ref": "29f612ea206f0219", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Thunder_Bay", + "hashes": [ + { + "alg": "SHA-1", + "content": "fae15856122255c188a68d7f5b05424dd9a5dc77" + }, + { + "alg": "SHA-256", + "content": "2c04cafec84e648e5d1154986626b32ebdb0def10d7c8843d27bbee20ad82e5e" + } + ] + }, + { + "bom-ref": "7661525512dedb1d", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Vancouver", + "hashes": [ + { + "alg": "SHA-1", + "content": "067128b78f49dff6017a4bb46418bee49374b939" + }, + { + "alg": "SHA-256", + "content": "59f3b401ccdbabb740e3395b75233402d6d2e0590195df1e5d8e73e736158361" + } + ] + }, + { + "bom-ref": "57edd36ad3e71eba", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Whitehorse", + "hashes": [ + { + "alg": "SHA-1", + "content": "705d61b665f97bd0408f00cf6859b3e918832c4b" + }, + { + "alg": "SHA-256", + "content": "b4313b33ba86eccfb0375437fe893cf15f051a4c2dc59f3ad3b9fc2dfa8bbcc0" + } + ] + }, + { + "bom-ref": "bf81a1140faa39dc", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Winnipeg", + "hashes": [ + { + "alg": "SHA-1", + "content": "d0ef2e75dd47308f0e1cc9d58b76b475768291ff" + }, + { + "alg": "SHA-256", + "content": "a91e3074914af25d44e7428f07b7e15c46a9b1c61adf146d78058bfb95128031" + } + ] + }, + { + "bom-ref": "609fd2dbf1cd2b8d", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Yakutat", + "hashes": [ + { + "alg": "SHA-1", + "content": "8c0a3edc2d383d230aa884f8450b7beaf1faa8ad" + }, + { + "alg": "SHA-256", + "content": "a8d6177b9fb9653500c7a5468e35508251be2a6dce9040ad9ebfbffcd4cc3ad2" + } + ] + }, + { + "bom-ref": "1da5ce9f12049f0a", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Yellowknife", + "hashes": [ + { + "alg": "SHA-1", + "content": "f123d094a43aacf14f7785b5a6863d4b8bfcd6dc" + }, + { + "alg": "SHA-256", + "content": "ffb6c39b1c757ff250651391b07dc8d3e3ea361f837472ef57c62eea144677ef" + } + ] + }, + { + "bom-ref": "50c133454c87515e", + "type": "file", + "name": "/usr/share/zoneinfo/right/Antarctica/Casey", + "hashes": [ + { + "alg": "SHA-1", + "content": "a5c90e8ed6c6966cfb6d20f64f5e8c5c3dab20db" + }, + { + "alg": "SHA-256", + "content": "8d5daeee007f1c92a7749a2e4dfc4f53aac37d955e7fd0f942d09b7841a1cbb7" + } + ] + }, + { + "bom-ref": "6344e15e0e987e20", + "type": "file", + "name": "/usr/share/zoneinfo/right/Antarctica/Davis", + "hashes": [ + { + "alg": "SHA-1", + "content": "0d47244c320c6c7ce3734b6c2c6c4bca0b202d12" + }, + { + "alg": "SHA-256", + "content": "74c57bbabd9734817648bb1b717ba8cea2d000297a0c82d9d9f0ecfb5a6de509" + } + ] + }, + { + "bom-ref": "ad167785e17317b3", + "type": "file", + "name": "/usr/share/zoneinfo/right/Antarctica/DumontDUrville", + "hashes": [ + { + "alg": "SHA-1", + "content": "73c722527690eb102f9eaf304f2a68eeaeb22af8" + }, + { + "alg": "SHA-256", + "content": "02aadd2f58956d4ecf18d22258af85b368a0140656ef079ea81e0f9e3eae59ef" + } + ] + }, + { + "bom-ref": "932379496a49aece", + "type": "file", + "name": "/usr/share/zoneinfo/right/Antarctica/Macquarie", + "hashes": [ + { + "alg": "SHA-1", + "content": "f56cb025ab08e48a25e7ed310f40f8f9fb0ba091" + }, + { + "alg": "SHA-256", + "content": "44e9dda15fa60b0f03fc171c9f2de82bb18a0078fdc5a8f49f74d60729bcaee3" + } + ] + }, + { + "bom-ref": "6c1a5edf52222e7d", + "type": "file", + "name": "/usr/share/zoneinfo/right/Antarctica/Mawson", + "hashes": [ + { + "alg": "SHA-1", + "content": "c6d49ad45fdc14949e02b2f065e682f1886bd129" + }, + { + "alg": "SHA-256", + "content": "c21ee7da441169a32db233d5f712b0e0e9f467224c31005a6ee94791e80dce7d" + } + ] + }, + { + "bom-ref": "0bce7f8a2ad53b04", + "type": "file", + "name": "/usr/share/zoneinfo/right/Antarctica/Palmer", + "hashes": [ + { + "alg": "SHA-1", + "content": "1563fc36e17ea079e386e4f76be8cea5ba9125b7" + }, + { + "alg": "SHA-256", + "content": "3d776d3217806a1dfa38b342c7d413bf1c05d47e440625a25850f10de050175a" + } + ] + }, + { + "bom-ref": "d4e9fdf9b5f5591d", + "type": "file", + "name": "/usr/share/zoneinfo/right/Antarctica/Rothera", + "hashes": [ + { + "alg": "SHA-1", + "content": "fc1ce5a0154f6b04cc6ad26f724e7b80e7f1844e" + }, + { + "alg": "SHA-256", + "content": "6a17dce1f665a2ca8026fef6634fca93b698392000e97f89797ef44b57afa7ca" + } + ] + }, + { + "bom-ref": "bb6694b1eba8cb08", + "type": "file", + "name": "/usr/share/zoneinfo/right/Antarctica/Syowa", + "hashes": [ + { + "alg": "SHA-1", + "content": "305620cf0417376628c91b4c534656ab947b3af7" + }, + { + "alg": "SHA-256", + "content": "785f2980f27b1976e65a7e5bc7f1d944d5b7e78656a35b30ef8f144c35103a5b" + } + ] + }, + { + "bom-ref": "57a1f02bafb5251e", + "type": "file", + "name": "/usr/share/zoneinfo/right/Antarctica/Troll", + "hashes": [ + { + "alg": "SHA-1", + "content": "2aeddac6bb21e4d8c38f6115d8d5c10d75669b0b" + }, + { + "alg": "SHA-256", + "content": "4fe25a3e29129e9204e750a191c11202dc66e122423c1d97ea03d579182e38ac" + } + ] + }, + { + "bom-ref": "ffd51f7893ee83da", + "type": "file", + "name": "/usr/share/zoneinfo/right/Antarctica/Vostok", + "hashes": [ + { + "alg": "SHA-1", + "content": "4ac16b69d7ee7f799379c37425f2991932dbedd1" + }, + { + "alg": "SHA-256", + "content": "85a1b3ff9f71acab9c1e01cb31ee3e9330b9abe48a84763b8d35c6a3b7d6086c" + } + ] + }, + { + "bom-ref": "c0484763fb0162c9", + "type": "file", + "name": "/usr/share/zoneinfo/right/Arctic/Longyearbyen", + "hashes": [ + { + "alg": "SHA-1", + "content": "8f8bd76eceef514dbb868ccef4c7eeae9c6bf5a8" + }, + { + "alg": "SHA-256", + "content": "b9f4a8a248c4b945a12640b4be549baaa438a9c3472822028e9f4988cd4e8b63" + } + ] + }, + { + "bom-ref": "83c7786fcd88efc6", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Aden", + "hashes": [ + { + "alg": "SHA-1", + "content": "99427ded3b5fd88972874c3b3dd7ba695ae4bffe" + }, + { + "alg": "SHA-256", + "content": "f3f24b3aba19f09734826f156f5537eb97ef899b249ec673048e5d07369487c7" + } + ] + }, + { + "bom-ref": "88962f9705425a3c", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Almaty", + "hashes": [ + { + "alg": "SHA-1", + "content": "f5d183f61fee12467ce1ba86885dca2e06b28076" + }, + { + "alg": "SHA-256", + "content": "bb58e7c09cb5daf5f6afc61969735809085f8f7d1fb9d129f2dff6d52c2d5370" + } + ] + }, + { + "bom-ref": "09ed062ac9eb1f41", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Amman", + "hashes": [ + { + "alg": "SHA-1", + "content": "7182c18bff35717f222b23354bb5908144f0c546" + }, + { + "alg": "SHA-256", + "content": "0dfa946fc43a7d4ad00e75aba44720018d82f36411351b2e5a103dbfadaf0d8c" + } + ] + }, + { + "bom-ref": "8dd3acd742d08222", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Anadyr", + "hashes": [ + { + "alg": "SHA-1", + "content": "844a76a8ea5399baed7701a1317af9953418cfd1" + }, + { + "alg": "SHA-256", + "content": "723f952ffdde9c6027874689c1b831211ed782bcd1a78b0b3a63f9dd22b661f4" + } + ] + }, + { + "bom-ref": "41665e81bbc3ef96", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Aqtau", + "hashes": [ + { + "alg": "SHA-1", + "content": "3fbee42c963c39bb66056ca3ee0e2de30e7f6dc3" + }, + { + "alg": "SHA-256", + "content": "aee361faa20979a35b89ac0f538cb4b67c793a36ccfcd98bae1f0f1e2dce98e1" + } + ] + }, + { + "bom-ref": "dc3c13880c44bb72", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Aqtobe", + "hashes": [ + { + "alg": "SHA-1", + "content": "c187658a234fbaf4ad27cb86fa9939ede3129303" + }, + { + "alg": "SHA-256", + "content": "58034c93dece9d7b3b8f44e6d39318814c3a5810cd460e87d888c572e8794b17" + } + ] + }, + { + "bom-ref": "7d7420446a84e9ba", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Ashgabat", + "hashes": [ + { + "alg": "SHA-1", + "content": "142b9783e1d73939a27e2d02bc43c64e281a4d79" + }, + { + "alg": "SHA-256", + "content": "67ef3f1da89446f546c8f8767c16e3106e8c85df4a20d89bc1870f0ea174a20d" + } + ] + }, + { + "bom-ref": "71163992d7a5ac80", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Atyrau", + "hashes": [ + { + "alg": "SHA-1", + "content": "6a6503f18bcc10e2726eb4c1dda1d9acb1c9cfa8" + }, + { + "alg": "SHA-256", + "content": "37546c1d6704164b04d1126a889c03876bd08241f2fa70e8ec6d6f3012857651" + } + ] + }, + { + "bom-ref": "3410ab840916a71e", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Baghdad", + "hashes": [ + { + "alg": "SHA-1", + "content": "e53a20e870a2b3f18a4d4c44f25d269f53a05f99" + }, + { + "alg": "SHA-256", + "content": "71e50815aa9bfebe11c36f200503c2c62d89bf715a067175d2091185bb6b2829" + } + ] + }, + { + "bom-ref": "2ecda1f6411e5bb3", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Bahrain", + "hashes": [ + { + "alg": "SHA-1", + "content": "a4db805e5f5fe3209cf343bcd8a636663b4986b9" + }, + { + "alg": "SHA-256", + "content": "2e7b84c80828a81f1f7bbaf7355133a81ad96b1273a29c223acf12d1446d4922" + } + ] + }, + { + "bom-ref": "15c381cbd05e6da2", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Baku", + "hashes": [ + { + "alg": "SHA-1", + "content": "6bcb640895f9ee62f83f2156ff2505403bc5f294" + }, + { + "alg": "SHA-256", + "content": "3a06bcc490313e6868f2c50f64a724c494f39c23420e741d4e78208abdd5f69d" + } + ] + }, + { + "bom-ref": "8ba1a4358172f4e9", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Bangkok", + "hashes": [ + { + "alg": "SHA-1", + "content": "d010835725154ab03c21403d44bb954501a6b0ed" + }, + { + "alg": "SHA-256", + "content": "d91fabfc29473f96272f2e96868a44393d6ce11950b7a5ec32eae83dc142b4a4" + } + ] + }, + { + "bom-ref": "0353368bf59b5123", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Barnaul", + "hashes": [ + { + "alg": "SHA-1", + "content": "54f272abacc369ea7635d12dcd2a36945d27442e" + }, + { + "alg": "SHA-256", + "content": "0436ee225d77df15229ebf4e30079643bb2cf55131d60b1d6718ddbb77826710" + } + ] + }, + { + "bom-ref": "04e807102da3bd78", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Beirut", + "hashes": [ + { + "alg": "SHA-1", + "content": "808941b4dbf4d525ec577f8f47c3519f319aa8fc" + }, + { + "alg": "SHA-256", + "content": "3e24a502c1fb5fb0dd7a8c738f28074b8e785311ba73a33fb597c2172ca288a0" + } + ] + }, + { + "bom-ref": "5098a5f80ddb918c", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Bishkek", + "hashes": [ + { + "alg": "SHA-1", + "content": "ab6483b7cf54ca197f36507cd0650fefff41900a" + }, + { + "alg": "SHA-256", + "content": "9bab70e971735626c3169c9a45153d4da93114bfd8b7295e5d56fc0173cc26fd" + } + ] + }, + { + "bom-ref": "370d2b1189d21c8a", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Brunei", + "hashes": [ + { + "alg": "SHA-1", + "content": "8e370f0073fd6c86db67f13d84c0560c004dfee0" + }, + { + "alg": "SHA-256", + "content": "a44c283addb335506e1b7a9c288240d2c651e1bbfbfefd9cadfa7181aaf4b1ec" + } + ] + }, + { + "bom-ref": "efcbbc0112a11d30", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Calcutta", + "hashes": [ + { + "alg": "SHA-1", + "content": "f28c26c212d9cd35bee3af067a58f3e8122786e2" + }, + { + "alg": "SHA-256", + "content": "637147fe7b40e10955c08b61ecc5639148589ce9bd6939cf7b98bc02cccd5036" + } + ] + }, + { + "bom-ref": "edce828f0fdb1eaf", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Chita", + "hashes": [ + { + "alg": "SHA-1", + "content": "0461d4e24308235caec10a9c08d5bd30a21e8eea" + }, + { + "alg": "SHA-256", + "content": "d935e891890a25a2d1ebf88768f70193d23e3d6522c67ed4e4c1435fd9de6a0e" + } + ] + }, + { + "bom-ref": "7849dac1bd3cdce0", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Choibalsan", + "hashes": [ + { + "alg": "SHA-1", + "content": "6525a629b93c91b0eea30c6bab3c4c4af5ab7442" + }, + { + "alg": "SHA-256", + "content": "5e68707f2d985de61d9a1ca14134c5f96781eff2486e40be8d5b4d34708d59e2" + } + ] + }, + { + "bom-ref": "d38de6b5aba40e46", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Colombo", + "hashes": [ + { + "alg": "SHA-1", + "content": "5decf6ef7c188c3c242cd39c698ae385424e50e9" + }, + { + "alg": "SHA-256", + "content": "d2105ff2a10182bf68780abfa1b9a22574b1e30efe6a249b4f8e0f17058fa659" + } + ] + }, + { + "bom-ref": "c2df7b3bd7116259", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Dacca", + "hashes": [ + { + "alg": "SHA-1", + "content": "2d382ec97c1758d7fe9f9c04af82c7549193d83d" + }, + { + "alg": "SHA-256", + "content": "8b30cb0ad86ae48068d4d6293137bb66ac4ebc73000ba2cca9428ef13c244b8a" + } + ] + }, + { + "bom-ref": "759ce6ee67daa000", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Damascus", + "hashes": [ + { + "alg": "SHA-1", + "content": "cff80f629072511806b90c68dfba4dd4293ebf59" + }, + { + "alg": "SHA-256", + "content": "e23e8576a6f8b5b65a356e535ba0ffc916d211a155207e486dd40b1757f3b831" + } + ] + }, + { + "bom-ref": "5f6edfe557c7e8f5", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Dili", + "hashes": [ + { + "alg": "SHA-1", + "content": "dc611f17559cb5e3a167843ef3ca29ddca3d6b8e" + }, + { + "alg": "SHA-256", + "content": "1027c57d5d5094c84e80ab360790f0355acce56ec10c6df5567ad35baeba093b" + } + ] + }, + { + "bom-ref": "c30c831d31c4db13", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Dubai", + "hashes": [ + { + "alg": "SHA-1", + "content": "962d02721959a400cd0a2e57cf5757f080b323a5" + }, + { + "alg": "SHA-256", + "content": "86cb3519886f292920f8c8ff5b551bb66ab5c7ab559ef378584a464dfcc539fc" + } + ] + }, + { + "bom-ref": "a2d44859f48e37ba", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Dushanbe", + "hashes": [ + { + "alg": "SHA-1", + "content": "e95bb198c41ec035b48540525e3b32307ad76dfa" + }, + { + "alg": "SHA-256", + "content": "518c7e9aabe61a423f703f9285036c37b0b63db85614a54fc053b72dc0f7ac9f" + } + ] + }, + { + "bom-ref": "e361e41026013ac7", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Famagusta", + "hashes": [ + { + "alg": "SHA-1", + "content": "549f96cb12326a5bf789409cbf6b7a429b0c36c4" + }, + { + "alg": "SHA-256", + "content": "40438f760718c79a99e171a199690123f0cc531fef996423c2ca840d20b6bce9" + } + ] + }, + { + "bom-ref": "4382667166346a55", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Gaza", + "hashes": [ + { + "alg": "SHA-1", + "content": "ceadddec67bb38a70c63064ad6b95b2d1062091c" + }, + { + "alg": "SHA-256", + "content": "38e5830f0db3ca80955a4b7803928e21920902739012f76425652dad1ee76493" + } + ] + }, + { + "bom-ref": "25b56e897d193bfe", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Hebron", + "hashes": [ + { + "alg": "SHA-1", + "content": "6c8b3624214e3a555abce0d9f8c4c47f0ee9b352" + }, + { + "alg": "SHA-256", + "content": "190d10d40c9c8971f618d80f0ca79d1f304ba326a7466352497e6320c43d3f91" + } + ] + }, + { + "bom-ref": "4691fd5d9ba62d87", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Ho_Chi_Minh", + "hashes": [ + { + "alg": "SHA-1", + "content": "75c87f94f4c40cc829d9755a975dc600ed3c8e08" + }, + { + "alg": "SHA-256", + "content": "496bbfe0b2bbd4922f8a4a5cc56a405485c1b9df21375d75996ac5e3008f87b9" + } + ] + }, + { + "bom-ref": "f0ba14d520b6bc3a", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Hovd", + "hashes": [ + { + "alg": "SHA-1", + "content": "36a66f5a98a4f4c295db6a12fe33c1f76b064135" + }, + { + "alg": "SHA-256", + "content": "c51f36d33e1b9fc550b8dd1d2182d8b441a8c77d6f64a5a89859b901a08e2759" + } + ] + }, + { + "bom-ref": "10aaa2583486dafd", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Irkutsk", + "hashes": [ + { + "alg": "SHA-1", + "content": "9351a45a94d34b04c1378ea287fa553d6845d877" + }, + { + "alg": "SHA-256", + "content": "ad1c94f9d9a0e542c80d2b53c4980131675936f6d6e7f04615c1e5029ff1d643" + } + ] + }, + { + "bom-ref": "1a86600b94b55b90", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Jakarta", + "hashes": [ + { + "alg": "SHA-1", + "content": "fc2501f0bbf1ecd9213dd477548cfe2cc7f5a2de" + }, + { + "alg": "SHA-256", + "content": "1e1d6c8a2a336137b702b0e68da98b2b2c3135a1844f9bc17d05d0eff1ef18bd" + } + ] + }, + { + "bom-ref": "540fe6f5ec8b6975", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Jayapura", + "hashes": [ + { + "alg": "SHA-1", + "content": "505fddabfcc8c600ec8d18aa54c3217e5d77d3d7" + }, + { + "alg": "SHA-256", + "content": "ccfa8a6a43b97d5dd2e2c33f84951460b2bffcc1202919ef38c3b097a83167db" + } + ] + }, + { + "bom-ref": "984fe6798aa6cc41", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Kabul", + "hashes": [ + { + "alg": "SHA-1", + "content": "86b16da36122d6ddaf30f53ff4cfbcc148a1b734" + }, + { + "alg": "SHA-256", + "content": "94835befd0e3581a0cf3c5d3fe177b2f1319868077ccd423af2fda0996cfee7b" + } + ] + }, + { + "bom-ref": "01b5fbb37c886988", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Kamchatka", + "hashes": [ + { + "alg": "SHA-1", + "content": "289a1cd7ccf61e3b20325dd981c1fe68d2b0d1c5" + }, + { + "alg": "SHA-256", + "content": "bc897301c4b520c5fe1201efc6b656b77e54c55cec912beab9891463f79410f3" + } + ] + }, + { + "bom-ref": "b8ff2b3afaf7ffd7", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Karachi", + "hashes": [ + { + "alg": "SHA-1", + "content": "45d261db0c2a328997b0dbe0d672f3d605853ed6" + }, + { + "alg": "SHA-256", + "content": "08c8c89e2687b19464bc067b6b368bfe3106c980538c0b3314e7301e192a295a" + } + ] + }, + { + "bom-ref": "64b13e0ced6d6f5c", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Kashgar", + "hashes": [ + { + "alg": "SHA-1", + "content": "82323765804ef278c11d3c0595642cb83df0c92a" + }, + { + "alg": "SHA-256", + "content": "c73db62481070869d19d18143892e5fea592a147cc3a230b120d2b0663882591" + } + ] + }, + { + "bom-ref": "b9bdd8853d952e1f", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Kathmandu", + "hashes": [ + { + "alg": "SHA-1", + "content": "b6389d024e000921ca9393eba5c0ad14e29a68a6" + }, + { + "alg": "SHA-256", + "content": "c9482baab20e577e331c8c15889c2b881eff5de670ff0502c3c8bdc5e985c1cc" + } + ] + }, + { + "bom-ref": "2d393d4a20759a5b", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Khandyga", + "hashes": [ + { + "alg": "SHA-1", + "content": "77e698665941e9434003b102971a33a28814475e" + }, + { + "alg": "SHA-256", + "content": "79a1086c8573e9fc21ad02d2c092f00182fc14fecf7aee7df2c66d16d33f58d8" + } + ] + }, + { + "bom-ref": "8bf3cbe90565ffce", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Krasnoyarsk", + "hashes": [ + { + "alg": "SHA-1", + "content": "0f129239eb7bf428a9a66e9d6ae0bfb9d4e51705" + }, + { + "alg": "SHA-256", + "content": "1f2e856dd5b062136b649c0b86738d31ac218406fdee6d98f26b110c0e913287" + } + ] + }, + { + "bom-ref": "6c968ee3052c9d76", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Kuala_Lumpur", + "hashes": [ + { + "alg": "SHA-1", + "content": "fb035f04c8d9fccd66f7760d5e304c2833175887" + }, + { + "alg": "SHA-256", + "content": "b49df9efbe233fded04d2a35bafd4a2291fd7c91639a7761e5882d5824c8868e" + } + ] + }, + { + "bom-ref": "fc0c72245c176be6", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Kuching", + "hashes": [ + { + "alg": "SHA-1", + "content": "9d14443bf616aafed5f1c697c943019cfd194dec" + }, + { + "alg": "SHA-256", + "content": "217b0ff65b13b272a0661ebbbfb6cd392f13fdd0612dcfbe1077c40d2fcf58cb" + } + ] + }, + { + "bom-ref": "3973e0e2398eaeb2", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Macao", + "hashes": [ + { + "alg": "SHA-1", + "content": "ccaed6c3752ecfaadf3f361de8e89093b1014ed3" + }, + { + "alg": "SHA-256", + "content": "470b21048ae38a2d611012c63f0359ae5bf685afa696d9cdb2a17438635b5283" + } + ] + }, + { + "bom-ref": "25e62d28a87d8447", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Magadan", + "hashes": [ + { + "alg": "SHA-1", + "content": "c7657afa6701167c840d1827422866b216fc5525" + }, + { + "alg": "SHA-256", + "content": "4da1ed819b7a50248044e582cd1221e878cc104f429900dccda3d097b9ad6ad4" + } + ] + }, + { + "bom-ref": "44035fd9aed5edc0", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Makassar", + "hashes": [ + { + "alg": "SHA-1", + "content": "eb5c39a5d8f32ac23cea4d3f19ecb59f2d264693" + }, + { + "alg": "SHA-256", + "content": "6bb9b9d31d2f3c57b17a9ec143294ffaa86669e793adf98c5acd1a980d6d4125" + } + ] + }, + { + "bom-ref": "dc125bb8325436bf", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Manila", + "hashes": [ + { + "alg": "SHA-1", + "content": "ac1d20b0511f8b601069d63b0cd60771ed1032f2" + }, + { + "alg": "SHA-256", + "content": "676bd6835773f0de41e52285dbb78830de3f80d98097f06dfedafff34b6c40aa" + } + ] + }, + { + "bom-ref": "82f2023f2750e088", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Nicosia", + "hashes": [ + { + "alg": "SHA-1", + "content": "8a3e57105a56ea4d50737f3a73d7f099e523092c" + }, + { + "alg": "SHA-256", + "content": "b801d86c6b957dd1affe34a2d19a0c580be861d8ccd283d9f48e2dc991fe3696" + } + ] + }, + { + "bom-ref": "64e97608d94fa959", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Novokuznetsk", + "hashes": [ + { + "alg": "SHA-1", + "content": "d83f380ecb93a382edd2d857400076fd81b9b4a7" + }, + { + "alg": "SHA-256", + "content": "121a05f4f5f4f88638e53bd570db3a9f3c247d29020491e871c55df3febc59e0" + } + ] + }, + { + "bom-ref": "e1aa8c7a5410bd21", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Novosibirsk", + "hashes": [ + { + "alg": "SHA-1", + "content": "34c99afaecb0cd1333ba0bafb393481f57b2fed8" + }, + { + "alg": "SHA-256", + "content": "0efbee40872e742db4124508044fdabf5cbc616ed26dcfe5fb80e1a97b0f365d" + } + ] + }, + { + "bom-ref": "6c1f7cd3187a46d1", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Omsk", + "hashes": [ + { + "alg": "SHA-1", + "content": "2e02297aff287676e574169b2bcde7c26d58f627" + }, + { + "alg": "SHA-256", + "content": "64615d9337250ed8ef6a150d1b331947f4b75e3132d9319ad5243d07d41089d0" + } + ] + }, + { + "bom-ref": "bd43d2f89af8a9ee", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Oral", + "hashes": [ + { + "alg": "SHA-1", + "content": "cff575ad85880e882fc318f34662fdd2af965caa" + }, + { + "alg": "SHA-256", + "content": "f6881fc8bcbf070d6f8d5dac52f19fdf9162ce8d5144766b92620705fe82d59a" + } + ] + }, + { + "bom-ref": "7aa536160abac87f", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Pontianak", + "hashes": [ + { + "alg": "SHA-1", + "content": "582d71133328ae1862c3cc3a7cfbfe491a94ead0" + }, + { + "alg": "SHA-256", + "content": "5387a863122580120cb3ee351bcada3b3dfbf163424291b97bac4e2cabd9845f" + } + ] + }, + { + "bom-ref": "6df23e9d8b05a06f", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Pyongyang", + "hashes": [ + { + "alg": "SHA-1", + "content": "f0c5bc80ad77c81509ad2341346747c6ff11a984" + }, + { + "alg": "SHA-256", + "content": "c74b65040a8f280458f9f6054fdecb2b980510376426b6367a457ec0da0ac08d" + } + ] + }, + { + "bom-ref": "332f2aef379011da", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Qostanay", + "hashes": [ + { + "alg": "SHA-1", + "content": "4e50382b02c9053eb8f4afb923348a288037568c" + }, + { + "alg": "SHA-256", + "content": "c2fcd0ffd483e7c87cc92e63f5409cfa72e322ef99bfb89ff040ef53ce6f0170" + } + ] + }, + { + "bom-ref": "82da4b960c2d8e39", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Qyzylorda", + "hashes": [ + { + "alg": "SHA-1", + "content": "a2c99b49c636e5c460a40480d5ad10237f005a8e" + }, + { + "alg": "SHA-256", + "content": "4bb11726867dc275fd2622da77c437aedd48df9d2ffac75af12f3540408f13e5" + } + ] + }, + { + "bom-ref": "0d850f888addcf48", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Rangoon", + "hashes": [ + { + "alg": "SHA-1", + "content": "5d9f6fab9ab04d079cfd379ff38333b92ff1c5b4" + }, + { + "alg": "SHA-256", + "content": "a38bd662f07725a121cbb302b992167054cd598c5127c30514f1fe1fe0c8d70d" + } + ] + }, + { + "bom-ref": "ff7ebccee737c3c2", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Sakhalin", + "hashes": [ + { + "alg": "SHA-1", + "content": "d2c2c2630a7e4c8923b3ee9ac7234d2df2007e75" + }, + { + "alg": "SHA-256", + "content": "a0651f797d67edd06928f67bbebb2872fff7b5c8d42e3dbb5554dd66389d610a" + } + ] + }, + { + "bom-ref": "306083ca5a795c5a", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Samarkand", + "hashes": [ + { + "alg": "SHA-1", + "content": "87d3e6117db84a593bb5d79639ae36118545b6a9" + }, + { + "alg": "SHA-256", + "content": "8e8266acc24f1234e3df68f68e1d4c80e3c9c3ed313da024517f3051f9dcaa09" + } + ] + }, + { + "bom-ref": "a0d44b4a0ab390e9", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Srednekolymsk", + "hashes": [ + { + "alg": "SHA-1", + "content": "dbd01f4d811f80dc3196df983c3d4b261d9c5f39" + }, + { + "alg": "SHA-256", + "content": "bc4ac100afd7e317e5939451b677a707dc1a51e646f380bf56411916084a2f87" + } + ] + }, + { + "bom-ref": "8069af867a88b755", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Tashkent", + "hashes": [ + { + "alg": "SHA-1", + "content": "3ab62851d7a653cf74ef7ff6bbd344070013e5fb" + }, + { + "alg": "SHA-256", + "content": "7ef3e54ff15a28d5054bc7a3c2946ad05849d57a4cf0096f1982a59be031a207" + } + ] + }, + { + "bom-ref": "99cd0ac70240d02f", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Tbilisi", + "hashes": [ + { + "alg": "SHA-1", + "content": "e75fb851cb164dd03dee4bc4d803fe31e0464463" + }, + { + "alg": "SHA-256", + "content": "265b4e7c276a60c19c2039171c2b633b3b0c0d51c7d3d527a11c9eaa0b2b9ec7" + } + ] + }, + { + "bom-ref": "d080a98223c67bd4", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Thimbu", + "hashes": [ + { + "alg": "SHA-1", + "content": "2964637e375fac37e5aba18c67cb48c0a191e5ac" + }, + { + "alg": "SHA-256", + "content": "38acdb7ead0a0945764ce021f31292acba206c6361ec57eb56129a52d5efe650" + } + ] + }, + { + "bom-ref": "3404a689e051c380", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Tomsk", + "hashes": [ + { + "alg": "SHA-1", + "content": "8e5739350a3e49aa4639e0264d563d66bcfafae2" + }, + { + "alg": "SHA-256", + "content": "ec986c86975c8d0f95485b5d809100261dd19de6376d960672dd08671e8eb63e" + } + ] + }, + { + "bom-ref": "986b38b6e3500b9a", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Ulaanbaatar", + "hashes": [ + { + "alg": "SHA-1", + "content": "ec443858ad7d96bf5eb6297fe422c39fbb63111e" + }, + { + "alg": "SHA-256", + "content": "77dac4fa1d2f3d584ac760f2ae886c14d1c20c321865f5c28602038aeb43b0f4" + } + ] + }, + { + "bom-ref": "e06c2805718aad9c", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Ust-Nera", + "hashes": [ + { + "alg": "SHA-1", + "content": "ea5ead6649a3f2852b4e08d20cc89da99e0559e8" + }, + { + "alg": "SHA-256", + "content": "c7a0a40880eca39a3d0eeb389cb84bf23cb3b97d746989aac07478288fe4cb25" + } + ] + }, + { + "bom-ref": "938ae59489f3f925", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Vladivostok", + "hashes": [ + { + "alg": "SHA-1", + "content": "c7e3969c7d453945b8e7b4cf7058528cdca9d233" + }, + { + "alg": "SHA-256", + "content": "633d4328fec78ef09dc0bf58025da4a365176a1680f4c8c8cf90cef309e65236" + } + ] + }, + { + "bom-ref": "0a3213d7be499193", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Yakutsk", + "hashes": [ + { + "alg": "SHA-1", + "content": "304b0d6db4a66f832e82d996ada323dce5851229" + }, + { + "alg": "SHA-256", + "content": "d1fc7358bb9353f77a5c500910586619b82a7d3a3de096b25f90742eddc07d2d" + } + ] + }, + { + "bom-ref": "be97b6d9303dba8e", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Yekaterinburg", + "hashes": [ + { + "alg": "SHA-1", + "content": "c13f346c91585409cd615796636652c16c894fa4" + }, + { + "alg": "SHA-256", + "content": "d259b425879f1d3fea283f9ee237e4f11aa2e4bf918fc40cff782cb2fa4a4f36" + } + ] + }, + { + "bom-ref": "c2daec6fd80bdd82", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Yerevan", + "hashes": [ + { + "alg": "SHA-1", + "content": "8f97612887eb34934b940e40246209b8f17ba38d" + }, + { + "alg": "SHA-256", + "content": "5b7792e14dafe5e5cf54fb58169472bf364e7d841a08ef82224fd13c3f3d6b46" + } + ] + }, + { + "bom-ref": "121e432d70e31961", + "type": "file", + "name": "/usr/share/zoneinfo/right/Atlantic/Azores", + "hashes": [ + { + "alg": "SHA-1", + "content": "a560ade99fc52e14d69a1f8ad93488a62e26d635" + }, + { + "alg": "SHA-256", + "content": "bf6ed07f6b72df9243e62a64bca11608dcf4b7a0ef0231c3c3f819c1e74fdc2a" + } + ] + }, + { + "bom-ref": "415444bc488622d1", + "type": "file", + "name": "/usr/share/zoneinfo/right/Atlantic/Bermuda", + "hashes": [ + { + "alg": "SHA-1", + "content": "2b96dac052b2ba10e72d4964d3f8b5f9f47aa421" + }, + { + "alg": "SHA-256", + "content": "2099c0c4248915afca89fc7624c1498b569847f1ae314b5cf00d8f35ddbab912" + } + ] + }, + { + "bom-ref": "2fe48201aeaa5f27", + "type": "file", + "name": "/usr/share/zoneinfo/right/Atlantic/Canary", + "hashes": [ + { + "alg": "SHA-1", + "content": "aadb8f1b887a17085843d3d03b843780a732ffcf" + }, + { + "alg": "SHA-256", + "content": "f0bf9911e3c52ec1a10e1b9c0cb94d323c7425614948efc559ffe15c67fb48cd" + } + ] + }, + { + "bom-ref": "adf2dba1f2fd34f0", + "type": "file", + "name": "/usr/share/zoneinfo/right/Atlantic/Cape_Verde", + "hashes": [ + { + "alg": "SHA-1", + "content": "c85334e13dbdc9504479ba4e21bfc5f522c6192a" + }, + { + "alg": "SHA-256", + "content": "ab775c80ae7c0b1b6b02016a7ae7045fc69310869a35ac3027e5f6a900e96f8c" + } + ] + }, + { + "bom-ref": "cc19bf42270b83b2", + "type": "file", + "name": "/usr/share/zoneinfo/right/Atlantic/Faeroe", + "hashes": [ + { + "alg": "SHA-1", + "content": "3017faac2dd5869dd23ce1283e1101e7c6392d87" + }, + { + "alg": "SHA-256", + "content": "4f5a41b4ae349e1c6466cba14b5afaf7d7b4a9623fc8395173e4d3a2b4a5f90d" + } + ] + }, + { + "bom-ref": "137ab48087fa49ed", + "type": "file", + "name": "/usr/share/zoneinfo/right/Atlantic/Madeira", + "hashes": [ + { + "alg": "SHA-1", + "content": "b5f8e242df272d60db77e2ca36de0ef60f687738" + }, + { + "alg": "SHA-256", + "content": "35dedfac50f7e188bdf50bf3e03fd597e822d77b353461bbb60e3ffc3be1b71f" + } + ] + }, + { + "bom-ref": "a2ad949a1ed27c92", + "type": "file", + "name": "/usr/share/zoneinfo/right/Atlantic/South_Georgia", + "hashes": [ + { + "alg": "SHA-1", + "content": "da8c2d09b2fed4035d2e70393d85d0b717365c93" + }, + { + "alg": "SHA-256", + "content": "87c1e145862e19c3591293cebc524c2248485fc6d82c0b9f7f289eac3c665cb2" + } + ] + }, + { + "bom-ref": "535d9bfc9422dcce", + "type": "file", + "name": "/usr/share/zoneinfo/right/Atlantic/Stanley", + "hashes": [ + { + "alg": "SHA-1", + "content": "b04fab64ae4a30021d66b15182fa8a1c1dcdf1be" + }, + { + "alg": "SHA-256", + "content": "e0f88a4e32a223a054780193c34fbcfea7be9ac87493ddc98df5636868a69c44" + } + ] + }, + { + "bom-ref": "7b6b1fa216f225a7", + "type": "file", + "name": "/usr/share/zoneinfo/right/Australia/ACT", + "hashes": [ + { + "alg": "SHA-1", + "content": "cac2db2bac69b51e5d20165478c84a255fdd20d4" + }, + { + "alg": "SHA-256", + "content": "39b2517a2794a269b95d18a01123304b7a37ea101acb2a0e47cc08d1c568736b" + } + ] + }, + { + "bom-ref": "9a5619911894b355", + "type": "file", + "name": "/usr/share/zoneinfo/right/Australia/Adelaide", + "hashes": [ + { + "alg": "SHA-1", + "content": "2840c1d370441fd24918400cc935bd6ce229f1c8" + }, + { + "alg": "SHA-256", + "content": "4e72b2525aa821bb13e2f42b7dc4e830d3eb9a66aab03216dd3929e2f338d97d" + } + ] + }, + { + "bom-ref": "5e184d9cbbc2ecc7", + "type": "file", + "name": "/usr/share/zoneinfo/right/Australia/Brisbane", + "hashes": [ + { + "alg": "SHA-1", + "content": "e2c8de4bdea230735a35f5d90a5c90fdd0ddb1d7" + }, + { + "alg": "SHA-256", + "content": "6ec595e80af0cbc989924452e824b29b85a1dd5481b51bed85f4889706553f8f" + } + ] + }, + { + "bom-ref": "c210152c707cada9", + "type": "file", + "name": "/usr/share/zoneinfo/right/Australia/Broken_Hill", + "hashes": [ + { + "alg": "SHA-1", + "content": "f9193b51aca41cac14bbc930077dea7a4d6c285d" + }, + { + "alg": "SHA-256", + "content": "eedd5a3343cc03a474fa7bccbafc63837d2eef4abdb25403e7f97e1e9ea342df" + } + ] + }, + { + "bom-ref": "87114fc13c40962e", + "type": "file", + "name": "/usr/share/zoneinfo/right/Australia/Currie", + "hashes": [ + { + "alg": "SHA-1", + "content": "3aad58135862de02d06bb9e4c6324370dcc93907" + }, + { + "alg": "SHA-256", + "content": "8aa17850069f9cf005cb8eac2148a2ee23fb10935debb3d7a6836274d289a81b" + } + ] + }, + { + "bom-ref": "e655f2d6e5b84eb7", + "type": "file", + "name": "/usr/share/zoneinfo/right/Australia/Darwin", + "hashes": [ + { + "alg": "SHA-1", + "content": "9eb92f8918294fac2aaefe6e4f22d3cdd1db5cdb" + }, + { + "alg": "SHA-256", + "content": "625d71f702b37a502235ea8fcf478f54e33a1c3709f3caf511185ad242c3797c" + } + ] + }, + { + "bom-ref": "4e62d1de3835d82c", + "type": "file", + "name": "/usr/share/zoneinfo/right/Australia/Eucla", + "hashes": [ + { + "alg": "SHA-1", + "content": "dca8b15d24fa22300448580d35885558de238f1d" + }, + { + "alg": "SHA-256", + "content": "b6d509e81f6bd1c7fb6a6bad87b4f84784b4ee4c013f79dc0ef166add4ae9ae4" + } + ] + }, + { + "bom-ref": "648558eca90266ba", + "type": "file", + "name": "/usr/share/zoneinfo/right/Australia/LHI", + "hashes": [ + { + "alg": "SHA-1", + "content": "374b6bd4d211f736cd92d451bc530e5589779618" + }, + { + "alg": "SHA-256", + "content": "7546e925623ccba6e9a112784d57389b98b7cff5bd403e179625e2ee7dbf67e3" + } + ] + }, + { + "bom-ref": "d24185551756ce50", + "type": "file", + "name": "/usr/share/zoneinfo/right/Australia/Lindeman", + "hashes": [ + { + "alg": "SHA-1", + "content": "e99a1761f9b0a00d453eebddc346af3844ac8fa0" + }, + { + "alg": "SHA-256", + "content": "00b972c761aa9512be72915269db9230e5565204be6edf329e60d4cd3e8a6b18" + } + ] + }, + { + "bom-ref": "c01948ff95ecc739", + "type": "file", + "name": "/usr/share/zoneinfo/right/Australia/Melbourne", + "hashes": [ + { + "alg": "SHA-1", + "content": "b891cdb8fd941702696ae1d13a1cfecf58a6703f" + }, + { + "alg": "SHA-256", + "content": "cfb21c4abfcc33faaacc5a9a5960c2f93b476ebf22358929ad8c2dff2060257d" + } + ] + }, + { + "bom-ref": "85e344ca43bbb92d", + "type": "file", + "name": "/usr/share/zoneinfo/right/Australia/Perth", + "hashes": [ + { + "alg": "SHA-1", + "content": "d55ee2a5190177949a8e46d65ed4e833304dc690" + }, + { + "alg": "SHA-256", + "content": "e9e545b0d855f5f7359b4c6431a381178108a4f232eec8d6b617bc1e14a1ddff" + } + ] + }, + { + "bom-ref": "f76972c2da7906a2", + "type": "file", + "name": "/usr/share/zoneinfo/right/CET", + "hashes": [ + { + "alg": "SHA-1", + "content": "6e0b234c120375b4450be82a3330d057e07a4a7f" + }, + { + "alg": "SHA-256", + "content": "a9ab0888ef44577631cf924205405001a436f7d97899c8989907aba1b77a61be" + } + ] + }, + { + "bom-ref": "0e353ed6e0389038", + "type": "file", + "name": "/usr/share/zoneinfo/right/CST6CDT", + "hashes": [ + { + "alg": "SHA-1", + "content": "0388bf0d9ab324cddb3e31f36fb09663503197f6" + }, + { + "alg": "SHA-256", + "content": "fc4181f42429479b45e3b5d1e9d8775017957bca5c82fc9530769fcb81b2fe8e" + } + ] + }, + { + "bom-ref": "6c7374f497fa2aba", + "type": "file", + "name": "/usr/share/zoneinfo/right/Chile/EasterIsland", + "hashes": [ + { + "alg": "SHA-1", + "content": "96fbda051683fd28fe96e91087dfcfc0234855d1" + }, + { + "alg": "SHA-256", + "content": "27c072b5550ceea84e801fd932d838d9c6fde3fbe5f3fffd897dcf12f5f36bb1" + } + ] + }, + { + "bom-ref": "437fb5bc41ae987d", + "type": "file", + "name": "/usr/share/zoneinfo/right/Cuba", + "hashes": [ + { + "alg": "SHA-1", + "content": "1d6cecf4492080acfb6ae36dfada45cefb6e72c7" + }, + { + "alg": "SHA-256", + "content": "0d4bfd6b414442661f79556ac625c9f30e051af6694be67e3ad312e9e9589c50" + } + ] + }, + { + "bom-ref": "2f563588ffc6ab2a", + "type": "file", + "name": "/usr/share/zoneinfo/right/EET", + "hashes": [ + { + "alg": "SHA-1", + "content": "4056245a126c96bbe6569f8fc1b5219e9f7d0a94" + }, + { + "alg": "SHA-256", + "content": "7a4178745768032216702f31fa03f676677d5951079d7e17856ab4be0ddc4061" + } + ] + }, + { + "bom-ref": "76446dc7f64f73d4", + "type": "file", + "name": "/usr/share/zoneinfo/right/EST", + "hashes": [ + { + "alg": "SHA-1", + "content": "3d9cb9edbc96ef4fb129d7848894ba225dfd8d7d" + }, + { + "alg": "SHA-256", + "content": "e7c90a5d782d8843b78996aaf9cc7d332f29d923e8b41739fa0d523b6675a816" + } + ] + }, + { + "bom-ref": "242a05b2feaf9a50", + "type": "file", + "name": "/usr/share/zoneinfo/right/EST5EDT", + "hashes": [ + { + "alg": "SHA-1", + "content": "941ef3409d0e49b47dad5686b9a3c898f0c53b4e" + }, + { + "alg": "SHA-256", + "content": "0f7e22d9f44ba8c1c49034d187a3910eabea89ea5702363f55eadfcd12e01daa" + } + ] + }, + { + "bom-ref": "a6ca3a0a251460f9", + "type": "file", + "name": "/usr/share/zoneinfo/right/Egypt", + "hashes": [ + { + "alg": "SHA-1", + "content": "f58bf94b6198cce20fc06c3e27de22f7fc680619" + }, + { + "alg": "SHA-256", + "content": "a3c84ceb744bbb495b49ef286308143f267da03f75931b82fdcb5c5a3aebcdd8" + } + ] + }, + { + "bom-ref": "13c05f00e8a7b9e1", + "type": "file", + "name": "/usr/share/zoneinfo/right/Eire", + "hashes": [ + { + "alg": "SHA-1", + "content": "6902fc867206c1d0f9353184b204b24796409d6b" + }, + { + "alg": "SHA-256", + "content": "2004b00c415e097897394d0fcbe0e1b28f6db7b708f7777d51344a73de890132" + } + ] + }, + { + "bom-ref": "94e9aeba3cc5f940", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT+1", + "hashes": [ + { + "alg": "SHA-1", + "content": "fdcc1aacc5235b87ad071e270a19db05da7b64cf" + }, + { + "alg": "SHA-256", + "content": "2dfab8b47a9935ec8047b521c8a271ca2f4543ddd8c7e5615c489c3257824140" + } + ] + }, + { + "bom-ref": "5eb4595e51542f44", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT+10", + "hashes": [ + { + "alg": "SHA-1", + "content": "a57808a16067403a3bd9f77fb0f94ab2cc4e9262" + }, + { + "alg": "SHA-256", + "content": "daf919cae7f8cbe9932a89be91f2054c115838dae240389d4f4567a66287e531" + } + ] + }, + { + "bom-ref": "2837527f4bd84f0c", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT+11", + "hashes": [ + { + "alg": "SHA-1", + "content": "33567f4afd14308ed87d280dc626f292d5081603" + }, + { + "alg": "SHA-256", + "content": "ef109214424a5197b2a034d5a67606ffd2396fe37b464876745541e6ed9ca375" + } + ] + }, + { + "bom-ref": "f7ba31095743bdce", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT+12", + "hashes": [ + { + "alg": "SHA-1", + "content": "e49e8c3465ac865a583bfe3816a32002a7f485e4" + }, + { + "alg": "SHA-256", + "content": "b901dd04cd5aa1e1bc91e16f651751ff45a24c88a3b3236336044dccf7a21244" + } + ] + }, + { + "bom-ref": "5d99cf2d9650879a", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT+2", + "hashes": [ + { + "alg": "SHA-1", + "content": "22368a00ec8416e493cf5653b5f54412f10308b2" + }, + { + "alg": "SHA-256", + "content": "2d16fb68e998d75ad599d5f6101c45ac83f7dc02e8a4cca6f5fee81fa77ce668" + } + ] + }, + { + "bom-ref": "40c9f0996ad36fad", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT+3", + "hashes": [ + { + "alg": "SHA-1", + "content": "26f2fcba218aff8dc90d259ff698779ab37de657" + }, + { + "alg": "SHA-256", + "content": "3f6f463bbba4e762a8834597a7033c770d6af14b05a8b703b3d5d014990ea4b7" + } + ] + }, + { + "bom-ref": "17b973b04505ec38", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT+4", + "hashes": [ + { + "alg": "SHA-1", + "content": "55abc9146c1368b268ba752a2bf7f3e035a30810" + }, + { + "alg": "SHA-256", + "content": "932f8cf3e71116a6b3c4a73a68e8b9b78ad33772c11c38f6e49bd3b9e3508358" + } + ] + }, + { + "bom-ref": "3de38cfaa3ebc8f0", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT+5", + "hashes": [ + { + "alg": "SHA-1", + "content": "0bec061ea6a987be9d3860161582368e7078bb50" + }, + { + "alg": "SHA-256", + "content": "7469abe462d0ecd98bd657ac98e8a420ac3bc5c913a7d1d0b6571b9ad55ad659" + } + ] + }, + { + "bom-ref": "0d287b7ac2953d09", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT+6", + "hashes": [ + { + "alg": "SHA-1", + "content": "0c68868a43e3f1382cb6907d389f4c092b7f8fe6" + }, + { + "alg": "SHA-256", + "content": "516d359bfacd113d911e4a19d93dfb00c8d5a1de3d21b0356f520e4c45471fc9" + } + ] + }, + { + "bom-ref": "0dfd9dd39e24a287", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT+7", + "hashes": [ + { + "alg": "SHA-1", + "content": "a58779092ffa1d3824392b5e5f02af5a6a220059" + }, + { + "alg": "SHA-256", + "content": "48e9f1b3cbab9cc818adab2956234adfdf8eeacb51e442221282c073921462fb" + } + ] + }, + { + "bom-ref": "46bc9de2767d630d", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT+8", + "hashes": [ + { + "alg": "SHA-1", + "content": "29f8ed0d7e726040836d49e1adb3079b143be267" + }, + { + "alg": "SHA-256", + "content": "b8ac2c2ab11935c312c05c72a665b2567e6df428ee4229e688272e9aa3c71603" + } + ] + }, + { + "bom-ref": "07cac77230429426", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT+9", + "hashes": [ + { + "alg": "SHA-1", + "content": "501d447e7a30e8ea0eb6b56a4b7ea76ad7e1f084" + }, + { + "alg": "SHA-256", + "content": "66586cb177e807cf1f7f9382f7ffb847f97b579405f6a2a4258f3b601837441f" + } + ] + }, + { + "bom-ref": "75176109a44c4fb0", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT-1", + "hashes": [ + { + "alg": "SHA-1", + "content": "04cd6f2b42a036d12696b253b07f160fce50b5e1" + }, + { + "alg": "SHA-256", + "content": "3f64722b5d0b9119c26d97bea25b946aa46b440fbd0c5735276049ec0bc9ea9a" + } + ] + }, + { + "bom-ref": "79b3983b1740a872", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT-10", + "hashes": [ + { + "alg": "SHA-1", + "content": "03c399d6ab315d01a77ce85661f0ea346980fbeb" + }, + { + "alg": "SHA-256", + "content": "364a1c067f561986ce55d2a1c132d394bb12c024b41fd8185498605eb6d68996" + } + ] + }, + { + "bom-ref": "b5e9d95c9e3aeed7", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT-11", + "hashes": [ + { + "alg": "SHA-1", + "content": "371eefd97ffef98f45990d3b43f530c7ed519198" + }, + { + "alg": "SHA-256", + "content": "3c27112120e1d285b1feaaabd7d6086d82bb20498f8b3b79135345dcfb5beb34" + } + ] + }, + { + "bom-ref": "4ca2644cd99668da", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT-12", + "hashes": [ + { + "alg": "SHA-1", + "content": "0755b26be2dce97d235b1a7422c69fc4d56f9cd2" + }, + { + "alg": "SHA-256", + "content": "5f7d64bac9608ae4d00f58ce111c849fa5fd10c219dfe0a85d8d56e514fe386f" + } + ] + }, + { + "bom-ref": "00c704c63ae17f68", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT-13", + "hashes": [ + { + "alg": "SHA-1", + "content": "5b21a13ba26c8205733bb4a9e5bd39326984506e" + }, + { + "alg": "SHA-256", + "content": "9349e68a0ac17041b18afe3cdd474c562e9aac289fd76f12f5169b59754825b7" + } + ] + }, + { + "bom-ref": "efa086ef6087303a", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT-14", + "hashes": [ + { + "alg": "SHA-1", + "content": "6f4f5fe695ed9e9aae331842febed6c4ec94d3e3" + }, + { + "alg": "SHA-256", + "content": "a748a0ca53f5a510a3abb4a62ffbbe3ffc17e01f65cc6af01878c9df8b43b204" + } + ] + }, + { + "bom-ref": "5ebb7e09fecc6f55", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT-2", + "hashes": [ + { + "alg": "SHA-1", + "content": "da1d81b12927c73e55fa0df9dfa1a54fc1974ce2" + }, + { + "alg": "SHA-256", + "content": "41884dfc60a5b6ec4048d7d94db86d44ef512e166200d2de6843218bb97fb3c9" + } + ] + }, + { + "bom-ref": "130e42e29899fdc1", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT-3", + "hashes": [ + { + "alg": "SHA-1", + "content": "f6d860986e75e7d1b8d43a8cd9d9cbbf0a74ec58" + }, + { + "alg": "SHA-256", + "content": "5391c1595cf4e7df4e5fb4a390cab8cbf6c23644c8bf87a8d6fcc7753dd64f36" + } + ] + }, + { + "bom-ref": "2a29d460f45d9ebc", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT-4", + "hashes": [ + { + "alg": "SHA-1", + "content": "3e47f203564612e9451b55b269da509676ff230b" + }, + { + "alg": "SHA-256", + "content": "6e710ab5d40d44ae4b369a01ba839f5b52dd417565bd92ac663585a0372db6e1" + } + ] + }, + { + "bom-ref": "27019172f886a5c0", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT-5", + "hashes": [ + { + "alg": "SHA-1", + "content": "e34712c5d0529a5cfc0b6ddc9013fe581aaf6d7a" + }, + { + "alg": "SHA-256", + "content": "b4d14c0621108bb15b9e3a08479291c8afbb960ab9205cbd109cfeebe87465b9" + } + ] + }, + { + "bom-ref": "093e56d985da7c6f", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT-6", + "hashes": [ + { + "alg": "SHA-1", + "content": "92ec4fa174beeb698af50ece7f2f8f71c7c61df3" + }, + { + "alg": "SHA-256", + "content": "68d638daa5d47e0684ecb49c49fa0eba30e044df0b01655a366e4f2615bebe82" + } + ] + }, + { + "bom-ref": "4fe9dee74abb7d21", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT-7", + "hashes": [ + { + "alg": "SHA-1", + "content": "3afb8d3c965993422666e1c6bc672c16ff289889" + }, + { + "alg": "SHA-256", + "content": "bc003bfc68545e819c20e22e92f08f67caef03822ed8dc60231fe96028aa6072" + } + ] + }, + { + "bom-ref": "9fa80f26199e191d", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT-8", + "hashes": [ + { + "alg": "SHA-1", + "content": "48b5c11b339ac09c58ac6227092dd32bd3296130" + }, + { + "alg": "SHA-256", + "content": "c32fe342c3ef366d364c0edc9cdeb26a35a9868f599ee5cc05568145121ab2b8" + } + ] + }, + { + "bom-ref": "091db44234c00a37", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT-9", + "hashes": [ + { + "alg": "SHA-1", + "content": "445528637b4f84b4b871e28156dd5b57a743bfe0" + }, + { + "alg": "SHA-256", + "content": "3546d660bbebcf312239764bea8f0c39a91e719d2b8ac3e8bfed0d362d334479" + } + ] + }, + { + "bom-ref": "f801a85a7c597730", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Amsterdam", + "hashes": [ + { + "alg": "SHA-1", + "content": "fd3a7490000084bc5b153991854ffd23459cf9ee" + }, + { + "alg": "SHA-256", + "content": "ae32e0cb5a9ea89b38213163daf4feb4840a6b72e82d5464c647d0a618531697" + } + ] + }, + { + "bom-ref": "46477f2785789e3b", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Andorra", + "hashes": [ + { + "alg": "SHA-1", + "content": "dd6f420142459da04e62f668fe9524787f6047bc" + }, + { + "alg": "SHA-256", + "content": "1330f8009adea3c6e5134cdeadaedaa6fbbcd72b2753207ccbb953ccf5001d18" + } + ] + }, + { + "bom-ref": "4ffe1ac0a3945671", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Astrakhan", + "hashes": [ + { + "alg": "SHA-1", + "content": "33f2873baf2d930d4ce4d3b7c4530c5f76e55208" + }, + { + "alg": "SHA-256", + "content": "bcb19ce7f27da441ddc26ddb5efdb9683ece2df2f013e35333a113bca8d84ac0" + } + ] + }, + { + "bom-ref": "6c3805a769e6d7af", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Athens", + "hashes": [ + { + "alg": "SHA-1", + "content": "5228e98d91b3bb6927c4a344b26a8e50c227180e" + }, + { + "alg": "SHA-256", + "content": "0c23a856f0e9c47bba55cb81c426eca0d190aea6043b018e2affa55f21b43664" + } + ] + }, + { + "bom-ref": "492e7167c10f6baa", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Belgrade", + "hashes": [ + { + "alg": "SHA-1", + "content": "eb417cfdf7d2314e7674cfb080431bc3c8f5d96e" + }, + { + "alg": "SHA-256", + "content": "3debded934cdf0c472df38375bd1a69c9135fb21890969bd68a50956e7181e7c" + } + ] + }, + { + "bom-ref": "bfbb21c4f7d5f980", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Berlin", + "hashes": [ + { + "alg": "SHA-1", + "content": "93157edff271969281ab282c7a7fd641ec911e71" + }, + { + "alg": "SHA-256", + "content": "0b4604767edbae4fc43cd24bd96ec235232471fddff9dc15328c0b74d4c3dc90" + } + ] + }, + { + "bom-ref": "100e11f41ac90658", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Bratislava", + "hashes": [ + { + "alg": "SHA-1", + "content": "958ac8018574a49599dee4bee92b2364e943524d" + }, + { + "alg": "SHA-256", + "content": "faec42cc5833011f1a0f07219bbdea30138befb2c85258c5e5a0d37961a0bae7" + } + ] + }, + { + "bom-ref": "a5a62dc4d321acd2", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Brussels", + "hashes": [ + { + "alg": "SHA-1", + "content": "926249f0a4e0cf04ab4324c3a7293f1d17a9636c" + }, + { + "alg": "SHA-256", + "content": "5e8b1eb03d518914baa45eeaf1d19e491fd3ac24319f7f79ce904120bac7ae19" + } + ] + }, + { + "bom-ref": "d3c8f8e59c8bad72", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Bucharest", + "hashes": [ + { + "alg": "SHA-1", + "content": "000b86e383e76ceaacbfe4d665d099e08de08839" + }, + { + "alg": "SHA-256", + "content": "4052f7958d6994e77da457cc9255749b2df0a6270841d23cb93937d58e1f4ec2" + } + ] + }, + { + "bom-ref": "0a8240efe6776580", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Budapest", + "hashes": [ + { + "alg": "SHA-1", + "content": "8e157ea37fa076f3c447d31971b5efca084cc427" + }, + { + "alg": "SHA-256", + "content": "a865abc0602b509977e9ce086903fd3d5c97833f3479ea16abb6e53655f52377" + } + ] + }, + { + "bom-ref": "fd1e327b77549ad6", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Busingen", + "hashes": [ + { + "alg": "SHA-1", + "content": "14c0f0d7fb40dc47c1fb15ea993fdd62bcee49c1" + }, + { + "alg": "SHA-256", + "content": "46a95ddb0c5047f5b03c6ebdd2c35f87f59e6719d2a2385134408f826753e60f" + } + ] + }, + { + "bom-ref": "0ae9ce48fe067c0b", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Chisinau", + "hashes": [ + { + "alg": "SHA-1", + "content": "db71c40c1609cb799ffec9df0b01a6d53369c049" + }, + { + "alg": "SHA-256", + "content": "ea169f6577633d68990e74350d1f53c54d309ea1fb461bc235f6dc3c2bfd03c4" + } + ] + }, + { + "bom-ref": "fbab0e83cbfe8ed7", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Copenhagen", + "hashes": [ + { + "alg": "SHA-1", + "content": "c37b8543052a1b1573bf3c2f5f17c03dbb3a2228" + }, + { + "alg": "SHA-256", + "content": "cc7d0746ef3061d3de714685a821a4781abe813fdc6327f162fc70b0c22d62ac" + } + ] + }, + { + "bom-ref": "6a6470fd825e01a7", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Gibraltar", + "hashes": [ + { + "alg": "SHA-1", + "content": "213ba4a93b1499f81f2ac2ad1cac83a02b835e3e" + }, + { + "alg": "SHA-256", + "content": "16fa8d1cb048eb5d4defb961df736ae7db4d477b6f08b9d94572da2303681fe7" + } + ] + }, + { + "bom-ref": "7df076796aecf5d6", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Helsinki", + "hashes": [ + { + "alg": "SHA-1", + "content": "06c695b494b7ced5267909eca91e30a43854286f" + }, + { + "alg": "SHA-256", + "content": "a1894d50d5bc5e541f340d601cd8ababe40da90fa867cc7ed3215be1cd6282de" + } + ] + }, + { + "bom-ref": "49c3595855ec9887", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Kaliningrad", + "hashes": [ + { + "alg": "SHA-1", + "content": "ca72e7645149e3b7d31ce6741050dc42c645beed" + }, + { + "alg": "SHA-256", + "content": "5ec14b617cbe85a326677b570296a68c866c954a2c2d42e19387c06c29c635e3" + } + ] + }, + { + "bom-ref": "37cad97872ffbce5", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Kiev", + "hashes": [ + { + "alg": "SHA-1", + "content": "265c21dcbe99463de62eb9fd98548fd39d0bfc80" + }, + { + "alg": "SHA-256", + "content": "24c81f9cf9518821df795eb6c2660d1de98a29d658922bec6f70b05dc9f427e7" + } + ] + }, + { + "bom-ref": "bef196762d7d9217", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Kirov", + "hashes": [ + { + "alg": "SHA-1", + "content": "236494d43e86a45819d697328f80faf86bb6278e" + }, + { + "alg": "SHA-256", + "content": "50f356bc8b1d5232fe2746f29a440b7e4876a011ad0833d7a137c31d1c1721f0" + } + ] + }, + { + "bom-ref": "6b48088d6f1d0972", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Luxembourg", + "hashes": [ + { + "alg": "SHA-1", + "content": "611584023fcd146349ae89b39fe9c0d27d860117" + }, + { + "alg": "SHA-256", + "content": "af6eb983dfb45c9e363dafb9d26b8466179415e37ef87991b258523a36c18239" + } + ] + }, + { + "bom-ref": "b998741b4bbcbc14", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Madrid", + "hashes": [ + { + "alg": "SHA-1", + "content": "9d058dae9d93ab406bb9de3e726d827ecae45eb2" + }, + { + "alg": "SHA-256", + "content": "01a00debc9c470fe55edfa31568135024d2450ba34c1c88ed16d620b67af5d83" + } + ] + }, + { + "bom-ref": "4aa8e8c683b56696", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Malta", + "hashes": [ + { + "alg": "SHA-1", + "content": "23296ca060807c609dc6a8ffeceed54cd4f00f7c" + }, + { + "alg": "SHA-256", + "content": "80919f93a3dd18f905ec9ecc82797ea80f289fe05795f32bd9390dbed7ff7d05" + } + ] + }, + { + "bom-ref": "e76c7f49f97b7866", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Minsk", + "hashes": [ + { + "alg": "SHA-1", + "content": "4f8869789694ad9f39753ae662cb73c8d8b9272b" + }, + { + "alg": "SHA-256", + "content": "52c3784ac0b17fb45be32b9c06a10978f4c53763cf97cf1e9f54b16494fc2a84" + } + ] + }, + { + "bom-ref": "01ac65532d00a56b", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Monaco", + "hashes": [ + { + "alg": "SHA-1", + "content": "158eb001d2536a4883965973518db86e5159ca75" + }, + { + "alg": "SHA-256", + "content": "151e752ffb48b89cd97797534514648dc6c10529d67e460eb9a38b52c0703153" + } + ] + }, + { + "bom-ref": "2e93857c21535a38", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Paris", + "hashes": [ + { + "alg": "SHA-1", + "content": "d7c24907589f3f16aa030f138d3c46e39d571463" + }, + { + "alg": "SHA-256", + "content": "1cc008a471ce3cd84997bc18d5ac6eb87060ec02d8fa39e2d992abd2d8a4d404" + } + ] + }, + { + "bom-ref": "e3b1f975218fda7a", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Riga", + "hashes": [ + { + "alg": "SHA-1", + "content": "083081a784d56a55881b00b560ed68bde05e7188" + }, + { + "alg": "SHA-256", + "content": "543f059b0b90d203ac284c74a9eb1a43acfb6f6de2c3f618b9df24b1b53564d8" + } + ] + }, + { + "bom-ref": "c880ad610fed0447", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Rome", + "hashes": [ + { + "alg": "SHA-1", + "content": "7b5dc74813fb3b02138db543bb6127e15da5ea0a" + }, + { + "alg": "SHA-256", + "content": "1900f59ffcc6e5d11fca684876c3efdc837d8ac7c0432603a352b1f17a768b06" + } + ] + }, + { + "bom-ref": "2b78c67391aec18b", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Samara", + "hashes": [ + { + "alg": "SHA-1", + "content": "4262eeceaa3cf13aca23e06f098525c01a7383ac" + }, + { + "alg": "SHA-256", + "content": "757ea574d61782c57c7a27f4ca052c5277e3009f99dae455b486f7633fe05e17" + } + ] + }, + { + "bom-ref": "0628758eb0b0970f", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Saratov", + "hashes": [ + { + "alg": "SHA-1", + "content": "803363899b67201d23402e09beaeec32d7d94d37" + }, + { + "alg": "SHA-256", + "content": "d363c02f8c0d79a6b550239df44b5754efc54291da4d85d82e345f8edb3b6f68" + } + ] + }, + { + "bom-ref": "df119828290cdad0", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Simferopol", + "hashes": [ + { + "alg": "SHA-1", + "content": "5bc2a3f7285e8e36dd83cf3892283552de96ec01" + }, + { + "alg": "SHA-256", + "content": "c749271304d25a3772fec2f14e1a9fe29d66a993e88384b4fb8c35305208aa06" + } + ] + }, + { + "bom-ref": "867ca63ae68ca3e2", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Sofia", + "hashes": [ + { + "alg": "SHA-1", + "content": "d4194adab72550c866c1e8bb7f9b8c6ebc87c868" + }, + { + "alg": "SHA-256", + "content": "2d9a0ae58e5f9d5b678d68e5874b4d4bf0481a5decd3e9a097bed5f172a16cd0" + } + ] + }, + { + "bom-ref": "e20d6c7e826ade12", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Stockholm", + "hashes": [ + { + "alg": "SHA-1", + "content": "0a16e797e7f388b74dfbdc8a44d0daaa93096a00" + }, + { + "alg": "SHA-256", + "content": "57c9a0626fe99afad4195a26bdd53a0013d465c876e4970a365196242191009a" + } + ] + }, + { + "bom-ref": "2b2292378f6fb5da", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Tallinn", + "hashes": [ + { + "alg": "SHA-1", + "content": "9da67a9600699c4d875b157df5a7be5c44eee153" + }, + { + "alg": "SHA-256", + "content": "3ce08292fa8bf8241cfc2bd85b05dec3459e3b653a0333720380ef66841e9db1" + } + ] + }, + { + "bom-ref": "2af765ed57f42d68", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Tirane", + "hashes": [ + { + "alg": "SHA-1", + "content": "efb237cf3f14a5d46e484c63b28dfeba71d11f93" + }, + { + "alg": "SHA-256", + "content": "aecddbe0e431c06b7d90ce8c9be834f2aafeba71716812b98797272f72d54141" + } + ] + }, + { + "bom-ref": "0817206d4f5f830f", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Ulyanovsk", + "hashes": [ + { + "alg": "SHA-1", + "content": "94a03914fed7c8e79e96fcd700e81aed010048e5" + }, + { + "alg": "SHA-256", + "content": "1805377db5fc2f5733f3b229c5c3744321fc279b46fd004a5d0d7492a8c55f16" + } + ] + }, + { + "bom-ref": "f7058a400fec8273", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Uzhgorod", + "hashes": [ + { + "alg": "SHA-1", + "content": "96589b9fc6fb3a4cee1044eb139adab295231f82" + }, + { + "alg": "SHA-256", + "content": "7ede029288ea2e0af7da34e57ef3414159d510db5e41db99ef2bd0becff29c72" + } + ] + }, + { + "bom-ref": "cd4874bbee70208c", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Vienna", + "hashes": [ + { + "alg": "SHA-1", + "content": "e91939ca0343bb7643f3ecb15cc62982d37623e1" + }, + { + "alg": "SHA-256", + "content": "e69df04b842a8f784b6fc0adddf418fe2e3e635d7a0f1c60ed35c05c5c7e7b9d" + } + ] + }, + { + "bom-ref": "5c03e0147ed53e1d", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Vilnius", + "hashes": [ + { + "alg": "SHA-1", + "content": "77240d99110494ff581f409a4f91e8d666b9e7dd" + }, + { + "alg": "SHA-256", + "content": "60409d0bfd11d41ed822fbc0564645c41d63b215b8b1822c369a5af7824631fe" + } + ] + }, + { + "bom-ref": "58a222aedae04019", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Volgograd", + "hashes": [ + { + "alg": "SHA-1", + "content": "be9639833159c9bb7232a5f2f161772bfb96328a" + }, + { + "alg": "SHA-256", + "content": "42e86a9d73081569a4a32a84b165b6cdaf802b8b1f1f82bbe24acae6b6df1ce3" + } + ] + }, + { + "bom-ref": "c077a8388fd20535", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Zaporozhye", + "hashes": [ + { + "alg": "SHA-1", + "content": "7fcf6521972b53277cbdf211ac2a19a60bcd27d8" + }, + { + "alg": "SHA-256", + "content": "67d4c4e23f865eeb4fcc7779563524189dd9852d7547ab5b9374f637f4f3faef" + } + ] + }, + { + "bom-ref": "1f8786a09f8f8baa", + "type": "file", + "name": "/usr/share/zoneinfo/right/Factory", + "hashes": [ + { + "alg": "SHA-1", + "content": "d127aba9c4f7502db8494bb29749cd5fd864d5d4" + }, + { + "alg": "SHA-256", + "content": "08f3d0855f41ad3d49a9ddb59b6a2385c565d23daf5f80d8ed1a056978578c28" + } + ] + }, + { + "bom-ref": "af3e23a2e51c207f", + "type": "file", + "name": "/usr/share/zoneinfo/right/GB", + "hashes": [ + { + "alg": "SHA-1", + "content": "2e83295f3fd84a717bf6a2ed5b5eeef5567572fe" + }, + { + "alg": "SHA-256", + "content": "256c78cc8a67c9b7796737d6af67860246715133443319c41c5962d4d4411f6d" + } + ] + }, + { + "bom-ref": "6ed59fe403650418", + "type": "file", + "name": "/usr/share/zoneinfo/right/GMT", + "hashes": [ + { + "alg": "SHA-1", + "content": "32060a2dc263b14098b048fb911f8591df6f5900" + }, + { + "alg": "SHA-256", + "content": "da4f5e177e0e5138774896d0b82b59cce878cf3700734a5d6cdfac2f0f96eb28" + } + ] + }, + { + "bom-ref": "62718a4ee8074f95", + "type": "file", + "name": "/usr/share/zoneinfo/right/HST", + "hashes": [ + { + "alg": "SHA-1", + "content": "f9812f0cd5325024bb6f900e35b77c727f64b9e2" + }, + { + "alg": "SHA-256", + "content": "d6c14dcfa90060f656344c7f7078d78fd6046e38d850b78de5f066c0f3c0c655" + } + ] + }, + { + "bom-ref": "4ff9dc95362f383e", + "type": "file", + "name": "/usr/share/zoneinfo/right/Hongkong", + "hashes": [ + { + "alg": "SHA-1", + "content": "3b1ce0b4642612f04585640e884fda791daad6b5" + }, + { + "alg": "SHA-256", + "content": "f4f912297ccc9172c05ffe76746d938e832d85d3154b4638709753c0f4800c7c" + } + ] + }, + { + "bom-ref": "600a2cf25b5f00ec", + "type": "file", + "name": "/usr/share/zoneinfo/right/Iceland", + "hashes": [ + { + "alg": "SHA-1", + "content": "b87325e519c0dfbc498fe24dd8fb45cb8dd9e853" + }, + { + "alg": "SHA-256", + "content": "4a419779c4e933cb9ba204355f1a3649c72d443a95e0a6d81ff506ab467293c0" + } + ] + }, + { + "bom-ref": "65a9722e0c86720b", + "type": "file", + "name": "/usr/share/zoneinfo/right/Indian/Chagos", + "hashes": [ + { + "alg": "SHA-1", + "content": "d6d9d4dfd343d36ec38d1bee7038df5e20b0f975" + }, + { + "alg": "SHA-256", + "content": "f8cf0c5a28233ce257fb4b7fbcc360677dd2263eac889a65eb02c09e86541d72" + } + ] + }, + { + "bom-ref": "92d923d69c79a55d", + "type": "file", + "name": "/usr/share/zoneinfo/right/Indian/Christmas", + "hashes": [ + { + "alg": "SHA-1", + "content": "3466d5ce6150d0cfcfb8bc5a58697ba8f773c1ce" + }, + { + "alg": "SHA-256", + "content": "445dd04f82a28c39962af2578501b9d8cfc0e17ee56630a30c78bbd7e8de7ba1" + } + ] + }, + { + "bom-ref": "259e7028c64168c0", + "type": "file", + "name": "/usr/share/zoneinfo/right/Indian/Cocos", + "hashes": [ + { + "alg": "SHA-1", + "content": "070d0227bca6af35e785e444ca925a096c086328" + }, + { + "alg": "SHA-256", + "content": "73738c8c7d23555123841d80cf638f6e8e2be52f93c841b54d97edba207f9ad5" + } + ] + }, + { + "bom-ref": "fc5c1ece7920d44e", + "type": "file", + "name": "/usr/share/zoneinfo/right/Indian/Kerguelen", + "hashes": [ + { + "alg": "SHA-1", + "content": "136728160069ea43a57589626d6dff51b2e01ba0" + }, + { + "alg": "SHA-256", + "content": "ac6df2f0f61d25a524ae0c2aa10b663ab852dcbd51e97cec4db54843b8ee916e" + } + ] + }, + { + "bom-ref": "740c535fea035c21", + "type": "file", + "name": "/usr/share/zoneinfo/right/Indian/Mahe", + "hashes": [ + { + "alg": "SHA-1", + "content": "6f2ac38894d3fb259e148148380c3cb462325a6c" + }, + { + "alg": "SHA-256", + "content": "0b9df215f8fb10374001f1ba26b12929db2b7f3e9c9380b41653b5acba0ec1c2" + } + ] + }, + { + "bom-ref": "7604f1023e7787c2", + "type": "file", + "name": "/usr/share/zoneinfo/right/Indian/Maldives", + "hashes": [ + { + "alg": "SHA-1", + "content": "4bfde2f88401358cfc58d09c8d9640a20f860c36" + }, + { + "alg": "SHA-256", + "content": "f7e3029145d587448a750d43b4dd67a40bc9a6a2499916cd3093fbcc6a4d7b2c" + } + ] + }, + { + "bom-ref": "c07dd36402dfb8f5", + "type": "file", + "name": "/usr/share/zoneinfo/right/Indian/Mauritius", + "hashes": [ + { + "alg": "SHA-1", + "content": "9d0926b3bb4685f948d6841ad2481943e75c774b" + }, + { + "alg": "SHA-256", + "content": "930cd4dc0a8cbbbbebd33c61edf12c5431e3263b3748cdb6ac0c1afba39c8623" + } + ] + }, + { + "bom-ref": "4a87e1674ba8240f", + "type": "file", + "name": "/usr/share/zoneinfo/right/Indian/Reunion", + "hashes": [ + { + "alg": "SHA-1", + "content": "adcdaf71e46938190e5e2eb1d5b7e4baea23431a" + }, + { + "alg": "SHA-256", + "content": "f3460ec007959b0ed112cdc75fd1decf42969ab272cdb157edf9c3a040c6c279" + } + ] + }, + { + "bom-ref": "62e35b7040f9c87c", + "type": "file", + "name": "/usr/share/zoneinfo/right/Iran", + "hashes": [ + { + "alg": "SHA-1", + "content": "b8a7703b3dbb09aed48ec04fdd029fff6d239513" + }, + { + "alg": "SHA-256", + "content": "c5940a0ac0a0fb9c21f747d475f7b30031ec8c2700fbfa1bfd1496724c953715" + } + ] + }, + { + "bom-ref": "b9671e9738df13cc", + "type": "file", + "name": "/usr/share/zoneinfo/right/Israel", + "hashes": [ + { + "alg": "SHA-1", + "content": "28c9d09f5ee8487928b01241064447e1ed269026" + }, + { + "alg": "SHA-256", + "content": "80aeeae1c2240a9fe9fd82ec889da6acc3e2e284d4a051343ff35cb79e147af0" + } + ] + }, + { + "bom-ref": "7df455f42ca8cbb0", + "type": "file", + "name": "/usr/share/zoneinfo/right/Jamaica", + "hashes": [ + { + "alg": "SHA-1", + "content": "8ee6e0cd229bfc34dd4c598e42f69bed37612dda" + }, + { + "alg": "SHA-256", + "content": "47ddec901639efbe7268363dcc0d8b92a855372b0cae12720d68cce9a8974fdb" + } + ] + }, + { + "bom-ref": "78691894ed252e3e", + "type": "file", + "name": "/usr/share/zoneinfo/right/Japan", + "hashes": [ + { + "alg": "SHA-1", + "content": "7e8294296c3c4285d8fd73af73cb7c98e619a60e" + }, + { + "alg": "SHA-256", + "content": "1ecabb9dd5bcee432606c243ffd05fc8f1f50ec8f531dfaf3dd7a872160814f0" + } + ] + }, + { + "bom-ref": "9368686d1874aa8a", + "type": "file", + "name": "/usr/share/zoneinfo/right/Kwajalein", + "hashes": [ + { + "alg": "SHA-1", + "content": "4758b52fe69262d8de90943bd55c5dfd1d867278" + }, + { + "alg": "SHA-256", + "content": "f85d2a961799deb5cb0bd7a45974d7cdfbedeac8a3b82330512b0b1ccb7cd8eb" + } + ] + }, + { + "bom-ref": "3c0c9c3fdebbb7f5", + "type": "file", + "name": "/usr/share/zoneinfo/right/Libya", + "hashes": [ + { + "alg": "SHA-1", + "content": "9e8c2725e4959d29c548cca677a25f874c2d2865" + }, + { + "alg": "SHA-256", + "content": "72bb85f8ac4ec74b2ae92214c047c82f1f39c9c0785d0f54e152b8c1d940adda" + } + ] + }, + { + "bom-ref": "d4ddbaaeda6975e5", + "type": "file", + "name": "/usr/share/zoneinfo/right/MET", + "hashes": [ + { + "alg": "SHA-1", + "content": "a0ea3cb09c579c288b2d94ea3a05d8459b34e12f" + }, + { + "alg": "SHA-256", + "content": "735b7a481c6b4024076996235dc00c88eba04788ea0d2320f52f3b6f832e2c5c" + } + ] + }, + { + "bom-ref": "32b08103305a6263", + "type": "file", + "name": "/usr/share/zoneinfo/right/MST", + "hashes": [ + { + "alg": "SHA-1", + "content": "f30a44a046b19f0fec016f3fd1180d64963d538f" + }, + { + "alg": "SHA-256", + "content": "d7ed7889d7e664fa5f24d3ebca03abc5e6f4c1af886e13b6d057d0aa4009a953" + } + ] + }, + { + "bom-ref": "2732b5ea3f8d40ba", + "type": "file", + "name": "/usr/share/zoneinfo/right/MST7MDT", + "hashes": [ + { + "alg": "SHA-1", + "content": "b9666da0bde1862a824c609e2fa13d6cb4160f07" + }, + { + "alg": "SHA-256", + "content": "f5bff9e9551d99b333440822fd3fa74d2bf03b0303585ce0705557b869e47e83" + } + ] + }, + { + "bom-ref": "4843181646276735", + "type": "file", + "name": "/usr/share/zoneinfo/right/NZ", + "hashes": [ + { + "alg": "SHA-1", + "content": "e00942d422cccaf683fe0f6ca58898074879797a" + }, + { + "alg": "SHA-256", + "content": "c6fa7d47e6fb209806155ca05d2d0721726515ad678714f3197b9daeb9da3a96" + } + ] + }, + { + "bom-ref": "161c7a28f3d2c411", + "type": "file", + "name": "/usr/share/zoneinfo/right/NZ-CHAT", + "hashes": [ + { + "alg": "SHA-1", + "content": "19dbd397eb53c05564c6541f9637da885ddb8b92" + }, + { + "alg": "SHA-256", + "content": "7d7cab36a76aa5df26ae237bb5b1f4abb4efbc7eb4807dabe74540ef5187a25d" + } + ] + }, + { + "bom-ref": "3f91e7b1848eefa4", + "type": "file", + "name": "/usr/share/zoneinfo/right/Navajo", + "hashes": [ + { + "alg": "SHA-1", + "content": "39335f755a05ac949b22c12fbc24e6703cec03bf" + }, + { + "alg": "SHA-256", + "content": "7448c66048e5489a28ecad3adc495351163e62cedff714bec6d15506a9e1f548" + } + ] + }, + { + "bom-ref": "290e3f78acbf5fff", + "type": "file", + "name": "/usr/share/zoneinfo/right/PRC", + "hashes": [ + { + "alg": "SHA-1", + "content": "605d9acf8e50a8c7bded9455e067592bf185795d" + }, + { + "alg": "SHA-256", + "content": "add747558dc8f3175776014d9653cf734a761b95dec62f06a3922bfce9f82b6e" + } + ] + }, + { + "bom-ref": "291b73c6c23ad0d1", + "type": "file", + "name": "/usr/share/zoneinfo/right/PST8PDT", + "hashes": [ + { + "alg": "SHA-1", + "content": "5f16aef0d55587d87a93982ff498183a87058c71" + }, + { + "alg": "SHA-256", + "content": "f08ae6766d50d2008608f2e668ff34560eef0fb62b3e60df8c019e04cb914780" + } + ] + }, + { + "bom-ref": "9b9cc63013c3496c", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Apia", + "hashes": [ + { + "alg": "SHA-1", + "content": "aa21b0a26e2018b36e368eb06af9b3fa6a55e414" + }, + { + "alg": "SHA-256", + "content": "3b8ceeb83ab926790b5ae3dacbf350c1a67f014b0794bcafe42616944d52a1a6" + } + ] + }, + { + "bom-ref": "7de7b2fbbea3eda1", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Bougainville", + "hashes": [ + { + "alg": "SHA-1", + "content": "cd141795e0c9775ff08ef8f8885ee724f9ffabdd" + }, + { + "alg": "SHA-256", + "content": "f6be590e2ca7b1132a89a2347e6bab35f303881e27a95a3768fbe2044fd2da9b" + } + ] + }, + { + "bom-ref": "cf88890984baca85", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Chuuk", + "hashes": [ + { + "alg": "SHA-1", + "content": "8956587666fd592f63acc1cf669f1e12c505de94" + }, + { + "alg": "SHA-256", + "content": "9edef2327e3ea2e74d2eb9d2ce91dbfcc72ee9c46541cfd686f0eda9989942c1" + } + ] + }, + { + "bom-ref": "d9fd79a79924dfd5", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Efate", + "hashes": [ + { + "alg": "SHA-1", + "content": "6c1c7acb66631ba9675a3827bf78ec48a78d66fb" + }, + { + "alg": "SHA-256", + "content": "d8b5b1f416db9fe13eb83ae113aef84af8c21dc65bbda12f7c284f2931dfcd71" + } + ] + }, + { + "bom-ref": "af730b7d2b708e95", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Enderbury", + "hashes": [ + { + "alg": "SHA-1", + "content": "0b0d21ed8c36efb77e51345d1a29b87dc138f20d" + }, + { + "alg": "SHA-256", + "content": "8757354f311a09599c3eac732b4cafe172c311a15291a96b95f659038ba025cf" + } + ] + }, + { + "bom-ref": "422011ee90854f0c", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Fakaofo", + "hashes": [ + { + "alg": "SHA-1", + "content": "91680bf344d82ae375428043b084bba6aeab52c1" + }, + { + "alg": "SHA-256", + "content": "250e6d05b76670206d86dbf786f8c671e7ee0e3260fa3cf728246f05e40117f2" + } + ] + }, + { + "bom-ref": "c9e84a9f0c6a44d0", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Fiji", + "hashes": [ + { + "alg": "SHA-1", + "content": "5ce359cb780e994bedaa80c6c8c259996f359b59" + }, + { + "alg": "SHA-256", + "content": "5adaad4c4c3d28f31f828259476d05e117d9c69ed6ae5feaf83687c9666a6c1b" + } + ] + }, + { + "bom-ref": "82e9413b4afe2636", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Funafuti", + "hashes": [ + { + "alg": "SHA-1", + "content": "d086249279c082e45724017fcb906a2983567c67" + }, + { + "alg": "SHA-256", + "content": "3a9da5b61aad5ea62609b9b7b6c838e38129f7c1722f3c078ad2588aafbe0428" + } + ] + }, + { + "bom-ref": "60f5107ea0b144fe", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Galapagos", + "hashes": [ + { + "alg": "SHA-1", + "content": "bfb607ad112688c8d546b976a99b51096dd415a8" + }, + { + "alg": "SHA-256", + "content": "6d318df273394bf526ef4318eecfc047e55dda60fb4791bda097d0ba7e52a8c8" + } + ] + }, + { + "bom-ref": "762341f48321f0f7", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Gambier", + "hashes": [ + { + "alg": "SHA-1", + "content": "d25d3c7cdd0f3bc6cedfd8d15b2c9cb8439e33af" + }, + { + "alg": "SHA-256", + "content": "2d89a421366c5757aa91f50667646b760032b5f4732a53374e4a05b0045d6483" + } + ] + }, + { + "bom-ref": "a76444c2c8e746f5", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Guadalcanal", + "hashes": [ + { + "alg": "SHA-1", + "content": "c6f3e78ee3b7df56549c9b0efd719063c72de5d6" + }, + { + "alg": "SHA-256", + "content": "fe837664f234ac8eb7598cc4df8f9bd1df7afc34d9c5905001cfdc3241e2ea73" + } + ] + }, + { + "bom-ref": "328a7573406b0193", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Guam", + "hashes": [ + { + "alg": "SHA-1", + "content": "cd9c9289b06c0ca2e3adb521c8e8b59ec5021b9c" + }, + { + "alg": "SHA-256", + "content": "2e85a11e3769f6576cc0131f7a59d3d145639f527548d59638086ae4b09a1d13" + } + ] + }, + { + "bom-ref": "49388594778e9c21", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Honolulu", + "hashes": [ + { + "alg": "SHA-1", + "content": "da20c0e6d70b3debc00034951cc016a1b37beb01" + }, + { + "alg": "SHA-256", + "content": "93c484f1a3546cf33ee6bcbc52494b4e91d7c5d8d6dc9cc6a73751f8d8235cb3" + } + ] + }, + { + "bom-ref": "ce322f77437e15b9", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Kiritimati", + "hashes": [ + { + "alg": "SHA-1", + "content": "18a675209605e37454a2a9794e51c5f08b0ac44f" + }, + { + "alg": "SHA-256", + "content": "f33ea162876a1311c2d6a974cf7f079893bdac950dbd180e2cfb107a879ab303" + } + ] + }, + { + "bom-ref": "26647ed0f745233d", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Kosrae", + "hashes": [ + { + "alg": "SHA-1", + "content": "4d9aa51a6b1c1e61810fd35e505fd7880b27921b" + }, + { + "alg": "SHA-256", + "content": "572fb52c2262c3aeda2aef85157c862a305e99c15a5a673b081a01c9dd89c3ee" + } + ] + }, + { + "bom-ref": "935972dd6d248adc", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Majuro", + "hashes": [ + { + "alg": "SHA-1", + "content": "f1a44373e1456df2b3327b307ca5f2df4cd16949" + }, + { + "alg": "SHA-256", + "content": "6298dff3baf870ed80da5e52a282ffdb0b9ac6ccf2c1a2ed4d910aef532dbf74" + } + ] + }, + { + "bom-ref": "977bc9518708a32d", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Marquesas", + "hashes": [ + { + "alg": "SHA-1", + "content": "0b969d2c5c307f4cf0e4c3203df5983700dfe599" + }, + { + "alg": "SHA-256", + "content": "8bddb6881492ed79f799832454b02809ad7922791994b9c19f98094dc4206647" + } + ] + }, + { + "bom-ref": "65c30ee31ac865ad", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Midway", + "hashes": [ + { + "alg": "SHA-1", + "content": "0a749023cb5dc6fb6584a5c2914d350bafdce1f5" + }, + { + "alg": "SHA-256", + "content": "c996db6822af6b663b37e0c8750132432169950eed2c24bab4c9f843475b5cb5" + } + ] + }, + { + "bom-ref": "62d467e7957c7990", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Nauru", + "hashes": [ + { + "alg": "SHA-1", + "content": "b2a14530f173f1234b6544d2d66188d681c759d6" + }, + { + "alg": "SHA-256", + "content": "7e240f6870254d1f701d3d480248add43b0648f75dff3269d926ea3b2d703a9a" + } + ] + }, + { + "bom-ref": "bbb7c6e759dd5463", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Niue", + "hashes": [ + { + "alg": "SHA-1", + "content": "1dd8bd1d402c1b56e2ed70e198801b9c82e99468" + }, + { + "alg": "SHA-256", + "content": "2eecd96d4056c59d3db04eea43c3f1cb491398d84732d88a500b13e15624eb57" + } + ] + }, + { + "bom-ref": "44e491d8915fdf78", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Norfolk", + "hashes": [ + { + "alg": "SHA-1", + "content": "f305fcf22f280b98d7b326fc7e8bd8ac115d4585" + }, + { + "alg": "SHA-256", + "content": "8c5874c6ab78e49f434f7ca29ac0303b59d2dace69ef0e3fdd6bf6a566bfbc6a" + } + ] + }, + { + "bom-ref": "8c815f71372193a2", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Noumea", + "hashes": [ + { + "alg": "SHA-1", + "content": "e685069b620a855a00a84813620048431e5abc94" + }, + { + "alg": "SHA-256", + "content": "5e4a79b64ba530ff85ee0747c693d00efb94d7625cc70a4a99557fcc4fa60ae2" + } + ] + }, + { + "bom-ref": "bb030883338f7989", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Palau", + "hashes": [ + { + "alg": "SHA-1", + "content": "437ca554d518af6373d38ff478326551b4a62da3" + }, + { + "alg": "SHA-256", + "content": "fa7e4882188f567514105374c59a5b95bf1c82bfa8216c52fc6f247d57a56cdf" + } + ] + }, + { + "bom-ref": "fbc3ab6b03defc8d", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Pitcairn", + "hashes": [ + { + "alg": "SHA-1", + "content": "6c9b71ab5c4682512994ff245554d02759a4897d" + }, + { + "alg": "SHA-256", + "content": "05ab1d75088ddcaa01f819e2820a2e84285ee261c574e25f3a1f026f05d440a1" + } + ] + }, + { + "bom-ref": "05c743df7db292d2", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Pohnpei", + "hashes": [ + { + "alg": "SHA-1", + "content": "4667a298abf0e5de843060d7fbbf8c871db74e0e" + }, + { + "alg": "SHA-256", + "content": "68eec56a56e1a4eed4d7cb732995e773a0d46f84c29c55875e24df333e6a6c27" + } + ] + }, + { + "bom-ref": "37916b85d4758ebc", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Port_Moresby", + "hashes": [ + { + "alg": "SHA-1", + "content": "6e88bd35c86c02f6d1baf30018a0b4e121992073" + }, + { + "alg": "SHA-256", + "content": "627805f2b9bf76f41742808c227b3bfd443e2ef73e5eef7162616074aa97e41b" + } + ] + }, + { + "bom-ref": "afc0cbb6777b4531", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Rarotonga", + "hashes": [ + { + "alg": "SHA-1", + "content": "c0435de7d319d62b4057fbdcb3a04de0afd6ccfa" + }, + { + "alg": "SHA-256", + "content": "2d1e4a68104638e75fb5cf82daf680d934f965e682e35a04ecc0e518d8f8a097" + } + ] + }, + { + "bom-ref": "65c25eb692c71b6a", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Tahiti", + "hashes": [ + { + "alg": "SHA-1", + "content": "b50e5f5d7d23f283f57fc3e86da4f69ec0c4102a" + }, + { + "alg": "SHA-256", + "content": "344408438702e718bca59faacbd552969b7397bdaf5aedf99e126f50c8233ee3" + } + ] + }, + { + "bom-ref": "fe7df375d7d5ba9f", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Tarawa", + "hashes": [ + { + "alg": "SHA-1", + "content": "6ea42e732e9af05124166771628f10d08114ffed" + }, + { + "alg": "SHA-256", + "content": "f82a0f21667dce26d11673eef99db2d9200f915256c41289afb85689edce34f2" + } + ] + }, + { + "bom-ref": "d127c28170315ac9", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Tongatapu", + "hashes": [ + { + "alg": "SHA-1", + "content": "3b4de04b915a7da0f85aa8308275331cd257770a" + }, + { + "alg": "SHA-256", + "content": "bbb8632d8f1d1a120c351694103ee55e7b45193c2aa9bcb5b65e99f8ffee424d" + } + ] + }, + { + "bom-ref": "101cab7c7d11a8c7", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Wake", + "hashes": [ + { + "alg": "SHA-1", + "content": "29c5b45932598bc152c17b3e0a8639b4ac3c0412" + }, + { + "alg": "SHA-256", + "content": "17180eb8fef967ac24d5492908cce1e90a7b4c578657fbddf0f60a2d832a7745" + } + ] + }, + { + "bom-ref": "42b15e3f5baea97c", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Wallis", + "hashes": [ + { + "alg": "SHA-1", + "content": "0e9cc9611472c345e5c8c38f06b7539681d70bfc" + }, + { + "alg": "SHA-256", + "content": "5fa9d027fcf24e4d9ad77875907d675144b7384bda0ddbedb03fbe44c09a63ab" + } + ] + }, + { + "bom-ref": "06d344a8f85708d7", + "type": "file", + "name": "/usr/share/zoneinfo/right/Poland", + "hashes": [ + { + "alg": "SHA-1", + "content": "0db3f817512b0b29c2814cafcc4c064d19eeec28" + }, + { + "alg": "SHA-256", + "content": "2776052936d3361f49da479c0a6d522ea7ec256300cc9263d1011848ab2bb3a9" + } + ] + }, + { + "bom-ref": "a56ec530a5407f0b", + "type": "file", + "name": "/usr/share/zoneinfo/right/Portugal", + "hashes": [ + { + "alg": "SHA-1", + "content": "b97498fb000c592f2927cc7e37ff11fb0ab34b6b" + }, + { + "alg": "SHA-256", + "content": "f8e850961fc42ea64edb30cebaabad27fccda97bdf6cf1047e4051298bdf20d0" + } + ] + }, + { + "bom-ref": "6c9af8fb2ad71805", + "type": "file", + "name": "/usr/share/zoneinfo/right/ROC", + "hashes": [ + { + "alg": "SHA-1", + "content": "31681bb16db32cfd096bcd8a1e16e0525d351fa8" + }, + { + "alg": "SHA-256", + "content": "d5ff02c7a5dc9adb7a5b8de1e492f8ace92d832e8f2f6879265520c47f850078" + } + ] + }, + { + "bom-ref": "808a3778c95c62cd", + "type": "file", + "name": "/usr/share/zoneinfo/right/ROK", + "hashes": [ + { + "alg": "SHA-1", + "content": "2250daa35057ec3456ed9c4457e4fbb9db00109b" + }, + { + "alg": "SHA-256", + "content": "6c95b3eee50a28160e185e76e2bab6ec9f28f50e2d9a3166b20c4acfcf4aef1c" + } + ] + }, + { + "bom-ref": "ba068122e594130b", + "type": "file", + "name": "/usr/share/zoneinfo/right/Singapore", + "hashes": [ + { + "alg": "SHA-1", + "content": "df9afc7eca5470ab701e375f795075842cc93387" + }, + { + "alg": "SHA-256", + "content": "91e407e2266fb1de8a5a90631744cd5b213f2521db783258f2f9f41697517dda" + } + ] + }, + { + "bom-ref": "a8c68687b18dfd2c", + "type": "file", + "name": "/usr/share/zoneinfo/right/Turkey", + "hashes": [ + { + "alg": "SHA-1", + "content": "1c8dd859c65289cc678d10a339eb027b286a4f7b" + }, + { + "alg": "SHA-256", + "content": "d0fd3d19c0e209595df3017696f8dc59d900be1dd6a3a8b354f7798ba6ce1f4d" + } + ] + }, + { + "bom-ref": "05eb099e19a462ee", + "type": "file", + "name": "/usr/share/zoneinfo/right/UCT", + "hashes": [ + { + "alg": "SHA-1", + "content": "26998daae7d053ece89ae8e2c13d0f1f0be4014e" + }, + { + "alg": "SHA-256", + "content": "d19fdd5d26a7753518ee9a09ab74a8e4efa9a4e6ed56eff85baabd8af9c0e459" + } + ] + }, + { + "bom-ref": "6fad0c8bb5c8c00c", + "type": "file", + "name": "/usr/share/zoneinfo/right/W-SU", + "hashes": [ + { + "alg": "SHA-1", + "content": "b0882f05fa6f6096fc5c8d69371b756e030598d0" + }, + { + "alg": "SHA-256", + "content": "8e1367300579da7319742b25b9da707131b058482c77e7a707c71aeb60f067ff" + } + ] + }, + { + "bom-ref": "0bf97ac5c1892c01", + "type": "file", + "name": "/usr/share/zoneinfo/right/WET", + "hashes": [ + { + "alg": "SHA-1", + "content": "6c9f8f1182d265bb730b1c63222e0c165b4bd71e" + }, + { + "alg": "SHA-256", + "content": "e9826478fee66e6f8a7583d9a67d82f114f8a12856b4f4a6bfed5db540c54753" + } + ] + }, + { + "bom-ref": "c8262326ecf4dbde", + "type": "file", + "name": "/usr/share/zoneinfo/zone.tab", + "hashes": [ + { + "alg": "SHA-1", + "content": "7bcf27b3c1c95dd59d673043a6e82193f5374d8e" + }, + { + "alg": "SHA-256", + "content": "db0cec68e09f62e86133166c14ef72d5c9003e00f8bb305f6df7fae17575a965" + } + ] + }, + { + "bom-ref": "8ea1f2fc66aa6c9d", + "type": "file", + "name": "/usr/share/zoneinfo/zone1970.tab", + "hashes": [ + { + "alg": "SHA-1", + "content": "562cb671936f54f76fd0277d218187aeadb1e464" + }, + { + "alg": "SHA-256", + "content": "1019220a999e8a8ef71105c297b4fd9461414f5f4d27058fc3cb6a9027344112" + } + ] + }, + { + "bom-ref": "fcc498f2f8d89536", + "type": "file", + "name": "/var/lib/dpkg/info/adduser.conffiles", + "hashes": [ + { + "alg": "SHA-1", + "content": "f599d9982b74b2e62934f8cedd70e33ef36ede5b" + }, + { + "alg": "SHA-256", + "content": "2ed8c75e30af614b19760b001063fbeb2a48ebaf469c44d921d3df787f2ca173" + } + ] + }, + { + "bom-ref": "fc475ef8ad2e47e2", + "type": "file", + "name": "/var/lib/dpkg/info/adduser.config", + "hashes": [ + { + "alg": "SHA-1", + "content": "6bb4297adf2d6d4f3fec6396d1a6c60f48cd34b0" + }, + { + "alg": "SHA-256", + "content": "7bbbed298ee1cba145ccced3c596025d1bf420c978feef4269e9e3c0c8ef1855" + } + ] + }, + { + "bom-ref": "168177368e95413c", + "type": "file", + "name": "/var/lib/dpkg/info/adduser.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "d05abd30065d5714e07b8a8689146694d27357b9" + }, + { + "alg": "SHA-256", + "content": "1d2871a453ad11657eb656cc724f8fde70e8e618722a033460deb3418a80615d" + } + ] + }, + { + "bom-ref": "fb9d3fb52538e008", + "type": "file", + "name": "/var/lib/dpkg/info/adduser.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "6e036e83b95fbc5766e1d949ac529c2fb3653d2a" + }, + { + "alg": "SHA-256", + "content": "ca22aec2cb78ba7e2459cbcaff569fcdc44d069ece6076862792ea307d683d42" + } + ] + }, + { + "bom-ref": "64b9985447853007", + "type": "file", + "name": "/var/lib/dpkg/info/adduser.postinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "92a6cd78a7311cf40713e3f032ac4ca862255b63" + }, + { + "alg": "SHA-256", + "content": "725a17e3ccb6bcda57076fa51d824c1a0903c885261c34e053f9750be30a2755" + } + ] + }, + { + "bom-ref": "bb474cc1b5ec2f6b", + "type": "file", + "name": "/var/lib/dpkg/info/adduser.postrm", + "hashes": [ + { + "alg": "SHA-1", + "content": "f530c3dd56d1166f63e32c40f4bac041e226896f" + }, + { + "alg": "SHA-256", + "content": "0ac3e1a63427a3073ca3b68aea0294bfe31c8572529fcf9bb44bdb4aa0764342" + } + ] + }, + { + "bom-ref": "0efa37b67a37e2e3", + "type": "file", + "name": "/var/lib/dpkg/info/adduser.templates", + "hashes": [ + { + "alg": "SHA-1", + "content": "f6544f1c47faac6e01477dbd3220c2291575b99b" + }, + { + "alg": "SHA-256", + "content": "3006aced92c75c420b780e8e2c7d9b850be88cef12937f5b22fd119c3e391021" + } + ] + }, + { + "bom-ref": "e870f201d4dcdd16", + "type": "file", + "name": "/var/lib/dpkg/info/apt.conffiles", + "hashes": [ + { + "alg": "SHA-1", + "content": "82451cc325a55117167698aa9ee93d4af75bf165" + }, + { + "alg": "SHA-256", + "content": "40d910bb31d4f4744f154ccd80bf53c3ec5574f1577f35af78e5ef77dbcaae47" + } + ] + }, + { + "bom-ref": "2805a81b4a7bb1cb", + "type": "file", + "name": "/var/lib/dpkg/info/apt.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "29d54313029f19d6ea784399e953f2f4eac79b5f" + }, + { + "alg": "SHA-256", + "content": "84d86fa796054caa72c01b3fe0fba75020b929b32b57f5f58f3f56f90684a0dc" + } + ] + }, + { + "bom-ref": "dfa29e44fa7fa7a2", + "type": "file", + "name": "/var/lib/dpkg/info/apt.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "9a75d783eaca859278d756bfb94b6787acd3418d" + }, + { + "alg": "SHA-256", + "content": "a7d8d0dc9e72dcc89482bfa42a57c7c35c01bf37715f984a1b05cf6a9e5e2cb1" + } + ] + }, + { + "bom-ref": "b9391d3823469d80", + "type": "file", + "name": "/var/lib/dpkg/info/apt.postinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "ca4e36223187e1840ab803c69be644d9e4388af8" + }, + { + "alg": "SHA-256", + "content": "970fc550d058899d9579e1fc0d1e79452b621e406e88699e1a13e6db76b880e3" + } + ] + }, + { + "bom-ref": "492bf388de989ecc", + "type": "file", + "name": "/var/lib/dpkg/info/apt.postrm", + "hashes": [ + { + "alg": "SHA-1", + "content": "ac7b1b3b6691c5c70126c0c381a0786b8a1fb966" + }, + { + "alg": "SHA-256", + "content": "e9cc5f954c30346d08671ac37a55e1cbd83d1e33d06a06265065bddde3d81213" + } + ] + }, + { + "bom-ref": "c10d579c7fe2c6b9", + "type": "file", + "name": "/var/lib/dpkg/info/apt.preinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "bef252305ddab8b1a136f638e827c095cfbf9365" + }, + { + "alg": "SHA-256", + "content": "d5e908aa83097ed42de33e92867208a5f3ab82f57e9b92efe0acec9a616f1d4b" + } + ] + }, + { + "bom-ref": "c1a4e4b1afc1ec2b", + "type": "file", + "name": "/var/lib/dpkg/info/apt.prerm", + "hashes": [ + { + "alg": "SHA-1", + "content": "4fc1b3e1ad64f35af37ea29113828684c23f0dc1" + }, + { + "alg": "SHA-256", + "content": "d30d6f3378dafd4ff65490a4f214420ebcd2e1a9663b19b984e5c696efc5e553" + } + ] + }, + { + "bom-ref": "c7c965da8b3c25f3", + "type": "file", + "name": "/var/lib/dpkg/info/apt.shlibs", + "hashes": [ + { + "alg": "SHA-1", + "content": "e8d1ec9ad003f3f586b0b0c58344bc4bbaab0c20" + }, + { + "alg": "SHA-256", + "content": "ac130374b3322f21573625a13454d60cf7b5166bcd43b931f8ec09e99d54c455" + } + ] + }, + { + "bom-ref": "e3269b49fe5b2345", + "type": "file", + "name": "/var/lib/dpkg/info/apt.triggers", + "hashes": [ + { + "alg": "SHA-1", + "content": "8dae58cef087a99d2fae9403c50f0a9683a9624f" + }, + { + "alg": "SHA-256", + "content": "07a5fdf8ff08ba2362ae00a082911153f9578fc6235d0955f2c91a54d71451a0" + } + ] + }, + { + "bom-ref": "fc86792fe7708e28", + "type": "file", + "name": "/var/lib/dpkg/info/base-files.conffiles", + "hashes": [ + { + "alg": "SHA-1", + "content": "e50605106d2a8746c3ca789de214be224a409ea9" + }, + { + "alg": "SHA-256", + "content": "4b3e9e5378d40d8d9e7c508b759513975ad83bf6faeaa3a1b1684c53931b8556" + } + ] + }, + { + "bom-ref": "ad30bc6aa98aa31b", + "type": "file", + "name": "/var/lib/dpkg/info/base-files.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "464095b7d4f426885d308699aa4030572a3f8add" + }, + { + "alg": "SHA-256", + "content": "118f4dd6bafffcf46631dfc39de25abb0ce0d2f1f6b5ad2b122993f089bbcb87" + } + ] + }, + { + "bom-ref": "8505dab8980d8f1c", + "type": "file", + "name": "/var/lib/dpkg/info/base-files.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "4c29382a619c37fdd266159565b75c1ea5042e0a" + }, + { + "alg": "SHA-256", + "content": "cf8bd9d1b5970af1a409aed7d987b811cfa72a9aed320275d7779fb821a36daa" + } + ] + }, + { + "bom-ref": "9466ef9dbacfb94c", + "type": "file", + "name": "/var/lib/dpkg/info/base-files.postinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "fdd9ec9ef84695fcc33f1004cee9c3484ddad986" + }, + { + "alg": "SHA-256", + "content": "33a5b7e9a52ee15ebbbe3f2033e10cf90fd9506cf362bb94752ab7772e7c5640" + } + ] + }, + { + "bom-ref": "a8f16eebaafbd954", + "type": "file", + "name": "/var/lib/dpkg/info/base-passwd.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "b38ea9ec662800e8aac11339ea552760dcdebe5f" + }, + { + "alg": "SHA-256", + "content": "59e7d3f01481b921ab2fe7b7c0f4c9010c5dbd68e63fd6aa6b98144ec444129c" + } + ] + }, + { + "bom-ref": "7592126a85697357", + "type": "file", + "name": "/var/lib/dpkg/info/base-passwd.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "bd75e33fe859e5e4f8caa9ea5b4ae9adf01912c0" + }, + { + "alg": "SHA-256", + "content": "16587126e47a8af491dc0d7523e3cdb80211314b86684821166ee97e9ffe22c5" + } + ] + }, + { + "bom-ref": "b736260a85d49263", + "type": "file", + "name": "/var/lib/dpkg/info/base-passwd.postinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "926bed034a5d11a8bb7be45327ffaec4086948a3" + }, + { + "alg": "SHA-256", + "content": "01ea366cf8c635d5e21ce289ab3b9998247eac1d3f33312cf002257b0abce445" + } + ] + }, + { + "bom-ref": "8686b3760d094e9c", + "type": "file", + "name": "/var/lib/dpkg/info/base-passwd.postrm", + "hashes": [ + { + "alg": "SHA-1", + "content": "491bff3c810de9b8326944e1e4a8b2e5f44de947" + }, + { + "alg": "SHA-256", + "content": "4ee45fbc0ef26cf9a8cceafcfc80ca5681eb02da68c91c24eeb5e31daaa8da89" + } + ] + }, + { + "bom-ref": "57c62f5341e05dd6", + "type": "file", + "name": "/var/lib/dpkg/info/base-passwd.preinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "fc01283063fc822a6c73700962fe055a147415ce" + }, + { + "alg": "SHA-256", + "content": "6e38694265a25ef4a21a595dbcf58679b02eb3ef91a76b8ce293cfb97def209c" + } + ] + }, + { + "bom-ref": "51e4dde6b3a9112a", + "type": "file", + "name": "/var/lib/dpkg/info/base-passwd.templates", + "hashes": [ + { + "alg": "SHA-1", + "content": "aef245430d45b459e81d92d2d1d50895183b99c2" + }, + { + "alg": "SHA-256", + "content": "f7de1e47978fedea5a736df4f16b947218f4e65735753d97c1c8954e8312c776" + } + ] + }, + { + "bom-ref": "31976b8c975be63d", + "type": "file", + "name": "/var/lib/dpkg/info/bash.conffiles", + "hashes": [ + { + "alg": "SHA-1", + "content": "59508ce0ae15c440b8b9a943d4f9740309e75151" + }, + { + "alg": "SHA-256", + "content": "547d1cf6291bce0dcc569f9caad2b7d204f42efb7a20047d86aa48e0c305a52f" + } + ] + }, + { + "bom-ref": "7641736eb32c798c", + "type": "file", + "name": "/var/lib/dpkg/info/bash.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "0fcded184681255a7312f6ff9c8af8fbdebfa4ee" + }, + { + "alg": "SHA-256", + "content": "898a7bda103c9c368b055da5f797e3e3a37c5d40428716cb683a55aaff45990e" + } + ] + }, + { + "bom-ref": "20787932b541c040", + "type": "file", + "name": "/var/lib/dpkg/info/bash.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "8f253ac374dc458fcaaad526796164f693bf3b94" + }, + { + "alg": "SHA-256", + "content": "df67456b848349c881a60bd3bf765e98a7eceba72f2778cde93aa2d7f13f85f3" + } + ] + }, + { + "bom-ref": "0d58f88e1867d645", + "type": "file", + "name": "/var/lib/dpkg/info/bash.postinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "2c5e0b35138f805d1393c9f68bf065577996fe4d" + }, + { + "alg": "SHA-256", + "content": "3e8995ddc6c96c81021f3556dd8de4cbc8c64bb7f211181f9dfa72af548aa9da" + } + ] + }, + { + "bom-ref": "aad50caab5f12163", + "type": "file", + "name": "/var/lib/dpkg/info/bash.postrm", + "hashes": [ + { + "alg": "SHA-1", + "content": "d5c24af325dab2013bce69464853989295cefe74" + }, + { + "alg": "SHA-256", + "content": "b8c3425b65be2c56f2b66a7e4c5f2b1e7156ad1af868ba0d407c7a31d7427d67" + } + ] + }, + { + "bom-ref": "a7f86a84c21cca17", + "type": "file", + "name": "/var/lib/dpkg/info/bash.preinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "e71e04818b9341963a662f628248d99c54788ef8" + }, + { + "alg": "SHA-256", + "content": "082fae2f50ea8a6bb24c06d499c2c3e8e9fa0cf33dd8955647417e44971e712c" + } + ] + }, + { + "bom-ref": "9c6442772f03772c", + "type": "file", + "name": "/var/lib/dpkg/info/bash.prerm", + "hashes": [ + { + "alg": "SHA-1", + "content": "579b93eeb8818eaf04760eae2087ea9ece9b9fd3" + }, + { + "alg": "SHA-256", + "content": "8d4c0e961f582ca7821cd5b81c8ba304a90f2ddfd6efd963f58cf6020eb2198a" + } + ] + }, + { + "bom-ref": "0bfa3865259b7d8f", + "type": "file", + "name": "/var/lib/dpkg/info/bsdutils.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "95a215f7cecc31e4b363c802768f800f373fcf61" + }, + { + "alg": "SHA-256", + "content": "d4b57cd70404a8b1f20addaa2a31b0ff0539f2b9175814229e904f5f4804661a" + } + ] + }, + { + "bom-ref": "74feec199378ac00", + "type": "file", + "name": "/var/lib/dpkg/info/bsdutils.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "62d80a6f5b9dd9f3701ac2be76dad95de673cdd6" + }, + { + "alg": "SHA-256", + "content": "b391a8b12795747d4a646fd480a480889482b3fa53c5c02511b5fd6f7681675d" + } + ] + }, + { + "bom-ref": "a1d6cdf8646ec725", + "type": "file", + "name": "/var/lib/dpkg/info/coreutils.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "645307365671258a990223d7ecdf3ad4d069e311" + }, + { + "alg": "SHA-256", + "content": "73887279428ab722d2e19ab01daa96efa399ff7fd71c5670f3b692d86dacf190" + } + ] + }, + { + "bom-ref": "9a88e6000cac3f35", + "type": "file", + "name": "/var/lib/dpkg/info/coreutils.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "76b83c05d477f91c187d2571f629f9c72c7047ac" + }, + { + "alg": "SHA-256", + "content": "15c0928087598d9aa52f14d11f017a7fa77b4fe77f55ceeec8cdadb6a0560ac5" + } + ] + }, + { + "bom-ref": "8e428eadd84f1b63", + "type": "file", + "name": "/var/lib/dpkg/info/coreutils.postinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "885178e725463e34cd91dd2c5c85879b915624ac" + }, + { + "alg": "SHA-256", + "content": "b8cc23953515e77bc392d81af72f7362118a5fdf5961680620c2f832bf4c56a8" + } + ] + }, + { + "bom-ref": "3ba636eec8a2cc0f", + "type": "file", + "name": "/var/lib/dpkg/info/coreutils.postrm", + "hashes": [ + { + "alg": "SHA-1", + "content": "3740e6592a8a52be4b1c5e3b5e538d46f73d075d" + }, + { + "alg": "SHA-256", + "content": "fb04069056d6bd6aadb41350b25da0f9da66ff520185f4f16445430535e1bf18" + } + ] + }, + { + "bom-ref": "0387c2faae9379a1", + "type": "file", + "name": "/var/lib/dpkg/info/dash.config", + "hashes": [ + { + "alg": "SHA-1", + "content": "48a6a301c95801c722e9d8b7074e60c91ab8fcb2" + }, + { + "alg": "SHA-256", + "content": "6ce6e1f0695bac42e20a96be49b70c79cf596e8f81047ff4ea3cf922c0a9cc57" + } + ] + }, + { + "bom-ref": "b66979beb9aa4d8d", + "type": "file", + "name": "/var/lib/dpkg/info/dash.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "e5aec6d5d045f89322971c58235f028d19ca82fa" + }, + { + "alg": "SHA-256", + "content": "0994309c7384d07ada80e7c9d77ef00d978d9c9f1faa6a055d044679a3c65244" + } + ] + }, + { + "bom-ref": "f542ffea25636b9d", + "type": "file", + "name": "/var/lib/dpkg/info/dash.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "28b284e0b6b0842fcd637860c62d27446bf2d185" + }, + { + "alg": "SHA-256", + "content": "5bc20df7dfdc9b41fd3eec72dad98a69cb0ee1e03dbecd1285a45d13c3b43a77" + } + ] + }, + { + "bom-ref": "21902b89c32b5c93", + "type": "file", + "name": "/var/lib/dpkg/info/dash.postinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "ebdfb18cd44dc583d1d0793c2174403e00a95ec6" + }, + { + "alg": "SHA-256", + "content": "bd0b98d1648721510e02243de038a6aa75016f7f506c0ea8ee6dedaad8b6da39" + } + ] + }, + { + "bom-ref": "b7d04efcb0db3326", + "type": "file", + "name": "/var/lib/dpkg/info/dash.postrm", + "hashes": [ + { + "alg": "SHA-1", + "content": "7ffbaf91069cae46b007fda0415bf2ef87307863" + }, + { + "alg": "SHA-256", + "content": "1dcbcde726d12aa01f77475fa2c7d46c3b9f7e2e5980a7883eef819ad18229ae" + } + ] + }, + { + "bom-ref": "e67fdb1fb9f9eff9", + "type": "file", + "name": "/var/lib/dpkg/info/dash.prerm", + "hashes": [ + { + "alg": "SHA-1", + "content": "9fdde0d07fc79dad449bc685b7ac2a2ca67d81dd" + }, + { + "alg": "SHA-256", + "content": "10b4e35c3a2cdfb7aec9405173a5da1fe044c3b7cba51aa8ce2d5008a18cd1f1" + } + ] + }, + { + "bom-ref": "435800b2116d4dd9", + "type": "file", + "name": "/var/lib/dpkg/info/dash.templates", + "hashes": [ + { + "alg": "SHA-1", + "content": "9a3a18639de5bdbae2502839921279086a3c45d1" + }, + { + "alg": "SHA-256", + "content": "9451f0fff5c8aa0da29e1947305f9430ab0b1ee6d7eac8b23f46d73716c5c64c" + } + ] + }, + { + "bom-ref": "22b8a1ea38382859", + "type": "file", + "name": "/var/lib/dpkg/info/debconf.conffiles", + "hashes": [ + { + "alg": "SHA-1", + "content": "2eb6676c02e75ea06452a2749787c156c80c6dd3" + }, + { + "alg": "SHA-256", + "content": "1980054721522ce9b99b3c1ea992a517b0ae93c7eebb9c502129c5f12ad928a8" + } + ] + }, + { + "bom-ref": "fcbb560bca8ef249", + "type": "file", + "name": "/var/lib/dpkg/info/debconf.config", + "hashes": [ + { + "alg": "SHA-1", + "content": "a7e68dba5c56b7e99e5602013e32c903c4e5c684" + }, + { + "alg": "SHA-256", + "content": "4f6cca919cf82b607d0ec001e451566c887383c41320d796021eee66b4473db2" + } + ] + }, + { + "bom-ref": "73fb499147dbfc84", + "type": "file", + "name": "/var/lib/dpkg/info/debconf.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "46574daf2b5199a5bbfa7b0e48ed95c115e88914" + }, + { + "alg": "SHA-256", + "content": "cd075f55bdb0dc4d53677ad17d4f646048e07da61c1b0599717696878b57eb2b" + } + ] + }, + { + "bom-ref": "99514d9871538e1f", + "type": "file", + "name": "/var/lib/dpkg/info/debconf.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "6fbc76f4e53991faf3258b2da32e0965abdaae36" + }, + { + "alg": "SHA-256", + "content": "6d75b00b0ed161f887c8ad0715e88cadbe400ed7d08ca59657cb3674f02baa34" + } + ] + }, + { + "bom-ref": "bc2413adb14e2637", + "type": "file", + "name": "/var/lib/dpkg/info/debconf.postinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "0353ca1a65fa6607fdc6f5a96711bac223f000f2" + }, + { + "alg": "SHA-256", + "content": "4d08ce201b08f4252c906339ebd2260613888ff5723238df7ad9582f0dce23ce" + } + ] + }, + { + "bom-ref": "6297a09a3ee8295b", + "type": "file", + "name": "/var/lib/dpkg/info/debconf.postrm", + "hashes": [ + { + "alg": "SHA-1", + "content": "b1243b4fa9250c9ea244c33ada39e308a5ba3ad6" + }, + { + "alg": "SHA-256", + "content": "69d031944b619046adc276b7bebfd5fb23d645c3d1b55669cf5e657cb421d2a3" + } + ] + }, + { + "bom-ref": "95ae6a6df9e423b7", + "type": "file", + "name": "/var/lib/dpkg/info/debconf.preinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "e72bee7a2510629e63d7696d5997e31299d911ba" + }, + { + "alg": "SHA-256", + "content": "1591a0ac3a57039bd6c20829a73c3f879b0556c58d90f5e456dc48f25ef9cce0" + } + ] + }, + { + "bom-ref": "e1cf0e30d058792b", + "type": "file", + "name": "/var/lib/dpkg/info/debconf.prerm", + "hashes": [ + { + "alg": "SHA-1", + "content": "b1243b4fa9250c9ea244c33ada39e308a5ba3ad6" + }, + { + "alg": "SHA-256", + "content": "69d031944b619046adc276b7bebfd5fb23d645c3d1b55669cf5e657cb421d2a3" + } + ] + }, + { + "bom-ref": "5afb3fd47d6da438", + "type": "file", + "name": "/var/lib/dpkg/info/debconf.templates", + "hashes": [ + { + "alg": "SHA-1", + "content": "031d6173691c1a410714d7e0b08ce9a1f8c87040" + }, + { + "alg": "SHA-256", + "content": "f9976867788ecea1b70d36e04246011fe856797bbb938c08ebf8d64112267064" + } + ] + }, + { + "bom-ref": "4324ee20596bbf9c", + "type": "file", + "name": "/var/lib/dpkg/info/debian-archive-keyring.conffiles", + "hashes": [ + { + "alg": "SHA-1", + "content": "f293d91e7d09a60e29ad5312ae76deca7efbeb7e" + }, + { + "alg": "SHA-256", + "content": "e6d86c39e80872af02855c3c1072cec57e2f06b8bad0646e7bf0ec672abb0fd2" + } + ] + }, + { + "bom-ref": "90de36ac96275c75", + "type": "file", + "name": "/var/lib/dpkg/info/debian-archive-keyring.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "9493dd0daab8642e9e8803c50a1f23b7de393a82" + }, + { + "alg": "SHA-256", + "content": "afb1419e928588b294b72b4ea6e9021580834b7360a0f481ca8efdc7a0661e7c" + } + ] + }, + { + "bom-ref": "a805918f3e73bd2b", + "type": "file", + "name": "/var/lib/dpkg/info/debian-archive-keyring.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "d4b0049fa5a0e83773a5028b5f40d1167dba5f10" + }, + { + "alg": "SHA-256", + "content": "2d9179d051b5b334fdc712fc6a348c4fa2417049a461080cb4cfd08aedb1cd3d" + } + ] + }, + { + "bom-ref": "0166161879c8729c", + "type": "file", + "name": "/var/lib/dpkg/info/debian-archive-keyring.postinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "98d8a0130d8ace9a030d5bd5cfd16be0a4381a16" + }, + { + "alg": "SHA-256", + "content": "0a1eab3c336ca52da3cdae85f2dc4baececb61fc0b96d8fb1255a8fb564433dc" + } + ] + }, + { + "bom-ref": "258788fdb422caac", + "type": "file", + "name": "/var/lib/dpkg/info/debian-archive-keyring.postrm", + "hashes": [ + { + "alg": "SHA-1", + "content": "98fa9ff3db48dd70ba55c84c7061df062c6eccf3" + }, + { + "alg": "SHA-256", + "content": "8b34b077090d0628234fddc6f407ec354b1fe3ff57a833fbfc290496f46da43f" + } + ] + }, + { + "bom-ref": "0b656b09fe44634d", + "type": "file", + "name": "/var/lib/dpkg/info/debian-archive-keyring.preinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "e0226d6c71e20235d23e3954183f5c973b0f293a" + }, + { + "alg": "SHA-256", + "content": "d18560f985de55381e1bccae9c52eb04e3a26a2b5d1b761d4923852a6f916c22" + } + ] + }, + { + "bom-ref": "0c183a66bf9f2069", + "type": "file", + "name": "/var/lib/dpkg/info/debian-archive-keyring.prerm", + "hashes": [ + { + "alg": "SHA-1", + "content": "e0226d6c71e20235d23e3954183f5c973b0f293a" + }, + { + "alg": "SHA-256", + "content": "d18560f985de55381e1bccae9c52eb04e3a26a2b5d1b761d4923852a6f916c22" + } + ] + }, + { + "bom-ref": "6c90491efc8a7cfb", + "type": "file", + "name": "/var/lib/dpkg/info/debianutils.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "f55858aa5da08f74d0f735cab1920811d1256c1c" + }, + { + "alg": "SHA-256", + "content": "ce60da81c5675bf3052f1bc84b3716607de015c561813f1420797e4a106e3efe" + } + ] + }, + { + "bom-ref": "20a27934e38283ef", + "type": "file", + "name": "/var/lib/dpkg/info/debianutils.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "631975427677619deb57b54bc8004dc5b528c9fe" + }, + { + "alg": "SHA-256", + "content": "29ac7266c8adeda6542a97d86b98f0d98161d7f9e6a967647abe96c897bf9126" + } + ] + }, + { + "bom-ref": "646fe288c14c8068", + "type": "file", + "name": "/var/lib/dpkg/info/debianutils.postinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "e6c9a9fb3bd269e1c2d8e75e631954dd5c3be4ed" + }, + { + "alg": "SHA-256", + "content": "d7aa50ccd2391e2b8c627cde1ca98128022bcc387801ef50c12fee0bca864ddc" + } + ] + }, + { + "bom-ref": "e959b942f9333767", + "type": "file", + "name": "/var/lib/dpkg/info/debianutils.postrm", + "hashes": [ + { + "alg": "SHA-1", + "content": "8b90a7249f17f4b73230ca67a263248764249dac" + }, + { + "alg": "SHA-256", + "content": "cb0dfa3fc27cf2dfac46a355e383fc25a920cda0622e1225cc74fc3b01a6c4b1" + } + ] + }, + { + "bom-ref": "b1f5f646173e2ba5", + "type": "file", + "name": "/var/lib/dpkg/info/diffutils.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "1da328331fbd0761658018fc6a3624cf45718304" + }, + { + "alg": "SHA-256", + "content": "429f33b358e9800b815c228c0784b23d30445ac8966f18d8c6a86e1039ffc3d7" + } + ] + }, + { + "bom-ref": "77f541a0bb78826e", + "type": "file", + "name": "/var/lib/dpkg/info/diffutils.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "23e00e60170ed0c03cd89f7f2dbb554ef44b787e" + }, + { + "alg": "SHA-256", + "content": "83967917c678f47122a4f605a8d3295588ac433fa68f9a31f9cf3429f1f4eeeb" + } + ] + }, + { + "bom-ref": "baf4f8b2816a8853", + "type": "file", + "name": "/var/lib/dpkg/info/dpkg.conffiles", + "hashes": [ + { + "alg": "SHA-1", + "content": "9720dfb4e61b9232f4b4b5d551da16a851ac2484" + }, + { + "alg": "SHA-256", + "content": "1fa597ab4184eb9914de0677909ddeeb10acb4fa091578341cfdcaec60e3a867" + } + ] + }, + { + "bom-ref": "9a5a2224f8660648", + "type": "file", + "name": "/var/lib/dpkg/info/dpkg.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "8f7914d3427c405e821a4a2315a0f98c9ae785cb" + }, + { + "alg": "SHA-256", + "content": "f33dc203f8e47119be6aa0fcafe1ea04cd2a8787ddb4b612105bd14196a3b495" + } + ] + }, + { + "bom-ref": "28d834eb536060b6", + "type": "file", + "name": "/var/lib/dpkg/info/dpkg.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "3d65033ec394f201a7c768d52d3d1201e602ee88" + }, + { + "alg": "SHA-256", + "content": "9df0e52084c98b622d673ede61915d4d232cf58f80b8ead80ca03621300fd8a6" + } + ] + }, + { + "bom-ref": "c8f3d92b4ab257ad", + "type": "file", + "name": "/var/lib/dpkg/info/dpkg.postinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "3877d1287ece5e993ebf5bc6fa6eb5bc17537ec2" + }, + { + "alg": "SHA-256", + "content": "e9083f93c5aace492e41937de838b91be018c10a6b91d0d9d4dd5fe553c0e29d" + } + ] + }, + { + "bom-ref": "4064b80e669f1420", + "type": "file", + "name": "/var/lib/dpkg/info/dpkg.postrm", + "hashes": [ + { + "alg": "SHA-1", + "content": "58d8258a477dc2bd022c013b7755e7391f618fcb" + }, + { + "alg": "SHA-256", + "content": "2463d32c05510e4983ca8eb139e5c15c1a63f463ab5a00573730019e746a8f05" + } + ] + }, + { + "bom-ref": "25e2d00468374e9e", + "type": "file", + "name": "/var/lib/dpkg/info/e2fsprogs.conffiles", + "hashes": [ + { + "alg": "SHA-1", + "content": "8c01798e4ecf5f64db3c562280c659c1e36d610b" + }, + { + "alg": "SHA-256", + "content": "4a21d18e62ee18b0b1afd94364e581e0b9b9881ea6e2df831fe8d4086a9672b9" + } + ] + }, + { + "bom-ref": "ab4c7ffbd539d9b3", + "type": "file", + "name": "/var/lib/dpkg/info/e2fsprogs.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "c4daeb77a05e03381b83431157f469029bf9b7e7" + }, + { + "alg": "SHA-256", + "content": "583ab2e2e3a29fbeba51bae0bc986ef8e89c890a8a18fd6aeb25b8a6ca2c4cf8" + } + ] + }, + { + "bom-ref": "1bf886a991216e33", + "type": "file", + "name": "/var/lib/dpkg/info/e2fsprogs.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "81068c90e00e140174ce4432909044eb3be73050" + }, + { + "alg": "SHA-256", + "content": "ea07748e6ac72b71b5fd2d1fe1581d2ff61c36c0a9286c0026d3e8b39b29a993" + } + ] + }, + { + "bom-ref": "bdab701c95cb73b2", + "type": "file", + "name": "/var/lib/dpkg/info/e2fsprogs.postinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "5df27826e536b5aa7d5f89aeaf7b94f10343f7c0" + }, + { + "alg": "SHA-256", + "content": "6cd869d76cb66fbd9e1cbeb40d7a21a060ffbef4337f5486ec167b9fa733c240" + } + ] + }, + { + "bom-ref": "3659e9e7dc079e4b", + "type": "file", + "name": "/var/lib/dpkg/info/e2fsprogs.preinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "682674dbb2d71c009bf0b48f6d1d090b1692a011" + }, + { + "alg": "SHA-256", + "content": "0ac4873d936cbf6ea2c958b686aa5097f82306e1bd50fa6eff1b95337664dac1" + } + ] + }, + { + "bom-ref": "e0a319db2574da5e", + "type": "file", + "name": "/var/lib/dpkg/info/fdisk.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "4a19d3f78c1fcc27dd35de2dca38d8fa53e274e2" + }, + { + "alg": "SHA-256", + "content": "c38c133d41e65e9637989aecee22b097882de26baa96336ba8a480a17a947f67" + } + ] + }, + { + "bom-ref": "7bddb79fbb213b81", + "type": "file", + "name": "/var/lib/dpkg/info/fdisk.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "27295eca79e9712fe999792d2b0db9ec76d13375" + }, + { + "alg": "SHA-256", + "content": "664cbea1ff008234b942bc1fc08cb5a3aaaacb4f6cdc6a7d84d11b5a6f450ddb" + } + ] + }, + { + "bom-ref": "ef77cc802783eac2", + "type": "file", + "name": "/var/lib/dpkg/info/findutils.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "e3db463c8b172f98ab7212c2724e955e4b242394" + }, + { + "alg": "SHA-256", + "content": "fae5dcc0bdf37c5dda884535d6dfbef9a3ab401cf69a9cf908d18e29bad414c3" + } + ] + }, + { + "bom-ref": "bf36a6eef7af3fc2", + "type": "file", + "name": "/var/lib/dpkg/info/findutils.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "f93c45a7d3386037b17d1ae73c230b91ef63db32" + }, + { + "alg": "SHA-256", + "content": "bd4a9d61b0667dafd864a7ccd9528a929b14a6c553a44952b34ea3676e7211c5" + } + ] + }, + { + "bom-ref": "4285fd8fb13e812c", + "type": "file", + "name": "/var/lib/dpkg/info/gcc-8-base:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "d449744e6650ae33398150105a9eca7f6bdc7514" + }, + { + "alg": "SHA-256", + "content": "1d62943fb4b92908f59def1eaee9aa449ece05cfe3c413ddfa6783cdf2a1a8dd" + } + ] + }, + { + "bom-ref": "67b77d33244d3df9", + "type": "file", + "name": "/var/lib/dpkg/info/gpgv.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "15bd6a1db486c93b33572da3f61d0780498437e7" + }, + { + "alg": "SHA-256", + "content": "fa4d4420c6b77df26e9b1b0a18411c1430ad18ef9dfbb5e833d8b5480954c598" + } + ] + }, + { + "bom-ref": "d46a96d2987117a1", + "type": "file", + "name": "/var/lib/dpkg/info/gpgv.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "78ab17e5257b5a9ddda387f04ca5750757ec5bb9" + }, + { + "alg": "SHA-256", + "content": "3eade34808333c68ad6860b5b859764113986837d4a4551fae0581e741674f7c" + } + ] + }, + { + "bom-ref": "a3edcacf6a1a9a4b", + "type": "file", + "name": "/var/lib/dpkg/info/grep.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "b6d2510bd88a53f82b10f695633237889a96cd0c" + }, + { + "alg": "SHA-256", + "content": "aa6915ec381a63d8a0a642d76ca65dc13762d2148bf113aa53899a0ae8168026" + } + ] + }, + { + "bom-ref": "0d7ef09fd839fdb0", + "type": "file", + "name": "/var/lib/dpkg/info/grep.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "98ef437297ed6333a678c1d21a8962ca911c161a" + }, + { + "alg": "SHA-256", + "content": "1978bf3911fdec04ad3382686432780649236d41a83629219a9623f210c1e760" + } + ] + }, + { + "bom-ref": "de92e0e9e05d22de", + "type": "file", + "name": "/var/lib/dpkg/info/gzip.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "42c40899411129e3ddcb78386cd5f4abc0cc7110" + }, + { + "alg": "SHA-256", + "content": "3ec70e83716c0d0cfa5a431f0a4acf15a359bb9f133345d599bf168767f5e1c9" + } + ] + }, + { + "bom-ref": "70027c78f9f5b936", + "type": "file", + "name": "/var/lib/dpkg/info/gzip.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "24870053a1677ffa79d1d0594cb8870d1234f210" + }, + { + "alg": "SHA-256", + "content": "634d23d99a8e08a64299b0cb794b32738584115ed8380c11a497fe1ae407c02d" + } + ] + }, + { + "bom-ref": "f361294f8e8a972b", + "type": "file", + "name": "/var/lib/dpkg/info/hostname.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "06a0d8046e7a14902f7cad07e842b032f723e2ab" + }, + { + "alg": "SHA-256", + "content": "973b0a026b9bf3e8f808ddabef2ef585c67345cdd69f524f5aa51a9fb0ec25b4" + } + ] + }, + { + "bom-ref": "335b573263af515a", + "type": "file", + "name": "/var/lib/dpkg/info/hostname.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "58b0bb467384e67189b9f1877aacd6f4c43a8b7b" + }, + { + "alg": "SHA-256", + "content": "4f23b617c9248b8d9dbcdb79265004e9b55dec573f412b12d131c8dffdad5e8e" + } + ] + }, + { + "bom-ref": "47b4bcc4f7eace8b", + "type": "file", + "name": "/var/lib/dpkg/info/init-system-helpers.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "69e5d659f03c63360b63a0f926cac6aedc3e6169" + }, + { + "alg": "SHA-256", + "content": "9746762ee1530db38b7065f1c13389638e238c6215ea54bec21d0fdaafdaf31f" + } + ] + }, + { + "bom-ref": "e686b91a526ed3d1", + "type": "file", + "name": "/var/lib/dpkg/info/init-system-helpers.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "9620bcec7d00921a3a3efedf79915ecff8d1ab46" + }, + { + "alg": "SHA-256", + "content": "c85f7ce9734d0cc138e071f5cdbc35a0e389a13b24b78fcdfec27189df8ceae8" + } + ] + }, + { + "bom-ref": "34703fe90915d17e", + "type": "file", + "name": "/var/lib/dpkg/info/libacl1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "9ba1597975b018041af4b260f74821e7254fdbe2" + }, + { + "alg": "SHA-256", + "content": "09d5790e09428e6f89a80a915c11026f402a928b1eb7d9bd629cacad8a40e1cf" + } + ] + }, + { + "bom-ref": "c1de3715f03736fd", + "type": "file", + "name": "/var/lib/dpkg/info/libapt-pkg5.0:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "653aabd4da668ecb006cfef5f00af4dca82b5169" + }, + { + "alg": "SHA-256", + "content": "d98c2a04cf47ff24b9222bbbd6cd6051c23fd4df1728e5361c5403a25acc182a" + } + ] + }, + { + "bom-ref": "5e093e4a503ee19e", + "type": "file", + "name": "/var/lib/dpkg/info/libattr1:amd64.conffiles", + "hashes": [ + { + "alg": "SHA-1", + "content": "088e81bbdf8ac60e8b905f7f6ebffcaa03156ba7" + }, + { + "alg": "SHA-256", + "content": "d359ef22e3d78ab9baf0ca82354e916895e45ee5c2ca0db5346fd8555f39c9fd" + } + ] + }, + { + "bom-ref": "8555112ee39c6e0a", + "type": "file", + "name": "/var/lib/dpkg/info/libattr1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "2e94fe819e5ed39c0c82e362daf4c441fd645343" + }, + { + "alg": "SHA-256", + "content": "c6425cbbe99f54460d8700b94d265cef124956ab1ac014ffe6610ad6b861c177" + } + ] + }, + { + "bom-ref": "03b5c623904dd949", + "type": "file", + "name": "/var/lib/dpkg/info/libaudit-common.conffiles", + "hashes": [ + { + "alg": "SHA-1", + "content": "68815c766de040e94590bdd9a274e034a9edad1e" + }, + { + "alg": "SHA-256", + "content": "e59079facf60922dd9bef9974c852e6ad3315ca2639141786bb268e8e877bec3" + } + ] + }, + { + "bom-ref": "609be38340339f27", + "type": "file", + "name": "/var/lib/dpkg/info/libaudit-common.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "69756a2c668bb8359dc593d3a50a44818c229252" + }, + { + "alg": "SHA-256", + "content": "809f79c7732df66a7252edea0a4ef3388b43e122fedd8a27bf0a90a059c5c3d8" + } + ] + }, + { + "bom-ref": "109a5c747d3eed3a", + "type": "file", + "name": "/var/lib/dpkg/info/libaudit-common.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "32437cab2d0a1f8ba42fd9d47ebe38e8e47a5bdb" + }, + { + "alg": "SHA-256", + "content": "788cd710dd6872c3eddaa95f9799d241a2fe97dd2c60e9a4851d4bc2b74d94be" + } + ] + }, + { + "bom-ref": "1b23ed2d6e5bdcd7", + "type": "file", + "name": "/var/lib/dpkg/info/libaudit1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "8f64d859611ac944cc1d66f954f37ab9f9db6641" + }, + { + "alg": "SHA-256", + "content": "27cc423a595c5275059634505ffc85160d6328607094339952d456198e1a9495" + } + ] + }, + { + "bom-ref": "a949de168ed1bb50", + "type": "file", + "name": "/var/lib/dpkg/info/libblkid1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "086a14651281c9d2486049fca62421274d58c896" + }, + { + "alg": "SHA-256", + "content": "604a8ee47ed935d56125041cfc3bf41e257fca914c3a69d8f3a007a32e1f86cb" + } + ] + }, + { + "bom-ref": "3cb3f572dd14f363", + "type": "file", + "name": "/var/lib/dpkg/info/libbz2-1.0:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "47d773d8c4eb070da30ad61419c4cdefbb934f65" + }, + { + "alg": "SHA-256", + "content": "7faa60f379d5d0b518a5ead97e731b28fa61aa09def9b1b7cf848c694e1c65be" + } + ] + }, + { + "bom-ref": "d8707b29b7b0f3f3", + "type": "file", + "name": "/var/lib/dpkg/info/libc-bin.conffiles", + "hashes": [ + { + "alg": "SHA-1", + "content": "a880cffda6ebe9d4cc01bc315adda184e33570ee" + }, + { + "alg": "SHA-256", + "content": "ed1819b3573af7f7dfa94bc34567884dce8f5fabd0ae065a646d4f23d28ade32" + } + ] + }, + { + "bom-ref": "48b5ea1265cde6c4", + "type": "file", + "name": "/var/lib/dpkg/info/libc-bin.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "e0efa30593b8d93d5d0a7ecf77baa88e7ab18f89" + }, + { + "alg": "SHA-256", + "content": "5f95bcc50c60a7da16e8712cf72a7e7eae8a4f89640a790b0f86414ae5498a90" + } + ] + }, + { + "bom-ref": "defafee8d959d6c4", + "type": "file", + "name": "/var/lib/dpkg/info/libc-bin.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "477545d3089ffcc4417ae297bf010a1531ddb3b3" + }, + { + "alg": "SHA-256", + "content": "f08cdddde8de47d0d1cbc634af965095b0a9c1303207b62d9723f081f0ca6ab8" + } + ] + }, + { + "bom-ref": "eb50f1b9686b0a35", + "type": "file", + "name": "/var/lib/dpkg/info/libc-bin.postinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "70967560d386f55f34e3337d990344af985f7ef5" + }, + { + "alg": "SHA-256", + "content": "47fc92ea75c72d16a695f78d1fc35671020810e4bef594266a269b34d6e9ac9a" + } + ] + }, + { + "bom-ref": "48601671d833b238", + "type": "file", + "name": "/var/lib/dpkg/info/libc-bin.triggers", + "hashes": [ + { + "alg": "SHA-1", + "content": "a50727aa5c561e2e012d0d54fee760e600cda1e6" + }, + { + "alg": "SHA-256", + "content": "c3d6b5df131336e54c31dc5687929467de7abea5c5798e3d6a6b2a64ef971fd4" + } + ] + }, + { + "bom-ref": "c046b324710cf94e", + "type": "file", + "name": "/var/lib/dpkg/info/libc6:amd64.conffiles", + "hashes": [ + { + "alg": "SHA-1", + "content": "386809e0fb1f09d77ec36022a7171815d274e3a2" + }, + { + "alg": "SHA-256", + "content": "a59a14914231cc9a833ba49b14308e57b755236ff70bc3b0c4ee77b2bd34eed8" + } + ] + }, + { + "bom-ref": "e14ccb119ce79855", + "type": "file", + "name": "/var/lib/dpkg/info/libc6:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "a3d6bd2debd90ca46eebddad830b882b21115bd5" + }, + { + "alg": "SHA-256", + "content": "7e421dcf4dbdc3eede4aa53fe3d828be0dae176a9047590ec6ffd23076f18009" + } + ] + }, + { + "bom-ref": "2e3a5ba4587e722b", + "type": "file", + "name": "/var/lib/dpkg/info/libcap-ng0:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "5fb920159f5b5423b1fc0c77a7b8a8dec449d6c5" + }, + { + "alg": "SHA-256", + "content": "6c8eac66d483ef1ede9890b6214b245e454d6e8d74de1194e4adadf033955e60" + } + ] + }, + { + "bom-ref": "02a8b0a7ffeaebfa", + "type": "file", + "name": "/var/lib/dpkg/info/libcom-err2:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "d9ca0d3eb8b86b7a56540f3b3f7c1f888cbfb314" + }, + { + "alg": "SHA-256", + "content": "1515c56e4e3f36b0ae32e7a327fdcf74c7b4bb8632eb3e0b9cfea9dc902f6262" + } + ] + }, + { + "bom-ref": "21aad98931190eaf", + "type": "file", + "name": "/var/lib/dpkg/info/libdb5.3:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "09d0e3c4f288946f91d788bb8ff56f407b85b2b8" + }, + { + "alg": "SHA-256", + "content": "6033817c225aa795c61d10617c729e3b44f8c60386ff11275709702c58d492e5" + } + ] + }, + { + "bom-ref": "fb11fe1d045072f9", + "type": "file", + "name": "/var/lib/dpkg/info/libdebconfclient0:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "a6706f6018b238326483e00877578f0414db2cfc" + }, + { + "alg": "SHA-256", + "content": "31248e792afdf5f838994d7dac3a4bdfe2e30a53e2876c2b6261b64af93c1f0b" + } + ] + }, + { + "bom-ref": "a9f0feb4c896c628", + "type": "file", + "name": "/var/lib/dpkg/info/libext2fs2:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "35c02296643d6b8034d30e5bb0462a29fd49a32e" + }, + { + "alg": "SHA-256", + "content": "00120762af34dab0d3b6a0577353a3a81b3ae636ff8fe18f56d1d4a8b22fbee1" + } + ] + }, + { + "bom-ref": "3b27ae3abb94e8c0", + "type": "file", + "name": "/var/lib/dpkg/info/libfdisk1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "0ab90005c632b76c842f9293dd38118c8cc0d93e" + }, + { + "alg": "SHA-256", + "content": "a6d09000d1e1f0dbbe2143565134314fcde7c1938673ef035c34e1b98f280334" + } + ] + }, + { + "bom-ref": "7a33921049c0e775", + "type": "file", + "name": "/var/lib/dpkg/info/libffi6:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "9f9e5f3f8070200e5c98a1111f276a2e4fccb469" + }, + { + "alg": "SHA-256", + "content": "146dfd36121c02864ab52940a205a18f2279f2a6ba68da383ca7e00ee06a9552" + } + ] + }, + { + "bom-ref": "552e3acddb1c5042", + "type": "file", + "name": "/var/lib/dpkg/info/libgcc1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "72f4860ca6a56d184f849f133a4b44895320d603" + }, + { + "alg": "SHA-256", + "content": "d32dcbe9f9152f8e02e7dda525a611cb1231ddfbc434b82eded558822ce4b8fe" + } + ] + }, + { + "bom-ref": "14ffb015cd09292b", + "type": "file", + "name": "/var/lib/dpkg/info/libgcrypt20:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "bc6f9cc539c782cc9112b3a75345f7d97c10b1de" + }, + { + "alg": "SHA-256", + "content": "6e5c2488ccfa02caeb8b97554ca5b979d37bbd7fad6993111c634a3b2626b861" + } + ] + }, + { + "bom-ref": "cda770dea2f8d00d", + "type": "file", + "name": "/var/lib/dpkg/info/libgmp10:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "a3be8091fab7d1270bed863ea22c0728d73ea71b" + }, + { + "alg": "SHA-256", + "content": "1503904f162ad5fa0446380324a3c56d15627a8d338052f1a0f10618c80c4998" + } + ] + }, + { + "bom-ref": "c2a4d49088fb90ec", + "type": "file", + "name": "/var/lib/dpkg/info/libgnutls30:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "7486a2db4a270af30a4301a23f0d8e68ed2e9ff0" + }, + { + "alg": "SHA-256", + "content": "182369110dc50ea58a9b01c55ec9334f8dce31546e3d390d395f95ac179966ac" + } + ] + }, + { + "bom-ref": "eec67e3ba14dc12f", + "type": "file", + "name": "/var/lib/dpkg/info/libgpg-error0:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "1637764fdd1fc4cff92ef8b4ea49592842d2a4d1" + }, + { + "alg": "SHA-256", + "content": "ab4022d67ab71f8abc30a089416c26c28a8d3059287b0a1bac19b67d7e16ca54" + } + ] + }, + { + "bom-ref": "c846dbf5c2038203", + "type": "file", + "name": "/var/lib/dpkg/info/libhogweed4:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "8802e9c0ef5e462be812c6e53a105b0228d887c4" + }, + { + "alg": "SHA-256", + "content": "81eeb35804c900342abb398e8b50a42408c57bfe42cfb58aa648555b16d0a5b7" + } + ] + }, + { + "bom-ref": "373c9b7f7450d3eb", + "type": "file", + "name": "/var/lib/dpkg/info/libidn2-0:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "799ef8ac39821fb3a0bb9c1636e80f4cc031ccd1" + }, + { + "alg": "SHA-256", + "content": "216632651f6ccd13b8c4a92cfc0e9f023fa636b3ecb42d1acb5f0cbf7ccad385" + } + ] + }, + { + "bom-ref": "0c449c39ebed6834", + "type": "file", + "name": "/var/lib/dpkg/info/liblz4-1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "dbe2749c08e0d1fba9a23cad420ee215a2054522" + }, + { + "alg": "SHA-256", + "content": "3dedd2cbe52dbd164dccf7ab09aff428853005ffab9ca48d669f5aacf0383ccb" + } + ] + }, + { + "bom-ref": "5d63bad22591d90a", + "type": "file", + "name": "/var/lib/dpkg/info/liblzma5:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "a8813643018821ccf1533921d82f49c3166ef29b" + }, + { + "alg": "SHA-256", + "content": "37121275232b08793279c2f13e2d5b52a9cf380c01723174b8508fb676a161d4" + } + ] + }, + { + "bom-ref": "f0e47eed0b291e71", + "type": "file", + "name": "/var/lib/dpkg/info/libmount1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "fe3e884a1d7bc686120f9af02d56bc6958e39da9" + }, + { + "alg": "SHA-256", + "content": "cf73ac29b22fa67c9cb08bd1f424c44c376e8d25ee1407972d91c38f6a8286ef" + } + ] + }, + { + "bom-ref": "0c4a43d78eccd897", + "type": "file", + "name": "/var/lib/dpkg/info/libncursesw6:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "d42ed9225ddb8e4250bc859be3ccc5ce08b6784b" + }, + { + "alg": "SHA-256", + "content": "336d3c081602a0697afaf290542470be8841bd3c1d14d6d4d041753b866b302c" + } + ] + }, + { + "bom-ref": "96472c32ca240357", + "type": "file", + "name": "/var/lib/dpkg/info/libnettle6:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "11868741b438e3f56cadb83ab09e121b76745388" + }, + { + "alg": "SHA-256", + "content": "3959d6ef7f539eb4590a8dec3ba30a4d2be0079226bd736d69c171de5d1f240a" + } + ] + }, + { + "bom-ref": "00fbdc4ed5f0fb95", + "type": "file", + "name": "/var/lib/dpkg/info/libp11-kit0:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "11221d0944c57ce783c8e7ced99528f0fd790994" + }, + { + "alg": "SHA-256", + "content": "882e6e5ef14a3217acf8f1dc724b4ba7eb1b027a912412be79e77e925f87d759" + } + ] + }, + { + "bom-ref": "3e6d05690d48258d", + "type": "file", + "name": "/var/lib/dpkg/info/libpam-modules-bin.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "27ce871fc00f24217b5b5798db488afd3d44fdae" + }, + { + "alg": "SHA-256", + "content": "df966cbf9d317eac8664ace185fcc8719052f35021d521c74d83c79054fd58a6" + } + ] + }, + { + "bom-ref": "b9969fd3da8a5033", + "type": "file", + "name": "/var/lib/dpkg/info/libpam-modules-bin.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "ba5dd6ae7744dae1e5ff228274f79b39a348dc77" + }, + { + "alg": "SHA-256", + "content": "86f1318a80e13b80f5e6b47556eb25e1c321944b4106b4deea50172de3917990" + } + ] + }, + { + "bom-ref": "fedc662bcd7b2653", + "type": "file", + "name": "/var/lib/dpkg/info/libpam-modules:amd64.conffiles", + "hashes": [ + { + "alg": "SHA-1", + "content": "3df8a83976b32d5edd9abfd520733592b017bd8c" + }, + { + "alg": "SHA-256", + "content": "d55c2f2fa42a5a8d21bb599e010aa7053a91156c8523bc54fe6907ddfbf665dd" + } + ] + }, + { + "bom-ref": "904d44bfce001189", + "type": "file", + "name": "/var/lib/dpkg/info/libpam-modules:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "d9fa7e1bcf3c4d2ba6b3560cfbc5b39b264c649b" + }, + { + "alg": "SHA-256", + "content": "853b2852b5a129dbde9fbe9980989fb3d532ac149d33806d0fa5058dd59cb37c" + } + ] + }, + { + "bom-ref": "2d505f68543991f3", + "type": "file", + "name": "/var/lib/dpkg/info/libpam-runtime.conffiles", + "hashes": [ + { + "alg": "SHA-1", + "content": "ac667b2e62edafa178fcff950dba09d1e28d061d" + }, + { + "alg": "SHA-256", + "content": "0e5df5e3149674007ef3a300996163a4d8692d21dabe9df527cf6a07e3abd65d" + } + ] + }, + { + "bom-ref": "73355abae555e932", + "type": "file", + "name": "/var/lib/dpkg/info/libpam-runtime.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "acee4acedcbfe7dde1775969b2ad526efc28b4f8" + }, + { + "alg": "SHA-256", + "content": "51cc0665b9e3b5530e56deb71993fa15c04dc5eec938f325c4c9e4bf8e1b9c98" + } + ] + }, + { + "bom-ref": "3c3f1875dd913e3b", + "type": "file", + "name": "/var/lib/dpkg/info/libpam-runtime.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "ee930b9cbde8f322afbd7f91822c8e5505fe7779" + }, + { + "alg": "SHA-256", + "content": "30effbaccf8fc2b9c2f35314097ae6efd14352876a329558ee9a874f19b415ea" + } + ] + }, + { + "bom-ref": "f257a3fb94273a0d", + "type": "file", + "name": "/var/lib/dpkg/info/libpam-runtime.postinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "f391ef6ebf91b1b84b2637480b8ebc8d7f1881c0" + }, + { + "alg": "SHA-256", + "content": "d6db2d0dd0999f840faaacc10a2cdc4e6b9227022b2d72da42ee67fe7c5968ec" + } + ] + }, + { + "bom-ref": "7a19fecd7498da5c", + "type": "file", + "name": "/var/lib/dpkg/info/libpam-runtime.postrm", + "hashes": [ + { + "alg": "SHA-1", + "content": "d2ae0a308fe07c53c7553c9f6775b7a28d67b1f6" + }, + { + "alg": "SHA-256", + "content": "2143ded6d389bca52b9c819af779de4039b359bcd8f0d015cc2a740e46a34576" + } + ] + }, + { + "bom-ref": "9a881ce3b9f8588c", + "type": "file", + "name": "/var/lib/dpkg/info/libpam-runtime.prerm", + "hashes": [ + { + "alg": "SHA-1", + "content": "742528c58c4744e7b1d46d73f6d31f466ff75201" + }, + { + "alg": "SHA-256", + "content": "b3e3b7ea23ac1d1c74ebc6aa3efee132675f5e69d9e2caba6c23e64a7b94b7f8" + } + ] + }, + { + "bom-ref": "76558b089abcbcac", + "type": "file", + "name": "/var/lib/dpkg/info/libpam-runtime.templates", + "hashes": [ + { + "alg": "SHA-1", + "content": "f12bb4fe75fad3cc2b07df46edb744863942fdd7" + }, + { + "alg": "SHA-256", + "content": "9dde4a26827d812fec5ad30ba50d6bcb9ddc7769d983de02cf9aec9172e8bdf8" + } + ] + }, + { + "bom-ref": "f3698b0400f88639", + "type": "file", + "name": "/var/lib/dpkg/info/libpam0g:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "3577d1874d8306b17fec7c92bb916a48a6b6a2a4" + }, + { + "alg": "SHA-256", + "content": "33d2911a2142818bd388a6e5545baec7da7b9687946d2ec3a682e435983ca20b" + } + ] + }, + { + "bom-ref": "e859de239a4d631f", + "type": "file", + "name": "/var/lib/dpkg/info/libpcre3:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "684ff301864c3a7844b56fd27f7ff92abd8d9ec3" + }, + { + "alg": "SHA-256", + "content": "371dc6fc3eb80319b903f7347fbd5ea406e50b855144e1e4c913c380326c13ac" + } + ] + }, + { + "bom-ref": "442ef226bf9c5a40", + "type": "file", + "name": "/var/lib/dpkg/info/libseccomp2:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "c0eb11dd0bb5aee5ba64c159e251f0cd9d5b7413" + }, + { + "alg": "SHA-256", + "content": "6a29131563b81422aae8745433a05977ba2dfc5a7e915750dc6478d22416f08d" + } + ] + }, + { + "bom-ref": "fd7ba620bd6ee194", + "type": "file", + "name": "/var/lib/dpkg/info/libselinux1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "6dbb3de3c03a3c17a25f282882c70e223206bf5c" + }, + { + "alg": "SHA-256", + "content": "4cda83cb3c40eef078c499466e9849ab789302afa5d0ffdb73f2a15d596dc009" + } + ] + }, + { + "bom-ref": "4538c4cbc5a31ca9", + "type": "file", + "name": "/var/lib/dpkg/info/libsemanage-common.conffiles", + "hashes": [ + { + "alg": "SHA-1", + "content": "63c2c2b06c9064268fa7d094baab637e43fc4385" + }, + { + "alg": "SHA-256", + "content": "e0b0a931b5ae99c4bc030b6ecb183385a46fbd5e55e0e10cce9d5ed1eae556e2" + } + ] + }, + { + "bom-ref": "5c371c2831ff536b", + "type": "file", + "name": "/var/lib/dpkg/info/libsemanage-common.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "5905729943bf354e56467b21ec9a5606885ea570" + }, + { + "alg": "SHA-256", + "content": "11bc9aa8b78fffb063ba39f6913b15d192f4f3d8e417213f57ad18b73a6be0ea" + } + ] + }, + { + "bom-ref": "c22a9ae05f938a7a", + "type": "file", + "name": "/var/lib/dpkg/info/libsemanage-common.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "d7fa03497f5085931dac17f0d51361dfcac01513" + }, + { + "alg": "SHA-256", + "content": "44038d3202b987a0e117cd6c168e89734e7a55837cc8ed4469a08276475c3373" + } + ] + }, + { + "bom-ref": "c80ac7e73bd3c93b", + "type": "file", + "name": "/var/lib/dpkg/info/libsemanage1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "720260ac1a83de80bcd89f38c8f9dbe66d335c35" + }, + { + "alg": "SHA-256", + "content": "bb364ba734791fc9c178cca623c92abe72e9e8cb722044219e0aefcdfe1dc132" + } + ] + }, + { + "bom-ref": "fa6ac55276ad4adc", + "type": "file", + "name": "/var/lib/dpkg/info/libsepol1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "41f03f4a9ffdbcb4b1ced7e987e727719c41d85d" + }, + { + "alg": "SHA-256", + "content": "a57cfed1c862aa39dd5f9680fb6b3e6194e90c8f9c1dbaeda010e5618076a758" + } + ] + }, + { + "bom-ref": "7f66a5fc0299f7cf", + "type": "file", + "name": "/var/lib/dpkg/info/libsmartcols1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "55eb7e527adb1f4e36fa3587743edefbfd8f461e" + }, + { + "alg": "SHA-256", + "content": "3bfb7c535c98f1091193e0d88d397cb2168fbeca65814e09a554073de00c6263" + } + ] + }, + { + "bom-ref": "9aff87a14fbe14e6", + "type": "file", + "name": "/var/lib/dpkg/info/libss2:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "e02811614c1643f9bb0d7f50bc090c967ec13252" + }, + { + "alg": "SHA-256", + "content": "d46e56804e251cb436571f44e8bee6a2e7b0d59d5d6a9b7217d8fa0ff42d20de" + } + ] + }, + { + "bom-ref": "04aad2a0f7739d34", + "type": "file", + "name": "/var/lib/dpkg/info/libstdc++6:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "0147d0aece08b68d1ea04230ad4327fafd8da4a7" + }, + { + "alg": "SHA-256", + "content": "4aa0bd568fd6f49694a3dd125455b1302ccffb4591037ecbdb9799f52a0dd567" + } + ] + }, + { + "bom-ref": "b5a4d0939bd01f16", + "type": "file", + "name": "/var/lib/dpkg/info/libsystemd0:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "da5ace7d1db86857c104b762ddf8d552807ebb4a" + }, + { + "alg": "SHA-256", + "content": "0a1f088f9634db56f72d25f3062eb6dced50579e29136ebe6558d90c7aedd4c0" + } + ] + }, + { + "bom-ref": "45b6b78c8f86d761", + "type": "file", + "name": "/var/lib/dpkg/info/libtasn1-6:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "aeefe3092df4e75dcabc3b64069e10bff11a08f2" + }, + { + "alg": "SHA-256", + "content": "b88477cffe9078ae6c101c35d33279d7f774ce7c6913786c3b84dcbd44459ef4" + } + ] + }, + { + "bom-ref": "90d9238c47fa72dd", + "type": "file", + "name": "/var/lib/dpkg/info/libtinfo6:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "d08c08a3676c4aa618f7ec0fa7b13f0c241894af" + }, + { + "alg": "SHA-256", + "content": "b671ca577de6eedca93c8df9312452e104645ac09b5088d71d917a3d8781eac2" + } + ] + }, + { + "bom-ref": "07b6e6b19f82565f", + "type": "file", + "name": "/var/lib/dpkg/info/libudev1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "163b6f3e8f5c966dd9b4fa9cb6d84beb81192345" + }, + { + "alg": "SHA-256", + "content": "1796684028a9291a61b775964cc8ea50e41cce5cf9c88c17f7af73fab3fe2bc3" + } + ] + }, + { + "bom-ref": "a97ee37b179f1698", + "type": "file", + "name": "/var/lib/dpkg/info/libunistring2:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "8095b029d4e66b6498a05e60efd232aaf99eccb2" + }, + { + "alg": "SHA-256", + "content": "bfd97b2571439887efe61bd61a71512f1659fb63be1dd46527642e46609b524a" + } + ] + }, + { + "bom-ref": "2de23c06c5760e53", + "type": "file", + "name": "/var/lib/dpkg/info/libuuid1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "6e13e5b40242605fb0a27964f4ed02d1962ea941" + }, + { + "alg": "SHA-256", + "content": "b0538c430aa7d95208ed4479bb93e4b0683a69eb34b097e3537ebb5743b2bc6b" + } + ] + }, + { + "bom-ref": "e6cba64d1b885d90", + "type": "file", + "name": "/var/lib/dpkg/info/libzstd1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "309e6afa5c3468dd1faee3f741734f59448a2970" + }, + { + "alg": "SHA-256", + "content": "6606f8484eeae936460fb6d7201c83ae63aa666c57ae0c7910101354697a6a3a" + } + ] + }, + { + "bom-ref": "c37a47a8ee8feb94", + "type": "file", + "name": "/var/lib/dpkg/info/login.conffiles", + "hashes": [ + { + "alg": "SHA-1", + "content": "f021a0cea879d52870bcfd875ba5e2856ae63cf0" + }, + { + "alg": "SHA-256", + "content": "87c7a8899eceddd525138d2df3f44736f529a7e10b9fabed8ce3d234c7bab266" + } + ] + }, + { + "bom-ref": "57e9677762d3e7fd", + "type": "file", + "name": "/var/lib/dpkg/info/login.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "af32b7ccb3e7f2d291c2ea2a2028b848c4a6abec" + }, + { + "alg": "SHA-256", + "content": "0b632852c0464372875270a9ee8ab155d15557c600d22cbceee950cd0a3c3fd7" + } + ] + }, + { + "bom-ref": "099693c3ce9ce594", + "type": "file", + "name": "/var/lib/dpkg/info/login.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "635d1f98e4d4859025141822363b7d61f71a0bdf" + }, + { + "alg": "SHA-256", + "content": "00296931ec5d2eda111136b1c025a5a22f6e3795dd9f0208d0fdd00f2983f22a" + } + ] + }, + { + "bom-ref": "3803ad4458dd74a9", + "type": "file", + "name": "/var/lib/dpkg/info/login.postinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "9cce00a7f138dea0ec6ee63639b965072a838ec9" + }, + { + "alg": "SHA-256", + "content": "13780f74190f9e9564d2eaf2d4f9d26e09c67b15a61ebae713b070854e263f58" + } + ] + }, + { + "bom-ref": "8a4c669977d45dff", + "type": "file", + "name": "/var/lib/dpkg/info/login.preinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "ac2a6020d5592452619da61120572792f7571ec9" + }, + { + "alg": "SHA-256", + "content": "60940bcd58ac8bc2308601c284183358fa5814064ac33e90345f706dc35f473b" + } + ] + }, + { + "bom-ref": "cd9d181501b40366", + "type": "file", + "name": "/var/lib/dpkg/info/mawk.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "95fd0dfcd5936c36f9a2523a8c958ed4692f7969" + }, + { + "alg": "SHA-256", + "content": "362378374a77852a70e0e0131ef2241675623e663817a1167f8db4497ae9e80a" + } + ] + }, + { + "bom-ref": "9ecda1345c8074e4", + "type": "file", + "name": "/var/lib/dpkg/info/mawk.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "3de654dd41c2cb9508814bbdf3ec0d809240a52a" + }, + { + "alg": "SHA-256", + "content": "66921a131a48fd13c2ea73b30af7873a74b632d845164aefee1f4dae60a0a55e" + } + ] + }, + { + "bom-ref": "53147d0eebc47bf4", + "type": "file", + "name": "/var/lib/dpkg/info/mawk.postinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "298be82d393cdc9ce13ecab2a3124af36d657db0" + }, + { + "alg": "SHA-256", + "content": "6374f7996297a6933c9ccae7eecc506a14c85112bf1984c12da1f975dab573b2" + } + ] + }, + { + "bom-ref": "980f9a988ef85090", + "type": "file", + "name": "/var/lib/dpkg/info/mawk.prerm", + "hashes": [ + { + "alg": "SHA-1", + "content": "67cc822086f049733fa9a2f23c481f6df8ffe9af" + }, + { + "alg": "SHA-256", + "content": "7f5bf8abeb16efa0dea7513462bf1a1dbfee6a7945dc39424d87547128d52aca" + } + ] + }, + { + "bom-ref": "b1eebfc72ef55007", + "type": "file", + "name": "/var/lib/dpkg/info/mount.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "3e73b125798fe785d8b2093c9cc632bb0cbaceab" + }, + { + "alg": "SHA-256", + "content": "8caba783884a56a3600a0a63b5bd220f396b5a781e251f474609e5a5af306a1b" + } + ] + }, + { + "bom-ref": "adab33dc298bf92e", + "type": "file", + "name": "/var/lib/dpkg/info/mount.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "9c4ea4ae1415008ee7f2e580df4e65a35eb8d826" + }, + { + "alg": "SHA-256", + "content": "e88b521a8422136d34c08e30546d3a890ce9e28a5612415f3c1a7ae87636ec1c" + } + ] + }, + { + "bom-ref": "af48fb936238c057", + "type": "file", + "name": "/var/lib/dpkg/info/ncurses-base.conffiles", + "hashes": [ + { + "alg": "SHA-1", + "content": "3e29390e819adb21b30675bbf4b2d1aab57d5b85" + }, + { + "alg": "SHA-256", + "content": "b97a47660009db296563cccb2fdce8826e134e3b1bf90248d9c7cf825f06e50a" + } + ] + }, + { + "bom-ref": "759329fe9f461230", + "type": "file", + "name": "/var/lib/dpkg/info/ncurses-base.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "17f8aef5b27c89050b61406dbe84360fb14992d9" + }, + { + "alg": "SHA-256", + "content": "6d62c5df571987a05ea8bf883bd75e77f35f48b1cdc7ebc6edff7d3c3582815a" + } + ] + }, + { + "bom-ref": "2c68d9520352e4e4", + "type": "file", + "name": "/var/lib/dpkg/info/ncurses-base.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "5937025656c50e8a56d21c63eddaeaf16a2ec6c7" + }, + { + "alg": "SHA-256", + "content": "e123e3a60a36156d3ed047db00205b9102f878096d672a3e6f0f68af45e6bc67" + } + ] + }, + { + "bom-ref": "dfc6f73044fbefa3", + "type": "file", + "name": "/var/lib/dpkg/info/ncurses-bin.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "3cd1205937d1263748a43eece3ce55edd5f5ab66" + }, + { + "alg": "SHA-256", + "content": "9c28f1e97eb7a36b845560811521dea9d82bb20b8139fd0c4bf0a7ac77485ec9" + } + ] + }, + { + "bom-ref": "209575ea285d9910", + "type": "file", + "name": "/var/lib/dpkg/info/ncurses-bin.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "37392b45ebe4dbedf0b754c5ed770e076c6748ac" + }, + { + "alg": "SHA-256", + "content": "746d24a9de22039ff611073985ff3aac785fdfad0c0406652c8370ce1fcc2d67" + } + ] + }, + { + "bom-ref": "7a54d5b0a3b67385", + "type": "file", + "name": "/var/lib/dpkg/info/passwd.conffiles", + "hashes": [ + { + "alg": "SHA-1", + "content": "ff8121167feb3339ae588cc76b1c2e90d1e54dfb" + }, + { + "alg": "SHA-256", + "content": "05cfff1ddfa6cf7fc524250fe96fba6e443e070b15a4014b74c7a4a5d07a12a2" + } + ] + }, + { + "bom-ref": "32662429165fcefa", + "type": "file", + "name": "/var/lib/dpkg/info/passwd.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "7eacfdf59432c88ca0e997249111e5cad00595e3" + }, + { + "alg": "SHA-256", + "content": "3054328771c1a422e3af1132091b55842b27ef0c50de8d95faad643a4a12e895" + } + ] + }, + { + "bom-ref": "3c7dcb1409f79b36", + "type": "file", + "name": "/var/lib/dpkg/info/passwd.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "3fc75750cb8afde6f7d40375af60a5e6dc5b8bc1" + }, + { + "alg": "SHA-256", + "content": "25d4cd43e8bd011dfc1e282067ea93a795a15b8bc3307dc957c16b7caf85716f" + } + ] + }, + { + "bom-ref": "7a4d37c54232d28c", + "type": "file", + "name": "/var/lib/dpkg/info/passwd.postinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "66a8a17c4fd7d8f295b663c25c2f9d8ac6013f38" + }, + { + "alg": "SHA-256", + "content": "faa2672789a5cf0e080ba117439fe781518aa7e155f4fe325e97eabbb9fea879" + } + ] + }, + { + "bom-ref": "b99b6cd6f3efca34", + "type": "file", + "name": "/var/lib/dpkg/info/passwd.preinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "e64afaeb33ce984e91e683b20fbea7054be9109b" + }, + { + "alg": "SHA-256", + "content": "cf6e8844db16f76a96c215d16d674c35d3ff7128fef855c6c690f04f3aa38a64" + } + ] + }, + { + "bom-ref": "1aba9ff9338a247f", + "type": "file", + "name": "/var/lib/dpkg/info/perl-base.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "1d789c2387f844c9bcf31c238f9be765d26fb029" + }, + { + "alg": "SHA-256", + "content": "e3b2b1b9d77e363fba0de072687baeed94f95c44580768d96e3efce3d58432a3" + } + ] + }, + { + "bom-ref": "b0e583b70774d126", + "type": "file", + "name": "/var/lib/dpkg/info/perl-base.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "33393f408edb2f1526c7f5d1e8c6eb1b1bc890ca" + }, + { + "alg": "SHA-256", + "content": "cf9ba1eba5e6886c620fd962192226d6d4a4a897874c0c1c356374f322d671e2" + } + ] + }, + { + "bom-ref": "3a31601b54e5ab82", + "type": "file", + "name": "/var/lib/dpkg/info/sed.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "603146d518f7b644ccb5972114f541ba9b04174b" + }, + { + "alg": "SHA-256", + "content": "5ade75cbe445776676e0d7b189262df16f41b85cc3277075a969540b1d30d2f0" + } + ] + }, + { + "bom-ref": "8843f830c46fead3", + "type": "file", + "name": "/var/lib/dpkg/info/sed.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "7a6ec8abafea9dcf8ee46d2d4344de99b867805d" + }, + { + "alg": "SHA-256", + "content": "953f975da6623a7577db8e06c65894278102e98da11c750657a63babb1531d8e" + } + ] + }, + { + "bom-ref": "6a86bd6fae23e08e", + "type": "file", + "name": "/var/lib/dpkg/info/sysvinit-utils.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "f97b13f3626ec9269b72f115ef7f5b419e54a8c0" + }, + { + "alg": "SHA-256", + "content": "201c4dc0cc171838e01e801bfdf022ac760fef040ffe2a8997d66033430f41ca" + } + ] + }, + { + "bom-ref": "b75e6fe88c055c1d", + "type": "file", + "name": "/var/lib/dpkg/info/sysvinit-utils.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "6dbbec06e6922f796ebcce90a79b97d9045f612d" + }, + { + "alg": "SHA-256", + "content": "e37f9a8ba3490cb256acf1a9265f4d5d61dde96186f5579d990f8e60ca2f05b5" + } + ] + }, + { + "bom-ref": "25628b0204fc9884", + "type": "file", + "name": "/var/lib/dpkg/info/tar.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "7dd9dbb6ff1d4fcdd4979d53cde30b246546e794" + }, + { + "alg": "SHA-256", + "content": "ecfae764fe6afbd5dd3b13a64f55fc54b3e80b6957840237940201e2d362c986" + } + ] + }, + { + "bom-ref": "5fa85ac29c269961", + "type": "file", + "name": "/var/lib/dpkg/info/tar.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "d7e1055247d4f26534981258cd044f2cec6657ae" + }, + { + "alg": "SHA-256", + "content": "da1738db2ea4e1bb022681b88eef37d204df0d53fc17f36a417c9275891390f0" + } + ] + }, + { + "bom-ref": "e65a8f4f7f09e858", + "type": "file", + "name": "/var/lib/dpkg/info/tar.postinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "541bdf68ab980e044aa4bfa7c2b3f601958e4988" + }, + { + "alg": "SHA-256", + "content": "4eed7466e8f44c6b480002d80becc0d998c462b759c0118e285170a93f4b3dca" + } + ] + }, + { + "bom-ref": "24b10b5c6ed863fe", + "type": "file", + "name": "/var/lib/dpkg/info/tar.prerm", + "hashes": [ + { + "alg": "SHA-1", + "content": "39cbb5ac7a222a8e9588d131a3ea3c95e830b70d" + }, + { + "alg": "SHA-256", + "content": "de3fa1115a52ea8e0017f65b767176146e35585e050581adcef95aab495d648c" + } + ] + }, + { + "bom-ref": "363f6e7ca539a0ae", + "type": "file", + "name": "/var/lib/dpkg/info/tzdata.config", + "hashes": [ + { + "alg": "SHA-1", + "content": "c83089308f7ad6ccb09713789061ae8dcfe4da0b" + }, + { + "alg": "SHA-256", + "content": "06b375f4c33ed60b3a5c0509e77d6e1268afcdafee18f7a93ac7cb60ffe1fd67" + } + ] + }, + { + "bom-ref": "08793c6752dc767b", + "type": "file", + "name": "/var/lib/dpkg/info/tzdata.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "08a17ca31ff9640aa58f88cf59281a7bc8ee004b" + }, + { + "alg": "SHA-256", + "content": "f37085e96efe0799f5cd163c0f18ede09fdb4c4e715b5aca8afd4ecac64d3878" + } + ] + }, + { + "bom-ref": "9d7c63a63220ed3d", + "type": "file", + "name": "/var/lib/dpkg/info/tzdata.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "f123ee7c69c280f00c69f36431595306e3fc7981" + }, + { + "alg": "SHA-256", + "content": "84e6a26edb9f10a75d0303e3b0286543baee762b83e5a32cfd4180b77cd851dc" + } + ] + }, + { + "bom-ref": "82e67d632529b85e", + "type": "file", + "name": "/var/lib/dpkg/info/tzdata.postinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "7430fca277bbc136ad4200bc4c8b15bba33770c1" + }, + { + "alg": "SHA-256", + "content": "d0b65a6ef298850b186a12b84cdeff63f79b272a259b2f4495aca6f3e14eed86" + } + ] + }, + { + "bom-ref": "0cb0f93abbaa7570", + "type": "file", + "name": "/var/lib/dpkg/info/tzdata.postrm", + "hashes": [ + { + "alg": "SHA-1", + "content": "e81b69d0fe68e81e8a78f95aea0473cc755211b4" + }, + { + "alg": "SHA-256", + "content": "3ae0a53f093dab27fbeaec8f240ed162be743ae77edb9a82cadffad13664208b" + } + ] + }, + { + "bom-ref": "58b9fe696275b747", + "type": "file", + "name": "/var/lib/dpkg/info/tzdata.templates", + "hashes": [ + { + "alg": "SHA-1", + "content": "e1c0461e32b038989d1102d21805c0d84567e25f" + }, + { + "alg": "SHA-256", + "content": "6ffd96b4ce49812f45e8a3aa678dbcab760c8eeaa3b56c87501ea852a4c3fc27" + } + ] + }, + { + "bom-ref": "91f802e9b83c9cef", + "type": "file", + "name": "/var/lib/dpkg/info/util-linux.conffiles", + "hashes": [ + { + "alg": "SHA-1", + "content": "9c65154ec7e789334354b849b7bc4ca813201ec4" + }, + { + "alg": "SHA-256", + "content": "6f508a501d0a0367d792e191ea32aea0aea84032a22c3899e46ba6cbb2782d97" + } + ] + }, + { + "bom-ref": "205da275beae3680", + "type": "file", + "name": "/var/lib/dpkg/info/util-linux.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "8e39b85554586e3c0f1ea2c7cf6bd8afb513e104" + }, + { + "alg": "SHA-256", + "content": "bda6d146c88255cbc744e5a6e3511ffcae641adae77c0fa9caee72b568dc4a5a" + } + ] + }, + { + "bom-ref": "19095eefa5cd7633", + "type": "file", + "name": "/var/lib/dpkg/info/util-linux.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "c0f5ecc89a1a0b4b2015ca409750c6488b537a23" + }, + { + "alg": "SHA-256", + "content": "157007410d05b53ece689f9e2a92c6c38783a01463ebc7128aceff9c75f425f1" + } + ] + }, + { + "bom-ref": "04a7916feb1e1e65", + "type": "file", + "name": "/var/lib/dpkg/info/util-linux.postinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "fe4d64dc2e2e593019f003e46ce413326d191364" + }, + { + "alg": "SHA-256", + "content": "ddd86327b0e0c543782a86860c4bb501ba41755251ff7985f769cfbbe658b87a" + } + ] + }, + { + "bom-ref": "735d07bdad788459", + "type": "file", + "name": "/var/lib/dpkg/info/util-linux.postrm", + "hashes": [ + { + "alg": "SHA-1", + "content": "9662e4420ec5015395f8321367ef020b02260f71" + }, + { + "alg": "SHA-256", + "content": "1d1f844c29b80517559e40728df5fbfde817ce10e50c16aa3ad1cd37325758a3" + } + ] + }, + { + "bom-ref": "0985d5c3ae25155c", + "type": "file", + "name": "/var/lib/dpkg/info/util-linux.prerm", + "hashes": [ + { + "alg": "SHA-1", + "content": "23196a533c3a84f5c75f392227f983dd2b8d67c4" + }, + { + "alg": "SHA-256", + "content": "860fa296fe027f8a893d2ede4ce9c13e12a8e1c325be18b7ab263fa534695a93" + } + ] + }, + { + "bom-ref": "58a5615762253691", + "type": "file", + "name": "/var/lib/dpkg/info/zlib1g:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "b125e5816025dd34eb940bb17f8de01e635b2e0f" + }, + { + "alg": "SHA-256", + "content": "e0f4d7c724dce1c126f260e25994702341f82fd6e6d807462da322f9b4816276" + } + ] + }, + { + "bom-ref": "56b21cc13f8986af", + "type": "file", + "name": "/var/lib/dpkg/status", + "hashes": [ + { + "alg": "SHA-1", + "content": "1f1c9f6246dbf3515ef6a1e6886b0309b165dfd7" + }, + { + "alg": "SHA-256", + "content": "894c1759789f1518a9e71b2ab3059dc8b07eb45c9f86813fde9d93d212e4020a" + } + ] + }, + { + "bom-ref": "1fcbd10101736763", + "type": "file", + "name": "/etc/ldap/ldap.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "92ae12598635df4f396da493f702ed59e77a33a3" + }, + { + "alg": "SHA-256", + "content": "3529bc485d817f9adc9e19f6931748184af43cd4c400918f5051af27fd80e8ff" + } + ] + }, + { + "bom-ref": "ad2e051d965db7fd", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libexpat.so.1.6.8", + "hashes": [ + { + "alg": "SHA-1", + "content": "38b76669ec0ae6d1ab27d6e97ec0b586d5e92d22" + }, + { + "alg": "SHA-256", + "content": "9081d3d3683c3353eedbcfea4dc95027e2d0d899d63c5ff193bd9eebf3148b73" + } + ] + }, + { + "bom-ref": "5822570909c51ff0", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/apr-util-1/apr_crypto_openssl-1.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "093ebe7c3650b51c613ac8b7b2c8e0e66e1ece77" + }, + { + "alg": "SHA-256", + "content": "12d1ce889d9c4dc495373e803564d76d67e6129e1fb941df5c5c8a0b777d7e77" + } + ] + }, + { + "bom-ref": "9ed0b80b6c827155", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/apr-util-1/apr_dbm_db-1.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "624c2514db3803348aff4a6fb817cbba6575e7a1" + }, + { + "alg": "SHA-256", + "content": "24c8669238514ddfc6c28d4d9ed1baebdc8c291e17c7ec34470994fcd641ec56" + } + ] + }, + { + "bom-ref": "621b304bf12e8ef5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/apr-util-1/apr_dbm_gdbm-1.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "fd48cee77ff1c0deff91d0e77e1c0a33bd33f3ed" + }, + { + "alg": "SHA-256", + "content": "d7d5867706c45fb0c1bddf3a1dcabae2109be64e8e5af9f7b55009f2710710d6" + } + ] + }, + { + "bom-ref": "01df3ea215b63532", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/apr-util-1/apr_ldap-1.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "dc4fc91b874879fd20fdb2fc3877ea758de5495f" + }, + { + "alg": "SHA-256", + "content": "ef21c4a5511a6b81410224fc04d9ae44ef544dc8ebc942d84a1ded3210840643" + } + ] + }, + { + "bom-ref": "20b69e4ac0ca3dc9", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/engines-1.1/afalg.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "272333cab44f9ce44c94afb940ae369cfacc04ed" + }, + { + "alg": "SHA-256", + "content": "2c0a8d148cc1f41f2c7853e4825198345a67e45a6c2854741e99e1d715c33855" + } + ] + }, + { + "bom-ref": "18c69fa6cafe2dc3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/engines-1.1/capi.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "6fa345aa6881c2e65b6c095ca2ff0b7b0f8795c8" + }, + { + "alg": "SHA-256", + "content": "5dab1a2291dbaca88daddc55b4e534a12b6cd222309a02baef9050ac51068c06" + } + ] + }, + { + "bom-ref": "cc3219e676718e20", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/engines-1.1/padlock.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "976546f2d059e66a038fa5f39c6b1bdee6e5b4b1" + }, + { + "alg": "SHA-256", + "content": "8d518c95a48074bc3978da0f35a784dcd0f3a6261069149d13e4bfa177ffd10e" + } + ] + }, + { + "bom-ref": "383a28e0f11e5a21", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libapr-1.so.0.6.5", + "hashes": [ + { + "alg": "SHA-1", + "content": "14a5db8897d76f899d0b879aae90e26e3a359eac" + }, + { + "alg": "SHA-256", + "content": "3fc78fcb61dc9550e6d2a03b4f8ba956f08c80add0a0147ca91f70d525f50ca1" + } + ] + }, + { + "bom-ref": "732a07af8672d9ae", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libaprutil-1.so.0.6.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "ae875733a5bfdd2fe5acec62d8b9f49557aefa6f" + }, + { + "alg": "SHA-256", + "content": "a367a71e528bb19b32e75ac62320a22baef843b40ef7e907d40de640500a38c0" + } + ] + }, + { + "bom-ref": "f0bc3c6177d7e3e2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libcrypto.so.1.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "c3fec899895db9e76722ed164e7e2202b3e8ded9" + }, + { + "alg": "SHA-256", + "content": "ea84125ef747ef0b62ca98fbf6f58685edcce3ba0dc2c659ff4256b4191b36b6" + } + ] + }, + { + "bom-ref": "edb214f49b00e40e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libexpatw.so.1.6.8", + "hashes": [ + { + "alg": "SHA-1", + "content": "254e99e4d42986e0008649d4aa957068bd0d6d01" + }, + { + "alg": "SHA-256", + "content": "88eec91d28c7073152341d3040ee08dd4e9364b6c6443187aa87386d3b53439e" + } + ] + }, + { + "bom-ref": "beec57e1bb9ddbfe", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libgdbm.so.6.0.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "edc76eb4a58ddea29e2a54a034ab46917a1e7024" + }, + { + "alg": "SHA-256", + "content": "ba313cd4047c1f8490d02f10c89ec32be9a50282b546de91ee37065da8a41735" + } + ] + }, + { + "bom-ref": "64c5b967e19a4f89", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/liblber-2.4.so.2.10.10", + "hashes": [ + { + "alg": "SHA-1", + "content": "881d231ef2b16ad1647f1238be60bede3259f92c" + }, + { + "alg": "SHA-256", + "content": "88c5e8924f8f6ada73385cd7d3175e8303960f566dbf34c4f80333243b0ecc45" + } + ] + }, + { + "bom-ref": "b061bcd45853dbd8", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libldap_r-2.4.so.2.10.10", + "hashes": [ + { + "alg": "SHA-1", + "content": "0333c37a7a93269481ea91f44c2da2cc628e0e8c" + }, + { + "alg": "SHA-256", + "content": "e00b6d3845c777d5a834c8164afceb853105c473eed1f4f28a7867cefe9bf856" + } + ] + }, + { + "bom-ref": "6d9b5ac86aa7158b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libsasl2.so.2.0.25", + "hashes": [ + { + "alg": "SHA-1", + "content": "b8094fa35d4a1eace6783a8532dda3fe3e22384b" + }, + { + "alg": "SHA-256", + "content": "aeb9831250b4c68732b05da7f96565f6679c6b9e4b89b4d452b5152a43fa2968" + } + ] + }, + { + "bom-ref": "214ed8882465b3d2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libssl.so.1.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "b6181a2e5566d5abe79f0351c1124724f4b68e38" + }, + { + "alg": "SHA-256", + "content": "3a98c2d9e91c278d4a0332d42616f7bfded96bb1f1a63f640c1e521ba6260706" + } + ] + }, + { + "bom-ref": "885443b8dacce042", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/sasl2/libsasldb.so.2.0.25", + "hashes": [ + { + "alg": "SHA-1", + "content": "6f43e841d05452fe3258efd51354639159c8814e" + }, + { + "alg": "SHA-256", + "content": "5152f5f81f758cc262f0679e26e4148db9c597a96d6c8bf39f362349fabf2bae" + } + ] + }, + { + "bom-ref": "cd633bcdb96a503f", + "type": "file", + "name": "/usr/share/doc/libapr1/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "9b57102069769cce1e86ab67d9193a71744b2630" + }, + { + "alg": "SHA-256", + "content": "05b1acb983fa0c8580a6b981e37c5a05e370029f4bfea2618ad0e418d646f578" + } + ] + }, + { + "bom-ref": "5a4a597c014486f6", + "type": "file", + "name": "/usr/share/doc/libaprutil1-ldap/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "86db7e5338da0094c88357442f799ccb27f8f870" + }, + { + "alg": "SHA-256", + "content": "c7506f37d68ef98f7808cdb09074d77433b734e51a7c82d60daff0b869cd83ef" + } + ] + }, + { + "bom-ref": "53d11f6dcb956408", + "type": "file", + "name": "/usr/share/doc/libaprutil1/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "86db7e5338da0094c88357442f799ccb27f8f870" + }, + { + "alg": "SHA-256", + "content": "c7506f37d68ef98f7808cdb09074d77433b734e51a7c82d60daff0b869cd83ef" + } + ] + }, + { + "bom-ref": "edc067efdb701414", + "type": "file", + "name": "/usr/share/doc/libexpat1/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "4028dc6cdde996dac11faaabe969173bbba4270f" + }, + { + "alg": "SHA-256", + "content": "15721756f0bdfd8fb83d3ae9fd9f76ceb3285b0ecacb0532a547e9e2f324c35c" + } + ] + }, + { + "bom-ref": "0ef59709499051ed", + "type": "file", + "name": "/usr/share/doc/libgdbm6/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "aa9c60252252e016b7d46524ba66f121561c4cc0" + }, + { + "alg": "SHA-256", + "content": "6a23a03e40c38dd0aa28885635bc1cbd989b596aafaecbaa0bf1d888535a672e" + } + ] + }, + { + "bom-ref": "486f918ade41204c", + "type": "file", + "name": "/usr/share/doc/libldap-2.4-2/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "dafbd159d68c2112925600499ef053994190dec0" + }, + { + "alg": "SHA-256", + "content": "0690f1ee382f98e95b446743db55395641d5e258de65939e9cb1c660d67a43a8" + } + ] + }, + { + "bom-ref": "b4fd9e37ff16d43b", + "type": "file", + "name": "/usr/share/doc/libldap-common/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "dafbd159d68c2112925600499ef053994190dec0" + }, + { + "alg": "SHA-256", + "content": "0690f1ee382f98e95b446743db55395641d5e258de65939e9cb1c660d67a43a8" + } + ] + }, + { + "bom-ref": "44c66a07639683e0", + "type": "file", + "name": "/usr/share/doc/libsasl2-2/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "c6bd709cbb5bbc8aeda80c91f4bd486b3bb63247" + }, + { + "alg": "SHA-256", + "content": "cc230c5b0ea3cecd0bd9aa6ebb778c3b1ddb3c478d94ccf6cbdf77c8ca99bc77" + } + ] + }, + { + "bom-ref": "42f4da5146b78205", + "type": "file", + "name": "/usr/share/doc/libsasl2-modules-db/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "c6bd709cbb5bbc8aeda80c91f4bd486b3bb63247" + }, + { + "alg": "SHA-256", + "content": "cc230c5b0ea3cecd0bd9aa6ebb778c3b1ddb3c478d94ccf6cbdf77c8ca99bc77" + } + ] + }, + { + "bom-ref": "eac807882c85d049", + "type": "file", + "name": "/usr/share/doc/libssl1.1/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "d2d7b4d2d035a7732fcded56e31300b65d471545" + }, + { + "alg": "SHA-256", + "content": "bd7fb9ce3586c01003ff505d69fade885b68b0f8a1cdd7ce43630f8ed3dc119a" + } + ] + }, + { + "bom-ref": "bc9cb707ab2712ef", + "type": "file", + "name": "/var/lib/dpkg/info/libapr1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "5ec1c6f54659bdf333fa4bfecac14a01f527c0c1" + }, + { + "alg": "SHA-256", + "content": "1359837201f1cab499614885795de74f95fd483f343248111626dca5ac2deec4" + } + ] + }, + { + "bom-ref": "87c302c73ba6a500", + "type": "file", + "name": "/var/lib/dpkg/info/libaprutil1-ldap:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "a0d3d500d06484d7eba160dbe3107213c0173583" + }, + { + "alg": "SHA-256", + "content": "de473ff9392e640dd04ad61c690de39d00df14319a738f38601d51db21b54a6c" + } + ] + }, + { + "bom-ref": "4acda2192f0b4200", + "type": "file", + "name": "/var/lib/dpkg/info/libaprutil1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "795bda739ab9b45418a1c2c9bbcc21390ad53aad" + }, + { + "alg": "SHA-256", + "content": "0509e2f75ea7f826d2564d0adade7814e322dacfe8dfac9bc57da8cd17edcb87" + } + ] + }, + { + "bom-ref": "4c66036f8442d7c8", + "type": "file", + "name": "/var/lib/dpkg/info/libexpat1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "fe91d4d66d19b718cc618517b9659d443a65dcdd" + }, + { + "alg": "SHA-256", + "content": "406ca9c7de9f01ef697d6522b7d91bc5ffeeb5dbedce938128d2f7e6e36112dd" + } + ] + }, + { + "bom-ref": "9100fe03b4344573", + "type": "file", + "name": "/var/lib/dpkg/info/libgdbm6:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "e7f7389fdc35da771a25e5e54460bd8701b011bf" + }, + { + "alg": "SHA-256", + "content": "52d1368b428bdf56ca56893912adc6dbd7cd68f0cb43a19ae2f0b5b6b430d881" + } + ] + }, + { + "bom-ref": "00e7a4978c83b1ca", + "type": "file", + "name": "/var/lib/dpkg/info/libldap-2.4-2:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "a0b94f59de6cbdc3339d12fcd963898e2dacad47" + }, + { + "alg": "SHA-256", + "content": "66ab0772da300b4e2658f7592417c7b8985f39939ce911f5c88dbd99583eb7cd" + } + ] + }, + { + "bom-ref": "b9fe7b71d3c56c40", + "type": "file", + "name": "/var/lib/dpkg/info/libldap-common.conffiles", + "hashes": [ + { + "alg": "SHA-1", + "content": "ddf48ce4269e89e1270cc61d06b73418cf31f9b2" + }, + { + "alg": "SHA-256", + "content": "12d338700c4401fd8aab581208555e662fc5e1b4081d7bcface40c3ad6c83070" + } + ] + }, + { + "bom-ref": "0af359526e4926b0", + "type": "file", + "name": "/var/lib/dpkg/info/libldap-common.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "4f39010b976a1fb3a430aebdb321b2b5968d7955" + }, + { + "alg": "SHA-256", + "content": "ccaf68d0b37d4ed64fdd0fc83cbea7f9c2566d02080a8762f8b49d2421f991a6" + } + ] + }, + { + "bom-ref": "ab848071ad3b3303", + "type": "file", + "name": "/var/lib/dpkg/info/libldap-common.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "688f845a40dba66fb3f1617a87c4e7c2061ab546" + }, + { + "alg": "SHA-256", + "content": "d0668c653ff46cc51ab79d7ee5444fa38902fba2943df441542a26be431e8ced" + } + ] + }, + { + "bom-ref": "b84c7651833ba2c2", + "type": "file", + "name": "/var/lib/dpkg/info/libsasl2-2:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "af426198675ad5a628fbfac12de8a6f3f3a13983" + }, + { + "alg": "SHA-256", + "content": "2204f527b5fbbaf93fa57d3fdeb3edf9640a1119f1d7ef22fbdf60cc8bbcefce" + } + ] + }, + { + "bom-ref": "659f70ca786127e4", + "type": "file", + "name": "/var/lib/dpkg/info/libsasl2-modules-db:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "47b2bb3aa1d70f61616031243e7c7e8b0e76de93" + }, + { + "alg": "SHA-256", + "content": "07a62ac9d43ab4fa1c1aeff0df9a941fe21936ee5347e968ebbfd15bfc91c818" + } + ] + }, + { + "bom-ref": "16ab5ad2d5953299", + "type": "file", + "name": "/var/lib/dpkg/info/libssl1.1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "2af8adca063f3f710ceb331a8975905c02ba4685" + }, + { + "alg": "SHA-256", + "content": "39cc1817f5c9394fff01544451dd6d665f92eed200ac4fd0283c7528616dad83" + } + ] + }, + { + "bom-ref": "401bec50a8eff0cb", + "type": "file", + "name": "/var/lib/dpkg/status", + "hashes": [ + { + "alg": "SHA-1", + "content": "46436289d32a9cd241320aaa851daf6714def3d3" + }, + { + "alg": "SHA-256", + "content": "9af5f13f24c0f99f9c2e2742014c54cb8acbe6ae47b5244c0de31f0bfc8a68e2" + } + ] + }, + { + "bom-ref": "de09781e0e3c422f", + "type": "file", + "name": "/lib/lsb/init-functions", + "hashes": [ + { + "alg": "SHA-1", + "content": "f42e62f9dea1d881a5eef072d8d0b5beb8c5c47d" + }, + { + "alg": "SHA-256", + "content": "3e0428b8665bb91a9783386ceef42f7e67e330f9db25a107c7131239c7e07405" + } + ] + }, + { + "bom-ref": "8bfa427bdefe9d11", + "type": "file", + "name": "/lib/lsb/init-functions.d/20-left-info-blocks", + "hashes": [ + { + "alg": "SHA-1", + "content": "1cba9ab03a0e2f597752891c67bcb55e1f700ee8" + }, + { + "alg": "SHA-256", + "content": "10997f92734d15a0a49c153f47cbd11553a2f3d8132f7191e6676a69444f8810" + } + ] + }, + { + "bom-ref": "58c7ef44b2310c77", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libkeyutils.so.1.8", + "hashes": [ + { + "alg": "SHA-1", + "content": "2825a952da3582dd0051ff98afbc6ada352d48b1" + }, + { + "alg": "SHA-256", + "content": "2d85f26959a61560d48223b45262b4223f97c3b5a56c75a4dcda8bed9907a939" + } + ] + }, + { + "bom-ref": "a9192c2e4ae09fbd", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/krb5/plugins/preauth/spake.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "6676323069a09111b9518d0682377a9bbef16946" + }, + { + "alg": "SHA-256", + "content": "d6d19e7ed35a13a5729d39f619f62357f3f63331a5961b1d339dad3547821e55" + } + ] + }, + { + "bom-ref": "b5ed2d667d16b942", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libbrotlicommon.so.1.0.7", + "hashes": [ + { + "alg": "SHA-1", + "content": "a258d9f8189bffd36fac36c1a139c4a90f4320ed" + }, + { + "alg": "SHA-256", + "content": "e46ad24bcb36b744df33156eb08bcadd8d14f2699adf4fe0d16848e40578c397" + } + ] + }, + { + "bom-ref": "10138d54ad42457f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libbrotlidec.so.1.0.7", + "hashes": [ + { + "alg": "SHA-1", + "content": "526c1cc1d27c60bdfab113bf769ec6a00f591296" + }, + { + "alg": "SHA-256", + "content": "ebdba87c3c2ab60695851d8758d52d325b9fee20784113f34f766e1cb9dd3876" + } + ] + }, + { + "bom-ref": "0cb6dc0d19bf6e6f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libbrotlienc.so.1.0.7", + "hashes": [ + { + "alg": "SHA-1", + "content": "942f4b154cf4834987ca563040516d073c6ca729" + }, + { + "alg": "SHA-256", + "content": "8d176b6c6817084088f27f3df8910e8ac6eb4fe33dd094f5bb2547b6a0a18f1f" + } + ] + }, + { + "bom-ref": "6466f483f37264dc", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libcurl.so.4.5.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "2d4c5f353cd38f15fc7e8268b4c068350d327b75" + }, + { + "alg": "SHA-256", + "content": "c65ea15000c6d180d350c0eb0f96ef60ae97700608a04a840a0188737486c600" + } + ] + }, + { + "bom-ref": "a0bddae0af74215c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libgssapi_krb5.so.2.2", + "hashes": [ + { + "alg": "SHA-1", + "content": "1518899546cd82532373b4c52924ba07d915f959" + }, + { + "alg": "SHA-256", + "content": "9b85bf8b2aff3c56dc3295ca0cff338dac64b23de16fbe8c39c5fc6b0134667e" + } + ] + }, + { + "bom-ref": "f9c36f410f701aed", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libicudata.so.63.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "4cf272e8d734928a46d18dd12775f6f8d198b453" + }, + { + "alg": "SHA-256", + "content": "11c540493e354f3fb907544ba908f1fe8eb1404d590b56fc518a67391f441ab5" + } + ] + }, + { + "bom-ref": "f1be8b9f171fe3a2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libicui18n.so.63.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "0bd885871f0809754c753deb01d60e6000c779df" + }, + { + "alg": "SHA-256", + "content": "e809f84da8f78aeccc4a8d3a6440a50efe1df698eb0b274bb8416e361a27f947" + } + ] + }, + { + "bom-ref": "114e71b376bb0f76", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libicuio.so.63.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "f1cad2aba748643f9cece0f85f384ba5bc176b74" + }, + { + "alg": "SHA-256", + "content": "c74b03373ae2f59e9cf051469f8e51756bbc409f20e7c5ab1e1f85dfdbcec026" + } + ] + }, + { + "bom-ref": "3289e09458049b5c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libicutest.so.63.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "5ae686f867222467d1894ce669cb21bac2cfee7b" + }, + { + "alg": "SHA-256", + "content": "67643d8c2790d12a40cebc47174c5ea683215addc3b15b8b9fccbd1f63c939b9" + } + ] + }, + { + "bom-ref": "29898104ae98142f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libicutu.so.63.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "f762ff70f67b21bbde73172ccb27e7a676399a7f" + }, + { + "alg": "SHA-256", + "content": "1e464630c6a226d6b7340d1ebe3e73fcc03dc93eb7eed8a760173f3750a44c0d" + } + ] + }, + { + "bom-ref": "ef8ea2af52acd09f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libicuuc.so.63.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "fa4e7f0bcacbcb3135accfbc28f914679e9d7ef4" + }, + { + "alg": "SHA-256", + "content": "23ff51d1000463bfaf3b1c88de7db8ffa9c0f8c515ad33ae1cd5b86006f811b3" + } + ] + }, + { + "bom-ref": "f5809f310a65928a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libjansson.so.4.11.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "62e595cc3705e2c07ecf47321e0548258286be6a" + }, + { + "alg": "SHA-256", + "content": "442607cc7f8ec0fa1758e01cf3956d2dda6489188137d46fff57ace8630fbf2e" + } + ] + }, + { + "bom-ref": "8162ebe9a2099bec", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libk5crypto.so.3.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "9f54bfbc21b2a1506441f5e908268e5ae2388f2b" + }, + { + "alg": "SHA-256", + "content": "900f743f1654b9b6846ca4151970c1bb1af4b3fa4e0e5f0d316a0e1b41f21246" + } + ] + }, + { + "bom-ref": "d4b3c5e7f54deb83", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libkrb5.so.3.3", + "hashes": [ + { + "alg": "SHA-1", + "content": "1d6d9a9cd236122ee30356ae6cb6e429ae8f30c7" + }, + { + "alg": "SHA-256", + "content": "85397eb4e2db0d31148f5309af15e45e1ccd7bc4f012e00c64abe9e2b4fc16e9" + } + ] + }, + { + "bom-ref": "577026066e03f044", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libkrb5support.so.0.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "cf0d6693737a367a6f364b2412f0b0c4d38f6224" + }, + { + "alg": "SHA-256", + "content": "89319234576a54add5aebc551be36b4a2fe9e4cf45d8fae16eedcadca71d12f4" + } + ] + }, + { + "bom-ref": "1bbd5256c1f16af7", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/liblua5.2-c++.so.0.0.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "a14efedd7cb068cec93dbd3e017c05222e5771d3" + }, + { + "alg": "SHA-256", + "content": "688de9363cda3dc3aa082a58924f88963496c5918687b25297478c33646025f6" + } + ] + }, + { + "bom-ref": "7c7ea86eecc7dbce", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/liblua5.2.so.0.0.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "415139afc11c07b32536f29bd3c57d3d21594aa3" + }, + { + "alg": "SHA-256", + "content": "0bfd16edaf60b645ad1e2c507a3693a86b616d6f772685f38d34c0034bd23341" + } + ] + }, + { + "bom-ref": "94189c5e007a0bfe", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libnghttp2.so.14.17.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "645121a33779832ef2c9470ede40c59ddc327755" + }, + { + "alg": "SHA-256", + "content": "bd3b72e3c600ef9339e204745d64c070a8900211d07b80b07a1ae4284aaebd64" + } + ] + }, + { + "bom-ref": "80bfb455c5669703", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libpsl.so.5.3.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "9619135bd625f97465e3de7bb9e2d8aaa91c156c" + }, + { + "alg": "SHA-256", + "content": "bc74e9c10f4312a004364c36ad47b11bd6a522a03347e598b8fdeed0866ba19a" + } + ] + }, + { + "bom-ref": "4a79ea4f0f6dc938", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/librtmp.so.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "7f3bd551ea62806993c38bfddca8badf5d894a84" + }, + { + "alg": "SHA-256", + "content": "f92e188958cc37c2b2fb1bfe9363f1abf65230f5852095ff231a3415d8525942" + } + ] + }, + { + "bom-ref": "b4c27e1ad18fe496", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libssh2.so.1.0.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "faefcf42c2d1b5dd0594fbf898486440af669441" + }, + { + "alg": "SHA-256", + "content": "a97e772b9e921abe6bf040be48e285c99f23faaa44e646a9c8b91a13d1916df1" + } + ] + }, + { + "bom-ref": "8c924a3cfe466fad", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libxml2.so.2.9.4", + "hashes": [ + { + "alg": "SHA-1", + "content": "97f3343ff8f3ec3a01616f4d43257fa95370a9ca" + }, + { + "alg": "SHA-256", + "content": "1b78f999164d63a169a0bb3d113c6edb634a0a45452afb889572415448f030a4" + } + ] + }, + { + "bom-ref": "41990392223251e0", + "type": "file", + "name": "/usr/local/apache2/bin/httpd", + "hashes": [ + { + "alg": "SHA-1", + "content": "90fb07bfb2c897468934825573fce4f0011722fe" + }, + { + "alg": "SHA-256", + "content": "3787557f9f5f87809f0a6b6b0465408243613d8be4c4e8a89e136065462db499" + } + ] + }, + { + "bom-ref": "cf6aecc8f767bce6", + "type": "file", + "name": "/usr/share/doc/libbrotli1/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "d64fdae5680a62415257f6166bdc7c54ecd548e6" + }, + { + "alg": "SHA-256", + "content": "24a64e5bb83d0960d1835696a1e23c0896ad6055b0ca47c66ab0eb9a766324b1" + } + ] + }, + { + "bom-ref": "5734c5d4e65e4cc0", + "type": "file", + "name": "/usr/share/doc/libcurl4/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "710cd58e6bb65108a2e43566d245c5cc6d9032ca" + }, + { + "alg": "SHA-256", + "content": "b0c93189c21018f86534687ca73937284eb7c2b3411c2ec9f1620c288637f9fc" + } + ] + }, + { + "bom-ref": "9bdce77612bd6a12", + "type": "file", + "name": "/usr/share/doc/libgssapi-krb5-2/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "c838b5e08a65d11bbaa642461b24ae6cfee75d7c" + }, + { + "alg": "SHA-256", + "content": "4a2d321ab57260e8de4b67bde8cff76c07d28be69c2d8b22dfc2bfa42f5c41b9" + } + ] + }, + { + "bom-ref": "02b4c876362cf699", + "type": "file", + "name": "/usr/share/doc/libicu63/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "678988eff4ed89ec1fe42da13470e8b6f69f00d0" + }, + { + "alg": "SHA-256", + "content": "0515ea67c829d73cf54d074ef7bd030968419f98a83e523d4300ea0f4d18ebc9" + } + ] + }, + { + "bom-ref": "005cc579c3cf3da5", + "type": "file", + "name": "/usr/share/doc/libjansson4/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "6439aa4657616ca84334c81fb424ff0b9ace4616" + }, + { + "alg": "SHA-256", + "content": "29347e2528ab31d20e8582b09aa89cd878d306c59a273541141c9aede1903cb8" + } + ] + }, + { + "bom-ref": "256d3c010d7cd228", + "type": "file", + "name": "/usr/share/doc/libk5crypto3/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "c838b5e08a65d11bbaa642461b24ae6cfee75d7c" + }, + { + "alg": "SHA-256", + "content": "4a2d321ab57260e8de4b67bde8cff76c07d28be69c2d8b22dfc2bfa42f5c41b9" + } + ] + }, + { + "bom-ref": "9aeccdd91b07c10a", + "type": "file", + "name": "/usr/share/doc/libkeyutils1/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "7985da4e0f2d93919d5dfacf449846cac43f73f8" + }, + { + "alg": "SHA-256", + "content": "6ab5c541723d8211cab7ebc1643d53aa51c4863c1c838e4625d797ece9472ee8" + } + ] + }, + { + "bom-ref": "57102a1ac6465d61", + "type": "file", + "name": "/usr/share/doc/libkrb5-3/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "c838b5e08a65d11bbaa642461b24ae6cfee75d7c" + }, + { + "alg": "SHA-256", + "content": "4a2d321ab57260e8de4b67bde8cff76c07d28be69c2d8b22dfc2bfa42f5c41b9" + } + ] + }, + { + "bom-ref": "51ec43fba24fd4d0", + "type": "file", + "name": "/usr/share/doc/libkrb5support0/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "c838b5e08a65d11bbaa642461b24ae6cfee75d7c" + }, + { + "alg": "SHA-256", + "content": "4a2d321ab57260e8de4b67bde8cff76c07d28be69c2d8b22dfc2bfa42f5c41b9" + } + ] + }, + { + "bom-ref": "6c8e7dab5063b9d8", + "type": "file", + "name": "/usr/share/doc/liblua5.2-0/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "5711106f9179944e26d8618485b673406a3060c9" + }, + { + "alg": "SHA-256", + "content": "1b5f84fd86e61825fc5191ff9773718198f3692a5f715a80507f60afb55ec1a1" + } + ] + }, + { + "bom-ref": "c58745e26fd827f4", + "type": "file", + "name": "/usr/share/doc/libnghttp2-14/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "c6c858643914d0536c6b3ddf60aed17fa2465375" + }, + { + "alg": "SHA-256", + "content": "aa58ecb6ad7418831046ef8a69d6c374ed93e2d04a2ba0477629160ef6a54ab7" + } + ] + }, + { + "bom-ref": "349959c81dee3b2c", + "type": "file", + "name": "/usr/share/doc/libpsl5/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "d7c1f1b749c13d3c00950fe9a28b8d84b12d1ff3" + }, + { + "alg": "SHA-256", + "content": "a530da63c89b707cb51a9c84667aecd0f2a138b0503734cbc8e73ea7cc6fbae0" + } + ] + }, + { + "bom-ref": "3f901320bd91505c", + "type": "file", + "name": "/usr/share/doc/librtmp1/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "315c5e0b4c3defb00ea7d92238c09d4408116172" + }, + { + "alg": "SHA-256", + "content": "4302abcc1ea1b6cbe8d19c79b892acf78878030220210707c19006828866207c" + } + ] + }, + { + "bom-ref": "b421d2aa92c4c939", + "type": "file", + "name": "/usr/share/doc/libssh2-1/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "e050ba1262069cafb5ddc2cc126b288b88ad7b6f" + }, + { + "alg": "SHA-256", + "content": "be3f042c665403ab951d2c21050eb83e8221cbf4b5e86876282abb2b48f7168d" + } + ] + }, + { + "bom-ref": "03e7dd6f721e4f85", + "type": "file", + "name": "/usr/share/doc/libxml2/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "992c59e58e2e03cb652177ac2a86b436bbb087bc" + }, + { + "alg": "SHA-256", + "content": "41eb8dfa594b3fb799a066293ed91434765b23b6d493da1778e7c6b04d5059e0" + } + ] + }, + { + "bom-ref": "b1dcaaa50758fb33", + "type": "file", + "name": "/usr/share/doc/lsb-base/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "60d58837f87b10f27167c3ab21d3f61c91645c69" + }, + { + "alg": "SHA-256", + "content": "5838867827e001081f2a1884f55614df9fbb303bb03de6087220ac0b6f8ea44b" + } + ] + }, + { + "bom-ref": "9d9b51ab3104b55b", + "type": "file", + "name": "/var/lib/dpkg/info/libbrotli1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "239042095d29ac9c0d965bd73f54f98d0df3aca2" + }, + { + "alg": "SHA-256", + "content": "bc86cc618a2fdddcea5cf4a521e3ebd553c306b8883e665de08541d986556bc7" + } + ] + }, + { + "bom-ref": "ef6351db0f78c14f", + "type": "file", + "name": "/var/lib/dpkg/info/libcurl4:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "64f21dc3905b17ab9919b47e31e624afd357da24" + }, + { + "alg": "SHA-256", + "content": "c4a983e95964894e9d02256252312ff2767339f84acbc71e36c9a0f48db6898e" + } + ] + }, + { + "bom-ref": "5d572fe9038e1321", + "type": "file", + "name": "/var/lib/dpkg/info/libgssapi-krb5-2:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "d26a9e7d6a360bb5048e846676d13c973607a7f3" + }, + { + "alg": "SHA-256", + "content": "f85d02725a158ae68757801c2d31af194f0b3f88c77d38fdc251f6f1b5c5019f" + } + ] + }, + { + "bom-ref": "1ab3f29d2c92e860", + "type": "file", + "name": "/var/lib/dpkg/info/libicu63:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "faa98a39da51fdf6bc8fa51b4702e1d38d56a561" + }, + { + "alg": "SHA-256", + "content": "a7c80f4131540409bee056dd41a7af22cf9408ed81ea869dcdd59a149a6cbb15" + } + ] + }, + { + "bom-ref": "97964f42a9ae7bb6", + "type": "file", + "name": "/var/lib/dpkg/info/libjansson4:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "92bc8bf102a272b139b06820ec773a1cfcab9c5f" + }, + { + "alg": "SHA-256", + "content": "bc13e30762074c44300eead1378ccfdee95cec1feeca82de653eb6f50732b777" + } + ] + }, + { + "bom-ref": "96165f0f02edfd1e", + "type": "file", + "name": "/var/lib/dpkg/info/libk5crypto3:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "43edc32f38015f9619820d2521a87e55bbde2f6f" + }, + { + "alg": "SHA-256", + "content": "fc6cc2fae3c9e6afd3f372f9736a0893e34c7f736863d7407f3a03ea6f9f0590" + } + ] + }, + { + "bom-ref": "05452ba64542f708", + "type": "file", + "name": "/var/lib/dpkg/info/libkeyutils1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "cef0f3d9f07c1fdafe509ffab1c6c2525f3f99f8" + }, + { + "alg": "SHA-256", + "content": "4da269198daf4bbab7188d60e2477cb4c51e8b33582837da1b646e67a68b587c" + } + ] + }, + { + "bom-ref": "6ea60d20d3bf2903", + "type": "file", + "name": "/var/lib/dpkg/info/libkrb5-3:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "04b6ad1fbe4436b0f9118b7c480856e34beab31b" + }, + { + "alg": "SHA-256", + "content": "68fbcb72c4146c1cefa20a14335f34535c9286aa2deda20f00c22438ebb9ab25" + } + ] + }, + { + "bom-ref": "44c32103e77d8547", + "type": "file", + "name": "/var/lib/dpkg/info/libkrb5support0:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "aa13f21f9d5699c04557d470176a2cbe4086ead2" + }, + { + "alg": "SHA-256", + "content": "29198232b53a000331dfa54da32d68f211c513a1b697eff2eba3a7db2d15c0d5" + } + ] + }, + { + "bom-ref": "53970c79cd445331", + "type": "file", + "name": "/var/lib/dpkg/info/liblua5.2-0:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "d32fe09eb039e13df99107ef5f84a2095686cc9e" + }, + { + "alg": "SHA-256", + "content": "781119b7fb934b9d2a777cb4c9cd676832df04555f34f04a4ad53c74b857f3bc" + } + ] + }, + { + "bom-ref": "c5b9f6a8be404b90", + "type": "file", + "name": "/var/lib/dpkg/info/libnghttp2-14:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "202e9d71ca21cda4b61e4493496eb75e75c9d559" + }, + { + "alg": "SHA-256", + "content": "3d6a7f67bfb8e726519234932825caf02f5a4c9291847d6ff064fad708e6f730" + } + ] + }, + { + "bom-ref": "71cb870776e1e4b7", + "type": "file", + "name": "/var/lib/dpkg/info/libpsl5:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "2da135b55461202ee6fdba9aea8bc6ddcc5c998a" + }, + { + "alg": "SHA-256", + "content": "b0773060c37966a937e18b8ee5996444f8922e063d34d61bcd0489c5c112e75b" + } + ] + }, + { + "bom-ref": "1031b420bd481b0a", + "type": "file", + "name": "/var/lib/dpkg/info/librtmp1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "6d243906048914521b1f1b78004a5c977061b5c1" + }, + { + "alg": "SHA-256", + "content": "a1e1be924ae6ad5c42be3ffa92344026f0e1df851563942bcebf25f4a032ba87" + } + ] + }, + { + "bom-ref": "47ec90a6aed66dc9", + "type": "file", + "name": "/var/lib/dpkg/info/libssh2-1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "b139c7158d587ae6b1f2d025f601ee9616dda723" + }, + { + "alg": "SHA-256", + "content": "9dd2295c5404e10d2d0558db92b653abf5a6ccd1ff7783580de79bc080986093" + } + ] + }, + { + "bom-ref": "1f5c9034699c3fbe", + "type": "file", + "name": "/var/lib/dpkg/info/libxml2:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "ec8aa0a5107b1e9fbee269e9f7e9db50a0f4ae53" + }, + { + "alg": "SHA-256", + "content": "85b75734124afd72185fb683bf1568793d8cf3e1185f566a88509b633766b046" + } + ] + }, + { + "bom-ref": "66e77e4acbad1a53", + "type": "file", + "name": "/var/lib/dpkg/info/lsb-base.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "3e9ae854477f55c3b8e959b1c774a13d2a55d8c8" + }, + { + "alg": "SHA-256", + "content": "cdb270a80c74a84629d08e14fe0e6cefadb23bfe782bcbc828e7c119d5cffc18" + } + ] + }, + { + "bom-ref": "a5e2fce1c4f48e37", + "type": "file", + "name": "/var/lib/dpkg/info/lsb-base.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "cbfbc60e736b7a94d979a16c4f202cd8696040c2" + }, + { + "alg": "SHA-256", + "content": "6029d2f2e1a0805d4d8d7b6b7fc006a55025899ecb49d5855681ce7c5c3e0eea" + } + ] + }, + { + "bom-ref": "fcb75cb7bf4c60ed", + "type": "file", + "name": "/var/lib/dpkg/status", + "hashes": [ + { + "alg": "SHA-1", + "content": "a63fb285150f40b56b122d0969c5f109e2c13742" + }, + { + "alg": "SHA-256", + "content": "bbf81e53c1f31f1aad181f4a3c0852664ec9dc85a88a432b34f80e05e0651be7" + } + ] + } + ], + "dependencies": [ + { + "ref": "pkg:deb/debian/adduser@3.118?arch=all&distro=debian-10&package-id=826edd56153fa710", + "dependsOn": [ + "pkg:deb/debian/debconf@1.5.71?arch=all&distro=debian-10&package-id=fe38a53949ca2b50", + "pkg:deb/debian/passwd@1%3A4.5-1.1?arch=amd64&distro=debian-10&package-id=8b4ea518599f59aa&upstream=shadow" + ] + }, + { + "ref": "pkg:deb/debian/apt@1.8.2.3?arch=amd64&distro=debian-10&package-id=0e5b211b31df59d4", + "dependsOn": [ + "pkg:deb/debian/adduser@3.118?arch=all&distro=debian-10&package-id=826edd56153fa710", + "pkg:deb/debian/debian-archive-keyring@2019.1%2Bdeb10u1?arch=all&distro=debian-10&package-id=1ebe9d91bd632f80", + "pkg:deb/debian/gpgv@2.2.12-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=7f936fc60378589a&upstream=gnupg2", + "pkg:deb/debian/libapt-pkg5.0@1.8.2.3?arch=amd64&distro=debian-10&package-id=6424d2241f89a045&upstream=apt", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libgcc1@1%3A8.3.0-6?arch=amd64&distro=debian-10&package-id=715380b30f28d876&upstream=gcc-8%408.3.0-6", + "pkg:deb/debian/libgnutls30@3.6.7-4%2Bdeb10u7?arch=amd64&distro=debian-10&package-id=2b175f545e2e827e&upstream=gnutls28", + "pkg:deb/debian/libseccomp2@2.3.3-4?arch=amd64&distro=debian-10&package-id=b46e6445b6660a4d&upstream=libseccomp", + "pkg:deb/debian/libstdc%2B%2B6@8.3.0-6?arch=amd64&distro=debian-10&package-id=f6ea4c954058336d&upstream=gcc-8" + ] + }, + { + "ref": "pkg:deb/debian/base-files@10.3%2Bdeb10u10?arch=amd64&distro=debian-10&package-id=ae452714cef9cf4e", + "dependsOn": [ + "pkg:deb/debian/mawk@1.3.3-17%2Bb3?arch=amd64&distro=debian-10&package-id=a795c3217ac08dfa&upstream=mawk%401.3.3-17" + ] + }, + { + "ref": "pkg:deb/debian/base-passwd@3.5.46?arch=amd64&distro=debian-10&package-id=f039cd1f2cf0bafa", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libdebconfclient0@0.249?arch=amd64&distro=debian-10&package-id=0ab574cc914c04a7&upstream=cdebconf" + ] + }, + { + "ref": "pkg:deb/debian/bash@5.0-4?arch=amd64&distro=debian-10&package-id=cd34aee2896ce84f", + "dependsOn": [ + "pkg:deb/debian/base-files@10.3%2Bdeb10u10?arch=amd64&distro=debian-10&package-id=ae452714cef9cf4e", + "pkg:deb/debian/debianutils@4.8.6.1?arch=amd64&distro=debian-10&package-id=b0e8f666c912d962", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libtinfo6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=4d50fedeec9db609&upstream=ncurses" + ] + }, + { + "ref": "pkg:deb/debian/bsdutils@1%3A2.33.1-0.1?arch=amd64&distro=debian-10&package-id=f2a2af9c9a7c48e8&upstream=util-linux%402.33.1-0.1", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libsystemd0@241-7~deb10u8?arch=amd64&distro=debian-10&package-id=af5fa602069b9853&upstream=systemd" + ] + }, + { + "ref": "pkg:deb/debian/coreutils@8.30-3?arch=amd64&distro=debian-10&package-id=17d4bb5fcfeac966", + "dependsOn": [ + "pkg:deb/debian/libacl1@2.2.53-4?arch=amd64&distro=debian-10&package-id=2f436d85fbc9eccc&upstream=acl", + "pkg:deb/debian/libattr1@1%3A2.4.48-4?arch=amd64&distro=debian-10&package-id=354fec30a51d2496&upstream=attr", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libselinux1@2.8-1%2Bb1?arch=amd64&distro=debian-10&package-id=49addc4e237b1a0d&upstream=libselinux%402.8-1" + ] + }, + { + "ref": "pkg:deb/debian/dash@0.5.10.2-5?arch=amd64&distro=debian-10&package-id=9b327d82627f2476", + "dependsOn": [ + "pkg:deb/debian/debconf@1.5.71?arch=all&distro=debian-10&package-id=fe38a53949ca2b50", + "pkg:deb/debian/debianutils@4.8.6.1?arch=amd64&distro=debian-10&package-id=b0e8f666c912d962", + "pkg:deb/debian/dpkg@1.19.7?arch=amd64&distro=debian-10&package-id=da9ff9a377f09d63", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/debconf@1.5.71?arch=all&distro=debian-10&package-id=fe38a53949ca2b50", + "dependsOn": [ + "pkg:deb/debian/perl-base@5.28.1-6%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=12ef1f27f6a6900d&upstream=perl" + ] + }, + { + "ref": "pkg:deb/debian/debianutils@4.8.6.1?arch=amd64&distro=debian-10&package-id=b0e8f666c912d962", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/diffutils@1%3A3.7-3?arch=amd64&distro=debian-10&package-id=a19af11f72f0db48", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/dpkg@1.19.7?arch=amd64&distro=debian-10&package-id=da9ff9a377f09d63", + "dependsOn": [ + "pkg:deb/debian/libbz2-1.0@1.0.6-9.2~deb10u1?arch=amd64&distro=debian-10&package-id=0908c2a2770a4bad&upstream=bzip2", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/liblzma5@5.2.4-1?arch=amd64&distro=debian-10&package-id=c32191f717ec58de&upstream=xz-utils", + "pkg:deb/debian/libselinux1@2.8-1%2Bb1?arch=amd64&distro=debian-10&package-id=49addc4e237b1a0d&upstream=libselinux%402.8-1", + "pkg:deb/debian/tar@1.30%2Bdfsg-6?arch=amd64&distro=debian-10&package-id=62da3202d5716782", + "pkg:deb/debian/zlib1g@1%3A1.2.11.dfsg-1?arch=amd64&distro=debian-10&package-id=bcc78aeb924eb6b8&upstream=zlib" + ] + }, + { + "ref": "pkg:deb/debian/e2fsprogs@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=1675eecc8d4a417f", + "dependsOn": [ + "pkg:deb/debian/libblkid1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=d20eac8952a5e6b5&upstream=util-linux", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libcom-err2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=1a8a9dbb194df5d1&upstream=e2fsprogs", + "pkg:deb/debian/libext2fs2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=e40d517f10e825e0&upstream=e2fsprogs", + "pkg:deb/debian/libss2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=63fa318f9eefbc75&upstream=e2fsprogs", + "pkg:deb/debian/libuuid1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=cc943ca139d0e67b&upstream=util-linux" + ] + }, + { + "ref": "pkg:deb/debian/fdisk@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=4c321df8375fa5f7&upstream=util-linux", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libfdisk1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=54c2753ee170e0ea&upstream=util-linux", + "pkg:deb/debian/libmount1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=c6f6118ba99c54cb&upstream=util-linux", + "pkg:deb/debian/libncursesw6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=6c56928a7efb44d4&upstream=ncurses", + "pkg:deb/debian/libsmartcols1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=a95e9a21c0932258&upstream=util-linux", + "pkg:deb/debian/libtinfo6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=4d50fedeec9db609&upstream=ncurses" + ] + }, + { + "ref": "pkg:deb/debian/findutils@4.6.0%2Bgit%2B20190209-2?arch=amd64&distro=debian-10&package-id=9b3ed054ec2849a7", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libselinux1@2.8-1%2Bb1?arch=amd64&distro=debian-10&package-id=49addc4e237b1a0d&upstream=libselinux%402.8-1" + ] + }, + { + "ref": "pkg:deb/debian/gpgv@2.2.12-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=7f936fc60378589a&upstream=gnupg2", + "dependsOn": [ + "pkg:deb/debian/libbz2-1.0@1.0.6-9.2~deb10u1?arch=amd64&distro=debian-10&package-id=0908c2a2770a4bad&upstream=bzip2", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libgcrypt20@1.8.4-5%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=7957520e1bba8fa0", + "pkg:deb/debian/libgpg-error0@1.35-1?arch=amd64&distro=debian-10&package-id=07738f8b4e87f646&upstream=libgpg-error", + "pkg:deb/debian/zlib1g@1%3A1.2.11.dfsg-1?arch=amd64&distro=debian-10&package-id=bcc78aeb924eb6b8&upstream=zlib" + ] + }, + { + "ref": "pkg:deb/debian/grep@3.3-1?arch=amd64&distro=debian-10&package-id=d53561e4ff2a03a4", + "dependsOn": [ + "pkg:deb/debian/dpkg@1.19.7?arch=amd64&distro=debian-10&package-id=da9ff9a377f09d63", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libpcre3@2%3A8.39-12?arch=amd64&distro=debian-10&package-id=35b7de3a80d53d59&upstream=pcre3" + ] + }, + { + "ref": "pkg:deb/debian/gzip@1.9-3?arch=amd64&distro=debian-10&package-id=febd6969a44b6c8c", + "dependsOn": [ + "pkg:deb/debian/dpkg@1.19.7?arch=amd64&distro=debian-10&package-id=da9ff9a377f09d63", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/hostname@3.21?arch=amd64&distro=debian-10&package-id=ca88bf2c2ca324fb", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/init-system-helpers@1.56%2Bnmu1?arch=all&distro=debian-10&package-id=4a3347396c872902", + "dependsOn": [ + "pkg:deb/debian/perl-base@5.28.1-6%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=12ef1f27f6a6900d&upstream=perl" + ] + }, + { + "ref": "pkg:deb/debian/libacl1@2.2.53-4?arch=amd64&distro=debian-10&package-id=2f436d85fbc9eccc&upstream=acl", + "dependsOn": [ + "pkg:deb/debian/libattr1@1%3A2.4.48-4?arch=amd64&distro=debian-10&package-id=354fec30a51d2496&upstream=attr", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libapr1@1.6.5-1%2Bb1?arch=amd64&distro=debian-10&package-id=489cc45ede79feca&upstream=apr%401.6.5-1", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libuuid1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=cc943ca139d0e67b&upstream=util-linux" + ] + }, + { + "ref": "pkg:deb/debian/libaprutil1-ldap@1.6.1-4?arch=amd64&distro=debian-10&package-id=3d99122937baf6ae&upstream=apr-util", + "dependsOn": [ + "pkg:deb/debian/libaprutil1@1.6.1-4?arch=amd64&distro=debian-10&package-id=eda9a1ee2039d110&upstream=apr-util", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libldap-2.4-2@2.4.47%2Bdfsg-3%2Bdeb10u6?arch=amd64&distro=debian-10&package-id=b63707706e516b73&upstream=openldap" + ] + }, + { + "ref": "pkg:deb/debian/libaprutil1@1.6.1-4?arch=amd64&distro=debian-10&package-id=eda9a1ee2039d110&upstream=apr-util", + "dependsOn": [ + "pkg:deb/debian/libapr1@1.6.5-1%2Bb1?arch=amd64&distro=debian-10&package-id=489cc45ede79feca&upstream=apr%401.6.5-1", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libdb5.3@5.3.28%2Bdfsg1-0.5?arch=amd64&distro=debian-10&package-id=910a20bdce3547ea&upstream=db5.3", + "pkg:deb/debian/libexpat1@2.2.6-2%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=d55bfe42f054b394&upstream=expat", + "pkg:deb/debian/libgdbm6@1.18.1-4?arch=amd64&distro=debian-10&package-id=c9afbf45b6ae55eb&upstream=gdbm", + "pkg:deb/debian/libssl1.1@1.1.1d-0%2Bdeb10u7?arch=amd64&distro=debian-10&package-id=0aa101ed766132f9&upstream=openssl", + "pkg:deb/debian/libuuid1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=cc943ca139d0e67b&upstream=util-linux" + ] + }, + { + "ref": "pkg:deb/debian/libapt-pkg5.0@1.8.2.3?arch=amd64&distro=debian-10&package-id=6424d2241f89a045&upstream=apt", + "dependsOn": [ + "pkg:deb/debian/libbz2-1.0@1.0.6-9.2~deb10u1?arch=amd64&distro=debian-10&package-id=0908c2a2770a4bad&upstream=bzip2", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libgcc1@1%3A8.3.0-6?arch=amd64&distro=debian-10&package-id=715380b30f28d876&upstream=gcc-8%408.3.0-6", + "pkg:deb/debian/liblz4-1@1.8.3-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=2ee01fd2c453e926&upstream=lz4", + "pkg:deb/debian/liblzma5@5.2.4-1?arch=amd64&distro=debian-10&package-id=c32191f717ec58de&upstream=xz-utils", + "pkg:deb/debian/libstdc%2B%2B6@8.3.0-6?arch=amd64&distro=debian-10&package-id=f6ea4c954058336d&upstream=gcc-8", + "pkg:deb/debian/libsystemd0@241-7~deb10u8?arch=amd64&distro=debian-10&package-id=af5fa602069b9853&upstream=systemd", + "pkg:deb/debian/libudev1@241-7~deb10u8?arch=amd64&distro=debian-10&package-id=1650009f99e14534&upstream=systemd", + "pkg:deb/debian/libzstd1@1.3.8%2Bdfsg-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=f15273b1b73a0197&upstream=libzstd", + "pkg:deb/debian/zlib1g@1%3A1.2.11.dfsg-1?arch=amd64&distro=debian-10&package-id=bcc78aeb924eb6b8&upstream=zlib" + ] + }, + { + "ref": "pkg:deb/debian/libattr1@1%3A2.4.48-4?arch=amd64&distro=debian-10&package-id=354fec30a51d2496&upstream=attr", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libaudit1@1%3A2.8.4-3?arch=amd64&distro=debian-10&package-id=e445bed1f84bcb4b&upstream=audit", + "dependsOn": [ + "pkg:deb/debian/libaudit-common@1%3A2.8.4-3?arch=all&distro=debian-10&package-id=15a24d26841e3183&upstream=audit", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libcap-ng0@0.7.9-2?arch=amd64&distro=debian-10&package-id=aaab7004e87358fb&upstream=libcap-ng" + ] + }, + { + "ref": "pkg:deb/debian/libblkid1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=d20eac8952a5e6b5&upstream=util-linux", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libuuid1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=cc943ca139d0e67b&upstream=util-linux" + ] + }, + { + "ref": "pkg:deb/debian/libbrotli1@1.0.7-2%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=d61cdb80f6254e3e&upstream=brotli", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libbz2-1.0@1.0.6-9.2~deb10u1?arch=amd64&distro=debian-10&package-id=0908c2a2770a4bad&upstream=bzip2", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libc-bin@2.28-10?arch=amd64&distro=debian-10&package-id=324d5fb6de70a42b&upstream=glibc", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "dependsOn": [ + "pkg:deb/debian/libgcc1@1%3A8.3.0-6?arch=amd64&distro=debian-10&package-id=715380b30f28d876&upstream=gcc-8%408.3.0-6" + ] + }, + { + "ref": "pkg:deb/debian/libcap-ng0@0.7.9-2?arch=amd64&distro=debian-10&package-id=aaab7004e87358fb&upstream=libcap-ng", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libcom-err2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=1a8a9dbb194df5d1&upstream=e2fsprogs", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libcurl4@7.64.0-4%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=af03801f530228cd&upstream=curl", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libcom-err2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=1a8a9dbb194df5d1&upstream=e2fsprogs", + "pkg:deb/debian/libgssapi-krb5-2@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=563dc09768844327&upstream=krb5", + "pkg:deb/debian/libidn2-0@2.0.5-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=5a5081d247582e95&upstream=libidn2", + "pkg:deb/debian/libk5crypto3@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=04ecc244c55268d8&upstream=krb5", + "pkg:deb/debian/libkrb5-3@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=2702e37fa523f601&upstream=krb5", + "pkg:deb/debian/libldap-2.4-2@2.4.47%2Bdfsg-3%2Bdeb10u6?arch=amd64&distro=debian-10&package-id=b63707706e516b73&upstream=openldap", + "pkg:deb/debian/libnghttp2-14@1.36.0-2%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=0ee3c902a7004593&upstream=nghttp2", + "pkg:deb/debian/libpsl5@0.20.2-2?arch=amd64&distro=debian-10&package-id=409f4da8465b655e&upstream=libpsl", + "pkg:deb/debian/librtmp1@2.4%2B20151223.gitfa8646d.1-2?arch=amd64&distro=debian-10&package-id=4e31bab7a6ca0f63&upstream=rtmpdump", + "pkg:deb/debian/libssh2-1@1.8.0-2.1?arch=amd64&distro=debian-10&package-id=16faa100e8d6ebcf&upstream=libssh2", + "pkg:deb/debian/libssl1.1@1.1.1d-0%2Bdeb10u7?arch=amd64&distro=debian-10&package-id=0aa101ed766132f9&upstream=openssl", + "pkg:deb/debian/zlib1g@1%3A1.2.11.dfsg-1?arch=amd64&distro=debian-10&package-id=bcc78aeb924eb6b8&upstream=zlib" + ] + }, + { + "ref": "pkg:deb/debian/libdb5.3@5.3.28%2Bdfsg1-0.5?arch=amd64&distro=debian-10&package-id=910a20bdce3547ea&upstream=db5.3", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libdebconfclient0@0.249?arch=amd64&distro=debian-10&package-id=0ab574cc914c04a7&upstream=cdebconf", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libexpat1@2.2.6-2%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=d55bfe42f054b394&upstream=expat", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libext2fs2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=e40d517f10e825e0&upstream=e2fsprogs", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libfdisk1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=54c2753ee170e0ea&upstream=util-linux", + "dependsOn": [ + "pkg:deb/debian/libblkid1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=d20eac8952a5e6b5&upstream=util-linux", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libuuid1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=cc943ca139d0e67b&upstream=util-linux" + ] + }, + { + "ref": "pkg:deb/debian/libffi6@3.2.1-9?arch=amd64&distro=debian-10&package-id=81f81c06eb491929&upstream=libffi", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libgcc1@1%3A8.3.0-6?arch=amd64&distro=debian-10&package-id=715380b30f28d876&upstream=gcc-8%408.3.0-6", + "dependsOn": [ + "pkg:deb/debian/gcc-8-base@8.3.0-6?arch=amd64&distro=debian-10&package-id=0b418e36eec6c020&upstream=gcc-8", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libgcrypt20@1.8.4-5%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=7957520e1bba8fa0", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libgpg-error0@1.35-1?arch=amd64&distro=debian-10&package-id=07738f8b4e87f646&upstream=libgpg-error" + ] + }, + { + "ref": "pkg:deb/debian/libgdbm6@1.18.1-4?arch=amd64&distro=debian-10&package-id=c9afbf45b6ae55eb&upstream=gdbm", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libgmp10@2%3A6.1.2%2Bdfsg-4?arch=amd64&distro=debian-10&package-id=5a68e3044376edb7&upstream=gmp", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libgnutls30@3.6.7-4%2Bdeb10u7?arch=amd64&distro=debian-10&package-id=2b175f545e2e827e&upstream=gnutls28", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libgmp10@2%3A6.1.2%2Bdfsg-4?arch=amd64&distro=debian-10&package-id=5a68e3044376edb7&upstream=gmp", + "pkg:deb/debian/libhogweed4@3.4.1-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=1c418be752fe00a9&upstream=nettle", + "pkg:deb/debian/libidn2-0@2.0.5-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=5a5081d247582e95&upstream=libidn2", + "pkg:deb/debian/libnettle6@3.4.1-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=89d7efaea95993d3&upstream=nettle", + "pkg:deb/debian/libp11-kit0@0.23.15-2%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=dac1be12b689bc10&upstream=p11-kit", + "pkg:deb/debian/libtasn1-6@4.13-3?arch=amd64&distro=debian-10&package-id=4472b190d0061f51", + "pkg:deb/debian/libunistring2@0.9.10-1?arch=amd64&distro=debian-10&package-id=337ddb48ec21ed97&upstream=libunistring" + ] + }, + { + "ref": "pkg:deb/debian/libgpg-error0@1.35-1?arch=amd64&distro=debian-10&package-id=07738f8b4e87f646&upstream=libgpg-error", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libgssapi-krb5-2@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=563dc09768844327&upstream=krb5", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libcom-err2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=1a8a9dbb194df5d1&upstream=e2fsprogs", + "pkg:deb/debian/libk5crypto3@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=04ecc244c55268d8&upstream=krb5", + "pkg:deb/debian/libkeyutils1@1.6-6?arch=amd64&distro=debian-10&package-id=1ed46086dbffc087&upstream=keyutils", + "pkg:deb/debian/libkrb5-3@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=2702e37fa523f601&upstream=krb5", + "pkg:deb/debian/libkrb5support0@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=23be6b473ec0b06b&upstream=krb5" + ] + }, + { + "ref": "pkg:deb/debian/libhogweed4@3.4.1-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=1c418be752fe00a9&upstream=nettle", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libgmp10@2%3A6.1.2%2Bdfsg-4?arch=amd64&distro=debian-10&package-id=5a68e3044376edb7&upstream=gmp", + "pkg:deb/debian/libnettle6@3.4.1-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=89d7efaea95993d3&upstream=nettle" + ] + }, + { + "ref": "pkg:deb/debian/libicu63@63.1-6%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=a180ea9e3b7989a3&upstream=icu", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libgcc1@1%3A8.3.0-6?arch=amd64&distro=debian-10&package-id=715380b30f28d876&upstream=gcc-8%408.3.0-6", + "pkg:deb/debian/libstdc%2B%2B6@8.3.0-6?arch=amd64&distro=debian-10&package-id=f6ea4c954058336d&upstream=gcc-8" + ] + }, + { + "ref": "pkg:deb/debian/libidn2-0@2.0.5-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=5a5081d247582e95&upstream=libidn2", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libunistring2@0.9.10-1?arch=amd64&distro=debian-10&package-id=337ddb48ec21ed97&upstream=libunistring" + ] + }, + { + "ref": "pkg:deb/debian/libjansson4@2.12-1?arch=amd64&distro=debian-10&package-id=88fb69b90900ef4f&upstream=jansson", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libk5crypto3@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=04ecc244c55268d8&upstream=krb5", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libkeyutils1@1.6-6?arch=amd64&distro=debian-10&package-id=1ed46086dbffc087&upstream=keyutils", + "pkg:deb/debian/libkrb5support0@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=23be6b473ec0b06b&upstream=krb5" + ] + }, + { + "ref": "pkg:deb/debian/libkeyutils1@1.6-6?arch=amd64&distro=debian-10&package-id=1ed46086dbffc087&upstream=keyutils", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libkrb5-3@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=2702e37fa523f601&upstream=krb5", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libcom-err2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=1a8a9dbb194df5d1&upstream=e2fsprogs", + "pkg:deb/debian/libk5crypto3@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=04ecc244c55268d8&upstream=krb5", + "pkg:deb/debian/libkeyutils1@1.6-6?arch=amd64&distro=debian-10&package-id=1ed46086dbffc087&upstream=keyutils", + "pkg:deb/debian/libkrb5support0@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=23be6b473ec0b06b&upstream=krb5", + "pkg:deb/debian/libssl1.1@1.1.1d-0%2Bdeb10u7?arch=amd64&distro=debian-10&package-id=0aa101ed766132f9&upstream=openssl" + ] + }, + { + "ref": "pkg:deb/debian/libkrb5support0@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=23be6b473ec0b06b&upstream=krb5", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libkeyutils1@1.6-6?arch=amd64&distro=debian-10&package-id=1ed46086dbffc087&upstream=keyutils" + ] + }, + { + "ref": "pkg:deb/debian/libldap-2.4-2@2.4.47%2Bdfsg-3%2Bdeb10u6?arch=amd64&distro=debian-10&package-id=b63707706e516b73&upstream=openldap", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libgnutls30@3.6.7-4%2Bdeb10u7?arch=amd64&distro=debian-10&package-id=2b175f545e2e827e&upstream=gnutls28", + "pkg:deb/debian/libldap-common@2.4.47%2Bdfsg-3%2Bdeb10u6?arch=all&distro=debian-10&package-id=f04113280174888f&upstream=openldap", + "pkg:deb/debian/libsasl2-2@2.1.27%2Bdfsg-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=56eb272c9677fc6a&upstream=cyrus-sasl2" + ] + }, + { + "ref": "pkg:deb/debian/liblua5.2-0@5.2.4-1.1%2Bb2?arch=amd64&distro=debian-10&package-id=60163e6ffcd36f87&upstream=lua5.2%405.2.4-1.1", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libgcc1@1%3A8.3.0-6?arch=amd64&distro=debian-10&package-id=715380b30f28d876&upstream=gcc-8%408.3.0-6", + "pkg:deb/debian/libstdc%2B%2B6@8.3.0-6?arch=amd64&distro=debian-10&package-id=f6ea4c954058336d&upstream=gcc-8" + ] + }, + { + "ref": "pkg:deb/debian/liblz4-1@1.8.3-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=2ee01fd2c453e926&upstream=lz4", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/liblzma5@5.2.4-1?arch=amd64&distro=debian-10&package-id=c32191f717ec58de&upstream=xz-utils", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libmount1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=c6f6118ba99c54cb&upstream=util-linux", + "dependsOn": [ + "pkg:deb/debian/libblkid1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=d20eac8952a5e6b5&upstream=util-linux", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libselinux1@2.8-1%2Bb1?arch=amd64&distro=debian-10&package-id=49addc4e237b1a0d&upstream=libselinux%402.8-1" + ] + }, + { + "ref": "pkg:deb/debian/libncursesw6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=6c56928a7efb44d4&upstream=ncurses", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libtinfo6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=4d50fedeec9db609&upstream=ncurses" + ] + }, + { + "ref": "pkg:deb/debian/libnettle6@3.4.1-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=89d7efaea95993d3&upstream=nettle", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libnghttp2-14@1.36.0-2%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=0ee3c902a7004593&upstream=nghttp2", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libp11-kit0@0.23.15-2%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=dac1be12b689bc10&upstream=p11-kit", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libffi6@3.2.1-9?arch=amd64&distro=debian-10&package-id=81f81c06eb491929&upstream=libffi" + ] + }, + { + "ref": "pkg:deb/debian/libpam-modules-bin@1.3.1-5?arch=amd64&distro=debian-10&package-id=631d9f9526108591&upstream=pam", + "dependsOn": [ + "pkg:deb/debian/libaudit1@1%3A2.8.4-3?arch=amd64&distro=debian-10&package-id=e445bed1f84bcb4b&upstream=audit", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libpam0g@1.3.1-5?arch=amd64&distro=debian-10&package-id=75c54a61b843e467&upstream=pam", + "pkg:deb/debian/libselinux1@2.8-1%2Bb1?arch=amd64&distro=debian-10&package-id=49addc4e237b1a0d&upstream=libselinux%402.8-1" + ] + }, + { + "ref": "pkg:deb/debian/libpam-modules@1.3.1-5?arch=amd64&distro=debian-10&package-id=5913b683bb6ecea4&upstream=pam", + "dependsOn": [ + "pkg:deb/debian/debconf@1.5.71?arch=all&distro=debian-10&package-id=fe38a53949ca2b50", + "pkg:deb/debian/libaudit1@1%3A2.8.4-3?arch=amd64&distro=debian-10&package-id=e445bed1f84bcb4b&upstream=audit", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libdb5.3@5.3.28%2Bdfsg1-0.5?arch=amd64&distro=debian-10&package-id=910a20bdce3547ea&upstream=db5.3", + "pkg:deb/debian/libpam-modules-bin@1.3.1-5?arch=amd64&distro=debian-10&package-id=631d9f9526108591&upstream=pam", + "pkg:deb/debian/libpam0g@1.3.1-5?arch=amd64&distro=debian-10&package-id=75c54a61b843e467&upstream=pam", + "pkg:deb/debian/libselinux1@2.8-1%2Bb1?arch=amd64&distro=debian-10&package-id=49addc4e237b1a0d&upstream=libselinux%402.8-1" + ] + }, + { + "ref": "pkg:deb/debian/libpam-runtime@1.3.1-5?arch=all&distro=debian-10&package-id=25a1580763811c2a&upstream=pam", + "dependsOn": [ + "pkg:deb/debian/debconf@1.5.71?arch=all&distro=debian-10&package-id=fe38a53949ca2b50", + "pkg:deb/debian/libpam-modules@1.3.1-5?arch=amd64&distro=debian-10&package-id=5913b683bb6ecea4&upstream=pam" + ] + }, + { + "ref": "pkg:deb/debian/libpam0g@1.3.1-5?arch=amd64&distro=debian-10&package-id=75c54a61b843e467&upstream=pam", + "dependsOn": [ + "pkg:deb/debian/debconf@1.5.71?arch=all&distro=debian-10&package-id=fe38a53949ca2b50", + "pkg:deb/debian/libaudit1@1%3A2.8.4-3?arch=amd64&distro=debian-10&package-id=e445bed1f84bcb4b&upstream=audit", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libpcre3@2%3A8.39-12?arch=amd64&distro=debian-10&package-id=35b7de3a80d53d59&upstream=pcre3", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libpsl5@0.20.2-2?arch=amd64&distro=debian-10&package-id=409f4da8465b655e&upstream=libpsl", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libidn2-0@2.0.5-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=5a5081d247582e95&upstream=libidn2", + "pkg:deb/debian/libunistring2@0.9.10-1?arch=amd64&distro=debian-10&package-id=337ddb48ec21ed97&upstream=libunistring" + ] + }, + { + "ref": "pkg:deb/debian/librtmp1@2.4%2B20151223.gitfa8646d.1-2?arch=amd64&distro=debian-10&package-id=4e31bab7a6ca0f63&upstream=rtmpdump", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libgmp10@2%3A6.1.2%2Bdfsg-4?arch=amd64&distro=debian-10&package-id=5a68e3044376edb7&upstream=gmp", + "pkg:deb/debian/libgnutls30@3.6.7-4%2Bdeb10u7?arch=amd64&distro=debian-10&package-id=2b175f545e2e827e&upstream=gnutls28", + "pkg:deb/debian/libhogweed4@3.4.1-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=1c418be752fe00a9&upstream=nettle", + "pkg:deb/debian/libnettle6@3.4.1-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=89d7efaea95993d3&upstream=nettle", + "pkg:deb/debian/zlib1g@1%3A1.2.11.dfsg-1?arch=amd64&distro=debian-10&package-id=bcc78aeb924eb6b8&upstream=zlib" + ] + }, + { + "ref": "pkg:deb/debian/libsasl2-2@2.1.27%2Bdfsg-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=56eb272c9677fc6a&upstream=cyrus-sasl2", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libsasl2-modules-db@2.1.27%2Bdfsg-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=0dddbf5f31db948d&upstream=cyrus-sasl2" + ] + }, + { + "ref": "pkg:deb/debian/libsasl2-modules-db@2.1.27%2Bdfsg-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=0dddbf5f31db948d&upstream=cyrus-sasl2", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libdb5.3@5.3.28%2Bdfsg1-0.5?arch=amd64&distro=debian-10&package-id=910a20bdce3547ea&upstream=db5.3" + ] + }, + { + "ref": "pkg:deb/debian/libseccomp2@2.3.3-4?arch=amd64&distro=debian-10&package-id=b46e6445b6660a4d&upstream=libseccomp", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libselinux1@2.8-1%2Bb1?arch=amd64&distro=debian-10&package-id=49addc4e237b1a0d&upstream=libselinux%402.8-1", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libpcre3@2%3A8.39-12?arch=amd64&distro=debian-10&package-id=35b7de3a80d53d59&upstream=pcre3" + ] + }, + { + "ref": "pkg:deb/debian/libsemanage1@2.8-2?arch=amd64&distro=debian-10&package-id=ee0c44fcf6fdf849&upstream=libsemanage", + "dependsOn": [ + "pkg:deb/debian/libaudit1@1%3A2.8.4-3?arch=amd64&distro=debian-10&package-id=e445bed1f84bcb4b&upstream=audit", + "pkg:deb/debian/libbz2-1.0@1.0.6-9.2~deb10u1?arch=amd64&distro=debian-10&package-id=0908c2a2770a4bad&upstream=bzip2", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libselinux1@2.8-1%2Bb1?arch=amd64&distro=debian-10&package-id=49addc4e237b1a0d&upstream=libselinux%402.8-1", + "pkg:deb/debian/libsemanage-common@2.8-2?arch=all&distro=debian-10&package-id=f140402ff5125f8f&upstream=libsemanage", + "pkg:deb/debian/libsepol1@2.8-1?arch=amd64&distro=debian-10&package-id=e475ad99443adf15&upstream=libsepol" + ] + }, + { + "ref": "pkg:deb/debian/libsepol1@2.8-1?arch=amd64&distro=debian-10&package-id=e475ad99443adf15&upstream=libsepol", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libsmartcols1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=a95e9a21c0932258&upstream=util-linux", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libss2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=63fa318f9eefbc75&upstream=e2fsprogs", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libcom-err2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=1a8a9dbb194df5d1&upstream=e2fsprogs" + ] + }, + { + "ref": "pkg:deb/debian/libssh2-1@1.8.0-2.1?arch=amd64&distro=debian-10&package-id=16faa100e8d6ebcf&upstream=libssh2", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libgcrypt20@1.8.4-5%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=7957520e1bba8fa0", + "pkg:deb/debian/zlib1g@1%3A1.2.11.dfsg-1?arch=amd64&distro=debian-10&package-id=bcc78aeb924eb6b8&upstream=zlib" + ] + }, + { + "ref": "pkg:deb/debian/libssl1.1@1.1.1d-0%2Bdeb10u7?arch=amd64&distro=debian-10&package-id=0aa101ed766132f9&upstream=openssl", + "dependsOn": [ + "pkg:deb/debian/debconf@1.5.71?arch=all&distro=debian-10&package-id=fe38a53949ca2b50", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libstdc%2B%2B6@8.3.0-6?arch=amd64&distro=debian-10&package-id=f6ea4c954058336d&upstream=gcc-8", + "dependsOn": [ + "pkg:deb/debian/gcc-8-base@8.3.0-6?arch=amd64&distro=debian-10&package-id=0b418e36eec6c020&upstream=gcc-8", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libgcc1@1%3A8.3.0-6?arch=amd64&distro=debian-10&package-id=715380b30f28d876&upstream=gcc-8%408.3.0-6" + ] + }, + { + "ref": "pkg:deb/debian/libsystemd0@241-7~deb10u8?arch=amd64&distro=debian-10&package-id=af5fa602069b9853&upstream=systemd", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libgcrypt20@1.8.4-5%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=7957520e1bba8fa0", + "pkg:deb/debian/liblz4-1@1.8.3-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=2ee01fd2c453e926&upstream=lz4", + "pkg:deb/debian/liblzma5@5.2.4-1?arch=amd64&distro=debian-10&package-id=c32191f717ec58de&upstream=xz-utils" + ] + }, + { + "ref": "pkg:deb/debian/libtasn1-6@4.13-3?arch=amd64&distro=debian-10&package-id=4472b190d0061f51", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libtinfo6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=4d50fedeec9db609&upstream=ncurses", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libudev1@241-7~deb10u8?arch=amd64&distro=debian-10&package-id=1650009f99e14534&upstream=systemd", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libunistring2@0.9.10-1?arch=amd64&distro=debian-10&package-id=337ddb48ec21ed97&upstream=libunistring", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libuuid1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=cc943ca139d0e67b&upstream=util-linux", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libxml2@2.9.4%2Bdfsg1-7%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=2b71d5263434c464", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libicu63@63.1-6%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=a180ea9e3b7989a3&upstream=icu", + "pkg:deb/debian/liblzma5@5.2.4-1?arch=amd64&distro=debian-10&package-id=c32191f717ec58de&upstream=xz-utils", + "pkg:deb/debian/zlib1g@1%3A1.2.11.dfsg-1?arch=amd64&distro=debian-10&package-id=bcc78aeb924eb6b8&upstream=zlib" + ] + }, + { + "ref": "pkg:deb/debian/libzstd1@1.3.8%2Bdfsg-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=f15273b1b73a0197&upstream=libzstd", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/login@1%3A4.5-1.1?arch=amd64&distro=debian-10&package-id=beffe62c711b8d0b&upstream=shadow", + "dependsOn": [ + "pkg:deb/debian/libaudit1@1%3A2.8.4-3?arch=amd64&distro=debian-10&package-id=e445bed1f84bcb4b&upstream=audit", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libpam-modules@1.3.1-5?arch=amd64&distro=debian-10&package-id=5913b683bb6ecea4&upstream=pam", + "pkg:deb/debian/libpam-runtime@1.3.1-5?arch=all&distro=debian-10&package-id=25a1580763811c2a&upstream=pam", + "pkg:deb/debian/libpam0g@1.3.1-5?arch=amd64&distro=debian-10&package-id=75c54a61b843e467&upstream=pam" + ] + }, + { + "ref": "pkg:deb/debian/mawk@1.3.3-17%2Bb3?arch=amd64&distro=debian-10&package-id=a795c3217ac08dfa&upstream=mawk%401.3.3-17", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/mount@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=0cd3087f123a0ab4&upstream=util-linux", + "dependsOn": [ + "pkg:deb/debian/libblkid1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=d20eac8952a5e6b5&upstream=util-linux", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libmount1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=c6f6118ba99c54cb&upstream=util-linux", + "pkg:deb/debian/libselinux1@2.8-1%2Bb1?arch=amd64&distro=debian-10&package-id=49addc4e237b1a0d&upstream=libselinux%402.8-1", + "pkg:deb/debian/libsmartcols1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=a95e9a21c0932258&upstream=util-linux", + "pkg:deb/debian/util-linux@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=3d071e40c62fe471" + ] + }, + { + "ref": "pkg:deb/debian/ncurses-bin@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=68e8ed2220f015ff&upstream=ncurses", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libtinfo6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=4d50fedeec9db609&upstream=ncurses" + ] + }, + { + "ref": "pkg:deb/debian/passwd@1%3A4.5-1.1?arch=amd64&distro=debian-10&package-id=8b4ea518599f59aa&upstream=shadow", + "dependsOn": [ + "pkg:deb/debian/libaudit1@1%3A2.8.4-3?arch=amd64&distro=debian-10&package-id=e445bed1f84bcb4b&upstream=audit", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libpam-modules@1.3.1-5?arch=amd64&distro=debian-10&package-id=5913b683bb6ecea4&upstream=pam", + "pkg:deb/debian/libpam0g@1.3.1-5?arch=amd64&distro=debian-10&package-id=75c54a61b843e467&upstream=pam", + "pkg:deb/debian/libselinux1@2.8-1%2Bb1?arch=amd64&distro=debian-10&package-id=49addc4e237b1a0d&upstream=libselinux%402.8-1", + "pkg:deb/debian/libsemanage1@2.8-2?arch=amd64&distro=debian-10&package-id=ee0c44fcf6fdf849&upstream=libsemanage" + ] + }, + { + "ref": "pkg:deb/debian/perl-base@5.28.1-6%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=12ef1f27f6a6900d&upstream=perl", + "dependsOn": [ + "pkg:deb/debian/dpkg@1.19.7?arch=amd64&distro=debian-10&package-id=da9ff9a377f09d63", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/sed@4.7-1?arch=amd64&distro=debian-10&package-id=8afeab9e14add71f", + "dependsOn": [ + "pkg:deb/debian/libacl1@2.2.53-4?arch=amd64&distro=debian-10&package-id=2f436d85fbc9eccc&upstream=acl", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libselinux1@2.8-1%2Bb1?arch=amd64&distro=debian-10&package-id=49addc4e237b1a0d&upstream=libselinux%402.8-1" + ] + }, + { + "ref": "pkg:deb/debian/sysvinit-utils@2.93-8?arch=amd64&distro=debian-10&package-id=84b2ad21b188f1d2&upstream=sysvinit", + "dependsOn": [ + "pkg:deb/debian/init-system-helpers@1.56%2Bnmu1?arch=all&distro=debian-10&package-id=4a3347396c872902", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/util-linux@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=3d071e40c62fe471" + ] + }, + { + "ref": "pkg:deb/debian/tar@1.30%2Bdfsg-6?arch=amd64&distro=debian-10&package-id=62da3202d5716782", + "dependsOn": [ + "pkg:deb/debian/libacl1@2.2.53-4?arch=amd64&distro=debian-10&package-id=2f436d85fbc9eccc&upstream=acl", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libselinux1@2.8-1%2Bb1?arch=amd64&distro=debian-10&package-id=49addc4e237b1a0d&upstream=libselinux%402.8-1" + ] + }, + { + "ref": "pkg:deb/debian/tzdata@2021a-0%2Bdeb10u1?arch=all&distro=debian-10&package-id=11e09e914c1cd4a6", + "dependsOn": [ + "pkg:deb/debian/debconf@1.5.71?arch=all&distro=debian-10&package-id=fe38a53949ca2b50" + ] + }, + { + "ref": "pkg:deb/debian/util-linux@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=3d071e40c62fe471", + "dependsOn": [ + "pkg:deb/debian/fdisk@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=4c321df8375fa5f7&upstream=util-linux", + "pkg:deb/debian/libaudit1@1%3A2.8.4-3?arch=amd64&distro=debian-10&package-id=e445bed1f84bcb4b&upstream=audit", + "pkg:deb/debian/libblkid1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=d20eac8952a5e6b5&upstream=util-linux", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libcap-ng0@0.7.9-2?arch=amd64&distro=debian-10&package-id=aaab7004e87358fb&upstream=libcap-ng", + "pkg:deb/debian/libmount1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=c6f6118ba99c54cb&upstream=util-linux", + "pkg:deb/debian/libpam0g@1.3.1-5?arch=amd64&distro=debian-10&package-id=75c54a61b843e467&upstream=pam", + "pkg:deb/debian/libselinux1@2.8-1%2Bb1?arch=amd64&distro=debian-10&package-id=49addc4e237b1a0d&upstream=libselinux%402.8-1", + "pkg:deb/debian/libsmartcols1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=a95e9a21c0932258&upstream=util-linux", + "pkg:deb/debian/libsystemd0@241-7~deb10u8?arch=amd64&distro=debian-10&package-id=af5fa602069b9853&upstream=systemd", + "pkg:deb/debian/libtinfo6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=4d50fedeec9db609&upstream=ncurses", + "pkg:deb/debian/libudev1@241-7~deb10u8?arch=amd64&distro=debian-10&package-id=1650009f99e14534&upstream=systemd", + "pkg:deb/debian/libuuid1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=cc943ca139d0e67b&upstream=util-linux", + "pkg:deb/debian/login@1%3A4.5-1.1?arch=amd64&distro=debian-10&package-id=beffe62c711b8d0b&upstream=shadow", + "pkg:deb/debian/zlib1g@1%3A1.2.11.dfsg-1?arch=amd64&distro=debian-10&package-id=bcc78aeb924eb6b8&upstream=zlib" + ] + }, + { + "ref": "pkg:deb/debian/zlib1g@1%3A1.2.11.dfsg-1?arch=amd64&distro=debian-10&package-id=bcc78aeb924eb6b8&upstream=zlib", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + } + ] +} diff --git a/test/providers/tst_manifests/image/httpd:2.4.49^^amd64.json b/test/providers/tst_manifests/image/httpd:2.4.49^^amd64.json new file mode 100644 index 0000000..93e7390 --- /dev/null +++ b/test/providers/tst_manifests/image/httpd:2.4.49^^amd64.json @@ -0,0 +1,55444 @@ +{ + "$schema": "http://cyclonedx.org/schema/bom-1.5.schema.json", + "bomFormat": "CycloneDX", + "specVersion": "1.5", + "serialNumber": null, + "version": 1, + "metadata": null, + "components": [ + { + "bom-ref": "pkg:deb/debian/adduser@3.118?arch=all&distro=debian-10&package-id=826edd56153fa710", + "type": "library", + "publisher": "Debian Adduser Developers ", + "name": "adduser", + "version": "3.118", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + } + ], + "cpe": "cpe:2.3:a:adduser:adduser:3.118:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/adduser@3.118?arch=all&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:10:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:10:path", + "value": "/var/lib/dpkg/info/adduser.templates" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/adduser/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/adduser.conffiles" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/adduser.md5sums" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/adduser.config" + }, + { + "name": "syft:location:7:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:7:path", + "value": "/var/lib/dpkg/info/adduser.list" + }, + { + "name": "syft:location:8:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:8:path", + "value": "/var/lib/dpkg/info/adduser.postinst" + }, + { + "name": "syft:location:9:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:9:path", + "value": "/var/lib/dpkg/info/adduser.postrm" + }, + { + "name": "syft:metadata:installedSize", + "value": "849" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/apt@1.8.2.3?arch=amd64&distro=debian-10&package-id=0e5b211b31df59d4", + "type": "library", + "publisher": "APT Development Team ", + "name": "apt", + "version": "1.8.2.3", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "name": "GPLv2+" + } + } + ], + "cpe": "cpe:2.3:a:apt:apt:1.8.2.3:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/apt@1.8.2.3?arch=amd64&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:10:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:10:path", + "value": "/var/lib/dpkg/info/apt.prerm" + }, + { + "name": "syft:location:11:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:11:path", + "value": "/var/lib/dpkg/info/apt.shlibs" + }, + { + "name": "syft:location:12:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:12:path", + "value": "/var/lib/dpkg/info/apt.triggers" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/apt/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/apt.conffiles" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/apt.md5sums" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/apt.list" + }, + { + "name": "syft:location:7:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:7:path", + "value": "/var/lib/dpkg/info/apt.postinst" + }, + { + "name": "syft:location:8:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:8:path", + "value": "/var/lib/dpkg/info/apt.postrm" + }, + { + "name": "syft:location:9:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:9:path", + "value": "/var/lib/dpkg/info/apt.preinst" + }, + { + "name": "syft:metadata:installedSize", + "value": "4064" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/base-files@10.3%2Bdeb10u10?arch=amd64&distro=debian-10&package-id=ae452714cef9cf4e", + "type": "library", + "publisher": "Santiago Vila ", + "name": "base-files", + "version": "10.3+deb10u10", + "licenses": [ + { + "license": { + "name": "GPL" + } + } + ], + "cpe": "cpe:2.3:a:base-files:base-files:10.3\\+deb10u10:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/base-files@10.3%2Bdeb10u10?arch=amd64&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:base-files:base_files:10.3\\+deb10u10:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:base_files:base-files:10.3\\+deb10u10:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:base_files:base_files:10.3\\+deb10u10:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:base:base-files:10.3\\+deb10u10:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:base:base_files:10.3\\+deb10u10:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/base-files/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/base-files.conffiles" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/base-files.md5sums" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/base-files.list" + }, + { + "name": "syft:location:7:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:7:path", + "value": "/var/lib/dpkg/info/base-files.postinst" + }, + { + "name": "syft:metadata:installedSize", + "value": "340" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/base-passwd@3.5.46?arch=amd64&distro=debian-10&package-id=f039cd1f2cf0bafa", + "type": "library", + "publisher": "Colin Watson ", + "name": "base-passwd", + "version": "3.5.46", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "name": "PD" + } + } + ], + "cpe": "cpe:2.3:a:base-passwd:base-passwd:3.5.46:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/base-passwd@3.5.46?arch=amd64&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:base-passwd:base_passwd:3.5.46:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:base_passwd:base-passwd:3.5.46:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:base_passwd:base_passwd:3.5.46:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:base:base-passwd:3.5.46:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:base:base_passwd:3.5.46:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/base-passwd/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/base-passwd.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/base-passwd.list" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/base-passwd.postinst" + }, + { + "name": "syft:location:7:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:7:path", + "value": "/var/lib/dpkg/info/base-passwd.postrm" + }, + { + "name": "syft:location:8:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:8:path", + "value": "/var/lib/dpkg/info/base-passwd.preinst" + }, + { + "name": "syft:location:9:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:9:path", + "value": "/var/lib/dpkg/info/base-passwd.templates" + }, + { + "name": "syft:metadata:installedSize", + "value": "232" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/bash@5.0-4?arch=amd64&distro=debian-10&package-id=cd34aee2896ce84f", + "type": "library", + "publisher": "Matthias Klose ", + "name": "bash", + "version": "5.0-4", + "licenses": [ + { + "license": { + "id": "GPL-3.0-only" + } + } + ], + "cpe": "cpe:2.3:a:bash:bash:5.0-4:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/bash@5.0-4?arch=amd64&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:10:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:10:path", + "value": "/var/lib/dpkg/info/bash.prerm" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/bash/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/bash.conffiles" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/bash.md5sums" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/bash.list" + }, + { + "name": "syft:location:7:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:7:path", + "value": "/var/lib/dpkg/info/bash.postinst" + }, + { + "name": "syft:location:8:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:8:path", + "value": "/var/lib/dpkg/info/bash.postrm" + }, + { + "name": "syft:location:9:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:9:path", + "value": "/var/lib/dpkg/info/bash.preinst" + }, + { + "name": "syft:metadata:installedSize", + "value": "6439" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/bsdutils@1%3A2.33.1-0.1?arch=amd64&distro=debian-10&package-id=f2a2af9c9a7c48e8&upstream=util-linux%402.33.1-0.1", + "type": "library", + "publisher": "LaMont Jones ", + "name": "bsdutils", + "version": "1:2.33.1-0.1", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + }, + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "BSD-4-Clause" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1-or-later" + } + }, + { + "license": { + "id": "LGPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-3.0-or-later" + } + }, + { + "license": { + "id": "MIT" + } + }, + { + "license": { + "name": "LGPL" + } + }, + { + "license": { + "name": "public-domain" + } + } + ], + "cpe": "cpe:2.3:a:bsdutils:bsdutils:1\\:2.33.1-0.1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/bsdutils@1%3A2.33.1-0.1?arch=amd64&distro=debian-10&upstream=util-linux%402.33.1-0.1", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/bsdutils/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/bsdutils.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/bsdutils.list" + }, + { + "name": "syft:metadata:installedSize", + "value": "293" + }, + { + "name": "syft:metadata:source", + "value": "util-linux" + }, + { + "name": "syft:metadata:sourceVersion", + "value": "2.33.1-0.1" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/coreutils@8.30-3?arch=amd64&distro=debian-10&package-id=17d4bb5fcfeac966", + "type": "library", + "publisher": "Michael Stone ", + "name": "coreutils", + "version": "8.30-3", + "licenses": [ + { + "license": { + "id": "GPL-3.0-only" + } + } + ], + "cpe": "cpe:2.3:a:coreutils:coreutils:8.30-3:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/coreutils@8.30-3?arch=amd64&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/coreutils/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/coreutils.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/coreutils.list" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/coreutils.postinst" + }, + { + "name": "syft:location:7:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:7:path", + "value": "/var/lib/dpkg/info/coreutils.postrm" + }, + { + "name": "syft:metadata:installedSize", + "value": "15719" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/dash@0.5.10.2-5?arch=amd64&distro=debian-10&package-id=9b327d82627f2476", + "type": "library", + "publisher": "Andrej Shadura ", + "name": "dash", + "version": "0.5.10.2-5", + "licenses": [ + { + "license": { + "name": "GPL" + } + } + ], + "cpe": "cpe:2.3:a:dash:dash:0.5.10.2-5:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/dash@0.5.10.2-5?arch=amd64&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:10:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:10:path", + "value": "/var/lib/dpkg/info/dash.templates" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/dash/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/dash.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/dash.config" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/dash.list" + }, + { + "name": "syft:location:7:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:7:path", + "value": "/var/lib/dpkg/info/dash.postinst" + }, + { + "name": "syft:location:8:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:8:path", + "value": "/var/lib/dpkg/info/dash.postrm" + }, + { + "name": "syft:location:9:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:9:path", + "value": "/var/lib/dpkg/info/dash.prerm" + }, + { + "name": "syft:metadata:installedSize", + "value": "212" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/debconf@1.5.71?arch=all&distro=debian-10&package-id=fe38a53949ca2b50", + "type": "library", + "publisher": "Debconf Developers ", + "name": "debconf", + "version": "1.5.71", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + } + ], + "cpe": "cpe:2.3:a:debconf:debconf:1.5.71:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/debconf@1.5.71?arch=all&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:10:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:10:path", + "value": "/var/lib/dpkg/info/debconf.preinst" + }, + { + "name": "syft:location:11:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:11:path", + "value": "/var/lib/dpkg/info/debconf.prerm" + }, + { + "name": "syft:location:12:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:12:path", + "value": "/var/lib/dpkg/info/debconf.templates" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/debconf/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/debconf.conffiles" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/debconf.md5sums" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/debconf.config" + }, + { + "name": "syft:location:7:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:7:path", + "value": "/var/lib/dpkg/info/debconf.list" + }, + { + "name": "syft:location:8:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:8:path", + "value": "/var/lib/dpkg/info/debconf.postinst" + }, + { + "name": "syft:location:9:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:9:path", + "value": "/var/lib/dpkg/info/debconf.postrm" + }, + { + "name": "syft:metadata:installedSize", + "value": "520" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/debian-archive-keyring@2019.1%2Bdeb10u1?arch=all&distro=debian-10&package-id=1ebe9d91bd632f80", + "type": "library", + "publisher": "Debian Release Team ", + "name": "debian-archive-keyring", + "version": "2019.1+deb10u1", + "licenses": [ + { + "license": { + "name": "GPL" + } + } + ], + "cpe": "cpe:2.3:a:debian-archive-keyring:debian-archive-keyring:2019.1\\+deb10u1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/debian-archive-keyring@2019.1%2Bdeb10u1?arch=all&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:debian-archive-keyring:debian_archive_keyring:2019.1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:debian_archive_keyring:debian-archive-keyring:2019.1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:debian_archive_keyring:debian_archive_keyring:2019.1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:debian-archive:debian-archive-keyring:2019.1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:debian-archive:debian_archive_keyring:2019.1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:debian_archive:debian-archive-keyring:2019.1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:debian_archive:debian_archive_keyring:2019.1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:debian:debian-archive-keyring:2019.1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:debian:debian_archive_keyring:2019.1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:10:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:10:path", + "value": "/var/lib/dpkg/info/debian-archive-keyring.prerm" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/debian-archive-keyring/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/debian-archive-keyring.conffiles" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/debian-archive-keyring.md5sums" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/debian-archive-keyring.list" + }, + { + "name": "syft:location:7:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:7:path", + "value": "/var/lib/dpkg/info/debian-archive-keyring.postinst" + }, + { + "name": "syft:location:8:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:8:path", + "value": "/var/lib/dpkg/info/debian-archive-keyring.postrm" + }, + { + "name": "syft:location:9:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:9:path", + "value": "/var/lib/dpkg/info/debian-archive-keyring.preinst" + }, + { + "name": "syft:metadata:installedSize", + "value": "235" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/debianutils@4.8.6.1?arch=amd64&distro=debian-10&package-id=b0e8f666c912d962", + "type": "library", + "publisher": "Clint Adams ", + "name": "debianutils", + "version": "4.8.6.1", + "licenses": [ + { + "license": { + "name": "GPL" + } + } + ], + "cpe": "cpe:2.3:a:debianutils:debianutils:4.8.6.1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/debianutils@4.8.6.1?arch=amd64&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/debianutils/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/debianutils.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/debianutils.list" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/debianutils.postinst" + }, + { + "name": "syft:location:7:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:7:path", + "value": "/var/lib/dpkg/info/debianutils.postrm" + }, + { + "name": "syft:metadata:installedSize", + "value": "226" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/diffutils@1%3A3.7-3?arch=amd64&distro=debian-10&package-id=a19af11f72f0db48", + "type": "library", + "publisher": "Santiago Vila ", + "name": "diffutils", + "version": "1:3.7-3", + "licenses": [ + { + "license": { + "name": "GFDL" + } + }, + { + "license": { + "name": "GPL" + } + } + ], + "cpe": "cpe:2.3:a:diffutils:diffutils:1\\:3.7-3:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/diffutils@1%3A3.7-3?arch=amd64&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/diffutils/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/diffutils.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/diffutils.list" + }, + { + "name": "syft:metadata:installedSize", + "value": "1574" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/dpkg@1.19.7?arch=amd64&distro=debian-10&package-id=da9ff9a377f09d63", + "type": "library", + "publisher": "Dpkg Developers ", + "name": "dpkg", + "version": "1.19.7", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "name": "public-domain-md5" + } + }, + { + "license": { + "name": "public-domain-s-s-d" + } + } + ], + "cpe": "cpe:2.3:a:dpkg:dpkg:1.19.7:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/dpkg@1.19.7?arch=amd64&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/dpkg/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/dpkg.conffiles" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/dpkg.md5sums" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/dpkg.list" + }, + { + "name": "syft:location:7:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:7:path", + "value": "/var/lib/dpkg/info/dpkg.postinst" + }, + { + "name": "syft:location:8:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:8:path", + "value": "/var/lib/dpkg/info/dpkg.postrm" + }, + { + "name": "syft:metadata:installedSize", + "value": "6693" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/e2fsprogs@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=1675eecc8d4a417f", + "type": "library", + "publisher": "Theodore Y. Ts'o ", + "name": "e2fsprogs", + "version": "1.44.5-1+deb10u3", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.0-only" + } + } + ], + "cpe": "cpe:2.3:a:e2fsprogs:e2fsprogs:1.44.5-1\\+deb10u3:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/e2fsprogs@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/e2fsprogs/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/e2fsprogs.conffiles" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/e2fsprogs.md5sums" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/e2fsprogs.list" + }, + { + "name": "syft:location:7:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:7:path", + "value": "/var/lib/dpkg/info/e2fsprogs.postinst" + }, + { + "name": "syft:location:8:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:8:path", + "value": "/var/lib/dpkg/info/e2fsprogs.preinst" + }, + { + "name": "syft:metadata:installedSize", + "value": "1416" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/fdisk@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=4c321df8375fa5f7&upstream=util-linux", + "type": "library", + "publisher": "LaMont Jones ", + "name": "fdisk", + "version": "2.33.1-0.1", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + }, + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "BSD-4-Clause" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1-or-later" + } + }, + { + "license": { + "id": "LGPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-3.0-or-later" + } + }, + { + "license": { + "id": "MIT" + } + }, + { + "license": { + "name": "LGPL" + } + }, + { + "license": { + "name": "public-domain" + } + } + ], + "cpe": "cpe:2.3:a:fdisk:fdisk:2.33.1-0.1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/fdisk@2.33.1-0.1?arch=amd64&distro=debian-10&upstream=util-linux", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/fdisk/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/fdisk.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/fdisk.list" + }, + { + "name": "syft:metadata:installedSize", + "value": "483" + }, + { + "name": "syft:metadata:source", + "value": "util-linux" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/findutils@4.6.0%2Bgit%2B20190209-2?arch=amd64&distro=debian-10&package-id=9b3ed054ec2849a7", + "type": "library", + "publisher": "Andreas Metzler ", + "name": "findutils", + "version": "4.6.0+git+20190209-2", + "licenses": [ + { + "license": { + "id": "GFDL-1.3-only" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + } + ], + "cpe": "cpe:2.3:a:findutils:findutils:4.6.0\\+git\\+20190209-2:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/findutils@4.6.0%2Bgit%2B20190209-2?arch=amd64&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/findutils/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/findutils.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/findutils.list" + }, + { + "name": "syft:metadata:installedSize", + "value": "1938" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/gcc-8-base@8.3.0-6?arch=amd64&distro=debian-10&package-id=0b418e36eec6c020&upstream=gcc-8", + "type": "library", + "publisher": "Debian GCC Maintainers ", + "name": "gcc-8-base", + "version": "8.3.0-6", + "licenses": [ + { + "license": { + "id": "GFDL-1.2-only" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "name": "Artistic" + } + }, + { + "license": { + "name": "GPL" + } + }, + { + "license": { + "name": "LGPL" + } + } + ], + "cpe": "cpe:2.3:a:gcc-8-base:gcc-8-base:8.3.0-6:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/gcc-8-base@8.3.0-6?arch=amd64&distro=debian-10&upstream=gcc-8", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gcc-8-base:gcc_8_base:8.3.0-6:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gcc_8_base:gcc-8-base:8.3.0-6:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gcc_8_base:gcc_8_base:8.3.0-6:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gcc-8:gcc-8-base:8.3.0-6:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gcc-8:gcc_8_base:8.3.0-6:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gcc_8:gcc-8-base:8.3.0-6:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gcc_8:gcc_8_base:8.3.0-6:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gcc:gcc-8-base:8.3.0-6:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gcc:gcc_8_base:8.3.0-6:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/gcc-8-base/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/gcc-8-base:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "248" + }, + { + "name": "syft:metadata:source", + "value": "gcc-8" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/gpgv@2.2.12-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=7f936fc60378589a&upstream=gnupg2", + "type": "library", + "publisher": "Debian GnuPG Maintainers ", + "name": "gpgv", + "version": "2.2.12-1+deb10u1", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "CC0-1.0" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1-or-later" + } + }, + { + "license": { + "id": "LGPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-3.0-or-later" + } + }, + { + "license": { + "name": "Expat" + } + }, + { + "license": { + "name": "RFC-Reference" + } + }, + { + "license": { + "name": "TinySCHEME" + } + }, + { + "license": { + "name": "permissive" + } + } + ], + "cpe": "cpe:2.3:a:gpgv:gpgv:2.2.12-1\\+deb10u1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/gpgv@2.2.12-1%2Bdeb10u1?arch=amd64&distro=debian-10&upstream=gnupg2", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/gpgv/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/gpgv.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/gpgv.list" + }, + { + "name": "syft:metadata:installedSize", + "value": "837" + }, + { + "name": "syft:metadata:source", + "value": "gnupg2" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/grep@3.3-1?arch=amd64&distro=debian-10&package-id=d53561e4ff2a03a4", + "type": "library", + "publisher": "Anibal Monsalve Salazar ", + "name": "grep", + "version": "3.3-1", + "licenses": [ + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + } + ], + "cpe": "cpe:2.3:a:grep:grep:3.3-1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/grep@3.3-1?arch=amd64&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/grep/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/grep.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/grep.list" + }, + { + "name": "syft:metadata:installedSize", + "value": "1014" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/gzip@1.9-3?arch=amd64&distro=debian-10&package-id=febd6969a44b6c8c", + "type": "library", + "publisher": "Bdale Garbee ", + "name": "gzip", + "version": "1.9-3", + "licenses": [ + { + "license": { + "name": "GPL" + } + } + ], + "cpe": "cpe:2.3:a:gzip:gzip:1.9-3:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/gzip@1.9-3?arch=amd64&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/gzip/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/gzip.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/gzip.list" + }, + { + "name": "syft:metadata:installedSize", + "value": "243" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/hostname@3.21?arch=amd64&distro=debian-10&package-id=ca88bf2c2ca324fb", + "type": "library", + "publisher": "Michael Meskes ", + "name": "hostname", + "version": "3.21", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + } + ], + "cpe": "cpe:2.3:a:hostname:hostname:3.21:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/hostname@3.21?arch=amd64&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/hostname/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/hostname.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/hostname.list" + }, + { + "name": "syft:metadata:installedSize", + "value": "54" + } + ] + }, + { + "bom-ref": "pkg:generic/httpd@2.4.49?package-id=e031779968c5b607", + "type": "application", + "name": "httpd", + "version": "2.4.49", + "cpe": "cpe:2.3:a:apache:http_server:2.4.49:*:*:*:*:*:*:*", + "purl": "pkg:generic/httpd@2.4.49", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "binary-classifier-cataloger" + }, + { + "name": "syft:package:type", + "value": "binary" + }, + { + "name": "syft:package:metadataType", + "value": "binary-signature" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:0:path", + "value": "/usr/local/apache2/bin/httpd" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/init-system-helpers@1.56%2Bnmu1?arch=all&distro=debian-10&package-id=4a3347396c872902", + "type": "library", + "publisher": "Debian systemd Maintainers ", + "name": "init-system-helpers", + "version": "1.56+nmu1", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + } + ], + "cpe": "cpe:2.3:a:init-system-helpers:init-system-helpers:1.56\\+nmu1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/init-system-helpers@1.56%2Bnmu1?arch=all&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:init-system-helpers:init_system_helpers:1.56\\+nmu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:init_system_helpers:init-system-helpers:1.56\\+nmu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:init_system_helpers:init_system_helpers:1.56\\+nmu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:init-system:init-system-helpers:1.56\\+nmu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:init-system:init_system_helpers:1.56\\+nmu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:init_system:init-system-helpers:1.56\\+nmu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:init_system:init_system_helpers:1.56\\+nmu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:init:init-system-helpers:1.56\\+nmu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:init:init_system_helpers:1.56\\+nmu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/init-system-helpers/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/init-system-helpers.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/init-system-helpers.list" + }, + { + "name": "syft:metadata:installedSize", + "value": "133" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libacl1@2.2.53-4?arch=amd64&distro=debian-10&package-id=2f436d85fbc9eccc&upstream=acl", + "type": "library", + "publisher": "Guillem Jover ", + "name": "libacl1", + "version": "2.2.53-4", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + } + ], + "cpe": "cpe:2.3:a:libacl1:libacl1:2.2.53-4:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libacl1@2.2.53-4?arch=amd64&distro=debian-10&upstream=acl", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libacl1/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libacl1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "70" + }, + { + "name": "syft:metadata:source", + "value": "acl" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libapr1@1.6.5-1%2Bb1?arch=amd64&distro=debian-10&package-id=489cc45ede79feca&upstream=apr%401.6.5-1", + "type": "library", + "publisher": "Debian Apache Maintainers ", + "name": "libapr1", + "version": "1.6.5-1+b1", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "cpe": "cpe:2.3:a:libapr1:libapr1:1.6.5-1\\+b1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libapr1@1.6.5-1%2Bb1?arch=amd64&distro=debian-10&upstream=apr%401.6.5-1", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:2:path", + "value": "/usr/share/doc/libapr1/copyright" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:3:path", + "value": "/var/lib/dpkg/info/libapr1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "278" + }, + { + "name": "syft:metadata:source", + "value": "apr" + }, + { + "name": "syft:metadata:sourceVersion", + "value": "1.6.5-1" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libaprutil1@1.6.1-4?arch=amd64&distro=debian-10&package-id=eda9a1ee2039d110&upstream=apr-util", + "type": "library", + "publisher": "Debian Apache Maintainers ", + "name": "libaprutil1", + "version": "1.6.1-4", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "cpe": "cpe:2.3:a:libaprutil1:libaprutil1:1.6.1-4:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libaprutil1@1.6.1-4?arch=amd64&distro=debian-10&upstream=apr-util", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:2:path", + "value": "/usr/share/doc/libaprutil1/copyright" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:3:path", + "value": "/var/lib/dpkg/info/libaprutil1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "285" + }, + { + "name": "syft:metadata:source", + "value": "apr-util" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libaprutil1-ldap@1.6.1-4?arch=amd64&distro=debian-10&package-id=3d99122937baf6ae&upstream=apr-util", + "type": "library", + "publisher": "Debian Apache Maintainers ", + "name": "libaprutil1-ldap", + "version": "1.6.1-4", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "cpe": "cpe:2.3:a:libaprutil1-ldap:libaprutil1-ldap:1.6.1-4:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libaprutil1-ldap@1.6.1-4?arch=amd64&distro=debian-10&upstream=apr-util", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libaprutil1-ldap:libaprutil1_ldap:1.6.1-4:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libaprutil1_ldap:libaprutil1-ldap:1.6.1-4:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libaprutil1_ldap:libaprutil1_ldap:1.6.1-4:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libaprutil1:libaprutil1-ldap:1.6.1-4:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libaprutil1:libaprutil1_ldap:1.6.1-4:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:2:path", + "value": "/usr/share/doc/libaprutil1-ldap/copyright" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:3:path", + "value": "/var/lib/dpkg/info/libaprutil1-ldap:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "45" + }, + { + "name": "syft:metadata:source", + "value": "apr-util" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libapt-pkg5.0@1.8.2.3?arch=amd64&distro=debian-10&package-id=6424d2241f89a045&upstream=apt", + "type": "library", + "publisher": "APT Development Team ", + "name": "libapt-pkg5.0", + "version": "1.8.2.3", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "name": "GPLv2+" + } + } + ], + "cpe": "cpe:2.3:a:libapt-pkg5.0:libapt-pkg5.0:1.8.2.3:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libapt-pkg5.0@1.8.2.3?arch=amd64&distro=debian-10&upstream=apt", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libapt-pkg5.0:libapt_pkg5.0:1.8.2.3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libapt_pkg5.0:libapt-pkg5.0:1.8.2.3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libapt_pkg5.0:libapt_pkg5.0:1.8.2.3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libapt:libapt-pkg5.0:1.8.2.3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libapt:libapt_pkg5.0:1.8.2.3:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libapt-pkg5.0/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libapt-pkg5.0:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "3243" + }, + { + "name": "syft:metadata:source", + "value": "apt" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libattr1@1%3A2.4.48-4?arch=amd64&distro=debian-10&package-id=354fec30a51d2496&upstream=attr", + "type": "library", + "publisher": "Guillem Jover ", + "name": "libattr1", + "version": "1:2.4.48-4", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + } + ], + "cpe": "cpe:2.3:a:libattr1:libattr1:1\\:2.4.48-4:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libattr1@1%3A2.4.48-4?arch=amd64&distro=debian-10&upstream=attr", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libattr1/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libattr1:amd64.conffiles" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/libattr1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "55" + }, + { + "name": "syft:metadata:source", + "value": "attr" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libaudit-common@1%3A2.8.4-3?arch=all&distro=debian-10&package-id=15a24d26841e3183&upstream=audit", + "type": "library", + "publisher": "Laurent Bigonville ", + "name": "libaudit-common", + "version": "1:2.8.4-3", + "licenses": [ + { + "license": { + "id": "GPL-1.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + } + ], + "cpe": "cpe:2.3:a:libaudit-common:libaudit-common:1\\:2.8.4-3:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libaudit-common@1%3A2.8.4-3?arch=all&distro=debian-10&upstream=audit", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libaudit-common:libaudit_common:1\\:2.8.4-3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libaudit_common:libaudit-common:1\\:2.8.4-3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libaudit_common:libaudit_common:1\\:2.8.4-3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libaudit:libaudit-common:1\\:2.8.4-3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libaudit:libaudit_common:1\\:2.8.4-3:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libaudit-common/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libaudit-common.conffiles" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/libaudit-common.md5sums" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/libaudit-common.list" + }, + { + "name": "syft:metadata:installedSize", + "value": "33" + }, + { + "name": "syft:metadata:source", + "value": "audit" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libaudit1@1%3A2.8.4-3?arch=amd64&distro=debian-10&package-id=e445bed1f84bcb4b&upstream=audit", + "type": "library", + "publisher": "Laurent Bigonville ", + "name": "libaudit1", + "version": "1:2.8.4-3", + "licenses": [ + { + "license": { + "id": "GPL-1.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + } + ], + "cpe": "cpe:2.3:a:libaudit1:libaudit1:1\\:2.8.4-3:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libaudit1@1%3A2.8.4-3?arch=amd64&distro=debian-10&upstream=audit", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libaudit1/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libaudit1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "161" + }, + { + "name": "syft:metadata:source", + "value": "audit" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libblkid1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=d20eac8952a5e6b5&upstream=util-linux", + "type": "library", + "publisher": "LaMont Jones ", + "name": "libblkid1", + "version": "2.33.1-0.1", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + }, + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "BSD-4-Clause" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1-or-later" + } + }, + { + "license": { + "id": "LGPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-3.0-or-later" + } + }, + { + "license": { + "id": "MIT" + } + }, + { + "license": { + "name": "LGPL" + } + }, + { + "license": { + "name": "public-domain" + } + } + ], + "cpe": "cpe:2.3:a:libblkid1:libblkid1:2.33.1-0.1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libblkid1@2.33.1-0.1?arch=amd64&distro=debian-10&upstream=util-linux", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libblkid1/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libblkid1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "428" + }, + { + "name": "syft:metadata:source", + "value": "util-linux" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libbrotli1@1.0.7-2%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=d61cdb80f6254e3e&upstream=brotli", + "type": "library", + "publisher": "Tomasz Buchert ", + "name": "libbrotli1", + "version": "1.0.7-2+deb10u1", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "cpe": "cpe:2.3:a:libbrotli1:libbrotli1:1.0.7-2\\+deb10u1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libbrotli1@1.0.7-2%2Bdeb10u1?arch=amd64&distro=debian-10&upstream=brotli", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/usr/share/doc/libbrotli1/copyright" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/libbrotli1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "775" + }, + { + "name": "syft:metadata:source", + "value": "brotli" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libbz2-1.0@1.0.6-9.2~deb10u1?arch=amd64&distro=debian-10&package-id=0908c2a2770a4bad&upstream=bzip2", + "type": "library", + "publisher": "Anibal Monsalve Salazar ", + "name": "libbz2-1.0", + "version": "1.0.6-9.2~deb10u1", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "name": "BSD-variant" + } + } + ], + "cpe": "cpe:2.3:a:libbz2-1.0:libbz2-1.0:1.0.6-9.2\\~deb10u1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libbz2-1.0@1.0.6-9.2~deb10u1?arch=amd64&distro=debian-10&upstream=bzip2", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libbz2-1.0:libbz2_1.0:1.0.6-9.2\\~deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libbz2_1.0:libbz2-1.0:1.0.6-9.2\\~deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libbz2_1.0:libbz2_1.0:1.0.6-9.2\\~deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libbz2:libbz2-1.0:1.0.6-9.2\\~deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libbz2:libbz2_1.0:1.0.6-9.2\\~deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libbz2-1.0/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libbz2-1.0:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "104" + }, + { + "name": "syft:metadata:source", + "value": "bzip2" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libc-bin@2.28-10?arch=amd64&distro=debian-10&package-id=324d5fb6de70a42b&upstream=glibc", + "type": "library", + "publisher": "GNU Libc Maintainers ", + "name": "libc-bin", + "version": "2.28-10", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + } + ], + "cpe": "cpe:2.3:a:libc-bin:libc-bin:2.28-10:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libc-bin@2.28-10?arch=amd64&distro=debian-10&upstream=glibc", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libc-bin:libc_bin:2.28-10:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libc_bin:libc-bin:2.28-10:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libc_bin:libc_bin:2.28-10:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libc:libc-bin:2.28-10:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libc:libc_bin:2.28-10:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libc-bin/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libc-bin.conffiles" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/libc-bin.md5sums" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/libc-bin.list" + }, + { + "name": "syft:location:7:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:7:path", + "value": "/var/lib/dpkg/info/libc-bin.postinst" + }, + { + "name": "syft:location:8:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:8:path", + "value": "/var/lib/dpkg/info/libc-bin.triggers" + }, + { + "name": "syft:metadata:installedSize", + "value": "3493" + }, + { + "name": "syft:metadata:source", + "value": "glibc" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "type": "library", + "publisher": "GNU Libc Maintainers ", + "name": "libc6", + "version": "2.28-10", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + } + ], + "cpe": "cpe:2.3:a:libc6:libc6:2.28-10:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&upstream=glibc", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libc6/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libc6:amd64.conffiles" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/libc6:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "12337" + }, + { + "name": "syft:metadata:source", + "value": "glibc" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libcap-ng0@0.7.9-2?arch=amd64&distro=debian-10&package-id=aaab7004e87358fb&upstream=libcap-ng", + "type": "library", + "publisher": "Pierre Chifflier ", + "name": "libcap-ng0", + "version": "0.7.9-2", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + } + ], + "cpe": "cpe:2.3:a:libcap-ng0:libcap-ng0:0.7.9-2:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libcap-ng0@0.7.9-2?arch=amd64&distro=debian-10&upstream=libcap-ng", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libcap-ng0:libcap_ng0:0.7.9-2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libcap_ng0:libcap-ng0:0.7.9-2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libcap_ng0:libcap_ng0:0.7.9-2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libcap:libcap-ng0:0.7.9-2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libcap:libcap_ng0:0.7.9-2:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libcap-ng0/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libcap-ng0:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "47" + }, + { + "name": "syft:metadata:source", + "value": "libcap-ng" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libcom-err2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=1a8a9dbb194df5d1&upstream=e2fsprogs", + "type": "library", + "publisher": "Theodore Y. Ts'o ", + "name": "libcom-err2", + "version": "1.44.5-1+deb10u3", + "licenses": [ + { + "license": { + "name": "LicenseRef-sha256:9e3a4384b6d8d2358d44103f62bcd948328b3f8a63a1a6baa66abeb43302d581" + } + } + ], + "cpe": "cpe:2.3:a:libcom-err2:libcom-err2:1.44.5-1\\+deb10u3:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libcom-err2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&upstream=e2fsprogs", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libcom-err2:libcom_err2:1.44.5-1\\+deb10u3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libcom_err2:libcom-err2:1.44.5-1\\+deb10u3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libcom_err2:libcom_err2:1.44.5-1\\+deb10u3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libcom:libcom-err2:1.44.5-1\\+deb10u3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libcom:libcom_err2:1.44.5-1\\+deb10u3:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libcom-err2/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libcom-err2:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "92" + }, + { + "name": "syft:metadata:source", + "value": "e2fsprogs" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libcurl4@7.64.0-4%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=af03801f530228cd&upstream=curl", + "type": "library", + "publisher": "Alessandro Ghedini ", + "name": "libcurl4", + "version": "7.64.0-4+deb10u2", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "BSD-4-Clause" + } + }, + { + "license": { + "id": "ISC" + } + }, + { + "license": { + "id": "curl" + } + }, + { + "license": { + "name": "other" + } + }, + { + "license": { + "name": "public-domain" + } + } + ], + "cpe": "cpe:2.3:a:libcurl4:libcurl4:7.64.0-4\\+deb10u2:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libcurl4@7.64.0-4%2Bdeb10u2?arch=amd64&distro=debian-10&upstream=curl", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/usr/share/doc/libcurl4/copyright" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/libcurl4:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "698" + }, + { + "name": "syft:metadata:source", + "value": "curl" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libdb5.3@5.3.28%2Bdfsg1-0.5?arch=amd64&distro=debian-10&package-id=910a20bdce3547ea&upstream=db5.3", + "type": "library", + "publisher": "Debian Berkeley DB Team ", + "name": "libdb5.3", + "version": "5.3.28+dfsg1-0.5", + "licenses": [ + { + "license": { + "name": "LicenseRef-sha256:b3bbc6fbb3f2a0e6a487e953eb8c3cc4bdb6f4150f7f51d20b1e9a3c8ef92d3d" + } + } + ], + "cpe": "cpe:2.3:a:libdb5.3:libdb5.3:5.3.28\\+dfsg1-0.5:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libdb5.3@5.3.28%2Bdfsg1-0.5?arch=amd64&distro=debian-10&upstream=db5.3", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libdb5.3/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libdb5.3:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "1802" + }, + { + "name": "syft:metadata:source", + "value": "db5.3" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libdebconfclient0@0.249?arch=amd64&distro=debian-10&package-id=0ab574cc914c04a7&upstream=cdebconf", + "type": "library", + "publisher": "Debian Install System Team ", + "name": "libdebconfclient0", + "version": "0.249", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + } + ], + "cpe": "cpe:2.3:a:libdebconfclient0:libdebconfclient0:0.249:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libdebconfclient0@0.249?arch=amd64&distro=debian-10&upstream=cdebconf", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libdebconfclient0/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libdebconfclient0:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "72" + }, + { + "name": "syft:metadata:source", + "value": "cdebconf" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libexpat1@2.2.6-2%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=d55bfe42f054b394&upstream=expat", + "type": "library", + "publisher": "Laszlo Boszormenyi (GCS) ", + "name": "libexpat1", + "version": "2.2.6-2+deb10u1", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "cpe": "cpe:2.3:a:libexpat1:libexpat1:2.2.6-2\\+deb10u1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libexpat1@2.2.6-2%2Bdeb10u1?arch=amd64&distro=debian-10&upstream=expat", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:2:path", + "value": "/usr/share/doc/libexpat1/copyright" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:3:path", + "value": "/var/lib/dpkg/info/libexpat1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "519" + }, + { + "name": "syft:metadata:source", + "value": "expat" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libext2fs2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=e40d517f10e825e0&upstream=e2fsprogs", + "type": "library", + "publisher": "Theodore Y. Ts'o ", + "name": "libext2fs2", + "version": "1.44.5-1+deb10u3", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.0-only" + } + } + ], + "cpe": "cpe:2.3:a:libext2fs2:libext2fs2:1.44.5-1\\+deb10u3:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libext2fs2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&upstream=e2fsprogs", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libext2fs2/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libext2fs2:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "476" + }, + { + "name": "syft:metadata:source", + "value": "e2fsprogs" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libfdisk1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=54c2753ee170e0ea&upstream=util-linux", + "type": "library", + "publisher": "LaMont Jones ", + "name": "libfdisk1", + "version": "2.33.1-0.1", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + }, + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "BSD-4-Clause" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1-or-later" + } + }, + { + "license": { + "id": "LGPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-3.0-or-later" + } + }, + { + "license": { + "id": "MIT" + } + }, + { + "license": { + "name": "LGPL" + } + }, + { + "license": { + "name": "public-domain" + } + } + ], + "cpe": "cpe:2.3:a:libfdisk1:libfdisk1:2.33.1-0.1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libfdisk1@2.33.1-0.1?arch=amd64&distro=debian-10&upstream=util-linux", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libfdisk1/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libfdisk1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "546" + }, + { + "name": "syft:metadata:source", + "value": "util-linux" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libffi6@3.2.1-9?arch=amd64&distro=debian-10&package-id=81f81c06eb491929&upstream=libffi", + "type": "library", + "publisher": "Debian GCC Maintainers ", + "name": "libffi6", + "version": "3.2.1-9", + "licenses": [ + { + "license": { + "name": "GPL" + } + } + ], + "cpe": "cpe:2.3:a:libffi6:libffi6:3.2.1-9:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libffi6@3.2.1-9?arch=amd64&distro=debian-10&upstream=libffi", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libffi6/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libffi6:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "56" + }, + { + "name": "syft:metadata:source", + "value": "libffi" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libgcc1@1%3A8.3.0-6?arch=amd64&distro=debian-10&package-id=715380b30f28d876&upstream=gcc-8%408.3.0-6", + "type": "library", + "publisher": "Debian GCC Maintainers ", + "name": "libgcc1", + "version": "1:8.3.0-6", + "licenses": [ + { + "license": { + "id": "GFDL-1.2-only" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "name": "Artistic" + } + }, + { + "license": { + "name": "GPL" + } + }, + { + "license": { + "name": "LGPL" + } + } + ], + "cpe": "cpe:2.3:a:libgcc1:libgcc1:1\\:8.3.0-6:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libgcc1@1%3A8.3.0-6?arch=amd64&distro=debian-10&upstream=gcc-8%408.3.0-6", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/gcc-8-base/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libgcc1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "116" + }, + { + "name": "syft:metadata:source", + "value": "gcc-8" + }, + { + "name": "syft:metadata:sourceVersion", + "value": "8.3.0-6" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libgcrypt20@1.8.4-5%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=7957520e1bba8fa0", + "type": "library", + "publisher": "Debian GnuTLS Maintainers ", + "name": "libgcrypt20", + "version": "1.8.4-5+deb10u1", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "name": "LGPL" + } + } + ], + "cpe": "cpe:2.3:a:libgcrypt20:libgcrypt20:1.8.4-5\\+deb10u1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libgcrypt20@1.8.4-5%2Bdeb10u1?arch=amd64&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libgcrypt20/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libgcrypt20:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "1343" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libgdbm6@1.18.1-4?arch=amd64&distro=debian-10&package-id=c9afbf45b6ae55eb&upstream=gdbm", + "type": "library", + "publisher": "Dmitry Bogatov ", + "name": "libgdbm6", + "version": "1.18.1-4", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "name": "GFDL-NIV-1.3+" + } + } + ], + "cpe": "cpe:2.3:a:libgdbm6:libgdbm6:1.18.1-4:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libgdbm6@1.18.1-4?arch=amd64&distro=debian-10&upstream=gdbm", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:2:path", + "value": "/usr/share/doc/libgdbm6/copyright" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:3:path", + "value": "/var/lib/dpkg/info/libgdbm6:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "117" + }, + { + "name": "syft:metadata:source", + "value": "gdbm" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libgmp10@2%3A6.1.2%2Bdfsg-4?arch=amd64&distro=debian-10&package-id=5a68e3044376edb7&upstream=gmp", + "type": "library", + "publisher": "Debian Science Team ", + "name": "libgmp10", + "version": "2:6.1.2+dfsg-4", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-3.0-only" + } + }, + { + "license": { + "name": "GPL" + } + } + ], + "cpe": "cpe:2.3:a:libgmp10:libgmp10:2\\:6.1.2\\+dfsg-4:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libgmp10@2%3A6.1.2%2Bdfsg-4?arch=amd64&distro=debian-10&upstream=gmp", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libgmp10/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libgmp10:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "565" + }, + { + "name": "syft:metadata:source", + "value": "gmp" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libgnutls30@3.6.7-4%2Bdeb10u7?arch=amd64&distro=debian-10&package-id=2b175f545e2e827e&upstream=gnutls28", + "type": "library", + "publisher": "Debian GnuTLS Maintainers ", + "name": "libgnutls30", + "version": "3.6.7-4+deb10u7", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + }, + { + "license": { + "id": "GFDL-1.3-only" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-3.0-only" + } + }, + { + "license": { + "name": "CC0" + } + }, + { + "license": { + "name": "GPL" + } + }, + { + "license": { + "name": "GPLv3+" + } + }, + { + "license": { + "name": "LGPL" + } + }, + { + "license": { + "name": "LGPLv3+_or_GPLv2+" + } + }, + { + "license": { + "name": "The" + } + } + ], + "cpe": "cpe:2.3:a:libgnutls30:libgnutls30:3.6.7-4\\+deb10u7:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libgnutls30@3.6.7-4%2Bdeb10u7?arch=amd64&distro=debian-10&upstream=gnutls28", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libgnutls30/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libgnutls30:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "2649" + }, + { + "name": "syft:metadata:source", + "value": "gnutls28" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libgpg-error0@1.35-1?arch=amd64&distro=debian-10&package-id=07738f8b4e87f646&upstream=libgpg-error", + "type": "library", + "publisher": "Debian GnuPG Maintainers ", + "name": "libgpg-error0", + "version": "1.35-1", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1-or-later" + } + }, + { + "license": { + "name": "g10-permissive" + } + } + ], + "cpe": "cpe:2.3:a:libgpg-error0:libgpg-error0:1.35-1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libgpg-error0@1.35-1?arch=amd64&distro=debian-10&upstream=libgpg-error", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libgpg-error0:libgpg_error0:1.35-1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libgpg_error0:libgpg-error0:1.35-1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libgpg_error0:libgpg_error0:1.35-1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libgpg:libgpg-error0:1.35-1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libgpg:libgpg_error0:1.35-1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libgpg-error0/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libgpg-error0:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "175" + }, + { + "name": "syft:metadata:source", + "value": "libgpg-error" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libgssapi-krb5-2@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=563dc09768844327&upstream=krb5", + "type": "library", + "publisher": "Sam Hartman ", + "name": "libgssapi-krb5-2", + "version": "1.17-3+deb10u2", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + } + ], + "cpe": "cpe:2.3:a:libgssapi-krb5-2:libgssapi-krb5-2:1.17-3\\+deb10u2:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libgssapi-krb5-2@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&upstream=krb5", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libgssapi-krb5-2:libgssapi_krb5_2:1.17-3\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libgssapi_krb5_2:libgssapi-krb5-2:1.17-3\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libgssapi_krb5_2:libgssapi_krb5_2:1.17-3\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libgssapi-krb5:libgssapi-krb5-2:1.17-3\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libgssapi-krb5:libgssapi_krb5_2:1.17-3\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libgssapi_krb5:libgssapi-krb5-2:1.17-3\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libgssapi_krb5:libgssapi_krb5_2:1.17-3\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libgssapi:libgssapi-krb5-2:1.17-3\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libgssapi:libgssapi_krb5_2:1.17-3\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/usr/share/doc/libgssapi-krb5-2/copyright" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/libgssapi-krb5-2:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "428" + }, + { + "name": "syft:metadata:source", + "value": "krb5" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libhogweed4@3.4.1-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=1c418be752fe00a9&upstream=nettle", + "type": "library", + "publisher": "Magnus Holmgren ", + "name": "libhogweed4", + "version": "3.4.1-1+deb10u1", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-or-later" + } + }, + { + "license": { + "name": "GAP" + } + }, + { + "license": { + "name": "GPL" + } + }, + { + "license": { + "name": "LGPL" + } + }, + { + "license": { + "name": "other" + } + }, + { + "license": { + "name": "public-domain" + } + } + ], + "cpe": "cpe:2.3:a:libhogweed4:libhogweed4:3.4.1-1\\+deb10u1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libhogweed4@3.4.1-1%2Bdeb10u1?arch=amd64&distro=debian-10&upstream=nettle", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libnettle6/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libhogweed4:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "246" + }, + { + "name": "syft:metadata:source", + "value": "nettle" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libicu63@63.1-6%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=a180ea9e3b7989a3&upstream=icu", + "type": "library", + "publisher": "Laszlo Boszormenyi (GCS) ", + "name": "libicu63", + "version": "63.1-6+deb10u1", + "licenses": [ + { + "license": { + "name": "LicenseRef-sha256:0515ea67c829d73cf54d074ef7bd030968419f98a83e523d4300ea0f4d18ebc9" + } + } + ], + "cpe": "cpe:2.3:a:libicu63:libicu63:63.1-6\\+deb10u1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libicu63@63.1-6%2Bdeb10u1?arch=amd64&distro=debian-10&upstream=icu", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/usr/share/doc/libicu63/copyright" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/libicu63:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "31687" + }, + { + "name": "syft:metadata:source", + "value": "icu" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libidn2-0@2.0.5-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=5a5081d247582e95&upstream=libidn2", + "type": "library", + "publisher": "Debian Libidn team ", + "name": "libidn2-0", + "version": "2.0.5-1+deb10u1", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "id": "LGPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-3.0-or-later" + } + }, + { + "license": { + "name": "Unicode" + } + } + ], + "cpe": "cpe:2.3:a:libidn2-0:libidn2-0:2.0.5-1\\+deb10u1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libidn2-0@2.0.5-1%2Bdeb10u1?arch=amd64&distro=debian-10&upstream=libidn2", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libidn2-0:libidn2_0:2.0.5-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libidn2_0:libidn2-0:2.0.5-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libidn2_0:libidn2_0:2.0.5-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libidn2:libidn2-0:2.0.5-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libidn2:libidn2_0:2.0.5-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libidn2-0/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libidn2-0:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "280" + }, + { + "name": "syft:metadata:source", + "value": "libidn2" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libjansson4@2.12-1?arch=amd64&distro=debian-10&package-id=88fb69b90900ef4f&upstream=jansson", + "type": "library", + "publisher": "Alessandro Ghedini ", + "name": "libjansson4", + "version": "2.12-1", + "licenses": [ + { + "license": { + "name": "Expat" + } + } + ], + "cpe": "cpe:2.3:a:libjansson4:libjansson4:2.12-1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libjansson4@2.12-1?arch=amd64&distro=debian-10&upstream=jansson", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/usr/share/doc/libjansson4/copyright" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/libjansson4:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "87" + }, + { + "name": "syft:metadata:source", + "value": "jansson" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libk5crypto3@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=04ecc244c55268d8&upstream=krb5", + "type": "library", + "publisher": "Sam Hartman ", + "name": "libk5crypto3", + "version": "1.17-3+deb10u2", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + } + ], + "cpe": "cpe:2.3:a:libk5crypto3:libk5crypto3:1.17-3\\+deb10u2:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libk5crypto3@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&upstream=krb5", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/usr/share/doc/libk5crypto3/copyright" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/libk5crypto3:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "313" + }, + { + "name": "syft:metadata:source", + "value": "krb5" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libkeyutils1@1.6-6?arch=amd64&distro=debian-10&package-id=1ed46086dbffc087&upstream=keyutils", + "type": "library", + "publisher": "Christian Kastner ", + "name": "libkeyutils1", + "version": "1.6-6", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.0-or-later" + } + } + ], + "cpe": "cpe:2.3:a:libkeyutils1:libkeyutils1:1.6-6:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libkeyutils1@1.6-6?arch=amd64&distro=debian-10&upstream=keyutils", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/usr/share/doc/libkeyutils1/copyright" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/libkeyutils1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "45" + }, + { + "name": "syft:metadata:source", + "value": "keyutils" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libkrb5-3@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=2702e37fa523f601&upstream=krb5", + "type": "library", + "publisher": "Sam Hartman ", + "name": "libkrb5-3", + "version": "1.17-3+deb10u2", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + } + ], + "cpe": "cpe:2.3:a:libkrb5-3:libkrb5-3:1.17-3\\+deb10u2:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libkrb5-3@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&upstream=krb5", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libkrb5-3:libkrb5_3:1.17-3\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libkrb5_3:libkrb5-3:1.17-3\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libkrb5_3:libkrb5_3:1.17-3\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libkrb5:libkrb5-3:1.17-3\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libkrb5:libkrb5_3:1.17-3\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/usr/share/doc/libkrb5-3/copyright" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/libkrb5-3:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "1134" + }, + { + "name": "syft:metadata:source", + "value": "krb5" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libkrb5support0@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=23be6b473ec0b06b&upstream=krb5", + "type": "library", + "publisher": "Sam Hartman ", + "name": "libkrb5support0", + "version": "1.17-3+deb10u2", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + } + ], + "cpe": "cpe:2.3:a:libkrb5support0:libkrb5support0:1.17-3\\+deb10u2:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libkrb5support0@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&upstream=krb5", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/usr/share/doc/libkrb5support0/copyright" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/libkrb5support0:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "170" + }, + { + "name": "syft:metadata:source", + "value": "krb5" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libldap-2.4-2@2.4.47%2Bdfsg-3%2Bdeb10u6?arch=amd64&distro=debian-10&package-id=b63707706e516b73&upstream=openldap", + "type": "library", + "publisher": "Debian OpenLDAP Maintainers ", + "name": "libldap-2.4-2", + "version": "2.4.47+dfsg-3+deb10u6", + "licenses": [ + { + "license": { + "name": "LicenseRef-sha256:0690f1ee382f98e95b446743db55395641d5e258de65939e9cb1c660d67a43a8" + } + } + ], + "cpe": "cpe:2.3:a:libldap-2.4-2:libldap-2.4-2:2.4.47\\+dfsg-3\\+deb10u6:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libldap-2.4-2@2.4.47%2Bdfsg-3%2Bdeb10u6?arch=amd64&distro=debian-10&upstream=openldap", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libldap-2.4-2:libldap_2.4_2:2.4.47\\+dfsg-3\\+deb10u6:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libldap_2.4_2:libldap-2.4-2:2.4.47\\+dfsg-3\\+deb10u6:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libldap_2.4_2:libldap_2.4_2:2.4.47\\+dfsg-3\\+deb10u6:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libldap-2.4:libldap-2.4-2:2.4.47\\+dfsg-3\\+deb10u6:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libldap-2.4:libldap_2.4_2:2.4.47\\+dfsg-3\\+deb10u6:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libldap_2.4:libldap-2.4-2:2.4.47\\+dfsg-3\\+deb10u6:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libldap_2.4:libldap_2.4_2:2.4.47\\+dfsg-3\\+deb10u6:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libldap:libldap-2.4-2:2.4.47\\+dfsg-3\\+deb10u6:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libldap:libldap_2.4_2:2.4.47\\+dfsg-3\\+deb10u6:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:2:path", + "value": "/usr/share/doc/libldap-2.4-2/copyright" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:3:path", + "value": "/var/lib/dpkg/info/libldap-2.4-2:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "526" + }, + { + "name": "syft:metadata:source", + "value": "openldap" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libldap-common@2.4.47%2Bdfsg-3%2Bdeb10u6?arch=all&distro=debian-10&package-id=f04113280174888f&upstream=openldap", + "type": "library", + "publisher": "Debian OpenLDAP Maintainers ", + "name": "libldap-common", + "version": "2.4.47+dfsg-3+deb10u6", + "licenses": [ + { + "license": { + "name": "LicenseRef-sha256:0690f1ee382f98e95b446743db55395641d5e258de65939e9cb1c660d67a43a8" + } + } + ], + "cpe": "cpe:2.3:a:libldap-common:libldap-common:2.4.47\\+dfsg-3\\+deb10u6:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libldap-common@2.4.47%2Bdfsg-3%2Bdeb10u6?arch=all&distro=debian-10&upstream=openldap", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libldap-common:libldap_common:2.4.47\\+dfsg-3\\+deb10u6:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libldap_common:libldap-common:2.4.47\\+dfsg-3\\+deb10u6:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libldap_common:libldap_common:2.4.47\\+dfsg-3\\+deb10u6:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libldap:libldap-common:2.4.47\\+dfsg-3\\+deb10u6:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libldap:libldap_common:2.4.47\\+dfsg-3\\+deb10u6:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:2:path", + "value": "/usr/share/doc/libldap-common/copyright" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:3:path", + "value": "/var/lib/dpkg/info/libldap-common.conffiles" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libldap-common.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/libldap-common.list" + }, + { + "name": "syft:metadata:installedSize", + "value": "113" + }, + { + "name": "syft:metadata:source", + "value": "openldap" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/liblua5.2-0@5.2.4-1.1%2Bb2?arch=amd64&distro=debian-10&package-id=60163e6ffcd36f87&upstream=lua5.2%405.2.4-1.1", + "type": "library", + "publisher": "Enrico Tassi ", + "name": "liblua5.2-0", + "version": "5.2.4-1.1+b2", + "licenses": [ + { + "license": { + "name": "Expat" + } + } + ], + "cpe": "cpe:2.3:a:liblua5.2-0:liblua5.2-0:5.2.4-1.1\\+b2:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/liblua5.2-0@5.2.4-1.1%2Bb2?arch=amd64&distro=debian-10&upstream=lua5.2%405.2.4-1.1", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:liblua5.2-0:liblua5.2_0:5.2.4-1.1\\+b2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:liblua5.2_0:liblua5.2-0:5.2.4-1.1\\+b2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:liblua5.2_0:liblua5.2_0:5.2.4-1.1\\+b2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:liblua5.2:liblua5.2-0:5.2.4-1.1\\+b2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:liblua5.2:liblua5.2_0:5.2.4-1.1\\+b2:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/usr/share/doc/liblua5.2-0/copyright" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/liblua5.2-0:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "425" + }, + { + "name": "syft:metadata:source", + "value": "lua5.2" + }, + { + "name": "syft:metadata:sourceVersion", + "value": "5.2.4-1.1" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/liblz4-1@1.8.3-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=2ee01fd2c453e926&upstream=lz4", + "type": "library", + "publisher": "Nobuhiro Iwamatsu ", + "name": "liblz4-1", + "version": "1.8.3-1+deb10u1", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + } + ], + "cpe": "cpe:2.3:a:liblz4-1:liblz4-1:1.8.3-1\\+deb10u1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/liblz4-1@1.8.3-1%2Bdeb10u1?arch=amd64&distro=debian-10&upstream=lz4", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:liblz4-1:liblz4_1:1.8.3-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:liblz4_1:liblz4-1:1.8.3-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:liblz4_1:liblz4_1:1.8.3-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:liblz4:liblz4-1:1.8.3-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:liblz4:liblz4_1:1.8.3-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/liblz4-1/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/liblz4-1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "141" + }, + { + "name": "syft:metadata:source", + "value": "lz4" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/liblzma5@5.2.4-1?arch=amd64&distro=debian-10&package-id=c32191f717ec58de&upstream=xz-utils", + "type": "library", + "publisher": "Jonathan Nieder ", + "name": "liblzma5", + "version": "5.2.4-1", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1-or-later" + } + }, + { + "license": { + "name": "Autoconf" + } + }, + { + "license": { + "name": "PD" + } + }, + { + "license": { + "name": "PD-debian" + } + }, + { + "license": { + "name": "config-h" + } + }, + { + "license": { + "name": "noderivs" + } + }, + { + "license": { + "name": "permissive-fsf" + } + }, + { + "license": { + "name": "permissive-nowarranty" + } + }, + { + "license": { + "name": "probably-PD" + } + } + ], + "cpe": "cpe:2.3:a:liblzma5:liblzma5:5.2.4-1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/liblzma5@5.2.4-1?arch=amd64&distro=debian-10&upstream=xz-utils", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/liblzma5/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/liblzma5:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "263" + }, + { + "name": "syft:metadata:source", + "value": "xz-utils" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libmount1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=c6f6118ba99c54cb&upstream=util-linux", + "type": "library", + "publisher": "LaMont Jones ", + "name": "libmount1", + "version": "2.33.1-0.1", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + }, + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "BSD-4-Clause" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1-or-later" + } + }, + { + "license": { + "id": "LGPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-3.0-or-later" + } + }, + { + "license": { + "id": "MIT" + } + }, + { + "license": { + "name": "LGPL" + } + }, + { + "license": { + "name": "public-domain" + } + } + ], + "cpe": "cpe:2.3:a:libmount1:libmount1:2.33.1-0.1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libmount1@2.33.1-0.1?arch=amd64&distro=debian-10&upstream=util-linux", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libmount1/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libmount1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "475" + }, + { + "name": "syft:metadata:source", + "value": "util-linux" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libncursesw6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=6c56928a7efb44d4&upstream=ncurses", + "type": "library", + "publisher": "Craig Small ", + "name": "libncursesw6", + "version": "6.1+20181013-2+deb10u2", + "licenses": [ + { + "license": { + "name": "LicenseRef-sha256:5e8ee902c8906ddb7779fd36dc9979cb08b51fbebf7c0b1a9aeb78af382af590" + } + } + ], + "cpe": "cpe:2.3:a:libncursesw6:libncursesw6:6.1\\+20181013-2\\+deb10u2:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libncursesw6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&upstream=ncurses", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libtinfo6/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libncursesw6:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "411" + }, + { + "name": "syft:metadata:source", + "value": "ncurses" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libnettle6@3.4.1-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=89d7efaea95993d3&upstream=nettle", + "type": "library", + "publisher": "Magnus Holmgren ", + "name": "libnettle6", + "version": "3.4.1-1+deb10u1", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-or-later" + } + }, + { + "license": { + "name": "GAP" + } + }, + { + "license": { + "name": "GPL" + } + }, + { + "license": { + "name": "LGPL" + } + }, + { + "license": { + "name": "other" + } + }, + { + "license": { + "name": "public-domain" + } + } + ], + "cpe": "cpe:2.3:a:libnettle6:libnettle6:3.4.1-1\\+deb10u1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libnettle6@3.4.1-1%2Bdeb10u1?arch=amd64&distro=debian-10&upstream=nettle", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libnettle6/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libnettle6:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "380" + }, + { + "name": "syft:metadata:source", + "value": "nettle" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libnghttp2-14@1.36.0-2%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=0ee3c902a7004593&upstream=nghttp2", + "type": "library", + "publisher": "Tomasz Buchert ", + "name": "libnghttp2-14", + "version": "1.36.0-2+deb10u1", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "id": "MIT" + } + }, + { + "license": { + "name": "Expat" + } + }, + { + "license": { + "name": "SIL-OFL-1.1" + } + }, + { + "license": { + "name": "all-permissive" + } + } + ], + "cpe": "cpe:2.3:a:libnghttp2-14:libnghttp2-14:1.36.0-2\\+deb10u1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libnghttp2-14@1.36.0-2%2Bdeb10u1?arch=amd64&distro=debian-10&upstream=nghttp2", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libnghttp2-14:libnghttp2_14:1.36.0-2\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libnghttp2_14:libnghttp2-14:1.36.0-2\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libnghttp2_14:libnghttp2_14:1.36.0-2\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libnghttp2:libnghttp2-14:1.36.0-2\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libnghttp2:libnghttp2_14:1.36.0-2\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/usr/share/doc/libnghttp2-14/copyright" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/libnghttp2-14:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "210" + }, + { + "name": "syft:metadata:source", + "value": "nghttp2" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libp11-kit0@0.23.15-2%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=dac1be12b689bc10&upstream=p11-kit", + "type": "library", + "publisher": "Debian GnuTLS Maintainers ", + "name": "libp11-kit0", + "version": "0.23.15-2+deb10u1", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "ISC" + } + }, + { + "license": { + "name": "ISC+IBM" + } + }, + { + "license": { + "name": "permissive-like-automake-output" + } + }, + { + "license": { + "name": "same-as-rest-of-p11kit" + } + } + ], + "cpe": "cpe:2.3:a:libp11-kit0:libp11-kit0:0.23.15-2\\+deb10u1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libp11-kit0@0.23.15-2%2Bdeb10u1?arch=amd64&distro=debian-10&upstream=p11-kit", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libp11-kit0:libp11_kit0:0.23.15-2\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libp11_kit0:libp11-kit0:0.23.15-2\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libp11_kit0:libp11_kit0:0.23.15-2\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libp11:libp11-kit0:0.23.15-2\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libp11:libp11_kit0:0.23.15-2\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libp11-kit0/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libp11-kit0:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "1365" + }, + { + "name": "syft:metadata:source", + "value": "p11-kit" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libpam-modules@1.3.1-5?arch=amd64&distro=debian-10&package-id=5913b683bb6ecea4&upstream=pam", + "type": "library", + "publisher": "Steve Langasek ", + "name": "libpam-modules", + "version": "1.3.1-5", + "licenses": [ + { + "license": { + "name": "GPL" + } + } + ], + "cpe": "cpe:2.3:a:libpam-modules:libpam-modules:1.3.1-5:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libpam-modules@1.3.1-5?arch=amd64&distro=debian-10&upstream=pam", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam-modules:libpam_modules:1.3.1-5:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam_modules:libpam-modules:1.3.1-5:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam_modules:libpam_modules:1.3.1-5:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam:libpam-modules:1.3.1-5:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam:libpam_modules:1.3.1-5:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libpam-modules/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libpam-modules:amd64.conffiles" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/libpam-modules:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "1059" + }, + { + "name": "syft:metadata:source", + "value": "pam" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libpam-modules-bin@1.3.1-5?arch=amd64&distro=debian-10&package-id=631d9f9526108591&upstream=pam", + "type": "library", + "publisher": "Steve Langasek ", + "name": "libpam-modules-bin", + "version": "1.3.1-5", + "licenses": [ + { + "license": { + "name": "GPL" + } + } + ], + "cpe": "cpe:2.3:a:libpam-modules-bin:libpam-modules-bin:1.3.1-5:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libpam-modules-bin@1.3.1-5?arch=amd64&distro=debian-10&upstream=pam", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam-modules-bin:libpam_modules_bin:1.3.1-5:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam_modules_bin:libpam-modules-bin:1.3.1-5:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam_modules_bin:libpam_modules_bin:1.3.1-5:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam-modules:libpam-modules-bin:1.3.1-5:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam-modules:libpam_modules_bin:1.3.1-5:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam_modules:libpam-modules-bin:1.3.1-5:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam_modules:libpam_modules_bin:1.3.1-5:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam:libpam-modules-bin:1.3.1-5:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam:libpam_modules_bin:1.3.1-5:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libpam-modules-bin/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libpam-modules-bin.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/libpam-modules-bin.list" + }, + { + "name": "syft:metadata:installedSize", + "value": "238" + }, + { + "name": "syft:metadata:source", + "value": "pam" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libpam-runtime@1.3.1-5?arch=all&distro=debian-10&package-id=25a1580763811c2a&upstream=pam", + "type": "library", + "publisher": "Steve Langasek ", + "name": "libpam-runtime", + "version": "1.3.1-5", + "licenses": [ + { + "license": { + "name": "GPL" + } + } + ], + "cpe": "cpe:2.3:a:libpam-runtime:libpam-runtime:1.3.1-5:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libpam-runtime@1.3.1-5?arch=all&distro=debian-10&upstream=pam", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam-runtime:libpam_runtime:1.3.1-5:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam_runtime:libpam-runtime:1.3.1-5:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam_runtime:libpam_runtime:1.3.1-5:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam:libpam-runtime:1.3.1-5:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam:libpam_runtime:1.3.1-5:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:10:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:10:path", + "value": "/var/lib/dpkg/info/libpam-runtime.templates" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libpam-runtime/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libpam-runtime.conffiles" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/libpam-runtime.md5sums" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/libpam-runtime.list" + }, + { + "name": "syft:location:7:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:7:path", + "value": "/var/lib/dpkg/info/libpam-runtime.postinst" + }, + { + "name": "syft:location:8:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:8:path", + "value": "/var/lib/dpkg/info/libpam-runtime.postrm" + }, + { + "name": "syft:location:9:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:9:path", + "value": "/var/lib/dpkg/info/libpam-runtime.prerm" + }, + { + "name": "syft:metadata:installedSize", + "value": "1072" + }, + { + "name": "syft:metadata:source", + "value": "pam" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libpam0g@1.3.1-5?arch=amd64&distro=debian-10&package-id=75c54a61b843e467&upstream=pam", + "type": "library", + "publisher": "Steve Langasek ", + "name": "libpam0g", + "version": "1.3.1-5", + "licenses": [ + { + "license": { + "name": "GPL" + } + } + ], + "cpe": "cpe:2.3:a:libpam0g:libpam0g:1.3.1-5:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libpam0g@1.3.1-5?arch=amd64&distro=debian-10&upstream=pam", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libpam0g/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libpam0g:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "244" + }, + { + "name": "syft:metadata:source", + "value": "pam" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libpcre3@2%3A8.39-12?arch=amd64&distro=debian-10&package-id=35b7de3a80d53d59&upstream=pcre3", + "type": "library", + "publisher": "Matthew Vernon ", + "name": "libpcre3", + "version": "2:8.39-12", + "licenses": [ + { + "license": { + "name": "LicenseRef-sha256:ac9276490d2fa167442ae1aae33926514ad10c8886baa40046c5e367fccc5938" + } + } + ], + "cpe": "cpe:2.3:a:libpcre3:libpcre3:2\\:8.39-12:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libpcre3@2%3A8.39-12?arch=amd64&distro=debian-10&upstream=pcre3", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libpcre3/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libpcre3:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "673" + }, + { + "name": "syft:metadata:source", + "value": "pcre3" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libpsl5@0.20.2-2?arch=amd64&distro=debian-10&package-id=409f4da8465b655e&upstream=libpsl", + "type": "library", + "publisher": "Tim Rühsen ", + "name": "libpsl5", + "version": "0.20.2-2", + "licenses": [ + { + "license": { + "id": "MIT" + } + }, + { + "license": { + "name": "Chromium" + } + } + ], + "cpe": "cpe:2.3:a:libpsl5:libpsl5:0.20.2-2:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libpsl5@0.20.2-2?arch=amd64&distro=debian-10&upstream=libpsl", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/usr/share/doc/libpsl5/copyright" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/libpsl5:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "90" + }, + { + "name": "syft:metadata:source", + "value": "libpsl" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/librtmp1@2.4%2B20151223.gitfa8646d.1-2?arch=amd64&distro=debian-10&package-id=4e31bab7a6ca0f63&upstream=rtmpdump", + "type": "library", + "publisher": "Debian Multimedia Maintainers ", + "name": "librtmp1", + "version": "2.4+20151223.gitfa8646d.1-2", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + } + ], + "cpe": "cpe:2.3:a:librtmp1:librtmp1:2.4\\+20151223.gitfa8646d.1-2:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/librtmp1@2.4%2B20151223.gitfa8646d.1-2?arch=amd64&distro=debian-10&upstream=rtmpdump", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/usr/share/doc/librtmp1/copyright" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/librtmp1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "141" + }, + { + "name": "syft:metadata:source", + "value": "rtmpdump" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libsasl2-2@2.1.27%2Bdfsg-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=56eb272c9677fc6a&upstream=cyrus-sasl2", + "type": "library", + "publisher": "Debian Cyrus Team ", + "name": "libsasl2-2", + "version": "2.1.27+dfsg-1+deb10u1", + "licenses": [ + { + "license": { + "id": "BSD-4-Clause" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + } + ], + "cpe": "cpe:2.3:a:libsasl2-2:libsasl2-2:2.1.27\\+dfsg-1\\+deb10u1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libsasl2-2@2.1.27%2Bdfsg-1%2Bdeb10u1?arch=amd64&distro=debian-10&upstream=cyrus-sasl2", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsasl2-2:libsasl2_2:2.1.27\\+dfsg-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsasl2_2:libsasl2-2:2.1.27\\+dfsg-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsasl2_2:libsasl2_2:2.1.27\\+dfsg-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsasl2:libsasl2-2:2.1.27\\+dfsg-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsasl2:libsasl2_2:2.1.27\\+dfsg-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:2:path", + "value": "/usr/share/doc/libsasl2-2/copyright" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:3:path", + "value": "/var/lib/dpkg/info/libsasl2-2:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "188" + }, + { + "name": "syft:metadata:source", + "value": "cyrus-sasl2" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libsasl2-modules-db@2.1.27%2Bdfsg-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=0dddbf5f31db948d&upstream=cyrus-sasl2", + "type": "library", + "publisher": "Debian Cyrus Team ", + "name": "libsasl2-modules-db", + "version": "2.1.27+dfsg-1+deb10u1", + "licenses": [ + { + "license": { + "id": "BSD-4-Clause" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + } + ], + "cpe": "cpe:2.3:a:libsasl2-modules-db:libsasl2-modules-db:2.1.27\\+dfsg-1\\+deb10u1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libsasl2-modules-db@2.1.27%2Bdfsg-1%2Bdeb10u1?arch=amd64&distro=debian-10&upstream=cyrus-sasl2", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsasl2-modules-db:libsasl2_modules_db:2.1.27\\+dfsg-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsasl2_modules_db:libsasl2-modules-db:2.1.27\\+dfsg-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsasl2_modules_db:libsasl2_modules_db:2.1.27\\+dfsg-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsasl2-modules:libsasl2-modules-db:2.1.27\\+dfsg-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsasl2-modules:libsasl2_modules_db:2.1.27\\+dfsg-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsasl2_modules:libsasl2-modules-db:2.1.27\\+dfsg-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsasl2_modules:libsasl2_modules_db:2.1.27\\+dfsg-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsasl2:libsasl2-modules-db:2.1.27\\+dfsg-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsasl2:libsasl2_modules_db:2.1.27\\+dfsg-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:2:path", + "value": "/usr/share/doc/libsasl2-modules-db/copyright" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:3:path", + "value": "/var/lib/dpkg/info/libsasl2-modules-db:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "101" + }, + { + "name": "syft:metadata:source", + "value": "cyrus-sasl2" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libseccomp2@2.3.3-4?arch=amd64&distro=debian-10&package-id=b46e6445b6660a4d&upstream=libseccomp", + "type": "library", + "publisher": "Kees Cook ", + "name": "libseccomp2", + "version": "2.3.3-4", + "licenses": [ + { + "license": { + "id": "LGPL-2.1-only" + } + } + ], + "cpe": "cpe:2.3:a:libseccomp2:libseccomp2:2.3.3-4:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libseccomp2@2.3.3-4?arch=amd64&distro=debian-10&upstream=libseccomp", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libseccomp2/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libseccomp2:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "306" + }, + { + "name": "syft:metadata:source", + "value": "libseccomp" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libselinux1@2.8-1%2Bb1?arch=amd64&distro=debian-10&package-id=49addc4e237b1a0d&upstream=libselinux%402.8-1", + "type": "library", + "publisher": "Debian SELinux maintainers ", + "name": "libselinux1", + "version": "2.8-1+b1", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + } + ], + "cpe": "cpe:2.3:a:libselinux1:libselinux1:2.8-1\\+b1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libselinux1@2.8-1%2Bb1?arch=amd64&distro=debian-10&upstream=libselinux%402.8-1", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libselinux1/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libselinux1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "194" + }, + { + "name": "syft:metadata:source", + "value": "libselinux" + }, + { + "name": "syft:metadata:sourceVersion", + "value": "2.8-1" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libsemanage-common@2.8-2?arch=all&distro=debian-10&package-id=f140402ff5125f8f&upstream=libsemanage", + "type": "library", + "publisher": "Debian SELinux maintainers ", + "name": "libsemanage-common", + "version": "2.8-2", + "licenses": [ + { + "license": { + "name": "GPL" + } + }, + { + "license": { + "name": "LGPL" + } + } + ], + "cpe": "cpe:2.3:a:libsemanage-common:libsemanage-common:2.8-2:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libsemanage-common@2.8-2?arch=all&distro=debian-10&upstream=libsemanage", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsemanage-common:libsemanage_common:2.8-2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsemanage_common:libsemanage-common:2.8-2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsemanage_common:libsemanage_common:2.8-2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsemanage:libsemanage-common:2.8-2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsemanage:libsemanage_common:2.8-2:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libsemanage-common/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libsemanage-common.conffiles" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/libsemanage-common.md5sums" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/libsemanage-common.list" + }, + { + "name": "syft:metadata:installedSize", + "value": "30" + }, + { + "name": "syft:metadata:source", + "value": "libsemanage" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libsemanage1@2.8-2?arch=amd64&distro=debian-10&package-id=ee0c44fcf6fdf849&upstream=libsemanage", + "type": "library", + "publisher": "Debian SELinux maintainers ", + "name": "libsemanage1", + "version": "2.8-2", + "licenses": [ + { + "license": { + "name": "GPL" + } + }, + { + "license": { + "name": "LGPL" + } + } + ], + "cpe": "cpe:2.3:a:libsemanage1:libsemanage1:2.8-2:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libsemanage1@2.8-2?arch=amd64&distro=debian-10&upstream=libsemanage", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libsemanage1/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libsemanage1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "301" + }, + { + "name": "syft:metadata:source", + "value": "libsemanage" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libsepol1@2.8-1?arch=amd64&distro=debian-10&package-id=e475ad99443adf15&upstream=libsepol", + "type": "library", + "publisher": "Debian SELinux maintainers ", + "name": "libsepol1", + "version": "2.8-1", + "licenses": [ + { + "license": { + "name": "GPL" + } + }, + { + "license": { + "name": "LGPL" + } + } + ], + "cpe": "cpe:2.3:a:libsepol1:libsepol1:2.8-1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libsepol1@2.8-1?arch=amd64&distro=debian-10&upstream=libsepol", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libsepol1/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libsepol1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "724" + }, + { + "name": "syft:metadata:source", + "value": "libsepol" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libsmartcols1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=a95e9a21c0932258&upstream=util-linux", + "type": "library", + "publisher": "LaMont Jones ", + "name": "libsmartcols1", + "version": "2.33.1-0.1", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + }, + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "BSD-4-Clause" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1-or-later" + } + }, + { + "license": { + "id": "LGPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-3.0-or-later" + } + }, + { + "license": { + "id": "MIT" + } + }, + { + "license": { + "name": "LGPL" + } + }, + { + "license": { + "name": "public-domain" + } + } + ], + "cpe": "cpe:2.3:a:libsmartcols1:libsmartcols1:2.33.1-0.1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libsmartcols1@2.33.1-0.1?arch=amd64&distro=debian-10&upstream=util-linux", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libsmartcols1/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libsmartcols1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "314" + }, + { + "name": "syft:metadata:source", + "value": "util-linux" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libss2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=63fa318f9eefbc75&upstream=e2fsprogs", + "type": "library", + "publisher": "Theodore Y. Ts'o ", + "name": "libss2", + "version": "1.44.5-1+deb10u3", + "licenses": [ + { + "license": { + "name": "LicenseRef-sha256:6f717a1464301a641ac17e7301f1a1b221da802e8edf8cf4bc963721d487b146" + } + } + ], + "cpe": "cpe:2.3:a:libss2:libss2:1.44.5-1\\+deb10u3:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libss2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&upstream=e2fsprogs", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libss2/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libss2:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "104" + }, + { + "name": "syft:metadata:source", + "value": "e2fsprogs" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libssh2-1@1.8.0-2.1?arch=amd64&distro=debian-10&package-id=16faa100e8d6ebcf&upstream=libssh2", + "type": "library", + "publisher": "Mikhail Gusarov ", + "name": "libssh2-1", + "version": "1.8.0-2.1", + "licenses": [ + { + "license": { + "name": "BSD3" + } + } + ], + "cpe": "cpe:2.3:a:libssh2-1:libssh2-1:1.8.0-2.1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libssh2-1@1.8.0-2.1?arch=amd64&distro=debian-10&upstream=libssh2", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libssh2-1:libssh2_1:1.8.0-2.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libssh2_1:libssh2-1:1.8.0-2.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libssh2_1:libssh2_1:1.8.0-2.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libssh2:libssh2-1:1.8.0-2.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libssh2:libssh2_1:1.8.0-2.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/usr/share/doc/libssh2-1/copyright" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/libssh2-1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "270" + }, + { + "name": "syft:metadata:source", + "value": "libssh2" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libssl1.1@1.1.1d-0%2Bdeb10u7?arch=amd64&distro=debian-10&package-id=0aa101ed766132f9&upstream=openssl", + "type": "library", + "publisher": "Debian OpenSSL Team ", + "name": "libssl1.1", + "version": "1.1.1d-0+deb10u7", + "licenses": [ + { + "license": { + "id": "OpenSSL" + } + } + ], + "cpe": "cpe:2.3:a:libssl1.1:libssl1.1:1.1.1d-0\\+deb10u7:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libssl1.1@1.1.1d-0%2Bdeb10u7?arch=amd64&distro=debian-10&upstream=openssl", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:2:path", + "value": "/usr/share/doc/libssl1.1/copyright" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:3:path", + "value": "/var/lib/dpkg/info/libssl1.1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "4078" + }, + { + "name": "syft:metadata:source", + "value": "openssl" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libstdc%2B%2B6@8.3.0-6?arch=amd64&distro=debian-10&package-id=f6ea4c954058336d&upstream=gcc-8", + "type": "library", + "publisher": "Debian GCC Maintainers ", + "name": "libstdc++6", + "version": "8.3.0-6", + "licenses": [ + { + "license": { + "id": "GFDL-1.2-only" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "name": "Artistic" + } + }, + { + "license": { + "name": "GPL" + } + }, + { + "license": { + "name": "LGPL" + } + } + ], + "cpe": "cpe:2.3:a:libstdc\\+\\+6:libstdc\\+\\+6:8.3.0-6:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libstdc%2B%2B6@8.3.0-6?arch=amd64&distro=debian-10&upstream=gcc-8", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/gcc-8-base/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libstdc++6:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "2017" + }, + { + "name": "syft:metadata:source", + "value": "gcc-8" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libsystemd0@241-7~deb10u8?arch=amd64&distro=debian-10&package-id=af5fa602069b9853&upstream=systemd", + "type": "library", + "publisher": "Debian systemd Maintainers ", + "name": "libsystemd0", + "version": "241-7~deb10u8", + "licenses": [ + { + "license": { + "id": "CC0-1.0" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1-or-later" + } + }, + { + "license": { + "name": "Expat" + } + }, + { + "license": { + "name": "public-domain" + } + } + ], + "cpe": "cpe:2.3:a:libsystemd0:libsystemd0:241-7\\~deb10u8:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libsystemd0@241-7~deb10u8?arch=amd64&distro=debian-10&upstream=systemd", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libsystemd0/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libsystemd0:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "768" + }, + { + "name": "syft:metadata:source", + "value": "systemd" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libtasn1-6@4.13-3?arch=amd64&distro=debian-10&package-id=4472b190d0061f51", + "type": "library", + "publisher": "Debian GnuTLS Maintainers ", + "name": "libtasn1-6", + "version": "4.13-3", + "licenses": [ + { + "license": { + "id": "GFDL-1.3-only" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "name": "LGPL" + } + } + ], + "cpe": "cpe:2.3:a:libtasn1-6:libtasn1-6:4.13-3:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libtasn1-6@4.13-3?arch=amd64&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libtasn1-6:libtasn1_6:4.13-3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libtasn1_6:libtasn1-6:4.13-3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libtasn1_6:libtasn1_6:4.13-3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libtasn1:libtasn1-6:4.13-3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libtasn1:libtasn1_6:4.13-3:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libtasn1-6/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libtasn1-6:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "112" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libtinfo6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=4d50fedeec9db609&upstream=ncurses", + "type": "library", + "publisher": "Craig Small ", + "name": "libtinfo6", + "version": "6.1+20181013-2+deb10u2", + "licenses": [ + { + "license": { + "name": "LicenseRef-sha256:5e8ee902c8906ddb7779fd36dc9979cb08b51fbebf7c0b1a9aeb78af382af590" + } + } + ], + "cpe": "cpe:2.3:a:libtinfo6:libtinfo6:6.1\\+20181013-2\\+deb10u2:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libtinfo6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&upstream=ncurses", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libtinfo6/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libtinfo6:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "521" + }, + { + "name": "syft:metadata:source", + "value": "ncurses" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libudev1@241-7~deb10u8?arch=amd64&distro=debian-10&package-id=1650009f99e14534&upstream=systemd", + "type": "library", + "publisher": "Debian systemd Maintainers ", + "name": "libudev1", + "version": "241-7~deb10u8", + "licenses": [ + { + "license": { + "id": "CC0-1.0" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1-or-later" + } + }, + { + "license": { + "name": "Expat" + } + }, + { + "license": { + "name": "public-domain" + } + } + ], + "cpe": "cpe:2.3:a:libudev1:libudev1:241-7\\~deb10u8:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libudev1@241-7~deb10u8?arch=amd64&distro=debian-10&upstream=systemd", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libudev1/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libudev1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "259" + }, + { + "name": "syft:metadata:source", + "value": "systemd" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libunistring2@0.9.10-1?arch=amd64&distro=debian-10&package-id=337ddb48ec21ed97&upstream=libunistring", + "type": "library", + "publisher": "Jörg Frings-Fürst ", + "name": "libunistring2", + "version": "0.9.10-1", + "licenses": [ + { + "license": { + "id": "GFDL-1.2-only" + } + }, + { + "license": { + "id": "GFDL-1.2-or-later" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "id": "LGPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-3.0-or-later" + } + }, + { + "license": { + "id": "MIT" + } + }, + { + "license": { + "name": "FreeSoftware" + } + } + ], + "cpe": "cpe:2.3:a:libunistring2:libunistring2:0.9.10-1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libunistring2@0.9.10-1?arch=amd64&distro=debian-10&upstream=libunistring", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libunistring2/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libunistring2:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "1600" + }, + { + "name": "syft:metadata:source", + "value": "libunistring" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libuuid1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=cc943ca139d0e67b&upstream=util-linux", + "type": "library", + "publisher": "LaMont Jones ", + "name": "libuuid1", + "version": "2.33.1-0.1", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + }, + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "BSD-4-Clause" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1-or-later" + } + }, + { + "license": { + "id": "LGPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-3.0-or-later" + } + }, + { + "license": { + "id": "MIT" + } + }, + { + "license": { + "name": "LGPL" + } + }, + { + "license": { + "name": "public-domain" + } + } + ], + "cpe": "cpe:2.3:a:libuuid1:libuuid1:2.33.1-0.1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libuuid1@2.33.1-0.1?arch=amd64&distro=debian-10&upstream=util-linux", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libuuid1/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libuuid1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "120" + }, + { + "name": "syft:metadata:source", + "value": "util-linux" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libxml2@2.9.4%2Bdfsg1-7%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=2b71d5263434c464", + "type": "library", + "publisher": "Debian XML/SGML Group ", + "name": "libxml2", + "version": "2.9.4+dfsg1-7+deb10u2", + "licenses": [ + { + "license": { + "id": "ISC" + } + }, + { + "license": { + "name": "MIT-1" + } + } + ], + "cpe": "cpe:2.3:a:libxml2:libxml2:2.9.4\\+dfsg1-7\\+deb10u2:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libxml2@2.9.4%2Bdfsg1-7%2Bdeb10u2?arch=amd64&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/usr/share/doc/libxml2/copyright" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/libxml2:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "1858" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libzstd1@1.3.8%2Bdfsg-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=f15273b1b73a0197&upstream=libzstd", + "type": "library", + "publisher": "Debian Med Packaging Team ", + "name": "libzstd1", + "version": "1.3.8+dfsg-3+deb10u2", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "Zlib" + } + }, + { + "license": { + "name": "Expat" + } + } + ], + "cpe": "cpe:2.3:a:libzstd1:libzstd1:1.3.8\\+dfsg-3\\+deb10u2:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libzstd1@1.3.8%2Bdfsg-3%2Bdeb10u2?arch=amd64&distro=debian-10&upstream=libzstd", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libzstd1/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libzstd1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "666" + }, + { + "name": "syft:metadata:source", + "value": "libzstd" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/login@1%3A4.5-1.1?arch=amd64&distro=debian-10&package-id=beffe62c711b8d0b&upstream=shadow", + "type": "library", + "publisher": "Shadow package maintainers ", + "name": "login", + "version": "1:4.5-1.1", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + } + ], + "cpe": "cpe:2.3:a:login:login:1\\:4.5-1.1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/login@1%3A4.5-1.1?arch=amd64&distro=debian-10&upstream=shadow", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/login/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/login.conffiles" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/login.md5sums" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/login.list" + }, + { + "name": "syft:location:7:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:7:path", + "value": "/var/lib/dpkg/info/login.postinst" + }, + { + "name": "syft:location:8:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:8:path", + "value": "/var/lib/dpkg/info/login.preinst" + }, + { + "name": "syft:metadata:installedSize", + "value": "2695" + }, + { + "name": "syft:metadata:source", + "value": "shadow" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/lsb-base@10.2019051400?arch=all&distro=debian-10&package-id=c16dd04f5572aaed&upstream=lsb", + "type": "library", + "publisher": "Debian LSB Team ", + "name": "lsb-base", + "version": "10.2019051400", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + } + ], + "cpe": "cpe:2.3:a:lsb-base:lsb-base:10.2019051400:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/lsb-base@10.2019051400?arch=all&distro=debian-10&upstream=lsb", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:lsb-base:lsb_base:10.2019051400:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:lsb_base:lsb-base:10.2019051400:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:lsb_base:lsb_base:10.2019051400:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:lsb:lsb-base:10.2019051400:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:lsb:lsb_base:10.2019051400:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/usr/share/doc/lsb-base/copyright" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/lsb-base.md5sums" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:3:path", + "value": "/var/lib/dpkg/info/lsb-base.list" + }, + { + "name": "syft:metadata:installedSize", + "value": "49" + }, + { + "name": "syft:metadata:source", + "value": "lsb" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/mawk@1.3.3-17%2Bb3?arch=amd64&distro=debian-10&package-id=a795c3217ac08dfa&upstream=mawk%401.3.3-17", + "type": "library", + "publisher": "Steve Langasek ", + "name": "mawk", + "version": "1.3.3-17+b3", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + } + ], + "cpe": "cpe:2.3:a:mawk:mawk:1.3.3-17\\+b3:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/mawk@1.3.3-17%2Bb3?arch=amd64&distro=debian-10&upstream=mawk%401.3.3-17", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/mawk/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/mawk.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/mawk.list" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/mawk.postinst" + }, + { + "name": "syft:location:7:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:7:path", + "value": "/var/lib/dpkg/info/mawk.prerm" + }, + { + "name": "syft:metadata:installedSize", + "value": "183" + }, + { + "name": "syft:metadata:source", + "value": "mawk" + }, + { + "name": "syft:metadata:sourceVersion", + "value": "1.3.3-17" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/mount@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=0cd3087f123a0ab4&upstream=util-linux", + "type": "library", + "publisher": "LaMont Jones ", + "name": "mount", + "version": "2.33.1-0.1", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + }, + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "BSD-4-Clause" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1-or-later" + } + }, + { + "license": { + "id": "LGPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-3.0-or-later" + } + }, + { + "license": { + "id": "MIT" + } + }, + { + "license": { + "name": "LGPL" + } + }, + { + "license": { + "name": "public-domain" + } + } + ], + "cpe": "cpe:2.3:a:mount:mount:2.33.1-0.1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/mount@2.33.1-0.1?arch=amd64&distro=debian-10&upstream=util-linux", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/mount/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/mount.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/mount.list" + }, + { + "name": "syft:metadata:installedSize", + "value": "418" + }, + { + "name": "syft:metadata:source", + "value": "util-linux" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/ncurses-base@6.1%2B20181013-2%2Bdeb10u2?arch=all&distro=debian-10&package-id=3238e6b392c1b881&upstream=ncurses", + "type": "library", + "publisher": "Craig Small ", + "name": "ncurses-base", + "version": "6.1+20181013-2+deb10u2", + "licenses": [ + { + "license": { + "name": "LicenseRef-sha256:5e8ee902c8906ddb7779fd36dc9979cb08b51fbebf7c0b1a9aeb78af382af590" + } + } + ], + "cpe": "cpe:2.3:a:ncurses-base:ncurses-base:6.1\\+20181013-2\\+deb10u2:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/ncurses-base@6.1%2B20181013-2%2Bdeb10u2?arch=all&distro=debian-10&upstream=ncurses", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:ncurses-base:ncurses_base:6.1\\+20181013-2\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:ncurses_base:ncurses-base:6.1\\+20181013-2\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:ncurses_base:ncurses_base:6.1\\+20181013-2\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:ncurses:ncurses-base:6.1\\+20181013-2\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:ncurses:ncurses_base:6.1\\+20181013-2\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/ncurses-base/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/ncurses-base.conffiles" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/ncurses-base.md5sums" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/ncurses-base.list" + }, + { + "name": "syft:metadata:installedSize", + "value": "368" + }, + { + "name": "syft:metadata:source", + "value": "ncurses" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/ncurses-bin@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=68e8ed2220f015ff&upstream=ncurses", + "type": "library", + "publisher": "Craig Small ", + "name": "ncurses-bin", + "version": "6.1+20181013-2+deb10u2", + "licenses": [ + { + "license": { + "name": "LicenseRef-sha256:5e8ee902c8906ddb7779fd36dc9979cb08b51fbebf7c0b1a9aeb78af382af590" + } + } + ], + "cpe": "cpe:2.3:a:ncurses-bin:ncurses-bin:6.1\\+20181013-2\\+deb10u2:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/ncurses-bin@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&upstream=ncurses", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:ncurses-bin:ncurses_bin:6.1\\+20181013-2\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:ncurses_bin:ncurses-bin:6.1\\+20181013-2\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:ncurses_bin:ncurses_bin:6.1\\+20181013-2\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:ncurses:ncurses-bin:6.1\\+20181013-2\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:ncurses:ncurses_bin:6.1\\+20181013-2\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/ncurses-bin/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/ncurses-bin.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/ncurses-bin.list" + }, + { + "name": "syft:metadata:installedSize", + "value": "616" + }, + { + "name": "syft:metadata:source", + "value": "ncurses" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/passwd@1%3A4.5-1.1?arch=amd64&distro=debian-10&package-id=8b4ea518599f59aa&upstream=shadow", + "type": "library", + "publisher": "Shadow package maintainers ", + "name": "passwd", + "version": "1:4.5-1.1", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + } + ], + "cpe": "cpe:2.3:a:passwd:passwd:1\\:4.5-1.1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/passwd@1%3A4.5-1.1?arch=amd64&distro=debian-10&upstream=shadow", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/passwd/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/passwd.conffiles" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/passwd.md5sums" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/passwd.list" + }, + { + "name": "syft:location:7:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:7:path", + "value": "/var/lib/dpkg/info/passwd.postinst" + }, + { + "name": "syft:location:8:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:8:path", + "value": "/var/lib/dpkg/info/passwd.preinst" + }, + { + "name": "syft:metadata:installedSize", + "value": "2591" + }, + { + "name": "syft:metadata:source", + "value": "shadow" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/perl-base@5.28.1-6%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=12ef1f27f6a6900d&upstream=perl", + "type": "library", + "publisher": "Niko Tyni ", + "name": "perl-base", + "version": "5.28.1-6+deb10u1", + "licenses": [ + { + "license": { + "id": "Artistic-2.0" + } + }, + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "GPL-1.0-only" + } + }, + { + "license": { + "id": "GPL-1.0-or-later" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "Zlib" + } + }, + { + "license": { + "name": "Artistic" + } + }, + { + "license": { + "name": "Artistic-dist" + } + }, + { + "license": { + "name": "BSD-3-clause-GENERIC" + } + }, + { + "license": { + "name": "BSD-3-clause-with-weird-numbering" + } + }, + { + "license": { + "name": "BSD-4-clause-POWERDOG" + } + }, + { + "license": { + "name": "BZIP" + } + }, + { + "license": { + "name": "DONT-CHANGE-THE-GPL" + } + }, + { + "license": { + "name": "Expat" + } + }, + { + "license": { + "name": "GPL-3+-WITH-BISON-EXCEPTION" + } + }, + { + "license": { + "name": "HSIEH-BSD" + } + }, + { + "license": { + "name": "HSIEH-DERIVATIVE" + } + }, + { + "license": { + "name": "REGCOMP" + } + }, + { + "license": { + "name": "REGCOMP," + } + }, + { + "license": { + "name": "RRA-KEEP-THIS-NOTICE" + } + }, + { + "license": { + "name": "S2P" + } + }, + { + "license": { + "name": "SDBM-PUBLIC-DOMAIN" + } + }, + { + "license": { + "name": "TEXT-TABS" + } + }, + { + "license": { + "name": "Unicode" + } + } + ], + "cpe": "cpe:2.3:a:perl-base:perl-base:5.28.1-6\\+deb10u1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/perl-base@5.28.1-6%2Bdeb10u1?arch=amd64&distro=debian-10&upstream=perl", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:perl-base:perl_base:5.28.1-6\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:perl_base:perl-base:5.28.1-6\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:perl_base:perl_base:5.28.1-6\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:perl:perl-base:5.28.1-6\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:perl:perl_base:5.28.1-6\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/perl/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/perl-base.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/perl-base.list" + }, + { + "name": "syft:metadata:installedSize", + "value": "10148" + }, + { + "name": "syft:metadata:source", + "value": "perl" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/sed@4.7-1?arch=amd64&distro=debian-10&package-id=8afeab9e14add71f", + "type": "library", + "publisher": "Clint Adams ", + "name": "sed", + "version": "4.7-1", + "licenses": [ + { + "license": { + "id": "GPL-3.0-only" + } + } + ], + "cpe": "cpe:2.3:a:sed:sed:4.7-1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/sed@4.7-1?arch=amd64&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/sed/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/sed.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/sed.list" + }, + { + "name": "syft:metadata:installedSize", + "value": "883" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/sysvinit-utils@2.93-8?arch=amd64&distro=debian-10&package-id=84b2ad21b188f1d2&upstream=sysvinit", + "type": "library", + "publisher": "Debian sysvinit maintainers ", + "name": "sysvinit-utils", + "version": "2.93-8", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + } + ], + "cpe": "cpe:2.3:a:sysvinit-utils:sysvinit-utils:2.93-8:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/sysvinit-utils@2.93-8?arch=amd64&distro=debian-10&upstream=sysvinit", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:sysvinit-utils:sysvinit_utils:2.93-8:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:sysvinit_utils:sysvinit-utils:2.93-8:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:sysvinit_utils:sysvinit_utils:2.93-8:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:sysvinit:sysvinit-utils:2.93-8:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:sysvinit:sysvinit_utils:2.93-8:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/sysvinit-utils/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/sysvinit-utils.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/sysvinit-utils.list" + }, + { + "name": "syft:metadata:installedSize", + "value": "131" + }, + { + "name": "syft:metadata:source", + "value": "sysvinit" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/tar@1.30%2Bdfsg-6?arch=amd64&distro=debian-10&package-id=62da3202d5716782", + "type": "library", + "publisher": "Bdale Garbee ", + "name": "tar", + "version": "1.30+dfsg-6", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + } + ], + "cpe": "cpe:2.3:a:tar:tar:1.30\\+dfsg-6:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/tar@1.30%2Bdfsg-6?arch=amd64&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/tar/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/tar.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/tar.list" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/tar.postinst" + }, + { + "name": "syft:location:7:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:7:path", + "value": "/var/lib/dpkg/info/tar.prerm" + }, + { + "name": "syft:metadata:installedSize", + "value": "2884" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/tzdata@2021a-0%2Bdeb10u1?arch=all&distro=debian-10&package-id=11e09e914c1cd4a6", + "type": "library", + "publisher": "GNU Libc Maintainers ", + "name": "tzdata", + "version": "2021a-0+deb10u1", + "licenses": [ + { + "license": { + "name": "LicenseRef-sha256:75b41b8de75b1596a239f6fa8e4caa409de4cf985cee2943d2a94b4e96a5197d" + } + } + ], + "cpe": "cpe:2.3:a:tzdata:tzdata:2021a-0\\+deb10u1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/tzdata@2021a-0%2Bdeb10u1?arch=all&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/tzdata/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/tzdata.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/tzdata.config" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/tzdata.list" + }, + { + "name": "syft:location:7:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:7:path", + "value": "/var/lib/dpkg/info/tzdata.postinst" + }, + { + "name": "syft:location:8:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:8:path", + "value": "/var/lib/dpkg/info/tzdata.postrm" + }, + { + "name": "syft:location:9:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:9:path", + "value": "/var/lib/dpkg/info/tzdata.templates" + }, + { + "name": "syft:metadata:installedSize", + "value": "3040" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/util-linux@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=3d071e40c62fe471", + "type": "library", + "publisher": "LaMont Jones ", + "name": "util-linux", + "version": "2.33.1-0.1", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + }, + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "BSD-4-Clause" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1-or-later" + } + }, + { + "license": { + "id": "LGPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-3.0-or-later" + } + }, + { + "license": { + "id": "MIT" + } + }, + { + "license": { + "name": "LGPL" + } + }, + { + "license": { + "name": "public-domain" + } + } + ], + "cpe": "cpe:2.3:a:util-linux:util-linux:2.33.1-0.1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/util-linux@2.33.1-0.1?arch=amd64&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:util-linux:util_linux:2.33.1-0.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:util_linux:util-linux:2.33.1-0.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:util_linux:util_linux:2.33.1-0.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:util:util-linux:2.33.1-0.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:util:util_linux:2.33.1-0.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/util-linux/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/util-linux.conffiles" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/util-linux.md5sums" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/util-linux.list" + }, + { + "name": "syft:location:7:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:7:path", + "value": "/var/lib/dpkg/info/util-linux.postinst" + }, + { + "name": "syft:location:8:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:8:path", + "value": "/var/lib/dpkg/info/util-linux.postrm" + }, + { + "name": "syft:location:9:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:9:path", + "value": "/var/lib/dpkg/info/util-linux.prerm" + }, + { + "name": "syft:metadata:installedSize", + "value": "4327" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/zlib1g@1%3A1.2.11.dfsg-1?arch=amd64&distro=debian-10&package-id=bcc78aeb924eb6b8&upstream=zlib", + "type": "library", + "publisher": "Mark Brown ", + "name": "zlib1g", + "version": "1:1.2.11.dfsg-1", + "licenses": [ + { + "license": { + "id": "Zlib" + } + } + ], + "cpe": "cpe:2.3:a:zlib1g:zlib1g:1\\:1.2.11.dfsg-1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/zlib1g@1%3A1.2.11.dfsg-1?arch=amd64&distro=debian-10&upstream=zlib", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/zlib1g/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/zlib1g:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "174" + }, + { + "name": "syft:metadata:source", + "value": "zlib" + } + ] + }, + { + "bom-ref": "os:debian@10", + "type": "operating-system", + "name": "debian", + "version": "10", + "description": "Debian GNU/Linux 10 (buster)", + "swid": { + "tagId": "debian", + "name": "debian", + "version": "10" + }, + "externalReferences": [ + { + "url": "https://bugs.debian.org/", + "type": "issue-tracker" + }, + { + "url": "https://www.debian.org/", + "type": "website" + }, + { + "url": "https://www.debian.org/support", + "comment": "support", + "type": "other" + } + ], + "properties": [ + { + "name": "syft:distro:id", + "value": "debian" + }, + { + "name": "syft:distro:prettyName", + "value": "Debian GNU/Linux 10 (buster)" + }, + { + "name": "syft:distro:versionCodename", + "value": "buster" + }, + { + "name": "syft:distro:versionID", + "value": "10" + } + ] + }, + { + "bom-ref": "7647ff73f948e895", + "type": "file", + "name": "/bin/bash", + "hashes": [ + { + "alg": "SHA-1", + "content": "0533efae0065e72c1d833b9f7a678a20995bd5a6" + }, + { + "alg": "SHA-256", + "content": "059fce560704769f9ee72e095e85c77cbcd528dc21cc51d9255cfe46856b5f02" + } + ] + }, + { + "bom-ref": "d0ce5f36825566d3", + "type": "file", + "name": "/bin/cat", + "hashes": [ + { + "alg": "SHA-1", + "content": "b0c322d6803b507c89f3db104a519163e00c57eb" + }, + { + "alg": "SHA-256", + "content": "6491ea0df4ab05962dea6c303aaec1b8478caa38c3fe9345b82c55c576299141" + } + ] + }, + { + "bom-ref": "3dbe11c116109283", + "type": "file", + "name": "/bin/chgrp", + "hashes": [ + { + "alg": "SHA-1", + "content": "5136c2b91d328c29fd2ca945c0402c14b1842520" + }, + { + "alg": "SHA-256", + "content": "4d0a7056b0b20a1d99782de7db552b257ecce50b98aed6cae0d3e1f4674738e7" + } + ] + }, + { + "bom-ref": "49c3afbaecd3c2eb", + "type": "file", + "name": "/bin/chmod", + "hashes": [ + { + "alg": "SHA-1", + "content": "3611e33c16523781b7bb4cb08dd707a0daf3e6c4" + }, + { + "alg": "SHA-256", + "content": "0a6b004cc244f34b40dbfce5f5d44250a6c7788620f4c07ba869e799a23798f1" + } + ] + }, + { + "bom-ref": "8f109257280daca0", + "type": "file", + "name": "/bin/chown", + "hashes": [ + { + "alg": "SHA-1", + "content": "6113f3136c9d8cadde08b97ad99bdc1f83bea367" + }, + { + "alg": "SHA-256", + "content": "0caed90a56afdb575f9cb4279ead1ab917a6c318cfe820f162d4ebfbd7e7f95e" + } + ] + }, + { + "bom-ref": "c2dd210c24757b75", + "type": "file", + "name": "/bin/cp", + "hashes": [ + { + "alg": "SHA-1", + "content": "220687a082fb9d0dbb48e9a2b1093cbb4e9de55a" + }, + { + "alg": "SHA-256", + "content": "23f8a715ee1adb514f00825bc95faf77dc9007aeb12ce971b77cdf860ddd643a" + } + ] + }, + { + "bom-ref": "36dbfdc1a2956571", + "type": "file", + "name": "/bin/dash", + "hashes": [ + { + "alg": "SHA-1", + "content": "45ee5e210fc27623672fa59e1226122005bcd8e6" + }, + { + "alg": "SHA-256", + "content": "350b2973dd4a2d828fd7417e85b4cd7590ef353c8f7d77a4b55a9c6a11c6b571" + } + ] + }, + { + "bom-ref": "f53b7a69201f0626", + "type": "file", + "name": "/bin/date", + "hashes": [ + { + "alg": "SHA-1", + "content": "8562afe7ba4410f732c4442264bddbe237cb8042" + }, + { + "alg": "SHA-256", + "content": "65a20a37076e3376d32f1e1433ec17d12a3b1813333fb08d490306249e0d79c0" + } + ] + }, + { + "bom-ref": "fdfe50249a6fc36c", + "type": "file", + "name": "/bin/dd", + "hashes": [ + { + "alg": "SHA-1", + "content": "03b9db96085a7e127fb02dfeb7497d2d99e27110" + }, + { + "alg": "SHA-256", + "content": "7ec2f70b469593f61685271ebdf8f5ba18ce8e2c7bcb3ff7bd5b9d1f6257d2e4" + } + ] + }, + { + "bom-ref": "1e193ff3d500be9e", + "type": "file", + "name": "/bin/df", + "hashes": [ + { + "alg": "SHA-1", + "content": "894dc51c493e2cb8e96941f620a2acc9d38b66bb" + }, + { + "alg": "SHA-256", + "content": "54d02eaa1ac0ce90467c9d0dc316e29b02155302b3e8f9a62623359c580f9db2" + } + ] + }, + { + "bom-ref": "d7895ec9f3e9f29d", + "type": "file", + "name": "/bin/dir", + "hashes": [ + { + "alg": "SHA-1", + "content": "f7b7f02f8357a25f375aa3b6f777c735ccef3156" + }, + { + "alg": "SHA-256", + "content": "94526b69bae98cf6b56257408162dab1895af0c32ba915c50d05c90501b9a9c5" + } + ] + }, + { + "bom-ref": "d1cd68719098c8f8", + "type": "file", + "name": "/bin/dmesg", + "hashes": [ + { + "alg": "SHA-1", + "content": "c48d21c491a7e347fa41b93077a8060ac563ad42" + }, + { + "alg": "SHA-256", + "content": "12ada41ae0d91148f444d99dc757c981b15fb39d1d9f56b32c277bcdd805aa51" + } + ] + }, + { + "bom-ref": "1e1b3ba900109281", + "type": "file", + "name": "/bin/echo", + "hashes": [ + { + "alg": "SHA-1", + "content": "c78a474a04034c4c0b40e36eab77bdcb8fda8c28" + }, + { + "alg": "SHA-256", + "content": "2b9254e56c59be0cd8d951c099c101649fb8be19f3d8bb52ac6eae5e8ffba148" + } + ] + }, + { + "bom-ref": "d5dccb4768cb09a8", + "type": "file", + "name": "/bin/egrep", + "hashes": [ + { + "alg": "SHA-1", + "content": "92ab8b62375eae26758b91d285ec24a39af1abe8" + }, + { + "alg": "SHA-256", + "content": "f7c621ae0ceb26a76802743830bc469288996f64342901ae5292950ff713e981" + } + ] + }, + { + "bom-ref": "e6b3d66363a5ab8e", + "type": "file", + "name": "/bin/false", + "hashes": [ + { + "alg": "SHA-1", + "content": "086163b141e82098041c74ad3b7c8de811942322" + }, + { + "alg": "SHA-256", + "content": "d7c674b150fc5329a3bf0f9d12002d941f89ddcab5e20fd588d5e27d7bee46f3" + } + ] + }, + { + "bom-ref": "49cf481e73e71244", + "type": "file", + "name": "/bin/fgrep", + "hashes": [ + { + "alg": "SHA-1", + "content": "ad12bd4526ae3f3172987179d850ad1077be0100" + }, + { + "alg": "SHA-256", + "content": "5c8b1486de899cdd010d3cacde94579999cb82d0be9ec8c131b1b56886cfd36b" + } + ] + }, + { + "bom-ref": "296cab0b2dfe4ca9", + "type": "file", + "name": "/bin/findmnt", + "hashes": [ + { + "alg": "SHA-1", + "content": "3dd09b5e8bb8b50cbae2e932c1d42931dd900100" + }, + { + "alg": "SHA-256", + "content": "d29f52b3f6ad577f0a8c3d37ecdc2dbe9b4d04528193ab2f3e86c3a8d6ca57e6" + } + ] + }, + { + "bom-ref": "c4d67f818721a7cf", + "type": "file", + "name": "/bin/grep", + "hashes": [ + { + "alg": "SHA-1", + "content": "7e65599ae85bd86fdbf5aee6340cc71a06718374" + }, + { + "alg": "SHA-256", + "content": "9c10f95df9759ee36b6c0350be168ca67c41bf2594298147bbb9280c02c3f136" + } + ] + }, + { + "bom-ref": "4b9e0652b3011993", + "type": "file", + "name": "/bin/gunzip", + "hashes": [ + { + "alg": "SHA-1", + "content": "4c33d9bcc9d5398d11d8f367c6b856af78a6f495" + }, + { + "alg": "SHA-256", + "content": "0011d06d8822b2097140be7ef6bbfaf0e01b9519a179644c6593a56f2bf5f903" + } + ] + }, + { + "bom-ref": "a51f2de872d65146", + "type": "file", + "name": "/bin/gzexe", + "hashes": [ + { + "alg": "SHA-1", + "content": "cfc6280aef5513aab59e38f9d2a68617b5a3a94a" + }, + { + "alg": "SHA-256", + "content": "f73ab4e05077cddef5de23005312869ea9513d810b02542ece2ff37655711475" + } + ] + }, + { + "bom-ref": "b65e3a8ef221edaf", + "type": "file", + "name": "/bin/gzip", + "hashes": [ + { + "alg": "SHA-1", + "content": "8d597ca749267377dbaf0c05781b48bb82c8053c" + }, + { + "alg": "SHA-256", + "content": "66d2c25b19ed845fb70c8436f9b9739dd8515dde36bd31f382ec1821819ff474" + } + ] + }, + { + "bom-ref": "523243cd508ceb9f", + "type": "file", + "name": "/bin/hostname", + "hashes": [ + { + "alg": "SHA-1", + "content": "adc74340d45adcd463986d24c71a36df19429f5c" + }, + { + "alg": "SHA-256", + "content": "6a3347df1c90c0895464920727a6ee40404de6ad72cf6da3e666e1626df66111" + } + ] + }, + { + "bom-ref": "7554143a67c8905b", + "type": "file", + "name": "/bin/ln", + "hashes": [ + { + "alg": "SHA-1", + "content": "84f3cc59798d4dcb6e97791afd5866060d19fbec" + }, + { + "alg": "SHA-256", + "content": "c4ab3b319776615385b9e262b77afaf3ebce682e95a7650364838a33ad5e6c5f" + } + ] + }, + { + "bom-ref": "93b68eb75fdbe449", + "type": "file", + "name": "/bin/login", + "hashes": [ + { + "alg": "SHA-1", + "content": "b98e8a0ab6a2dacc310ba5bd2861533b47a7e4ae" + }, + { + "alg": "SHA-256", + "content": "6565fa2c97c36311390228ac15001595003ea271e1e23ede2cb0f48f6f4dfe9a" + } + ] + }, + { + "bom-ref": "a462f79f2125efec", + "type": "file", + "name": "/bin/ls", + "hashes": [ + { + "alg": "SHA-1", + "content": "646503c01c841c04e3c0cbc8f6edcc737da466ef" + }, + { + "alg": "SHA-256", + "content": "075e188324c2f4e54359128371a01e4d5e3b7be08382e4433bd53523f8bf6217" + } + ] + }, + { + "bom-ref": "426fec9a5d9f4301", + "type": "file", + "name": "/bin/lsblk", + "hashes": [ + { + "alg": "SHA-1", + "content": "fbbe7d4ce0d295961a006d5b72664218c011c73d" + }, + { + "alg": "SHA-256", + "content": "fcebd7e0c7fc95a516367a131b2a697658c9344a6d7b30d2e1e0308514a06aaa" + } + ] + }, + { + "bom-ref": "54f84cf6bdabd8f6", + "type": "file", + "name": "/bin/mkdir", + "hashes": [ + { + "alg": "SHA-1", + "content": "6f48332524f30ee55932e85fe50377cd4dbf0b23" + }, + { + "alg": "SHA-256", + "content": "49bcc51087a41459b4b2304d05ee50f9c8e217fc23548cd80f13d1d89a6269bf" + } + ] + }, + { + "bom-ref": "75bc071db280ad79", + "type": "file", + "name": "/bin/mknod", + "hashes": [ + { + "alg": "SHA-1", + "content": "0302063704c110bff08e57cc9be4d7418d0bbaca" + }, + { + "alg": "SHA-256", + "content": "6b79d643ae52acd699f32b9610f3700cb97ca90a74351721b544b6dcdc471e5b" + } + ] + }, + { + "bom-ref": "9e608aab1d273724", + "type": "file", + "name": "/bin/mktemp", + "hashes": [ + { + "alg": "SHA-1", + "content": "044214746557077b86c2298fdd519c1866ba460d" + }, + { + "alg": "SHA-256", + "content": "a7588bf8ca0bd9fd862d2da4bf007f2fcafee74bd96292197ea2f448cfc30240" + } + ] + }, + { + "bom-ref": "fcc7856b8a8a7cee", + "type": "file", + "name": "/bin/more", + "hashes": [ + { + "alg": "SHA-1", + "content": "ac2d6ef90a1fe50278d0036d5470f2d9048dfcc6" + }, + { + "alg": "SHA-256", + "content": "e80da1c859d36c8c67b86b339cd54a2961998b1d334c4ec0c2cf9761fc655aec" + } + ] + }, + { + "bom-ref": "245127eaf7414f46", + "type": "file", + "name": "/bin/mount", + "hashes": [ + { + "alg": "SHA-1", + "content": "19199cc4510332cf45179891503019e770117df5" + }, + { + "alg": "SHA-256", + "content": "281d80fc9d9c698ec3a3a4afaf25553929c4897fe23852f93b2548d0e36641a0" + } + ] + }, + { + "bom-ref": "1140aadade4f901a", + "type": "file", + "name": "/bin/mountpoint", + "hashes": [ + { + "alg": "SHA-1", + "content": "459ea8591ed0759bd735e23df49c88a9e4c929da" + }, + { + "alg": "SHA-256", + "content": "0c35bd7c0d1a5f28b23aeddc73d9b8d94581df47c5c6d22e3aab5b968b9e0e22" + } + ] + }, + { + "bom-ref": "540ec82f639837bc", + "type": "file", + "name": "/bin/mv", + "hashes": [ + { + "alg": "SHA-1", + "content": "46e71d67df7eb1c41f8f8c9039f401e242cce94a" + }, + { + "alg": "SHA-256", + "content": "8d9f23ef147c042ed7004620b0dfea220b8aa836c269fc51164fc9365417926d" + } + ] + }, + { + "bom-ref": "92d7145e7dbe32d9", + "type": "file", + "name": "/bin/pwd", + "hashes": [ + { + "alg": "SHA-1", + "content": "4e30495211c5d02cd9036e64b63efc096c0e7c76" + }, + { + "alg": "SHA-256", + "content": "616a8be11ec092debc222d5f8534347f37faf41ce888e7d43bd5658792f4a28a" + } + ] + }, + { + "bom-ref": "16b9d6ce4ce9a508", + "type": "file", + "name": "/bin/readlink", + "hashes": [ + { + "alg": "SHA-1", + "content": "795312b32a5faa75a8a1dc5cae1a2c239e8872c4" + }, + { + "alg": "SHA-256", + "content": "bc5e688f8a016b30ea52eb96c208ee561f595a00c2d6a7b325fade5841aa07de" + } + ] + }, + { + "bom-ref": "c361eaa3070aafac", + "type": "file", + "name": "/bin/rm", + "hashes": [ + { + "alg": "SHA-1", + "content": "d63ca4a768997ba50b916e01c669fb26096a1c55" + }, + { + "alg": "SHA-256", + "content": "144007f9f0217be9bb5e90da781d5155c306ef8b991cfdf4551b89fcbf21434a" + } + ] + }, + { + "bom-ref": "c7751d988c26421d", + "type": "file", + "name": "/bin/rmdir", + "hashes": [ + { + "alg": "SHA-1", + "content": "514da9743a0948ddae9a0aeeb58d4cc303c3a0d3" + }, + { + "alg": "SHA-256", + "content": "57d1e80a8f8c026f085e76958bbc382afb5e3a13845f0801acdeb93afb55e210" + } + ] + }, + { + "bom-ref": "73474bd888a2811a", + "type": "file", + "name": "/bin/run-parts", + "hashes": [ + { + "alg": "SHA-1", + "content": "46b6e74e28e5daf69c1dd0f18a8e911ae2922dda" + }, + { + "alg": "SHA-256", + "content": "3346b4d47c637a8c02cb6865eee42d2a5aa9c4e46c6371a9143621348d27420f" + } + ] + }, + { + "bom-ref": "f136a660e7de8eff", + "type": "file", + "name": "/bin/sed", + "hashes": [ + { + "alg": "SHA-1", + "content": "3e42d7a1221448f7aac232e3733541ec4b9f46a5" + }, + { + "alg": "SHA-256", + "content": "6baa01dd34e2b67590865b24b92cc9b6c43a2566e4803ea5630e41b00a846827" + } + ] + }, + { + "bom-ref": "ecb2331aa30b32b9", + "type": "file", + "name": "/bin/sleep", + "hashes": [ + { + "alg": "SHA-1", + "content": "e8973744ded432415d3411fe621fec3e78a9b4a9" + }, + { + "alg": "SHA-256", + "content": "3e27ced4ece1aab2cf2af72ad66587cfeb3f9ea70dd07472714ffb805a0009f4" + } + ] + }, + { + "bom-ref": "4f9b5c513657a9e3", + "type": "file", + "name": "/bin/stty", + "hashes": [ + { + "alg": "SHA-1", + "content": "8b0d3f3fd8a82a7ef2c40bf8756dfb4a72f0256f" + }, + { + "alg": "SHA-256", + "content": "3a5758a98305d2fe5f8261b8c7eb9cac5df88606ef8e7edeae6fbaba2434c9d5" + } + ] + }, + { + "bom-ref": "e69229679a5b791e", + "type": "file", + "name": "/bin/su", + "hashes": [ + { + "alg": "SHA-1", + "content": "9fa3fe6cfffbb20e7f589c6520e5acb510c12e34" + }, + { + "alg": "SHA-256", + "content": "7d28fb83ff782a8cf221ca813e71b830783fe1af56d264a9547a63aa615b9590" + } + ] + }, + { + "bom-ref": "a40efcabf5ad9594", + "type": "file", + "name": "/bin/sync", + "hashes": [ + { + "alg": "SHA-1", + "content": "647a5e79af4d6b04f5e39acc3cf04e7bfae61138" + }, + { + "alg": "SHA-256", + "content": "fcc3583f0babeaa31560b304213e9d1cac8fd640cfb7025c0116d12d77ee5d9c" + } + ] + }, + { + "bom-ref": "8ccae5b8f0f5a2e8", + "type": "file", + "name": "/bin/tar", + "hashes": [ + { + "alg": "SHA-1", + "content": "1be5d274d29959ab6272793b7aaf38887e536094" + }, + { + "alg": "SHA-256", + "content": "50d65b58a1ee305b2f5eda7bae420ccb0879887a5b40ea3a9dc84740b4a19e7f" + } + ] + }, + { + "bom-ref": "725b3cd6f4a53ded", + "type": "file", + "name": "/bin/tempfile", + "hashes": [ + { + "alg": "SHA-1", + "content": "8f113e684766c129c7a210a7333f44b427007ae3" + }, + { + "alg": "SHA-256", + "content": "1bbf66cb001425a9db884e9614f0e8df674be2e6fe2ff2794d1f910ef2d9f062" + } + ] + }, + { + "bom-ref": "a1bac483816088c8", + "type": "file", + "name": "/bin/touch", + "hashes": [ + { + "alg": "SHA-1", + "content": "f43c8fa8238ce7e0822caa99e376c9eced6b3d2f" + }, + { + "alg": "SHA-256", + "content": "362815dc70f3675a862223c3613ab636ba3ea9903e7e91916e843077711053d6" + } + ] + }, + { + "bom-ref": "ea9fb6cdf77fc2e1", + "type": "file", + "name": "/bin/true", + "hashes": [ + { + "alg": "SHA-1", + "content": "c01bd7cc37d662393cf74235c1311e6e929b31fb" + }, + { + "alg": "SHA-256", + "content": "a7393b08d786ceb7f85de701b48a8ddc0991ff0fcfed00c20fccb9f8bb208907" + } + ] + }, + { + "bom-ref": "025338bae8f9fa3b", + "type": "file", + "name": "/bin/umount", + "hashes": [ + { + "alg": "SHA-1", + "content": "40a06a911d6618e12bc056604a3f3ca8d81cb6d7" + }, + { + "alg": "SHA-256", + "content": "82b09c39bc387424b0d126089e8fc0c78bff29e6c54277c0e55ef0ad2f925bc5" + } + ] + }, + { + "bom-ref": "bd30486f46d7f65e", + "type": "file", + "name": "/bin/uname", + "hashes": [ + { + "alg": "SHA-1", + "content": "7d432a1652d163fb451db3548a441d45ba6be261" + }, + { + "alg": "SHA-256", + "content": "7a6d0bac06112166ed527062baaf3f34b383c15926245edfb74118f9d5d40b30" + } + ] + }, + { + "bom-ref": "c85e442bfb2f8186", + "type": "file", + "name": "/bin/vdir", + "hashes": [ + { + "alg": "SHA-1", + "content": "205bc16375eed4ac29ce89bf3b1729d7d441cd95" + }, + { + "alg": "SHA-256", + "content": "7cd8645eee561bfd0b6c28f2ed70c8970fb6a3cccca524921f2a9e584a36a40b" + } + ] + }, + { + "bom-ref": "e06522066c1062b8", + "type": "file", + "name": "/bin/wdctl", + "hashes": [ + { + "alg": "SHA-1", + "content": "4b8747fed3c44cb487ce7e8055a5d8324164d6fe" + }, + { + "alg": "SHA-256", + "content": "ba5d74ffc0a663f39ca8499c96783fca1b960c83096730162baa3c52569f251d" + } + ] + }, + { + "bom-ref": "bdcf8e5e5fa1f8c8", + "type": "file", + "name": "/bin/which", + "hashes": [ + { + "alg": "SHA-1", + "content": "cd2cdf42c04fba4123f4b8f12bca9bbd76552c95" + }, + { + "alg": "SHA-256", + "content": "7bdde142dc5cb004ab82f55adba0c56fc78430a6f6b23afd33be491d4c7c238b" + } + ] + }, + { + "bom-ref": "23db2ae61655eefd", + "type": "file", + "name": "/bin/zcat", + "hashes": [ + { + "alg": "SHA-1", + "content": "2ad72c8366dcb3e87f16cc38effb86d16c4515bd" + }, + { + "alg": "SHA-256", + "content": "4cdce728b8d9c53e855853a2414b7d93251f632cc7bc34bcf0bf688f2da74ecf" + } + ] + }, + { + "bom-ref": "687a4b7705f727ab", + "type": "file", + "name": "/bin/zcmp", + "hashes": [ + { + "alg": "SHA-1", + "content": "9284b1bfb9b56685ebad1593e80585e0d3f2d099" + }, + { + "alg": "SHA-256", + "content": "dbfb20b6ae482c2f7f8365e3fe71f42266ef2c56e77f0787ad2f094083550a36" + } + ] + }, + { + "bom-ref": "e4dc3a373cc0f3ea", + "type": "file", + "name": "/bin/zdiff", + "hashes": [ + { + "alg": "SHA-1", + "content": "4da39585aa159314a7be0408c30f875bf1849ddf" + }, + { + "alg": "SHA-256", + "content": "1bf1cef165c5265317d9bba07a58a28899fffe331ffa52a87d483e482d539296" + } + ] + }, + { + "bom-ref": "e7286caa943a56c5", + "type": "file", + "name": "/bin/zegrep", + "hashes": [ + { + "alg": "SHA-1", + "content": "0b4eebddbd95c099c22e75245f001e10c4fd934d" + }, + { + "alg": "SHA-256", + "content": "67ee7fadec7ea53b4c1f8cfc3c81427b29c0b1381e80b55642617620c84d0bcc" + } + ] + }, + { + "bom-ref": "3eb46d365d4cee45", + "type": "file", + "name": "/bin/zfgrep", + "hashes": [ + { + "alg": "SHA-1", + "content": "c6cbe086a0c5d526960a93759673fa452251e77e" + }, + { + "alg": "SHA-256", + "content": "87ab5f4c7cb344e409d614d1a69cc156b3b1053d6ae0b59d8e2c2131f3e63e5a" + } + ] + }, + { + "bom-ref": "dfcc24da4c7f1c48", + "type": "file", + "name": "/bin/zforce", + "hashes": [ + { + "alg": "SHA-1", + "content": "0c4efcd870c70eab1bd8ace455c1a377ae96fba7" + }, + { + "alg": "SHA-256", + "content": "136b8f154b0c63d346af66498254e3aec25731d0897f80081d9e8819ff79da31" + } + ] + }, + { + "bom-ref": "9282c43e356b92a4", + "type": "file", + "name": "/bin/zgrep", + "hashes": [ + { + "alg": "SHA-1", + "content": "bba7cbb08c128aada9620f878c53a6481580819b" + }, + { + "alg": "SHA-256", + "content": "a8cebc1fb2afe5639f56371b16d926202cc389907f46f852aac95ba7e819c14d" + } + ] + }, + { + "bom-ref": "78bd5262fbd36486", + "type": "file", + "name": "/bin/zless", + "hashes": [ + { + "alg": "SHA-1", + "content": "130e10b6339cf0b480d14b5b3e423cbc5578c5e7" + }, + { + "alg": "SHA-256", + "content": "d877394651502655a165962d79514bd67e3193f935aeacfea0baa22864739c75" + } + ] + }, + { + "bom-ref": "d37a221764c32e1b", + "type": "file", + "name": "/bin/zmore", + "hashes": [ + { + "alg": "SHA-1", + "content": "cf34c2aa8491fc84e94021e063145871c964e142" + }, + { + "alg": "SHA-256", + "content": "c1700b78ebb87a4806ca6e249abc66ffb18d89913349781b771cf39b9cf09aab" + } + ] + }, + { + "bom-ref": "b591190a760df00b", + "type": "file", + "name": "/bin/znew", + "hashes": [ + { + "alg": "SHA-1", + "content": "22bb54a658ddcb37d647811631fac9e6a515aa19" + }, + { + "alg": "SHA-256", + "content": "60cbb9f5388ebadd7dae2c9d9d061ef999818b18e324bdca9315ecea2771e1ac" + } + ] + }, + { + "bom-ref": "b7995c8758b43332", + "type": "file", + "name": "/etc/alternatives/README", + "hashes": [ + { + "alg": "SHA-1", + "content": "de50c1abd6fca390d6ba22505f9aded89c150fc8" + }, + { + "alg": "SHA-256", + "content": "a44afdb50eacfc09e45f6dac1e18ae231c179feec633c106e1060bae8ae11df1" + } + ] + }, + { + "bom-ref": "320c630a51a4feb7", + "type": "file", + "name": "/etc/apt/apt.conf.d/01autoremove", + "hashes": [ + { + "alg": "SHA-1", + "content": "6ad6e2b1b1545b33798d8adbb25eeb15c0770717" + }, + { + "alg": "SHA-256", + "content": "b646d08e9886f38b33e34ed3ebb71ce6825055a08ae7509030afd3e07d35ad40" + } + ] + }, + { + "bom-ref": "48d8e90b53aa62bf", + "type": "file", + "name": "/etc/apt/apt.conf.d/70debconf", + "hashes": [ + { + "alg": "SHA-1", + "content": "8d02d7c5507330294f8eba69adc413e35c70225b" + }, + { + "alg": "SHA-256", + "content": "db749e19baf3b72ca2c157c70c52522cae23d94bc8b2dc5793fd43d427445367" + } + ] + }, + { + "bom-ref": "17aa7268d4b587d9", + "type": "file", + "name": "/etc/apt/trusted.gpg.d/debian-archive-bullseye-automatic.gpg", + "hashes": [ + { + "alg": "SHA-1", + "content": "27d0f29dc003b5a8c91ba4d61eb39b7a4301c4c1" + }, + { + "alg": "SHA-256", + "content": "9395df01c1c6226584206a77d237c60fdc7039a015ece4e6bd3b1947db6c3b1e" + } + ] + }, + { + "bom-ref": "62e5060c3f738c6c", + "type": "file", + "name": "/etc/apt/trusted.gpg.d/debian-archive-bullseye-security-automatic.gpg", + "hashes": [ + { + "alg": "SHA-1", + "content": "4c3899132dad707cbbe44cf490ba43e35a0dec12" + }, + { + "alg": "SHA-256", + "content": "e551f90fa954a65b3b6c54160f9d8485bee806318afe7a6998c4d9bece8e0df3" + } + ] + }, + { + "bom-ref": "9861af942f3d21aa", + "type": "file", + "name": "/etc/apt/trusted.gpg.d/debian-archive-bullseye-stable.gpg", + "hashes": [ + { + "alg": "SHA-1", + "content": "30a6bce0cab0fe98ca0b13447904f14c33f60b45" + }, + { + "alg": "SHA-256", + "content": "0cdd043ff2e04448802488fd4a4e3812c298a1ab5d81374ea9a9693a274cef8c" + } + ] + }, + { + "bom-ref": "36f25ef40aa349c2", + "type": "file", + "name": "/etc/apt/trusted.gpg.d/debian-archive-buster-automatic.gpg", + "hashes": [ + { + "alg": "SHA-1", + "content": "a6f83aced5193f1f7c1e155785f5b61d38361615" + }, + { + "alg": "SHA-256", + "content": "89d89bcedee9ed88b25eabb5be786fbca6259f121e6ad6ebf5651f852f5227cf" + } + ] + }, + { + "bom-ref": "8a051d92289ca993", + "type": "file", + "name": "/etc/apt/trusted.gpg.d/debian-archive-buster-security-automatic.gpg", + "hashes": [ + { + "alg": "SHA-1", + "content": "400181c4e2ebaf97a4e8b37b904b6bbe94998429" + }, + { + "alg": "SHA-256", + "content": "bd5d7f0384531497968f1866efa6118938e812582a8d2fe86d87b0266c495783" + } + ] + }, + { + "bom-ref": "2ddcde6f2553c698", + "type": "file", + "name": "/etc/apt/trusted.gpg.d/debian-archive-buster-stable.gpg", + "hashes": [ + { + "alg": "SHA-1", + "content": "a4f90d5b993f61a779f40bc1dff6551a5d7b2b03" + }, + { + "alg": "SHA-256", + "content": "488a60d5065a97cc8b3c907be6d2c12ba5dee5b88f5efeebbd8beb60cc9cced1" + } + ] + }, + { + "bom-ref": "8a61232b09b88c9a", + "type": "file", + "name": "/etc/apt/trusted.gpg.d/debian-archive-stretch-automatic.gpg", + "hashes": [ + { + "alg": "SHA-1", + "content": "d62ea924a47d9a3fb24f8a98e32bd88947ba2986" + }, + { + "alg": "SHA-256", + "content": "6e6648330a58db617dd13ba9f51b4101932559d477e7fe5fb656d3a4352efb57" + } + ] + }, + { + "bom-ref": "b1d8a052c1aecebc", + "type": "file", + "name": "/etc/apt/trusted.gpg.d/debian-archive-stretch-security-automatic.gpg", + "hashes": [ + { + "alg": "SHA-1", + "content": "2687cdcd03c9d5a22e619783b721cdfd60fb7fbd" + }, + { + "alg": "SHA-256", + "content": "481618230f62a29729c58e35684eec7be8774c68b7f94f4a70dae668874e12df" + } + ] + }, + { + "bom-ref": "031ed0cddfbd2fac", + "type": "file", + "name": "/etc/apt/trusted.gpg.d/debian-archive-stretch-stable.gpg", + "hashes": [ + { + "alg": "SHA-1", + "content": "6f24e387825ddc9f9df9192e5f94c7c6464885b2" + }, + { + "alg": "SHA-256", + "content": "5306306431152a3fc27406f420b9e1d9905c221ad9565ac7f11abaa3867b0885" + } + ] + }, + { + "bom-ref": "855e4926f397da3c", + "type": "file", + "name": "/etc/bash.bashrc", + "hashes": [ + { + "alg": "SHA-1", + "content": "ccfa17866498a392e99db5e9d4e37f713f58e738" + }, + { + "alg": "SHA-256", + "content": "af4f09eb27cb7f140dfee7f3285574a68ca50ac1db2019652cef4196ee346307" + } + ] + }, + { + "bom-ref": "539f7dfb84a4c540", + "type": "file", + "name": "/etc/bindresvport.blacklist", + "hashes": [ + { + "alg": "SHA-1", + "content": "fc9fced97aa5db3c66342ebd24d92b075e1e5d9d" + }, + { + "alg": "SHA-256", + "content": "63229551ffc257f56e3df60ca97e1f2963f3ab2128ce27a0f398b4418fa454d0" + } + ] + }, + { + "bom-ref": "a5b5c44295780981", + "type": "file", + "name": "/etc/cron.daily/apt-compat", + "hashes": [ + { + "alg": "SHA-1", + "content": "e1e67f58d930134522d140939dd2b8681b8d8ba7" + }, + { + "alg": "SHA-256", + "content": "a069113148fc81e3c72f76249f77bff234d933d1be88909a896d672ea81bfaed" + } + ] + }, + { + "bom-ref": "6daefab9606e293f", + "type": "file", + "name": "/etc/cron.daily/dpkg", + "hashes": [ + { + "alg": "SHA-1", + "content": "670f7b1508e3347264825cfbccac283bbef56dc5" + }, + { + "alg": "SHA-256", + "content": "172557932b09e6b22519653ce4bb4397767c96c270ac9271c8e92df9bba009bf" + } + ] + }, + { + "bom-ref": "834e57f76d41800d", + "type": "file", + "name": "/etc/cron.daily/passwd", + "hashes": [ + { + "alg": "SHA-1", + "content": "387303696a796e27f559c73679e979f2a538072d" + }, + { + "alg": "SHA-256", + "content": "777a9112ee093d8683645b031eb6cfeb9ce77274f40575c48ff2054ea24114d1" + } + ] + }, + { + "bom-ref": "976a8de6022e1b22", + "type": "file", + "name": "/etc/debconf.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "d0f08b9c8893167ab7892c62a3bc6e48cdf3f20d" + }, + { + "alg": "SHA-256", + "content": "fe7e76d4162e80e0bc8c24bc638c56ae92c07a80db750cbf0a87e0904e143f4e" + } + ] + }, + { + "bom-ref": "61c0afd9e4d449ed", + "type": "file", + "name": "/etc/debian_version", + "hashes": [ + { + "alg": "SHA-1", + "content": "a8f4d558f94be8871908764fe8337c7968efe4b8" + }, + { + "alg": "SHA-256", + "content": "0766953c9406158ca41f2d49e96a59972e9cd8ccdc3f19dba8755558f0464d1c" + } + ] + }, + { + "bom-ref": "84153e8980cf4264", + "type": "file", + "name": "/etc/default/hwclock", + "hashes": [ + { + "alg": "SHA-1", + "content": "bcc1aed639afbce9b9096cd2541971ab48e798c2" + }, + { + "alg": "SHA-256", + "content": "827cf5c033ba11433d2b4087ec1e36e82766eab39ceed8e7f8f09d983d2d8235" + } + ] + }, + { + "bom-ref": "9a6c0cc1018eee69", + "type": "file", + "name": "/etc/default/nss", + "hashes": [ + { + "alg": "SHA-1", + "content": "aeaf61a9f1ce085fa16ed22c4cc60d2f565f7d7a" + }, + { + "alg": "SHA-256", + "content": "836614e9d4d501d0af43087c9c9300365a38d53f24f845efcf0b2ad8194cbaa0" + } + ] + }, + { + "bom-ref": "e232a910f238eebd", + "type": "file", + "name": "/etc/default/useradd", + "hashes": [ + { + "alg": "SHA-1", + "content": "9e8f95b9ce7a15c03dc2ded11072774983ca57b1" + }, + { + "alg": "SHA-256", + "content": "03b603de7e8c7a8192902d827edea1891360bd094cf2c810669af13aee823c70" + } + ] + }, + { + "bom-ref": "57099dea7602e7ca", + "type": "file", + "name": "/etc/deluser.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "40e84d9b448fe5f603cecb7e0d03f28cf7c244c8" + }, + { + "alg": "SHA-256", + "content": "946e0f11a8997bf41dbafca1f6f5a4bedf46746c91801ca4f2e90dd0172f06b6" + } + ] + }, + { + "bom-ref": "ef71a75894484cf7", + "type": "file", + "name": "/etc/dpkg/dpkg.cfg", + "hashes": [ + { + "alg": "SHA-1", + "content": "17c8e76036626a55e95f91dca7f60ac4dc027bb5" + }, + { + "alg": "SHA-256", + "content": "fead43b89af3ea5691c48f32d7fe1ba0f7ab229fb5d230f612d76fe8e6f5a015" + } + ] + }, + { + "bom-ref": "3f04c868c349d397", + "type": "file", + "name": "/etc/dpkg/origins/debian", + "hashes": [ + { + "alg": "SHA-1", + "content": "b65f7f2af66c53b51765877bbe91a22bc6fca1e2" + }, + { + "alg": "SHA-256", + "content": "50f35af8ac4a5df3690991a4b428fa49d56580b0020fcc6e38283b3b1b2e6c74" + } + ] + }, + { + "bom-ref": "c70e5ce6be1811a7", + "type": "file", + "name": "/etc/gai.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "37be61f791e145d69bba57a2c402268f4de6db69" + }, + { + "alg": "SHA-256", + "content": "76a5771adee7b9f36c7ae66eae78d72f325557500269107f2d98a7e3560a1808" + } + ] + }, + { + "bom-ref": "bd29efa7a287b7f3", + "type": "file", + "name": "/etc/host.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "b10cafadc043aec4056a948914f011bc39d2ec13" + }, + { + "alg": "SHA-256", + "content": "380f5fe21d755923b44203b58ca3c8b9681c485d152bd5d7e3914f67d821d32a" + } + ] + }, + { + "bom-ref": "8799472c7f1d02e3", + "type": "file", + "name": "/etc/init.d/hwclock.sh", + "hashes": [ + { + "alg": "SHA-1", + "content": "6de496930dfe00e705fa244d77e7dfa2d1c6aef8" + }, + { + "alg": "SHA-256", + "content": "a919f9434b681974a2f1d4120af10c0527b30e8cda6fdec1dea1eee3077b6609" + } + ] + }, + { + "bom-ref": "4f0c6db580d6bdef", + "type": "file", + "name": "/etc/issue", + "hashes": [ + { + "alg": "SHA-1", + "content": "a34985b8cd50f896b76a565c6e88ece484950db5" + }, + { + "alg": "SHA-256", + "content": "79c0ca52a61dfa27c0e15f690ba75d3d74175ce1172befc2d652049a9dbb0d72" + } + ] + }, + { + "bom-ref": "cd9f735e37b1dc18", + "type": "file", + "name": "/etc/issue.net", + "hashes": [ + { + "alg": "SHA-1", + "content": "46e52010170debfae9611c599b65dd54e65f9684" + }, + { + "alg": "SHA-256", + "content": "eb72eb257952111e91991693753bbe7f1e21c95a6be2c1c1fef7379b151794cf" + } + ] + }, + { + "bom-ref": "f11f367a88852739", + "type": "file", + "name": "/etc/kernel/postinst.d/apt-auto-removal", + "hashes": [ + { + "alg": "SHA-1", + "content": "9f778d51b8f046e093bc0220e90ae21d9c8ebbed" + }, + { + "alg": "SHA-256", + "content": "64fef575566fd0ab647200ed6849156d07432997d22c65a06694c8852bdb7255" + } + ] + }, + { + "bom-ref": "0136735b332d7008", + "type": "file", + "name": "/etc/ld.so.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "addee0472ac552e7c43db27234ee260282b9b988" + }, + { + "alg": "SHA-256", + "content": "d4b198c463418b493208485def26a6f4c57279467b9dfa491b70433cedb602e8" + } + ] + }, + { + "bom-ref": "e2dfbe6e6bc68e27", + "type": "file", + "name": "/etc/ld.so.conf.d/libc.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "651d33456c313b129dcff7e6f961b4450add4209" + }, + { + "alg": "SHA-256", + "content": "90d4c7e43e7661cd116010eb9f50ad5817e43162df344bd1ad10898851b15d41" + } + ] + }, + { + "bom-ref": "293c3c60597a0a43", + "type": "file", + "name": "/etc/ld.so.conf.d/x86_64-linux-gnu.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "74613698f745df3c5ae0a9c06fbb8ab3942c1446" + }, + { + "alg": "SHA-256", + "content": "f03e4740e6922b4f4a1181cd696b52f62f9f10d003740a8940f7121795c59c98" + } + ] + }, + { + "bom-ref": "2234bf132aba1144", + "type": "file", + "name": "/etc/libaudit.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "f86b14eb6371b0d99b968dabc1b853b99530cb8a" + }, + { + "alg": "SHA-256", + "content": "d48318c90620fde96cb6a8e6eb1eb64663b21200f9d1d053f9e3b4fce24a2543" + } + ] + }, + { + "bom-ref": "83ad1ac323113c22", + "type": "file", + "name": "/etc/login.defs", + "hashes": [ + { + "alg": "SHA-1", + "content": "62c51d20cdb346a4f40ae34e3aa3901c5bb7397b" + }, + { + "alg": "SHA-256", + "content": "ff7cf6759ea81d72c51ab879e751c23bb4aa73307b737743aae9f034a314e7b6" + } + ] + }, + { + "bom-ref": "be7ecee1a46582b3", + "type": "file", + "name": "/etc/logrotate.d/alternatives", + "hashes": [ + { + "alg": "SHA-1", + "content": "f5db99ee8accefa35a355ce32a02c13fb4d488b7" + }, + { + "alg": "SHA-256", + "content": "edd383958ce315a642cdfa6aa3fbe2779aa5c674b305fe910449b90cee594c58" + } + ] + }, + { + "bom-ref": "d5a1829bca4ba0ee", + "type": "file", + "name": "/etc/logrotate.d/apt", + "hashes": [ + { + "alg": "SHA-1", + "content": "2d2bbc1c53f0ca9962cf971f906ffde3426f0663" + }, + { + "alg": "SHA-256", + "content": "fcc2510172fd914ca22762c4b2dc43d36152e65becf8e84abec59f7652da5e3f" + } + ] + }, + { + "bom-ref": "138eb106592963c5", + "type": "file", + "name": "/etc/logrotate.d/dpkg", + "hashes": [ + { + "alg": "SHA-1", + "content": "86cbac3b434a27c0b627e1f6c50aa06ad0bfffa0" + }, + { + "alg": "SHA-256", + "content": "e4103352545278e47a88b2ca2f2d3681ca474d400d8057ba6ac4f18d71c32042" + } + ] + }, + { + "bom-ref": "9a239484cb65a5ec", + "type": "file", + "name": "/etc/mke2fs.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "42b81300f7946a9c0fe32072a6fe05848fcaf430" + }, + { + "alg": "SHA-256", + "content": "b155410ad87acfcfeceab9db3e6e0ac926e4a37b6a3323963cea884fa4e95d9f" + } + ] + }, + { + "bom-ref": "a054c2356c7eca83", + "type": "file", + "name": "/etc/pam.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "f3a131387778ba216d9095823f4e30c545dde167" + }, + { + "alg": "SHA-256", + "content": "8aa7f3472ec88a24a572d6ffd9748ce3da223fba3b2545098eaaae768b6408c4" + } + ] + }, + { + "bom-ref": "e92c981d052f8c1e", + "type": "file", + "name": "/etc/pam.d/chfn", + "hashes": [ + { + "alg": "SHA-1", + "content": "f16a87690b85fb554bce4ae58cbe8e189cf461f7" + }, + { + "alg": "SHA-256", + "content": "d66a095a330d7e20d0bbb56a4cb28a4b1bfc92e8a5a5e9bfc3d0a51c5e3d7170" + } + ] + }, + { + "bom-ref": "aa407d8286b4eb20", + "type": "file", + "name": "/etc/pam.d/chpasswd", + "hashes": [ + { + "alg": "SHA-1", + "content": "1754cf95dc7720ba76b08b75de077f4cc5d8a868" + }, + { + "alg": "SHA-256", + "content": "f3f96229e82bf41a7fd3ec12e697b3465235d96bb1e44c39ba91157425a36082" + } + ] + }, + { + "bom-ref": "139baa1f615f6646", + "type": "file", + "name": "/etc/pam.d/chsh", + "hashes": [ + { + "alg": "SHA-1", + "content": "7df5f989cbe88e06089bcb4f17d70c8925b6c2b6" + }, + { + "alg": "SHA-256", + "content": "0101e7e589ce40435c5a8709888225400a78ab6be86dfc5fef86ee23ba5338ad" + } + ] + }, + { + "bom-ref": "d6a428799679fec6", + "type": "file", + "name": "/etc/pam.d/login", + "hashes": [ + { + "alg": "SHA-1", + "content": "c6e460ab1394d6ff3527c3e3fdad2270a282fc20" + }, + { + "alg": "SHA-256", + "content": "42e1e68613a5e0d2942ceeb8b5a4544341bde732fed47630108a163545359f6d" + } + ] + }, + { + "bom-ref": "5281639c50e112ab", + "type": "file", + "name": "/etc/pam.d/newusers", + "hashes": [ + { + "alg": "SHA-1", + "content": "cc07d944c1a6d1eeaa00e3a79d9362d8de572ea2" + }, + { + "alg": "SHA-256", + "content": "26e75ce7c9066801b8db380ff9d8ba58a5e8cf2de5fb38ffd1db5ba62c85acef" + } + ] + }, + { + "bom-ref": "a8f20947cdbe11eb", + "type": "file", + "name": "/etc/pam.d/other", + "hashes": [ + { + "alg": "SHA-1", + "content": "22053a92a95f1d81b1932299496f9dd33def03ed" + }, + { + "alg": "SHA-256", + "content": "d13078e71d3351ef7f63a7265ddb50b710a2598b9febc78810fbb0130a02695a" + } + ] + }, + { + "bom-ref": "8ae12df55df178d7", + "type": "file", + "name": "/etc/pam.d/passwd", + "hashes": [ + { + "alg": "SHA-1", + "content": "a7a73b5ddcb02358a988de56376822cd7d8c8f17" + }, + { + "alg": "SHA-256", + "content": "87696fad1046d6b33b6d3407bb419980987331b4dcd8905f7a6041bced90c51d" + } + ] + }, + { + "bom-ref": "163537382ac01221", + "type": "file", + "name": "/etc/pam.d/runuser", + "hashes": [ + { + "alg": "SHA-1", + "content": "5eee0c00c9193b8cfc26a85605a4a10727844295" + }, + { + "alg": "SHA-256", + "content": "2d430cb6628248953568010427d663f3305856f3cb055955c2239bea226c5280" + } + ] + }, + { + "bom-ref": "cba6716ac71034db", + "type": "file", + "name": "/etc/pam.d/runuser-l", + "hashes": [ + { + "alg": "SHA-1", + "content": "ba76bbb7fd56968bb1bd438758c0ec3570b36c5e" + }, + { + "alg": "SHA-256", + "content": "be9329a8b26e3cfd4af879fe60900f646f8188f3fbe491688f23d4d8b491c5b1" + } + ] + }, + { + "bom-ref": "ac41db52ec21d2a4", + "type": "file", + "name": "/etc/pam.d/su", + "hashes": [ + { + "alg": "SHA-1", + "content": "4528698605616fee721d7ef1f28e933b1ac58828" + }, + { + "alg": "SHA-256", + "content": "f7cac62fbcd50f9931d09a9190fc3ec390fd48fb5b8bec57e0996a7246856b12" + } + ] + }, + { + "bom-ref": "8e1de04167a300e2", + "type": "file", + "name": "/etc/pam.d/su-l", + "hashes": [ + { + "alg": "SHA-1", + "content": "4847d6a186c2054aac587fe73fff59aaab57f0a7" + }, + { + "alg": "SHA-256", + "content": "4d10241676e97e5e8d8935e5c8e8f6cb2f871afb881059715f155909be9ebd77" + } + ] + }, + { + "bom-ref": "dc975212ea7500dc", + "type": "file", + "name": "/etc/securetty", + "hashes": [ + { + "alg": "SHA-1", + "content": "c1036f03b47e4f89ad35d57d4dfa670da446bda2" + }, + { + "alg": "SHA-256", + "content": "0dd82ae636d59993f23c411ace459c54b19339f637013aa502c5dc5f542bc31f" + } + ] + }, + { + "bom-ref": "3c1fd83fcdb8f11f", + "type": "file", + "name": "/etc/security/access.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "e2a2cfb8bbf2f3ec5b1b65a1cb8aa1d7e1ace604" + }, + { + "alg": "SHA-256", + "content": "f68915c4eb637aacbfa01cf26dc469a73f70acb0495efc4b074ecbc626bcb345" + } + ] + }, + { + "bom-ref": "3dea8692483fa18a", + "type": "file", + "name": "/etc/security/group.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "251da41358d9e88d303e192a0bb216f19c774483" + }, + { + "alg": "SHA-256", + "content": "41df4bc646811997d0390c6d37d839d2aef4a9a1a940c44ee1a798a9dc1ac864" + } + ] + }, + { + "bom-ref": "1e40f5d9c4c2e952", + "type": "file", + "name": "/etc/security/limits.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "f9a82848e6930edf3dcd9550b0bfa8c49969df21" + }, + { + "alg": "SHA-256", + "content": "efe8446a3c499818e7c5736c9494f222cb9098e8733aee91508b3631ad053b27" + } + ] + }, + { + "bom-ref": "ad0526c7c34be035", + "type": "file", + "name": "/etc/security/namespace.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "239860a486a350256bea8d0a1e032a18fbfd1fc1" + }, + { + "alg": "SHA-256", + "content": "d0c3045ba5071b8375fde6165d4e4db9b69f49af5d2525cecd2bca1cb7538552" + } + ] + }, + { + "bom-ref": "ef3cc12c1ec825c9", + "type": "file", + "name": "/etc/security/namespace.init", + "hashes": [ + { + "alg": "SHA-1", + "content": "0bde0dbd7776db602fadf3b7f0676e314b094d5a" + }, + { + "alg": "SHA-256", + "content": "2d76094c06f10839c566ef64bde5624c325aeab7991e7f5d776c5310e8f41932" + } + ] + }, + { + "bom-ref": "3ab48b2bf8e1767d", + "type": "file", + "name": "/etc/security/pam_env.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "1b7c088fb216a16b6da3149c0f1a86494ec8f282" + }, + { + "alg": "SHA-256", + "content": "ff4956721a3f53e56e25ffffde62fe4fa0267e5dd94c3411def12de50322fb8f" + } + ] + }, + { + "bom-ref": "9acab1d87b94696b", + "type": "file", + "name": "/etc/security/sepermit.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "0519a9bbe7b0dbd3c58df9b3fbf4cf9724e132ff" + }, + { + "alg": "SHA-256", + "content": "885ec2a43042ad88d7f849e5e1cbef4e34e58229764a84a927c0e09cd7d47d70" + } + ] + }, + { + "bom-ref": "a4ae459ea219680d", + "type": "file", + "name": "/etc/security/time.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "f534f75c1e5be8ef028b9daf90836e531e929579" + }, + { + "alg": "SHA-256", + "content": "6802adfc8efc6168f87e98e960fa7d15e516a295fef7a6472ef5359527e886ff" + } + ] + }, + { + "bom-ref": "38644e9f56a97324", + "type": "file", + "name": "/etc/selinux/semanage.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "a0a77875fc424ec2897acf5d2a642c325ffeb878" + }, + { + "alg": "SHA-256", + "content": "80464fb793459392ffbf1e79e57df3247a7b2fe413854f2c155848a0b8c6004f" + } + ] + }, + { + "bom-ref": "b22cc1401f91a2cc", + "type": "file", + "name": "/etc/skel/.bash_logout", + "hashes": [ + { + "alg": "SHA-1", + "content": "dc216ac4a4c232815731979db6e494f315b507dd" + }, + { + "alg": "SHA-256", + "content": "26882b79471c25f945c970f8233d8ce29d54e9d5eedcd2884f88affa84a18f56" + } + ] + }, + { + "bom-ref": "23ce756cb0bc2c46", + "type": "file", + "name": "/etc/skel/.bashrc", + "hashes": [ + { + "alg": "SHA-1", + "content": "1912d65db378e86db92e0ec08c9d90b93e4b0349" + }, + { + "alg": "SHA-256", + "content": "afae8986f549c6403410e029f9cce7983311512d04b1f02af02e4ce0af0dd2bf" + } + ] + }, + { + "bom-ref": "84826bf74c1aa37e", + "type": "file", + "name": "/etc/skel/.profile", + "hashes": [ + { + "alg": "SHA-1", + "content": "2b9ee6d446f8f9ffccaab42b6df5649f749a9a07" + }, + { + "alg": "SHA-256", + "content": "28b4a453b68dde64f814e94bab14ee651f4f162e15dd9920490aa1d49f05d2a4" + } + ] + }, + { + "bom-ref": "08f3bf4372d271e1", + "type": "file", + "name": "/etc/terminfo/README", + "hashes": [ + { + "alg": "SHA-1", + "content": "36fda0c2e04ae4003a9264876dd9a446f135ed53" + }, + { + "alg": "SHA-256", + "content": "cfc3399b782bb0ecb14b9727dbd5ffd82ef774d473f6c47c39e621f8f4850603" + } + ] + }, + { + "bom-ref": "b5ca75dcd49de034", + "type": "file", + "name": "/etc/update-motd.d/10-uname", + "hashes": [ + { + "alg": "SHA-1", + "content": "9149a9aa0c7a6658e96e06aa63a930e07d172b74" + }, + { + "alg": "SHA-256", + "content": "1dca09550a75048731bbd17f17e027cc71ae50a86e0d911a8b3813e88d9b5ab6" + } + ] + }, + { + "bom-ref": "a259fcfe9a7ae21d", + "type": "file", + "name": "/etc/xattr.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "54113a3771fd7b2b8bb63ccf0a899ac9af88f685" + }, + { + "alg": "SHA-256", + "content": "c1259ead36165a9477c9e1948500fb1ae58f33140d2c8b9fdf09ae54425d62b6" + } + ] + }, + { + "bom-ref": "03fbdb9fbb1d9fab", + "type": "file", + "name": "/lib/init/init-d-script", + "hashes": [ + { + "alg": "SHA-1", + "content": "3e5ec921029a42726007cc4070cf8164b1be908c" + }, + { + "alg": "SHA-256", + "content": "1c0da4a585f34258490ea506e96729eb0749634ba80c57f7c88be0aa69f6cd72" + } + ] + }, + { + "bom-ref": "3bca7fd093803a42", + "type": "file", + "name": "/lib/init/vars.sh", + "hashes": [ + { + "alg": "SHA-1", + "content": "e89abe80b0c8b2a77218b6fc3f93e0788f4c6de6" + }, + { + "alg": "SHA-256", + "content": "49d734860b46c62805fc29a67b9d61210113b6eac2409e4ffd5cf14589f4f0a3" + } + ] + }, + { + "bom-ref": "5f7834e13ae80bf3", + "type": "file", + "name": "/lib/systemd/system/apt-daily-upgrade.service", + "hashes": [ + { + "alg": "SHA-1", + "content": "8252d95fe4156f822791ea2a650d6be426938ae9" + }, + { + "alg": "SHA-256", + "content": "da0651537cad0ed384291bd50c0bbc3268e6c625626ec9344150de4e8db3925e" + } + ] + }, + { + "bom-ref": "e8100615ef958985", + "type": "file", + "name": "/lib/systemd/system/apt-daily-upgrade.timer", + "hashes": [ + { + "alg": "SHA-1", + "content": "173ec55519854c75b34e226ac35fffd3be0c021e" + }, + { + "alg": "SHA-256", + "content": "b804d7bab8eb41202384f9270e25d5383346ace8b3d7c4f5029c150638d77bcd" + } + ] + }, + { + "bom-ref": "aa54e7f8cea59155", + "type": "file", + "name": "/lib/systemd/system/apt-daily.service", + "hashes": [ + { + "alg": "SHA-1", + "content": "6d3b7e4314ea883ca6e4f0f10771c1fc6da2bf0d" + }, + { + "alg": "SHA-256", + "content": "90f87047f4ea2f261f9117d02870de8719f808b911bb1808bf039ff3c162e5e9" + } + ] + }, + { + "bom-ref": "ea66102929c24236", + "type": "file", + "name": "/lib/systemd/system/apt-daily.timer", + "hashes": [ + { + "alg": "SHA-1", + "content": "a20cbb7385ba01d03cb70b1b3e5193f0695cce13" + }, + { + "alg": "SHA-256", + "content": "0075e974af4e3a94757e219ba50ccb8348d4d1a8834d938f6cc9b1f4fd1db4e5" + } + ] + }, + { + "bom-ref": "a3e2e4b45d281787", + "type": "file", + "name": "/lib/systemd/system/fstrim.service", + "hashes": [ + { + "alg": "SHA-1", + "content": "702ceed03cbab8376a66408e317f9c9cec08d6e6" + }, + { + "alg": "SHA-256", + "content": "eb3345973ec6502143e56d9f6fc5bf45ac0f3798ea22cbfcc5189f5664f257d6" + } + ] + }, + { + "bom-ref": "311749e0f9c06262", + "type": "file", + "name": "/lib/systemd/system/fstrim.timer", + "hashes": [ + { + "alg": "SHA-1", + "content": "e1b95615491a6ce6e6d3f3974dfde86b09f745b4" + }, + { + "alg": "SHA-256", + "content": "c0207b760f12b3da601be9ffea48872bc446dcd295103563122c3b1eca0faeee" + } + ] + }, + { + "bom-ref": "1ba0da2b5f1a8468", + "type": "file", + "name": "/lib/terminfo/E/Eterm", + "hashes": [ + { + "alg": "SHA-1", + "content": "c171f101adf9f707f41d522837f410e3031114ea" + }, + { + "alg": "SHA-256", + "content": "c22ee12bc37dbdc11378b2125474be364cc2ddc384646593822626a766e5803f" + } + ] + }, + { + "bom-ref": "631ae5e24e85e97a", + "type": "file", + "name": "/lib/terminfo/a/ansi", + "hashes": [ + { + "alg": "SHA-1", + "content": "b5211ae4c20d69e9913b175c3645c5ce97837ce3" + }, + { + "alg": "SHA-256", + "content": "93ec8cb9beb0c898ebc7dda0f670de31addb605be9005735228680d592cff657" + } + ] + }, + { + "bom-ref": "59aaa1c053977957", + "type": "file", + "name": "/lib/terminfo/c/cons25", + "hashes": [ + { + "alg": "SHA-1", + "content": "b9fe14cf5f090381ae40637d02c3734b28fdd3ff" + }, + { + "alg": "SHA-256", + "content": "acd69b88fbc9045037b562dd67c876e88cc5d2616af20b9ca6c41d33ee335606" + } + ] + }, + { + "bom-ref": "f57e68dd9a777381", + "type": "file", + "name": "/lib/terminfo/c/cons25-debian", + "hashes": [ + { + "alg": "SHA-1", + "content": "3da6a66ef89960184340cd835d49e1e46d4f7c18" + }, + { + "alg": "SHA-256", + "content": "0437ef75abb06ca00a0ca444a8aa7402276b7217a20330217c84b59fdd8e0b4f" + } + ] + }, + { + "bom-ref": "0bb631a1039f1e16", + "type": "file", + "name": "/lib/terminfo/c/cygwin", + "hashes": [ + { + "alg": "SHA-1", + "content": "76d9469b0fc8838dacfd5d3922bfc95a06a6ba1c" + }, + { + "alg": "SHA-256", + "content": "3e04bfdcc0764f4e28655701864845752cd3f77d0c52390637ebe588f91665cf" + } + ] + }, + { + "bom-ref": "a64014e9e8bc2f60", + "type": "file", + "name": "/lib/terminfo/d/dumb", + "hashes": [ + { + "alg": "SHA-1", + "content": "df4b4d8fa4137e85510ddb04c84cc7b0bfc518f6" + }, + { + "alg": "SHA-256", + "content": "123c85a2812a517d967db5f31660db0e6aded4a0b95ed943c5ab435368e7a25c" + } + ] + }, + { + "bom-ref": "ddf9aeee60f4a54f", + "type": "file", + "name": "/lib/terminfo/h/hurd", + "hashes": [ + { + "alg": "SHA-1", + "content": "a8e77b1e651fb48c82d4c55574928929596c8984" + }, + { + "alg": "SHA-256", + "content": "d5dc00724a04eb3b030addab6914380521d40f416818943171070ec64c623607" + } + ] + }, + { + "bom-ref": "b1b9906c222ccc30", + "type": "file", + "name": "/lib/terminfo/l/linux", + "hashes": [ + { + "alg": "SHA-1", + "content": "2c24ba7a71a8f1bb9bc1c93f70b3ede700273160" + }, + { + "alg": "SHA-256", + "content": "50b1e7dde373b337efecb490bd514d9deab49accb06361f17c14f554dfc09b92" + } + ] + }, + { + "bom-ref": "f964e215ce0105b0", + "type": "file", + "name": "/lib/terminfo/m/mach", + "hashes": [ + { + "alg": "SHA-1", + "content": "2164ebc6389b2eb81f855aff81dd512a9c0ef589" + }, + { + "alg": "SHA-256", + "content": "ecd31c58040e5908eb434514e67620b2e4be538655126f427155760b273c7e9b" + } + ] + }, + { + "bom-ref": "da6b962a590933b8", + "type": "file", + "name": "/lib/terminfo/m/mach-bold", + "hashes": [ + { + "alg": "SHA-1", + "content": "b31e68274d7e658c3d20302c10f3a8dee2d45a6a" + }, + { + "alg": "SHA-256", + "content": "4e4400e3ad4df2dbbf90920860c540cd72552ca71a24b556a0b6ba62fa091b84" + } + ] + }, + { + "bom-ref": "f1037661871cbde0", + "type": "file", + "name": "/lib/terminfo/m/mach-color", + "hashes": [ + { + "alg": "SHA-1", + "content": "519df843a8d27ca36bb1703c3edc893135793dd1" + }, + { + "alg": "SHA-256", + "content": "5caa825bd606e26c8b6c55a3206eccfea525e788f74da5e7cb48cc713db52239" + } + ] + }, + { + "bom-ref": "2b6a12dd8050bc98", + "type": "file", + "name": "/lib/terminfo/m/mach-gnu", + "hashes": [ + { + "alg": "SHA-1", + "content": "bf9269b2a7a463c68e2ba9200b28ae3115f6b362" + }, + { + "alg": "SHA-256", + "content": "99372cd399478be723230692595362004df345dee6c4145e4d109113a2357717" + } + ] + }, + { + "bom-ref": "f580b88cdfac3f17", + "type": "file", + "name": "/lib/terminfo/m/mach-gnu-color", + "hashes": [ + { + "alg": "SHA-1", + "content": "4466e8a9353f3400cfba527abcf0d26c28f364c2" + }, + { + "alg": "SHA-256", + "content": "e1c62541670d0e10fe46daabce8ce95d9fd77115a68106e5eb2c2a7647e40a13" + } + ] + }, + { + "bom-ref": "552a1864ca3c1d2a", + "type": "file", + "name": "/lib/terminfo/p/pcansi", + "hashes": [ + { + "alg": "SHA-1", + "content": "6867ac96a0cfed1d9df1e9a64f122c75cac71a99" + }, + { + "alg": "SHA-256", + "content": "ecda9662049c96ee0a574f40cfb8950b0198b508b5b72a3de05774eb3cb3f34e" + } + ] + }, + { + "bom-ref": "9061d46a414e1c61", + "type": "file", + "name": "/lib/terminfo/r/rxvt", + "hashes": [ + { + "alg": "SHA-1", + "content": "31ca4123a34c92d39773a055ce13ad80ef6682a7" + }, + { + "alg": "SHA-256", + "content": "75395ba8ddb3660c63f82fc337c63af071307f9211727afd2fedd944baf24285" + } + ] + }, + { + "bom-ref": "2cfcfb0ca6895a1e", + "type": "file", + "name": "/lib/terminfo/r/rxvt-basic", + "hashes": [ + { + "alg": "SHA-1", + "content": "a6ef1550021e08088f68c750f0a46a8f81aa17c5" + }, + { + "alg": "SHA-256", + "content": "6065778e3cb2aa6fac521fc3d1717800956c335fe32f742bfe1655a665da8b02" + } + ] + }, + { + "bom-ref": "7b910e7da0e377e8", + "type": "file", + "name": "/lib/terminfo/r/rxvt-unicode", + "hashes": [ + { + "alg": "SHA-1", + "content": "ed5b20e981296b3f500fd7416a67fd4977dd0a57" + }, + { + "alg": "SHA-256", + "content": "280165734528e93ec7c770524e8ce3a3d29dcf5ca5696dacd093d1eb5ce3460a" + } + ] + }, + { + "bom-ref": "581873c9c4b5ebf2", + "type": "file", + "name": "/lib/terminfo/r/rxvt-unicode-256color", + "hashes": [ + { + "alg": "SHA-1", + "content": "7e4f85a3aaaaed6b1a215daf987738f14b267d9c" + }, + { + "alg": "SHA-256", + "content": "8855f7a9c77a4447f16398cc2542eb56ee80f3e066ad0a01e7183673d0e9e3c9" + } + ] + }, + { + "bom-ref": "12eeca70394f80b2", + "type": "file", + "name": "/lib/terminfo/s/screen", + "hashes": [ + { + "alg": "SHA-1", + "content": "b43375d8185fb26a2f4258639085cc3946e5be41" + }, + { + "alg": "SHA-256", + "content": "b2ca8fc467310c135be658fd93b8175af3ede6e4403a42951f72b388e72e8c43" + } + ] + }, + { + "bom-ref": "1afc68e50b575929", + "type": "file", + "name": "/lib/terminfo/s/screen-256color", + "hashes": [ + { + "alg": "SHA-1", + "content": "f3a5cd83c8216f6e5cb7da5130166b43c5e12669" + }, + { + "alg": "SHA-256", + "content": "ea72d649e11e30ed2bd2385400fea5b17b37f08aa18ccbc1d1c13e18b7ea3af2" + } + ] + }, + { + "bom-ref": "a9bab538463fd8d4", + "type": "file", + "name": "/lib/terminfo/s/screen-256color-bce", + "hashes": [ + { + "alg": "SHA-1", + "content": "f57eb86e5355cf6aa943d452f5a9e73bf15d35e7" + }, + { + "alg": "SHA-256", + "content": "f5719df3d0d6bc1184896a6f385a24c7c75a4677ed5d44fecb9c50256a44911a" + } + ] + }, + { + "bom-ref": "b8a17f6274cafa66", + "type": "file", + "name": "/lib/terminfo/s/screen-bce", + "hashes": [ + { + "alg": "SHA-1", + "content": "21dab0a8e0b80db0b31c401cefef8790bcd3615d" + }, + { + "alg": "SHA-256", + "content": "348ca9c008b9ce4a4e10744a7a5208220f5110e253a6768152ac8bef82bd395f" + } + ] + }, + { + "bom-ref": "62b5065301aa6ae5", + "type": "file", + "name": "/lib/terminfo/s/screen-s", + "hashes": [ + { + "alg": "SHA-1", + "content": "a53bd44e484fd9e07e43c303efea80e5e07c1848" + }, + { + "alg": "SHA-256", + "content": "fc7a12199df61866165db3a902e2d3c9082aba79b6bc49cc9b1b138200968d57" + } + ] + }, + { + "bom-ref": "44daf59fc2ac9190", + "type": "file", + "name": "/lib/terminfo/s/screen-w", + "hashes": [ + { + "alg": "SHA-1", + "content": "183b2fdf34ab0715f471f75a1e16d14330bfa54a" + }, + { + "alg": "SHA-256", + "content": "a2ccf6d70361bd17348e97f88f0e5efee9b076dd64e8e1a5662f5d0baabdb1a5" + } + ] + }, + { + "bom-ref": "9dc260bd375352ae", + "type": "file", + "name": "/lib/terminfo/s/screen.xterm-256color", + "hashes": [ + { + "alg": "SHA-1", + "content": "9ac96d35d03f90aebc9b16498e3f12016dccddd0" + }, + { + "alg": "SHA-256", + "content": "08055417ac9a97e0f896036961861e0ef57fec8bbd141ecd86a07d03ca692d5a" + } + ] + }, + { + "bom-ref": "b6c0fd3c7c5dc7d3", + "type": "file", + "name": "/lib/terminfo/s/sun", + "hashes": [ + { + "alg": "SHA-1", + "content": "faf6b1b33d6c3a6aae31f7b657810b6171d91a8d" + }, + { + "alg": "SHA-256", + "content": "02e392161cb23f49a8fb1ba2f1a6583e013c0c26672f58c5eaca828db3b19914" + } + ] + }, + { + "bom-ref": "9eb50f7f04b50308", + "type": "file", + "name": "/lib/terminfo/v/vt100", + "hashes": [ + { + "alg": "SHA-1", + "content": "604682c15cc708fbd02fecf33d0d23bed5e735e6" + }, + { + "alg": "SHA-256", + "content": "44fe1bfcc36f3a7669a387b623a44c360f9e150868f9924920182b44bcbbdba6" + } + ] + }, + { + "bom-ref": "7173b652a6bc59fe", + "type": "file", + "name": "/lib/terminfo/v/vt102", + "hashes": [ + { + "alg": "SHA-1", + "content": "0647b65463bb39b373e3fa4019249f2b2f84991b" + }, + { + "alg": "SHA-256", + "content": "60e451f57c0308b79004ebc6189b49417b4ac11d783154072cae803a11af7d3f" + } + ] + }, + { + "bom-ref": "f79827425768a704", + "type": "file", + "name": "/lib/terminfo/v/vt220", + "hashes": [ + { + "alg": "SHA-1", + "content": "dd532c9347e2c83c9fe6a3116fb5edc98a4bdad0" + }, + { + "alg": "SHA-256", + "content": "75a4723bfcdcd22756366838f1d65233f386d7592b019740c8ca5b578e9a5857" + } + ] + }, + { + "bom-ref": "852cbcf88d2d1700", + "type": "file", + "name": "/lib/terminfo/v/vt52", + "hashes": [ + { + "alg": "SHA-1", + "content": "b455a64f6289bade2326b57838f8fecc2a0f6c73" + }, + { + "alg": "SHA-256", + "content": "1d8e7d40be89fe71e5d2582caa5168fe53ed85d9063e0ccf42e5c53f4d17b069" + } + ] + }, + { + "bom-ref": "b56ffdbd401b75ce", + "type": "file", + "name": "/lib/terminfo/w/wsvt25", + "hashes": [ + { + "alg": "SHA-1", + "content": "6e544110ee387257fad3048674d0b6cb5e81291c" + }, + { + "alg": "SHA-256", + "content": "28d3410e6b83a3b78a41f108098ac8772a3af3ee2b627b9f9bb4b19b363a5be3" + } + ] + }, + { + "bom-ref": "2d0ce6ea805b51a4", + "type": "file", + "name": "/lib/terminfo/w/wsvt25m", + "hashes": [ + { + "alg": "SHA-1", + "content": "74ef27fc6d81c6a43dd40f231777c0ffb485a559" + }, + { + "alg": "SHA-256", + "content": "18c85db3b0ef0ab15b7eb8dc4ac6ea14a37d851628220c8bb61e2edfa4f81683" + } + ] + }, + { + "bom-ref": "50132bca1c183e9f", + "type": "file", + "name": "/lib/terminfo/x/xterm", + "hashes": [ + { + "alg": "SHA-1", + "content": "e58130030e2a31d1e19a221ffaad7f75331a9778" + }, + { + "alg": "SHA-256", + "content": "d400f558425694bbc618b1faf3c6c92c09f4b264de824d0dea7af8fa3a5096c7" + } + ] + }, + { + "bom-ref": "6bca70c96dab4e70", + "type": "file", + "name": "/lib/terminfo/x/xterm-256color", + "hashes": [ + { + "alg": "SHA-1", + "content": "3b425fa893f5312bcaf576ca7e7fbcd793e03689" + }, + { + "alg": "SHA-256", + "content": "91f49283d1ae04cd8bbbea813268aa4d0bf25ffed0f1d4e2fd24e147eba1d3d0" + } + ] + }, + { + "bom-ref": "47df3ed68fe08b65", + "type": "file", + "name": "/lib/terminfo/x/xterm-color", + "hashes": [ + { + "alg": "SHA-1", + "content": "c198d7918676777aadbe39503332054fbb5a5922" + }, + { + "alg": "SHA-256", + "content": "0b270450c7498756c0e99cfb24341e68f7443344adcf1656e30a0333e48f550f" + } + ] + }, + { + "bom-ref": "a6687485937c67c3", + "type": "file", + "name": "/lib/terminfo/x/xterm-mono", + "hashes": [ + { + "alg": "SHA-1", + "content": "949ff8f7258762b67a3753b2c2f4d5457cfcb0e9" + }, + { + "alg": "SHA-256", + "content": "183c527a8cbec5b5fef3eb8c28473a0530317eea7d01150eec74c01a214fef59" + } + ] + }, + { + "bom-ref": "6f5a9ef19fd8b3eb", + "type": "file", + "name": "/lib/terminfo/x/xterm-r5", + "hashes": [ + { + "alg": "SHA-1", + "content": "a4283a7cf44e9e4a4a9e5ac166328ba8d6ddf632" + }, + { + "alg": "SHA-256", + "content": "82098ec067be6189e91e8264278bb85fe3b7bfdeaa3754be301313be140522ca" + } + ] + }, + { + "bom-ref": "e4babad886480240", + "type": "file", + "name": "/lib/terminfo/x/xterm-r6", + "hashes": [ + { + "alg": "SHA-1", + "content": "97bfc10103a98e54eb646a2e9b39d9e23a983336" + }, + { + "alg": "SHA-256", + "content": "ee12fe6d2d8e1d0b83d1042fe8a38f1aed6fd73e2c7316e6db5ec5b061b09ef8" + } + ] + }, + { + "bom-ref": "5222d67dd72a905b", + "type": "file", + "name": "/lib/terminfo/x/xterm-vt220", + "hashes": [ + { + "alg": "SHA-1", + "content": "196db38ee77ee48febbaf235be78957a82f716c0" + }, + { + "alg": "SHA-256", + "content": "2bfcc418ca74608db0f37f7d4a33353e50a0624ef4f8f422041e22493a0a5b83" + } + ] + }, + { + "bom-ref": "0790d5446891cfab", + "type": "file", + "name": "/lib/terminfo/x/xterm-xfree86", + "hashes": [ + { + "alg": "SHA-1", + "content": "46db5031e65a8ac9143fcf1703133750588a8811" + }, + { + "alg": "SHA-256", + "content": "c9c698fde3f11aa26faa9cc71d3b2f82ee80c60904868054048bc7770910e7e2" + } + ] + }, + { + "bom-ref": "8f10eb36d96dc12d", + "type": "file", + "name": "/lib/udev/hwclock-set", + "hashes": [ + { + "alg": "SHA-1", + "content": "3e2983e594bc5c8b4e26b09cbb1ed9b074a1b2cf" + }, + { + "alg": "SHA-256", + "content": "bec691723c892b77efe3c718846c2f320b4218d6448c8cf71d663e3be8396564" + } + ] + }, + { + "bom-ref": "e384921f0e082574", + "type": "file", + "name": "/lib/udev/rules.d/85-hwclock.rules", + "hashes": [ + { + "alg": "SHA-1", + "content": "d7e6e407d6751c16269a9619f53a65fec72575b5" + }, + { + "alg": "SHA-256", + "content": "a65b7d818578fa91ebc00d086964c0528fa28d0ca04c54f11009c6c375f3e158" + } + ] + }, + { + "bom-ref": "bb966ba09c74f187", + "type": "file", + "name": "/lib/x86_64-linux-gnu/ld-2.28.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "4196dfaca4fc796710efd3dd37bd8f5c8010b11d" + }, + { + "alg": "SHA-256", + "content": "3e7cb1a5fa4d540f582dddfdb0c69958eca738ba8d60c0bbb6719f091192f33f" + } + ] + }, + { + "bom-ref": "0a79b130a5616424", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libBrokenLocale-2.28.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "2db17e165574bb2bd9d349b56a56ea63f41b4d1c" + }, + { + "alg": "SHA-256", + "content": "3de7e493988ee582802242e50491e4d2d3555c26e0c3466343149871649579d6" + } + ] + }, + { + "bom-ref": "a1140c6d957836a4", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libSegFault.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "fb29921e1306877daecd59ccd0f5ea97f7d2cd5b" + }, + { + "alg": "SHA-256", + "content": "df82e27513032ad6cdfb6562f6bcaa0f8a6ec7da674d0617786f26338f9b403e" + } + ] + }, + { + "bom-ref": "f053e80d1f72cde5", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libanl-2.28.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "bf636be0f004ba54696c761104f0d6d00c024bcc" + }, + { + "alg": "SHA-256", + "content": "52e89813dcab84fa75e910fc55a95089489a9a7ecc90c6af15fe1e71ed5e4ef7" + } + ] + }, + { + "bom-ref": "a58e8bdee74aefd9", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libaudit.so.1.0.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "dc1b1d2506dd004332006ada2555e8fc64d50af4" + }, + { + "alg": "SHA-256", + "content": "55982527ea73d4d843b38ce1519dc76134c86f96a5b5adf641ffc14f2a42dbd5" + } + ] + }, + { + "bom-ref": "2b9c124fc481e5cf", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libblkid.so.1.1.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "0669082f3a7943e5705eec4d691b97efc539bd93" + }, + { + "alg": "SHA-256", + "content": "a4e38d30fe77709d0baaa9f0dc41d1813b0cf965a21e5657e67c154f0dc13bc5" + } + ] + }, + { + "bom-ref": "c43e5197094e0aab", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libbz2.so.1.0.4", + "hashes": [ + { + "alg": "SHA-1", + "content": "402d64e4c357a4bdd867f421d540236709831bea" + }, + { + "alg": "SHA-256", + "content": "c23771594bd3f88fee06be1db61cfca3b2b6777f17089c2fc311638375994d93" + } + ] + }, + { + "bom-ref": "e21054bd80cfada8", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libc-2.28.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "13d8d9f665c1f3a087e366e9092c112a0b8e100f" + }, + { + "alg": "SHA-256", + "content": "dedb887a5c49294ecd850d86728a0744c0e7ea780be8de2d4fc89f6948386937" + } + ] + }, + { + "bom-ref": "815a6b0cfc61b494", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libcap-ng.so.0.0.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "9e1a0bda53ea84e0367a33d22d258e57440d982d" + }, + { + "alg": "SHA-256", + "content": "9ab3216433240efd918f6840a7246d83fd325dcdc7dc4efaea42b4a7ca2bc9b0" + } + ] + }, + { + "bom-ref": "f82d8447f5bde0d2", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libcom_err.so.2.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "84c21158a8175f233fcb0b380c862345e28d3ba4" + }, + { + "alg": "SHA-256", + "content": "83d9014e42d348d09940dda2d23ae68cf669b80bf344e45fef50dbe204973656" + } + ] + }, + { + "bom-ref": "e6baf857c6479ff8", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libcrypt-2.28.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "af627a7f2aa2428426b0d15b1269086de40f3577" + }, + { + "alg": "SHA-256", + "content": "fff3ce8707bce57e439ea3602be6e1e30ed26baa495c6c507a70608af8dfbd1e" + } + ] + }, + { + "bom-ref": "942ecc99011b4b8d", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libdl-2.28.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "56da5cc3a589da572aee045c89057fefd9e0d6bf" + }, + { + "alg": "SHA-256", + "content": "c60003f02517b92fafa2b06a3c8a7b18dccc4c17f1ad76b30f41445ea92bf178" + } + ] + }, + { + "bom-ref": "6982ba6e8059d67c", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libe2p.so.2.3", + "hashes": [ + { + "alg": "SHA-1", + "content": "577346b6fd2af331c288d047915cefff3efacf63" + }, + { + "alg": "SHA-256", + "content": "5023e85fba261092753f9533dacfb8b58db669893f79a68978ee2b5a0e8c5289" + } + ] + }, + { + "bom-ref": "47a44811f7025d47", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libext2fs.so.2.4", + "hashes": [ + { + "alg": "SHA-1", + "content": "97d0c180760a58de6653769f4306986b32d2932d" + }, + { + "alg": "SHA-256", + "content": "e69b13fb52e6223cd4f3e014857d89710ea6fe2515c38d34a29ad0c2b1fac231" + } + ] + }, + { + "bom-ref": "d4e71c884c00dd57", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libfdisk.so.1.1.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "638985b3f089025b35262e19ab84a1daa0719455" + }, + { + "alg": "SHA-256", + "content": "e70a12deaeb1f3aee9d185824af0f7373b3ae0388ab2f87d84a3d4e2ef5c0ac2" + } + ] + }, + { + "bom-ref": "abb75a5a213ebb01", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libgcc_s.so.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "ef08acc3362dacac1fa59e288ad2985eee6cb768" + }, + { + "alg": "SHA-256", + "content": "7557f83a5769d557bdf0bfd81220e4af0c7c5bb7a2a61daf3af66918fe077e7a" + } + ] + }, + { + "bom-ref": "d50865008510f787", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libgcrypt.so.20.2.4", + "hashes": [ + { + "alg": "SHA-1", + "content": "1d4b1591df8c1e95a414770939b4ceba4ac7d2e0" + }, + { + "alg": "SHA-256", + "content": "9492390345744a7c37c6624dd10455eb187fe54f4394a3b632b0470b4fe0904b" + } + ] + }, + { + "bom-ref": "0822227015edac64", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libgpg-error.so.0.26.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "ea793b31ae5bbac8a0c803632a26aab8dc3e217a" + }, + { + "alg": "SHA-256", + "content": "fbb4087874f0f4afd4dd9b216bcad0e07aa3d81ed139bd1bc092fccd8655b1e8" + } + ] + }, + { + "bom-ref": "f40e9c71157ed8e8", + "type": "file", + "name": "/lib/x86_64-linux-gnu/liblzma.so.5.2.4", + "hashes": [ + { + "alg": "SHA-1", + "content": "ea33f5805dc6aeab44feff7ca9b3ad8d6a539422" + }, + { + "alg": "SHA-256", + "content": "38f8f22a30d21a1bd713b79b1ac3ce70026a2878d00d028aa699a9ba0075ddb4" + } + ] + }, + { + "bom-ref": "f61bbe4658d52ed3", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libm-2.28.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "b996d294e0a1ed5156b7956a430330252eaff5fa" + }, + { + "alg": "SHA-256", + "content": "b086093ac75af8a01454d29a8fd6ee8b32881b72d9d458d4dfccc8d2b07433c4" + } + ] + }, + { + "bom-ref": "31aa6d135117288c", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libmemusage.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "4d74c1718517bdad39f7ee7f290191cb2da6bd0d" + }, + { + "alg": "SHA-256", + "content": "ebdadbe60abe706840c1cc5afdd9d7790faba7df85ce84f7c9cecb9308694e9b" + } + ] + }, + { + "bom-ref": "3d1251a68eb5b4a3", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libmount.so.1.1.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "03bb71f68efa25ada13e66c5db188204e13f166a" + }, + { + "alg": "SHA-256", + "content": "0f66683ad9817fafe677f5170ab93448a63410a7d14de23c8c566779186bbe4e" + } + ] + }, + { + "bom-ref": "bd4988bd2b87bcec", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libmvec-2.28.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "a019f017e08a9cc13f0c842e99cdac7388d08fc8" + }, + { + "alg": "SHA-256", + "content": "6630a0322a360e8b5ee1353019d88550e64fb7dd5a19421c495f38da9d3c2ba4" + } + ] + }, + { + "bom-ref": "5580cc249d5e28cd", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libncursesw.so.6.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "531ee1783bab3a56dab4f933f55ca4a7f4eb8943" + }, + { + "alg": "SHA-256", + "content": "445de19902d2dcd31d1e51c199054b1c96b814ba1b1dc8c841a8343dc7d765c5" + } + ] + }, + { + "bom-ref": "6a0fe5213393ac83", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libnsl-2.28.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "b78b5b679eeee3ec351524a06f7d279f44a2195e" + }, + { + "alg": "SHA-256", + "content": "7e716d8888dbcf6782d3539602b090d5de0e6b62ad65353fbf5cded042ba977e" + } + ] + }, + { + "bom-ref": "a72d11512bf72ea6", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libnss_compat-2.28.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "290b8cd2d33bc36d2c432f7fea62be5cbd411a80" + }, + { + "alg": "SHA-256", + "content": "8a79301c3070cef8de7fc32d4ee37bcc289ffabc9969e01ea2064501444fbef4" + } + ] + }, + { + "bom-ref": "548fbc8d56afffba", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libnss_dns-2.28.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "d705a2d553e14e365e73960549015539c20eb356" + }, + { + "alg": "SHA-256", + "content": "f9539541bac3b897dc411def29764f13090b56997437787a399a85f84b752a82" + } + ] + }, + { + "bom-ref": "97d5463f0f715699", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libnss_files-2.28.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "2e8486e1a7d837822b04594ca146ac72f31d2904" + }, + { + "alg": "SHA-256", + "content": "2e1f402d888063dda595772a9ad92220ed0904d10c846134feffd55f1b74c826" + } + ] + }, + { + "bom-ref": "e0c963616bcda6ce", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libnss_hesiod-2.28.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "143d99f86d593fce81fabaceeb55f6d661c324ca" + }, + { + "alg": "SHA-256", + "content": "0db9b7de80dd3bcff7d0f81ba3799b339781767e6ef962d5579806d2f01c2d32" + } + ] + }, + { + "bom-ref": "894656ee98481d51", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libnss_nis-2.28.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "5ba4e9d38dbc4530fe41df3262c1445b9ea8274e" + }, + { + "alg": "SHA-256", + "content": "67bca7afec9d74a868bc0c2d970020e23a15976b6bdbf5833d8e2dc0241e27d4" + } + ] + }, + { + "bom-ref": "452c0cedf20b4847", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libnss_nisplus-2.28.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "3c873f41f9b2ae591674a27c9b2c2587c285968c" + }, + { + "alg": "SHA-256", + "content": "8946cbace45a656e0edb5312504541a00c6a31b2a311a5c2f7430015d83a7727" + } + ] + }, + { + "bom-ref": "29f5a0d7f4364e9a", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libpam.so.0.84.2", + "hashes": [ + { + "alg": "SHA-1", + "content": "36727f194ef8c8724457f88dfa96a9bca001d874" + }, + { + "alg": "SHA-256", + "content": "b1a3f560f06788337a05a6759c0fb2fc554342bedc87b3103c792bd78547a4a5" + } + ] + }, + { + "bom-ref": "03795c7c7dd57e98", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libpam_misc.so.0.82.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "87ae0ae93dcddf716b92d6dd33dade7fa567d0c7" + }, + { + "alg": "SHA-256", + "content": "f6418ef5d422963ec2ba4f40b82e9f05eb8a73c1c650529aff6ad947b5f74c07" + } + ] + }, + { + "bom-ref": "03bd1542eee5de7e", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libpamc.so.0.82.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "198aa10ae29cc2ddb851fb159cac926d5012fb81" + }, + { + "alg": "SHA-256", + "content": "f50b06e8433c37d08d0dc8bfa6658b3077ed7c79da73e9475f3e5f2e5189e4c4" + } + ] + }, + { + "bom-ref": "086852fa92fb44b6", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libpcprofile.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "0470d0b9f9a41e932eb4ca2a2d40ed2b68d6e139" + }, + { + "alg": "SHA-256", + "content": "3596278a5a6974e1182fb05324746d4e22a7e3d114dc7503e545a07bf2978b36" + } + ] + }, + { + "bom-ref": "0c26b5e14abe93e5", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libpcre.so.3.13.3", + "hashes": [ + { + "alg": "SHA-1", + "content": "bf8880f430704990778f8a00c1dd8b9c3de0e55a" + }, + { + "alg": "SHA-256", + "content": "22635e5747cde5d4eb9a67e86a0a909ec9c57dc51691238beb93210876a9df82" + } + ] + }, + { + "bom-ref": "cecccfd076f892c2", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libpthread-2.28.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "9fad012def8697ce352c717ee51e1f0a288edeac" + }, + { + "alg": "SHA-256", + "content": "41301d838040c1d334362417ddfeb068a21f56b807d9f3b0081aec9c1730f6cc" + } + ] + }, + { + "bom-ref": "1564f5dd8fbb1346", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libresolv-2.28.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "c85501ce5f74938fdc258d42446c988904d21f25" + }, + { + "alg": "SHA-256", + "content": "cc13cc7674052206a01f80190e743521d324964e6b69799173dd5f1887cfe3b2" + } + ] + }, + { + "bom-ref": "a2ce1561323f2751", + "type": "file", + "name": "/lib/x86_64-linux-gnu/librt-2.28.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "ff388501720daebe6581a9a7e9124734f472b686" + }, + { + "alg": "SHA-256", + "content": "11211055deebaec92ceb507ec8dc356e7225abd2914b1a8be2a7a0f284ac7c87" + } + ] + }, + { + "bom-ref": "abcef49eb8d21461", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libselinux.so.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "05b662eb06d2a17ac78cfab02decc234ea564e95" + }, + { + "alg": "SHA-256", + "content": "e88b4bacb5086abb18befa1bf4d3569791d0ed4f4c270ee25f415a18cf97ec72" + } + ] + }, + { + "bom-ref": "7bc970e3f68d4eae", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libsepol.so.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "04845fa48ee31edd9e5d6a0c61226c09c74dc06c" + }, + { + "alg": "SHA-256", + "content": "4b17ef0cf9235c0d483946a65a811fdae2779f6cc23e54f40a7ef934872540ca" + } + ] + }, + { + "bom-ref": "c519f865a66d62e9", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libsmartcols.so.1.1.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "25c35355c76d77b6b872a3952deba3c8e746a931" + }, + { + "alg": "SHA-256", + "content": "e510e2d6bcf64849b29084f258781bcee73eea9ef2bf5ad4591b419258c22af9" + } + ] + }, + { + "bom-ref": "8713b6ca02cc80c4", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libss.so.2.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "dda0b155b12264ec6222385811022cb89d224036" + }, + { + "alg": "SHA-256", + "content": "65be4ff2451945abc3189232f02ac55dfadf638f8b47b12d440a449d90db4ac5" + } + ] + }, + { + "bom-ref": "57c181e54e598580", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libsystemd.so.0.25.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "d4894011ade8526298b18a37f794b354b956e857" + }, + { + "alg": "SHA-256", + "content": "59ff11a172ad1c112f7f545091e15e41c44aae4b6037317d10228730e8356a80" + } + ] + }, + { + "bom-ref": "b409295883a2c955", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libthread_db-1.0.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "455d1e96d708a2b4123100daeebd4b33711a9194" + }, + { + "alg": "SHA-256", + "content": "795c44a933f91ebbeadddcaefbb0979dc4d72e2524a0b6987c9db7b96e437722" + } + ] + }, + { + "bom-ref": "08dd91532aa08227", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libtinfo.so.6.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "bef17407dd0b1d068e75b9e0aa09329da99c14c2" + }, + { + "alg": "SHA-256", + "content": "72c7adef419a13e01f95116626ae158ddbbbbd8510ba06d0df757ae234d0fc35" + } + ] + }, + { + "bom-ref": "05a1f7b4cd3231fe", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libudev.so.1.6.13", + "hashes": [ + { + "alg": "SHA-1", + "content": "9a670cb87977476eea7ea294bb313a0702a598c5" + }, + { + "alg": "SHA-256", + "content": "4e385b4b90d3012a7d0e2def5529c199c783f70c2bd53c088c163f4f9ce943e4" + } + ] + }, + { + "bom-ref": "40bc5fa37077012b", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libutil-2.28.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "b9bb580786432f6fcf27d8fe5d9bc412be1ed77d" + }, + { + "alg": "SHA-256", + "content": "2bf00466e9a6c4495ca041885e07306e18245cf9f4fec24a1a9f6cf5e7e62a37" + } + ] + }, + { + "bom-ref": "35a5a742f213def6", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libuuid.so.1.3.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "e081354a6fe943cb0a096a0b6c23dfb41dfacd03" + }, + { + "alg": "SHA-256", + "content": "7324d08a81ac3d9bb51026cc9c4e7701921c2243ae37908abdcd231ffec1c667" + } + ] + }, + { + "bom-ref": "b901e1ed050c1101", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libz.so.1.2.11", + "hashes": [ + { + "alg": "SHA-1", + "content": "dc4d7b20e9127b383e88d12f52e3f1bfe51bcc82" + }, + { + "alg": "SHA-256", + "content": "b6f9002df794a16defce57c6c4d4607c698bb58c12d52ef4236f8938cba242c1" + } + ] + }, + { + "bom-ref": "5416bae48714aaf3", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_access.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "774d1449b103df97bff4a92a3f655f5be57a9335" + }, + { + "alg": "SHA-256", + "content": "bab660e4cdf775697327da1113f844716c4a705866eabb687f788e7b17487c60" + } + ] + }, + { + "bom-ref": "2e356e262b9e7638", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_debug.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "93187c1670349990e9d773aad226f94e21043f19" + }, + { + "alg": "SHA-256", + "content": "2d679e7d9c383dbd2db46dfce0aff678292a9c758438fc645b1fe6b96613dcbe" + } + ] + }, + { + "bom-ref": "fb432ec62afe7d74", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_deny.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "691e9a9506b34ebe50d003648c37e3c38b1dee87" + }, + { + "alg": "SHA-256", + "content": "363c80fa49540a8a107b652e028e6cc640eba71c4b93932cc26462199566b5de" + } + ] + }, + { + "bom-ref": "0ecd56f34fd467ce", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_echo.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "767d1f6ea63b723b301fb3c16ef8624ee2f1d556" + }, + { + "alg": "SHA-256", + "content": "4032205c19c881d05fa0edf1f8a89e988f6a832163d702035bcf4f7ceebafdb2" + } + ] + }, + { + "bom-ref": "b2e78340aae19f13", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_env.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "1f31c34cab22aaa0a24a9bf0df156c0be5107aea" + }, + { + "alg": "SHA-256", + "content": "05b70b7eff290d37e22f21d46aba54a92a8993ff5bd4bc34c139dc96f07f15a2" + } + ] + }, + { + "bom-ref": "87ec9f2712f487d6", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_exec.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "3c985b2140502071cf4ddc9daf65e1bfac2e02c4" + }, + { + "alg": "SHA-256", + "content": "20efb572b64a35a2ecf803067ceadb1c205536a6655fd17e00ef1ed27faea6f3" + } + ] + }, + { + "bom-ref": "e3cff9c49a369431", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_faildelay.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "dc44e8abdc7f29c8902297ec7f3740eb5e8bd6d1" + }, + { + "alg": "SHA-256", + "content": "965ceebfdc353873e163e8f0062b58648aa36a9268ea94bcb38be3d30beaf3b8" + } + ] + }, + { + "bom-ref": "96cc3b3ac093490f", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_filter.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "8ce908520e81edb9057f70d7fac24d59e707a5f8" + }, + { + "alg": "SHA-256", + "content": "28a7c8eb39a414a1c191943566398ea8cf7666cfb51caae205194256dc8e3982" + } + ] + }, + { + "bom-ref": "6de6a08b4735d206", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_ftp.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "3ea8ef5b39b45126682d63a789f14a213a76ad76" + }, + { + "alg": "SHA-256", + "content": "2a3e1ee8d777760f823fddd1de17e6821e362be88f46466ef3772773a056eab0" + } + ] + }, + { + "bom-ref": "cce57e505929a700", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_group.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "b32b8ede2c4b0ee42b2bdf3a4ae870fb7cc2f7cd" + }, + { + "alg": "SHA-256", + "content": "07749ca3f24279b07433d3b7bcd3a6dafd76ae91a3e8b9396de6e1ef6eb17029" + } + ] + }, + { + "bom-ref": "293011057b4617c3", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_issue.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "59464a5330214e4384813371f3554f013bf831b7" + }, + { + "alg": "SHA-256", + "content": "99a7a483571e087eb163809845662fa19892291bc948778d2c4b33c25a0d0b2f" + } + ] + }, + { + "bom-ref": "6c7dcd2d92b3cd6d", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_keyinit.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "ca28f2c9a182a47b0a37267e993216e28efb125f" + }, + { + "alg": "SHA-256", + "content": "ee975d8f7295e213dd2d22a0f13b7d3ecffff33f5db3b3f9e891db5d4efe0677" + } + ] + }, + { + "bom-ref": "66d79c68253f38ee", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_lastlog.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "095bfca74b60617e65514016d51a6cf1f05162b8" + }, + { + "alg": "SHA-256", + "content": "b6392caf5e4ba559e739efcecc19818830207a410d22f12e70dfb091089a95c3" + } + ] + }, + { + "bom-ref": "e3cf05129aad17da", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_limits.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "3afad0919dc4bb14fdb03fa59866a75a691b7127" + }, + { + "alg": "SHA-256", + "content": "792f0fe9ef3694b98f359ef4ac64b30edf38a52979df9801d3237c0dd89ea5f0" + } + ] + }, + { + "bom-ref": "c0a853bbcbb86378", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_listfile.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "8b110467614bdcf0d7a8ba6a2a7998c7844b5d22" + }, + { + "alg": "SHA-256", + "content": "82ad040c0921ceb988026fb9ca2ed41738ed69c63777b5a94340445d0bc63f56" + } + ] + }, + { + "bom-ref": "24d4c3ec2f612967", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_localuser.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "c2fc0420b8334e55c05e02e7f7adb9f1fb05230a" + }, + { + "alg": "SHA-256", + "content": "b18d3fd8fe06ffa21e62bbad4081097c18b22ea8a8d3aaf87fee6dfe14935a6f" + } + ] + }, + { + "bom-ref": "78097bfe37caec01", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_loginuid.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "381e4cfcca2ca2eef92ae9667eda3e6157a848bd" + }, + { + "alg": "SHA-256", + "content": "8dc5991f485b647d4801a7893cbe8b25d51e31435e4dcdb055a90341042e1281" + } + ] + }, + { + "bom-ref": "e7d4da16bf42eaf2", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_mail.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "9b0e26efb87377baab9fc7648fc0382f89932c9a" + }, + { + "alg": "SHA-256", + "content": "b8c1e1c1addd28362b41f589f3ca34aec4f9fa96116f76cf0e7ddd04d170fe40" + } + ] + }, + { + "bom-ref": "2dcbb5eff3d4ffa2", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_mkhomedir.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "446d5c7a8813e43e6183c1ec6aca22c447dfc526" + }, + { + "alg": "SHA-256", + "content": "71de81bc3eed912bd6bdbaa6c5e7e22c9b2012a6bfcca62522a8a24e930aa969" + } + ] + }, + { + "bom-ref": "0a419cf58f0c42c7", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_motd.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "bdf8121d49f4c8cf5a01a75c5d1b8e1e3f7731d7" + }, + { + "alg": "SHA-256", + "content": "151adae65406635ce164c988ef198eab0c9424fced7ae70c431f6f8cfe5728ab" + } + ] + }, + { + "bom-ref": "8477fbd10792eba2", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_namespace.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "3494754fa286e5cf5f312eb619c3a23c66facac2" + }, + { + "alg": "SHA-256", + "content": "ab5fb90470b4bc55e3c83f0f7115520ca38b764b760a8e0894c3b59a89c2ea47" + } + ] + }, + { + "bom-ref": "00efb13427c4abc6", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_nologin.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "54722b1ceaa769763f5580184fc10c68589ce14f" + }, + { + "alg": "SHA-256", + "content": "00982438dc8f10f8f66e2951ecffb3f6f9e0d80764934a03f69a6fdf2254d1aa" + } + ] + }, + { + "bom-ref": "6ca346e05414d234", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_permit.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "e4ff19c0f9aa0f0061868a1dc1ed3c3b412b797e" + }, + { + "alg": "SHA-256", + "content": "f3065da323f94a1238b72b47c6feed630b65febe8d81940dd95789d4bce7a995" + } + ] + }, + { + "bom-ref": "676d87f48029a342", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_pwhistory.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "26494a125630d779a6cf6c37293054a17b396669" + }, + { + "alg": "SHA-256", + "content": "f28c90fcfd26720dbd59ec8bc2e1ce14d16ec25228de639d0f150c8590a676e3" + } + ] + }, + { + "bom-ref": "7c581837e13cd446", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_rhosts.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "3e640900f360baeb429018433e512f8fb2438311" + }, + { + "alg": "SHA-256", + "content": "a88ba201848f893d7e97252bba22acbfe757d894833a1ea6450c9487a6ca3827" + } + ] + }, + { + "bom-ref": "c736d6ccbc8197fc", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_rootok.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "60f1f31047572697a60f58e46d927b2c1659065f" + }, + { + "alg": "SHA-256", + "content": "242f87dbfefd392b7f4b9d57948cee38408f1a884a8107626cfbbd55d745ae77" + } + ] + }, + { + "bom-ref": "20f6e94caaae5a9d", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_securetty.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "e54c078b178439b0037af438d4c33ffa6f80cdac" + }, + { + "alg": "SHA-256", + "content": "521a222f586aec1c09d4b9b52dd5b6d5eafec657a3ade888dfef5dc3943b8f5d" + } + ] + }, + { + "bom-ref": "6e84deef0efcd1bb", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_selinux.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "c04f3a1bbce1f6152fd7b7c985e4508c92469121" + }, + { + "alg": "SHA-256", + "content": "2b0c665f761317d5a892dc241b9ac9f71008da10321fc4750710e90efce44f22" + } + ] + }, + { + "bom-ref": "c0c5a20fb55e47bb", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_sepermit.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "cb1385c202484d481f129f2b4b48a90f65640e2e" + }, + { + "alg": "SHA-256", + "content": "331288bb78fa2dc22cadb88938cf063c135b8bcf17f307ae8bb540ad076a7f17" + } + ] + }, + { + "bom-ref": "0b7b9c7057012f21", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_shells.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "1ca1c43fb171bee3ba2afe045f7d2705422c6de6" + }, + { + "alg": "SHA-256", + "content": "55c60f2ef4c1e0b06be5e7ffe79e9a06b889f19d461858620b460c8c4d6a7235" + } + ] + }, + { + "bom-ref": "d49ef6f2ed06e00e", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_stress.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "e3021434dd8b1707b6c2998bc5718c692bd1bc83" + }, + { + "alg": "SHA-256", + "content": "289cc1a3eeef51917b158b75dc27d3f1470a30e0a7c29f4763446b1e61dbe145" + } + ] + }, + { + "bom-ref": "bd6ba633ffefc2e9", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_succeed_if.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "29c125881ae80bc7ad165a8d1965996f3512a4c9" + }, + { + "alg": "SHA-256", + "content": "1d778c9a46b18684739d3b2941ad2b272004b13068d3bcbdb0cf86b3cab101af" + } + ] + }, + { + "bom-ref": "88cbad3f339f3194", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_tally.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "67425cb5b6bac3766efb96f8562050849b628e27" + }, + { + "alg": "SHA-256", + "content": "0853e0e7b0ea307bb679b0f28a82cda9941e62c57e2185f3ffc90da042edd24c" + } + ] + }, + { + "bom-ref": "e0a6d31aa85ffde5", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_tally2.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "ec8b2af76dfa301ffd7be838370d079cb094a5b9" + }, + { + "alg": "SHA-256", + "content": "12bc1472cd377616e76536bd2f1b8633d98e56ea8f184fcbf0769fd26cef2e39" + } + ] + }, + { + "bom-ref": "cca0ae2cc2f5c2c2", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_time.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "b38f5ce6bae3c1a3bb6b0b9742ff86d26575cdd0" + }, + { + "alg": "SHA-256", + "content": "9b7e611facc77a7af171f3f85ecf9defe4240a2a126b21572a13268f666791ee" + } + ] + }, + { + "bom-ref": "4aa0d437dd1bd54f", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_timestamp.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "ab2c454b1d3d4bea90b6879b5d0af5b407bc3d6d" + }, + { + "alg": "SHA-256", + "content": "f650228544bf213d6caa9ceda2de4f95f1eec1c37017fcd8679c3789a5a21b21" + } + ] + }, + { + "bom-ref": "1aadea2897493ae0", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_tty_audit.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "75f576513b85a56056635fb03fae20ae4b756ac0" + }, + { + "alg": "SHA-256", + "content": "e6a706f6d6a43fe54af833de83d5e4f441a781c6327ecb184d2484ef525b9eed" + } + ] + }, + { + "bom-ref": "48faf32374c6f13c", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_umask.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "659d1bea9c311dad4e89157b701d7a4e068a4391" + }, + { + "alg": "SHA-256", + "content": "da02bcfa356366fa15fb9931ffabdb05527f6649c249c7dac0b54d9bc5cee135" + } + ] + }, + { + "bom-ref": "e8398bfbff100a28", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_unix.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "27a2173d5c7b49257a2a0c59d5fa6c7a764e6249" + }, + { + "alg": "SHA-256", + "content": "3188549f928d6131aaf254b2a5889bc25d7e065a838399e045f6682c2f72d1cd" + } + ] + }, + { + "bom-ref": "b0c6f0e729fee005", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_userdb.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "3b19629eb43026921e12654638221300fe84a93a" + }, + { + "alg": "SHA-256", + "content": "2aff0524a5a5b1775c584bad8f282f3956b3d2faa4b0f87a0879ec2ad3a2d336" + } + ] + }, + { + "bom-ref": "463c062dad0be61f", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_warn.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "a090f567c58af49de3fdc954943b6694df8c91ff" + }, + { + "alg": "SHA-256", + "content": "bddb98e326cfc9ffc452704962c991b7bc4f87ba93c99542a3b203e13471c1b9" + } + ] + }, + { + "bom-ref": "50d4a347688f8cdf", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_wheel.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "fe10814c7c31cac0c786d37ae40ef4902f09a01c" + }, + { + "alg": "SHA-256", + "content": "482de4a63b7c0f788b51acd75d7705531d15f1099a31fc41d7eb8f7228e7a06a" + } + ] + }, + { + "bom-ref": "799b80c885e06237", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_xauth.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "0d83fdc4720f503e63d161054d2157ea2d154d91" + }, + { + "alg": "SHA-256", + "content": "eec9e86dc2fd81a12d0de835845f285435082f50809687f97ddb9720f2976eb0" + } + ] + }, + { + "bom-ref": "a601ca6a9a321807", + "type": "file", + "name": "/sbin/agetty", + "hashes": [ + { + "alg": "SHA-1", + "content": "c3f37f0cb6edea5cfd54037eebd8ecd49225c79c" + }, + { + "alg": "SHA-256", + "content": "507098410a31cc8e8cb7bf7d5ab901c9085c2c550476de8184a08f0e054372ec" + } + ] + }, + { + "bom-ref": "d80a0b136e81d2cb", + "type": "file", + "name": "/sbin/badblocks", + "hashes": [ + { + "alg": "SHA-1", + "content": "1c123f9a243c463365223daf47366c6770004365" + }, + { + "alg": "SHA-256", + "content": "dd3ddf91b38dc22b9fcad64d0832ece37906de75984795859145fe2a1798fdea" + } + ] + }, + { + "bom-ref": "663b345fda9cfb83", + "type": "file", + "name": "/sbin/blkdiscard", + "hashes": [ + { + "alg": "SHA-1", + "content": "f7eb2712c997215416a2ae53545163cb56eddcb7" + }, + { + "alg": "SHA-256", + "content": "3150f7d7801cf1cb6f12553fc09657e69a9eb3f60e52c4b57059d217f1b7dafc" + } + ] + }, + { + "bom-ref": "e7a113d6eeb924ab", + "type": "file", + "name": "/sbin/blkid", + "hashes": [ + { + "alg": "SHA-1", + "content": "4fb851b42b1e0ae2d330815aee8878c61af5d2c8" + }, + { + "alg": "SHA-256", + "content": "6da18df92fd5a42f7037533a071dd9d33fd82d586b3a2ab5137b818e192a23c3" + } + ] + }, + { + "bom-ref": "82412461d1adee7b", + "type": "file", + "name": "/sbin/blkzone", + "hashes": [ + { + "alg": "SHA-1", + "content": "4422374d835bebf9d350ec77b7594d9eb65eda76" + }, + { + "alg": "SHA-256", + "content": "2a93f640422984f2ebed543227a6c15515d62ddeeb2e8216a7b5dc3d2a72d77a" + } + ] + }, + { + "bom-ref": "badf19a805aa1550", + "type": "file", + "name": "/sbin/blockdev", + "hashes": [ + { + "alg": "SHA-1", + "content": "855d03d3491f23b14b0ca0e547f107da6d3f576c" + }, + { + "alg": "SHA-256", + "content": "18cd4bac43b046e7af66289acb2625bc31e27e48e9553df3a85d650b39b5f47b" + } + ] + }, + { + "bom-ref": "84e570d8dae33133", + "type": "file", + "name": "/sbin/cfdisk", + "hashes": [ + { + "alg": "SHA-1", + "content": "aff0a1cc61d4c0cd1e14484b41926366be511cbc" + }, + { + "alg": "SHA-256", + "content": "d042c4f898a7b972f805b6eb1a46f8543e9b921ba089eafd9de6c46907727716" + } + ] + }, + { + "bom-ref": "359ba3e4beca1b3e", + "type": "file", + "name": "/sbin/chcpu", + "hashes": [ + { + "alg": "SHA-1", + "content": "d68e93fac0a5a9f5e4db4114f559024594e88e40" + }, + { + "alg": "SHA-256", + "content": "45304f8529c017c1d1fe6ca284286a10eb23874a80ae7e5434ed41d93dbe8f35" + } + ] + }, + { + "bom-ref": "d163cc0908e7f489", + "type": "file", + "name": "/sbin/ctrlaltdel", + "hashes": [ + { + "alg": "SHA-1", + "content": "9d2bdd0202d0369634a60b7593665cb64dbccb0d" + }, + { + "alg": "SHA-256", + "content": "5446c7ac6c915e1857b238d1b1a6730c2bff506e7a44d5bf34524cff78b947c4" + } + ] + }, + { + "bom-ref": "4ae09ed6f0cb148e", + "type": "file", + "name": "/sbin/debugfs", + "hashes": [ + { + "alg": "SHA-1", + "content": "670251b1a35591f3efeffaeaa0803c5d545d02c1" + }, + { + "alg": "SHA-256", + "content": "6e18779e17918bb6d3fcbacb69d6cd4c73b22d1433afad35243ae10e21d3e4ac" + } + ] + }, + { + "bom-ref": "0fd3b1c44a110b95", + "type": "file", + "name": "/sbin/dumpe2fs", + "hashes": [ + { + "alg": "SHA-1", + "content": "1bfd7e3beba89ef2f4ae3cd58ad064f08b748810" + }, + { + "alg": "SHA-256", + "content": "179ad59633e0acb819f6dc0edaf0094385925d5159df11044022afc8c1a9b8f7" + } + ] + }, + { + "bom-ref": "bd3496c983fceec3", + "type": "file", + "name": "/sbin/e2fsck", + "hashes": [ + { + "alg": "SHA-1", + "content": "e150f444ca85cdab1a25c3c0f9c48092f6765bb0" + }, + { + "alg": "SHA-256", + "content": "8397a5ecc28630ffa3a8d402b4a7a246cc3ebefb808b8bebcf970da7c866bbde" + } + ] + }, + { + "bom-ref": "ff3c21074a9c31f3", + "type": "file", + "name": "/sbin/e2image", + "hashes": [ + { + "alg": "SHA-1", + "content": "02cc993b317d38dbfca7f10c87bcbb5945d1f26c" + }, + { + "alg": "SHA-256", + "content": "92071eae89a59f42de674139580f725d06cb6d133aca64815d1e842ba9c8ce17" + } + ] + }, + { + "bom-ref": "6a117418ce5d5f73", + "type": "file", + "name": "/sbin/e2undo", + "hashes": [ + { + "alg": "SHA-1", + "content": "ec7d677ec20b8cb6db6b74b993fe6ba70cf2c9f3" + }, + { + "alg": "SHA-256", + "content": "8bc374ca21c17333c2aca8242fe87912747ccaf57c176b88030be934287e74c5" + } + ] + }, + { + "bom-ref": "527cb8b139ac0bed", + "type": "file", + "name": "/sbin/fdisk", + "hashes": [ + { + "alg": "SHA-1", + "content": "394ef7df99c84a06da6c36c0312eb96bcaa5f84a" + }, + { + "alg": "SHA-256", + "content": "d904c4a388a3df47aaf448afedec132d8946e13a677059a1f7c26a803acf152c" + } + ] + }, + { + "bom-ref": "2f1c0b9a496aa169", + "type": "file", + "name": "/sbin/findfs", + "hashes": [ + { + "alg": "SHA-1", + "content": "efb841c463c34593e3219e22f675a38b4c5c1764" + }, + { + "alg": "SHA-256", + "content": "1d6639d7d35982b9e917da90cf060f6ab3cca0656658e777395265222a34b36b" + } + ] + }, + { + "bom-ref": "7b63cdb9989599dd", + "type": "file", + "name": "/sbin/fsck", + "hashes": [ + { + "alg": "SHA-1", + "content": "b33436c50d946cb08bb6c06a6a3df2d45bea16a0" + }, + { + "alg": "SHA-256", + "content": "696ce2fa5275711e5ae94f5bf16c972c55f861ed6b1c71d68f995c91777cea09" + } + ] + }, + { + "bom-ref": "6fe8e5ad1476d6f8", + "type": "file", + "name": "/sbin/fsck.cramfs", + "hashes": [ + { + "alg": "SHA-1", + "content": "e8458aa500c66a2474a29be00b3c1244eb834d55" + }, + { + "alg": "SHA-256", + "content": "4a1cc30c82c22eb4328d42fd9df6900c42be529d03a2be47a92a5c82c062e96f" + } + ] + }, + { + "bom-ref": "fa058527dfffdbbd", + "type": "file", + "name": "/sbin/fsck.minix", + "hashes": [ + { + "alg": "SHA-1", + "content": "5f5d95f5d9879a1d22d6fab8f1f7260924e73932" + }, + { + "alg": "SHA-256", + "content": "4c49f9aadd5ee1c8105f93d581a0e0bbe43531656f538035db6935db72bfb844" + } + ] + }, + { + "bom-ref": "a76e2bd691e8c9de", + "type": "file", + "name": "/sbin/fsfreeze", + "hashes": [ + { + "alg": "SHA-1", + "content": "eca9c8ec6f6d73e0f9832be05f1ccaaf12e1643b" + }, + { + "alg": "SHA-256", + "content": "78c61d2ada38fc73183fc720936d77bd7456cf0b821d0711e91cdebb0453bae3" + } + ] + }, + { + "bom-ref": "739383996c667bfc", + "type": "file", + "name": "/sbin/fstab-decode", + "hashes": [ + { + "alg": "SHA-1", + "content": "34cd8192eacf0931a5bc9e44da8bf92b8d314a60" + }, + { + "alg": "SHA-256", + "content": "222f2aa846bc1c57670244dd46f72b0505be4c0d8b56357f7c64224f789a0a37" + } + ] + }, + { + "bom-ref": "e9e897dcc0406c3c", + "type": "file", + "name": "/sbin/fstrim", + "hashes": [ + { + "alg": "SHA-1", + "content": "ad7b559c615425c9f4b55a49ffd2c18f971fb3cd" + }, + { + "alg": "SHA-256", + "content": "77ac907b8196ebca74f0baeb7bb6a21b15f90bcc421b85ad4b30bbf93a9d5cab" + } + ] + }, + { + "bom-ref": "69eb8d9629d0cb43", + "type": "file", + "name": "/sbin/hwclock", + "hashes": [ + { + "alg": "SHA-1", + "content": "b36b2ba08967648235f20175f14129e802927428" + }, + { + "alg": "SHA-256", + "content": "24186640655d1dcfac10eea96f6fd60d617f32d7ab4647b855dd5cd339ceb4bb" + } + ] + }, + { + "bom-ref": "1ee20edc2d7d554c", + "type": "file", + "name": "/sbin/installkernel", + "hashes": [ + { + "alg": "SHA-1", + "content": "7c2877dfffadf500415e726bd6a755620bfc3a92" + }, + { + "alg": "SHA-256", + "content": "ab0bedb106c10aa2c2ce88ca6bb9db1a973854049b36a9961a532c4496051815" + } + ] + }, + { + "bom-ref": "83634f17f89d5255", + "type": "file", + "name": "/sbin/isosize", + "hashes": [ + { + "alg": "SHA-1", + "content": "919dd9fef08faacdee2236fb482e2cf557bb1604" + }, + { + "alg": "SHA-256", + "content": "9e78578aa2b90bab935b55f2bc830a18482bf95e12326b4afa0781e392ddb6e9" + } + ] + }, + { + "bom-ref": "8c4fe9120355fbed", + "type": "file", + "name": "/sbin/killall5", + "hashes": [ + { + "alg": "SHA-1", + "content": "56ba8e1497a6920eca299a9f46a5c87aba0552d5" + }, + { + "alg": "SHA-256", + "content": "d2115b6696114843c729b6189428729ba9c308c17d7d55497593075428e2e853" + } + ] + }, + { + "bom-ref": "31cbc5fd46d62b75", + "type": "file", + "name": "/sbin/ldconfig", + "hashes": [ + { + "alg": "SHA-1", + "content": "7c84a008ec6ae69467a05633766616578b5c3fda" + }, + { + "alg": "SHA-256", + "content": "71d1eddafa6e09f4991a044b12535ffa2e61aa40b830b10534465b25ff8a0105" + } + ] + }, + { + "bom-ref": "4fac0e39999dbf83", + "type": "file", + "name": "/sbin/logsave", + "hashes": [ + { + "alg": "SHA-1", + "content": "2d27b729e9b11edbc48e54cc51c5441e03bd89e4" + }, + { + "alg": "SHA-256", + "content": "b20df480ca9b0a4cd98c6e880046b2550d4b209c6ce46f357c739031cadf726d" + } + ] + }, + { + "bom-ref": "8cc5141feb5d0dac", + "type": "file", + "name": "/sbin/losetup", + "hashes": [ + { + "alg": "SHA-1", + "content": "7b245a217f1800ff79c688e99f8e9c4fb10c41ae" + }, + { + "alg": "SHA-256", + "content": "cf48e042a74fecdd3808d300d1ae841520a5ad67a6a1ce864d3205c174869ce8" + } + ] + }, + { + "bom-ref": "74c1a5034e896318", + "type": "file", + "name": "/sbin/mke2fs", + "hashes": [ + { + "alg": "SHA-1", + "content": "2e2ef7fe806e8e602a46131cd816ed2f1884fc28" + }, + { + "alg": "SHA-256", + "content": "373f20092949fe913e8a59d6a78f23d05ab92e008c2c27852b39cfe5e7e8a59d" + } + ] + }, + { + "bom-ref": "6fdd584f43dec65f", + "type": "file", + "name": "/sbin/mkfs", + "hashes": [ + { + "alg": "SHA-1", + "content": "29639a36820adfd3a3ea1b8e45004f48b39df846" + }, + { + "alg": "SHA-256", + "content": "d6fd4d3ffd3ccc6d1d98eaebbf6bd370b378bdbac61ba5836fd9ca304b7a782b" + } + ] + }, + { + "bom-ref": "b7b58d1650e8963b", + "type": "file", + "name": "/sbin/mkfs.bfs", + "hashes": [ + { + "alg": "SHA-1", + "content": "f3f28b27662f73aee000cc757f3cc6d5a5cf8bbc" + }, + { + "alg": "SHA-256", + "content": "bca4a529a3468ccca570f9e1c32e937b5ead823c2b941a5a132babbe0e868161" + } + ] + }, + { + "bom-ref": "3dda086737b0face", + "type": "file", + "name": "/sbin/mkfs.cramfs", + "hashes": [ + { + "alg": "SHA-1", + "content": "b9c1c8e8637cdd50a53418b94e93bb297f65bba1" + }, + { + "alg": "SHA-256", + "content": "f49a6fe1ba904c6281c376ffca09424b7f33329d040011a5076c12e4829c757c" + } + ] + }, + { + "bom-ref": "f3a197792a67254b", + "type": "file", + "name": "/sbin/mkfs.minix", + "hashes": [ + { + "alg": "SHA-1", + "content": "dc2cba2ac9165a0796dc1e33439dbd7a1c135d5a" + }, + { + "alg": "SHA-256", + "content": "cccb6fb8aa5b77f85214cab7bab8f5176911a86cdf6ce89d90acb2b7ec1d6e13" + } + ] + }, + { + "bom-ref": "da83ff87ee57d9b6", + "type": "file", + "name": "/sbin/mkhomedir_helper", + "hashes": [ + { + "alg": "SHA-1", + "content": "6475e5b4f4b7bcfa908306568f8dd2dd9032ef6b" + }, + { + "alg": "SHA-256", + "content": "41e759c85335eee1c687d4ec4dc196bfdd4334b4afe815d71c7d7b670731904e" + } + ] + }, + { + "bom-ref": "4bf4b073e36e623f", + "type": "file", + "name": "/sbin/mkswap", + "hashes": [ + { + "alg": "SHA-1", + "content": "ec9cc6f5f0b531387940ccd2072b6f6e2de8f2f1" + }, + { + "alg": "SHA-256", + "content": "29e38ab412b11845dd6836e46581f3376295d37094dac7eadc8a9fa2247ad96b" + } + ] + }, + { + "bom-ref": "ed883b23fc1c078f", + "type": "file", + "name": "/sbin/pam_tally", + "hashes": [ + { + "alg": "SHA-1", + "content": "68cf525eb16866fe9add4bacd1c0c111e62f4fb8" + }, + { + "alg": "SHA-256", + "content": "fa7f09027fdb5ac6685a0ec40d1e4f011261b589232f64320d38a383c5085c48" + } + ] + }, + { + "bom-ref": "a5adb654276bb0cf", + "type": "file", + "name": "/sbin/pam_tally2", + "hashes": [ + { + "alg": "SHA-1", + "content": "11f58e0a37e6a9bbd3b4ae9dce2e0fe37072ddad" + }, + { + "alg": "SHA-256", + "content": "e5782482e0652005bfe9023a69fa1f2f5d0046f53ea591ad1ad1e3163d250faf" + } + ] + }, + { + "bom-ref": "9d5601fbeca78a8b", + "type": "file", + "name": "/sbin/pivot_root", + "hashes": [ + { + "alg": "SHA-1", + "content": "c23f9b1ddd8bca0e2e2490eb8b28a188859814c7" + }, + { + "alg": "SHA-256", + "content": "86729ee3dcae08ba99f17a244ac92d196e993227b136b0a710f2523cd91f839e" + } + ] + }, + { + "bom-ref": "7ec52f4f9b8f8a20", + "type": "file", + "name": "/sbin/raw", + "hashes": [ + { + "alg": "SHA-1", + "content": "52252b087fd0db4ba81cd536d6653c088510b79f" + }, + { + "alg": "SHA-256", + "content": "9b854ca023bbe8e84f7ac73c06d8f68f938b247b1034c1a28e432fcb99f3aacf" + } + ] + }, + { + "bom-ref": "55e056e1a4a80c39", + "type": "file", + "name": "/sbin/resize2fs", + "hashes": [ + { + "alg": "SHA-1", + "content": "14a6de4f950d5eb33913c6057eda39d02bb6d001" + }, + { + "alg": "SHA-256", + "content": "84cc6cc19c62f9159b410f26dbb33d5d229c2eb223e50efd56f166a21c09ea43" + } + ] + }, + { + "bom-ref": "66130f524f0ceb70", + "type": "file", + "name": "/sbin/runuser", + "hashes": [ + { + "alg": "SHA-1", + "content": "7431e4279e0ec8a79281a59d544d91f9f6316bc2" + }, + { + "alg": "SHA-256", + "content": "3c0c4834897e870ed2d7d2d34b66664bc02c45429377187fe06681191f9730c2" + } + ] + }, + { + "bom-ref": "642b0e088d559b61", + "type": "file", + "name": "/sbin/sfdisk", + "hashes": [ + { + "alg": "SHA-1", + "content": "f45911632af6f783e1741dd9d197a63b75037eb7" + }, + { + "alg": "SHA-256", + "content": "7fbddcff20ca72f7888d8327695d1bcb812a174120a6f7116433cf62eb613403" + } + ] + }, + { + "bom-ref": "d919903bd99bc1de", + "type": "file", + "name": "/sbin/shadowconfig", + "hashes": [ + { + "alg": "SHA-1", + "content": "cb340f1fda080d89c0ddeb7d9d7b735051522e05" + }, + { + "alg": "SHA-256", + "content": "e456ba3088c0cb498ba86d9ce496273138e9cfe523feeb1a7e7083aae349dded" + } + ] + }, + { + "bom-ref": "6decbb35d3eee631", + "type": "file", + "name": "/sbin/start-stop-daemon", + "hashes": [ + { + "alg": "SHA-1", + "content": "8f43bf9e2b8245c95b43e49298056cf77f9f5d3c" + }, + { + "alg": "SHA-256", + "content": "0d0db60349ed1548da3bfc9381cf4fb2fe64f1e08912cf88588a1fa5a9de0641" + } + ] + }, + { + "bom-ref": "fef310c72ee1deab", + "type": "file", + "name": "/sbin/sulogin", + "hashes": [ + { + "alg": "SHA-1", + "content": "4219550bd4bb1d307755f68ce1a6745fc43036b8" + }, + { + "alg": "SHA-256", + "content": "6b45d42667111bef04d3c4c193d75c8d90bd4c55b50ec89cf888b1e79351e762" + } + ] + }, + { + "bom-ref": "a6bf0bf2a5974157", + "type": "file", + "name": "/sbin/swaplabel", + "hashes": [ + { + "alg": "SHA-1", + "content": "fac6a4ddda3fd04bbe87f47fe2afb36adb7e3c6c" + }, + { + "alg": "SHA-256", + "content": "d630c34074ffaafa66824c5fe6ad18f6d850e115dab4a6f850d934c10bb4e156" + } + ] + }, + { + "bom-ref": "150cfd50715868de", + "type": "file", + "name": "/sbin/swapoff", + "hashes": [ + { + "alg": "SHA-1", + "content": "f26b9ac58ced080e024d9215ab0d923ca936a196" + }, + { + "alg": "SHA-256", + "content": "423ccc69452a362f22985ec382b6c62f2fa7beed656f0a185a0bb589ff8f4e43" + } + ] + }, + { + "bom-ref": "0f974b5950cb5803", + "type": "file", + "name": "/sbin/swapon", + "hashes": [ + { + "alg": "SHA-1", + "content": "59e067da45cf36589443c0d6689ccad341cd4caf" + }, + { + "alg": "SHA-256", + "content": "c02ef3d3042e99b194567d7bf6eda3546bcfd30b797ed0c82dca0d0bd2991563" + } + ] + }, + { + "bom-ref": "db13c6cf3a8a6756", + "type": "file", + "name": "/sbin/switch_root", + "hashes": [ + { + "alg": "SHA-1", + "content": "3eac3d10517a854038922cf0885a91bf90eca9ad" + }, + { + "alg": "SHA-256", + "content": "0d01d5f98281a8fea65f59d2776087bd4470b01e2ab50eec3bd44eba26077333" + } + ] + }, + { + "bom-ref": "0bd98246e2319325", + "type": "file", + "name": "/sbin/tune2fs", + "hashes": [ + { + "alg": "SHA-1", + "content": "8b714ebfb943479fb8a4c78ea098afe7793472eb" + }, + { + "alg": "SHA-256", + "content": "bd45fd6febf7b164233650f5e9b4127ef7a26b72c3726d99685fe5d870964c0a" + } + ] + }, + { + "bom-ref": "ebc960611b6838ec", + "type": "file", + "name": "/sbin/unix_chkpwd", + "hashes": [ + { + "alg": "SHA-1", + "content": "21eb30ed2e0c583157a60126f6afb9b8f7a5f4d9" + }, + { + "alg": "SHA-256", + "content": "9924df1f84a1603abe1fab58b5ede42e8acf245f6ecba580e20cb3e698a4d158" + } + ] + }, + { + "bom-ref": "df1fbb94cad8de63", + "type": "file", + "name": "/sbin/unix_update", + "hashes": [ + { + "alg": "SHA-1", + "content": "0d79b449eba25b31abbac0410c8c74fb0c77e73c" + }, + { + "alg": "SHA-256", + "content": "661fcf8f2b0604d7dcc91412c369513a7787487f0a32a61bc8789477c1294277" + } + ] + }, + { + "bom-ref": "3b3c4a3f7fbebf46", + "type": "file", + "name": "/sbin/wipefs", + "hashes": [ + { + "alg": "SHA-1", + "content": "0392f95e6c183856fc5c0d80f99b481f5701ba41" + }, + { + "alg": "SHA-256", + "content": "ab614a6465bfbe4dee1767c844885b242749ec536dd41303c7fcc2a38ce38a65" + } + ] + }, + { + "bom-ref": "a912a2b6dbccdcba", + "type": "file", + "name": "/sbin/zramctl", + "hashes": [ + { + "alg": "SHA-1", + "content": "492c85d8a689e9ac61f9cc345f6270eb278bdea0" + }, + { + "alg": "SHA-256", + "content": "4a3e88232eb18fa8f80543f0d4536d20138cf532d20a49029fc0839471d30ac7" + } + ] + }, + { + "bom-ref": "75f74f57e4642bd7", + "type": "file", + "name": "/usr/bin/[", + "hashes": [ + { + "alg": "SHA-1", + "content": "78f6a87622a17fef7e841e8e0902c361d29a3a1d" + }, + { + "alg": "SHA-256", + "content": "0d019b94ab38b099a2d51a90cebb22a2d06f9b6754862eb99c85df906abe70f8" + } + ] + }, + { + "bom-ref": "fae1f07baca3473b", + "type": "file", + "name": "/usr/bin/addpart", + "hashes": [ + { + "alg": "SHA-1", + "content": "0e42b38b035869d02f3d2d72a501d303a30ff820" + }, + { + "alg": "SHA-256", + "content": "405e79fae01caa30b951f51c7c1c0784b7c2bd8782561e9a9b0516a534be34f7" + } + ] + }, + { + "bom-ref": "910bd2666ee38bfa", + "type": "file", + "name": "/usr/bin/apt", + "hashes": [ + { + "alg": "SHA-1", + "content": "5504d65ef97bc3091c064018021b723c3f82f841" + }, + { + "alg": "SHA-256", + "content": "eeca3ffa98fb4501a447d06c8a81cacaa8058968e5d9775a43ecfccbb22430ff" + } + ] + }, + { + "bom-ref": "141662044e034e21", + "type": "file", + "name": "/usr/bin/apt-cache", + "hashes": [ + { + "alg": "SHA-1", + "content": "0033c4e456054b696a7e62c9cbe6637fc4dde2e3" + }, + { + "alg": "SHA-256", + "content": "b1a90fdc9b9b18c5490999dd1759b4f59101a1801de29154fa0f556f757c5c32" + } + ] + }, + { + "bom-ref": "f00a4da39bd7c2f1", + "type": "file", + "name": "/usr/bin/apt-cdrom", + "hashes": [ + { + "alg": "SHA-1", + "content": "b71950191fdbf079e0cf7fdd3cf1ec64c886b7fa" + }, + { + "alg": "SHA-256", + "content": "cbc7a0407377e88f1c9a8d217d967d524a2d1363cec46ef23ede28194be466c3" + } + ] + }, + { + "bom-ref": "38e55dd497584df1", + "type": "file", + "name": "/usr/bin/apt-config", + "hashes": [ + { + "alg": "SHA-1", + "content": "e01fa47cdec9b41afd63cbe89bd8fcdf8a9873e3" + }, + { + "alg": "SHA-256", + "content": "7717bdbd58a6f19bc9782fa17674a951b20d959254f10f84f9ae90c29c82c3dd" + } + ] + }, + { + "bom-ref": "29bf63c23b5774cf", + "type": "file", + "name": "/usr/bin/apt-get", + "hashes": [ + { + "alg": "SHA-1", + "content": "df2df28a7aff92487b14543629f372ec2a310c51" + }, + { + "alg": "SHA-256", + "content": "64a67f0e95c6fc931cf85c8e60d5885e7e68259d99c3675453a32c273503326d" + } + ] + }, + { + "bom-ref": "2a6d894efd6f2f2e", + "type": "file", + "name": "/usr/bin/apt-key", + "hashes": [ + { + "alg": "SHA-1", + "content": "5c3a08c3c8f50fcdeb1b512d70918daf6ddebb82" + }, + { + "alg": "SHA-256", + "content": "820c1c9b3aac8147aa9312d3f01a0132b085c6ab0b28790f95185f0a49f07da2" + } + ] + }, + { + "bom-ref": "740246cd0047d6c1", + "type": "file", + "name": "/usr/bin/apt-mark", + "hashes": [ + { + "alg": "SHA-1", + "content": "2f006d15b362f38b920632c0a4445b837e391b20" + }, + { + "alg": "SHA-256", + "content": "c23f36a11af89270eabeddc134325e5869d31bb48f32c10124c74804618d2c50" + } + ] + }, + { + "bom-ref": "e0cefd9c8af27994", + "type": "file", + "name": "/usr/bin/arch", + "hashes": [ + { + "alg": "SHA-1", + "content": "f8f0f01366ed35aee7bc07577b75ae53bea10049" + }, + { + "alg": "SHA-256", + "content": "7fd525b937cbc47f186e4fec788805ccba5490521bb7b6f4bdd85adc7f0cc63a" + } + ] + }, + { + "bom-ref": "81a0b1e9cbdb88f7", + "type": "file", + "name": "/usr/bin/b2sum", + "hashes": [ + { + "alg": "SHA-1", + "content": "b615a3bec1e15e6ccae37e4f9693c8e6e41f7f09" + }, + { + "alg": "SHA-256", + "content": "a569c91067478059e7b00dd69feae10920d738d7055ad269e4d6758e22762657" + } + ] + }, + { + "bom-ref": "6ca85edb39feb293", + "type": "file", + "name": "/usr/bin/base32", + "hashes": [ + { + "alg": "SHA-1", + "content": "f5afd167016d6eb9cfd0bbe85901deba6510ebfc" + }, + { + "alg": "SHA-256", + "content": "2d290f90f33dc93538c8932addbac120446e850bf97bf2ccf2c67f8115764fd9" + } + ] + }, + { + "bom-ref": "fc6cf549c8b41760", + "type": "file", + "name": "/usr/bin/base64", + "hashes": [ + { + "alg": "SHA-1", + "content": "932c2954b40e6e72ab180aec1f897f4f9d7797a8" + }, + { + "alg": "SHA-256", + "content": "42d393d1d6a7a7a61dbd9b4e4927b7014b32dd60d978774259bdaee3a356e24d" + } + ] + }, + { + "bom-ref": "0bb42505bd856fbc", + "type": "file", + "name": "/usr/bin/basename", + "hashes": [ + { + "alg": "SHA-1", + "content": "23afc8b4a34bd94a32c7b05a9f5c5ace69f40331" + }, + { + "alg": "SHA-256", + "content": "39b8ab40f79a2b8594eb0d25d48a1a76508e0b9b1ca969a5fb5f27307bd2839f" + } + ] + }, + { + "bom-ref": "1580ebc7d74a9974", + "type": "file", + "name": "/usr/bin/bashbug", + "hashes": [ + { + "alg": "SHA-1", + "content": "8e8e05c5d45000af4070c7a47ad537d83e9d040b" + }, + { + "alg": "SHA-256", + "content": "23c2cac11a40e09cf296bb3d1632ab63a650eefc6428131b8589ec4ecf786695" + } + ] + }, + { + "bom-ref": "8f4c0d2a68ea0beb", + "type": "file", + "name": "/usr/bin/catchsegv", + "hashes": [ + { + "alg": "SHA-1", + "content": "6d53d45eb1aa8b45b193d293d25b5839cc8e1b56" + }, + { + "alg": "SHA-256", + "content": "df5bf542a5b90c094541dcade99254a4de6ead94710b14507e993def5b075534" + } + ] + }, + { + "bom-ref": "a3d32b964f7d10b2", + "type": "file", + "name": "/usr/bin/chage", + "hashes": [ + { + "alg": "SHA-1", + "content": "52a93308fb2a565da97c732facb3b6828a5f07a7" + }, + { + "alg": "SHA-256", + "content": "ce8fd714eca98ab1c1d88b2b7c4504da92cca82faa27efecbe2ed6cff43654fa" + } + ] + }, + { + "bom-ref": "841d2ac100de50e0", + "type": "file", + "name": "/usr/bin/chattr", + "hashes": [ + { + "alg": "SHA-1", + "content": "cc15c1e6852d2ade693aa9b9df1cfa46b1643831" + }, + { + "alg": "SHA-256", + "content": "5a828bb6febbd3cc8d2681eb21557a893cabd28fd3567b371290cf7129c90635" + } + ] + }, + { + "bom-ref": "59ba4094c68c7be6", + "type": "file", + "name": "/usr/bin/chcon", + "hashes": [ + { + "alg": "SHA-1", + "content": "0574f6031047b9497213683e2f2d7904b6f9eca2" + }, + { + "alg": "SHA-256", + "content": "5181c7a39844f780e7ccf2db9d6fe9a181a1be125efa5b93508cd9899229f378" + } + ] + }, + { + "bom-ref": "90ac343a52567805", + "type": "file", + "name": "/usr/bin/chfn", + "hashes": [ + { + "alg": "SHA-1", + "content": "b7a4c87ea63fe6143d3f3fae19b150108e411223" + }, + { + "alg": "SHA-256", + "content": "cbceea7340d68dcc30e4eb9e6cc4f69a26c078ef1ff26c55360fb65184a8296c" + } + ] + }, + { + "bom-ref": "a4ef30c6071efaef", + "type": "file", + "name": "/usr/bin/choom", + "hashes": [ + { + "alg": "SHA-1", + "content": "e4a9a2884bc607526c070ba98afb01030e4c9ec6" + }, + { + "alg": "SHA-256", + "content": "93fd8c46e0f08929daff3012abbfa1c2cdd66c6ef3c18977870b03967f86949a" + } + ] + }, + { + "bom-ref": "d20c075db63fac89", + "type": "file", + "name": "/usr/bin/chrt", + "hashes": [ + { + "alg": "SHA-1", + "content": "31de858fb8e5b01d2275d66b3eca394b27afc13e" + }, + { + "alg": "SHA-256", + "content": "ec0d2f48407f61040efabe720000329e17e0a60968ad940e2c05e642125429e2" + } + ] + }, + { + "bom-ref": "d22253c01acd6196", + "type": "file", + "name": "/usr/bin/chsh", + "hashes": [ + { + "alg": "SHA-1", + "content": "0c581db9459610550b11ac36532b9fa24d251ebd" + }, + { + "alg": "SHA-256", + "content": "82d20231cdf5423495a00b4e35b544497d6293d85b5e72133668bafe342587d1" + } + ] + }, + { + "bom-ref": "1b053276106ba54c", + "type": "file", + "name": "/usr/bin/cksum", + "hashes": [ + { + "alg": "SHA-1", + "content": "7a51bf06099e5d1b11238e63b7ebd18ee56a9056" + }, + { + "alg": "SHA-256", + "content": "9349e8260e4d984b798bec8a65fea7a3797feef793dfae7ecc4333200862f844" + } + ] + }, + { + "bom-ref": "79907bb1627515e2", + "type": "file", + "name": "/usr/bin/clear", + "hashes": [ + { + "alg": "SHA-1", + "content": "3f4fab0f46e02a10b6f4e4131e7217019e943b1f" + }, + { + "alg": "SHA-256", + "content": "5a39bf45e605a36b7c8ba0397b74383cdc99bf089d1c454260a5c2fdbc41cd93" + } + ] + }, + { + "bom-ref": "7a1a83acaac53a70", + "type": "file", + "name": "/usr/bin/clear_console", + "hashes": [ + { + "alg": "SHA-1", + "content": "67902adb84f7b0e7fbad087ef925a1786c5eb3a9" + }, + { + "alg": "SHA-256", + "content": "401a53500876f168a0725b2db2668de574435d8f6b01e755ec5e17c6bdadc3c7" + } + ] + }, + { + "bom-ref": "b259a4a7841c4b84", + "type": "file", + "name": "/usr/bin/cmp", + "hashes": [ + { + "alg": "SHA-1", + "content": "7dab48f32960e31c872439b4e6950b58469504c9" + }, + { + "alg": "SHA-256", + "content": "37c56ef3028f1622476d6861466183a421b7bbeb2cf7c651aa781a34660eadb1" + } + ] + }, + { + "bom-ref": "63ae9bd29a38b541", + "type": "file", + "name": "/usr/bin/comm", + "hashes": [ + { + "alg": "SHA-1", + "content": "807261986996aed457a9c8fdaf1c40773b9f76e3" + }, + { + "alg": "SHA-256", + "content": "df7c233963926c4c971d0b85f1af9845984635bbc46d9557319995100afabe27" + } + ] + }, + { + "bom-ref": "02c6d71ade074bc8", + "type": "file", + "name": "/usr/bin/csplit", + "hashes": [ + { + "alg": "SHA-1", + "content": "81cfb5be928e70a900e56c29837f3e25a3eef38c" + }, + { + "alg": "SHA-256", + "content": "a10aac32f80e8286115ea7d6a08a7db6d0cdef5dbf1490206fcc1314840cc3a8" + } + ] + }, + { + "bom-ref": "48f990387610d02e", + "type": "file", + "name": "/usr/bin/cut", + "hashes": [ + { + "alg": "SHA-1", + "content": "0689f59ff263ec91e74f637634b6942e3b9fd231" + }, + { + "alg": "SHA-256", + "content": "d1dc9ec31835e244e7233b25f0785ce67327c99dcc274062a1aff5cacf5dd613" + } + ] + }, + { + "bom-ref": "99d38e86e1a16515", + "type": "file", + "name": "/usr/bin/deb-systemd-helper", + "hashes": [ + { + "alg": "SHA-1", + "content": "dfde7cbdc8714059cd2b25801809231e4c42cd4e" + }, + { + "alg": "SHA-256", + "content": "76e6e95c8a57ffa45df1ca84342b97f331958b9af6066178c67bf447c6d12447" + } + ] + }, + { + "bom-ref": "4fea8db6322b2f83", + "type": "file", + "name": "/usr/bin/deb-systemd-invoke", + "hashes": [ + { + "alg": "SHA-1", + "content": "018fd487b799048c59199ae69e42d2ec06178271" + }, + { + "alg": "SHA-256", + "content": "dcbfd9ec0b940d3eb53f63285b396994f1e091280e632a12c708cc6d49ea4806" + } + ] + }, + { + "bom-ref": "34d0c0364d770d55", + "type": "file", + "name": "/usr/bin/debconf", + "hashes": [ + { + "alg": "SHA-1", + "content": "e5fdf013a529ab1fafea520535b660feca1a5658" + }, + { + "alg": "SHA-256", + "content": "d365d13eb1dff880be7361e4043d25875075776445d4edd1eb4fb1e451a2e41a" + } + ] + }, + { + "bom-ref": "1096cd8ad1cb8b9e", + "type": "file", + "name": "/usr/bin/debconf-apt-progress", + "hashes": [ + { + "alg": "SHA-1", + "content": "c6e90c187f546d4e2b1968b56dbb2904f9b5a3ef" + }, + { + "alg": "SHA-256", + "content": "93fb257df4185cc6b83858bdae3c7aec0a4f759a848c743a0b0fd7c7091cf34b" + } + ] + }, + { + "bom-ref": "fd12174dd1d8e6fa", + "type": "file", + "name": "/usr/bin/debconf-communicate", + "hashes": [ + { + "alg": "SHA-1", + "content": "5783cff11d024454030745e28bc81edae1278792" + }, + { + "alg": "SHA-256", + "content": "705b8ce793f999f21bf2f20348b390738a139116c9e483fb39165a508fde4d27" + } + ] + }, + { + "bom-ref": "c7ebcbd96d98be8f", + "type": "file", + "name": "/usr/bin/debconf-copydb", + "hashes": [ + { + "alg": "SHA-1", + "content": "dcd02e9edac2712756664b713d4ec5f0066b861a" + }, + { + "alg": "SHA-256", + "content": "085ff55904c81115d8d65f8862f0a5ad393e062da3047762e4d9cd4f5ba761f4" + } + ] + }, + { + "bom-ref": "c6d09bcd6885c74c", + "type": "file", + "name": "/usr/bin/debconf-escape", + "hashes": [ + { + "alg": "SHA-1", + "content": "de0e7ce4e7369158826dd9caa0894eb5a357e743" + }, + { + "alg": "SHA-256", + "content": "6c17a536ca0fcefa24a7d37f7eaebc02e774415b3160836918cff6cecdef807d" + } + ] + }, + { + "bom-ref": "92ab3dab3fdf39f6", + "type": "file", + "name": "/usr/bin/debconf-set-selections", + "hashes": [ + { + "alg": "SHA-1", + "content": "3a407308248020865ad84bf58807ee96f9e518ac" + }, + { + "alg": "SHA-256", + "content": "8085a988bb9850fd9a3405c8a1f8e643c197811f6edf53dfc5ad20ef85040224" + } + ] + }, + { + "bom-ref": "399347d4d931c99f", + "type": "file", + "name": "/usr/bin/debconf-show", + "hashes": [ + { + "alg": "SHA-1", + "content": "28c58caf56dfd7a565de284297c301bfd3e5b33f" + }, + { + "alg": "SHA-256", + "content": "9dd0bfe9a51d92af868012a32a8190b83a6f4b0834385d12033732b24ee2ceca" + } + ] + }, + { + "bom-ref": "3ab046133a8ae956", + "type": "file", + "name": "/usr/bin/delpart", + "hashes": [ + { + "alg": "SHA-1", + "content": "c8ca354e8b48110c1da958ffcdde9dad7ce54ccd" + }, + { + "alg": "SHA-256", + "content": "4ea8dd80e719de087bd70482d84c763cb46e6323774ad99905099a32ab97bbb6" + } + ] + }, + { + "bom-ref": "5350eda9dd25257a", + "type": "file", + "name": "/usr/bin/diff", + "hashes": [ + { + "alg": "SHA-1", + "content": "44635916fcf393ca1d0f71939403f0b87f22bb7b" + }, + { + "alg": "SHA-256", + "content": "44b4e0c34a331c5527a342f7a997c3dc50f7fcf19090891a02fca606be6126c3" + } + ] + }, + { + "bom-ref": "dfda27b56d96b6eb", + "type": "file", + "name": "/usr/bin/diff3", + "hashes": [ + { + "alg": "SHA-1", + "content": "94d6d4ed1848e7cef8c89850d477001cf576487c" + }, + { + "alg": "SHA-256", + "content": "ac88b338c653726b8d3352abf11d4461d8b96d05db998a968cdcac89255bcb7e" + } + ] + }, + { + "bom-ref": "f64df25379591d23", + "type": "file", + "name": "/usr/bin/dircolors", + "hashes": [ + { + "alg": "SHA-1", + "content": "e3274d19b0f22a215e737335743ac2b60813508b" + }, + { + "alg": "SHA-256", + "content": "55b27e396293571d61fec217f7d915c7ba03ae08ceccaecf6f83f20f438c236f" + } + ] + }, + { + "bom-ref": "1a4adea063713682", + "type": "file", + "name": "/usr/bin/dirname", + "hashes": [ + { + "alg": "SHA-1", + "content": "079d64b7d2f5787321f1c091e9b16f4c6add56a1" + }, + { + "alg": "SHA-256", + "content": "24beee981c1b61a17830f71ff5d807429364aa5f706be15bf01fa8ced73d2fd6" + } + ] + }, + { + "bom-ref": "6f8ae637b64aaee4", + "type": "file", + "name": "/usr/bin/dpkg", + "hashes": [ + { + "alg": "SHA-1", + "content": "80fdea410509bb9d40c8cc30f8525cd539378fbc" + }, + { + "alg": "SHA-256", + "content": "7d72b31a687ec8daa6d6119c76a40cde819954c8fbd558d0085fcbc37e91567f" + } + ] + }, + { + "bom-ref": "b1e395d2c7d69a15", + "type": "file", + "name": "/usr/bin/dpkg-deb", + "hashes": [ + { + "alg": "SHA-1", + "content": "d32ba02f93034dab5cb7e93c3c5b14d110e46203" + }, + { + "alg": "SHA-256", + "content": "a26bf81b48b1b57e1352018c8179284adf568e58495337be32f8f233d3af83e6" + } + ] + }, + { + "bom-ref": "1d2d9b1996669fa6", + "type": "file", + "name": "/usr/bin/dpkg-divert", + "hashes": [ + { + "alg": "SHA-1", + "content": "e0df181db97236f160d23c5c1207f3a1ca2364aa" + }, + { + "alg": "SHA-256", + "content": "0c6009a4a1013f01957a9b70941a225267df88e4fade71541227b14f715cdf1f" + } + ] + }, + { + "bom-ref": "22687e1d9df818c7", + "type": "file", + "name": "/usr/bin/dpkg-maintscript-helper", + "hashes": [ + { + "alg": "SHA-1", + "content": "b3caa6ac32a2c2650303a2455d95d70b77fab896" + }, + { + "alg": "SHA-256", + "content": "254463753cd9c6bc4093c556b181dc418a3fa10ade361fac3bb87ec4525d7aa9" + } + ] + }, + { + "bom-ref": "a93db0da83c16a51", + "type": "file", + "name": "/usr/bin/dpkg-query", + "hashes": [ + { + "alg": "SHA-1", + "content": "ea81d9dd7c2e99f4abb760f8cbd18c2b088c1ed8" + }, + { + "alg": "SHA-256", + "content": "a31b4485435a1d83a973f49ee88247e4ad83b3f7b50383cdb461f71c490944fb" + } + ] + }, + { + "bom-ref": "7dec0ab6f5d624ae", + "type": "file", + "name": "/usr/bin/dpkg-split", + "hashes": [ + { + "alg": "SHA-1", + "content": "d6652dc50a6d22c25b4d4aeec3610f227593697c" + }, + { + "alg": "SHA-256", + "content": "1d266a7a19b9f25ae3bcaaf112b3f4a391df65a75c9f472da5859134229cb4c1" + } + ] + }, + { + "bom-ref": "57f60cc2d6704650", + "type": "file", + "name": "/usr/bin/dpkg-statoverride", + "hashes": [ + { + "alg": "SHA-1", + "content": "cd1cc65b6a119f0798190de7f18208eb54446091" + }, + { + "alg": "SHA-256", + "content": "dc07dd836f8b8cebf2d6730a0e2b34c111ce83d0625a68a466edc9ba7d2766e9" + } + ] + }, + { + "bom-ref": "ca44a57f9eff2396", + "type": "file", + "name": "/usr/bin/dpkg-trigger", + "hashes": [ + { + "alg": "SHA-1", + "content": "1f7b555fceba8cca8bacba1f7fd0a2982e7e2817" + }, + { + "alg": "SHA-256", + "content": "1d0c778f3148496e7474be0ff57f685af4807a3780854a0d3f9f52eff4a2163c" + } + ] + }, + { + "bom-ref": "fe53649d079d4bda", + "type": "file", + "name": "/usr/bin/du", + "hashes": [ + { + "alg": "SHA-1", + "content": "256d96a47adad92a30f83738ed9bd38fcf0bc4a3" + }, + { + "alg": "SHA-256", + "content": "ad0a9752107c5ef02da3a2f35d719356e290e8449a552012d6edbfe3a663127a" + } + ] + }, + { + "bom-ref": "bf1ef3e15cc0f895", + "type": "file", + "name": "/usr/bin/env", + "hashes": [ + { + "alg": "SHA-1", + "content": "a2089dd1825e29b098577a2b47ca301f5c9ddbce" + }, + { + "alg": "SHA-256", + "content": "3019d8a4257a25fd9f6f9bd728f8a7e5090bbd910175fd42d6abc7e5a9de3118" + } + ] + }, + { + "bom-ref": "83b20454ac90edae", + "type": "file", + "name": "/usr/bin/expand", + "hashes": [ + { + "alg": "SHA-1", + "content": "12939dcb46e0e91bc643b3b4ed7a9c5d0c52f343" + }, + { + "alg": "SHA-256", + "content": "6a38a721db80be5881e71d516b91d2994ae256a742944dee213e31604e1946ec" + } + ] + }, + { + "bom-ref": "7f16dc71cbd6c8ec", + "type": "file", + "name": "/usr/bin/expiry", + "hashes": [ + { + "alg": "SHA-1", + "content": "48bcad9dfda959ec7ce52f3ac5a4643933753025" + }, + { + "alg": "SHA-256", + "content": "006c97d68fbddf175f326e554693ceaea984d6406bb5f837f1a00a7c6008218d" + } + ] + }, + { + "bom-ref": "3e5188f472063f6e", + "type": "file", + "name": "/usr/bin/expr", + "hashes": [ + { + "alg": "SHA-1", + "content": "e2fd30834bb6cdf88219b335bd7be5cf0feb8675" + }, + { + "alg": "SHA-256", + "content": "25086c727990cb1afe45f76a1cd98d2e87d2cc153792f6f23f032c0705734bd9" + } + ] + }, + { + "bom-ref": "eee24e8b770cc291", + "type": "file", + "name": "/usr/bin/factor", + "hashes": [ + { + "alg": "SHA-1", + "content": "9962b8e1b983cc851505c3c097af683401ce9773" + }, + { + "alg": "SHA-256", + "content": "058b812512a84ee327f2fc5b86118b26713d285ddf92ff8fe502a7794678afb2" + } + ] + }, + { + "bom-ref": "e70bf19bfce34bb1", + "type": "file", + "name": "/usr/bin/faillog", + "hashes": [ + { + "alg": "SHA-1", + "content": "441c747693457c5696c88863ed399a39530fb663" + }, + { + "alg": "SHA-256", + "content": "31bdc92df6e728514622d7543960ab7fe242ed74bbaf101c73ac2bf59c7e67e0" + } + ] + }, + { + "bom-ref": "b5698615cd3e57d5", + "type": "file", + "name": "/usr/bin/fallocate", + "hashes": [ + { + "alg": "SHA-1", + "content": "bba1af024dec700c99276c7b8ec5c659d966f6ec" + }, + { + "alg": "SHA-256", + "content": "c5dfb56988c18ddd26bdd4939935acf79aafc030e2398381b01777f0e22a1dc0" + } + ] + }, + { + "bom-ref": "4f6f9713684f2843", + "type": "file", + "name": "/usr/bin/fincore", + "hashes": [ + { + "alg": "SHA-1", + "content": "01bf18bd050bdb3290c14aaecc0ecf41215be437" + }, + { + "alg": "SHA-256", + "content": "20e608de722b7417a60c0a6547cddac494bb51e0a5064f008bea5f9afa27d852" + } + ] + }, + { + "bom-ref": "fb4766640d37fd5f", + "type": "file", + "name": "/usr/bin/find", + "hashes": [ + { + "alg": "SHA-1", + "content": "830989cf621cadde370e9c4373a69997ca1bc66b" + }, + { + "alg": "SHA-256", + "content": "95363b9d3e08a30e17f253845b37086da2a7aebc58b9715781b5d6e4ea1ff52d" + } + ] + }, + { + "bom-ref": "fd11d3415d3702db", + "type": "file", + "name": "/usr/bin/flock", + "hashes": [ + { + "alg": "SHA-1", + "content": "1bb29c66272bde64925572b84d4b16e916b76638" + }, + { + "alg": "SHA-256", + "content": "19ef8724eaa5aee890a4f39163b8a31eff1e575ffc1382d5fa84b32a3d677b28" + } + ] + }, + { + "bom-ref": "cf48c7db61277ee4", + "type": "file", + "name": "/usr/bin/fmt", + "hashes": [ + { + "alg": "SHA-1", + "content": "b5efee8a42bc53e49184655f90a4d76a0f5de4dd" + }, + { + "alg": "SHA-256", + "content": "4be3eee43ea3f116de122a77d33a102ce8a9d9d5b36c2afbd3b1480d0b40dfa7" + } + ] + }, + { + "bom-ref": "6156236492f21cab", + "type": "file", + "name": "/usr/bin/fold", + "hashes": [ + { + "alg": "SHA-1", + "content": "d3043922dc780add6bfed89fadebf9aea818a023" + }, + { + "alg": "SHA-256", + "content": "f31d818d4e57d7d42ffdb429cbb1b6155b154067d0481a7edb915e8777bc3aba" + } + ] + }, + { + "bom-ref": "da99da51c48cd221", + "type": "file", + "name": "/usr/bin/getconf", + "hashes": [ + { + "alg": "SHA-1", + "content": "3225bf5c72ba246e4915b0b1c3b99471bdaae09e" + }, + { + "alg": "SHA-256", + "content": "69006964fcd012340b667074de8b0b8ed1426be89c5f12f23f1b7cb8d21ddfff" + } + ] + }, + { + "bom-ref": "9f9ac2827491c8e2", + "type": "file", + "name": "/usr/bin/getent", + "hashes": [ + { + "alg": "SHA-1", + "content": "0c3b629c5b27fb81630a6b4f6dae87ad963e68a1" + }, + { + "alg": "SHA-256", + "content": "f02b2b5779a71b7614996a8dbed8101eb5461d543ee6cfcfc2cc271df2573b67" + } + ] + }, + { + "bom-ref": "57b4238d64e9957b", + "type": "file", + "name": "/usr/bin/getopt", + "hashes": [ + { + "alg": "SHA-1", + "content": "f01a4071008d06a7836bd1b2884935555172ffb1" + }, + { + "alg": "SHA-256", + "content": "363e78a6c332f99c946d0590e7c9d5a1305d4205a6a080211c9918fd27bff16d" + } + ] + }, + { + "bom-ref": "f59c5cfb0b000574", + "type": "file", + "name": "/usr/bin/gpasswd", + "hashes": [ + { + "alg": "SHA-1", + "content": "579fe63f6fef2e408aaa7bd012d5b8e0cb2b5aca" + }, + { + "alg": "SHA-256", + "content": "10a744e7e2f4605e51dc9703c48b7fbfdab58f80a2761e021fed08efe57a04a4" + } + ] + }, + { + "bom-ref": "8f9c6b8bdc041e23", + "type": "file", + "name": "/usr/bin/gpgv", + "hashes": [ + { + "alg": "SHA-1", + "content": "1dbb6657f20f69b9445389e8622084dad9679027" + }, + { + "alg": "SHA-256", + "content": "b18ddb3630fbf8ea97e59581b9913d245ee46c85482b86423ab341c1401eaf3b" + } + ] + }, + { + "bom-ref": "8898879ad2bb7d8c", + "type": "file", + "name": "/usr/bin/groups", + "hashes": [ + { + "alg": "SHA-1", + "content": "817e1a830ccc8acd7797b38867826440741d96d6" + }, + { + "alg": "SHA-256", + "content": "73e1f99e8cb63ab41f70c9126d1447614eb92b91b4d73c02b8aec41632759d89" + } + ] + }, + { + "bom-ref": "4dc5d38afff99ad0", + "type": "file", + "name": "/usr/bin/head", + "hashes": [ + { + "alg": "SHA-1", + "content": "808fc4072d2f062f5ab6c349ad3fea2ca7721932" + }, + { + "alg": "SHA-256", + "content": "39d5c29be06804d15a86f9af2703987e55e2d3580ed22d36910d60bce017c22b" + } + ] + }, + { + "bom-ref": "753bf84bdac47c1a", + "type": "file", + "name": "/usr/bin/hostid", + "hashes": [ + { + "alg": "SHA-1", + "content": "2cf24cc788120476a45aa635a212cc7d1ba4a6e4" + }, + { + "alg": "SHA-256", + "content": "b59ddd548a9fffa181b4174b5e27985e2b6ea65c265d5f4a2248333d26d6c7ab" + } + ] + }, + { + "bom-ref": "35884bf26094706d", + "type": "file", + "name": "/usr/bin/iconv", + "hashes": [ + { + "alg": "SHA-1", + "content": "cafa27f746d4232fb03366e3f59ed70cae4a0ec7" + }, + { + "alg": "SHA-256", + "content": "fb8ac11fc295409e9bee397487d162ab3cdb1d837b088f3eba630519a02a723c" + } + ] + }, + { + "bom-ref": "d67a9bf49cadd80a", + "type": "file", + "name": "/usr/bin/id", + "hashes": [ + { + "alg": "SHA-1", + "content": "b3780ddea64673cbb3550d9acb2b30dfe9c03d34" + }, + { + "alg": "SHA-256", + "content": "cb7cc70d9ac7843dcede6c9ae0fe26f993cc5a9caa5fce924d289a84d3f61354" + } + ] + }, + { + "bom-ref": "1149b03d4f1c4e78", + "type": "file", + "name": "/usr/bin/infocmp", + "hashes": [ + { + "alg": "SHA-1", + "content": "db4e127949d27b8010a106c7dcf86457f0d3c07d" + }, + { + "alg": "SHA-256", + "content": "6fef5eea555f9209a8670cef97a88e36cd91d361e362955481ae8a089c9ca6c8" + } + ] + }, + { + "bom-ref": "3bbd5a9088e3d19f", + "type": "file", + "name": "/usr/bin/install", + "hashes": [ + { + "alg": "SHA-1", + "content": "a7f1dd86fd171b0abb81ab85fef5068703caba9a" + }, + { + "alg": "SHA-256", + "content": "77f8e112d7f30299d235d3c5510d508bbf2e72f236ff78fdf9f5e8fe74755c10" + } + ] + }, + { + "bom-ref": "d9314b8b0e24a53e", + "type": "file", + "name": "/usr/bin/ionice", + "hashes": [ + { + "alg": "SHA-1", + "content": "d051256487ce6f025b529ce475cdac99160f5355" + }, + { + "alg": "SHA-256", + "content": "020a4770df648af0e608425a1dba3df35a14dad7bb4d3f17dde3e3142a35f820" + } + ] + }, + { + "bom-ref": "4101f22d0fd5b4f4", + "type": "file", + "name": "/usr/bin/ipcmk", + "hashes": [ + { + "alg": "SHA-1", + "content": "b12a02551c1722f988d008e6f164380ec1056ceb" + }, + { + "alg": "SHA-256", + "content": "f138b161674fcdb002255f70e630f2ad2be2631370904617de7f9011bbe2cf94" + } + ] + }, + { + "bom-ref": "3d1c5f3279ee2ead", + "type": "file", + "name": "/usr/bin/ipcrm", + "hashes": [ + { + "alg": "SHA-1", + "content": "7e2b6532c0c11bb1f9effb3b408ee42ad9621338" + }, + { + "alg": "SHA-256", + "content": "7566f9bb14fe4a820151c18c0623bf0bd32597b68df60926e2f48831b3ce9b13" + } + ] + }, + { + "bom-ref": "53e94ab1c2cb048e", + "type": "file", + "name": "/usr/bin/ipcs", + "hashes": [ + { + "alg": "SHA-1", + "content": "b811634ef5e05053d3d1dfdf8d215c6be8403c82" + }, + { + "alg": "SHA-256", + "content": "1eed2ffb57faa6eacce030525f90715685347d84dccf976cda5e853b3fb253d8" + } + ] + }, + { + "bom-ref": "7b42b76bea8d0d3d", + "type": "file", + "name": "/usr/bin/ischroot", + "hashes": [ + { + "alg": "SHA-1", + "content": "0f28ab9690d386d90c36564755818e3a61dfb73b" + }, + { + "alg": "SHA-256", + "content": "76f622f57e04d1fe9ce2295c22b0ebe0c6f78f3e215ef9b05a7eb4b9b9844c7b" + } + ] + }, + { + "bom-ref": "ae76bc8c31f19ce0", + "type": "file", + "name": "/usr/bin/join", + "hashes": [ + { + "alg": "SHA-1", + "content": "2f3855d01341a1bb958dc8ee652072652cd74b5e" + }, + { + "alg": "SHA-256", + "content": "8a59dcf7d741cb00b2a4186812378fe17e542b45a114b9862a1255a07e1e62e9" + } + ] + }, + { + "bom-ref": "4a424e3dd841b0ed", + "type": "file", + "name": "/usr/bin/last", + "hashes": [ + { + "alg": "SHA-1", + "content": "f74456090dd2ee5c4e28c18926467c3b99ce9fe4" + }, + { + "alg": "SHA-256", + "content": "168f89efa2f45d55a5232f5becf3278cb1c7921236f47b57a2564dcb69ed69ac" + } + ] + }, + { + "bom-ref": "06ffb8ffe4a704cb", + "type": "file", + "name": "/usr/bin/lastlog", + "hashes": [ + { + "alg": "SHA-1", + "content": "a62f3cc1e5764a570ccd620dfe39f8ad24cfa420" + }, + { + "alg": "SHA-256", + "content": "df1b5da620277dcc483ec075f4cafa0ccd3947a88fb5297b05f4a3ce0b6b3d99" + } + ] + }, + { + "bom-ref": "f2f74e2e162e4a8d", + "type": "file", + "name": "/usr/bin/ldd", + "hashes": [ + { + "alg": "SHA-1", + "content": "89bd29baa70ab2a9731e18195ccb96008b9e2035" + }, + { + "alg": "SHA-256", + "content": "1aac7d17853aeec225cc8e467df72bdee385aa31ce42438bdfc9b40c9da289c3" + } + ] + }, + { + "bom-ref": "ab403198d7f48380", + "type": "file", + "name": "/usr/bin/link", + "hashes": [ + { + "alg": "SHA-1", + "content": "781592c0f593429296530813b432873acd02df12" + }, + { + "alg": "SHA-256", + "content": "996e73bac0b2f73ecf0a5a272c012beaa8ad33a7830dbfe9e8e6990382d32ee7" + } + ] + }, + { + "bom-ref": "b1dcad1173eb4e08", + "type": "file", + "name": "/usr/bin/locale", + "hashes": [ + { + "alg": "SHA-1", + "content": "debd47c1a1ad5af274e491ce785eb3eedf373a7d" + }, + { + "alg": "SHA-256", + "content": "af9bdfae49ed856386e21334b0841dfa9a333cd6ac71bb3bd9eb84206b707c00" + } + ] + }, + { + "bom-ref": "c65679c61645633e", + "type": "file", + "name": "/usr/bin/localedef", + "hashes": [ + { + "alg": "SHA-1", + "content": "1e65ddf5857154d18c35acbb339bbffe61c3df85" + }, + { + "alg": "SHA-256", + "content": "8ea9e24e31aa7783df9874471445a99ed48cfea01672b38bac8225eb4989671c" + } + ] + }, + { + "bom-ref": "ea3b4df13552a84e", + "type": "file", + "name": "/usr/bin/logger", + "hashes": [ + { + "alg": "SHA-1", + "content": "1bfb072ab8ca0711bfce43f17fd55d3e3af01ce4" + }, + { + "alg": "SHA-256", + "content": "980f078c81db4cc976376604ebd7b1482ae5ad7d5a4fae9bda89280004448595" + } + ] + }, + { + "bom-ref": "28bc08be974eabff", + "type": "file", + "name": "/usr/bin/logname", + "hashes": [ + { + "alg": "SHA-1", + "content": "d83368de80929b6b79aa589107dd39c5a159acaf" + }, + { + "alg": "SHA-256", + "content": "3cf0e8279b2629c4a72d2488feb57788e63d78578d85347b6053b650d3436f6b" + } + ] + }, + { + "bom-ref": "811e1df21d20fd1d", + "type": "file", + "name": "/usr/bin/lsattr", + "hashes": [ + { + "alg": "SHA-1", + "content": "a368ed2928f684ad013c550bd4be649421d967f1" + }, + { + "alg": "SHA-256", + "content": "563994c49467c289111e37d6b4e8f9e2535e81f06d6e7473f46c674a76f1ac3e" + } + ] + }, + { + "bom-ref": "c14265d7647a54d7", + "type": "file", + "name": "/usr/bin/lscpu", + "hashes": [ + { + "alg": "SHA-1", + "content": "1d9b2347b76c1941acf2e2a9a95f0ec9741231b0" + }, + { + "alg": "SHA-256", + "content": "d6cf21fc255dfc14d02151ffdfd0015a2bb36512e8a615d2e1e984a8f138e84f" + } + ] + }, + { + "bom-ref": "b86d6ca9c1c32e58", + "type": "file", + "name": "/usr/bin/lsipc", + "hashes": [ + { + "alg": "SHA-1", + "content": "68884ec9d2238f30ac09c32c94cbf64171c11ad0" + }, + { + "alg": "SHA-256", + "content": "6bb43ef56eb017b9d6d51d62a6fc258a66d21ce676113c53437b47e893efde6d" + } + ] + }, + { + "bom-ref": "d4666b109d1492aa", + "type": "file", + "name": "/usr/bin/lslocks", + "hashes": [ + { + "alg": "SHA-1", + "content": "5fc0c008d0425c71ee9461a5a13f5c613410e5e3" + }, + { + "alg": "SHA-256", + "content": "16ab7b23d383c590695821c6da0b28125457a65bd2c41ac3c0c4033042cbabdd" + } + ] + }, + { + "bom-ref": "67b731921cdccc08", + "type": "file", + "name": "/usr/bin/lslogins", + "hashes": [ + { + "alg": "SHA-1", + "content": "4a3362bf671c5b7c9428acb8528bd227db7b7c72" + }, + { + "alg": "SHA-256", + "content": "de1e073c4f4891b874029d57ac0301b26e5cecc89bca17ef923262c61f9a1f77" + } + ] + }, + { + "bom-ref": "b0df13a5dd3238f2", + "type": "file", + "name": "/usr/bin/lsmem", + "hashes": [ + { + "alg": "SHA-1", + "content": "143ce74de3b5fe85b847c32201a1904350c1bf90" + }, + { + "alg": "SHA-256", + "content": "b412fe7aa80294a64d5f0f0b9f4afb0f27b863e4aae0899930f40a4d03971f37" + } + ] + }, + { + "bom-ref": "ebdb1bb684c69c8e", + "type": "file", + "name": "/usr/bin/lsns", + "hashes": [ + { + "alg": "SHA-1", + "content": "42466401940698189d9cee53c79c2f61b98aaacb" + }, + { + "alg": "SHA-256", + "content": "c95e8cadf6c14597d36d3341ed5e6195d5fb22fc118df3d79ddeaa4b46666eed" + } + ] + }, + { + "bom-ref": "4a22353a4523d192", + "type": "file", + "name": "/usr/bin/mawk", + "hashes": [ + { + "alg": "SHA-1", + "content": "c3549bdcc204d9a05806b37b4cfdacbb81671b2a" + }, + { + "alg": "SHA-256", + "content": "3f791f82e19d9723c55fe3fb70e85a19c1663e5b76936293fe75070667a42cba" + } + ] + }, + { + "bom-ref": "c2f3134a189a2529", + "type": "file", + "name": "/usr/bin/mcookie", + "hashes": [ + { + "alg": "SHA-1", + "content": "d2ccc176f41fe7f2fcc67ab445edbb01016e100f" + }, + { + "alg": "SHA-256", + "content": "20645cfb8304ab3837c154a66abef20bbad27b8a3d0665ecf11c02390ec29349" + } + ] + }, + { + "bom-ref": "558f3c03bbfa3583", + "type": "file", + "name": "/usr/bin/md5sum", + "hashes": [ + { + "alg": "SHA-1", + "content": "ba3c3bb0060e3d4570a5472b2cbcb8d6750369b9" + }, + { + "alg": "SHA-256", + "content": "5aaa453c3dabb22892e4072ff46c4730a4cf25b3c0817c2952ec23b39f8a1765" + } + ] + }, + { + "bom-ref": "babe2f2ebe28afe8", + "type": "file", + "name": "/usr/bin/mesg", + "hashes": [ + { + "alg": "SHA-1", + "content": "456d8242b45af1bcbce8db07c35bf50a156a925c" + }, + { + "alg": "SHA-256", + "content": "6e042b80e4b264d0ed6792bace0326aefde44612301749f25f040ec1cad38835" + } + ] + }, + { + "bom-ref": "0cb9a199d8db1428", + "type": "file", + "name": "/usr/bin/mkfifo", + "hashes": [ + { + "alg": "SHA-1", + "content": "5ddb15c2621bd7dd46e2e5e873d93ad523325313" + }, + { + "alg": "SHA-256", + "content": "355a640c64aff10abe702a3f3e52825e4038105381547ea4b321ad5cafbd91a8" + } + ] + }, + { + "bom-ref": "9b69ceb25c2bca1f", + "type": "file", + "name": "/usr/bin/namei", + "hashes": [ + { + "alg": "SHA-1", + "content": "5b792a78a20fc0c08040a1d47a9ede5d9e10fb2d" + }, + { + "alg": "SHA-256", + "content": "25d2f97201970437f1e3e0b6492768cbbebd0302b22e4d3f4d435688ae76f5fa" + } + ] + }, + { + "bom-ref": "d66a49b60f8f3341", + "type": "file", + "name": "/usr/bin/newgrp", + "hashes": [ + { + "alg": "SHA-1", + "content": "35d17851104ed44d9821e06af5a546af018c62b9" + }, + { + "alg": "SHA-256", + "content": "f625f76368f7708b0835014474e2e415563a0dcfec62aed1d7c468908d09be49" + } + ] + }, + { + "bom-ref": "bc12ee2657406764", + "type": "file", + "name": "/usr/bin/nice", + "hashes": [ + { + "alg": "SHA-1", + "content": "61624fbe3f99bd15008dbfdfa0664d7d26044e37" + }, + { + "alg": "SHA-256", + "content": "b548a1d06b95ac7ef8327c64a4b192c4a9100fcfb38daed6d7cf4ef519d22c90" + } + ] + }, + { + "bom-ref": "43cf0cf2aee0db3b", + "type": "file", + "name": "/usr/bin/nl", + "hashes": [ + { + "alg": "SHA-1", + "content": "55976bab4239077ac7f3ac3cf1b9da5c9a7d6d95" + }, + { + "alg": "SHA-256", + "content": "9a110bf879e1e13c2996172fec34df394b751540e987e57ec6e7225e8b824cfb" + } + ] + }, + { + "bom-ref": "ab8951c27c5d1afd", + "type": "file", + "name": "/usr/bin/nohup", + "hashes": [ + { + "alg": "SHA-1", + "content": "64fb8dad82a2a7dc6897a207edad45ff241ff2f4" + }, + { + "alg": "SHA-256", + "content": "5b585877ab2f002014b14312f32f81d427eaf2191aea061ecfa975636af780f6" + } + ] + }, + { + "bom-ref": "8a88686607208185", + "type": "file", + "name": "/usr/bin/nproc", + "hashes": [ + { + "alg": "SHA-1", + "content": "ac01848d7925f07e9eb7db408928871c7a98e9c9" + }, + { + "alg": "SHA-256", + "content": "15c233f41815ad82f479ac02cb6fbcb9dc27c43b6018bde480e59ce103a849bc" + } + ] + }, + { + "bom-ref": "2ed864cc2132852b", + "type": "file", + "name": "/usr/bin/nsenter", + "hashes": [ + { + "alg": "SHA-1", + "content": "8007e8f8622d5c0cb6bb2910065d0302052a3022" + }, + { + "alg": "SHA-256", + "content": "f5a55c919c531230167ca1edaad8ab1512daf86386adb993dfd241250f2aa013" + } + ] + }, + { + "bom-ref": "fc4ba99970bef093", + "type": "file", + "name": "/usr/bin/numfmt", + "hashes": [ + { + "alg": "SHA-1", + "content": "d334c9426214a1a1d55b7784a1a555062fdc96ea" + }, + { + "alg": "SHA-256", + "content": "4200be4a31dabc9a2902ffa6fa83d5b639c7dfd52a21cd3ca6aabc66a7284c87" + } + ] + }, + { + "bom-ref": "e7365c623fb1b127", + "type": "file", + "name": "/usr/bin/od", + "hashes": [ + { + "alg": "SHA-1", + "content": "d8eb0670570cefe76c86c52d7ba877f8827bc57f" + }, + { + "alg": "SHA-256", + "content": "57e286b2e1fde7a20c2427d1f520006393b58e1f9647e0e24a625de641d95627" + } + ] + }, + { + "bom-ref": "9cc134ee2ac0f806", + "type": "file", + "name": "/usr/bin/partx", + "hashes": [ + { + "alg": "SHA-1", + "content": "72c764fc297575ad0bb4c058937722971b1107c3" + }, + { + "alg": "SHA-256", + "content": "cd2b9c6054efdc437eac75b4dce3f699fb182e64785dc70bbbc344a0cba685ca" + } + ] + }, + { + "bom-ref": "a3c732e39d542fbe", + "type": "file", + "name": "/usr/bin/passwd", + "hashes": [ + { + "alg": "SHA-1", + "content": "a1af417c59ad07c44cbcb61eff0ff920d24e878c" + }, + { + "alg": "SHA-256", + "content": "e05c0d20ef30f9dadb349f2958b9ab9e3320f6840d86e09fbea7b0a7bb087117" + } + ] + }, + { + "bom-ref": "db1c8c9ece64b4ce", + "type": "file", + "name": "/usr/bin/paste", + "hashes": [ + { + "alg": "SHA-1", + "content": "a93ab63d84dbea6654ccd47d9e06205e77d4e0d8" + }, + { + "alg": "SHA-256", + "content": "4d5ea32e0cfc404809dc97debb232521a12f0577209a2cd11583a44800d8e4d0" + } + ] + }, + { + "bom-ref": "881ffef05036bd85", + "type": "file", + "name": "/usr/bin/pathchk", + "hashes": [ + { + "alg": "SHA-1", + "content": "0fb31f19cec8978591fa1adbe3cfb23e0fa47720" + }, + { + "alg": "SHA-256", + "content": "f7f9f55c3c3bde3b856eac1395be762df6c921c86c16807096553862635a8478" + } + ] + }, + { + "bom-ref": "abc66fcfcb547cc7", + "type": "file", + "name": "/usr/bin/perl", + "hashes": [ + { + "alg": "SHA-1", + "content": "36d5ac6fbed709a88d2d29b39c58ba5bafab092c" + }, + { + "alg": "SHA-256", + "content": "a6183e3a2fb0d18980a94a7ce7d45657a52b54ff16ca925eabf9bc993dd37e24" + } + ] + }, + { + "bom-ref": "a57fe6fd8ffdbce1", + "type": "file", + "name": "/usr/bin/pinky", + "hashes": [ + { + "alg": "SHA-1", + "content": "416a1100e5016c46b8c23c837af460fe00e8a158" + }, + { + "alg": "SHA-256", + "content": "8cb654dcf86c96de61527531caf10df8b9847e7b5d065843c9b866d8a598abbc" + } + ] + }, + { + "bom-ref": "4c76c090fc30a9f3", + "type": "file", + "name": "/usr/bin/pldd", + "hashes": [ + { + "alg": "SHA-1", + "content": "c42a6979778e31393c10ddc3c8610fb51f226939" + }, + { + "alg": "SHA-256", + "content": "4790648179ee5fc1cab0d86a7e2a28cf79ba78ee6c63baa523829d6ec8ec73ed" + } + ] + }, + { + "bom-ref": "b8b7baacca4c8737", + "type": "file", + "name": "/usr/bin/pr", + "hashes": [ + { + "alg": "SHA-1", + "content": "1db7e215fc0c32b33b389100a2c160229b279de3" + }, + { + "alg": "SHA-256", + "content": "f921e51a30d43f5ccc981ef0ffd88ed24a05b67d07a63526ff1543b4ca625320" + } + ] + }, + { + "bom-ref": "1434b34a01549a93", + "type": "file", + "name": "/usr/bin/printenv", + "hashes": [ + { + "alg": "SHA-1", + "content": "fde4796508dbe14c00b70e2129fb9789a41da078" + }, + { + "alg": "SHA-256", + "content": "6af38428adc7db2ef3416119e7dbf1b93a5f7bcc4b664fb76132740e5ee2bcc5" + } + ] + }, + { + "bom-ref": "dab144b8acfe059c", + "type": "file", + "name": "/usr/bin/printf", + "hashes": [ + { + "alg": "SHA-1", + "content": "aac4558940907a261e0c40cc7ca1b8537b629f3e" + }, + { + "alg": "SHA-256", + "content": "d6ef6fa611d0e6e18f9b0653ef5140d6302b575e3c3ccd274e360c776f63bdd7" + } + ] + }, + { + "bom-ref": "d0a84f4b9bf355c7", + "type": "file", + "name": "/usr/bin/prlimit", + "hashes": [ + { + "alg": "SHA-1", + "content": "edd2862b7ddeafa3d75f829f729c039fee9c003f" + }, + { + "alg": "SHA-256", + "content": "836b4cde29904046a70bbbd7220a87001b71853686ba553d18e357bad3d17c13" + } + ] + }, + { + "bom-ref": "4434bb1741ddb2b6", + "type": "file", + "name": "/usr/bin/ptx", + "hashes": [ + { + "alg": "SHA-1", + "content": "618d568daab45c233e8d08a36dcf266c480f37f0" + }, + { + "alg": "SHA-256", + "content": "f585d840da42f573aa5832046409364f87e228be65c706a620fe76d6f999d66d" + } + ] + }, + { + "bom-ref": "d799981b7d7b7840", + "type": "file", + "name": "/usr/bin/realpath", + "hashes": [ + { + "alg": "SHA-1", + "content": "402d9268764da8ce4875d5a3a0b1b476694f6009" + }, + { + "alg": "SHA-256", + "content": "4abf0f672fe8ef16a72ac4643a6d0df5f58e40bbe1bfa06385f60f877e4f2e98" + } + ] + }, + { + "bom-ref": "a06860aab1010347", + "type": "file", + "name": "/usr/bin/rename.ul", + "hashes": [ + { + "alg": "SHA-1", + "content": "0e8a3063dc073051956d59133c331c14eaf28935" + }, + { + "alg": "SHA-256", + "content": "599d5723227b231772f32a98c877d3237e36e2716b4eb4ba4747a6740e491534" + } + ] + }, + { + "bom-ref": "2c25a0ffd7987f79", + "type": "file", + "name": "/usr/bin/renice", + "hashes": [ + { + "alg": "SHA-1", + "content": "55f1d1b595307b9d7ffdc68e177b2a83145e5e28" + }, + { + "alg": "SHA-256", + "content": "896d0ac084ddf03aa85ab04fd14c6f6582aa461450109868e37a8365527e4d4c" + } + ] + }, + { + "bom-ref": "539fcfdb84517db1", + "type": "file", + "name": "/usr/bin/resizepart", + "hashes": [ + { + "alg": "SHA-1", + "content": "f9f5ff399a6222925f0ed5b58064a32ad5e18ec1" + }, + { + "alg": "SHA-256", + "content": "0bfb4f34bd61d4b0b4a1fc58b58b59dcc0d3d0220bbfdcb6836b8b8e3c7b451e" + } + ] + }, + { + "bom-ref": "fd8b83999640644b", + "type": "file", + "name": "/usr/bin/rev", + "hashes": [ + { + "alg": "SHA-1", + "content": "a31f29ddae2febbf4ab849743b95c65f2c09cc3c" + }, + { + "alg": "SHA-256", + "content": "ba55f806d7c27254ca2e542d98c0c626cef3fdc0d080a2dde84c73e4e17d8f71" + } + ] + }, + { + "bom-ref": "441fe63fe995b9fc", + "type": "file", + "name": "/usr/bin/rgrep", + "hashes": [ + { + "alg": "SHA-1", + "content": "af86e14387b692c347dcc6659508cef278f74edc" + }, + { + "alg": "SHA-256", + "content": "0a8dd42a068115f058ae57f9f6347e1ef0ae2ffea89bf658b132974246577748" + } + ] + }, + { + "bom-ref": "6873350626ea46b7", + "type": "file", + "name": "/usr/bin/runcon", + "hashes": [ + { + "alg": "SHA-1", + "content": "cefe27219861bd2afa8c606c306b3aa00e46f3a3" + }, + { + "alg": "SHA-256", + "content": "261ca0e3ac57667833b63bd5985154e0d317a3805bef38fd00c08532c17fc07b" + } + ] + }, + { + "bom-ref": "a990ca5231869a03", + "type": "file", + "name": "/usr/bin/savelog", + "hashes": [ + { + "alg": "SHA-1", + "content": "6c635edd39daea69067f5959965666598f8bec5c" + }, + { + "alg": "SHA-256", + "content": "b5a489fb4c7a5e1240384e25ac3ff8de31e0456a3439fd7ad0ae28fda777c5db" + } + ] + }, + { + "bom-ref": "f2f187a367413886", + "type": "file", + "name": "/usr/bin/script", + "hashes": [ + { + "alg": "SHA-1", + "content": "16674a9afe91be753200145aa257bab75b87d13d" + }, + { + "alg": "SHA-256", + "content": "87eec26bdf79a18a610cc7b48e0e729ff37e05834977947c009bda981d9c4177" + } + ] + }, + { + "bom-ref": "ad090f1c3a362e0c", + "type": "file", + "name": "/usr/bin/scriptreplay", + "hashes": [ + { + "alg": "SHA-1", + "content": "ea273e9d299c1a38b6fd516e73203b95be90ff9d" + }, + { + "alg": "SHA-256", + "content": "17152532e1beb76936dc4281ef59428b3481a4402288c925ae27ed92a6972e41" + } + ] + }, + { + "bom-ref": "2753818b8a2a1882", + "type": "file", + "name": "/usr/bin/sdiff", + "hashes": [ + { + "alg": "SHA-1", + "content": "c3499b4de98b48b3739551fc5c7d99119b55247d" + }, + { + "alg": "SHA-256", + "content": "250c75399a7c30c248555fad92cd8831a376d7bc40de3fcc5c11f61b0f3e554e" + } + ] + }, + { + "bom-ref": "598003e31f716b81", + "type": "file", + "name": "/usr/bin/seq", + "hashes": [ + { + "alg": "SHA-1", + "content": "5ffa3190d7ebae1ed8028dad87f6a47125b555b9" + }, + { + "alg": "SHA-256", + "content": "ec9904627b0d154453bd1081cc4ece1d47b0d5cb0833167697a7d52e9a3ddfa6" + } + ] + }, + { + "bom-ref": "daf93d20a2f3dd7e", + "type": "file", + "name": "/usr/bin/setarch", + "hashes": [ + { + "alg": "SHA-1", + "content": "83a44bf7d40d6989b75a84b787e0231508a2f55f" + }, + { + "alg": "SHA-256", + "content": "b704c7eae64ebde4d9a989aa35e1573a310241e16266596dc049513fbfdc1bf3" + } + ] + }, + { + "bom-ref": "9e00b15984e1caee", + "type": "file", + "name": "/usr/bin/setpriv", + "hashes": [ + { + "alg": "SHA-1", + "content": "2f143b0760834c6e1e39d0c368f8c8016292d42c" + }, + { + "alg": "SHA-256", + "content": "63280721ada6697db6fbe90ef74584681c3212dee51a255ec1de7679b6aec1d2" + } + ] + }, + { + "bom-ref": "a629981f1cae4322", + "type": "file", + "name": "/usr/bin/setsid", + "hashes": [ + { + "alg": "SHA-1", + "content": "f590a9e2c56a4383e4c5e15e05502e208f2e729d" + }, + { + "alg": "SHA-256", + "content": "9c41b143d31691253cc791b47cd89bb102f083a11a762400ae3c1f27c9a134a4" + } + ] + }, + { + "bom-ref": "5509fcf306b2ff02", + "type": "file", + "name": "/usr/bin/setterm", + "hashes": [ + { + "alg": "SHA-1", + "content": "e0d412c17d430f75b0735f0a55157f2c928a6cf7" + }, + { + "alg": "SHA-256", + "content": "d4be0e239f7dcab70a5c0fff7986a5e42831a729596759c940923308492c1c96" + } + ] + }, + { + "bom-ref": "40c5c5d307922e56", + "type": "file", + "name": "/usr/bin/sha1sum", + "hashes": [ + { + "alg": "SHA-1", + "content": "44fd655f5276c743430fe1b42897abd70e159922" + }, + { + "alg": "SHA-256", + "content": "8cea75855517a6cd215900e7efc8cabb23fec146f2e19ed55d778e5c91679906" + } + ] + }, + { + "bom-ref": "cf0d982d54d47788", + "type": "file", + "name": "/usr/bin/sha224sum", + "hashes": [ + { + "alg": "SHA-1", + "content": "dfa1f0528b51f599b9c12843afb0e87041ce24dc" + }, + { + "alg": "SHA-256", + "content": "bcf4f3012c78d148864163c7bd5034aeb9c57371272032d7fb7c79111ac48bb8" + } + ] + }, + { + "bom-ref": "817f30db3309ffc8", + "type": "file", + "name": "/usr/bin/sha256sum", + "hashes": [ + { + "alg": "SHA-1", + "content": "7bf2e2ced20a3c68c9d69585f148e53f95bf1e2d" + }, + { + "alg": "SHA-256", + "content": "c40717532492c6f2681df75dd14a8fa05675e8153f9c126e8b0c0b6db7e38247" + } + ] + }, + { + "bom-ref": "73b8fe4be3c3c386", + "type": "file", + "name": "/usr/bin/sha384sum", + "hashes": [ + { + "alg": "SHA-1", + "content": "d6f3bbcda96634fc72a66ca1d7c2361a98e08ad6" + }, + { + "alg": "SHA-256", + "content": "f52ab664d62284375c1dce3083c509cc4773803c9773066a11d47027d1fd3e40" + } + ] + }, + { + "bom-ref": "2d93f88372be171b", + "type": "file", + "name": "/usr/bin/sha512sum", + "hashes": [ + { + "alg": "SHA-1", + "content": "da5e2975ef81c29dcdbd77678d465760d3976b4f" + }, + { + "alg": "SHA-256", + "content": "711ce58dc7d912bf4425ba5477f15d8f17a34059f3de1319eb4845b3ad822f21" + } + ] + }, + { + "bom-ref": "d081e7d76e7d017a", + "type": "file", + "name": "/usr/bin/shred", + "hashes": [ + { + "alg": "SHA-1", + "content": "d6802eb89b6fa1b2e7e1d5ab4d2dcabfdfe78d98" + }, + { + "alg": "SHA-256", + "content": "e531c3c87fcfafe01d42c234350fee5551ac008749cdc2e8c618d12ee58aded1" + } + ] + }, + { + "bom-ref": "9054ecd146abca3e", + "type": "file", + "name": "/usr/bin/shuf", + "hashes": [ + { + "alg": "SHA-1", + "content": "8b9995ed34e2da16b16524bc9f8d4ef50871e077" + }, + { + "alg": "SHA-256", + "content": "3e5d515222505822518bf28550042b0542e84b577680f658885326cbbaab06a7" + } + ] + }, + { + "bom-ref": "eb14c50825381cfa", + "type": "file", + "name": "/usr/bin/sort", + "hashes": [ + { + "alg": "SHA-1", + "content": "1084eba03286350be0b46777ef1172b377e794c0" + }, + { + "alg": "SHA-256", + "content": "5c9c5373d32f315833066103f848d687aa955ec9e3fa5e06c2862ed40e6d4583" + } + ] + }, + { + "bom-ref": "5044790447b6f665", + "type": "file", + "name": "/usr/bin/split", + "hashes": [ + { + "alg": "SHA-1", + "content": "4eb8a46478ae26e3ea8b765d6e2ecd21d3d68798" + }, + { + "alg": "SHA-256", + "content": "08591d85909ed8274bdb95a7d94ffb2a15b0cf405b95458bf143765d65769318" + } + ] + }, + { + "bom-ref": "4d5b7aa56760cc39", + "type": "file", + "name": "/usr/bin/stat", + "hashes": [ + { + "alg": "SHA-1", + "content": "0c6be017c5756d66934fb81ef4059d0626ee2333" + }, + { + "alg": "SHA-256", + "content": "222b21e4b91675661ecc0dee677ba575e5ee3dfe0fadae9d432cd0ac069a1f62" + } + ] + }, + { + "bom-ref": "390fae2b6e959d01", + "type": "file", + "name": "/usr/bin/stdbuf", + "hashes": [ + { + "alg": "SHA-1", + "content": "fedeeeb9d8b30236073335494331082b42e6cde7" + }, + { + "alg": "SHA-256", + "content": "00a5270c7b0262754886e4d26ebc1a5a03911c46fa3c02e2b8d2b346be1f924a" + } + ] + }, + { + "bom-ref": "ae9369f4dae67fc4", + "type": "file", + "name": "/usr/bin/sum", + "hashes": [ + { + "alg": "SHA-1", + "content": "1a9629cb042959acafddd62c6c2a0ff9b6d482f1" + }, + { + "alg": "SHA-256", + "content": "1cc7bc67a5f99eab5311c76d103c2e50f2deddc34421a8c01c0744c9fdf60066" + } + ] + }, + { + "bom-ref": "7ea599d97298f060", + "type": "file", + "name": "/usr/bin/tabs", + "hashes": [ + { + "alg": "SHA-1", + "content": "b9e76cbe2060e23151b71e9af860e487cdd2567d" + }, + { + "alg": "SHA-256", + "content": "9617f02d8f1ccd55366f04c0211e5bd6c6cf470463bf64be9e398c72ec4ce9a1" + } + ] + }, + { + "bom-ref": "71d1181e70f25994", + "type": "file", + "name": "/usr/bin/tac", + "hashes": [ + { + "alg": "SHA-1", + "content": "107ff3bf9cd9e7c44dd8a2f2925b1717d07fe1b9" + }, + { + "alg": "SHA-256", + "content": "d8d562f2fad2d3675a28535bceaad4b58a646b8bbe5f78540130b94d8ec2d42c" + } + ] + }, + { + "bom-ref": "dbdb96698cd184d9", + "type": "file", + "name": "/usr/bin/tail", + "hashes": [ + { + "alg": "SHA-1", + "content": "f2b9193d25773902ba9fc20d758d7c2aa078891c" + }, + { + "alg": "SHA-256", + "content": "62f9f84c362528336f8d0b7a8040fd7b401ec74a90b709434a56fa2583af035e" + } + ] + }, + { + "bom-ref": "2537a045a2e691e4", + "type": "file", + "name": "/usr/bin/taskset", + "hashes": [ + { + "alg": "SHA-1", + "content": "57e78b5451f96ece1be5f40dc80888af12acd4f3" + }, + { + "alg": "SHA-256", + "content": "b6865fd6e0e6114364774e33df11c537da32976ffc254c24bd834093c6cdd686" + } + ] + }, + { + "bom-ref": "6a71710948053452", + "type": "file", + "name": "/usr/bin/tee", + "hashes": [ + { + "alg": "SHA-1", + "content": "6ecb50b4a16d0e4785616471b5db3fe214eba3c9" + }, + { + "alg": "SHA-256", + "content": "ad920a0fa326ba6d09d83ab2140852c69dbf42ab3a4b2a2a378df3f4da800e78" + } + ] + }, + { + "bom-ref": "840d6467fae44ff2", + "type": "file", + "name": "/usr/bin/test", + "hashes": [ + { + "alg": "SHA-1", + "content": "cd88447fc262f9a483d5fa9a28abd1445a05d397" + }, + { + "alg": "SHA-256", + "content": "b87155acb17cfae564a2318108f196805497f5b0edaa96fb5afdcb857d7eb6c8" + } + ] + }, + { + "bom-ref": "981840e3fe520a07", + "type": "file", + "name": "/usr/bin/tic", + "hashes": [ + { + "alg": "SHA-1", + "content": "cac3ceae20fe0521f8abd941065a5b9f2ad0e8b7" + }, + { + "alg": "SHA-256", + "content": "c2ee7b4690e7b3888e05bfff39a68430a8ea4568323b459a318310999cae60ff" + } + ] + }, + { + "bom-ref": "ecc5c1b75f58c76e", + "type": "file", + "name": "/usr/bin/timeout", + "hashes": [ + { + "alg": "SHA-1", + "content": "d86212366e20a0fe28f27a177fffb016127dc3ff" + }, + { + "alg": "SHA-256", + "content": "81b1f877246269f37f2fe9c207c0a25779d189a804db5214e8a185674fd28f8b" + } + ] + }, + { + "bom-ref": "26c6d684742b730d", + "type": "file", + "name": "/usr/bin/toe", + "hashes": [ + { + "alg": "SHA-1", + "content": "4ed447db111f164b836455427cd0a3af49aec5b9" + }, + { + "alg": "SHA-256", + "content": "4e562e80a2cc7765a34a2cffca5f7444d2feccabd778a19bbbbf7655c8854d93" + } + ] + }, + { + "bom-ref": "72861f44f9b75e74", + "type": "file", + "name": "/usr/bin/tput", + "hashes": [ + { + "alg": "SHA-1", + "content": "b03253d9d929fa6766b362ca5d66c281d3735ff9" + }, + { + "alg": "SHA-256", + "content": "814958ca9c07d7fafe9830577c61e7d7665c1bf0b107c61dd21247a2952928f0" + } + ] + }, + { + "bom-ref": "2aece09671163187", + "type": "file", + "name": "/usr/bin/tr", + "hashes": [ + { + "alg": "SHA-1", + "content": "94bdf6c1207ce5e18bb7c0187d13ec0cd701358c" + }, + { + "alg": "SHA-256", + "content": "23a9e3aa04a9109e7448c167fd7e87e5413ea5f07ac5e055b9bdd8bfb6764ae2" + } + ] + }, + { + "bom-ref": "1f838a7769af277b", + "type": "file", + "name": "/usr/bin/truncate", + "hashes": [ + { + "alg": "SHA-1", + "content": "45d958c39a3ce4dbc392267b63027777f32ac391" + }, + { + "alg": "SHA-256", + "content": "cbed97bd03bf50823526eb6199ea3ae98d6a49e3e983af99ed57c7887ca33165" + } + ] + }, + { + "bom-ref": "7e229795839fc93f", + "type": "file", + "name": "/usr/bin/tset", + "hashes": [ + { + "alg": "SHA-1", + "content": "1c2125b5364c3dc15cf3ee9a68fe5c08c4bb340a" + }, + { + "alg": "SHA-256", + "content": "e1d2870f07982fa5c05bbb41bc4b2f652dcb4e84d38348fddfe7c65088ee2acb" + } + ] + }, + { + "bom-ref": "45615675bbb60234", + "type": "file", + "name": "/usr/bin/tsort", + "hashes": [ + { + "alg": "SHA-1", + "content": "d12fe9980a601fda928a01f7abd5d71d4e910523" + }, + { + "alg": "SHA-256", + "content": "40fb3aaf3d8c2d54027b42ebc3b5bb72270657584a3116a029e0fdfba3d582b0" + } + ] + }, + { + "bom-ref": "bd6073e129e3a807", + "type": "file", + "name": "/usr/bin/tty", + "hashes": [ + { + "alg": "SHA-1", + "content": "16d0946bed68213b724ed0cee499f77abbada4af" + }, + { + "alg": "SHA-256", + "content": "345a918cdcd0d1762ed3ac0675a5164c80506db8ebfc27932caabe707559aba5" + } + ] + }, + { + "bom-ref": "95878a19128677f8", + "type": "file", + "name": "/usr/bin/tzselect", + "hashes": [ + { + "alg": "SHA-1", + "content": "fbf713cff8807df097db1a4fcfe7be845f2fbf6f" + }, + { + "alg": "SHA-256", + "content": "299abe2c1b38aa21df5e6079c5b654914a6a5f14aa1a37da7463a8f3c0976a81" + } + ] + }, + { + "bom-ref": "01fc8aa8d76dfbaf", + "type": "file", + "name": "/usr/bin/unexpand", + "hashes": [ + { + "alg": "SHA-1", + "content": "0ce413dc085165050dcd73f85c04dcdc82f06cb8" + }, + { + "alg": "SHA-256", + "content": "0db66d773f2c8ff4b4994a4b3b859430e0f8857d16c28a48f29a99dd4f280e24" + } + ] + }, + { + "bom-ref": "cf33a48672568cc5", + "type": "file", + "name": "/usr/bin/uniq", + "hashes": [ + { + "alg": "SHA-1", + "content": "566523308fd47a65562a90a4dea06c838d64b5ef" + }, + { + "alg": "SHA-256", + "content": "80f3f287f39c0c81b318a4ce2e1708870703b95bb0c624ceedb285cd3ad54d3b" + } + ] + }, + { + "bom-ref": "6db21018d2933543", + "type": "file", + "name": "/usr/bin/unlink", + "hashes": [ + { + "alg": "SHA-1", + "content": "56d43d0b4d4b3aa8f2b72c40b80c14e6214aef92" + }, + { + "alg": "SHA-256", + "content": "5b91de85c66d77c8b39f3fdff754e2aa006393b94106f5350bc805908c6b037c" + } + ] + }, + { + "bom-ref": "2f4325ad11723f03", + "type": "file", + "name": "/usr/bin/unshare", + "hashes": [ + { + "alg": "SHA-1", + "content": "74b641e5b78aa79a0b0436951fd91df09bb2d4ae" + }, + { + "alg": "SHA-256", + "content": "7406bd510854c90e2bb05e705687fae5862d996a2923e7309d997cc78b2ad1e2" + } + ] + }, + { + "bom-ref": "07ad3b798baab50b", + "type": "file", + "name": "/usr/bin/update-alternatives", + "hashes": [ + { + "alg": "SHA-1", + "content": "7bd0d4014ecbe7af6776f9ee316d69d826b7e1c4" + }, + { + "alg": "SHA-256", + "content": "a51f8948733fe5d10a2a3fdfec97b7718245212f97bc82f2e9cb2dbf550e6dc4" + } + ] + }, + { + "bom-ref": "870f511aa56f76bb", + "type": "file", + "name": "/usr/bin/users", + "hashes": [ + { + "alg": "SHA-1", + "content": "6442090d2f650d955630c8e998103f16148389f3" + }, + { + "alg": "SHA-256", + "content": "cf639d336ce3215727b742b2474cbd9511d8fa3fe9307e011728fa06ff7951f0" + } + ] + }, + { + "bom-ref": "a301255b9268085e", + "type": "file", + "name": "/usr/bin/utmpdump", + "hashes": [ + { + "alg": "SHA-1", + "content": "88863bf90d72abe2b8a8f16817ef08260afb8cf6" + }, + { + "alg": "SHA-256", + "content": "6b8a5a198fbd4e1a5c21ba6b60863fdbb07a6e7f211ae71ca54b834ae933e240" + } + ] + }, + { + "bom-ref": "e253f03ec29d2901", + "type": "file", + "name": "/usr/bin/wall", + "hashes": [ + { + "alg": "SHA-1", + "content": "0131d389533cae05e991295221142cafaf9e43ee" + }, + { + "alg": "SHA-256", + "content": "e3c5462b0b0e2e6eb5b9f7f1278cf6ad0255b44abbbc6431668be14d509b01c6" + } + ] + }, + { + "bom-ref": "963cc963c0f728ee", + "type": "file", + "name": "/usr/bin/wc", + "hashes": [ + { + "alg": "SHA-1", + "content": "3a9d3466e8481031ab5bfe379b8a8b89164a2855" + }, + { + "alg": "SHA-256", + "content": "b4cbcc139e9f1cc1b9e0fa2d3afedad5391bdd2dbd05610da8994988c57ee5e0" + } + ] + }, + { + "bom-ref": "9c69d11b80c9ac9f", + "type": "file", + "name": "/usr/bin/whereis", + "hashes": [ + { + "alg": "SHA-1", + "content": "d438d7d541a3df11868f059c6f4a2601622b8728" + }, + { + "alg": "SHA-256", + "content": "b42266bb2b4a3cfa39fc0bd847a7acb316dbeea0930059422ef55c7fbe83bf2e" + } + ] + }, + { + "bom-ref": "ddb08dab8f68dca9", + "type": "file", + "name": "/usr/bin/who", + "hashes": [ + { + "alg": "SHA-1", + "content": "4788453db9a8252b69ff8405624109839475a437" + }, + { + "alg": "SHA-256", + "content": "a00e66033dc7343c9f2ba271dd8eef32cdcccdcdfd1461218da66bef4db36dee" + } + ] + }, + { + "bom-ref": "08666a2d7f3c50ca", + "type": "file", + "name": "/usr/bin/whoami", + "hashes": [ + { + "alg": "SHA-1", + "content": "8379306341f5fdfc1969c45f54a011fc89a43678" + }, + { + "alg": "SHA-256", + "content": "fa7553f568e3cedee99995fe02e2a66a4d7e9a4f9585abed4bf96daf07700ac3" + } + ] + }, + { + "bom-ref": "cd5f8b8cfa69c712", + "type": "file", + "name": "/usr/bin/xargs", + "hashes": [ + { + "alg": "SHA-1", + "content": "59a6c83a70f155b4e485927bec14ae00696235ea" + }, + { + "alg": "SHA-256", + "content": "4def535c9ca4edd7a26eab995b2c75316550b1d65bf4720e6be2238c5fdd472e" + } + ] + }, + { + "bom-ref": "f545d77052fb927e", + "type": "file", + "name": "/usr/bin/yes", + "hashes": [ + { + "alg": "SHA-1", + "content": "93f099747005433d2c42d5218126395e69298b86" + }, + { + "alg": "SHA-256", + "content": "cecffad9d7d0fd743c2b9809c51f99923991686a27c397db80385fede02aaaee" + } + ] + }, + { + "bom-ref": "6383c3661e4e18be", + "type": "file", + "name": "/usr/bin/zdump", + "hashes": [ + { + "alg": "SHA-1", + "content": "cf3a29456fe5a2bb3773edf8f1912050fec4ad14" + }, + { + "alg": "SHA-256", + "content": "3dfc284e413122f3c2ebcb310f189fe20d5e33d53fddf279ac05acae591cb5a5" + } + ] + }, + { + "bom-ref": "fb0d674ef60cb9f6", + "type": "file", + "name": "/usr/lib/apt/apt-helper", + "hashes": [ + { + "alg": "SHA-1", + "content": "da86b089e15f2e35b0152a4319dfd7ba5ef509e8" + }, + { + "alg": "SHA-256", + "content": "379758596b84b1eb38c6f5463d474c36299f3c3fc37a70fc4ded57385871428c" + } + ] + }, + { + "bom-ref": "c92bc9b4c06de17c", + "type": "file", + "name": "/usr/lib/apt/apt.systemd.daily", + "hashes": [ + { + "alg": "SHA-1", + "content": "5fcf84ec2ef5fd3ff510fa633c5a2710cc95724d" + }, + { + "alg": "SHA-256", + "content": "f05ec6f060a9d2b351f321d0d53471a9b163a7bbad465095c1b1f2cd2d9e3867" + } + ] + }, + { + "bom-ref": "e55984b3ae58ba60", + "type": "file", + "name": "/usr/lib/apt/methods/cdrom", + "hashes": [ + { + "alg": "SHA-1", + "content": "f97cb6d533faea5651632955242875bff09a0ee2" + }, + { + "alg": "SHA-256", + "content": "b9489cb71148b6459bbed0521fef59d436f32a2b9df8565907c9c2c15d32ec31" + } + ] + }, + { + "bom-ref": "64a54264af9a564c", + "type": "file", + "name": "/usr/lib/apt/methods/copy", + "hashes": [ + { + "alg": "SHA-1", + "content": "4059fbd210252d8ba3b56cdc1c9d7eaed850153d" + }, + { + "alg": "SHA-256", + "content": "d52a62d3cb3453abca6b7a399b8693694e3de8c22e6e5f413cd7e9a9cb2db093" + } + ] + }, + { + "bom-ref": "f55204048ea3646c", + "type": "file", + "name": "/usr/lib/apt/methods/file", + "hashes": [ + { + "alg": "SHA-1", + "content": "0b1bc81b4387b8109bdc3ed94c2f430e34c9151d" + }, + { + "alg": "SHA-256", + "content": "9a16873934521fc8431e3979e3db6af994c4dd22086fd569193ed498f4c04645" + } + ] + }, + { + "bom-ref": "0637ed0527940d19", + "type": "file", + "name": "/usr/lib/apt/methods/ftp", + "hashes": [ + { + "alg": "SHA-1", + "content": "7d8bd03af44d601ad9ca14f41e721c747a8af067" + }, + { + "alg": "SHA-256", + "content": "8950535d6daed6441a4323d9c97b98f797a0eef0a78e74d1a5d4d9e9b61698eb" + } + ] + }, + { + "bom-ref": "1e904871fb4c7eb6", + "type": "file", + "name": "/usr/lib/apt/methods/gpgv", + "hashes": [ + { + "alg": "SHA-1", + "content": "e70c9b5b235d75f0d07b83a782c68f0f4ea7954b" + }, + { + "alg": "SHA-256", + "content": "60572fafb9c952ca000fd4534f5bea1632426bd8a4a728c8a63fb475b75cac47" + } + ] + }, + { + "bom-ref": "1e5d4448914c488a", + "type": "file", + "name": "/usr/lib/apt/methods/http", + "hashes": [ + { + "alg": "SHA-1", + "content": "150ade638ff899a16179f989c8c6992200492ff7" + }, + { + "alg": "SHA-256", + "content": "1e4df41c3187a2b483788d8b0ea545d0e2e83ff602346275da67e642d9459e01" + } + ] + }, + { + "bom-ref": "4a9d7f802ad353ce", + "type": "file", + "name": "/usr/lib/apt/methods/mirror", + "hashes": [ + { + "alg": "SHA-1", + "content": "6d08656680b822705de59767cdf140c98be1ce16" + }, + { + "alg": "SHA-256", + "content": "7702620751134283f0cac5b63ad4dd538ac3592e814e05e51ba750abd5727329" + } + ] + }, + { + "bom-ref": "2194f6ffa96f6885", + "type": "file", + "name": "/usr/lib/apt/methods/rred", + "hashes": [ + { + "alg": "SHA-1", + "content": "4fba1e3eb84adf4fe0fabc058e6a23061d208713" + }, + { + "alg": "SHA-256", + "content": "3025a408756252ee5d687e2c894f490145c2d2acfce7cb6e5d53fa3302c661c6" + } + ] + }, + { + "bom-ref": "a27ecadeb5738e89", + "type": "file", + "name": "/usr/lib/apt/methods/rsh", + "hashes": [ + { + "alg": "SHA-1", + "content": "f44d5a9e195c0e395db44213712ab56e333b9c06" + }, + { + "alg": "SHA-256", + "content": "f9605c863e99c1e82e6650e492c8054b83b9c884a6fb2ee97125cad9d5468edb" + } + ] + }, + { + "bom-ref": "c32db9622bb7ba44", + "type": "file", + "name": "/usr/lib/apt/methods/store", + "hashes": [ + { + "alg": "SHA-1", + "content": "a908f870a6d9c50c97c72485c610abedc728c1f1" + }, + { + "alg": "SHA-256", + "content": "d51ed41d8d2c9a05c352985079a1da383d28048fb58a3ebd0884ff54e733001b" + } + ] + }, + { + "bom-ref": "e917862b99f2881d", + "type": "file", + "name": "/usr/lib/apt/solvers/dump", + "hashes": [ + { + "alg": "SHA-1", + "content": "a426befd5cf01ed4a044945d2f63757568d4e17d" + }, + { + "alg": "SHA-256", + "content": "75549b439daa6a365a0bdff757dd39258de3ee6ce2a5d7bb34d3daf67042ddf0" + } + ] + }, + { + "bom-ref": "77d64df48f130001", + "type": "file", + "name": "/usr/lib/dpkg/methods/apt/desc.apt", + "hashes": [ + { + "alg": "SHA-1", + "content": "682dc97778774b8a82b26c97782f5843c343b7d5" + }, + { + "alg": "SHA-256", + "content": "4035a2ca99d6d473f6e9a0af7b39d395bfe47e48b3a9993488fc2fae139145f8" + } + ] + }, + { + "bom-ref": "995894a681be4ed0", + "type": "file", + "name": "/usr/lib/dpkg/methods/apt/install", + "hashes": [ + { + "alg": "SHA-1", + "content": "052f3d37f45b1febda3918365145716c063b5a22" + }, + { + "alg": "SHA-256", + "content": "810da1fcf97636219401c67e891a04a7a4f01b2a0d73fd60bf3bbbdfb3775f76" + } + ] + }, + { + "bom-ref": "56db6f33a57cf5c0", + "type": "file", + "name": "/usr/lib/dpkg/methods/apt/names", + "hashes": [ + { + "alg": "SHA-1", + "content": "48accef05a84ae2361d8db806623da6623d6c37d" + }, + { + "alg": "SHA-256", + "content": "0a636de469385b41ea06f639a389c523946ec7f023fe2a12c0adf8300e2a82ad" + } + ] + }, + { + "bom-ref": "d203a0f505e0ef7d", + "type": "file", + "name": "/usr/lib/dpkg/methods/apt/setup", + "hashes": [ + { + "alg": "SHA-1", + "content": "de763d7d348211c690e6af0a5596dfa395e9ef39" + }, + { + "alg": "SHA-256", + "content": "c645a091943f61ff46847973d000cbf1817623a86e1ede412f97f437aa1eb56a" + } + ] + }, + { + "bom-ref": "c2a905288ec2b7da", + "type": "file", + "name": "/usr/lib/dpkg/methods/apt/update", + "hashes": [ + { + "alg": "SHA-1", + "content": "1921cb2b619b98dc62a6e7d0a7e4ce48da794428" + }, + { + "alg": "SHA-256", + "content": "605ae19f87289e8d4cdb80028dd071c4b3ea0e2e46da9ad697b6bd739ba4c6b3" + } + ] + }, + { + "bom-ref": "231fac698db9c89d", + "type": "file", + "name": "/usr/lib/locale/C.UTF-8/LC_ADDRESS", + "hashes": [ + { + "alg": "SHA-1", + "content": "e17f64601d95342e6977b3fe6779532c8a67a765" + }, + { + "alg": "SHA-256", + "content": "e56fdac7f4d70bdb7517a9a3c98bbfefef52fcfb082d3a49c26eec93fd8f9d9d" + } + ] + }, + { + "bom-ref": "36f23f45e8c8a1e4", + "type": "file", + "name": "/usr/lib/locale/C.UTF-8/LC_COLLATE", + "hashes": [ + { + "alg": "SHA-1", + "content": "e1853ba5ed068f3171290c2b7f948905c6e4942e" + }, + { + "alg": "SHA-256", + "content": "400602bb4b2d0e72e937ab6b4ad239b05a286d307627160ec4638a37d797e1d0" + } + ] + }, + { + "bom-ref": "85d2ee2c6f99a4a2", + "type": "file", + "name": "/usr/lib/locale/C.UTF-8/LC_CTYPE", + "hashes": [ + { + "alg": "SHA-1", + "content": "aae750bbd36295c81a03a9deeeaa81a104af5c9e" + }, + { + "alg": "SHA-256", + "content": "dac2aa98f74eb28473182732e8adaf5100bab0a085a862d8c58fcaa7096a99d0" + } + ] + }, + { + "bom-ref": "f9531940f7fa1d0b", + "type": "file", + "name": "/usr/lib/locale/C.UTF-8/LC_IDENTIFICATION", + "hashes": [ + { + "alg": "SHA-1", + "content": "7e5c3b48f452c3bd65d3185db6d568f83bdaa976" + }, + { + "alg": "SHA-256", + "content": "a18e79a14c660aa2eb90d2e145e79c23a20915552797403eed8732c6a75b6500" + } + ] + }, + { + "bom-ref": "eac49d74face29f2", + "type": "file", + "name": "/usr/lib/locale/C.UTF-8/LC_MEASUREMENT", + "hashes": [ + { + "alg": "SHA-1", + "content": "0a7d0d264f9ded94057020e807bfaa13a7573821" + }, + { + "alg": "SHA-256", + "content": "bb14a6f2cbd5092a755e8f272079822d3e842620dd4542a8dfa1e5e72fc6115b" + } + ] + }, + { + "bom-ref": "cf6f51bd2f40566e", + "type": "file", + "name": "/usr/lib/locale/C.UTF-8/LC_MESSAGES/SYS_LC_MESSAGES", + "hashes": [ + { + "alg": "SHA-1", + "content": "574d7e92bedf1373ec9506859b0d55ee7babbf20" + }, + { + "alg": "SHA-256", + "content": "f9ad02f1d8eba721d4cbd50c365b5c681c39aec008f90bfc2be2dc80bfbaddcb" + } + ] + }, + { + "bom-ref": "e7ca9fb388585958", + "type": "file", + "name": "/usr/lib/locale/C.UTF-8/LC_MONETARY", + "hashes": [ + { + "alg": "SHA-1", + "content": "e15e804a83f37be7902e75fe50b4791a32d8d1c0" + }, + { + "alg": "SHA-256", + "content": "cafa798824e8125971c72f9491b95f02f0fbeeb2429bcaeb17491fa5ef1a7f49" + } + ] + }, + { + "bom-ref": "43441b8bb5cd474c", + "type": "file", + "name": "/usr/lib/locale/C.UTF-8/LC_NAME", + "hashes": [ + { + "alg": "SHA-1", + "content": "b5d16f1042c3c1c4bef85766aa2c20c1b0d8cff6" + }, + { + "alg": "SHA-256", + "content": "14507aad9f806112e464b9ca94c93b2e4d759ddc612b5f87922d7cac7170697d" + } + ] + }, + { + "bom-ref": "56921c5bf5d5a857", + "type": "file", + "name": "/usr/lib/locale/C.UTF-8/LC_NUMERIC", + "hashes": [ + { + "alg": "SHA-1", + "content": "1bd2f3db04022b8cfe5cd7a7f90176f191e19425" + }, + { + "alg": "SHA-256", + "content": "f5976e6b3e6b24dfe03caad6a5b98d894d8110d8bd15507e690fd60fd3e04ab2" + } + ] + }, + { + "bom-ref": "6f93adebd1333a5b", + "type": "file", + "name": "/usr/lib/locale/C.UTF-8/LC_PAPER", + "hashes": [ + { + "alg": "SHA-1", + "content": "567aaf639393135b76e22e72aaee1df95764e990" + }, + { + "alg": "SHA-256", + "content": "cde048b81e2a026517cc707c906aebbd50f5ee3957b6f0c1c04699dffcb7c015" + } + ] + }, + { + "bom-ref": "d0fbfeece53639b7", + "type": "file", + "name": "/usr/lib/locale/C.UTF-8/LC_TELEPHONE", + "hashes": [ + { + "alg": "SHA-1", + "content": "3316c99e183186c5cad97a71674ef7431c3da845" + }, + { + "alg": "SHA-256", + "content": "f4caf0d12844219b65ba42edc7ec2f5ac1b2fc36a3c88c28887457275daca1ee" + } + ] + }, + { + "bom-ref": "f31b657c14013cbf", + "type": "file", + "name": "/usr/lib/locale/C.UTF-8/LC_TIME", + "hashes": [ + { + "alg": "SHA-1", + "content": "e619a4db877e0b54fa14b8a3992da2b561b3239b" + }, + { + "alg": "SHA-256", + "content": "0910b595d1d5d4e52cc0f415bbb1ff07c015d6860d34aae02505dd9973a63154" + } + ] + }, + { + "bom-ref": "abd1f47ba6f03c88", + "type": "file", + "name": "/usr/lib/mime/packages/tar", + "hashes": [ + { + "alg": "SHA-1", + "content": "c3e6f74ad526dc0aa3c1634f3a5dfa559f7508d9" + }, + { + "alg": "SHA-256", + "content": "31deef64d49013a02645bcd32e43d108d12ebb89a93034fb35947c7c576397c8" + } + ] + }, + { + "bom-ref": "861308abbb3d7359", + "type": "file", + "name": "/usr/lib/mime/packages/util-linux", + "hashes": [ + { + "alg": "SHA-1", + "content": "86976cfbb3272bf87d782fd82fc72a7a60850ba2" + }, + { + "alg": "SHA-256", + "content": "8c2a3124292211ce117712858ad06a036675a7f7d8f578e5b84267b1196c1665" + } + ] + }, + { + "bom-ref": "2cb5bb06929f4e71", + "type": "file", + "name": "/usr/lib/os-release", + "hashes": [ + { + "alg": "SHA-1", + "content": "f0ed42f3d397f3d12be10aa49760f5ece28cdbef" + }, + { + "alg": "SHA-256", + "content": "c0c501c05a85ad53cbaf4028f75c078569dadda64ae8e793339096e05a3d98b0" + } + ] + }, + { + "bom-ref": "cd52ddb6e0d9f07f", + "type": "file", + "name": "/usr/lib/tmpfiles.d/passwd.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "886f48aea32a6d5da3242dfe02abab0a94c594ad" + }, + { + "alg": "SHA-256", + "content": "1a3b927102b44454eb4c47e4fe659de2f5283f364ba27408329a54d4ad47e310" + } + ] + }, + { + "bom-ref": "a66d19225fc72cb0", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/audit/sotruss-lib.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "665dcf319f0af255610073174b86b8dac98d178c" + }, + { + "alg": "SHA-256", + "content": "af41a716d9cd3ac146b8f15e9588a23e3176d57f553ce785b8f7c43b743f7cfe" + } + ] + }, + { + "bom-ref": "1530b0de145f15c5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/coreutils/libstdbuf.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "0a5906149729c3ae56360961a8d4d4a9c22df888" + }, + { + "alg": "SHA-256", + "content": "387b5735775c8fca542d4b1ecf0f9e1f459bcbc4891f0728c49b9d580742f61d" + } + ] + }, + { + "bom-ref": "8999b962f461c719", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ANSI_X3.110.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "ab0662fab3d38c31a4fc38b826832fdba33bbb0b" + }, + { + "alg": "SHA-256", + "content": "8bd1055135eadec3ee6d9b72c74b4fb3e1e5f041c83a14c435d282e0fe1035dc" + } + ] + }, + { + "bom-ref": "cc0e14af39fdab84", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ARMSCII-8.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "08665207a2014003d49b189746d6610698fd6cd1" + }, + { + "alg": "SHA-256", + "content": "d0d039dc5bbede0e1fa78068e6054453ad79c0b0197ceb067b71c0c15d4a1ff8" + } + ] + }, + { + "bom-ref": "9ae5bba0f8ec0f54", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ASMO_449.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "c9e44499be7ead24fc5ab87fd4ccf33707b34974" + }, + { + "alg": "SHA-256", + "content": "3d2c59c8948bb7f9ef707b827b224f6b5dacb160881f6be7fdca2589b0245320" + } + ] + }, + { + "bom-ref": "5db62674e57d78d4", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/BIG5.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "7a6eb66114d07f1ba00c97d8362485a8957f066b" + }, + { + "alg": "SHA-256", + "content": "fa32a4767be2a492dcd50760805ae950f3aa0ec480f9651f9964b8fc5ff503a0" + } + ] + }, + { + "bom-ref": "39a7e425eaa17b2c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/BIG5HKSCS.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "eae19e1e6d4c5f5edf4924df6bfbfeece86ecd0e" + }, + { + "alg": "SHA-256", + "content": "d575f30cff18651ab688eee9f8b42e60a1532b72cb57aa3e6d8fd6434413fd02" + } + ] + }, + { + "bom-ref": "4b2ae255b469b3c5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/BRF.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "d46e7b38ec5ee655b5cd388328a03b80b27bfdf8" + }, + { + "alg": "SHA-256", + "content": "68caf9dc16a8d06253de07c0e4573daec01806664614adca1318dcccc10ece1a" + } + ] + }, + { + "bom-ref": "66683b8abf176005", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/CP10007.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "aedc1ba3aba126258e17369e031789291fa5cb83" + }, + { + "alg": "SHA-256", + "content": "e635d1609316c046762a449c761d6cb0ef3d14d62e3b961e379c72857ef3af01" + } + ] + }, + { + "bom-ref": "e1d6a16c2b5a78d5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/CP1125.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "1ed969318f358928f7c8cae41f4be9aa28643c4c" + }, + { + "alg": "SHA-256", + "content": "faf077ffe9786b03ea2b0cb2c7684d61f76e3e8e5e1ea7d17bc359372833b60b" + } + ] + }, + { + "bom-ref": "d0d53f7b53b7a475", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/CP1250.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "c7d53f3620b7ec610d53236594ab3706c109f3d4" + }, + { + "alg": "SHA-256", + "content": "6a74d26dff05c10fb561ec4977e6c8d392e3402503e1a012dec981ffc5a633cf" + } + ] + }, + { + "bom-ref": "7b42c2a245512567", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/CP1251.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "281b38b5571f8a8ca9236f5d233a55f7d776998b" + }, + { + "alg": "SHA-256", + "content": "707abece1c50053296939aedf261641fc46b42704d27c78780b009e923ce21ff" + } + ] + }, + { + "bom-ref": "425f24900b3dacd6", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/CP1252.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "ec622e21e5938d31eb0ecddfeabef4e88e8dc679" + }, + { + "alg": "SHA-256", + "content": "eed98d0a56001c0195bc059fc47cc7782a90f141656e9f3d39ac6f5f77068bf3" + } + ] + }, + { + "bom-ref": "89e0f877f0208c1c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/CP1253.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "e029f7e9f0d1b4b8f30e7bd0ec9a37045843db2e" + }, + { + "alg": "SHA-256", + "content": "4b4ddd241d2acb12c325ea86809525e432bb0c5fea71764830a9e9a46eef9af3" + } + ] + }, + { + "bom-ref": "483295a6bb8fce25", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/CP1254.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "80307774fb612ef63c5b6246f9d47e9c0e5cd0a1" + }, + { + "alg": "SHA-256", + "content": "67ba123f246ba621fb6910d81fd6305a5d600ee139911c569999114f60401534" + } + ] + }, + { + "bom-ref": "98dae79d93748f03", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/CP1255.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "9b312e5166c5eda1086c21b42d862df93ac8c1bd" + }, + { + "alg": "SHA-256", + "content": "fb3dc833a4e0508e80cf8b579915df241d8026de541df89449a0513f2320fa80" + } + ] + }, + { + "bom-ref": "c2b890c4c8c86817", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/CP1256.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "723aaf6b2d0372008bf6f5f944fee3ab62c5b553" + }, + { + "alg": "SHA-256", + "content": "a5a32a599a5abe9801058b93c22c0a8532d70fff72eef236bfbeab10c7feca2d" + } + ] + }, + { + "bom-ref": "ecc3fc07b1462b3c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/CP1257.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "298d31c15703183c7df4e2290a7f3f4736d1db6a" + }, + { + "alg": "SHA-256", + "content": "fc3941e1a67515e61f0aff5afee1135c7ffe8b38b9d03cd18a748c9ac72331fd" + } + ] + }, + { + "bom-ref": "db5a79597f810231", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/CP1258.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "2532f6022db964683c4b52e5b5ac21fb6cec0d81" + }, + { + "alg": "SHA-256", + "content": "47ea0f32bbe001d41e316f7f73069cf08d7493992bee7990c872b4710072bd24" + } + ] + }, + { + "bom-ref": "e4f1ed33f5394ee4", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/CP737.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "dc75bccf149afa6f519bf7390b48e3340d111aaf" + }, + { + "alg": "SHA-256", + "content": "d31b3e86bbaebcd3e7ec24144a8ba9b3e06812448dc056cd35577f84244ea674" + } + ] + }, + { + "bom-ref": "c1cb4e3d8991097c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/CP770.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "d97bd508dfff2eb282ebfd301f921adcefc79a6b" + }, + { + "alg": "SHA-256", + "content": "1fec0bcca731da96f6df3efab37ce300f48905cc3e99df7708a322d6c12a2ec5" + } + ] + }, + { + "bom-ref": "ec0fb5676d3ff2c2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/CP771.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "bda55887179daf2fb9bee33ec912209d83b5d66b" + }, + { + "alg": "SHA-256", + "content": "0c7d1fddc39a7dade319df177e0ea32d7bc10566c31c2b71e2138af66dfca710" + } + ] + }, + { + "bom-ref": "d65f287e3c08fcfa", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/CP772.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "2f3845b0156f2e576513873b89b574d20f210d13" + }, + { + "alg": "SHA-256", + "content": "29b91ccc988381ac9c92348addb90c5fc371022bb6981c44584d6f618b6228f9" + } + ] + }, + { + "bom-ref": "ecaf93a277a71897", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/CP773.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "fb3ce4ebdefd7e8b853e190e6dc7f2afc6e8a28e" + }, + { + "alg": "SHA-256", + "content": "8fcb4a7445b306e19f6c137b70b4355e16cae748b8ead506cf256c2b15326113" + } + ] + }, + { + "bom-ref": "86591647729d828d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/CP774.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "2aaeeef9bdfe831ae03c2cfb6ce5ee255bdc87af" + }, + { + "alg": "SHA-256", + "content": "31e46d08a042180daf9a7b53a4f0c25f7c22853d1fb8bacd07442a15ec59e3f4" + } + ] + }, + { + "bom-ref": "908da8c8aab40444", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/CP775.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "5f30ab4eeb075e20ad48a82757c8c0a6ef0f95d7" + }, + { + "alg": "SHA-256", + "content": "c9118dccc47c12b4d5003d0215ff48740f41cde2d7b830cb3360514fbd54ba5c" + } + ] + }, + { + "bom-ref": "fd635faf4c13327c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/CP932.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "f8184b0071fbd52a8259e0ee99f1c7443fc24506" + }, + { + "alg": "SHA-256", + "content": "e35a6aa2e28e0c4d5454312072c257dab4264463032c1d2391b9d21671439a09" + } + ] + }, + { + "bom-ref": "837184261dfcb5a4", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/CSN_369103.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "291dc32323bf1b1a34a126b4ad1ba69047c5c345" + }, + { + "alg": "SHA-256", + "content": "bc32e27f1ee5397f8a483d9e3db993878c783ca6e2f221a0fcaace630bce86d3" + } + ] + }, + { + "bom-ref": "340cfbea3fb0640d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/CWI.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "dab1a230e752a6f9b0a50ab7a94e05f50e18bbf9" + }, + { + "alg": "SHA-256", + "content": "4e935f0984c5473054dddf55fbe0264d48cd71e786cff8bbb72cbd8cd2635af6" + } + ] + }, + { + "bom-ref": "7589eeac5e2cd079", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/DEC-MCS.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "db7da16d161d0c65569f45a0a3745b209d2c6839" + }, + { + "alg": "SHA-256", + "content": "1600719c09e0269eb49e4aa3ecd8cf97107f1b59022d89f3fdcdde24e9070bfd" + } + ] + }, + { + "bom-ref": "a4615769349f18a3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-AT-DE-A.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "e1f6bddc7874a7c057a02047c96ed318a9f894c1" + }, + { + "alg": "SHA-256", + "content": "15e1929d95f8d34a6328d202e2a277b0433d1d91fb69c6fec5951a68cf30d459" + } + ] + }, + { + "bom-ref": "2c5f746687cfb9b5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-AT-DE.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "2979591d0b574558ef9985ea55b9748b6427ab26" + }, + { + "alg": "SHA-256", + "content": "d8695cf3c951d9fdbe646be215514883c73748d1a1826c4efd118d358153f04b" + } + ] + }, + { + "bom-ref": "dd1efe2b690a0c36", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-CA-FR.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "c368ea01d4039ade9bfae74c0ef1cae3ef99b8c3" + }, + { + "alg": "SHA-256", + "content": "cf4b30d7ccfefa4ef754b735e421ac152cca41cfa61a9af20e5bc30911567f2d" + } + ] + }, + { + "bom-ref": "865f4eb7490521c4", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-DK-NO-A.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "c2a7ce7aef13f15ffb2b4566af5174e5e7b6625d" + }, + { + "alg": "SHA-256", + "content": "4ac8bcc4ace7825f855c6adca9ce9e8b0d6785345a7b1aa0bf55bfb85863cba5" + } + ] + }, + { + "bom-ref": "d6f882e768c87fc3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-DK-NO.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "ada0045df7ec704adeec3e74e9d69442ce38b515" + }, + { + "alg": "SHA-256", + "content": "908c155365a9d6fb1465b75bc4a4ac5dfc716685d10a108dc406260d513f44af" + } + ] + }, + { + "bom-ref": "75c170916cf94875", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-ES-A.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "aac6b6d00b0e0d5d92e540b9ea543b409363a7e5" + }, + { + "alg": "SHA-256", + "content": "cb7b38d5b84e4207df4e203f2cee9c9008dd12c7c34a55b9274e484e837480ac" + } + ] + }, + { + "bom-ref": "796602f15a31309b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-ES-S.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "bb4881a4d0462b090c8064f286290bd6bd6d2c98" + }, + { + "alg": "SHA-256", + "content": "f16a89927b6cd65ecb4c718b3b0e5f315d7f53bc99fd2f2398c077e6ee6350c6" + } + ] + }, + { + "bom-ref": "2ec498cfb2aa398d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-ES.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "3734b5faad337f8f828e6c3c2b3ffe5879fcfc37" + }, + { + "alg": "SHA-256", + "content": "2e2bbe3e532a39eca7aab2a3d314280dde3097feed20ecc557cac357dad10d3d" + } + ] + }, + { + "bom-ref": "3a3682f4bc3bcaf7", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-FI-SE-A.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "5b4b182c216519b08e3971235f42046ebbf1d2f3" + }, + { + "alg": "SHA-256", + "content": "89c97624dbd3a160c8649dea77a99583c5e9553d696ae125884d32a65258fd22" + } + ] + }, + { + "bom-ref": "c0f27c548762befb", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-FI-SE.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "7aa1672e05779505362e62588b57b7a778e6ca45" + }, + { + "alg": "SHA-256", + "content": "3cbc7e2f6b9950fc1dc3b772429a7dd5951dbf0338a3e8a4c86bdcad33fb2c7d" + } + ] + }, + { + "bom-ref": "3b7cda50ca58ab1b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-FR.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "3908e6e067dec52481f26441df904de03fb3aead" + }, + { + "alg": "SHA-256", + "content": "b1bea56eb39baf93897b74316902c91f1cc3c4b531c15eb45776ff6a3515ab43" + } + ] + }, + { + "bom-ref": "721028f98e7ac766", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-IS-FRISS.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "84a05410f06ccbad9897609beec5127a3114e4f3" + }, + { + "alg": "SHA-256", + "content": "c5c9242e063035405884eee4374fd648b5b48dd7cc3f1d67548dffc319a90009" + } + ] + }, + { + "bom-ref": "b2d0a223da60b935", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-IT.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "7101ced17b5b68cb3c0573c8389503fdde37a1d6" + }, + { + "alg": "SHA-256", + "content": "57d6b6201894ca13af07ddd6f0e33e473590ad95f88a118237fea4bf8b2026ad" + } + ] + }, + { + "bom-ref": "659a80e4b7c6c531", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-PT.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "383fed02a226d64d34794070a60950a06003b54e" + }, + { + "alg": "SHA-256", + "content": "9d083199fa5e50f50ce3c688e46ea7f657a57a76ea405dbcb951522b2ce52a4e" + } + ] + }, + { + "bom-ref": "27799b99f6040546", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-UK.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "bda9d94fa50c19716f83ff96eb777da867a4298b" + }, + { + "alg": "SHA-256", + "content": "b387532e6647a92bbfbddf49d138205a591e1dd3e29804e83ffe9a7c1f41f96c" + } + ] + }, + { + "bom-ref": "780b03d20eb08649", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-US.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "76c580d53d1520e83a667c3aa576a7139a995d07" + }, + { + "alg": "SHA-256", + "content": "14c447d7ff4d350fb7c08cf71d9112782093096d1108b6484b0ee8e53657889e" + } + ] + }, + { + "bom-ref": "5abe83b4cceb8419", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ECMA-CYRILLIC.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "8b4a19a50906c11907dd110562a7867ef7f62e21" + }, + { + "alg": "SHA-256", + "content": "9f6551c14bcca8a6e58ae1cf4755d6c4fe8671454b5846da17d3e413af0792d0" + } + ] + }, + { + "bom-ref": "ca80d763adff906a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/EUC-CN.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "5a79d3bfc9c442fc739d7dcdee0547406e23c637" + }, + { + "alg": "SHA-256", + "content": "090f945e0f0bbe201bf981bc8f537ff72a026d3eca53949e069bde12439b8df2" + } + ] + }, + { + "bom-ref": "ed2d5b1d3bd7c332", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/EUC-JISX0213.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "c7dfd2f636e6699eea53f86632f16e86e78748b0" + }, + { + "alg": "SHA-256", + "content": "650a4f1844acf75ada832e15ac6075ece0b08324bdcdfd2338be75ac68a24344" + } + ] + }, + { + "bom-ref": "2848a99eb63aede1", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/EUC-JP-MS.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "d6b2a7fe76355c251ceae92104e60c7b12780c9c" + }, + { + "alg": "SHA-256", + "content": "4b79e7b3c75f9ffec81b56386167cce0c18e4344862468835098baa85ffe8967" + } + ] + }, + { + "bom-ref": "c29735d085aadfac", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/EUC-JP.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "3d7748b8c565fc2bad274181821ff9d4db23e00c" + }, + { + "alg": "SHA-256", + "content": "ecbabe88a9a6d82e508a43c14d8e53e10896e6bf7096642a0a5c0c47089f9d36" + } + ] + }, + { + "bom-ref": "9bf9ffd3f4e8e4db", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/EUC-KR.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "3097feeac30e33c92488aaec7a6800c14ad95063" + }, + { + "alg": "SHA-256", + "content": "a2db6ce59c38160dbf4858fc5c5d0e6854de9fd8b39fcc0222ba7f12751b2069" + } + ] + }, + { + "bom-ref": "79d04664d199eb1b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/EUC-TW.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "dc8b84d04eafc582bb1a681767d65f09144658fc" + }, + { + "alg": "SHA-256", + "content": "7cbdfdb6ea3297d5db22384321cbf0ed16fae471a4093aca76c14fdd8f21e4d1" + } + ] + }, + { + "bom-ref": "7e7b7de0cd6ae8b7", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/GB18030.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "3e66fe7d2a8b77b9e875cd8495984aaa5db5a26e" + }, + { + "alg": "SHA-256", + "content": "c261b9ee7385c7b80e695f23067b13969d93a1215f72b914dcd31a67227a2d04" + } + ] + }, + { + "bom-ref": "a82ac9c045f73b27", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/GBBIG5.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "2ae28d0fe8d54062f7dbf12a611a5ec926a0bdcd" + }, + { + "alg": "SHA-256", + "content": "46aa94bad310c1cd0854b18a8d4dae41a5c8dedfaa6586fa81bb38fc1c1bded5" + } + ] + }, + { + "bom-ref": "003f995aa248a025", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/GBGBK.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "81507605c8c80f3c2423b9f14dfa8b47968e091d" + }, + { + "alg": "SHA-256", + "content": "654ba267aef6e69767c5a3fba41955441f2e869684b77ab3cd8aa1ac47d7f74a" + } + ] + }, + { + "bom-ref": "798d3efb61a3ec5b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/GBK.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "36b66067f711cb2c7abe881989be16169794e982" + }, + { + "alg": "SHA-256", + "content": "cd474473314b5c4123e5a21b94ec2ec398b55ff186fe210df40961a116560437" + } + ] + }, + { + "bom-ref": "e30f0f10fb083a90", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/GEORGIAN-ACADEMY.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "7f317d6d4d9daa76626e10c33797e18bcd0ca47e" + }, + { + "alg": "SHA-256", + "content": "056bea644fbab1dfd8b3f50feaf7879b35da0b3b01e73a4c3f3241e95eaf87a2" + } + ] + }, + { + "bom-ref": "e29888e105a87aea", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/GEORGIAN-PS.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "571f7fdff52a4ee66d9ed9df537e683b08facbb7" + }, + { + "alg": "SHA-256", + "content": "8068a171689155e50ca308ba9ecc9488dd4606db19dfab7edbbaea67fe52853c" + } + ] + }, + { + "bom-ref": "f5d14aea3ddc369a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/GOST_19768-74.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "3e4d7c8f8ef29df0009009a3f72e838831ccf9a7" + }, + { + "alg": "SHA-256", + "content": "f09cdce594bfa5018d97c3c07fa7a59d05587a87d81d5aa73ea4fc6969f60b31" + } + ] + }, + { + "bom-ref": "ef5d4bf86c86c26d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/GREEK-CCITT.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "6f96ecb78244404416b0d9da5f5d72179bdd7581" + }, + { + "alg": "SHA-256", + "content": "fcd98019c961e118bb5a22b04f8cfd4ed05dc24892b30986242add922a2fff25" + } + ] + }, + { + "bom-ref": "6858aba0285c1ff6", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/GREEK7-OLD.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "05a1027ebd0cbe4ba6254f9a69a0b1c419d50b34" + }, + { + "alg": "SHA-256", + "content": "de15818b16fad57bd9b910578cc109e058bdfa68a6e91fce39205f5ba6ea258f" + } + ] + }, + { + "bom-ref": "8092a5ad04c410e5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/GREEK7.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "9cf4a4b2fc31013bc96b5a5d3f251e80c991600a" + }, + { + "alg": "SHA-256", + "content": "6db6ab7fb998752d80c9179a857dade2cf69b5ffeb031acea23f851f5499025f" + } + ] + }, + { + "bom-ref": "0660aa6c8b1f7424", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/HP-GREEK8.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "68c12181c137968c33c9907fb623da995b3001ab" + }, + { + "alg": "SHA-256", + "content": "4033d21e5d4a928f67f6ff3945678a9d95b1b360a7f426ba313db7c3e030cbc5" + } + ] + }, + { + "bom-ref": "9ab10b3fa130bb96", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/HP-ROMAN8.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "9fa46e7209ec7a0e6f47c0700023079e8ad757e2" + }, + { + "alg": "SHA-256", + "content": "5b69bc31febc906c946590ce146375cca2fcba7381ce03f0a7f6b94334f7a644" + } + ] + }, + { + "bom-ref": "216d9a06b36df47d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/HP-ROMAN9.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "cf2bfcf3aff6e6e8ca29c44588d7336fbf31a187" + }, + { + "alg": "SHA-256", + "content": "294bb4244e10d1230b04b34f4e16ff214d2b962234a8b5f6e05138b7936b97b2" + } + ] + }, + { + "bom-ref": "47738e72ae7ae009", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/HP-THAI8.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "e6dd52956551f2dae0bd41d2c46833d552e55688" + }, + { + "alg": "SHA-256", + "content": "7177faf207a4b668eea3bd35a37bfac8d496348db8d5ad8c9e8adf653ad196a5" + } + ] + }, + { + "bom-ref": "3d8915bbb2d8743f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/HP-TURKISH8.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "ae37f0a488ee0e94d801fbbe8bb0d4b6ca6071ac" + }, + { + "alg": "SHA-256", + "content": "3c6a43ab21096711c1b70df829588b199b16ee9d5276947efaa9cef058387c54" + } + ] + }, + { + "bom-ref": "421b86510703eed4", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM037.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "4069eb47eb1bee67a2def0da95ef5313169567d4" + }, + { + "alg": "SHA-256", + "content": "e63c7551c7043276d40c7cf9364b3d0fc87d52c8ad5e6fdc996d5dbcf0feec50" + } + ] + }, + { + "bom-ref": "54d12d0f633d356f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM038.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "66d0b849bbac7501a1eeeb2e9f6cad86ee0f4de8" + }, + { + "alg": "SHA-256", + "content": "e04fc40310e2d1580beb4f1974a1e19a757b50c1b3f57c37402e75d2ab888a6c" + } + ] + }, + { + "bom-ref": "41921345ce13cac4", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1004.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "eb8e02014a55c3575be3ad43e9a09710d6266e7b" + }, + { + "alg": "SHA-256", + "content": "a045972d585e3934d2df73910231067f10bd4dc3c85d20e569df76544adde393" + } + ] + }, + { + "bom-ref": "23c1054b09559c18", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1008.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "b31f7f66cf90b01f66711001737bfb8fb45f330b" + }, + { + "alg": "SHA-256", + "content": "d3e74071bfe6d896611b03a9e2cb6189835c6f529338eee0bb361662db77a09e" + } + ] + }, + { + "bom-ref": "85d5140e8a7f0f5d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1008_420.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "f4cc7cca421e9fe4f123a0c932d22b7871c045cc" + }, + { + "alg": "SHA-256", + "content": "f01a30c5394090595284f180d07d16f4794e1fb569b86ae5cc1c168bdf290c81" + } + ] + }, + { + "bom-ref": "11f432465eab1417", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1025.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "394501638138918f5abf3bf5b1d121515bf11566" + }, + { + "alg": "SHA-256", + "content": "4a5ba2c0547db7c9f700866aa48d14a47c6e1b503da0958fbcedc18a5a73c7de" + } + ] + }, + { + "bom-ref": "72844c040377059c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1026.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "a3588b2c69f64fbd17afa44aaa086683a70aed2c" + }, + { + "alg": "SHA-256", + "content": "08f68a40b69637ab121e43cc6a38cc62df440c597c2738ae1ce196a95dad7455" + } + ] + }, + { + "bom-ref": "62d251fd3059746c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1046.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "baf19f3d69519b2ca992d483789be04ebd86cd84" + }, + { + "alg": "SHA-256", + "content": "a8b9bab98a16878676bae578a15c73cd504a05568170939b83d0101e391e7e37" + } + ] + }, + { + "bom-ref": "c772b3ce7af6dc15", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1047.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "9a7734eacf4e76cb44593ff376b3e5f497ae4d2c" + }, + { + "alg": "SHA-256", + "content": "886912ee0689c57c19ddc22ae08e219bfd84c634d81d9c5c9ae39ac5a81e0cdf" + } + ] + }, + { + "bom-ref": "30519c61bd4b2783", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1097.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "4130755ab9c2bd5bf2c099e09cc4d4b5a46e6d9d" + }, + { + "alg": "SHA-256", + "content": "e56f05fca19876f6a4e86922dd3e8416575da64e1956f7334184823f8b46730e" + } + ] + }, + { + "bom-ref": "a3f1884edf50e5ab", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1112.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "d0df9b90e6524c7090bce43b6c7e7507dc2c8f0c" + }, + { + "alg": "SHA-256", + "content": "9945fa0fb7351caf30fb0b29305a8dac274f4e33da443ee1c5543964b6a36d7c" + } + ] + }, + { + "bom-ref": "8d486ec70bb92318", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1122.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "32f496b03b52fd782966da83adc492ea68b8ada6" + }, + { + "alg": "SHA-256", + "content": "dcb4659bc9807ac07171a5215e040b4565e00cb70955811d4e62fc687cda02c0" + } + ] + }, + { + "bom-ref": "f5d9533c4d7602a1", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1123.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "e5ce17a6906a4a1dad6abaf346f455fae18a8bd6" + }, + { + "alg": "SHA-256", + "content": "833d694d8b389404e1838ff6bf7d76a65410a3a6644945760fa3c01d5c295b76" + } + ] + }, + { + "bom-ref": "786aa36ffeccaa56", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1124.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "5cdc1b11774a78181cbc957f46363bf28ed95346" + }, + { + "alg": "SHA-256", + "content": "372e37091107d88e10d099c8d6ae1b9b3eddad4d4abe125f8240f50d6b8ac7b6" + } + ] + }, + { + "bom-ref": "652cfa55b8da3b62", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1129.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "67b310f94910108cf7559963445d86c9820d7cb5" + }, + { + "alg": "SHA-256", + "content": "1d3ef5fdef09c512cf7aeebad0b821064840006e237184c4393c3a9e02db486c" + } + ] + }, + { + "bom-ref": "197ef192a35f64b2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1130.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "bd569337cf3e438866c0c8bd7139028bc4c19da7" + }, + { + "alg": "SHA-256", + "content": "ba146225241c2749a7a90d271d2fc000784fbd3b02cc92a731d8282a208ab60a" + } + ] + }, + { + "bom-ref": "1bd6c2c06b5834ea", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1132.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "19af06b5b0b082f092842aedb07fcde4b81aca5b" + }, + { + "alg": "SHA-256", + "content": "524183c89b47e0f8b4db59cfb865505bca48f2b40c51aca80659e70678e4ad19" + } + ] + }, + { + "bom-ref": "17f02625c2f2a16e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1133.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "823dbdcff5a4d9d00793592d819cf80d47912c07" + }, + { + "alg": "SHA-256", + "content": "4ce179d8022132306310c1e4b9d052bc06dbc64847188fa152647ce345f59e64" + } + ] + }, + { + "bom-ref": "637d8a82aa0680ad", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1137.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "94b6ad6febf9cad80ad7f1b2c4df178adf3eddf5" + }, + { + "alg": "SHA-256", + "content": "6156a30a04224990d6d57b7571dd18d847b0a99af61b04593533e457d7c633e7" + } + ] + }, + { + "bom-ref": "9def3ccec684395a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1140.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "9423a3c3f876f138fdc13c91e0634f693dac73a1" + }, + { + "alg": "SHA-256", + "content": "bde6364e90246c430cef00a6e927c45d679f1c4b5469f66944f4b7a5883f4cc2" + } + ] + }, + { + "bom-ref": "fb5299aef401cc8d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1141.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "b548bc3371d6ea586d580ec50ff092e7a6955ec1" + }, + { + "alg": "SHA-256", + "content": "90ff752f8d1f14dc973d808e9e5a22d75610f4ab61e6b9c027b998882e9d04d1" + } + ] + }, + { + "bom-ref": "55d2b708b1d9ee1e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1142.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "818130e3acf1a70fffee546f16787eea147091fb" + }, + { + "alg": "SHA-256", + "content": "55fabd05962dbe55e49e50a3177e751a2a562eb7350e3bf942dec6abc42f858d" + } + ] + }, + { + "bom-ref": "85ab14172c021615", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1143.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "4403cd91c5c842afc0aed0083c1a4504cca458e8" + }, + { + "alg": "SHA-256", + "content": "a35ffb1105d7244c7e448f243cf4a51869042bf2d4480dab02b897f103ae57a7" + } + ] + }, + { + "bom-ref": "f3c0708315746876", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1144.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "447463435568f83665cc5b534f851a246bd8d496" + }, + { + "alg": "SHA-256", + "content": "0faa29bcf2c689b3a8997445b88e0eb4f425ad2c080660aeab8f9f8cf56e0695" + } + ] + }, + { + "bom-ref": "5036bcdf78359e94", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1145.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "66fb4ba9d8b19be744231cb3bda1ca42b68a4ff2" + }, + { + "alg": "SHA-256", + "content": "264bfa150fb0e87ebefbb412e3609a3526e6de328c29e4860a6b6763f63ecb26" + } + ] + }, + { + "bom-ref": "0471f3891f24cf43", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1146.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "677f0a09eaf1eba4f43e0af4b353d4d01ada94c5" + }, + { + "alg": "SHA-256", + "content": "068352dd4bb0077dc8a07e99b8adf62d05b51a07a33542981336e9c2aff47ecd" + } + ] + }, + { + "bom-ref": "585bb3acc6e4a379", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1147.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "5ba0669bbe90bc51536b3e701b05fbed65d18353" + }, + { + "alg": "SHA-256", + "content": "0eece55c76b4a2fca58012111b356ec7a5da12493179dec2ab4ef48e2b954438" + } + ] + }, + { + "bom-ref": "1cee3b3538c375a8", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1148.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "0b6202a6c87c49dff7f9d020114b2cf8112a71ce" + }, + { + "alg": "SHA-256", + "content": "f55b53b2b5918de95c8ac5bd38652b0d54eb3aa224b545c97ba7f06683223157" + } + ] + }, + { + "bom-ref": "3d4c9efc1ff1b338", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1149.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "e1c7efe812b9a4fd55e09dd524df820e7d14b061" + }, + { + "alg": "SHA-256", + "content": "4f82a72c69b174248ef5bd7aa76da3511a1a8f9d8b3c4b60d0bc3c970d01c9ce" + } + ] + }, + { + "bom-ref": "9ef0ec2289e23c8e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1153.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "a92d47f57c52757501abb600d085464596ea2a4f" + }, + { + "alg": "SHA-256", + "content": "b3fdba5fc64d1251a7807bec8ec9f66569935dd29066b2acdafd8977fc7faa2f" + } + ] + }, + { + "bom-ref": "7eefe815a1362920", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1154.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "554a56c97bb3f4611f821fea9d08b1122e3b00d4" + }, + { + "alg": "SHA-256", + "content": "0b1a52054f274056e49b4c4d1ea7dc09f74b1ebe2eaae7deccac087d747e9870" + } + ] + }, + { + "bom-ref": "25a59b95dc069687", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1155.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "70ba846090765467226ba290b66333586af2c3f6" + }, + { + "alg": "SHA-256", + "content": "f73817d79ebeab12f0e95f7c226e780459bb0aa46b56ad6a93a18a7d4bcf6f1f" + } + ] + }, + { + "bom-ref": "6ea267f22eac9901", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1156.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "3f0a916b75bcd165e208b9c25615be2c46bc2438" + }, + { + "alg": "SHA-256", + "content": "5678f2adc68f29698c8a704d2fdbc0ab9436b414cb52cc72bdd4dfd6c102c594" + } + ] + }, + { + "bom-ref": "c8b5a50f8e7b2349", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1157.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "3616e9ad9819f050d0817ec3695d3db0a5e77a16" + }, + { + "alg": "SHA-256", + "content": "9f8d416805bba233521ef4075454c41b98e5525fdf4f16eda07bb6c5b2143f18" + } + ] + }, + { + "bom-ref": "beb4cc31f500b08a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1158.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "d5ee9fa75d380a906ae2d1f547c9bc1ee60d3cf4" + }, + { + "alg": "SHA-256", + "content": "e5bf69307c43a1dd3e6b0b5fd8f9e04546f28d48715340c418580301169d260c" + } + ] + }, + { + "bom-ref": "b43c8cac6c570b96", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1160.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "81e53ac59d1b6018a4a284f6ba08306e9412b733" + }, + { + "alg": "SHA-256", + "content": "22fbd444cb08c909c247e24c3704e8c86f4a1b108ebaf4ae4e1d472a72c00021" + } + ] + }, + { + "bom-ref": "db1a6d0d7ada8b78", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1161.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "5d2c9f4853f9101e894f235eac2dcbb639ae6866" + }, + { + "alg": "SHA-256", + "content": "3b286b1b6e5f807fe9804815e27fe5bb79b2c2029d6125bc1242f3fb813642a1" + } + ] + }, + { + "bom-ref": "8649f29ec5d75b25", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1162.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "b0a98c958906c43390ba2f0f9845eec2b6aedeb7" + }, + { + "alg": "SHA-256", + "content": "8f99048ab34e0393550c3a89317213b3545e18190e5c652c559c4486f75d60ac" + } + ] + }, + { + "bom-ref": "7c3eb7a63744b4d3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1163.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "6de2756df5afbe77fbbab9c5917810c1eb75b24d" + }, + { + "alg": "SHA-256", + "content": "8a60b6ad5bc4b952b21453392487654423545446b4646aee529464f470180482" + } + ] + }, + { + "bom-ref": "733734b369eacee9", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1164.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "904aa9e1b9130b22b064abe4a3c53f186240b133" + }, + { + "alg": "SHA-256", + "content": "20621545648ef4928f66e9f39294f0809e6cd4612c5e727e6e1568a3419f536b" + } + ] + }, + { + "bom-ref": "1fa6010023983b5c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1166.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "d0074dd3f4252697cff8bceca4deab2ffda79a3c" + }, + { + "alg": "SHA-256", + "content": "69798f9a9f33e7c99e1c5828476ffa86ddad624f33b692b35e1a52fae7f5519a" + } + ] + }, + { + "bom-ref": "40fdeedbf9b582f1", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1167.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "4eba0884a24ce331830782355b009305c7d61e24" + }, + { + "alg": "SHA-256", + "content": "2a3c6b859d2bfdc6cd50002cbc137cbfe9ffbb55af1866f565fcbc7df91629d8" + } + ] + }, + { + "bom-ref": "4c26b1f88233777c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM12712.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "3efadd37b47b9ffb2b96363b63a28bdd2b542f89" + }, + { + "alg": "SHA-256", + "content": "aa92fb14d1c14c1c82e334902e5baf0ff53c68558154060c1bde1a36a9408196" + } + ] + }, + { + "bom-ref": "682edfc9b1648172", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1364.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "f1ee9e4307c9a051519ffce40d2fedc09c0396b4" + }, + { + "alg": "SHA-256", + "content": "94bfe6d3bfb022ec7bc3c1b31091a901333693d1a41c2d775b6d30cbfc39ba38" + } + ] + }, + { + "bom-ref": "1a0103e8bd9e2340", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1371.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "9b716210c77eaa283f74c4e22a6cd7b5bb127553" + }, + { + "alg": "SHA-256", + "content": "2165315043dae6f5a7c9097c15d4874652312579ceed3e62d2f387412d41d3fe" + } + ] + }, + { + "bom-ref": "2d16eb6789765034", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1388.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "52bbb9d8d24a9d20271258c85bf6a38ec8081b4a" + }, + { + "alg": "SHA-256", + "content": "3f3bdbccc01c7834a17f3a822d1c18551e98ef2fa6021198e50b87c832158861" + } + ] + }, + { + "bom-ref": "b45f3a33f20a3c41", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1390.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "57cc87662045442128b4e970b1c50d1dd99f13a7" + }, + { + "alg": "SHA-256", + "content": "099177066ce4e058e0e7fa22b9ce0566a90159ea479576e1db365986094852f0" + } + ] + }, + { + "bom-ref": "04b5cad71148da25", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1399.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "0a577d4f836c58aabcda058eb0d72fe38636f055" + }, + { + "alg": "SHA-256", + "content": "01723d47627035b65c4432d6b4810dcec1f274194812173a16248eb99827ca07" + } + ] + }, + { + "bom-ref": "46a0e17e59b8a007", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM16804.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "4c51a72dd65e609a8ddfd610c696e274a62ec5d2" + }, + { + "alg": "SHA-256", + "content": "aa393948bf86a369b89eeddd72a7592e35e34ae28519e1cf0c70236991004a40" + } + ] + }, + { + "bom-ref": "93d42862540dc360", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM256.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "5dd225cdb7e1b1c21ec388f4b915a2e6e30e080b" + }, + { + "alg": "SHA-256", + "content": "a4ea9c6d63257764ca337bf48f430b86d865653b5b8b587e2fa0fb757833ee40" + } + ] + }, + { + "bom-ref": "04c304914c98aecb", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM273.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "33d692350278ca44b4f69be05683d2222f29a0ba" + }, + { + "alg": "SHA-256", + "content": "e6db90d2325e04e3a5c4ee3e305754311c44998698ec9645d91f03274187310d" + } + ] + }, + { + "bom-ref": "df8f756f8de9511f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM274.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "c4be721b59dc5dee8643b19bed12e3f80758eaf5" + }, + { + "alg": "SHA-256", + "content": "6423caf1255d8722b9c9cb8a0abe705fbc928f8133a60c03dd59f4031bbcbc28" + } + ] + }, + { + "bom-ref": "3e3a82c959dc5456", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM275.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "2a58ca07770db3e5c0beb05e86ebf02d9cf5c92d" + }, + { + "alg": "SHA-256", + "content": "75b02600cfcf6da18f5cd1855f1e466d33ad8390b473cf9a0f0abde34ae2427f" + } + ] + }, + { + "bom-ref": "eab7a105da751d23", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM277.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "900f67c00d4611b3b7875e320f50ea38bceba2d7" + }, + { + "alg": "SHA-256", + "content": "8b7e756303e33a2fdd13af2ba5b1f7818f15949ca1c0e330dfd95d48b03378d1" + } + ] + }, + { + "bom-ref": "1daf53533899e074", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM278.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "49ccb76acd7c1c0e7aa85f7955993fae0494e6cc" + }, + { + "alg": "SHA-256", + "content": "bf7cee8a3f2f2847cea8aa5ffe461e6441861a966045f630cc73bba47dcf357f" + } + ] + }, + { + "bom-ref": "ef9e0de0734e1f14", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM280.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "9e096c5e458e7bb701aabfb58340d162698d740d" + }, + { + "alg": "SHA-256", + "content": "de09dcd7d50654c02acdea9476d7ff334f359112b50383288fe49db594d798ba" + } + ] + }, + { + "bom-ref": "c8b6a79f1496139c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM281.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "cab771312a0ca490f55b894ceaf86722d976abcf" + }, + { + "alg": "SHA-256", + "content": "16d042f1807408cda19ea1d8e5a3bf06007554536a53d4605c435f36713a08b3" + } + ] + }, + { + "bom-ref": "c290b9d8994d2211", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM284.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "5a9771a712fa0feaf25c2e99ea216fd7e5923511" + }, + { + "alg": "SHA-256", + "content": "39046bdff6f0fec840d45cb23ac4d2d5f32bb746c9a96a4ba9e42bf2178487aa" + } + ] + }, + { + "bom-ref": "0e1e64909a693fa7", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM285.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "5126abf5f08c65b844e569556889215cf13af414" + }, + { + "alg": "SHA-256", + "content": "c9f54a9bf9bc3187924ea44a862757d2faa6a5599d028efca85483ccdfbd8fd1" + } + ] + }, + { + "bom-ref": "8d9095fc85ceb232", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM290.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "06f6bb276c5d7b7de52e105fc0576b910521e1bc" + }, + { + "alg": "SHA-256", + "content": "95957db809fcea97edb0a30d9a64129f6c3cb2356770cf5e774c52fe41c7921c" + } + ] + }, + { + "bom-ref": "9cd2826a17b7c181", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM297.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "3281679834e76cef7377fed4779ef76957d77055" + }, + { + "alg": "SHA-256", + "content": "e714fe4e9d02d112e8c0480a55c1605b338543a0e8df19067769b08ee95a1923" + } + ] + }, + { + "bom-ref": "161264103c8a3a59", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM420.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "26e9045e07c2b56b1bf0b32eee5c351ec88c276e" + }, + { + "alg": "SHA-256", + "content": "0afb239f4c32b4c37783b03d37b9f66d012a45dbea85052d34ce8ba2e7cf60dd" + } + ] + }, + { + "bom-ref": "3d50f269242bc682", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM423.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "d2efff0b18be6a81cc52595d90609f2a072a34c0" + }, + { + "alg": "SHA-256", + "content": "977331b034712009115b5a92bef6aa69e74e99a5b0f6435e9532856b8ed7c352" + } + ] + }, + { + "bom-ref": "2a4faa6c3a2c6d64", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM424.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "30264bea594a0183bd6445bbd16c134f5b0871b0" + }, + { + "alg": "SHA-256", + "content": "e3d0a5b82610ca48404667eb49ed3f2c73f01b617b06cc7387b9146de543ad23" + } + ] + }, + { + "bom-ref": "17af832f46de3d1c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM437.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "ffa0bac89e2850a1cfe53f707f330e33c63405ed" + }, + { + "alg": "SHA-256", + "content": "69f1cbfd9590dd1c5e1ba31616cf80350574b887746fcd0c2569ddf47df9a8b0" + } + ] + }, + { + "bom-ref": "c47b8b6cdda6fa76", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM4517.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "aa6c38b3d70ef273c060d34415b7d45edea33fbe" + }, + { + "alg": "SHA-256", + "content": "d49b2d1c5104369f8ca85c725ac254841a0f6ffc4fc6c638b5df77d0bd368318" + } + ] + }, + { + "bom-ref": "97ba584f5503bcce", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM4899.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "52ad65109cce8592f7d14105230dd18390062227" + }, + { + "alg": "SHA-256", + "content": "e0408a48acee548641b1cafaf078899fffc6829a5cc77d931d1647262db74af5" + } + ] + }, + { + "bom-ref": "e2f86bab3d94c2af", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM4909.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "022cce45d0a2c03f467f58c140986e60865340a1" + }, + { + "alg": "SHA-256", + "content": "5c4bc1c97f714f9a81537bd5029924c086a09096d3eee68c289266816c336923" + } + ] + }, + { + "bom-ref": "4c7c6eb845417b38", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM4971.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "5daeaa4df03ecc687ba125d806adbe8c13b66380" + }, + { + "alg": "SHA-256", + "content": "a59b93909ec26b07746583de54ddf0b197047eb1955dc32ef4c8b0a5f447db9e" + } + ] + }, + { + "bom-ref": "8dfcf7f9568307f9", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM500.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "ff43a5d8a4f75c1c782abf4f936d5fe52a056f73" + }, + { + "alg": "SHA-256", + "content": "0bc970ae0e0fbcfabef8c2fb885d7f8c913bbf1614a144f550dc75656090ad45" + } + ] + }, + { + "bom-ref": "0749752e37542fb1", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM5347.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "e2ccdafd3f4c9d3a9665e0e9923528d7bf09ddd0" + }, + { + "alg": "SHA-256", + "content": "7f84282ed95da752b395e62414831a7e7f8c54abcf71e54e3dd5fb938d5f1732" + } + ] + }, + { + "bom-ref": "e1a5298d6056d20e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM803.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "190c8c7d485652bf3244a45db7fe41332e82ffbb" + }, + { + "alg": "SHA-256", + "content": "ddc7a037aaa6eab5d2c126f10d2cb2d7f2114a968d0ab9c7b38efc683cfbeda3" + } + ] + }, + { + "bom-ref": "a11fe1d29346d7ec", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM850.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "aee0ed82cdeb62b8645ebe5ff98cb3686354786b" + }, + { + "alg": "SHA-256", + "content": "ffb6a2cbeed3318cafe6d3c70af225b8080f2833d38f1d37ec14d12a77b2c4a6" + } + ] + }, + { + "bom-ref": "5dcedc08dba7227b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM851.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "c01627cc5601cc28cc1324df2825dc6415e79323" + }, + { + "alg": "SHA-256", + "content": "0e25ad7e753a913eca7478f951599b62bb6ce853bcf2d139ebb0c8d88dd1295d" + } + ] + }, + { + "bom-ref": "80ad7d944642773c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM852.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "9f9604d08eb757a19d784428bce8dac867c58c3f" + }, + { + "alg": "SHA-256", + "content": "a470e55c8307f0ca842801e54ec9c5df5a1dd0d1a2480ab1d0cd350b7dfc4f63" + } + ] + }, + { + "bom-ref": "38b776943831aef3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM855.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "ae5085bad18aded170eb585a9818790dc5b622a9" + }, + { + "alg": "SHA-256", + "content": "5c40062630597b51ff7794c045bdae2fe3139737909823560f475e497210ca41" + } + ] + }, + { + "bom-ref": "11c56a1680c243ab", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM856.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "7e722b8539e3c257d8072c16db0fe4a23293043d" + }, + { + "alg": "SHA-256", + "content": "fafa720a52b26b54d8d201e2892a3bea3276899ee48c91bcba268530452b8698" + } + ] + }, + { + "bom-ref": "e0af75035923d7d5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM857.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "cb3bb9025de1a6b99897bf7abd1dc7d268a06fc9" + }, + { + "alg": "SHA-256", + "content": "440c0ff6a3e15e7f321124ae106ab076e77f1fc7e0340cf73cf44ac9e6ab69f1" + } + ] + }, + { + "bom-ref": "2bac5abda42ef11e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM858.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "f7b39e07864c88af86046ae259bae80b07e29622" + }, + { + "alg": "SHA-256", + "content": "53018dceef2fcdcf0f2c6252816f400f54ad3bfa2754be1392cee89e3997deac" + } + ] + }, + { + "bom-ref": "0d5d89e4cbf2efae", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM860.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "cc413050a31fb1f2427d4777ea364d2ada02be80" + }, + { + "alg": "SHA-256", + "content": "d7f9a87a4060c4f041a77986616d7c8829d1957e585fcfebfe53e09ca88e8596" + } + ] + }, + { + "bom-ref": "80417a7a905cbd51", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM861.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "e3ef4d8010ee368af443ed34cf08fc283b1e9196" + }, + { + "alg": "SHA-256", + "content": "3487f19af408ac59963b89284fed25603b6b7a4aec4253d218eddfbfb99ece31" + } + ] + }, + { + "bom-ref": "4d1a9127a658c7f0", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM862.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "a4baf34d8298c770fb10a63e9d9097183074cf68" + }, + { + "alg": "SHA-256", + "content": "1660ccfe6cf5318391a8cca8db796b23bb7427175b32250ddf0833f73c4b93e2" + } + ] + }, + { + "bom-ref": "bbc5730932428ad5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM863.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "9023c16bdcbf504c19efa1e04445fbc653edb30a" + }, + { + "alg": "SHA-256", + "content": "f6c136bb5a00504fde7f3385ba6de8050a70bbe41f5c961af76c594bf01fe6a2" + } + ] + }, + { + "bom-ref": "ae66faf6446c0367", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM864.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "a9e41f0c9c85f52106e86e621c29f1923b70b941" + }, + { + "alg": "SHA-256", + "content": "3153d4af884dae2e7c30d537fbfe7980c455bf0cc14c9321f06d5eca1b3c3666" + } + ] + }, + { + "bom-ref": "c4ea436d3d65d0bc", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM865.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "49ec5688c4ea9ce5f2ee06fbc63dd043fd5a5087" + }, + { + "alg": "SHA-256", + "content": "74d4f4e3e17fb43b51af95c58c2071d504eb01332b00262ef56f48e285c1be1e" + } + ] + }, + { + "bom-ref": "2ce48e9f43c3d986", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM866.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "91f61423d079ff91fcb1ad78918ec69bfa06f71c" + }, + { + "alg": "SHA-256", + "content": "ab6d94c857ef2938d5b3709494e988a8aded464f4edc2b1600ad0be9e3f396ca" + } + ] + }, + { + "bom-ref": "67ce8f06d14ec033", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM866NAV.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "fe75c0583b4d32e6efb5b5c9e3dbed98433e6ce8" + }, + { + "alg": "SHA-256", + "content": "65eb38a63a5b3ac0d309939f6f9a9fcb20c1786b38cc431215ef7dee003ce780" + } + ] + }, + { + "bom-ref": "ff107a5b820f889b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM868.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "9099704b94f99f04feaa2a0a37feedd4631e921c" + }, + { + "alg": "SHA-256", + "content": "a24bc374bca9a8a891ea87c8c58fca681525d2575e749e5ee7d6febf42280086" + } + ] + }, + { + "bom-ref": "793fe8833b866e7d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM869.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "61cff0562cffdaa87f85425c6d24ae12f7bc77bf" + }, + { + "alg": "SHA-256", + "content": "a28fa006242455bd62003377b0e88915cc41e085155230685016719063c98752" + } + ] + }, + { + "bom-ref": "95ba45a4f5415304", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM870.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "21b759ae1feee6e5fdde8d86065483cbe5408eb4" + }, + { + "alg": "SHA-256", + "content": "7b80dbbbb106daa92a943ddce12c34a6ee9a601400b5d2f71accc4809815c195" + } + ] + }, + { + "bom-ref": "0bea1af784c9ad57", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM871.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "4996fd68a8186f39e09e4d6b9fcf2852d2ceac8f" + }, + { + "alg": "SHA-256", + "content": "b6862d39b5ca0b10131f041b23794fe1c8eb88e3d55e231ccff52dfe9fb14041" + } + ] + }, + { + "bom-ref": "425fe06c0b54e7bc", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM874.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "f5aaa5aa13568b920a24c471e35f4d43e2e016d4" + }, + { + "alg": "SHA-256", + "content": "62016a40e4ff397c443781cff1dd0059764b56ec6c2e4821c1da894dd923de75" + } + ] + }, + { + "bom-ref": "aaf319081b208c3f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM875.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "f303b19e44701779fc2c3338c046585c0c40aec0" + }, + { + "alg": "SHA-256", + "content": "c0cfe1fb3771c7cba309814f596cdbdebd281499164030ef93f9d2f394d7cc7d" + } + ] + }, + { + "bom-ref": "1aa608c071d7e012", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM880.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "afe5e35b517134e68e7470d8e9dd800938572331" + }, + { + "alg": "SHA-256", + "content": "72b0cfe45520139a2ed004043f4c7c44363c031ba52502b326529ef67dbd8518" + } + ] + }, + { + "bom-ref": "1b18cd4385708771", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM891.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "847fbf776b341a3d6f09909ad3adcbb65e4f9b37" + }, + { + "alg": "SHA-256", + "content": "c6f5b2f6a8ad447104693e8d1b146317921fb89e39d2fc03dc3067ea5f9bb87f" + } + ] + }, + { + "bom-ref": "feb0113d90099d9b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM901.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "b49b28cd1941a40de21465f31d9f74add4f07302" + }, + { + "alg": "SHA-256", + "content": "5af93e589e29cfc8c9471058107dd070addf572ea7ef410fc4aac1028fe2953b" + } + ] + }, + { + "bom-ref": "77f848f47378b48e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM902.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "faa11dbc564c9119bfa5f896b37c19fde4266533" + }, + { + "alg": "SHA-256", + "content": "341b6c5d667cf5a1d982ac22d0c396828bdfe43fd875d8284753ea8f5a5cb1bb" + } + ] + }, + { + "bom-ref": "75e0fb747c395221", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM903.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "ee39dae823908454aee02c997e1947f9a72ab047" + }, + { + "alg": "SHA-256", + "content": "0f61e26ca6139d7d0d48898143c77fd112c716089e7169c1e06daf9195f39cf3" + } + ] + }, + { + "bom-ref": "73224cc834406254", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM9030.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "ddbf079fcaebbe59e0f295ee6d5e90853e393353" + }, + { + "alg": "SHA-256", + "content": "fdc658654d1203215cc946897c8702b3cb1a4c0d57b6cb29a5d66f85d0e453d2" + } + ] + }, + { + "bom-ref": "89025b42f0c08e8d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM904.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "4136767a552fd60b109068b58bf01f459bc57b5c" + }, + { + "alg": "SHA-256", + "content": "6858bafc0a0e44eb486a17615804dc1bf22616073a99e718214c0b3b44b32e9a" + } + ] + }, + { + "bom-ref": "f18de43ac9378000", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM905.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "dd1bf7968aeffc0ebec92185960cb40d2e37de77" + }, + { + "alg": "SHA-256", + "content": "e405abd6991c3e145f607209a7bac833a9d529bf829507ce4811b372f1066542" + } + ] + }, + { + "bom-ref": "e36cce62767c6eb4", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM9066.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "4a1363aa388131a09e31c1e4b147c6fb6ca8220f" + }, + { + "alg": "SHA-256", + "content": "2ee248ad9ceca23b8bc9c3840a8cb5ee62934fa0ebe77f2d94e847c7f0a23373" + } + ] + }, + { + "bom-ref": "b0ce8e9fd5146a80", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM918.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "1ddf2cb91b98635e1123764ef90f5bd5764a910f" + }, + { + "alg": "SHA-256", + "content": "c4dab1d5dcb3abb4c65dfc6f705337a47fad6baf7a1975293465746851283732" + } + ] + }, + { + "bom-ref": "632ac74172d14805", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM921.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "c5d6670319ffc48869d78c0e850d744056ef4bd8" + }, + { + "alg": "SHA-256", + "content": "0a49179e4a16614db301c053725df745dc33f6b76a269a9f44fe2882f49f9336" + } + ] + }, + { + "bom-ref": "e82afda856f847d7", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM922.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "ec601b5f468e00528e3eaa14227ee2c3a7b051d1" + }, + { + "alg": "SHA-256", + "content": "6367c12509b2bc5b210e24c533f195fffb0e8b7966a725457a5fb7f3985fbe43" + } + ] + }, + { + "bom-ref": "a2dac02a941b8894", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM930.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "efe05c0ed6b7a966cbc68d6196f3f5ed4813c887" + }, + { + "alg": "SHA-256", + "content": "0ef72e18de175a1e465392b75645bc0e16672fdc1c995658d88bbf7ae1c8b8d4" + } + ] + }, + { + "bom-ref": "7e67bda8430c69d3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM932.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "60140943db57a37e6fd5db8d122cfa9021037bbd" + }, + { + "alg": "SHA-256", + "content": "c936c9d8c1becf9ba156215dc9e898302c1092abbbf8e771130fe740936a9889" + } + ] + }, + { + "bom-ref": "58ed72a012f650fa", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM933.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "ff79619b4f3ead8f0c0db9e1813e1c61dbcd87eb" + }, + { + "alg": "SHA-256", + "content": "d65b1ea4cf5e1f075568fa9dc3f1bcba9756b77b512c26301d1fd98b2fa05c74" + } + ] + }, + { + "bom-ref": "1b359bbae6b90ad8", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM935.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "c86d59193ffa45e56fe5684fd3f86c3500ea59cf" + }, + { + "alg": "SHA-256", + "content": "8dc36800ace6cbfc7c283a7a3a55237b965eaef7e87c2f65cf30f03938b5a042" + } + ] + }, + { + "bom-ref": "22b01add97242231", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM937.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "b545fc79067f8ac7b38c60f7f48e601761fdf35c" + }, + { + "alg": "SHA-256", + "content": "868649969df0325a5fec0aa7cd8d07ed9d594a3a3262f89abab00fe3f90706df" + } + ] + }, + { + "bom-ref": "34419478666049d2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM939.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "2d6d0fd5528d0ba61f9c14518b6048526b0e7fe0" + }, + { + "alg": "SHA-256", + "content": "1dbb575e34d352abe8abbed948aad9fc39e407a80464607312c4842291eb944d" + } + ] + }, + { + "bom-ref": "a9dab603230ebb6c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM943.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "e3cabeac57fdb55d3465af58f6027a4c2c21e649" + }, + { + "alg": "SHA-256", + "content": "1f205dcbfc592e87e5a6b300a040f6c256d9de9d938a90d9f3d982bb3b693e21" + } + ] + }, + { + "bom-ref": "adf47f0e484bead2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM9448.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "07a63e0a3d95226fee5d82ae801af80e571eb9b3" + }, + { + "alg": "SHA-256", + "content": "67699597d81ed62d947f12c0dc1f99a45bcd7d1fa0833c6b7594670afdb38b97" + } + ] + }, + { + "bom-ref": "3bbd6faf45d55b35", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IEC_P27-1.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "496e7a44e14ef5bce4447233e3df14f994fd6d81" + }, + { + "alg": "SHA-256", + "content": "b7c568b36cc94a322dff1dcd0393eba516eb71a29ebc7b19ff36bb15e204fed8" + } + ] + }, + { + "bom-ref": "be1d2411f676ffcd", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/INIS-8.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "7aaf42b98dbf86fe0c5f1a866e2190a0da09a5ec" + }, + { + "alg": "SHA-256", + "content": "6fd91c51b0f0aa58a78c940738f6e879c1ffe78b7596e5f876684bc5d33fac79" + } + ] + }, + { + "bom-ref": "f7db3d72bf720fa1", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/INIS-CYRILLIC.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "ff3d6066a12687fd53e34720f9e6d834e732b98c" + }, + { + "alg": "SHA-256", + "content": "ed62e9841e01ad724f9c8d42a0de567ef86d47209f9349daebb64686246ddf60" + } + ] + }, + { + "bom-ref": "682caa6474e049ad", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/INIS.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "4fe840bc49515285b8ccd9a0ad896c09dfb11c7f" + }, + { + "alg": "SHA-256", + "content": "5aedc89641b9973cb6f8d8367ffea6cd80c56452e336ec09d1750508da2773ad" + } + ] + }, + { + "bom-ref": "049f95a1481eef09", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISIRI-3342.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "8b6bdda4cd73f9b1bcf3ae287e5d2364725fe133" + }, + { + "alg": "SHA-256", + "content": "62cc1ae9eca5f89c88cf87f6e9ec201e1b0e4bdaf9ea81e13c636271c77ec360" + } + ] + }, + { + "bom-ref": "56f74d7a36e39b9e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO-2022-CN-EXT.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "81cac14e09cbe4699c957597c96315d9133f00e1" + }, + { + "alg": "SHA-256", + "content": "026eb42e2ca402226e7e626aee9425de8dc7b616a6fbb13a825f1af8ea54bb7b" + } + ] + }, + { + "bom-ref": "4e933a8a954e1eae", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO-2022-CN.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "e4fdcb0b706f3d787198e6aff1db63cf101e6ab0" + }, + { + "alg": "SHA-256", + "content": "e205f460bd863dea48e81f154118dfe1f4b0890c1f54a0aab0402cf9bba3d3ac" + } + ] + }, + { + "bom-ref": "094a25bb2e62607a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO-2022-JP-3.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "a9cc16ac369dfa76d48408af3c73e726775d75e0" + }, + { + "alg": "SHA-256", + "content": "aa9f8d44d1c8f8554f4439df3accb6a96ddc3931f9b1378de0ec06a8ba71e80d" + } + ] + }, + { + "bom-ref": "00958c232513d53a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO-2022-JP.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "27228923f39c87632ad15a0c7f2ef014d21495bd" + }, + { + "alg": "SHA-256", + "content": "5b5f22f43fcc4ec5c69c1d8b1a5b394c063447bccf5037430b19d6d46a69d02c" + } + ] + }, + { + "bom-ref": "8f5a24da733c8563", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO-2022-KR.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "0740c8366f9374f7210936a368c7919aef8082db" + }, + { + "alg": "SHA-256", + "content": "25b9a74b609d2925f2467ba5f39c11ffe130e1a9edcc1e6549e79510b048e49e" + } + ] + }, + { + "bom-ref": "d3561e169ae88fa1", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO-IR-197.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "609f745c798bc19e4bbe78a6f0e9d72a9bd0fbb4" + }, + { + "alg": "SHA-256", + "content": "57ed5262f481ee65c862edcac758dddfac61cff039b3ec991b55832c059e4cfd" + } + ] + }, + { + "bom-ref": "e01dfac0ded567f7", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO-IR-209.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "2399733753e2de3b28a8936d1c0cc49bb5494f0e" + }, + { + "alg": "SHA-256", + "content": "eecbdf0f88b5d147f330692b5f8d9cb011a357c56c43cea6df44eaf21ef75e68" + } + ] + }, + { + "bom-ref": "20f4a014249e378f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO646.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "e67034b127eb815a6a1d256f7c7d4f2d3a1ff326" + }, + { + "alg": "SHA-256", + "content": "59abf0a5c13017ad370df26eca662524c96038cd289f0b49f8ed2aab0beade35" + } + ] + }, + { + "bom-ref": "4ef0fd0e12fcb336", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-1.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "e810268daab2e636512290380ce0daa0ed1cefdf" + }, + { + "alg": "SHA-256", + "content": "0ed5421b730bb65f0411263b25954771a3c00dae9f9b0451425bb4a6826ebfa0" + } + ] + }, + { + "bom-ref": "9ef1da3507911a52", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-10.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "785a910314c4954d3c99da35190221a24648a768" + }, + { + "alg": "SHA-256", + "content": "2442f550f7ff44be696981edb58c0562846953b44671e4ec13187911e8190c02" + } + ] + }, + { + "bom-ref": "17329ed78ba342b2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-11.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "719f04505ee79f02c42e2656e246feb1adcb1e57" + }, + { + "alg": "SHA-256", + "content": "ddddadef47ae9994ff0461856d14931bd357a685f48008a00ba00873554e74a7" + } + ] + }, + { + "bom-ref": "cba5dbdcc5484b11", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-13.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "7c8c57882233aad24fe37afc3e94970b3ce99c61" + }, + { + "alg": "SHA-256", + "content": "05cf922e88fdbe5be06474e54f6219064d07148cf3a13c4c8135634760e8531b" + } + ] + }, + { + "bom-ref": "ea4ffd0dec203eaa", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-14.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "e157affade69f43d5a5f98022eeac14215e3b175" + }, + { + "alg": "SHA-256", + "content": "90c2e57dd1ccee6e6b06339f2452c8eabcf302353b263bd4a6a5440ef5be02bf" + } + ] + }, + { + "bom-ref": "d0d0d01c6322a312", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-15.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "2d1234cd35841b828a7e1752a2a8ff63e526f07e" + }, + { + "alg": "SHA-256", + "content": "3ebecaf31b3bd5f23df5dce450d87b9e74d7b926026ec07fa4884b6d69dcf6ec" + } + ] + }, + { + "bom-ref": "f38aeecc9832fd35", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-16.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "2c63e715a79bdafcf13e7a0f0de38b54115d4939" + }, + { + "alg": "SHA-256", + "content": "83ed57f0dcf0855a8824ba1d31e38fbc3978d932ade8f42690d3c86cb8f8b124" + } + ] + }, + { + "bom-ref": "92070c7865012b96", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-2.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "48d4987a47d44e45dcb139351d3a04e5a51edcb7" + }, + { + "alg": "SHA-256", + "content": "62c5ad5387efdbc699c41a80aa3d24a3e9dfda0714ee8c91dd3002b99a19dcce" + } + ] + }, + { + "bom-ref": "ddbfae0d6b97c4b0", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-3.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "d5c5b65188cff07d9165e236a8e02365239fdb2c" + }, + { + "alg": "SHA-256", + "content": "141183612b387fb0eebcae40058ec96977594e0fad95cb849b6de27e0b73f284" + } + ] + }, + { + "bom-ref": "b4c792b43e2e57fb", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-4.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "da43d0f219feaeadeba5d9e916c40fdfbf493667" + }, + { + "alg": "SHA-256", + "content": "9bdb563a2e170f83fd856aeba7a90eab6269af40dc0d95aa792f9fa0e0566e07" + } + ] + }, + { + "bom-ref": "2656f94547650fee", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-5.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "35a6b877f4c4b71b25de94a19f64a15276cf7c81" + }, + { + "alg": "SHA-256", + "content": "e89ba843bcbb898b7452f92fdab3b83af072734cdb5c80b8f1a9564085fc6608" + } + ] + }, + { + "bom-ref": "c9033852290225e4", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-6.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "3a275feebe6b45ed20c444bf4a68dfff19d8efb9" + }, + { + "alg": "SHA-256", + "content": "c0267fa43e71cba1c0106243d9ac8a7b2f87cf2552765b86a977dbaaf44088b2" + } + ] + }, + { + "bom-ref": "340ff541b089e970", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-7.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "f0ffa3f6e4d737654689945197fcfa5c07208251" + }, + { + "alg": "SHA-256", + "content": "10ff5c458c2a98a851d1887e7f66e1650da926f3c27e79aaaaf4fbb58f68da5f" + } + ] + }, + { + "bom-ref": "f6d856c168a12c92", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-8.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "0847cddeedb3763b3253d13910a31775f670db94" + }, + { + "alg": "SHA-256", + "content": "012d955784a414f66c835fccb74387b31a67e56d4936df973282a06122ebac28" + } + ] + }, + { + "bom-ref": "b88b4255bdb9064d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-9.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "f875b68a67a64bd8a453c50f45ac087234650e21" + }, + { + "alg": "SHA-256", + "content": "3a3ff587082b32a45752c00268d4ab87e0c417d07b55db33444f2a543dc20db8" + } + ] + }, + { + "bom-ref": "f15dcf886adc1dec", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-9E.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "ca6c1193bebed49235ebc4589ecd98d185f38cb3" + }, + { + "alg": "SHA-256", + "content": "a32056d57ef427748efc2105538811279bef3cf55a60d2ca64847ee2332d02cf" + } + ] + }, + { + "bom-ref": "e4b54e04c3cbbb20", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO_10367-BOX.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "1c95a4b1bc4ae907c28d91591ba370d89866b823" + }, + { + "alg": "SHA-256", + "content": "0b3eef2f1dbb3d33c298145b83419f5a4b7f1ef26ce774903fb887ed8a28c79b" + } + ] + }, + { + "bom-ref": "73b81f1c0e24d400", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO_11548-1.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "851997fff60f0b165f43aa7926e1713486d8a4f0" + }, + { + "alg": "SHA-256", + "content": "89f4b9afa329d7fa61fad25effccc69faec2a054688a1d8cc414e5b6567d75ce" + } + ] + }, + { + "bom-ref": "1456b8d19f7d1a7f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO_2033.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "425ac4f40ff242888670bfdbcce62f9775e026cf" + }, + { + "alg": "SHA-256", + "content": "fa96637f7051ced3d5ef0a507877bc3736fe28dd605e9e2762ded7d9a591b142" + } + ] + }, + { + "bom-ref": "bdaa966dd67a9d74", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO_5427-EXT.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "5ecd309067e1d1b4d6469fc0dc96f980ee46a62a" + }, + { + "alg": "SHA-256", + "content": "bfdf2c3beb89f1c2b066d561b5afacf19f19635ec4c7269a6754fb824f61c7ec" + } + ] + }, + { + "bom-ref": "4f6e27566b98045d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO_5427.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "5d0a4b5a31d4ae1d95c636d8d7e0e51e1290ba98" + }, + { + "alg": "SHA-256", + "content": "0b6c4334329c68b1404cc5ddc29d0afde3c7b8e6e12b399ac6e31fcf81e7a979" + } + ] + }, + { + "bom-ref": "49e315a84f1cf80e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO_5428.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "d6887a58bcacea4d4fe5dfa7d72be327c1450568" + }, + { + "alg": "SHA-256", + "content": "2853b050a6fce7367c238f4d2db05b79e5ac5ed26bd9638b1e27e82017fe509e" + } + ] + }, + { + "bom-ref": "1a7693ab0e4240c7", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO_6937-2.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "fb12355ee7894611fc3b8bbe58831b8c4c93542e" + }, + { + "alg": "SHA-256", + "content": "e46f45b0d0b4a7de4c86b7873b8ce9f4927d0398b0f296bbaef88ae1d3d0e978" + } + ] + }, + { + "bom-ref": "72f28d4409f0fb95", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO_6937.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "2b034e5f4c2d80b6a502ed9d4dda64a9ebcc7dac" + }, + { + "alg": "SHA-256", + "content": "d725e54743c215d118efc2f4f586e646a5041fe7098a1bedbbbe9ae4690323c9" + } + ] + }, + { + "bom-ref": "0c127f57ffcf2563", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/JOHAB.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "d708d28913fd687e0e02af0119dd25cf60ef08b2" + }, + { + "alg": "SHA-256", + "content": "7ae50549864ec795d769e7ce791b37225c502550d1de5dbf077d8ee279201a7b" + } + ] + }, + { + "bom-ref": "d5f587ced110c975", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/KOI-8.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "fd502424f1cf8e4bbb368b492402a2d556a42b82" + }, + { + "alg": "SHA-256", + "content": "6dad72917737247466942b1404fca2a5f95c486b771367d10d8314655f3eeb55" + } + ] + }, + { + "bom-ref": "d52fe820bc751d88", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/KOI8-R.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "a73705525184604f82ebed5de78a08bfc975d61c" + }, + { + "alg": "SHA-256", + "content": "ae320b105cc316df48740af238862708ab2e5eedc5c0cff508eeab6421da78ad" + } + ] + }, + { + "bom-ref": "de63e7fb0f9e0880", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/KOI8-RU.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "a61312e8677ab4cc345af80bf5e057ee4de85027" + }, + { + "alg": "SHA-256", + "content": "14b63a4bd69532106861f3e674122e12717c1bc4593b1343924f5c00f0b575fc" + } + ] + }, + { + "bom-ref": "d989d7a5e8147ba0", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/KOI8-T.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "902e0940eadf644c219ee88eb61f02b3ea51cbca" + }, + { + "alg": "SHA-256", + "content": "72e2444b277133a9a094dae34d3cc294bd3d54ab3bbd27a353ac14f538f50723" + } + ] + }, + { + "bom-ref": "1dfb578fb888a486", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/KOI8-U.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "97de0fa43b208e6fa4dbbab8da02efd7cd271ad4" + }, + { + "alg": "SHA-256", + "content": "871f3ce8b29ea063f354c4b1aeec06c87c00020c604075e810c5ed676ba583b6" + } + ] + }, + { + "bom-ref": "3eb81685c135f7cf", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/LATIN-GREEK-1.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "fceb44da1250525c8e82a15251db0f4d8c474e50" + }, + { + "alg": "SHA-256", + "content": "b284b511b31ab07fb4f82a9a01604a35450278ea0e19aa68ca663a074277c3db" + } + ] + }, + { + "bom-ref": "c9a5ad5685df3014", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/LATIN-GREEK.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "59727e5a69b16a15b7e6bc7674bc38394e6075e4" + }, + { + "alg": "SHA-256", + "content": "6bf2d4914220683781b0c087527052b0eac3dda89660d3e9406998dc588c552f" + } + ] + }, + { + "bom-ref": "4e9246d492c4e62a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/MAC-CENTRALEUROPE.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "58747cb432179384c521fe755c113bb36088ff9d" + }, + { + "alg": "SHA-256", + "content": "14b6d3d575baeab6060075bc55eaaae1c55a05c7b1c1c316c114f6cb8fbedb36" + } + ] + }, + { + "bom-ref": "a3b825a4c5fd66b7", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/MAC-IS.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "fec913b7230a6ce164555bd4da5634d5b3dfbd06" + }, + { + "alg": "SHA-256", + "content": "90a5495b580db443415d33fb14749aecfe820602e7d2f54155d920eb31d686d4" + } + ] + }, + { + "bom-ref": "75855c32076f0d8c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/MAC-SAMI.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "97fe75d227b4a60c96d62c4f41a9e743a2ebea31" + }, + { + "alg": "SHA-256", + "content": "9c4ea021d3f923b6941c2f9ca5fc2f87eb54b2791fa09304cec7f94c72135a14" + } + ] + }, + { + "bom-ref": "a56b62f7ba3ba2eb", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/MAC-UK.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "477edbd4558bddd693034927f0dba21c8c185d27" + }, + { + "alg": "SHA-256", + "content": "5ed579da177bf222ea53ae2f4853cecf684da5187699d7457ae2ca462b589af3" + } + ] + }, + { + "bom-ref": "7608fe034e4e6442", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/MACINTOSH.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "9817fce401388ebf6428acbefbd15143b4059e59" + }, + { + "alg": "SHA-256", + "content": "a98bb1e14fb5ca2d666443c855ac3f8c16c8409fdd21e4cc43db972574fdd3ba" + } + ] + }, + { + "bom-ref": "35a8b56b80d79963", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/MIK.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "fcf3d658aca2751e21cac3fc116f1656e51c0b3b" + }, + { + "alg": "SHA-256", + "content": "9c0447e5307806b15314aa8047295520de32a3a12174ab75bdd632a1d635ef4c" + } + ] + }, + { + "bom-ref": "671d917e2e96b5d1", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/NATS-DANO.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "fb05d038bfb999af410bb9173d65d64aaaa13bd2" + }, + { + "alg": "SHA-256", + "content": "b8ea0e2e9db836e90296ee52065375e6ebe267d5bd1386f605dab0cf07b29456" + } + ] + }, + { + "bom-ref": "3742c826cb8b4be9", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/NATS-SEFI.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "bfec8da5f270fb97fa4f575fdce430efe7b75818" + }, + { + "alg": "SHA-256", + "content": "d96332220ffe8f3f13cfd583bb0a4f9b57874ee1059b7562df592e04677e7bee" + } + ] + }, + { + "bom-ref": "df1ca1baa94832b7", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/PT154.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "45f282fcd156876a8561c755f611dad45ec8fcd0" + }, + { + "alg": "SHA-256", + "content": "ffd04b3c302ffb0a6158071746a350167492dfee1b54665bb24990f42739a712" + } + ] + }, + { + "bom-ref": "f2c4fca1f9df6570", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/RK1048.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "5c3ec4f27cf31f73fe34d2f91186e08fdf0679de" + }, + { + "alg": "SHA-256", + "content": "41b07b35b165b219b26464883725e1f1c20e3c6a361a42ed7a8073033d606d45" + } + ] + }, + { + "bom-ref": "f1c1c7482cdd0243", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/SAMI-WS2.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "73e7e76877e5c16dbc470b50e930e5a98acfd74d" + }, + { + "alg": "SHA-256", + "content": "d7e1911929236a6129a80b65fcd1f59ad387b1046ee5ca6d3ca911a5432ad45d" + } + ] + }, + { + "bom-ref": "b6a6c6d685b21de8", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/SHIFT_JISX0213.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "a73334705389906021ca24b3a9bfa8287987466a" + }, + { + "alg": "SHA-256", + "content": "62d937d7c5f02827733838b9fc8e9af95fd1b330cbeb82fd29e50bce3d9b2f2b" + } + ] + }, + { + "bom-ref": "6a522e969b383eb6", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/SJIS.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "5a5158de63138bc7c22ec9d9ecefb8d1438d6e9e" + }, + { + "alg": "SHA-256", + "content": "ae4a37109dfbdc341dbe552a56ff1f391a174ec740a7d75366a343ed0b57bd5c" + } + ] + }, + { + "bom-ref": "04136bb7fdce40f4", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/T.61.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "003d09dd83a3626619c6144bbf7d72e08800dae2" + }, + { + "alg": "SHA-256", + "content": "8a594a36619720363ff25980f6e2aa965dbabf100d8fcb02a58616fe0a0186fe" + } + ] + }, + { + "bom-ref": "4ef710437bcc0137", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/TCVN5712-1.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "014b991fec6b28e27f17b5a16ae56d911c8a3a2a" + }, + { + "alg": "SHA-256", + "content": "b487d36ec8ffc8c90d23c82822376bcf9219ceac248004d5e757d939796ebb72" + } + ] + }, + { + "bom-ref": "fa9dded1d42f0bdc", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/TIS-620.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "c2d78bd600c0fd843fc566518bec2f40df125542" + }, + { + "alg": "SHA-256", + "content": "758bddda72af8891c23c38e9d9306cefbb61ffd2cbd96013b9bc4b099502c909" + } + ] + }, + { + "bom-ref": "1af6e02025529c9e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/TSCII.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "ab2ef38eb2f4ab01fe3cdbf099b2ecea30261d1b" + }, + { + "alg": "SHA-256", + "content": "4404ce906e258b4d997006589d21a0a3feef0bf5e155285950b7c225b3283bf6" + } + ] + }, + { + "bom-ref": "7634612d66dff4dd", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/UHC.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "7a091353f607053d0e1a0ea03b9ab783b53ab0b2" + }, + { + "alg": "SHA-256", + "content": "9cbfbfefece5fc2ddc48ee861bb3f68fc86199616d0af2da359d52a7b818d4bc" + } + ] + }, + { + "bom-ref": "3fbb9613eebe11a9", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/UNICODE.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "3348ea0ec19f0343633533bed62f2890ca6ca349" + }, + { + "alg": "SHA-256", + "content": "50bf0c97154d218bd0e66050c527be6dec9a5979e17d2e423466673112321542" + } + ] + }, + { + "bom-ref": "48a0f150ec812d20", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/UTF-16.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "2d2c3d38528668cb0844b574fa84d2649795200b" + }, + { + "alg": "SHA-256", + "content": "30fd1fa847ff14f7dcbd288a4beebb76bffa3f6af4c9ea84450cc173196abd47" + } + ] + }, + { + "bom-ref": "f464c7a5cdd3a927", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/UTF-32.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "00e1e39a4e4566c356d28692b48eeb1177913e67" + }, + { + "alg": "SHA-256", + "content": "5455efa59c625ceedbcd12d59ea15ec2c7ce5f4015872e55beb2538e5184b5e1" + } + ] + }, + { + "bom-ref": "e27a9223ec7b7da4", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/UTF-7.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "6d618648f89bddd881598aeb4a58cd6d47de2978" + }, + { + "alg": "SHA-256", + "content": "5e2708da24fd889014b68da2bb521ada111037afe517cf2ab46bcb7ffb5e8d1b" + } + ] + }, + { + "bom-ref": "00eb08026af7a093", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/VISCII.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "01b0907930b7aa3436fa81c57e388941eb380efd" + }, + { + "alg": "SHA-256", + "content": "9543506b1f2487251a1cf1db277734139a85160e4c2e6a8392e1d0046daf9f7b" + } + ] + }, + { + "bom-ref": "d6cf0a3d1dbd6507", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/gconv-modules", + "hashes": [ + { + "alg": "SHA-1", + "content": "8c7a68e1ddb73b08676c834082be9982a6c92317" + }, + { + "alg": "SHA-256", + "content": "b6ff4ae1acb8453e26356956f5a6dcdab4b651b71072a2e32b94cc209b573c77" + } + ] + }, + { + "bom-ref": "0f5b6c00bb04a9f0", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache", + "hashes": [ + { + "alg": "SHA-1", + "content": "7cf7907d5b90a9acbcaf362c060168e376ebcc9c" + }, + { + "alg": "SHA-256", + "content": "c229d237dbd6d89abe5ac82f500f9ddad2612fde270d79238a63bde06f93febd" + } + ] + }, + { + "bom-ref": "b6a89edd3c38e341", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/libCNS.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "b43ab513bffb50701cf961e0f928dbaf403d303a" + }, + { + "alg": "SHA-256", + "content": "d1039d15302b5fa19d3962d330cba73fad4affde1504cbc5d7919b8b8eff3e47" + } + ] + }, + { + "bom-ref": "ce728e4721a2bbc7", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/libGB.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "d059b7414da133c95bc5dbc26f35ea69dff15f22" + }, + { + "alg": "SHA-256", + "content": "3161080afd0de2697b8f364b76d4ddfb1bd5925a5acad9e0dfe354fcd7bac0c9" + } + ] + }, + { + "bom-ref": "cbf75a34cbd5a858", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/libISOIR165.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "03102c2ea8e13f6d7f0fb1c834c459e76c14e977" + }, + { + "alg": "SHA-256", + "content": "3b0d831dafd7fdd4de5c5ab8cd7d2f0a6079c5d38745053bbb78428444201691" + } + ] + }, + { + "bom-ref": "71b0876b8e02e301", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/libJIS.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "455de09c5573e1584e31d85c87f150b62be13699" + }, + { + "alg": "SHA-256", + "content": "2bf3bb73a2c2dacf70e2f927039ebb129aad44e711f7c44332a6c8b433598b9f" + } + ] + }, + { + "bom-ref": "d6fede6950fe895e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/libJISX0213.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "655846aff43f34268d6d5bff8f175f1a478d813a" + }, + { + "alg": "SHA-256", + "content": "56570fe918655f3c60be5e759b0f272a9eb65bebdb2e9cf727a4f4fea555b2f1" + } + ] + }, + { + "bom-ref": "ebd8b0ba916ca8f0", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/libKSC.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "4276810cfdb545f3478e25edbe9fc24d7e131177" + }, + { + "alg": "SHA-256", + "content": "6679b6203dba3e53e03a287144cc6b46223ba589060460f09bbece69cfdb82ba" + } + ] + }, + { + "bom-ref": "0654e496e45abdbd", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libacl.so.1.1.2253", + "hashes": [ + { + "alg": "SHA-1", + "content": "1aba57fe9b7789762d6108caa2c8bfc255ba62fb" + }, + { + "alg": "SHA-256", + "content": "722ffe926c3ce1d46005a4bbc74c2b109b65a32607e01328a204b981249c5668" + } + ] + }, + { + "bom-ref": "e4018a02d2596a35", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libapt-pkg.so.5.0.2", + "hashes": [ + { + "alg": "SHA-1", + "content": "44bc421cac73c08c14585d6595db6c1bb7ebe23c" + }, + { + "alg": "SHA-256", + "content": "ff539d9b6aca71d1a094fcc05e498f3135e910dc77cff5804fca2a766dbe4c19" + } + ] + }, + { + "bom-ref": "6e46f3f3dfa408ef", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libapt-private.so.0.0.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "72a73cf0e2ef81824cd9ac2b1dfd7d3188ec0c5f" + }, + { + "alg": "SHA-256", + "content": "58440f33bf034ebdeb03333c3e005ddcad2fd45f7903d34a74d09d22a8e87741" + } + ] + }, + { + "bom-ref": "4d26e31ea953af09", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libattr.so.1.1.2448", + "hashes": [ + { + "alg": "SHA-1", + "content": "0245623994d36392f69ab161c9a49431bf52b2db" + }, + { + "alg": "SHA-256", + "content": "380c951ab98b152cdffe3b97a5358a1248525593df1b10d02f5163a38065a2bc" + } + ] + }, + { + "bom-ref": "cdb9543230989173", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libdb-5.3.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "f02a0d6fa7e1e0ddba8c4195af02c39eaa3c83ae" + }, + { + "alg": "SHA-256", + "content": "c02b40ecec54ac03be7bffdaa02fe3683859c269f31a233aaae5c02109483cf7" + } + ] + }, + { + "bom-ref": "91610e4dd13939f8", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libdebconfclient.so.0.0.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "8987c4cab7420ed37ce2783e7dbe2d6813c9f1b5" + }, + { + "alg": "SHA-256", + "content": "62e45e9c5fd9e71160f4cede498996368b5e21d693c53936f0613bcf03cbd6fd" + } + ] + }, + { + "bom-ref": "29bfa1c2ccacaadc", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libffi.so.6.0.4", + "hashes": [ + { + "alg": "SHA-1", + "content": "e7df747eaaea825fa1c304fe80318b2b7a2a1d2e" + }, + { + "alg": "SHA-256", + "content": "f91a4c675adf5a68dced59432d19eaec5d863d37b9ded1f928f17ebbdd7ec2ea" + } + ] + }, + { + "bom-ref": "20689edd05dacd16", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libformw.so.6.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "78b7cfdd7fc086a958abb034d301bc1bd9ac3bbf" + }, + { + "alg": "SHA-256", + "content": "74729f09eb99739a1691b64ccd5ca5d6fe27c1aa2b1b5f417a0b851a8b199545" + } + ] + }, + { + "bom-ref": "3a7b7c9814b0772b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libgmp.so.10.3.2", + "hashes": [ + { + "alg": "SHA-1", + "content": "d2ec2565f06f6637921797c69f663624739f182d" + }, + { + "alg": "SHA-256", + "content": "14748116ec8ec63cc9f4e7c911e1c32f9ff1f771aeade59234a54fd917ca198a" + } + ] + }, + { + "bom-ref": "c1dda3654757f4f3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libgnutls.so.30.23.2", + "hashes": [ + { + "alg": "SHA-1", + "content": "57615f627b1e0caef10eb8d833a6a664b04649e6" + }, + { + "alg": "SHA-256", + "content": "1b4ad830d8721c709d980c053060e23459e486395a0fabffa2a491b4c89a363d" + } + ] + }, + { + "bom-ref": "b7e6a2b62460f936", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libhogweed.so.4.5", + "hashes": [ + { + "alg": "SHA-1", + "content": "a6cb8d4b5d22f6a1ead92cffa142c1d3d92f85b7" + }, + { + "alg": "SHA-256", + "content": "4135795c36afc73f01145309c0e3acb07543b263566d612f6e4de4d53f7cb8b0" + } + ] + }, + { + "bom-ref": "ee3cd2f13a2a0269", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libidn2.so.0.3.4", + "hashes": [ + { + "alg": "SHA-1", + "content": "113179d4d43bf1f341acbfc4e3c9a0d9136982ab" + }, + { + "alg": "SHA-256", + "content": "3c1a9050920588c6a593913bee2ecfb2f3449336a43945e3e04ee0e640235e9f" + } + ] + }, + { + "bom-ref": "24390df313b7ad1b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/liblz4.so.1.8.3", + "hashes": [ + { + "alg": "SHA-1", + "content": "f6996035d854b710b0cfa0cf33bed4e64fecb02d" + }, + { + "alg": "SHA-256", + "content": "244066c277ec836afbeb1483f9a518f3166b9d077f6a8511ef80fb8148ba1e60" + } + ] + }, + { + "bom-ref": "edc7e195cd4e60b5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libmenuw.so.6.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "6254e99fe30c7f235f84faafb9f38d393ade59cf" + }, + { + "alg": "SHA-256", + "content": "44e2a7f95bf2515743c0a80fd68718fea068ca34330fe75d089a35eed427d9d8" + } + ] + }, + { + "bom-ref": "c484ac7d4403546c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libnettle.so.6.5", + "hashes": [ + { + "alg": "SHA-1", + "content": "a550509f6fc2d59b60d82edf92388fc6c602e1cd" + }, + { + "alg": "SHA-256", + "content": "e17fee9561403a2712bc825a5b6c8f098db13dea6cf323fdd798fe0dc0703054" + } + ] + }, + { + "bom-ref": "7e63f3afdde3ce47", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libp11-kit.so.0.3.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "6fafb1fea407d713511f52308b77c6e661fde30f" + }, + { + "alg": "SHA-256", + "content": "bdc5cf37024d0fce66a397603efc0cf2a4e19034e5753e907e2840211bc086c9" + } + ] + }, + { + "bom-ref": "f5908c44ddca245c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libpanelw.so.6.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "97569fcf8bb2fe4f226972e347415b9714f2af2e" + }, + { + "alg": "SHA-256", + "content": "adb7bf8aa30ff3385ac4dd033efb41241e1adb94fb0c23bd6a4026cceb6d6447" + } + ] + }, + { + "bom-ref": "fa8995410d877382", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libpcreposix.so.3.13.3", + "hashes": [ + { + "alg": "SHA-1", + "content": "dbf7654a49a1993ceb782e96e70fbd21c233dce9" + }, + { + "alg": "SHA-256", + "content": "9ef989e82be51545a5f1f1505f059faa9bc37a709bb97b5603238719706b2a2b" + } + ] + }, + { + "bom-ref": "bf5f5bddc6945ba5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libseccomp.so.2.3.3", + "hashes": [ + { + "alg": "SHA-1", + "content": "439cab8916d8520ba77d0107ee6663fd48868fea" + }, + { + "alg": "SHA-256", + "content": "010f6a6d48fb08bd76dcd0edd519bb9a8f33d4130fefa43b9106f052db25b762" + } + ] + }, + { + "bom-ref": "72e640c19009609c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libsemanage.so.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "2ee01f94cebf1d7f0b96a3118c0f496914088032" + }, + { + "alg": "SHA-256", + "content": "9be6186e79b523a542bf1ba76a8a06bfb8193329dc76631799fdeb7f50f45191" + } + ] + }, + { + "bom-ref": "b3c20e7bd8e2d699", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25", + "hashes": [ + { + "alg": "SHA-1", + "content": "d746e2a7281d476be9541271d1993d0989ed79d6" + }, + { + "alg": "SHA-256", + "content": "b62f36dd7e4926c64debe131d5bc55e32abfd9fe3f6306c08388fcc43b50cce0" + } + ] + }, + { + "bom-ref": "496535e91398864e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libtasn1.so.6.5.5", + "hashes": [ + { + "alg": "SHA-1", + "content": "954415cbd6ea73211ff59f7aaa3eb16ca52aaa79" + }, + { + "alg": "SHA-256", + "content": "41ad92453adf926d06be2cc42527c9084bb2c64a1f6806615c7ea8dac5789c3c" + } + ] + }, + { + "bom-ref": "e53fe5c894d9a8e6", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libtic.so.6.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "18a18d96b16171125b8e18944a80224076ea8018" + }, + { + "alg": "SHA-256", + "content": "1cd7f5a479f900ec91595ef738ae5ffa86c8663f45f9074cac0a171fb2499d4e" + } + ] + }, + { + "bom-ref": "233a5c48794f6158", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libunistring.so.2.1.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "0de1f130f1845e9c81c6676ce7c0488a09c97970" + }, + { + "alg": "SHA-256", + "content": "bd2fdf827aee611047c457dc6f48a1e4c831277d3016193d41fed4d8216058b5" + } + ] + }, + { + "bom-ref": "51e48139a58c466a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libzstd.so.1.3.8", + "hashes": [ + { + "alg": "SHA-1", + "content": "53cc92de8726a5b7d2a61a6ac323f78ca4cc3879" + }, + { + "alg": "SHA-256", + "content": "6f1015640fa55228fb6fa51ed0d6b705904fb758e5fc3cf58eb20d00bd479c70" + } + ] + }, + { + "bom-ref": "244a9e1ec27fbf49", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/AutoLoader.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "1f31e94944eba37da3bd3bb312d7a2269205b879" + }, + { + "alg": "SHA-256", + "content": "750ee369fbf3c34f72a823ca261d33a89bba98ad1d4a967f4f89e19b122eaabf" + } + ] + }, + { + "bom-ref": "24858762180e5768", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/Carp.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "cc2048ecf5c89cf8dd84426135357c3ad1cae2a6" + }, + { + "alg": "SHA-256", + "content": "fb5389969d145478576396a1716159d85691f08b5cc7e994b7bb9f76dd092da3" + } + ] + }, + { + "bom-ref": "665782f70367f30b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/Carp/Heavy.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "d59b9600b5ad9f1520a9ebe43109531d5ebce602" + }, + { + "alg": "SHA-256", + "content": "867846437cfd54b3603a4a9ca3583fec18ce624ca1df05ff55f1ec4815fa2157" + } + ] + }, + { + "bom-ref": "4df2f8dc7131d74e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/Config.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "94c07ffd92bc7acda614f0b2b8a512533f1b3323" + }, + { + "alg": "SHA-256", + "content": "f4e532ef61a4507b62a67908337e582d196b0f2731672862fd5971db0a26e11c" + } + ] + }, + { + "bom-ref": "b4d3c6c6e8f30b89", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/Config_git.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "0e5f48d5076ce55cc31139de71b81c7e003610e9" + }, + { + "alg": "SHA-256", + "content": "09c5e2ee35ee18d9043d95273f1cd37bc82e80567fd1372a1eb134c809c39504" + } + ] + }, + { + "bom-ref": "6c120a8255ee279b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/Config_heavy.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "6636a990f8e430ecfaea3d5dda59975f358167a7" + }, + { + "alg": "SHA-256", + "content": "1861adf41857490a4ce0c9bf0969b242c9ff2228dfea9236b4ec551b2c9f19ab" + } + ] + }, + { + "bom-ref": "cd218cf7ae5d28d3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/Cwd.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "94b66b0bbf5c078c88f5a7c8a85149e3461019e7" + }, + { + "alg": "SHA-256", + "content": "84c168cecf9770d5ba0f6f24fdea515e707f6323a8e9e08ae6b284026b009aeb" + } + ] + }, + { + "bom-ref": "530ddd32c00dc852", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/DynaLoader.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "a9e568ef830f71093627820d0838189d7be766f1" + }, + { + "alg": "SHA-256", + "content": "7ac4366d0129e3daeef5a8f2311764e0025f2812977663dbc82d11ba8fbf0021" + } + ] + }, + { + "bom-ref": "44e4c57068526b80", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/Errno.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "426a6d195aedd5aea4af9b7fadffa0cbe0d1a991" + }, + { + "alg": "SHA-256", + "content": "5c2d60c4c82acf2fa9f59ed3b71a3f8d77eaa1ef4f110d02c4ceb2c465211505" + } + ] + }, + { + "bom-ref": "81ba35e2b2cbaa09", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/Exporter.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "9759264b136707e8a8b763241f07ff88406a3e33" + }, + { + "alg": "SHA-256", + "content": "e392a2c5568140b1e76eaa4fb8579a728bdb643931c8b9cc2e57f80ee7ea2f79" + } + ] + }, + { + "bom-ref": "2c746cc990eb2f98", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/Exporter/Heavy.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "2f228aa8283047739818a6811e097ce69154cc51" + }, + { + "alg": "SHA-256", + "content": "4a05d2fb4ade7016e108d8b8cdb25b8426b232560be0874755b198fc5be0fee1" + } + ] + }, + { + "bom-ref": "4b8072c5b10cf3f3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/Fcntl.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "d5160f72b22f561d1946a1c12d8efbc4ac98e132" + }, + { + "alg": "SHA-256", + "content": "293ad7b0904fa32bf79bda796dd2244e799bb6b42450c910ef8f54d2edf076ee" + } + ] + }, + { + "bom-ref": "9ba46f6331c2a520", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/File/Basename.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "9db4c3eac640ca4d3e659edcd973adf05430c906" + }, + { + "alg": "SHA-256", + "content": "9aeea43fda475ea4e2b75633b2e25528f45b2510c7df4809449fbf938de58bd8" + } + ] + }, + { + "bom-ref": "9f80e20e902eb88d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/File/Glob.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "7bff1fa38b92429d8fdde48c70cb8015390160b2" + }, + { + "alg": "SHA-256", + "content": "4ae6ccae060c7a7dc8f688c9e3735d09b2489a34d409cdb8f059de596e098207" + } + ] + }, + { + "bom-ref": "ac6556173af2ab59", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/File/Path.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "328f3ee0a999bfd5171053693a04c9b587caf5ce" + }, + { + "alg": "SHA-256", + "content": "8e3bd6496faed3c6dfb7dbf696135aef6c362a99c7fa09d2728cd4feea334b97" + } + ] + }, + { + "bom-ref": "d7cf8883a0af4337", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/File/Spec.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "3c23500b983d600e34cc0433fdec6575070d58a2" + }, + { + "alg": "SHA-256", + "content": "cc58410399562a9c05d6954d277d6a0776db9176ac23909dad778f7a29deab09" + } + ] + }, + { + "bom-ref": "65659c42f7092703", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/File/Spec/Unix.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "bbb6f6052302f36e13b90e4f6aca89caeba464f5" + }, + { + "alg": "SHA-256", + "content": "bdcad33fe9d31537bbdbce2e32ab3b6fcf902432522e167d39531558c554450e" + } + ] + }, + { + "bom-ref": "7291efa77b5867b3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/File/Temp.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "f65bfa53b496e9759f3b5f663777725e2c293d0e" + }, + { + "alg": "SHA-256", + "content": "f83f5e969b8ba4cb9de0302624d1df4220f1ad8c5e20f83acb9967d474516fb2" + } + ] + }, + { + "bom-ref": "031ef49edf434d46", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/FileHandle.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "5ce121464335daa58fc4d0424e9639bbb0e0f00f" + }, + { + "alg": "SHA-256", + "content": "91ec6e83b34fb8501aba443335f86843d93dc5385604baaa002588c99c75b9ee" + } + ] + }, + { + "bom-ref": "0ad8e612abc4ff57", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/Getopt/Long.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "e7a4b93b3b61671141ce5b6ee46fb9938472d8e4" + }, + { + "alg": "SHA-256", + "content": "936f106aec8da64b2299914ff5c3614f9ba7c7d83053e5d13ab7f499e9235b8f" + } + ] + }, + { + "bom-ref": "3bf7e61d735ccd84", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/Hash/Util.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "c3d430e773d00a4852e2ee25164f18b503eef158" + }, + { + "alg": "SHA-256", + "content": "2aa0c6c7e43a40de48e50e57a8ddeb95b4b06d1849482d47e9bb670ef2a4ee96" + } + ] + }, + { + "bom-ref": "30045eb621465ca2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/IO.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "2a8ba6c4b3e64ae22d18d52e862a9c5901ca0292" + }, + { + "alg": "SHA-256", + "content": "4238dbe714699a77ac210bec27ab7a4e4a942deee43698db76fa98c86506ac7e" + } + ] + }, + { + "bom-ref": "45d5d086d241d828", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/IO/File.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "e923f4c162e272da40d050c561350471ae1e40fb" + }, + { + "alg": "SHA-256", + "content": "aac59ac09f638b5e1bdf4de4fd30f57b1d19fbcd06d4ab44d73f3fbf050c01e8" + } + ] + }, + { + "bom-ref": "b9bf5d75e711c74d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/IO/Handle.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "0fff14780d426be1069f8ea351dfbf13a62ac611" + }, + { + "alg": "SHA-256", + "content": "2c9749e2333144a13ae48afba8022c07a9dd42d7804347f6f581929cf4b972ad" + } + ] + }, + { + "bom-ref": "324f78c74532188d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/IO/Pipe.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "817f7d37c397485819a5ae2b59fb89deaecdeea4" + }, + { + "alg": "SHA-256", + "content": "07955c4b9eb527a81dfdbb82ed9493bdd89607310ddcd7b801866115192ebca8" + } + ] + }, + { + "bom-ref": "f3beadcc10c30e99", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/IO/Seekable.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "8f9bc758b545d036d60f40ccad52fa4e0d73b571" + }, + { + "alg": "SHA-256", + "content": "ca74503f91481275f9af45a4d088e7ed8c444a87c8cf56d3995857af95478bea" + } + ] + }, + { + "bom-ref": "5301ab0eb2ab545b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/IO/Select.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "dd7d93703935d6a5fa6342e9c6fe76751d13aad9" + }, + { + "alg": "SHA-256", + "content": "0c6b8ab7890b66ae8e60da14daaef31a81fb21ec2285a4fd6a1abe2d75d94d20" + } + ] + }, + { + "bom-ref": "b6433e187384b343", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/IO/Socket.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "e5b3355af1653502a72c3d12caa16fadcdc4a772" + }, + { + "alg": "SHA-256", + "content": "e86bcfc4297c0431f46785cf163ce467c10efe62efb0c6f28e0681b0c9d5b18f" + } + ] + }, + { + "bom-ref": "e7aad97116f4fe70", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/IO/Socket/INET.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "fe1ea6cfd6a7b553331958c2e3b03f7d780a3c0f" + }, + { + "alg": "SHA-256", + "content": "13cd3fd520d396386092dfaf96bf4577ac5c3bb3dec65586f44257b82c673b0a" + } + ] + }, + { + "bom-ref": "faf5a5f45cc3126a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/IO/Socket/IP.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "40d8eac93501f697ef5f59e9e93d8eb5dcaaf079" + }, + { + "alg": "SHA-256", + "content": "d7b09595b40b1137729897254ae867b0dcda23a8c6000286f35cf3d1648e09fe" + } + ] + }, + { + "bom-ref": "b07a57c31805aca5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/IO/Socket/UNIX.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "62e47ed49756cbe5ef97023868d034134caaec17" + }, + { + "alg": "SHA-256", + "content": "38bd2ea8705d23db1084f70404db6f7ac077831aa3847c21b5412b1cd4936cad" + } + ] + }, + { + "bom-ref": "9792acb321a7d1ef", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/IPC/Open2.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "d3db7d30c477e7890a2f4bbaf972f2fa02e66704" + }, + { + "alg": "SHA-256", + "content": "6500142ce04d79ddb58102de7bdf1427c49a9d1be04f6c908027b6240a0e6303" + } + ] + }, + { + "bom-ref": "68a34042597ad86b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/IPC/Open3.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "9f196f4852cde3eb17ea4b10ea2c7c30a72b5a36" + }, + { + "alg": "SHA-256", + "content": "2d4aa629476d90f663ebff57af566044f9cb134f4eef1699516dc13c227cdb83" + } + ] + }, + { + "bom-ref": "8de753e09005530e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/List/Util.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "7b4dbe32db7fdafbc156c2fce7eb0142a62ddd98" + }, + { + "alg": "SHA-256", + "content": "0e47e08b8980bed03bb32c7df4efdabb434dee0e27cf952240fd5ec90a65a48d" + } + ] + }, + { + "bom-ref": "8d4435a6e4b103d7", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/POSIX.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "9f95942156fb69cc4e89d50a6f7ad27419b2e914" + }, + { + "alg": "SHA-256", + "content": "d264318238441b25fa59c2d603028b27c4ace3d333aee2e291eb300bb5948ff6" + } + ] + }, + { + "bom-ref": "e29bfc13e23fd085", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/Scalar/Util.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "e2d63a19ce14546ed815630475712dae3a12f57e" + }, + { + "alg": "SHA-256", + "content": "cd15abf6613b2159360c471acdbddc8d3bdb6903acf9ade6868f809cd0ff5996" + } + ] + }, + { + "bom-ref": "b9672b63595d846e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/SelectSaver.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "4692c9c5ff0249639601fda2eef38f5f4214e5bf" + }, + { + "alg": "SHA-256", + "content": "f6f2b9bf40423e54466311866dc9f67a1318396d2d162cf84722e28d715a0ca9" + } + ] + }, + { + "bom-ref": "7c758882b0250840", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/Socket.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "4d1ee5647be23a7cf9e81b8e53e31316e0a74977" + }, + { + "alg": "SHA-256", + "content": "94cb1665b2fcdc5aa339ca7da2093590bb05b76e5334910c81f932d273d6daa6" + } + ] + }, + { + "bom-ref": "7a85f92bd83e678f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/Symbol.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "7dec2357ddc382e8e9eea5071407d94a6135c45a" + }, + { + "alg": "SHA-256", + "content": "3489f58d1a1ac356ce725d42de90155dd6821219788f593c9ac85c97123dfc0b" + } + ] + }, + { + "bom-ref": "17def102f1c304db", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/Text/ParseWords.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "4e5605cdd66f5ecca08d2a1321c0840d79c84365" + }, + { + "alg": "SHA-256", + "content": "aa7484ce8671e27adbb65f24d19d376882e84edab8da3ea91d144fefc6906184" + } + ] + }, + { + "bom-ref": "c4c1c4274e3e5b44", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/Text/Tabs.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "7f03e127f2dbd415bb18e828da46c04bfb989ebb" + }, + { + "alg": "SHA-256", + "content": "fa167b69c997b88b575b3a98013421745b41c3681b0a6a7433f17c1da19f8f25" + } + ] + }, + { + "bom-ref": "464cdeaa76250bab", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/Text/Wrap.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "073dbc8917cfc233bbda2cce25a8fd2a917f3667" + }, + { + "alg": "SHA-256", + "content": "d63777a317a5631dcfb6b0ea4ae5f782d2e718ff31b9f091ac03962a997fc095" + } + ] + }, + { + "bom-ref": "7c159727aebb3b6e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/Tie/Hash.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "0478b3087dba6ba5db66d5830aac6c3015d1acc5" + }, + { + "alg": "SHA-256", + "content": "e81ae4e495e961af321beac6695b5d43870418739901785a6b90c742f2d39d42" + } + ] + }, + { + "bom-ref": "a3a6b0009fc81aa1", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/XSLoader.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "12c586437b765be392cfae104caf9938cb4f3d71" + }, + { + "alg": "SHA-256", + "content": "b0c42116510e16ef6571ec72c04fdbc0c7488cfff690a631380652a68ba6d9e5" + } + ] + }, + { + "bom-ref": "2170db46a3a192fe", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/attributes.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "8b34e2a8b62d5d4b03e677cf46e627b4b5ab9ed1" + }, + { + "alg": "SHA-256", + "content": "613b235f27f4034a4d9aaa87672d3da1af3397cfe94032fd979df5c87f5a08dc" + } + ] + }, + { + "bom-ref": "7cce1f4983d430bd", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/auto/Cwd/Cwd.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "aa916cc77acb2099e27dee90cabaaa6656c41853" + }, + { + "alg": "SHA-256", + "content": "d4d0855c2a777faa96e2db2d29fbd51b2f4b45fe36d1d969fe15d512c63649a9" + } + ] + }, + { + "bom-ref": "63752a74978d2f53", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/auto/Fcntl/Fcntl.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "0ff9c06ff5e783553b57eed8722579df182c7946" + }, + { + "alg": "SHA-256", + "content": "af206c4247eb55501b59b72d12b93ea2af7637e526c6c44cf0ec1779d9f51b71" + } + ] + }, + { + "bom-ref": "b30fa26527c484cd", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/auto/File/Glob/Glob.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "502a9cfa41b89772f23a454945077e346821c397" + }, + { + "alg": "SHA-256", + "content": "fe64c0bc70fc19132454c8e909ef634883d5e8ca52311d05d04863ad1600174e" + } + ] + }, + { + "bom-ref": "cbbeeea85270f8c6", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/auto/Hash/Util/Util.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "43c7e94c1c96207b08afda91b328feb25ff5ed33" + }, + { + "alg": "SHA-256", + "content": "f174f9928ec813f362571b5d4c278709589bc69f6a7ad72b5863912eb345b002" + } + ] + }, + { + "bom-ref": "624d01b6afd520f7", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/auto/IO/IO.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "c2da805a39f0baf6aa8ba5f0c418a83459ff01b5" + }, + { + "alg": "SHA-256", + "content": "b813fa75c5654b92b327c847e854c6a21174b44766fcda95748e255ec80bf635" + } + ] + }, + { + "bom-ref": "b4eb23f55f3f1bbb", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/auto/List/Util/Util.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "c9caa3757a9167e408d2d4bdc3c7646082355317" + }, + { + "alg": "SHA-256", + "content": "6511226929f9ab65d377643088b28623662ffbe884fc2aff7ebdcb604dde7f62" + } + ] + }, + { + "bom-ref": "fb04e4a111008143", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/auto/POSIX/POSIX.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "057f630e58f4a693524b48aca43808a858485ab7" + }, + { + "alg": "SHA-256", + "content": "59f239f4b19825a82018859fe435fbb5ef4f32102b7490156a0a3bb74238ce6b" + } + ] + }, + { + "bom-ref": "e4af2f54ca7f6138", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/auto/Socket/Socket.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "85323d21c1bd47422aac8ba0ce1faf7e50691b1d" + }, + { + "alg": "SHA-256", + "content": "fe76ad27bccb3b4336d4685eca57a93fe22653961bd7f0ca9fa1148317c6ad67" + } + ] + }, + { + "bom-ref": "bd4a78414cd7353e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/auto/attributes/attributes.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "aee8648734be45b3dae1a159c7ff4efe086adf67" + }, + { + "alg": "SHA-256", + "content": "29fbd9e3b2e20e1cc8d02c6a9bba1224ade5198bae99377e4dad4045310cbee5" + } + ] + }, + { + "bom-ref": "cfc541fa170dbe9d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/auto/re/re.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "8c799251c70a7c72a75b7ae0098e37108ff2f306" + }, + { + "alg": "SHA-256", + "content": "c592552aeff2e98b520a6b47d365127cd2e5bf9f61497383a0afd6fb7d9acd96" + } + ] + }, + { + "bom-ref": "c36f9286efa99c95", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/base.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "a9e54ee2cf40e62e6a5cd80381c6c129567d3180" + }, + { + "alg": "SHA-256", + "content": "081a2a231e2765996d306b46b4148d7e5bd80e6c7b0294081c6cd8a15a537ce0" + } + ] + }, + { + "bom-ref": "80851a18988049c1", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/bytes.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "2237c36718cf8d884301c36e2ffe0e66673d2994" + }, + { + "alg": "SHA-256", + "content": "35ab937a2a3f4b9bac4e731d3fdca47c982e2cf40ffdebb00e2556aa7852736b" + } + ] + }, + { + "bom-ref": "5db79246e79a5285", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/bytes_heavy.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "f7c0517ae493a39e0a6b2fba90d9b69bc421b4a3" + }, + { + "alg": "SHA-256", + "content": "c7def62cbf7d031c4fe319e414117043f2a273885bff93bd18e11935d00a6677" + } + ] + }, + { + "bom-ref": "e5dc065aac8f7e53", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/constant.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "867d8c9828f16799a7e515fc7d6e1a1fc4e08614" + }, + { + "alg": "SHA-256", + "content": "5decbf923c0f5f065147a7a1a89fd351a26d5d5efd8799ba4ee992a1d00cd837" + } + ] + }, + { + "bom-ref": "cc04883214e6aa44", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/feature.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "a3171c86590f8a9e5f3843ac0fad33f584808b7d" + }, + { + "alg": "SHA-256", + "content": "7a9ddf1f3cc8842d1eb3b9334ae23b1bf82e73de3f2bbf334c7eaef4436b9aed" + } + ] + }, + { + "bom-ref": "4a048c53066ccad2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/fields.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "7ca4cd23a9d13c5a76510a640ee53d506412f574" + }, + { + "alg": "SHA-256", + "content": "ce0f1efbe6ef77f3becd4e898bb3df04ce6dce6c1e93da9eff9adf53767e2b80" + } + ] + }, + { + "bom-ref": "6d93043fe58dc7b3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/integer.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "fd2b597a1b6f3bfd72aa39af3745c7443502692a" + }, + { + "alg": "SHA-256", + "content": "1c387bfbc4bcb4046e7372c534372c7150315499bc5641328d5c3c1c1ad50373" + } + ] + }, + { + "bom-ref": "ef994f9514a5ff86", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/lib.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "c3b757c502dad1e5b175d5aecf744256aaa77093" + }, + { + "alg": "SHA-256", + "content": "93e87fe9dab7e5c3ac6a830e0a7ce06d2b4c94f1ede6a55d190d1c34e6336941" + } + ] + }, + { + "bom-ref": "c1b27f7089725659", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/locale.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "9a9d95896152cd51a70103fa90f9a6d6f21e0fc0" + }, + { + "alg": "SHA-256", + "content": "d584f47f71a525301511965b4a245933e9a936f94406b6bcd1c78e7fe63a7b6f" + } + ] + }, + { + "bom-ref": "004051ccdf3068af", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/overload.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "1edb5ea45c57bed653a0e120f642f1ddafc19a97" + }, + { + "alg": "SHA-256", + "content": "e09d4c8c421d88d19c551c2709d6515d044ae378f09577dbb6754d6376532f5e" + } + ] + }, + { + "bom-ref": "a9899c23018b0172", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/overloading.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "edcbb7cef522a06b150f2468742135128268faf1" + }, + { + "alg": "SHA-256", + "content": "5387b33943963d2e47f05b3f37926f2d454f9ded33ca857e56ffb33b3adb999d" + } + ] + }, + { + "bom-ref": "548755427b6952aa", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/parent.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "beaad3f8596aa51f803297b70566404f337764f8" + }, + { + "alg": "SHA-256", + "content": "e9877a2f677372e9a87706cc637279398191ec2f35890d641f3850a2d7f7bc2d" + } + ] + }, + { + "bom-ref": "943ebf16f97c2b5f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/re.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "f35996ad231e1234eadd1f91392696c4d70d1d5d" + }, + { + "alg": "SHA-256", + "content": "2ea070f2ccc487f31d54f722c9be424ff60ac5012a8744d0eb17453898f12db4" + } + ] + }, + { + "bom-ref": "391e475ea5737c7e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/strict.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "1aeeedf12205b93b7c047ef4e63a5826d12c6faa" + }, + { + "alg": "SHA-256", + "content": "3f100533c2abc1cd0b20060bfe71372c28443b13356fd5604133a69e844fc88b" + } + ] + }, + { + "bom-ref": "885a641c446b3c38", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/Heavy.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c5f082bb3ae167e48598b9fa34245fc0561d3d2c" + }, + { + "alg": "SHA-256", + "content": "db24bd320d0b3619fcaea9e7b94764cd7ba9199346775c464b7b7aab353638e5" + } + ] + }, + { + "bom-ref": "31feadad3f9c0e25", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Age.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "e041b78c75ebc27895168faca7f3118476d45760" + }, + { + "alg": "SHA-256", + "content": "4d028b845a5db9ed46aa6fbf84d5310f357335ca2e183fe109878c35d2f22b5d" + } + ] + }, + { + "bom-ref": "aa52906ac6c30dd2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Bc.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a4459815eafdf5eb81f8e377593bdab6f622e794" + }, + { + "alg": "SHA-256", + "content": "9f2fe3a67d982d458e39e3b950eaff005cdb445855a1a8962054fd90117c9193" + } + ] + }, + { + "bom-ref": "a47930cad9a4b70f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Bmg.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "23ab882a61f02f467dace828ebc62c2c9cfebdb9" + }, + { + "alg": "SHA-256", + "content": "dbba233b9fa658b15b74a50a4cb68e3737358b6f3576ec77b6d3ed1aaa80ede8" + } + ] + }, + { + "bom-ref": "d2763f04bbaacd5a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Bpb.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "48434858ff718a5822ec84b52c829ea2f30c912c" + }, + { + "alg": "SHA-256", + "content": "c0c252bd22d05f0aed20b63a91963176925d1e1bb3800b2960e8151488ea750b" + } + ] + }, + { + "bom-ref": "ceb97ebfc1d4ee31", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Bpt.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a01db5c12b1c1f1bd72d8a33c8045a70c7a4b9c9" + }, + { + "alg": "SHA-256", + "content": "8cb180ddee34b6c00e6a4b0efae211573a3cb0d75bdf867edf421dee73fa6b47" + } + ] + }, + { + "bom-ref": "629fceab3b3ad04a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Cf.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "91d7e79361b3f2c21f72da050d7190592001b2d0" + }, + { + "alg": "SHA-256", + "content": "6bc90370ef1c0d60d5010ed68768ab96857a2c8a2224896b79434864ded3775b" + } + ] + }, + { + "bom-ref": "24d032719c01aa5a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Digit.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c714023ff0be68390d4f08d4c4fda245242427a4" + }, + { + "alg": "SHA-256", + "content": "6431c243ee93924400d54e7bdbbcbf2d27b72df6c7785c6b974a0789e6b64d34" + } + ] + }, + { + "bom-ref": "52ebb1f2547eab90", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Ea.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "65335db2d25a629728d3b21b71f4cddbdb5dc1fe" + }, + { + "alg": "SHA-256", + "content": "9705be4733a19b02612d3a0ae34addde357562f4daeda3ecbc43894e9b8a9229" + } + ] + }, + { + "bom-ref": "e4c7d251811da02b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Fold.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "84ec66889956e728e8b4bedd8b6bc01218b4b928" + }, + { + "alg": "SHA-256", + "content": "64e73283ca6b681e1bae53665e7713ee3c66ce479613966a915c24753e97e2c7" + } + ] + }, + { + "bom-ref": "05cf55dfffb686ce", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/GCB.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "4a38931fcbcfb158f74f3559ba1d1ab7d602bbae" + }, + { + "alg": "SHA-256", + "content": "8b3a0fc99d32e9b4a78cc181fcff9e997f885dbd89370db3523a2afb8c192d1f" + } + ] + }, + { + "bom-ref": "76e1dc69a0f33570", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Gc.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "051d5a90294f8f8aff9e7fa3f257c37cbc014043" + }, + { + "alg": "SHA-256", + "content": "4c00b543acd7e1ed10135bd51f8bf97481f17f30881e663fd51d38d6567d4fc6" + } + ] + }, + { + "bom-ref": "6f5c9d80761c115f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Hst.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "b65b8fd0717df5fd71690834623571cdbdceae9e" + }, + { + "alg": "SHA-256", + "content": "0fa76426c17912f09d82e86b5a3d8740371e96e873f4ce69e4564f78c01f9b8b" + } + ] + }, + { + "bom-ref": "0a05db22d23d709b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/InPC.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "680bc43b779ed58f8fb069e9a3868cb01aedbdfc" + }, + { + "alg": "SHA-256", + "content": "812971a26fbf7e8bf3fbaac74c11a2f10e1f42d30d62c140f371aa1ed8f874a5" + } + ] + }, + { + "bom-ref": "464353eb4730bb85", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/InSC.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "700bca111f9cfa2adbda6215e9a15fea47219322" + }, + { + "alg": "SHA-256", + "content": "44547652c0559b9f7b0a5420ce01e15260042abe401fbb268b88019c41f6e03e" + } + ] + }, + { + "bom-ref": "06e2ced20e4d010b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Isc.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "71255d2770dc4f04ea9e2b5a6c3a654124f8dc35" + }, + { + "alg": "SHA-256", + "content": "5f0e6e890d064053d164b18e746fa26c8232456d5e9d13e204006c9afe66faed" + } + ] + }, + { + "bom-ref": "9de0b196bdd9e7f7", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Jg.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "ad86b9c70a01eb92616997f310f8fdb971778f23" + }, + { + "alg": "SHA-256", + "content": "40f6b6bdce2478e37c3eacb93ea66d63cb8f4bf43b3bf2a00eca5c928c8dc336" + } + ] + }, + { + "bom-ref": "6534f875ea6e6f0c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Jt.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "ff68cbf576945e0036f9a3c172521349af75135f" + }, + { + "alg": "SHA-256", + "content": "2851a6aeb5bfc14be7502cab6e4538a4e90ee2ecf318eea8421406f342fba069" + } + ] + }, + { + "bom-ref": "706886b69f4fee3b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Lb.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "b785f13adecbd4ba68bfb0cc0867f4a1a6564101" + }, + { + "alg": "SHA-256", + "content": "711b9805556488110448e79c33a561d4b9ad1192d494dee093ee93b0aa680fa1" + } + ] + }, + { + "bom-ref": "476d37a8d524d175", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Lc.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "f0c6ab213bc21ee0b38aa4f1d76cc2a3697c2e26" + }, + { + "alg": "SHA-256", + "content": "92a6e31a6557e9273f2c9a8261a4f6ccf5b24c5e9d8050a83c38230e3a25d095" + } + ] + }, + { + "bom-ref": "496c14c3a2a1a191", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Lower.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c396da29dbc0569befbc362660d0a0e33a134edd" + }, + { + "alg": "SHA-256", + "content": "91f865c126c8bb160185b21ab77e23d28a662db12ecb4bead3ae7c7f18335161" + } + ] + }, + { + "bom-ref": "0b718f4bb9c4c106", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/NFCQC.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "735e0ae6f4eb0479d2191506b099aaf409d74a1f" + }, + { + "alg": "SHA-256", + "content": "f8b8ab49be8b452880ffcff7a9903cad803ceb5a476ae3661996b62d43f801a6" + } + ] + }, + { + "bom-ref": "6338be1a06468a40", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/NFDQC.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "137ecde15f31c73c95ee3dc5bb8e6be3df1bd162" + }, + { + "alg": "SHA-256", + "content": "8fb24096855e1fb8579923047876569278fc2398f361ae8bbe3a31973ac85578" + } + ] + }, + { + "bom-ref": "a476fe55ab39247b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/NFKCCF.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a2c9df233c5e09df676d647bc36596cfa2c15724" + }, + { + "alg": "SHA-256", + "content": "f554d3723e0b5f8b151851afd1d55d4f1287a42ae4e3fbd7fe1d54fc3f2fdf33" + } + ] + }, + { + "bom-ref": "720f708e489d37d3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/NFKCQC.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "63362b5b67fca0991ae0fc7556684119ef079d92" + }, + { + "alg": "SHA-256", + "content": "6841152e3da6255534c807756fe45303983ee2921e1d56bb5e65aa3f3e1fef25" + } + ] + }, + { + "bom-ref": "1813278bfa7f3eb3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/NFKDQC.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "24b294d29f389d2c2142a47ab7cfaa1d35162098" + }, + { + "alg": "SHA-256", + "content": "3da082e319f98001015b1658e63f7b10c2013a75018191ab98296fe6c50c2318" + } + ] + }, + { + "bom-ref": "07d4a8a17386a7b0", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Na1.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a13383598edb55ef54c813bd366ae3ccef6f6a1d" + }, + { + "alg": "SHA-256", + "content": "4338bbb345f1eda23db4d98ead1f11b0fc83a68fa0c7446f8ef1254e6193ca38" + } + ] + }, + { + "bom-ref": "ee31e6fe79e323ac", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/NameAlia.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "8f3abc6aeff153e146c99a6fb2b66e78167b9802" + }, + { + "alg": "SHA-256", + "content": "677505f0fc2d62dbf3b92fa8aefd34ce0a54d34a10e657ebfc97c461dec123d7" + } + ] + }, + { + "bom-ref": "75798ea590d43687", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Nt.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "14f11292afd94346b7cb7acbab03396b30f6c1a0" + }, + { + "alg": "SHA-256", + "content": "6e248139111b53022215b537ee649b8f7410b273d8cc35941cd6a0e6267f9e74" + } + ] + }, + { + "bom-ref": "95296b2a1efe5431", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Nv.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "63c2dbe8cbb4e269b50b16e056e9e67ad5a1cf49" + }, + { + "alg": "SHA-256", + "content": "e5c0fe81d290bf7e162e59737c5da8e9832f94c64c5b8f30b6f757f989f99667" + } + ] + }, + { + "bom-ref": "685fe6b548c26acb", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/PerlDeci.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "4a048f02861697f4f16d2c7f406d026e6fcfa57c" + }, + { + "alg": "SHA-256", + "content": "a113ad3a5e05c0c67a4fdcfdf416b2543335e69a313a8d2ee5eb5857b0b67216" + } + ] + }, + { + "bom-ref": "9a1bf9f06016bee3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/SB.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "1414f66ca4d7084d4726cdb290b640659f8c5c7d" + }, + { + "alg": "SHA-256", + "content": "277aa261e41a39930d97c3dbc41d54e729a2a009a79b505cd305c781c46998f0" + } + ] + }, + { + "bom-ref": "6724cd9b5b6a808a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Sc.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "2844b3fe1a2ecda2485ef2f9d234999525a8eb43" + }, + { + "alg": "SHA-256", + "content": "41dc9d9a6a3429ebb812170f02529279c1bea478fb830e57c71753c885f6dd48" + } + ] + }, + { + "bom-ref": "734940a14623c926", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Scx.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "ffdbecbf5cc92db4eff9a266f1d2befe52b93ebc" + }, + { + "alg": "SHA-256", + "content": "cc87c2b0b6b7df26033b8f1d23226bf75f0e2059808195b18b9d7172c3b92952" + } + ] + }, + { + "bom-ref": "a030ac86a686bfea", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Tc.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "aca4c4aaaad42ae1f60ce3de01084bd119db7170" + }, + { + "alg": "SHA-256", + "content": "1378a0eedf0e6de9bc451e1a3ad055b63b7249149bbe10c3194140c6932cdd44" + } + ] + }, + { + "bom-ref": "f0def3b303fb50ff", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Title.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "bf0fee748cd3c5079e1b58fbf5b484035403fa3d" + }, + { + "alg": "SHA-256", + "content": "7169f9955eb9c3f35201a81f32a7c05c31fdfc96a5e14393fc56d60851d82b2b" + } + ] + }, + { + "bom-ref": "6f7949a9c4eea2e2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Uc.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "e3d38dc440a90134b506c7947ca2b138e2cb2da5" + }, + { + "alg": "SHA-256", + "content": "756887753b62ccc861dff6f04f4600cb6a22e981100448a42459750ae38a1810" + } + ] + }, + { + "bom-ref": "94bb5b2ccf3e134d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Upper.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "7a9abb53449940b1b85bf3fd10b26808257a9f1a" + }, + { + "alg": "SHA-256", + "content": "d42a1fff1a14c4e9ed8baeb6af9a89e50fc26362415f6b217767a0fdde87d471" + } + ] + }, + { + "bom-ref": "23651d73e3153083", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Vo.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "30bee3a239f3a99a7f02c73d68406adc078d9f89" + }, + { + "alg": "SHA-256", + "content": "a80475d7dc5b20f637c777afe7a4040b068987e730b142cd29a1bf4728d9045b" + } + ] + }, + { + "bom-ref": "6dae65ff7040d23a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/WB.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a613076e717f46b3b3d3ba087c47f171fe70dee6" + }, + { + "alg": "SHA-256", + "content": "427d902f986f5955c4bcf71cecad88976b0ae187cdf2afb77ef0c72ab3f5037a" + } + ] + }, + { + "bom-ref": "e9c52b3ad3616c1d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/_PerlLB.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "1107225ffe0e58c40380969114ecde70ad3a912e" + }, + { + "alg": "SHA-256", + "content": "1aee8bec9e89e93ed822b208d9e24a5a3ef8c754f911ed878b50897de9d52b76" + } + ] + }, + { + "bom-ref": "ab52a829a83d38c8", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/_PerlSCX.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "72bf5476b9ef01f1537f3f60556a5c2b716a31ad" + }, + { + "alg": "SHA-256", + "content": "618a1409bd777ee9a2c31e30ec45dedb726ccf1d8b71325779fff50360d44db2" + } + ] + }, + { + "bom-ref": "41f534de77fd1079", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/_PerlWB.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "62149a885ca0dc853d8accb59f139e2da1883628" + }, + { + "alg": "SHA-256", + "content": "f927f056e83fa15387d23b36a90cb14c3ce88a09d833a6b1bce47c094b0d859d" + } + ] + }, + { + "bom-ref": "b1e06d19fd56a90b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/NA.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "4083c92646923702d0378328c173190a82b395ec" + }, + { + "alg": "SHA-256", + "content": "617957caeaa7b15678ccadb80507d98c3e4aea448b43d027be2d4911a42e8d2d" + } + ] + }, + { + "bom-ref": "0cbe4bcf3d16e690", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V100.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a471458b0345640b6690e9a87c1348fd37d75afe" + }, + { + "alg": "SHA-256", + "content": "a28cb320c14df444f0f43d5ccbf19857d585cb635405d65226d82780757319f0" + } + ] + }, + { + "bom-ref": "f35bb4293d1456ec", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V11.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "152c5e1d2faf789cdca2a96433023815e0a753e0" + }, + { + "alg": "SHA-256", + "content": "99dd1cdf0dd1068df1be95d3b5f3248f22f997b6f6b5af298a7b043fc85cbe39" + } + ] + }, + { + "bom-ref": "22a14ce246c09b13", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V20.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "262ef4862f4e301724527c08fdc354a8f5266630" + }, + { + "alg": "SHA-256", + "content": "1dbc8d5ee4a08f3e8a31c2e971cd4f6894113b148d0ea7391880b4c4bae9b76b" + } + ] + }, + { + "bom-ref": "474a2fdb2fb07bb0", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V30.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "f4a2eb35d93edbe9ac2711f29542d6f2566f83b0" + }, + { + "alg": "SHA-256", + "content": "391a7d52ebcd4b405a3c3eca4a22787597ad2f6936e84ad732b4139f67fe1b04" + } + ] + }, + { + "bom-ref": "6ef56e58383b7d84", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V31.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "523ffbf87d5825cfa4cd125d87c40e1be155e74a" + }, + { + "alg": "SHA-256", + "content": "6b9de91aad62bf26bf1d349430bf89ee8bacf97cc18b185dc526b1a60df8e765" + } + ] + }, + { + "bom-ref": "9994d95783170fb5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V32.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "fe2e8c3bd22b838189762eef7a130a4f15c8bfe2" + }, + { + "alg": "SHA-256", + "content": "db3d9eb971d8073769d9be5ce9f7d9f6b06a0bb43bdd5265cf60d66af3a3f02a" + } + ] + }, + { + "bom-ref": "18a4f7362e4ee216", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V40.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "44978262e7218185ec3e679cea09cb9a75d5723e" + }, + { + "alg": "SHA-256", + "content": "3a7d0e161389cf074c659cb764a2a9ffb6a79b616e9d41ae495eb7d387951e06" + } + ] + }, + { + "bom-ref": "f0267480c25f74d2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V41.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "6607e96605172c02130758faac1ca3630362a8f1" + }, + { + "alg": "SHA-256", + "content": "b94837edc69740deae470ee4c422905e8f5b4c58598f9e5e8e565d223afc676c" + } + ] + }, + { + "bom-ref": "65421e2af33c1375", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V50.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "991ee82e6affa6ecbe0b068fdea2b0fc46fc6c2f" + }, + { + "alg": "SHA-256", + "content": "e757f5f9f2189c7e32e4c0e2c6cdec267a38785047a8a0455ef63b407ec892a1" + } + ] + }, + { + "bom-ref": "215de5c04d84ee08", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V51.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "ddb69ebb70552c00cc9f5fc2e93024fa56cc76e0" + }, + { + "alg": "SHA-256", + "content": "a6b3fd43fdc88e77d75447efa548d01a31206bb5243165e12b800263ad412080" + } + ] + }, + { + "bom-ref": "7c06430981031cac", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V52.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "4bf2305eb9e8b4e201cbd519b5118a6446f7035a" + }, + { + "alg": "SHA-256", + "content": "0590c3b2d95a5b9982f1a1943cd2260428d5bbccc37cd7f1a77a6c3edae5f6ce" + } + ] + }, + { + "bom-ref": "27dbd952c5f3e620", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V60.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a4b5bfe691440a0e8c53a62d9c0ab8b03d4a7175" + }, + { + "alg": "SHA-256", + "content": "171995416038512979d2a32ac6935049609824200ff1a0dbaf1748c5edbd68fb" + } + ] + }, + { + "bom-ref": "6a8d8fdc5082cb15", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V61.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "0efb4409bd3a38373d70533bc9603a3ca0ed0885" + }, + { + "alg": "SHA-256", + "content": "5efcf536fadd4d9ef9e2860b9b441e1d72c8296e1a73e1b4c0307a905c90c569" + } + ] + }, + { + "bom-ref": "f3c60d043e19c0e6", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V70.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c2cd96f0c2b454e4e5dd197157945b66ddf710ee" + }, + { + "alg": "SHA-256", + "content": "1e9a47e543cb3f1f8bfe9b461a3e2eaf7f11ef5b7adca7aa357c18351838ed0b" + } + ] + }, + { + "bom-ref": "380738637a2afed3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V80.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "b705f74a29396e10475c0dcccab5230acab7fdd9" + }, + { + "alg": "SHA-256", + "content": "ba74e9a07f28119d24e35c6eeaf07f8720f1f7214d139111f6e6d280c7189a62" + } + ] + }, + { + "bom-ref": "a73c93128476e743", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V90.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "e3aee3c46d8150fac4c3fd4f7857873e393de54f" + }, + { + "alg": "SHA-256", + "content": "dc2cb3e08097f098700bf4a6a04592b42b135ecf1f7b65615aa88066e52287f5" + } + ] + }, + { + "bom-ref": "099b6d2db6fe190c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Alpha/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "89044b0aac65982783241e3083a83821f783d10f" + }, + { + "alg": "SHA-256", + "content": "0d66139e7c7342d92c1a7c35626c6658f3ab3460348f7d69a338c1151ef3b49c" + } + ] + }, + { + "bom-ref": "5f431769b78311ac", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bc/AL.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "07154d7b57d99b421777211004806f4786ed5ba4" + }, + { + "alg": "SHA-256", + "content": "1c27c7455e0de25cfeef0b626e16500f13b4c56116ec16d5aebb20f6dda3317c" + } + ] + }, + { + "bom-ref": "15d39c434b5c2507", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bc/AN.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "9307141787cbff4ff0841fb66f0cd3506acf6ade" + }, + { + "alg": "SHA-256", + "content": "5f955370417128abfec4ed381d356865ab9f118a0161aa3785d9f1648310bdd1" + } + ] + }, + { + "bom-ref": "0ebdc1a3950a2cd3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bc/B.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "ba1a96fcd08c71b1056f84ccaf6e775315007cf8" + }, + { + "alg": "SHA-256", + "content": "91e59398f292e15b1f8c5a839e7033ce05b7dddcb92ab031d720817569d78763" + } + ] + }, + { + "bom-ref": "e2f03d9edff53613", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bc/BN.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "fc4d78118f5f8a14b20b7d8897bd0b365ea0dd9d" + }, + { + "alg": "SHA-256", + "content": "2c59dfb109195fce0d2b950c191679af90eed06db688fdc1a67378926936ef09" + } + ] + }, + { + "bom-ref": "249d0b3543ef007e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bc/CS.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a3ce4e949407038822cc228318884d23284198aa" + }, + { + "alg": "SHA-256", + "content": "6b2bfb9c880ef856fb1b5026741336bc5d11ab0f6f8a8590da78f8da687d3695" + } + ] + }, + { + "bom-ref": "e3140d721809cbfa", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bc/EN.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "737b5614085c16861aa865bfe0a0694ec2490156" + }, + { + "alg": "SHA-256", + "content": "9d7ba74f75f5d2ab948c69a1ae4458ccc757bec657f610e030435b6c43a5d82f" + } + ] + }, + { + "bom-ref": "2c60549f26d1b670", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bc/ES.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "67c75226832f7e45a0ace9852f653c822ce14fc0" + }, + { + "alg": "SHA-256", + "content": "44024d4c6db92408ee2067033687b9a4934a3a803bdc65ec9d9c9987cb445a65" + } + ] + }, + { + "bom-ref": "2328c8a8577789b7", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bc/ET.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "70eb355322e85dc569a3c0850c332f0763e21bca" + }, + { + "alg": "SHA-256", + "content": "94fe0b40e5a682de67a4d786e0fd684c32230f7547f2837a293475cf5c6024bd" + } + ] + }, + { + "bom-ref": "ea5fc7dc0585c66f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bc/L.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "f2250677bd8a2c4329f8e89bb04b3f3afe3cf204" + }, + { + "alg": "SHA-256", + "content": "f738b67f9f2ea65452fcde4d3b470f4c3f350bd39913e29ca29eea5172d56014" + } + ] + }, + { + "bom-ref": "6ceae4e2cd27da31", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bc/NSM.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "f82093c8c881c81294076e5dd1f5b1eb0ea8de3d" + }, + { + "alg": "SHA-256", + "content": "e3597120535589bf86d712478b15aff394386c19bc5dd3f0632e9c42b8cc5822" + } + ] + }, + { + "bom-ref": "d4f8f48d50892455", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bc/ON.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "87b38a433ffa7519ed1d142c68678eeced9ea51e" + }, + { + "alg": "SHA-256", + "content": "f2f8509923e40a5e1a33a8923f8552fca1eeb2726d07a31a1f18eb4139baaf77" + } + ] + }, + { + "bom-ref": "6d896d43bcc51e3f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bc/R.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "d1dc382c7883e9ac2adb29cba2836bb95c1b9998" + }, + { + "alg": "SHA-256", + "content": "2ae1297cf3e5cacc4f8d6ef80da3b3575baa48dd56675b5783a93b8d287a3bb7" + } + ] + }, + { + "bom-ref": "020ad9b8b2649d96", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bc/WS.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "3cc7075aad00ffdfa220241b526e3e06414aec00" + }, + { + "alg": "SHA-256", + "content": "4833df0ee5d62befd8f7178db8440dd4ecb2855cd019e7407139cc1291f8046f" + } + ] + }, + { + "bom-ref": "8485c6e6ecb4f906", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/BidiC/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "38d1257d8f9353bb67929bc957438a9a0537768a" + }, + { + "alg": "SHA-256", + "content": "27cf49e917225fea0d0faf5a503c1ad8c1093581509645768aeaedd40b7b9818" + } + ] + }, + { + "bom-ref": "6529286d1244508d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/BidiM/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "6136a2e056e5ceb6cf7111df38bdbbf1ca8e2dc0" + }, + { + "alg": "SHA-256", + "content": "67c39c53542c15877ce653f4ec03a64e3e7d710800a215a8b93783221290d6e3" + } + ] + }, + { + "bom-ref": "9eeffbd6e9c710c9", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Blk/NB.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "13c8be42fd03c8004c17c5ae448ebfea25a3ae55" + }, + { + "alg": "SHA-256", + "content": "2311eee6e5bfa326371c0bbd00108c665d5a19600834b76548c218a4a512fe04" + } + ] + }, + { + "bom-ref": "c2d10c8bd793275a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bpt/C.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "7f902519f042cb3b3688407e4b4de3cdc2e55af0" + }, + { + "alg": "SHA-256", + "content": "acfb96b11a1c55a80e67e6b767ff0961a65279c205a56680f905abeee560ef03" + } + ] + }, + { + "bom-ref": "6e206c1c807a318f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bpt/N.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "956930f1103424429993b415d0bad7f174f97f31" + }, + { + "alg": "SHA-256", + "content": "5277583252d861c9a72b756676ae07fbb27c395b37b21c546ca65b2f6155b302" + } + ] + }, + { + "bom-ref": "e1c7b549b8d323e2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bpt/O.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "da6bf08c3248e4ebeb47ce7575d98fffe1607fb9" + }, + { + "alg": "SHA-256", + "content": "542fc27ac7403300c6a64b7e6821c9c515cdaebbf49835ba7001ec36abf2ca40" + } + ] + }, + { + "bom-ref": "b396a0f76bc8fb20", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/CE/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "543c0fe0175c6fdedeb9932b77ee10b39fa0f63b" + }, + { + "alg": "SHA-256", + "content": "ca2f2d4834133c9c41a16e403744626b96e4a79af05a51a6f4cf62b196811c4d" + } + ] + }, + { + "bom-ref": "519ce254d7924ea9", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/CI/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "097cf5b57ffc6d966c047a1aa5ef6230c2ef8e27" + }, + { + "alg": "SHA-256", + "content": "3feade17477bf318e741a13849e2d10e26c377a9df1368ff7c8c3bc76a217228" + } + ] + }, + { + "bom-ref": "ea2483aa9020d8b6", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/CWCF/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "dc9537d8e7cd1bb0108369cc1119aab02f547448" + }, + { + "alg": "SHA-256", + "content": "8c87571d2d5f239f56305c68f75b5c3e4d209bb18b265439fa9ef3884e07ccf8" + } + ] + }, + { + "bom-ref": "e00f66330c3c01b2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/CWCM/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "2e6983d4c301f0e93457363a238ce091431085c8" + }, + { + "alg": "SHA-256", + "content": "546bb4318bf0f62965ea88ae2fb2e4e013712b254b77ab96d510d7e102c2daa3" + } + ] + }, + { + "bom-ref": "66efcb5aec85ab0c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/CWKCF/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "739d28110cd46be0eed065c551b90f9722aeef40" + }, + { + "alg": "SHA-256", + "content": "320dd06280a889a9011ae5813be52b0b27c1dc520cbcfeb42b20c983f5a8924d" + } + ] + }, + { + "bom-ref": "ed3ce3fb7099803f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/CWL/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "3c6df3bb96407428b049f31db0000932352d7430" + }, + { + "alg": "SHA-256", + "content": "d81bc20e625f52b51edf156aea5b014c78b6d3db30b8caeb612ec541fd09e6e3" + } + ] + }, + { + "bom-ref": "5cff23f8109bf1c0", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/CWT/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "18e9a08a62fb9ce73efe41538c908bebf41c831b" + }, + { + "alg": "SHA-256", + "content": "e7b7d2eeab7cff214d61163721315b7fc0e5b0075c1b92bb19d8e7b544074111" + } + ] + }, + { + "bom-ref": "9f1147295e140a59", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/CWU/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "1325f9931b06d19db8e26a4afbef023297f7bda1" + }, + { + "alg": "SHA-256", + "content": "439979cb58c2529070dc30bc2173207cf0be67af4582b92d0cef3f5bb58bf92d" + } + ] + }, + { + "bom-ref": "a2ae30e1998be8cc", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Cased/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "32c816e908b7ef18a235b28f3aeed27521755228" + }, + { + "alg": "SHA-256", + "content": "9c2800401d858bd32477fd1f87e12dc684d757f40e1407339ed0b0f9073b95cf" + } + ] + }, + { + "bom-ref": "6e871f6fb8f01a78", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ccc/A.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "0d859e5aa74740cc38386d70a81cb4063fb40e39" + }, + { + "alg": "SHA-256", + "content": "2718a40c2d57bfd00f0f3a702343dd28ce7b7bb889dbbdd72d86961a732d1ad5" + } + ] + }, + { + "bom-ref": "7f3f64be647cfaca", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ccc/AL.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "74289ca7a1005efa419d4200f1bfa07a64aa9575" + }, + { + "alg": "SHA-256", + "content": "e5088d2eedbf1b287aaff5d15cf3fa732e26af39ca4e15864837a2f847187c8d" + } + ] + }, + { + "bom-ref": "00db767c75a51f7f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ccc/AR.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "ee3878528e62d9fdca29564c5aa4b40304e0b643" + }, + { + "alg": "SHA-256", + "content": "ff47a865d73d70e555f2b40ac5e5d498582cab70361bf8114d207a96aaa29047" + } + ] + }, + { + "bom-ref": "4ebf7aa4ad9b31d5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ccc/ATAR.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "7b98c36ae7aa9092de11de439a2827c8b8075871" + }, + { + "alg": "SHA-256", + "content": "be356873be111e19b9d45af7c90d03fb9ab6f24a20b21d3ce83dc3590c552f48" + } + ] + }, + { + "bom-ref": "57d890d5e2929bf1", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ccc/B.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a9ed193afa1822c2cc3e826b7f0c24385932ce2d" + }, + { + "alg": "SHA-256", + "content": "c023014e90797541844278580b8c3498f47b32c200ba7871134159138fdedf45" + } + ] + }, + { + "bom-ref": "8a63659a713fdf6f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ccc/BR.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "f3669d2ab64d725bdc8223f23911b72cee04a9a0" + }, + { + "alg": "SHA-256", + "content": "779f502245ff2d8ce6df6bef379dcb76648b876419856d8210c94715e87c3297" + } + ] + }, + { + "bom-ref": "491e64718cc3dcb3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ccc/DB.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "9582d1af53d020940fbcf992d46d0ad6c4c47276" + }, + { + "alg": "SHA-256", + "content": "a69d27057a6c553c244c2bc9af83dad66de7b7ebf95c645c020ba6f82351ebbc" + } + ] + }, + { + "bom-ref": "1982a2ad0334d73d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ccc/NK.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "7754fdadd66d67403d4487b1091fe3242002c053" + }, + { + "alg": "SHA-256", + "content": "56bd09c830b951db7efb376eb3e612aba17ff80d515f98095b0bdfbe3f61f061" + } + ] + }, + { + "bom-ref": "5a60e16ac4d8a6c4", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ccc/NR.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "6fb71433eaa2316802e74ed517195262f1de5043" + }, + { + "alg": "SHA-256", + "content": "e7e2f2f544b3aa7d49e5d51980190429c781b9b5c994ecb3ffc0328be3d3d9d3" + } + ] + }, + { + "bom-ref": "6a636f889b91481c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ccc/OV.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "cf2a57a0991be325598a9f9d02498e3dd69fb5c0" + }, + { + "alg": "SHA-256", + "content": "18e0872cf6744001515335d9838cf22bec0da1a1dbc6afefb29083966152b533" + } + ] + }, + { + "bom-ref": "4a12ad76e84b31c5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ccc/VR.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "9dcea2a7839a5141d3f0674325bdc6fc5d66c310" + }, + { + "alg": "SHA-256", + "content": "7a97dde998bc1d0eb67fd5081371dc4e00725a9944756bec9ef3da6aa6a89696" + } + ] + }, + { + "bom-ref": "fbfe2dc12609f372", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/CompEx/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "1bfeadbb7543ba5b6e079c90bdd7f0fd3709ba50" + }, + { + "alg": "SHA-256", + "content": "3d1bf26c4ff351adca99b01de5d6a744202a179027dcfc12862972db2ac166a4" + } + ] + }, + { + "bom-ref": "624b66c6dce6f9d0", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/DI/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "609a46100599f24db4be52ea20c604a891f05ec2" + }, + { + "alg": "SHA-256", + "content": "923f227c6c393c372888253b081a050e8056bb040de6226df431859c80b01301" + } + ] + }, + { + "bom-ref": "8d1d1a2dcea3ea88", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dash/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "dae549a9221c31093d606acdbce6e19daf7890af" + }, + { + "alg": "SHA-256", + "content": "b8256a6f3f6a55b16d3c175743bcf1c3ae666def4935ddb5b1e8d2b3007e4e01" + } + ] + }, + { + "bom-ref": "1b818a08aeddadd7", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dep/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c8d6f47d3dfdfa3ce8f0da85e8fbc73782f54745" + }, + { + "alg": "SHA-256", + "content": "b4eed9050669b2eb5b9cf6799cf4b2a089397bc3df254d1a1c8ecd398c955027" + } + ] + }, + { + "bom-ref": "625af16d0a6b0cab", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dia/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "80e4fa67678dfbda2d542ed9ba5c715fa2add8db" + }, + { + "alg": "SHA-256", + "content": "96156f7a3b7971ffe9cb83f48e8747b55f0461e7d9f913f73c2b5f43b623988a" + } + ] + }, + { + "bom-ref": "d1c9703b732cd26c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/Com.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "95a0992b64856d94f451de8df5a3401ec162540b" + }, + { + "alg": "SHA-256", + "content": "14542c4c5981eb2d0bce2f5edeb59ab66643d931554b9787dd5f988ef16ffc0a" + } + ] + }, + { + "bom-ref": "f32f018b5c63c4e2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/Enc.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a01e0b42810c223446f64df827ea745d98f39ac7" + }, + { + "alg": "SHA-256", + "content": "a38d61911c780619814cfd19f28a1d8cdfce23c5020dfd55a11e0d728a902700" + } + ] + }, + { + "bom-ref": "1291b83c83e49e6a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/Fin.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "e9ed0500c836b8e9fb850f5ac779617947a66fb2" + }, + { + "alg": "SHA-256", + "content": "4f21a480273c93b39d1d835c0e212e97bfe95b67940948fd6462f8b041602312" + } + ] + }, + { + "bom-ref": "d8d28f2f4a80bf6d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/Font.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "7db1461aa70a11e303af42124f625bb45c99e5fe" + }, + { + "alg": "SHA-256", + "content": "b727404e6871ecffc3d60986b29b8990bbf0093c975245edd30b6ed712277cb6" + } + ] + }, + { + "bom-ref": "1e7deaa64aff51e9", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/Init.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "06dfac24c74e8da437db40e9dde8da7da45e98b2" + }, + { + "alg": "SHA-256", + "content": "2efeba37e1c94d398dca7e3e3f6e3031168efab85ab05a4fe3313491a61f07a7" + } + ] + }, + { + "bom-ref": "75d4f96001639b90", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/Iso.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "93ec438cb444a2263feab20087a246e997eace29" + }, + { + "alg": "SHA-256", + "content": "4b4541612cf7252017a94d3cee3e31608cb13c86b2b92afce449f277ea6e6254" + } + ] + }, + { + "bom-ref": "416e64f42adc60b7", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/Med.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "4e3bed7c8bcadc13ddf93d78a25506a34f663db4" + }, + { + "alg": "SHA-256", + "content": "954f874a00998e847ae660c8710a2ae43b8587d52ba1a6caab856eff2bc4c396" + } + ] + }, + { + "bom-ref": "5beb4f873aabcada", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/Nar.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "0ea7efe8170fd221ac3ad642ac08ab9308ad953a" + }, + { + "alg": "SHA-256", + "content": "43a762dd2b5eddc257122b8f8b090f529fd6fa6fd0f1aabe1e50d98704617e3f" + } + ] + }, + { + "bom-ref": "fa6c4ad501561e7d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/Nb.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "fe0152d2718170513de541af6d1bab11143ec51a" + }, + { + "alg": "SHA-256", + "content": "ac44f80eb982cd6f075fac34355cd66ee12b0286bec403ea016016d536fea395" + } + ] + }, + { + "bom-ref": "338495753a78d4a0", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/NonCanon.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "43c12400ea31d39b61d2fb60e6da5fd311b07073" + }, + { + "alg": "SHA-256", + "content": "69e228189cf372b29d554414da7ab28fd76fe47923654769eebc77f4de7f2b90" + } + ] + }, + { + "bom-ref": "d675a4734efe828d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/Sqr.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "398a1947787ba6f7bd014aeb7e6c5c58cbc97f8a" + }, + { + "alg": "SHA-256", + "content": "f30c639d1403109d826d98d9268a14cae1d017d5dd1d912f2d1b0fd830736c9b" + } + ] + }, + { + "bom-ref": "b83decb669bc2c8c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/Sub.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "0557c4c3b41fd32412e23a0e292e7546afeec97d" + }, + { + "alg": "SHA-256", + "content": "1954ebdc36d34be45faa9ac20db8cf95942a259c175ea3e47b45cc8141a67326" + } + ] + }, + { + "bom-ref": "1fd4c649a19f5c0e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/Sup.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c1e3bc746071fba3df1b4f9c45baab557cbd4bdd" + }, + { + "alg": "SHA-256", + "content": "4a235f48f048e523331281ba3ff5a1d71ec67e12355ef7f2c5dc0fb0bb254407" + } + ] + }, + { + "bom-ref": "87226b86c99f2dc2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/Vert.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "495d39a7f3fe0b80ce367030fe8481fe422a7990" + }, + { + "alg": "SHA-256", + "content": "ae56761dd27f522e4bee2b2543ee64d0ccb85664cce71e90a0a7d673f76a33db" + } + ] + }, + { + "bom-ref": "822e25069f7f40e0", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ea/A.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "e956df7a29193e007493da1351931dc8d23402f7" + }, + { + "alg": "SHA-256", + "content": "b459018a285c5ed37e4737bfca4df2cd42774296ad50b6f7117b90f9248ca918" + } + ] + }, + { + "bom-ref": "07c2861efab6ecba", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ea/H.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "8e61caf4be329e9c9c0cdab0124e9b2954e905aa" + }, + { + "alg": "SHA-256", + "content": "da7b3cec33ba565387ea09b4f6497d367d2c18c2e2f5150ddcf1616c5da8c957" + } + ] + }, + { + "bom-ref": "a82cfcfd75644f84", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ea/N.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "8638b4c39d34d326b09841b710ba368062bfb5b3" + }, + { + "alg": "SHA-256", + "content": "3acea7adcb6b7d1879af19f7c38d231a2b9ea790c28d5947a80088e5dcdaa653" + } + ] + }, + { + "bom-ref": "5e94bdf691f0b6c3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ea/Na.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "58fd94c1b196faa79da57e9324fbf98049918548" + }, + { + "alg": "SHA-256", + "content": "7055cb263dff22d78992adbb97b9d18011cac2c2032bed7b4c68e99127368aff" + } + ] + }, + { + "bom-ref": "e1bdeecb8701d77b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ea/W.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "aeeea66b901b9de3b95f777eade2e8db982ecf53" + }, + { + "alg": "SHA-256", + "content": "9b5ca242fb29ef9bd7f9748a4848f670667edfb344d19be8c2234c880d67e560" + } + ] + }, + { + "bom-ref": "351bdb5075d9153f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ext/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "396b30cc13f6c2c20b9cf784f17f9c1caf2d94e9" + }, + { + "alg": "SHA-256", + "content": "6375883e6d0116708d66691f64751f3bdeddb4c0bb81f4f8b1dbdd5d049afd5b" + } + ] + }, + { + "bom-ref": "bd6698b15f74e16b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/GCB/CN.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "032b33b494aba1792705a14cb30bec878d9ce8bf" + }, + { + "alg": "SHA-256", + "content": "292e9c3ea238f1dfe550338e176d8c7d5da394d3e779801de91d422e5d039d19" + } + ] + }, + { + "bom-ref": "31c2c5e2a529d145", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/GCB/EB.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "ff54cfe4fa4de9dd24d0475a832c454b74df8084" + }, + { + "alg": "SHA-256", + "content": "433750080ae7596886ffddf734d5029fff9efff4fa1ce0b721a0512cd2a0408e" + } + ] + }, + { + "bom-ref": "8d57a190c8d110b0", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/GCB/EX.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "8fd3c67e83d979c2a45c150cd26e23b45c6c71d6" + }, + { + "alg": "SHA-256", + "content": "fd983b42d28e19a87420f342c571043b71557065a9854e696cde10995cfaa4ed" + } + ] + }, + { + "bom-ref": "16f7c41cedd9c53c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/GCB/GAZ.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "b0711519473efe5d3406bdf5eaa159cf537db2f7" + }, + { + "alg": "SHA-256", + "content": "8f433059177ceb49097ea31c72961d5237aff7a3851b31546fe61cd436b9e1a1" + } + ] + }, + { + "bom-ref": "52e524dcda024f5e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/GCB/LV.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "f314f43461d284ceb6d860cde4715a0c7a531793" + }, + { + "alg": "SHA-256", + "content": "9ca0b31ca06b07a9c9d2dc5035d97de6c92d94952677f58031a18bd5b3474fa4" + } + ] + }, + { + "bom-ref": "36975cc1b229bdc3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/GCB/LVT.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "dabe323fc8139d8cbe4ef5d6bfadf65932afdd74" + }, + { + "alg": "SHA-256", + "content": "c71f8a85b712358572aafb9e7868ca4afd4242310cce8d96cbbcb8ab5dd61ca2" + } + ] + }, + { + "bom-ref": "ffa6007170f176a6", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/GCB/PP.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c762cc1ab8c185220b53246c1ac0906c4b3a611f" + }, + { + "alg": "SHA-256", + "content": "74b06dbbfe3be53c24e04cb1c452049847bb2ad79a8affa497c85549d895d17e" + } + ] + }, + { + "bom-ref": "9b9610cdb73bc49e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/GCB/SM.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "635e94a1d7bd05d72bec64a2ea395f4ece71bac0" + }, + { + "alg": "SHA-256", + "content": "9d223b75f0e51a30e03377b2b4bbfb9d1880026ebfa3c74b01e4c202a35c3c1a" + } + ] + }, + { + "bom-ref": "bea45f8955e08fb3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/GCB/XX.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "3c184b8837a6c08f5589d56381e65cd3b8905ed1" + }, + { + "alg": "SHA-256", + "content": "e08f1f1beab13fcf1c03ebd965094843a4c137bcaf7a5a4cd4ddef68f4b967f4" + } + ] + }, + { + "bom-ref": "e33c0c182fdc7417", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/C.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "0e5a37c840941b8848bac9441acab12009929e29" + }, + { + "alg": "SHA-256", + "content": "97e995675fc32af746766ff0b232b2b1e30860a54d3e5f3d43acbc1600d6e0ab" + } + ] + }, + { + "bom-ref": "cd76261436aa7f9d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Cf.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c2fa2fe65b24d4d1875056935df2e3b9b28ecd04" + }, + { + "alg": "SHA-256", + "content": "5741625da5602f93a49489c2c286d57011b2c23ef9bee710d13ad0a8acc03725" + } + ] + }, + { + "bom-ref": "1ee142192e54825f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Cn.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "62ff4c2f21f2bf187a56762c1b1531a316d0842a" + }, + { + "alg": "SHA-256", + "content": "daefd17528b18c03393edf81daac8fb039dc6fe39b9db3fea639197dd5a2019f" + } + ] + }, + { + "bom-ref": "587ca1ced12bc87a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/L.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "6c8c0c223e24e1abab9c5f83e0fa6c51366516c6" + }, + { + "alg": "SHA-256", + "content": "3ae80f948a4aa36bef20e8963e746f5aa89bf3af8f57624b412f45fc5e859cc8" + } + ] + }, + { + "bom-ref": "5b8019635d58bbe5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/LC.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c1eddcfbe299ea792104e706cae856d051230fe8" + }, + { + "alg": "SHA-256", + "content": "1ac403d5322e95979cd9892a56337d977ee7f6b44284a0dc74e79b9358872248" + } + ] + }, + { + "bom-ref": "590c883802fac21b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Ll.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "5717e868dcc5c2b897a2ccede4f1ee8b2e5a4c48" + }, + { + "alg": "SHA-256", + "content": "ff2b991edb5b67c3f5db10076d3df02c3dc7c01809a85759372e625eb1e220be" + } + ] + }, + { + "bom-ref": "1219f01e41bb251e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Lm.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "e9471efb0cfa6ccfb871b1be9312c7b6074d1368" + }, + { + "alg": "SHA-256", + "content": "6322da67b6003afb092577f2547b5a4844c90d9ad8c7d541c76b60db729b8037" + } + ] + }, + { + "bom-ref": "15e457570728defc", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Lo.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "878eb443855f07f463b7fa4f6a64fb7add7573d4" + }, + { + "alg": "SHA-256", + "content": "67f71a5e26b7111cf68a2d7bb316fbb1ba4781365b68a9287cf835685cad2d31" + } + ] + }, + { + "bom-ref": "37c59252df653226", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Lu.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "12574f2782472e8cda92bc4b1711be942b391275" + }, + { + "alg": "SHA-256", + "content": "d52da5c6e5fac1fd08c047d561448e06b35376e58cedd5413d146cae2250251e" + } + ] + }, + { + "bom-ref": "5e30fccb2375c579", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/M.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "5d3b95b8ff6f52c0cca38b0d4566db1f3f5afbfa" + }, + { + "alg": "SHA-256", + "content": "d1e1eaf8b0c665a156179f193f9058276843af6ea292088a71418b8d8f072b99" + } + ] + }, + { + "bom-ref": "12f21bde153329fd", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Mc.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "92bf946efc709ec6b4861f112efe2eb333c72528" + }, + { + "alg": "SHA-256", + "content": "2b721b083f86cb6add1f82310bdda65b58a1b9a981714844cafe20c96ee3893d" + } + ] + }, + { + "bom-ref": "f4833fb86a260542", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Me.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "5ba75d67e3de57b9a713c2af7a9cdef551c3d575" + }, + { + "alg": "SHA-256", + "content": "4795e74a1493084597efca9d30afb93d35f6ec5aac14f10dfbe85f029d01a158" + } + ] + }, + { + "bom-ref": "06a31091982f1d4b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Mn.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a1c4985b39e6f0af616e017b051605780408a781" + }, + { + "alg": "SHA-256", + "content": "cbf3e4cdbdc96ea636d80fe15d16931b6bcfb1dc83e54147ca22557701e3a002" + } + ] + }, + { + "bom-ref": "d36050419526588f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/N.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "feb6c5325a14b097c60fcd66d013c8cbd12fe2e8" + }, + { + "alg": "SHA-256", + "content": "9ec0de7b2dbb75abc88eeb503e9cebda4cc4863a2da66b90f02ad2b737164e7d" + } + ] + }, + { + "bom-ref": "c90ae24a78223b4b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Nd.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "eb4f2772840dc74042ba0a6aba998bcc98377f77" + }, + { + "alg": "SHA-256", + "content": "63e1f1291d99f8d76938eaccf6865f27c0191522f6c914a4191208d7504b0acb" + } + ] + }, + { + "bom-ref": "9817b22cb219543c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Nl.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "cdbfaafaf63a01e0bda1e472e4d44805d4f7b67b" + }, + { + "alg": "SHA-256", + "content": "aff3512e8f5cdc6cb269b622efbc95409072bd5b983a13e73fbef116c12bd652" + } + ] + }, + { + "bom-ref": "4ce456a72d0ec1e8", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/No.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "448db392e4743d60a9be8d65f7bace2edc95b554" + }, + { + "alg": "SHA-256", + "content": "becb3180f6dfe913ebdbc6bb30e611f516015824188e246834c3b729a7cfeb3e" + } + ] + }, + { + "bom-ref": "f3c54903ce94e861", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/P.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "73909d6bc6d21ce1db0a6d2d5ff34fb5fc1acd8f" + }, + { + "alg": "SHA-256", + "content": "ecbfb8751edf38b6e139033f2e8650165cabc81cd978103e85d040d58c5629ae" + } + ] + }, + { + "bom-ref": "44e9ea3d5ad12c24", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Pc.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "bb08f07486f1826b49ac4d263e09b166190e0be2" + }, + { + "alg": "SHA-256", + "content": "ab30f6d5f74729dacc2dd2bdf24ae528c3c9ee09ed87fcd54bfeb87d029d891e" + } + ] + }, + { + "bom-ref": "6b2a235d2bfc9cbb", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Pd.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "85470272da94db8f2fe3c206781bcb8c8854485a" + }, + { + "alg": "SHA-256", + "content": "00808b36fd5ad3b3a130648ab2438a671518e71bc5997d3ac0bce64f63f98a79" + } + ] + }, + { + "bom-ref": "2a18322f684bccbd", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Pe.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "5062be0373d4568bbad5e60438a40dec8225a945" + }, + { + "alg": "SHA-256", + "content": "1f38acd79ff15892865f9fc73287cd62033fd54faec8edf0ac30996a7f92906a" + } + ] + }, + { + "bom-ref": "f058e5265229fbc1", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Pf.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "2c96a6cefa85f5aef51e113b7b4c6b8902ef2400" + }, + { + "alg": "SHA-256", + "content": "1ff4b37fb9c6abc1acac657dcf889ffe615482c2af5c1c3be6424bf589f6ff1b" + } + ] + }, + { + "bom-ref": "2c9ecf52b29b6adb", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Pi.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "61d5d86cc1a98088a1ccd74e0864c37a23319af7" + }, + { + "alg": "SHA-256", + "content": "a645dbf9f1582d7eb47bd9e51c42681c88aa6ad77cd7a6427b1ffa2bad6cba6b" + } + ] + }, + { + "bom-ref": "50a2d7da40c5719c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Po.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a49f607dc5b777ab99d1823d5282f1113de39e07" + }, + { + "alg": "SHA-256", + "content": "3d87e6eae9de3c634c9a00b9200fc5a384e107cfe585177ae4764b68e4eb79f6" + } + ] + }, + { + "bom-ref": "fbf80bbfe8c816b7", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Ps.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "e7b4922596f748b46629eae961f4ff73cc13ab78" + }, + { + "alg": "SHA-256", + "content": "45b14b4f7c1557c1d6bbd19bc3c27563c2146636ae862f63037c5a3ff41f9df4" + } + ] + }, + { + "bom-ref": "050fbc0468b585da", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/S.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "223aa031ac2476b9df053f6b7a10a1c70a3feec8" + }, + { + "alg": "SHA-256", + "content": "1b77abca41c50430848f4e318f8086dcdcdaa8dff7a1e513543d8080d23d0653" + } + ] + }, + { + "bom-ref": "628a3949b567c591", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Sc.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "efa3b4cb980d4009ae70c18faa4cb6eb49b472e3" + }, + { + "alg": "SHA-256", + "content": "0f6816eb603c8c4c4cf14bccd06c77c8e3314efdbbb922807f827ecce920f328" + } + ] + }, + { + "bom-ref": "836180fde5693aa1", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Sk.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "025ee587cbd03aed5cc87ed15dcf6b2fe5bfb4c3" + }, + { + "alg": "SHA-256", + "content": "bb1b599e62059328e11cf239391632f4189f5433aceb64d5b370b10074fdeb4a" + } + ] + }, + { + "bom-ref": "4660850fe7a51837", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Sm.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "3d0f4649a2277ee99f5adc7b160daba0d16fa918" + }, + { + "alg": "SHA-256", + "content": "63bc639f90f4ef18c0646ecbe8572d93caec35e03276479d8c2bdbf53dae602b" + } + ] + }, + { + "bom-ref": "9a6a16df213b3a0b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/So.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "b45cccccfd9671e33631b78e1c4d8707c08ae67b" + }, + { + "alg": "SHA-256", + "content": "68666cd18ed419f0743fa4df08c35a98f95e58e9994010418b341d36d66322a7" + } + ] + }, + { + "bom-ref": "8c27218346c153d7", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Z.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c3e852eb028a229a26f7c58343b8b0b4294a0ed5" + }, + { + "alg": "SHA-256", + "content": "f16b45102de2aaa3af34b82b00f001dc682db2671e4de0cb3a17bd91df0db0cc" + } + ] + }, + { + "bom-ref": "54882195cc120780", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Zs.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "09c6ef4c51c2005c75aceb62f979c928bcce48a6" + }, + { + "alg": "SHA-256", + "content": "7df5c11d3d3bab3651ff2d969d859d97b66ca562570a8f9ba97cde06d300eb76" + } + ] + }, + { + "bom-ref": "74ca229ee2c7bb00", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/GrBase/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "6ad8da32d30bf261eaf17020327ac0956d1dc199" + }, + { + "alg": "SHA-256", + "content": "fcfe782552bdc88af49cd9295768af44c062046c0b8780ce3b266c7966bd3ba5" + } + ] + }, + { + "bom-ref": "cc28075e1b092dc2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Hex/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "3482c552226529b8baa8efed3a14b76803b86bb2" + }, + { + "alg": "SHA-256", + "content": "cd9dadf888ac1fa1b6f1bf8c18fc6d125cb5fa7728e4397356e829e8b9b4cff2" + } + ] + }, + { + "bom-ref": "09ed109d7875afe0", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Hst/NA.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "dc5842bce49ff4e8895ee6364513eda2fdf02820" + }, + { + "alg": "SHA-256", + "content": "eb50571c127db80c66e432dc3e330aa015fb96142212ccd821e3754c25a88e23" + } + ] + }, + { + "bom-ref": "3a3c02abfbf0df8d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Hyphen/T.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a60f4783953ade34423cfc4b8a643deda9a8dddf" + }, + { + "alg": "SHA-256", + "content": "71b76c8fe142ec49028b55747027e1cce1bf841fa15880083f8c890b332107b2" + } + ] + }, + { + "bom-ref": "bcdee3eda201245d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/IDC/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "1d761dc5321a868a3b699e160272a52b38a2b5fb" + }, + { + "alg": "SHA-256", + "content": "e5b7660933b74b8a9fa30b2fb3af88dcf4bd7591e2340022611e29f410c42c1f" + } + ] + }, + { + "bom-ref": "6c663dc2e4bb429b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/IDS/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "16a4883df6ba1b4afa584d5417387643493800a7" + }, + { + "alg": "SHA-256", + "content": "d0bfdd7894414a47efaf475202871560fe27d589ac5364590d7ce0ef78bf4654" + } + ] + }, + { + "bom-ref": "2b3d5289870294bb", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ideo/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "982f5370f79c8c93cd11700578d1ee72a836e4a3" + }, + { + "alg": "SHA-256", + "content": "48d27169f9ad5d58206f6dc771c945a0fd844019c0bd42d15a68e45784bc2d48" + } + ] + }, + { + "bom-ref": "d7a7e6a7d9f7bbc1", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/10_0.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "4b0c25a9a94d428f488b332d999135eaea19d81a" + }, + { + "alg": "SHA-256", + "content": "d5170c8dc588bbcc1e2de148e7dddee99b1ef8f0ae872abc5dff8e35b030b8c7" + } + ] + }, + { + "bom-ref": "d4fe1e28b0bc7aba", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/2_0.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "e5b1552f3cdc3f6fbf76cd42073b90022db362e0" + }, + { + "alg": "SHA-256", + "content": "8053ae801d7f66cb65785836ef99c7aa8ba6468b952b4ff589dcde18e0dd78cf" + } + ] + }, + { + "bom-ref": "87423651aa49f9f9", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/2_1.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "3b30ead9c03c629de4d3c27bde0064277b7a1a11" + }, + { + "alg": "SHA-256", + "content": "3d41772bc3a88473837bc1e725893cb8fa883c9ca6396a417216efa0ca86035b" + } + ] + }, + { + "bom-ref": "0675e314ee7b4dac", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/3_0.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "678828072cd852a966c47663422ac0bec88c8b21" + }, + { + "alg": "SHA-256", + "content": "08579733175c30685315564ab583a1d1dc67d7bd52cf1903e77c3c3c90fafac8" + } + ] + }, + { + "bom-ref": "046207b270aa730d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/3_1.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "7bcabc39a443f4be46dc86826d236067295c5b6a" + }, + { + "alg": "SHA-256", + "content": "f00a0981743a29046c86c03efc2f4189858fcc30c9e915b13abf2a6464c2b5c5" + } + ] + }, + { + "bom-ref": "22121067ae17e005", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/3_2.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "0ec38cbab30d40588ce74b42e360c3e3fe5971e8" + }, + { + "alg": "SHA-256", + "content": "22fc77e5d4b04ea9c0836d776bc34ed0da38b9491a96364e2ce6a1c6803526b3" + } + ] + }, + { + "bom-ref": "1364a28f409c942e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/4_0.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "33cb8b376d9cabfd205101fb525b5b1f4d94ada0" + }, + { + "alg": "SHA-256", + "content": "d60ce739b06f237d6848f34e5174e98fdfcbbbc6ad3cde0bf0c307ed3cf175fe" + } + ] + }, + { + "bom-ref": "d66acf9cd45b5064", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/4_1.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a063a7c78e9b06b5965bd762ea20d1b8f0d61050" + }, + { + "alg": "SHA-256", + "content": "d0fc0d98cd61cbc51989ad1e84fbe7c3a58b0af87acec9e8317909211309d8dc" + } + ] + }, + { + "bom-ref": "d6f46db5c5c5a7fb", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/5_0.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "d5a69fb6a328e2b000714c50de857bfa14c25536" + }, + { + "alg": "SHA-256", + "content": "8b59d27faa6b23d02e251c57b9e6ffde03d1c974f1d2a5372c3109d116c370b2" + } + ] + }, + { + "bom-ref": "bf7a15f6df6cec02", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/5_1.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "44f1e0091f1e71995f108898b60d7d06558ea362" + }, + { + "alg": "SHA-256", + "content": "cb04602584a55bb9cb1e2c242ee597e96dbb37c240b5f786aa89d377c7a7b6a6" + } + ] + }, + { + "bom-ref": "76142e3b7ca4da2d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/5_2.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "6a44995e8f59cd0b4b720ac56c7c70012a24993b" + }, + { + "alg": "SHA-256", + "content": "0b0f0de0731cfc3d2e11182c7970d6e73cbc0c01bd4c7c536791988a65395f6a" + } + ] + }, + { + "bom-ref": "796b6d59d447792c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/6_0.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "f514770c77036648dabfe37e3ad88a7dc0be6ef9" + }, + { + "alg": "SHA-256", + "content": "a273960027fa7959b66c6c1c3559018ef4765a23af5e565e0d7c7cb1bb7c1d43" + } + ] + }, + { + "bom-ref": "7fa088b123ed5ed0", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/6_1.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "e5048743d25b06762cc7a3bf8050584d41292639" + }, + { + "alg": "SHA-256", + "content": "1b35968e0053fdf1b56f733acdfcd8e58bdec2edf53dc35f8ee3a7874ae2d3e6" + } + ] + }, + { + "bom-ref": "71d41e84f6ad256f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/6_2.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "1ec30ee0ae13ba7a475a6f9378361e7cdf13940f" + }, + { + "alg": "SHA-256", + "content": "1fe320130bdc13ae02e5571102b8a826a589595a26859663153060b3313948d7" + } + ] + }, + { + "bom-ref": "de8f9b9e9736395e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/6_3.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "654413e1f29db0d75d2643fbfc77bc85ad480b77" + }, + { + "alg": "SHA-256", + "content": "15f0197ed479551139d5e0412196e0ad4c75ea10d298035eddf02c1456c5f7c4" + } + ] + }, + { + "bom-ref": "fa8b47d1def11980", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/7_0.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "bf20c1bebdfe641b56aa99cdff99dd44ede672a7" + }, + { + "alg": "SHA-256", + "content": "1faea7c88f8ecbc2022fd6302b5d780965675c408cc60d2b6376332ed8a4f2ca" + } + ] + }, + { + "bom-ref": "a6214bef2a90853d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/8_0.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "f54781a106f840ae4ecf3aeba825f52abc1162cc" + }, + { + "alg": "SHA-256", + "content": "1d57faca7db41f401db8f553cd1199875a6e5c22efc48d5b3eb5724fb4e2532f" + } + ] + }, + { + "bom-ref": "b5b18e3747bbcd2a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/9_0.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "86f4a82e3324d70dd84e378dc4d4e973ec5fa1ef" + }, + { + "alg": "SHA-256", + "content": "37e0b1005ffad23438dc95112fea084b3dc9d4b9e76d98b05c7462028a0ac922" + } + ] + }, + { + "bom-ref": "85a6e316a047a61a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InPC/Bottom.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "d9dd212c4701e33a4776366778e72572d0794304" + }, + { + "alg": "SHA-256", + "content": "0fd753f5f0eb14ae77902168a09ca2ff3a059b9cf114db81e5dc653a117b4ddc" + } + ] + }, + { + "bom-ref": "ab394552cd26b5de", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InPC/Left.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "711ecd70a316e648e77aa471e4923a585693a21c" + }, + { + "alg": "SHA-256", + "content": "4c6ee35f2c249487d015afaca32fcad5b7ac8fd7109616fdeb9dd0f45f2e5c76" + } + ] + }, + { + "bom-ref": "07acf0aaed99a30d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InPC/LeftAndR.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "4501e1372740d99dfda7c9b5113f79038c121418" + }, + { + "alg": "SHA-256", + "content": "a9cd5243aa98f336e313cb5488f0044264e6750b8ac0869e1714288462b2fa04" + } + ] + }, + { + "bom-ref": "4f3238f864cf30e7", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InPC/NA.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "4bde4a8399f0bf295d45eb7c62ef2823ba903a43" + }, + { + "alg": "SHA-256", + "content": "238a37cc10f4be7e15bbb6d621bd1307548eda2bb493d1e326e7da2ea7b47910" + } + ] + }, + { + "bom-ref": "3c55fe2a464695e0", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InPC/Overstru.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "bc098fb646fe3675920cb8351da7bca1d70e4356" + }, + { + "alg": "SHA-256", + "content": "abefa16db85dc6c6ff6ffe768fd4f20d3d97aec02e5443045243dcae6af7700e" + } + ] + }, + { + "bom-ref": "8e1760ab27af4176", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InPC/Right.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "4880955c8208aa4749cf1651308ec4a5269a7fa4" + }, + { + "alg": "SHA-256", + "content": "2562db629b3cec320f0f76f220832d0f7cde0ee5ce6ac2b23d4fba8848641140" + } + ] + }, + { + "bom-ref": "e872b2cb59840d72", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InPC/Top.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "70d75fd78e6fd55f5838f2d70d7734de4c08028e" + }, + { + "alg": "SHA-256", + "content": "92a025ee5ce9a535c25eae6d8179b7a1ffed614173a8ab03d9414a01b929f577" + } + ] + }, + { + "bom-ref": "427ba03821e82c9b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InPC/TopAndBo.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "5b7509b308466c8876c66cddd3a9c80274b26075" + }, + { + "alg": "SHA-256", + "content": "881c40b2d3bb821aa8cf816f90c36cc4f9fa124163794ce76d4e87e7b000c108" + } + ] + }, + { + "bom-ref": "2d32958b2bf4fc91", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InPC/TopAndL2.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "22da22f843bef601cde0d20cd715c28528d04f32" + }, + { + "alg": "SHA-256", + "content": "5efc958c02534fbe571f065c8403a5346692463b459af1136110064a6b27650d" + } + ] + }, + { + "bom-ref": "5b7f1a5c5ec2e308", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InPC/TopAndLe.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "42bdea55050bab0f509e24d36ade3ca768045df5" + }, + { + "alg": "SHA-256", + "content": "1f3e9fb48f9bac051b2bd0446d81236feb3f9d572894170c742c9ffa018cd0c2" + } + ] + }, + { + "bom-ref": "c9e7f2f899e5a5ce", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InPC/TopAndRi.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "dea718bfa307a025c0c562435b820681d573b271" + }, + { + "alg": "SHA-256", + "content": "180ca95d3fc899d71f973d7d3aedd67dd8e27787c682713102ef97aa101adaf7" + } + ] + }, + { + "bom-ref": "7be2d5745b5c6e65", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InPC/VisualOr.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c71faf9a0a9204499e60531bb7b9b1eff4d26b0c" + }, + { + "alg": "SHA-256", + "content": "d8b78b716e804e5a6b2d98a19ad272485edae21a11fedbe140b9fddcb023bcf4" + } + ] + }, + { + "bom-ref": "10b6072c1f329364", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Avagraha.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "20d786accd2db3cc1992581491b2f600d8328f9b" + }, + { + "alg": "SHA-256", + "content": "0081939f9fad30b5972850feb7e4549075edcf22494d6225e471ce1d52908ede" + } + ] + }, + { + "bom-ref": "fac882a4c00506ca", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Bindu.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "8c99607c52bb6d0d14d0ec85f47bb1c8644fe8d2" + }, + { + "alg": "SHA-256", + "content": "4f232b9d2819be8bbde1b62c513ff37414c4d4eaca2c80fe80f3b42e2f7fca50" + } + ] + }, + { + "bom-ref": "a2ec5299b74419b0", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Cantilla.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "bf29ab45cedf4037d65de5c61b2005ea9a3545cf" + }, + { + "alg": "SHA-256", + "content": "c288759f438bbcce71a320d9ff9f1ad2f1db863716b4743f7b9ec91f13474bc4" + } + ] + }, + { + "bom-ref": "d1cd13a4c6b8337a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Consona2.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "72803cd2026faa609721d8e8433ddb1fd4438456" + }, + { + "alg": "SHA-256", + "content": "a92e93a45c29f1539eb37c4e57b3a5df4888dd8dd6a8adbfbca4151c0d7fe661" + } + ] + }, + { + "bom-ref": "c61f8266303a28c2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Consona3.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "b276a94f67134e9a552e0ddae7367ffba8e2170e" + }, + { + "alg": "SHA-256", + "content": "24f0dc29796fe515711c17bc82f121f5d2b46b3333f1970dbc490f01575f677b" + } + ] + }, + { + "bom-ref": "8308e94b41141b2c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Consona4.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "09f575bd89284fef4eb4a510ef4db1cf90964263" + }, + { + "alg": "SHA-256", + "content": "b4e56d587ce00563065fc498f77517be6d8c101a691bbd551a48f47fe2895cbc" + } + ] + }, + { + "bom-ref": "a37fad0956b605ed", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Consona5.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "96a84ca6c028fa66bb10435fb5e534d7bc14fd66" + }, + { + "alg": "SHA-256", + "content": "a1d5b424c53d44e70ae94e423d5065d5449f3466dc6235c5872ab6bdc4963f75" + } + ] + }, + { + "bom-ref": "4cfdb61a626ab205", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Consona6.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "2ffe733e6193cf84694dc59c8fc98c4ba2cbff1c" + }, + { + "alg": "SHA-256", + "content": "aaf4bf624b1ccffd6184ec534ed6e8a8367f3d4190b3e143648f35165d553e5e" + } + ] + }, + { + "bom-ref": "37cacba43b85cc2a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Consonan.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "fcad5fd3665e371590edf4ea8e2d8322cfeec25f" + }, + { + "alg": "SHA-256", + "content": "e6ee81972a3d5f5a33510718037f3dc08863e0e91d7977c68d4eb9e20b71ddef" + } + ] + }, + { + "bom-ref": "0d7bba23bd4b7762", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Invisibl.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "68d55a6443fe0d0deeae19bba8dde20e011ae310" + }, + { + "alg": "SHA-256", + "content": "f52b787a50eb934a9868dfb7c97eea8e5c3680299730db48b408fd5a47c3b1e8" + } + ] + }, + { + "bom-ref": "287c921964e426e6", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Nukta.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "659e99cf4a110d43f90c7b11cdc53a39bb8c7ac7" + }, + { + "alg": "SHA-256", + "content": "b3674660488660b2f0b3de35c3c5463d492c91a33b9663179906aca06d3b1068" + } + ] + }, + { + "bom-ref": "8311975f864acc09", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Number.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "27caea37387231609fe006526d5bfa923585037b" + }, + { + "alg": "SHA-256", + "content": "71306721e52fbf24f90af0bf35d2be77f3177004ac11718df656ade4c028c4f6" + } + ] + }, + { + "bom-ref": "4532a52381ab29ff", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Other.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "96ade2413800e88139ab5a88061d36d974b90fbc" + }, + { + "alg": "SHA-256", + "content": "e00b47159d1661a80a1d8b7e2f27e3dd84b7f3fd1cb1d8b4cb2a8367bf7f6e80" + } + ] + }, + { + "bom-ref": "24f3ffea5c9ab219", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/PureKill.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "6869cb4997af2e972e74a07569a2bf1524935d91" + }, + { + "alg": "SHA-256", + "content": "656ef2277247585e07ccf323d207ae1bdefed41f99c4d6ae04ac5004ea2a1a67" + } + ] + }, + { + "bom-ref": "aeb00123bee3d31f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Syllable.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "b51f98f12b910d9aa3255bc85fca2161381bcf2b" + }, + { + "alg": "SHA-256", + "content": "203523eb01f4a20301105778b52afefccc8c5a2cbadefb1cec606c549de03ebe" + } + ] + }, + { + "bom-ref": "a24915598a2cc282", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/ToneMark.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "2916203b26400f8edbcfbcf75b32532f58cc426a" + }, + { + "alg": "SHA-256", + "content": "b227e08b1bb11f350a919658ba9fc0ebbdd3bdc03bd36e82f0766fa02267fbd2" + } + ] + }, + { + "bom-ref": "9d82c4d9c5a3bda1", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Virama.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a1bbd370dd5fe3065f8a768fa3e204d0c3997e41" + }, + { + "alg": "SHA-256", + "content": "caad069971da4e7633048508b6b540d30336bb87a9f25e3bdc460459704a3866" + } + ] + }, + { + "bom-ref": "68b50890ff12970b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Visarga.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "0debbaf44eb0a57181d20a156fc8988c69bcf369" + }, + { + "alg": "SHA-256", + "content": "cc7747f5aef2a22e1fcff9a05a563f4218997d8d1c4b057b2297dc4b5b1d8a4c" + } + ] + }, + { + "bom-ref": "fb119eea5ee84218", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Vowel.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "efee49de96cd1c8b32f7fbad710ce506195704c4" + }, + { + "alg": "SHA-256", + "content": "fa114cddd76e4ab7af5ad9cb2b6f678c9e29b138a70db0e1df3c5450b767ee49" + } + ] + }, + { + "bom-ref": "040e5627e8955527", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/VowelDep.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "b00f170ed72e77c85788012839bbcf11648768a4" + }, + { + "alg": "SHA-256", + "content": "1f83b136008eb03fd46d8aac64b435fac0fdbbea08ed77097610b4f9eaa083c5" + } + ] + }, + { + "bom-ref": "2d7467a7fe8f54a8", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/VowelInd.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "7baa2ccf1b6758891f058a8986e7d239d1585d8d" + }, + { + "alg": "SHA-256", + "content": "ebda4f07632a65389e7e0c7ae780806a1371419ea3937b1cfdbe584c87b0bea9" + } + ] + }, + { + "bom-ref": "4552afd31b03c4c9", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Ain.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "bc743825630550ec1013dbd6ebfcc77ede016f01" + }, + { + "alg": "SHA-256", + "content": "84eb6d4881075a3c1b68ebec6863c5bb33cd93d70ba0f8ace8d20ef766188c88" + } + ] + }, + { + "bom-ref": "7fdfa17738405176", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Alef.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "b63567feac55675cfec8a79429e8f152e56d5761" + }, + { + "alg": "SHA-256", + "content": "64fb82a7a91e3579cc1157df5c6d39912f867b8f7e2ce94ec205f4ecaf4194e0" + } + ] + }, + { + "bom-ref": "c247cb2aa32a6d0e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Beh.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "4dc27e62ba20e5bb44b1d106e3486a5d67e4fd00" + }, + { + "alg": "SHA-256", + "content": "72fa1da7b3a204c2d539b53bb52ded5dcbbf5969bfe8c9ab492987c0b1a2041f" + } + ] + }, + { + "bom-ref": "74960b17259c5025", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Dal.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "6aca2e3ec8dfb39cf9f524deaa1de82a65f78f18" + }, + { + "alg": "SHA-256", + "content": "0969319ef0fac6f93d668f8af6c60ec1800aa29ef4a3ba4ba83ea71a25a5d6a1" + } + ] + }, + { + "bom-ref": "a76ca0b275990dbb", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/FarsiYeh.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "5951d4a812b092c496b020fdf004a02a210df04b" + }, + { + "alg": "SHA-256", + "content": "6c4c384bcc2832a10d393e7201437b9def8125bd92fe58c2f131f6819c4bd2bc" + } + ] + }, + { + "bom-ref": "cb2797442ec73fa6", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Feh.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "975a7c05b3b73c0fedbc9b691ffd7716568d5ba1" + }, + { + "alg": "SHA-256", + "content": "afa1498e596ccc75a4d9ed5fd165612ffff8aa8243faebcf7b87760c45df7734" + } + ] + }, + { + "bom-ref": "b06cfe9c5fca5992", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Gaf.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "660963628718cc3b029c93fc73a37e08e3d3ae13" + }, + { + "alg": "SHA-256", + "content": "7ee1ea84d8cc9f3b8a83325dd64f9d7c05e5c3fad00f9c3e9fde0ab062c32a68" + } + ] + }, + { + "bom-ref": "47be64fe1dd83a30", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Hah.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "6276ac0542fde9ca7ba1460f841d7bc59d4d15b4" + }, + { + "alg": "SHA-256", + "content": "c4c5703322b7feb0024b34a03bdee6e061ee810a4190837b58f2f0795b8a0416" + } + ] + }, + { + "bom-ref": "e6f03f5a6dcff9f8", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Kaf.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "41f379e3ba40433ebb540686da58474833ed1922" + }, + { + "alg": "SHA-256", + "content": "cbee3f69228ff19475eae2749f243c83d893d95565feaf28fb50a29565831688" + } + ] + }, + { + "bom-ref": "ae8afe52c753d058", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Lam.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "217577b4ed598e4160f95ac650efd65547e4b984" + }, + { + "alg": "SHA-256", + "content": "d479760c712e6206767a7c13d3806dbf5f55d5e654b26a8b6a73127d85e5011b" + } + ] + }, + { + "bom-ref": "f34b64c7b6b44825", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/NoJoinin.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "11dcd31a15f7bf3745e74ca60ae0275b41883a25" + }, + { + "alg": "SHA-256", + "content": "bf66de705a12af60595915db5cce79104f2edca43a6589bebfeebed3aeb43c76" + } + ] + }, + { + "bom-ref": "f49f6df8e98b3eb5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Qaf.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "d893fae2bb27917ad872355864357ca594eae7e1" + }, + { + "alg": "SHA-256", + "content": "ee85a597952eabb5e85e3a1f30160c748e89aa1d58937f2d6a244e11a13e25c2" + } + ] + }, + { + "bom-ref": "3062c7ba40ecefd9", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Reh.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "d30fcd3762b8efff9324b3f4b8e23c15fa15cd26" + }, + { + "alg": "SHA-256", + "content": "d0e302d3b523c4d006d5f177753ab903922eac3904cee9152d29d76092912944" + } + ] + }, + { + "bom-ref": "36079fa99ad51c33", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Sad.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "4c810241762869d474c2fee14d617bce8ad95ab7" + }, + { + "alg": "SHA-256", + "content": "b7dca05f911ed46c9ef1b75925613b9ecc91722b38c95c9752da6883a5112dbe" + } + ] + }, + { + "bom-ref": "7a4a500a4462ceac", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Seen.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "269dff842e5822e30e4c18bddc26684ed1e50bd4" + }, + { + "alg": "SHA-256", + "content": "0b40e5e917c449a905f42f7edbbdedb6cbc9123fc78ec7ceb76a054ef47f43ec" + } + ] + }, + { + "bom-ref": "abe3cccc3cd5c89e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Waw.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "bd072ff54dcf3eda07de8f37c0647adb9162c266" + }, + { + "alg": "SHA-256", + "content": "78610b13b556d8d932434c7fec59dac77e6e892a978d452cf968f88a263af6cc" + } + ] + }, + { + "bom-ref": "54d5697e9b1cfe52", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Yeh.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "1a2dcfb5527f4f88097f5b39126a59a18f1edfb7" + }, + { + "alg": "SHA-256", + "content": "1cb8a27c88f6f3f5713309c4b92dc6af8f1a7d7cab12292cc0bab7a0b9663531" + } + ] + }, + { + "bom-ref": "0b947cdcf2e14be2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jt/C.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "111f46e9f9fc0ea0d6bcdc088ba7c8a42ac68e35" + }, + { + "alg": "SHA-256", + "content": "374bd61080bae3a5288d7a4c86357d5f068d251372e6c70c5d82507499c024d2" + } + ] + }, + { + "bom-ref": "fccf0b2852db9910", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jt/D.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "de54e95108a4e60734944c4e9d43ea3cee9b3df7" + }, + { + "alg": "SHA-256", + "content": "1c7a8c737e5fe929b9d252eab9bb25f06ecc98490a69f2dfb9bbac079969dc29" + } + ] + }, + { + "bom-ref": "854e4ae6166b8203", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jt/R.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "90900f7fdc5453bd8ccd409fca5946479e9be7a4" + }, + { + "alg": "SHA-256", + "content": "fa8d0cc794f123afd981c441d34fc654d5b7c8fcab44218e2f18673d5fb2adeb" + } + ] + }, + { + "bom-ref": "d1c91b199a86ee7d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jt/T.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "d72e8c1672bf081523126c83a9eb64ddaced2d6c" + }, + { + "alg": "SHA-256", + "content": "87d21d0383fd1bbeff88bf893ef216a47c1787954ea6335e476b0cd723b8fb17" + } + ] + }, + { + "bom-ref": "ed80d686b7a8a528", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jt/U.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "edb002374748cbabe1e2059b497307d398623963" + }, + { + "alg": "SHA-256", + "content": "c65140380e2e4093c68061c04d896e06f7c68bb60efe6f34da61fefd9d705b4c" + } + ] + }, + { + "bom-ref": "2d27489bbb703132", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/AI.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "d1a345178e22c1a909996686fb79d04e33c32956" + }, + { + "alg": "SHA-256", + "content": "468e704a8ee1fdc357043f2795fff34db2eeff7825c081cd3ee72dd6bb16c074" + } + ] + }, + { + "bom-ref": "d763ddec00ba3730", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/AL.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "103f4daeb7003b0256d0d30c04cf96bc6672a83d" + }, + { + "alg": "SHA-256", + "content": "330e72884fea95c8333b9b0411717f26b04132dcb2b7378e39017bc166d6c61d" + } + ] + }, + { + "bom-ref": "e9e7337e3ba1a634", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/BA.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "f2d8c9ff0806f9e008da34cfb79f28e719dc9868" + }, + { + "alg": "SHA-256", + "content": "b3323cb2268125baa71b4bba8b1314756ee533e2911f38a2a547458aaed24cfa" + } + ] + }, + { + "bom-ref": "3ab5da571a96d26f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/BB.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "9c347662284942bdaba3e13b03fe3cf6e3925f9a" + }, + { + "alg": "SHA-256", + "content": "9cca290a7b69bce6288912276226c670749d91e66c0ee4d8fb031d6a0099916c" + } + ] + }, + { + "bom-ref": "5ab1e24bf81fbae4", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/CJ.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "38e5c09d9d285df352315797b9ce4df880773fde" + }, + { + "alg": "SHA-256", + "content": "ea968460a34f6b5b5e9e7ee367f7349679d2e97be6b97b69e1a3cc3775195e6f" + } + ] + }, + { + "bom-ref": "497100d2078dbab4", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/CL.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a5dabd22d918cd267e5d18ad86dfe03843dc3703" + }, + { + "alg": "SHA-256", + "content": "97322a7099f4e123302239849327d13da83568178f05811526bfd2c9dabac5b7" + } + ] + }, + { + "bom-ref": "d50a904780cd758e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/CM.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "e003e7ad76640ee5a8f421cde21c6983d8d02944" + }, + { + "alg": "SHA-256", + "content": "0ca0bc3994159bd7e67cd6a2720416e43d3aa121aac65a28dc59424e4179e1a9" + } + ] + }, + { + "bom-ref": "3bb79939c0855bb1", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/EB.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "cf8dd31974d3ca4d9f630e2006abafa4c1e4203b" + }, + { + "alg": "SHA-256", + "content": "44ddb36fbacbb5664674bd5649da21321992ef1110b4abda484f53bd32b2a0f5" + } + ] + }, + { + "bom-ref": "9b89ce11de53d2d6", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/EX.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "2d4c0b280d808542cf84d2a757a724aa8c8cf669" + }, + { + "alg": "SHA-256", + "content": "d5b256cc2996abdc51118a95cc74acdc88411f0d08dabeb571e411fa7f49f0c4" + } + ] + }, + { + "bom-ref": "78aec6b442234046", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/GL.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a5211285ed8e1290dfffd3ad0b0de40c4cfb862d" + }, + { + "alg": "SHA-256", + "content": "efb6e15b6707a84d3c68291075e84f4d0445c8fc1a5f58ba68b24905a19d6045" + } + ] + }, + { + "bom-ref": "920655edce90591b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/ID.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c8f296c6bb4bb1ad37b3ed6f70000ff4d5e318f0" + }, + { + "alg": "SHA-256", + "content": "368468aec83d216cbb607372f0483a03fb1b446bb4471b938c15cd260e5a5d77" + } + ] + }, + { + "bom-ref": "7427e02e477fa7ed", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/IN.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "9b72bca13c997e921ded6dcd921c6d7db989acc3" + }, + { + "alg": "SHA-256", + "content": "3d9bdc308b72dc68323152724732a390b9d3f1b31f3788b3d753d91fbe4492f8" + } + ] + }, + { + "bom-ref": "4b7f3aa150869cdc", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/IS.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "488a9e40701c0cfc833644b30524be894efe955e" + }, + { + "alg": "SHA-256", + "content": "53c8f596b47eb97e0c83c9b79623ae65e55eb522ac25c0adb53dcabda794e1b4" + } + ] + }, + { + "bom-ref": "c988fc0a45e59e99", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/NS.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "4f5d42e9720965cc809fe1eced4d30a3d3a60940" + }, + { + "alg": "SHA-256", + "content": "a83f3d4d834044f31ff2b27db7cc111f3889cbca00cd09802e8c04027fccba37" + } + ] + }, + { + "bom-ref": "b681f85dc144e818", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/OP.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "dfbc3d4d1ff1139b49724f6cd848167d0f7fc504" + }, + { + "alg": "SHA-256", + "content": "df3ffe501b94a176189f275819ab6559be16c3f35fe4bf76c80974c295fe054f" + } + ] + }, + { + "bom-ref": "ead17787a884a015", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/PO.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "98a1486d4d640c75f6068cdb0db8efeb4d2072d5" + }, + { + "alg": "SHA-256", + "content": "c3b2414302230252972626e27280592949b197a4bef0be35aaa224f802af69a3" + } + ] + }, + { + "bom-ref": "c4bfba4bf7bf323c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/PR.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "9f4f968b69e042d09de1ac19122c8c25a6c8b7b2" + }, + { + "alg": "SHA-256", + "content": "818fde7896a55ddd560cacb6cf81a9f8e495be4c407a2a0be3852759f5abcb1e" + } + ] + }, + { + "bom-ref": "b5f3c85090cde08f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/QU.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "6db7fc2a6ef8902a4d16772b352ffc8378c6b510" + }, + { + "alg": "SHA-256", + "content": "2106fad5616bc411ba64dfd2a691eb09a8b40b1dcfbcb4eb113ae84e67542994" + } + ] + }, + { + "bom-ref": "cc9eb0ee34425f27", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/SA.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "f586a629ef8d639ca3fe22d70359fc21789c4df4" + }, + { + "alg": "SHA-256", + "content": "4a2f70ab4d37bef8d61d8d4dcdac44fcd57b1c3cb01f176620a72ba5129c401e" + } + ] + }, + { + "bom-ref": "549396a953ab2d41", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/XX.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "6aab8843d8b25f9959d05b40403541e0a9362652" + }, + { + "alg": "SHA-256", + "content": "9a2cb6d760bbd0fd9c9f7e40957fc6cccc782e82490410c32c6c7f872e39db2c" + } + ] + }, + { + "bom-ref": "7c0836132c1614ec", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lower/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "e7035733ad2c9660ae9f0469857506574e4c5ae7" + }, + { + "alg": "SHA-256", + "content": "52410792cb4583dd4d6b10ea6ec95482f2c7b64a075086351bc645eada6c4c6f" + } + ] + }, + { + "bom-ref": "1e88eb84eb7ba7ee", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Math/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "7d9abf817494a355c4c5c84f669745ba2ac61de7" + }, + { + "alg": "SHA-256", + "content": "951643aa72f253a7f8e08cf33b69349b5d3d945d27a6310971de0fd3efa42606" + } + ] + }, + { + "bom-ref": "73c5d322baea444e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/NFCQC/M.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "261c9d44b250568be21c6d9f9aa5edc1f879f1fe" + }, + { + "alg": "SHA-256", + "content": "7575039168dd680bb333c1f0749c1a086537b1d2b5f8f13e156c08564abbffe4" + } + ] + }, + { + "bom-ref": "2ede9442a3cfb28e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/NFCQC/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "afe6c7524093652621dda1828509ca7c7484b202" + }, + { + "alg": "SHA-256", + "content": "19a379eb048d06e98ed7b5e238514277b0652ea8e4582aedd5d65251c9b5c7ef" + } + ] + }, + { + "bom-ref": "2b4bb17344a46756", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/NFDQC/N.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "ff0dfe2ca1b3ef1346e691d472fefbd035ec00e4" + }, + { + "alg": "SHA-256", + "content": "6930ce8c3fb953fe9c8811a3b664fce344b8449f885765429dc7b06144a2bdd7" + } + ] + }, + { + "bom-ref": "408be32002847b9c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/NFDQC/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "bfc8ceacd28bd670d2eee267bcddf6a0572c1e72" + }, + { + "alg": "SHA-256", + "content": "4f01f75cfdc1638c3087f46fbb02ad39d2cfe2192b76a64e9edfaec319a1c5df" + } + ] + }, + { + "bom-ref": "34a8219afa6949b4", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/NFKCQC/N.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "ca520076516a5c907fed30f100ee82b185776f6e" + }, + { + "alg": "SHA-256", + "content": "3cd11ee07ee877f82420c871a271c9b68c7471b24a2d281108d0d210c09d8d27" + } + ] + }, + { + "bom-ref": "e704dad19956b1bb", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/NFKCQC/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "ed033427903fe3676ff735d8e789b239b63629d4" + }, + { + "alg": "SHA-256", + "content": "68d8339b7f26d07dae7024896276bf101ffb3f1b7c8aa4433c0a68b346135a46" + } + ] + }, + { + "bom-ref": "aea9dcb42908a659", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/NFKDQC/N.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "b6e9e36bcb759979056b0f3fe2aced4323c1effe" + }, + { + "alg": "SHA-256", + "content": "c39aa4421d97f4084341a00d40f599176c3f44ae1a0dd99af009fa2dd6867cbf" + } + ] + }, + { + "bom-ref": "26ce984a2d7dd186", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/NFKDQC/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "d28523de6185edefebfc1cefc3abbcdc4a06d0f0" + }, + { + "alg": "SHA-256", + "content": "ad2daf035bfa1dc839a0cf3a821ab4ae9e6be33f02f259229b167e3d3d016b5d" + } + ] + }, + { + "bom-ref": "40d277c9a753c041", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nt/Di.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "4b6e0ebc45b0cfc0c2cff83859030b397a50b76f" + }, + { + "alg": "SHA-256", + "content": "6ef1058e9e09cdc91ff49296b26c3204ae342537b5d4c32844b8d058ef45058c" + } + ] + }, + { + "bom-ref": "5b5a67531cb5f1e9", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nt/None.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "6662b1ae29a1d0753b029b644c6c18618ebdb508" + }, + { + "alg": "SHA-256", + "content": "69208c53fb3c7fa3119d28060cbf4352bbcd575fb495c79a47d07fffcde821c6" + } + ] + }, + { + "bom-ref": "4bb716b762a88c17", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nt/Nu.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a17a16da1c31256ba70c17f18894aa32e2a25e23" + }, + { + "alg": "SHA-256", + "content": "9e24fcd330b4ab4539c6bbeac20955d53caeba96bc72d51185f7e953bb1e0cb5" + } + ] + }, + { + "bom-ref": "97606a2b8170aa09", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/0.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "97b7e94bfca810a925e2eeacbdada0b3d60c8e7a" + }, + { + "alg": "SHA-256", + "content": "ac8078ed7e631d6b77912aea1e5605c7a03430d6704d3ed11d86ca846da70e93" + } + ] + }, + { + "bom-ref": "70b1f5e065881b2f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/1.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "72e6e442945db9a42d8c5308c02bac9a78000106" + }, + { + "alg": "SHA-256", + "content": "f2bed0efeb0c105bea17991965c7cbf7913908778e13ab158b838609eb7b5235" + } + ] + }, + { + "bom-ref": "7ac4b523bf2690ad", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/10.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "68cbfe2be296eaf6c288811de5964024d476a19d" + }, + { + "alg": "SHA-256", + "content": "53c915387dd77a19f828a05e90ff70170ed58148eea25055eb27cf2feba0ef8d" + } + ] + }, + { + "bom-ref": "90846c299c544b7e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/100.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "3727975d539bae311720f82f7b94f2e5a19cb8b9" + }, + { + "alg": "SHA-256", + "content": "0895053fc3ba1003a19eed2700cd9f481dee7c49acb12bbf5f66318d40ad9879" + } + ] + }, + { + "bom-ref": "8a999f3063ffc660", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/1000.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "f0acf849908509c069b1fb5e6767ad1e4faf2c9a" + }, + { + "alg": "SHA-256", + "content": "5ac4f2e74984bc4a7654c5dcfc91b15d33eae43835ad6208eb1ba8d0fcb32b73" + } + ] + }, + { + "bom-ref": "67a6a5a7563e4132", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/10000.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "dd26665ec239f498586022e24f96c195b879fb26" + }, + { + "alg": "SHA-256", + "content": "9ba675a140deb30a6a10cb01b6bb2292f261d8af9368d036d744750a5a384f7e" + } + ] + }, + { + "bom-ref": "ece32a6675f84d76", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/11.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "4a125cff7e8f7086f700244d9afedc4de22080b4" + }, + { + "alg": "SHA-256", + "content": "f93b07b6a7d5b3e69906ac5f39d28dd1f6ba724c67858dfac4ce29910502fd8c" + } + ] + }, + { + "bom-ref": "9f715569b4b8fd54", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/12.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "1c2c6056e1752d65ba968250277e748632f7d2ae" + }, + { + "alg": "SHA-256", + "content": "03c29316b3b5f7810e412665ce5b0c76a3b85028cbbfd806d90ce7871cc42af6" + } + ] + }, + { + "bom-ref": "2c58f44a9237cb53", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/13.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "f83d9b3012ed2f2e7913333274da41773ea4db14" + }, + { + "alg": "SHA-256", + "content": "b3e504bb7b0d2494467f5e3fcbdc0c6eb9dd3bdbddcad52a3cb78188950186f3" + } + ] + }, + { + "bom-ref": "9b05365c59e7e336", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/14.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "b68a265cabe70e7092e60d03f7b660d408ef66fc" + }, + { + "alg": "SHA-256", + "content": "3a9d88c7a78f53fc7976ae2c5c1fb81a76d7dffce69267ab217ccfc6e102f9f4" + } + ] + }, + { + "bom-ref": "dda82a550267d50d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/15.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "5df6d58a4dbd9572c014b4c944f1dff2571bd2b6" + }, + { + "alg": "SHA-256", + "content": "f85af9c2d29dfe9aa3037ef8846b8ce517e42a7d1a39f9cfaf32327f5f34a9ef" + } + ] + }, + { + "bom-ref": "c46f41459e58c682", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/16.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "6b40169ce21ab2afa1eed811a15ef97bbea93a26" + }, + { + "alg": "SHA-256", + "content": "748ddd3fd76a321878200607787d0fa5a65706733935865de7b981a814bb7005" + } + ] + }, + { + "bom-ref": "ab1282c110d47020", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/17.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "e9194ee6c27b968f541d35fe6a8b15f36cf0ffae" + }, + { + "alg": "SHA-256", + "content": "50df17f99eb765fe8db30c4de7bed8b69710a4c1d018dd06ac57feb828467f2f" + } + ] + }, + { + "bom-ref": "24ad68297003d5ba", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/18.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "181206a8ee0a293e7ad3c610a75fe971b44c7f39" + }, + { + "alg": "SHA-256", + "content": "a9ca115d79775e959a82e01e83caf509dd29338ea09dc23acabbdf26ebf345b7" + } + ] + }, + { + "bom-ref": "291e89cc5658e4c5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/19.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "4c9a7abc70e2ee10aa60412738aed7932a9b9170" + }, + { + "alg": "SHA-256", + "content": "b1e0abb359479a7eee30d71716b28412b25595b612a703a869efd930a14d1dac" + } + ] + }, + { + "bom-ref": "0830633e9518f530", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/1_16.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "314caa848deb26c00879f99d10dbf238948a1a79" + }, + { + "alg": "SHA-256", + "content": "8c9258cfa5520cc126ac3a073e0c28f9c1b00dfae478978db23c3f0fc4991576" + } + ] + }, + { + "bom-ref": "134af5dc56311527", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/1_2.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "e9c51bbfcc94b1d23d3e7acd1cfb759c76a371a3" + }, + { + "alg": "SHA-256", + "content": "66789087e35b4ba7d080488921cf969611278a088a3318723cb7270b55c0d315" + } + ] + }, + { + "bom-ref": "6007ca3a2d149c56", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/1_3.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "38cabea6a3bf4f4dd60da3663eef9f6f352de77b" + }, + { + "alg": "SHA-256", + "content": "2d56c4206b1b17be2af6c6021042721153fc239adda951efdf84412462a7f347" + } + ] + }, + { + "bom-ref": "10c62feee6d804f7", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/1_4.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "4e60848e60d81896278879e0e4a1e58aa1ef3130" + }, + { + "alg": "SHA-256", + "content": "45dd3483064abea0688257e8dfb91fef20d8338e2bcefeb27a51183bc3c99dd2" + } + ] + }, + { + "bom-ref": "76a661969e8fffd9", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/1_8.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "6564475e5979f710744279fd996d535a99c9710a" + }, + { + "alg": "SHA-256", + "content": "3a59f4378f5afc043beed389883ffee28f1c5be0cc1075bd0e018c85e48d1c32" + } + ] + }, + { + "bom-ref": "45626ea22a1cf364", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/2.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "025aac1ba45cb5280efc5081af464916272e6e97" + }, + { + "alg": "SHA-256", + "content": "c0b849efdede0c8ab4a7b934ac92c44850ca64166421a7a2171b9045ff70121c" + } + ] + }, + { + "bom-ref": "1d42d4025c5f2223", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/20.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "765915d809e1ea98803d2523e28cc54dc91a876f" + }, + { + "alg": "SHA-256", + "content": "1542725f9e2fd74c1216d15a92c28da79249cefc22225e6aaaa42888fb3b5848" + } + ] + }, + { + "bom-ref": "31a7c00641570307", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/200.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "0a536df0dc0da6e03cd9328be440497029936382" + }, + { + "alg": "SHA-256", + "content": "0783976aa5c8b9772c1a85a607eee8e8d935183a478f5ddb03c1e439171b2a8f" + } + ] + }, + { + "bom-ref": "f789b9e76149303d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/2_3.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "8c58d4619985400a7363892d23c89da0c91c8691" + }, + { + "alg": "SHA-256", + "content": "304c8f9a77116974200d1ebba3062217f461cd5671ff59f6ce786ddb7114db71" + } + ] + }, + { + "bom-ref": "3f7706baafa385e5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/3.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "cd20ed1da48e9efeb8644f762aa5e89931929b63" + }, + { + "alg": "SHA-256", + "content": "58171a1c6bbdaca54d88b696d4b2783e588f90f3770e8b8d03dca063e468370a" + } + ] + }, + { + "bom-ref": "cf4454ad07a1e807", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/30.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "e2bcdf308d3d8d38dd0dec0f04db06a002115eda" + }, + { + "alg": "SHA-256", + "content": "6041c1081d6df74513efa8eece77454b869b388923c0c96ae095190a3a74db6b" + } + ] + }, + { + "bom-ref": "2aa0f07314e99453", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/300.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "d06203b9124938bc1e97fe74e46667ec2c4c89e3" + }, + { + "alg": "SHA-256", + "content": "34aff18f00bb1d618ea1a9546505ed54f928d5419c6da4eb70d2ed4ca26533c7" + } + ] + }, + { + "bom-ref": "61e274dae3f189fa", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/3_16.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "236cf7d02d7d7914d1565452a231a6e41c49840b" + }, + { + "alg": "SHA-256", + "content": "a7275ec3e8aae9f6594c93ccfc70d34dbca4771326eabe756ca66fa44bc82d5f" + } + ] + }, + { + "bom-ref": "e2ad7635e4abe189", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/3_4.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "2bf289211904074e6d3202bd08f9338235c3da2b" + }, + { + "alg": "SHA-256", + "content": "92a53fdca9bc912a9dbcd8b6479f704abed478dc3385e12f6a9d7e60a0bfae4d" + } + ] + }, + { + "bom-ref": "6e9e6d47b47541d2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/4.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "d8eede02428425137dfde979decb915fb6064f6b" + }, + { + "alg": "SHA-256", + "content": "0b42b370c345be74e120c4bdd31d8ea46a5e498ca4ca4a9111172473ca52bed5" + } + ] + }, + { + "bom-ref": "2b05e468a0451338", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/40.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "d46228d10932ff435f3ebf9f69a34c3883f42be6" + }, + { + "alg": "SHA-256", + "content": "f8834b0f0c79e6c2bbdacb79c92936a8242788537236ce64dae01b3e51788578" + } + ] + }, + { + "bom-ref": "106b68800bf8aca2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/400.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "f268456fd50649fbfb7cff6053c26c312f956e33" + }, + { + "alg": "SHA-256", + "content": "bfade35fd045871d5bf95d36876746faebc22f59bb50ac5343e2e6a380bcb08d" + } + ] + }, + { + "bom-ref": "022d3a9c4a149318", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/5.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "916f7632e5b6429dc0a0df0854608c28a238e491" + }, + { + "alg": "SHA-256", + "content": "80bcbd092eb5c755388abe92d7e3ac42f0507849d45a804cb5757aaa563d6312" + } + ] + }, + { + "bom-ref": "0895ac1cf969e573", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/50.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "e605bb71b22241328133602d4ec0bccaf4198d53" + }, + { + "alg": "SHA-256", + "content": "087808cbf995cfac9dda4f7678b33612b2c22856140daf81efca424177f66975" + } + ] + }, + { + "bom-ref": "2587713bafb002ba", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/500.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "528a3b1721dec91ee47ce40a80f99ecf1dd65e03" + }, + { + "alg": "SHA-256", + "content": "a6c3f4efc4e1fc45bfccab7e9918c0c9ee44c18a3b8d3ef571672abaa8a0fc34" + } + ] + }, + { + "bom-ref": "efbb9d4e2b687445", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/5000.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "5cdfffa710cd31a7f899c5821f29a427450e9511" + }, + { + "alg": "SHA-256", + "content": "3ca27978e20b1f94315518bf66653536c982e800994aa20c1bb3cc84cf965500" + } + ] + }, + { + "bom-ref": "cdc43398bd606152", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/50000.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "25231d36078099018334b6313afc1cbc2646e910" + }, + { + "alg": "SHA-256", + "content": "3e792b6ab4bfaf92245f1b85195d3692ba4c8fbabfa65e0baa6d0548847fb0ba" + } + ] + }, + { + "bom-ref": "8a4c8edc09dc26db", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/6.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a88428268b50c1aff510a475f3a0175af7b706ac" + }, + { + "alg": "SHA-256", + "content": "1d2f28ee9c60c593aa67a94602009b53aca58334f09917fa9ade034e2abd5b9e" + } + ] + }, + { + "bom-ref": "b83904aa6f9f8c68", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/60.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "9e749247077eb7f38fde9c2981c45ee0878320bb" + }, + { + "alg": "SHA-256", + "content": "9d8ef01d1d289467b07915bf8a0f615a78b1fa45a761adf017af8bf24361247c" + } + ] + }, + { + "bom-ref": "c7466955edb80703", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/600.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "0be0b9d0c1e686534ffc776da3d36313e22a00ff" + }, + { + "alg": "SHA-256", + "content": "c35fcba01f56da6c5e485724029f4e1339d4114cdb2463efd06b6e56d0b17b67" + } + ] + }, + { + "bom-ref": "68ad9c977677fcfa", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/7.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "07460495bceb774e835023423a4af055887370e8" + }, + { + "alg": "SHA-256", + "content": "de4a53d7ea4b787cfe55d7dc6147f3cfba948dc7ee0c032042c1481416268883" + } + ] + }, + { + "bom-ref": "572771afb90872c5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/70.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "0ff5addc28f2108cb3aa6170d1a2363c516342c7" + }, + { + "alg": "SHA-256", + "content": "c389e51310a37e0b335ed15e0ab764f16ffc3f92836cdc0f72db1a7308e8e612" + } + ] + }, + { + "bom-ref": "f0508f2735082ecb", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/700.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "2c481812b48f51be6666e90e12db81581bbd2f23" + }, + { + "alg": "SHA-256", + "content": "2b13fc31c3308213095371e4a5569298085c84bb40b838aee59946bf8ca258af" + } + ] + }, + { + "bom-ref": "0e2e26a8e1d118a6", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/8.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "7886c4e078aba542db7a0211c3903fc0daf8754d" + }, + { + "alg": "SHA-256", + "content": "91c13fef4109f19412914e38274dd99c5a08016f4d47b9febe0743084214f98e" + } + ] + }, + { + "bom-ref": "4b25ca71e981e69c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/80.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "b228d64c590e437c4a9302e0caffa77c6083f15b" + }, + { + "alg": "SHA-256", + "content": "a5d14caddd4d0f7312a015b4545abced0bb907a79d92ad2fa48417a9e8a00225" + } + ] + }, + { + "bom-ref": "67004e5945d578c5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/800.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "9ff3591954c050ef9c415c33f272fbabce1cc4cd" + }, + { + "alg": "SHA-256", + "content": "69f233936c119e1fcdfea5711caa88f162ee57c0d6d7c88fbfab884f9b3592f1" + } + ] + }, + { + "bom-ref": "53e2a181db423aa3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/9.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a875270982df054e21486e47b60566ab2dacda32" + }, + { + "alg": "SHA-256", + "content": "994355cdd9ddc89546b85a55928d1752f0f3caec4043f4df0e7a48c8c1dd5dae" + } + ] + }, + { + "bom-ref": "f07b81ac4cda9c83", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/90.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "835dfcb38416d028726ffff3ac7779463beb5791" + }, + { + "alg": "SHA-256", + "content": "a4ea5261c82305fac1c13c5d70f28fe03680f28bfce5f153c90ef7164e19d321" + } + ] + }, + { + "bom-ref": "397c36850dd44a6b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/900.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "9e3d236236edf787b88c8a7d7b277386da5e5adc" + }, + { + "alg": "SHA-256", + "content": "cda0d4ff2a96443e3518d2b0edb9872951e96cec2e9b4072f9617d582d7a85da" + } + ] + }, + { + "bom-ref": "de51f0fc5b94bb42", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/PCM/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "7856ed7ed5ef87238eb6d90046eb2a4b91586fb8" + }, + { + "alg": "SHA-256", + "content": "41110e696b1e4ff5e28f59fe2f544af0a536de8bf99967b30a675db1f11b0f7e" + } + ] + }, + { + "bom-ref": "75f9ad7b65678181", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/PatSyn/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "149ffda4720897d5902730a9561dde912059080d" + }, + { + "alg": "SHA-256", + "content": "685076705658415298a0a07c181094c05e66263468340075a98a9841ee5ebb6f" + } + ] + }, + { + "bom-ref": "26ccbea4798f54ea", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/Alnum.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "e24cc62f281b1524562a4cf822b45cd554464c17" + }, + { + "alg": "SHA-256", + "content": "d347fdb287222cc6b6b9f5169d89f20641ac0252c923edb6edac98a5fa875fc5" + } + ] + }, + { + "bom-ref": "f5b858e004b23906", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/Assigned.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "91796c5c7ede5491613f67acb51ed3ad738cebc5" + }, + { + "alg": "SHA-256", + "content": "c939586074feac62219b6093979e4da8f2de560257f6a2f9b9f5540976b3a91d" + } + ] + }, + { + "bom-ref": "50873de4d172b163", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/Blank.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c800b64f4b9099ee8c48da16447a5d7dc891a9a6" + }, + { + "alg": "SHA-256", + "content": "685e6f71d6a866061e03d37369c411a2557c7e3f81e8e8bc44cd99f2c1cdf573" + } + ] + }, + { + "bom-ref": "9d1c420208482276", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/Graph.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "f4bfe8b2ccc54aad54bcb90ab76fcf0b70f3f2aa" + }, + { + "alg": "SHA-256", + "content": "db90dba71ab507960a2f54f5006a6a141be6538f0d047284aa27ee2b6fd02b12" + } + ] + }, + { + "bom-ref": "987f38bba8409bcb", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/PerlWord.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "de6e8e185c273b287de66e6c03dd868d9ef8b2e4" + }, + { + "alg": "SHA-256", + "content": "75be0dce6673e3f33a3ae3fb1cbf5c40219f7c285d9f14747ce21435ac8ce48a" + } + ] + }, + { + "bom-ref": "023d4b0b14f546ae", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/PosixPun.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "4c1c68977dbeb3c6cb4c8efbe8ec8e2ccc3dcc48" + }, + { + "alg": "SHA-256", + "content": "22b60b3931d41415f8975e2e81522798231a85e828080183824463ff93c603a8" + } + ] + }, + { + "bom-ref": "8dd875615c38796f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/Print.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "57623946b2843d79decd0def63e250d2ac6fa184" + }, + { + "alg": "SHA-256", + "content": "d6140bd64c86fdc62ccd59ef8662194ac6a7a7a805a66b21d39780abdd023daa" + } + ] + }, + { + "bom-ref": "d03a2ae67df1af35", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/SpacePer.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "635c5f96675c9682331b8966b115b1fb42c88ebc" + }, + { + "alg": "SHA-256", + "content": "a8b05ebd255603b30916a0440fd6e932d8c0e25f17775d638a301dcc795d3754" + } + ] + }, + { + "bom-ref": "be5cc4a23114c9e5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/Title.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "8939256c0ceaf65ac077c5e52311962969bea082" + }, + { + "alg": "SHA-256", + "content": "5f34fb065e9550f266af4eecd9654d8d4ab201362bebe7fb0a57b4ce9724d957" + } + ] + }, + { + "bom-ref": "8257ba0533dddb61", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/Word.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "dc8d00f5adee143720a05fb1d3dd82cd84716683" + }, + { + "alg": "SHA-256", + "content": "b86ad27d5ff32d81b515064ab307907591c72735586ad6840d293e120e7f96b5" + } + ] + }, + { + "bom-ref": "567de47d29164ea1", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/XPosixPu.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "1b9fa6e9df3e80acb1d8174ff367c0a54f4d304a" + }, + { + "alg": "SHA-256", + "content": "c480e9354fbf3209e690638bdd0e5bd803dd1d83dca1983bc6f613d86503bc26" + } + ] + }, + { + "bom-ref": "1cf9c10def9b0141", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/_PerlAny.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "5e08e2a7edb6202b693532dc492eb61d45947d69" + }, + { + "alg": "SHA-256", + "content": "155109a7ffdf78f39b5067d00158902c086d5a5e11efb60b0a005873fd23d7af" + } + ] + }, + { + "bom-ref": "add4d1833a67f29b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/_PerlCh2.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "6e22bbe7a114c3bfa7a1d885d2effe4ad9c7eea7" + }, + { + "alg": "SHA-256", + "content": "80aee9e6b17727370e5a9bc281fe90390508a6cf52a20c1e2408480e2f33dd8d" + } + ] + }, + { + "bom-ref": "70b3e1907488bc22", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/_PerlCha.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a3ab93164c0ba4afd5f552760ff1ca2bf84242cb" + }, + { + "alg": "SHA-256", + "content": "d4d5316e5a5d5798986d40a919bbbff3633e4897f67bbd2b3de45b2c1da2664a" + } + ] + }, + { + "bom-ref": "5d3d398a4698259f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/_PerlFol.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "cd2f42a6b503523c5c6bc03f18ce2139061af090" + }, + { + "alg": "SHA-256", + "content": "fd140864ce1408ea7fbf1ee8fa6c5edc6a0bcafde1d1eb4860ce57c5222ffd05" + } + ] + }, + { + "bom-ref": "7615c50041b72c86", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/_PerlIDC.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "d13f7039182b69c65926c6c8b9d4d85447f22df7" + }, + { + "alg": "SHA-256", + "content": "e5343745a8d654c5c1c3edc0aada73b48c47bb6d2fdd1243ec6bb84749ae0efb" + } + ] + }, + { + "bom-ref": "fdaf919ad5cac53e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/_PerlIDS.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "1d63e046bab337d6e4ff5f7b3fc7f9df94c60ecc" + }, + { + "alg": "SHA-256", + "content": "4fc5bdd3a37733855f15d1e3a58c7bf670084ddf114e149521f0d8bf22866e55" + } + ] + }, + { + "bom-ref": "54062e4310ab24ff", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/_PerlNch.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "5d530b1820149f2c3fcdca5e6bc971b3ca557c8e" + }, + { + "alg": "SHA-256", + "content": "cee71593e4d82dbd40f5a371aab6b3b4fe9ec0e1d37993fd013534511231633c" + } + ] + }, + { + "bom-ref": "2b04711361dd030e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/_PerlPat.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "e5bdb2bf7df4898aecc4c11878a15b9392765b1b" + }, + { + "alg": "SHA-256", + "content": "ab70372f5a2d3de00fe2a33bebb5d535c075b08af0a38e908320fbe00ed74d68" + } + ] + }, + { + "bom-ref": "e3fe2655b20fcd85", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/_PerlPr2.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "d48766531929f5c9a3236b8667af45cca1d3acf4" + }, + { + "alg": "SHA-256", + "content": "aa6f45d2085a49a9dd715741d0ac112c403842876e760c6d1a34b84cc05105c9" + } + ] + }, + { + "bom-ref": "df90e66c4525d9a5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/_PerlPro.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "e899e63c7c8f30e200584e1da362476d17fd1a6d" + }, + { + "alg": "SHA-256", + "content": "104b020ba83d6f667c648b944d48cf1c8d4104abb0c03deffc87701d5316a045" + } + ] + }, + { + "bom-ref": "6ce0bf907d2d60cc", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/_PerlQuo.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "23e02a933f90bf35da15461566f15b9f93cffad7" + }, + { + "alg": "SHA-256", + "content": "92bbc62dfe5f0112fbefc59caed88cb734981e6b16104231f4299582232e6df2" + } + ] + }, + { + "bom-ref": "1108159d0bcdc533", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/QMark/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "25b9c59d9f5a00b96286ebba34ccb80c5785bc35" + }, + { + "alg": "SHA-256", + "content": "98d5baa7c13a07618d1738e2e95fae097556d24d5bba3e799e7b6b7c003edc37" + } + ] + }, + { + "bom-ref": "d9992241663d6d5d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SB/AT.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "afb19807c1a1db611e233ff00bb5976b5f75b7b6" + }, + { + "alg": "SHA-256", + "content": "fbed34bc1aaf18f45bb559611916a62f6989eac139b38ed1679a42ce60e75c8c" + } + ] + }, + { + "bom-ref": "a8f49c55be3be017", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SB/CL.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a7e0dea6f83d283dbafc7c3fa45b9ece2953490a" + }, + { + "alg": "SHA-256", + "content": "e1dd7a250e759894f8236d38f9abedbbca48bec240b6e7da941f747c429a6bf6" + } + ] + }, + { + "bom-ref": "ff3ca718c7fa929a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SB/EX.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "7c8349b09c994cde810ca2a00215038548b1caa8" + }, + { + "alg": "SHA-256", + "content": "26f7224a94f2b44187bcaebaf81e01800f3f887d74720014a31b389b81071808" + } + ] + }, + { + "bom-ref": "a902b401c6898d2b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SB/FO.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "0f888aa38b13db5476af4bb6907b4bfaab79b859" + }, + { + "alg": "SHA-256", + "content": "2b6b9b1225ad8728082fe95216e649f57470e0784300adb25ea62fc6ca0c5fde" + } + ] + }, + { + "bom-ref": "a69b272a51b762bf", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SB/LE.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "e14c4e4cde0a735f09c6515f9c3c1ae251c8d5a6" + }, + { + "alg": "SHA-256", + "content": "b2e98d17ed1daad47e1ef3389fcffa06b8e7d4a0de3aed516d8688120a7f802b" + } + ] + }, + { + "bom-ref": "007ff9eec84127e7", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SB/LO.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c911130d829c40612f09ad36163e25e024fb04b8" + }, + { + "alg": "SHA-256", + "content": "bb003014b8f9cb539d69386036096730e4f0f9d7d16a720059470ceb05b6e8e7" + } + ] + }, + { + "bom-ref": "c92dc7b6e5c36f17", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SB/NU.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "7559c7adab9c4ccef801f7c66530c7dd8e7d9b90" + }, + { + "alg": "SHA-256", + "content": "aa70f9f8220779adf1e4e90c6ae42661bf451b0ee453ed989b366c7e5f230941" + } + ] + }, + { + "bom-ref": "faaea49134ca03b5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SB/SC.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "3592201b4564ccf6a7b1a8af5bb687c61f576cd5" + }, + { + "alg": "SHA-256", + "content": "471533f06e10e4b3dbb6b42276e17d693bd466a62823858685907093325db2cf" + } + ] + }, + { + "bom-ref": "60a3e424769f1fe9", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SB/ST.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "3bc312c345bbf9de4e87a107c2168d21ef0b20b8" + }, + { + "alg": "SHA-256", + "content": "96d24a6903d964f5b10f35e5479eab3d5de3b66d3c950ce8a77222ed1af21287" + } + ] + }, + { + "bom-ref": "95de074c76c9746d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SB/Sp.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c0cfce18101991e9d728677b13a824b43eca3ea4" + }, + { + "alg": "SHA-256", + "content": "63d60fc6498daeb4ff8e3083ece0a52d1dbcc6f4de994c95f31ecb251fdc5f09" + } + ] + }, + { + "bom-ref": "24a3d99bf00a8551", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SB/UP.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "89fdd012de3171a45d7869861394fa45eb890d02" + }, + { + "alg": "SHA-256", + "content": "94795e6989f8c313f23b117dbd36ef879b835dcbaf5078f19dc9133a2c29f555" + } + ] + }, + { + "bom-ref": "ebb6749c5d06077d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SB/XX.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "b68e54437f7327a81b026a0e0bfd191401e53626" + }, + { + "alg": "SHA-256", + "content": "fa37d4ad0ed11f5c679bf93a7a0f656723610d8a65b5d01fbf7d922891977ee9" + } + ] + }, + { + "bom-ref": "972f02a846b8a62c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SD/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "01f8b5128c8ab694c672552b139d99a642bf4372" + }, + { + "alg": "SHA-256", + "content": "dcdf1647191ff001275183db73a73c71e0e8bbabbf96a48c0e56649ee9365321" + } + ] + }, + { + "bom-ref": "a2156c7038d28089", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/STerm/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "ba323f9d520c16db435c6d24d356bef86dfb5bf7" + }, + { + "alg": "SHA-256", + "content": "cecffb68d0814a2e6ede4d68ec3f165f15bf6c5fd0c26a102c5291008b3df472" + } + ] + }, + { + "bom-ref": "42eec5fab43486ae", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Arab.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "05af3c8e6c44e860d1ab853ed6347750023fd7b5" + }, + { + "alg": "SHA-256", + "content": "7c458689eaacdf8b26f07aa82c48736a065d49fc2efd66352344921845eb2f68" + } + ] + }, + { + "bom-ref": "2d7161cf82b99157", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Armn.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "31e03b4671717344c338df3f73a2cbd3c349db4d" + }, + { + "alg": "SHA-256", + "content": "c7b4884e4f065d3d9ab79d65467cbc7fce4cc00e376a87891f063c3f2d891365" + } + ] + }, + { + "bom-ref": "45c14aebb1c5822a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Beng.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a88cc08aa5b785341278a539e17c3628bc5d42b2" + }, + { + "alg": "SHA-256", + "content": "ca25509d5ebdb241de2d32cbfdd67c7f6d1326f7978cb06a0b778c396f6c3ce7" + } + ] + }, + { + "bom-ref": "e3f891b75ed8d5cb", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Cprt.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "d00a6fa4c0ee7f5df5f219935b6b849553802dc2" + }, + { + "alg": "SHA-256", + "content": "154ba399d33fb7a85782e47e4b53ceaf1c0899012b04e82b68cc5d7641c6241f" + } + ] + }, + { + "bom-ref": "7bb6e3849d157ca9", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Cyrl.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "e88bc8f9d53b5a77e0e06d59053ca5ddd0d9c165" + }, + { + "alg": "SHA-256", + "content": "d81874cbaf0d31e3c009947123c2bf9a3836a02f89095604c5f5b2989f1e5008" + } + ] + }, + { + "bom-ref": "76c1b60315594259", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Deva.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "4b43eb5401bf3ad5e3f2166fc62bc073c40c32b8" + }, + { + "alg": "SHA-256", + "content": "068e1120d8b01c3af6ea98bce7bf31dba3dc9a38da219a72bd4de6fa765c5568" + } + ] + }, + { + "bom-ref": "d7c2c7e8b9a11d33", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Dupl.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "88ac729f43e64042b2ede2936ef0e10217d279db" + }, + { + "alg": "SHA-256", + "content": "d64973631ce7d3ed0926369e5e70982095d32def8177e6f506facc28c50fabd4" + } + ] + }, + { + "bom-ref": "80a8a9f1937ccb65", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Geor.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "993b4139eadb3241cc00aef240aec38fe4679451" + }, + { + "alg": "SHA-256", + "content": "0572658ed8d4041134d7d5733a025a1f2215fd1d39006afd4075748580504639" + } + ] + }, + { + "bom-ref": "0595460e0d884e8e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Glag.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "1322928c9f1cd5d0677866c2f5bd75a8937f47d4" + }, + { + "alg": "SHA-256", + "content": "0400bf4ac6571ee1e213af09538e53ee2eb1639432c132e2755185dce0e0ae6a" + } + ] + }, + { + "bom-ref": "bb4449e8a250e472", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Gran.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "bf79340d1b12be1ccecec1900bb9537ecb0ca3b7" + }, + { + "alg": "SHA-256", + "content": "a8ba1b7272b164622976ac6f5bfdf75aff5c195ecef7ccbd7bf3560d116c1e00" + } + ] + }, + { + "bom-ref": "18bdac61034c5015", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Grek.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a92c93383407e204cc5d46489260328fc3dda1d0" + }, + { + "alg": "SHA-256", + "content": "075d920dc1ebaa723f17320344221855595a743bc6b778d7da8cc7b5a9a70d00" + } + ] + }, + { + "bom-ref": "a25062bea52bc66b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Gujr.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "917bd8a8cffa212d4beb20f4ab9dc79871373baa" + }, + { + "alg": "SHA-256", + "content": "115a467eb875ffee7e4606886eae0d19c90add191113250240c0b5e76635821c" + } + ] + }, + { + "bom-ref": "8a39ce0749c14e57", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Guru.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "b26a38ecde8a4cc35a8a65277ab0877da2fc0328" + }, + { + "alg": "SHA-256", + "content": "e2d8941ef9c2f892e47724287248c5c48afdba877f54ac8b6b47eb1076ce89f6" + } + ] + }, + { + "bom-ref": "7924519ee64fff93", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Han.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c71ee6b41ce7374aae501ef230c6dd383a2337a9" + }, + { + "alg": "SHA-256", + "content": "a6e55607244388d04c101952cb3cffcb430cf09de337ce43f262622c17ed6d47" + } + ] + }, + { + "bom-ref": "a4731ffec3c976fa", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Hang.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "de80862a8d11ec187e8e61a7abe9f2a140ad5c01" + }, + { + "alg": "SHA-256", + "content": "fa57d51d61ec3fc51782880c054ba87b8bb9b3df3eda48afc028e7441772c314" + } + ] + }, + { + "bom-ref": "fa19507b4bf83600", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Hira.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "0e8e35b11ec1e45a9174b04d8b79d833c448a05e" + }, + { + "alg": "SHA-256", + "content": "971b8087e79e4bda003828d319700feb6fed11dd7233cabc40a5a849ca74673d" + } + ] + }, + { + "bom-ref": "a6cb14ea75960c78", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Kana.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "b740e734c9ca241b8018ae2590d20a806aedc373" + }, + { + "alg": "SHA-256", + "content": "383523c8d308a96e73799ad9c4a385df7f71fa231143e6a3281f278b5e573605" + } + ] + }, + { + "bom-ref": "010dcf1255082b11", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Knda.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "7812b60e1b58446b10f8cb5735de1044192fa702" + }, + { + "alg": "SHA-256", + "content": "672853ee36bfd451a130ea6bd5c28adc15c13dd0d9d8dafe4ad482de2432121d" + } + ] + }, + { + "bom-ref": "d717827505608f56", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Latn.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "5a0520f0859e2eebf0eee8bd8aacde4097978871" + }, + { + "alg": "SHA-256", + "content": "69725dc9d71d9456061256525ec769f1af130d003b66a4d8d86ec4d1790b982d" + } + ] + }, + { + "bom-ref": "a0ac17d8c110f44b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Limb.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "d26173b35dec4ebcf67237bdee9a9f5a34da59cd" + }, + { + "alg": "SHA-256", + "content": "98e00b043903f4f890ccadf647bd647970a4d2f1bc4fd71f8ff792c8858d50a9" + } + ] + }, + { + "bom-ref": "6d196535f638b2f7", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Linb.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "baa6ed6585e495447507271e3e37dec48de814cd" + }, + { + "alg": "SHA-256", + "content": "587402062b2c9fea174f58e686745a1c89b59fe04e3b0370f55293918ade4825" + } + ] + }, + { + "bom-ref": "6345682ebab06c5f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Mlym.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "77374a2f8153312b9a623e678aa0dcac49313697" + }, + { + "alg": "SHA-256", + "content": "eaf98ec0143805ac612da1103ec004d434b553225622d2f29e401da066b6068c" + } + ] + }, + { + "bom-ref": "48a9eebfe9731a7c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Mong.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "36864336800738c6808ea9d86bfa5312255ad0d7" + }, + { + "alg": "SHA-256", + "content": "2aa0c57c06600a105d29cf5e0b00917b992cd70ccc88e73ccfa76aedbadb6dda" + } + ] + }, + { + "bom-ref": "0299a67b87b8da34", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Mult.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "3444e0882027ffad601b896795e7b87b33d7dff1" + }, + { + "alg": "SHA-256", + "content": "aa10c2969f9de61afd6c261da12af05ee14fe173edb855c6ad1877ba88f32e15" + } + ] + }, + { + "bom-ref": "17117f49c83fb722", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Orya.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "31c35943b57240b9f46b44880bb9e06c2d87d0fb" + }, + { + "alg": "SHA-256", + "content": "cd7851f06bf4c921401746a80da63bfeba9992c2e19a9cd9e0f41d9033fb49e7" + } + ] + }, + { + "bom-ref": "69987c207c6bc048", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Sinh.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "f91b03335bfa0d7d790dcad11af649b27429b448" + }, + { + "alg": "SHA-256", + "content": "46d7e510621a5efff7f6e3049a4034ba90f7980864e45bb0c2d780dcb9777080" + } + ] + }, + { + "bom-ref": "6f882eda7b93274e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Syrc.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "8c79479ae9d7c53dcb1639216d7c9fb364c9fffd" + }, + { + "alg": "SHA-256", + "content": "293176b33747188ac47657843848c2a92f3b165ca52bf11d84226a547b4aaa30" + } + ] + }, + { + "bom-ref": "25b3b6a8b57142bf", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Taml.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "1acc4a3ca6a5b7da1b1393ec25ab1e3cad4d7b55" + }, + { + "alg": "SHA-256", + "content": "c837a3fcd38742a8623fa071eeccc3182d8f19c5c8c292cd3067a8d66689ffb9" + } + ] + }, + { + "bom-ref": "b58c3d9b6fd87f52", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Telu.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "aeac548c3056d17a69ee93bb79114e996116907b" + }, + { + "alg": "SHA-256", + "content": "dcc310c988b8577e9c9a2883d35eaeec7711dde5efda4faff5c7f3cf6c4b8641" + } + ] + }, + { + "bom-ref": "3141a6a9dc24de4d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Zinh.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "6763c6956c5be62f6e438af2d80535faea2895d6" + }, + { + "alg": "SHA-256", + "content": "2d902e28682147e361d61dca3a00367583e7b7322627a3221fd573cea83ab22a" + } + ] + }, + { + "bom-ref": "e54fef1a3b20c0c1", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Zyyy.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "081e67478ddb7986e4cd1be26adc43ed0e219dcf" + }, + { + "alg": "SHA-256", + "content": "272769ccbea9833a5415b23063ba304e38ea092b71c210e1bf8570c077babb72" + } + ] + }, + { + "bom-ref": "ab8ecf786a51bd65", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Adlm.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "b98eb17c576206c90d8e75bc1a1921431375a254" + }, + { + "alg": "SHA-256", + "content": "d0f38519b5fa10a3d52d979749edb89cd8e24598b1c467918c8ab31fc3df2f98" + } + ] + }, + { + "bom-ref": "55fd6e49d6df291e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Arab.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "bfea54e2fa026f2d3317e3c1d958c136f7312f60" + }, + { + "alg": "SHA-256", + "content": "b842174d547f311bd414a3083f5fc32c2387171c12c10f4a3bf2bfbbf40b1714" + } + ] + }, + { + "bom-ref": "5e3f89007674c118", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Armn.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "e5149ee135d2df4d02a102af8bbe7929942ff41f" + }, + { + "alg": "SHA-256", + "content": "b6b258f55f5e1ab4d817e9cb703c1fd5ad52a0ed0264df69f1b207dc4566cbc0" + } + ] + }, + { + "bom-ref": "b7dfe2a6ec54fd43", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Beng.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "776be165e3188443821d518e3f531a53548db499" + }, + { + "alg": "SHA-256", + "content": "537f9bd9799379dde4332e7901ada4f47e47575767880fe6d62df33a2951044a" + } + ] + }, + { + "bom-ref": "96b449a63543b2a3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Bhks.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "400e0924ccb09b311499ad29456fa1209c876bc0" + }, + { + "alg": "SHA-256", + "content": "19779f34f95a4f2f06796fd2c96673e259381328a46843eec7737d6f199915bc" + } + ] + }, + { + "bom-ref": "2a4b5ceda1345627", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Bopo.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c70bd8a91c4b3e12c44afb425b841dbe4f1f03af" + }, + { + "alg": "SHA-256", + "content": "4bee517f813ffea4836fd1f9aa16493e3ddb88cd2b54d3e96080af736818670b" + } + ] + }, + { + "bom-ref": "3c20a783819c632c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Cakm.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "406c4404a5c4739d7894e8a64c86bf5f2bb96599" + }, + { + "alg": "SHA-256", + "content": "249047cdea75de4546381562efe1c5fbc02188b904a7796e5a012be8deb13214" + } + ] + }, + { + "bom-ref": "4f7aca256d36f464", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Cham.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "7b17e67879b0cabdfd9148d4fc457c2436ccfe29" + }, + { + "alg": "SHA-256", + "content": "1f40f78536b1df748d57b77ad0d354800d7fe4af336c4d46ba48f61565bf3222" + } + ] + }, + { + "bom-ref": "797edf46c6baafd3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Copt.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "637432ced0a1c1d4f841b0b8e3c8e83af789c4a7" + }, + { + "alg": "SHA-256", + "content": "828a852bbdc3d566b5f4ad39d72fab829ef15db29c8d013bcf79abc61a10013d" + } + ] + }, + { + "bom-ref": "4fadb25c58cc7d29", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Cprt.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "100a4a195e3cdfdfe2146981456e4da9ef46833b" + }, + { + "alg": "SHA-256", + "content": "b78e93a90e14c57cce731ac39bd31d29eaaf86a05245e0faca5351010de3e466" + } + ] + }, + { + "bom-ref": "587966717c4bcb42", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Cyrl.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "61a1272463c9996d1658842a15c8ca35d7e836a3" + }, + { + "alg": "SHA-256", + "content": "8d3fcf8d98358ea933846dd40ca30f5e58fd102290043a0e3cddfdf1c8bbfd5d" + } + ] + }, + { + "bom-ref": "e929ce87df205243", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Deva.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "be09ff7755703f165ff3f80c10960655715767e3" + }, + { + "alg": "SHA-256", + "content": "34df473039128e85574be2617249161196e5e0dd0521a965a2a2e978e0076ad0" + } + ] + }, + { + "bom-ref": "db2515e997e28871", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Dupl.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c0c910d5c32b1c3de3b8ebf2905b35a00086ff77" + }, + { + "alg": "SHA-256", + "content": "e816bae05474d2a0b047f23ab0ab6e0b090787c9821b4532fa49fc3db91fd98d" + } + ] + }, + { + "bom-ref": "a900e226e7c4f408", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Ethi.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "1e53baf691ed37c5aaf3467541fe9c754a14e656" + }, + { + "alg": "SHA-256", + "content": "9c8a6e54af70b32e9bd2ccee7714f8ccbe601fd95a8b916ed42f754674872eac" + } + ] + }, + { + "bom-ref": "8e5d53ead09bf341", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Geor.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "50841d7de867416ea4c7ab4aa45b10f310f30f4c" + }, + { + "alg": "SHA-256", + "content": "8a01fa43e92225858b979693113b7935f5d30d41b8ceac3ba68def3324363a31" + } + ] + }, + { + "bom-ref": "1f10250d691ea0e9", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Glag.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "de0370973cb99e64fa01304febcb5bd234abbad5" + }, + { + "alg": "SHA-256", + "content": "ed7e64a7f6f74b993268fe5c03454066ef306c9432b571c2afc966d9ecd697bc" + } + ] + }, + { + "bom-ref": "99ccb142265b0b06", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Gonm.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "f4b9547d6648bc818a5edc3297275a87e883b361" + }, + { + "alg": "SHA-256", + "content": "24f515d7771d270d0b4224065f30cd7e396f9786acaf04b114016821d74f56aa" + } + ] + }, + { + "bom-ref": "5bbf84c6d37f2515", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Gran.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "447e2035f7723125247fc5b4f5b6496d7311d5e4" + }, + { + "alg": "SHA-256", + "content": "e1f1a0005108a5e75ba068640bf04c43040a0ce349871b3624170fd0e283d2b8" + } + ] + }, + { + "bom-ref": "281b61d6acb1f934", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Grek.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "1b3081735b9dc0a4de2f4b87151869f7dabf402e" + }, + { + "alg": "SHA-256", + "content": "e38b1e797b6b4a51c71ea894e907d1c42128aac229f768f06f6a7301028cffa4" + } + ] + }, + { + "bom-ref": "02bba784446be85c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Gujr.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "dc71e686fe097effe4cab71baf3624a17f19c101" + }, + { + "alg": "SHA-256", + "content": "9c25984371ec603c9b4af0868f67b32a092f9b060517dc5377ea5c4facb9bf5f" + } + ] + }, + { + "bom-ref": "9960ddaf30ead2df", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Guru.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "cd657894b534cb02cc4bb84832e41f7836275569" + }, + { + "alg": "SHA-256", + "content": "5e4d2d3ce1d53b54ac618e119bc2b7898843551c226f17222f8b48f6f8452b58" + } + ] + }, + { + "bom-ref": "78f1200cb85b6754", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Han.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a3a807c403c1d56fabe01a8f061f025c601128ea" + }, + { + "alg": "SHA-256", + "content": "860d0f3df01839ba2c5d9ce15cc6009ee534513ab787acc8be57deaeed1ebc01" + } + ] + }, + { + "bom-ref": "fe4671c348679964", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Hang.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "962549741ad969e1d206d3ae667b2cb08c65e4bb" + }, + { + "alg": "SHA-256", + "content": "6ec84d61b886f409b5f445d628244290b5ef76dd82f2e420c62a01b0f041bfee" + } + ] + }, + { + "bom-ref": "a6bdc543d233bb1b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Hebr.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "84757b09b732e63890e114a1e92dbbe9536997ae" + }, + { + "alg": "SHA-256", + "content": "269f9b9798cef2d7726b9d468dfa9e0b5881cd08ba9f474f0aaab37ea31d310b" + } + ] + }, + { + "bom-ref": "e4e8651b2b5724ee", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Hira.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "37d486c5f2056275454fa85fd26e73901bf2e200" + }, + { + "alg": "SHA-256", + "content": "7102721b57e68c616f9b3be836a61d8bfe2d844e13efd578faad53024f15f29f" + } + ] + }, + { + "bom-ref": "2189cc572b94e340", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Hmng.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "60f3eb00e9cdb124413dcf58ee1e9a51bb3f16ad" + }, + { + "alg": "SHA-256", + "content": "b21bfbb06d111574226585321b814fe5848ecae3b82a73e312c427d50bcaac55" + } + ] + }, + { + "bom-ref": "02007f6a349012c0", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Kana.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "cec18101979c0c1e386ce9767fae592ed0395289" + }, + { + "alg": "SHA-256", + "content": "746b746debb50ec9ad9b4d43440c460c1de4752577c6dd705cb4f1ae7f5690dd" + } + ] + }, + { + "bom-ref": "3424d0775da3ed25", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Khar.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "ffa5613b20c0c9bd336e40033ef64f026a4677f3" + }, + { + "alg": "SHA-256", + "content": "dc841b83289d9df1f3264f35f31f7ff01a8b11124f6470abb58ae81770420f1d" + } + ] + }, + { + "bom-ref": "f515c69fb5b3c739", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Khmr.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "446f65053589a9041bd93da8b38cc6c01f3506d5" + }, + { + "alg": "SHA-256", + "content": "117ebe2777b90a2026e651db8ac9e9e69eeed8dc6cfd6eae04972d7107721215" + } + ] + }, + { + "bom-ref": "0de8882ea158bf65", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Knda.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "d97db88035b3319fad7896b0debb7dac268c5f75" + }, + { + "alg": "SHA-256", + "content": "dc6404b88a99648491882ec4ba7c14656c5ab660f8bd5051d47d5073c6daeb24" + } + ] + }, + { + "bom-ref": "73045ad2464b187e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Lana.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c88f502fc7d5e92eeb81c146da5fc3dc1844e232" + }, + { + "alg": "SHA-256", + "content": "c224b507803412fc3ce2db7c8c622ef0a5f6f229c24ad20a699500ca2339c24a" + } + ] + }, + { + "bom-ref": "b98c8a31999298f2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Lao.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "0bfbfbc8361e639905d81eb0b80b1f4509aa0e3b" + }, + { + "alg": "SHA-256", + "content": "4e3592576bd367ba5b6708daee0f4374d085945d9b587a4ba5268548868d6012" + } + ] + }, + { + "bom-ref": "e3818f717afce736", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Latn.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "d1fe6ac9ed9fabc4a80f1794c6b504f05f76c3d2" + }, + { + "alg": "SHA-256", + "content": "d6fdd416851b5a7426daab5c172ab47aaff3e8a13e7025710103381be2c04faf" + } + ] + }, + { + "bom-ref": "10c51c090f2e2f1b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Limb.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "078327f0d1be431f6b594c9cdc47e691051de87f" + }, + { + "alg": "SHA-256", + "content": "e6429d77abb7ca195f4a1f0a9a2c6a48739e9a607cdfc58a5961111d1948e319" + } + ] + }, + { + "bom-ref": "5e69d2ddff9c759b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Lina.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "d35227396a702518057f40efe496bf6fd2095875" + }, + { + "alg": "SHA-256", + "content": "820dccb48a8f37c106b7b470f3366c345972ecfe837f50e3dc63d37397b2aed0" + } + ] + }, + { + "bom-ref": "6ea575ee0e99ba7d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Linb.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "5ffda753e43ec91cd66f4ab8fc214bb054f984fc" + }, + { + "alg": "SHA-256", + "content": "c1f0c945de13c9475b63e4b476159366990da289eb73cb13cf10f8378c9bf214" + } + ] + }, + { + "bom-ref": "2128277ccf718d6f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Mlym.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "fb315a39a075868e9e4547255a5e03bdb760f3ee" + }, + { + "alg": "SHA-256", + "content": "dc007c64d6a06f01e155a5c76849a04d8d203f9d96b30b867d592df71f5f6e05" + } + ] + }, + { + "bom-ref": "4d320c95fcb790cc", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Mong.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "92b30dc3b14dc3f7d9088633a4b5007831c0c713" + }, + { + "alg": "SHA-256", + "content": "658657045928a90bddef580a0b0133525e17d1f9e6d427589e0887f35030f2ce" + } + ] + }, + { + "bom-ref": "d63300a330a11ab4", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Mult.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c9f93f8e37bb0117f88091b9a16c416f17d1d198" + }, + { + "alg": "SHA-256", + "content": "6d89864335f80f813a2206c350bb020122cb3918f73b2cfac9c45189c8c4e16d" + } + ] + }, + { + "bom-ref": "c5d440342ad5edf8", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Mymr.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "714e3af1f32d481d23a5d789310337d2d4492a5b" + }, + { + "alg": "SHA-256", + "content": "7c09dcb5c71985a6755db1d383a53ccba6a90515880f38cdacee3937815486ae" + } + ] + }, + { + "bom-ref": "709c95bd12759806", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Orya.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "3b19fa258935f69c84cdc4f58d7c0c8c6604ce95" + }, + { + "alg": "SHA-256", + "content": "8a318f9962732baa5dae0d99796860fb221afd76de5d64cfb035e22b2f94190c" + } + ] + }, + { + "bom-ref": "dd3e0d07d7106996", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Phlp.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c3b38bd26bff8943508da2d4dcf969e1213fffa4" + }, + { + "alg": "SHA-256", + "content": "b501fbbd6e1d1980cc3fbdea87569062763c7814ceb5102c956b6121f9b6c478" + } + ] + }, + { + "bom-ref": "ce5a5ebec6baadf6", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Shrd.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "415f8035c82088f04cf3d6916e1c355c37c787e9" + }, + { + "alg": "SHA-256", + "content": "7c2f07a67335dfdb217ae689692554d6ce86ea0c270d57a233856f03ae0b2ba7" + } + ] + }, + { + "bom-ref": "4633674b9e2c828f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Sind.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "2fc6f1e4fa087c0a0b6604467015a19bf18fa9ae" + }, + { + "alg": "SHA-256", + "content": "31a994689c0be70cae29b487e0e5fa6ba9824a3e1f5c17d70dc309bf5fe07f06" + } + ] + }, + { + "bom-ref": "151acde9b83b3dd3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Sinh.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "d8e9b83e33c406998cebc83510905178636327a1" + }, + { + "alg": "SHA-256", + "content": "8f601397c339ddaa9dc9d9dbd6d7d3aadac1b002df2275042aeff65235fec48e" + } + ] + }, + { + "bom-ref": "dbcf1efc53fbca8b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Syrc.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "b6d4aa7a8f2505fd2e63fe720efe5d453e5c561e" + }, + { + "alg": "SHA-256", + "content": "ae2528f2184288aa0763606e4a609a28699809dcf3c4d25128066fe0b7d9c5db" + } + ] + }, + { + "bom-ref": "d34c2bc17c96b196", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Tagb.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "7a014fa5b871aedf1b56449862c359c31af0dbdd" + }, + { + "alg": "SHA-256", + "content": "86a4026845539bc274172c57168cb5074913b2c065c570b5c36578eb3ff01cc3" + } + ] + }, + { + "bom-ref": "bfa9f44d4a614109", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Takr.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "992cc83a23dd7dc10320bb35b149699a9f8279f9" + }, + { + "alg": "SHA-256", + "content": "a568736c971ff7f413e31947283c5fb504baf8a58390ee03060b2cea28c64c93" + } + ] + }, + { + "bom-ref": "5a0646714aa52827", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Talu.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "313135b43d8a37d2fb197b40c0a9b308ebc7ed33" + }, + { + "alg": "SHA-256", + "content": "c065dc61853df82316b796bf26a8e632803ac31ffb9bd5b3878a7d6afc48ffbe" + } + ] + }, + { + "bom-ref": "c52ce839b8ebf061", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Taml.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a029d879b105006137cc7ffb23a3d8afcc810abe" + }, + { + "alg": "SHA-256", + "content": "3650671d47aff1c3fc807b483c7c75d259e5080c8db28a21485ee8932749a46c" + } + ] + }, + { + "bom-ref": "bf22bdf87bd6b6a8", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Telu.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "d119ddd7a350e868ea4fbfdc35886e4cea210ded" + }, + { + "alg": "SHA-256", + "content": "472282ab964381b1e3d42fd8a21a14ac9dc893eec45271e021d68fab6629a2e5" + } + ] + }, + { + "bom-ref": "955b53ec10a419d1", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Thaa.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "70157cc820288c32448192d891e1be8ce398948f" + }, + { + "alg": "SHA-256", + "content": "d53974bfbadabcf925b4e454b9b785bdebff96b0d555280ca4e2cb04faa8706a" + } + ] + }, + { + "bom-ref": "8ebf91df215adc19", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Tibt.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "418d2dc794f074324072a062a4aad9d2414b8764" + }, + { + "alg": "SHA-256", + "content": "550372b4194556e776b3d7c582f798166751877f4c4f9725a2d9eb2df860907a" + } + ] + }, + { + "bom-ref": "e22607d31d72df94", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Tirh.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "071effc097245a4b5633765745daefd60dc08b0e" + }, + { + "alg": "SHA-256", + "content": "1e735616d21651f9ad720ce107598a7b079565b65af42c72338ec5617dbd2773" + } + ] + }, + { + "bom-ref": "7276e5951e9a984f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Xsux.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "487a4f8dc0dd8458f0145a431e679c0636589a13" + }, + { + "alg": "SHA-256", + "content": "27cc4079760b4a3fb3a9fe3070f551e5e672f2a9bf5893ab4a079080d061f2bf" + } + ] + }, + { + "bom-ref": "06dd1f8065d95e0e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Yi.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "8cb8e258569aefd06aa803a6e8e30c66d6519c2c" + }, + { + "alg": "SHA-256", + "content": "3cf2ca166c9cf3649419e4fbf49e37a4690cdd98a9683affd2c13541837e2fe5" + } + ] + }, + { + "bom-ref": "5db86d3f0262e9f5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Zinh.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "dabc4c453eff89f1ac008883f88b284de9221010" + }, + { + "alg": "SHA-256", + "content": "1eba8b8bd3296067a5a4d5ec59a7202b7bd1900a90fa7ad92f3ed20be5f6d51e" + } + ] + }, + { + "bom-ref": "1a5984901d4ef639", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Zyyy.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "dd4c355869ccd42ebfe26b633c76de9b1625fc08" + }, + { + "alg": "SHA-256", + "content": "6056d6013fc84cda77273e5511b308c78c4261316b2a183ff3f42d7730180e6a" + } + ] + }, + { + "bom-ref": "da3dad5ddc585ce4", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Zzzz.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c61414fe0514ac3ccb7890b5610ab8853354cfd6" + }, + { + "alg": "SHA-256", + "content": "c571970d8b558a70f6c5da7bcf610b48e4b775d910e398f8dd6be807e855d34f" + } + ] + }, + { + "bom-ref": "4ab6f94b26764069", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Term/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "4d8b2f9efe53455fe6684699f9acfbd3938efa1f" + }, + { + "alg": "SHA-256", + "content": "ffe5e6cdea14b3268591bdec0d941b22016982982e262d67707b10f36fe9c232" + } + ] + }, + { + "bom-ref": "e87d668ad5590b2a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/UIdeo/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "6b3678cd861f6ad69f0fa078d99abf663069b948" + }, + { + "alg": "SHA-256", + "content": "81ec72c987fa9a848f94e9d5e42a028d2ea11a6ceb958480508c0107cc04667a" + } + ] + }, + { + "bom-ref": "17ea6a84677eb2d9", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Upper/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "88ad544510a01e44938bad518706670945d0f59a" + }, + { + "alg": "SHA-256", + "content": "ee21717ce1c6dbecf04743139f66b7d0a54876dd26e1fe46b3e22e80e1f60c26" + } + ] + }, + { + "bom-ref": "9941221059e1e6fd", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Vo/R.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "1cc483e077ba8b6ad5607ab5c51508a17ec03904" + }, + { + "alg": "SHA-256", + "content": "bd8812289efcc4faaa56e2411b196d15aa74e97df166b3c3e1e84d09f16444c3" + } + ] + }, + { + "bom-ref": "9e9a6e1e8ae0c651", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Vo/Tr.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "d98cf17ab0ff8d6af6fbc2c3737ebf4ac9cd84c5" + }, + { + "alg": "SHA-256", + "content": "9a023030433092de52fc0a2a07db86baba747cf9cdbdb30870ed00af1a5059d5" + } + ] + }, + { + "bom-ref": "a0fac9f301b59ca1", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Vo/Tu.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "9ea551fbb35fc40efb3334142574553a4f949c93" + }, + { + "alg": "SHA-256", + "content": "a38a08ccef6ae0ccecf1851b2010c0d241fff08f836683295a61037f38bc2a26" + } + ] + }, + { + "bom-ref": "93063de0aa3193a5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Vo/U.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "8da6d30cf4041fcde9d6abe04d25a5dc04f06c48" + }, + { + "alg": "SHA-256", + "content": "6c29dfa812250f4a1697d99007b557317feab1199b3c13dd8aad031839be3eff" + } + ] + }, + { + "bom-ref": "6d8f6349c6c60d73", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/WB/EX.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "cc50719b64db32df1f965adc7e70a884cb0a8326" + }, + { + "alg": "SHA-256", + "content": "76c30a2bb4f548c97b6ffd9de104e50578f72d7dcd4f6644e08178c2755a8b59" + } + ] + }, + { + "bom-ref": "a2d173dc16a55c9c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/WB/Extend.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "668e04a9007da4dc74ac376ea9709618573f8062" + }, + { + "alg": "SHA-256", + "content": "1f8cdc0385504c8decf9eaf1f6875e45adb2dc3c4b40675155c73faad0dc5b9b" + } + ] + }, + { + "bom-ref": "826f710f5fd419b2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/WB/FO.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "2031f6b9d7e3a9e01262e129343c0427aef45514" + }, + { + "alg": "SHA-256", + "content": "63955f6f52a0f863c844303cb6f2df5b4d70743cedad080b0c21dce50e13ea65" + } + ] + }, + { + "bom-ref": "3dafd4a2710292ba", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/WB/HL.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c6f9d0126706ac027f62de5929a9762200dd28d1" + }, + { + "alg": "SHA-256", + "content": "3849af7ad94e7489a38e417359442d0a42a9e7449c2ee528fe535865d25537d2" + } + ] + }, + { + "bom-ref": "6e23956c2932974d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/WB/KA.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "2c52eb591c16dbf3719525e83ccf21f28a91aa04" + }, + { + "alg": "SHA-256", + "content": "398fbb581f6fc9841c61abb4248d487a0f803d2db0858331b2cac00e6b402cf8" + } + ] + }, + { + "bom-ref": "001c4af95e835a25", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/WB/LE.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "eb17a90ddab51ec80e40d9dffbf73b89f04a36a9" + }, + { + "alg": "SHA-256", + "content": "1b7737906c1ea741dc1967e383f2c5a32e06099a1871a2b638ffb489fce670cc" + } + ] + }, + { + "bom-ref": "2d86f61937305679", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/WB/MB.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "ae26b575e4bd4085c226b860e93554d5d48bde9c" + }, + { + "alg": "SHA-256", + "content": "6a05346d2a93c05790dbd1eda4af3f9d4e5f41afa6c31d6feda5bb1a4e0fe3ca" + } + ] + }, + { + "bom-ref": "ea9ca70da13633a3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/WB/ML.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "0d70eec900de6ed59874686197dda81b3ec7ffd5" + }, + { + "alg": "SHA-256", + "content": "f15ee00643baf3f66c4b0868d31ced360ef8201095806ddd3128fb00e0ad313c" + } + ] + }, + { + "bom-ref": "f226414e8bceebe3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/WB/MN.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a50cf3ef18dbae3b87cc0514f809a148eb12f535" + }, + { + "alg": "SHA-256", + "content": "f458e7f0495cf11ea6b13e867cdbd830943761aceeebccff3e9861f8ad7d9f81" + } + ] + }, + { + "bom-ref": "558ffc4d59ed6922", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/WB/NU.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "f91cac5502dc480f442e7b93d63446006edf8c11" + }, + { + "alg": "SHA-256", + "content": "3fa78e29e157412db0024fb9bf896d0eca1e8ed46309f6529a56bc1aca6b488c" + } + ] + }, + { + "bom-ref": "f4700ebe4c56a13d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/WB/XX.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "002e9b5e999a2683808cfde84bc77bb3a4c48824" + }, + { + "alg": "SHA-256", + "content": "c81cf745a2ce6449abf999a577eefa3445c60e3f5ba567b1e85483b4b455d647" + } + ] + }, + { + "bom-ref": "d33b405d6fc8fe57", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/XIDC/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "63a521072f1bf0885fee9d60e0af5873b28538f6" + }, + { + "alg": "SHA-256", + "content": "661fee477084217acd3c162aeb7489e92ad827dac48d5978c2ccb37d46988c34" + } + ] + }, + { + "bom-ref": "a14396e914968e31", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/XIDS/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "63ec23a55ff550771584095dd426a4e3cb9bb2d3" + }, + { + "alg": "SHA-256", + "content": "3f3ff636724fda5ba689d066f701c186b0b394f129fce7a1e0f2e62707b1eab7" + } + ] + }, + { + "bom-ref": "06c67c6a7689d33e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/utf8.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "b43a646db31947e52e0dd497dc0391adbcc32fbf" + }, + { + "alg": "SHA-256", + "content": "3e8c5dbbcc41514f0329f1d91a69acf39c8666cbceb43932dcf546d34b0f33e5" + } + ] + }, + { + "bom-ref": "b7e4b5ee51c851ad", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/utf8_heavy.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "8b9df7a96d80741fd23e2841b41adf143013150c" + }, + { + "alg": "SHA-256", + "content": "dd1cea927bfb0cd3ddc6020ee822aac3745aa7723ccfbd4beb1d70a652224a4b" + } + ] + }, + { + "bom-ref": "7e6b8bb763d9d52b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/vars.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "5065f6654a4598e951d37460b859d7f2336d051a" + }, + { + "alg": "SHA-256", + "content": "2c8f74e255d3f1157bf44e9f6764d93f15540adc8eb10ec67b57f0438cb455fa" + } + ] + }, + { + "bom-ref": "3063b6a571663c67", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/warnings.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "4c476f419f8b3a58fcd1174c50ec277e5e53e59b" + }, + { + "alg": "SHA-256", + "content": "87271a4ecdbf35210db836e7afc48965081c5dfa7f1938cef4c265ee2becd856" + } + ] + }, + { + "bom-ref": "4bcf7ce00f2bc84c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/warnings/register.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "d5d2c542dc97b134df36d6966897a61d2de1fde5" + }, + { + "alg": "SHA-256", + "content": "962110d3faf3e55749a260d97edaf8a9d31293b0f33d2e7771663a9ef364aa94" + } + ] + }, + { + "bom-ref": "9f8e9d972f184e24", + "type": "file", + "name": "/usr/sbin/add-shell", + "hashes": [ + { + "alg": "SHA-1", + "content": "47e9e8533982606eb7b5b1c76e17a692d87917e7" + }, + { + "alg": "SHA-256", + "content": "959e8afe5754f4f09e70e95f3aa952d265e9344b0cb635663aeb4bbf70347bf3" + } + ] + }, + { + "bom-ref": "cfafc156ed926524", + "type": "file", + "name": "/usr/sbin/adduser", + "hashes": [ + { + "alg": "SHA-1", + "content": "a816eeefbd97e85c2440879c7bff331ffdad4be1" + }, + { + "alg": "SHA-256", + "content": "f13ad85950859c760c12b090241c723103a9ce9c1034b03db695a4b39fa5623c" + } + ] + }, + { + "bom-ref": "5b2d23ccf14038ea", + "type": "file", + "name": "/usr/sbin/chgpasswd", + "hashes": [ + { + "alg": "SHA-1", + "content": "728cbe062adb3da0afb7412750cee21c7b0c3ea6" + }, + { + "alg": "SHA-256", + "content": "dbda3ab0df73fbd7c6e8a5c3c4032d930f1488675110f05a9c25e3265af3a203" + } + ] + }, + { + "bom-ref": "cae8fa9e14626bf1", + "type": "file", + "name": "/usr/sbin/chmem", + "hashes": [ + { + "alg": "SHA-1", + "content": "ee1a35d71c7ec5a101ef35da24f99e15cb21ceb2" + }, + { + "alg": "SHA-256", + "content": "1087e09e36e4d389938a8b0354dc2be91580b1a22e08b44539711fa8d8b2e777" + } + ] + }, + { + "bom-ref": "5f8610b186bcadf2", + "type": "file", + "name": "/usr/sbin/chpasswd", + "hashes": [ + { + "alg": "SHA-1", + "content": "bceb4496bac4eb5a5820570a9adf71854fe8795c" + }, + { + "alg": "SHA-256", + "content": "214e13ae4f9f3a5b6df5fa3a78ed1dbddf003173e32f0e7bab2133a582dc3572" + } + ] + }, + { + "bom-ref": "ade958e3184e6382", + "type": "file", + "name": "/usr/sbin/chroot", + "hashes": [ + { + "alg": "SHA-1", + "content": "c66fd8ca4593b599e3d3e5f8704a35d14794cf40" + }, + { + "alg": "SHA-256", + "content": "cfdfb4ae550de4f89ca9a2658a84b738da04fb205b16626146b641d3a82eb4b3" + } + ] + }, + { + "bom-ref": "598b48691a5984a1", + "type": "file", + "name": "/usr/sbin/cppw", + "hashes": [ + { + "alg": "SHA-1", + "content": "cd875c7785de62f5a8f5ad1042f130c1df7437ef" + }, + { + "alg": "SHA-256", + "content": "7b809806dc857d1bd0a9a8cea0a117d68014a30035231b1853231a833c563a9b" + } + ] + }, + { + "bom-ref": "439dc9750494e848", + "type": "file", + "name": "/usr/sbin/deluser", + "hashes": [ + { + "alg": "SHA-1", + "content": "42f487960855d0cac935dd1aed90828f1edd357c" + }, + { + "alg": "SHA-256", + "content": "916a9338b199f8e78086e7ea787b992f5672c62cd693c7a2f9b1c6f74c8c0fda" + } + ] + }, + { + "bom-ref": "b4945c4204ee25a0", + "type": "file", + "name": "/usr/sbin/dpkg-preconfigure", + "hashes": [ + { + "alg": "SHA-1", + "content": "fe7f225c5a0dfc40f9af3cb119f44ff94ef1b64b" + }, + { + "alg": "SHA-256", + "content": "be85745cc3f23a9bd5d9eed0aa8fe2c4504abaf1c5e669120432ee35dee1c479" + } + ] + }, + { + "bom-ref": "836657f3cf735ee2", + "type": "file", + "name": "/usr/sbin/dpkg-reconfigure", + "hashes": [ + { + "alg": "SHA-1", + "content": "f46ada5edd0ba3a95d948ea46925bddbcf1458cc" + }, + { + "alg": "SHA-256", + "content": "a6aadf25a48b6662b185a4a5bbbb3fb53d1ab72beb43087c145deced9e209844" + } + ] + }, + { + "bom-ref": "a140c671a2ee39f6", + "type": "file", + "name": "/usr/sbin/e2freefrag", + "hashes": [ + { + "alg": "SHA-1", + "content": "ab45689d0f0bf91ecac7a30ae4fd5bbd01617fb2" + }, + { + "alg": "SHA-256", + "content": "16cb1c6021990d46aaeac4384e28281c88113cef4f3b60f822af4d02beb501cc" + } + ] + }, + { + "bom-ref": "2990087c0af3fe95", + "type": "file", + "name": "/usr/sbin/e4crypt", + "hashes": [ + { + "alg": "SHA-1", + "content": "ac379bfbe765764108789b1f5b86fb00e5c0a284" + }, + { + "alg": "SHA-256", + "content": "000f029110db9e82938af924a74409d5db3a4c840ea2a1ea295001cda299e2b7" + } + ] + }, + { + "bom-ref": "ee8e935b79329c59", + "type": "file", + "name": "/usr/sbin/e4defrag", + "hashes": [ + { + "alg": "SHA-1", + "content": "dfd149323d86506f5ba4a97a24b3aa01e4bfcf57" + }, + { + "alg": "SHA-256", + "content": "6554ca3148d6dabf4b13a5c1df7e83353d54aaa6a7dd8b016e2c8f91d79d2ebc" + } + ] + }, + { + "bom-ref": "6ac14414d5ed3d0c", + "type": "file", + "name": "/usr/sbin/fdformat", + "hashes": [ + { + "alg": "SHA-1", + "content": "b163b50cbb7e9dcbf2de93ef949b1ad5ae3528d8" + }, + { + "alg": "SHA-256", + "content": "628e7cefe43ac273a79dafdeddf986a1a8d17c63fbac6f7a1586f1868609072d" + } + ] + }, + { + "bom-ref": "9211d74c96a8e3a9", + "type": "file", + "name": "/usr/sbin/filefrag", + "hashes": [ + { + "alg": "SHA-1", + "content": "69241cbe6ca303b6f47a4aff8cf3373e31e66ef8" + }, + { + "alg": "SHA-256", + "content": "dca51e84e138f0fee8a8099e34bfe7ca569579ee8ea7c221819308e455d7aea2" + } + ] + }, + { + "bom-ref": "dd26269f921fca14", + "type": "file", + "name": "/usr/sbin/groupadd", + "hashes": [ + { + "alg": "SHA-1", + "content": "659f0b011f41a597ce887508fadfb0572371173b" + }, + { + "alg": "SHA-256", + "content": "d2f48e521f94b2c1b2bece1166e92f9460b738ba859ee36f6edd609e454b60da" + } + ] + }, + { + "bom-ref": "00ebef6aca5a2e91", + "type": "file", + "name": "/usr/sbin/groupdel", + "hashes": [ + { + "alg": "SHA-1", + "content": "05ffab57cd3dcb03423d2cf17d57669b3621ed36" + }, + { + "alg": "SHA-256", + "content": "f02366b0c2b9e67bf38898ca39ca0a7af4c3638e8933bd6db13f5710ebbccf88" + } + ] + }, + { + "bom-ref": "d07b979fcd7522bc", + "type": "file", + "name": "/usr/sbin/groupmems", + "hashes": [ + { + "alg": "SHA-1", + "content": "b1dec722a72a6adfa00449af95d6814ef1fc8282" + }, + { + "alg": "SHA-256", + "content": "3b407cd77762e53d639546542200ac443c8db25e767d74fc69b4e0b5954ec11c" + } + ] + }, + { + "bom-ref": "182ec0c129dd243d", + "type": "file", + "name": "/usr/sbin/groupmod", + "hashes": [ + { + "alg": "SHA-1", + "content": "d604a08ca4b961e3efe6286202730030d5b77f74" + }, + { + "alg": "SHA-256", + "content": "9ef64d9f11983a7d44d742b8f6902b48741bc03c58153fbadf5b829531264d6c" + } + ] + }, + { + "bom-ref": "bfdda280919f9269", + "type": "file", + "name": "/usr/sbin/grpck", + "hashes": [ + { + "alg": "SHA-1", + "content": "932f2b0c50988d356fe2a147128d05b6e05b4804" + }, + { + "alg": "SHA-256", + "content": "b74d443e4e3879edb7bc5994ba623f9f0bb1286fda74003e922ab15471d41436" + } + ] + }, + { + "bom-ref": "cbc3f745e468b4df", + "type": "file", + "name": "/usr/sbin/grpconv", + "hashes": [ + { + "alg": "SHA-1", + "content": "1fbbe95a7c42261cb2ca34bb37681d6113055a66" + }, + { + "alg": "SHA-256", + "content": "db8a05df481efb9dbe47dde5b340d2158ac4b1b9bb7c8f6a5970405dad71ee36" + } + ] + }, + { + "bom-ref": "26643545517a8cd7", + "type": "file", + "name": "/usr/sbin/grpunconv", + "hashes": [ + { + "alg": "SHA-1", + "content": "54f1ec3159a04dd10c047aeb63bce59d430a354c" + }, + { + "alg": "SHA-256", + "content": "797f41d47a10eeff13a876e9b1edd09388fcd90b6778bf405937803ff39f8031" + } + ] + }, + { + "bom-ref": "4902c438c9240caf", + "type": "file", + "name": "/usr/sbin/iconvconfig", + "hashes": [ + { + "alg": "SHA-1", + "content": "efd0c54690dbd7d6a114b2e65ca95e3af9f9727c" + }, + { + "alg": "SHA-256", + "content": "839c33a0f1f38d93bd6e088f047c0294ef996acf502f2a038548758330070afc" + } + ] + }, + { + "bom-ref": "1ccfb80877059005", + "type": "file", + "name": "/usr/sbin/invoke-rc.d", + "hashes": [ + { + "alg": "SHA-1", + "content": "c4d03a533fc24580d9ad9f9f74ce20068323cf51" + }, + { + "alg": "SHA-256", + "content": "e23bd68aa92ea828f64b67839906ec0a3ad6bb81611100a6db907830e77945ab" + } + ] + }, + { + "bom-ref": "31a2d67cfc3adb98", + "type": "file", + "name": "/usr/sbin/ldattach", + "hashes": [ + { + "alg": "SHA-1", + "content": "a435f466a50f803959cbdc5c1edb1d729b686931" + }, + { + "alg": "SHA-256", + "content": "2af8c02baa62f4c6c90fa4307be01a49fbfe404e805f79255c2326111f9cda7a" + } + ] + }, + { + "bom-ref": "23a440d9a2c80762", + "type": "file", + "name": "/usr/sbin/mklost+found", + "hashes": [ + { + "alg": "SHA-1", + "content": "d7de24f0ebefc974ecd70cf41a09589114efb7e3" + }, + { + "alg": "SHA-256", + "content": "1d958a999843f959bfe6b730eafc77cdf727f8323ecc7ed2f8e11ed88ef6bc59" + } + ] + }, + { + "bom-ref": "07771e58de61f66a", + "type": "file", + "name": "/usr/sbin/newusers", + "hashes": [ + { + "alg": "SHA-1", + "content": "6e5a7ff8652384d3a31d7373985b06432c54c5dc" + }, + { + "alg": "SHA-256", + "content": "911e819ca85edcea5fc0a3e92e9d9842eab6626ffed1b8464f4d1c98a5e6d51d" + } + ] + }, + { + "bom-ref": "9e397f131de83bb1", + "type": "file", + "name": "/usr/sbin/nologin", + "hashes": [ + { + "alg": "SHA-1", + "content": "11580e4554a3f32f0205bbc6e4ac9c8c8d70a168" + }, + { + "alg": "SHA-256", + "content": "56c0323b20b43f41daed7bc65cb27a0f196acab42eac69ff7334513215c7c1ea" + } + ] + }, + { + "bom-ref": "6a77e154fbf1ddba", + "type": "file", + "name": "/usr/sbin/pam-auth-update", + "hashes": [ + { + "alg": "SHA-1", + "content": "f97182863d0eceab654d3bc430d2aa7e4a46173c" + }, + { + "alg": "SHA-256", + "content": "05f863328fc375a59dcff3a1165cbc1ba39fa1e0a08fa6f0862295df0e4d7e84" + } + ] + }, + { + "bom-ref": "e68c0b64139483f1", + "type": "file", + "name": "/usr/sbin/pam_getenv", + "hashes": [ + { + "alg": "SHA-1", + "content": "5378554fd443fa3c515fa581395eb1f6c364cb0a" + }, + { + "alg": "SHA-256", + "content": "982cca7d6a9afe07d7ba3fc929082ef11ed1cadb88d253f6464bfc0a19730674" + } + ] + }, + { + "bom-ref": "daf7946f7b37889d", + "type": "file", + "name": "/usr/sbin/pam_timestamp_check", + "hashes": [ + { + "alg": "SHA-1", + "content": "6936a459591059e72622ebb684ff4da95fc0b633" + }, + { + "alg": "SHA-256", + "content": "950b7b60269275707d98fa5f6bd8be307d152c83e69c269d7a762fd13cb246e8" + } + ] + }, + { + "bom-ref": "f8749187dff31ddb", + "type": "file", + "name": "/usr/sbin/pwck", + "hashes": [ + { + "alg": "SHA-1", + "content": "36ee22ab78b703003b498951dd779e45f5a4301e" + }, + { + "alg": "SHA-256", + "content": "f82f04958d384886823345865d8bfb75fe0e4e842c5e4110efaf30fb931990c8" + } + ] + }, + { + "bom-ref": "19baf68f829b57b8", + "type": "file", + "name": "/usr/sbin/pwconv", + "hashes": [ + { + "alg": "SHA-1", + "content": "ad8b05e68f34b6c980b69bda73aff9e355c1b7e7" + }, + { + "alg": "SHA-256", + "content": "27e4ce3a50261d088eb5b65bd1f06bac38d4211c3f21edff36d4983862eca9f7" + } + ] + }, + { + "bom-ref": "a996091da032bc92", + "type": "file", + "name": "/usr/sbin/pwunconv", + "hashes": [ + { + "alg": "SHA-1", + "content": "afd177fc7dba852e43199ea2c07e923acdbfb1d4" + }, + { + "alg": "SHA-256", + "content": "ed1e5ede244c9ecd2d1e0908bfa12e7eb047eda733ccf82b94b970544b92ac24" + } + ] + }, + { + "bom-ref": "7ad33c2c32bbb16a", + "type": "file", + "name": "/usr/sbin/readprofile", + "hashes": [ + { + "alg": "SHA-1", + "content": "737757d4015fd698af0a73b79817c5cf66e3a9ca" + }, + { + "alg": "SHA-256", + "content": "d02c0800f642f70e88070c9c5bb7a6b4758b67ae09d4d461813d3686f4fed568" + } + ] + }, + { + "bom-ref": "5cb7a88b6d925c39", + "type": "file", + "name": "/usr/sbin/remove-shell", + "hashes": [ + { + "alg": "SHA-1", + "content": "66e936843f0357648c6e560d101bbede6fe70f97" + }, + { + "alg": "SHA-256", + "content": "5a15986f8fd235bccf215832a5c39070acd6c48176c73a2415a7148bed327267" + } + ] + }, + { + "bom-ref": "812c70e7f1bdd0b5", + "type": "file", + "name": "/usr/sbin/rmt-tar", + "hashes": [ + { + "alg": "SHA-1", + "content": "97f0d0e2eac4bf6769bd9426d072ef9a7f62039f" + }, + { + "alg": "SHA-256", + "content": "d380f8974bc87f58e01aecc08e2e09802ce32d9a524f8cb650e5a85a4018cfbe" + } + ] + }, + { + "bom-ref": "82aeb3301d171871", + "type": "file", + "name": "/usr/sbin/rtcwake", + "hashes": [ + { + "alg": "SHA-1", + "content": "9330ed67addabb7445c65877e7a7e319a9cbb23f" + }, + { + "alg": "SHA-256", + "content": "2cf9af2cde35a9ff2842d8a0b546c37bcc93fd53fe4b25519fcf57c91d506562" + } + ] + }, + { + "bom-ref": "03c9f107d75551de", + "type": "file", + "name": "/usr/sbin/service", + "hashes": [ + { + "alg": "SHA-1", + "content": "c72e31b74e8654867c5558b19502dd14d03fbe55" + }, + { + "alg": "SHA-256", + "content": "90d290edebced3366414da3c362561b7fa817e85fc3d9e4ba8ef814869c8919e" + } + ] + }, + { + "bom-ref": "3f824f0e7d0541d9", + "type": "file", + "name": "/usr/sbin/tarcat", + "hashes": [ + { + "alg": "SHA-1", + "content": "442ba2dad8d3acbd48ed226215791fb8a0707141" + }, + { + "alg": "SHA-256", + "content": "4307aa7cc97a4db32a674ad32f893b251188903cafa6d5266c813fc5c9ea755e" + } + ] + }, + { + "bom-ref": "8a3adf1d8e02d5c3", + "type": "file", + "name": "/usr/sbin/tzconfig", + "hashes": [ + { + "alg": "SHA-1", + "content": "4f67e105f64cca78218b0c4d054257c09c349607" + }, + { + "alg": "SHA-256", + "content": "816e1759cc6a017900439acc6c85dd2293cc78948d54bf76c1f23bf16437b1fc" + } + ] + }, + { + "bom-ref": "df50652cdf0b1e0d", + "type": "file", + "name": "/usr/sbin/update-passwd", + "hashes": [ + { + "alg": "SHA-1", + "content": "cc8c09e59f5d5719a4208e83fbf9dd94cc4b4cb2" + }, + { + "alg": "SHA-256", + "content": "02650d987b3803832f92999d96da44b8339e26c854787a1bc744091a85794f08" + } + ] + }, + { + "bom-ref": "d0ce0e3a5b500a2b", + "type": "file", + "name": "/usr/sbin/update-rc.d", + "hashes": [ + { + "alg": "SHA-1", + "content": "46f0eda094e2d58c364c5833be5e6714a6ff03ea" + }, + { + "alg": "SHA-256", + "content": "1102a9c7a3edbfd57bf7b7b466aaf45a10763a186093f65bac3966f0da8a5448" + } + ] + }, + { + "bom-ref": "a7c3d1ce361774d4", + "type": "file", + "name": "/usr/sbin/useradd", + "hashes": [ + { + "alg": "SHA-1", + "content": "e4d5a3dbd0c2d33a1405c17171743ff32147348d" + }, + { + "alg": "SHA-256", + "content": "fb24d8fa8ccd8fe991422d77c9778fcc04c75709cbe7086a3330dbda54886e72" + } + ] + }, + { + "bom-ref": "bb47d141473a345e", + "type": "file", + "name": "/usr/sbin/userdel", + "hashes": [ + { + "alg": "SHA-1", + "content": "a3405adca202946f8c0bd4a24c1f331545eb50dc" + }, + { + "alg": "SHA-256", + "content": "90f05dcb559fe7e8f2048dbfec649088e47050105c320b437fae37171b00e37c" + } + ] + }, + { + "bom-ref": "5744164e348d67f3", + "type": "file", + "name": "/usr/sbin/usermod", + "hashes": [ + { + "alg": "SHA-1", + "content": "f2c541a84531a1d997478a2a4e40cb68a4621ce2" + }, + { + "alg": "SHA-256", + "content": "ec2c279d48f407101c71ef44acc0d5e8b4c938f098493266388029fba92ede26" + } + ] + }, + { + "bom-ref": "ed76483f17a165dc", + "type": "file", + "name": "/usr/sbin/vipw", + "hashes": [ + { + "alg": "SHA-1", + "content": "2541cc4ec75ec6ec5609e681d35e9fbbfb01516c" + }, + { + "alg": "SHA-256", + "content": "f8efa6fbae96c822070e8c1afe38adbb6733491cf284e9a241a3a8f2869a23f0" + } + ] + }, + { + "bom-ref": "f0b3d548760d5f27", + "type": "file", + "name": "/usr/sbin/zic", + "hashes": [ + { + "alg": "SHA-1", + "content": "d6f9f4ba32bd7c2901fb333e1c0bbeca673688f0" + }, + { + "alg": "SHA-256", + "content": "b10eeafa724b44fea527d3a597b7aea2075debbaf7ecaf0a903531473a2b77e7" + } + ] + }, + { + "bom-ref": "766c2631fe80df22", + "type": "file", + "name": "/usr/share/adduser/adduser.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "4b5690a85d28731d4c2ed043e38a5a2680c46216" + }, + { + "alg": "SHA-256", + "content": "ccdc9675d7bd39c3cc79c2a5d6938f2562dd4062350dbed3058c1faee48b353e" + } + ] + }, + { + "bom-ref": "fb3d2655c97f05f7", + "type": "file", + "name": "/usr/share/base-files/dot.bashrc", + "hashes": [ + { + "alg": "SHA-1", + "content": "b737c392222ddac2271cc8d0d8cc0308d08cf458" + }, + { + "alg": "SHA-256", + "content": "41f1685d04031d88891dea1cd02d5154f8aa841119001a72017b0e7158159e23" + } + ] + }, + { + "bom-ref": "b51bed7f76d24389", + "type": "file", + "name": "/usr/share/base-files/dot.profile", + "hashes": [ + { + "alg": "SHA-1", + "content": "dcd1b431c955cf1fb6064756c6044a49ef507c37" + }, + { + "alg": "SHA-256", + "content": "74bc92bcf960bfb62b22aa65370cdd1cd37739baa4eab9b240d72692c898ef1f" + } + ] + }, + { + "bom-ref": "bcfcf8105e4c33c0", + "type": "file", + "name": "/usr/share/base-files/dot.profile.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "349bd16693e670bda2b38dbd86c31297775c5491" + }, + { + "alg": "SHA-256", + "content": "8961ee041c712c735fb05287740ab62737777bd58ce631b54b07d8083efad3bf" + } + ] + }, + { + "bom-ref": "690168615e0864e9", + "type": "file", + "name": "/usr/share/base-files/info.dir", + "hashes": [ + { + "alg": "SHA-1", + "content": "3551f8dfbf114c159f692d5e823099cdd53b16cf" + }, + { + "alg": "SHA-256", + "content": "c58a258cb9c410c29486aa8fa37f4e5b738bfeedc2b8e97be1cd6cff1df28459" + } + ] + }, + { + "bom-ref": "014a5d59b3ab5909", + "type": "file", + "name": "/usr/share/base-files/motd", + "hashes": [ + { + "alg": "SHA-1", + "content": "8b55aac644e9e6f2701805584cc391ff81d3ecec" + }, + { + "alg": "SHA-256", + "content": "a378977155fb42bb006496321cbe31f74cbda803c3f6ca590f30e76d1afad921" + } + ] + }, + { + "bom-ref": "611cae39865c2aba", + "type": "file", + "name": "/usr/share/base-files/profile", + "hashes": [ + { + "alg": "SHA-1", + "content": "3aee14773c38f138ed4b1d93a649bdbce112115e" + }, + { + "alg": "SHA-256", + "content": "b8ffd2c97588047e1cea84b7dfdb68bfde167e2957f667ca2b6ab2929feb4f49" + } + ] + }, + { + "bom-ref": "474bfad743e066da", + "type": "file", + "name": "/usr/share/base-files/profile.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "ca4245aad6551f17d0ed032bb062ef9d3f64b9fc" + }, + { + "alg": "SHA-256", + "content": "7d09366be1eb6bd4fa6b3cf9837e87236bbb9ec5ebe4e2428fbec3f88b7ec762" + } + ] + }, + { + "bom-ref": "7b0a78f5b97f24c9", + "type": "file", + "name": "/usr/share/base-files/staff-group-for-usr-local", + "hashes": [ + { + "alg": "SHA-1", + "content": "7e36ba0fdd3b1f5b267821d4b06a1f8c17336efb" + }, + { + "alg": "SHA-256", + "content": "64a482506f00572df1d4909a347d6f4fa8e6ce23686b7f058bfbd650ec0658ce" + } + ] + }, + { + "bom-ref": "a8041fd649d5a4f1", + "type": "file", + "name": "/usr/share/base-passwd/group.master", + "hashes": [ + { + "alg": "SHA-1", + "content": "845525bcc8c4464b770fbf36690e8ee8e7a25591" + }, + { + "alg": "SHA-256", + "content": "cfde4574c857edbfbd31667000d75d07efe6bc61f22063693010dee2a912450b" + } + ] + }, + { + "bom-ref": "be5f6cdb5bf96dca", + "type": "file", + "name": "/usr/share/base-passwd/passwd.master", + "hashes": [ + { + "alg": "SHA-1", + "content": "e813d4016f0bf8c042183d3585075750f3312c42" + }, + { + "alg": "SHA-256", + "content": "5e66dea2e22fa69f64b4f92053bedbf8ea2550dffb95967994730b718f4eb930" + } + ] + }, + { + "bom-ref": "1bd61392600e0cff", + "type": "file", + "name": "/usr/share/bash-completion/completions/addpart", + "hashes": [ + { + "alg": "SHA-1", + "content": "66ab6204b219cee6dc5377a33eb4478270db4fc4" + }, + { + "alg": "SHA-256", + "content": "61badc8851eb6f1c153df1a07c9c2f3bffa048fbd05d1ef775384087440a08c8" + } + ] + }, + { + "bom-ref": "0a8e7e5e2c4d59ac", + "type": "file", + "name": "/usr/share/bash-completion/completions/apt", + "hashes": [ + { + "alg": "SHA-1", + "content": "cad4eb1d01f08f16a868ba7997667ccccb830fa7" + }, + { + "alg": "SHA-256", + "content": "d5e1eca3f19f16abdb59af4ab5494770ab6f17d31ee495dcb3756eb0393ca997" + } + ] + }, + { + "bom-ref": "479524053cf95d0e", + "type": "file", + "name": "/usr/share/bash-completion/completions/blkdiscard", + "hashes": [ + { + "alg": "SHA-1", + "content": "d47e122278bbd91872ef97e8865c913a47ce9ef8" + }, + { + "alg": "SHA-256", + "content": "52ae5cec0990942b3e239d9bae331ea237d6dd457575746e382d07fbabf9ad70" + } + ] + }, + { + "bom-ref": "bd59ceadb1310027", + "type": "file", + "name": "/usr/share/bash-completion/completions/blkid", + "hashes": [ + { + "alg": "SHA-1", + "content": "b20843cfd4eef9ac1e7b83a57b568e936fccb377" + }, + { + "alg": "SHA-256", + "content": "f4ec23b0db103c742d655c8e9dbbe3e2d59f1b711abe6a241c91a8211895e624" + } + ] + }, + { + "bom-ref": "495437da2e6856f1", + "type": "file", + "name": "/usr/share/bash-completion/completions/blkzone", + "hashes": [ + { + "alg": "SHA-1", + "content": "4e86a43da2fef3709584a0c94a5b1a941ae8e64e" + }, + { + "alg": "SHA-256", + "content": "bf20f342237b951779fb457d68cc4bc7900e6db044becb5419efa109b77ffadf" + } + ] + }, + { + "bom-ref": "7c7a8d2e40ff41a3", + "type": "file", + "name": "/usr/share/bash-completion/completions/blockdev", + "hashes": [ + { + "alg": "SHA-1", + "content": "1522f9a9dfab815c2630ce91c090ab25b6a415b6" + }, + { + "alg": "SHA-256", + "content": "32a9db482f3941d0d22c12b5feb8a73c71489f7bf83693a9c3b4d3d27e97d8b0" + } + ] + }, + { + "bom-ref": "3900dbb63480787c", + "type": "file", + "name": "/usr/share/bash-completion/completions/cfdisk", + "hashes": [ + { + "alg": "SHA-1", + "content": "fa23b3d28c54302a3936005755b2a305d90d08b4" + }, + { + "alg": "SHA-256", + "content": "2995b77066141f0a0b67dec82d554a20909466eca6a3e8f237eb709b7f5b4c62" + } + ] + }, + { + "bom-ref": "8ce2f732107e76fc", + "type": "file", + "name": "/usr/share/bash-completion/completions/chcpu", + "hashes": [ + { + "alg": "SHA-1", + "content": "32991098188f537cd23345037950d572d96a01c5" + }, + { + "alg": "SHA-256", + "content": "38548158ca1b6d13b515c4fb5107a6fc85ae04c8444f3edd75e98e42dba100f6" + } + ] + }, + { + "bom-ref": "07584815da423474", + "type": "file", + "name": "/usr/share/bash-completion/completions/chmem", + "hashes": [ + { + "alg": "SHA-1", + "content": "5c421450f8c8ce9039fbc912dd24132207ab4eea" + }, + { + "alg": "SHA-256", + "content": "6bb1f0dbb7af9f2891badb28f90e7ab9b82647a4b982a284b541968f669f2a9f" + } + ] + }, + { + "bom-ref": "d72ee7f3a744c9ed", + "type": "file", + "name": "/usr/share/bash-completion/completions/chrt", + "hashes": [ + { + "alg": "SHA-1", + "content": "37f14d93b1a354fc3cfa78af794d133a0cbe013d" + }, + { + "alg": "SHA-256", + "content": "1dd13080d71c8d880e628eee89e8f493c979441692ef364e01ca8c8a761d381e" + } + ] + }, + { + "bom-ref": "b08c9f5a2971ad0e", + "type": "file", + "name": "/usr/share/bash-completion/completions/ctrlaltdel", + "hashes": [ + { + "alg": "SHA-1", + "content": "665f505fb4ff41b64b660dbf800ed6977e9c474f" + }, + { + "alg": "SHA-256", + "content": "52021091a5554e9b6275cdabbf1820ccd18eff38d8b0094284ef7fb68c38f66f" + } + ] + }, + { + "bom-ref": "ec3badb56286dc81", + "type": "file", + "name": "/usr/share/bash-completion/completions/debconf", + "hashes": [ + { + "alg": "SHA-1", + "content": "66c69cc37dafb9a38da52c29e55c89013876780e" + }, + { + "alg": "SHA-256", + "content": "45a6978806b39111a579c0e7d4e85937bd6c8e20c3f6732d3ecf5fbd2344cfb0" + } + ] + }, + { + "bom-ref": "8a66e426ea4f0286", + "type": "file", + "name": "/usr/share/bash-completion/completions/delpart", + "hashes": [ + { + "alg": "SHA-1", + "content": "e139c4b8c55ee4ceda62b1e9828a3d743de8447b" + }, + { + "alg": "SHA-256", + "content": "e337b3898cacda9485085c522d9306a043146cc52c780bbcf2c65b8d366f095a" + } + ] + }, + { + "bom-ref": "c7648f73f26d277d", + "type": "file", + "name": "/usr/share/bash-completion/completions/dmesg", + "hashes": [ + { + "alg": "SHA-1", + "content": "502d94cbc727bc0e0ddbb9b6fb462cf2330d3ff1" + }, + { + "alg": "SHA-256", + "content": "5cd7dd59ef1558c7d5bf8fe58581eb6b173f823b21f1e83598328de2d7695060" + } + ] + }, + { + "bom-ref": "13a59265a68b85d3", + "type": "file", + "name": "/usr/share/bash-completion/completions/fallocate", + "hashes": [ + { + "alg": "SHA-1", + "content": "df548fa9e77ed5f1cb96be7b5d938d2c638b50ab" + }, + { + "alg": "SHA-256", + "content": "f775a5a4e4d051193cfc5dbcc2ba373d5cfe350604f3c4b79372ef4a7e494f02" + } + ] + }, + { + "bom-ref": "f405b33f3ffbfa3f", + "type": "file", + "name": "/usr/share/bash-completion/completions/fdformat", + "hashes": [ + { + "alg": "SHA-1", + "content": "968494cb7ab4864df6d4af51082e42cbf2db62e7" + }, + { + "alg": "SHA-256", + "content": "d1478a7f29aa6e2ac647acb10a2b1036bf2e2cb98e9627abb43fb1bf6ac561ec" + } + ] + }, + { + "bom-ref": "2d36aad3dc38f7fc", + "type": "file", + "name": "/usr/share/bash-completion/completions/fdisk", + "hashes": [ + { + "alg": "SHA-1", + "content": "e63dc6b35be32a69cfcd41c5e1d9f0a57c1319c6" + }, + { + "alg": "SHA-256", + "content": "2eddd6f947b6246d18959c173aac7112e1e9b2d523ffe852f88011dd2e4836c6" + } + ] + }, + { + "bom-ref": "354077cc0b2f81d8", + "type": "file", + "name": "/usr/share/bash-completion/completions/fincore", + "hashes": [ + { + "alg": "SHA-1", + "content": "475baa9cc4f25946e16551a06e6604031b468422" + }, + { + "alg": "SHA-256", + "content": "0d66d90486e2f0b6eee9a962adc762cd19f7311b42d344cf47e49ef1261f90e4" + } + ] + }, + { + "bom-ref": "cc547f1ed14a51b0", + "type": "file", + "name": "/usr/share/bash-completion/completions/findfs", + "hashes": [ + { + "alg": "SHA-1", + "content": "337c51a0628d03a16500b06bbaba129fd338cb22" + }, + { + "alg": "SHA-256", + "content": "ff73ffe3f15cc6ec0bfeed0a2c87b67eb1c9890ec5e7a23d18eab733d16c0df8" + } + ] + }, + { + "bom-ref": "07d6895e719d9322", + "type": "file", + "name": "/usr/share/bash-completion/completions/findmnt", + "hashes": [ + { + "alg": "SHA-1", + "content": "515ab77c245338ce0827012038b93df6a3733b8b" + }, + { + "alg": "SHA-256", + "content": "40332dfec0e1d317cf5f9782d95cec282e649635b33e6449d67f664f74ae5199" + } + ] + }, + { + "bom-ref": "6f41cb86a219e084", + "type": "file", + "name": "/usr/share/bash-completion/completions/flock", + "hashes": [ + { + "alg": "SHA-1", + "content": "b542856570c6961e100aa509cc6109fe78ccf166" + }, + { + "alg": "SHA-256", + "content": "4ea2ecf934319c37348fddefdf0f028614ce04cc1840574242bf47219cb0a8c8" + } + ] + }, + { + "bom-ref": "3af81562f7ca3386", + "type": "file", + "name": "/usr/share/bash-completion/completions/fsck", + "hashes": [ + { + "alg": "SHA-1", + "content": "35b50c434e12b3d80467af148bf70d895fdc690d" + }, + { + "alg": "SHA-256", + "content": "feb2b95abe8caac7840120e9575816d9e02dc8d08fe883293211f6f88389dfd8" + } + ] + }, + { + "bom-ref": "45b32d87d38c3196", + "type": "file", + "name": "/usr/share/bash-completion/completions/fsck.cramfs", + "hashes": [ + { + "alg": "SHA-1", + "content": "e3ebab334ca469b70b24eace55544c9c5f3675e0" + }, + { + "alg": "SHA-256", + "content": "74f9052c2e8991509621e742d39b65beb9489deef2b2b1f7a443f05acf11db46" + } + ] + }, + { + "bom-ref": "691a61f061fdddf1", + "type": "file", + "name": "/usr/share/bash-completion/completions/fsck.minix", + "hashes": [ + { + "alg": "SHA-1", + "content": "7909b234a5d2e41dce6f1ae2d9a35c899ae7ac25" + }, + { + "alg": "SHA-256", + "content": "c80e2696bcb4fb7642418d3aec96f7c2931cdcfdaf245786ee3b6cded99e22fe" + } + ] + }, + { + "bom-ref": "80d05b88250d572c", + "type": "file", + "name": "/usr/share/bash-completion/completions/fsfreeze", + "hashes": [ + { + "alg": "SHA-1", + "content": "4f5b727591789ee1f07547241d4d00c1233c3b1c" + }, + { + "alg": "SHA-256", + "content": "7f99f914f660697f78e57850e4e70c027e73a0aa5074a28bd3a5d25c2564b371" + } + ] + }, + { + "bom-ref": "b29809ca3f56f9dd", + "type": "file", + "name": "/usr/share/bash-completion/completions/fstrim", + "hashes": [ + { + "alg": "SHA-1", + "content": "44f71d0de76cc5c93f9918b2d0f68c83baa413cd" + }, + { + "alg": "SHA-256", + "content": "00d3ec98092ad7a2c698c1865015368d7be5fead7d3ad171def63cc78658b6b2" + } + ] + }, + { + "bom-ref": "dccde07121101552", + "type": "file", + "name": "/usr/share/bash-completion/completions/getopt", + "hashes": [ + { + "alg": "SHA-1", + "content": "126f08636509e707669ccf575a548e1d8b2589b2" + }, + { + "alg": "SHA-256", + "content": "0ae50ed789c556f2abdabe09362169d385f9facf1bd05c13cf57b3f8e0078a5d" + } + ] + }, + { + "bom-ref": "2ca5c3349e432877", + "type": "file", + "name": "/usr/share/bash-completion/completions/hwclock", + "hashes": [ + { + "alg": "SHA-1", + "content": "7049d785c5826b92aab74274c5610426008d905e" + }, + { + "alg": "SHA-256", + "content": "1cfd65593d59333936ba7e71a2306d7f0c33f9a7cc1f68ccc3232eb2815b93e6" + } + ] + }, + { + "bom-ref": "0a52e66c9feb5934", + "type": "file", + "name": "/usr/share/bash-completion/completions/ionice", + "hashes": [ + { + "alg": "SHA-1", + "content": "a117c036cce1cd9cf660c9070f2be2159aaa6722" + }, + { + "alg": "SHA-256", + "content": "8a92b4a98b89f6c3af9baf94aab2cc24f58e0e2c4ffc6e2ea822cdc093d940ff" + } + ] + }, + { + "bom-ref": "f5ffb0f46bd92a43", + "type": "file", + "name": "/usr/share/bash-completion/completions/ipcmk", + "hashes": [ + { + "alg": "SHA-1", + "content": "23b0931088d6691871338347a1c2ce34b11102a1" + }, + { + "alg": "SHA-256", + "content": "701db74a1133159cf159c9a182a46eb77ecdab618c52e373f432b3924d8e2707" + } + ] + }, + { + "bom-ref": "74f60b17d72d9def", + "type": "file", + "name": "/usr/share/bash-completion/completions/ipcrm", + "hashes": [ + { + "alg": "SHA-1", + "content": "bf22725bdc3926b961eb4024bd1a3ebcf981dd9c" + }, + { + "alg": "SHA-256", + "content": "454731bfb20b7be1e41f5b0704536a549ebf7ee755d64bd9ef882b04ae84173d" + } + ] + }, + { + "bom-ref": "4116a36aa6754c39", + "type": "file", + "name": "/usr/share/bash-completion/completions/ipcs", + "hashes": [ + { + "alg": "SHA-1", + "content": "b8e74ed1e3347f50c8cd618b5ef97d1c98467525" + }, + { + "alg": "SHA-256", + "content": "c8d2fc0706082e013fdec16a7b7fcc3aadbc0c3e22f87d8a818d9aa95f364acf" + } + ] + }, + { + "bom-ref": "62519fc3f616b1f5", + "type": "file", + "name": "/usr/share/bash-completion/completions/isosize", + "hashes": [ + { + "alg": "SHA-1", + "content": "4e001a21169ac9b9980ef424a19f69c36f2c00d5" + }, + { + "alg": "SHA-256", + "content": "0afdd61db90044908eef15ef623eb9e6f4598cdfe581f20b1b812650d961f567" + } + ] + }, + { + "bom-ref": "a21635682e864005", + "type": "file", + "name": "/usr/share/bash-completion/completions/last", + "hashes": [ + { + "alg": "SHA-1", + "content": "bbf954b3f10c0b0e9d1de96f7639d606750b3961" + }, + { + "alg": "SHA-256", + "content": "406ba6772a881f22d10cad9096093673513c8426e81594c44977e1a57e7c4724" + } + ] + }, + { + "bom-ref": "8f631982db687a8b", + "type": "file", + "name": "/usr/share/bash-completion/completions/ldattach", + "hashes": [ + { + "alg": "SHA-1", + "content": "679909fc2522233de721a3cf4871743bd24297ed" + }, + { + "alg": "SHA-256", + "content": "f2a5396940e79dbdeea768970b2960d067e8a2fb78e9379a1b1b0fa250906595" + } + ] + }, + { + "bom-ref": "e6ebe988b3e3d407", + "type": "file", + "name": "/usr/share/bash-completion/completions/logger", + "hashes": [ + { + "alg": "SHA-1", + "content": "fbb9db937f7060655aff9f8975e8c3f6b38b4311" + }, + { + "alg": "SHA-256", + "content": "20a52821ce9e70f58e72f9050e3037aba96986aa39403a7b36bf5fac3de1b2c5" + } + ] + }, + { + "bom-ref": "ed2d2825ae350f66", + "type": "file", + "name": "/usr/share/bash-completion/completions/losetup", + "hashes": [ + { + "alg": "SHA-1", + "content": "57a4c07cd33a261fe332a3dd02bcfce081c30c11" + }, + { + "alg": "SHA-256", + "content": "97287d6f705c048fe6fa6e78c2e9693af0e3fdcc13efe56bbbebc6c7fdf71a93" + } + ] + }, + { + "bom-ref": "fdc25dbf993d4538", + "type": "file", + "name": "/usr/share/bash-completion/completions/lsblk", + "hashes": [ + { + "alg": "SHA-1", + "content": "d39aa23d4069a736b33e352feed1a6e6846aa8a6" + }, + { + "alg": "SHA-256", + "content": "b736ec0a304992cfdc981ef92d854827fe5192a04cfe88e68f48b3e1b320773d" + } + ] + }, + { + "bom-ref": "6600c00bd7a3e00c", + "type": "file", + "name": "/usr/share/bash-completion/completions/lscpu", + "hashes": [ + { + "alg": "SHA-1", + "content": "62000095654c0871c7d964764fcad86e5e056057" + }, + { + "alg": "SHA-256", + "content": "e036a5c87c232e9d9d3521dc9ae4208726fdc8efcc48941e69111f761be3e779" + } + ] + }, + { + "bom-ref": "185bfaa26f59d1f2", + "type": "file", + "name": "/usr/share/bash-completion/completions/lsipc", + "hashes": [ + { + "alg": "SHA-1", + "content": "524f46257dfe5a71b3ac3a842455bab8eb59e4a7" + }, + { + "alg": "SHA-256", + "content": "650711cc8c467b10fc463a333d3bba815810ae9cc1dd8b5c8bc0181b9721df82" + } + ] + }, + { + "bom-ref": "bcbcddc7a62ff727", + "type": "file", + "name": "/usr/share/bash-completion/completions/lslocks", + "hashes": [ + { + "alg": "SHA-1", + "content": "43a36735b6ac253436755c267e262997ce66a890" + }, + { + "alg": "SHA-256", + "content": "57b7d517dee24e93362bafa490b7904f37286f954a2bed21b256b3ca1fd8f4d9" + } + ] + }, + { + "bom-ref": "941d8ca10fee43c6", + "type": "file", + "name": "/usr/share/bash-completion/completions/lslogins", + "hashes": [ + { + "alg": "SHA-1", + "content": "751e8757bd83a3107876cf40b18ffa14c353994b" + }, + { + "alg": "SHA-256", + "content": "b7db5c076e389f7d4f13919978664d61e5924bee9e4df5880af7b49e71f656e3" + } + ] + }, + { + "bom-ref": "e3e0f1c4b41c39de", + "type": "file", + "name": "/usr/share/bash-completion/completions/lsmem", + "hashes": [ + { + "alg": "SHA-1", + "content": "1d464c74d3dacbd31c74b3173679b2dcb145d8c3" + }, + { + "alg": "SHA-256", + "content": "d6d396f2c0581a5a3a6ab1bd9ba3c12a6159bd370bafb58d73ffa1f638a7eb56" + } + ] + }, + { + "bom-ref": "223de08e6294ff90", + "type": "file", + "name": "/usr/share/bash-completion/completions/lsns", + "hashes": [ + { + "alg": "SHA-1", + "content": "4b5432d17529820bdb091314094e5628be47754d" + }, + { + "alg": "SHA-256", + "content": "48d857b7124298243da9467e1ab2c32244784a55d9032976319df7908163c9af" + } + ] + }, + { + "bom-ref": "76c78e06d77a9121", + "type": "file", + "name": "/usr/share/bash-completion/completions/mcookie", + "hashes": [ + { + "alg": "SHA-1", + "content": "3d62a53a3b104c6e48f7d851655dc7158a107297" + }, + { + "alg": "SHA-256", + "content": "c1460f2f78f58e0195f4dc3af4a5e92925aa23f3f6ec5c73a7565329a7eb8b3b" + } + ] + }, + { + "bom-ref": "38184119bd1f6571", + "type": "file", + "name": "/usr/share/bash-completion/completions/mesg", + "hashes": [ + { + "alg": "SHA-1", + "content": "e6e9d2c18f0e48a69e6b33137a355799bda706d8" + }, + { + "alg": "SHA-256", + "content": "67d09288e327f405fa72009d7e85b81a70d20c5577ffb8b418b6b0de043e7fc1" + } + ] + }, + { + "bom-ref": "fe8baba5a1b76fca", + "type": "file", + "name": "/usr/share/bash-completion/completions/mkfs", + "hashes": [ + { + "alg": "SHA-1", + "content": "ac77a804001bd2ed009ac46f21f39d675ea183ab" + }, + { + "alg": "SHA-256", + "content": "b90a36595a7585f33e27d5028c66fecb8db2f01832240b70527aa93f9d93c486" + } + ] + }, + { + "bom-ref": "77c831ad66270bed", + "type": "file", + "name": "/usr/share/bash-completion/completions/mkfs.bfs", + "hashes": [ + { + "alg": "SHA-1", + "content": "b91ea3d0712ed922f802e248ec5834dbae86278a" + }, + { + "alg": "SHA-256", + "content": "fd5315672633d2cc96166fedd130416e7ec9c37a87f8afe57dc906059a4fac04" + } + ] + }, + { + "bom-ref": "23a30d766c0d388e", + "type": "file", + "name": "/usr/share/bash-completion/completions/mkfs.cramfs", + "hashes": [ + { + "alg": "SHA-1", + "content": "161ac0b5765b66b0375c260f35e476ee8316160a" + }, + { + "alg": "SHA-256", + "content": "a33449ad64a9c1e51ad0b82fc6afbb07febd5650842fea214231f399d7f3bf4d" + } + ] + }, + { + "bom-ref": "6bd3056cd077fa76", + "type": "file", + "name": "/usr/share/bash-completion/completions/mkfs.minix", + "hashes": [ + { + "alg": "SHA-1", + "content": "9d2e79b266343749a60d0421a04972baa761e576" + }, + { + "alg": "SHA-256", + "content": "aa873021ae3d172211a649626f466efd53423970ba15d29d6f5ce4fc5d78fcc9" + } + ] + }, + { + "bom-ref": "8202d8aadc648069", + "type": "file", + "name": "/usr/share/bash-completion/completions/mkswap", + "hashes": [ + { + "alg": "SHA-1", + "content": "cd4267666fdf7a24ce9a488f886521b54597747e" + }, + { + "alg": "SHA-256", + "content": "e1cf77f54f0bd20cc47638b163a4b4adab20f4901ff4ef296cd2a9e3ebbb6577" + } + ] + }, + { + "bom-ref": "79164e6da8f72345", + "type": "file", + "name": "/usr/share/bash-completion/completions/more", + "hashes": [ + { + "alg": "SHA-1", + "content": "941c04b53f3c45cf7a20548fdf79160e2fb28c3e" + }, + { + "alg": "SHA-256", + "content": "f2a14123adff1db7144fa503b2e939d9383055e7b893a7730e146dd93c328032" + } + ] + }, + { + "bom-ref": "60cd0e1df594934e", + "type": "file", + "name": "/usr/share/bash-completion/completions/mount", + "hashes": [ + { + "alg": "SHA-1", + "content": "55a7f4ac1bbab68ec43083e62da7e66436781448" + }, + { + "alg": "SHA-256", + "content": "18e67a52959c1dbcd2d3706e6e300cb28556ecd1257d1289a629ffbf7a1af3ad" + } + ] + }, + { + "bom-ref": "825ce41680e0576b", + "type": "file", + "name": "/usr/share/bash-completion/completions/mountpoint", + "hashes": [ + { + "alg": "SHA-1", + "content": "f644865326fd7cd1b8d04c480d08ea35a2f14d06" + }, + { + "alg": "SHA-256", + "content": "4b9350fe71eac2b6927a0e0ea228c4d5d809d96320c0c2db233af2c6e522ae94" + } + ] + }, + { + "bom-ref": "79d44549bac05625", + "type": "file", + "name": "/usr/share/bash-completion/completions/namei", + "hashes": [ + { + "alg": "SHA-1", + "content": "4863488e0a27839d3d29da103cfc24d6194fb28d" + }, + { + "alg": "SHA-256", + "content": "1519a1b96f840f476647daa9d041a7d5db2dde0d80d3c99e973b1eccff8b259d" + } + ] + }, + { + "bom-ref": "0201a66a0d8d74d8", + "type": "file", + "name": "/usr/share/bash-completion/completions/nsenter", + "hashes": [ + { + "alg": "SHA-1", + "content": "5e470200ec18bc63b8bc182ceba7295dda440c9d" + }, + { + "alg": "SHA-256", + "content": "c60762eff4f9768cda50c4e719c869ad6f2d9396f48c3bd4cb6c5bb90e847a3b" + } + ] + }, + { + "bom-ref": "4f0c5b4a31c78fc2", + "type": "file", + "name": "/usr/share/bash-completion/completions/partx", + "hashes": [ + { + "alg": "SHA-1", + "content": "61e1b252cbebb2fed5fa231da9972185c29d403a" + }, + { + "alg": "SHA-256", + "content": "fd4885b8a4a683c1058210fbecf4c291cdc3de9a968128e7051eaf2d7a07c81d" + } + ] + }, + { + "bom-ref": "86c5b1d114e4f184", + "type": "file", + "name": "/usr/share/bash-completion/completions/pivot_root", + "hashes": [ + { + "alg": "SHA-1", + "content": "8d82a895d17a6409ff64afb828a17d553100e48c" + }, + { + "alg": "SHA-256", + "content": "e3fd2fed08fe53b1bdf0b344633375273ce54bdb75c65a4383f2bf29aa9868dd" + } + ] + }, + { + "bom-ref": "40d562fec12add3f", + "type": "file", + "name": "/usr/share/bash-completion/completions/prlimit", + "hashes": [ + { + "alg": "SHA-1", + "content": "0495fb7093dc819f191bb52b16dd1388499089d7" + }, + { + "alg": "SHA-256", + "content": "feb868f23ea5c5833a4fc9a642b78a83dd186259826304be649e7902086b8f9f" + } + ] + }, + { + "bom-ref": "79af9c3d0d7b9b63", + "type": "file", + "name": "/usr/share/bash-completion/completions/raw", + "hashes": [ + { + "alg": "SHA-1", + "content": "a8763bfe8398d96adf7fbe6adbdc11c021b585ac" + }, + { + "alg": "SHA-256", + "content": "f546700af22030dffeefaa6b13e9ebb7c24538adb0941dcb98a9d68a6426640f" + } + ] + }, + { + "bom-ref": "8d5e35b335c01269", + "type": "file", + "name": "/usr/share/bash-completion/completions/readprofile", + "hashes": [ + { + "alg": "SHA-1", + "content": "d6fc0cb9b9e14e75ad60cb58158936fc231e1d66" + }, + { + "alg": "SHA-256", + "content": "874cf09268bc51c0dd77267ef8e3d9948ff9c8c376a1b9ce911ca135b7baf9a5" + } + ] + }, + { + "bom-ref": "164c348a969afe06", + "type": "file", + "name": "/usr/share/bash-completion/completions/renice", + "hashes": [ + { + "alg": "SHA-1", + "content": "e71a05683ee770328d315546faa735e217536f9a" + }, + { + "alg": "SHA-256", + "content": "6fdf113c8a43356f2bddaff1613e3f66679f5f0b64d061a30e474f146163569b" + } + ] + }, + { + "bom-ref": "e35b1b9719ce83e3", + "type": "file", + "name": "/usr/share/bash-completion/completions/resizepart", + "hashes": [ + { + "alg": "SHA-1", + "content": "042f02299c6959d7144f1930789f79094c6e4e68" + }, + { + "alg": "SHA-256", + "content": "e0692d25787a3625816b07ea00ef66cfeada23fff0016cf0a37efd95ad84b0d5" + } + ] + }, + { + "bom-ref": "0bc11a532d093d26", + "type": "file", + "name": "/usr/share/bash-completion/completions/rev", + "hashes": [ + { + "alg": "SHA-1", + "content": "5c7004e84ad961fff850953258e72e4efcf5f0ec" + }, + { + "alg": "SHA-256", + "content": "ffab4735212694543267952b527e72f3ee4ac9b0e07d49b432db219bd26a3aae" + } + ] + }, + { + "bom-ref": "9554d674638699d6", + "type": "file", + "name": "/usr/share/bash-completion/completions/rtcwake", + "hashes": [ + { + "alg": "SHA-1", + "content": "9ca5329c1b893884bcddda0b04344fdcbe93a0bd" + }, + { + "alg": "SHA-256", + "content": "00d17c7f0f1d58372d1687ddc0004c0758818bc845de2caf1ec65435297b8a9b" + } + ] + }, + { + "bom-ref": "8f1ccf383e0e6bea", + "type": "file", + "name": "/usr/share/bash-completion/completions/script", + "hashes": [ + { + "alg": "SHA-1", + "content": "9c5982a08b96ff4f1767d503826956187f39d2d6" + }, + { + "alg": "SHA-256", + "content": "d6a324ae3d54016e7defbf7259e750bf86b73c5f9b822eae158889f17945167c" + } + ] + }, + { + "bom-ref": "439487e9d7c56789", + "type": "file", + "name": "/usr/share/bash-completion/completions/scriptreplay", + "hashes": [ + { + "alg": "SHA-1", + "content": "79c88bdcd306f20428099d3ed7d388747828c1e8" + }, + { + "alg": "SHA-256", + "content": "58d1c51c587e26dec022c31a4beaac423f4157b858a35a28dd6d3b4575f1111f" + } + ] + }, + { + "bom-ref": "ffa92e9e89ca9586", + "type": "file", + "name": "/usr/share/bash-completion/completions/setarch", + "hashes": [ + { + "alg": "SHA-1", + "content": "bf0ae521849c62366833a3793724d69eb2a204a0" + }, + { + "alg": "SHA-256", + "content": "bccea2e0e6fd329c9614c4c04f09093de21ba76595ef093bd70027df28bda533" + } + ] + }, + { + "bom-ref": "158191b54c46d5ea", + "type": "file", + "name": "/usr/share/bash-completion/completions/setpriv", + "hashes": [ + { + "alg": "SHA-1", + "content": "5a08d01c020927db51a69124055f5adf6f62448c" + }, + { + "alg": "SHA-256", + "content": "06ae6f7d80cdb4f1675690b89bf17298c9dfcc4c42c118fb04cf9cfa950cd3c8" + } + ] + }, + { + "bom-ref": "de1bb6ef91dbf458", + "type": "file", + "name": "/usr/share/bash-completion/completions/setsid", + "hashes": [ + { + "alg": "SHA-1", + "content": "3fee7139b8ecb800e922ea8b88ccdcb286466da8" + }, + { + "alg": "SHA-256", + "content": "376e5ac5d2a289c03bf36a8f9a86ae160cffc6693112043bf33d2d4f99614c30" + } + ] + }, + { + "bom-ref": "bceeb60f82e4c085", + "type": "file", + "name": "/usr/share/bash-completion/completions/setterm", + "hashes": [ + { + "alg": "SHA-1", + "content": "1b810345924a2f0e3853b87c62b434c57a949d8f" + }, + { + "alg": "SHA-256", + "content": "19ba4c6271e87a588517a67d2c02aae0683b2ab45c047784200e6a435da9248f" + } + ] + }, + { + "bom-ref": "123c18e26705feff", + "type": "file", + "name": "/usr/share/bash-completion/completions/sfdisk", + "hashes": [ + { + "alg": "SHA-1", + "content": "4e28762db5bbaf7deb5e932d9d65aaae75835f42" + }, + { + "alg": "SHA-256", + "content": "37d03e1a9db3c6d7539b46ac99395811c6d33a00c33ad400abff2765e0618bcc" + } + ] + }, + { + "bom-ref": "c05a374783113357", + "type": "file", + "name": "/usr/share/bash-completion/completions/su", + "hashes": [ + { + "alg": "SHA-1", + "content": "9bdbd36186191ecdd3b7a6a040bf62fdf355a6f8" + }, + { + "alg": "SHA-256", + "content": "f163759953aafc083e9ee25c20cda300ae01e37612eb24e54086cacffe1aca5a" + } + ] + }, + { + "bom-ref": "e11a90d7d32ec4d4", + "type": "file", + "name": "/usr/share/bash-completion/completions/swaplabel", + "hashes": [ + { + "alg": "SHA-1", + "content": "8e3d220da1365b70bc338c3adafb68a51bdb340b" + }, + { + "alg": "SHA-256", + "content": "1805b9fa1953570fa4bb99339afbb25a6d701ce5a442d22b8ddabe486b46c9c9" + } + ] + }, + { + "bom-ref": "516f2a91d70ae687", + "type": "file", + "name": "/usr/share/bash-completion/completions/swapoff", + "hashes": [ + { + "alg": "SHA-1", + "content": "5aa90bbd655fd080943ef9ac3979053361128cb8" + }, + { + "alg": "SHA-256", + "content": "e84478bfbcfb4eb0accf290e7b158085cb0db7f679afade1a270f7e1e731a691" + } + ] + }, + { + "bom-ref": "220b56805404c4cb", + "type": "file", + "name": "/usr/share/bash-completion/completions/swapon", + "hashes": [ + { + "alg": "SHA-1", + "content": "a34b9707c7ae2e96db198182593e841eeb234e39" + }, + { + "alg": "SHA-256", + "content": "717091ab909ce678799aef4aba00469550dfb05736640440686fecab2d41ae3c" + } + ] + }, + { + "bom-ref": "c34818507b2601cf", + "type": "file", + "name": "/usr/share/bash-completion/completions/taskset", + "hashes": [ + { + "alg": "SHA-1", + "content": "95a1b38ea7ae4ccd643fefe25bbac65ceec3ff9b" + }, + { + "alg": "SHA-256", + "content": "3128f328cc438f772ace3b8428c2be81f1bf061e3fe7d4c67a5c89b829654e36" + } + ] + }, + { + "bom-ref": "6f51f03593f0546e", + "type": "file", + "name": "/usr/share/bash-completion/completions/umount", + "hashes": [ + { + "alg": "SHA-1", + "content": "cbd93370b5f97e8a3297ca103048305a37479e77" + }, + { + "alg": "SHA-256", + "content": "bfd1b799c1a4b09c14bfad5995a4328dd2169815252c56a1efe4a12f29d53a1b" + } + ] + }, + { + "bom-ref": "2831389fc323328e", + "type": "file", + "name": "/usr/share/bash-completion/completions/unshare", + "hashes": [ + { + "alg": "SHA-1", + "content": "86831bb481b4f7db51b73b7a1a1cbd71f6e535e1" + }, + { + "alg": "SHA-256", + "content": "716ea1e75c1f6d2bb3480863ccb9f145a222dee237f766901083fc3f0b884644" + } + ] + }, + { + "bom-ref": "a91e7bb026a2ca03", + "type": "file", + "name": "/usr/share/bash-completion/completions/utmpdump", + "hashes": [ + { + "alg": "SHA-1", + "content": "1c571fa1b7769f3270270a71cd9cd4a0202ecaec" + }, + { + "alg": "SHA-256", + "content": "69a8a5a630ce32790499b7690d033c7d73c40c861a5985ca23c4f1585fd69b48" + } + ] + }, + { + "bom-ref": "b1f6f84bf1ca31d2", + "type": "file", + "name": "/usr/share/bash-completion/completions/wall", + "hashes": [ + { + "alg": "SHA-1", + "content": "906becc9681dececb4924b605aab8cb5cd2d9da9" + }, + { + "alg": "SHA-256", + "content": "bc527b9f476ec852921e2cbbc9fbfc2ecc4c1677c58103fb88678e25e11528a1" + } + ] + }, + { + "bom-ref": "17df0346d8d7e4c0", + "type": "file", + "name": "/usr/share/bash-completion/completions/wdctl", + "hashes": [ + { + "alg": "SHA-1", + "content": "4b4c95e5cc0d723729d8ee4e3ec32f99d77ecd24" + }, + { + "alg": "SHA-256", + "content": "d2c3148ba44506574ddfa4cb939d91bd99e8e83b73fbe36119cdba9452e68401" + } + ] + }, + { + "bom-ref": "8c83dbba7aaf0fc9", + "type": "file", + "name": "/usr/share/bash-completion/completions/whereis", + "hashes": [ + { + "alg": "SHA-1", + "content": "906a64de9762f25393d387a83d3bbfd8b34a86b6" + }, + { + "alg": "SHA-256", + "content": "2a040afc44337e73ffcb2b910180aacf09566b784f887e82255a09cc42689d50" + } + ] + }, + { + "bom-ref": "3c39866fbd4d43bb", + "type": "file", + "name": "/usr/share/bash-completion/completions/wipefs", + "hashes": [ + { + "alg": "SHA-1", + "content": "ede679e3f2ff2d53a4c8fb613b75d9166cfa722e" + }, + { + "alg": "SHA-256", + "content": "3850447cb9c3d7e2f2a99f556b88d944cb9b15be6fe9a0d9699ee62242b19412" + } + ] + }, + { + "bom-ref": "dd1aa5b4a57ad84b", + "type": "file", + "name": "/usr/share/bash-completion/completions/zramctl", + "hashes": [ + { + "alg": "SHA-1", + "content": "8f2777708bac7f4ee7f1f78f19043a33e6cfbeeb" + }, + { + "alg": "SHA-256", + "content": "3f7de813fbd3178cac3953891b3c2629f0f911001f2e6e480c25aab193510ebe" + } + ] + }, + { + "bom-ref": "94cfb6badfdedc57", + "type": "file", + "name": "/usr/share/bug/apt/script", + "hashes": [ + { + "alg": "SHA-1", + "content": "5c4fccbb703362ac2d15780606f3cb55c52b9bc8" + }, + { + "alg": "SHA-256", + "content": "b2cba592c2bd6e4077dd8b732d4895c22e77f555ed51540899b9a7bc908751bb" + } + ] + }, + { + "bom-ref": "6f9b67e0b444f7d8", + "type": "file", + "name": "/usr/share/bug/dpkg", + "hashes": [ + { + "alg": "SHA-1", + "content": "3c322bc2a74b42a29db4322a3fa8a9c2021f5ee5" + }, + { + "alg": "SHA-256", + "content": "c25b9bf426a98c31a5e744660f5ba647147a2f5588f538f76d3691e73b28b80c" + } + ] + }, + { + "bom-ref": "9780c8d15dbcf182", + "type": "file", + "name": "/usr/share/bug/init-system-helpers/control", + "hashes": [ + { + "alg": "SHA-1", + "content": "bc2c6c6013f430a68c1bc86eaa98af7b6a2ed019" + }, + { + "alg": "SHA-256", + "content": "c0306308b3e8655628cca8238616b8750ab7003201bdd68937a4739fe087ce5c" + } + ] + }, + { + "bom-ref": "67c55813f31dba46", + "type": "file", + "name": "/usr/share/common-licenses/Apache-2.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "2b8b815229aa8a61e483fb4ba0588b8b6c491890" + }, + { + "alg": "SHA-256", + "content": "cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30" + } + ] + }, + { + "bom-ref": "803ddc72450046ce", + "type": "file", + "name": "/usr/share/common-licenses/Artistic", + "hashes": [ + { + "alg": "SHA-1", + "content": "be0627fff2e8aef3d2a14d5d7486babc8a4873ba" + }, + { + "alg": "SHA-256", + "content": "b7fd9b73ea99602016a326e0b62e6646060d18febdd065ceca8bb482208c3d88" + } + ] + }, + { + "bom-ref": "afba75e9ca4f7093", + "type": "file", + "name": "/usr/share/common-licenses/BSD", + "hashes": [ + { + "alg": "SHA-1", + "content": "095d1f504f6fd8add73a4e4964e37f260f332b6a" + }, + { + "alg": "SHA-256", + "content": "5d588eb3b157d52112afea935c88a7ff9efddc1e2d95a42c25d3b96ad9055008" + } + ] + }, + { + "bom-ref": "eb3316e05a9e81c3", + "type": "file", + "name": "/usr/share/common-licenses/CC0-1.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "82da472f6d00dc5f0a651f33ebb320aa9c7b08d0" + }, + { + "alg": "SHA-256", + "content": "a2010f343487d3f7618affe54f789f5487602331c0a8d03f49e9a7c547cf0499" + } + ] + }, + { + "bom-ref": "e2ff0c48aa2e5c90", + "type": "file", + "name": "/usr/share/common-licenses/GFDL-1.2", + "hashes": [ + { + "alg": "SHA-1", + "content": "fcbf818f92ef8679a88f3778b12b4c8b5810545b" + }, + { + "alg": "SHA-256", + "content": "56976e64523fa1e68db4e6f464f5b2cb89d7d08f54b1d012e317b8db286b3faf" + } + ] + }, + { + "bom-ref": "4d57b0dda2974c1a", + "type": "file", + "name": "/usr/share/common-licenses/GFDL-1.3", + "hashes": [ + { + "alg": "SHA-1", + "content": "e1d31e42d2a477d6def889000aa8ffc251f2354c" + }, + { + "alg": "SHA-256", + "content": "4748f03ed2dbcc14cde6ebc30799899c403e356a7465dc30fcf2b80c45fc0059" + } + ] + }, + { + "bom-ref": "49b7f9c276d4bd52", + "type": "file", + "name": "/usr/share/common-licenses/GPL-1", + "hashes": [ + { + "alg": "SHA-1", + "content": "18eaf66587c5eea277721d5e569a6e3cd869f855" + }, + { + "alg": "SHA-256", + "content": "d77d235e41d54594865151f4751e835c5a82322b0e87ace266567c3391a4b912" + } + ] + }, + { + "bom-ref": "82bad77189dcddc6", + "type": "file", + "name": "/usr/share/common-licenses/GPL-2", + "hashes": [ + { + "alg": "SHA-1", + "content": "4cc77b90af91e615a64ae04893fdffa7939db84c" + }, + { + "alg": "SHA-256", + "content": "8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643" + } + ] + }, + { + "bom-ref": "57b1621fd139e3be", + "type": "file", + "name": "/usr/share/common-licenses/GPL-3", + "hashes": [ + { + "alg": "SHA-1", + "content": "8624bcdae55baeef00cd11d5dfcfa60f68710a02" + }, + { + "alg": "SHA-256", + "content": "8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903" + } + ] + }, + { + "bom-ref": "e34d5d21fff90c88", + "type": "file", + "name": "/usr/share/common-licenses/LGPL-2", + "hashes": [ + { + "alg": "SHA-1", + "content": "ba8966e2473a9969bdcab3dc82274c817cfd98a1" + }, + { + "alg": "SHA-256", + "content": "b7993225104d90ddd8024fd838faf300bea5e83d91203eab98e29512acebd69c" + } + ] + }, + { + "bom-ref": "df24232e1824688f", + "type": "file", + "name": "/usr/share/common-licenses/LGPL-2.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "01a6b4bf79aca9b556822601186afab86e8c4fbf" + }, + { + "alg": "SHA-256", + "content": "dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551" + } + ] + }, + { + "bom-ref": "df6970cc4db906bd", + "type": "file", + "name": "/usr/share/common-licenses/LGPL-3", + "hashes": [ + { + "alg": "SHA-1", + "content": "f45ee1c765646813b442ca58de72e20a64a7ddba" + }, + { + "alg": "SHA-256", + "content": "da7eabb7bafdf7d3ae5e9f223aa5bdc1eece45ac569dc21b3b037520b4464768" + } + ] + }, + { + "bom-ref": "9c2138931b3948be", + "type": "file", + "name": "/usr/share/common-licenses/MPL-1.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "ee93a1907dafcb7901b28f14ee05e49176ab7c87" + }, + { + "alg": "SHA-256", + "content": "f849fc26a7a99981611a3a370e83078deb617d12a45776d6c4cada4d338be469" + } + ] + }, + { + "bom-ref": "d16d00259a895701", + "type": "file", + "name": "/usr/share/common-licenses/MPL-2.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "9744cedce099f727b327cd9913a1fdc58a7f5599" + }, + { + "alg": "SHA-256", + "content": "fab3dd6bdab226f1c08630b1dd917e11fcb4ec5e1e020e2c16f83a0a13863e85" + } + ] + }, + { + "bom-ref": "fa79db32b6996332", + "type": "file", + "name": "/usr/share/debconf/confmodule", + "hashes": [ + { + "alg": "SHA-1", + "content": "ec2348ceb3861d43ab2fcab9da5734d2a20e1d9c" + }, + { + "alg": "SHA-256", + "content": "c441d29fb3a1e75d9a9b35535067f73abf7104ab77cd4286087a154517dfa3dd" + } + ] + }, + { + "bom-ref": "f1992dd1318373d3", + "type": "file", + "name": "/usr/share/debconf/confmodule.sh", + "hashes": [ + { + "alg": "SHA-1", + "content": "65f3de36c25e7baff823a44707c14c78d588b305" + }, + { + "alg": "SHA-256", + "content": "9bb739cea6c1f88c3282c6743a230acba64ac1d12c40a89daf12fe5f2390cb68" + } + ] + }, + { + "bom-ref": "f8c3194c98f7f6dc", + "type": "file", + "name": "/usr/share/debconf/debconf.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "52b154a47b950dfce5dff3103c656f69966a67f9" + }, + { + "alg": "SHA-256", + "content": "2ed2f1e25211c95ae120cecfff540e33a533c03bb2793504c3d692b0b034c2dd" + } + ] + }, + { + "bom-ref": "5fd12eb225a19783", + "type": "file", + "name": "/usr/share/debconf/fix_db.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "5e25875cabcb393d8513ea28d07ede4b53827b3c" + }, + { + "alg": "SHA-256", + "content": "3023d816728349ffe6647f852722046631f1802737753f75517ebff0461473df" + } + ] + }, + { + "bom-ref": "30189de1ce13b9c7", + "type": "file", + "name": "/usr/share/debconf/frontend", + "hashes": [ + { + "alg": "SHA-1", + "content": "e7eaf7b3ce2970e17351bf25dcb51d3cbad23edf" + }, + { + "alg": "SHA-256", + "content": "4425ec2e272875006ca7dde26d1c11b79a0a3570ececcd11f65baddd4b474ae0" + } + ] + }, + { + "bom-ref": "6084cfc28daad706", + "type": "file", + "name": "/usr/share/debconf/transition_db.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "24457df505bb4fe2697e7f185e21aad0705b8e66" + }, + { + "alg": "SHA-256", + "content": "9dbd7e5dcf314de4f1c1f15c46c69754f9c61c6be632b7c5a6efee08df0aa798" + } + ] + }, + { + "bom-ref": "c98b6afbbc151471", + "type": "file", + "name": "/usr/share/debianutils/shells", + "hashes": [ + { + "alg": "SHA-1", + "content": "4f360cd116c9366f8090f987d06a0f415f0c71a8" + }, + { + "alg": "SHA-256", + "content": "184fd1ac95af5ad460ee875e9fddb4975e8720ee7d805d964c68d125573537be" + } + ] + }, + { + "bom-ref": "3ec41edaa59b8ae2", + "type": "file", + "name": "/usr/share/doc-base/findutils", + "hashes": [ + { + "alg": "SHA-1", + "content": "2858e44bc9841dfbad3465e594198820819d396c" + }, + { + "alg": "SHA-256", + "content": "83026123456c2f7c1cc44196701180752a65423ade28344ef277cf577b12faa6" + } + ] + }, + { + "bom-ref": "6ec834183a25d065", + "type": "file", + "name": "/usr/share/doc-base/users-and-groups", + "hashes": [ + { + "alg": "SHA-1", + "content": "7013bfeff328ba446a0d01306f3264cbe8f908ed" + }, + { + "alg": "SHA-256", + "content": "159902a0284dbbcc039824ebab914948f8a803280fa2b67742b8f7fd40c50250" + } + ] + }, + { + "bom-ref": "68449184dd6193fa", + "type": "file", + "name": "/usr/share/doc/adduser/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "31388b9f41add43b5193c735ff757f98e0b56b4e" + }, + { + "alg": "SHA-256", + "content": "3e67668ed552fe3a0684e77282325d07fa8847f2575ea1e1906000de571b5c1e" + } + ] + }, + { + "bom-ref": "5835dd156119c0bd", + "type": "file", + "name": "/usr/share/doc/apt/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "a78f979f237619213f2a0dc4279020c775d2ac38" + }, + { + "alg": "SHA-256", + "content": "307e96c4b7e8170b422d86cfb04d9ae4a404e6d46755448331cdedb23cf1c3b0" + } + ] + }, + { + "bom-ref": "a024e6ef974490e1", + "type": "file", + "name": "/usr/share/doc/base-files/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "ead0e582771a70943265c346c0a16283ee46d513" + }, + { + "alg": "SHA-256", + "content": "cdb5461d8515002d0fe3babb764eec3877458b20f4e4bb16219f62ea953afeea" + } + ] + }, + { + "bom-ref": "fe0d9ed9923c1baf", + "type": "file", + "name": "/usr/share/doc/base-passwd/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "adefc60f944f90ee41d0ac84a9aeda5447987a30" + }, + { + "alg": "SHA-256", + "content": "a77c7e339acd99c86320ee3b47789eebbeaab1bc0d6b5eb966977c4ccf2a6563" + } + ] + }, + { + "bom-ref": "e819c370caccf13a", + "type": "file", + "name": "/usr/share/doc/bash/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "ec167386a742ce0d0a69b2eebbd9d7c6a223dbb0" + }, + { + "alg": "SHA-256", + "content": "da7a8d93abf1eccdeaf326642c8ce9ed760f3a973ca46f3f69b3cf755bb81ade" + } + ] + }, + { + "bom-ref": "177d0e68bc89ec85", + "type": "file", + "name": "/usr/share/doc/bsdutils/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "b0d6c1ee6ae5779cb634f2e65717725201cd53c0" + }, + { + "alg": "SHA-256", + "content": "9fe7275892298c35c8da084b1f5114e6baacb1af56aea0031d6dfec3097301f1" + } + ] + }, + { + "bom-ref": "ea23ab841c4521a7", + "type": "file", + "name": "/usr/share/doc/coreutils/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "83777ceb56f76ff602dfb10f2ac82277c730176e" + }, + { + "alg": "SHA-256", + "content": "350c1a60923248396acdf5aa3d20cdd5156e82648b3411bf9dff3a16b1ce9c7e" + } + ] + }, + { + "bom-ref": "69c9536b6aafe924", + "type": "file", + "name": "/usr/share/doc/dash/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "615fc49104b31c521d435f8f4776460bd19ef298" + }, + { + "alg": "SHA-256", + "content": "7c77d28679de92b8aca0b3dd400eabac91bf9f6c68171e49355888d2593a968f" + } + ] + }, + { + "bom-ref": "cfa0801fc7d2a33b", + "type": "file", + "name": "/usr/share/doc/debconf/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "a9e28b15ea1090dd00910c09f47b4844ed80d8ac" + }, + { + "alg": "SHA-256", + "content": "29162b7d5d9aabc3351d9e834dba936ee0e7b31d8bed2b87bea4b72745f36a66" + } + ] + }, + { + "bom-ref": "04c37f50a862967b", + "type": "file", + "name": "/usr/share/doc/debian-archive-keyring/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "5c99fb4a07cfc548bb209f469ef276106196b252" + }, + { + "alg": "SHA-256", + "content": "b32aecaae84643700a33bc9ee83fa9b36938d35aa7b61b5042092eca77ddb732" + } + ] + }, + { + "bom-ref": "3bd0e76d84eadf44", + "type": "file", + "name": "/usr/share/doc/debianutils/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "5319d6423e4da642ed0aa3f7b79ac7501843c888" + }, + { + "alg": "SHA-256", + "content": "a8698f078cd21fc501e66d070e12cf2f23ec1eaf5841bbc87629de76858ef7a7" + } + ] + }, + { + "bom-ref": "e1301ba84e4540c1", + "type": "file", + "name": "/usr/share/doc/diffutils/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "cacd7d5a52ec2dfeaf512ea45d7aa4d546749979" + }, + { + "alg": "SHA-256", + "content": "b3c97bfbcbb85a128e4408a67bbd7d2b4dd28469e9382a9b42ff4a72cad65024" + } + ] + }, + { + "bom-ref": "0a1fbccbcfbbe800", + "type": "file", + "name": "/usr/share/doc/dpkg/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "f749f6719867a620a66ada355fa5e351b914e3e5" + }, + { + "alg": "SHA-256", + "content": "1a87ca75439f4e5be763913b21e9d23476b7e5c37814b9a0500c819e437f9b8f" + } + ] + }, + { + "bom-ref": "23ba3393864ff4bd", + "type": "file", + "name": "/usr/share/doc/e2fsprogs/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "fc6b02ddb7365d99d34715f755cd7a1a44f59e8e" + }, + { + "alg": "SHA-256", + "content": "b7b391571e7253d4cf607e33e3b463895768fad264471e7774882974f834faa1" + } + ] + }, + { + "bom-ref": "989cd977e70ee157", + "type": "file", + "name": "/usr/share/doc/fdisk/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "b0d6c1ee6ae5779cb634f2e65717725201cd53c0" + }, + { + "alg": "SHA-256", + "content": "9fe7275892298c35c8da084b1f5114e6baacb1af56aea0031d6dfec3097301f1" + } + ] + }, + { + "bom-ref": "ab723a3b4ce8a36c", + "type": "file", + "name": "/usr/share/doc/findutils/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "5b46ef799873422a5e105ad4f2470cac2d6bf77f" + }, + { + "alg": "SHA-256", + "content": "fb98507cf4fa9d3fd299f8d493ae1b3ed0f4d3b530f88a5d4eab187be2a22e26" + } + ] + }, + { + "bom-ref": "d0ada769ddd9ca94", + "type": "file", + "name": "/usr/share/doc/gcc-8-base/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "384081e36f380ffd31b84f5fb1625ddb01cc6412" + }, + { + "alg": "SHA-256", + "content": "9865be517c31de50eb2b36a8957ccd97942807974afad2515578101d1168887a" + } + ] + }, + { + "bom-ref": "ecca6677f42d4558", + "type": "file", + "name": "/usr/share/doc/gpgv/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "cc497524f2e2ae1677f2b8699de4424ff66cb4b6" + }, + { + "alg": "SHA-256", + "content": "8e565dd3d0bf5675e3641b144a7e805ed11be4fbcfdcbc93dc869f7107c0f252" + } + ] + }, + { + "bom-ref": "dd31ca641287535e", + "type": "file", + "name": "/usr/share/doc/grep/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "07c64f0cfe0196aa7cd4cce2d949c2900d9dfc79" + }, + { + "alg": "SHA-256", + "content": "42d9b4d610396b1e8d1303dcb9487af3f5a2d2709623cf03a04cf76acdf6c5e3" + } + ] + }, + { + "bom-ref": "4b47bfe1dc848621", + "type": "file", + "name": "/usr/share/doc/gzip/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "37c2aea0e12b8948ce0c48935ac167442bc5e492" + }, + { + "alg": "SHA-256", + "content": "f9ac4a5d7a670e3891881a2cdba5fa2cd625c4d58eae4a7aa372ac00a06803bd" + } + ] + }, + { + "bom-ref": "9499c9d54cb04f05", + "type": "file", + "name": "/usr/share/doc/hostname/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "4ee28eb61e908c48a9d8e1885df467079d173af5" + }, + { + "alg": "SHA-256", + "content": "272c5b1c9235edc311f202b2a6abfff24ba96a47c779b4db3b97c2e60eb3e81a" + } + ] + }, + { + "bom-ref": "a221b91efa353b2b", + "type": "file", + "name": "/usr/share/doc/init-system-helpers/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "72cc0ea56f3548cb5f649cd6d1428e53f19569b8" + }, + { + "alg": "SHA-256", + "content": "6679b51cc827aeec6b2d10909435db6312a4ecb8a8a8a15cb7194d98460f8869" + } + ] + }, + { + "bom-ref": "2cec65930d3000f5", + "type": "file", + "name": "/usr/share/doc/libacl1/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "50560c96790ad20e386b50012221d6bf298e2e01" + }, + { + "alg": "SHA-256", + "content": "9a2dfb4a5abc7e84be2cc41f1089be665519c9409549296f6c19de57ab1d37c2" + } + ] + }, + { + "bom-ref": "81d903d15d1e7c2f", + "type": "file", + "name": "/usr/share/doc/libapt-pkg5.0/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "a78f979f237619213f2a0dc4279020c775d2ac38" + }, + { + "alg": "SHA-256", + "content": "307e96c4b7e8170b422d86cfb04d9ae4a404e6d46755448331cdedb23cf1c3b0" + } + ] + }, + { + "bom-ref": "a3e324c12d139ddb", + "type": "file", + "name": "/usr/share/doc/libattr1/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "f139a3ba90f2635b230183acd7ff4e8b2caae75e" + }, + { + "alg": "SHA-256", + "content": "0cbec745d85ea775450b2d54fac55277197f429e52d611f72852ed420450620e" + } + ] + }, + { + "bom-ref": "74ce42ceb4917b8b", + "type": "file", + "name": "/usr/share/doc/libaudit-common/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "88131231e40bbcca38b2852b7c8c84c5fc28dd74" + }, + { + "alg": "SHA-256", + "content": "44cda705476da1eea0a6ab4c3d941f756d7b995743214b6f2fa7c7d52d8813e2" + } + ] + }, + { + "bom-ref": "3d06a2468b93c4c1", + "type": "file", + "name": "/usr/share/doc/libaudit1/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "88131231e40bbcca38b2852b7c8c84c5fc28dd74" + }, + { + "alg": "SHA-256", + "content": "44cda705476da1eea0a6ab4c3d941f756d7b995743214b6f2fa7c7d52d8813e2" + } + ] + }, + { + "bom-ref": "908dca9e5306d6d1", + "type": "file", + "name": "/usr/share/doc/libblkid1/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "b0d6c1ee6ae5779cb634f2e65717725201cd53c0" + }, + { + "alg": "SHA-256", + "content": "9fe7275892298c35c8da084b1f5114e6baacb1af56aea0031d6dfec3097301f1" + } + ] + }, + { + "bom-ref": "cdf9f0288d4fd6e8", + "type": "file", + "name": "/usr/share/doc/libbz2-1.0/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "d29b4fd58a4a1923e6fd75369d58d7ded84e54de" + }, + { + "alg": "SHA-256", + "content": "832ed535ff3c3d025a8d2348eb1b697b89addcf2eaadbc17650262040b9145e2" + } + ] + }, + { + "bom-ref": "7a5a555f97b3135d", + "type": "file", + "name": "/usr/share/doc/libc-bin/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "5c4df62d190848821200ce4041d2753bd431a7eb" + }, + { + "alg": "SHA-256", + "content": "40c7e1f2118531f038ca22999bd976901254e1bc5cd1b0f0211bdd064c599987" + } + ] + }, + { + "bom-ref": "6f4bfa124fe29a9d", + "type": "file", + "name": "/usr/share/doc/libc6/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "5c4df62d190848821200ce4041d2753bd431a7eb" + }, + { + "alg": "SHA-256", + "content": "40c7e1f2118531f038ca22999bd976901254e1bc5cd1b0f0211bdd064c599987" + } + ] + }, + { + "bom-ref": "d007ebb9b3dee5f2", + "type": "file", + "name": "/usr/share/doc/libcap-ng0/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "d365603c1824ae72bf09c6613f03a8facbe21d07" + }, + { + "alg": "SHA-256", + "content": "8cdc2d0eeeb4ed84963c58be27389b148e830ce5ec42c2598cf194721d0430ec" + } + ] + }, + { + "bom-ref": "dfd87528c58627be", + "type": "file", + "name": "/usr/share/doc/libcom-err2/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "964940cab57f7a95a1ab2edf904e0018285c13f3" + }, + { + "alg": "SHA-256", + "content": "9e3a4384b6d8d2358d44103f62bcd948328b3f8a63a1a6baa66abeb43302d581" + } + ] + }, + { + "bom-ref": "393938b6d3f0cbf9", + "type": "file", + "name": "/usr/share/doc/libdb5.3/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "6b19d88c2421c47ec380b588ce0558f9b80574f6" + }, + { + "alg": "SHA-256", + "content": "b3bbc6fbb3f2a0e6a487e953eb8c3cc4bdb6f4150f7f51d20b1e9a3c8ef92d3d" + } + ] + }, + { + "bom-ref": "85a072eb69fe4d94", + "type": "file", + "name": "/usr/share/doc/libdebconfclient0/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "88f497736f11896da400269efd7d255d14bc2331" + }, + { + "alg": "SHA-256", + "content": "1f48252e8bd71085c67fe1f5468c67da1d2d7cc34cd8a7e9d90b9ad2df080e8e" + } + ] + }, + { + "bom-ref": "2ce11e0c88eb72f6", + "type": "file", + "name": "/usr/share/doc/libext2fs2/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "fc6b02ddb7365d99d34715f755cd7a1a44f59e8e" + }, + { + "alg": "SHA-256", + "content": "b7b391571e7253d4cf607e33e3b463895768fad264471e7774882974f834faa1" + } + ] + }, + { + "bom-ref": "1bdcab5d04d7995f", + "type": "file", + "name": "/usr/share/doc/libfdisk1/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "b0d6c1ee6ae5779cb634f2e65717725201cd53c0" + }, + { + "alg": "SHA-256", + "content": "9fe7275892298c35c8da084b1f5114e6baacb1af56aea0031d6dfec3097301f1" + } + ] + }, + { + "bom-ref": "ed4f88dc7c0c2385", + "type": "file", + "name": "/usr/share/doc/libffi6/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "da80f4f4082fe6cfabf61ed51f7059ae0c02424e" + }, + { + "alg": "SHA-256", + "content": "7258c8acc378030d8dbe1fcdf394e915769fa31dcbaf3d2991d9a79891f3bcdc" + } + ] + }, + { + "bom-ref": "c4f2b4d7214f631c", + "type": "file", + "name": "/usr/share/doc/libgcrypt20/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "697d2792af8686cbcf1720ed92edd313041e103e" + }, + { + "alg": "SHA-256", + "content": "26c21767c3a769ed688e2fe3d890963bd0992b5a53ee9cd18babd680e665f131" + } + ] + }, + { + "bom-ref": "c92997c457810b89", + "type": "file", + "name": "/usr/share/doc/libgmp10/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "d57b164902c5f5657f38711f25f0883f57722e56" + }, + { + "alg": "SHA-256", + "content": "f73f781beb9f85b3f921f9bf540fc89d6eff9e20689ef9323ce510d077a30878" + } + ] + }, + { + "bom-ref": "ccb2259ec97e8a7c", + "type": "file", + "name": "/usr/share/doc/libgnutls30/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "36379e049de0b6e6447225ba8ed51f447804063c" + }, + { + "alg": "SHA-256", + "content": "d35f0abecc61a3676965c20cf13a44815b05d9b4a68985fa1809b13c2aff9090" + } + ] + }, + { + "bom-ref": "46152a33af2f169a", + "type": "file", + "name": "/usr/share/doc/libgpg-error0/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "73486a0eb60de2396b9306a117bc82885d993594" + }, + { + "alg": "SHA-256", + "content": "ef74578dd392759954c80d4ad3986273d05d8c2098b2e9ee18980f88e0ad3342" + } + ] + }, + { + "bom-ref": "b467d6a5788827c9", + "type": "file", + "name": "/usr/share/doc/libidn2-0/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "c4f462d6880bdf10c6f370dd86ae52a979180e98" + }, + { + "alg": "SHA-256", + "content": "7266ea99392fc30a070358029621c5381fa73a9cec9111d1befb3edf2f379568" + } + ] + }, + { + "bom-ref": "bfcf08e058174c92", + "type": "file", + "name": "/usr/share/doc/liblz4-1/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "ab4cd2512a83c3ba76f3bb529f3233da95ba405e" + }, + { + "alg": "SHA-256", + "content": "a82c5d50439c6d9f32b874dbc75ae5292ba5a3e50318bed80e82a8f5254689ca" + } + ] + }, + { + "bom-ref": "dd55fc7fc95a8cf4", + "type": "file", + "name": "/usr/share/doc/liblzma5/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "1e2322cee162497b530386a6dddc00ffde6e601e" + }, + { + "alg": "SHA-256", + "content": "a2dc8fac0f496e1c58aff67018cf0c6b88336316afa5642f9335b71642e28aa8" + } + ] + }, + { + "bom-ref": "540ea297c0dba3ae", + "type": "file", + "name": "/usr/share/doc/libmount1/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "b0d6c1ee6ae5779cb634f2e65717725201cd53c0" + }, + { + "alg": "SHA-256", + "content": "9fe7275892298c35c8da084b1f5114e6baacb1af56aea0031d6dfec3097301f1" + } + ] + }, + { + "bom-ref": "9a665a1e64a6af9a", + "type": "file", + "name": "/usr/share/doc/libnettle6/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "285aa936bb57c1ecc16c01ba7edb7d7ae85ebc8f" + }, + { + "alg": "SHA-256", + "content": "84de5caab44520665c49dff405356c56de9d371a9f63cf67c09589af14c3f008" + } + ] + }, + { + "bom-ref": "2446cb4505508e16", + "type": "file", + "name": "/usr/share/doc/libp11-kit0/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "127c1aab48bef48205049847a3975711f3041016" + }, + { + "alg": "SHA-256", + "content": "7e0942c830cd46f69d01e0806c63b6757bb229b635f0bdd48bcc0e7c32ea4787" + } + ] + }, + { + "bom-ref": "adbf6f7cd942daa6", + "type": "file", + "name": "/usr/share/doc/libpam-modules-bin/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "4f6dd617065f06173e48f2cd98be073405b2d14b" + }, + { + "alg": "SHA-256", + "content": "7c584b7b1f37b612da7fdf3b076eb2b2c1bae72865f0699d745ae2ac7d40d13e" + } + ] + }, + { + "bom-ref": "61034c6cf1a63d4e", + "type": "file", + "name": "/usr/share/doc/libpam-modules/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "4f6dd617065f06173e48f2cd98be073405b2d14b" + }, + { + "alg": "SHA-256", + "content": "7c584b7b1f37b612da7fdf3b076eb2b2c1bae72865f0699d745ae2ac7d40d13e" + } + ] + }, + { + "bom-ref": "fa50d5bb106640c5", + "type": "file", + "name": "/usr/share/doc/libpam-runtime/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "4f6dd617065f06173e48f2cd98be073405b2d14b" + }, + { + "alg": "SHA-256", + "content": "7c584b7b1f37b612da7fdf3b076eb2b2c1bae72865f0699d745ae2ac7d40d13e" + } + ] + }, + { + "bom-ref": "810df1339419d539", + "type": "file", + "name": "/usr/share/doc/libpam0g/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "4f6dd617065f06173e48f2cd98be073405b2d14b" + }, + { + "alg": "SHA-256", + "content": "7c584b7b1f37b612da7fdf3b076eb2b2c1bae72865f0699d745ae2ac7d40d13e" + } + ] + }, + { + "bom-ref": "81f489454b416c59", + "type": "file", + "name": "/usr/share/doc/libpcre3/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "4fbf031fd132fc284b85934b33df5c858b1e83df" + }, + { + "alg": "SHA-256", + "content": "ac9276490d2fa167442ae1aae33926514ad10c8886baa40046c5e367fccc5938" + } + ] + }, + { + "bom-ref": "a99346798d335209", + "type": "file", + "name": "/usr/share/doc/libseccomp2/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "64fc5a7c28d530bfb4daf70fa41d0946a8c98319" + }, + { + "alg": "SHA-256", + "content": "6da0653a365b80ab31478dbfe9e7c358e80d58b6d2b52b4e16b4dbb42d7d9f5c" + } + ] + }, + { + "bom-ref": "51646cf67af0ee49", + "type": "file", + "name": "/usr/share/doc/libselinux1/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "7457a4fcc8b1f370f9fabb1f3e1df3bd7426977c" + }, + { + "alg": "SHA-256", + "content": "641806738b0c6a3d03168c2649e6b94205198bb66cd557e6bae3a20b71c9bb0b" + } + ] + }, + { + "bom-ref": "68136b838d49a259", + "type": "file", + "name": "/usr/share/doc/libsemanage-common/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "80f13496ec787fb5b457c6cdd9b0fa4b284865be" + }, + { + "alg": "SHA-256", + "content": "e00e6a86c598f9e24ced0180a70a5f2f2e45e133d93adf2b17ce8a06ce4b1b51" + } + ] + }, + { + "bom-ref": "20c7856cce787fcb", + "type": "file", + "name": "/usr/share/doc/libsemanage1/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "80f13496ec787fb5b457c6cdd9b0fa4b284865be" + }, + { + "alg": "SHA-256", + "content": "e00e6a86c598f9e24ced0180a70a5f2f2e45e133d93adf2b17ce8a06ce4b1b51" + } + ] + }, + { + "bom-ref": "8f05dad219b5f871", + "type": "file", + "name": "/usr/share/doc/libsepol1/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "eef1f936876810bdc90eb31dcffabaa2a461702b" + }, + { + "alg": "SHA-256", + "content": "34414ad829fcea0064729c14f1f900632bfa7d38061b13a9797eec320c372d9e" + } + ] + }, + { + "bom-ref": "2480d34f17a5c272", + "type": "file", + "name": "/usr/share/doc/libsmartcols1/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "b0d6c1ee6ae5779cb634f2e65717725201cd53c0" + }, + { + "alg": "SHA-256", + "content": "9fe7275892298c35c8da084b1f5114e6baacb1af56aea0031d6dfec3097301f1" + } + ] + }, + { + "bom-ref": "a7f21c997cadb0fa", + "type": "file", + "name": "/usr/share/doc/libss2/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "67e778ea9b95ab6ab7b40ba50986c2d6dac124da" + }, + { + "alg": "SHA-256", + "content": "6f717a1464301a641ac17e7301f1a1b221da802e8edf8cf4bc963721d487b146" + } + ] + }, + { + "bom-ref": "1d019285db11bcfb", + "type": "file", + "name": "/usr/share/doc/libsystemd0/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "5fcefe8d03de158446e2749ba29fcd404f5b0b57" + }, + { + "alg": "SHA-256", + "content": "c4b0169d4d79af9996c35f65c75daa1f919e1eac60180295c18331a31deb134c" + } + ] + }, + { + "bom-ref": "21a8f52c91009ed3", + "type": "file", + "name": "/usr/share/doc/libtasn1-6/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "092bf1eebd07625a23b844d767001cbb2ef9b625" + }, + { + "alg": "SHA-256", + "content": "dc1e5deaae0e497cdf0833a38742749695ad77fb8cfb5ef1e608724e6add9c81" + } + ] + }, + { + "bom-ref": "d9b0f9c0678d7fb2", + "type": "file", + "name": "/usr/share/doc/libtinfo6/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "37dcd9c6a4af70f278c55c8370a1dfd610058c22" + }, + { + "alg": "SHA-256", + "content": "5e8ee902c8906ddb7779fd36dc9979cb08b51fbebf7c0b1a9aeb78af382af590" + } + ] + }, + { + "bom-ref": "f25ebf3b2df7c200", + "type": "file", + "name": "/usr/share/doc/libudev1/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "5fcefe8d03de158446e2749ba29fcd404f5b0b57" + }, + { + "alg": "SHA-256", + "content": "c4b0169d4d79af9996c35f65c75daa1f919e1eac60180295c18331a31deb134c" + } + ] + }, + { + "bom-ref": "5a5e62a41604be0f", + "type": "file", + "name": "/usr/share/doc/libunistring2/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "fba3b7b26f1df1e7b497f4be1825dfdbfccfc279" + }, + { + "alg": "SHA-256", + "content": "61b72a0430a1ec0c5cbabf6982bb4e4f7b4f040c50a31bbd503e95f890a32c87" + } + ] + }, + { + "bom-ref": "dbc893d2cbdb837b", + "type": "file", + "name": "/usr/share/doc/libuuid1/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "b0d6c1ee6ae5779cb634f2e65717725201cd53c0" + }, + { + "alg": "SHA-256", + "content": "9fe7275892298c35c8da084b1f5114e6baacb1af56aea0031d6dfec3097301f1" + } + ] + }, + { + "bom-ref": "7eca8f5e2aff279d", + "type": "file", + "name": "/usr/share/doc/libzstd1/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "7df6e78680e189da370a4606e71c45c7ffea5337" + }, + { + "alg": "SHA-256", + "content": "61dd6d9f6c02e3ccb52dc6924ddea5808be432835a454b64d807db546d80c25f" + } + ] + }, + { + "bom-ref": "005fe6228cec9ebb", + "type": "file", + "name": "/usr/share/doc/login/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "6cf403ae824277b0dbf6424d83262997442be5ea" + }, + { + "alg": "SHA-256", + "content": "56ca9c00cdef4d69b35d2013465c539eb9e09a80fec538d0f6dc91423dbaa1d3" + } + ] + }, + { + "bom-ref": "1d2a3da9ae96bda2", + "type": "file", + "name": "/usr/share/doc/mawk/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "9de239f48e335976027302ad1f672ff01e3873ff" + }, + { + "alg": "SHA-256", + "content": "80910bdabaf183ae4d3ffd72d9fe9066a9a1035be8e5d7dd541ddc6755d19abb" + } + ] + }, + { + "bom-ref": "10d131a95602437d", + "type": "file", + "name": "/usr/share/doc/mount/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "b0d6c1ee6ae5779cb634f2e65717725201cd53c0" + }, + { + "alg": "SHA-256", + "content": "9fe7275892298c35c8da084b1f5114e6baacb1af56aea0031d6dfec3097301f1" + } + ] + }, + { + "bom-ref": "3b78b8e21b22e0c5", + "type": "file", + "name": "/usr/share/doc/ncurses-base/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "37dcd9c6a4af70f278c55c8370a1dfd610058c22" + }, + { + "alg": "SHA-256", + "content": "5e8ee902c8906ddb7779fd36dc9979cb08b51fbebf7c0b1a9aeb78af382af590" + } + ] + }, + { + "bom-ref": "059332ea8e39eb67", + "type": "file", + "name": "/usr/share/doc/ncurses-bin/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "37dcd9c6a4af70f278c55c8370a1dfd610058c22" + }, + { + "alg": "SHA-256", + "content": "5e8ee902c8906ddb7779fd36dc9979cb08b51fbebf7c0b1a9aeb78af382af590" + } + ] + }, + { + "bom-ref": "0555889a73b1072e", + "type": "file", + "name": "/usr/share/doc/passwd/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "6cf403ae824277b0dbf6424d83262997442be5ea" + }, + { + "alg": "SHA-256", + "content": "56ca9c00cdef4d69b35d2013465c539eb9e09a80fec538d0f6dc91423dbaa1d3" + } + ] + }, + { + "bom-ref": "7dd889cd535c4ee0", + "type": "file", + "name": "/usr/share/doc/perl/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "7dbffb4103bf00705d3ae598a9739e4a4e8938bf" + }, + { + "alg": "SHA-256", + "content": "d4d4d09e501ff40950f29373512a4db1721604a5c3e0c0d9510f23f72ef0860c" + } + ] + }, + { + "bom-ref": "960d7c1077634fca", + "type": "file", + "name": "/usr/share/doc/sed/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "e8a478d071577c0f555120a909538ab015adb2e8" + }, + { + "alg": "SHA-256", + "content": "60886b6264e9531565ccf1e31a63cd9b23f0bf4bbd7053b46aa9e6ae7622d31d" + } + ] + }, + { + "bom-ref": "1a7c5faa3f1df97c", + "type": "file", + "name": "/usr/share/doc/sysvinit-utils/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "66130e3610ecfee561a2690f95714d267fd7ccc6" + }, + { + "alg": "SHA-256", + "content": "ce1edf366d5e3d9a26ca2708247ce57c7475c526ec7f8048fb5ca0296e2c2837" + } + ] + }, + { + "bom-ref": "c260f0937fc050cb", + "type": "file", + "name": "/usr/share/doc/tar/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "6684fe4a523a2266552fb5f3af6266af7674dfa6" + }, + { + "alg": "SHA-256", + "content": "9292780f2dfd11900e92ea67c7a316cf9df740b955956f87ec099a5b4f3d9136" + } + ] + }, + { + "bom-ref": "91cf0fdf6575c0b4", + "type": "file", + "name": "/usr/share/doc/tzdata/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "372af7c5572684c49c9bb641c2a2a42f0967cc67" + }, + { + "alg": "SHA-256", + "content": "75b41b8de75b1596a239f6fa8e4caa409de4cf985cee2943d2a94b4e96a5197d" + } + ] + }, + { + "bom-ref": "ffa1bcb2a229c5d3", + "type": "file", + "name": "/usr/share/doc/util-linux/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "b0d6c1ee6ae5779cb634f2e65717725201cd53c0" + }, + { + "alg": "SHA-256", + "content": "9fe7275892298c35c8da084b1f5114e6baacb1af56aea0031d6dfec3097301f1" + } + ] + }, + { + "bom-ref": "81ba383cf93074da", + "type": "file", + "name": "/usr/share/doc/zlib1g/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "39128d0780a010c6fa3b9002b383a98a7439dee5" + }, + { + "alg": "SHA-256", + "content": "d77204eee882807240f6351c4f5ae2a4bcdb5b773ff77d10647b9b66b826b2fb" + } + ] + }, + { + "bom-ref": "f57acc87558d09e6", + "type": "file", + "name": "/usr/share/dpkg/abitable", + "hashes": [ + { + "alg": "SHA-1", + "content": "f217c6a7b190107dedb49c792653f19322f65193" + }, + { + "alg": "SHA-256", + "content": "c9ed655f391a2dffdfee2070e9c4bd1f502ffff17d19abff21ba492ab643c919" + } + ] + }, + { + "bom-ref": "d0b5f3636a2661f9", + "type": "file", + "name": "/usr/share/dpkg/cputable", + "hashes": [ + { + "alg": "SHA-1", + "content": "113af339a74ad34b6f3adaa35e5311e96d9789dc" + }, + { + "alg": "SHA-256", + "content": "88d770b7e95d793c6250285c4d901365487c44e460a8ebdd4895685f7613d104" + } + ] + }, + { + "bom-ref": "9254d4309bdf1d2c", + "type": "file", + "name": "/usr/share/dpkg/ostable", + "hashes": [ + { + "alg": "SHA-1", + "content": "f3a941c26e8f6a4f7c3b43b14714ab013e9d089d" + }, + { + "alg": "SHA-256", + "content": "49b8a094236fd9f06463afab94d49956cf6fba363ec14d75da6ae3310214ca42" + } + ] + }, + { + "bom-ref": "e987b540cd8a534d", + "type": "file", + "name": "/usr/share/dpkg/tupletable", + "hashes": [ + { + "alg": "SHA-1", + "content": "fccda70d1771b3bca71f0b6ca0aa5e7da3590b93" + }, + { + "alg": "SHA-256", + "content": "8e67a11365119686218b5a245c60fc62484050daf676c6e009d9a0a0e4265f0a" + } + ] + }, + { + "bom-ref": "f240ec2e394b7f38", + "type": "file", + "name": "/usr/share/gcc-8/python/libstdcxx/__init__.py", + "hashes": [ + { + "alg": "SHA-1", + "content": "adc83b19e793491b1c6ea0fd8b46cd9f32e592fc" + }, + { + "alg": "SHA-256", + "content": "01ba4719c80b6fe911b091a7c05124b64eeece964e09c058ef8f9805daca546b" + } + ] + }, + { + "bom-ref": "1e4b41dbee4c8322", + "type": "file", + "name": "/usr/share/gcc-8/python/libstdcxx/v6/__init__.py", + "hashes": [ + { + "alg": "SHA-1", + "content": "47a94a4c7ae319ddeddea45d8c60854f4cf80c50" + }, + { + "alg": "SHA-256", + "content": "fc792a50d118d5feb068481d0328f89fe8762b7705011910281bfe65c1170c8f" + } + ] + }, + { + "bom-ref": "af32f44a32ac2f9c", + "type": "file", + "name": "/usr/share/gcc-8/python/libstdcxx/v6/printers.py", + "hashes": [ + { + "alg": "SHA-1", + "content": "120175fe9c596fb98e17650dc8ff6979212a8f84" + }, + { + "alg": "SHA-256", + "content": "1e7e02c740c4cc73e5992d39d0f6e8bcf580dbbf52b65f96d70923db2069e800" + } + ] + }, + { + "bom-ref": "d020cdfdaf47c7f9", + "type": "file", + "name": "/usr/share/gcc-8/python/libstdcxx/v6/xmethods.py", + "hashes": [ + { + "alg": "SHA-1", + "content": "9a3595a01636b3c76dfa45907fa09661f4dc5afa" + }, + { + "alg": "SHA-256", + "content": "98db47a3b61cf963823b628160a329db5c38812a0886deeca7195046df87a908" + } + ] + }, + { + "bom-ref": "d206f75eee94e52c", + "type": "file", + "name": "/usr/share/gdb/auto-load/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25-gdb.py", + "hashes": [ + { + "alg": "SHA-1", + "content": "7548794459302e04df1bad2812fd8d8425bac892" + }, + { + "alg": "SHA-256", + "content": "d6380489539aa349920cb13761c9d3dd223866f05320a195ace37566fd064572" + } + ] + }, + { + "bom-ref": "75dc68068d61124f", + "type": "file", + "name": "/usr/share/keyrings/debian-archive-bullseye-automatic.gpg", + "hashes": [ + { + "alg": "SHA-1", + "content": "27d0f29dc003b5a8c91ba4d61eb39b7a4301c4c1" + }, + { + "alg": "SHA-256", + "content": "9395df01c1c6226584206a77d237c60fdc7039a015ece4e6bd3b1947db6c3b1e" + } + ] + }, + { + "bom-ref": "7649d555efd34a43", + "type": "file", + "name": "/usr/share/keyrings/debian-archive-bullseye-security-automatic.gpg", + "hashes": [ + { + "alg": "SHA-1", + "content": "4c3899132dad707cbbe44cf490ba43e35a0dec12" + }, + { + "alg": "SHA-256", + "content": "e551f90fa954a65b3b6c54160f9d8485bee806318afe7a6998c4d9bece8e0df3" + } + ] + }, + { + "bom-ref": "d4f938feef64ada2", + "type": "file", + "name": "/usr/share/keyrings/debian-archive-bullseye-stable.gpg", + "hashes": [ + { + "alg": "SHA-1", + "content": "30a6bce0cab0fe98ca0b13447904f14c33f60b45" + }, + { + "alg": "SHA-256", + "content": "0cdd043ff2e04448802488fd4a4e3812c298a1ab5d81374ea9a9693a274cef8c" + } + ] + }, + { + "bom-ref": "d2e5595b4090be1b", + "type": "file", + "name": "/usr/share/keyrings/debian-archive-buster-automatic.gpg", + "hashes": [ + { + "alg": "SHA-1", + "content": "a6f83aced5193f1f7c1e155785f5b61d38361615" + }, + { + "alg": "SHA-256", + "content": "89d89bcedee9ed88b25eabb5be786fbca6259f121e6ad6ebf5651f852f5227cf" + } + ] + }, + { + "bom-ref": "21dbaa4c354aa179", + "type": "file", + "name": "/usr/share/keyrings/debian-archive-buster-security-automatic.gpg", + "hashes": [ + { + "alg": "SHA-1", + "content": "400181c4e2ebaf97a4e8b37b904b6bbe94998429" + }, + { + "alg": "SHA-256", + "content": "bd5d7f0384531497968f1866efa6118938e812582a8d2fe86d87b0266c495783" + } + ] + }, + { + "bom-ref": "58ae5f56a3cfc170", + "type": "file", + "name": "/usr/share/keyrings/debian-archive-buster-stable.gpg", + "hashes": [ + { + "alg": "SHA-1", + "content": "a4f90d5b993f61a779f40bc1dff6551a5d7b2b03" + }, + { + "alg": "SHA-256", + "content": "488a60d5065a97cc8b3c907be6d2c12ba5dee5b88f5efeebbd8beb60cc9cced1" + } + ] + }, + { + "bom-ref": "2c80310af7852ca1", + "type": "file", + "name": "/usr/share/keyrings/debian-archive-keyring.gpg", + "hashes": [ + { + "alg": "SHA-1", + "content": "840de30631af61f66914d4f2a162d4dd15dda88b" + }, + { + "alg": "SHA-256", + "content": "a75b59c2c00e3e84dc5c37cf2a459702bd8e0f990d09bf4c3acb6dd2953a3998" + } + ] + }, + { + "bom-ref": "27959408624a5bb5", + "type": "file", + "name": "/usr/share/keyrings/debian-archive-removed-keys.gpg", + "hashes": [ + { + "alg": "SHA-1", + "content": "1f98e588d8eb046df11dbf7d02f2f986a172382a" + }, + { + "alg": "SHA-256", + "content": "2bf17b8b38083e34a0bd6787264f3827df849a66d6960d3f11e77acb5c340922" + } + ] + }, + { + "bom-ref": "0bc69db7d2234f69", + "type": "file", + "name": "/usr/share/keyrings/debian-archive-stretch-automatic.gpg", + "hashes": [ + { + "alg": "SHA-1", + "content": "d62ea924a47d9a3fb24f8a98e32bd88947ba2986" + }, + { + "alg": "SHA-256", + "content": "6e6648330a58db617dd13ba9f51b4101932559d477e7fe5fb656d3a4352efb57" + } + ] + }, + { + "bom-ref": "fe2ffc7f96b4d117", + "type": "file", + "name": "/usr/share/keyrings/debian-archive-stretch-security-automatic.gpg", + "hashes": [ + { + "alg": "SHA-1", + "content": "2687cdcd03c9d5a22e619783b721cdfd60fb7fbd" + }, + { + "alg": "SHA-256", + "content": "481618230f62a29729c58e35684eec7be8774c68b7f94f4a70dae668874e12df" + } + ] + }, + { + "bom-ref": "0a87d4946e442ae2", + "type": "file", + "name": "/usr/share/keyrings/debian-archive-stretch-stable.gpg", + "hashes": [ + { + "alg": "SHA-1", + "content": "6f24e387825ddc9f9df9192e5f94c7c6464885b2" + }, + { + "alg": "SHA-256", + "content": "5306306431152a3fc27406f420b9e1d9905c221ad9565ac7f11abaa3867b0885" + } + ] + }, + { + "bom-ref": "5f6aa9a8c130ef84", + "type": "file", + "name": "/usr/share/libc-bin/nsswitch.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "6dffef69c10367a91b048d9180a4424eede80b74" + }, + { + "alg": "SHA-256", + "content": "eec30745bade42a3f3f792e4d4192e57d2bcfe8e472433b1de426fe39a39cddb" + } + ] + }, + { + "bom-ref": "f6c7e7ec4e82cf74", + "type": "file", + "name": "/usr/share/lintian/profiles/dpkg/main.profile", + "hashes": [ + { + "alg": "SHA-1", + "content": "e744141dcd15fb4e2c10ecf50458a2d70f000081" + }, + { + "alg": "SHA-256", + "content": "9c7ad7d30a894b98266051bab347007009898aa0ddd0aa234cc127a92aefd0d0" + } + ] + }, + { + "bom-ref": "1f45c2944b9d215f", + "type": "file", + "name": "/usr/share/menu/bash", + "hashes": [ + { + "alg": "SHA-1", + "content": "076b29db00bf32456969bd5b1815df7a806abfa4" + }, + { + "alg": "SHA-256", + "content": "1e862c7883df7a31e995769e90b4e6b87399a70f2cad6b2ce95fd865975286aa" + } + ] + }, + { + "bom-ref": "a65b5a88d2ac41ce", + "type": "file", + "name": "/usr/share/menu/dash", + "hashes": [ + { + "alg": "SHA-1", + "content": "28daf8a290b88e61acf188ed687992e2b42e8f9e" + }, + { + "alg": "SHA-256", + "content": "c8bdff923cdb32fc55c80c70546c344e22444dfdccdea6280d9c4c6fa25c7c38" + } + ] + }, + { + "bom-ref": "d2bd8bf3e5932915", + "type": "file", + "name": "/usr/share/pam-configs/mkhomedir", + "hashes": [ + { + "alg": "SHA-1", + "content": "01da6ef5f074c49588a5f08e9084558f2454d319" + }, + { + "alg": "SHA-256", + "content": "ea2840c7336e177f75943580824fe69a5edff790c30c1c40c286462151e22dfa" + } + ] + }, + { + "bom-ref": "3a0679fc0f0b2813", + "type": "file", + "name": "/usr/share/pam-configs/unix", + "hashes": [ + { + "alg": "SHA-1", + "content": "727dc8f53ceaea0264d0877fcbb2a52eb341ff10" + }, + { + "alg": "SHA-256", + "content": "5b434421d10875a53932e967eddc9b885ea42bd9f1360600af04248e8d42be74" + } + ] + }, + { + "bom-ref": "7c0701caf897da96", + "type": "file", + "name": "/usr/share/pam/common-account", + "hashes": [ + { + "alg": "SHA-1", + "content": "dc0573f2ff8f2fc9b73566aafc08f1932f97161e" + }, + { + "alg": "SHA-256", + "content": "8657819f898333b2ff09e8bb4fcc6ffabb02acd015411d0ec89f28a70e672537" + } + ] + }, + { + "bom-ref": "dec0efc0cc43d621", + "type": "file", + "name": "/usr/share/pam/common-account.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "3c813640dfab3bb74d75c3a21fd69b067e55d8c7" + }, + { + "alg": "SHA-256", + "content": "8e2e9985399c29f44638f97acc1b71f9b2b946cfedb21ead16a54cd12c25992a" + } + ] + }, + { + "bom-ref": "d895c20ba0895050", + "type": "file", + "name": "/usr/share/pam/common-auth", + "hashes": [ + { + "alg": "SHA-1", + "content": "483e67258ebaf6ea234773804eca370267fea030" + }, + { + "alg": "SHA-256", + "content": "940827d13f472a45ebd38cca4c4b2f91b7fc22f08a266a9e987222e88df4cc9b" + } + ] + }, + { + "bom-ref": "74dbb82d75fc1c6f", + "type": "file", + "name": "/usr/share/pam/common-auth.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "5bec296feed2e1ee63844074e0211549b1d796d6" + }, + { + "alg": "SHA-256", + "content": "9dfd7b4897f508b7e327e7a511c7d097551d7063145b411e266aa91f2c0c1d57" + } + ] + }, + { + "bom-ref": "9f40897563d01962", + "type": "file", + "name": "/usr/share/pam/common-password", + "hashes": [ + { + "alg": "SHA-1", + "content": "6106317c56b17c5dee2adb2156223a1a35fd3aa5" + }, + { + "alg": "SHA-256", + "content": "fa54ac2f7b8f18c22c1a73dc63d471bfd2694686686fd244d02cd774772dc911" + } + ] + }, + { + "bom-ref": "ce83895bf333ede0", + "type": "file", + "name": "/usr/share/pam/common-password.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "75ae9a1a6c4ddedd753e8dfbe215125bf5c919bc" + }, + { + "alg": "SHA-256", + "content": "5f44a9db909d4ec8cc580261a4674f9a609ad5e7a776a7896087b738e9581b38" + } + ] + }, + { + "bom-ref": "5757432efd3d7f7a", + "type": "file", + "name": "/usr/share/pam/common-session", + "hashes": [ + { + "alg": "SHA-1", + "content": "0bd34b41e75c07e4d521e9fb229cab47e0a479fd" + }, + { + "alg": "SHA-256", + "content": "b1413e5c9105ebdaec6be4eee00535552331a09c5f6206006e8c280374b5a2df" + } + ] + }, + { + "bom-ref": "f4a4f1efd970c907", + "type": "file", + "name": "/usr/share/pam/common-session-noninteractive", + "hashes": [ + { + "alg": "SHA-1", + "content": "2e5f555beff3731d027fed20072ba528f2cb5758" + }, + { + "alg": "SHA-256", + "content": "7ac763203bc998dde4c1ddbdf0c572be2afa61e3f59d82194a51f7b3a5d11f7f" + } + ] + }, + { + "bom-ref": "f4cd678100c84fb7", + "type": "file", + "name": "/usr/share/pam/common-session-noninteractive.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "84e8ae9d5fb3816a33fa83c6e803d30c2dcc53aa" + }, + { + "alg": "SHA-256", + "content": "c4e029edf22d18a793db84b3092d36b88ddfacc5e361b785364e4756755b10e1" + } + ] + }, + { + "bom-ref": "35114347f1a749b2", + "type": "file", + "name": "/usr/share/pam/common-session.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "cc9918b908f52c7c298d8ddb58b208bfb4dfb55d" + }, + { + "alg": "SHA-256", + "content": "b80d0e21fd90493886ba1dd4a4fbacf283e6ffc07815469a0ccb130f2e5d156b" + } + ] + }, + { + "bom-ref": "7683bdf9aa56cc2d", + "type": "file", + "name": "/usr/share/perl5/Debconf/AutoSelect.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "e107e183410ea3afdb443cb398097c9a11c9e754" + }, + { + "alg": "SHA-256", + "content": "1ba6314adcb7339b9730255a752b78863688d7628fe75fe5d02ea04607b7f80d" + } + ] + }, + { + "bom-ref": "f5cb831360b697c4", + "type": "file", + "name": "/usr/share/perl5/Debconf/Base.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "6122fa7bf985a3dba2b8a7b6355222da172ca993" + }, + { + "alg": "SHA-256", + "content": "66ddc0f2cb2cae1e92bce9f5ae48cc82aea652a9ade8ab86cf9a1a3093e1f3e1" + } + ] + }, + { + "bom-ref": "0d23b7808c5dc4d0", + "type": "file", + "name": "/usr/share/perl5/Debconf/Client/ConfModule.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "b50df3b24b8ac4cfa07aa84dd930887ca510a65f" + }, + { + "alg": "SHA-256", + "content": "7d1b308c40b249d160ca49488f5ef1658db695940b53c7bf83bc89f49640b066" + } + ] + }, + { + "bom-ref": "075bf35233073601", + "type": "file", + "name": "/usr/share/perl5/Debconf/ConfModule.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "ba68143a442a8a7ee46f6d6f666bcb9e0eb5b017" + }, + { + "alg": "SHA-256", + "content": "387c6f3a403d3e4cd862b3e68450ab014be1b3b7b6c5824e09ad2f590aae2314" + } + ] + }, + { + "bom-ref": "a699e11fdfc9ec93", + "type": "file", + "name": "/usr/share/perl5/Debconf/Config.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "96b35c728b9570b37a9e3b085feac97d8c446eba" + }, + { + "alg": "SHA-256", + "content": "cd8de0d581b2ef08ff3deddd060fed52e4a914ddc0b59d46e3af617ee4961d1d" + } + ] + }, + { + "bom-ref": "1725126a6b9e3744", + "type": "file", + "name": "/usr/share/perl5/Debconf/Db.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "f7505af908ff3f42d42b9cf41cfe245c8ecc4595" + }, + { + "alg": "SHA-256", + "content": "c0e7a554455e3cf9c42d937bbc8a701627b43f048cbf7a1d7590af44f218338f" + } + ] + }, + { + "bom-ref": "520be2d6b6cd2dc4", + "type": "file", + "name": "/usr/share/perl5/Debconf/DbDriver.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "49aaa9fa144c0ddfb1d5a00cc0de2ceb74d19924" + }, + { + "alg": "SHA-256", + "content": "7ce0f564262a8d5dcdc1027951b080af151669b1841ac88cf6db54f9f5dcacab" + } + ] + }, + { + "bom-ref": "70c2ea51728c4bc0", + "type": "file", + "name": "/usr/share/perl5/Debconf/DbDriver/Backup.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "4423c82d0001e5f0d481c5179db639e6e790175c" + }, + { + "alg": "SHA-256", + "content": "0dd39de90e426e2062483ea468348aef62ecbdfb76fb1292728f3679a42b9dfd" + } + ] + }, + { + "bom-ref": "1cb1c6a0ae0fb3fc", + "type": "file", + "name": "/usr/share/perl5/Debconf/DbDriver/Cache.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "ad42cb683bfe58fe2cab66c9fb843d8c19a425ec" + }, + { + "alg": "SHA-256", + "content": "7075a4f322db7e12d96e2391267073cf11a01277ed972b8fd5285c8b3b89e272" + } + ] + }, + { + "bom-ref": "f83ec3371590fcba", + "type": "file", + "name": "/usr/share/perl5/Debconf/DbDriver/Copy.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "e9c686bdeb9f57047ff204ccda738029dc86dc11" + }, + { + "alg": "SHA-256", + "content": "d79bf94498c68355489fdd90c09d7aaa62116e42f0845ae78ba2c3b45fef9859" + } + ] + }, + { + "bom-ref": "297b8dd52288d7e3", + "type": "file", + "name": "/usr/share/perl5/Debconf/DbDriver/Debug.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "9050a7cd0fb2f2c3ab7a5ff7e6db44d2c94f92ce" + }, + { + "alg": "SHA-256", + "content": "feb9793dbf296b01cc866c0bb792843e711f2126a2ed4171f4a1f2561da76cb8" + } + ] + }, + { + "bom-ref": "103d600d1b33ef9e", + "type": "file", + "name": "/usr/share/perl5/Debconf/DbDriver/DirTree.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "df8bc8c333020098e3bd2a3d2d93259bd43ffe07" + }, + { + "alg": "SHA-256", + "content": "57aba77c08bd3c0106b9d21c1c177984e20a477c2528b85b13ef1345b20af677" + } + ] + }, + { + "bom-ref": "809bcab1b6b0983f", + "type": "file", + "name": "/usr/share/perl5/Debconf/DbDriver/Directory.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "b8053edbd613ec9a61f22dc43fbf8a7acbc6d369" + }, + { + "alg": "SHA-256", + "content": "ecf618cb2a38996f131f775e72084062b9c942c274133f7adb50ab8c36ef598f" + } + ] + }, + { + "bom-ref": "717b2d240225733b", + "type": "file", + "name": "/usr/share/perl5/Debconf/DbDriver/File.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "5fc8769cfd59b52fbb5004e7723ca0d736a7c142" + }, + { + "alg": "SHA-256", + "content": "18906996142065a6c897392a366934054c821d08f34acacb645724da5f6235d5" + } + ] + }, + { + "bom-ref": "9bd6376cb01640f0", + "type": "file", + "name": "/usr/share/perl5/Debconf/DbDriver/LDAP.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "14235bdbfa2df6778a94c57fff0de58aabbd5644" + }, + { + "alg": "SHA-256", + "content": "633a36005440e5101b822a293751d63e0574787fe2b13157aacc2bc00fb0ef02" + } + ] + }, + { + "bom-ref": "55ffb70536f1d995", + "type": "file", + "name": "/usr/share/perl5/Debconf/DbDriver/PackageDir.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "2f601a30edc10170218670abf3670382fabfd2af" + }, + { + "alg": "SHA-256", + "content": "081953795cd5ffbfc2b56cdc1e24c59f76be1fd7664ceaaee6688a55f12c1a3e" + } + ] + }, + { + "bom-ref": "a5d75d034afcc307", + "type": "file", + "name": "/usr/share/perl5/Debconf/DbDriver/Pipe.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "d15a410f5d522aa23c9d4ed78d02036a4113d73c" + }, + { + "alg": "SHA-256", + "content": "b50341f54a9e86d13c0fc1b607466df39f8db062f226b22123a97d73b1d73063" + } + ] + }, + { + "bom-ref": "795fbae5bb447665", + "type": "file", + "name": "/usr/share/perl5/Debconf/DbDriver/Stack.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "7bf894d30b739a17975090168a9684a3161169e1" + }, + { + "alg": "SHA-256", + "content": "f55d0e3f3f4f3ad8910ca1db54838eea67ee5b4fd4efdfa668e4fb23b432f6b9" + } + ] + }, + { + "bom-ref": "3459e77aa4ad0c73", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "21e05af09e6f14ced01d6d3c90c6e50994639007" + }, + { + "alg": "SHA-256", + "content": "00c10272de11fd0ddfbacf752982b22623e629b9d796533c95d586d858ce2c39" + } + ] + }, + { + "bom-ref": "49ec7361531acdbb", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Dialog/Boolean.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "4fb3eb2e96d075090df0733d25fc1ed08dbc3ddc" + }, + { + "alg": "SHA-256", + "content": "81d60ef5716baeedcd3ec9ed5d59d8d310d6a187d7c902133770fa201604cfa5" + } + ] + }, + { + "bom-ref": "a85dd42d5ca4e5c1", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Dialog/Error.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "235b1a24d7a044bbb39379dd3bd76bf2632e170b" + }, + { + "alg": "SHA-256", + "content": "94044eacc5f6137204dc1c805e9323d8ee370163e21e16485961c073bd244c16" + } + ] + }, + { + "bom-ref": "ae61336e42246327", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Dialog/Multiselect.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "d866481152d59808652f248131e0ecf4997fb569" + }, + { + "alg": "SHA-256", + "content": "5a89b6e6233776c40896589664ad74bf8c78235f23ebcc19e9dcda32beb21e9e" + } + ] + }, + { + "bom-ref": "9c97dd96d54fcc5e", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Dialog/Note.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "a105586f6bf5510cc1897c29376572dde7ceadd5" + }, + { + "alg": "SHA-256", + "content": "768e0c2ebfbc4e9227ce359f38b2469e070135c56adba1ec7f5b7505e8ec87e6" + } + ] + }, + { + "bom-ref": "16f8c8910ce2d4e6", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Dialog/Password.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "510387c0ff17a7ae937956816fd389dce181033a" + }, + { + "alg": "SHA-256", + "content": "0f795cb55435e9660233584f899e769e263d1e605e9748860b5edb02ffad3aae" + } + ] + }, + { + "bom-ref": "6c2d7ea9bce02cf9", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Dialog/Progress.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "1def1fe9cb3b91b2a2c9e293f2d61aba2aa82061" + }, + { + "alg": "SHA-256", + "content": "abe844eae752340e23f9f21ddcb6b24764f0eb980471c25f5158c452cfce961d" + } + ] + }, + { + "bom-ref": "6d99306e39a95259", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Dialog/Select.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "0e0091068d5d20e97d3bbfd97b35849ccb5f6773" + }, + { + "alg": "SHA-256", + "content": "024a308e995a3721990978bfc60d584e3a0fc8ed08753692727e1012cfdba322" + } + ] + }, + { + "bom-ref": "faca027b2c165acd", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Dialog/String.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "154ba2078e5fad71f6870bb9dfb66db893b3a8ea" + }, + { + "alg": "SHA-256", + "content": "6c2a414ab5362a2d25f5d080c18da7dfb6efee6d6073635b6e3f1da5793ffac8" + } + ] + }, + { + "bom-ref": "c26a5742c6241645", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Dialog/Text.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "2243bb3d5647e8ee596f9902f0db200d0c00b5d3" + }, + { + "alg": "SHA-256", + "content": "d95c589193ffc32fa5f5c7fb151a458f210ec17a8f33ef5d1644b61110c7a8b0" + } + ] + }, + { + "bom-ref": "632324c7d165d6fc", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Editor/Boolean.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "5be970a25fc546071c277ce4ff68c8003f298658" + }, + { + "alg": "SHA-256", + "content": "03aaf5a065ce57bce012d4ac22f19c776eb5b49daf5842f06bf50de0948b7b17" + } + ] + }, + { + "bom-ref": "7c39181312fed2d6", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Editor/Error.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "e23bcf644cab0bfb1932823a0b8c503d16bfa1f3" + }, + { + "alg": "SHA-256", + "content": "dea5e8e710441f23f824944d013a72167c5e5a0eb9ed31502b543e6aea6d33ba" + } + ] + }, + { + "bom-ref": "4274e0f516f688aa", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Editor/Multiselect.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "9a9a80c08c81874255275c18847d39ee0da41b25" + }, + { + "alg": "SHA-256", + "content": "6a607d19aec535e157cc301eb01a49d25335000d3312f5d0a06e9701d46edfb3" + } + ] + }, + { + "bom-ref": "7a94ff5e7d235868", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Editor/Note.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "db62b31245889af550cffea72fa027e4204bc3bc" + }, + { + "alg": "SHA-256", + "content": "f3922ec83c3ff8ab7f2a0c9a832628c64aeff1a92249544259df48f642df14b7" + } + ] + }, + { + "bom-ref": "911679347e395cff", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Editor/Password.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "5f1872a8a18cce59ba31b8edb1876dea994a1a9e" + }, + { + "alg": "SHA-256", + "content": "e0802d54649714aafd6d6ef426ed4bf4f0429bc8b5ad930e8822b4835d66c4be" + } + ] + }, + { + "bom-ref": "5f3e57554edaa358", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Editor/Progress.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "2366f5883a86aca30a2272d0f316ef14f0231f4c" + }, + { + "alg": "SHA-256", + "content": "f5b8cf39ff9f833f719d260e27466e4e11839a488286c25dacb56a23b049f831" + } + ] + }, + { + "bom-ref": "28595c919d1fcb68", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Editor/Select.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "c08ae3e6c64ae1529801d61f0c52f4a5f86ba6d9" + }, + { + "alg": "SHA-256", + "content": "4d8a031e7a23ad208675d097d700692b04304704fca6764630ffaeaa647843d0" + } + ] + }, + { + "bom-ref": "2c0b8f9055c561ad", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Editor/String.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "901b3e8623ff3dd177461cba5330be9c464753b4" + }, + { + "alg": "SHA-256", + "content": "f8aec4b503d26da2b87eba5acb67456aa6752ad37add8915beee15646626d4a6" + } + ] + }, + { + "bom-ref": "6f2351093bd1ac12", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Editor/Text.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "7f7670944fca9fc5739f42fa3832949ac661144f" + }, + { + "alg": "SHA-256", + "content": "5478c4f864725771238f7a4d42071be055fdf1781098f9a67671ce4c082d6236" + } + ] + }, + { + "bom-ref": "b9e5bbb5703df1fb", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Gnome.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "99d9a2c86889d73a2717d6302e889ec20542d660" + }, + { + "alg": "SHA-256", + "content": "2de0e06b467b7c1682dc4f301cc2443076540c0450e21ab3ac0aba1f9b9d00a5" + } + ] + }, + { + "bom-ref": "66d5d2bce1f749b4", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Gnome/Boolean.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "45f6bf84c05d7fcd92a72379b9d82c1f3a4e156b" + }, + { + "alg": "SHA-256", + "content": "254847cc4aeceeeb3b64a1c84cba614c2ce33dd63182246e5e1a8cf2f7d924fc" + } + ] + }, + { + "bom-ref": "5a35b15f55b31bde", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Gnome/Error.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "6ee33d55116f5af3b23fc8d7105f2530de2a258f" + }, + { + "alg": "SHA-256", + "content": "2292d7d3d45fd14c8ee4d276fdb1a6858365249df49868518114fb6dc19e682e" + } + ] + }, + { + "bom-ref": "432851f3337430da", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Gnome/Multiselect.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "ca52d15764797fac35cba076435997819682cfd7" + }, + { + "alg": "SHA-256", + "content": "df7fa143150ffcd85c5fe4cb83a79d533c0d6408e15537a593d4dd0217afbcfe" + } + ] + }, + { + "bom-ref": "6840e18f52149ca6", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Gnome/Note.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "d90a83939938f3fc75c583d0de9dbd4705f91736" + }, + { + "alg": "SHA-256", + "content": "5f87a9c18562d15b6d7933e1e76894f5b7058d66dd738fd37b9aa07981561ed9" + } + ] + }, + { + "bom-ref": "5ef10194cfbf0ca4", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Gnome/Password.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "8d1bef89efbd13a44ad193bb806716560d03351f" + }, + { + "alg": "SHA-256", + "content": "58755994eafd92c42fd7765afb988f6e1522f1a43a289fc85ed0ffa712403a3f" + } + ] + }, + { + "bom-ref": "a449f8164d56ebd4", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Gnome/Progress.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "ae37ca8b58d490a53c17fb274dd4806992ffa708" + }, + { + "alg": "SHA-256", + "content": "04f10cf7e7c163ec96266afb533bc94828ae1343e13af66c32fb47be2ef1d09d" + } + ] + }, + { + "bom-ref": "abec0606f63fe817", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Gnome/Select.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "2ea35ebb55a877fcabe1f9a86e3afac1a6763166" + }, + { + "alg": "SHA-256", + "content": "2a5bf7f95334d01613049b945144682653b977c49b664ca610fee3636c29b8bc" + } + ] + }, + { + "bom-ref": "e52ef07f29cfe542", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Gnome/String.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "5709f3000b232c6979a76b19b89999673f7dcda0" + }, + { + "alg": "SHA-256", + "content": "382add68ada4f5658b2efa1d5b0bc34356c6b5e3d5ca3445e2b1e17aac45e4e6" + } + ] + }, + { + "bom-ref": "9feb44a0e8c804dd", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Gnome/Text.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "09c4c41d4f6c987f9d8d6ee883f91de04392ef40" + }, + { + "alg": "SHA-256", + "content": "5cd8ceb1ccaca18d12569710eca5a868b953b79fd3e5f4193fc4ae7440f5a204" + } + ] + }, + { + "bom-ref": "c7af44da4ac2226f", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Multiselect.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "8e155c3c1cd69aa5611ba7859cc93052300d7753" + }, + { + "alg": "SHA-256", + "content": "8f4919e0b67b61f650af51406b13998467a477cd04f7772bc8b5ad6cb18649c3" + } + ] + }, + { + "bom-ref": "0a464be7d46698b5", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Noninteractive.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "a3f978944aa4f9599292aad12a436f881b8bd8c4" + }, + { + "alg": "SHA-256", + "content": "e1b6db74cda4b4b43bdf2244350494ea6a53d13a1f7dfeaca90ed16b22d13791" + } + ] + }, + { + "bom-ref": "21a63ff45407d756", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Noninteractive/Boolean.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "a8b214e8a7e3bd653d24453da62b2f7bc35c107f" + }, + { + "alg": "SHA-256", + "content": "13e3e74cafc97617862521b51e2c4ba4b87e87658363d1537452fcd5d874d261" + } + ] + }, + { + "bom-ref": "a423bca0fc0a9734", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Noninteractive/Error.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "52c244be7a9ccbdc289cc6797e43b21cb5aed4ff" + }, + { + "alg": "SHA-256", + "content": "799e48fc5a362d653334159305bafe67cd451420d98988d3047d515b2408120b" + } + ] + }, + { + "bom-ref": "5e27d6a4d278b2b7", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Noninteractive/Multiselect.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "6351b52798bb04e387ccc21acfe21962efbabdfc" + }, + { + "alg": "SHA-256", + "content": "14bbbea9a46115ea16632083ea3ba850b13594957e5dc49b7907ec07e14a0789" + } + ] + }, + { + "bom-ref": "95a3f54bd3fb8e10", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Noninteractive/Note.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "06d4d6f2ac40be9d01657c8ce0b0f5659712d470" + }, + { + "alg": "SHA-256", + "content": "88f2b6eaca06a4b404d62cbdaad4f497aa17aca4d44e785c3a78a763b66c24d4" + } + ] + }, + { + "bom-ref": "e6e914b513d54891", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Noninteractive/Password.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "1134f92fa09282afa577f3cf1b5bda489e45c51a" + }, + { + "alg": "SHA-256", + "content": "5a046112c91b00436a614d93590338a04ad14710cf3af56ebdb883041e38a955" + } + ] + }, + { + "bom-ref": "80d2e2addd0e8c28", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Noninteractive/Progress.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "a13dfe57f366f3b9efa049e5f9c7bd3b3a74dee9" + }, + { + "alg": "SHA-256", + "content": "f21d00539d3a4b8dafa82322d0e0cb1281f0493995723dfdd9a6fc7cc28a7434" + } + ] + }, + { + "bom-ref": "85315eb10032a4b5", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Noninteractive/Select.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "621dfa331e87c3abddcc20df5089582b452b69b3" + }, + { + "alg": "SHA-256", + "content": "e0b972e4af3cefd2ab4858fac0a20df5ac91feb886bb8f0003cfac187581609b" + } + ] + }, + { + "bom-ref": "d54df21bf29cacd6", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Noninteractive/String.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "e9d33b38f0be2d3d2c3cba665f7e137a83e6e490" + }, + { + "alg": "SHA-256", + "content": "505643b340d236ba8fe6e3bb930640e79ecf6ac15b43513456cb81228c946e23" + } + ] + }, + { + "bom-ref": "7d80d69b68a0554c", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Noninteractive/Text.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "7966daf5c90ef053bd39bb2acaec81b39b429270" + }, + { + "alg": "SHA-256", + "content": "17d40add0e5bf98fdfb6ad5f71f337a04536c57c5b4e663cb6f5308398f27349" + } + ] + }, + { + "bom-ref": "70b899198c10bc52", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Select.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "7f0704abc2be1c497d1c3f3328eb0105e323e97d" + }, + { + "alg": "SHA-256", + "content": "249a05d5f564db0f40e09c13d79b0a77ab128563a19a1ceee585c3431b844d1e" + } + ] + }, + { + "bom-ref": "17a5924a3b3e1e68", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Teletype/Boolean.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "262d1e1d6ce5e79ea77389fab444abda8e206314" + }, + { + "alg": "SHA-256", + "content": "a97d6deb504426af124f6c1dd8d522a6abd009dbb37fbe0a3e2a284b921ea1f3" + } + ] + }, + { + "bom-ref": "3c7eb0a19b422f29", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Teletype/Error.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "1587e057380f7b1b380caeecc33dc8abedd575a7" + }, + { + "alg": "SHA-256", + "content": "a271b558a75a7617474d93cd77402c339334e84938651ea0a01f7336db09d010" + } + ] + }, + { + "bom-ref": "d11a45136e89d370", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Teletype/Multiselect.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "1a89c9963db442a3ee81e916d682e7e7ee51c17f" + }, + { + "alg": "SHA-256", + "content": "dccdb67e08a4053c00c2395d4178ecf37ce8e64e81c63b4807e1d763ab0d5450" + } + ] + }, + { + "bom-ref": "4c85310a036bbb4b", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Teletype/Note.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "6f347f1ddce1f697e64011301269fa9eeae0210a" + }, + { + "alg": "SHA-256", + "content": "0ea94576f9890a0f5f9a4a59361bd1e0f6153b3ff23b883e6078b2e08063155d" + } + ] + }, + { + "bom-ref": "31012b02cd26f32e", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Teletype/Password.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "019a352fd8884730cf1619c0a911447fb2781d6b" + }, + { + "alg": "SHA-256", + "content": "9c3cc0ef1ccbe6da38b3885610369edef2005a691d043023c27689621e027a39" + } + ] + }, + { + "bom-ref": "79cd6d225078a626", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Teletype/Progress.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "6ba57990c768c5b5360bc16063e8afc3c782b0d4" + }, + { + "alg": "SHA-256", + "content": "63968f89058f1066176e80bc3a4e4ada8f4f24dcf78fc56c722edc7aa12f0f9c" + } + ] + }, + { + "bom-ref": "2a85d172291eb0e1", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Teletype/Select.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "3e0a994b5200a380a28784aad26b48dfd472de6e" + }, + { + "alg": "SHA-256", + "content": "a5749589dee50745a7db1e2c6743788334381461cca018552058183edae81d8c" + } + ] + }, + { + "bom-ref": "056284765c58cfe7", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Teletype/String.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "b9070ee1b4486a772e967b8684a6a24131f04012" + }, + { + "alg": "SHA-256", + "content": "9bbe2c52e9629b135b888fe81fdcaf9eb1280076df252bb86292ba904aad8a1c" + } + ] + }, + { + "bom-ref": "701e77531befc566", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Teletype/Text.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "1de79733ccc2cdb968361110492ae77b35f128f4" + }, + { + "alg": "SHA-256", + "content": "f61a5ec96a09bf7671dadd87281a75622df7043b2736d788af6767f6827bcbba" + } + ] + }, + { + "bom-ref": "eeaac639730d0dc2", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Web/Boolean.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "9a4c41c34cb2a534ebf048172b355650e3af3597" + }, + { + "alg": "SHA-256", + "content": "e74c742b01709c060bd24a58f960c03cbe688a818919037295d6222f8c3165ee" + } + ] + }, + { + "bom-ref": "646650a072ff7c5f", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Web/Error.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "083e19175f027c9437a1282c923f336e3cf06357" + }, + { + "alg": "SHA-256", + "content": "1699c8211d030d2d67fcfaafd5e30867d2661c21dad41c574dec2d88bd96ebc6" + } + ] + }, + { + "bom-ref": "d948f3ec730cf5ec", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Web/Multiselect.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "59108a76dfd01df30a0df1e859b63e30eaf54f45" + }, + { + "alg": "SHA-256", + "content": "367f3dce72c5bb9e40587416570903867824a063eb04319b6d57afdce1039d01" + } + ] + }, + { + "bom-ref": "e1edf0c18cb6c2cb", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Web/Note.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "e47edd2095db13c0bf9252de07eb7573efe6de9e" + }, + { + "alg": "SHA-256", + "content": "6654230ab4dc25692f22f7eae0798896067c2f5471ceabc4bbfdfa63258970aa" + } + ] + }, + { + "bom-ref": "a8a06af36f0cb4e6", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Web/Password.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "08da4571327b05bdc61b6ecf10501ac28edc4798" + }, + { + "alg": "SHA-256", + "content": "aff9175f3d6d46cd1a98d602e670d565c66005bc1e482174ca8ca75b53a40300" + } + ] + }, + { + "bom-ref": "7b4f110a1a58efbf", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Web/Progress.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "9c015e55475ec5964d07819bce69a60fcbb2e594" + }, + { + "alg": "SHA-256", + "content": "430c8365d9c3278fc0375434cc93725f8fa75a5353b072f0f8cfdfe4c7dd4dfc" + } + ] + }, + { + "bom-ref": "42a7f73329cb7639", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Web/Select.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "593e64a2958877338e8c2c5c6bd7ad21e706c23b" + }, + { + "alg": "SHA-256", + "content": "42a7752151c302e29228a17fa3d0fa8bd65dc999025846c013ee580e06d78766" + } + ] + }, + { + "bom-ref": "88738fc89edb4d8f", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Web/String.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "4f81007eb3597bab810402f95d58b42c9fbd0b2e" + }, + { + "alg": "SHA-256", + "content": "3dacc1ab78f01cd9db77d95163cc33fec708f1ba1d3ca10146f5b14c6096def7" + } + ] + }, + { + "bom-ref": "749b952fcd9ada22", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Web/Text.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "ee74023bfe3306485ce0c6ede37ffb6c68818e22" + }, + { + "alg": "SHA-256", + "content": "03e9ea3bda1040086d423f3fbe2ee6cc93f59d90d26b4bf8554ab5c6cdc73885" + } + ] + }, + { + "bom-ref": "0875f8d28d54b26a", + "type": "file", + "name": "/usr/share/perl5/Debconf/Encoding.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "aaf7af5ba0fce8be71737b491010366de840590e" + }, + { + "alg": "SHA-256", + "content": "801fe349da27f9312f3b6c60ea38e44e34bf7fce5138a0a9235b5efd1f7ff7eb" + } + ] + }, + { + "bom-ref": "7b1d2bdf3b67928f", + "type": "file", + "name": "/usr/share/perl5/Debconf/Format.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "782a823865146e2f384097763c26817eaf720313" + }, + { + "alg": "SHA-256", + "content": "5ce727bb1a20759b641ffb8bd6c45176bae65e65f907e237c6dc1f093899b02f" + } + ] + }, + { + "bom-ref": "d6ed59e9e2dca77e", + "type": "file", + "name": "/usr/share/perl5/Debconf/Format/822.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "3ecbb7bf740a5f64c0dcd213a1db57f56792752e" + }, + { + "alg": "SHA-256", + "content": "47bb2e39010d9e051b79bdae364bb5824c663441b05037babae6a634fd4c0fb4" + } + ] + }, + { + "bom-ref": "0ba22a5599ffdc91", + "type": "file", + "name": "/usr/share/perl5/Debconf/FrontEnd.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "072272f571560e29c81883230c559f6d2c9bacb2" + }, + { + "alg": "SHA-256", + "content": "e7a545c137bb45bfc70dc75f6f14f2246219a4cf9a60344bff9dcf04b1e25b33" + } + ] + }, + { + "bom-ref": "4ca64bf9d7ec3b79", + "type": "file", + "name": "/usr/share/perl5/Debconf/FrontEnd/Dialog.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "a1f645fee57432b970658d3381d4aac1912468fb" + }, + { + "alg": "SHA-256", + "content": "954d3f0c3b3d84a54b449d4f186136dd2c5dc30943c364aee625728171712e34" + } + ] + }, + { + "bom-ref": "6ec8432299c02ecc", + "type": "file", + "name": "/usr/share/perl5/Debconf/FrontEnd/Editor.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "8867c9cb644986bcd98881d8db0e4875febd2700" + }, + { + "alg": "SHA-256", + "content": "24b3da6ed94ce2682a51501683188675dbb50d4b154496e875ef1488c391711c" + } + ] + }, + { + "bom-ref": "75663e87dcd5a741", + "type": "file", + "name": "/usr/share/perl5/Debconf/FrontEnd/Gnome.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "d197214d7b7d65059b88d1f42164acf8bde7d8f0" + }, + { + "alg": "SHA-256", + "content": "0bcbe1bc51af79f25aa3c2de2427cd27936c5e1aff04ffb45b6dc4cd92d58de7" + } + ] + }, + { + "bom-ref": "3739daafceda2e3e", + "type": "file", + "name": "/usr/share/perl5/Debconf/FrontEnd/Kde.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "2975e47a9629d4eabac23597796d5ba0dc1afcdf" + }, + { + "alg": "SHA-256", + "content": "af31800eed184035c7cb762fdeff4ecf77d76b37fe433836cfed540c38dacccd" + } + ] + }, + { + "bom-ref": "04d080ffb97799e4", + "type": "file", + "name": "/usr/share/perl5/Debconf/FrontEnd/Noninteractive.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "9e11bd3808a207003cdec8e703aa56edee1b32c5" + }, + { + "alg": "SHA-256", + "content": "1604a04e4c2ddebc03659bef3bfe94a1f97330ca8e4ea88b036b10ca509308e5" + } + ] + }, + { + "bom-ref": "287628a28241dad4", + "type": "file", + "name": "/usr/share/perl5/Debconf/FrontEnd/Passthrough.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "ad4d4b4a6af80c1cedb84e1ce8b432cadaa4de06" + }, + { + "alg": "SHA-256", + "content": "ef86bb94c07c56f825585a680e65bdfe5f5f2cf6abc31903643945e1fa949cf2" + } + ] + }, + { + "bom-ref": "6945b48d2834f61d", + "type": "file", + "name": "/usr/share/perl5/Debconf/FrontEnd/Readline.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "69be3ca5d8337a93e84f53c8144d1273b2912038" + }, + { + "alg": "SHA-256", + "content": "de513abc3901f8244dc3cee1f84ccbeb817f7c3594167c9d3d52c074ea586d81" + } + ] + }, + { + "bom-ref": "ee0539ee126555e1", + "type": "file", + "name": "/usr/share/perl5/Debconf/FrontEnd/ScreenSize.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "3bd174fcc0ca463728ae0e23c6baa8f5506e6d98" + }, + { + "alg": "SHA-256", + "content": "abd4a309996b0f8798df81bd51d881fa014b66ebbd0d626220884aee2868922e" + } + ] + }, + { + "bom-ref": "b66cd756f1849af6", + "type": "file", + "name": "/usr/share/perl5/Debconf/FrontEnd/Teletype.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "848bcaf68f651358ef30a5f7c12797f120f0cc04" + }, + { + "alg": "SHA-256", + "content": "e01ec0a98b14a8092dda1656e66248212dc4f164248f4058178e2964e5b72928" + } + ] + }, + { + "bom-ref": "947c0defc928f32f", + "type": "file", + "name": "/usr/share/perl5/Debconf/FrontEnd/Text.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "5e0301a2ab3ee5b130a8164c1656fadf06895b56" + }, + { + "alg": "SHA-256", + "content": "cf4595fb746e12a9c0a43cd6806aec7d45523aa71b2bf9d98328d8c713c8470b" + } + ] + }, + { + "bom-ref": "636209252737af75", + "type": "file", + "name": "/usr/share/perl5/Debconf/FrontEnd/Web.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "910c2bd665c4bd6323abbaaffc57e9e3928f8989" + }, + { + "alg": "SHA-256", + "content": "ca7b97f7c6ecd207e6b161a89a0d42e5e547c81206b09c430b9a4ac1f0b9f847" + } + ] + }, + { + "bom-ref": "0d53aa8556a6b27c", + "type": "file", + "name": "/usr/share/perl5/Debconf/Gettext.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "59ea6fc7709c4fbdfc636472dc24a19f86bdec0c" + }, + { + "alg": "SHA-256", + "content": "a88fa616d014b4668aa0acddd4b62c6f16f23ca4d770f74c42a465bccd757ddf" + } + ] + }, + { + "bom-ref": "c83636cfaa7d3ba2", + "type": "file", + "name": "/usr/share/perl5/Debconf/Iterator.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "79ee9180377943905e2135efb0403b7dc5f71e94" + }, + { + "alg": "SHA-256", + "content": "25e26945b7cd46f0807fc71e4aa0187668d883f9068076356ec4fc3515d58b15" + } + ] + }, + { + "bom-ref": "d98fc5c3535b2c68", + "type": "file", + "name": "/usr/share/perl5/Debconf/Log.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "995335798836a14f29ea0a05c749e466ef8853f4" + }, + { + "alg": "SHA-256", + "content": "295705788c02bc5ecab17acab91e8bca411c88a5ec5404b64ea1bf85f408d98a" + } + ] + }, + { + "bom-ref": "5d468c881c298b42", + "type": "file", + "name": "/usr/share/perl5/Debconf/Path.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "d34d4806a30eb72fd8995df70d17ffcde736baf7" + }, + { + "alg": "SHA-256", + "content": "028380a22abab29ad18b0f4411bb3f1a1f3bf192f139ae61121393cebf5acc6e" + } + ] + }, + { + "bom-ref": "ce0629fefe17ae96", + "type": "file", + "name": "/usr/share/perl5/Debconf/Priority.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "dbae40c9239cb9980b80522a30043a875ffcb31a" + }, + { + "alg": "SHA-256", + "content": "bf398f78a07d12eb8aee3fb782ffd002f311027279d076eaa6fffd0de11ce0d1" + } + ] + }, + { + "bom-ref": "10dc84124e22483a", + "type": "file", + "name": "/usr/share/perl5/Debconf/Question.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "10ee6cce8d922f84fa6e25c1374c98018b3ee010" + }, + { + "alg": "SHA-256", + "content": "457f0d6a12d8dc4ab1fc109b5c54c423a703184630b50e49abfd3b2cbba2e640" + } + ] + }, + { + "bom-ref": "f7500d5575c13ebc", + "type": "file", + "name": "/usr/share/perl5/Debconf/Template.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "46316168279ab0c1f2fe4744f0ab1b5181283bb1" + }, + { + "alg": "SHA-256", + "content": "4ee3d67fccb651ed7bca60a48bd85758e3a177fdda3167a5209f1513379eb6ac" + } + ] + }, + { + "bom-ref": "d70fbb9aadc898da", + "type": "file", + "name": "/usr/share/perl5/Debconf/Template/Transient.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "408fd328862f731c8a8d60bc3da2a50c83efe8bc" + }, + { + "alg": "SHA-256", + "content": "3a0e780834bf3c643f32931ad4fe02b3447343b1a54def72f03e15823e6723ae" + } + ] + }, + { + "bom-ref": "2ad4196ade112006", + "type": "file", + "name": "/usr/share/perl5/Debconf/TmpFile.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "101fb9b4e0870e0c9309aa7c2a1b83be4ee27bc7" + }, + { + "alg": "SHA-256", + "content": "01a27c6a5acbf11d145efb8341e0328892a0c00db0526ad522a8c2165e4e01f6" + } + ] + }, + { + "bom-ref": "e2d6e2e92aac8c1e", + "type": "file", + "name": "/usr/share/perl5/Debian/AdduserCommon.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "83e9c48c9b8a5a0c7e2f2831191828f98d57304d" + }, + { + "alg": "SHA-256", + "content": "94551d94231a98889d4fe7559c990cd5b26abf14c53a5ed8d072287e66b637d1" + } + ] + }, + { + "bom-ref": "535060592141d2fc", + "type": "file", + "name": "/usr/share/perl5/Debian/DebConf/Client/ConfModule.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "11fdd2f4192753536cbf74cae4fad5859eb168a0" + }, + { + "alg": "SHA-256", + "content": "18613eb5076afb75cd5cd97811c465b78533ab566d482023c9f3379f4f7fe7a0" + } + ] + }, + { + "bom-ref": "31bbf287ce9a859f", + "type": "file", + "name": "/usr/share/pixmaps/debian-logo.png", + "hashes": [ + { + "alg": "SHA-1", + "content": "164ea613e4f6a6b6a146ecfb2da202fb3111f62b" + }, + { + "alg": "SHA-256", + "content": "429c611b72d40aaf52281b6b3033c4631cdee1c4a88c17ae999244dc2245ab65" + } + ] + }, + { + "bom-ref": "0f5ac55fda00ac9d", + "type": "file", + "name": "/usr/share/polkit-1/actions/org.dpkg.pkexec.update-alternatives.policy", + "hashes": [ + { + "alg": "SHA-1", + "content": "55c15545fd19b64be03f5819c95c2d8f1fc7436e" + }, + { + "alg": "SHA-256", + "content": "6e63b446c50efe364d96b17941c8daef12f2e66a326eedb287986fa8457ef877" + } + ] + }, + { + "bom-ref": "bb2c782a66f55208", + "type": "file", + "name": "/usr/share/tabset/std", + "hashes": [ + { + "alg": "SHA-1", + "content": "0969b2c95d9430c81b0d4b05d81146a6cced5f31" + }, + { + "alg": "SHA-256", + "content": "fbadb5f608b355fe481c0c7d9c6265b2372bfa35250662f81f68d46540080770" + } + ] + }, + { + "bom-ref": "266218b6b52d4191", + "type": "file", + "name": "/usr/share/tabset/stdcrt", + "hashes": [ + { + "alg": "SHA-1", + "content": "e1fae2fc4bba672fc26554780be21d74106a064b" + }, + { + "alg": "SHA-256", + "content": "cf6c37b18ceea7c306f7e3a5e604a03b0dfb9c22ec99163e4b52f885ce063145" + } + ] + }, + { + "bom-ref": "4c301fd6ccb0a819", + "type": "file", + "name": "/usr/share/tabset/vt100", + "hashes": [ + { + "alg": "SHA-1", + "content": "b84fb01263cd003588e9a164e80bd0b8ea2e56b5" + }, + { + "alg": "SHA-256", + "content": "075251754239d9973945d82b95c18cd90997acd2017393e70c8832e9297de056" + } + ] + }, + { + "bom-ref": "02ead6d96505d492", + "type": "file", + "name": "/usr/share/tabset/vt300", + "hashes": [ + { + "alg": "SHA-1", + "content": "5246984995036718d05516acefc59c8bbd17b3ce" + }, + { + "alg": "SHA-256", + "content": "61f8388cad6a381feb819bc6a8d299d06a853d15e1f4bfdfd6b6f40069ad4956" + } + ] + }, + { + "bom-ref": "515a2234fa4502fd", + "type": "file", + "name": "/usr/share/zoneinfo/Africa/Abidjan", + "hashes": [ + { + "alg": "SHA-1", + "content": "2761dd20ffe255714f9005b59407db9bc75b5f08" + }, + { + "alg": "SHA-256", + "content": "d5ded126df8f693ce1ff83e85aa4d44185c2bdef7da1f915b214f53deffdee47" + } + ] + }, + { + "bom-ref": "fc87250654cd3080", + "type": "file", + "name": "/usr/share/zoneinfo/Africa/Accra", + "hashes": [ + { + "alg": "SHA-1", + "content": "abf8b8bee2d38fa403c83703cbcc1b3dfe3011a6" + }, + { + "alg": "SHA-256", + "content": "382d63af9c6d9ba351a764dc0b2b90cf1b7933489d068397f775e57ec2b3e879" + } + ] + }, + { + "bom-ref": "2c7b368941de05b8", + "type": "file", + "name": "/usr/share/zoneinfo/Africa/Addis_Ababa", + "hashes": [ + { + "alg": "SHA-1", + "content": "3396be7a5f3bd8d2ab7af6a62d95f95b7fb9e58b" + }, + { + "alg": "SHA-256", + "content": "010faad7279f538d056c0d17843b423123ab8de29ba42432eaa745514e59de20" + } + ] + }, + { + "bom-ref": "4628ade86fc3f9f2", + "type": "file", + "name": "/usr/share/zoneinfo/Africa/Algiers", + "hashes": [ + { + "alg": "SHA-1", + "content": "7f956aa470703a90b3ff026f8007a31bda793aa9" + }, + { + "alg": "SHA-256", + "content": "80e523121788b9c011b1c375ab28b167446aa30d3e4596e54b4957a5c988bd06" + } + ] + }, + { + "bom-ref": "2207539e05d5b295", + "type": "file", + "name": "/usr/share/zoneinfo/Africa/Bangui", + "hashes": [ + { + "alg": "SHA-1", + "content": "e078d8241d68f71c3fe87f4375d498ded945d19c" + }, + { + "alg": "SHA-256", + "content": "11c1b6f2796a91b26a3779d3b5d81ad862b143e324deda58060fa74c76392563" + } + ] + }, + { + "bom-ref": "c9b83f89da774196", + "type": "file", + "name": "/usr/share/zoneinfo/Africa/Bissau", + "hashes": [ + { + "alg": "SHA-1", + "content": "a79052fafa065a251228c0c001e5dc65ae391096" + }, + { + "alg": "SHA-256", + "content": "8ddad13adc33cdee8eaf55cfa31efcafd79305ae8dfcc3be06ff78299f29f1d8" + } + ] + }, + { + "bom-ref": "c9b4a163cd821b57", + "type": "file", + "name": "/usr/share/zoneinfo/Africa/Blantyre", + "hashes": [ + { + "alg": "SHA-1", + "content": "2f6afbdba37f364f0eca9ffe905d0abbcde401d3" + }, + { + "alg": "SHA-256", + "content": "3d7e6d17cabdaa1814a56dddec02687e1087bc3334fe920ad268a892bf080511" + } + ] + }, + { + "bom-ref": "333736512c336eb0", + "type": "file", + "name": "/usr/share/zoneinfo/Africa/Casablanca", + "hashes": [ + { + "alg": "SHA-1", + "content": "a85292f6af795954480c87b6edfa8c1b40b9d2e2" + }, + { + "alg": "SHA-256", + "content": "2b7a7b77743d1ae6779591fbe01fbb39042cff06cbaf4a9e2d05de77a3ab73bb" + } + ] + }, + { + "bom-ref": "173df6b8c2e6b6d6", + "type": "file", + "name": "/usr/share/zoneinfo/Africa/Ceuta", + "hashes": [ + { + "alg": "SHA-1", + "content": "80550c17972d6ebb0f1a25c557f8a5a2917b0d2e" + }, + { + "alg": "SHA-256", + "content": "387d2c354117fe2a22f6f3b429e4193a331d3e93d7007a55c50b3b9eedee63de" + } + ] + }, + { + "bom-ref": "9c6dea0637bf56a1", + "type": "file", + "name": "/usr/share/zoneinfo/Africa/El_Aaiun", + "hashes": [ + { + "alg": "SHA-1", + "content": "a19dce22d4a4bc1b72ff87324ad90217fed6aecb" + }, + { + "alg": "SHA-256", + "content": "cf993587fac56e670c1f8f70a72e5c5c0adfe97d3cabab512dc75046f56fea94" + } + ] + }, + { + "bom-ref": "bd2c906d4411b596", + "type": "file", + "name": "/usr/share/zoneinfo/Africa/Johannesburg", + "hashes": [ + { + "alg": "SHA-1", + "content": "50802275b65126faf8b763a47d7c22112a39648e" + }, + { + "alg": "SHA-256", + "content": "fcec4247091905d88a0b869e8e5c7ee6bcfba7db6c310165baa95078b0be31af" + } + ] + }, + { + "bom-ref": "3cd6a9ed29cd7045", + "type": "file", + "name": "/usr/share/zoneinfo/Africa/Juba", + "hashes": [ + { + "alg": "SHA-1", + "content": "2fb0e4738086360089061d685e4190cc83165a16" + }, + { + "alg": "SHA-256", + "content": "b4c8d41efe33e187a39a9640e67320b2b6f396c37a5d1ca7b42f30c23ccf960e" + } + ] + }, + { + "bom-ref": "c87bf4dbb14f1721", + "type": "file", + "name": "/usr/share/zoneinfo/Africa/Khartoum", + "hashes": [ + { + "alg": "SHA-1", + "content": "5bb911b4318e21a1534207657bbc8e61fa16d856" + }, + { + "alg": "SHA-256", + "content": "5256a96f78382e82db80ad8591240c3886fc58f9a83fe94506e3a192fbcf2f4e" + } + ] + }, + { + "bom-ref": "971abe185fbba4f9", + "type": "file", + "name": "/usr/share/zoneinfo/Africa/Monrovia", + "hashes": [ + { + "alg": "SHA-1", + "content": "aed4c9626b74960c1e976f3f8d97c81ba76668f8" + }, + { + "alg": "SHA-256", + "content": "3f9672c98983af595b3c6274cf8135728c8815a4f9c98ffba043707609e5d122" + } + ] + }, + { + "bom-ref": "1c9e966579ca75e3", + "type": "file", + "name": "/usr/share/zoneinfo/Africa/Ndjamena", + "hashes": [ + { + "alg": "SHA-1", + "content": "9ee39466dfe171c6df83f53cff9eb85932d365a3" + }, + { + "alg": "SHA-256", + "content": "b1391c8edd23b3f73e0bfacf8b878801c58206ca42349c30b22fcb7e8d13de3a" + } + ] + }, + { + "bom-ref": "fa72997ca7bbc52d", + "type": "file", + "name": "/usr/share/zoneinfo/Africa/Sao_Tome", + "hashes": [ + { + "alg": "SHA-1", + "content": "588334c31eb301cb045bece4395503caced8e6b7" + }, + { + "alg": "SHA-256", + "content": "1c04b1866beb73b69104997850cce075376d62716f8d01156e796d878b160545" + } + ] + }, + { + "bom-ref": "dcc15122ff6e3ab1", + "type": "file", + "name": "/usr/share/zoneinfo/Africa/Tunis", + "hashes": [ + { + "alg": "SHA-1", + "content": "e0e395375053b9eff061c9aec6444acaece15351" + }, + { + "alg": "SHA-256", + "content": "eecc34436d1dd96c49d6b671ed61bc594548d280a967537a9653841b537a9a92" + } + ] + }, + { + "bom-ref": "5c8d7264a92a23e1", + "type": "file", + "name": "/usr/share/zoneinfo/Africa/Windhoek", + "hashes": [ + { + "alg": "SHA-1", + "content": "600c6e60dc2c8247493d7b77125c06c5bbbf61de" + }, + { + "alg": "SHA-256", + "content": "f6d37353c3cf02bb1b950cdc1cc024e9849a374532a8f7e4ee0bb00bdd4b6ab1" + } + ] + }, + { + "bom-ref": "3c6d601c26643339", + "type": "file", + "name": "/usr/share/zoneinfo/America/Adak", + "hashes": [ + { + "alg": "SHA-1", + "content": "bf488900e8f61278e9b4e0a0acb1715f0923e269" + }, + { + "alg": "SHA-256", + "content": "c45c94d316413c8f666aff65ed1f837a7e2d392262de31ce59fac2e96a1edc81" + } + ] + }, + { + "bom-ref": "8dccdffe222c67b5", + "type": "file", + "name": "/usr/share/zoneinfo/America/Anchorage", + "hashes": [ + { + "alg": "SHA-1", + "content": "0b94eba3b05525a45a3d95848ca71c3996274e22" + }, + { + "alg": "SHA-256", + "content": "f5df0a6f7f9d43cbbd3e74d33a23fe686080eb55965f5d9246b6e859b3db9d18" + } + ] + }, + { + "bom-ref": "a34be61e8b4fc492", + "type": "file", + "name": "/usr/share/zoneinfo/America/Anguilla", + "hashes": [ + { + "alg": "SHA-1", + "content": "0fa20e8413a337c1d603389fb46484f1cfa5d71e" + }, + { + "alg": "SHA-256", + "content": "b2659c267f7555c0640505660234cbe0d7feead3a5e29f41272e28a1d7d18962" + } + ] + }, + { + "bom-ref": "535e2ac4ea8ae9d3", + "type": "file", + "name": "/usr/share/zoneinfo/America/Araguaina", + "hashes": [ + { + "alg": "SHA-1", + "content": "b3076e49bce6515d37df19b1e19e7820777dcfd3" + }, + { + "alg": "SHA-256", + "content": "fb7fe2d06e8ee5c5d9a8a568c8cb37efbb0086824f38d1bc4d8505f963b5970d" + } + ] + }, + { + "bom-ref": "f3d34ed51b7b8a7f", + "type": "file", + "name": "/usr/share/zoneinfo/America/Argentina/La_Rioja", + "hashes": [ + { + "alg": "SHA-1", + "content": "b3007950b298abb368a5ee5f824db100e51990ff" + }, + { + "alg": "SHA-256", + "content": "edc82d9225b8ae3ca911eab14f8201a8916928cfab233e182f807e715cf18435" + } + ] + }, + { + "bom-ref": "c4692d01bd3c4f48", + "type": "file", + "name": "/usr/share/zoneinfo/America/Argentina/Rio_Gallegos", + "hashes": [ + { + "alg": "SHA-1", + "content": "2be81c5a3a0236c75db8aff78c5de9798b2299c8" + }, + { + "alg": "SHA-256", + "content": "f762067b25cc7e6141b06a6eae77764caccccbfe8716f1370c33e169ec2e1723" + } + ] + }, + { + "bom-ref": "034c10fbbafb60d5", + "type": "file", + "name": "/usr/share/zoneinfo/America/Argentina/Salta", + "hashes": [ + { + "alg": "SHA-1", + "content": "888c5ecc4dee02cdf074192ab776f3cea0b12c34" + }, + { + "alg": "SHA-256", + "content": "1deede9c14ed0b4dc6e5a40110c7056083c8fed557b84aadc0fa2a045411e560" + } + ] + }, + { + "bom-ref": "c68976662fbf350e", + "type": "file", + "name": "/usr/share/zoneinfo/America/Argentina/San_Juan", + "hashes": [ + { + "alg": "SHA-1", + "content": "95ec23a249f9ba72ac72a073de70dbc746badca7" + }, + { + "alg": "SHA-256", + "content": "100c000b03b9a0e19c778d9e81ad8e5c2c34db4b7da24c55d67c0ad8050a67c5" + } + ] + }, + { + "bom-ref": "79601ca86db8e766", + "type": "file", + "name": "/usr/share/zoneinfo/America/Argentina/San_Luis", + "hashes": [ + { + "alg": "SHA-1", + "content": "68c574db8d0f14268b6402da8669920fb3bbcbdc" + }, + { + "alg": "SHA-256", + "content": "ab15b1141b87b1381e5cad386fc374b5a9a2ca922504da5b848074fab91e9abc" + } + ] + }, + { + "bom-ref": "ae9ce9b86edcb804", + "type": "file", + "name": "/usr/share/zoneinfo/America/Argentina/Tucuman", + "hashes": [ + { + "alg": "SHA-1", + "content": "e04515ab8b71eeb874eb28492d8e441bf5adb0f7" + }, + { + "alg": "SHA-256", + "content": "6a623bbcd2144f1e43892777084bde4e2613ae6f22bf92dedf6e1dc6e68248b3" + } + ] + }, + { + "bom-ref": "5cc98e057ac41930", + "type": "file", + "name": "/usr/share/zoneinfo/America/Argentina/Ushuaia", + "hashes": [ + { + "alg": "SHA-1", + "content": "e0417294a56ad2adf5ab8b1823f28004cee6955b" + }, + { + "alg": "SHA-256", + "content": "02f9a96426823c7bf25ff15a1f241069e2cb15969d48d0c6cc31aad13a7d0f49" + } + ] + }, + { + "bom-ref": "734bb106c773b327", + "type": "file", + "name": "/usr/share/zoneinfo/America/Aruba", + "hashes": [ + { + "alg": "SHA-1", + "content": "b1a1b54c10a8add3cc0cfe981de532763c906673" + }, + { + "alg": "SHA-256", + "content": "023d877932f35d889772f561f79e266c8541b984e0ce2bd257723aafc7d883c1" + } + ] + }, + { + "bom-ref": "b4d89197adb6fc66", + "type": "file", + "name": "/usr/share/zoneinfo/America/Asuncion", + "hashes": [ + { + "alg": "SHA-1", + "content": "3eb693904c60c9a27732a7251fa98c5c7477e3fa" + }, + { + "alg": "SHA-256", + "content": "1e29f7cdc530419ad31e4afc8fc2adf40d9577f55e2174a3a82358a027780ca2" + } + ] + }, + { + "bom-ref": "4c98820dd0ae5871", + "type": "file", + "name": "/usr/share/zoneinfo/America/Atikokan", + "hashes": [ + { + "alg": "SHA-1", + "content": "71491e34457361fb0d53de48c8c617e625949bf6" + }, + { + "alg": "SHA-256", + "content": "c30226b472b507b5a30b69557d56f24fcc8e9467110e4d3ec15c2c51de5d245c" + } + ] + }, + { + "bom-ref": "6c547f4193cddd8c", + "type": "file", + "name": "/usr/share/zoneinfo/America/Bahia", + "hashes": [ + { + "alg": "SHA-1", + "content": "50adfb46d2c7e3c941c0eef64d0db232b23cad52" + }, + { + "alg": "SHA-256", + "content": "2e1c1b5e2579e15a623bfd3774db703a49b937790e68b44a6b99a308c6ecba66" + } + ] + }, + { + "bom-ref": "c11bc140b4859992", + "type": "file", + "name": "/usr/share/zoneinfo/America/Bahia_Banderas", + "hashes": [ + { + "alg": "SHA-1", + "content": "458df0252aa57110ed4c8b0e7fec2d3fa1dd4979" + }, + { + "alg": "SHA-256", + "content": "9d0e0d9f6168635a5f98550a170d423854ff5b662ce0d874c3cba77199bf1cbd" + } + ] + }, + { + "bom-ref": "9ea03d214bd7b0dd", + "type": "file", + "name": "/usr/share/zoneinfo/America/Barbados", + "hashes": [ + { + "alg": "SHA-1", + "content": "521ea82e07f12a271237dd8bd592d11acd96b9c6" + }, + { + "alg": "SHA-256", + "content": "9b1a7857a01ae2a3ae9a51e0b40cfbed91bac468579ed3c08b54466276bbb1fa" + } + ] + }, + { + "bom-ref": "77ae49791085f568", + "type": "file", + "name": "/usr/share/zoneinfo/America/Belem", + "hashes": [ + { + "alg": "SHA-1", + "content": "b75b5d3bc094676a4ffb075049355109a6a8c3aa" + }, + { + "alg": "SHA-256", + "content": "84749f6075de59dc62bd69343194806cfd552641b912a6f8e96c83c99914a187" + } + ] + }, + { + "bom-ref": "d79f0828965ca421", + "type": "file", + "name": "/usr/share/zoneinfo/America/Belize", + "hashes": [ + { + "alg": "SHA-1", + "content": "6c1bf18ff8c6088e847c3d9bc11571e8288ffe71" + }, + { + "alg": "SHA-256", + "content": "dec5c63068e5ad99b53be62bb22eea068c8fb7782042dd3829be2424c5cf3c3c" + } + ] + }, + { + "bom-ref": "42a22a4333112fb7", + "type": "file", + "name": "/usr/share/zoneinfo/America/Blanc-Sablon", + "hashes": [ + { + "alg": "SHA-1", + "content": "66a2fee5e66c5cec095bf435b72bcd645b3f5703" + }, + { + "alg": "SHA-256", + "content": "c7d383bfb7e85331030f8091a9055a5f424e3674407ca0c76cce06b5a0316fdb" + } + ] + }, + { + "bom-ref": "70f56a114e7c2e96", + "type": "file", + "name": "/usr/share/zoneinfo/America/Boa_Vista", + "hashes": [ + { + "alg": "SHA-1", + "content": "fd57654adfaf9c9c1742b8c055bf38da9122a0ca" + }, + { + "alg": "SHA-256", + "content": "c57a63f22280c2c46587414956efc8fcaadc36ed422589b48929dcc7ab4f6680" + } + ] + }, + { + "bom-ref": "4ac921a8fcea13bb", + "type": "file", + "name": "/usr/share/zoneinfo/America/Bogota", + "hashes": [ + { + "alg": "SHA-1", + "content": "3039300336c1a540f03d732faeda9dfce2dfb356" + }, + { + "alg": "SHA-256", + "content": "3611de34f765f2d65ec0593e79c678de36092549898680dc4639b8c68f7137ba" + } + ] + }, + { + "bom-ref": "3db82a2b6de68f40", + "type": "file", + "name": "/usr/share/zoneinfo/America/Boise", + "hashes": [ + { + "alg": "SHA-1", + "content": "1f8cb096410dba57ca0ab7c93874770553628533" + }, + { + "alg": "SHA-256", + "content": "33353ef05ccdda7debe757cf865ee7bd78031f38c6797b8fbfc11f9010f55a10" + } + ] + }, + { + "bom-ref": "ce10b4d81d5081af", + "type": "file", + "name": "/usr/share/zoneinfo/America/Buenos_Aires", + "hashes": [ + { + "alg": "SHA-1", + "content": "d24c701f981fcabfa2aa5a7b0fa5655c7da065fa" + }, + { + "alg": "SHA-256", + "content": "841b9bca947f2acd9adc6cb5c10171204eecec1e46e6042654f355c89debc43f" + } + ] + }, + { + "bom-ref": "a2be458a37a08d66", + "type": "file", + "name": "/usr/share/zoneinfo/America/Cambridge_Bay", + "hashes": [ + { + "alg": "SHA-1", + "content": "5338d502ca9fb08d55b43941f021df4423b8265b" + }, + { + "alg": "SHA-256", + "content": "0aeaed5b104ee99ab13a9f5b5a7aaf7f6c9a7f59bdefd15d3c9951551c7b5f6f" + } + ] + }, + { + "bom-ref": "52c9cb99591ec80b", + "type": "file", + "name": "/usr/share/zoneinfo/America/Campo_Grande", + "hashes": [ + { + "alg": "SHA-1", + "content": "f12d6a93ce42b6c01c5f89f3e52eabb2a034c1aa" + }, + { + "alg": "SHA-256", + "content": "e670b40a7dd3adf79f66ea43382a70e60caee6ffb59ae92c4c9ee081d16259d2" + } + ] + }, + { + "bom-ref": "c0337070add6b57b", + "type": "file", + "name": "/usr/share/zoneinfo/America/Cancun", + "hashes": [ + { + "alg": "SHA-1", + "content": "a4fbe5e13cf390a886f3d4bec8596ed195564d1c" + }, + { + "alg": "SHA-256", + "content": "d22316873f309799c6f97fefb8a0a8897d0df4eb376f84bb0b71602ec240d04f" + } + ] + }, + { + "bom-ref": "4ac59cc3f953d2b0", + "type": "file", + "name": "/usr/share/zoneinfo/America/Caracas", + "hashes": [ + { + "alg": "SHA-1", + "content": "db673a7fafdf27e614cb8d61b45c15e771d85655" + }, + { + "alg": "SHA-256", + "content": "94e8efae88e096d6dd0abda2661d826c004f0c587f97782cb2f911ed7c942f1a" + } + ] + }, + { + "bom-ref": "b270e4c76e05f013", + "type": "file", + "name": "/usr/share/zoneinfo/America/Catamarca", + "hashes": [ + { + "alg": "SHA-1", + "content": "2e5938d213dc0e815cc04934d1cf4d0f9ce7b63a" + }, + { + "alg": "SHA-256", + "content": "e844a8f34c71c2d04bfdac6b11e913b5f20ea9fddb5d145433d0831087f1c5d6" + } + ] + }, + { + "bom-ref": "70397f731e53caa5", + "type": "file", + "name": "/usr/share/zoneinfo/America/Cayenne", + "hashes": [ + { + "alg": "SHA-1", + "content": "54da1196e5ae621c56255596ea45e73585bc4cec" + }, + { + "alg": "SHA-256", + "content": "af8de87447f7093759a595cc3d403e5fa7b51fc3520959c4da54956ffbac856a" + } + ] + }, + { + "bom-ref": "a49574c046796162", + "type": "file", + "name": "/usr/share/zoneinfo/America/Cayman", + "hashes": [ + { + "alg": "SHA-1", + "content": "73f1a382a74f1b2299f385699e7ce9feabdeb03a" + }, + { + "alg": "SHA-256", + "content": "fc4fbba14653a3186f3c5b719f7b9bf7d8a5824401064cf6d508205592e55a9f" + } + ] + }, + { + "bom-ref": "b0f2e486a5db8b72", + "type": "file", + "name": "/usr/share/zoneinfo/America/Chicago", + "hashes": [ + { + "alg": "SHA-1", + "content": "9c757e7e753439aa21384dfbb42401067ff2831b" + }, + { + "alg": "SHA-256", + "content": "143f29b957173a46008187230a38125bd3a03b3dbcba0dc1d1b8661331f71693" + } + ] + }, + { + "bom-ref": "60a305cc87591b42", + "type": "file", + "name": "/usr/share/zoneinfo/America/Chihuahua", + "hashes": [ + { + "alg": "SHA-1", + "content": "9e513e6a2f898d015fb3f3a702c1e4f852a0b886" + }, + { + "alg": "SHA-256", + "content": "a7d150e716db5b1c96bb0e50252b80306e1d9e8bcc2bf90a3ae7071906e71513" + } + ] + }, + { + "bom-ref": "12526439d1747a6a", + "type": "file", + "name": "/usr/share/zoneinfo/America/Cordoba", + "hashes": [ + { + "alg": "SHA-1", + "content": "756fb0415446127d1c2ebbe2fcbb75ce3995334c" + }, + { + "alg": "SHA-256", + "content": "254a30f9b9b00558350d0c1f40a1d9c8738045bb7fe88e56c81bbb9fbd161026" + } + ] + }, + { + "bom-ref": "287f0d656702480c", + "type": "file", + "name": "/usr/share/zoneinfo/America/Costa_Rica", + "hashes": [ + { + "alg": "SHA-1", + "content": "65eaee26f1178ff3ffb2bba735c1432d43f255e8" + }, + { + "alg": "SHA-256", + "content": "4e6ff29a776e053226bf590ebe734896f9150d69074f22a16a1c7199a1484ec5" + } + ] + }, + { + "bom-ref": "7c66b7bf46c528a8", + "type": "file", + "name": "/usr/share/zoneinfo/America/Creston", + "hashes": [ + { + "alg": "SHA-1", + "content": "27c5e7e651cf3d8e609d3bb1e1780c0f8be44f27" + }, + { + "alg": "SHA-256", + "content": "97b74beec3714be518219f24533cc21edf9b53d01f4ab792a6fe0f88973449eb" + } + ] + }, + { + "bom-ref": "da22001788e91caf", + "type": "file", + "name": "/usr/share/zoneinfo/America/Cuiaba", + "hashes": [ + { + "alg": "SHA-1", + "content": "832438b3e483d7154ae419dc7c22ca7855ce4e40" + }, + { + "alg": "SHA-256", + "content": "309f877286fad7d01fbbae6bb1a64e23227688e1687a90b6ce67faaef5b0cb67" + } + ] + }, + { + "bom-ref": "d5995008e00ac36e", + "type": "file", + "name": "/usr/share/zoneinfo/America/Danmarkshavn", + "hashes": [ + { + "alg": "SHA-1", + "content": "4ecc592cd923d7cbe06961af9f31545916ad9c26" + }, + { + "alg": "SHA-256", + "content": "087e39cd6f10b6944b68b1de557289ef33769467f1b29806b96a16cf8e438e6e" + } + ] + }, + { + "bom-ref": "d95ad83750d59ffe", + "type": "file", + "name": "/usr/share/zoneinfo/America/Dawson", + "hashes": [ + { + "alg": "SHA-1", + "content": "4abb7005efddaf48260e79063982a20bd179ed3b" + }, + { + "alg": "SHA-256", + "content": "e8f52ccbfc01ab99e46f66fcb8e2e5e46b3239a6a6f7bfdc2279f6dc3fb10013" + } + ] + }, + { + "bom-ref": "09fa582874c83baf", + "type": "file", + "name": "/usr/share/zoneinfo/America/Dawson_Creek", + "hashes": [ + { + "alg": "SHA-1", + "content": "766d212da5f33609b8509a006084174c31f62228" + }, + { + "alg": "SHA-256", + "content": "29d0245bc04dadcbb196a3b6a81bace1696451166a7417d5bb2a8610f37ec5ba" + } + ] + }, + { + "bom-ref": "325613d8d02199ca", + "type": "file", + "name": "/usr/share/zoneinfo/America/Detroit", + "hashes": [ + { + "alg": "SHA-1", + "content": "a62154cb793804dc3199ee66d5cef8f50ed4e478" + }, + { + "alg": "SHA-256", + "content": "e668e3859786c92f462769f87d5bc4ef31b5d6646bbd1635b91007e2a03dbc6c" + } + ] + }, + { + "bom-ref": "c1816e43acca74a7", + "type": "file", + "name": "/usr/share/zoneinfo/America/Edmonton", + "hashes": [ + { + "alg": "SHA-1", + "content": "e7d76dfdb07759b945aa19ae6723844d3974b904" + }, + { + "alg": "SHA-256", + "content": "92ac6208f1ef357787fcfce6a334990252189eb0b427b28bc60e21ab5e792b3c" + } + ] + }, + { + "bom-ref": "ecaff1961530ce8b", + "type": "file", + "name": "/usr/share/zoneinfo/America/Eirunepe", + "hashes": [ + { + "alg": "SHA-1", + "content": "09ee8af38d9a7a75755fcd91c76a08a410ba7bda" + }, + { + "alg": "SHA-256", + "content": "07761278f5c58867c645625c9b819ea09e4703d76564e231979e48d6d2e0881a" + } + ] + }, + { + "bom-ref": "e635e540eaafa3a7", + "type": "file", + "name": "/usr/share/zoneinfo/America/El_Salvador", + "hashes": [ + { + "alg": "SHA-1", + "content": "892b21f94039cfe4b56b36c9ba5c173c2801678e" + }, + { + "alg": "SHA-256", + "content": "63215b213a31505bfd545fd52b11214cb614f13f0f55911f414edb44286e7f8a" + } + ] + }, + { + "bom-ref": "1895489fb07f3fa3", + "type": "file", + "name": "/usr/share/zoneinfo/America/Ensenada", + "hashes": [ + { + "alg": "SHA-1", + "content": "10ef18acecef25f6884428c5f32b874efe62c159" + }, + { + "alg": "SHA-256", + "content": "d827b95b4fa16b8c56d9a1636341c9112657e567ae84b37a9bfca133ae31babb" + } + ] + }, + { + "bom-ref": "4c47dc0f7bbae37b", + "type": "file", + "name": "/usr/share/zoneinfo/America/Fort_Nelson", + "hashes": [ + { + "alg": "SHA-1", + "content": "483f23913b25d359a8ba5bcc87611f916f8537ad" + }, + { + "alg": "SHA-256", + "content": "e7ce9a01cdd313d20352112430341c262e1b90182de490fc95c132daac118ce7" + } + ] + }, + { + "bom-ref": "ee6c8c4b9d86a3b0", + "type": "file", + "name": "/usr/share/zoneinfo/America/Fort_Wayne", + "hashes": [ + { + "alg": "SHA-1", + "content": "d822888ba3588c0509ec806a03197c53097ba742" + }, + { + "alg": "SHA-256", + "content": "55c2f3feb241f88435e9876e76e2c69ddfd0dfd36a273b551ff480e2cfad99fe" + } + ] + }, + { + "bom-ref": "2ac3f980e4d0700d", + "type": "file", + "name": "/usr/share/zoneinfo/America/Fortaleza", + "hashes": [ + { + "alg": "SHA-1", + "content": "d37e06512abc08a885320aa83243fbdd342cf821" + }, + { + "alg": "SHA-256", + "content": "ca3cd6cdd4ec5f945742cd72a91e539756e0ad2eac3dfa62afc21397061eea99" + } + ] + }, + { + "bom-ref": "a93756599c40618b", + "type": "file", + "name": "/usr/share/zoneinfo/America/Glace_Bay", + "hashes": [ + { + "alg": "SHA-1", + "content": "6c4af69874ce85dca30a2a27cd2f24aead45f624" + }, + { + "alg": "SHA-256", + "content": "e6af24e3b9f1240abb8618fac326ee3a1ecccd25d2fa4936b2a28b0b0880e550" + } + ] + }, + { + "bom-ref": "cbc81a2e297507e3", + "type": "file", + "name": "/usr/share/zoneinfo/America/Godthab", + "hashes": [ + { + "alg": "SHA-1", + "content": "888e7e4d9b26898829fc3cd10686a9f53eb95d87" + }, + { + "alg": "SHA-256", + "content": "356cd2d4e74c958622b77385ae0509b5ea87e691f21207230f6fe1fa67e220af" + } + ] + }, + { + "bom-ref": "e3ea415df800301a", + "type": "file", + "name": "/usr/share/zoneinfo/America/Goose_Bay", + "hashes": [ + { + "alg": "SHA-1", + "content": "37cce6f40c4d131dc51e5122e4f4feb0f7095826" + }, + { + "alg": "SHA-256", + "content": "f0c06c6a1841cdc37bfb311c11caba1c974d0d6c27725c04b69657e7ca112a49" + } + ] + }, + { + "bom-ref": "28bf06998e7856c2", + "type": "file", + "name": "/usr/share/zoneinfo/America/Grand_Turk", + "hashes": [ + { + "alg": "SHA-1", + "content": "7771ad3f812f68776883993eb5aac30aeb36af3f" + }, + { + "alg": "SHA-256", + "content": "73da89488b297b080468938594242c7f898e2c391e8575e8be832d56a1b87246" + } + ] + }, + { + "bom-ref": "58f914e44d4ee445", + "type": "file", + "name": "/usr/share/zoneinfo/America/Guatemala", + "hashes": [ + { + "alg": "SHA-1", + "content": "2ffc6ac0c1270f793d1e5c7dbaa2aaa60bc92c7c" + }, + { + "alg": "SHA-256", + "content": "795cc25e5ffe825a8b3d86eed98ad5f9bb9f6d152df2b624f0e2a63b17f0ee43" + } + ] + }, + { + "bom-ref": "164d6e1c34a248a8", + "type": "file", + "name": "/usr/share/zoneinfo/America/Guayaquil", + "hashes": [ + { + "alg": "SHA-1", + "content": "f721580d255bca9852e08d6536111faaddd7a95d" + }, + { + "alg": "SHA-256", + "content": "6f52c0cff32100d797e64032c4ce19fa5a94b75b7678f1beb3c0cb549cdc00f7" + } + ] + }, + { + "bom-ref": "9d67a92a26760e83", + "type": "file", + "name": "/usr/share/zoneinfo/America/Guyana", + "hashes": [ + { + "alg": "SHA-1", + "content": "83afa10270f6b6da37c0b7f79c99b7f52b3186a9" + }, + { + "alg": "SHA-256", + "content": "ffa4db9ef9c8a2902355de59b3693aa3dabd21e7a06054772bfcd754902e9342" + } + ] + }, + { + "bom-ref": "f75819589843d9ca", + "type": "file", + "name": "/usr/share/zoneinfo/America/Halifax", + "hashes": [ + { + "alg": "SHA-1", + "content": "72a35d81e965c2e98da92056c8369f9d50f2bf27" + }, + { + "alg": "SHA-256", + "content": "627e18218c6f3c3f446c4970abe8164672e2a7ba94bcf841b1e06af5089b94ea" + } + ] + }, + { + "bom-ref": "aee7cdd50a8e59e2", + "type": "file", + "name": "/usr/share/zoneinfo/America/Hermosillo", + "hashes": [ + { + "alg": "SHA-1", + "content": "afd34f472515ef1c3694a3a4337e9bc4c7e2ad05" + }, + { + "alg": "SHA-256", + "content": "ec6eb21d068f1ca8e80a9e825206ad1b5a04b1e8abb2dd981c6c90b7686b8820" + } + ] + }, + { + "bom-ref": "68841c27c02b5549", + "type": "file", + "name": "/usr/share/zoneinfo/America/Indiana/Marengo", + "hashes": [ + { + "alg": "SHA-1", + "content": "eec0be36f8dd019b5c5e5a367eb8cad0e1ab8bb8" + }, + { + "alg": "SHA-256", + "content": "64bb87669a7c161454b283e5855e28de7655450680cc403eea0572e580eb2625" + } + ] + }, + { + "bom-ref": "64136822bc0209ac", + "type": "file", + "name": "/usr/share/zoneinfo/America/Indiana/Petersburg", + "hashes": [ + { + "alg": "SHA-1", + "content": "3283907667ccc19804647b4bca6bc4c0d4caa751" + }, + { + "alg": "SHA-256", + "content": "3eb5dd510d677f9118ec4bca7892db4ed181722fbaf94ef9cb1a441718400321" + } + ] + }, + { + "bom-ref": "04c5adef0e626bc0", + "type": "file", + "name": "/usr/share/zoneinfo/America/Indiana/Tell_City", + "hashes": [ + { + "alg": "SHA-1", + "content": "526961884c7f95e6ba2cfdcb11d934f1f530ef10" + }, + { + "alg": "SHA-256", + "content": "6814c2b71389711819f44b98c880caf317c03a42064b2217103795114781a80f" + } + ] + }, + { + "bom-ref": "94291e7d167aa7d1", + "type": "file", + "name": "/usr/share/zoneinfo/America/Indiana/Vevay", + "hashes": [ + { + "alg": "SHA-1", + "content": "19e347531c46e3bc0cd7685509bf9dda33f56ba4" + }, + { + "alg": "SHA-256", + "content": "5cf728ac267cce51bddf1875219bf0e800d5aaa17794dc2c7408293773f516e5" + } + ] + }, + { + "bom-ref": "554f062cbf945979", + "type": "file", + "name": "/usr/share/zoneinfo/America/Indiana/Vincennes", + "hashes": [ + { + "alg": "SHA-1", + "content": "4a1ea520e4d2a6e806b8c4c63d5c947522ba6328" + }, + { + "alg": "SHA-256", + "content": "8a9db38f7575f9e2a624c9466128927caef0eea7e9a3841679cd6eb129b019d3" + } + ] + }, + { + "bom-ref": "f5c2339672630b21", + "type": "file", + "name": "/usr/share/zoneinfo/America/Indiana/Winamac", + "hashes": [ + { + "alg": "SHA-1", + "content": "c36a7df4d05086e80791f91b959b4b44dfbf0472" + }, + { + "alg": "SHA-256", + "content": "d2dc919207b8db95bd82aff68b8a498a6d3bec2c33220ba5381ebca171dcc095" + } + ] + }, + { + "bom-ref": "8b03f8329e497380", + "type": "file", + "name": "/usr/share/zoneinfo/America/Inuvik", + "hashes": [ + { + "alg": "SHA-1", + "content": "124ba21361900c06708d1d8b76055407f8e51796" + }, + { + "alg": "SHA-256", + "content": "ea64cbc0bf92cf88c8917222f11db8838f42e2d41360cd81bb93f669a2bc685b" + } + ] + }, + { + "bom-ref": "0dee3e698c2fc204", + "type": "file", + "name": "/usr/share/zoneinfo/America/Iqaluit", + "hashes": [ + { + "alg": "SHA-1", + "content": "5a78f8e5017551eb2866d05ed2ed70611a9e9387" + }, + { + "alg": "SHA-256", + "content": "eb8797250b8bd8c3d09893b4f261ffb1bedd668869a051c8e2c80f6c0d63408c" + } + ] + }, + { + "bom-ref": "ff90f11c096988c4", + "type": "file", + "name": "/usr/share/zoneinfo/America/Jujuy", + "hashes": [ + { + "alg": "SHA-1", + "content": "ecf30bd926e6b7feaf6a29cbcfb092c78b939e7b" + }, + { + "alg": "SHA-256", + "content": "233f43f895b08f21cd28918fbdb9c22892511c0996ac6212e019c3e866aca455" + } + ] + }, + { + "bom-ref": "ac28a9c8b7a43be4", + "type": "file", + "name": "/usr/share/zoneinfo/America/Juneau", + "hashes": [ + { + "alg": "SHA-1", + "content": "d1dd03c5e2818945179368c4c0a8886a3aec5bae" + }, + { + "alg": "SHA-256", + "content": "8185913ee68f7ec72cd98efcee68d1b6bd0c304e303a2dc613b06cd97e6333c8" + } + ] + }, + { + "bom-ref": "af3cee74ef1ae3a4", + "type": "file", + "name": "/usr/share/zoneinfo/America/Kentucky/Monticello", + "hashes": [ + { + "alg": "SHA-1", + "content": "30cceea7b1eb757b7e6c7e2a436ee9f6f4865e94" + }, + { + "alg": "SHA-256", + "content": "b87081e46bbe688816a7e03cfdc5b4efe10bd6b92cb5a780df6b0c86af4c1a37" + } + ] + }, + { + "bom-ref": "5b91442948c8c501", + "type": "file", + "name": "/usr/share/zoneinfo/America/Knox_IN", + "hashes": [ + { + "alg": "SHA-1", + "content": "06b80b933cdf747c3dd0ce5d68278874b64b93f0" + }, + { + "alg": "SHA-256", + "content": "9e75dd6c52c5339c8e2b195ff8ac6a7212e2c5e84b2be3023cc355972c20d856" + } + ] + }, + { + "bom-ref": "314da58dcaf09365", + "type": "file", + "name": "/usr/share/zoneinfo/America/La_Paz", + "hashes": [ + { + "alg": "SHA-1", + "content": "5e234a018666fe58baa4917cd9fffeb9e9fd489b" + }, + { + "alg": "SHA-256", + "content": "1f10b013aea85ad55c3b3f65d68fa09bba4abe7fb5311018698823f0ab909a88" + } + ] + }, + { + "bom-ref": "383e87ec2e577562", + "type": "file", + "name": "/usr/share/zoneinfo/America/Lima", + "hashes": [ + { + "alg": "SHA-1", + "content": "e8d01c61a972ba427254883d16e6ba2633dd7c0e" + }, + { + "alg": "SHA-256", + "content": "5f514d5245abb9de7c35fabed4c4cc86f6c027548cd1be04cc84b122878e1ad3" + } + ] + }, + { + "bom-ref": "fdf1b46198c7694d", + "type": "file", + "name": "/usr/share/zoneinfo/America/Los_Angeles", + "hashes": [ + { + "alg": "SHA-1", + "content": "6b272416122dae794487818603243b1e86866234" + }, + { + "alg": "SHA-256", + "content": "fea9d66ff6522e69d22073dc4e84179b7cac2e372b398dc2fafdfdb61a9eb2e1" + } + ] + }, + { + "bom-ref": "bd65903dbe6aa71b", + "type": "file", + "name": "/usr/share/zoneinfo/America/Louisville", + "hashes": [ + { + "alg": "SHA-1", + "content": "c96f194ce7e669dd7116206b53b48f4ac36ed387" + }, + { + "alg": "SHA-256", + "content": "31e1152a8de9463bcef2b5db10415965b96b83a93bd940609bc390bab963f384" + } + ] + }, + { + "bom-ref": "258a8d4cd25cc679", + "type": "file", + "name": "/usr/share/zoneinfo/America/Maceio", + "hashes": [ + { + "alg": "SHA-1", + "content": "79cf3326476fdd903e50c9f9ab907374975758cd" + }, + { + "alg": "SHA-256", + "content": "3241ce8df0004a0cb5db2eb3800a3dfe770cc1d24d144fee27862c4dd7400840" + } + ] + }, + { + "bom-ref": "363cd11c149b899a", + "type": "file", + "name": "/usr/share/zoneinfo/America/Managua", + "hashes": [ + { + "alg": "SHA-1", + "content": "4f8bbf2929c33667126d8bb2996c89efef9f7c17" + }, + { + "alg": "SHA-256", + "content": "a3c1f00bc879ee84e623d25252f1fb8ffd8cf43cd9c8b8bf12b6b5eda8045683" + } + ] + }, + { + "bom-ref": "62fb2119919233e6", + "type": "file", + "name": "/usr/share/zoneinfo/America/Manaus", + "hashes": [ + { + "alg": "SHA-1", + "content": "54c83a6d547f5e744b614e681d5393c8941de300" + }, + { + "alg": "SHA-256", + "content": "e1213e7b97cfa580b4f9c728c34ffa64a6ab277b06b558893b299c20d3528e6c" + } + ] + }, + { + "bom-ref": "263ac1c43ff2c71c", + "type": "file", + "name": "/usr/share/zoneinfo/America/Martinique", + "hashes": [ + { + "alg": "SHA-1", + "content": "1ae26dfd7c388dd2cc5552817727200b292af0b7" + }, + { + "alg": "SHA-256", + "content": "e087c3e4ae20234a08667adcf6ab4cd03ab3aeee7e035278f271ddb0b65cfff2" + } + ] + }, + { + "bom-ref": "7a805d89fb2041ea", + "type": "file", + "name": "/usr/share/zoneinfo/America/Matamoros", + "hashes": [ + { + "alg": "SHA-1", + "content": "77c13685c3d1ac515114769aa17af02cb6805ff5" + }, + { + "alg": "SHA-256", + "content": "4398d831df4bfcfd9bafa22ac35cd55dbb7dfd5f25c138452e8adf275ea11735" + } + ] + }, + { + "bom-ref": "4f8587c018933dd4", + "type": "file", + "name": "/usr/share/zoneinfo/America/Mazatlan", + "hashes": [ + { + "alg": "SHA-1", + "content": "0fe37e001e5e1824c0a0319cc5ef1184ab44fbb7" + }, + { + "alg": "SHA-256", + "content": "9340b719b250773262cec62e771d121105aed168836723dfc305e30bb04cfbb1" + } + ] + }, + { + "bom-ref": "ceea1f023050a941", + "type": "file", + "name": "/usr/share/zoneinfo/America/Mendoza", + "hashes": [ + { + "alg": "SHA-1", + "content": "f7d1839c51686e31e318b8df98869915ae1475fc" + }, + { + "alg": "SHA-256", + "content": "d50f245cf1eeb3650dbbdd45720ddc6b1c5e22aede7981f20b9efe2c7ac68c4d" + } + ] + }, + { + "bom-ref": "737f2b8c0b7ceb82", + "type": "file", + "name": "/usr/share/zoneinfo/America/Menominee", + "hashes": [ + { + "alg": "SHA-1", + "content": "4ead905a8f5fe1ea8e81824dc3440c422d6d10bd" + }, + { + "alg": "SHA-256", + "content": "46ced580e74834d2c68a80a60ae05a0b715014bb2b4dad67cf994ac20ce2ac22" + } + ] + }, + { + "bom-ref": "e2e85a7f01f34bde", + "type": "file", + "name": "/usr/share/zoneinfo/America/Merida", + "hashes": [ + { + "alg": "SHA-1", + "content": "c30785c626637481bd7ce933d36a8dce1cea22aa" + }, + { + "alg": "SHA-256", + "content": "ecdcf4b29f7b439152b9e9b559f04d7d4ba759dd942c2fd685a4ee36798fc8d1" + } + ] + }, + { + "bom-ref": "a3fa429c481d8b82", + "type": "file", + "name": "/usr/share/zoneinfo/America/Metlakatla", + "hashes": [ + { + "alg": "SHA-1", + "content": "2be6672607cb5e862d3a7e63a7073a39bd389566" + }, + { + "alg": "SHA-256", + "content": "9d091e1f411ccec6f2274317c53cc3ca45d6895f2c7497583e71ffca496716f3" + } + ] + }, + { + "bom-ref": "c9690247f2cceb82", + "type": "file", + "name": "/usr/share/zoneinfo/America/Mexico_City", + "hashes": [ + { + "alg": "SHA-1", + "content": "ca23e2e897c830658da03a6c292380f149bb24ff" + }, + { + "alg": "SHA-256", + "content": "88bc3fcb1a92ef053e0af4af9053ecbf12855fdf18f859b2a54d826dbfacb655" + } + ] + }, + { + "bom-ref": "77f9951934c20f01", + "type": "file", + "name": "/usr/share/zoneinfo/America/Miquelon", + "hashes": [ + { + "alg": "SHA-1", + "content": "321f965ce0aabc7cf60309eac1debe55f07e39a5" + }, + { + "alg": "SHA-256", + "content": "21fabc9c2cafd8eef46af9126040cced6ef27d648d73d48951178143e6bb006b" + } + ] + }, + { + "bom-ref": "ed69c647a8dda838", + "type": "file", + "name": "/usr/share/zoneinfo/America/Moncton", + "hashes": [ + { + "alg": "SHA-1", + "content": "81ab3fb3b457816b5d54417cf105fb64d083d21d" + }, + { + "alg": "SHA-256", + "content": "1300d5a93bb376cbf23a890a23ea05fa2b229486e7eb7d5959c7834260fbb7b7" + } + ] + }, + { + "bom-ref": "fbb47501496c3640", + "type": "file", + "name": "/usr/share/zoneinfo/America/Monterrey", + "hashes": [ + { + "alg": "SHA-1", + "content": "76f7f5df8e8884a6b594446775d44915ad53285e" + }, + { + "alg": "SHA-256", + "content": "89dadca852ebf52e4405c958132255c25fb195604d7df9b844bf50b48a0865d8" + } + ] + }, + { + "bom-ref": "ac66434b105e3956", + "type": "file", + "name": "/usr/share/zoneinfo/America/Montevideo", + "hashes": [ + { + "alg": "SHA-1", + "content": "936bcb6592d68644ac7fca6e99080e12a0b6fe38" + }, + { + "alg": "SHA-256", + "content": "550efc39d3e1c9e6909aa80a9d067f9355c47a874fcaf4f59302407ef6f968e1" + } + ] + }, + { + "bom-ref": "f634ee71dbb9f872", + "type": "file", + "name": "/usr/share/zoneinfo/America/Montreal", + "hashes": [ + { + "alg": "SHA-1", + "content": "f0738b3fc039a2d1233a856343b883fa81380a70" + }, + { + "alg": "SHA-256", + "content": "842f7a103dfac9c0c2c33c9cc392a113d266ac064c5c7497883ab41b797ce194" + } + ] + }, + { + "bom-ref": "7fb2f70f22d0f618", + "type": "file", + "name": "/usr/share/zoneinfo/America/Nassau", + "hashes": [ + { + "alg": "SHA-1", + "content": "7c542f4384a270295b44d73d67502b04e2dac34e" + }, + { + "alg": "SHA-256", + "content": "9631141bea8930f28ed079a6ccdf52bf27ac52fff85c53329f50b6fa9dd5881a" + } + ] + }, + { + "bom-ref": "2803e121dddce5bb", + "type": "file", + "name": "/usr/share/zoneinfo/America/Nipigon", + "hashes": [ + { + "alg": "SHA-1", + "content": "cb3d30ffa912161d0d42628f2808e022d70b260d" + }, + { + "alg": "SHA-256", + "content": "7100ca4bf3044211ff8e770dade20b683880f3965f146ebbdd72c644aaec7c37" + } + ] + }, + { + "bom-ref": "93db7ee1cf9f0944", + "type": "file", + "name": "/usr/share/zoneinfo/America/Nome", + "hashes": [ + { + "alg": "SHA-1", + "content": "148d8f791d8265b2218060da66a072a4a7581b7e" + }, + { + "alg": "SHA-256", + "content": "d312bc797eb1b384ccfba0c40822d50b2e0abf37d5daa43dd3e255fdc7573b00" + } + ] + }, + { + "bom-ref": "8aaca6c16cc80809", + "type": "file", + "name": "/usr/share/zoneinfo/America/Noronha", + "hashes": [ + { + "alg": "SHA-1", + "content": "0c5c9d4d3c6e0cfa9d7680b042bd4f4cba6a9bec" + }, + { + "alg": "SHA-256", + "content": "cb4e968f415ed53e769108c9d5f9710e898716af74536d39b7077b0426f3960d" + } + ] + }, + { + "bom-ref": "ac76e2f681479449", + "type": "file", + "name": "/usr/share/zoneinfo/America/North_Dakota/Beulah", + "hashes": [ + { + "alg": "SHA-1", + "content": "294e1cfb1ce1eef45d5ba77b554491edf4389c63" + }, + { + "alg": "SHA-256", + "content": "f604eb42f0197f5edefcd6d43051a0b64e6e1327dbd2d3cfa94d0348b23e1fa8" + } + ] + }, + { + "bom-ref": "5467fca25008be93", + "type": "file", + "name": "/usr/share/zoneinfo/America/North_Dakota/Center", + "hashes": [ + { + "alg": "SHA-1", + "content": "af9fbd86a4d955d1f91aaaf9309cf5b7e0e6ba74" + }, + { + "alg": "SHA-256", + "content": "08efea4af9a2b6a5ab25e86116cfcf4b93c16ba9b7b22f762d9cb3481ecf3ac8" + } + ] + }, + { + "bom-ref": "79aaaa7dfa8a5755", + "type": "file", + "name": "/usr/share/zoneinfo/America/North_Dakota/New_Salem", + "hashes": [ + { + "alg": "SHA-1", + "content": "9bedd2da1055142e7bc246b31dfc62306e0c17c0" + }, + { + "alg": "SHA-256", + "content": "c5a43eb6776c326b1250f914f00e9e00e121b9b51f63665f90f245376da2017a" + } + ] + }, + { + "bom-ref": "8658fce51af5fb82", + "type": "file", + "name": "/usr/share/zoneinfo/America/Ojinaga", + "hashes": [ + { + "alg": "SHA-1", + "content": "cdc0fd0441d135f266dd2bd1417d98a2ca02c453" + }, + { + "alg": "SHA-256", + "content": "a07ff8fe3ee3531f866afca0f7937d86acec1826fb3eaa655d54300ec22dc713" + } + ] + }, + { + "bom-ref": "7836fa5c677e9c63", + "type": "file", + "name": "/usr/share/zoneinfo/America/Pangnirtung", + "hashes": [ + { + "alg": "SHA-1", + "content": "816558b9b031dcc687ebb9f54c5d4809fc147238" + }, + { + "alg": "SHA-256", + "content": "1b6a497653df9220c30a022d87ec2aa1320af9e51bb3cdc48756e72d770a6738" + } + ] + }, + { + "bom-ref": "fb9d4ea18ad7ecce", + "type": "file", + "name": "/usr/share/zoneinfo/America/Paramaribo", + "hashes": [ + { + "alg": "SHA-1", + "content": "7564b798823189ebdf27cd281dee91fb808e0063" + }, + { + "alg": "SHA-256", + "content": "57039b31a68b30ba0731916cffa7b9a1bbb52bf7650f7aa62052e89a8fc9edf6" + } + ] + }, + { + "bom-ref": "8cabda29c566e8fd", + "type": "file", + "name": "/usr/share/zoneinfo/America/Phoenix", + "hashes": [ + { + "alg": "SHA-1", + "content": "5edada5d6ac5d8909739b7b00d27f074e6c6cace" + }, + { + "alg": "SHA-256", + "content": "9c013ecf82b6ed1dde235b5fc983fe9d23c8d56d610323f7c94c6ba3cd7b4564" + } + ] + }, + { + "bom-ref": "84d9d68b7a7e6d42", + "type": "file", + "name": "/usr/share/zoneinfo/America/Port-au-Prince", + "hashes": [ + { + "alg": "SHA-1", + "content": "2bc58f6987d7f845b97c1f7861e8a647fd2a0fcc" + }, + { + "alg": "SHA-256", + "content": "b0b60ad1c557c41596e0fcc7fc8b9b39444c78295b147cee495e29985a225da6" + } + ] + }, + { + "bom-ref": "177ae7f7205d5593", + "type": "file", + "name": "/usr/share/zoneinfo/America/Porto_Acre", + "hashes": [ + { + "alg": "SHA-1", + "content": "a4bde518acfca0525379b7358bc04d89d300cb14" + }, + { + "alg": "SHA-256", + "content": "16c86cccc93c7ebfeffae880e439ce848055e421578982d5cabef8aaec15f802" + } + ] + }, + { + "bom-ref": "6a68331868d07253", + "type": "file", + "name": "/usr/share/zoneinfo/America/Porto_Velho", + "hashes": [ + { + "alg": "SHA-1", + "content": "7c8fd62280312a0d238e94046d4e52c6bb840d00" + }, + { + "alg": "SHA-256", + "content": "29f8daaa8fdca090df7145e69ecdc936cd3fedacea0b723f5c93da2a8c80f976" + } + ] + }, + { + "bom-ref": "130ef8377231b8fd", + "type": "file", + "name": "/usr/share/zoneinfo/America/Puerto_Rico", + "hashes": [ + { + "alg": "SHA-1", + "content": "b0e67202647204698dbd16902eabd3e93de36049" + }, + { + "alg": "SHA-256", + "content": "7eee44e1cb7ac885fdd5042815c548bcb6ca84cff8de007e52b53c0b9ad53f19" + } + ] + }, + { + "bom-ref": "74fdea840ef18415", + "type": "file", + "name": "/usr/share/zoneinfo/America/Punta_Arenas", + "hashes": [ + { + "alg": "SHA-1", + "content": "8f8945a86ab7327b22ded1c5291ae09df84e9e8f" + }, + { + "alg": "SHA-256", + "content": "33e26b3c8bf3dd7100151d3c1842ae9aa8ef69b15f961aa2eee2e1dc3508c6e5" + } + ] + }, + { + "bom-ref": "24d12eae8fabf9e5", + "type": "file", + "name": "/usr/share/zoneinfo/America/Rainy_River", + "hashes": [ + { + "alg": "SHA-1", + "content": "57280d5a602e233309a164ba2efd57c629b4e0ae" + }, + { + "alg": "SHA-256", + "content": "9a7b8dd4c968de31fe35fd9fe075fad8afc15892067119f638b5aef0d2288d83" + } + ] + }, + { + "bom-ref": "dc1ab4d52cab5605", + "type": "file", + "name": "/usr/share/zoneinfo/America/Rankin_Inlet", + "hashes": [ + { + "alg": "SHA-1", + "content": "8545dd3ef55384579e53f80c337f816935c860ed" + }, + { + "alg": "SHA-256", + "content": "b3ae38ccfa3091ebd8037fd5e1fd2715a72008932f94526a15fb1aa7fae722dc" + } + ] + }, + { + "bom-ref": "08e2b2276ffb7b3b", + "type": "file", + "name": "/usr/share/zoneinfo/America/Recife", + "hashes": [ + { + "alg": "SHA-1", + "content": "40b933cac6d1041ac9238f3fcdb42e25e6fa6002" + }, + { + "alg": "SHA-256", + "content": "cebb6d30c20b00bc437d4e0a8c6a0c91db120a3aef2c28bc56960f682b3fc30c" + } + ] + }, + { + "bom-ref": "358bfca547d0d616", + "type": "file", + "name": "/usr/share/zoneinfo/America/Regina", + "hashes": [ + { + "alg": "SHA-1", + "content": "76e2a4142b661be49545b622318268b3de4ef526" + }, + { + "alg": "SHA-256", + "content": "929d07457407529637626d09f5ca975b4f05801f35d0bfac4e3b0027efee6776" + } + ] + }, + { + "bom-ref": "712cd717c9790089", + "type": "file", + "name": "/usr/share/zoneinfo/America/Resolute", + "hashes": [ + { + "alg": "SHA-1", + "content": "c995fd52ddec0b15ee86b146087114f65f8d728f" + }, + { + "alg": "SHA-256", + "content": "c529141807704725b059187b9f458080f911b6dd4313e74139d2c7dac287c901" + } + ] + }, + { + "bom-ref": "57302a4ae3aac3c8", + "type": "file", + "name": "/usr/share/zoneinfo/America/Santarem", + "hashes": [ + { + "alg": "SHA-1", + "content": "03af6dbbbd217be2348e73e70d9ab86274dadf43" + }, + { + "alg": "SHA-256", + "content": "78440d01f4c5b7c13d1dbe6500ba71188efdcf90069979c80a224d831c8bd97b" + } + ] + }, + { + "bom-ref": "3eeabfe57500cd67", + "type": "file", + "name": "/usr/share/zoneinfo/America/Santiago", + "hashes": [ + { + "alg": "SHA-1", + "content": "7d32f6045377f3788d4015d66eb27b0777439730" + }, + { + "alg": "SHA-256", + "content": "b83e4129763ef7a22be3fba68029b4ecb6f14a360112498446d8c89640f420b5" + } + ] + }, + { + "bom-ref": "78cd1148df21a6b3", + "type": "file", + "name": "/usr/share/zoneinfo/America/Santo_Domingo", + "hashes": [ + { + "alg": "SHA-1", + "content": "a29f83f20c2a6cf56576054d80e0f8266de2c86e" + }, + { + "alg": "SHA-256", + "content": "adf349e4c7314aaa699c4893c589b077f6dfa7d9a54ea9eae459658f9af41dc7" + } + ] + }, + { + "bom-ref": "fd0a1553d160fcbd", + "type": "file", + "name": "/usr/share/zoneinfo/America/Sao_Paulo", + "hashes": [ + { + "alg": "SHA-1", + "content": "1fc57d2f4fb5a14833f253bf2fd7abed447f0016" + }, + { + "alg": "SHA-256", + "content": "a4090cbdfa5168012d460585f7eab9302f8848cca0419d73cf03993ef12c08c4" + } + ] + }, + { + "bom-ref": "b543336a241ff7a9", + "type": "file", + "name": "/usr/share/zoneinfo/America/Scoresbysund", + "hashes": [ + { + "alg": "SHA-1", + "content": "928c70dd1b85e8d32c344a19936c04330cac5c7c" + }, + { + "alg": "SHA-256", + "content": "c668772d49326cde3798d158089d2f9ced43788f904360a6dc67a53868b28f96" + } + ] + }, + { + "bom-ref": "6576f778678fc816", + "type": "file", + "name": "/usr/share/zoneinfo/America/Sitka", + "hashes": [ + { + "alg": "SHA-1", + "content": "ef1b9d1ce149a6f4877f0e5318b9b349184e4f15" + }, + { + "alg": "SHA-256", + "content": "ba79b89ecd8e64dba4119f2c5af2373167557c4bc71b7b134ab252e0b7485fdb" + } + ] + }, + { + "bom-ref": "6b7bc846f4bfa8cd", + "type": "file", + "name": "/usr/share/zoneinfo/America/St_Johns", + "hashes": [ + { + "alg": "SHA-1", + "content": "4aad3891be9ae7da8151cf34aa7ec12874c5952a" + }, + { + "alg": "SHA-256", + "content": "2b960a58d6d3f6a272707f941f55b15b8ba3fd0fd55f8680ea84af6b1e98bae0" + } + ] + }, + { + "bom-ref": "9faf0c679d3c5486", + "type": "file", + "name": "/usr/share/zoneinfo/America/Swift_Current", + "hashes": [ + { + "alg": "SHA-1", + "content": "a7eef9d862fa3bc2374813578f5712f3320aa66e" + }, + { + "alg": "SHA-256", + "content": "6b6029f04ac07c382e20d315da7a72d9204d813ef83585f042562e7f6788a78f" + } + ] + }, + { + "bom-ref": "a14db45e8c5dd4b1", + "type": "file", + "name": "/usr/share/zoneinfo/America/Tegucigalpa", + "hashes": [ + { + "alg": "SHA-1", + "content": "148518623ec71040a6431d9f0b6d30728e0e1652" + }, + { + "alg": "SHA-256", + "content": "fd295a9cc689a966786b6e0ec9d0f101796ac8b4f04a6f529b192937df3a2115" + } + ] + }, + { + "bom-ref": "f76b041bfbfa4115", + "type": "file", + "name": "/usr/share/zoneinfo/America/Thule", + "hashes": [ + { + "alg": "SHA-1", + "content": "b30145a508f7076ed907a1f09d828875d97d7aa2" + }, + { + "alg": "SHA-256", + "content": "9a474a1fc764343470d310369cdbf6d7007ea611116e25bea68f60ddf5a6cd68" + } + ] + }, + { + "bom-ref": "9cf83baad17806c9", + "type": "file", + "name": "/usr/share/zoneinfo/America/Thunder_Bay", + "hashes": [ + { + "alg": "SHA-1", + "content": "af6db11bf14add853af6f69bacea7e6636fd29ba" + }, + { + "alg": "SHA-256", + "content": "aef45e1474369f52e1afb1cd7f312e9f035ca13686092cf2351a353133e1cee6" + } + ] + }, + { + "bom-ref": "c496718af43e4ef7", + "type": "file", + "name": "/usr/share/zoneinfo/America/Vancouver", + "hashes": [ + { + "alg": "SHA-1", + "content": "7b2de208fd65d137c4176b50c191ab3b674fb7be" + }, + { + "alg": "SHA-256", + "content": "460182c93960fd636820b1b43cfec871da4f0197556bb6bdb2fa527b637a4332" + } + ] + }, + { + "bom-ref": "f97c0e3e96b0ea06", + "type": "file", + "name": "/usr/share/zoneinfo/America/Whitehorse", + "hashes": [ + { + "alg": "SHA-1", + "content": "800b76218fe759b14741b4659e0e92e8b93ac690" + }, + { + "alg": "SHA-256", + "content": "7e9e052642d3571e477bc6041031df8990350435e42ce38e7a802720d0f3a836" + } + ] + }, + { + "bom-ref": "b63a738b3959e091", + "type": "file", + "name": "/usr/share/zoneinfo/America/Winnipeg", + "hashes": [ + { + "alg": "SHA-1", + "content": "9b638a6d8f6138aa8a3c2af1e59ec2ce467c26a0" + }, + { + "alg": "SHA-256", + "content": "77be5c08f6f8ebe5330fb86a60c4447ea2549620609f4ef6a7a7a68d1a12d9d6" + } + ] + }, + { + "bom-ref": "00d712ef695b393d", + "type": "file", + "name": "/usr/share/zoneinfo/America/Yakutat", + "hashes": [ + { + "alg": "SHA-1", + "content": "71467f6640996eab149a9d1d03c27df76f97370b" + }, + { + "alg": "SHA-256", + "content": "07f189f49873b1392989ecbde19d19d33cd6c16953bf7e6b927ca2f1040f7106" + } + ] + }, + { + "bom-ref": "ee4047ee357a0490", + "type": "file", + "name": "/usr/share/zoneinfo/America/Yellowknife", + "hashes": [ + { + "alg": "SHA-1", + "content": "6f24a025e7ea0853b4e1bd993423f19ccfdbcfc2" + }, + { + "alg": "SHA-256", + "content": "3140de7fe4136fb4920e8bb8ed8d707256e78c672edfce1657ae22672de68768" + } + ] + }, + { + "bom-ref": "c41c034a1f2658a4", + "type": "file", + "name": "/usr/share/zoneinfo/Antarctica/Casey", + "hashes": [ + { + "alg": "SHA-1", + "content": "8a271e2c35ad54bc1da08c458943b7bad6b155dd" + }, + { + "alg": "SHA-256", + "content": "68cb638c8729bfad8bc7ac2f39892b90424e97aadb3107ed531e04e6fc83bbbe" + } + ] + }, + { + "bom-ref": "015a93f3bded5bdb", + "type": "file", + "name": "/usr/share/zoneinfo/Antarctica/Davis", + "hashes": [ + { + "alg": "SHA-1", + "content": "839a076e633ad6d3b9276a3cc53da10a5e5a0cea" + }, + { + "alg": "SHA-256", + "content": "8dec77b2a23389d30c680a6fb0241cae32f1c0c71bf28fde1679bdb035a2939b" + } + ] + }, + { + "bom-ref": "916b62a272bd2dcd", + "type": "file", + "name": "/usr/share/zoneinfo/Antarctica/DumontDUrville", + "hashes": [ + { + "alg": "SHA-1", + "content": "790b5785af51a9f201fb1ece8cf89a9e605b6cd0" + }, + { + "alg": "SHA-256", + "content": "86d1e72a7cad1d9817f57d456e39184b749436a02783a272f2109994addfbd55" + } + ] + }, + { + "bom-ref": "227838352df5cb07", + "type": "file", + "name": "/usr/share/zoneinfo/Antarctica/Macquarie", + "hashes": [ + { + "alg": "SHA-1", + "content": "c1a70264890f7f9e412e62faa3af20abde474f9e" + }, + { + "alg": "SHA-256", + "content": "84c67090354098f795919978c62b6b18f9e4fd2d05fd33a76067f84152d1c7f5" + } + ] + }, + { + "bom-ref": "c8dd87e0c06aea89", + "type": "file", + "name": "/usr/share/zoneinfo/Antarctica/Mawson", + "hashes": [ + { + "alg": "SHA-1", + "content": "1309b9108f7bf6f91dc007fad88770fd40355743" + }, + { + "alg": "SHA-256", + "content": "afa4aec36d9ff91992970b4c645e038810f25d8e58118a56568dbc9226704543" + } + ] + }, + { + "bom-ref": "b29cb461a656aa23", + "type": "file", + "name": "/usr/share/zoneinfo/Antarctica/Palmer", + "hashes": [ + { + "alg": "SHA-1", + "content": "d024e5b4a1b859fa79de798845bb946cacee2b3e" + }, + { + "alg": "SHA-256", + "content": "aa3fc7dd1b1f1599bf71ed328ae5dba81e09ac3e3a914689e7ea5ff3adc28183" + } + ] + }, + { + "bom-ref": "1388797829f9f00a", + "type": "file", + "name": "/usr/share/zoneinfo/Antarctica/Rothera", + "hashes": [ + { + "alg": "SHA-1", + "content": "b96df6c298173a3e9b4603a42620f6dd0199008a" + }, + { + "alg": "SHA-256", + "content": "e67d9eb78b53d3a415865402758eca495c69c347ed0ca7d5a0238c5f7ac01d8b" + } + ] + }, + { + "bom-ref": "83972c2341d2fc7a", + "type": "file", + "name": "/usr/share/zoneinfo/Antarctica/Syowa", + "hashes": [ + { + "alg": "SHA-1", + "content": "e18f1930aba6968e26250d0d4c73f226826e7c12" + }, + { + "alg": "SHA-256", + "content": "aef765ec9b3fae2cedbbaf2b525505008aa24f2f4e06abae3f770a9677387879" + } + ] + }, + { + "bom-ref": "d2afa18711057d1d", + "type": "file", + "name": "/usr/share/zoneinfo/Antarctica/Troll", + "hashes": [ + { + "alg": "SHA-1", + "content": "390f051d8f9efc940336fb27a150dc06f73f7a05" + }, + { + "alg": "SHA-256", + "content": "1d8bdfe767292729981993a64fd8a2f745b24058c8bcbcf21bf3b0b6d5075c2d" + } + ] + }, + { + "bom-ref": "da4f2e84d7d4c75d", + "type": "file", + "name": "/usr/share/zoneinfo/Antarctica/Vostok", + "hashes": [ + { + "alg": "SHA-1", + "content": "50d803475d5d8c5ba151e9a7b4179fdcc1d8721c" + }, + { + "alg": "SHA-256", + "content": "903d2010d8a06be20cd57000e89d92e6f8307dca3810294215a58cd7c7c863e2" + } + ] + }, + { + "bom-ref": "1e4449414f672cd4", + "type": "file", + "name": "/usr/share/zoneinfo/Arctic/Longyearbyen", + "hashes": [ + { + "alg": "SHA-1", + "content": "a69be8a3e576dce7b744191865b30344af571257" + }, + { + "alg": "SHA-256", + "content": "0fa4e635da2b178fa3ea13ff3829c702844cf8bd69e16bca8e1d34dbd9249d01" + } + ] + }, + { + "bom-ref": "176b0b4c1d9b934e", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Aden", + "hashes": [ + { + "alg": "SHA-1", + "content": "dd378bd1f0c89ad3893652f696720212d24552b5" + }, + { + "alg": "SHA-256", + "content": "3102c1755d9a64b2e2b363381bbf52d6a01eb866a4d2cdfd0cf7e0832517094d" + } + ] + }, + { + "bom-ref": "841c197c81804e27", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Almaty", + "hashes": [ + { + "alg": "SHA-1", + "content": "a8f39dc95d87e5a5a7cc1584a7fab4e414d69388" + }, + { + "alg": "SHA-256", + "content": "4401628c6d2a36430efdddec3d9aeb9ff091e85daa21d0783298cddfe70c38c4" + } + ] + }, + { + "bom-ref": "9107edb48dae9835", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Amman", + "hashes": [ + { + "alg": "SHA-1", + "content": "435774413c6bde74aa08f7f620280bacfde8963d" + }, + { + "alg": "SHA-256", + "content": "ba18a1f823f77e478e7030eeb82ddd71a5f3fae6efdf56325b7776304912da08" + } + ] + }, + { + "bom-ref": "cddd2f788346ad12", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Anadyr", + "hashes": [ + { + "alg": "SHA-1", + "content": "139bc8f7d5fc83a8f864668f4d5ff9e1745e5c02" + }, + { + "alg": "SHA-256", + "content": "b4b88045d6624e21cb233c7c6226edee88afb63e0ca8d4e3df580d74a6c8a34c" + } + ] + }, + { + "bom-ref": "dc9ec30d3f167088", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Aqtau", + "hashes": [ + { + "alg": "SHA-1", + "content": "093aea4dc4618d428344a3b9956551a86b9e8d49" + }, + { + "alg": "SHA-256", + "content": "e2e79c79371b0c8601cc8da9dc613145b60721e9c574310ed4b7fa9ae9baa30b" + } + ] + }, + { + "bom-ref": "e1fdea4ebe0f33fc", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Aqtobe", + "hashes": [ + { + "alg": "SHA-1", + "content": "c26ad860f6c6f3f23aa2fd01fb7afb447beef6f2" + }, + { + "alg": "SHA-256", + "content": "ccd2ab0718fc8a637bb44576e4ca3ff267151cc4081dc697e69ebd426dbe4c1d" + } + ] + }, + { + "bom-ref": "2f5e6d18bd8f7b7e", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Ashgabat", + "hashes": [ + { + "alg": "SHA-1", + "content": "410dfa09a7a4e9e8d409539222348627d5ea930c" + }, + { + "alg": "SHA-256", + "content": "46284acf00fcee991886ee879f507f970bef4105a05d5e330736a02b329d3375" + } + ] + }, + { + "bom-ref": "bdd905d9286957ad", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Atyrau", + "hashes": [ + { + "alg": "SHA-1", + "content": "e2be1c6fba4a1512c5daed23036631e2142d118b" + }, + { + "alg": "SHA-256", + "content": "44812ada1ccc49ab42dd04e3c5ebe8f9f592682765b0e400972662c34ef6e931" + } + ] + }, + { + "bom-ref": "25d40640a1ee4f3e", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Baghdad", + "hashes": [ + { + "alg": "SHA-1", + "content": "ade20aa3de5a2efc729a922e86700ca2624b080d" + }, + { + "alg": "SHA-256", + "content": "942ba9632d564f1e29f60e75a7edf598d3b001515ecdd7d403b147e5bf703cb1" + } + ] + }, + { + "bom-ref": "26f46cb7a829089b", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Bahrain", + "hashes": [ + { + "alg": "SHA-1", + "content": "aeb68f2a5bd34e659e15c6634d8e7768ad06de65" + }, + { + "alg": "SHA-256", + "content": "f15d455b503a1d9b99a9bc15f27e0d87d9bf3cac8100709f6a3140e63bab56bd" + } + ] + }, + { + "bom-ref": "8e4059a175f5203e", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Baku", + "hashes": [ + { + "alg": "SHA-1", + "content": "eae4d1d23621f55e0ff05ec805d3a2c71288720e" + }, + { + "alg": "SHA-256", + "content": "8efffa197f6ee0747d60f4b37db8823d2f712f3df7350bfb40461641d9e7ca31" + } + ] + }, + { + "bom-ref": "157c8d859fd1f1de", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Bangkok", + "hashes": [ + { + "alg": "SHA-1", + "content": "30b3e86db6a7ec38ab2fdbf7cb58b62f73c1b652" + }, + { + "alg": "SHA-256", + "content": "cf866703a05b067069db05f87584d5c8a3489bcaad3e41bb012609904915c11b" + } + ] + }, + { + "bom-ref": "7b43b28684e112a3", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Barnaul", + "hashes": [ + { + "alg": "SHA-1", + "content": "d663be2180fb10bcda48ce333717664f97506e59" + }, + { + "alg": "SHA-256", + "content": "b556552d881c7729f21a4fb10c5e75e3885afc08e539461d40d6e4e359dcdd7f" + } + ] + }, + { + "bom-ref": "e73434b415edf3b7", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Beirut", + "hashes": [ + { + "alg": "SHA-1", + "content": "423142944fe014fb5ca12b7143860875ddfdb68f" + }, + { + "alg": "SHA-256", + "content": "abdfa509ed982455873c1035962d8642ae8b88ab75f7f1a9a4cf7eea5ce120ef" + } + ] + }, + { + "bom-ref": "3ffa251f4f3f0c5f", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Bishkek", + "hashes": [ + { + "alg": "SHA-1", + "content": "ebf278322a9737a3654e567bf1cad7ab59659362" + }, + { + "alg": "SHA-256", + "content": "8b449cf64ad7d46bae4196787f47012bfd0899aafd7cac77f8794dd7730b41ee" + } + ] + }, + { + "bom-ref": "a7c2e2758c0b5112", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Brunei", + "hashes": [ + { + "alg": "SHA-1", + "content": "39199590f60b22ddcdac2cd4048f426ae32d6e67" + }, + { + "alg": "SHA-256", + "content": "cd14c89f40eaece7f87f9679ebd6fdc23356c1ee31da031400c59806044ca4d1" + } + ] + }, + { + "bom-ref": "ff5c9963011047f0", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Calcutta", + "hashes": [ + { + "alg": "SHA-1", + "content": "1c7d91634cdf31b11ccec65b10af71e60d325be7" + }, + { + "alg": "SHA-256", + "content": "c71d7bc10d52c64f59eae8eac701c1b156bbec3fd9fe750970bed15e9b408fa5" + } + ] + }, + { + "bom-ref": "39bd109fd2abc788", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Chita", + "hashes": [ + { + "alg": "SHA-1", + "content": "25aacb126b3415f4df339ef5bf9d933c572df6cf" + }, + { + "alg": "SHA-256", + "content": "3bc537b6c3f62fbcd134ce4c8e58c351a5770b9216f2483f1e36d8ec9035b3bc" + } + ] + }, + { + "bom-ref": "962e8138f1c1739f", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Choibalsan", + "hashes": [ + { + "alg": "SHA-1", + "content": "aee2340ec0d73e8717d29536f919ae6c0b2eac1e" + }, + { + "alg": "SHA-256", + "content": "6ea08272fe78ef15058b5821d053e907ea937db9bb6ca8f71cb9997a44c64315" + } + ] + }, + { + "bom-ref": "b03e7ab1211edcd0", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Colombo", + "hashes": [ + { + "alg": "SHA-1", + "content": "74b1b37eaeb1116450c92f6fd04cd4685f918bb1" + }, + { + "alg": "SHA-256", + "content": "60108a5aec08236b5e9132d33de72649cdf01f854c86d01a8bd609d820b569ba" + } + ] + }, + { + "bom-ref": "4b7504460cd473b3", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Dacca", + "hashes": [ + { + "alg": "SHA-1", + "content": "8a796bb4e40123f1645d268e342ae3a7ce468534" + }, + { + "alg": "SHA-256", + "content": "b17631c1fb3033ffde15391d2fbec4e3d29b846fd2cfb089898c6b61308eb7b2" + } + ] + }, + { + "bom-ref": "1056eec1b49d8621", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Damascus", + "hashes": [ + { + "alg": "SHA-1", + "content": "85feb76073847aaa72d5c1a12d2cbe0a765e4d9e" + }, + { + "alg": "SHA-256", + "content": "0f42d5702ee52944dde43071569de645a5d668a385c4a2e0cd8aa43d39d2ea21" + } + ] + }, + { + "bom-ref": "a96dbc37ef4af309", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Dili", + "hashes": [ + { + "alg": "SHA-1", + "content": "dd7cd762be47f9afc60962fc182d3dd78d2cf69f" + }, + { + "alg": "SHA-256", + "content": "1f691df244d73613de758975adca5454ee9a91821b3f4382ea9b793ef04b1fc4" + } + ] + }, + { + "bom-ref": "2a798adf8fe5e316", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Dubai", + "hashes": [ + { + "alg": "SHA-1", + "content": "b9f4bb0d046d524840453d3f3c88aebc4d15acd4" + }, + { + "alg": "SHA-256", + "content": "52c19684fb4943773d86c43f78c7ad7b46ae7557a8ae9ed16508342bd319678a" + } + ] + }, + { + "bom-ref": "d6051204ee19af6e", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Dushanbe", + "hashes": [ + { + "alg": "SHA-1", + "content": "1d6731f0b2b13355eda808d119cba8e22a85b380" + }, + { + "alg": "SHA-256", + "content": "e832524a0d020a34015e423182bec05920c1e73b4149aab1bb31b7479a0a8f4c" + } + ] + }, + { + "bom-ref": "224b7e96ea562ff2", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Famagusta", + "hashes": [ + { + "alg": "SHA-1", + "content": "c5ffa8a169584e44cd2d9543f7d888105dfb04f7" + }, + { + "alg": "SHA-256", + "content": "4a3e66759c060ff5d9e338169781678161df5b9acd9aec6146f1d4d3cfd9030b" + } + ] + }, + { + "bom-ref": "bbe818a5951bd166", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Gaza", + "hashes": [ + { + "alg": "SHA-1", + "content": "0826f27f9cc4b1ebd31259e5170c9d5bd5329693" + }, + { + "alg": "SHA-256", + "content": "d4d929f809e81c47ed0f187b8dc4dbd5abb68d4045d59c9064217aee0101211e" + } + ] + }, + { + "bom-ref": "e4be75d45f3afa7a", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Hebron", + "hashes": [ + { + "alg": "SHA-1", + "content": "d90742ba86aa995fc03f3c9640df67b46cb11746" + }, + { + "alg": "SHA-256", + "content": "0a34a339fd7d63ee4566dff8875ee351e058c4728a6451092a7e15685984c1ef" + } + ] + }, + { + "bom-ref": "5d4307a13a7f8b1a", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Ho_Chi_Minh", + "hashes": [ + { + "alg": "SHA-1", + "content": "c0bca9911f6048e950b4e2e5ce3e0b29238e348f" + }, + { + "alg": "SHA-256", + "content": "013ffccf1a05a9e7b509b55f6b949569dd9e676bfcce10c886fffe59745440e5" + } + ] + }, + { + "bom-ref": "e6086366cf9d69cc", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Hovd", + "hashes": [ + { + "alg": "SHA-1", + "content": "846d4572a744589252523b9eb24e43c3e20d7380" + }, + { + "alg": "SHA-256", + "content": "cdc65f913f2b67cd1d23286944546c42fabb64720b78aaf32f88605a1943689a" + } + ] + }, + { + "bom-ref": "bdff4cc3e72858c0", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Irkutsk", + "hashes": [ + { + "alg": "SHA-1", + "content": "d841d87562525bcd57f200f17a1ba12314fdcd5a" + }, + { + "alg": "SHA-256", + "content": "77ed8a38a9f3e4a65a5ded6a846089c4c8a60eb245c476f7ee20d62780303eef" + } + ] + }, + { + "bom-ref": "8512651fc18398aa", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Jakarta", + "hashes": [ + { + "alg": "SHA-1", + "content": "ed751a8a8ced3291285589653abc637f1d7f24bf" + }, + { + "alg": "SHA-256", + "content": "7ea1c3e53a0d3f40cb6d7724f1bacb4fca1cf0ae96d9ab42f00f2d30dc0dee3a" + } + ] + }, + { + "bom-ref": "d68da15c5bc6d333", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Jayapura", + "hashes": [ + { + "alg": "SHA-1", + "content": "ca2a2780d397283ae77b84dd353b87f869ec3a02" + }, + { + "alg": "SHA-256", + "content": "c6fa24de2e83f471878b8e10ecd68828eb3aba1f49ce462dac7721661386eb0c" + } + ] + }, + { + "bom-ref": "c5884679f43dd23e", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Kabul", + "hashes": [ + { + "alg": "SHA-1", + "content": "ab40907a8517feacf530dee564f2c55bdf4a54a0" + }, + { + "alg": "SHA-256", + "content": "386b98b95b19bbec52c6d8f334e04a178f4f99f2b8a1cea33c142375668d7227" + } + ] + }, + { + "bom-ref": "923248b90623f47c", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Kamchatka", + "hashes": [ + { + "alg": "SHA-1", + "content": "d06af9faa2f5e420abcd659585a482d4ea12d31e" + }, + { + "alg": "SHA-256", + "content": "a45d587c7134607cb6feade6af9a04203c38b1ed481f7c7ce8eb10e7cd972cac" + } + ] + }, + { + "bom-ref": "59d4420c34fba0ce", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Karachi", + "hashes": [ + { + "alg": "SHA-1", + "content": "7b2381e3b2392323f0279c97a7706ca3b4b7cbac" + }, + { + "alg": "SHA-256", + "content": "fc4b2a68ad79efadecf52f333fa19cbaa5dd084cdc9bf96ab8b65a75c559a370" + } + ] + }, + { + "bom-ref": "5951d98036a65b6b", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Kashgar", + "hashes": [ + { + "alg": "SHA-1", + "content": "2ed8cbea508c323cfc4b11ae1d2186e9b11a10c8" + }, + { + "alg": "SHA-256", + "content": "9ae8868df5441ce4ac33aaed777f5ea6883eb95050b7d66d1e5ec5648c9e3fcc" + } + ] + }, + { + "bom-ref": "753f43285d5fd82e", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Kathmandu", + "hashes": [ + { + "alg": "SHA-1", + "content": "af5c092e0e7b9ea3dde01895761552b52a9eff00" + }, + { + "alg": "SHA-256", + "content": "5c557b86c5f0fdd19d105afbd38bd9daaad1cd075e9efdbe80547ddca85ae5ae" + } + ] + }, + { + "bom-ref": "ada7a52c775c35c1", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Khandyga", + "hashes": [ + { + "alg": "SHA-1", + "content": "06f6bb734790985eab879598c5101dbed0c67aa2" + }, + { + "alg": "SHA-256", + "content": "0169f2ad82832f6466984cad9cc673fb4098ee15e14b21521ce54f37a3fa6de3" + } + ] + }, + { + "bom-ref": "d8cb00937e880b0f", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Krasnoyarsk", + "hashes": [ + { + "alg": "SHA-1", + "content": "969dcde7f9c3a26d76ccc1b93588893e2b22d5ea" + }, + { + "alg": "SHA-256", + "content": "9122ec3df9d2f1e1767edfbc9cce49e7cff95491cb9de234c4588f985eb361c8" + } + ] + }, + { + "bom-ref": "893c2e013324128c", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Kuala_Lumpur", + "hashes": [ + { + "alg": "SHA-1", + "content": "2b4631070726d586f76b9377454e71a954e189fa" + }, + { + "alg": "SHA-256", + "content": "268d3cc29dae9854fea1b9109da2873602c48806994d3f3df0b9ca9863fcf59b" + } + ] + }, + { + "bom-ref": "ec6574ac1adbf37d", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Kuching", + "hashes": [ + { + "alg": "SHA-1", + "content": "f70d463d17a65a6cdd69c5bfca9601f8bf43e80c" + }, + { + "alg": "SHA-256", + "content": "0d0c68d2cddcf9431056b27b884c89951de456a484fdf96a2b10c78faf195bd8" + } + ] + }, + { + "bom-ref": "0bdff9af0ab40a11", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Macao", + "hashes": [ + { + "alg": "SHA-1", + "content": "532a4a7527d7785e52cefee887e7b048e1ffd5d9" + }, + { + "alg": "SHA-256", + "content": "bc423d28d8ba83fb0ba6984472c46dc83c014dd4876b59f6c8e2a4d8761fc585" + } + ] + }, + { + "bom-ref": "b11f35770888a629", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Magadan", + "hashes": [ + { + "alg": "SHA-1", + "content": "db1c111bafa860ff65e664a77816189f824b8031" + }, + { + "alg": "SHA-256", + "content": "a32f022b2aa9b370f41866047c28b6d96007bec7e7f05e4fd1a2f06111057e8b" + } + ] + }, + { + "bom-ref": "df15b0d372b17d2d", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Makassar", + "hashes": [ + { + "alg": "SHA-1", + "content": "ac0380229d33532006c8646649ef60972e3b65cf" + }, + { + "alg": "SHA-256", + "content": "24fac901695ef43b73fa8b3cd9e4bf893ceb757c5200b6628ae6a0fc70f01956" + } + ] + }, + { + "bom-ref": "084c106a88e660a9", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Manila", + "hashes": [ + { + "alg": "SHA-1", + "content": "6954bc96e87b2a3530eef2e4bc19d1e184abf562" + }, + { + "alg": "SHA-256", + "content": "01cb854c5033bef7324b3102f4362206e1a792d703a478fe090135943b180392" + } + ] + }, + { + "bom-ref": "464620d3f868cfff", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Nicosia", + "hashes": [ + { + "alg": "SHA-1", + "content": "9d7a0ebc8f361eb6f9633974dab221f99f4ae6e2" + }, + { + "alg": "SHA-256", + "content": "f2aa2a3f77a43b7558a7508a6cd6c50fdf7d991f9d64da5948fd9003923b1d72" + } + ] + }, + { + "bom-ref": "7c1b16a247cc1a3e", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Novokuznetsk", + "hashes": [ + { + "alg": "SHA-1", + "content": "c1dc59ef5900a474624f3c32828ad8512da6ed25" + }, + { + "alg": "SHA-256", + "content": "45df208266ce41dccdae6a47b6b78235a2e70c4eeb69b28e30125e03e7b9e0d3" + } + ] + }, + { + "bom-ref": "259d78b287d807e4", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Novosibirsk", + "hashes": [ + { + "alg": "SHA-1", + "content": "5200a3e45f27edbb8eed9aa73393bd466f3535af" + }, + { + "alg": "SHA-256", + "content": "53f555c078378d726db6d203c96bee7efc9b138c10cfd634f750b28cb6212ba5" + } + ] + }, + { + "bom-ref": "ba6703da29edb1c9", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Omsk", + "hashes": [ + { + "alg": "SHA-1", + "content": "e09b569a4006c139b44f9622120335653d5f487a" + }, + { + "alg": "SHA-256", + "content": "e32bfb976274657a892f5918b3f42e56c838dac040e06ac60c2d36318c80fd49" + } + ] + }, + { + "bom-ref": "7de837e686d86c9a", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Oral", + "hashes": [ + { + "alg": "SHA-1", + "content": "b204984139c932f387e13b0c8bf82a4b40891d6f" + }, + { + "alg": "SHA-256", + "content": "4ddd665f81f9ffe7fa3c7540f5065ddad72274da22913885eefe86951a857998" + } + ] + }, + { + "bom-ref": "6702f626976142c9", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Pontianak", + "hashes": [ + { + "alg": "SHA-1", + "content": "e49cfa5c2f0cfc52ca12d240c06d9ee2e4fd2ba5" + }, + { + "alg": "SHA-256", + "content": "2516ac2bc84fe6498a50bc8865ec00e3499b38f2f485403cd5028578a98d1fd8" + } + ] + }, + { + "bom-ref": "7f3e25ce84a0df12", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Pyongyang", + "hashes": [ + { + "alg": "SHA-1", + "content": "82b4f8b8e0ae8e4e1be46ba8082ba4e08c526d02" + }, + { + "alg": "SHA-256", + "content": "a108bfd54c6c22fbc67177c281c1058dfb1f00f40803ffc04fda5f41d4ba6505" + } + ] + }, + { + "bom-ref": "1e1bb79e4744d4ba", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Qostanay", + "hashes": [ + { + "alg": "SHA-1", + "content": "93aad277a6e3665bc5b532f67e3ac17763afb9de" + }, + { + "alg": "SHA-256", + "content": "b763af98dc579384866d60e3541d7f87c10b492310a4bdd3f927d28d091edeca" + } + ] + }, + { + "bom-ref": "57566a9b5fe197d1", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Qyzylorda", + "hashes": [ + { + "alg": "SHA-1", + "content": "f0f7be3b155e18d1e8c4fade0ccfb4e6dc255e20" + }, + { + "alg": "SHA-256", + "content": "e116692a053d3b100258a742dd5577df8ae1e262d0f23830606c87b80031d4a2" + } + ] + }, + { + "bom-ref": "3db84d13ebd2df07", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Rangoon", + "hashes": [ + { + "alg": "SHA-1", + "content": "247d6b94633bae9d97078e96267e69ef127c305a" + }, + { + "alg": "SHA-256", + "content": "1b4605825adbae3c7136f3f055d7cbac76faad62703516eaf94fc8d10e1df3ad" + } + ] + }, + { + "bom-ref": "8df961a8b187d4de", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Sakhalin", + "hashes": [ + { + "alg": "SHA-1", + "content": "00456e0df377d09389485512efc26c7ed8cf976f" + }, + { + "alg": "SHA-256", + "content": "d6af67dd853ea20ec92aa39fdd647b70ec329606e7565536030dbdd70f062148" + } + ] + }, + { + "bom-ref": "e70d343fcac9db89", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Samarkand", + "hashes": [ + { + "alg": "SHA-1", + "content": "e9999b0f3a616c0bd2fee0323464683205c33f2e" + }, + { + "alg": "SHA-256", + "content": "fd928b56ff2b6fdf1e28c198d8871e87979473109dfc395a51d8aaed0efb5924" + } + ] + }, + { + "bom-ref": "3f8e8dd535c7f6bc", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Srednekolymsk", + "hashes": [ + { + "alg": "SHA-1", + "content": "06e107b0f1fdc59b32b0916795a5a80115a3ff93" + }, + { + "alg": "SHA-256", + "content": "35c545e24d61a31f5fd4fa712d8b6cc09ecbdfddee10e5b859d6b29e57d98806" + } + ] + }, + { + "bom-ref": "108ebff903f9595b", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Tashkent", + "hashes": [ + { + "alg": "SHA-1", + "content": "c7b429dbc1dfafdb6baeb2c5aa4fbbce2c32c886" + }, + { + "alg": "SHA-256", + "content": "8674eb501cd25c540258e94006ce151f91f653849e800aa97986551b89ead688" + } + ] + }, + { + "bom-ref": "952f27c87b4cc5b8", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Tbilisi", + "hashes": [ + { + "alg": "SHA-1", + "content": "f3b1e7531ab8864b9d87e7163e53a4114ce14c00" + }, + { + "alg": "SHA-256", + "content": "bc88efdf57da66aaa71c15d8fbc36d87242adca776e103ddd5531aa45ca21177" + } + ] + }, + { + "bom-ref": "6d676d8ad7a1e307", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Thimbu", + "hashes": [ + { + "alg": "SHA-1", + "content": "9b3c82077ec322cea9d996df4b0127ed4130a137" + }, + { + "alg": "SHA-256", + "content": "e54c4d565a4be5f34209ba351c7aadd1071dccf8a0380d69e06e936a425203a2" + } + ] + }, + { + "bom-ref": "5b7b39cf7e4a68f4", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Tomsk", + "hashes": [ + { + "alg": "SHA-1", + "content": "e5e681c82cb11b4125a8e0359a80314feb766f9a" + }, + { + "alg": "SHA-256", + "content": "1142db40b91678b4ab3c2935346f6f0bce6a84353392a1ab97dbeba0ee1582d5" + } + ] + }, + { + "bom-ref": "821f53806787ed0b", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Ulaanbaatar", + "hashes": [ + { + "alg": "SHA-1", + "content": "8f54e74dd4a2f8bad4fdb029b8be5929e0273b03" + }, + { + "alg": "SHA-256", + "content": "17a31d0ea8eaf0d1484b54e53d6803eaeaa832740d521a340e1d5c073de97e22" + } + ] + }, + { + "bom-ref": "d0bd592ae3319480", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Ust-Nera", + "hashes": [ + { + "alg": "SHA-1", + "content": "0625c1c29719a7781d4081fc941fdacafc509488" + }, + { + "alg": "SHA-256", + "content": "ab0edbe8871813e11548d34641521878aca12634a44683945d24ef85016bd0aa" + } + ] + }, + { + "bom-ref": "9b48aa930088cd28", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Vladivostok", + "hashes": [ + { + "alg": "SHA-1", + "content": "15aaadfee879261a6374129d79484f3c8e358b94" + }, + { + "alg": "SHA-256", + "content": "32eb6e1405aa048e6cba3396d4b09ad04ed05c239dbcb054f82e4dbbd2dbbd31" + } + ] + }, + { + "bom-ref": "b49086bca82a35d1", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Yakutsk", + "hashes": [ + { + "alg": "SHA-1", + "content": "116dfcc0c33b37de379c16208d66d786eeac3567" + }, + { + "alg": "SHA-256", + "content": "545036a8cb48068d5f6f98bd28eb90bb6c25d3136b58f01486b875780519208e" + } + ] + }, + { + "bom-ref": "8015d591b3e96212", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Yekaterinburg", + "hashes": [ + { + "alg": "SHA-1", + "content": "2407b7fc5239e02a80cb9e761d4ac7af93b9739f" + }, + { + "alg": "SHA-256", + "content": "8819eff29a90ad2c0d3588f56d6e974d99419e80104bfc9313274f0a33e0b590" + } + ] + }, + { + "bom-ref": "d5ded6ee265c2d44", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Yerevan", + "hashes": [ + { + "alg": "SHA-1", + "content": "5a88ec2e2eddef2b2098c9d3c62d6ac121ca68d9" + }, + { + "alg": "SHA-256", + "content": "2e456011e9e0d8c1958c17bf34116fe89a3239028010e7db61ae46012c8f2304" + } + ] + }, + { + "bom-ref": "64227921b38acf09", + "type": "file", + "name": "/usr/share/zoneinfo/Atlantic/Azores", + "hashes": [ + { + "alg": "SHA-1", + "content": "5eca289c7d93b0d37c40086b38710d146113f6da" + }, + { + "alg": "SHA-256", + "content": "d3dfcd9c77d1e2a49e15c87aff9e43f0d5283a532b4bc6c7afa22fa14fa0c377" + } + ] + }, + { + "bom-ref": "43a1a766b1b03130", + "type": "file", + "name": "/usr/share/zoneinfo/Atlantic/Bermuda", + "hashes": [ + { + "alg": "SHA-1", + "content": "584f1071a47fb83c2f6f8f4af3c68faf4febbe72" + }, + { + "alg": "SHA-256", + "content": "8800de9ba0f7cf61fe38433d9a29591ec0d8a1192f1f3d5dfcf6f6ec912002b7" + } + ] + }, + { + "bom-ref": "d6b5fa825fe980cb", + "type": "file", + "name": "/usr/share/zoneinfo/Atlantic/Canary", + "hashes": [ + { + "alg": "SHA-1", + "content": "1acb0c3f885aefcc8f2a375b70cc917f8ebb4638" + }, + { + "alg": "SHA-256", + "content": "4617cb1aa75514003f181908e9ccfc1d3d062ef22bb0196867dbe530ec2e1416" + } + ] + }, + { + "bom-ref": "bd23fd3e15073eb3", + "type": "file", + "name": "/usr/share/zoneinfo/Atlantic/Cape_Verde", + "hashes": [ + { + "alg": "SHA-1", + "content": "d55ac68b63124c12de79af743813c20afb59d63b" + }, + { + "alg": "SHA-256", + "content": "f7a81342ed5884f34fdc07e6ebf8f0f322e41ba3e2d399d7f516b4d28771350b" + } + ] + }, + { + "bom-ref": "df78f42601eeda7b", + "type": "file", + "name": "/usr/share/zoneinfo/Atlantic/Faeroe", + "hashes": [ + { + "alg": "SHA-1", + "content": "13bbd1c04101cdb566ea5598921896abc7a4fdb1" + }, + { + "alg": "SHA-256", + "content": "6b1a5769f8ffa2ec29bf298dffd7fb324e625e36fc527c14bb66b6520e6f76a7" + } + ] + }, + { + "bom-ref": "df743cbe2c10a2a3", + "type": "file", + "name": "/usr/share/zoneinfo/Atlantic/Madeira", + "hashes": [ + { + "alg": "SHA-1", + "content": "327b25bebe9a1dfc0d577e1af5712d3169e03db5" + }, + { + "alg": "SHA-256", + "content": "24c616780589fb6a7e22913e3402522517ba4a7460738ccd38f1a3a0e4a21f40" + } + ] + }, + { + "bom-ref": "adce0be8b06669b7", + "type": "file", + "name": "/usr/share/zoneinfo/Atlantic/South_Georgia", + "hashes": [ + { + "alg": "SHA-1", + "content": "7c62036fdc9aac7f1fb155bd83e5a528a87a08dc" + }, + { + "alg": "SHA-256", + "content": "f745dca3964c6ae3e8b88166e0db6df487ee8f6e6ad7fb1ac3ad4e6ab2e0a361" + } + ] + }, + { + "bom-ref": "f65e1fbc2956bdf7", + "type": "file", + "name": "/usr/share/zoneinfo/Atlantic/Stanley", + "hashes": [ + { + "alg": "SHA-1", + "content": "9681c85f05247c8f0e74612317dd578dde7e951d" + }, + { + "alg": "SHA-256", + "content": "57ee27fac7d72ba2c34725702e5876aa27462a09ac4b841b40122afe103a4c41" + } + ] + }, + { + "bom-ref": "ec9bb7ea669b58bb", + "type": "file", + "name": "/usr/share/zoneinfo/Australia/ACT", + "hashes": [ + { + "alg": "SHA-1", + "content": "f9a74134cba1ebe57c4ba568f15737d0f2f8e704" + }, + { + "alg": "SHA-256", + "content": "5089cd93b5102c5b1c8ae3dd9e42cd2255ae1e6a469484cadaa1f3692a7e6e79" + } + ] + }, + { + "bom-ref": "e534309133b8b657", + "type": "file", + "name": "/usr/share/zoneinfo/Australia/Adelaide", + "hashes": [ + { + "alg": "SHA-1", + "content": "910897528f237dbd7cda52c2289570d313c9cbaf" + }, + { + "alg": "SHA-256", + "content": "ad5289c19982758edd995a5f5ad5f8bf5611024d306f1b8188b8356932f633fd" + } + ] + }, + { + "bom-ref": "7f45306926eb0356", + "type": "file", + "name": "/usr/share/zoneinfo/Australia/Brisbane", + "hashes": [ + { + "alg": "SHA-1", + "content": "3655a0c8315063d62b85c3b8a977f1496e2c0a98" + }, + { + "alg": "SHA-256", + "content": "1b39bd80c21383d71e93a73d17579467fd15131e5ee0277f34c30413809f11af" + } + ] + }, + { + "bom-ref": "9d3431c3da82bd50", + "type": "file", + "name": "/usr/share/zoneinfo/Australia/Broken_Hill", + "hashes": [ + { + "alg": "SHA-1", + "content": "68a64d5a46dd309152466f559733cfd2f4f6ce74" + }, + { + "alg": "SHA-256", + "content": "794920e79f48b868598908f4ef72684108c4db6ac510c970a87c812a70b5e2fd" + } + ] + }, + { + "bom-ref": "a603154c357e74b2", + "type": "file", + "name": "/usr/share/zoneinfo/Australia/Currie", + "hashes": [ + { + "alg": "SHA-1", + "content": "b2d6c5837af83c814acd1283a7580482cc101863" + }, + { + "alg": "SHA-256", + "content": "1429d2cd2a0e2db83e016c66a011d4c429e9b2860356ed29375c5855bf728d2b" + } + ] + }, + { + "bom-ref": "5c30838fac5d4dd9", + "type": "file", + "name": "/usr/share/zoneinfo/Australia/Darwin", + "hashes": [ + { + "alg": "SHA-1", + "content": "b84c0b2834e49dc895e82c2bee9ab13b16859653" + }, + { + "alg": "SHA-256", + "content": "fe250e8d59a4f96dd9f7fa78206839ebe77a89f55bcc8fe67c3ce6d2c8a9dfe2" + } + ] + }, + { + "bom-ref": "0c1d4d187e267e27", + "type": "file", + "name": "/usr/share/zoneinfo/Australia/Eucla", + "hashes": [ + { + "alg": "SHA-1", + "content": "5a4cfa85b9e8b442284a00679aedc9d5fa87b042" + }, + { + "alg": "SHA-256", + "content": "ad57bce0ab2a3a7c7477783fbf6ff4b25784889a08eba3bdf8104d63081a652d" + } + ] + }, + { + "bom-ref": "cb1cbfc3e7abbfdb", + "type": "file", + "name": "/usr/share/zoneinfo/Australia/LHI", + "hashes": [ + { + "alg": "SHA-1", + "content": "dcc2512abf4a8ecb10a10775e2ae8a5dd8eae8e8" + }, + { + "alg": "SHA-256", + "content": "09626975ee86238fd5f85bc275eafad83bc696709d78144cc0bd4ced75acaf2d" + } + ] + }, + { + "bom-ref": "77a97baa5667b007", + "type": "file", + "name": "/usr/share/zoneinfo/Australia/Lindeman", + "hashes": [ + { + "alg": "SHA-1", + "content": "a49c32c7a0951d0cbd57c97ebf2246f653b4f48b" + }, + { + "alg": "SHA-256", + "content": "6d064110c6d10fb62ce0bfff5f14b40a80dfbec2b656406158392555146ad378" + } + ] + }, + { + "bom-ref": "778a01729746a49f", + "type": "file", + "name": "/usr/share/zoneinfo/Australia/Melbourne", + "hashes": [ + { + "alg": "SHA-1", + "content": "717e55a8e8978f525b3dcb14f6194e87902afec1" + }, + { + "alg": "SHA-256", + "content": "e2a531c30cac43b4090464d519ef17bebe99cfd9cf6adb5ba8bc76b7157b5176" + } + ] + }, + { + "bom-ref": "193e42defa3d2570", + "type": "file", + "name": "/usr/share/zoneinfo/Australia/Perth", + "hashes": [ + { + "alg": "SHA-1", + "content": "058331354b135202d43ae5dae2746455b0f0efb0" + }, + { + "alg": "SHA-256", + "content": "7bf635f2b826c7f98b52cef52f779e3b93335f5808b8f6deee8ff0a3fcd35078" + } + ] + }, + { + "bom-ref": "d27996c3eca10fbe", + "type": "file", + "name": "/usr/share/zoneinfo/CET", + "hashes": [ + { + "alg": "SHA-1", + "content": "02ac393901944e270a2e47c39e34dd6a85a86cc1" + }, + { + "alg": "SHA-256", + "content": "3c0029045f6f80bc5a84f1bb8ed36230454759c54578eb9a8c195d14f442213c" + } + ] + }, + { + "bom-ref": "c52f0842f08ae7a1", + "type": "file", + "name": "/usr/share/zoneinfo/CST6CDT", + "hashes": [ + { + "alg": "SHA-1", + "content": "78c416c796c41bc6e6171801fe0857895510ef41" + }, + { + "alg": "SHA-256", + "content": "44e8b569e60027647f9801a33d0b43be0106a6d3f6cd059677e0ed65c9b8b831" + } + ] + }, + { + "bom-ref": "eb8d1f507e0ed293", + "type": "file", + "name": "/usr/share/zoneinfo/Chile/EasterIsland", + "hashes": [ + { + "alg": "SHA-1", + "content": "af473be91814f80a320fc1fc675b42e5edfffd02" + }, + { + "alg": "SHA-256", + "content": "d344955a3a8dea47b50a72d2af7fde01a6a27365bef0fefb2c11429a4f5dfca1" + } + ] + }, + { + "bom-ref": "1f80e0801d8107c8", + "type": "file", + "name": "/usr/share/zoneinfo/Cuba", + "hashes": [ + { + "alg": "SHA-1", + "content": "8535bea419dc64beaa2aa452e0ee6d304869693d" + }, + { + "alg": "SHA-256", + "content": "7871f875a8819f415c292519db1590556a0dc1a6ce691bf4f7af55e6716fb894" + } + ] + }, + { + "bom-ref": "40402bbd25f69f6b", + "type": "file", + "name": "/usr/share/zoneinfo/EET", + "hashes": [ + { + "alg": "SHA-1", + "content": "78c398114cc733ec0912a80574fa67c7c4ccf7c0" + }, + { + "alg": "SHA-256", + "content": "0bf6d2669ab45c13a1c9be47c351972feb671770b90a61d9d313fc60b721b2b4" + } + ] + }, + { + "bom-ref": "17bfbbe873e2f689", + "type": "file", + "name": "/usr/share/zoneinfo/EST", + "hashes": [ + { + "alg": "SHA-1", + "content": "d90139b75126d98f5c15b249e6192a38424944c3" + }, + { + "alg": "SHA-256", + "content": "c9e75f112a498ff00344551c3c5c4a62bd15d5c218ee951f4363ab218c5d88eb" + } + ] + }, + { + "bom-ref": "eecb52e045a70a07", + "type": "file", + "name": "/usr/share/zoneinfo/EST5EDT", + "hashes": [ + { + "alg": "SHA-1", + "content": "c8e4c1c29f53514483944f1114529b696635be0e" + }, + { + "alg": "SHA-256", + "content": "79ce27e03a2752091e8a49cc7e7ccc9ac202d6c52dd5d224571fe82262fbeec8" + } + ] + }, + { + "bom-ref": "b1ba23b79617a73d", + "type": "file", + "name": "/usr/share/zoneinfo/Egypt", + "hashes": [ + { + "alg": "SHA-1", + "content": "bc2e0cd8e76aa4788536cb273388ced307b118b3" + }, + { + "alg": "SHA-256", + "content": "279bbe1fa62da67387c63593b60bb655252ef5c8f189cf43469087740af2b4fc" + } + ] + }, + { + "bom-ref": "9bb02ab995b6de5e", + "type": "file", + "name": "/usr/share/zoneinfo/Eire", + "hashes": [ + { + "alg": "SHA-1", + "content": "4bc6cc19e0d28ab61e5092859b1ef4131bcd2d52" + }, + { + "alg": "SHA-256", + "content": "44bdc5d63e5b1663867491cc0d30b81820fc8694ad0fd5ef500ba8ac6b7fba5f" + } + ] + }, + { + "bom-ref": "49fed6b7b97630d4", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT+1", + "hashes": [ + { + "alg": "SHA-1", + "content": "ff6caab6b80254a6f9fae7b0623873cf53374247" + }, + { + "alg": "SHA-256", + "content": "35d004edb2a0b1137ae1ea3659ef8e95a753330f0713fc94929d0f79d8021b07" + } + ] + }, + { + "bom-ref": "38eecd451ec6fd54", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT+10", + "hashes": [ + { + "alg": "SHA-1", + "content": "0f657867c23d4a51ee9d4cede010655f2a3320dc" + }, + { + "alg": "SHA-256", + "content": "4762603f3f51c0d5063ea549f9a578b7ebf26e47fd7109a6e34495ac3e09b2ed" + } + ] + }, + { + "bom-ref": "2697a77d33a9c44d", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT+11", + "hashes": [ + { + "alg": "SHA-1", + "content": "88c627e90a17c33b9fd1bdee7326653db7b7bd06" + }, + { + "alg": "SHA-256", + "content": "8a23521d6e93326291dbdacf2857f8a78970bef3dd93a53557da4cc2e79c36ba" + } + ] + }, + { + "bom-ref": "3f17a613bb1cda68", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT+12", + "hashes": [ + { + "alg": "SHA-1", + "content": "14413540aa4fdfbbde51aa2b58af9ee086f18448" + }, + { + "alg": "SHA-256", + "content": "ec7046f7e41252f839950ce04e3f20e41ba228e678aae2a45b5b050ba990e626" + } + ] + }, + { + "bom-ref": "3fdc4a2af3bd7d9b", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT+2", + "hashes": [ + { + "alg": "SHA-1", + "content": "f4a593c22d5200a472782ba1795ee5cddcd7e5bd" + }, + { + "alg": "SHA-256", + "content": "21319b8c2634a8349e84c3bef422998f6dd4f79bad91f79fa38145c1f6b694dd" + } + ] + }, + { + "bom-ref": "2a6200d6fc5dba08", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT+3", + "hashes": [ + { + "alg": "SHA-1", + "content": "91c0b6105495ccf38ec36ddcdbddbd4c51f42bde" + }, + { + "alg": "SHA-256", + "content": "e7861defa0a8bc5e0ee58d8a7a993ac22950e3fed608c9532c680b74ef6cc67f" + } + ] + }, + { + "bom-ref": "82765e6ae189d6fe", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT+4", + "hashes": [ + { + "alg": "SHA-1", + "content": "1342063a3314f801239931063fd38527f4ba752a" + }, + { + "alg": "SHA-256", + "content": "0f0ab77c5beca68231484090c38ecc1ce211b135511d5431dc1994f8a2580c89" + } + ] + }, + { + "bom-ref": "a93ea18a3c1bdd7d", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT+5", + "hashes": [ + { + "alg": "SHA-1", + "content": "6350d13d9df8746de3859aa9f7ababe515d73029" + }, + { + "alg": "SHA-256", + "content": "be7cef32cf0094520b344fc461bc28747e617d6043b8be0b0871e87225ee8568" + } + ] + }, + { + "bom-ref": "a1e1b8a6c7c15904", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT+6", + "hashes": [ + { + "alg": "SHA-1", + "content": "118df72ae51c29a80d0d07c508c66697df06a23c" + }, + { + "alg": "SHA-256", + "content": "d285eec873a91b2660ff29816304693056ee61ac1e9bd3485e26c4bcc067e041" + } + ] + }, + { + "bom-ref": "9edd80d89dd59a0e", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT+7", + "hashes": [ + { + "alg": "SHA-1", + "content": "e12192613742e97dbe07492c4d67462bca7093c4" + }, + { + "alg": "SHA-256", + "content": "631be5659ae83739e1056e088289b642caf4d07be5887f74c6cc954e2b0e9e5c" + } + ] + }, + { + "bom-ref": "3960e3f162dce78b", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT+8", + "hashes": [ + { + "alg": "SHA-1", + "content": "5595167f0801b6e827a3d66fbaa7427e341c2f51" + }, + { + "alg": "SHA-256", + "content": "f0ede5d811e0d8b283b18b80aebe6ce617267664ec313fc5bf01e2880a8c4229" + } + ] + }, + { + "bom-ref": "5c84955cf5edcd2c", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT+9", + "hashes": [ + { + "alg": "SHA-1", + "content": "4203286566c0f26919ecfad16a808bc1fbee1c8e" + }, + { + "alg": "SHA-256", + "content": "6aab552f947986b00b2d43ff28a3257ab7b88967322b9ce067e45c5ea96cc014" + } + ] + }, + { + "bom-ref": "dca386e182c8a9ea", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT-1", + "hashes": [ + { + "alg": "SHA-1", + "content": "35ba0f95113aec023762c431629c0c1de812abfb" + }, + { + "alg": "SHA-256", + "content": "d5f7f0682e71000de343fce27f2e8cff9e37e50cb064bf0f61245dc7ff6806ed" + } + ] + }, + { + "bom-ref": "7262ab5c2ec06695", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT-10", + "hashes": [ + { + "alg": "SHA-1", + "content": "58d3f666db188e7e659d09e92c6e1216d14d80ba" + }, + { + "alg": "SHA-256", + "content": "2fdcfd00c1be46329891da92b46f49258b35c09eb9e1103e3789a3d58338eb78" + } + ] + }, + { + "bom-ref": "bd325ed314e9bfa2", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT-11", + "hashes": [ + { + "alg": "SHA-1", + "content": "7b13e982a8abe452b2ce6b22e1a931492e13cb43" + }, + { + "alg": "SHA-256", + "content": "4439c8a7d5a8c87c47b7a81bd2e9534c8c676f610d4038fdf3b3951089a5db91" + } + ] + }, + { + "bom-ref": "cf51e1936a747811", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT-12", + "hashes": [ + { + "alg": "SHA-1", + "content": "892df33e9cf33799bf642195ca2f4a06c037d0b0" + }, + { + "alg": "SHA-256", + "content": "5f0c2c21cec4020ec3116c038ca9ff5e5a9e863ddb7fc0beba7136c321b05851" + } + ] + }, + { + "bom-ref": "e1f71cb482925dde", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT-13", + "hashes": [ + { + "alg": "SHA-1", + "content": "b679b71f4900b409327dd022162f719f1c6b1665" + }, + { + "alg": "SHA-256", + "content": "0c4e6bff6354406378f2bdb165fae025fa100fe8c7d76c6cfaabb716f6f096ca" + } + ] + }, + { + "bom-ref": "fecd4669bb849cfb", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT-14", + "hashes": [ + { + "alg": "SHA-1", + "content": "04874a155c42a87a6d0d105487f0a95246f7b8ef" + }, + { + "alg": "SHA-256", + "content": "4685f92efa5bbdb625dd8d6454a340af8ac0510308b6b66847ad5f7bc3c4fc84" + } + ] + }, + { + "bom-ref": "577fed2dc33b767b", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT-2", + "hashes": [ + { + "alg": "SHA-1", + "content": "ced9f38a88567ccc24f6afceaa23a99fc437cfa8" + }, + { + "alg": "SHA-256", + "content": "530335b26ac0306edc8f0683a830bc1e7f5111ad228df4b74c197d2cb9c31387" + } + ] + }, + { + "bom-ref": "a0733769508c8ed5", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT-3", + "hashes": [ + { + "alg": "SHA-1", + "content": "5601017498006e3a9a539ceb66ff028f156f4469" + }, + { + "alg": "SHA-256", + "content": "a59e1e4a707222ac22fefb3a6dc495cef266872a94d51e5ca862ffde74ef0c4c" + } + ] + }, + { + "bom-ref": "f6979a083902f9db", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT-4", + "hashes": [ + { + "alg": "SHA-1", + "content": "8797e3fd301f6a17c926ec2f7983a5b245c7f0b3" + }, + { + "alg": "SHA-256", + "content": "7d6471f8835da5e7906f8220dd9674b664573fee650f0a28b5ab51aa54a4524e" + } + ] + }, + { + "bom-ref": "ee210b8616d39cbe", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT-5", + "hashes": [ + { + "alg": "SHA-1", + "content": "bc651984d42e07846a5d027c4d539d48b6ba92ff" + }, + { + "alg": "SHA-256", + "content": "33a439130048c8b6400ad082b2e4011c7b85fafe9171e13110aa86f266bedfa4" + } + ] + }, + { + "bom-ref": "cba6f9dd51d37154", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT-6", + "hashes": [ + { + "alg": "SHA-1", + "content": "054e38de39b951b82ef404bc3ec3a6714903f803" + }, + { + "alg": "SHA-256", + "content": "f2ae16bd9a3a9a75788ca13a281bcc39567c93aaf5ad5402fcbfebac473b6cf7" + } + ] + }, + { + "bom-ref": "b84ce12f087293ff", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT-7", + "hashes": [ + { + "alg": "SHA-1", + "content": "f3f769440f44515a643d813d83a92bb8f5b9db0c" + }, + { + "alg": "SHA-256", + "content": "b0e37d9bf496f375b7c024e81b6ae5943ccbace0ffbecb684d8bd1847c5cb93a" + } + ] + }, + { + "bom-ref": "9f708e3c1a1def59", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT-8", + "hashes": [ + { + "alg": "SHA-1", + "content": "00931bd6e94afaa960f1388e41233e3db5e3234a" + }, + { + "alg": "SHA-256", + "content": "5ec67811fbce13ee23123eee60791be8cb5f9c84451ae0d8297738af9b7f0cca" + } + ] + }, + { + "bom-ref": "b040cb8c2e1c37c6", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT-9", + "hashes": [ + { + "alg": "SHA-1", + "content": "2da37c3d09d24399bf2092ec69915043d376e145" + }, + { + "alg": "SHA-256", + "content": "16ed57cd7c3577fdc22d57683841e922b208a535e6125e686be4f8702a75f485" + } + ] + }, + { + "bom-ref": "ba498bc3c3f9dd0f", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Amsterdam", + "hashes": [ + { + "alg": "SHA-1", + "content": "91eb366d96b507ecf104b8a06c33504948a6948b" + }, + { + "alg": "SHA-256", + "content": "8a813ac6b8d1b68a7960242cae5325a2269fd1c791b203f8d22f2dfa3b61ba87" + } + ] + }, + { + "bom-ref": "63253ec9af6749d9", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Andorra", + "hashes": [ + { + "alg": "SHA-1", + "content": "7cde74ca7b99326a70d9c02bfcc34a90ae365e17" + }, + { + "alg": "SHA-256", + "content": "add5505c473225e33a884a02105610a9b95003f429195624b953c18f771317af" + } + ] + }, + { + "bom-ref": "5e325a8a6045edb0", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Astrakhan", + "hashes": [ + { + "alg": "SHA-1", + "content": "ed0e0d5ffa5faeada90736decaaf26063e828846" + }, + { + "alg": "SHA-256", + "content": "a027561f493c02a04d699903a08e9e78ac76eb3a719c4749d9ae9480418baad8" + } + ] + }, + { + "bom-ref": "f9ee81a2f643350f", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Athens", + "hashes": [ + { + "alg": "SHA-1", + "content": "a1fefa96ad4a9d2b967e1ff90697c8a95e291f17" + }, + { + "alg": "SHA-256", + "content": "799090551202c0b8417f836facf75049573dd1c27b5e6adeb584fcc414051139" + } + ] + }, + { + "bom-ref": "9ea7a1bf7b9bbcdf", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Belgrade", + "hashes": [ + { + "alg": "SHA-1", + "content": "44797e1d8343743f9f77ee24527db98491c1609e" + }, + { + "alg": "SHA-256", + "content": "e957543623baaba84999b40188e7e0948471b75a8ff4f88abb267e773feb8e5c" + } + ] + }, + { + "bom-ref": "4038b0642712af89", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Berlin", + "hashes": [ + { + "alg": "SHA-1", + "content": "99ba42dd86467512b1d1699a6129bbd5ce7388c2" + }, + { + "alg": "SHA-256", + "content": "7eb93dcba603d528fdf536160ef6911c16f834afcf88ce23a382b97ff28319d4" + } + ] + }, + { + "bom-ref": "e1a9058bbf771438", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Bratislava", + "hashes": [ + { + "alg": "SHA-1", + "content": "0c1fecf11fdd8c8d20988f0bca6936bf95e00aaf" + }, + { + "alg": "SHA-256", + "content": "a50be470a22de9def3e4fec7bcd95d5d7e24e5b11edf448a82b04d19da3d3e52" + } + ] + }, + { + "bom-ref": "27005acb61c3774b", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Brussels", + "hashes": [ + { + "alg": "SHA-1", + "content": "5138859e805d84b20b63d1fe5490ff255ee82858" + }, + { + "alg": "SHA-256", + "content": "11497c2fd62834d7c1ab568fb47e5947a7f5a63378dc723d7f73ccab21da5342" + } + ] + }, + { + "bom-ref": "56b56be304570f21", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Bucharest", + "hashes": [ + { + "alg": "SHA-1", + "content": "8a63b772f37d2ae386b0455fd0e59a87e0218b59" + }, + { + "alg": "SHA-256", + "content": "3b3a0017333b2f466e59c8ac3dc0cf7aa4f0a4608040a3180f752b19d6a93526" + } + ] + }, + { + "bom-ref": "a5511a586f130b76", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Budapest", + "hashes": [ + { + "alg": "SHA-1", + "content": "59ea894eecb461e9f5fe18f47a2ff7faadfc4c3b" + }, + { + "alg": "SHA-256", + "content": "b98bde5a204ae4b583174d206bc77005e96a3121e217782b3255ddf3de9fd4f9" + } + ] + }, + { + "bom-ref": "7733637d10d6fe3a", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Busingen", + "hashes": [ + { + "alg": "SHA-1", + "content": "75bca683f46cb7b34728cbec259e91e4f4447bfd" + }, + { + "alg": "SHA-256", + "content": "bc45f8c6c8190477cdaae46f77059fab74fde92a02fc57b733f07cb9a55e98a3" + } + ] + }, + { + "bom-ref": "008cd73832ad28f0", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Chisinau", + "hashes": [ + { + "alg": "SHA-1", + "content": "5fa517df491b152daca27eba1861cbb4cad6df09" + }, + { + "alg": "SHA-256", + "content": "5749f01c78d0c2fd50d0dc2280c1957ce0419edbfc7c4073c67e6da78153d8c8" + } + ] + }, + { + "bom-ref": "06ef7443be64692a", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Copenhagen", + "hashes": [ + { + "alg": "SHA-1", + "content": "bdb13d9ab968612b6e88666b575dc1924d396889" + }, + { + "alg": "SHA-256", + "content": "d2d9a359ef02d2afe293f429c4fd60fc04fbf8d1d8343c9b224dcfc116c011a8" + } + ] + }, + { + "bom-ref": "6595427f00eefc05", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Gibraltar", + "hashes": [ + { + "alg": "SHA-1", + "content": "e14236c7b6944713a4a0edbcd0cf0dedae46a330" + }, + { + "alg": "SHA-256", + "content": "c79088f67ba5d3fa9ad989bd573bfdef0e86c89e310ea70bc3e01e14dca1075e" + } + ] + }, + { + "bom-ref": "c0152a1e31231acb", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Helsinki", + "hashes": [ + { + "alg": "SHA-1", + "content": "f70cdd43ef4f7c47a29bbd1e3ebc915d42a646c7" + }, + { + "alg": "SHA-256", + "content": "ed7d89fae1fb40a9582edd7e03ed02d7fe81ba456b9c1ed8d6ee5f0b931aad45" + } + ] + }, + { + "bom-ref": "3fa34c27e010573d", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Kaliningrad", + "hashes": [ + { + "alg": "SHA-1", + "content": "d9313a3aa4b7b5bd519d3305db9eed390c09ec30" + }, + { + "alg": "SHA-256", + "content": "78018b1f78b60635b744bc5d78ca209f87c184a634ffe11510b3dfe885eed165" + } + ] + }, + { + "bom-ref": "8ac170b57e401a1e", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Kiev", + "hashes": [ + { + "alg": "SHA-1", + "content": "9f18dcc63d109a4b83a267f418e72dfe05bfd863" + }, + { + "alg": "SHA-256", + "content": "242912df3212e0725ded4aab25fd869c52f13c3ce619764a883adcbbd937afc5" + } + ] + }, + { + "bom-ref": "70cc4aa720a15c91", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Kirov", + "hashes": [ + { + "alg": "SHA-1", + "content": "c89ee11141a7669a0b6b08d779f977c04e06b6be" + }, + { + "alg": "SHA-256", + "content": "a44267313cba43fb671622af5b17cda285def184f6121e8ec6007164643e3c25" + } + ] + }, + { + "bom-ref": "16b6ba7b142cdb11", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Luxembourg", + "hashes": [ + { + "alg": "SHA-1", + "content": "ace67ea11b9557266507dca203b6634083ddb3f9" + }, + { + "alg": "SHA-256", + "content": "90b76259274c78a40f34aa5b58545b5409edfbba2fd08efa1b300896cb4062ee" + } + ] + }, + { + "bom-ref": "046c3621c6fc6a1e", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Madrid", + "hashes": [ + { + "alg": "SHA-1", + "content": "7486d3d7c6637773fc920cbbb366443fe2697478" + }, + { + "alg": "SHA-256", + "content": "74103ad1e48f71f4cd9b6d1c03dcd97b58d87bb8affb02b1d6967b204036ebd6" + } + ] + }, + { + "bom-ref": "a8920a40995602c6", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Malta", + "hashes": [ + { + "alg": "SHA-1", + "content": "a4eb2da99676eb54f10e9327ed68e47ee64b7407" + }, + { + "alg": "SHA-256", + "content": "7c4134c8d37bd159e31fd739e8b1b8203a9f3023788bd9c83b8109e361eee5d5" + } + ] + }, + { + "bom-ref": "502eac06b504bbe0", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Minsk", + "hashes": [ + { + "alg": "SHA-1", + "content": "93ee118b2776a73060ecf25b5206f233d44090ef" + }, + { + "alg": "SHA-256", + "content": "c82aa831a68fec1c918d23393d795fef9dbf4d0948791bcba6ba09f45b3826c4" + } + ] + }, + { + "bom-ref": "d36fc50c7bac0368", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Monaco", + "hashes": [ + { + "alg": "SHA-1", + "content": "e5959bb542d4390caf820c415da58e2f379fbe9f" + }, + { + "alg": "SHA-256", + "content": "991fc96ee87786ba55cfb3e8f1310ed84b418937a0f2cb72f3cf510417ae8deb" + } + ] + }, + { + "bom-ref": "193ffa5c24867bfd", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Paris", + "hashes": [ + { + "alg": "SHA-1", + "content": "4bc5f5ceb14882eb94674559fed6f4a9428d8718" + }, + { + "alg": "SHA-256", + "content": "e9e280ef5a4603e11f70b37762129ae4daa10635fdd96cac2a9e0559f4e7cbaf" + } + ] + }, + { + "bom-ref": "01cdf18e256dac63", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Riga", + "hashes": [ + { + "alg": "SHA-1", + "content": "5f80655c66e2737dc8eee9d2c622e39246138b85" + }, + { + "alg": "SHA-256", + "content": "79d10debbaa2743458d0dec1fb71d3c576cea80d245f84819da82a25d93c1401" + } + ] + }, + { + "bom-ref": "a6562413fbd39ac2", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Rome", + "hashes": [ + { + "alg": "SHA-1", + "content": "892f0a0fa8e336e53bfe6e5473299f8ab237f096" + }, + { + "alg": "SHA-256", + "content": "e878580b27d866d9803e3b82eed5c0b851ef55174e2b76e13caa5e741421a138" + } + ] + }, + { + "bom-ref": "b82fb9a9eb8437cb", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Samara", + "hashes": [ + { + "alg": "SHA-1", + "content": "08b92c8f3c911110d72768698ff4edc347f477c8" + }, + { + "alg": "SHA-256", + "content": "52278e6f22bf900faeda4266078cfa7fed25cc1d5653bd345cf3090fde6e9114" + } + ] + }, + { + "bom-ref": "b939279056550f2f", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Saratov", + "hashes": [ + { + "alg": "SHA-1", + "content": "328f9955d364c1c3930b1a1d65bec6be6bf832ed" + }, + { + "alg": "SHA-256", + "content": "29ab2a05f63412656a143515fe57218a8e19b9c916dfd05de15a87afcc0d9849" + } + ] + }, + { + "bom-ref": "0f703b0b907fd680", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Simferopol", + "hashes": [ + { + "alg": "SHA-1", + "content": "869aba8df03ae6b33637bdf117aaff2848e20e40" + }, + { + "alg": "SHA-256", + "content": "b1ee6f714fd88fd61fef6df54f95abacb80dd3036c25e9a10708fec9b11c34cf" + } + ] + }, + { + "bom-ref": "ccdadab633c7e459", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Sofia", + "hashes": [ + { + "alg": "SHA-1", + "content": "8bf90f00a0a67a3d3b48161fc945740fe4019695" + }, + { + "alg": "SHA-256", + "content": "16813fb30f2ebb782a806ce0664014ddfbf921890d32ec3d1398bd182bf9245c" + } + ] + }, + { + "bom-ref": "347f995714c443e9", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Stockholm", + "hashes": [ + { + "alg": "SHA-1", + "content": "52f93313dc34ddf0953210ef441d7162320285cd" + }, + { + "alg": "SHA-256", + "content": "07b242f9e3d8150663bfaf417fe7d209927fc299fac487789b70841956c35335" + } + ] + }, + { + "bom-ref": "b5122073a9398785", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Tallinn", + "hashes": [ + { + "alg": "SHA-1", + "content": "79a3d50fd287819f372692515a438aaf027e2790" + }, + { + "alg": "SHA-256", + "content": "e3c4ba916c25500c709c56395c040abad62a834fafaf5163a89974b7f66b019a" + } + ] + }, + { + "bom-ref": "8a75f4d1d419256d", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Tirane", + "hashes": [ + { + "alg": "SHA-1", + "content": "2eb38a0e1edf118f9d251f41510803e786c62e46" + }, + { + "alg": "SHA-256", + "content": "62dbc606a32a5f50ceca86c6f96d088ea689bced60a1623c986f045cde9c730a" + } + ] + }, + { + "bom-ref": "d9c6b4367b3b9229", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Ulyanovsk", + "hashes": [ + { + "alg": "SHA-1", + "content": "e568d5c9bcc6223e63e7ac10f064f76c6f93a2e4" + }, + { + "alg": "SHA-256", + "content": "9cfe87e108465369f14dbf5f8eed9285028f6500c09d06cc3e787be94c55cb91" + } + ] + }, + { + "bom-ref": "72639fabc5225d89", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Uzhgorod", + "hashes": [ + { + "alg": "SHA-1", + "content": "4ce66f6b1b5f293d6791d6410952bc93b2fc730c" + }, + { + "alg": "SHA-256", + "content": "098575b4ec6599758c85bcad8dd21d89bca213a9f890c0ead6defd14878705f3" + } + ] + }, + { + "bom-ref": "c7f182a2acb9fbba", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Vienna", + "hashes": [ + { + "alg": "SHA-1", + "content": "0b331488dd93646f22f2f77e19e320311b071f3a" + }, + { + "alg": "SHA-256", + "content": "116fab88b849fbbba59b136477814d2e0fa7d7f735166554d6e72a787cd2ccf8" + } + ] + }, + { + "bom-ref": "75dbe05015c449c7", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Vilnius", + "hashes": [ + { + "alg": "SHA-1", + "content": "2381fea618f5d7029b2a29753232733021337581" + }, + { + "alg": "SHA-256", + "content": "75adc0a906b39e283f5e5020984a36f34b4f58ef1d3099efbc899ff07f035f7e" + } + ] + }, + { + "bom-ref": "f1140613fb1babd7", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Volgograd", + "hashes": [ + { + "alg": "SHA-1", + "content": "df7f439877b13d7198dfa8c48ff72b87a2f0ec73" + }, + { + "alg": "SHA-256", + "content": "e8dd322bdb997a5de1885744c8e03b3e6c0eec2689712ad7e3f2ef05e0be5880" + } + ] + }, + { + "bom-ref": "abdee5a4682c15a0", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Zaporozhye", + "hashes": [ + { + "alg": "SHA-1", + "content": "1579a787fb93e6350aea43bfd42f7a603bb23373" + }, + { + "alg": "SHA-256", + "content": "b6c5127b52518818e3b4211e89e5e1e9a479cca65f7763a0afb145d512c38e34" + } + ] + }, + { + "bom-ref": "835a0ec5459f486d", + "type": "file", + "name": "/usr/share/zoneinfo/Factory", + "hashes": [ + { + "alg": "SHA-1", + "content": "390d3d7898a36ad1e31a939339fd7160e464ca54" + }, + { + "alg": "SHA-256", + "content": "46c9e49942a62722b9bf1737fcb8130dd160938faa7c035862ef02637c37aa1d" + } + ] + }, + { + "bom-ref": "99c3559661f7af29", + "type": "file", + "name": "/usr/share/zoneinfo/GB", + "hashes": [ + { + "alg": "SHA-1", + "content": "ebbbd8852b59532ffdb5c32b1623afdfa8231780" + }, + { + "alg": "SHA-256", + "content": "b14c486019e3cb259cf8235a0d6a4bc3ff6cfa726a165f1ea2df403c8ae31b86" + } + ] + }, + { + "bom-ref": "ba618cbc8be9a768", + "type": "file", + "name": "/usr/share/zoneinfo/GMT", + "hashes": [ + { + "alg": "SHA-1", + "content": "0e94823baf3e5865c79f728bf51191bab399070c" + }, + { + "alg": "SHA-256", + "content": "d7b39879094135d13efd282937690b43f48bb53597ce3e78697f48dcceaeb3ec" + } + ] + }, + { + "bom-ref": "1c1a36a77afb6a24", + "type": "file", + "name": "/usr/share/zoneinfo/HST", + "hashes": [ + { + "alg": "SHA-1", + "content": "2892dc88fbd47a7a0e16d03cc87c6d595ba38fef" + }, + { + "alg": "SHA-256", + "content": "44048bf7df61bdcf45972c13426b039f0d34d80947d60a2603183b3b6be4027f" + } + ] + }, + { + "bom-ref": "829c7064188b3c5d", + "type": "file", + "name": "/usr/share/zoneinfo/Hongkong", + "hashes": [ + { + "alg": "SHA-1", + "content": "d326333ca3e2edca7f786918c7951a06f1c44aba" + }, + { + "alg": "SHA-256", + "content": "680a46ee9866bd0c8435fef70694663c1e8ca2ba1e50ff2979ad62f27295707a" + } + ] + }, + { + "bom-ref": "1fea6136b9ed0b2b", + "type": "file", + "name": "/usr/share/zoneinfo/Iceland", + "hashes": [ + { + "alg": "SHA-1", + "content": "3aa67a08d552bd8051258ce645372b22c558d7c6" + }, + { + "alg": "SHA-256", + "content": "9cdcea6aa1eed8276d3f6620e0c0ffae9cfcc3722c443ea6ba39147975eafaa3" + } + ] + }, + { + "bom-ref": "69ad588bc4d64b6e", + "type": "file", + "name": "/usr/share/zoneinfo/Indian/Chagos", + "hashes": [ + { + "alg": "SHA-1", + "content": "326a413bc818167376dd2fc9c1ac14a9dd416f11" + }, + { + "alg": "SHA-256", + "content": "f9d2fc010d11285d8430248e7a9ca16c5fe67949e768866f00b3be70aa0ea871" + } + ] + }, + { + "bom-ref": "775a8f3f1323fae8", + "type": "file", + "name": "/usr/share/zoneinfo/Indian/Christmas", + "hashes": [ + { + "alg": "SHA-1", + "content": "1e62a2bf7c15beeb78d1c062b226331db4446a65" + }, + { + "alg": "SHA-256", + "content": "6d094a3d9b022ed04fc53e4a665588bd73f4eeaee9c23667b46944bac5dbbe05" + } + ] + }, + { + "bom-ref": "ed832f9476921c56", + "type": "file", + "name": "/usr/share/zoneinfo/Indian/Cocos", + "hashes": [ + { + "alg": "SHA-1", + "content": "7761aa167cd699a73e0d0c70c7f1a00a699b95ad" + }, + { + "alg": "SHA-256", + "content": "3a57c446d6734a074659b854ed56cec53c40831a33c1052ce6ef4b5f0f6b0009" + } + ] + }, + { + "bom-ref": "225a94bd38ac0558", + "type": "file", + "name": "/usr/share/zoneinfo/Indian/Kerguelen", + "hashes": [ + { + "alg": "SHA-1", + "content": "dd9391ef00bf4781c1dae786c233c8a81825bc3a" + }, + { + "alg": "SHA-256", + "content": "4dcaa3dc0c2628097499d2cfd37ab2ad70011ee31be9f7e45391ea2faee63b07" + } + ] + }, + { + "bom-ref": "59293ca07bc5660d", + "type": "file", + "name": "/usr/share/zoneinfo/Indian/Mahe", + "hashes": [ + { + "alg": "SHA-1", + "content": "23a234646bfbf6ee27031bf32b15bbd43e0823d4" + }, + { + "alg": "SHA-256", + "content": "478e69e66f9c02bb7e2810469322695475a612353403ee54c812e56cf37d1075" + } + ] + }, + { + "bom-ref": "3d8a00f5bcfab4db", + "type": "file", + "name": "/usr/share/zoneinfo/Indian/Maldives", + "hashes": [ + { + "alg": "SHA-1", + "content": "f69ba692aa4c7d712bf51a09b8fe68b1cfb5be19" + }, + { + "alg": "SHA-256", + "content": "b5b933b3fc554914587c6af95702a4c0d93941418737a8895372ea514aa7d475" + } + ] + }, + { + "bom-ref": "235240a97668fb60", + "type": "file", + "name": "/usr/share/zoneinfo/Indian/Mauritius", + "hashes": [ + { + "alg": "SHA-1", + "content": "1e21cdd9ca44996775e8b46d232ef1e497bf7076" + }, + { + "alg": "SHA-256", + "content": "f257466ded0ce1a324c63e6ebc3a39354e6cde0504f1daa35136c6855278ef0f" + } + ] + }, + { + "bom-ref": "a837bd4574a80ed0", + "type": "file", + "name": "/usr/share/zoneinfo/Indian/Reunion", + "hashes": [ + { + "alg": "SHA-1", + "content": "97bff51604c3625fdc7dbfe384e1ec9f065333ba" + }, + { + "alg": "SHA-256", + "content": "c3d95eaceb2806a82b1f2c093f3d73ca0cfa0034ad0446aefbe8c4904f6a955e" + } + ] + }, + { + "bom-ref": "adb94b7138e2b056", + "type": "file", + "name": "/usr/share/zoneinfo/Iran", + "hashes": [ + { + "alg": "SHA-1", + "content": "469ae4fa0c85ca6402e54bf09bd00d746995baf8" + }, + { + "alg": "SHA-256", + "content": "29fc1861f6e088decab370c3ef2c090d0c3fbdea50b78c2d3158ddaf001b8088" + } + ] + }, + { + "bom-ref": "16fabc0918db1979", + "type": "file", + "name": "/usr/share/zoneinfo/Israel", + "hashes": [ + { + "alg": "SHA-1", + "content": "45b76c650154fbdd0ac740b7d909f4d603515004" + }, + { + "alg": "SHA-256", + "content": "7d24df9162d3bd40305941c5f3589f35befa85c03595b571c0037c7c05d2837c" + } + ] + }, + { + "bom-ref": "efcebe4a44a38cd2", + "type": "file", + "name": "/usr/share/zoneinfo/Jamaica", + "hashes": [ + { + "alg": "SHA-1", + "content": "1f325b0b117255cca531eb9c5df64d2591ca7578" + }, + { + "alg": "SHA-256", + "content": "addb98caf3459bb75d6e14ed76aa66e642bead2d067e7fe81814a4f02cf13503" + } + ] + }, + { + "bom-ref": "7a7efedc773e89f4", + "type": "file", + "name": "/usr/share/zoneinfo/Japan", + "hashes": [ + { + "alg": "SHA-1", + "content": "9f4e57c6ea9aed36aaffede660db9c6991b3ec02" + }, + { + "alg": "SHA-256", + "content": "046bb09bc08554ef8a54dc05685d0eab10e04c692f6320b6091b6a6f07214c83" + } + ] + }, + { + "bom-ref": "0823dd9e2908ce49", + "type": "file", + "name": "/usr/share/zoneinfo/Kwajalein", + "hashes": [ + { + "alg": "SHA-1", + "content": "a172c7e4992f1da096f844620bdd1efe8dfe8476" + }, + { + "alg": "SHA-256", + "content": "94c42dbf73fe0fde173fed33b5f15512b1ea614f40108ac0dacf6e15c23785e0" + } + ] + }, + { + "bom-ref": "ec4b8cc5a208c451", + "type": "file", + "name": "/usr/share/zoneinfo/Libya", + "hashes": [ + { + "alg": "SHA-1", + "content": "fd17573587b5564fa583933a2b75fdfbe89a97c7" + }, + { + "alg": "SHA-256", + "content": "8ff53f7072863fb56f1e71339392b6de7e50675efa4333b9e032b677c9c9a527" + } + ] + }, + { + "bom-ref": "fc723dcfb3d8ecad", + "type": "file", + "name": "/usr/share/zoneinfo/MET", + "hashes": [ + { + "alg": "SHA-1", + "content": "97a4ab6f36331422d7ea697ba846f1103ff9733e" + }, + { + "alg": "SHA-256", + "content": "1fff331a4414e98097d33bec1a9bbf2a155d991b57acd1bb4c11f8559fb4e514" + } + ] + }, + { + "bom-ref": "974a89057d6f244e", + "type": "file", + "name": "/usr/share/zoneinfo/MST", + "hashes": [ + { + "alg": "SHA-1", + "content": "f03bf6321d2b81a107f6ba56548078b5ea256f7c" + }, + { + "alg": "SHA-256", + "content": "f8fb610056087bb3ca8ecf5cdcb5305c1652b649fde512f606b9ee1b3556fb9e" + } + ] + }, + { + "bom-ref": "685379acb1564fda", + "type": "file", + "name": "/usr/share/zoneinfo/MST7MDT", + "hashes": [ + { + "alg": "SHA-1", + "content": "09c6d5bba53a1136dda4611046b06c80acea5c1b" + }, + { + "alg": "SHA-256", + "content": "85452d031526621178e9b24c91af69b7ecc30df47036669378956135c4e735d0" + } + ] + }, + { + "bom-ref": "b132717d927ce6a1", + "type": "file", + "name": "/usr/share/zoneinfo/NZ", + "hashes": [ + { + "alg": "SHA-1", + "content": "76a7b65f6566d6019f7c0ebbaa2bf6dc93823bb1" + }, + { + "alg": "SHA-256", + "content": "d7b5175387ac78e29f7b9021e411512756be283ed3d1819942ef5d45ecf338e4" + } + ] + }, + { + "bom-ref": "7ac2f2d030e75625", + "type": "file", + "name": "/usr/share/zoneinfo/NZ-CHAT", + "hashes": [ + { + "alg": "SHA-1", + "content": "487fe8bbe967648ce2fe400dc29f8d427667a805" + }, + { + "alg": "SHA-256", + "content": "58019f2faa29dc7db7081293230a728769054dd7c0d0fa9e96e8c4299e71314d" + } + ] + }, + { + "bom-ref": "a3ef9574b8b2f824", + "type": "file", + "name": "/usr/share/zoneinfo/Navajo", + "hashes": [ + { + "alg": "SHA-1", + "content": "a578e7e933eac5e8b0f676e50f11a807392b19ce" + }, + { + "alg": "SHA-256", + "content": "f4df3cc74c79d070a25a7927744d3a422a05d862a9a234a12105c5c964efb22d" + } + ] + }, + { + "bom-ref": "62c31e834bf0413b", + "type": "file", + "name": "/usr/share/zoneinfo/PRC", + "hashes": [ + { + "alg": "SHA-1", + "content": "59a6816c1006b00de53daf1c6142e7f759804a7f" + }, + { + "alg": "SHA-256", + "content": "395b1d4ba9ef45348272c98ecab314999ecaa510f7c5830342ed6eba42cfc25d" + } + ] + }, + { + "bom-ref": "6581ab248d0c659b", + "type": "file", + "name": "/usr/share/zoneinfo/PST8PDT", + "hashes": [ + { + "alg": "SHA-1", + "content": "1102d7c6b701efc0b09c32323ed45c1a960c8922" + }, + { + "alg": "SHA-256", + "content": "4d8e69bd43e8d71f0f58e115593814d68c1a6aa441255b17b3e9a92a9d6efc46" + } + ] + }, + { + "bom-ref": "1cb4c15e07437c53", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Apia", + "hashes": [ + { + "alg": "SHA-1", + "content": "b5aeb901fbf1e9f32c3c19167592d2a600603a61" + }, + { + "alg": "SHA-256", + "content": "fb24a31e538dd3ad0b22cf4788d80cb17d79134622510e2aa67c8712d09721cb" + } + ] + }, + { + "bom-ref": "f2afd53a1d71e366", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Bougainville", + "hashes": [ + { + "alg": "SHA-1", + "content": "d7b061e1766da69d77269b8954c939f2481509d5" + }, + { + "alg": "SHA-256", + "content": "c1b670d434aa6c04cbf73b647a07e5be7dcf2ff30663e10c24e0f0cfabe55b36" + } + ] + }, + { + "bom-ref": "194d400d896ba396", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Chuuk", + "hashes": [ + { + "alg": "SHA-1", + "content": "ab74ddc48bc0ccf1054218f2a38195d228651e48" + }, + { + "alg": "SHA-256", + "content": "cd2606a5760aa15600fa906aec3ddea4aba9b89b1e1143de20c7db52ace5bf32" + } + ] + }, + { + "bom-ref": "24cfd8868d228a47", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Efate", + "hashes": [ + { + "alg": "SHA-1", + "content": "b88a82019adb99d337aa9bdcd74793159e7b7c1c" + }, + { + "alg": "SHA-256", + "content": "c86380cf2219e957e6ee00ad07545d6584cf64ecd19b9fd7e6a36c3dc0ff8751" + } + ] + }, + { + "bom-ref": "f783736bc4155050", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Enderbury", + "hashes": [ + { + "alg": "SHA-1", + "content": "35ee62f80ffb1a5a1a83574d4b465c08e5e9dca6" + }, + { + "alg": "SHA-256", + "content": "5bf2e193795d4a8ec88bcdcf338097dfa71c254332ed3235e7d3270ea7051cf7" + } + ] + }, + { + "bom-ref": "9ba9164b1e2a145b", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Fakaofo", + "hashes": [ + { + "alg": "SHA-1", + "content": "60cfe4f5795a042eacc60004c974b953c3c6b760" + }, + { + "alg": "SHA-256", + "content": "ebcdbbb97d8fa7c9a20ecf62964d207f1ed81e73a3cbea77dc8be5144950af6d" + } + ] + }, + { + "bom-ref": "8d5e58c368ccc0b7", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Fiji", + "hashes": [ + { + "alg": "SHA-1", + "content": "76b35aa5cc0195f0dfe759d182ca70aacdf4b08b" + }, + { + "alg": "SHA-256", + "content": "123f7bceecb95a0378bc8d03815f11efe25ff4e49d313557de133c375373439f" + } + ] + }, + { + "bom-ref": "3e9921e230fc7bb1", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Funafuti", + "hashes": [ + { + "alg": "SHA-1", + "content": "009b3e9a1010b4cd37ddb66bff6cbdcb52cc2862" + }, + { + "alg": "SHA-256", + "content": "812f276576cae6bbd0135d40700fde4fce64f830f75fea928cabe77c51dce579" + } + ] + }, + { + "bom-ref": "a75eba753c360da9", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Galapagos", + "hashes": [ + { + "alg": "SHA-1", + "content": "b4f4f3a0643b920ea506258c239de87417005b01" + }, + { + "alg": "SHA-256", + "content": "3727ec66f71d8629656377c1f3a004c5cfade0f6c52b8da8b7c3ba2d36998603" + } + ] + }, + { + "bom-ref": "d36e35db657064b2", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Gambier", + "hashes": [ + { + "alg": "SHA-1", + "content": "1489e9d0c595de571e44480d46b44c0097e7fe43" + }, + { + "alg": "SHA-256", + "content": "abd4f7e51731d259e30ec4b33c2bcb899e147ee102eb278a1a9b2bb8001c64db" + } + ] + }, + { + "bom-ref": "ff2b6e74a307824e", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Guadalcanal", + "hashes": [ + { + "alg": "SHA-1", + "content": "68093961343adcd06db9d0237e8b50419ab64e61" + }, + { + "alg": "SHA-256", + "content": "a69b3ab3a6e6541933831609ab8bbc3ed5bf0ff678e519226b8df966b4973f20" + } + ] + }, + { + "bom-ref": "a3398fdfc64fa77d", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Guam", + "hashes": [ + { + "alg": "SHA-1", + "content": "f963e0e4c288e9aaeadf120eae3cb0ff7013a53c" + }, + { + "alg": "SHA-256", + "content": "c97a94f15eb7ed24c114ed3b6103987aedd65435aabb85217845df4695fa9069" + } + ] + }, + { + "bom-ref": "aff7ee3b00497396", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Honolulu", + "hashes": [ + { + "alg": "SHA-1", + "content": "51a0bfcc4ed77ba41ead3fa764378e0f09455cfc" + }, + { + "alg": "SHA-256", + "content": "528f01a0a7c21d9cc853eb79b32ecabe8a343028d116b67e6d05cd616d83d5ee" + } + ] + }, + { + "bom-ref": "970f5b123b66f55c", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Kiritimati", + "hashes": [ + { + "alg": "SHA-1", + "content": "78298a4aedeca734a304f178e91606b4d72962f6" + }, + { + "alg": "SHA-256", + "content": "b78f341b3f703c5dc508805923c91e3884d91ae8bd1e2f82d9b28b2308cd8eef" + } + ] + }, + { + "bom-ref": "0ac0fb2d08bc8c5b", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Kosrae", + "hashes": [ + { + "alg": "SHA-1", + "content": "cf5e2f0d23a8313543ca47582114ea0c835cf0b9" + }, + { + "alg": "SHA-256", + "content": "b5e1e429c7d31a845f3ff7f73604e13049ac51626da067b2cd2f4cceac34b2c3" + } + ] + }, + { + "bom-ref": "35ee66a11c6e8947", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Majuro", + "hashes": [ + { + "alg": "SHA-1", + "content": "c5d14cb64f88c062ab8d82f8b69afe45519ca616" + }, + { + "alg": "SHA-256", + "content": "5663127802eeab9ef7b7eb3c889e76ca9683001ed76a2a4549906e864fd10f32" + } + ] + }, + { + "bom-ref": "6e78bf980f46e34d", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Marquesas", + "hashes": [ + { + "alg": "SHA-1", + "content": "45026965250b45d26e1af62045b54b36b9885af6" + }, + { + "alg": "SHA-256", + "content": "5a63de681b53d7bfc728c5d491b2986ab47347a9f2fd15a6f3b6ff978d2f826d" + } + ] + }, + { + "bom-ref": "4296804fc7c90214", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Midway", + "hashes": [ + { + "alg": "SHA-1", + "content": "715b5c39b4bb71131168910bdce8bf720a83b235" + }, + { + "alg": "SHA-256", + "content": "7218a2ae386cd5e8981a940f6b56f6f9b60a65f3e3bd2ec1fe6c9d43bac4db1a" + } + ] + }, + { + "bom-ref": "85fa67ae990b6cbf", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Nauru", + "hashes": [ + { + "alg": "SHA-1", + "content": "60b1014c5a6132889aebb41b59a324abe7470518" + }, + { + "alg": "SHA-256", + "content": "90f5b914416c9e4189a530cd7fcf878a19e5f5569da00bc926a4d2b6c0cdf0d5" + } + ] + }, + { + "bom-ref": "7fe6ffd3e57793ab", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Niue", + "hashes": [ + { + "alg": "SHA-1", + "content": "58a0bc5f95bdae5bbc5870bb33bfb7403f7d48d7" + }, + { + "alg": "SHA-256", + "content": "c16c73631f28c41351fff90d3108bc5751cbd40010fdf872da112a10e9739a53" + } + ] + }, + { + "bom-ref": "b2280d7cb7e3a004", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Norfolk", + "hashes": [ + { + "alg": "SHA-1", + "content": "2fac72e613b57aee6e9d326abb16a53f5045992b" + }, + { + "alg": "SHA-256", + "content": "d3ea212e8cfe37da5b6becba0cbc308a26bd5590986d4f046845bb5571aa899c" + } + ] + }, + { + "bom-ref": "ba50f25256355fba", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Noumea", + "hashes": [ + { + "alg": "SHA-1", + "content": "203a22bfa639189f6aceb9338dc7ce01ff79bace" + }, + { + "alg": "SHA-256", + "content": "13e18b4bb426c3739b34e37d6cdc00d488721a05865cdeca94af76246f55a4de" + } + ] + }, + { + "bom-ref": "4680d562ef82db64", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Palau", + "hashes": [ + { + "alg": "SHA-1", + "content": "f093cf245401ee7432df8375e88f18aaebe7eb67" + }, + { + "alg": "SHA-256", + "content": "fa004039c36449b9a8e280ff0c768e4d15d3853d9f2b87a177d365d8ad864525" + } + ] + }, + { + "bom-ref": "5ba5e1cd0a38f4f4", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Pitcairn", + "hashes": [ + { + "alg": "SHA-1", + "content": "0a44730a6999f2609d4319458fd5cb86f2f19f20" + }, + { + "alg": "SHA-256", + "content": "b0ad4cbe872b4d208d45bc6d326290cd240c1886150f0ee42638386276a8b0b0" + } + ] + }, + { + "bom-ref": "d046740b0c636a0d", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Pohnpei", + "hashes": [ + { + "alg": "SHA-1", + "content": "3d48500d89c7db8de96169df0b5ce033d7a10fe1" + }, + { + "alg": "SHA-256", + "content": "ee4a05d2735ebff35c2f093f0b2d03f70434de110a5403ed7a218e1b73bcf3ed" + } + ] + }, + { + "bom-ref": "b4714f02ea347143", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Port_Moresby", + "hashes": [ + { + "alg": "SHA-1", + "content": "e7fbde066f758c4d965a7ab799f27ac8428ebd27" + }, + { + "alg": "SHA-256", + "content": "1fb4613fb4bf246f537e265e441fe5f62713037df40338cfd80cb7d768e8ca5f" + } + ] + }, + { + "bom-ref": "ea82d18faff30085", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Rarotonga", + "hashes": [ + { + "alg": "SHA-1", + "content": "63370823946b5e953c4aac05a657dbdc10da28ed" + }, + { + "alg": "SHA-256", + "content": "9695a885289664511eb65f931860f584e7c5443d6f05b10b5197ac7834d47cde" + } + ] + }, + { + "bom-ref": "97829b3a5355c7f3", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Tahiti", + "hashes": [ + { + "alg": "SHA-1", + "content": "c5bae1f0278c5d05f571d2b04f1fd75df40472ad" + }, + { + "alg": "SHA-256", + "content": "c9a22621ddb737b5d6342691dc2d94e265c81b0e743010b6713986db122fc855" + } + ] + }, + { + "bom-ref": "c39753d77586a0c2", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Tarawa", + "hashes": [ + { + "alg": "SHA-1", + "content": "d084772ab43accb3713e5c0ed9c651434d662b96" + }, + { + "alg": "SHA-256", + "content": "28fea38528135a54fd642fe3d2bbb41aa8da6b7c892c3991ab2612a81144e799" + } + ] + }, + { + "bom-ref": "bac771288e912ede", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Tongatapu", + "hashes": [ + { + "alg": "SHA-1", + "content": "a6ff0943688ec6d3158f8d0f72595ca6a9badbb1" + }, + { + "alg": "SHA-256", + "content": "14d5bf3a7fea21eb6c9e63970d1dad5b9fbedc5f5b0fd3f5069ee74f7a0f4d8d" + } + ] + }, + { + "bom-ref": "7ed3a8e572dea8a4", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Wake", + "hashes": [ + { + "alg": "SHA-1", + "content": "7b8879d283b5817679207a6635dcd0ad9059cc6c" + }, + { + "alg": "SHA-256", + "content": "0346a78cf610bc43eae87c0a332d30ac5cf9c95001a4264731563cccf3c38331" + } + ] + }, + { + "bom-ref": "12c50f49cee11c29", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Wallis", + "hashes": [ + { + "alg": "SHA-1", + "content": "688c8c8a3d61b0d09892a5e34a3f72089dc52787" + }, + { + "alg": "SHA-256", + "content": "837699bd07ada63d632fc2303a687e5ef9e194e063bac786055885258206ee5c" + } + ] + }, + { + "bom-ref": "d8241a6b91d95218", + "type": "file", + "name": "/usr/share/zoneinfo/Poland", + "hashes": [ + { + "alg": "SHA-1", + "content": "7af2dd5a07b4b8c26e16524120b85424fde44ebf" + }, + { + "alg": "SHA-256", + "content": "68e7493c1ca050e4134062a74aa4a4fc32159c042b4c9d8d40c8bfc9d273c5fa" + } + ] + }, + { + "bom-ref": "c9bc72c909f72af9", + "type": "file", + "name": "/usr/share/zoneinfo/Portugal", + "hashes": [ + { + "alg": "SHA-1", + "content": "9fc34f4f1a590d67386c71f270ef494ceb4c09b3" + }, + { + "alg": "SHA-256", + "content": "4bbe65d4ff3394ffa1b4ae6fe2296e333f55bad0ae49ca6717b6076e53490ea2" + } + ] + }, + { + "bom-ref": "fd204161ac30af2c", + "type": "file", + "name": "/usr/share/zoneinfo/ROC", + "hashes": [ + { + "alg": "SHA-1", + "content": "e5635f0691154dfc95a832e4445d2c9dfa44309c" + }, + { + "alg": "SHA-256", + "content": "25cfd02bc847bdcb11e586445ba886a76315f1f9be86f7e74944a6e8e8644543" + } + ] + }, + { + "bom-ref": "374c7016d7db6f46", + "type": "file", + "name": "/usr/share/zoneinfo/ROK", + "hashes": [ + { + "alg": "SHA-1", + "content": "30b1499e7dedb135ee71068846e50fa4a86bed2b" + }, + { + "alg": "SHA-256", + "content": "3673a9439d49ea97b47c9fb28433c6d41c469ca03ad320768f1514d075647c26" + } + ] + }, + { + "bom-ref": "35612f698c80af24", + "type": "file", + "name": "/usr/share/zoneinfo/Singapore", + "hashes": [ + { + "alg": "SHA-1", + "content": "b59595c88e53389d07914e7630f65dfaed3a6de7" + }, + { + "alg": "SHA-256", + "content": "e6929fde43ffc48bbac4081b31bbf7fd42643b3c26fadf322bdeadeb23cfc748" + } + ] + }, + { + "bom-ref": "cdf83d8894f58ccd", + "type": "file", + "name": "/usr/share/zoneinfo/Turkey", + "hashes": [ + { + "alg": "SHA-1", + "content": "d3fdf5120ff3dde53ccac2094830d51359d14ab3" + }, + { + "alg": "SHA-256", + "content": "2f24f072fa325c0a9bbecc48ea2782317c459a6cad941a37f7e305238443c45a" + } + ] + }, + { + "bom-ref": "8abca652d79cd9d4", + "type": "file", + "name": "/usr/share/zoneinfo/UCT", + "hashes": [ + { + "alg": "SHA-1", + "content": "d7948ef155843e0c7d055bdc3632877b49873864" + }, + { + "alg": "SHA-256", + "content": "3c71b358be81e13b1c24e199a119fd001dbcdb90edc7d44c2c7ae175321a0215" + } + ] + }, + { + "bom-ref": "f56fdbb715bd5d49", + "type": "file", + "name": "/usr/share/zoneinfo/W-SU", + "hashes": [ + { + "alg": "SHA-1", + "content": "7216c72e5b65d8aa6a7f2b0d73d1c673be4a0a7d" + }, + { + "alg": "SHA-256", + "content": "02d55516d0f9d497998260b4f129aee59867b77a920ba2ca0c58b15ec8588e7a" + } + ] + }, + { + "bom-ref": "8f0caf7d5ecf57af", + "type": "file", + "name": "/usr/share/zoneinfo/WET", + "hashes": [ + { + "alg": "SHA-1", + "content": "d1acd595a5d4a1e5c04f91a1b80e86a11b394efb" + }, + { + "alg": "SHA-256", + "content": "e5e7c4631295e7f17085e3530f99fc2984cc7e4bdb9a07db7702de8c18c2aab1" + } + ] + }, + { + "bom-ref": "4b0057544d788d05", + "type": "file", + "name": "/usr/share/zoneinfo/iso3166.tab", + "hashes": [ + { + "alg": "SHA-1", + "content": "0fc6d5c93a74b418876236fcac9d710b695c87a0" + }, + { + "alg": "SHA-256", + "content": "04c87fc98ecc5e9f03304cbbd636ab157dc8252369c2e132223228d872945c3e" + } + ] + }, + { + "bom-ref": "f3a269363b04981d", + "type": "file", + "name": "/usr/share/zoneinfo/leap-seconds.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "7f2cd8c69ac0c947d97c21b8999f49725d96f1d7" + }, + { + "alg": "SHA-256", + "content": "4aa024da4b2e7a45b57f5c3c464983f5d8efab18883d2250b96bd53b1d4e58f7" + } + ] + }, + { + "bom-ref": "8968d471ba70c83a", + "type": "file", + "name": "/usr/share/zoneinfo/posixrules", + "hashes": [ + { + "alg": "SHA-1", + "content": "1607371cc3e09de17ce3746d2f9d731f9887e2f2" + }, + { + "alg": "SHA-256", + "content": "5fa6dccc303352e1195c4348b189f3085014d8a56a1976c8e8a32bd4fedb69fd" + } + ] + }, + { + "bom-ref": "a03ccbbdd5ec9f71", + "type": "file", + "name": "/usr/share/zoneinfo/right/Africa/Abidjan", + "hashes": [ + { + "alg": "SHA-1", + "content": "76188a6d88196419831371b91928ac9db6bc83b2" + }, + { + "alg": "SHA-256", + "content": "c177f3894cfb7acf27cfefcefd177aebfa1699e409e7fc4cd5a11ef116f8d236" + } + ] + }, + { + "bom-ref": "5d16c51ce04b37be", + "type": "file", + "name": "/usr/share/zoneinfo/right/Africa/Accra", + "hashes": [ + { + "alg": "SHA-1", + "content": "02dd430d38adc7997ff4b7c544898e4ff0ae3f17" + }, + { + "alg": "SHA-256", + "content": "9863eb82771cf02cf4ee1de5ea5f77ee1f64735c3177ec2d5d88d16c3c22adac" + } + ] + }, + { + "bom-ref": "9a0bccf8719f18ba", + "type": "file", + "name": "/usr/share/zoneinfo/right/Africa/Addis_Ababa", + "hashes": [ + { + "alg": "SHA-1", + "content": "1a2dae6fb6469402fdb152b761cee35a40f11631" + }, + { + "alg": "SHA-256", + "content": "d2247051e9475386f19fdaa6bf7d12ce1512f7ef608783d89edd8a88d9b48f55" + } + ] + }, + { + "bom-ref": "b72d420855dfef26", + "type": "file", + "name": "/usr/share/zoneinfo/right/Africa/Algiers", + "hashes": [ + { + "alg": "SHA-1", + "content": "ae11b17e4be49dd4c75cb66f0651355b057b19fc" + }, + { + "alg": "SHA-256", + "content": "ae1ed232eba1c94a05f5e19ad6232076b09addb808405129e77b1629713beabc" + } + ] + }, + { + "bom-ref": "739abfeaf16f3f8d", + "type": "file", + "name": "/usr/share/zoneinfo/right/Africa/Bangui", + "hashes": [ + { + "alg": "SHA-1", + "content": "67e2c5ae05cb209fb1e38c8cab276ad2a6909cd4" + }, + { + "alg": "SHA-256", + "content": "0918dd4428aa52ae36a135800f5fcc423b8ca08ed77874b11920cd944c4fb72d" + } + ] + }, + { + "bom-ref": "499a1975e5172f2c", + "type": "file", + "name": "/usr/share/zoneinfo/right/Africa/Bissau", + "hashes": [ + { + "alg": "SHA-1", + "content": "2c00fc95dae85dd1b64e2d4dab8e83fdab1d4fa7" + }, + { + "alg": "SHA-256", + "content": "197606820a95c35d6c3d2f64e5e1d9542e198732db52d3b9ca6ff7294bb0ff9b" + } + ] + }, + { + "bom-ref": "0d2a6fe581e23b18", + "type": "file", + "name": "/usr/share/zoneinfo/right/Africa/Blantyre", + "hashes": [ + { + "alg": "SHA-1", + "content": "994639b2cfee59f64836c05f3b48931e2ff63462" + }, + { + "alg": "SHA-256", + "content": "3e39755e95604e242f4218d248dafd51ffa09392975c3f86c26907e6aad60da9" + } + ] + }, + { + "bom-ref": "a0b621bea0613174", + "type": "file", + "name": "/usr/share/zoneinfo/right/Africa/Casablanca", + "hashes": [ + { + "alg": "SHA-1", + "content": "fee57787cf71f1c38c6ffbeca6d31253c5a69724" + }, + { + "alg": "SHA-256", + "content": "30dceeb1934dc0eefd00a92e5776ac4fec085e20667523e363254ac857ac5789" + } + ] + }, + { + "bom-ref": "38aba3ede870f3a3", + "type": "file", + "name": "/usr/share/zoneinfo/right/Africa/Ceuta", + "hashes": [ + { + "alg": "SHA-1", + "content": "d487615d5a7455c44944247f9d4f533d3a749473" + }, + { + "alg": "SHA-256", + "content": "ca6b06411c93017e93ded83d917cac8399690d6fb2771bcc66ecf132ee2e3ef6" + } + ] + }, + { + "bom-ref": "1956d7fbefeb0df1", + "type": "file", + "name": "/usr/share/zoneinfo/right/Africa/El_Aaiun", + "hashes": [ + { + "alg": "SHA-1", + "content": "2804013ca3e4a532260206eb0747ebed696b057b" + }, + { + "alg": "SHA-256", + "content": "40d77bc305fa567c1a1442b0624f4f0d26f1c0f368367c85a58917bde31750e2" + } + ] + }, + { + "bom-ref": "aced37d45b6216eb", + "type": "file", + "name": "/usr/share/zoneinfo/right/Africa/Johannesburg", + "hashes": [ + { + "alg": "SHA-1", + "content": "fa8e7f696051fddc3e5018466ffa5edabab3da55" + }, + { + "alg": "SHA-256", + "content": "af7338314b4255661ce9afdd064e487321d4369ce15488395bb20bb4627d1ae2" + } + ] + }, + { + "bom-ref": "afa60be9fb711466", + "type": "file", + "name": "/usr/share/zoneinfo/right/Africa/Juba", + "hashes": [ + { + "alg": "SHA-1", + "content": "585e858ed6894183743783da23d1066a546aedef" + }, + { + "alg": "SHA-256", + "content": "5416feae2ba255834605ca4e707c721d2c3f3e7fde21d8c256329445c8c67ee8" + } + ] + }, + { + "bom-ref": "babffb762cac5aec", + "type": "file", + "name": "/usr/share/zoneinfo/right/Africa/Khartoum", + "hashes": [ + { + "alg": "SHA-1", + "content": "f3bb2e955ff8f3feef911d2c3258517bfa351675" + }, + { + "alg": "SHA-256", + "content": "0cd1350c87bd18606418d615dd78790f8ee9458ade7acb1af82b67afbdfc27f1" + } + ] + }, + { + "bom-ref": "77ab1d8e9610c5cd", + "type": "file", + "name": "/usr/share/zoneinfo/right/Africa/Monrovia", + "hashes": [ + { + "alg": "SHA-1", + "content": "f0a0ae93cc645c702b828887a140d8c4dc79f44b" + }, + { + "alg": "SHA-256", + "content": "eb1deb0dd9325844227c376d1532b484511c76f79f42032806553d36a9464e55" + } + ] + }, + { + "bom-ref": "02ef266a1336376d", + "type": "file", + "name": "/usr/share/zoneinfo/right/Africa/Ndjamena", + "hashes": [ + { + "alg": "SHA-1", + "content": "c1fcef0c4ec5fde9fca5fb83dc8867eea3377d7a" + }, + { + "alg": "SHA-256", + "content": "180050fab205819406f6d6b572fe6f37eb805cc3f796543185c3229108470189" + } + ] + }, + { + "bom-ref": "2c9d84332df3fc69", + "type": "file", + "name": "/usr/share/zoneinfo/right/Africa/Sao_Tome", + "hashes": [ + { + "alg": "SHA-1", + "content": "774bc2c324c817bcdef74d2d5b11a9c0ffa7d95f" + }, + { + "alg": "SHA-256", + "content": "0de4113ee9dadb292b55aaf2d49c4726604149a44fd6c52af4f098e6d3be5560" + } + ] + }, + { + "bom-ref": "175544d92c547101", + "type": "file", + "name": "/usr/share/zoneinfo/right/Africa/Tunis", + "hashes": [ + { + "alg": "SHA-1", + "content": "4171db54db6da784d8a37b04f5f5620e81376e43" + }, + { + "alg": "SHA-256", + "content": "dbc64f2ddde5756e10d2ec8156bbe83f6f9ecbeb33b5bd6d771542f623d8fc39" + } + ] + }, + { + "bom-ref": "11cc4d9d97f549ef", + "type": "file", + "name": "/usr/share/zoneinfo/right/Africa/Windhoek", + "hashes": [ + { + "alg": "SHA-1", + "content": "f8f3ac428751bf9ea93e626aa0f9bc162fb34ff1" + }, + { + "alg": "SHA-256", + "content": "9232e815aee566ea37642ad831abe23161c2f1c286dcffdc72d95f71d5e40289" + } + ] + }, + { + "bom-ref": "2eb1d2f7d14a0b77", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Adak", + "hashes": [ + { + "alg": "SHA-1", + "content": "3d28ea1ce4b362c587ad652992e556fbc288f7d9" + }, + { + "alg": "SHA-256", + "content": "6d3e31970fee36399f30950e3f68ce7a5038be38a64547241c2ac97daaccd994" + } + ] + }, + { + "bom-ref": "6e020924ee61b52d", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Anchorage", + "hashes": [ + { + "alg": "SHA-1", + "content": "4ace94a500dd294d5b21be750776291f7237b87f" + }, + { + "alg": "SHA-256", + "content": "b5b62f7337785e26117bbc34ef7976018f021e63eb3e208f8c752d4f949ef2ef" + } + ] + }, + { + "bom-ref": "de81ed4d7572f394", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Anguilla", + "hashes": [ + { + "alg": "SHA-1", + "content": "bae93c9976621e2dbdbb7ee2459cb49968e8bda8" + }, + { + "alg": "SHA-256", + "content": "dbe365d9a8abfd164690db1cec6c51c19f86154900595509c991401e13a16585" + } + ] + }, + { + "bom-ref": "b43dbcb99ec55ed4", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Araguaina", + "hashes": [ + { + "alg": "SHA-1", + "content": "7388ed13a231d869dc15b13e417fc1935a6dd0e1" + }, + { + "alg": "SHA-256", + "content": "82109fd707c8edb4e656ff24c036c4745b6eb99568f9f8be4a9480f69718b893" + } + ] + }, + { + "bom-ref": "c629be66cec46b4e", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Argentina/La_Rioja", + "hashes": [ + { + "alg": "SHA-1", + "content": "82533bc0548e570b18e7e333bdf75ca77294d307" + }, + { + "alg": "SHA-256", + "content": "ca44f15fcc0edf702aa78d83f590d05964fffa5955e697ad7e12c1231f974402" + } + ] + }, + { + "bom-ref": "eed9b623cd815c61", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Argentina/Rio_Gallegos", + "hashes": [ + { + "alg": "SHA-1", + "content": "881e6be7cd8224cc360d840e4c9e6efe01cbdb43" + }, + { + "alg": "SHA-256", + "content": "91cf62d744daee339ecffef8c6d3222602c0edcbac281a986de084084eee0a66" + } + ] + }, + { + "bom-ref": "8f579f37e66f3a50", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Argentina/Salta", + "hashes": [ + { + "alg": "SHA-1", + "content": "112ca0f3afdd0d437acc562f68d207001ccbfaeb" + }, + { + "alg": "SHA-256", + "content": "29c28845ace42cd30c66b7368489b0739b6e576a6ec994612aa6b0f21e3e41e7" + } + ] + }, + { + "bom-ref": "93314549cf5ca90b", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Argentina/San_Juan", + "hashes": [ + { + "alg": "SHA-1", + "content": "fbc1d8d41180bc9192e29d3b1fd659fede1946df" + }, + { + "alg": "SHA-256", + "content": "f37e4d35b9e3881d3a842b82322841fba4b1af27a4cc6a6e32a29ee516f5b7d9" + } + ] + }, + { + "bom-ref": "89b6f9a35bc7f76b", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Argentina/San_Luis", + "hashes": [ + { + "alg": "SHA-1", + "content": "c848c360bd64108d6b95bccc00176c1a6a00f48d" + }, + { + "alg": "SHA-256", + "content": "792ff8486d80c28aca88a4dd4a235f7fa2d8096c78b712807867d70ed696350b" + } + ] + }, + { + "bom-ref": "c85b518f38325562", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Argentina/Tucuman", + "hashes": [ + { + "alg": "SHA-1", + "content": "1d3dfd44ca2bdb1b1d0a11320c62eaa4f9dfd328" + }, + { + "alg": "SHA-256", + "content": "ff5b362c9623df8cc3c5322a8bc5fc68b8cb55a0bb2e869856244559179e65f4" + } + ] + }, + { + "bom-ref": "6266e4c2cc57bf40", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Argentina/Ushuaia", + "hashes": [ + { + "alg": "SHA-1", + "content": "a4df280d48d561b9fee5798c6f6f0e4dc61aca4c" + }, + { + "alg": "SHA-256", + "content": "ef3d614cc912b10dfd59f42f529a41d4e4f5dc0a653a5cbecf7f49eaf32518a7" + } + ] + }, + { + "bom-ref": "20c57484a8893b13", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Aruba", + "hashes": [ + { + "alg": "SHA-1", + "content": "ed5a29a5d798fc60c69fd6af3828f454c3ec15bd" + }, + { + "alg": "SHA-256", + "content": "ec9709d87bbdd0aae7be4070156e5dc05c12d822da203cb1030354342bae2df0" + } + ] + }, + { + "bom-ref": "978980949e9fa2cf", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Asuncion", + "hashes": [ + { + "alg": "SHA-1", + "content": "0ba1df05e941d9c7119123c02b0c77595bcafa2c" + }, + { + "alg": "SHA-256", + "content": "a8578deb3800b6aacd9e448736cc82f80dbb0247516df7a22663e822bf3d959c" + } + ] + }, + { + "bom-ref": "ae39fd1b85e41425", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Atikokan", + "hashes": [ + { + "alg": "SHA-1", + "content": "b0c0f69d250ee9cf1f6b95262e7f5543fe19c6c8" + }, + { + "alg": "SHA-256", + "content": "2fe220cd5f52ece0e3aa468ed33c443eaad61fc9e3bfbb47b7b754e8ad1a4613" + } + ] + }, + { + "bom-ref": "38dc0ae6e54e56e6", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Bahia", + "hashes": [ + { + "alg": "SHA-1", + "content": "4a9331fe3fda81bc83cbfd5b69181a0b77b43396" + }, + { + "alg": "SHA-256", + "content": "57be9fcdea20da18d7324009677d390f2098a1035f052a946e4c0ab101b52aa7" + } + ] + }, + { + "bom-ref": "82463ecce7fdf48b", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Bahia_Banderas", + "hashes": [ + { + "alg": "SHA-1", + "content": "ccdd1e5a46bb8a9eb391f51bd90a6396d80d5fbe" + }, + { + "alg": "SHA-256", + "content": "e44343d2e96738b96a6d83d5327dda8d041b1fb8e62b281f7fac7e56642b960b" + } + ] + }, + { + "bom-ref": "55548c82c5a0ddce", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Barbados", + "hashes": [ + { + "alg": "SHA-1", + "content": "919d66d2092de7c669be2eeee0f44cda00bac53f" + }, + { + "alg": "SHA-256", + "content": "64d664790217c76976a3a1f386ac82fc0f2295247f64547385711656b9f8f13b" + } + ] + }, + { + "bom-ref": "032e7cec592ae906", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Belem", + "hashes": [ + { + "alg": "SHA-1", + "content": "466c0d84da6083f734e16639b4c93d305868bccf" + }, + { + "alg": "SHA-256", + "content": "b42a81883f67e3e7f2ab0d7599a7828babe2847de45cca683ad9c1b9e0e5f517" + } + ] + }, + { + "bom-ref": "b3af90fe113eb210", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Belize", + "hashes": [ + { + "alg": "SHA-1", + "content": "f6fc69bf833eee40484767928b9e742441045a8e" + }, + { + "alg": "SHA-256", + "content": "64c8ad5880386d6b4b00707ee7f83b0e327b72fbf4ba8f9cb71f8d083eca8472" + } + ] + }, + { + "bom-ref": "4f28c73b066f11eb", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Blanc-Sablon", + "hashes": [ + { + "alg": "SHA-1", + "content": "f155d2fadcc0c41bb0723e9338e1b43b0531fcf2" + }, + { + "alg": "SHA-256", + "content": "6e9969e343200d865e82628b88310774524c38ae9c5ede30b7e5163acb70e6a1" + } + ] + }, + { + "bom-ref": "f9f178c1e26e2803", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Boa_Vista", + "hashes": [ + { + "alg": "SHA-1", + "content": "c66dacc8e76def17ca6c30e7d66c84180c2d42dc" + }, + { + "alg": "SHA-256", + "content": "571117b369cd426ece6f39b03b5105236c6b45bb48a14633c510b8217f9d1425" + } + ] + }, + { + "bom-ref": "1299d59f1fd67bed", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Bogota", + "hashes": [ + { + "alg": "SHA-1", + "content": "ee37b38299af8bcfe3e9f6dda3af96767c9b6909" + }, + { + "alg": "SHA-256", + "content": "2e6720337c693fb0d3d5b9da958aed2736a828d3db08d060262c04e98dd4d09d" + } + ] + }, + { + "bom-ref": "0a29edf80d271049", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Boise", + "hashes": [ + { + "alg": "SHA-1", + "content": "d06afb5c0682d254f9e95d79241b386d00173ec8" + }, + { + "alg": "SHA-256", + "content": "7189c739198e19615b75a8a336aabd3cb223a765487382eb16c783cbb91c8c95" + } + ] + }, + { + "bom-ref": "e221d8f735444f25", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Buenos_Aires", + "hashes": [ + { + "alg": "SHA-1", + "content": "ba25c5008a687b76ce047dc3305a427ecfa88bcd" + }, + { + "alg": "SHA-256", + "content": "11f0d85022c24b9744ed8511f75ca67bed67a3e5d8b439fd02ec0d05d1afa710" + } + ] + }, + { + "bom-ref": "49e7f020cc6e462a", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Cambridge_Bay", + "hashes": [ + { + "alg": "SHA-1", + "content": "c74dbfbf0b88e75f52e47fb079aa495a6dee3446" + }, + { + "alg": "SHA-256", + "content": "dfa58c30cd1217d5f8e9dcb757d64bfb901c28a5f9475a38ac7de9e03c2d80c0" + } + ] + }, + { + "bom-ref": "1aa6f42c40e6d5b9", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Campo_Grande", + "hashes": [ + { + "alg": "SHA-1", + "content": "261091289dcc1c5362bc96e47d45981456606a95" + }, + { + "alg": "SHA-256", + "content": "a8706aa08dfa1b1d590cbea13a10219797f5462aaba556a2173265c54c3ee514" + } + ] + }, + { + "bom-ref": "74adb00dc64b67ec", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Cancun", + "hashes": [ + { + "alg": "SHA-1", + "content": "ccae0bc2a899957e88c15214d9892fd105f8b4ec" + }, + { + "alg": "SHA-256", + "content": "c8ce65577ce494166ad8f57f14a55ae961e27dd7aa356d8802fb5c9f2d510fb6" + } + ] + }, + { + "bom-ref": "d42122e830780632", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Caracas", + "hashes": [ + { + "alg": "SHA-1", + "content": "707c66a94fe672b5633d5c5b9982fd6af5df080a" + }, + { + "alg": "SHA-256", + "content": "a96e2b167e1bada8a827a7102f82ab54b80f2e34748c157c39d50d4605a1b3f6" + } + ] + }, + { + "bom-ref": "b25e1e2891dbbd88", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Catamarca", + "hashes": [ + { + "alg": "SHA-1", + "content": "dbe691ff5debb639fefe1c128189603f8d03344f" + }, + { + "alg": "SHA-256", + "content": "e8eb2f2a5ceead008a4000d50d3e8363a3181dd29a51600efd0328fe1ff75ba0" + } + ] + }, + { + "bom-ref": "4400eeb18d898a5c", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Cayenne", + "hashes": [ + { + "alg": "SHA-1", + "content": "f197ce5cecb67f9144800955a54994983c92b126" + }, + { + "alg": "SHA-256", + "content": "0eafc920b259f82d386d82c7ba4dae9301cec9a9dea17abcfd27f40dd2b06d18" + } + ] + }, + { + "bom-ref": "d944058bdf34b277", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Cayman", + "hashes": [ + { + "alg": "SHA-1", + "content": "84d0f1cef0809cde20925163306efad1f2998dd0" + }, + { + "alg": "SHA-256", + "content": "6962181adfca6314029efa4c3a2dae17c775d6031cff3bd6c63d49ed30c31cb1" + } + ] + }, + { + "bom-ref": "efbceddc68808a5d", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Chicago", + "hashes": [ + { + "alg": "SHA-1", + "content": "0e5f83d394a5eb74856f9798a51a9dac1563e44d" + }, + { + "alg": "SHA-256", + "content": "94f71253caa6bde6db52f2f5ad3b816df0c2da9af7cc7d4a4abf1b91e391821f" + } + ] + }, + { + "bom-ref": "4c7af512c8386a40", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Chihuahua", + "hashes": [ + { + "alg": "SHA-1", + "content": "81d540e6967344737be0acdcd98d07705e0245e0" + }, + { + "alg": "SHA-256", + "content": "1f0007a74669d2ede5ccea2c49ff17ced52ae2e28756ebbf5eb08aa08b3e9d45" + } + ] + }, + { + "bom-ref": "c64450b885b18bfa", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Cordoba", + "hashes": [ + { + "alg": "SHA-1", + "content": "79b7fcf0fe3572d931bf79b43869b0b5826b2804" + }, + { + "alg": "SHA-256", + "content": "71317d3d37f6c9547838beb260ddc830350e32ebb702fc280a878e0cc20b5b01" + } + ] + }, + { + "bom-ref": "130465c931560dca", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Costa_Rica", + "hashes": [ + { + "alg": "SHA-1", + "content": "44dd7772680277d86ae2e0719d7067b9ea75c374" + }, + { + "alg": "SHA-256", + "content": "a697b205589062aab7599c2e812f164df50b32f2d9c8f2ea7b42f1e53b4e3e94" + } + ] + }, + { + "bom-ref": "4f28d7115fca5449", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Creston", + "hashes": [ + { + "alg": "SHA-1", + "content": "2b59fa53be5813f7a84664b23345f98d7cc1338a" + }, + { + "alg": "SHA-256", + "content": "071acbeb9c771d5bd244b0d6bd73b7e7893aa40deb19c1074908a0094de4463f" + } + ] + }, + { + "bom-ref": "a1a994bc3fad406b", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Cuiaba", + "hashes": [ + { + "alg": "SHA-1", + "content": "bc9f6730538e0fd6bc6fe7716b6a4e19332c14ce" + }, + { + "alg": "SHA-256", + "content": "8df0f198ed0c5152081615876698fccee1adf1a84368ea30b3e7a00671e231e2" + } + ] + }, + { + "bom-ref": "9a1fdcce8a9b0373", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Danmarkshavn", + "hashes": [ + { + "alg": "SHA-1", + "content": "c250afb955a658311ad581078b2c4df23b69f49a" + }, + { + "alg": "SHA-256", + "content": "99b1ff4ad370c93145279b56504ccd2d0bb39f92c002aaa490bd5969285cdd1f" + } + ] + }, + { + "bom-ref": "8ec5793328d3ddf7", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Dawson", + "hashes": [ + { + "alg": "SHA-1", + "content": "20fdccf15239a70feface1a4ab39d07e1d3801f6" + }, + { + "alg": "SHA-256", + "content": "80603f40526cf878ecb1d2d6d65a94f8c1021fe53acd720174dd856219566ddd" + } + ] + }, + { + "bom-ref": "4a9e8dcc469cae29", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Dawson_Creek", + "hashes": [ + { + "alg": "SHA-1", + "content": "9a07ac3d92a5541d8a85c88841973e2ca90e25cc" + }, + { + "alg": "SHA-256", + "content": "4f2bb35e6c4c8804409dc81ad024881457705dca4ae468184f73c04bff51ead1" + } + ] + }, + { + "bom-ref": "c06fcd9faa20fab9", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Detroit", + "hashes": [ + { + "alg": "SHA-1", + "content": "1fb7c485aabe5e02a2dd569424f76906ba9648d6" + }, + { + "alg": "SHA-256", + "content": "5549176b1eddafbfea4f7156db3872560d9c7085e200706ca281103c7918d1dd" + } + ] + }, + { + "bom-ref": "3c624f1212834152", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Edmonton", + "hashes": [ + { + "alg": "SHA-1", + "content": "bd885797915f08217c88b32535258f184ec62296" + }, + { + "alg": "SHA-256", + "content": "022478c15aee3ef60c10f350122529278adf3954d02e30f78df5ca8d6eb937ee" + } + ] + }, + { + "bom-ref": "85edb339bd7be1dd", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Eirunepe", + "hashes": [ + { + "alg": "SHA-1", + "content": "1f594862fa42fd4bb8ae2ae8c9f8d63cd3b96196" + }, + { + "alg": "SHA-256", + "content": "c4f55d375fc0af9be895823939d16d5b414619368817025e4ca1cd33b72b251f" + } + ] + }, + { + "bom-ref": "99511da6306a7698", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/El_Salvador", + "hashes": [ + { + "alg": "SHA-1", + "content": "c5d1c6aab980fdb2aefd94b11ae48a32e847e70f" + }, + { + "alg": "SHA-256", + "content": "04993007b8086580ac35e8fa524bbdcd45f045c965608fca3da26deaa1ede337" + } + ] + }, + { + "bom-ref": "b3139526cef35eba", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Ensenada", + "hashes": [ + { + "alg": "SHA-1", + "content": "18a7448d2014ec7c4c6fdc13cea755c37aab411d" + }, + { + "alg": "SHA-256", + "content": "a1a5199868d6aa4c24fef5e908e99e4c6e116d16afc554d25ec431990d8f02da" + } + ] + }, + { + "bom-ref": "d16900f27591794a", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Fort_Nelson", + "hashes": [ + { + "alg": "SHA-1", + "content": "3509ae723694d605035e21406cfe20a5d28af632" + }, + { + "alg": "SHA-256", + "content": "c20108fb21d7e76aef2c0bd669f1dfd6043b5269020bde6cff669f088d13abec" + } + ] + }, + { + "bom-ref": "2ec30d8b1436bc10", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Fort_Wayne", + "hashes": [ + { + "alg": "SHA-1", + "content": "6235f82350f693318f4ae7aca340200669854d9a" + }, + { + "alg": "SHA-256", + "content": "7dfb7b2796f9b9d9a69d402b2e8269a2f834e1d01e2da34af490b2b24c21ace5" + } + ] + }, + { + "bom-ref": "182aa33f975e0f39", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Fortaleza", + "hashes": [ + { + "alg": "SHA-1", + "content": "9ed4395adccd655edbda8af1ae3be46299e9e383" + }, + { + "alg": "SHA-256", + "content": "0c7c0174e80d20bb3233959a3c804006cbeff3d3ac86ab6b1e21988da7efdc9c" + } + ] + }, + { + "bom-ref": "86f73221b8c5c792", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Glace_Bay", + "hashes": [ + { + "alg": "SHA-1", + "content": "ebcc97f62e0650249d02b903f709a28a91a1d277" + }, + { + "alg": "SHA-256", + "content": "799c72cab5fafdcf48dfe766d52c24e7fd7f4a61e0d554c97888023766219287" + } + ] + }, + { + "bom-ref": "68227008c1d53259", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Godthab", + "hashes": [ + { + "alg": "SHA-1", + "content": "71b1fb003b57b6f8c40cb7cf11322bd4bcb775ae" + }, + { + "alg": "SHA-256", + "content": "9624c131f68def896035d8ad7e011456dfc60c90a2956e32545fc391e4ec9a44" + } + ] + }, + { + "bom-ref": "6695438651999c5c", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Goose_Bay", + "hashes": [ + { + "alg": "SHA-1", + "content": "221aec59fa0187e94587132a88c9c1338930b352" + }, + { + "alg": "SHA-256", + "content": "462bef059c879d10cbcce574a128bc2d847dfc342dd77f43e6494f3aba6cf94c" + } + ] + }, + { + "bom-ref": "89ee442664bfeec8", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Grand_Turk", + "hashes": [ + { + "alg": "SHA-1", + "content": "62d260571dc9499085ffd0ad050bd2bc0f5d2582" + }, + { + "alg": "SHA-256", + "content": "62c8422fa9715c9897596d74d1960cd40018f44a1253b0380a33017fcc3fdde3" + } + ] + }, + { + "bom-ref": "323fe1577c43e076", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Guatemala", + "hashes": [ + { + "alg": "SHA-1", + "content": "c18e465cc61e853f11e3daaaeaf9cf12ccd5eaa7" + }, + { + "alg": "SHA-256", + "content": "b8d8d7b3edd1a237b4d4aee860162700cf11e25aa9102ba61bed6640ced94463" + } + ] + }, + { + "bom-ref": "4950f8ca77b092a9", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Guayaquil", + "hashes": [ + { + "alg": "SHA-1", + "content": "f04f648e2ad9640677dd29cbcf453757e919c6e2" + }, + { + "alg": "SHA-256", + "content": "261c214acf962a01f616006a670d717ed104b80afb006f3c78e7e1054c9637fa" + } + ] + }, + { + "bom-ref": "6e5ee5a960228dec", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Guyana", + "hashes": [ + { + "alg": "SHA-1", + "content": "e13bdff705b99b33d018ba358a8a1bc4a77a75e4" + }, + { + "alg": "SHA-256", + "content": "8664ad5ccf6551c731f7235c7dc307cf5ef4106dc109e99da1cfc3b193b8d536" + } + ] + }, + { + "bom-ref": "9e4169e8a70c0523", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Halifax", + "hashes": [ + { + "alg": "SHA-1", + "content": "8cee8ad21c24925851825ee17a04a879a04a927c" + }, + { + "alg": "SHA-256", + "content": "86c84ef0a21a387fdd0058046268c5eca94c10cb73231638724d344cc478bd10" + } + ] + }, + { + "bom-ref": "19cce8269aa740f7", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Hermosillo", + "hashes": [ + { + "alg": "SHA-1", + "content": "594d0994f5c120f536740a1cd137b15145ebcd5e" + }, + { + "alg": "SHA-256", + "content": "778350bbb96f05ab2e74834f35be215801da358dd7c261f1ba3bfe6f1c9b07e9" + } + ] + }, + { + "bom-ref": "4bacf41000dbf867", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Indiana/Marengo", + "hashes": [ + { + "alg": "SHA-1", + "content": "509c06d6dc8d8888c88820f10c509e90cd6ef36d" + }, + { + "alg": "SHA-256", + "content": "b3e8fe887a5ce407f7208f16d0b296a4594b3f93de33b70d5a260139f66cfab2" + } + ] + }, + { + "bom-ref": "dc8eda18b273328d", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Indiana/Petersburg", + "hashes": [ + { + "alg": "SHA-1", + "content": "f7d0797ce609388d83337592db21ff1dfaf1759c" + }, + { + "alg": "SHA-256", + "content": "285f27ebb54838060d3a33238dae6ee695af5c258d40780fc89c797a239360ba" + } + ] + }, + { + "bom-ref": "855548412080c35b", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Indiana/Tell_City", + "hashes": [ + { + "alg": "SHA-1", + "content": "091003cb997362f96cd0435e1fd563f009c13257" + }, + { + "alg": "SHA-256", + "content": "2e364ec1dc4a5ebca7a3bbe89b3f498f9d2f1362739d26a08d887571f3a65d19" + } + ] + }, + { + "bom-ref": "0bbd74ec49ebf8cc", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Indiana/Vevay", + "hashes": [ + { + "alg": "SHA-1", + "content": "a4f3e0316af346c4104d7ace8b915064a565eb8e" + }, + { + "alg": "SHA-256", + "content": "74d2b6f797d63017075f1425e695e5f61a6e1b3ef08f812bc330e22fae18333a" + } + ] + }, + { + "bom-ref": "3790845ccd4e4a37", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Indiana/Vincennes", + "hashes": [ + { + "alg": "SHA-1", + "content": "2b1fcc354b93cae8a9ab816f9eaefc88d71be3b4" + }, + { + "alg": "SHA-256", + "content": "970baaf1ed777c07d74546d61282e9df9a0488ad90084210a770c82ae78b8357" + } + ] + }, + { + "bom-ref": "08ed403daeb8527e", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Indiana/Winamac", + "hashes": [ + { + "alg": "SHA-1", + "content": "c921575d7e5138a21e5701c60b91257640f9660e" + }, + { + "alg": "SHA-256", + "content": "cade9b122bd306fd5bb1fd4ff0471861c8eaed414a166ba570554a349a7a20b6" + } + ] + }, + { + "bom-ref": "59207e94102a2df7", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Inuvik", + "hashes": [ + { + "alg": "SHA-1", + "content": "26d19218f2493ce9bffc049cd8e83b91c585a607" + }, + { + "alg": "SHA-256", + "content": "c51f2f3cef4844e5c800ed3592d85bc69e5f05dc4a53e94c76b2433be16b1a5f" + } + ] + }, + { + "bom-ref": "f32bbe9f65242841", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Iqaluit", + "hashes": [ + { + "alg": "SHA-1", + "content": "fa5b5992a1fd349412efe973004e87f17b6bc67b" + }, + { + "alg": "SHA-256", + "content": "7179d696e8f2aac641bbe8a0b0635128246fd4669e258befaac2e91170f75d1e" + } + ] + }, + { + "bom-ref": "99113e3af95fbb18", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Jujuy", + "hashes": [ + { + "alg": "SHA-1", + "content": "f37bf373231dc62e6dc9292dd1a7a5a6ea350062" + }, + { + "alg": "SHA-256", + "content": "f9b3f77caa862cee71a893e64fe1e4dbb24eda9ceff5875ae5b744638810aa14" + } + ] + }, + { + "bom-ref": "327b63068da6865a", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Juneau", + "hashes": [ + { + "alg": "SHA-1", + "content": "d6b8c5b1267edbb53b88b4027aec2d47dccf8c50" + }, + { + "alg": "SHA-256", + "content": "2be628832b78514026f7932644e221fd4490d502f686f069d7ebf8ba0b220c40" + } + ] + }, + { + "bom-ref": "2845f6b93bdaf424", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Kentucky/Monticello", + "hashes": [ + { + "alg": "SHA-1", + "content": "26b30fd3d1b05906f7dcff54f74022702762811c" + }, + { + "alg": "SHA-256", + "content": "ff56ff4d9ee52923c57354d5d836e87cc8acb748bbf0648c2406bcbafaa4227c" + } + ] + }, + { + "bom-ref": "2c04ee8426fa9a42", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Knox_IN", + "hashes": [ + { + "alg": "SHA-1", + "content": "2e4bbd4d2d4a5985eaf70306a65630ccaac5a8ce" + }, + { + "alg": "SHA-256", + "content": "ac4c928ad03acaf42f346aa81bf9d269a513adb14a955ff55a5177927832c6a8" + } + ] + }, + { + "bom-ref": "8628f9c6d5e11522", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/La_Paz", + "hashes": [ + { + "alg": "SHA-1", + "content": "f3f98197ac2eff5c28b03f46aff257aeb4fbb9dd" + }, + { + "alg": "SHA-256", + "content": "c95fb5fbc80f32110f36c756e648d901e362e4d96bc48e5b8d5eaf8c232654f7" + } + ] + }, + { + "bom-ref": "9b5885ac568b2616", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Lima", + "hashes": [ + { + "alg": "SHA-1", + "content": "19f85755b9bb958c43f7a3ce779c51124e65a490" + }, + { + "alg": "SHA-256", + "content": "f1ddf01592db3ede97b94d43fd210e2a841365b84017601248f51b21c20314eb" + } + ] + }, + { + "bom-ref": "ef6fa1061b15f7b3", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Los_Angeles", + "hashes": [ + { + "alg": "SHA-1", + "content": "8bc90b409c65a4297e874d896b9e216dd4dece6c" + }, + { + "alg": "SHA-256", + "content": "5f2a6fb2744e29e2a6ac88e89843ce0c74f8934b37d1b35d67e115d5363c9e57" + } + ] + }, + { + "bom-ref": "2e9a880f21959ee5", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Louisville", + "hashes": [ + { + "alg": "SHA-1", + "content": "4e438926303c8d5ca99bbee3499f5b93f483e290" + }, + { + "alg": "SHA-256", + "content": "afb7d1fa10278e2b8275017c592ba7679b4800a5fd1c875f5ecc8aa5ab21befe" + } + ] + }, + { + "bom-ref": "385d67f8e2584c63", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Maceio", + "hashes": [ + { + "alg": "SHA-1", + "content": "28f5555d5d9249fd9a5de665814bebb8e2a30ed1" + }, + { + "alg": "SHA-256", + "content": "564da2e13a0ac0d0bf7901bef8f811e53c3d78b51dbd5dc200630ba34151e6c8" + } + ] + }, + { + "bom-ref": "52b9f20cc4245d6f", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Managua", + "hashes": [ + { + "alg": "SHA-1", + "content": "7f121c056b462b7487792b722f42e07ad6c2b3e6" + }, + { + "alg": "SHA-256", + "content": "1a2e937499925a46e4d2b93113e7b035fdc270174a8fb4b65fd61f163b430ca3" + } + ] + }, + { + "bom-ref": "eedb66a970ce0e32", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Manaus", + "hashes": [ + { + "alg": "SHA-1", + "content": "f63c6e91bcfc4ff715db2fde78bd87049dc6ff52" + }, + { + "alg": "SHA-256", + "content": "c921cc8c1a0a1ed91805b81c0f22d5ee3a78fe3422f6366160c37b03302fd250" + } + ] + }, + { + "bom-ref": "f2d1911b4137de91", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Martinique", + "hashes": [ + { + "alg": "SHA-1", + "content": "9b750b0dfd1d66c3f0f7c5eb956db417720db5d0" + }, + { + "alg": "SHA-256", + "content": "18a0f75cca7c62ff1b7c8e0463856c1fa811e796806ef23cfd53d40a860861fa" + } + ] + }, + { + "bom-ref": "fbed0b4cd920aff0", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Matamoros", + "hashes": [ + { + "alg": "SHA-1", + "content": "07b19eb170ea97f00ff6b929a441806154e78e00" + }, + { + "alg": "SHA-256", + "content": "298a0a44d6576a9c127e048262a3f7f1b613653e0520a75bf912a65ccef50771" + } + ] + }, + { + "bom-ref": "a4a39cf5b008ea2a", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Mazatlan", + "hashes": [ + { + "alg": "SHA-1", + "content": "b95a3aa1ef177390a7c8c8ed20ef6c785883485c" + }, + { + "alg": "SHA-256", + "content": "972ebc94965c29a285412a68e853fc7729bd741b5be52edeb9f3b9a1a707ac43" + } + ] + }, + { + "bom-ref": "a5a258be78010959", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Mendoza", + "hashes": [ + { + "alg": "SHA-1", + "content": "a76cf095cb0ed10703f3c85b2d9a71d24d519beb" + }, + { + "alg": "SHA-256", + "content": "f5005f3971c083b81c94b0fa05262178468f7fb74462576a412f3d42b8dde50d" + } + ] + }, + { + "bom-ref": "5882418d2de2fced", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Menominee", + "hashes": [ + { + "alg": "SHA-1", + "content": "9c990d28995cc94bafb947838e91e2c6a98bc081" + }, + { + "alg": "SHA-256", + "content": "a9f238c519f7699a3bdd001ffb5588fc5c80329a14c95309aa424c0026440108" + } + ] + }, + { + "bom-ref": "5bccb37b54834a9d", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Merida", + "hashes": [ + { + "alg": "SHA-1", + "content": "6e1b686131de13c08420145d0f21482f50c5e3ac" + }, + { + "alg": "SHA-256", + "content": "a6352eb8ee46c326f0231e5e22ae330d465964514c21390e28aa5ddee377fb5c" + } + ] + }, + { + "bom-ref": "b6d93b55e99927df", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Metlakatla", + "hashes": [ + { + "alg": "SHA-1", + "content": "3273e15f439e1e11aaa295efb23d958a3f47b0ac" + }, + { + "alg": "SHA-256", + "content": "fc8c8661c4ebe17757c7fcc12b570674a0a84af90cdb36edf7e19d0293c36dfd" + } + ] + }, + { + "bom-ref": "abb266f01c535cd9", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Mexico_City", + "hashes": [ + { + "alg": "SHA-1", + "content": "b302b90247759fbd663cc375af4b950c7757941e" + }, + { + "alg": "SHA-256", + "content": "2b2e4e7d462f693d46142205a03882b383f3cfbc6eaa0a4c514fe71fd5112f12" + } + ] + }, + { + "bom-ref": "fa7778191f5e9aa4", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Miquelon", + "hashes": [ + { + "alg": "SHA-1", + "content": "ad885d883f932e876c32794a8fb89d777e79c33a" + }, + { + "alg": "SHA-256", + "content": "fa668103b3e90dc7ebbb2666fe3e76b29b15627b2eb6a82317a2f9b474ce98c2" + } + ] + }, + { + "bom-ref": "a67b44a4b017aaa9", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Moncton", + "hashes": [ + { + "alg": "SHA-1", + "content": "acbf1d07459a3b7adaeaeec2ec381e4aa61c264b" + }, + { + "alg": "SHA-256", + "content": "d587577011570e8271781f98b52f5ccb8650a7a1dc2c50789f4cb5d5d7e9c13a" + } + ] + }, + { + "bom-ref": "5446e6457b799bbc", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Monterrey", + "hashes": [ + { + "alg": "SHA-1", + "content": "f7145722a1b99d6645ee4e50284ba0af5720f999" + }, + { + "alg": "SHA-256", + "content": "a0334e1c8f6ebfdb959a536fea620a72031db45036d563864cdaba4e34b0c2c7" + } + ] + }, + { + "bom-ref": "3247afb499000cca", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Montevideo", + "hashes": [ + { + "alg": "SHA-1", + "content": "59f2a2ad905959d66047a742e7ae54203fbde17f" + }, + { + "alg": "SHA-256", + "content": "5717f3694cbcfdddb8b0ce33c5b50193f3cc1af97474230f0fe4f230d4769b01" + } + ] + }, + { + "bom-ref": "d4796e38ed3bc1ee", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Montreal", + "hashes": [ + { + "alg": "SHA-1", + "content": "c3c12775f021f944101bf960dfa4b392c5b48ae0" + }, + { + "alg": "SHA-256", + "content": "bd1fdaf567be65339c2fe8cadf9e690d0929548cd731edcb41ae7f322885a590" + } + ] + }, + { + "bom-ref": "f9a1aa35386240ac", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Nassau", + "hashes": [ + { + "alg": "SHA-1", + "content": "d8c61c85f823ffd277764baf52646a247f47a256" + }, + { + "alg": "SHA-256", + "content": "4ca3f90b3314d2fd13ba6310ac2e97a772dfdf1074ad87e9d2bc292549743ad2" + } + ] + }, + { + "bom-ref": "473b154752b4fbef", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/New_York", + "hashes": [ + { + "alg": "SHA-1", + "content": "1706f2e355174cb274f14fce57c79dc51d645575" + }, + { + "alg": "SHA-256", + "content": "9699b3dbf1b5a2fe33cc0eeb1bae542d83608786c0b1872b07b24adda81556a1" + } + ] + }, + { + "bom-ref": "2c9a377f882f7073", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Nipigon", + "hashes": [ + { + "alg": "SHA-1", + "content": "07fdd514959ac8a16e2a08288f903412f781c805" + }, + { + "alg": "SHA-256", + "content": "bedddedf42d1ecd3db1eeb61988fa1216f75b06c45a768822a16b4bf3e78542f" + } + ] + }, + { + "bom-ref": "6eabc6441299d978", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Nome", + "hashes": [ + { + "alg": "SHA-1", + "content": "c7c58c11806cdd649b569853b17ccfcb0a3baeff" + }, + { + "alg": "SHA-256", + "content": "2f167608a9d4171d89ee0a4d68c3ee845ebbd073e3759dc663a95dc8c865e4c1" + } + ] + }, + { + "bom-ref": "7294dd9d34b94c66", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Noronha", + "hashes": [ + { + "alg": "SHA-1", + "content": "7463d6f86dfd5e4590cfa67a1c4d66ee35fe118b" + }, + { + "alg": "SHA-256", + "content": "cc5b5c148b76dc58c925f589124f7f1ac05a52e9bc8f8cb0bf8bbef2b5779c78" + } + ] + }, + { + "bom-ref": "b33a360135a1b558", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/North_Dakota/Beulah", + "hashes": [ + { + "alg": "SHA-1", + "content": "7df91787b13ea67d6226d626ae11e5d84b1179d7" + }, + { + "alg": "SHA-256", + "content": "5a05c79be4ba9c4ed5a70aedbb8e83c2864c9ee5d974824130552d11097f654d" + } + ] + }, + { + "bom-ref": "7a8e982afbf5d2ad", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/North_Dakota/Center", + "hashes": [ + { + "alg": "SHA-1", + "content": "f78e004bd1a4f59f918da3fba9e1a261ecf4ca58" + }, + { + "alg": "SHA-256", + "content": "c4daf0f8f179948ca4f3edfef1c4bf6ea9926d157cbb83334d990c4f3ae76fb3" + } + ] + }, + { + "bom-ref": "f58926b661c65883", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/North_Dakota/New_Salem", + "hashes": [ + { + "alg": "SHA-1", + "content": "88da36a7aa3ecfdfca5480dc5f381a10aaf41f14" + }, + { + "alg": "SHA-256", + "content": "f728e13f15039666ade97ebb9e0e7d54b575495e14aa88ccf2761d29e5a390f4" + } + ] + }, + { + "bom-ref": "4c39c783f7542185", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Ojinaga", + "hashes": [ + { + "alg": "SHA-1", + "content": "66d477c00667d75459902693f2f844398f8b849b" + }, + { + "alg": "SHA-256", + "content": "e9cb05ec786e833e837b19a3d7bfe611e6d3ff3da1fc576fa5ea4f44c43f937f" + } + ] + }, + { + "bom-ref": "59efa0c7ed121bd5", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Pangnirtung", + "hashes": [ + { + "alg": "SHA-1", + "content": "96c1c7ecd3b0734074f9f2388ecd66d9e7964acc" + }, + { + "alg": "SHA-256", + "content": "c71e8ae865312e517ebc4076ecb9665c2cfdc7155549d18462e01275961925b8" + } + ] + }, + { + "bom-ref": "11d8a04286289486", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Paramaribo", + "hashes": [ + { + "alg": "SHA-1", + "content": "ac95bd0c866b405628685d462d93bc5d0dcdda42" + }, + { + "alg": "SHA-256", + "content": "cf4b95b3e776a776aaffb4c77cb62dcad960796b0876d0663c01ae3da38c078c" + } + ] + }, + { + "bom-ref": "fa1493654af04aee", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Phoenix", + "hashes": [ + { + "alg": "SHA-1", + "content": "b07023c58f0f07134b1fa44a7909483bc2ece29d" + }, + { + "alg": "SHA-256", + "content": "8a89f0e65cd0a0b2edbbf65a7a81441aa91073b133edac17c25c6c9f809b8995" + } + ] + }, + { + "bom-ref": "bea7c029d1d658fc", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Port-au-Prince", + "hashes": [ + { + "alg": "SHA-1", + "content": "53c15bf2fa7782bc15a8687a1cb7d8308d395ebe" + }, + { + "alg": "SHA-256", + "content": "aab1855d3200ed78c12406a44d8558a9a875dc57f94090b2c205811a92b5e066" + } + ] + }, + { + "bom-ref": "927ae03fe5388cd9", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Porto_Acre", + "hashes": [ + { + "alg": "SHA-1", + "content": "98e9d883dd26bbe4c274c4d8d676c2bcb42d1e27" + }, + { + "alg": "SHA-256", + "content": "90e09a708c3c756baf60fafda6f8a5f3316b8f0f13ae2433bcad860c74bd544c" + } + ] + }, + { + "bom-ref": "30e7d909d51e607e", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Porto_Velho", + "hashes": [ + { + "alg": "SHA-1", + "content": "f90471cd035d25edead4992f60dbc3a6eca0eea2" + }, + { + "alg": "SHA-256", + "content": "651eea662c20cfff098d84663237abba967604a6d0258d138d75e06ab483390b" + } + ] + }, + { + "bom-ref": "7374bb9894615250", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Puerto_Rico", + "hashes": [ + { + "alg": "SHA-1", + "content": "c5844b848fd8ed8ab2a728aff7a6ce46f95eeeca" + }, + { + "alg": "SHA-256", + "content": "a9e478dd8515a4c8086ff535afe44db1cf53b9400ec62aed7b6d122ecfb778f3" + } + ] + }, + { + "bom-ref": "eaffc8ba1702a489", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Punta_Arenas", + "hashes": [ + { + "alg": "SHA-1", + "content": "d7ca8a643873bf48ad4697d401c43e47ba80b040" + }, + { + "alg": "SHA-256", + "content": "300872a317db68e683587783e80e3a464c63971da1774b539fea0ee26763c451" + } + ] + }, + { + "bom-ref": "2b6eaaebe5e4cc74", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Rainy_River", + "hashes": [ + { + "alg": "SHA-1", + "content": "99f2f4a197a52778862adee4b1b7a593a43c695f" + }, + { + "alg": "SHA-256", + "content": "1680a0ae7e1d154aa9672b6e2d24155987de256acd7273f23177ef258d4ffe16" + } + ] + }, + { + "bom-ref": "85cc98a72a73adbf", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Rankin_Inlet", + "hashes": [ + { + "alg": "SHA-1", + "content": "5f30e146bb73e225902358bf4309e75a2ed5f5dd" + }, + { + "alg": "SHA-256", + "content": "1bb3cc33e21e5e7663a0cabcb02f9e7f74ee0619dcd0d84d4a4a31f611698b57" + } + ] + }, + { + "bom-ref": "9ab82e83855dec73", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Recife", + "hashes": [ + { + "alg": "SHA-1", + "content": "0ba2ca08f2fba631caea8fb6fc940d3026bc9ac4" + }, + { + "alg": "SHA-256", + "content": "4bf3764907eedcdc1325748d005e883ead0253178f552bf8c26f91c9472c5884" + } + ] + }, + { + "bom-ref": "5863cc301e8427f6", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Regina", + "hashes": [ + { + "alg": "SHA-1", + "content": "c9423136b4d214d9832eeeb9561b4b8058fead5f" + }, + { + "alg": "SHA-256", + "content": "7ef7b8f3a4e1baf07289907c77a4218ac0be68c7a24e980940a05cbba77e53c9" + } + ] + }, + { + "bom-ref": "7eff2080e21d8386", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Resolute", + "hashes": [ + { + "alg": "SHA-1", + "content": "0bbb9f0143829619a86c1d73e7db0bef63dbb063" + }, + { + "alg": "SHA-256", + "content": "2a208ed79da175c5081c8db0fb767d9b0e0270e4a73bb95f24ae0ffd22b6354f" + } + ] + }, + { + "bom-ref": "655205cbc11cef39", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Santarem", + "hashes": [ + { + "alg": "SHA-1", + "content": "cffc80e0c503d0567d0e6e27e8f8e2fc166c0157" + }, + { + "alg": "SHA-256", + "content": "5994056b5ce743dfdcdc80dba996df44665d743abbdff8d8841b7b4ac326339f" + } + ] + }, + { + "bom-ref": "bee4689f97a44e47", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Santiago", + "hashes": [ + { + "alg": "SHA-1", + "content": "99f95d99170d73e2a90aaacf6d17ec41d1e8ab3c" + }, + { + "alg": "SHA-256", + "content": "986a3d87481910c37ff5045ecb26e8d7832333bb9b8bf0cefa8f2518c787fcb5" + } + ] + }, + { + "bom-ref": "9053ec0a223960d9", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Santo_Domingo", + "hashes": [ + { + "alg": "SHA-1", + "content": "34ae761d5b22852d593396d7ba47682b06060f4c" + }, + { + "alg": "SHA-256", + "content": "24bf349defe5c3ed5d8950593acbcd57dc662784ddfae68b31cddfa02746f2ba" + } + ] + }, + { + "bom-ref": "3163e81d0a33749b", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Sao_Paulo", + "hashes": [ + { + "alg": "SHA-1", + "content": "119fc141a11808d15be7407b2894ef4601dbe919" + }, + { + "alg": "SHA-256", + "content": "30ef7b506e76ac5286ad4415d7daa8abf0af2b6c63abb540869a8dc1c61f28a0" + } + ] + }, + { + "bom-ref": "0042af14e527093f", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Scoresbysund", + "hashes": [ + { + "alg": "SHA-1", + "content": "b784fa1e86c247f48d02a4faddd8db6ed5ed9afa" + }, + { + "alg": "SHA-256", + "content": "fa41c201d42521e8a0db51e00fa9487fad84467b15706e00221088e217ba129d" + } + ] + }, + { + "bom-ref": "d1f052b0b59e7112", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Sitka", + "hashes": [ + { + "alg": "SHA-1", + "content": "a6f9b4f0b66aec72cdca591a856243d529776e95" + }, + { + "alg": "SHA-256", + "content": "81ba6e3b87b7f9c9814c4f607a3c722a0bbd8355ab1647c51847882b3a3c0628" + } + ] + }, + { + "bom-ref": "e55ce43482255194", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/St_Johns", + "hashes": [ + { + "alg": "SHA-1", + "content": "400e3b11cff8acf487e4739bad557c1b7a157364" + }, + { + "alg": "SHA-256", + "content": "10784794564849767481803ad10924bd7092c041b5e5859dc7cdf883abe13a7e" + } + ] + }, + { + "bom-ref": "8e669dd61a674854", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Swift_Current", + "hashes": [ + { + "alg": "SHA-1", + "content": "5e88cf6e6fbe05951f3950856c6a396994bbd5e9" + }, + { + "alg": "SHA-256", + "content": "7752d4a7cd93e6c9a16f89dfa148ce6ac6f491cf40359f9d6730e03b4aedf848" + } + ] + }, + { + "bom-ref": "5ebcd3490f0e32d6", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Tegucigalpa", + "hashes": [ + { + "alg": "SHA-1", + "content": "d469e4255a563de31fbd87ae8cd97598f32222c5" + }, + { + "alg": "SHA-256", + "content": "c37dd7463adb25b95fd20bd17473e710e03c9c5d36481b4626a82aabd7469983" + } + ] + }, + { + "bom-ref": "7c33ff6ebd2593fd", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Thule", + "hashes": [ + { + "alg": "SHA-1", + "content": "b6310a4db7591b006fa2cd5b1f33699cc482f54c" + }, + { + "alg": "SHA-256", + "content": "67e571d61867a4ea726d7b19f5fabca2a7751219685d57eee29570ec9225f0ea" + } + ] + }, + { + "bom-ref": "29f612ea206f0219", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Thunder_Bay", + "hashes": [ + { + "alg": "SHA-1", + "content": "fae15856122255c188a68d7f5b05424dd9a5dc77" + }, + { + "alg": "SHA-256", + "content": "2c04cafec84e648e5d1154986626b32ebdb0def10d7c8843d27bbee20ad82e5e" + } + ] + }, + { + "bom-ref": "7661525512dedb1d", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Vancouver", + "hashes": [ + { + "alg": "SHA-1", + "content": "067128b78f49dff6017a4bb46418bee49374b939" + }, + { + "alg": "SHA-256", + "content": "59f3b401ccdbabb740e3395b75233402d6d2e0590195df1e5d8e73e736158361" + } + ] + }, + { + "bom-ref": "57edd36ad3e71eba", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Whitehorse", + "hashes": [ + { + "alg": "SHA-1", + "content": "705d61b665f97bd0408f00cf6859b3e918832c4b" + }, + { + "alg": "SHA-256", + "content": "b4313b33ba86eccfb0375437fe893cf15f051a4c2dc59f3ad3b9fc2dfa8bbcc0" + } + ] + }, + { + "bom-ref": "bf81a1140faa39dc", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Winnipeg", + "hashes": [ + { + "alg": "SHA-1", + "content": "d0ef2e75dd47308f0e1cc9d58b76b475768291ff" + }, + { + "alg": "SHA-256", + "content": "a91e3074914af25d44e7428f07b7e15c46a9b1c61adf146d78058bfb95128031" + } + ] + }, + { + "bom-ref": "609fd2dbf1cd2b8d", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Yakutat", + "hashes": [ + { + "alg": "SHA-1", + "content": "8c0a3edc2d383d230aa884f8450b7beaf1faa8ad" + }, + { + "alg": "SHA-256", + "content": "a8d6177b9fb9653500c7a5468e35508251be2a6dce9040ad9ebfbffcd4cc3ad2" + } + ] + }, + { + "bom-ref": "1da5ce9f12049f0a", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Yellowknife", + "hashes": [ + { + "alg": "SHA-1", + "content": "f123d094a43aacf14f7785b5a6863d4b8bfcd6dc" + }, + { + "alg": "SHA-256", + "content": "ffb6c39b1c757ff250651391b07dc8d3e3ea361f837472ef57c62eea144677ef" + } + ] + }, + { + "bom-ref": "50c133454c87515e", + "type": "file", + "name": "/usr/share/zoneinfo/right/Antarctica/Casey", + "hashes": [ + { + "alg": "SHA-1", + "content": "a5c90e8ed6c6966cfb6d20f64f5e8c5c3dab20db" + }, + { + "alg": "SHA-256", + "content": "8d5daeee007f1c92a7749a2e4dfc4f53aac37d955e7fd0f942d09b7841a1cbb7" + } + ] + }, + { + "bom-ref": "6344e15e0e987e20", + "type": "file", + "name": "/usr/share/zoneinfo/right/Antarctica/Davis", + "hashes": [ + { + "alg": "SHA-1", + "content": "0d47244c320c6c7ce3734b6c2c6c4bca0b202d12" + }, + { + "alg": "SHA-256", + "content": "74c57bbabd9734817648bb1b717ba8cea2d000297a0c82d9d9f0ecfb5a6de509" + } + ] + }, + { + "bom-ref": "ad167785e17317b3", + "type": "file", + "name": "/usr/share/zoneinfo/right/Antarctica/DumontDUrville", + "hashes": [ + { + "alg": "SHA-1", + "content": "73c722527690eb102f9eaf304f2a68eeaeb22af8" + }, + { + "alg": "SHA-256", + "content": "02aadd2f58956d4ecf18d22258af85b368a0140656ef079ea81e0f9e3eae59ef" + } + ] + }, + { + "bom-ref": "932379496a49aece", + "type": "file", + "name": "/usr/share/zoneinfo/right/Antarctica/Macquarie", + "hashes": [ + { + "alg": "SHA-1", + "content": "f56cb025ab08e48a25e7ed310f40f8f9fb0ba091" + }, + { + "alg": "SHA-256", + "content": "44e9dda15fa60b0f03fc171c9f2de82bb18a0078fdc5a8f49f74d60729bcaee3" + } + ] + }, + { + "bom-ref": "6c1a5edf52222e7d", + "type": "file", + "name": "/usr/share/zoneinfo/right/Antarctica/Mawson", + "hashes": [ + { + "alg": "SHA-1", + "content": "c6d49ad45fdc14949e02b2f065e682f1886bd129" + }, + { + "alg": "SHA-256", + "content": "c21ee7da441169a32db233d5f712b0e0e9f467224c31005a6ee94791e80dce7d" + } + ] + }, + { + "bom-ref": "0bce7f8a2ad53b04", + "type": "file", + "name": "/usr/share/zoneinfo/right/Antarctica/Palmer", + "hashes": [ + { + "alg": "SHA-1", + "content": "1563fc36e17ea079e386e4f76be8cea5ba9125b7" + }, + { + "alg": "SHA-256", + "content": "3d776d3217806a1dfa38b342c7d413bf1c05d47e440625a25850f10de050175a" + } + ] + }, + { + "bom-ref": "d4e9fdf9b5f5591d", + "type": "file", + "name": "/usr/share/zoneinfo/right/Antarctica/Rothera", + "hashes": [ + { + "alg": "SHA-1", + "content": "fc1ce5a0154f6b04cc6ad26f724e7b80e7f1844e" + }, + { + "alg": "SHA-256", + "content": "6a17dce1f665a2ca8026fef6634fca93b698392000e97f89797ef44b57afa7ca" + } + ] + }, + { + "bom-ref": "bb6694b1eba8cb08", + "type": "file", + "name": "/usr/share/zoneinfo/right/Antarctica/Syowa", + "hashes": [ + { + "alg": "SHA-1", + "content": "305620cf0417376628c91b4c534656ab947b3af7" + }, + { + "alg": "SHA-256", + "content": "785f2980f27b1976e65a7e5bc7f1d944d5b7e78656a35b30ef8f144c35103a5b" + } + ] + }, + { + "bom-ref": "57a1f02bafb5251e", + "type": "file", + "name": "/usr/share/zoneinfo/right/Antarctica/Troll", + "hashes": [ + { + "alg": "SHA-1", + "content": "2aeddac6bb21e4d8c38f6115d8d5c10d75669b0b" + }, + { + "alg": "SHA-256", + "content": "4fe25a3e29129e9204e750a191c11202dc66e122423c1d97ea03d579182e38ac" + } + ] + }, + { + "bom-ref": "ffd51f7893ee83da", + "type": "file", + "name": "/usr/share/zoneinfo/right/Antarctica/Vostok", + "hashes": [ + { + "alg": "SHA-1", + "content": "4ac16b69d7ee7f799379c37425f2991932dbedd1" + }, + { + "alg": "SHA-256", + "content": "85a1b3ff9f71acab9c1e01cb31ee3e9330b9abe48a84763b8d35c6a3b7d6086c" + } + ] + }, + { + "bom-ref": "c0484763fb0162c9", + "type": "file", + "name": "/usr/share/zoneinfo/right/Arctic/Longyearbyen", + "hashes": [ + { + "alg": "SHA-1", + "content": "8f8bd76eceef514dbb868ccef4c7eeae9c6bf5a8" + }, + { + "alg": "SHA-256", + "content": "b9f4a8a248c4b945a12640b4be549baaa438a9c3472822028e9f4988cd4e8b63" + } + ] + }, + { + "bom-ref": "83c7786fcd88efc6", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Aden", + "hashes": [ + { + "alg": "SHA-1", + "content": "99427ded3b5fd88972874c3b3dd7ba695ae4bffe" + }, + { + "alg": "SHA-256", + "content": "f3f24b3aba19f09734826f156f5537eb97ef899b249ec673048e5d07369487c7" + } + ] + }, + { + "bom-ref": "88962f9705425a3c", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Almaty", + "hashes": [ + { + "alg": "SHA-1", + "content": "f5d183f61fee12467ce1ba86885dca2e06b28076" + }, + { + "alg": "SHA-256", + "content": "bb58e7c09cb5daf5f6afc61969735809085f8f7d1fb9d129f2dff6d52c2d5370" + } + ] + }, + { + "bom-ref": "09ed062ac9eb1f41", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Amman", + "hashes": [ + { + "alg": "SHA-1", + "content": "7182c18bff35717f222b23354bb5908144f0c546" + }, + { + "alg": "SHA-256", + "content": "0dfa946fc43a7d4ad00e75aba44720018d82f36411351b2e5a103dbfadaf0d8c" + } + ] + }, + { + "bom-ref": "8dd3acd742d08222", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Anadyr", + "hashes": [ + { + "alg": "SHA-1", + "content": "844a76a8ea5399baed7701a1317af9953418cfd1" + }, + { + "alg": "SHA-256", + "content": "723f952ffdde9c6027874689c1b831211ed782bcd1a78b0b3a63f9dd22b661f4" + } + ] + }, + { + "bom-ref": "41665e81bbc3ef96", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Aqtau", + "hashes": [ + { + "alg": "SHA-1", + "content": "3fbee42c963c39bb66056ca3ee0e2de30e7f6dc3" + }, + { + "alg": "SHA-256", + "content": "aee361faa20979a35b89ac0f538cb4b67c793a36ccfcd98bae1f0f1e2dce98e1" + } + ] + }, + { + "bom-ref": "dc3c13880c44bb72", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Aqtobe", + "hashes": [ + { + "alg": "SHA-1", + "content": "c187658a234fbaf4ad27cb86fa9939ede3129303" + }, + { + "alg": "SHA-256", + "content": "58034c93dece9d7b3b8f44e6d39318814c3a5810cd460e87d888c572e8794b17" + } + ] + }, + { + "bom-ref": "7d7420446a84e9ba", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Ashgabat", + "hashes": [ + { + "alg": "SHA-1", + "content": "142b9783e1d73939a27e2d02bc43c64e281a4d79" + }, + { + "alg": "SHA-256", + "content": "67ef3f1da89446f546c8f8767c16e3106e8c85df4a20d89bc1870f0ea174a20d" + } + ] + }, + { + "bom-ref": "71163992d7a5ac80", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Atyrau", + "hashes": [ + { + "alg": "SHA-1", + "content": "6a6503f18bcc10e2726eb4c1dda1d9acb1c9cfa8" + }, + { + "alg": "SHA-256", + "content": "37546c1d6704164b04d1126a889c03876bd08241f2fa70e8ec6d6f3012857651" + } + ] + }, + { + "bom-ref": "3410ab840916a71e", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Baghdad", + "hashes": [ + { + "alg": "SHA-1", + "content": "e53a20e870a2b3f18a4d4c44f25d269f53a05f99" + }, + { + "alg": "SHA-256", + "content": "71e50815aa9bfebe11c36f200503c2c62d89bf715a067175d2091185bb6b2829" + } + ] + }, + { + "bom-ref": "2ecda1f6411e5bb3", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Bahrain", + "hashes": [ + { + "alg": "SHA-1", + "content": "a4db805e5f5fe3209cf343bcd8a636663b4986b9" + }, + { + "alg": "SHA-256", + "content": "2e7b84c80828a81f1f7bbaf7355133a81ad96b1273a29c223acf12d1446d4922" + } + ] + }, + { + "bom-ref": "15c381cbd05e6da2", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Baku", + "hashes": [ + { + "alg": "SHA-1", + "content": "6bcb640895f9ee62f83f2156ff2505403bc5f294" + }, + { + "alg": "SHA-256", + "content": "3a06bcc490313e6868f2c50f64a724c494f39c23420e741d4e78208abdd5f69d" + } + ] + }, + { + "bom-ref": "8ba1a4358172f4e9", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Bangkok", + "hashes": [ + { + "alg": "SHA-1", + "content": "d010835725154ab03c21403d44bb954501a6b0ed" + }, + { + "alg": "SHA-256", + "content": "d91fabfc29473f96272f2e96868a44393d6ce11950b7a5ec32eae83dc142b4a4" + } + ] + }, + { + "bom-ref": "0353368bf59b5123", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Barnaul", + "hashes": [ + { + "alg": "SHA-1", + "content": "54f272abacc369ea7635d12dcd2a36945d27442e" + }, + { + "alg": "SHA-256", + "content": "0436ee225d77df15229ebf4e30079643bb2cf55131d60b1d6718ddbb77826710" + } + ] + }, + { + "bom-ref": "04e807102da3bd78", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Beirut", + "hashes": [ + { + "alg": "SHA-1", + "content": "808941b4dbf4d525ec577f8f47c3519f319aa8fc" + }, + { + "alg": "SHA-256", + "content": "3e24a502c1fb5fb0dd7a8c738f28074b8e785311ba73a33fb597c2172ca288a0" + } + ] + }, + { + "bom-ref": "5098a5f80ddb918c", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Bishkek", + "hashes": [ + { + "alg": "SHA-1", + "content": "ab6483b7cf54ca197f36507cd0650fefff41900a" + }, + { + "alg": "SHA-256", + "content": "9bab70e971735626c3169c9a45153d4da93114bfd8b7295e5d56fc0173cc26fd" + } + ] + }, + { + "bom-ref": "370d2b1189d21c8a", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Brunei", + "hashes": [ + { + "alg": "SHA-1", + "content": "8e370f0073fd6c86db67f13d84c0560c004dfee0" + }, + { + "alg": "SHA-256", + "content": "a44c283addb335506e1b7a9c288240d2c651e1bbfbfefd9cadfa7181aaf4b1ec" + } + ] + }, + { + "bom-ref": "efcbbc0112a11d30", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Calcutta", + "hashes": [ + { + "alg": "SHA-1", + "content": "f28c26c212d9cd35bee3af067a58f3e8122786e2" + }, + { + "alg": "SHA-256", + "content": "637147fe7b40e10955c08b61ecc5639148589ce9bd6939cf7b98bc02cccd5036" + } + ] + }, + { + "bom-ref": "edce828f0fdb1eaf", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Chita", + "hashes": [ + { + "alg": "SHA-1", + "content": "0461d4e24308235caec10a9c08d5bd30a21e8eea" + }, + { + "alg": "SHA-256", + "content": "d935e891890a25a2d1ebf88768f70193d23e3d6522c67ed4e4c1435fd9de6a0e" + } + ] + }, + { + "bom-ref": "7849dac1bd3cdce0", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Choibalsan", + "hashes": [ + { + "alg": "SHA-1", + "content": "6525a629b93c91b0eea30c6bab3c4c4af5ab7442" + }, + { + "alg": "SHA-256", + "content": "5e68707f2d985de61d9a1ca14134c5f96781eff2486e40be8d5b4d34708d59e2" + } + ] + }, + { + "bom-ref": "d38de6b5aba40e46", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Colombo", + "hashes": [ + { + "alg": "SHA-1", + "content": "5decf6ef7c188c3c242cd39c698ae385424e50e9" + }, + { + "alg": "SHA-256", + "content": "d2105ff2a10182bf68780abfa1b9a22574b1e30efe6a249b4f8e0f17058fa659" + } + ] + }, + { + "bom-ref": "c2df7b3bd7116259", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Dacca", + "hashes": [ + { + "alg": "SHA-1", + "content": "2d382ec97c1758d7fe9f9c04af82c7549193d83d" + }, + { + "alg": "SHA-256", + "content": "8b30cb0ad86ae48068d4d6293137bb66ac4ebc73000ba2cca9428ef13c244b8a" + } + ] + }, + { + "bom-ref": "759ce6ee67daa000", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Damascus", + "hashes": [ + { + "alg": "SHA-1", + "content": "cff80f629072511806b90c68dfba4dd4293ebf59" + }, + { + "alg": "SHA-256", + "content": "e23e8576a6f8b5b65a356e535ba0ffc916d211a155207e486dd40b1757f3b831" + } + ] + }, + { + "bom-ref": "5f6edfe557c7e8f5", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Dili", + "hashes": [ + { + "alg": "SHA-1", + "content": "dc611f17559cb5e3a167843ef3ca29ddca3d6b8e" + }, + { + "alg": "SHA-256", + "content": "1027c57d5d5094c84e80ab360790f0355acce56ec10c6df5567ad35baeba093b" + } + ] + }, + { + "bom-ref": "c30c831d31c4db13", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Dubai", + "hashes": [ + { + "alg": "SHA-1", + "content": "962d02721959a400cd0a2e57cf5757f080b323a5" + }, + { + "alg": "SHA-256", + "content": "86cb3519886f292920f8c8ff5b551bb66ab5c7ab559ef378584a464dfcc539fc" + } + ] + }, + { + "bom-ref": "a2d44859f48e37ba", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Dushanbe", + "hashes": [ + { + "alg": "SHA-1", + "content": "e95bb198c41ec035b48540525e3b32307ad76dfa" + }, + { + "alg": "SHA-256", + "content": "518c7e9aabe61a423f703f9285036c37b0b63db85614a54fc053b72dc0f7ac9f" + } + ] + }, + { + "bom-ref": "e361e41026013ac7", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Famagusta", + "hashes": [ + { + "alg": "SHA-1", + "content": "549f96cb12326a5bf789409cbf6b7a429b0c36c4" + }, + { + "alg": "SHA-256", + "content": "40438f760718c79a99e171a199690123f0cc531fef996423c2ca840d20b6bce9" + } + ] + }, + { + "bom-ref": "4382667166346a55", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Gaza", + "hashes": [ + { + "alg": "SHA-1", + "content": "ceadddec67bb38a70c63064ad6b95b2d1062091c" + }, + { + "alg": "SHA-256", + "content": "38e5830f0db3ca80955a4b7803928e21920902739012f76425652dad1ee76493" + } + ] + }, + { + "bom-ref": "25b56e897d193bfe", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Hebron", + "hashes": [ + { + "alg": "SHA-1", + "content": "6c8b3624214e3a555abce0d9f8c4c47f0ee9b352" + }, + { + "alg": "SHA-256", + "content": "190d10d40c9c8971f618d80f0ca79d1f304ba326a7466352497e6320c43d3f91" + } + ] + }, + { + "bom-ref": "4691fd5d9ba62d87", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Ho_Chi_Minh", + "hashes": [ + { + "alg": "SHA-1", + "content": "75c87f94f4c40cc829d9755a975dc600ed3c8e08" + }, + { + "alg": "SHA-256", + "content": "496bbfe0b2bbd4922f8a4a5cc56a405485c1b9df21375d75996ac5e3008f87b9" + } + ] + }, + { + "bom-ref": "f0ba14d520b6bc3a", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Hovd", + "hashes": [ + { + "alg": "SHA-1", + "content": "36a66f5a98a4f4c295db6a12fe33c1f76b064135" + }, + { + "alg": "SHA-256", + "content": "c51f36d33e1b9fc550b8dd1d2182d8b441a8c77d6f64a5a89859b901a08e2759" + } + ] + }, + { + "bom-ref": "10aaa2583486dafd", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Irkutsk", + "hashes": [ + { + "alg": "SHA-1", + "content": "9351a45a94d34b04c1378ea287fa553d6845d877" + }, + { + "alg": "SHA-256", + "content": "ad1c94f9d9a0e542c80d2b53c4980131675936f6d6e7f04615c1e5029ff1d643" + } + ] + }, + { + "bom-ref": "1a86600b94b55b90", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Jakarta", + "hashes": [ + { + "alg": "SHA-1", + "content": "fc2501f0bbf1ecd9213dd477548cfe2cc7f5a2de" + }, + { + "alg": "SHA-256", + "content": "1e1d6c8a2a336137b702b0e68da98b2b2c3135a1844f9bc17d05d0eff1ef18bd" + } + ] + }, + { + "bom-ref": "540fe6f5ec8b6975", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Jayapura", + "hashes": [ + { + "alg": "SHA-1", + "content": "505fddabfcc8c600ec8d18aa54c3217e5d77d3d7" + }, + { + "alg": "SHA-256", + "content": "ccfa8a6a43b97d5dd2e2c33f84951460b2bffcc1202919ef38c3b097a83167db" + } + ] + }, + { + "bom-ref": "984fe6798aa6cc41", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Kabul", + "hashes": [ + { + "alg": "SHA-1", + "content": "86b16da36122d6ddaf30f53ff4cfbcc148a1b734" + }, + { + "alg": "SHA-256", + "content": "94835befd0e3581a0cf3c5d3fe177b2f1319868077ccd423af2fda0996cfee7b" + } + ] + }, + { + "bom-ref": "01b5fbb37c886988", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Kamchatka", + "hashes": [ + { + "alg": "SHA-1", + "content": "289a1cd7ccf61e3b20325dd981c1fe68d2b0d1c5" + }, + { + "alg": "SHA-256", + "content": "bc897301c4b520c5fe1201efc6b656b77e54c55cec912beab9891463f79410f3" + } + ] + }, + { + "bom-ref": "b8ff2b3afaf7ffd7", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Karachi", + "hashes": [ + { + "alg": "SHA-1", + "content": "45d261db0c2a328997b0dbe0d672f3d605853ed6" + }, + { + "alg": "SHA-256", + "content": "08c8c89e2687b19464bc067b6b368bfe3106c980538c0b3314e7301e192a295a" + } + ] + }, + { + "bom-ref": "64b13e0ced6d6f5c", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Kashgar", + "hashes": [ + { + "alg": "SHA-1", + "content": "82323765804ef278c11d3c0595642cb83df0c92a" + }, + { + "alg": "SHA-256", + "content": "c73db62481070869d19d18143892e5fea592a147cc3a230b120d2b0663882591" + } + ] + }, + { + "bom-ref": "b9bdd8853d952e1f", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Kathmandu", + "hashes": [ + { + "alg": "SHA-1", + "content": "b6389d024e000921ca9393eba5c0ad14e29a68a6" + }, + { + "alg": "SHA-256", + "content": "c9482baab20e577e331c8c15889c2b881eff5de670ff0502c3c8bdc5e985c1cc" + } + ] + }, + { + "bom-ref": "2d393d4a20759a5b", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Khandyga", + "hashes": [ + { + "alg": "SHA-1", + "content": "77e698665941e9434003b102971a33a28814475e" + }, + { + "alg": "SHA-256", + "content": "79a1086c8573e9fc21ad02d2c092f00182fc14fecf7aee7df2c66d16d33f58d8" + } + ] + }, + { + "bom-ref": "8bf3cbe90565ffce", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Krasnoyarsk", + "hashes": [ + { + "alg": "SHA-1", + "content": "0f129239eb7bf428a9a66e9d6ae0bfb9d4e51705" + }, + { + "alg": "SHA-256", + "content": "1f2e856dd5b062136b649c0b86738d31ac218406fdee6d98f26b110c0e913287" + } + ] + }, + { + "bom-ref": "6c968ee3052c9d76", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Kuala_Lumpur", + "hashes": [ + { + "alg": "SHA-1", + "content": "fb035f04c8d9fccd66f7760d5e304c2833175887" + }, + { + "alg": "SHA-256", + "content": "b49df9efbe233fded04d2a35bafd4a2291fd7c91639a7761e5882d5824c8868e" + } + ] + }, + { + "bom-ref": "fc0c72245c176be6", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Kuching", + "hashes": [ + { + "alg": "SHA-1", + "content": "9d14443bf616aafed5f1c697c943019cfd194dec" + }, + { + "alg": "SHA-256", + "content": "217b0ff65b13b272a0661ebbbfb6cd392f13fdd0612dcfbe1077c40d2fcf58cb" + } + ] + }, + { + "bom-ref": "3973e0e2398eaeb2", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Macao", + "hashes": [ + { + "alg": "SHA-1", + "content": "ccaed6c3752ecfaadf3f361de8e89093b1014ed3" + }, + { + "alg": "SHA-256", + "content": "470b21048ae38a2d611012c63f0359ae5bf685afa696d9cdb2a17438635b5283" + } + ] + }, + { + "bom-ref": "25e62d28a87d8447", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Magadan", + "hashes": [ + { + "alg": "SHA-1", + "content": "c7657afa6701167c840d1827422866b216fc5525" + }, + { + "alg": "SHA-256", + "content": "4da1ed819b7a50248044e582cd1221e878cc104f429900dccda3d097b9ad6ad4" + } + ] + }, + { + "bom-ref": "44035fd9aed5edc0", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Makassar", + "hashes": [ + { + "alg": "SHA-1", + "content": "eb5c39a5d8f32ac23cea4d3f19ecb59f2d264693" + }, + { + "alg": "SHA-256", + "content": "6bb9b9d31d2f3c57b17a9ec143294ffaa86669e793adf98c5acd1a980d6d4125" + } + ] + }, + { + "bom-ref": "dc125bb8325436bf", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Manila", + "hashes": [ + { + "alg": "SHA-1", + "content": "ac1d20b0511f8b601069d63b0cd60771ed1032f2" + }, + { + "alg": "SHA-256", + "content": "676bd6835773f0de41e52285dbb78830de3f80d98097f06dfedafff34b6c40aa" + } + ] + }, + { + "bom-ref": "82f2023f2750e088", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Nicosia", + "hashes": [ + { + "alg": "SHA-1", + "content": "8a3e57105a56ea4d50737f3a73d7f099e523092c" + }, + { + "alg": "SHA-256", + "content": "b801d86c6b957dd1affe34a2d19a0c580be861d8ccd283d9f48e2dc991fe3696" + } + ] + }, + { + "bom-ref": "64e97608d94fa959", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Novokuznetsk", + "hashes": [ + { + "alg": "SHA-1", + "content": "d83f380ecb93a382edd2d857400076fd81b9b4a7" + }, + { + "alg": "SHA-256", + "content": "121a05f4f5f4f88638e53bd570db3a9f3c247d29020491e871c55df3febc59e0" + } + ] + }, + { + "bom-ref": "e1aa8c7a5410bd21", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Novosibirsk", + "hashes": [ + { + "alg": "SHA-1", + "content": "34c99afaecb0cd1333ba0bafb393481f57b2fed8" + }, + { + "alg": "SHA-256", + "content": "0efbee40872e742db4124508044fdabf5cbc616ed26dcfe5fb80e1a97b0f365d" + } + ] + }, + { + "bom-ref": "6c1f7cd3187a46d1", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Omsk", + "hashes": [ + { + "alg": "SHA-1", + "content": "2e02297aff287676e574169b2bcde7c26d58f627" + }, + { + "alg": "SHA-256", + "content": "64615d9337250ed8ef6a150d1b331947f4b75e3132d9319ad5243d07d41089d0" + } + ] + }, + { + "bom-ref": "bd43d2f89af8a9ee", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Oral", + "hashes": [ + { + "alg": "SHA-1", + "content": "cff575ad85880e882fc318f34662fdd2af965caa" + }, + { + "alg": "SHA-256", + "content": "f6881fc8bcbf070d6f8d5dac52f19fdf9162ce8d5144766b92620705fe82d59a" + } + ] + }, + { + "bom-ref": "7aa536160abac87f", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Pontianak", + "hashes": [ + { + "alg": "SHA-1", + "content": "582d71133328ae1862c3cc3a7cfbfe491a94ead0" + }, + { + "alg": "SHA-256", + "content": "5387a863122580120cb3ee351bcada3b3dfbf163424291b97bac4e2cabd9845f" + } + ] + }, + { + "bom-ref": "6df23e9d8b05a06f", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Pyongyang", + "hashes": [ + { + "alg": "SHA-1", + "content": "f0c5bc80ad77c81509ad2341346747c6ff11a984" + }, + { + "alg": "SHA-256", + "content": "c74b65040a8f280458f9f6054fdecb2b980510376426b6367a457ec0da0ac08d" + } + ] + }, + { + "bom-ref": "332f2aef379011da", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Qostanay", + "hashes": [ + { + "alg": "SHA-1", + "content": "4e50382b02c9053eb8f4afb923348a288037568c" + }, + { + "alg": "SHA-256", + "content": "c2fcd0ffd483e7c87cc92e63f5409cfa72e322ef99bfb89ff040ef53ce6f0170" + } + ] + }, + { + "bom-ref": "82da4b960c2d8e39", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Qyzylorda", + "hashes": [ + { + "alg": "SHA-1", + "content": "a2c99b49c636e5c460a40480d5ad10237f005a8e" + }, + { + "alg": "SHA-256", + "content": "4bb11726867dc275fd2622da77c437aedd48df9d2ffac75af12f3540408f13e5" + } + ] + }, + { + "bom-ref": "0d850f888addcf48", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Rangoon", + "hashes": [ + { + "alg": "SHA-1", + "content": "5d9f6fab9ab04d079cfd379ff38333b92ff1c5b4" + }, + { + "alg": "SHA-256", + "content": "a38bd662f07725a121cbb302b992167054cd598c5127c30514f1fe1fe0c8d70d" + } + ] + }, + { + "bom-ref": "ff7ebccee737c3c2", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Sakhalin", + "hashes": [ + { + "alg": "SHA-1", + "content": "d2c2c2630a7e4c8923b3ee9ac7234d2df2007e75" + }, + { + "alg": "SHA-256", + "content": "a0651f797d67edd06928f67bbebb2872fff7b5c8d42e3dbb5554dd66389d610a" + } + ] + }, + { + "bom-ref": "306083ca5a795c5a", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Samarkand", + "hashes": [ + { + "alg": "SHA-1", + "content": "87d3e6117db84a593bb5d79639ae36118545b6a9" + }, + { + "alg": "SHA-256", + "content": "8e8266acc24f1234e3df68f68e1d4c80e3c9c3ed313da024517f3051f9dcaa09" + } + ] + }, + { + "bom-ref": "a0d44b4a0ab390e9", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Srednekolymsk", + "hashes": [ + { + "alg": "SHA-1", + "content": "dbd01f4d811f80dc3196df983c3d4b261d9c5f39" + }, + { + "alg": "SHA-256", + "content": "bc4ac100afd7e317e5939451b677a707dc1a51e646f380bf56411916084a2f87" + } + ] + }, + { + "bom-ref": "8069af867a88b755", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Tashkent", + "hashes": [ + { + "alg": "SHA-1", + "content": "3ab62851d7a653cf74ef7ff6bbd344070013e5fb" + }, + { + "alg": "SHA-256", + "content": "7ef3e54ff15a28d5054bc7a3c2946ad05849d57a4cf0096f1982a59be031a207" + } + ] + }, + { + "bom-ref": "99cd0ac70240d02f", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Tbilisi", + "hashes": [ + { + "alg": "SHA-1", + "content": "e75fb851cb164dd03dee4bc4d803fe31e0464463" + }, + { + "alg": "SHA-256", + "content": "265b4e7c276a60c19c2039171c2b633b3b0c0d51c7d3d527a11c9eaa0b2b9ec7" + } + ] + }, + { + "bom-ref": "d080a98223c67bd4", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Thimbu", + "hashes": [ + { + "alg": "SHA-1", + "content": "2964637e375fac37e5aba18c67cb48c0a191e5ac" + }, + { + "alg": "SHA-256", + "content": "38acdb7ead0a0945764ce021f31292acba206c6361ec57eb56129a52d5efe650" + } + ] + }, + { + "bom-ref": "3404a689e051c380", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Tomsk", + "hashes": [ + { + "alg": "SHA-1", + "content": "8e5739350a3e49aa4639e0264d563d66bcfafae2" + }, + { + "alg": "SHA-256", + "content": "ec986c86975c8d0f95485b5d809100261dd19de6376d960672dd08671e8eb63e" + } + ] + }, + { + "bom-ref": "986b38b6e3500b9a", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Ulaanbaatar", + "hashes": [ + { + "alg": "SHA-1", + "content": "ec443858ad7d96bf5eb6297fe422c39fbb63111e" + }, + { + "alg": "SHA-256", + "content": "77dac4fa1d2f3d584ac760f2ae886c14d1c20c321865f5c28602038aeb43b0f4" + } + ] + }, + { + "bom-ref": "e06c2805718aad9c", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Ust-Nera", + "hashes": [ + { + "alg": "SHA-1", + "content": "ea5ead6649a3f2852b4e08d20cc89da99e0559e8" + }, + { + "alg": "SHA-256", + "content": "c7a0a40880eca39a3d0eeb389cb84bf23cb3b97d746989aac07478288fe4cb25" + } + ] + }, + { + "bom-ref": "938ae59489f3f925", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Vladivostok", + "hashes": [ + { + "alg": "SHA-1", + "content": "c7e3969c7d453945b8e7b4cf7058528cdca9d233" + }, + { + "alg": "SHA-256", + "content": "633d4328fec78ef09dc0bf58025da4a365176a1680f4c8c8cf90cef309e65236" + } + ] + }, + { + "bom-ref": "0a3213d7be499193", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Yakutsk", + "hashes": [ + { + "alg": "SHA-1", + "content": "304b0d6db4a66f832e82d996ada323dce5851229" + }, + { + "alg": "SHA-256", + "content": "d1fc7358bb9353f77a5c500910586619b82a7d3a3de096b25f90742eddc07d2d" + } + ] + }, + { + "bom-ref": "be97b6d9303dba8e", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Yekaterinburg", + "hashes": [ + { + "alg": "SHA-1", + "content": "c13f346c91585409cd615796636652c16c894fa4" + }, + { + "alg": "SHA-256", + "content": "d259b425879f1d3fea283f9ee237e4f11aa2e4bf918fc40cff782cb2fa4a4f36" + } + ] + }, + { + "bom-ref": "c2daec6fd80bdd82", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Yerevan", + "hashes": [ + { + "alg": "SHA-1", + "content": "8f97612887eb34934b940e40246209b8f17ba38d" + }, + { + "alg": "SHA-256", + "content": "5b7792e14dafe5e5cf54fb58169472bf364e7d841a08ef82224fd13c3f3d6b46" + } + ] + }, + { + "bom-ref": "121e432d70e31961", + "type": "file", + "name": "/usr/share/zoneinfo/right/Atlantic/Azores", + "hashes": [ + { + "alg": "SHA-1", + "content": "a560ade99fc52e14d69a1f8ad93488a62e26d635" + }, + { + "alg": "SHA-256", + "content": "bf6ed07f6b72df9243e62a64bca11608dcf4b7a0ef0231c3c3f819c1e74fdc2a" + } + ] + }, + { + "bom-ref": "415444bc488622d1", + "type": "file", + "name": "/usr/share/zoneinfo/right/Atlantic/Bermuda", + "hashes": [ + { + "alg": "SHA-1", + "content": "2b96dac052b2ba10e72d4964d3f8b5f9f47aa421" + }, + { + "alg": "SHA-256", + "content": "2099c0c4248915afca89fc7624c1498b569847f1ae314b5cf00d8f35ddbab912" + } + ] + }, + { + "bom-ref": "2fe48201aeaa5f27", + "type": "file", + "name": "/usr/share/zoneinfo/right/Atlantic/Canary", + "hashes": [ + { + "alg": "SHA-1", + "content": "aadb8f1b887a17085843d3d03b843780a732ffcf" + }, + { + "alg": "SHA-256", + "content": "f0bf9911e3c52ec1a10e1b9c0cb94d323c7425614948efc559ffe15c67fb48cd" + } + ] + }, + { + "bom-ref": "adf2dba1f2fd34f0", + "type": "file", + "name": "/usr/share/zoneinfo/right/Atlantic/Cape_Verde", + "hashes": [ + { + "alg": "SHA-1", + "content": "c85334e13dbdc9504479ba4e21bfc5f522c6192a" + }, + { + "alg": "SHA-256", + "content": "ab775c80ae7c0b1b6b02016a7ae7045fc69310869a35ac3027e5f6a900e96f8c" + } + ] + }, + { + "bom-ref": "cc19bf42270b83b2", + "type": "file", + "name": "/usr/share/zoneinfo/right/Atlantic/Faeroe", + "hashes": [ + { + "alg": "SHA-1", + "content": "3017faac2dd5869dd23ce1283e1101e7c6392d87" + }, + { + "alg": "SHA-256", + "content": "4f5a41b4ae349e1c6466cba14b5afaf7d7b4a9623fc8395173e4d3a2b4a5f90d" + } + ] + }, + { + "bom-ref": "137ab48087fa49ed", + "type": "file", + "name": "/usr/share/zoneinfo/right/Atlantic/Madeira", + "hashes": [ + { + "alg": "SHA-1", + "content": "b5f8e242df272d60db77e2ca36de0ef60f687738" + }, + { + "alg": "SHA-256", + "content": "35dedfac50f7e188bdf50bf3e03fd597e822d77b353461bbb60e3ffc3be1b71f" + } + ] + }, + { + "bom-ref": "a2ad949a1ed27c92", + "type": "file", + "name": "/usr/share/zoneinfo/right/Atlantic/South_Georgia", + "hashes": [ + { + "alg": "SHA-1", + "content": "da8c2d09b2fed4035d2e70393d85d0b717365c93" + }, + { + "alg": "SHA-256", + "content": "87c1e145862e19c3591293cebc524c2248485fc6d82c0b9f7f289eac3c665cb2" + } + ] + }, + { + "bom-ref": "535d9bfc9422dcce", + "type": "file", + "name": "/usr/share/zoneinfo/right/Atlantic/Stanley", + "hashes": [ + { + "alg": "SHA-1", + "content": "b04fab64ae4a30021d66b15182fa8a1c1dcdf1be" + }, + { + "alg": "SHA-256", + "content": "e0f88a4e32a223a054780193c34fbcfea7be9ac87493ddc98df5636868a69c44" + } + ] + }, + { + "bom-ref": "7b6b1fa216f225a7", + "type": "file", + "name": "/usr/share/zoneinfo/right/Australia/ACT", + "hashes": [ + { + "alg": "SHA-1", + "content": "cac2db2bac69b51e5d20165478c84a255fdd20d4" + }, + { + "alg": "SHA-256", + "content": "39b2517a2794a269b95d18a01123304b7a37ea101acb2a0e47cc08d1c568736b" + } + ] + }, + { + "bom-ref": "9a5619911894b355", + "type": "file", + "name": "/usr/share/zoneinfo/right/Australia/Adelaide", + "hashes": [ + { + "alg": "SHA-1", + "content": "2840c1d370441fd24918400cc935bd6ce229f1c8" + }, + { + "alg": "SHA-256", + "content": "4e72b2525aa821bb13e2f42b7dc4e830d3eb9a66aab03216dd3929e2f338d97d" + } + ] + }, + { + "bom-ref": "5e184d9cbbc2ecc7", + "type": "file", + "name": "/usr/share/zoneinfo/right/Australia/Brisbane", + "hashes": [ + { + "alg": "SHA-1", + "content": "e2c8de4bdea230735a35f5d90a5c90fdd0ddb1d7" + }, + { + "alg": "SHA-256", + "content": "6ec595e80af0cbc989924452e824b29b85a1dd5481b51bed85f4889706553f8f" + } + ] + }, + { + "bom-ref": "c210152c707cada9", + "type": "file", + "name": "/usr/share/zoneinfo/right/Australia/Broken_Hill", + "hashes": [ + { + "alg": "SHA-1", + "content": "f9193b51aca41cac14bbc930077dea7a4d6c285d" + }, + { + "alg": "SHA-256", + "content": "eedd5a3343cc03a474fa7bccbafc63837d2eef4abdb25403e7f97e1e9ea342df" + } + ] + }, + { + "bom-ref": "87114fc13c40962e", + "type": "file", + "name": "/usr/share/zoneinfo/right/Australia/Currie", + "hashes": [ + { + "alg": "SHA-1", + "content": "3aad58135862de02d06bb9e4c6324370dcc93907" + }, + { + "alg": "SHA-256", + "content": "8aa17850069f9cf005cb8eac2148a2ee23fb10935debb3d7a6836274d289a81b" + } + ] + }, + { + "bom-ref": "e655f2d6e5b84eb7", + "type": "file", + "name": "/usr/share/zoneinfo/right/Australia/Darwin", + "hashes": [ + { + "alg": "SHA-1", + "content": "9eb92f8918294fac2aaefe6e4f22d3cdd1db5cdb" + }, + { + "alg": "SHA-256", + "content": "625d71f702b37a502235ea8fcf478f54e33a1c3709f3caf511185ad242c3797c" + } + ] + }, + { + "bom-ref": "4e62d1de3835d82c", + "type": "file", + "name": "/usr/share/zoneinfo/right/Australia/Eucla", + "hashes": [ + { + "alg": "SHA-1", + "content": "dca8b15d24fa22300448580d35885558de238f1d" + }, + { + "alg": "SHA-256", + "content": "b6d509e81f6bd1c7fb6a6bad87b4f84784b4ee4c013f79dc0ef166add4ae9ae4" + } + ] + }, + { + "bom-ref": "648558eca90266ba", + "type": "file", + "name": "/usr/share/zoneinfo/right/Australia/LHI", + "hashes": [ + { + "alg": "SHA-1", + "content": "374b6bd4d211f736cd92d451bc530e5589779618" + }, + { + "alg": "SHA-256", + "content": "7546e925623ccba6e9a112784d57389b98b7cff5bd403e179625e2ee7dbf67e3" + } + ] + }, + { + "bom-ref": "d24185551756ce50", + "type": "file", + "name": "/usr/share/zoneinfo/right/Australia/Lindeman", + "hashes": [ + { + "alg": "SHA-1", + "content": "e99a1761f9b0a00d453eebddc346af3844ac8fa0" + }, + { + "alg": "SHA-256", + "content": "00b972c761aa9512be72915269db9230e5565204be6edf329e60d4cd3e8a6b18" + } + ] + }, + { + "bom-ref": "c01948ff95ecc739", + "type": "file", + "name": "/usr/share/zoneinfo/right/Australia/Melbourne", + "hashes": [ + { + "alg": "SHA-1", + "content": "b891cdb8fd941702696ae1d13a1cfecf58a6703f" + }, + { + "alg": "SHA-256", + "content": "cfb21c4abfcc33faaacc5a9a5960c2f93b476ebf22358929ad8c2dff2060257d" + } + ] + }, + { + "bom-ref": "85e344ca43bbb92d", + "type": "file", + "name": "/usr/share/zoneinfo/right/Australia/Perth", + "hashes": [ + { + "alg": "SHA-1", + "content": "d55ee2a5190177949a8e46d65ed4e833304dc690" + }, + { + "alg": "SHA-256", + "content": "e9e545b0d855f5f7359b4c6431a381178108a4f232eec8d6b617bc1e14a1ddff" + } + ] + }, + { + "bom-ref": "f76972c2da7906a2", + "type": "file", + "name": "/usr/share/zoneinfo/right/CET", + "hashes": [ + { + "alg": "SHA-1", + "content": "6e0b234c120375b4450be82a3330d057e07a4a7f" + }, + { + "alg": "SHA-256", + "content": "a9ab0888ef44577631cf924205405001a436f7d97899c8989907aba1b77a61be" + } + ] + }, + { + "bom-ref": "0e353ed6e0389038", + "type": "file", + "name": "/usr/share/zoneinfo/right/CST6CDT", + "hashes": [ + { + "alg": "SHA-1", + "content": "0388bf0d9ab324cddb3e31f36fb09663503197f6" + }, + { + "alg": "SHA-256", + "content": "fc4181f42429479b45e3b5d1e9d8775017957bca5c82fc9530769fcb81b2fe8e" + } + ] + }, + { + "bom-ref": "6c7374f497fa2aba", + "type": "file", + "name": "/usr/share/zoneinfo/right/Chile/EasterIsland", + "hashes": [ + { + "alg": "SHA-1", + "content": "96fbda051683fd28fe96e91087dfcfc0234855d1" + }, + { + "alg": "SHA-256", + "content": "27c072b5550ceea84e801fd932d838d9c6fde3fbe5f3fffd897dcf12f5f36bb1" + } + ] + }, + { + "bom-ref": "437fb5bc41ae987d", + "type": "file", + "name": "/usr/share/zoneinfo/right/Cuba", + "hashes": [ + { + "alg": "SHA-1", + "content": "1d6cecf4492080acfb6ae36dfada45cefb6e72c7" + }, + { + "alg": "SHA-256", + "content": "0d4bfd6b414442661f79556ac625c9f30e051af6694be67e3ad312e9e9589c50" + } + ] + }, + { + "bom-ref": "2f563588ffc6ab2a", + "type": "file", + "name": "/usr/share/zoneinfo/right/EET", + "hashes": [ + { + "alg": "SHA-1", + "content": "4056245a126c96bbe6569f8fc1b5219e9f7d0a94" + }, + { + "alg": "SHA-256", + "content": "7a4178745768032216702f31fa03f676677d5951079d7e17856ab4be0ddc4061" + } + ] + }, + { + "bom-ref": "76446dc7f64f73d4", + "type": "file", + "name": "/usr/share/zoneinfo/right/EST", + "hashes": [ + { + "alg": "SHA-1", + "content": "3d9cb9edbc96ef4fb129d7848894ba225dfd8d7d" + }, + { + "alg": "SHA-256", + "content": "e7c90a5d782d8843b78996aaf9cc7d332f29d923e8b41739fa0d523b6675a816" + } + ] + }, + { + "bom-ref": "242a05b2feaf9a50", + "type": "file", + "name": "/usr/share/zoneinfo/right/EST5EDT", + "hashes": [ + { + "alg": "SHA-1", + "content": "941ef3409d0e49b47dad5686b9a3c898f0c53b4e" + }, + { + "alg": "SHA-256", + "content": "0f7e22d9f44ba8c1c49034d187a3910eabea89ea5702363f55eadfcd12e01daa" + } + ] + }, + { + "bom-ref": "a6ca3a0a251460f9", + "type": "file", + "name": "/usr/share/zoneinfo/right/Egypt", + "hashes": [ + { + "alg": "SHA-1", + "content": "f58bf94b6198cce20fc06c3e27de22f7fc680619" + }, + { + "alg": "SHA-256", + "content": "a3c84ceb744bbb495b49ef286308143f267da03f75931b82fdcb5c5a3aebcdd8" + } + ] + }, + { + "bom-ref": "13c05f00e8a7b9e1", + "type": "file", + "name": "/usr/share/zoneinfo/right/Eire", + "hashes": [ + { + "alg": "SHA-1", + "content": "6902fc867206c1d0f9353184b204b24796409d6b" + }, + { + "alg": "SHA-256", + "content": "2004b00c415e097897394d0fcbe0e1b28f6db7b708f7777d51344a73de890132" + } + ] + }, + { + "bom-ref": "94e9aeba3cc5f940", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT+1", + "hashes": [ + { + "alg": "SHA-1", + "content": "fdcc1aacc5235b87ad071e270a19db05da7b64cf" + }, + { + "alg": "SHA-256", + "content": "2dfab8b47a9935ec8047b521c8a271ca2f4543ddd8c7e5615c489c3257824140" + } + ] + }, + { + "bom-ref": "5eb4595e51542f44", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT+10", + "hashes": [ + { + "alg": "SHA-1", + "content": "a57808a16067403a3bd9f77fb0f94ab2cc4e9262" + }, + { + "alg": "SHA-256", + "content": "daf919cae7f8cbe9932a89be91f2054c115838dae240389d4f4567a66287e531" + } + ] + }, + { + "bom-ref": "2837527f4bd84f0c", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT+11", + "hashes": [ + { + "alg": "SHA-1", + "content": "33567f4afd14308ed87d280dc626f292d5081603" + }, + { + "alg": "SHA-256", + "content": "ef109214424a5197b2a034d5a67606ffd2396fe37b464876745541e6ed9ca375" + } + ] + }, + { + "bom-ref": "f7ba31095743bdce", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT+12", + "hashes": [ + { + "alg": "SHA-1", + "content": "e49e8c3465ac865a583bfe3816a32002a7f485e4" + }, + { + "alg": "SHA-256", + "content": "b901dd04cd5aa1e1bc91e16f651751ff45a24c88a3b3236336044dccf7a21244" + } + ] + }, + { + "bom-ref": "5d99cf2d9650879a", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT+2", + "hashes": [ + { + "alg": "SHA-1", + "content": "22368a00ec8416e493cf5653b5f54412f10308b2" + }, + { + "alg": "SHA-256", + "content": "2d16fb68e998d75ad599d5f6101c45ac83f7dc02e8a4cca6f5fee81fa77ce668" + } + ] + }, + { + "bom-ref": "40c9f0996ad36fad", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT+3", + "hashes": [ + { + "alg": "SHA-1", + "content": "26f2fcba218aff8dc90d259ff698779ab37de657" + }, + { + "alg": "SHA-256", + "content": "3f6f463bbba4e762a8834597a7033c770d6af14b05a8b703b3d5d014990ea4b7" + } + ] + }, + { + "bom-ref": "17b973b04505ec38", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT+4", + "hashes": [ + { + "alg": "SHA-1", + "content": "55abc9146c1368b268ba752a2bf7f3e035a30810" + }, + { + "alg": "SHA-256", + "content": "932f8cf3e71116a6b3c4a73a68e8b9b78ad33772c11c38f6e49bd3b9e3508358" + } + ] + }, + { + "bom-ref": "3de38cfaa3ebc8f0", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT+5", + "hashes": [ + { + "alg": "SHA-1", + "content": "0bec061ea6a987be9d3860161582368e7078bb50" + }, + { + "alg": "SHA-256", + "content": "7469abe462d0ecd98bd657ac98e8a420ac3bc5c913a7d1d0b6571b9ad55ad659" + } + ] + }, + { + "bom-ref": "0d287b7ac2953d09", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT+6", + "hashes": [ + { + "alg": "SHA-1", + "content": "0c68868a43e3f1382cb6907d389f4c092b7f8fe6" + }, + { + "alg": "SHA-256", + "content": "516d359bfacd113d911e4a19d93dfb00c8d5a1de3d21b0356f520e4c45471fc9" + } + ] + }, + { + "bom-ref": "0dfd9dd39e24a287", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT+7", + "hashes": [ + { + "alg": "SHA-1", + "content": "a58779092ffa1d3824392b5e5f02af5a6a220059" + }, + { + "alg": "SHA-256", + "content": "48e9f1b3cbab9cc818adab2956234adfdf8eeacb51e442221282c073921462fb" + } + ] + }, + { + "bom-ref": "46bc9de2767d630d", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT+8", + "hashes": [ + { + "alg": "SHA-1", + "content": "29f8ed0d7e726040836d49e1adb3079b143be267" + }, + { + "alg": "SHA-256", + "content": "b8ac2c2ab11935c312c05c72a665b2567e6df428ee4229e688272e9aa3c71603" + } + ] + }, + { + "bom-ref": "07cac77230429426", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT+9", + "hashes": [ + { + "alg": "SHA-1", + "content": "501d447e7a30e8ea0eb6b56a4b7ea76ad7e1f084" + }, + { + "alg": "SHA-256", + "content": "66586cb177e807cf1f7f9382f7ffb847f97b579405f6a2a4258f3b601837441f" + } + ] + }, + { + "bom-ref": "75176109a44c4fb0", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT-1", + "hashes": [ + { + "alg": "SHA-1", + "content": "04cd6f2b42a036d12696b253b07f160fce50b5e1" + }, + { + "alg": "SHA-256", + "content": "3f64722b5d0b9119c26d97bea25b946aa46b440fbd0c5735276049ec0bc9ea9a" + } + ] + }, + { + "bom-ref": "79b3983b1740a872", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT-10", + "hashes": [ + { + "alg": "SHA-1", + "content": "03c399d6ab315d01a77ce85661f0ea346980fbeb" + }, + { + "alg": "SHA-256", + "content": "364a1c067f561986ce55d2a1c132d394bb12c024b41fd8185498605eb6d68996" + } + ] + }, + { + "bom-ref": "b5e9d95c9e3aeed7", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT-11", + "hashes": [ + { + "alg": "SHA-1", + "content": "371eefd97ffef98f45990d3b43f530c7ed519198" + }, + { + "alg": "SHA-256", + "content": "3c27112120e1d285b1feaaabd7d6086d82bb20498f8b3b79135345dcfb5beb34" + } + ] + }, + { + "bom-ref": "4ca2644cd99668da", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT-12", + "hashes": [ + { + "alg": "SHA-1", + "content": "0755b26be2dce97d235b1a7422c69fc4d56f9cd2" + }, + { + "alg": "SHA-256", + "content": "5f7d64bac9608ae4d00f58ce111c849fa5fd10c219dfe0a85d8d56e514fe386f" + } + ] + }, + { + "bom-ref": "00c704c63ae17f68", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT-13", + "hashes": [ + { + "alg": "SHA-1", + "content": "5b21a13ba26c8205733bb4a9e5bd39326984506e" + }, + { + "alg": "SHA-256", + "content": "9349e68a0ac17041b18afe3cdd474c562e9aac289fd76f12f5169b59754825b7" + } + ] + }, + { + "bom-ref": "efa086ef6087303a", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT-14", + "hashes": [ + { + "alg": "SHA-1", + "content": "6f4f5fe695ed9e9aae331842febed6c4ec94d3e3" + }, + { + "alg": "SHA-256", + "content": "a748a0ca53f5a510a3abb4a62ffbbe3ffc17e01f65cc6af01878c9df8b43b204" + } + ] + }, + { + "bom-ref": "5ebb7e09fecc6f55", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT-2", + "hashes": [ + { + "alg": "SHA-1", + "content": "da1d81b12927c73e55fa0df9dfa1a54fc1974ce2" + }, + { + "alg": "SHA-256", + "content": "41884dfc60a5b6ec4048d7d94db86d44ef512e166200d2de6843218bb97fb3c9" + } + ] + }, + { + "bom-ref": "130e42e29899fdc1", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT-3", + "hashes": [ + { + "alg": "SHA-1", + "content": "f6d860986e75e7d1b8d43a8cd9d9cbbf0a74ec58" + }, + { + "alg": "SHA-256", + "content": "5391c1595cf4e7df4e5fb4a390cab8cbf6c23644c8bf87a8d6fcc7753dd64f36" + } + ] + }, + { + "bom-ref": "2a29d460f45d9ebc", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT-4", + "hashes": [ + { + "alg": "SHA-1", + "content": "3e47f203564612e9451b55b269da509676ff230b" + }, + { + "alg": "SHA-256", + "content": "6e710ab5d40d44ae4b369a01ba839f5b52dd417565bd92ac663585a0372db6e1" + } + ] + }, + { + "bom-ref": "27019172f886a5c0", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT-5", + "hashes": [ + { + "alg": "SHA-1", + "content": "e34712c5d0529a5cfc0b6ddc9013fe581aaf6d7a" + }, + { + "alg": "SHA-256", + "content": "b4d14c0621108bb15b9e3a08479291c8afbb960ab9205cbd109cfeebe87465b9" + } + ] + }, + { + "bom-ref": "093e56d985da7c6f", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT-6", + "hashes": [ + { + "alg": "SHA-1", + "content": "92ec4fa174beeb698af50ece7f2f8f71c7c61df3" + }, + { + "alg": "SHA-256", + "content": "68d638daa5d47e0684ecb49c49fa0eba30e044df0b01655a366e4f2615bebe82" + } + ] + }, + { + "bom-ref": "4fe9dee74abb7d21", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT-7", + "hashes": [ + { + "alg": "SHA-1", + "content": "3afb8d3c965993422666e1c6bc672c16ff289889" + }, + { + "alg": "SHA-256", + "content": "bc003bfc68545e819c20e22e92f08f67caef03822ed8dc60231fe96028aa6072" + } + ] + }, + { + "bom-ref": "9fa80f26199e191d", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT-8", + "hashes": [ + { + "alg": "SHA-1", + "content": "48b5c11b339ac09c58ac6227092dd32bd3296130" + }, + { + "alg": "SHA-256", + "content": "c32fe342c3ef366d364c0edc9cdeb26a35a9868f599ee5cc05568145121ab2b8" + } + ] + }, + { + "bom-ref": "091db44234c00a37", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT-9", + "hashes": [ + { + "alg": "SHA-1", + "content": "445528637b4f84b4b871e28156dd5b57a743bfe0" + }, + { + "alg": "SHA-256", + "content": "3546d660bbebcf312239764bea8f0c39a91e719d2b8ac3e8bfed0d362d334479" + } + ] + }, + { + "bom-ref": "f801a85a7c597730", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Amsterdam", + "hashes": [ + { + "alg": "SHA-1", + "content": "fd3a7490000084bc5b153991854ffd23459cf9ee" + }, + { + "alg": "SHA-256", + "content": "ae32e0cb5a9ea89b38213163daf4feb4840a6b72e82d5464c647d0a618531697" + } + ] + }, + { + "bom-ref": "46477f2785789e3b", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Andorra", + "hashes": [ + { + "alg": "SHA-1", + "content": "dd6f420142459da04e62f668fe9524787f6047bc" + }, + { + "alg": "SHA-256", + "content": "1330f8009adea3c6e5134cdeadaedaa6fbbcd72b2753207ccbb953ccf5001d18" + } + ] + }, + { + "bom-ref": "4ffe1ac0a3945671", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Astrakhan", + "hashes": [ + { + "alg": "SHA-1", + "content": "33f2873baf2d930d4ce4d3b7c4530c5f76e55208" + }, + { + "alg": "SHA-256", + "content": "bcb19ce7f27da441ddc26ddb5efdb9683ece2df2f013e35333a113bca8d84ac0" + } + ] + }, + { + "bom-ref": "6c3805a769e6d7af", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Athens", + "hashes": [ + { + "alg": "SHA-1", + "content": "5228e98d91b3bb6927c4a344b26a8e50c227180e" + }, + { + "alg": "SHA-256", + "content": "0c23a856f0e9c47bba55cb81c426eca0d190aea6043b018e2affa55f21b43664" + } + ] + }, + { + "bom-ref": "492e7167c10f6baa", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Belgrade", + "hashes": [ + { + "alg": "SHA-1", + "content": "eb417cfdf7d2314e7674cfb080431bc3c8f5d96e" + }, + { + "alg": "SHA-256", + "content": "3debded934cdf0c472df38375bd1a69c9135fb21890969bd68a50956e7181e7c" + } + ] + }, + { + "bom-ref": "bfbb21c4f7d5f980", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Berlin", + "hashes": [ + { + "alg": "SHA-1", + "content": "93157edff271969281ab282c7a7fd641ec911e71" + }, + { + "alg": "SHA-256", + "content": "0b4604767edbae4fc43cd24bd96ec235232471fddff9dc15328c0b74d4c3dc90" + } + ] + }, + { + "bom-ref": "100e11f41ac90658", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Bratislava", + "hashes": [ + { + "alg": "SHA-1", + "content": "958ac8018574a49599dee4bee92b2364e943524d" + }, + { + "alg": "SHA-256", + "content": "faec42cc5833011f1a0f07219bbdea30138befb2c85258c5e5a0d37961a0bae7" + } + ] + }, + { + "bom-ref": "a5a62dc4d321acd2", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Brussels", + "hashes": [ + { + "alg": "SHA-1", + "content": "926249f0a4e0cf04ab4324c3a7293f1d17a9636c" + }, + { + "alg": "SHA-256", + "content": "5e8b1eb03d518914baa45eeaf1d19e491fd3ac24319f7f79ce904120bac7ae19" + } + ] + }, + { + "bom-ref": "d3c8f8e59c8bad72", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Bucharest", + "hashes": [ + { + "alg": "SHA-1", + "content": "000b86e383e76ceaacbfe4d665d099e08de08839" + }, + { + "alg": "SHA-256", + "content": "4052f7958d6994e77da457cc9255749b2df0a6270841d23cb93937d58e1f4ec2" + } + ] + }, + { + "bom-ref": "0a8240efe6776580", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Budapest", + "hashes": [ + { + "alg": "SHA-1", + "content": "8e157ea37fa076f3c447d31971b5efca084cc427" + }, + { + "alg": "SHA-256", + "content": "a865abc0602b509977e9ce086903fd3d5c97833f3479ea16abb6e53655f52377" + } + ] + }, + { + "bom-ref": "fd1e327b77549ad6", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Busingen", + "hashes": [ + { + "alg": "SHA-1", + "content": "14c0f0d7fb40dc47c1fb15ea993fdd62bcee49c1" + }, + { + "alg": "SHA-256", + "content": "46a95ddb0c5047f5b03c6ebdd2c35f87f59e6719d2a2385134408f826753e60f" + } + ] + }, + { + "bom-ref": "0ae9ce48fe067c0b", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Chisinau", + "hashes": [ + { + "alg": "SHA-1", + "content": "db71c40c1609cb799ffec9df0b01a6d53369c049" + }, + { + "alg": "SHA-256", + "content": "ea169f6577633d68990e74350d1f53c54d309ea1fb461bc235f6dc3c2bfd03c4" + } + ] + }, + { + "bom-ref": "fbab0e83cbfe8ed7", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Copenhagen", + "hashes": [ + { + "alg": "SHA-1", + "content": "c37b8543052a1b1573bf3c2f5f17c03dbb3a2228" + }, + { + "alg": "SHA-256", + "content": "cc7d0746ef3061d3de714685a821a4781abe813fdc6327f162fc70b0c22d62ac" + } + ] + }, + { + "bom-ref": "6a6470fd825e01a7", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Gibraltar", + "hashes": [ + { + "alg": "SHA-1", + "content": "213ba4a93b1499f81f2ac2ad1cac83a02b835e3e" + }, + { + "alg": "SHA-256", + "content": "16fa8d1cb048eb5d4defb961df736ae7db4d477b6f08b9d94572da2303681fe7" + } + ] + }, + { + "bom-ref": "7df076796aecf5d6", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Helsinki", + "hashes": [ + { + "alg": "SHA-1", + "content": "06c695b494b7ced5267909eca91e30a43854286f" + }, + { + "alg": "SHA-256", + "content": "a1894d50d5bc5e541f340d601cd8ababe40da90fa867cc7ed3215be1cd6282de" + } + ] + }, + { + "bom-ref": "49c3595855ec9887", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Kaliningrad", + "hashes": [ + { + "alg": "SHA-1", + "content": "ca72e7645149e3b7d31ce6741050dc42c645beed" + }, + { + "alg": "SHA-256", + "content": "5ec14b617cbe85a326677b570296a68c866c954a2c2d42e19387c06c29c635e3" + } + ] + }, + { + "bom-ref": "37cad97872ffbce5", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Kiev", + "hashes": [ + { + "alg": "SHA-1", + "content": "265c21dcbe99463de62eb9fd98548fd39d0bfc80" + }, + { + "alg": "SHA-256", + "content": "24c81f9cf9518821df795eb6c2660d1de98a29d658922bec6f70b05dc9f427e7" + } + ] + }, + { + "bom-ref": "bef196762d7d9217", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Kirov", + "hashes": [ + { + "alg": "SHA-1", + "content": "236494d43e86a45819d697328f80faf86bb6278e" + }, + { + "alg": "SHA-256", + "content": "50f356bc8b1d5232fe2746f29a440b7e4876a011ad0833d7a137c31d1c1721f0" + } + ] + }, + { + "bom-ref": "6b48088d6f1d0972", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Luxembourg", + "hashes": [ + { + "alg": "SHA-1", + "content": "611584023fcd146349ae89b39fe9c0d27d860117" + }, + { + "alg": "SHA-256", + "content": "af6eb983dfb45c9e363dafb9d26b8466179415e37ef87991b258523a36c18239" + } + ] + }, + { + "bom-ref": "b998741b4bbcbc14", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Madrid", + "hashes": [ + { + "alg": "SHA-1", + "content": "9d058dae9d93ab406bb9de3e726d827ecae45eb2" + }, + { + "alg": "SHA-256", + "content": "01a00debc9c470fe55edfa31568135024d2450ba34c1c88ed16d620b67af5d83" + } + ] + }, + { + "bom-ref": "4aa8e8c683b56696", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Malta", + "hashes": [ + { + "alg": "SHA-1", + "content": "23296ca060807c609dc6a8ffeceed54cd4f00f7c" + }, + { + "alg": "SHA-256", + "content": "80919f93a3dd18f905ec9ecc82797ea80f289fe05795f32bd9390dbed7ff7d05" + } + ] + }, + { + "bom-ref": "e76c7f49f97b7866", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Minsk", + "hashes": [ + { + "alg": "SHA-1", + "content": "4f8869789694ad9f39753ae662cb73c8d8b9272b" + }, + { + "alg": "SHA-256", + "content": "52c3784ac0b17fb45be32b9c06a10978f4c53763cf97cf1e9f54b16494fc2a84" + } + ] + }, + { + "bom-ref": "01ac65532d00a56b", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Monaco", + "hashes": [ + { + "alg": "SHA-1", + "content": "158eb001d2536a4883965973518db86e5159ca75" + }, + { + "alg": "SHA-256", + "content": "151e752ffb48b89cd97797534514648dc6c10529d67e460eb9a38b52c0703153" + } + ] + }, + { + "bom-ref": "2e93857c21535a38", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Paris", + "hashes": [ + { + "alg": "SHA-1", + "content": "d7c24907589f3f16aa030f138d3c46e39d571463" + }, + { + "alg": "SHA-256", + "content": "1cc008a471ce3cd84997bc18d5ac6eb87060ec02d8fa39e2d992abd2d8a4d404" + } + ] + }, + { + "bom-ref": "e3b1f975218fda7a", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Riga", + "hashes": [ + { + "alg": "SHA-1", + "content": "083081a784d56a55881b00b560ed68bde05e7188" + }, + { + "alg": "SHA-256", + "content": "543f059b0b90d203ac284c74a9eb1a43acfb6f6de2c3f618b9df24b1b53564d8" + } + ] + }, + { + "bom-ref": "c880ad610fed0447", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Rome", + "hashes": [ + { + "alg": "SHA-1", + "content": "7b5dc74813fb3b02138db543bb6127e15da5ea0a" + }, + { + "alg": "SHA-256", + "content": "1900f59ffcc6e5d11fca684876c3efdc837d8ac7c0432603a352b1f17a768b06" + } + ] + }, + { + "bom-ref": "2b78c67391aec18b", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Samara", + "hashes": [ + { + "alg": "SHA-1", + "content": "4262eeceaa3cf13aca23e06f098525c01a7383ac" + }, + { + "alg": "SHA-256", + "content": "757ea574d61782c57c7a27f4ca052c5277e3009f99dae455b486f7633fe05e17" + } + ] + }, + { + "bom-ref": "0628758eb0b0970f", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Saratov", + "hashes": [ + { + "alg": "SHA-1", + "content": "803363899b67201d23402e09beaeec32d7d94d37" + }, + { + "alg": "SHA-256", + "content": "d363c02f8c0d79a6b550239df44b5754efc54291da4d85d82e345f8edb3b6f68" + } + ] + }, + { + "bom-ref": "df119828290cdad0", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Simferopol", + "hashes": [ + { + "alg": "SHA-1", + "content": "5bc2a3f7285e8e36dd83cf3892283552de96ec01" + }, + { + "alg": "SHA-256", + "content": "c749271304d25a3772fec2f14e1a9fe29d66a993e88384b4fb8c35305208aa06" + } + ] + }, + { + "bom-ref": "867ca63ae68ca3e2", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Sofia", + "hashes": [ + { + "alg": "SHA-1", + "content": "d4194adab72550c866c1e8bb7f9b8c6ebc87c868" + }, + { + "alg": "SHA-256", + "content": "2d9a0ae58e5f9d5b678d68e5874b4d4bf0481a5decd3e9a097bed5f172a16cd0" + } + ] + }, + { + "bom-ref": "e20d6c7e826ade12", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Stockholm", + "hashes": [ + { + "alg": "SHA-1", + "content": "0a16e797e7f388b74dfbdc8a44d0daaa93096a00" + }, + { + "alg": "SHA-256", + "content": "57c9a0626fe99afad4195a26bdd53a0013d465c876e4970a365196242191009a" + } + ] + }, + { + "bom-ref": "2b2292378f6fb5da", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Tallinn", + "hashes": [ + { + "alg": "SHA-1", + "content": "9da67a9600699c4d875b157df5a7be5c44eee153" + }, + { + "alg": "SHA-256", + "content": "3ce08292fa8bf8241cfc2bd85b05dec3459e3b653a0333720380ef66841e9db1" + } + ] + }, + { + "bom-ref": "2af765ed57f42d68", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Tirane", + "hashes": [ + { + "alg": "SHA-1", + "content": "efb237cf3f14a5d46e484c63b28dfeba71d11f93" + }, + { + "alg": "SHA-256", + "content": "aecddbe0e431c06b7d90ce8c9be834f2aafeba71716812b98797272f72d54141" + } + ] + }, + { + "bom-ref": "0817206d4f5f830f", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Ulyanovsk", + "hashes": [ + { + "alg": "SHA-1", + "content": "94a03914fed7c8e79e96fcd700e81aed010048e5" + }, + { + "alg": "SHA-256", + "content": "1805377db5fc2f5733f3b229c5c3744321fc279b46fd004a5d0d7492a8c55f16" + } + ] + }, + { + "bom-ref": "f7058a400fec8273", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Uzhgorod", + "hashes": [ + { + "alg": "SHA-1", + "content": "96589b9fc6fb3a4cee1044eb139adab295231f82" + }, + { + "alg": "SHA-256", + "content": "7ede029288ea2e0af7da34e57ef3414159d510db5e41db99ef2bd0becff29c72" + } + ] + }, + { + "bom-ref": "cd4874bbee70208c", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Vienna", + "hashes": [ + { + "alg": "SHA-1", + "content": "e91939ca0343bb7643f3ecb15cc62982d37623e1" + }, + { + "alg": "SHA-256", + "content": "e69df04b842a8f784b6fc0adddf418fe2e3e635d7a0f1c60ed35c05c5c7e7b9d" + } + ] + }, + { + "bom-ref": "5c03e0147ed53e1d", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Vilnius", + "hashes": [ + { + "alg": "SHA-1", + "content": "77240d99110494ff581f409a4f91e8d666b9e7dd" + }, + { + "alg": "SHA-256", + "content": "60409d0bfd11d41ed822fbc0564645c41d63b215b8b1822c369a5af7824631fe" + } + ] + }, + { + "bom-ref": "58a222aedae04019", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Volgograd", + "hashes": [ + { + "alg": "SHA-1", + "content": "be9639833159c9bb7232a5f2f161772bfb96328a" + }, + { + "alg": "SHA-256", + "content": "42e86a9d73081569a4a32a84b165b6cdaf802b8b1f1f82bbe24acae6b6df1ce3" + } + ] + }, + { + "bom-ref": "c077a8388fd20535", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Zaporozhye", + "hashes": [ + { + "alg": "SHA-1", + "content": "7fcf6521972b53277cbdf211ac2a19a60bcd27d8" + }, + { + "alg": "SHA-256", + "content": "67d4c4e23f865eeb4fcc7779563524189dd9852d7547ab5b9374f637f4f3faef" + } + ] + }, + { + "bom-ref": "1f8786a09f8f8baa", + "type": "file", + "name": "/usr/share/zoneinfo/right/Factory", + "hashes": [ + { + "alg": "SHA-1", + "content": "d127aba9c4f7502db8494bb29749cd5fd864d5d4" + }, + { + "alg": "SHA-256", + "content": "08f3d0855f41ad3d49a9ddb59b6a2385c565d23daf5f80d8ed1a056978578c28" + } + ] + }, + { + "bom-ref": "af3e23a2e51c207f", + "type": "file", + "name": "/usr/share/zoneinfo/right/GB", + "hashes": [ + { + "alg": "SHA-1", + "content": "2e83295f3fd84a717bf6a2ed5b5eeef5567572fe" + }, + { + "alg": "SHA-256", + "content": "256c78cc8a67c9b7796737d6af67860246715133443319c41c5962d4d4411f6d" + } + ] + }, + { + "bom-ref": "6ed59fe403650418", + "type": "file", + "name": "/usr/share/zoneinfo/right/GMT", + "hashes": [ + { + "alg": "SHA-1", + "content": "32060a2dc263b14098b048fb911f8591df6f5900" + }, + { + "alg": "SHA-256", + "content": "da4f5e177e0e5138774896d0b82b59cce878cf3700734a5d6cdfac2f0f96eb28" + } + ] + }, + { + "bom-ref": "62718a4ee8074f95", + "type": "file", + "name": "/usr/share/zoneinfo/right/HST", + "hashes": [ + { + "alg": "SHA-1", + "content": "f9812f0cd5325024bb6f900e35b77c727f64b9e2" + }, + { + "alg": "SHA-256", + "content": "d6c14dcfa90060f656344c7f7078d78fd6046e38d850b78de5f066c0f3c0c655" + } + ] + }, + { + "bom-ref": "4ff9dc95362f383e", + "type": "file", + "name": "/usr/share/zoneinfo/right/Hongkong", + "hashes": [ + { + "alg": "SHA-1", + "content": "3b1ce0b4642612f04585640e884fda791daad6b5" + }, + { + "alg": "SHA-256", + "content": "f4f912297ccc9172c05ffe76746d938e832d85d3154b4638709753c0f4800c7c" + } + ] + }, + { + "bom-ref": "600a2cf25b5f00ec", + "type": "file", + "name": "/usr/share/zoneinfo/right/Iceland", + "hashes": [ + { + "alg": "SHA-1", + "content": "b87325e519c0dfbc498fe24dd8fb45cb8dd9e853" + }, + { + "alg": "SHA-256", + "content": "4a419779c4e933cb9ba204355f1a3649c72d443a95e0a6d81ff506ab467293c0" + } + ] + }, + { + "bom-ref": "65a9722e0c86720b", + "type": "file", + "name": "/usr/share/zoneinfo/right/Indian/Chagos", + "hashes": [ + { + "alg": "SHA-1", + "content": "d6d9d4dfd343d36ec38d1bee7038df5e20b0f975" + }, + { + "alg": "SHA-256", + "content": "f8cf0c5a28233ce257fb4b7fbcc360677dd2263eac889a65eb02c09e86541d72" + } + ] + }, + { + "bom-ref": "92d923d69c79a55d", + "type": "file", + "name": "/usr/share/zoneinfo/right/Indian/Christmas", + "hashes": [ + { + "alg": "SHA-1", + "content": "3466d5ce6150d0cfcfb8bc5a58697ba8f773c1ce" + }, + { + "alg": "SHA-256", + "content": "445dd04f82a28c39962af2578501b9d8cfc0e17ee56630a30c78bbd7e8de7ba1" + } + ] + }, + { + "bom-ref": "259e7028c64168c0", + "type": "file", + "name": "/usr/share/zoneinfo/right/Indian/Cocos", + "hashes": [ + { + "alg": "SHA-1", + "content": "070d0227bca6af35e785e444ca925a096c086328" + }, + { + "alg": "SHA-256", + "content": "73738c8c7d23555123841d80cf638f6e8e2be52f93c841b54d97edba207f9ad5" + } + ] + }, + { + "bom-ref": "fc5c1ece7920d44e", + "type": "file", + "name": "/usr/share/zoneinfo/right/Indian/Kerguelen", + "hashes": [ + { + "alg": "SHA-1", + "content": "136728160069ea43a57589626d6dff51b2e01ba0" + }, + { + "alg": "SHA-256", + "content": "ac6df2f0f61d25a524ae0c2aa10b663ab852dcbd51e97cec4db54843b8ee916e" + } + ] + }, + { + "bom-ref": "740c535fea035c21", + "type": "file", + "name": "/usr/share/zoneinfo/right/Indian/Mahe", + "hashes": [ + { + "alg": "SHA-1", + "content": "6f2ac38894d3fb259e148148380c3cb462325a6c" + }, + { + "alg": "SHA-256", + "content": "0b9df215f8fb10374001f1ba26b12929db2b7f3e9c9380b41653b5acba0ec1c2" + } + ] + }, + { + "bom-ref": "7604f1023e7787c2", + "type": "file", + "name": "/usr/share/zoneinfo/right/Indian/Maldives", + "hashes": [ + { + "alg": "SHA-1", + "content": "4bfde2f88401358cfc58d09c8d9640a20f860c36" + }, + { + "alg": "SHA-256", + "content": "f7e3029145d587448a750d43b4dd67a40bc9a6a2499916cd3093fbcc6a4d7b2c" + } + ] + }, + { + "bom-ref": "c07dd36402dfb8f5", + "type": "file", + "name": "/usr/share/zoneinfo/right/Indian/Mauritius", + "hashes": [ + { + "alg": "SHA-1", + "content": "9d0926b3bb4685f948d6841ad2481943e75c774b" + }, + { + "alg": "SHA-256", + "content": "930cd4dc0a8cbbbbebd33c61edf12c5431e3263b3748cdb6ac0c1afba39c8623" + } + ] + }, + { + "bom-ref": "4a87e1674ba8240f", + "type": "file", + "name": "/usr/share/zoneinfo/right/Indian/Reunion", + "hashes": [ + { + "alg": "SHA-1", + "content": "adcdaf71e46938190e5e2eb1d5b7e4baea23431a" + }, + { + "alg": "SHA-256", + "content": "f3460ec007959b0ed112cdc75fd1decf42969ab272cdb157edf9c3a040c6c279" + } + ] + }, + { + "bom-ref": "62e35b7040f9c87c", + "type": "file", + "name": "/usr/share/zoneinfo/right/Iran", + "hashes": [ + { + "alg": "SHA-1", + "content": "b8a7703b3dbb09aed48ec04fdd029fff6d239513" + }, + { + "alg": "SHA-256", + "content": "c5940a0ac0a0fb9c21f747d475f7b30031ec8c2700fbfa1bfd1496724c953715" + } + ] + }, + { + "bom-ref": "b9671e9738df13cc", + "type": "file", + "name": "/usr/share/zoneinfo/right/Israel", + "hashes": [ + { + "alg": "SHA-1", + "content": "28c9d09f5ee8487928b01241064447e1ed269026" + }, + { + "alg": "SHA-256", + "content": "80aeeae1c2240a9fe9fd82ec889da6acc3e2e284d4a051343ff35cb79e147af0" + } + ] + }, + { + "bom-ref": "7df455f42ca8cbb0", + "type": "file", + "name": "/usr/share/zoneinfo/right/Jamaica", + "hashes": [ + { + "alg": "SHA-1", + "content": "8ee6e0cd229bfc34dd4c598e42f69bed37612dda" + }, + { + "alg": "SHA-256", + "content": "47ddec901639efbe7268363dcc0d8b92a855372b0cae12720d68cce9a8974fdb" + } + ] + }, + { + "bom-ref": "78691894ed252e3e", + "type": "file", + "name": "/usr/share/zoneinfo/right/Japan", + "hashes": [ + { + "alg": "SHA-1", + "content": "7e8294296c3c4285d8fd73af73cb7c98e619a60e" + }, + { + "alg": "SHA-256", + "content": "1ecabb9dd5bcee432606c243ffd05fc8f1f50ec8f531dfaf3dd7a872160814f0" + } + ] + }, + { + "bom-ref": "9368686d1874aa8a", + "type": "file", + "name": "/usr/share/zoneinfo/right/Kwajalein", + "hashes": [ + { + "alg": "SHA-1", + "content": "4758b52fe69262d8de90943bd55c5dfd1d867278" + }, + { + "alg": "SHA-256", + "content": "f85d2a961799deb5cb0bd7a45974d7cdfbedeac8a3b82330512b0b1ccb7cd8eb" + } + ] + }, + { + "bom-ref": "3c0c9c3fdebbb7f5", + "type": "file", + "name": "/usr/share/zoneinfo/right/Libya", + "hashes": [ + { + "alg": "SHA-1", + "content": "9e8c2725e4959d29c548cca677a25f874c2d2865" + }, + { + "alg": "SHA-256", + "content": "72bb85f8ac4ec74b2ae92214c047c82f1f39c9c0785d0f54e152b8c1d940adda" + } + ] + }, + { + "bom-ref": "d4ddbaaeda6975e5", + "type": "file", + "name": "/usr/share/zoneinfo/right/MET", + "hashes": [ + { + "alg": "SHA-1", + "content": "a0ea3cb09c579c288b2d94ea3a05d8459b34e12f" + }, + { + "alg": "SHA-256", + "content": "735b7a481c6b4024076996235dc00c88eba04788ea0d2320f52f3b6f832e2c5c" + } + ] + }, + { + "bom-ref": "32b08103305a6263", + "type": "file", + "name": "/usr/share/zoneinfo/right/MST", + "hashes": [ + { + "alg": "SHA-1", + "content": "f30a44a046b19f0fec016f3fd1180d64963d538f" + }, + { + "alg": "SHA-256", + "content": "d7ed7889d7e664fa5f24d3ebca03abc5e6f4c1af886e13b6d057d0aa4009a953" + } + ] + }, + { + "bom-ref": "2732b5ea3f8d40ba", + "type": "file", + "name": "/usr/share/zoneinfo/right/MST7MDT", + "hashes": [ + { + "alg": "SHA-1", + "content": "b9666da0bde1862a824c609e2fa13d6cb4160f07" + }, + { + "alg": "SHA-256", + "content": "f5bff9e9551d99b333440822fd3fa74d2bf03b0303585ce0705557b869e47e83" + } + ] + }, + { + "bom-ref": "4843181646276735", + "type": "file", + "name": "/usr/share/zoneinfo/right/NZ", + "hashes": [ + { + "alg": "SHA-1", + "content": "e00942d422cccaf683fe0f6ca58898074879797a" + }, + { + "alg": "SHA-256", + "content": "c6fa7d47e6fb209806155ca05d2d0721726515ad678714f3197b9daeb9da3a96" + } + ] + }, + { + "bom-ref": "161c7a28f3d2c411", + "type": "file", + "name": "/usr/share/zoneinfo/right/NZ-CHAT", + "hashes": [ + { + "alg": "SHA-1", + "content": "19dbd397eb53c05564c6541f9637da885ddb8b92" + }, + { + "alg": "SHA-256", + "content": "7d7cab36a76aa5df26ae237bb5b1f4abb4efbc7eb4807dabe74540ef5187a25d" + } + ] + }, + { + "bom-ref": "3f91e7b1848eefa4", + "type": "file", + "name": "/usr/share/zoneinfo/right/Navajo", + "hashes": [ + { + "alg": "SHA-1", + "content": "39335f755a05ac949b22c12fbc24e6703cec03bf" + }, + { + "alg": "SHA-256", + "content": "7448c66048e5489a28ecad3adc495351163e62cedff714bec6d15506a9e1f548" + } + ] + }, + { + "bom-ref": "290e3f78acbf5fff", + "type": "file", + "name": "/usr/share/zoneinfo/right/PRC", + "hashes": [ + { + "alg": "SHA-1", + "content": "605d9acf8e50a8c7bded9455e067592bf185795d" + }, + { + "alg": "SHA-256", + "content": "add747558dc8f3175776014d9653cf734a761b95dec62f06a3922bfce9f82b6e" + } + ] + }, + { + "bom-ref": "291b73c6c23ad0d1", + "type": "file", + "name": "/usr/share/zoneinfo/right/PST8PDT", + "hashes": [ + { + "alg": "SHA-1", + "content": "5f16aef0d55587d87a93982ff498183a87058c71" + }, + { + "alg": "SHA-256", + "content": "f08ae6766d50d2008608f2e668ff34560eef0fb62b3e60df8c019e04cb914780" + } + ] + }, + { + "bom-ref": "9b9cc63013c3496c", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Apia", + "hashes": [ + { + "alg": "SHA-1", + "content": "aa21b0a26e2018b36e368eb06af9b3fa6a55e414" + }, + { + "alg": "SHA-256", + "content": "3b8ceeb83ab926790b5ae3dacbf350c1a67f014b0794bcafe42616944d52a1a6" + } + ] + }, + { + "bom-ref": "7de7b2fbbea3eda1", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Bougainville", + "hashes": [ + { + "alg": "SHA-1", + "content": "cd141795e0c9775ff08ef8f8885ee724f9ffabdd" + }, + { + "alg": "SHA-256", + "content": "f6be590e2ca7b1132a89a2347e6bab35f303881e27a95a3768fbe2044fd2da9b" + } + ] + }, + { + "bom-ref": "cf88890984baca85", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Chuuk", + "hashes": [ + { + "alg": "SHA-1", + "content": "8956587666fd592f63acc1cf669f1e12c505de94" + }, + { + "alg": "SHA-256", + "content": "9edef2327e3ea2e74d2eb9d2ce91dbfcc72ee9c46541cfd686f0eda9989942c1" + } + ] + }, + { + "bom-ref": "d9fd79a79924dfd5", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Efate", + "hashes": [ + { + "alg": "SHA-1", + "content": "6c1c7acb66631ba9675a3827bf78ec48a78d66fb" + }, + { + "alg": "SHA-256", + "content": "d8b5b1f416db9fe13eb83ae113aef84af8c21dc65bbda12f7c284f2931dfcd71" + } + ] + }, + { + "bom-ref": "af730b7d2b708e95", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Enderbury", + "hashes": [ + { + "alg": "SHA-1", + "content": "0b0d21ed8c36efb77e51345d1a29b87dc138f20d" + }, + { + "alg": "SHA-256", + "content": "8757354f311a09599c3eac732b4cafe172c311a15291a96b95f659038ba025cf" + } + ] + }, + { + "bom-ref": "422011ee90854f0c", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Fakaofo", + "hashes": [ + { + "alg": "SHA-1", + "content": "91680bf344d82ae375428043b084bba6aeab52c1" + }, + { + "alg": "SHA-256", + "content": "250e6d05b76670206d86dbf786f8c671e7ee0e3260fa3cf728246f05e40117f2" + } + ] + }, + { + "bom-ref": "c9e84a9f0c6a44d0", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Fiji", + "hashes": [ + { + "alg": "SHA-1", + "content": "5ce359cb780e994bedaa80c6c8c259996f359b59" + }, + { + "alg": "SHA-256", + "content": "5adaad4c4c3d28f31f828259476d05e117d9c69ed6ae5feaf83687c9666a6c1b" + } + ] + }, + { + "bom-ref": "82e9413b4afe2636", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Funafuti", + "hashes": [ + { + "alg": "SHA-1", + "content": "d086249279c082e45724017fcb906a2983567c67" + }, + { + "alg": "SHA-256", + "content": "3a9da5b61aad5ea62609b9b7b6c838e38129f7c1722f3c078ad2588aafbe0428" + } + ] + }, + { + "bom-ref": "60f5107ea0b144fe", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Galapagos", + "hashes": [ + { + "alg": "SHA-1", + "content": "bfb607ad112688c8d546b976a99b51096dd415a8" + }, + { + "alg": "SHA-256", + "content": "6d318df273394bf526ef4318eecfc047e55dda60fb4791bda097d0ba7e52a8c8" + } + ] + }, + { + "bom-ref": "762341f48321f0f7", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Gambier", + "hashes": [ + { + "alg": "SHA-1", + "content": "d25d3c7cdd0f3bc6cedfd8d15b2c9cb8439e33af" + }, + { + "alg": "SHA-256", + "content": "2d89a421366c5757aa91f50667646b760032b5f4732a53374e4a05b0045d6483" + } + ] + }, + { + "bom-ref": "a76444c2c8e746f5", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Guadalcanal", + "hashes": [ + { + "alg": "SHA-1", + "content": "c6f3e78ee3b7df56549c9b0efd719063c72de5d6" + }, + { + "alg": "SHA-256", + "content": "fe837664f234ac8eb7598cc4df8f9bd1df7afc34d9c5905001cfdc3241e2ea73" + } + ] + }, + { + "bom-ref": "328a7573406b0193", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Guam", + "hashes": [ + { + "alg": "SHA-1", + "content": "cd9c9289b06c0ca2e3adb521c8e8b59ec5021b9c" + }, + { + "alg": "SHA-256", + "content": "2e85a11e3769f6576cc0131f7a59d3d145639f527548d59638086ae4b09a1d13" + } + ] + }, + { + "bom-ref": "49388594778e9c21", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Honolulu", + "hashes": [ + { + "alg": "SHA-1", + "content": "da20c0e6d70b3debc00034951cc016a1b37beb01" + }, + { + "alg": "SHA-256", + "content": "93c484f1a3546cf33ee6bcbc52494b4e91d7c5d8d6dc9cc6a73751f8d8235cb3" + } + ] + }, + { + "bom-ref": "ce322f77437e15b9", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Kiritimati", + "hashes": [ + { + "alg": "SHA-1", + "content": "18a675209605e37454a2a9794e51c5f08b0ac44f" + }, + { + "alg": "SHA-256", + "content": "f33ea162876a1311c2d6a974cf7f079893bdac950dbd180e2cfb107a879ab303" + } + ] + }, + { + "bom-ref": "26647ed0f745233d", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Kosrae", + "hashes": [ + { + "alg": "SHA-1", + "content": "4d9aa51a6b1c1e61810fd35e505fd7880b27921b" + }, + { + "alg": "SHA-256", + "content": "572fb52c2262c3aeda2aef85157c862a305e99c15a5a673b081a01c9dd89c3ee" + } + ] + }, + { + "bom-ref": "935972dd6d248adc", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Majuro", + "hashes": [ + { + "alg": "SHA-1", + "content": "f1a44373e1456df2b3327b307ca5f2df4cd16949" + }, + { + "alg": "SHA-256", + "content": "6298dff3baf870ed80da5e52a282ffdb0b9ac6ccf2c1a2ed4d910aef532dbf74" + } + ] + }, + { + "bom-ref": "977bc9518708a32d", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Marquesas", + "hashes": [ + { + "alg": "SHA-1", + "content": "0b969d2c5c307f4cf0e4c3203df5983700dfe599" + }, + { + "alg": "SHA-256", + "content": "8bddb6881492ed79f799832454b02809ad7922791994b9c19f98094dc4206647" + } + ] + }, + { + "bom-ref": "65c30ee31ac865ad", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Midway", + "hashes": [ + { + "alg": "SHA-1", + "content": "0a749023cb5dc6fb6584a5c2914d350bafdce1f5" + }, + { + "alg": "SHA-256", + "content": "c996db6822af6b663b37e0c8750132432169950eed2c24bab4c9f843475b5cb5" + } + ] + }, + { + "bom-ref": "62d467e7957c7990", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Nauru", + "hashes": [ + { + "alg": "SHA-1", + "content": "b2a14530f173f1234b6544d2d66188d681c759d6" + }, + { + "alg": "SHA-256", + "content": "7e240f6870254d1f701d3d480248add43b0648f75dff3269d926ea3b2d703a9a" + } + ] + }, + { + "bom-ref": "bbb7c6e759dd5463", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Niue", + "hashes": [ + { + "alg": "SHA-1", + "content": "1dd8bd1d402c1b56e2ed70e198801b9c82e99468" + }, + { + "alg": "SHA-256", + "content": "2eecd96d4056c59d3db04eea43c3f1cb491398d84732d88a500b13e15624eb57" + } + ] + }, + { + "bom-ref": "44e491d8915fdf78", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Norfolk", + "hashes": [ + { + "alg": "SHA-1", + "content": "f305fcf22f280b98d7b326fc7e8bd8ac115d4585" + }, + { + "alg": "SHA-256", + "content": "8c5874c6ab78e49f434f7ca29ac0303b59d2dace69ef0e3fdd6bf6a566bfbc6a" + } + ] + }, + { + "bom-ref": "8c815f71372193a2", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Noumea", + "hashes": [ + { + "alg": "SHA-1", + "content": "e685069b620a855a00a84813620048431e5abc94" + }, + { + "alg": "SHA-256", + "content": "5e4a79b64ba530ff85ee0747c693d00efb94d7625cc70a4a99557fcc4fa60ae2" + } + ] + }, + { + "bom-ref": "bb030883338f7989", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Palau", + "hashes": [ + { + "alg": "SHA-1", + "content": "437ca554d518af6373d38ff478326551b4a62da3" + }, + { + "alg": "SHA-256", + "content": "fa7e4882188f567514105374c59a5b95bf1c82bfa8216c52fc6f247d57a56cdf" + } + ] + }, + { + "bom-ref": "fbc3ab6b03defc8d", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Pitcairn", + "hashes": [ + { + "alg": "SHA-1", + "content": "6c9b71ab5c4682512994ff245554d02759a4897d" + }, + { + "alg": "SHA-256", + "content": "05ab1d75088ddcaa01f819e2820a2e84285ee261c574e25f3a1f026f05d440a1" + } + ] + }, + { + "bom-ref": "05c743df7db292d2", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Pohnpei", + "hashes": [ + { + "alg": "SHA-1", + "content": "4667a298abf0e5de843060d7fbbf8c871db74e0e" + }, + { + "alg": "SHA-256", + "content": "68eec56a56e1a4eed4d7cb732995e773a0d46f84c29c55875e24df333e6a6c27" + } + ] + }, + { + "bom-ref": "37916b85d4758ebc", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Port_Moresby", + "hashes": [ + { + "alg": "SHA-1", + "content": "6e88bd35c86c02f6d1baf30018a0b4e121992073" + }, + { + "alg": "SHA-256", + "content": "627805f2b9bf76f41742808c227b3bfd443e2ef73e5eef7162616074aa97e41b" + } + ] + }, + { + "bom-ref": "afc0cbb6777b4531", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Rarotonga", + "hashes": [ + { + "alg": "SHA-1", + "content": "c0435de7d319d62b4057fbdcb3a04de0afd6ccfa" + }, + { + "alg": "SHA-256", + "content": "2d1e4a68104638e75fb5cf82daf680d934f965e682e35a04ecc0e518d8f8a097" + } + ] + }, + { + "bom-ref": "65c25eb692c71b6a", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Tahiti", + "hashes": [ + { + "alg": "SHA-1", + "content": "b50e5f5d7d23f283f57fc3e86da4f69ec0c4102a" + }, + { + "alg": "SHA-256", + "content": "344408438702e718bca59faacbd552969b7397bdaf5aedf99e126f50c8233ee3" + } + ] + }, + { + "bom-ref": "fe7df375d7d5ba9f", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Tarawa", + "hashes": [ + { + "alg": "SHA-1", + "content": "6ea42e732e9af05124166771628f10d08114ffed" + }, + { + "alg": "SHA-256", + "content": "f82a0f21667dce26d11673eef99db2d9200f915256c41289afb85689edce34f2" + } + ] + }, + { + "bom-ref": "d127c28170315ac9", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Tongatapu", + "hashes": [ + { + "alg": "SHA-1", + "content": "3b4de04b915a7da0f85aa8308275331cd257770a" + }, + { + "alg": "SHA-256", + "content": "bbb8632d8f1d1a120c351694103ee55e7b45193c2aa9bcb5b65e99f8ffee424d" + } + ] + }, + { + "bom-ref": "101cab7c7d11a8c7", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Wake", + "hashes": [ + { + "alg": "SHA-1", + "content": "29c5b45932598bc152c17b3e0a8639b4ac3c0412" + }, + { + "alg": "SHA-256", + "content": "17180eb8fef967ac24d5492908cce1e90a7b4c578657fbddf0f60a2d832a7745" + } + ] + }, + { + "bom-ref": "42b15e3f5baea97c", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Wallis", + "hashes": [ + { + "alg": "SHA-1", + "content": "0e9cc9611472c345e5c8c38f06b7539681d70bfc" + }, + { + "alg": "SHA-256", + "content": "5fa9d027fcf24e4d9ad77875907d675144b7384bda0ddbedb03fbe44c09a63ab" + } + ] + }, + { + "bom-ref": "06d344a8f85708d7", + "type": "file", + "name": "/usr/share/zoneinfo/right/Poland", + "hashes": [ + { + "alg": "SHA-1", + "content": "0db3f817512b0b29c2814cafcc4c064d19eeec28" + }, + { + "alg": "SHA-256", + "content": "2776052936d3361f49da479c0a6d522ea7ec256300cc9263d1011848ab2bb3a9" + } + ] + }, + { + "bom-ref": "a56ec530a5407f0b", + "type": "file", + "name": "/usr/share/zoneinfo/right/Portugal", + "hashes": [ + { + "alg": "SHA-1", + "content": "b97498fb000c592f2927cc7e37ff11fb0ab34b6b" + }, + { + "alg": "SHA-256", + "content": "f8e850961fc42ea64edb30cebaabad27fccda97bdf6cf1047e4051298bdf20d0" + } + ] + }, + { + "bom-ref": "6c9af8fb2ad71805", + "type": "file", + "name": "/usr/share/zoneinfo/right/ROC", + "hashes": [ + { + "alg": "SHA-1", + "content": "31681bb16db32cfd096bcd8a1e16e0525d351fa8" + }, + { + "alg": "SHA-256", + "content": "d5ff02c7a5dc9adb7a5b8de1e492f8ace92d832e8f2f6879265520c47f850078" + } + ] + }, + { + "bom-ref": "808a3778c95c62cd", + "type": "file", + "name": "/usr/share/zoneinfo/right/ROK", + "hashes": [ + { + "alg": "SHA-1", + "content": "2250daa35057ec3456ed9c4457e4fbb9db00109b" + }, + { + "alg": "SHA-256", + "content": "6c95b3eee50a28160e185e76e2bab6ec9f28f50e2d9a3166b20c4acfcf4aef1c" + } + ] + }, + { + "bom-ref": "ba068122e594130b", + "type": "file", + "name": "/usr/share/zoneinfo/right/Singapore", + "hashes": [ + { + "alg": "SHA-1", + "content": "df9afc7eca5470ab701e375f795075842cc93387" + }, + { + "alg": "SHA-256", + "content": "91e407e2266fb1de8a5a90631744cd5b213f2521db783258f2f9f41697517dda" + } + ] + }, + { + "bom-ref": "a8c68687b18dfd2c", + "type": "file", + "name": "/usr/share/zoneinfo/right/Turkey", + "hashes": [ + { + "alg": "SHA-1", + "content": "1c8dd859c65289cc678d10a339eb027b286a4f7b" + }, + { + "alg": "SHA-256", + "content": "d0fd3d19c0e209595df3017696f8dc59d900be1dd6a3a8b354f7798ba6ce1f4d" + } + ] + }, + { + "bom-ref": "05eb099e19a462ee", + "type": "file", + "name": "/usr/share/zoneinfo/right/UCT", + "hashes": [ + { + "alg": "SHA-1", + "content": "26998daae7d053ece89ae8e2c13d0f1f0be4014e" + }, + { + "alg": "SHA-256", + "content": "d19fdd5d26a7753518ee9a09ab74a8e4efa9a4e6ed56eff85baabd8af9c0e459" + } + ] + }, + { + "bom-ref": "6fad0c8bb5c8c00c", + "type": "file", + "name": "/usr/share/zoneinfo/right/W-SU", + "hashes": [ + { + "alg": "SHA-1", + "content": "b0882f05fa6f6096fc5c8d69371b756e030598d0" + }, + { + "alg": "SHA-256", + "content": "8e1367300579da7319742b25b9da707131b058482c77e7a707c71aeb60f067ff" + } + ] + }, + { + "bom-ref": "0bf97ac5c1892c01", + "type": "file", + "name": "/usr/share/zoneinfo/right/WET", + "hashes": [ + { + "alg": "SHA-1", + "content": "6c9f8f1182d265bb730b1c63222e0c165b4bd71e" + }, + { + "alg": "SHA-256", + "content": "e9826478fee66e6f8a7583d9a67d82f114f8a12856b4f4a6bfed5db540c54753" + } + ] + }, + { + "bom-ref": "c8262326ecf4dbde", + "type": "file", + "name": "/usr/share/zoneinfo/zone.tab", + "hashes": [ + { + "alg": "SHA-1", + "content": "7bcf27b3c1c95dd59d673043a6e82193f5374d8e" + }, + { + "alg": "SHA-256", + "content": "db0cec68e09f62e86133166c14ef72d5c9003e00f8bb305f6df7fae17575a965" + } + ] + }, + { + "bom-ref": "8ea1f2fc66aa6c9d", + "type": "file", + "name": "/usr/share/zoneinfo/zone1970.tab", + "hashes": [ + { + "alg": "SHA-1", + "content": "562cb671936f54f76fd0277d218187aeadb1e464" + }, + { + "alg": "SHA-256", + "content": "1019220a999e8a8ef71105c297b4fd9461414f5f4d27058fc3cb6a9027344112" + } + ] + }, + { + "bom-ref": "fcc498f2f8d89536", + "type": "file", + "name": "/var/lib/dpkg/info/adduser.conffiles", + "hashes": [ + { + "alg": "SHA-1", + "content": "f599d9982b74b2e62934f8cedd70e33ef36ede5b" + }, + { + "alg": "SHA-256", + "content": "2ed8c75e30af614b19760b001063fbeb2a48ebaf469c44d921d3df787f2ca173" + } + ] + }, + { + "bom-ref": "fc475ef8ad2e47e2", + "type": "file", + "name": "/var/lib/dpkg/info/adduser.config", + "hashes": [ + { + "alg": "SHA-1", + "content": "6bb4297adf2d6d4f3fec6396d1a6c60f48cd34b0" + }, + { + "alg": "SHA-256", + "content": "7bbbed298ee1cba145ccced3c596025d1bf420c978feef4269e9e3c0c8ef1855" + } + ] + }, + { + "bom-ref": "168177368e95413c", + "type": "file", + "name": "/var/lib/dpkg/info/adduser.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "d05abd30065d5714e07b8a8689146694d27357b9" + }, + { + "alg": "SHA-256", + "content": "1d2871a453ad11657eb656cc724f8fde70e8e618722a033460deb3418a80615d" + } + ] + }, + { + "bom-ref": "fb9d3fb52538e008", + "type": "file", + "name": "/var/lib/dpkg/info/adduser.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "6e036e83b95fbc5766e1d949ac529c2fb3653d2a" + }, + { + "alg": "SHA-256", + "content": "ca22aec2cb78ba7e2459cbcaff569fcdc44d069ece6076862792ea307d683d42" + } + ] + }, + { + "bom-ref": "64b9985447853007", + "type": "file", + "name": "/var/lib/dpkg/info/adduser.postinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "92a6cd78a7311cf40713e3f032ac4ca862255b63" + }, + { + "alg": "SHA-256", + "content": "725a17e3ccb6bcda57076fa51d824c1a0903c885261c34e053f9750be30a2755" + } + ] + }, + { + "bom-ref": "bb474cc1b5ec2f6b", + "type": "file", + "name": "/var/lib/dpkg/info/adduser.postrm", + "hashes": [ + { + "alg": "SHA-1", + "content": "f530c3dd56d1166f63e32c40f4bac041e226896f" + }, + { + "alg": "SHA-256", + "content": "0ac3e1a63427a3073ca3b68aea0294bfe31c8572529fcf9bb44bdb4aa0764342" + } + ] + }, + { + "bom-ref": "0efa37b67a37e2e3", + "type": "file", + "name": "/var/lib/dpkg/info/adduser.templates", + "hashes": [ + { + "alg": "SHA-1", + "content": "f6544f1c47faac6e01477dbd3220c2291575b99b" + }, + { + "alg": "SHA-256", + "content": "3006aced92c75c420b780e8e2c7d9b850be88cef12937f5b22fd119c3e391021" + } + ] + }, + { + "bom-ref": "e870f201d4dcdd16", + "type": "file", + "name": "/var/lib/dpkg/info/apt.conffiles", + "hashes": [ + { + "alg": "SHA-1", + "content": "82451cc325a55117167698aa9ee93d4af75bf165" + }, + { + "alg": "SHA-256", + "content": "40d910bb31d4f4744f154ccd80bf53c3ec5574f1577f35af78e5ef77dbcaae47" + } + ] + }, + { + "bom-ref": "2805a81b4a7bb1cb", + "type": "file", + "name": "/var/lib/dpkg/info/apt.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "29d54313029f19d6ea784399e953f2f4eac79b5f" + }, + { + "alg": "SHA-256", + "content": "84d86fa796054caa72c01b3fe0fba75020b929b32b57f5f58f3f56f90684a0dc" + } + ] + }, + { + "bom-ref": "dfa29e44fa7fa7a2", + "type": "file", + "name": "/var/lib/dpkg/info/apt.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "9a75d783eaca859278d756bfb94b6787acd3418d" + }, + { + "alg": "SHA-256", + "content": "a7d8d0dc9e72dcc89482bfa42a57c7c35c01bf37715f984a1b05cf6a9e5e2cb1" + } + ] + }, + { + "bom-ref": "b9391d3823469d80", + "type": "file", + "name": "/var/lib/dpkg/info/apt.postinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "ca4e36223187e1840ab803c69be644d9e4388af8" + }, + { + "alg": "SHA-256", + "content": "970fc550d058899d9579e1fc0d1e79452b621e406e88699e1a13e6db76b880e3" + } + ] + }, + { + "bom-ref": "492bf388de989ecc", + "type": "file", + "name": "/var/lib/dpkg/info/apt.postrm", + "hashes": [ + { + "alg": "SHA-1", + "content": "ac7b1b3b6691c5c70126c0c381a0786b8a1fb966" + }, + { + "alg": "SHA-256", + "content": "e9cc5f954c30346d08671ac37a55e1cbd83d1e33d06a06265065bddde3d81213" + } + ] + }, + { + "bom-ref": "c10d579c7fe2c6b9", + "type": "file", + "name": "/var/lib/dpkg/info/apt.preinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "bef252305ddab8b1a136f638e827c095cfbf9365" + }, + { + "alg": "SHA-256", + "content": "d5e908aa83097ed42de33e92867208a5f3ab82f57e9b92efe0acec9a616f1d4b" + } + ] + }, + { + "bom-ref": "c1a4e4b1afc1ec2b", + "type": "file", + "name": "/var/lib/dpkg/info/apt.prerm", + "hashes": [ + { + "alg": "SHA-1", + "content": "4fc1b3e1ad64f35af37ea29113828684c23f0dc1" + }, + { + "alg": "SHA-256", + "content": "d30d6f3378dafd4ff65490a4f214420ebcd2e1a9663b19b984e5c696efc5e553" + } + ] + }, + { + "bom-ref": "c7c965da8b3c25f3", + "type": "file", + "name": "/var/lib/dpkg/info/apt.shlibs", + "hashes": [ + { + "alg": "SHA-1", + "content": "e8d1ec9ad003f3f586b0b0c58344bc4bbaab0c20" + }, + { + "alg": "SHA-256", + "content": "ac130374b3322f21573625a13454d60cf7b5166bcd43b931f8ec09e99d54c455" + } + ] + }, + { + "bom-ref": "e3269b49fe5b2345", + "type": "file", + "name": "/var/lib/dpkg/info/apt.triggers", + "hashes": [ + { + "alg": "SHA-1", + "content": "8dae58cef087a99d2fae9403c50f0a9683a9624f" + }, + { + "alg": "SHA-256", + "content": "07a5fdf8ff08ba2362ae00a082911153f9578fc6235d0955f2c91a54d71451a0" + } + ] + }, + { + "bom-ref": "fc86792fe7708e28", + "type": "file", + "name": "/var/lib/dpkg/info/base-files.conffiles", + "hashes": [ + { + "alg": "SHA-1", + "content": "e50605106d2a8746c3ca789de214be224a409ea9" + }, + { + "alg": "SHA-256", + "content": "4b3e9e5378d40d8d9e7c508b759513975ad83bf6faeaa3a1b1684c53931b8556" + } + ] + }, + { + "bom-ref": "ad30bc6aa98aa31b", + "type": "file", + "name": "/var/lib/dpkg/info/base-files.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "464095b7d4f426885d308699aa4030572a3f8add" + }, + { + "alg": "SHA-256", + "content": "118f4dd6bafffcf46631dfc39de25abb0ce0d2f1f6b5ad2b122993f089bbcb87" + } + ] + }, + { + "bom-ref": "8505dab8980d8f1c", + "type": "file", + "name": "/var/lib/dpkg/info/base-files.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "4c29382a619c37fdd266159565b75c1ea5042e0a" + }, + { + "alg": "SHA-256", + "content": "cf8bd9d1b5970af1a409aed7d987b811cfa72a9aed320275d7779fb821a36daa" + } + ] + }, + { + "bom-ref": "9466ef9dbacfb94c", + "type": "file", + "name": "/var/lib/dpkg/info/base-files.postinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "fdd9ec9ef84695fcc33f1004cee9c3484ddad986" + }, + { + "alg": "SHA-256", + "content": "33a5b7e9a52ee15ebbbe3f2033e10cf90fd9506cf362bb94752ab7772e7c5640" + } + ] + }, + { + "bom-ref": "a8f16eebaafbd954", + "type": "file", + "name": "/var/lib/dpkg/info/base-passwd.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "b38ea9ec662800e8aac11339ea552760dcdebe5f" + }, + { + "alg": "SHA-256", + "content": "59e7d3f01481b921ab2fe7b7c0f4c9010c5dbd68e63fd6aa6b98144ec444129c" + } + ] + }, + { + "bom-ref": "7592126a85697357", + "type": "file", + "name": "/var/lib/dpkg/info/base-passwd.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "bd75e33fe859e5e4f8caa9ea5b4ae9adf01912c0" + }, + { + "alg": "SHA-256", + "content": "16587126e47a8af491dc0d7523e3cdb80211314b86684821166ee97e9ffe22c5" + } + ] + }, + { + "bom-ref": "b736260a85d49263", + "type": "file", + "name": "/var/lib/dpkg/info/base-passwd.postinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "926bed034a5d11a8bb7be45327ffaec4086948a3" + }, + { + "alg": "SHA-256", + "content": "01ea366cf8c635d5e21ce289ab3b9998247eac1d3f33312cf002257b0abce445" + } + ] + }, + { + "bom-ref": "8686b3760d094e9c", + "type": "file", + "name": "/var/lib/dpkg/info/base-passwd.postrm", + "hashes": [ + { + "alg": "SHA-1", + "content": "491bff3c810de9b8326944e1e4a8b2e5f44de947" + }, + { + "alg": "SHA-256", + "content": "4ee45fbc0ef26cf9a8cceafcfc80ca5681eb02da68c91c24eeb5e31daaa8da89" + } + ] + }, + { + "bom-ref": "57c62f5341e05dd6", + "type": "file", + "name": "/var/lib/dpkg/info/base-passwd.preinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "fc01283063fc822a6c73700962fe055a147415ce" + }, + { + "alg": "SHA-256", + "content": "6e38694265a25ef4a21a595dbcf58679b02eb3ef91a76b8ce293cfb97def209c" + } + ] + }, + { + "bom-ref": "51e4dde6b3a9112a", + "type": "file", + "name": "/var/lib/dpkg/info/base-passwd.templates", + "hashes": [ + { + "alg": "SHA-1", + "content": "aef245430d45b459e81d92d2d1d50895183b99c2" + }, + { + "alg": "SHA-256", + "content": "f7de1e47978fedea5a736df4f16b947218f4e65735753d97c1c8954e8312c776" + } + ] + }, + { + "bom-ref": "31976b8c975be63d", + "type": "file", + "name": "/var/lib/dpkg/info/bash.conffiles", + "hashes": [ + { + "alg": "SHA-1", + "content": "59508ce0ae15c440b8b9a943d4f9740309e75151" + }, + { + "alg": "SHA-256", + "content": "547d1cf6291bce0dcc569f9caad2b7d204f42efb7a20047d86aa48e0c305a52f" + } + ] + }, + { + "bom-ref": "7641736eb32c798c", + "type": "file", + "name": "/var/lib/dpkg/info/bash.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "0fcded184681255a7312f6ff9c8af8fbdebfa4ee" + }, + { + "alg": "SHA-256", + "content": "898a7bda103c9c368b055da5f797e3e3a37c5d40428716cb683a55aaff45990e" + } + ] + }, + { + "bom-ref": "20787932b541c040", + "type": "file", + "name": "/var/lib/dpkg/info/bash.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "8f253ac374dc458fcaaad526796164f693bf3b94" + }, + { + "alg": "SHA-256", + "content": "df67456b848349c881a60bd3bf765e98a7eceba72f2778cde93aa2d7f13f85f3" + } + ] + }, + { + "bom-ref": "0d58f88e1867d645", + "type": "file", + "name": "/var/lib/dpkg/info/bash.postinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "2c5e0b35138f805d1393c9f68bf065577996fe4d" + }, + { + "alg": "SHA-256", + "content": "3e8995ddc6c96c81021f3556dd8de4cbc8c64bb7f211181f9dfa72af548aa9da" + } + ] + }, + { + "bom-ref": "aad50caab5f12163", + "type": "file", + "name": "/var/lib/dpkg/info/bash.postrm", + "hashes": [ + { + "alg": "SHA-1", + "content": "d5c24af325dab2013bce69464853989295cefe74" + }, + { + "alg": "SHA-256", + "content": "b8c3425b65be2c56f2b66a7e4c5f2b1e7156ad1af868ba0d407c7a31d7427d67" + } + ] + }, + { + "bom-ref": "a7f86a84c21cca17", + "type": "file", + "name": "/var/lib/dpkg/info/bash.preinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "e71e04818b9341963a662f628248d99c54788ef8" + }, + { + "alg": "SHA-256", + "content": "082fae2f50ea8a6bb24c06d499c2c3e8e9fa0cf33dd8955647417e44971e712c" + } + ] + }, + { + "bom-ref": "9c6442772f03772c", + "type": "file", + "name": "/var/lib/dpkg/info/bash.prerm", + "hashes": [ + { + "alg": "SHA-1", + "content": "579b93eeb8818eaf04760eae2087ea9ece9b9fd3" + }, + { + "alg": "SHA-256", + "content": "8d4c0e961f582ca7821cd5b81c8ba304a90f2ddfd6efd963f58cf6020eb2198a" + } + ] + }, + { + "bom-ref": "0bfa3865259b7d8f", + "type": "file", + "name": "/var/lib/dpkg/info/bsdutils.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "95a215f7cecc31e4b363c802768f800f373fcf61" + }, + { + "alg": "SHA-256", + "content": "d4b57cd70404a8b1f20addaa2a31b0ff0539f2b9175814229e904f5f4804661a" + } + ] + }, + { + "bom-ref": "74feec199378ac00", + "type": "file", + "name": "/var/lib/dpkg/info/bsdutils.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "62d80a6f5b9dd9f3701ac2be76dad95de673cdd6" + }, + { + "alg": "SHA-256", + "content": "b391a8b12795747d4a646fd480a480889482b3fa53c5c02511b5fd6f7681675d" + } + ] + }, + { + "bom-ref": "a1d6cdf8646ec725", + "type": "file", + "name": "/var/lib/dpkg/info/coreutils.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "645307365671258a990223d7ecdf3ad4d069e311" + }, + { + "alg": "SHA-256", + "content": "73887279428ab722d2e19ab01daa96efa399ff7fd71c5670f3b692d86dacf190" + } + ] + }, + { + "bom-ref": "9a88e6000cac3f35", + "type": "file", + "name": "/var/lib/dpkg/info/coreutils.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "76b83c05d477f91c187d2571f629f9c72c7047ac" + }, + { + "alg": "SHA-256", + "content": "15c0928087598d9aa52f14d11f017a7fa77b4fe77f55ceeec8cdadb6a0560ac5" + } + ] + }, + { + "bom-ref": "8e428eadd84f1b63", + "type": "file", + "name": "/var/lib/dpkg/info/coreutils.postinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "885178e725463e34cd91dd2c5c85879b915624ac" + }, + { + "alg": "SHA-256", + "content": "b8cc23953515e77bc392d81af72f7362118a5fdf5961680620c2f832bf4c56a8" + } + ] + }, + { + "bom-ref": "3ba636eec8a2cc0f", + "type": "file", + "name": "/var/lib/dpkg/info/coreutils.postrm", + "hashes": [ + { + "alg": "SHA-1", + "content": "3740e6592a8a52be4b1c5e3b5e538d46f73d075d" + }, + { + "alg": "SHA-256", + "content": "fb04069056d6bd6aadb41350b25da0f9da66ff520185f4f16445430535e1bf18" + } + ] + }, + { + "bom-ref": "0387c2faae9379a1", + "type": "file", + "name": "/var/lib/dpkg/info/dash.config", + "hashes": [ + { + "alg": "SHA-1", + "content": "48a6a301c95801c722e9d8b7074e60c91ab8fcb2" + }, + { + "alg": "SHA-256", + "content": "6ce6e1f0695bac42e20a96be49b70c79cf596e8f81047ff4ea3cf922c0a9cc57" + } + ] + }, + { + "bom-ref": "b66979beb9aa4d8d", + "type": "file", + "name": "/var/lib/dpkg/info/dash.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "e5aec6d5d045f89322971c58235f028d19ca82fa" + }, + { + "alg": "SHA-256", + "content": "0994309c7384d07ada80e7c9d77ef00d978d9c9f1faa6a055d044679a3c65244" + } + ] + }, + { + "bom-ref": "f542ffea25636b9d", + "type": "file", + "name": "/var/lib/dpkg/info/dash.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "28b284e0b6b0842fcd637860c62d27446bf2d185" + }, + { + "alg": "SHA-256", + "content": "5bc20df7dfdc9b41fd3eec72dad98a69cb0ee1e03dbecd1285a45d13c3b43a77" + } + ] + }, + { + "bom-ref": "21902b89c32b5c93", + "type": "file", + "name": "/var/lib/dpkg/info/dash.postinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "ebdfb18cd44dc583d1d0793c2174403e00a95ec6" + }, + { + "alg": "SHA-256", + "content": "bd0b98d1648721510e02243de038a6aa75016f7f506c0ea8ee6dedaad8b6da39" + } + ] + }, + { + "bom-ref": "b7d04efcb0db3326", + "type": "file", + "name": "/var/lib/dpkg/info/dash.postrm", + "hashes": [ + { + "alg": "SHA-1", + "content": "7ffbaf91069cae46b007fda0415bf2ef87307863" + }, + { + "alg": "SHA-256", + "content": "1dcbcde726d12aa01f77475fa2c7d46c3b9f7e2e5980a7883eef819ad18229ae" + } + ] + }, + { + "bom-ref": "e67fdb1fb9f9eff9", + "type": "file", + "name": "/var/lib/dpkg/info/dash.prerm", + "hashes": [ + { + "alg": "SHA-1", + "content": "9fdde0d07fc79dad449bc685b7ac2a2ca67d81dd" + }, + { + "alg": "SHA-256", + "content": "10b4e35c3a2cdfb7aec9405173a5da1fe044c3b7cba51aa8ce2d5008a18cd1f1" + } + ] + }, + { + "bom-ref": "435800b2116d4dd9", + "type": "file", + "name": "/var/lib/dpkg/info/dash.templates", + "hashes": [ + { + "alg": "SHA-1", + "content": "9a3a18639de5bdbae2502839921279086a3c45d1" + }, + { + "alg": "SHA-256", + "content": "9451f0fff5c8aa0da29e1947305f9430ab0b1ee6d7eac8b23f46d73716c5c64c" + } + ] + }, + { + "bom-ref": "22b8a1ea38382859", + "type": "file", + "name": "/var/lib/dpkg/info/debconf.conffiles", + "hashes": [ + { + "alg": "SHA-1", + "content": "2eb6676c02e75ea06452a2749787c156c80c6dd3" + }, + { + "alg": "SHA-256", + "content": "1980054721522ce9b99b3c1ea992a517b0ae93c7eebb9c502129c5f12ad928a8" + } + ] + }, + { + "bom-ref": "fcbb560bca8ef249", + "type": "file", + "name": "/var/lib/dpkg/info/debconf.config", + "hashes": [ + { + "alg": "SHA-1", + "content": "a7e68dba5c56b7e99e5602013e32c903c4e5c684" + }, + { + "alg": "SHA-256", + "content": "4f6cca919cf82b607d0ec001e451566c887383c41320d796021eee66b4473db2" + } + ] + }, + { + "bom-ref": "73fb499147dbfc84", + "type": "file", + "name": "/var/lib/dpkg/info/debconf.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "46574daf2b5199a5bbfa7b0e48ed95c115e88914" + }, + { + "alg": "SHA-256", + "content": "cd075f55bdb0dc4d53677ad17d4f646048e07da61c1b0599717696878b57eb2b" + } + ] + }, + { + "bom-ref": "99514d9871538e1f", + "type": "file", + "name": "/var/lib/dpkg/info/debconf.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "6fbc76f4e53991faf3258b2da32e0965abdaae36" + }, + { + "alg": "SHA-256", + "content": "6d75b00b0ed161f887c8ad0715e88cadbe400ed7d08ca59657cb3674f02baa34" + } + ] + }, + { + "bom-ref": "bc2413adb14e2637", + "type": "file", + "name": "/var/lib/dpkg/info/debconf.postinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "0353ca1a65fa6607fdc6f5a96711bac223f000f2" + }, + { + "alg": "SHA-256", + "content": "4d08ce201b08f4252c906339ebd2260613888ff5723238df7ad9582f0dce23ce" + } + ] + }, + { + "bom-ref": "6297a09a3ee8295b", + "type": "file", + "name": "/var/lib/dpkg/info/debconf.postrm", + "hashes": [ + { + "alg": "SHA-1", + "content": "b1243b4fa9250c9ea244c33ada39e308a5ba3ad6" + }, + { + "alg": "SHA-256", + "content": "69d031944b619046adc276b7bebfd5fb23d645c3d1b55669cf5e657cb421d2a3" + } + ] + }, + { + "bom-ref": "95ae6a6df9e423b7", + "type": "file", + "name": "/var/lib/dpkg/info/debconf.preinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "e72bee7a2510629e63d7696d5997e31299d911ba" + }, + { + "alg": "SHA-256", + "content": "1591a0ac3a57039bd6c20829a73c3f879b0556c58d90f5e456dc48f25ef9cce0" + } + ] + }, + { + "bom-ref": "e1cf0e30d058792b", + "type": "file", + "name": "/var/lib/dpkg/info/debconf.prerm", + "hashes": [ + { + "alg": "SHA-1", + "content": "b1243b4fa9250c9ea244c33ada39e308a5ba3ad6" + }, + { + "alg": "SHA-256", + "content": "69d031944b619046adc276b7bebfd5fb23d645c3d1b55669cf5e657cb421d2a3" + } + ] + }, + { + "bom-ref": "5afb3fd47d6da438", + "type": "file", + "name": "/var/lib/dpkg/info/debconf.templates", + "hashes": [ + { + "alg": "SHA-1", + "content": "031d6173691c1a410714d7e0b08ce9a1f8c87040" + }, + { + "alg": "SHA-256", + "content": "f9976867788ecea1b70d36e04246011fe856797bbb938c08ebf8d64112267064" + } + ] + }, + { + "bom-ref": "4324ee20596bbf9c", + "type": "file", + "name": "/var/lib/dpkg/info/debian-archive-keyring.conffiles", + "hashes": [ + { + "alg": "SHA-1", + "content": "f293d91e7d09a60e29ad5312ae76deca7efbeb7e" + }, + { + "alg": "SHA-256", + "content": "e6d86c39e80872af02855c3c1072cec57e2f06b8bad0646e7bf0ec672abb0fd2" + } + ] + }, + { + "bom-ref": "90de36ac96275c75", + "type": "file", + "name": "/var/lib/dpkg/info/debian-archive-keyring.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "9493dd0daab8642e9e8803c50a1f23b7de393a82" + }, + { + "alg": "SHA-256", + "content": "afb1419e928588b294b72b4ea6e9021580834b7360a0f481ca8efdc7a0661e7c" + } + ] + }, + { + "bom-ref": "a805918f3e73bd2b", + "type": "file", + "name": "/var/lib/dpkg/info/debian-archive-keyring.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "d4b0049fa5a0e83773a5028b5f40d1167dba5f10" + }, + { + "alg": "SHA-256", + "content": "2d9179d051b5b334fdc712fc6a348c4fa2417049a461080cb4cfd08aedb1cd3d" + } + ] + }, + { + "bom-ref": "0166161879c8729c", + "type": "file", + "name": "/var/lib/dpkg/info/debian-archive-keyring.postinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "98d8a0130d8ace9a030d5bd5cfd16be0a4381a16" + }, + { + "alg": "SHA-256", + "content": "0a1eab3c336ca52da3cdae85f2dc4baececb61fc0b96d8fb1255a8fb564433dc" + } + ] + }, + { + "bom-ref": "258788fdb422caac", + "type": "file", + "name": "/var/lib/dpkg/info/debian-archive-keyring.postrm", + "hashes": [ + { + "alg": "SHA-1", + "content": "98fa9ff3db48dd70ba55c84c7061df062c6eccf3" + }, + { + "alg": "SHA-256", + "content": "8b34b077090d0628234fddc6f407ec354b1fe3ff57a833fbfc290496f46da43f" + } + ] + }, + { + "bom-ref": "0b656b09fe44634d", + "type": "file", + "name": "/var/lib/dpkg/info/debian-archive-keyring.preinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "e0226d6c71e20235d23e3954183f5c973b0f293a" + }, + { + "alg": "SHA-256", + "content": "d18560f985de55381e1bccae9c52eb04e3a26a2b5d1b761d4923852a6f916c22" + } + ] + }, + { + "bom-ref": "0c183a66bf9f2069", + "type": "file", + "name": "/var/lib/dpkg/info/debian-archive-keyring.prerm", + "hashes": [ + { + "alg": "SHA-1", + "content": "e0226d6c71e20235d23e3954183f5c973b0f293a" + }, + { + "alg": "SHA-256", + "content": "d18560f985de55381e1bccae9c52eb04e3a26a2b5d1b761d4923852a6f916c22" + } + ] + }, + { + "bom-ref": "6c90491efc8a7cfb", + "type": "file", + "name": "/var/lib/dpkg/info/debianutils.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "f55858aa5da08f74d0f735cab1920811d1256c1c" + }, + { + "alg": "SHA-256", + "content": "ce60da81c5675bf3052f1bc84b3716607de015c561813f1420797e4a106e3efe" + } + ] + }, + { + "bom-ref": "20a27934e38283ef", + "type": "file", + "name": "/var/lib/dpkg/info/debianutils.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "631975427677619deb57b54bc8004dc5b528c9fe" + }, + { + "alg": "SHA-256", + "content": "29ac7266c8adeda6542a97d86b98f0d98161d7f9e6a967647abe96c897bf9126" + } + ] + }, + { + "bom-ref": "646fe288c14c8068", + "type": "file", + "name": "/var/lib/dpkg/info/debianutils.postinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "e6c9a9fb3bd269e1c2d8e75e631954dd5c3be4ed" + }, + { + "alg": "SHA-256", + "content": "d7aa50ccd2391e2b8c627cde1ca98128022bcc387801ef50c12fee0bca864ddc" + } + ] + }, + { + "bom-ref": "e959b942f9333767", + "type": "file", + "name": "/var/lib/dpkg/info/debianutils.postrm", + "hashes": [ + { + "alg": "SHA-1", + "content": "8b90a7249f17f4b73230ca67a263248764249dac" + }, + { + "alg": "SHA-256", + "content": "cb0dfa3fc27cf2dfac46a355e383fc25a920cda0622e1225cc74fc3b01a6c4b1" + } + ] + }, + { + "bom-ref": "b1f5f646173e2ba5", + "type": "file", + "name": "/var/lib/dpkg/info/diffutils.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "1da328331fbd0761658018fc6a3624cf45718304" + }, + { + "alg": "SHA-256", + "content": "429f33b358e9800b815c228c0784b23d30445ac8966f18d8c6a86e1039ffc3d7" + } + ] + }, + { + "bom-ref": "77f541a0bb78826e", + "type": "file", + "name": "/var/lib/dpkg/info/diffutils.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "23e00e60170ed0c03cd89f7f2dbb554ef44b787e" + }, + { + "alg": "SHA-256", + "content": "83967917c678f47122a4f605a8d3295588ac433fa68f9a31f9cf3429f1f4eeeb" + } + ] + }, + { + "bom-ref": "baf4f8b2816a8853", + "type": "file", + "name": "/var/lib/dpkg/info/dpkg.conffiles", + "hashes": [ + { + "alg": "SHA-1", + "content": "9720dfb4e61b9232f4b4b5d551da16a851ac2484" + }, + { + "alg": "SHA-256", + "content": "1fa597ab4184eb9914de0677909ddeeb10acb4fa091578341cfdcaec60e3a867" + } + ] + }, + { + "bom-ref": "9a5a2224f8660648", + "type": "file", + "name": "/var/lib/dpkg/info/dpkg.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "8f7914d3427c405e821a4a2315a0f98c9ae785cb" + }, + { + "alg": "SHA-256", + "content": "f33dc203f8e47119be6aa0fcafe1ea04cd2a8787ddb4b612105bd14196a3b495" + } + ] + }, + { + "bom-ref": "28d834eb536060b6", + "type": "file", + "name": "/var/lib/dpkg/info/dpkg.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "3d65033ec394f201a7c768d52d3d1201e602ee88" + }, + { + "alg": "SHA-256", + "content": "9df0e52084c98b622d673ede61915d4d232cf58f80b8ead80ca03621300fd8a6" + } + ] + }, + { + "bom-ref": "c8f3d92b4ab257ad", + "type": "file", + "name": "/var/lib/dpkg/info/dpkg.postinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "3877d1287ece5e993ebf5bc6fa6eb5bc17537ec2" + }, + { + "alg": "SHA-256", + "content": "e9083f93c5aace492e41937de838b91be018c10a6b91d0d9d4dd5fe553c0e29d" + } + ] + }, + { + "bom-ref": "4064b80e669f1420", + "type": "file", + "name": "/var/lib/dpkg/info/dpkg.postrm", + "hashes": [ + { + "alg": "SHA-1", + "content": "58d8258a477dc2bd022c013b7755e7391f618fcb" + }, + { + "alg": "SHA-256", + "content": "2463d32c05510e4983ca8eb139e5c15c1a63f463ab5a00573730019e746a8f05" + } + ] + }, + { + "bom-ref": "25e2d00468374e9e", + "type": "file", + "name": "/var/lib/dpkg/info/e2fsprogs.conffiles", + "hashes": [ + { + "alg": "SHA-1", + "content": "8c01798e4ecf5f64db3c562280c659c1e36d610b" + }, + { + "alg": "SHA-256", + "content": "4a21d18e62ee18b0b1afd94364e581e0b9b9881ea6e2df831fe8d4086a9672b9" + } + ] + }, + { + "bom-ref": "ab4c7ffbd539d9b3", + "type": "file", + "name": "/var/lib/dpkg/info/e2fsprogs.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "c4daeb77a05e03381b83431157f469029bf9b7e7" + }, + { + "alg": "SHA-256", + "content": "583ab2e2e3a29fbeba51bae0bc986ef8e89c890a8a18fd6aeb25b8a6ca2c4cf8" + } + ] + }, + { + "bom-ref": "1bf886a991216e33", + "type": "file", + "name": "/var/lib/dpkg/info/e2fsprogs.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "81068c90e00e140174ce4432909044eb3be73050" + }, + { + "alg": "SHA-256", + "content": "ea07748e6ac72b71b5fd2d1fe1581d2ff61c36c0a9286c0026d3e8b39b29a993" + } + ] + }, + { + "bom-ref": "bdab701c95cb73b2", + "type": "file", + "name": "/var/lib/dpkg/info/e2fsprogs.postinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "5df27826e536b5aa7d5f89aeaf7b94f10343f7c0" + }, + { + "alg": "SHA-256", + "content": "6cd869d76cb66fbd9e1cbeb40d7a21a060ffbef4337f5486ec167b9fa733c240" + } + ] + }, + { + "bom-ref": "3659e9e7dc079e4b", + "type": "file", + "name": "/var/lib/dpkg/info/e2fsprogs.preinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "682674dbb2d71c009bf0b48f6d1d090b1692a011" + }, + { + "alg": "SHA-256", + "content": "0ac4873d936cbf6ea2c958b686aa5097f82306e1bd50fa6eff1b95337664dac1" + } + ] + }, + { + "bom-ref": "e0a319db2574da5e", + "type": "file", + "name": "/var/lib/dpkg/info/fdisk.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "4a19d3f78c1fcc27dd35de2dca38d8fa53e274e2" + }, + { + "alg": "SHA-256", + "content": "c38c133d41e65e9637989aecee22b097882de26baa96336ba8a480a17a947f67" + } + ] + }, + { + "bom-ref": "7bddb79fbb213b81", + "type": "file", + "name": "/var/lib/dpkg/info/fdisk.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "27295eca79e9712fe999792d2b0db9ec76d13375" + }, + { + "alg": "SHA-256", + "content": "664cbea1ff008234b942bc1fc08cb5a3aaaacb4f6cdc6a7d84d11b5a6f450ddb" + } + ] + }, + { + "bom-ref": "ef77cc802783eac2", + "type": "file", + "name": "/var/lib/dpkg/info/findutils.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "e3db463c8b172f98ab7212c2724e955e4b242394" + }, + { + "alg": "SHA-256", + "content": "fae5dcc0bdf37c5dda884535d6dfbef9a3ab401cf69a9cf908d18e29bad414c3" + } + ] + }, + { + "bom-ref": "bf36a6eef7af3fc2", + "type": "file", + "name": "/var/lib/dpkg/info/findutils.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "f93c45a7d3386037b17d1ae73c230b91ef63db32" + }, + { + "alg": "SHA-256", + "content": "bd4a9d61b0667dafd864a7ccd9528a929b14a6c553a44952b34ea3676e7211c5" + } + ] + }, + { + "bom-ref": "4285fd8fb13e812c", + "type": "file", + "name": "/var/lib/dpkg/info/gcc-8-base:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "d449744e6650ae33398150105a9eca7f6bdc7514" + }, + { + "alg": "SHA-256", + "content": "1d62943fb4b92908f59def1eaee9aa449ece05cfe3c413ddfa6783cdf2a1a8dd" + } + ] + }, + { + "bom-ref": "67b77d33244d3df9", + "type": "file", + "name": "/var/lib/dpkg/info/gpgv.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "15bd6a1db486c93b33572da3f61d0780498437e7" + }, + { + "alg": "SHA-256", + "content": "fa4d4420c6b77df26e9b1b0a18411c1430ad18ef9dfbb5e833d8b5480954c598" + } + ] + }, + { + "bom-ref": "d46a96d2987117a1", + "type": "file", + "name": "/var/lib/dpkg/info/gpgv.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "78ab17e5257b5a9ddda387f04ca5750757ec5bb9" + }, + { + "alg": "SHA-256", + "content": "3eade34808333c68ad6860b5b859764113986837d4a4551fae0581e741674f7c" + } + ] + }, + { + "bom-ref": "a3edcacf6a1a9a4b", + "type": "file", + "name": "/var/lib/dpkg/info/grep.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "b6d2510bd88a53f82b10f695633237889a96cd0c" + }, + { + "alg": "SHA-256", + "content": "aa6915ec381a63d8a0a642d76ca65dc13762d2148bf113aa53899a0ae8168026" + } + ] + }, + { + "bom-ref": "0d7ef09fd839fdb0", + "type": "file", + "name": "/var/lib/dpkg/info/grep.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "98ef437297ed6333a678c1d21a8962ca911c161a" + }, + { + "alg": "SHA-256", + "content": "1978bf3911fdec04ad3382686432780649236d41a83629219a9623f210c1e760" + } + ] + }, + { + "bom-ref": "de92e0e9e05d22de", + "type": "file", + "name": "/var/lib/dpkg/info/gzip.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "42c40899411129e3ddcb78386cd5f4abc0cc7110" + }, + { + "alg": "SHA-256", + "content": "3ec70e83716c0d0cfa5a431f0a4acf15a359bb9f133345d599bf168767f5e1c9" + } + ] + }, + { + "bom-ref": "70027c78f9f5b936", + "type": "file", + "name": "/var/lib/dpkg/info/gzip.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "24870053a1677ffa79d1d0594cb8870d1234f210" + }, + { + "alg": "SHA-256", + "content": "634d23d99a8e08a64299b0cb794b32738584115ed8380c11a497fe1ae407c02d" + } + ] + }, + { + "bom-ref": "f361294f8e8a972b", + "type": "file", + "name": "/var/lib/dpkg/info/hostname.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "06a0d8046e7a14902f7cad07e842b032f723e2ab" + }, + { + "alg": "SHA-256", + "content": "973b0a026b9bf3e8f808ddabef2ef585c67345cdd69f524f5aa51a9fb0ec25b4" + } + ] + }, + { + "bom-ref": "335b573263af515a", + "type": "file", + "name": "/var/lib/dpkg/info/hostname.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "58b0bb467384e67189b9f1877aacd6f4c43a8b7b" + }, + { + "alg": "SHA-256", + "content": "4f23b617c9248b8d9dbcdb79265004e9b55dec573f412b12d131c8dffdad5e8e" + } + ] + }, + { + "bom-ref": "47b4bcc4f7eace8b", + "type": "file", + "name": "/var/lib/dpkg/info/init-system-helpers.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "69e5d659f03c63360b63a0f926cac6aedc3e6169" + }, + { + "alg": "SHA-256", + "content": "9746762ee1530db38b7065f1c13389638e238c6215ea54bec21d0fdaafdaf31f" + } + ] + }, + { + "bom-ref": "e686b91a526ed3d1", + "type": "file", + "name": "/var/lib/dpkg/info/init-system-helpers.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "9620bcec7d00921a3a3efedf79915ecff8d1ab46" + }, + { + "alg": "SHA-256", + "content": "c85f7ce9734d0cc138e071f5cdbc35a0e389a13b24b78fcdfec27189df8ceae8" + } + ] + }, + { + "bom-ref": "34703fe90915d17e", + "type": "file", + "name": "/var/lib/dpkg/info/libacl1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "9ba1597975b018041af4b260f74821e7254fdbe2" + }, + { + "alg": "SHA-256", + "content": "09d5790e09428e6f89a80a915c11026f402a928b1eb7d9bd629cacad8a40e1cf" + } + ] + }, + { + "bom-ref": "c1de3715f03736fd", + "type": "file", + "name": "/var/lib/dpkg/info/libapt-pkg5.0:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "653aabd4da668ecb006cfef5f00af4dca82b5169" + }, + { + "alg": "SHA-256", + "content": "d98c2a04cf47ff24b9222bbbd6cd6051c23fd4df1728e5361c5403a25acc182a" + } + ] + }, + { + "bom-ref": "5e093e4a503ee19e", + "type": "file", + "name": "/var/lib/dpkg/info/libattr1:amd64.conffiles", + "hashes": [ + { + "alg": "SHA-1", + "content": "088e81bbdf8ac60e8b905f7f6ebffcaa03156ba7" + }, + { + "alg": "SHA-256", + "content": "d359ef22e3d78ab9baf0ca82354e916895e45ee5c2ca0db5346fd8555f39c9fd" + } + ] + }, + { + "bom-ref": "8555112ee39c6e0a", + "type": "file", + "name": "/var/lib/dpkg/info/libattr1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "2e94fe819e5ed39c0c82e362daf4c441fd645343" + }, + { + "alg": "SHA-256", + "content": "c6425cbbe99f54460d8700b94d265cef124956ab1ac014ffe6610ad6b861c177" + } + ] + }, + { + "bom-ref": "03b5c623904dd949", + "type": "file", + "name": "/var/lib/dpkg/info/libaudit-common.conffiles", + "hashes": [ + { + "alg": "SHA-1", + "content": "68815c766de040e94590bdd9a274e034a9edad1e" + }, + { + "alg": "SHA-256", + "content": "e59079facf60922dd9bef9974c852e6ad3315ca2639141786bb268e8e877bec3" + } + ] + }, + { + "bom-ref": "609be38340339f27", + "type": "file", + "name": "/var/lib/dpkg/info/libaudit-common.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "69756a2c668bb8359dc593d3a50a44818c229252" + }, + { + "alg": "SHA-256", + "content": "809f79c7732df66a7252edea0a4ef3388b43e122fedd8a27bf0a90a059c5c3d8" + } + ] + }, + { + "bom-ref": "109a5c747d3eed3a", + "type": "file", + "name": "/var/lib/dpkg/info/libaudit-common.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "32437cab2d0a1f8ba42fd9d47ebe38e8e47a5bdb" + }, + { + "alg": "SHA-256", + "content": "788cd710dd6872c3eddaa95f9799d241a2fe97dd2c60e9a4851d4bc2b74d94be" + } + ] + }, + { + "bom-ref": "1b23ed2d6e5bdcd7", + "type": "file", + "name": "/var/lib/dpkg/info/libaudit1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "8f64d859611ac944cc1d66f954f37ab9f9db6641" + }, + { + "alg": "SHA-256", + "content": "27cc423a595c5275059634505ffc85160d6328607094339952d456198e1a9495" + } + ] + }, + { + "bom-ref": "a949de168ed1bb50", + "type": "file", + "name": "/var/lib/dpkg/info/libblkid1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "086a14651281c9d2486049fca62421274d58c896" + }, + { + "alg": "SHA-256", + "content": "604a8ee47ed935d56125041cfc3bf41e257fca914c3a69d8f3a007a32e1f86cb" + } + ] + }, + { + "bom-ref": "3cb3f572dd14f363", + "type": "file", + "name": "/var/lib/dpkg/info/libbz2-1.0:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "47d773d8c4eb070da30ad61419c4cdefbb934f65" + }, + { + "alg": "SHA-256", + "content": "7faa60f379d5d0b518a5ead97e731b28fa61aa09def9b1b7cf848c694e1c65be" + } + ] + }, + { + "bom-ref": "d8707b29b7b0f3f3", + "type": "file", + "name": "/var/lib/dpkg/info/libc-bin.conffiles", + "hashes": [ + { + "alg": "SHA-1", + "content": "a880cffda6ebe9d4cc01bc315adda184e33570ee" + }, + { + "alg": "SHA-256", + "content": "ed1819b3573af7f7dfa94bc34567884dce8f5fabd0ae065a646d4f23d28ade32" + } + ] + }, + { + "bom-ref": "48b5ea1265cde6c4", + "type": "file", + "name": "/var/lib/dpkg/info/libc-bin.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "e0efa30593b8d93d5d0a7ecf77baa88e7ab18f89" + }, + { + "alg": "SHA-256", + "content": "5f95bcc50c60a7da16e8712cf72a7e7eae8a4f89640a790b0f86414ae5498a90" + } + ] + }, + { + "bom-ref": "defafee8d959d6c4", + "type": "file", + "name": "/var/lib/dpkg/info/libc-bin.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "477545d3089ffcc4417ae297bf010a1531ddb3b3" + }, + { + "alg": "SHA-256", + "content": "f08cdddde8de47d0d1cbc634af965095b0a9c1303207b62d9723f081f0ca6ab8" + } + ] + }, + { + "bom-ref": "eb50f1b9686b0a35", + "type": "file", + "name": "/var/lib/dpkg/info/libc-bin.postinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "70967560d386f55f34e3337d990344af985f7ef5" + }, + { + "alg": "SHA-256", + "content": "47fc92ea75c72d16a695f78d1fc35671020810e4bef594266a269b34d6e9ac9a" + } + ] + }, + { + "bom-ref": "48601671d833b238", + "type": "file", + "name": "/var/lib/dpkg/info/libc-bin.triggers", + "hashes": [ + { + "alg": "SHA-1", + "content": "a50727aa5c561e2e012d0d54fee760e600cda1e6" + }, + { + "alg": "SHA-256", + "content": "c3d6b5df131336e54c31dc5687929467de7abea5c5798e3d6a6b2a64ef971fd4" + } + ] + }, + { + "bom-ref": "c046b324710cf94e", + "type": "file", + "name": "/var/lib/dpkg/info/libc6:amd64.conffiles", + "hashes": [ + { + "alg": "SHA-1", + "content": "386809e0fb1f09d77ec36022a7171815d274e3a2" + }, + { + "alg": "SHA-256", + "content": "a59a14914231cc9a833ba49b14308e57b755236ff70bc3b0c4ee77b2bd34eed8" + } + ] + }, + { + "bom-ref": "e14ccb119ce79855", + "type": "file", + "name": "/var/lib/dpkg/info/libc6:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "a3d6bd2debd90ca46eebddad830b882b21115bd5" + }, + { + "alg": "SHA-256", + "content": "7e421dcf4dbdc3eede4aa53fe3d828be0dae176a9047590ec6ffd23076f18009" + } + ] + }, + { + "bom-ref": "2e3a5ba4587e722b", + "type": "file", + "name": "/var/lib/dpkg/info/libcap-ng0:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "5fb920159f5b5423b1fc0c77a7b8a8dec449d6c5" + }, + { + "alg": "SHA-256", + "content": "6c8eac66d483ef1ede9890b6214b245e454d6e8d74de1194e4adadf033955e60" + } + ] + }, + { + "bom-ref": "02a8b0a7ffeaebfa", + "type": "file", + "name": "/var/lib/dpkg/info/libcom-err2:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "d9ca0d3eb8b86b7a56540f3b3f7c1f888cbfb314" + }, + { + "alg": "SHA-256", + "content": "1515c56e4e3f36b0ae32e7a327fdcf74c7b4bb8632eb3e0b9cfea9dc902f6262" + } + ] + }, + { + "bom-ref": "21aad98931190eaf", + "type": "file", + "name": "/var/lib/dpkg/info/libdb5.3:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "09d0e3c4f288946f91d788bb8ff56f407b85b2b8" + }, + { + "alg": "SHA-256", + "content": "6033817c225aa795c61d10617c729e3b44f8c60386ff11275709702c58d492e5" + } + ] + }, + { + "bom-ref": "fb11fe1d045072f9", + "type": "file", + "name": "/var/lib/dpkg/info/libdebconfclient0:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "a6706f6018b238326483e00877578f0414db2cfc" + }, + { + "alg": "SHA-256", + "content": "31248e792afdf5f838994d7dac3a4bdfe2e30a53e2876c2b6261b64af93c1f0b" + } + ] + }, + { + "bom-ref": "a9f0feb4c896c628", + "type": "file", + "name": "/var/lib/dpkg/info/libext2fs2:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "35c02296643d6b8034d30e5bb0462a29fd49a32e" + }, + { + "alg": "SHA-256", + "content": "00120762af34dab0d3b6a0577353a3a81b3ae636ff8fe18f56d1d4a8b22fbee1" + } + ] + }, + { + "bom-ref": "3b27ae3abb94e8c0", + "type": "file", + "name": "/var/lib/dpkg/info/libfdisk1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "0ab90005c632b76c842f9293dd38118c8cc0d93e" + }, + { + "alg": "SHA-256", + "content": "a6d09000d1e1f0dbbe2143565134314fcde7c1938673ef035c34e1b98f280334" + } + ] + }, + { + "bom-ref": "7a33921049c0e775", + "type": "file", + "name": "/var/lib/dpkg/info/libffi6:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "9f9e5f3f8070200e5c98a1111f276a2e4fccb469" + }, + { + "alg": "SHA-256", + "content": "146dfd36121c02864ab52940a205a18f2279f2a6ba68da383ca7e00ee06a9552" + } + ] + }, + { + "bom-ref": "552e3acddb1c5042", + "type": "file", + "name": "/var/lib/dpkg/info/libgcc1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "72f4860ca6a56d184f849f133a4b44895320d603" + }, + { + "alg": "SHA-256", + "content": "d32dcbe9f9152f8e02e7dda525a611cb1231ddfbc434b82eded558822ce4b8fe" + } + ] + }, + { + "bom-ref": "14ffb015cd09292b", + "type": "file", + "name": "/var/lib/dpkg/info/libgcrypt20:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "bc6f9cc539c782cc9112b3a75345f7d97c10b1de" + }, + { + "alg": "SHA-256", + "content": "6e5c2488ccfa02caeb8b97554ca5b979d37bbd7fad6993111c634a3b2626b861" + } + ] + }, + { + "bom-ref": "cda770dea2f8d00d", + "type": "file", + "name": "/var/lib/dpkg/info/libgmp10:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "a3be8091fab7d1270bed863ea22c0728d73ea71b" + }, + { + "alg": "SHA-256", + "content": "1503904f162ad5fa0446380324a3c56d15627a8d338052f1a0f10618c80c4998" + } + ] + }, + { + "bom-ref": "c2a4d49088fb90ec", + "type": "file", + "name": "/var/lib/dpkg/info/libgnutls30:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "7486a2db4a270af30a4301a23f0d8e68ed2e9ff0" + }, + { + "alg": "SHA-256", + "content": "182369110dc50ea58a9b01c55ec9334f8dce31546e3d390d395f95ac179966ac" + } + ] + }, + { + "bom-ref": "eec67e3ba14dc12f", + "type": "file", + "name": "/var/lib/dpkg/info/libgpg-error0:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "1637764fdd1fc4cff92ef8b4ea49592842d2a4d1" + }, + { + "alg": "SHA-256", + "content": "ab4022d67ab71f8abc30a089416c26c28a8d3059287b0a1bac19b67d7e16ca54" + } + ] + }, + { + "bom-ref": "c846dbf5c2038203", + "type": "file", + "name": "/var/lib/dpkg/info/libhogweed4:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "8802e9c0ef5e462be812c6e53a105b0228d887c4" + }, + { + "alg": "SHA-256", + "content": "81eeb35804c900342abb398e8b50a42408c57bfe42cfb58aa648555b16d0a5b7" + } + ] + }, + { + "bom-ref": "373c9b7f7450d3eb", + "type": "file", + "name": "/var/lib/dpkg/info/libidn2-0:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "799ef8ac39821fb3a0bb9c1636e80f4cc031ccd1" + }, + { + "alg": "SHA-256", + "content": "216632651f6ccd13b8c4a92cfc0e9f023fa636b3ecb42d1acb5f0cbf7ccad385" + } + ] + }, + { + "bom-ref": "0c449c39ebed6834", + "type": "file", + "name": "/var/lib/dpkg/info/liblz4-1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "dbe2749c08e0d1fba9a23cad420ee215a2054522" + }, + { + "alg": "SHA-256", + "content": "3dedd2cbe52dbd164dccf7ab09aff428853005ffab9ca48d669f5aacf0383ccb" + } + ] + }, + { + "bom-ref": "5d63bad22591d90a", + "type": "file", + "name": "/var/lib/dpkg/info/liblzma5:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "a8813643018821ccf1533921d82f49c3166ef29b" + }, + { + "alg": "SHA-256", + "content": "37121275232b08793279c2f13e2d5b52a9cf380c01723174b8508fb676a161d4" + } + ] + }, + { + "bom-ref": "f0e47eed0b291e71", + "type": "file", + "name": "/var/lib/dpkg/info/libmount1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "fe3e884a1d7bc686120f9af02d56bc6958e39da9" + }, + { + "alg": "SHA-256", + "content": "cf73ac29b22fa67c9cb08bd1f424c44c376e8d25ee1407972d91c38f6a8286ef" + } + ] + }, + { + "bom-ref": "0c4a43d78eccd897", + "type": "file", + "name": "/var/lib/dpkg/info/libncursesw6:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "d42ed9225ddb8e4250bc859be3ccc5ce08b6784b" + }, + { + "alg": "SHA-256", + "content": "336d3c081602a0697afaf290542470be8841bd3c1d14d6d4d041753b866b302c" + } + ] + }, + { + "bom-ref": "96472c32ca240357", + "type": "file", + "name": "/var/lib/dpkg/info/libnettle6:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "11868741b438e3f56cadb83ab09e121b76745388" + }, + { + "alg": "SHA-256", + "content": "3959d6ef7f539eb4590a8dec3ba30a4d2be0079226bd736d69c171de5d1f240a" + } + ] + }, + { + "bom-ref": "00fbdc4ed5f0fb95", + "type": "file", + "name": "/var/lib/dpkg/info/libp11-kit0:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "11221d0944c57ce783c8e7ced99528f0fd790994" + }, + { + "alg": "SHA-256", + "content": "882e6e5ef14a3217acf8f1dc724b4ba7eb1b027a912412be79e77e925f87d759" + } + ] + }, + { + "bom-ref": "3e6d05690d48258d", + "type": "file", + "name": "/var/lib/dpkg/info/libpam-modules-bin.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "27ce871fc00f24217b5b5798db488afd3d44fdae" + }, + { + "alg": "SHA-256", + "content": "df966cbf9d317eac8664ace185fcc8719052f35021d521c74d83c79054fd58a6" + } + ] + }, + { + "bom-ref": "b9969fd3da8a5033", + "type": "file", + "name": "/var/lib/dpkg/info/libpam-modules-bin.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "ba5dd6ae7744dae1e5ff228274f79b39a348dc77" + }, + { + "alg": "SHA-256", + "content": "86f1318a80e13b80f5e6b47556eb25e1c321944b4106b4deea50172de3917990" + } + ] + }, + { + "bom-ref": "fedc662bcd7b2653", + "type": "file", + "name": "/var/lib/dpkg/info/libpam-modules:amd64.conffiles", + "hashes": [ + { + "alg": "SHA-1", + "content": "3df8a83976b32d5edd9abfd520733592b017bd8c" + }, + { + "alg": "SHA-256", + "content": "d55c2f2fa42a5a8d21bb599e010aa7053a91156c8523bc54fe6907ddfbf665dd" + } + ] + }, + { + "bom-ref": "904d44bfce001189", + "type": "file", + "name": "/var/lib/dpkg/info/libpam-modules:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "d9fa7e1bcf3c4d2ba6b3560cfbc5b39b264c649b" + }, + { + "alg": "SHA-256", + "content": "853b2852b5a129dbde9fbe9980989fb3d532ac149d33806d0fa5058dd59cb37c" + } + ] + }, + { + "bom-ref": "2d505f68543991f3", + "type": "file", + "name": "/var/lib/dpkg/info/libpam-runtime.conffiles", + "hashes": [ + { + "alg": "SHA-1", + "content": "ac667b2e62edafa178fcff950dba09d1e28d061d" + }, + { + "alg": "SHA-256", + "content": "0e5df5e3149674007ef3a300996163a4d8692d21dabe9df527cf6a07e3abd65d" + } + ] + }, + { + "bom-ref": "73355abae555e932", + "type": "file", + "name": "/var/lib/dpkg/info/libpam-runtime.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "acee4acedcbfe7dde1775969b2ad526efc28b4f8" + }, + { + "alg": "SHA-256", + "content": "51cc0665b9e3b5530e56deb71993fa15c04dc5eec938f325c4c9e4bf8e1b9c98" + } + ] + }, + { + "bom-ref": "3c3f1875dd913e3b", + "type": "file", + "name": "/var/lib/dpkg/info/libpam-runtime.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "ee930b9cbde8f322afbd7f91822c8e5505fe7779" + }, + { + "alg": "SHA-256", + "content": "30effbaccf8fc2b9c2f35314097ae6efd14352876a329558ee9a874f19b415ea" + } + ] + }, + { + "bom-ref": "f257a3fb94273a0d", + "type": "file", + "name": "/var/lib/dpkg/info/libpam-runtime.postinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "f391ef6ebf91b1b84b2637480b8ebc8d7f1881c0" + }, + { + "alg": "SHA-256", + "content": "d6db2d0dd0999f840faaacc10a2cdc4e6b9227022b2d72da42ee67fe7c5968ec" + } + ] + }, + { + "bom-ref": "7a19fecd7498da5c", + "type": "file", + "name": "/var/lib/dpkg/info/libpam-runtime.postrm", + "hashes": [ + { + "alg": "SHA-1", + "content": "d2ae0a308fe07c53c7553c9f6775b7a28d67b1f6" + }, + { + "alg": "SHA-256", + "content": "2143ded6d389bca52b9c819af779de4039b359bcd8f0d015cc2a740e46a34576" + } + ] + }, + { + "bom-ref": "9a881ce3b9f8588c", + "type": "file", + "name": "/var/lib/dpkg/info/libpam-runtime.prerm", + "hashes": [ + { + "alg": "SHA-1", + "content": "742528c58c4744e7b1d46d73f6d31f466ff75201" + }, + { + "alg": "SHA-256", + "content": "b3e3b7ea23ac1d1c74ebc6aa3efee132675f5e69d9e2caba6c23e64a7b94b7f8" + } + ] + }, + { + "bom-ref": "76558b089abcbcac", + "type": "file", + "name": "/var/lib/dpkg/info/libpam-runtime.templates", + "hashes": [ + { + "alg": "SHA-1", + "content": "f12bb4fe75fad3cc2b07df46edb744863942fdd7" + }, + { + "alg": "SHA-256", + "content": "9dde4a26827d812fec5ad30ba50d6bcb9ddc7769d983de02cf9aec9172e8bdf8" + } + ] + }, + { + "bom-ref": "f3698b0400f88639", + "type": "file", + "name": "/var/lib/dpkg/info/libpam0g:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "3577d1874d8306b17fec7c92bb916a48a6b6a2a4" + }, + { + "alg": "SHA-256", + "content": "33d2911a2142818bd388a6e5545baec7da7b9687946d2ec3a682e435983ca20b" + } + ] + }, + { + "bom-ref": "e859de239a4d631f", + "type": "file", + "name": "/var/lib/dpkg/info/libpcre3:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "684ff301864c3a7844b56fd27f7ff92abd8d9ec3" + }, + { + "alg": "SHA-256", + "content": "371dc6fc3eb80319b903f7347fbd5ea406e50b855144e1e4c913c380326c13ac" + } + ] + }, + { + "bom-ref": "442ef226bf9c5a40", + "type": "file", + "name": "/var/lib/dpkg/info/libseccomp2:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "c0eb11dd0bb5aee5ba64c159e251f0cd9d5b7413" + }, + { + "alg": "SHA-256", + "content": "6a29131563b81422aae8745433a05977ba2dfc5a7e915750dc6478d22416f08d" + } + ] + }, + { + "bom-ref": "fd7ba620bd6ee194", + "type": "file", + "name": "/var/lib/dpkg/info/libselinux1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "6dbb3de3c03a3c17a25f282882c70e223206bf5c" + }, + { + "alg": "SHA-256", + "content": "4cda83cb3c40eef078c499466e9849ab789302afa5d0ffdb73f2a15d596dc009" + } + ] + }, + { + "bom-ref": "4538c4cbc5a31ca9", + "type": "file", + "name": "/var/lib/dpkg/info/libsemanage-common.conffiles", + "hashes": [ + { + "alg": "SHA-1", + "content": "63c2c2b06c9064268fa7d094baab637e43fc4385" + }, + { + "alg": "SHA-256", + "content": "e0b0a931b5ae99c4bc030b6ecb183385a46fbd5e55e0e10cce9d5ed1eae556e2" + } + ] + }, + { + "bom-ref": "5c371c2831ff536b", + "type": "file", + "name": "/var/lib/dpkg/info/libsemanage-common.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "5905729943bf354e56467b21ec9a5606885ea570" + }, + { + "alg": "SHA-256", + "content": "11bc9aa8b78fffb063ba39f6913b15d192f4f3d8e417213f57ad18b73a6be0ea" + } + ] + }, + { + "bom-ref": "c22a9ae05f938a7a", + "type": "file", + "name": "/var/lib/dpkg/info/libsemanage-common.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "d7fa03497f5085931dac17f0d51361dfcac01513" + }, + { + "alg": "SHA-256", + "content": "44038d3202b987a0e117cd6c168e89734e7a55837cc8ed4469a08276475c3373" + } + ] + }, + { + "bom-ref": "c80ac7e73bd3c93b", + "type": "file", + "name": "/var/lib/dpkg/info/libsemanage1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "720260ac1a83de80bcd89f38c8f9dbe66d335c35" + }, + { + "alg": "SHA-256", + "content": "bb364ba734791fc9c178cca623c92abe72e9e8cb722044219e0aefcdfe1dc132" + } + ] + }, + { + "bom-ref": "fa6ac55276ad4adc", + "type": "file", + "name": "/var/lib/dpkg/info/libsepol1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "41f03f4a9ffdbcb4b1ced7e987e727719c41d85d" + }, + { + "alg": "SHA-256", + "content": "a57cfed1c862aa39dd5f9680fb6b3e6194e90c8f9c1dbaeda010e5618076a758" + } + ] + }, + { + "bom-ref": "7f66a5fc0299f7cf", + "type": "file", + "name": "/var/lib/dpkg/info/libsmartcols1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "55eb7e527adb1f4e36fa3587743edefbfd8f461e" + }, + { + "alg": "SHA-256", + "content": "3bfb7c535c98f1091193e0d88d397cb2168fbeca65814e09a554073de00c6263" + } + ] + }, + { + "bom-ref": "9aff87a14fbe14e6", + "type": "file", + "name": "/var/lib/dpkg/info/libss2:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "e02811614c1643f9bb0d7f50bc090c967ec13252" + }, + { + "alg": "SHA-256", + "content": "d46e56804e251cb436571f44e8bee6a2e7b0d59d5d6a9b7217d8fa0ff42d20de" + } + ] + }, + { + "bom-ref": "04aad2a0f7739d34", + "type": "file", + "name": "/var/lib/dpkg/info/libstdc++6:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "0147d0aece08b68d1ea04230ad4327fafd8da4a7" + }, + { + "alg": "SHA-256", + "content": "4aa0bd568fd6f49694a3dd125455b1302ccffb4591037ecbdb9799f52a0dd567" + } + ] + }, + { + "bom-ref": "b5a4d0939bd01f16", + "type": "file", + "name": "/var/lib/dpkg/info/libsystemd0:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "da5ace7d1db86857c104b762ddf8d552807ebb4a" + }, + { + "alg": "SHA-256", + "content": "0a1f088f9634db56f72d25f3062eb6dced50579e29136ebe6558d90c7aedd4c0" + } + ] + }, + { + "bom-ref": "45b6b78c8f86d761", + "type": "file", + "name": "/var/lib/dpkg/info/libtasn1-6:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "aeefe3092df4e75dcabc3b64069e10bff11a08f2" + }, + { + "alg": "SHA-256", + "content": "b88477cffe9078ae6c101c35d33279d7f774ce7c6913786c3b84dcbd44459ef4" + } + ] + }, + { + "bom-ref": "90d9238c47fa72dd", + "type": "file", + "name": "/var/lib/dpkg/info/libtinfo6:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "d08c08a3676c4aa618f7ec0fa7b13f0c241894af" + }, + { + "alg": "SHA-256", + "content": "b671ca577de6eedca93c8df9312452e104645ac09b5088d71d917a3d8781eac2" + } + ] + }, + { + "bom-ref": "07b6e6b19f82565f", + "type": "file", + "name": "/var/lib/dpkg/info/libudev1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "163b6f3e8f5c966dd9b4fa9cb6d84beb81192345" + }, + { + "alg": "SHA-256", + "content": "1796684028a9291a61b775964cc8ea50e41cce5cf9c88c17f7af73fab3fe2bc3" + } + ] + }, + { + "bom-ref": "a97ee37b179f1698", + "type": "file", + "name": "/var/lib/dpkg/info/libunistring2:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "8095b029d4e66b6498a05e60efd232aaf99eccb2" + }, + { + "alg": "SHA-256", + "content": "bfd97b2571439887efe61bd61a71512f1659fb63be1dd46527642e46609b524a" + } + ] + }, + { + "bom-ref": "2de23c06c5760e53", + "type": "file", + "name": "/var/lib/dpkg/info/libuuid1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "6e13e5b40242605fb0a27964f4ed02d1962ea941" + }, + { + "alg": "SHA-256", + "content": "b0538c430aa7d95208ed4479bb93e4b0683a69eb34b097e3537ebb5743b2bc6b" + } + ] + }, + { + "bom-ref": "e6cba64d1b885d90", + "type": "file", + "name": "/var/lib/dpkg/info/libzstd1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "309e6afa5c3468dd1faee3f741734f59448a2970" + }, + { + "alg": "SHA-256", + "content": "6606f8484eeae936460fb6d7201c83ae63aa666c57ae0c7910101354697a6a3a" + } + ] + }, + { + "bom-ref": "c37a47a8ee8feb94", + "type": "file", + "name": "/var/lib/dpkg/info/login.conffiles", + "hashes": [ + { + "alg": "SHA-1", + "content": "f021a0cea879d52870bcfd875ba5e2856ae63cf0" + }, + { + "alg": "SHA-256", + "content": "87c7a8899eceddd525138d2df3f44736f529a7e10b9fabed8ce3d234c7bab266" + } + ] + }, + { + "bom-ref": "57e9677762d3e7fd", + "type": "file", + "name": "/var/lib/dpkg/info/login.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "af32b7ccb3e7f2d291c2ea2a2028b848c4a6abec" + }, + { + "alg": "SHA-256", + "content": "0b632852c0464372875270a9ee8ab155d15557c600d22cbceee950cd0a3c3fd7" + } + ] + }, + { + "bom-ref": "099693c3ce9ce594", + "type": "file", + "name": "/var/lib/dpkg/info/login.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "635d1f98e4d4859025141822363b7d61f71a0bdf" + }, + { + "alg": "SHA-256", + "content": "00296931ec5d2eda111136b1c025a5a22f6e3795dd9f0208d0fdd00f2983f22a" + } + ] + }, + { + "bom-ref": "3803ad4458dd74a9", + "type": "file", + "name": "/var/lib/dpkg/info/login.postinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "9cce00a7f138dea0ec6ee63639b965072a838ec9" + }, + { + "alg": "SHA-256", + "content": "13780f74190f9e9564d2eaf2d4f9d26e09c67b15a61ebae713b070854e263f58" + } + ] + }, + { + "bom-ref": "8a4c669977d45dff", + "type": "file", + "name": "/var/lib/dpkg/info/login.preinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "ac2a6020d5592452619da61120572792f7571ec9" + }, + { + "alg": "SHA-256", + "content": "60940bcd58ac8bc2308601c284183358fa5814064ac33e90345f706dc35f473b" + } + ] + }, + { + "bom-ref": "cd9d181501b40366", + "type": "file", + "name": "/var/lib/dpkg/info/mawk.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "95fd0dfcd5936c36f9a2523a8c958ed4692f7969" + }, + { + "alg": "SHA-256", + "content": "362378374a77852a70e0e0131ef2241675623e663817a1167f8db4497ae9e80a" + } + ] + }, + { + "bom-ref": "9ecda1345c8074e4", + "type": "file", + "name": "/var/lib/dpkg/info/mawk.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "3de654dd41c2cb9508814bbdf3ec0d809240a52a" + }, + { + "alg": "SHA-256", + "content": "66921a131a48fd13c2ea73b30af7873a74b632d845164aefee1f4dae60a0a55e" + } + ] + }, + { + "bom-ref": "53147d0eebc47bf4", + "type": "file", + "name": "/var/lib/dpkg/info/mawk.postinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "298be82d393cdc9ce13ecab2a3124af36d657db0" + }, + { + "alg": "SHA-256", + "content": "6374f7996297a6933c9ccae7eecc506a14c85112bf1984c12da1f975dab573b2" + } + ] + }, + { + "bom-ref": "980f9a988ef85090", + "type": "file", + "name": "/var/lib/dpkg/info/mawk.prerm", + "hashes": [ + { + "alg": "SHA-1", + "content": "67cc822086f049733fa9a2f23c481f6df8ffe9af" + }, + { + "alg": "SHA-256", + "content": "7f5bf8abeb16efa0dea7513462bf1a1dbfee6a7945dc39424d87547128d52aca" + } + ] + }, + { + "bom-ref": "b1eebfc72ef55007", + "type": "file", + "name": "/var/lib/dpkg/info/mount.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "3e73b125798fe785d8b2093c9cc632bb0cbaceab" + }, + { + "alg": "SHA-256", + "content": "8caba783884a56a3600a0a63b5bd220f396b5a781e251f474609e5a5af306a1b" + } + ] + }, + { + "bom-ref": "adab33dc298bf92e", + "type": "file", + "name": "/var/lib/dpkg/info/mount.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "9c4ea4ae1415008ee7f2e580df4e65a35eb8d826" + }, + { + "alg": "SHA-256", + "content": "e88b521a8422136d34c08e30546d3a890ce9e28a5612415f3c1a7ae87636ec1c" + } + ] + }, + { + "bom-ref": "af48fb936238c057", + "type": "file", + "name": "/var/lib/dpkg/info/ncurses-base.conffiles", + "hashes": [ + { + "alg": "SHA-1", + "content": "3e29390e819adb21b30675bbf4b2d1aab57d5b85" + }, + { + "alg": "SHA-256", + "content": "b97a47660009db296563cccb2fdce8826e134e3b1bf90248d9c7cf825f06e50a" + } + ] + }, + { + "bom-ref": "759329fe9f461230", + "type": "file", + "name": "/var/lib/dpkg/info/ncurses-base.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "17f8aef5b27c89050b61406dbe84360fb14992d9" + }, + { + "alg": "SHA-256", + "content": "6d62c5df571987a05ea8bf883bd75e77f35f48b1cdc7ebc6edff7d3c3582815a" + } + ] + }, + { + "bom-ref": "2c68d9520352e4e4", + "type": "file", + "name": "/var/lib/dpkg/info/ncurses-base.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "5937025656c50e8a56d21c63eddaeaf16a2ec6c7" + }, + { + "alg": "SHA-256", + "content": "e123e3a60a36156d3ed047db00205b9102f878096d672a3e6f0f68af45e6bc67" + } + ] + }, + { + "bom-ref": "dfc6f73044fbefa3", + "type": "file", + "name": "/var/lib/dpkg/info/ncurses-bin.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "3cd1205937d1263748a43eece3ce55edd5f5ab66" + }, + { + "alg": "SHA-256", + "content": "9c28f1e97eb7a36b845560811521dea9d82bb20b8139fd0c4bf0a7ac77485ec9" + } + ] + }, + { + "bom-ref": "209575ea285d9910", + "type": "file", + "name": "/var/lib/dpkg/info/ncurses-bin.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "37392b45ebe4dbedf0b754c5ed770e076c6748ac" + }, + { + "alg": "SHA-256", + "content": "746d24a9de22039ff611073985ff3aac785fdfad0c0406652c8370ce1fcc2d67" + } + ] + }, + { + "bom-ref": "7a54d5b0a3b67385", + "type": "file", + "name": "/var/lib/dpkg/info/passwd.conffiles", + "hashes": [ + { + "alg": "SHA-1", + "content": "ff8121167feb3339ae588cc76b1c2e90d1e54dfb" + }, + { + "alg": "SHA-256", + "content": "05cfff1ddfa6cf7fc524250fe96fba6e443e070b15a4014b74c7a4a5d07a12a2" + } + ] + }, + { + "bom-ref": "32662429165fcefa", + "type": "file", + "name": "/var/lib/dpkg/info/passwd.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "7eacfdf59432c88ca0e997249111e5cad00595e3" + }, + { + "alg": "SHA-256", + "content": "3054328771c1a422e3af1132091b55842b27ef0c50de8d95faad643a4a12e895" + } + ] + }, + { + "bom-ref": "3c7dcb1409f79b36", + "type": "file", + "name": "/var/lib/dpkg/info/passwd.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "3fc75750cb8afde6f7d40375af60a5e6dc5b8bc1" + }, + { + "alg": "SHA-256", + "content": "25d4cd43e8bd011dfc1e282067ea93a795a15b8bc3307dc957c16b7caf85716f" + } + ] + }, + { + "bom-ref": "7a4d37c54232d28c", + "type": "file", + "name": "/var/lib/dpkg/info/passwd.postinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "66a8a17c4fd7d8f295b663c25c2f9d8ac6013f38" + }, + { + "alg": "SHA-256", + "content": "faa2672789a5cf0e080ba117439fe781518aa7e155f4fe325e97eabbb9fea879" + } + ] + }, + { + "bom-ref": "b99b6cd6f3efca34", + "type": "file", + "name": "/var/lib/dpkg/info/passwd.preinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "e64afaeb33ce984e91e683b20fbea7054be9109b" + }, + { + "alg": "SHA-256", + "content": "cf6e8844db16f76a96c215d16d674c35d3ff7128fef855c6c690f04f3aa38a64" + } + ] + }, + { + "bom-ref": "1aba9ff9338a247f", + "type": "file", + "name": "/var/lib/dpkg/info/perl-base.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "1d789c2387f844c9bcf31c238f9be765d26fb029" + }, + { + "alg": "SHA-256", + "content": "e3b2b1b9d77e363fba0de072687baeed94f95c44580768d96e3efce3d58432a3" + } + ] + }, + { + "bom-ref": "b0e583b70774d126", + "type": "file", + "name": "/var/lib/dpkg/info/perl-base.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "33393f408edb2f1526c7f5d1e8c6eb1b1bc890ca" + }, + { + "alg": "SHA-256", + "content": "cf9ba1eba5e6886c620fd962192226d6d4a4a897874c0c1c356374f322d671e2" + } + ] + }, + { + "bom-ref": "3a31601b54e5ab82", + "type": "file", + "name": "/var/lib/dpkg/info/sed.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "603146d518f7b644ccb5972114f541ba9b04174b" + }, + { + "alg": "SHA-256", + "content": "5ade75cbe445776676e0d7b189262df16f41b85cc3277075a969540b1d30d2f0" + } + ] + }, + { + "bom-ref": "8843f830c46fead3", + "type": "file", + "name": "/var/lib/dpkg/info/sed.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "7a6ec8abafea9dcf8ee46d2d4344de99b867805d" + }, + { + "alg": "SHA-256", + "content": "953f975da6623a7577db8e06c65894278102e98da11c750657a63babb1531d8e" + } + ] + }, + { + "bom-ref": "6a86bd6fae23e08e", + "type": "file", + "name": "/var/lib/dpkg/info/sysvinit-utils.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "f97b13f3626ec9269b72f115ef7f5b419e54a8c0" + }, + { + "alg": "SHA-256", + "content": "201c4dc0cc171838e01e801bfdf022ac760fef040ffe2a8997d66033430f41ca" + } + ] + }, + { + "bom-ref": "b75e6fe88c055c1d", + "type": "file", + "name": "/var/lib/dpkg/info/sysvinit-utils.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "6dbbec06e6922f796ebcce90a79b97d9045f612d" + }, + { + "alg": "SHA-256", + "content": "e37f9a8ba3490cb256acf1a9265f4d5d61dde96186f5579d990f8e60ca2f05b5" + } + ] + }, + { + "bom-ref": "25628b0204fc9884", + "type": "file", + "name": "/var/lib/dpkg/info/tar.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "7dd9dbb6ff1d4fcdd4979d53cde30b246546e794" + }, + { + "alg": "SHA-256", + "content": "ecfae764fe6afbd5dd3b13a64f55fc54b3e80b6957840237940201e2d362c986" + } + ] + }, + { + "bom-ref": "5fa85ac29c269961", + "type": "file", + "name": "/var/lib/dpkg/info/tar.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "d7e1055247d4f26534981258cd044f2cec6657ae" + }, + { + "alg": "SHA-256", + "content": "da1738db2ea4e1bb022681b88eef37d204df0d53fc17f36a417c9275891390f0" + } + ] + }, + { + "bom-ref": "e65a8f4f7f09e858", + "type": "file", + "name": "/var/lib/dpkg/info/tar.postinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "541bdf68ab980e044aa4bfa7c2b3f601958e4988" + }, + { + "alg": "SHA-256", + "content": "4eed7466e8f44c6b480002d80becc0d998c462b759c0118e285170a93f4b3dca" + } + ] + }, + { + "bom-ref": "24b10b5c6ed863fe", + "type": "file", + "name": "/var/lib/dpkg/info/tar.prerm", + "hashes": [ + { + "alg": "SHA-1", + "content": "39cbb5ac7a222a8e9588d131a3ea3c95e830b70d" + }, + { + "alg": "SHA-256", + "content": "de3fa1115a52ea8e0017f65b767176146e35585e050581adcef95aab495d648c" + } + ] + }, + { + "bom-ref": "363f6e7ca539a0ae", + "type": "file", + "name": "/var/lib/dpkg/info/tzdata.config", + "hashes": [ + { + "alg": "SHA-1", + "content": "c83089308f7ad6ccb09713789061ae8dcfe4da0b" + }, + { + "alg": "SHA-256", + "content": "06b375f4c33ed60b3a5c0509e77d6e1268afcdafee18f7a93ac7cb60ffe1fd67" + } + ] + }, + { + "bom-ref": "08793c6752dc767b", + "type": "file", + "name": "/var/lib/dpkg/info/tzdata.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "08a17ca31ff9640aa58f88cf59281a7bc8ee004b" + }, + { + "alg": "SHA-256", + "content": "f37085e96efe0799f5cd163c0f18ede09fdb4c4e715b5aca8afd4ecac64d3878" + } + ] + }, + { + "bom-ref": "9d7c63a63220ed3d", + "type": "file", + "name": "/var/lib/dpkg/info/tzdata.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "f123ee7c69c280f00c69f36431595306e3fc7981" + }, + { + "alg": "SHA-256", + "content": "84e6a26edb9f10a75d0303e3b0286543baee762b83e5a32cfd4180b77cd851dc" + } + ] + }, + { + "bom-ref": "82e67d632529b85e", + "type": "file", + "name": "/var/lib/dpkg/info/tzdata.postinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "7430fca277bbc136ad4200bc4c8b15bba33770c1" + }, + { + "alg": "SHA-256", + "content": "d0b65a6ef298850b186a12b84cdeff63f79b272a259b2f4495aca6f3e14eed86" + } + ] + }, + { + "bom-ref": "0cb0f93abbaa7570", + "type": "file", + "name": "/var/lib/dpkg/info/tzdata.postrm", + "hashes": [ + { + "alg": "SHA-1", + "content": "e81b69d0fe68e81e8a78f95aea0473cc755211b4" + }, + { + "alg": "SHA-256", + "content": "3ae0a53f093dab27fbeaec8f240ed162be743ae77edb9a82cadffad13664208b" + } + ] + }, + { + "bom-ref": "58b9fe696275b747", + "type": "file", + "name": "/var/lib/dpkg/info/tzdata.templates", + "hashes": [ + { + "alg": "SHA-1", + "content": "e1c0461e32b038989d1102d21805c0d84567e25f" + }, + { + "alg": "SHA-256", + "content": "6ffd96b4ce49812f45e8a3aa678dbcab760c8eeaa3b56c87501ea852a4c3fc27" + } + ] + }, + { + "bom-ref": "91f802e9b83c9cef", + "type": "file", + "name": "/var/lib/dpkg/info/util-linux.conffiles", + "hashes": [ + { + "alg": "SHA-1", + "content": "9c65154ec7e789334354b849b7bc4ca813201ec4" + }, + { + "alg": "SHA-256", + "content": "6f508a501d0a0367d792e191ea32aea0aea84032a22c3899e46ba6cbb2782d97" + } + ] + }, + { + "bom-ref": "205da275beae3680", + "type": "file", + "name": "/var/lib/dpkg/info/util-linux.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "8e39b85554586e3c0f1ea2c7cf6bd8afb513e104" + }, + { + "alg": "SHA-256", + "content": "bda6d146c88255cbc744e5a6e3511ffcae641adae77c0fa9caee72b568dc4a5a" + } + ] + }, + { + "bom-ref": "19095eefa5cd7633", + "type": "file", + "name": "/var/lib/dpkg/info/util-linux.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "c0f5ecc89a1a0b4b2015ca409750c6488b537a23" + }, + { + "alg": "SHA-256", + "content": "157007410d05b53ece689f9e2a92c6c38783a01463ebc7128aceff9c75f425f1" + } + ] + }, + { + "bom-ref": "04a7916feb1e1e65", + "type": "file", + "name": "/var/lib/dpkg/info/util-linux.postinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "fe4d64dc2e2e593019f003e46ce413326d191364" + }, + { + "alg": "SHA-256", + "content": "ddd86327b0e0c543782a86860c4bb501ba41755251ff7985f769cfbbe658b87a" + } + ] + }, + { + "bom-ref": "735d07bdad788459", + "type": "file", + "name": "/var/lib/dpkg/info/util-linux.postrm", + "hashes": [ + { + "alg": "SHA-1", + "content": "9662e4420ec5015395f8321367ef020b02260f71" + }, + { + "alg": "SHA-256", + "content": "1d1f844c29b80517559e40728df5fbfde817ce10e50c16aa3ad1cd37325758a3" + } + ] + }, + { + "bom-ref": "0985d5c3ae25155c", + "type": "file", + "name": "/var/lib/dpkg/info/util-linux.prerm", + "hashes": [ + { + "alg": "SHA-1", + "content": "23196a533c3a84f5c75f392227f983dd2b8d67c4" + }, + { + "alg": "SHA-256", + "content": "860fa296fe027f8a893d2ede4ce9c13e12a8e1c325be18b7ab263fa534695a93" + } + ] + }, + { + "bom-ref": "58a5615762253691", + "type": "file", + "name": "/var/lib/dpkg/info/zlib1g:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "b125e5816025dd34eb940bb17f8de01e635b2e0f" + }, + { + "alg": "SHA-256", + "content": "e0f4d7c724dce1c126f260e25994702341f82fd6e6d807462da322f9b4816276" + } + ] + }, + { + "bom-ref": "56b21cc13f8986af", + "type": "file", + "name": "/var/lib/dpkg/status", + "hashes": [ + { + "alg": "SHA-1", + "content": "1f1c9f6246dbf3515ef6a1e6886b0309b165dfd7" + }, + { + "alg": "SHA-256", + "content": "894c1759789f1518a9e71b2ab3059dc8b07eb45c9f86813fde9d93d212e4020a" + } + ] + }, + { + "bom-ref": "1fcbd10101736763", + "type": "file", + "name": "/etc/ldap/ldap.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "92ae12598635df4f396da493f702ed59e77a33a3" + }, + { + "alg": "SHA-256", + "content": "3529bc485d817f9adc9e19f6931748184af43cd4c400918f5051af27fd80e8ff" + } + ] + }, + { + "bom-ref": "ad2e051d965db7fd", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libexpat.so.1.6.8", + "hashes": [ + { + "alg": "SHA-1", + "content": "38b76669ec0ae6d1ab27d6e97ec0b586d5e92d22" + }, + { + "alg": "SHA-256", + "content": "9081d3d3683c3353eedbcfea4dc95027e2d0d899d63c5ff193bd9eebf3148b73" + } + ] + }, + { + "bom-ref": "5822570909c51ff0", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/apr-util-1/apr_crypto_openssl-1.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "093ebe7c3650b51c613ac8b7b2c8e0e66e1ece77" + }, + { + "alg": "SHA-256", + "content": "12d1ce889d9c4dc495373e803564d76d67e6129e1fb941df5c5c8a0b777d7e77" + } + ] + }, + { + "bom-ref": "9ed0b80b6c827155", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/apr-util-1/apr_dbm_db-1.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "624c2514db3803348aff4a6fb817cbba6575e7a1" + }, + { + "alg": "SHA-256", + "content": "24c8669238514ddfc6c28d4d9ed1baebdc8c291e17c7ec34470994fcd641ec56" + } + ] + }, + { + "bom-ref": "621b304bf12e8ef5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/apr-util-1/apr_dbm_gdbm-1.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "fd48cee77ff1c0deff91d0e77e1c0a33bd33f3ed" + }, + { + "alg": "SHA-256", + "content": "d7d5867706c45fb0c1bddf3a1dcabae2109be64e8e5af9f7b55009f2710710d6" + } + ] + }, + { + "bom-ref": "01df3ea215b63532", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/apr-util-1/apr_ldap-1.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "dc4fc91b874879fd20fdb2fc3877ea758de5495f" + }, + { + "alg": "SHA-256", + "content": "ef21c4a5511a6b81410224fc04d9ae44ef544dc8ebc942d84a1ded3210840643" + } + ] + }, + { + "bom-ref": "20b69e4ac0ca3dc9", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/engines-1.1/afalg.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "272333cab44f9ce44c94afb940ae369cfacc04ed" + }, + { + "alg": "SHA-256", + "content": "2c0a8d148cc1f41f2c7853e4825198345a67e45a6c2854741e99e1d715c33855" + } + ] + }, + { + "bom-ref": "18c69fa6cafe2dc3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/engines-1.1/capi.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "6fa345aa6881c2e65b6c095ca2ff0b7b0f8795c8" + }, + { + "alg": "SHA-256", + "content": "5dab1a2291dbaca88daddc55b4e534a12b6cd222309a02baef9050ac51068c06" + } + ] + }, + { + "bom-ref": "cc3219e676718e20", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/engines-1.1/padlock.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "976546f2d059e66a038fa5f39c6b1bdee6e5b4b1" + }, + { + "alg": "SHA-256", + "content": "8d518c95a48074bc3978da0f35a784dcd0f3a6261069149d13e4bfa177ffd10e" + } + ] + }, + { + "bom-ref": "383a28e0f11e5a21", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libapr-1.so.0.6.5", + "hashes": [ + { + "alg": "SHA-1", + "content": "14a5db8897d76f899d0b879aae90e26e3a359eac" + }, + { + "alg": "SHA-256", + "content": "3fc78fcb61dc9550e6d2a03b4f8ba956f08c80add0a0147ca91f70d525f50ca1" + } + ] + }, + { + "bom-ref": "732a07af8672d9ae", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libaprutil-1.so.0.6.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "ae875733a5bfdd2fe5acec62d8b9f49557aefa6f" + }, + { + "alg": "SHA-256", + "content": "a367a71e528bb19b32e75ac62320a22baef843b40ef7e907d40de640500a38c0" + } + ] + }, + { + "bom-ref": "f0bc3c6177d7e3e2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libcrypto.so.1.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "c3fec899895db9e76722ed164e7e2202b3e8ded9" + }, + { + "alg": "SHA-256", + "content": "ea84125ef747ef0b62ca98fbf6f58685edcce3ba0dc2c659ff4256b4191b36b6" + } + ] + }, + { + "bom-ref": "edb214f49b00e40e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libexpatw.so.1.6.8", + "hashes": [ + { + "alg": "SHA-1", + "content": "254e99e4d42986e0008649d4aa957068bd0d6d01" + }, + { + "alg": "SHA-256", + "content": "88eec91d28c7073152341d3040ee08dd4e9364b6c6443187aa87386d3b53439e" + } + ] + }, + { + "bom-ref": "beec57e1bb9ddbfe", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libgdbm.so.6.0.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "edc76eb4a58ddea29e2a54a034ab46917a1e7024" + }, + { + "alg": "SHA-256", + "content": "ba313cd4047c1f8490d02f10c89ec32be9a50282b546de91ee37065da8a41735" + } + ] + }, + { + "bom-ref": "64c5b967e19a4f89", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/liblber-2.4.so.2.10.10", + "hashes": [ + { + "alg": "SHA-1", + "content": "881d231ef2b16ad1647f1238be60bede3259f92c" + }, + { + "alg": "SHA-256", + "content": "88c5e8924f8f6ada73385cd7d3175e8303960f566dbf34c4f80333243b0ecc45" + } + ] + }, + { + "bom-ref": "b061bcd45853dbd8", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libldap_r-2.4.so.2.10.10", + "hashes": [ + { + "alg": "SHA-1", + "content": "0333c37a7a93269481ea91f44c2da2cc628e0e8c" + }, + { + "alg": "SHA-256", + "content": "e00b6d3845c777d5a834c8164afceb853105c473eed1f4f28a7867cefe9bf856" + } + ] + }, + { + "bom-ref": "6d9b5ac86aa7158b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libsasl2.so.2.0.25", + "hashes": [ + { + "alg": "SHA-1", + "content": "b8094fa35d4a1eace6783a8532dda3fe3e22384b" + }, + { + "alg": "SHA-256", + "content": "aeb9831250b4c68732b05da7f96565f6679c6b9e4b89b4d452b5152a43fa2968" + } + ] + }, + { + "bom-ref": "214ed8882465b3d2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libssl.so.1.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "b6181a2e5566d5abe79f0351c1124724f4b68e38" + }, + { + "alg": "SHA-256", + "content": "3a98c2d9e91c278d4a0332d42616f7bfded96bb1f1a63f640c1e521ba6260706" + } + ] + }, + { + "bom-ref": "885443b8dacce042", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/sasl2/libsasldb.so.2.0.25", + "hashes": [ + { + "alg": "SHA-1", + "content": "6f43e841d05452fe3258efd51354639159c8814e" + }, + { + "alg": "SHA-256", + "content": "5152f5f81f758cc262f0679e26e4148db9c597a96d6c8bf39f362349fabf2bae" + } + ] + }, + { + "bom-ref": "cd633bcdb96a503f", + "type": "file", + "name": "/usr/share/doc/libapr1/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "9b57102069769cce1e86ab67d9193a71744b2630" + }, + { + "alg": "SHA-256", + "content": "05b1acb983fa0c8580a6b981e37c5a05e370029f4bfea2618ad0e418d646f578" + } + ] + }, + { + "bom-ref": "5a4a597c014486f6", + "type": "file", + "name": "/usr/share/doc/libaprutil1-ldap/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "86db7e5338da0094c88357442f799ccb27f8f870" + }, + { + "alg": "SHA-256", + "content": "c7506f37d68ef98f7808cdb09074d77433b734e51a7c82d60daff0b869cd83ef" + } + ] + }, + { + "bom-ref": "53d11f6dcb956408", + "type": "file", + "name": "/usr/share/doc/libaprutil1/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "86db7e5338da0094c88357442f799ccb27f8f870" + }, + { + "alg": "SHA-256", + "content": "c7506f37d68ef98f7808cdb09074d77433b734e51a7c82d60daff0b869cd83ef" + } + ] + }, + { + "bom-ref": "edc067efdb701414", + "type": "file", + "name": "/usr/share/doc/libexpat1/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "4028dc6cdde996dac11faaabe969173bbba4270f" + }, + { + "alg": "SHA-256", + "content": "15721756f0bdfd8fb83d3ae9fd9f76ceb3285b0ecacb0532a547e9e2f324c35c" + } + ] + }, + { + "bom-ref": "0ef59709499051ed", + "type": "file", + "name": "/usr/share/doc/libgdbm6/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "aa9c60252252e016b7d46524ba66f121561c4cc0" + }, + { + "alg": "SHA-256", + "content": "6a23a03e40c38dd0aa28885635bc1cbd989b596aafaecbaa0bf1d888535a672e" + } + ] + }, + { + "bom-ref": "486f918ade41204c", + "type": "file", + "name": "/usr/share/doc/libldap-2.4-2/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "dafbd159d68c2112925600499ef053994190dec0" + }, + { + "alg": "SHA-256", + "content": "0690f1ee382f98e95b446743db55395641d5e258de65939e9cb1c660d67a43a8" + } + ] + }, + { + "bom-ref": "b4fd9e37ff16d43b", + "type": "file", + "name": "/usr/share/doc/libldap-common/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "dafbd159d68c2112925600499ef053994190dec0" + }, + { + "alg": "SHA-256", + "content": "0690f1ee382f98e95b446743db55395641d5e258de65939e9cb1c660d67a43a8" + } + ] + }, + { + "bom-ref": "44c66a07639683e0", + "type": "file", + "name": "/usr/share/doc/libsasl2-2/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "c6bd709cbb5bbc8aeda80c91f4bd486b3bb63247" + }, + { + "alg": "SHA-256", + "content": "cc230c5b0ea3cecd0bd9aa6ebb778c3b1ddb3c478d94ccf6cbdf77c8ca99bc77" + } + ] + }, + { + "bom-ref": "42f4da5146b78205", + "type": "file", + "name": "/usr/share/doc/libsasl2-modules-db/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "c6bd709cbb5bbc8aeda80c91f4bd486b3bb63247" + }, + { + "alg": "SHA-256", + "content": "cc230c5b0ea3cecd0bd9aa6ebb778c3b1ddb3c478d94ccf6cbdf77c8ca99bc77" + } + ] + }, + { + "bom-ref": "eac807882c85d049", + "type": "file", + "name": "/usr/share/doc/libssl1.1/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "d2d7b4d2d035a7732fcded56e31300b65d471545" + }, + { + "alg": "SHA-256", + "content": "bd7fb9ce3586c01003ff505d69fade885b68b0f8a1cdd7ce43630f8ed3dc119a" + } + ] + }, + { + "bom-ref": "bc9cb707ab2712ef", + "type": "file", + "name": "/var/lib/dpkg/info/libapr1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "5ec1c6f54659bdf333fa4bfecac14a01f527c0c1" + }, + { + "alg": "SHA-256", + "content": "1359837201f1cab499614885795de74f95fd483f343248111626dca5ac2deec4" + } + ] + }, + { + "bom-ref": "87c302c73ba6a500", + "type": "file", + "name": "/var/lib/dpkg/info/libaprutil1-ldap:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "a0d3d500d06484d7eba160dbe3107213c0173583" + }, + { + "alg": "SHA-256", + "content": "de473ff9392e640dd04ad61c690de39d00df14319a738f38601d51db21b54a6c" + } + ] + }, + { + "bom-ref": "4acda2192f0b4200", + "type": "file", + "name": "/var/lib/dpkg/info/libaprutil1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "795bda739ab9b45418a1c2c9bbcc21390ad53aad" + }, + { + "alg": "SHA-256", + "content": "0509e2f75ea7f826d2564d0adade7814e322dacfe8dfac9bc57da8cd17edcb87" + } + ] + }, + { + "bom-ref": "4c66036f8442d7c8", + "type": "file", + "name": "/var/lib/dpkg/info/libexpat1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "fe91d4d66d19b718cc618517b9659d443a65dcdd" + }, + { + "alg": "SHA-256", + "content": "406ca9c7de9f01ef697d6522b7d91bc5ffeeb5dbedce938128d2f7e6e36112dd" + } + ] + }, + { + "bom-ref": "9100fe03b4344573", + "type": "file", + "name": "/var/lib/dpkg/info/libgdbm6:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "e7f7389fdc35da771a25e5e54460bd8701b011bf" + }, + { + "alg": "SHA-256", + "content": "52d1368b428bdf56ca56893912adc6dbd7cd68f0cb43a19ae2f0b5b6b430d881" + } + ] + }, + { + "bom-ref": "00e7a4978c83b1ca", + "type": "file", + "name": "/var/lib/dpkg/info/libldap-2.4-2:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "a0b94f59de6cbdc3339d12fcd963898e2dacad47" + }, + { + "alg": "SHA-256", + "content": "66ab0772da300b4e2658f7592417c7b8985f39939ce911f5c88dbd99583eb7cd" + } + ] + }, + { + "bom-ref": "b9fe7b71d3c56c40", + "type": "file", + "name": "/var/lib/dpkg/info/libldap-common.conffiles", + "hashes": [ + { + "alg": "SHA-1", + "content": "ddf48ce4269e89e1270cc61d06b73418cf31f9b2" + }, + { + "alg": "SHA-256", + "content": "12d338700c4401fd8aab581208555e662fc5e1b4081d7bcface40c3ad6c83070" + } + ] + }, + { + "bom-ref": "0af359526e4926b0", + "type": "file", + "name": "/var/lib/dpkg/info/libldap-common.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "4f39010b976a1fb3a430aebdb321b2b5968d7955" + }, + { + "alg": "SHA-256", + "content": "ccaf68d0b37d4ed64fdd0fc83cbea7f9c2566d02080a8762f8b49d2421f991a6" + } + ] + }, + { + "bom-ref": "ab848071ad3b3303", + "type": "file", + "name": "/var/lib/dpkg/info/libldap-common.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "688f845a40dba66fb3f1617a87c4e7c2061ab546" + }, + { + "alg": "SHA-256", + "content": "d0668c653ff46cc51ab79d7ee5444fa38902fba2943df441542a26be431e8ced" + } + ] + }, + { + "bom-ref": "b84c7651833ba2c2", + "type": "file", + "name": "/var/lib/dpkg/info/libsasl2-2:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "af426198675ad5a628fbfac12de8a6f3f3a13983" + }, + { + "alg": "SHA-256", + "content": "2204f527b5fbbaf93fa57d3fdeb3edf9640a1119f1d7ef22fbdf60cc8bbcefce" + } + ] + }, + { + "bom-ref": "659f70ca786127e4", + "type": "file", + "name": "/var/lib/dpkg/info/libsasl2-modules-db:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "47b2bb3aa1d70f61616031243e7c7e8b0e76de93" + }, + { + "alg": "SHA-256", + "content": "07a62ac9d43ab4fa1c1aeff0df9a941fe21936ee5347e968ebbfd15bfc91c818" + } + ] + }, + { + "bom-ref": "16ab5ad2d5953299", + "type": "file", + "name": "/var/lib/dpkg/info/libssl1.1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "2af8adca063f3f710ceb331a8975905c02ba4685" + }, + { + "alg": "SHA-256", + "content": "39cc1817f5c9394fff01544451dd6d665f92eed200ac4fd0283c7528616dad83" + } + ] + }, + { + "bom-ref": "401bec50a8eff0cb", + "type": "file", + "name": "/var/lib/dpkg/status", + "hashes": [ + { + "alg": "SHA-1", + "content": "46436289d32a9cd241320aaa851daf6714def3d3" + }, + { + "alg": "SHA-256", + "content": "9af5f13f24c0f99f9c2e2742014c54cb8acbe6ae47b5244c0de31f0bfc8a68e2" + } + ] + }, + { + "bom-ref": "de09781e0e3c422f", + "type": "file", + "name": "/lib/lsb/init-functions", + "hashes": [ + { + "alg": "SHA-1", + "content": "f42e62f9dea1d881a5eef072d8d0b5beb8c5c47d" + }, + { + "alg": "SHA-256", + "content": "3e0428b8665bb91a9783386ceef42f7e67e330f9db25a107c7131239c7e07405" + } + ] + }, + { + "bom-ref": "8bfa427bdefe9d11", + "type": "file", + "name": "/lib/lsb/init-functions.d/20-left-info-blocks", + "hashes": [ + { + "alg": "SHA-1", + "content": "1cba9ab03a0e2f597752891c67bcb55e1f700ee8" + }, + { + "alg": "SHA-256", + "content": "10997f92734d15a0a49c153f47cbd11553a2f3d8132f7191e6676a69444f8810" + } + ] + }, + { + "bom-ref": "58c7ef44b2310c77", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libkeyutils.so.1.8", + "hashes": [ + { + "alg": "SHA-1", + "content": "2825a952da3582dd0051ff98afbc6ada352d48b1" + }, + { + "alg": "SHA-256", + "content": "2d85f26959a61560d48223b45262b4223f97c3b5a56c75a4dcda8bed9907a939" + } + ] + }, + { + "bom-ref": "a9192c2e4ae09fbd", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/krb5/plugins/preauth/spake.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "6676323069a09111b9518d0682377a9bbef16946" + }, + { + "alg": "SHA-256", + "content": "d6d19e7ed35a13a5729d39f619f62357f3f63331a5961b1d339dad3547821e55" + } + ] + }, + { + "bom-ref": "b5ed2d667d16b942", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libbrotlicommon.so.1.0.7", + "hashes": [ + { + "alg": "SHA-1", + "content": "a258d9f8189bffd36fac36c1a139c4a90f4320ed" + }, + { + "alg": "SHA-256", + "content": "e46ad24bcb36b744df33156eb08bcadd8d14f2699adf4fe0d16848e40578c397" + } + ] + }, + { + "bom-ref": "10138d54ad42457f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libbrotlidec.so.1.0.7", + "hashes": [ + { + "alg": "SHA-1", + "content": "526c1cc1d27c60bdfab113bf769ec6a00f591296" + }, + { + "alg": "SHA-256", + "content": "ebdba87c3c2ab60695851d8758d52d325b9fee20784113f34f766e1cb9dd3876" + } + ] + }, + { + "bom-ref": "0cb6dc0d19bf6e6f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libbrotlienc.so.1.0.7", + "hashes": [ + { + "alg": "SHA-1", + "content": "942f4b154cf4834987ca563040516d073c6ca729" + }, + { + "alg": "SHA-256", + "content": "8d176b6c6817084088f27f3df8910e8ac6eb4fe33dd094f5bb2547b6a0a18f1f" + } + ] + }, + { + "bom-ref": "6466f483f37264dc", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libcurl.so.4.5.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "2d4c5f353cd38f15fc7e8268b4c068350d327b75" + }, + { + "alg": "SHA-256", + "content": "c65ea15000c6d180d350c0eb0f96ef60ae97700608a04a840a0188737486c600" + } + ] + }, + { + "bom-ref": "a0bddae0af74215c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libgssapi_krb5.so.2.2", + "hashes": [ + { + "alg": "SHA-1", + "content": "1518899546cd82532373b4c52924ba07d915f959" + }, + { + "alg": "SHA-256", + "content": "9b85bf8b2aff3c56dc3295ca0cff338dac64b23de16fbe8c39c5fc6b0134667e" + } + ] + }, + { + "bom-ref": "f9c36f410f701aed", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libicudata.so.63.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "4cf272e8d734928a46d18dd12775f6f8d198b453" + }, + { + "alg": "SHA-256", + "content": "11c540493e354f3fb907544ba908f1fe8eb1404d590b56fc518a67391f441ab5" + } + ] + }, + { + "bom-ref": "f1be8b9f171fe3a2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libicui18n.so.63.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "0bd885871f0809754c753deb01d60e6000c779df" + }, + { + "alg": "SHA-256", + "content": "e809f84da8f78aeccc4a8d3a6440a50efe1df698eb0b274bb8416e361a27f947" + } + ] + }, + { + "bom-ref": "114e71b376bb0f76", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libicuio.so.63.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "f1cad2aba748643f9cece0f85f384ba5bc176b74" + }, + { + "alg": "SHA-256", + "content": "c74b03373ae2f59e9cf051469f8e51756bbc409f20e7c5ab1e1f85dfdbcec026" + } + ] + }, + { + "bom-ref": "3289e09458049b5c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libicutest.so.63.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "5ae686f867222467d1894ce669cb21bac2cfee7b" + }, + { + "alg": "SHA-256", + "content": "67643d8c2790d12a40cebc47174c5ea683215addc3b15b8b9fccbd1f63c939b9" + } + ] + }, + { + "bom-ref": "29898104ae98142f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libicutu.so.63.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "f762ff70f67b21bbde73172ccb27e7a676399a7f" + }, + { + "alg": "SHA-256", + "content": "1e464630c6a226d6b7340d1ebe3e73fcc03dc93eb7eed8a760173f3750a44c0d" + } + ] + }, + { + "bom-ref": "ef8ea2af52acd09f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libicuuc.so.63.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "fa4e7f0bcacbcb3135accfbc28f914679e9d7ef4" + }, + { + "alg": "SHA-256", + "content": "23ff51d1000463bfaf3b1c88de7db8ffa9c0f8c515ad33ae1cd5b86006f811b3" + } + ] + }, + { + "bom-ref": "f5809f310a65928a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libjansson.so.4.11.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "62e595cc3705e2c07ecf47321e0548258286be6a" + }, + { + "alg": "SHA-256", + "content": "442607cc7f8ec0fa1758e01cf3956d2dda6489188137d46fff57ace8630fbf2e" + } + ] + }, + { + "bom-ref": "8162ebe9a2099bec", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libk5crypto.so.3.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "9f54bfbc21b2a1506441f5e908268e5ae2388f2b" + }, + { + "alg": "SHA-256", + "content": "900f743f1654b9b6846ca4151970c1bb1af4b3fa4e0e5f0d316a0e1b41f21246" + } + ] + }, + { + "bom-ref": "d4b3c5e7f54deb83", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libkrb5.so.3.3", + "hashes": [ + { + "alg": "SHA-1", + "content": "1d6d9a9cd236122ee30356ae6cb6e429ae8f30c7" + }, + { + "alg": "SHA-256", + "content": "85397eb4e2db0d31148f5309af15e45e1ccd7bc4f012e00c64abe9e2b4fc16e9" + } + ] + }, + { + "bom-ref": "577026066e03f044", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libkrb5support.so.0.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "cf0d6693737a367a6f364b2412f0b0c4d38f6224" + }, + { + "alg": "SHA-256", + "content": "89319234576a54add5aebc551be36b4a2fe9e4cf45d8fae16eedcadca71d12f4" + } + ] + }, + { + "bom-ref": "1bbd5256c1f16af7", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/liblua5.2-c++.so.0.0.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "a14efedd7cb068cec93dbd3e017c05222e5771d3" + }, + { + "alg": "SHA-256", + "content": "688de9363cda3dc3aa082a58924f88963496c5918687b25297478c33646025f6" + } + ] + }, + { + "bom-ref": "7c7ea86eecc7dbce", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/liblua5.2.so.0.0.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "415139afc11c07b32536f29bd3c57d3d21594aa3" + }, + { + "alg": "SHA-256", + "content": "0bfd16edaf60b645ad1e2c507a3693a86b616d6f772685f38d34c0034bd23341" + } + ] + }, + { + "bom-ref": "94189c5e007a0bfe", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libnghttp2.so.14.17.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "645121a33779832ef2c9470ede40c59ddc327755" + }, + { + "alg": "SHA-256", + "content": "bd3b72e3c600ef9339e204745d64c070a8900211d07b80b07a1ae4284aaebd64" + } + ] + }, + { + "bom-ref": "80bfb455c5669703", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libpsl.so.5.3.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "9619135bd625f97465e3de7bb9e2d8aaa91c156c" + }, + { + "alg": "SHA-256", + "content": "bc74e9c10f4312a004364c36ad47b11bd6a522a03347e598b8fdeed0866ba19a" + } + ] + }, + { + "bom-ref": "4a79ea4f0f6dc938", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/librtmp.so.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "7f3bd551ea62806993c38bfddca8badf5d894a84" + }, + { + "alg": "SHA-256", + "content": "f92e188958cc37c2b2fb1bfe9363f1abf65230f5852095ff231a3415d8525942" + } + ] + }, + { + "bom-ref": "b4c27e1ad18fe496", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libssh2.so.1.0.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "faefcf42c2d1b5dd0594fbf898486440af669441" + }, + { + "alg": "SHA-256", + "content": "a97e772b9e921abe6bf040be48e285c99f23faaa44e646a9c8b91a13d1916df1" + } + ] + }, + { + "bom-ref": "8c924a3cfe466fad", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libxml2.so.2.9.4", + "hashes": [ + { + "alg": "SHA-1", + "content": "97f3343ff8f3ec3a01616f4d43257fa95370a9ca" + }, + { + "alg": "SHA-256", + "content": "1b78f999164d63a169a0bb3d113c6edb634a0a45452afb889572415448f030a4" + } + ] + }, + { + "bom-ref": "41990392223251e0", + "type": "file", + "name": "/usr/local/apache2/bin/httpd", + "hashes": [ + { + "alg": "SHA-1", + "content": "90fb07bfb2c897468934825573fce4f0011722fe" + }, + { + "alg": "SHA-256", + "content": "3787557f9f5f87809f0a6b6b0465408243613d8be4c4e8a89e136065462db499" + } + ] + }, + { + "bom-ref": "cf6aecc8f767bce6", + "type": "file", + "name": "/usr/share/doc/libbrotli1/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "d64fdae5680a62415257f6166bdc7c54ecd548e6" + }, + { + "alg": "SHA-256", + "content": "24a64e5bb83d0960d1835696a1e23c0896ad6055b0ca47c66ab0eb9a766324b1" + } + ] + }, + { + "bom-ref": "5734c5d4e65e4cc0", + "type": "file", + "name": "/usr/share/doc/libcurl4/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "710cd58e6bb65108a2e43566d245c5cc6d9032ca" + }, + { + "alg": "SHA-256", + "content": "b0c93189c21018f86534687ca73937284eb7c2b3411c2ec9f1620c288637f9fc" + } + ] + }, + { + "bom-ref": "9bdce77612bd6a12", + "type": "file", + "name": "/usr/share/doc/libgssapi-krb5-2/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "c838b5e08a65d11bbaa642461b24ae6cfee75d7c" + }, + { + "alg": "SHA-256", + "content": "4a2d321ab57260e8de4b67bde8cff76c07d28be69c2d8b22dfc2bfa42f5c41b9" + } + ] + }, + { + "bom-ref": "02b4c876362cf699", + "type": "file", + "name": "/usr/share/doc/libicu63/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "678988eff4ed89ec1fe42da13470e8b6f69f00d0" + }, + { + "alg": "SHA-256", + "content": "0515ea67c829d73cf54d074ef7bd030968419f98a83e523d4300ea0f4d18ebc9" + } + ] + }, + { + "bom-ref": "005cc579c3cf3da5", + "type": "file", + "name": "/usr/share/doc/libjansson4/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "6439aa4657616ca84334c81fb424ff0b9ace4616" + }, + { + "alg": "SHA-256", + "content": "29347e2528ab31d20e8582b09aa89cd878d306c59a273541141c9aede1903cb8" + } + ] + }, + { + "bom-ref": "256d3c010d7cd228", + "type": "file", + "name": "/usr/share/doc/libk5crypto3/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "c838b5e08a65d11bbaa642461b24ae6cfee75d7c" + }, + { + "alg": "SHA-256", + "content": "4a2d321ab57260e8de4b67bde8cff76c07d28be69c2d8b22dfc2bfa42f5c41b9" + } + ] + }, + { + "bom-ref": "9aeccdd91b07c10a", + "type": "file", + "name": "/usr/share/doc/libkeyutils1/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "7985da4e0f2d93919d5dfacf449846cac43f73f8" + }, + { + "alg": "SHA-256", + "content": "6ab5c541723d8211cab7ebc1643d53aa51c4863c1c838e4625d797ece9472ee8" + } + ] + }, + { + "bom-ref": "57102a1ac6465d61", + "type": "file", + "name": "/usr/share/doc/libkrb5-3/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "c838b5e08a65d11bbaa642461b24ae6cfee75d7c" + }, + { + "alg": "SHA-256", + "content": "4a2d321ab57260e8de4b67bde8cff76c07d28be69c2d8b22dfc2bfa42f5c41b9" + } + ] + }, + { + "bom-ref": "51ec43fba24fd4d0", + "type": "file", + "name": "/usr/share/doc/libkrb5support0/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "c838b5e08a65d11bbaa642461b24ae6cfee75d7c" + }, + { + "alg": "SHA-256", + "content": "4a2d321ab57260e8de4b67bde8cff76c07d28be69c2d8b22dfc2bfa42f5c41b9" + } + ] + }, + { + "bom-ref": "6c8e7dab5063b9d8", + "type": "file", + "name": "/usr/share/doc/liblua5.2-0/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "5711106f9179944e26d8618485b673406a3060c9" + }, + { + "alg": "SHA-256", + "content": "1b5f84fd86e61825fc5191ff9773718198f3692a5f715a80507f60afb55ec1a1" + } + ] + }, + { + "bom-ref": "c58745e26fd827f4", + "type": "file", + "name": "/usr/share/doc/libnghttp2-14/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "c6c858643914d0536c6b3ddf60aed17fa2465375" + }, + { + "alg": "SHA-256", + "content": "aa58ecb6ad7418831046ef8a69d6c374ed93e2d04a2ba0477629160ef6a54ab7" + } + ] + }, + { + "bom-ref": "349959c81dee3b2c", + "type": "file", + "name": "/usr/share/doc/libpsl5/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "d7c1f1b749c13d3c00950fe9a28b8d84b12d1ff3" + }, + { + "alg": "SHA-256", + "content": "a530da63c89b707cb51a9c84667aecd0f2a138b0503734cbc8e73ea7cc6fbae0" + } + ] + }, + { + "bom-ref": "3f901320bd91505c", + "type": "file", + "name": "/usr/share/doc/librtmp1/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "315c5e0b4c3defb00ea7d92238c09d4408116172" + }, + { + "alg": "SHA-256", + "content": "4302abcc1ea1b6cbe8d19c79b892acf78878030220210707c19006828866207c" + } + ] + }, + { + "bom-ref": "b421d2aa92c4c939", + "type": "file", + "name": "/usr/share/doc/libssh2-1/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "e050ba1262069cafb5ddc2cc126b288b88ad7b6f" + }, + { + "alg": "SHA-256", + "content": "be3f042c665403ab951d2c21050eb83e8221cbf4b5e86876282abb2b48f7168d" + } + ] + }, + { + "bom-ref": "03e7dd6f721e4f85", + "type": "file", + "name": "/usr/share/doc/libxml2/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "992c59e58e2e03cb652177ac2a86b436bbb087bc" + }, + { + "alg": "SHA-256", + "content": "41eb8dfa594b3fb799a066293ed91434765b23b6d493da1778e7c6b04d5059e0" + } + ] + }, + { + "bom-ref": "b1dcaaa50758fb33", + "type": "file", + "name": "/usr/share/doc/lsb-base/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "60d58837f87b10f27167c3ab21d3f61c91645c69" + }, + { + "alg": "SHA-256", + "content": "5838867827e001081f2a1884f55614df9fbb303bb03de6087220ac0b6f8ea44b" + } + ] + }, + { + "bom-ref": "9d9b51ab3104b55b", + "type": "file", + "name": "/var/lib/dpkg/info/libbrotli1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "239042095d29ac9c0d965bd73f54f98d0df3aca2" + }, + { + "alg": "SHA-256", + "content": "bc86cc618a2fdddcea5cf4a521e3ebd553c306b8883e665de08541d986556bc7" + } + ] + }, + { + "bom-ref": "ef6351db0f78c14f", + "type": "file", + "name": "/var/lib/dpkg/info/libcurl4:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "64f21dc3905b17ab9919b47e31e624afd357da24" + }, + { + "alg": "SHA-256", + "content": "c4a983e95964894e9d02256252312ff2767339f84acbc71e36c9a0f48db6898e" + } + ] + }, + { + "bom-ref": "5d572fe9038e1321", + "type": "file", + "name": "/var/lib/dpkg/info/libgssapi-krb5-2:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "d26a9e7d6a360bb5048e846676d13c973607a7f3" + }, + { + "alg": "SHA-256", + "content": "f85d02725a158ae68757801c2d31af194f0b3f88c77d38fdc251f6f1b5c5019f" + } + ] + }, + { + "bom-ref": "1ab3f29d2c92e860", + "type": "file", + "name": "/var/lib/dpkg/info/libicu63:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "faa98a39da51fdf6bc8fa51b4702e1d38d56a561" + }, + { + "alg": "SHA-256", + "content": "a7c80f4131540409bee056dd41a7af22cf9408ed81ea869dcdd59a149a6cbb15" + } + ] + }, + { + "bom-ref": "97964f42a9ae7bb6", + "type": "file", + "name": "/var/lib/dpkg/info/libjansson4:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "92bc8bf102a272b139b06820ec773a1cfcab9c5f" + }, + { + "alg": "SHA-256", + "content": "bc13e30762074c44300eead1378ccfdee95cec1feeca82de653eb6f50732b777" + } + ] + }, + { + "bom-ref": "96165f0f02edfd1e", + "type": "file", + "name": "/var/lib/dpkg/info/libk5crypto3:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "43edc32f38015f9619820d2521a87e55bbde2f6f" + }, + { + "alg": "SHA-256", + "content": "fc6cc2fae3c9e6afd3f372f9736a0893e34c7f736863d7407f3a03ea6f9f0590" + } + ] + }, + { + "bom-ref": "05452ba64542f708", + "type": "file", + "name": "/var/lib/dpkg/info/libkeyutils1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "cef0f3d9f07c1fdafe509ffab1c6c2525f3f99f8" + }, + { + "alg": "SHA-256", + "content": "4da269198daf4bbab7188d60e2477cb4c51e8b33582837da1b646e67a68b587c" + } + ] + }, + { + "bom-ref": "6ea60d20d3bf2903", + "type": "file", + "name": "/var/lib/dpkg/info/libkrb5-3:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "04b6ad1fbe4436b0f9118b7c480856e34beab31b" + }, + { + "alg": "SHA-256", + "content": "68fbcb72c4146c1cefa20a14335f34535c9286aa2deda20f00c22438ebb9ab25" + } + ] + }, + { + "bom-ref": "44c32103e77d8547", + "type": "file", + "name": "/var/lib/dpkg/info/libkrb5support0:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "aa13f21f9d5699c04557d470176a2cbe4086ead2" + }, + { + "alg": "SHA-256", + "content": "29198232b53a000331dfa54da32d68f211c513a1b697eff2eba3a7db2d15c0d5" + } + ] + }, + { + "bom-ref": "53970c79cd445331", + "type": "file", + "name": "/var/lib/dpkg/info/liblua5.2-0:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "d32fe09eb039e13df99107ef5f84a2095686cc9e" + }, + { + "alg": "SHA-256", + "content": "781119b7fb934b9d2a777cb4c9cd676832df04555f34f04a4ad53c74b857f3bc" + } + ] + }, + { + "bom-ref": "c5b9f6a8be404b90", + "type": "file", + "name": "/var/lib/dpkg/info/libnghttp2-14:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "202e9d71ca21cda4b61e4493496eb75e75c9d559" + }, + { + "alg": "SHA-256", + "content": "3d6a7f67bfb8e726519234932825caf02f5a4c9291847d6ff064fad708e6f730" + } + ] + }, + { + "bom-ref": "71cb870776e1e4b7", + "type": "file", + "name": "/var/lib/dpkg/info/libpsl5:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "2da135b55461202ee6fdba9aea8bc6ddcc5c998a" + }, + { + "alg": "SHA-256", + "content": "b0773060c37966a937e18b8ee5996444f8922e063d34d61bcd0489c5c112e75b" + } + ] + }, + { + "bom-ref": "1031b420bd481b0a", + "type": "file", + "name": "/var/lib/dpkg/info/librtmp1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "6d243906048914521b1f1b78004a5c977061b5c1" + }, + { + "alg": "SHA-256", + "content": "a1e1be924ae6ad5c42be3ffa92344026f0e1df851563942bcebf25f4a032ba87" + } + ] + }, + { + "bom-ref": "47ec90a6aed66dc9", + "type": "file", + "name": "/var/lib/dpkg/info/libssh2-1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "b139c7158d587ae6b1f2d025f601ee9616dda723" + }, + { + "alg": "SHA-256", + "content": "9dd2295c5404e10d2d0558db92b653abf5a6ccd1ff7783580de79bc080986093" + } + ] + }, + { + "bom-ref": "1f5c9034699c3fbe", + "type": "file", + "name": "/var/lib/dpkg/info/libxml2:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "ec8aa0a5107b1e9fbee269e9f7e9db50a0f4ae53" + }, + { + "alg": "SHA-256", + "content": "85b75734124afd72185fb683bf1568793d8cf3e1185f566a88509b633766b046" + } + ] + }, + { + "bom-ref": "66e77e4acbad1a53", + "type": "file", + "name": "/var/lib/dpkg/info/lsb-base.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "3e9ae854477f55c3b8e959b1c774a13d2a55d8c8" + }, + { + "alg": "SHA-256", + "content": "cdb270a80c74a84629d08e14fe0e6cefadb23bfe782bcbc828e7c119d5cffc18" + } + ] + }, + { + "bom-ref": "a5e2fce1c4f48e37", + "type": "file", + "name": "/var/lib/dpkg/info/lsb-base.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "cbfbc60e736b7a94d979a16c4f202cd8696040c2" + }, + { + "alg": "SHA-256", + "content": "6029d2f2e1a0805d4d8d7b6b7fc006a55025899ecb49d5855681ce7c5c3e0eea" + } + ] + }, + { + "bom-ref": "fcb75cb7bf4c60ed", + "type": "file", + "name": "/var/lib/dpkg/status", + "hashes": [ + { + "alg": "SHA-1", + "content": "a63fb285150f40b56b122d0969c5f109e2c13742" + }, + { + "alg": "SHA-256", + "content": "bbf81e53c1f31f1aad181f4a3c0852664ec9dc85a88a432b34f80e05e0651be7" + } + ] + } + ], + "dependencies": [ + { + "ref": "pkg:deb/debian/adduser@3.118?arch=all&distro=debian-10&package-id=826edd56153fa710", + "dependsOn": [ + "pkg:deb/debian/debconf@1.5.71?arch=all&distro=debian-10&package-id=fe38a53949ca2b50", + "pkg:deb/debian/passwd@1%3A4.5-1.1?arch=amd64&distro=debian-10&package-id=8b4ea518599f59aa&upstream=shadow" + ] + }, + { + "ref": "pkg:deb/debian/apt@1.8.2.3?arch=amd64&distro=debian-10&package-id=0e5b211b31df59d4", + "dependsOn": [ + "pkg:deb/debian/adduser@3.118?arch=all&distro=debian-10&package-id=826edd56153fa710", + "pkg:deb/debian/debian-archive-keyring@2019.1%2Bdeb10u1?arch=all&distro=debian-10&package-id=1ebe9d91bd632f80", + "pkg:deb/debian/gpgv@2.2.12-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=7f936fc60378589a&upstream=gnupg2", + "pkg:deb/debian/libapt-pkg5.0@1.8.2.3?arch=amd64&distro=debian-10&package-id=6424d2241f89a045&upstream=apt", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libgcc1@1%3A8.3.0-6?arch=amd64&distro=debian-10&package-id=715380b30f28d876&upstream=gcc-8%408.3.0-6", + "pkg:deb/debian/libgnutls30@3.6.7-4%2Bdeb10u7?arch=amd64&distro=debian-10&package-id=2b175f545e2e827e&upstream=gnutls28", + "pkg:deb/debian/libseccomp2@2.3.3-4?arch=amd64&distro=debian-10&package-id=b46e6445b6660a4d&upstream=libseccomp", + "pkg:deb/debian/libstdc%2B%2B6@8.3.0-6?arch=amd64&distro=debian-10&package-id=f6ea4c954058336d&upstream=gcc-8" + ] + }, + { + "ref": "pkg:deb/debian/base-files@10.3%2Bdeb10u10?arch=amd64&distro=debian-10&package-id=ae452714cef9cf4e", + "dependsOn": [ + "pkg:deb/debian/mawk@1.3.3-17%2Bb3?arch=amd64&distro=debian-10&package-id=a795c3217ac08dfa&upstream=mawk%401.3.3-17" + ] + }, + { + "ref": "pkg:deb/debian/base-passwd@3.5.46?arch=amd64&distro=debian-10&package-id=f039cd1f2cf0bafa", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libdebconfclient0@0.249?arch=amd64&distro=debian-10&package-id=0ab574cc914c04a7&upstream=cdebconf" + ] + }, + { + "ref": "pkg:deb/debian/bash@5.0-4?arch=amd64&distro=debian-10&package-id=cd34aee2896ce84f", + "dependsOn": [ + "pkg:deb/debian/base-files@10.3%2Bdeb10u10?arch=amd64&distro=debian-10&package-id=ae452714cef9cf4e", + "pkg:deb/debian/debianutils@4.8.6.1?arch=amd64&distro=debian-10&package-id=b0e8f666c912d962", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libtinfo6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=4d50fedeec9db609&upstream=ncurses" + ] + }, + { + "ref": "pkg:deb/debian/bsdutils@1%3A2.33.1-0.1?arch=amd64&distro=debian-10&package-id=f2a2af9c9a7c48e8&upstream=util-linux%402.33.1-0.1", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libsystemd0@241-7~deb10u8?arch=amd64&distro=debian-10&package-id=af5fa602069b9853&upstream=systemd" + ] + }, + { + "ref": "pkg:deb/debian/coreutils@8.30-3?arch=amd64&distro=debian-10&package-id=17d4bb5fcfeac966", + "dependsOn": [ + "pkg:deb/debian/libacl1@2.2.53-4?arch=amd64&distro=debian-10&package-id=2f436d85fbc9eccc&upstream=acl", + "pkg:deb/debian/libattr1@1%3A2.4.48-4?arch=amd64&distro=debian-10&package-id=354fec30a51d2496&upstream=attr", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libselinux1@2.8-1%2Bb1?arch=amd64&distro=debian-10&package-id=49addc4e237b1a0d&upstream=libselinux%402.8-1" + ] + }, + { + "ref": "pkg:deb/debian/dash@0.5.10.2-5?arch=amd64&distro=debian-10&package-id=9b327d82627f2476", + "dependsOn": [ + "pkg:deb/debian/debconf@1.5.71?arch=all&distro=debian-10&package-id=fe38a53949ca2b50", + "pkg:deb/debian/debianutils@4.8.6.1?arch=amd64&distro=debian-10&package-id=b0e8f666c912d962", + "pkg:deb/debian/dpkg@1.19.7?arch=amd64&distro=debian-10&package-id=da9ff9a377f09d63", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/debconf@1.5.71?arch=all&distro=debian-10&package-id=fe38a53949ca2b50", + "dependsOn": [ + "pkg:deb/debian/perl-base@5.28.1-6%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=12ef1f27f6a6900d&upstream=perl" + ] + }, + { + "ref": "pkg:deb/debian/debianutils@4.8.6.1?arch=amd64&distro=debian-10&package-id=b0e8f666c912d962", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/diffutils@1%3A3.7-3?arch=amd64&distro=debian-10&package-id=a19af11f72f0db48", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/dpkg@1.19.7?arch=amd64&distro=debian-10&package-id=da9ff9a377f09d63", + "dependsOn": [ + "pkg:deb/debian/libbz2-1.0@1.0.6-9.2~deb10u1?arch=amd64&distro=debian-10&package-id=0908c2a2770a4bad&upstream=bzip2", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/liblzma5@5.2.4-1?arch=amd64&distro=debian-10&package-id=c32191f717ec58de&upstream=xz-utils", + "pkg:deb/debian/libselinux1@2.8-1%2Bb1?arch=amd64&distro=debian-10&package-id=49addc4e237b1a0d&upstream=libselinux%402.8-1", + "pkg:deb/debian/tar@1.30%2Bdfsg-6?arch=amd64&distro=debian-10&package-id=62da3202d5716782", + "pkg:deb/debian/zlib1g@1%3A1.2.11.dfsg-1?arch=amd64&distro=debian-10&package-id=bcc78aeb924eb6b8&upstream=zlib" + ] + }, + { + "ref": "pkg:deb/debian/e2fsprogs@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=1675eecc8d4a417f", + "dependsOn": [ + "pkg:deb/debian/libblkid1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=d20eac8952a5e6b5&upstream=util-linux", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libcom-err2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=1a8a9dbb194df5d1&upstream=e2fsprogs", + "pkg:deb/debian/libext2fs2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=e40d517f10e825e0&upstream=e2fsprogs", + "pkg:deb/debian/libss2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=63fa318f9eefbc75&upstream=e2fsprogs", + "pkg:deb/debian/libuuid1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=cc943ca139d0e67b&upstream=util-linux" + ] + }, + { + "ref": "pkg:deb/debian/fdisk@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=4c321df8375fa5f7&upstream=util-linux", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libfdisk1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=54c2753ee170e0ea&upstream=util-linux", + "pkg:deb/debian/libmount1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=c6f6118ba99c54cb&upstream=util-linux", + "pkg:deb/debian/libncursesw6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=6c56928a7efb44d4&upstream=ncurses", + "pkg:deb/debian/libsmartcols1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=a95e9a21c0932258&upstream=util-linux", + "pkg:deb/debian/libtinfo6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=4d50fedeec9db609&upstream=ncurses" + ] + }, + { + "ref": "pkg:deb/debian/findutils@4.6.0%2Bgit%2B20190209-2?arch=amd64&distro=debian-10&package-id=9b3ed054ec2849a7", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libselinux1@2.8-1%2Bb1?arch=amd64&distro=debian-10&package-id=49addc4e237b1a0d&upstream=libselinux%402.8-1" + ] + }, + { + "ref": "pkg:deb/debian/gpgv@2.2.12-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=7f936fc60378589a&upstream=gnupg2", + "dependsOn": [ + "pkg:deb/debian/libbz2-1.0@1.0.6-9.2~deb10u1?arch=amd64&distro=debian-10&package-id=0908c2a2770a4bad&upstream=bzip2", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libgcrypt20@1.8.4-5%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=7957520e1bba8fa0", + "pkg:deb/debian/libgpg-error0@1.35-1?arch=amd64&distro=debian-10&package-id=07738f8b4e87f646&upstream=libgpg-error", + "pkg:deb/debian/zlib1g@1%3A1.2.11.dfsg-1?arch=amd64&distro=debian-10&package-id=bcc78aeb924eb6b8&upstream=zlib" + ] + }, + { + "ref": "pkg:deb/debian/grep@3.3-1?arch=amd64&distro=debian-10&package-id=d53561e4ff2a03a4", + "dependsOn": [ + "pkg:deb/debian/dpkg@1.19.7?arch=amd64&distro=debian-10&package-id=da9ff9a377f09d63", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libpcre3@2%3A8.39-12?arch=amd64&distro=debian-10&package-id=35b7de3a80d53d59&upstream=pcre3" + ] + }, + { + "ref": "pkg:deb/debian/gzip@1.9-3?arch=amd64&distro=debian-10&package-id=febd6969a44b6c8c", + "dependsOn": [ + "pkg:deb/debian/dpkg@1.19.7?arch=amd64&distro=debian-10&package-id=da9ff9a377f09d63", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/hostname@3.21?arch=amd64&distro=debian-10&package-id=ca88bf2c2ca324fb", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/init-system-helpers@1.56%2Bnmu1?arch=all&distro=debian-10&package-id=4a3347396c872902", + "dependsOn": [ + "pkg:deb/debian/perl-base@5.28.1-6%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=12ef1f27f6a6900d&upstream=perl" + ] + }, + { + "ref": "pkg:deb/debian/libacl1@2.2.53-4?arch=amd64&distro=debian-10&package-id=2f436d85fbc9eccc&upstream=acl", + "dependsOn": [ + "pkg:deb/debian/libattr1@1%3A2.4.48-4?arch=amd64&distro=debian-10&package-id=354fec30a51d2496&upstream=attr", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libapr1@1.6.5-1%2Bb1?arch=amd64&distro=debian-10&package-id=489cc45ede79feca&upstream=apr%401.6.5-1", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libuuid1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=cc943ca139d0e67b&upstream=util-linux" + ] + }, + { + "ref": "pkg:deb/debian/libaprutil1-ldap@1.6.1-4?arch=amd64&distro=debian-10&package-id=3d99122937baf6ae&upstream=apr-util", + "dependsOn": [ + "pkg:deb/debian/libaprutil1@1.6.1-4?arch=amd64&distro=debian-10&package-id=eda9a1ee2039d110&upstream=apr-util", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libldap-2.4-2@2.4.47%2Bdfsg-3%2Bdeb10u6?arch=amd64&distro=debian-10&package-id=b63707706e516b73&upstream=openldap" + ] + }, + { + "ref": "pkg:deb/debian/libaprutil1@1.6.1-4?arch=amd64&distro=debian-10&package-id=eda9a1ee2039d110&upstream=apr-util", + "dependsOn": [ + "pkg:deb/debian/libapr1@1.6.5-1%2Bb1?arch=amd64&distro=debian-10&package-id=489cc45ede79feca&upstream=apr%401.6.5-1", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libdb5.3@5.3.28%2Bdfsg1-0.5?arch=amd64&distro=debian-10&package-id=910a20bdce3547ea&upstream=db5.3", + "pkg:deb/debian/libexpat1@2.2.6-2%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=d55bfe42f054b394&upstream=expat", + "pkg:deb/debian/libgdbm6@1.18.1-4?arch=amd64&distro=debian-10&package-id=c9afbf45b6ae55eb&upstream=gdbm", + "pkg:deb/debian/libssl1.1@1.1.1d-0%2Bdeb10u7?arch=amd64&distro=debian-10&package-id=0aa101ed766132f9&upstream=openssl", + "pkg:deb/debian/libuuid1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=cc943ca139d0e67b&upstream=util-linux" + ] + }, + { + "ref": "pkg:deb/debian/libapt-pkg5.0@1.8.2.3?arch=amd64&distro=debian-10&package-id=6424d2241f89a045&upstream=apt", + "dependsOn": [ + "pkg:deb/debian/libbz2-1.0@1.0.6-9.2~deb10u1?arch=amd64&distro=debian-10&package-id=0908c2a2770a4bad&upstream=bzip2", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libgcc1@1%3A8.3.0-6?arch=amd64&distro=debian-10&package-id=715380b30f28d876&upstream=gcc-8%408.3.0-6", + "pkg:deb/debian/liblz4-1@1.8.3-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=2ee01fd2c453e926&upstream=lz4", + "pkg:deb/debian/liblzma5@5.2.4-1?arch=amd64&distro=debian-10&package-id=c32191f717ec58de&upstream=xz-utils", + "pkg:deb/debian/libstdc%2B%2B6@8.3.0-6?arch=amd64&distro=debian-10&package-id=f6ea4c954058336d&upstream=gcc-8", + "pkg:deb/debian/libsystemd0@241-7~deb10u8?arch=amd64&distro=debian-10&package-id=af5fa602069b9853&upstream=systemd", + "pkg:deb/debian/libudev1@241-7~deb10u8?arch=amd64&distro=debian-10&package-id=1650009f99e14534&upstream=systemd", + "pkg:deb/debian/libzstd1@1.3.8%2Bdfsg-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=f15273b1b73a0197&upstream=libzstd", + "pkg:deb/debian/zlib1g@1%3A1.2.11.dfsg-1?arch=amd64&distro=debian-10&package-id=bcc78aeb924eb6b8&upstream=zlib" + ] + }, + { + "ref": "pkg:deb/debian/libattr1@1%3A2.4.48-4?arch=amd64&distro=debian-10&package-id=354fec30a51d2496&upstream=attr", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libaudit1@1%3A2.8.4-3?arch=amd64&distro=debian-10&package-id=e445bed1f84bcb4b&upstream=audit", + "dependsOn": [ + "pkg:deb/debian/libaudit-common@1%3A2.8.4-3?arch=all&distro=debian-10&package-id=15a24d26841e3183&upstream=audit", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libcap-ng0@0.7.9-2?arch=amd64&distro=debian-10&package-id=aaab7004e87358fb&upstream=libcap-ng" + ] + }, + { + "ref": "pkg:deb/debian/libblkid1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=d20eac8952a5e6b5&upstream=util-linux", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libuuid1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=cc943ca139d0e67b&upstream=util-linux" + ] + }, + { + "ref": "pkg:deb/debian/libbrotli1@1.0.7-2%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=d61cdb80f6254e3e&upstream=brotli", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libbz2-1.0@1.0.6-9.2~deb10u1?arch=amd64&distro=debian-10&package-id=0908c2a2770a4bad&upstream=bzip2", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libc-bin@2.28-10?arch=amd64&distro=debian-10&package-id=324d5fb6de70a42b&upstream=glibc", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "dependsOn": [ + "pkg:deb/debian/libgcc1@1%3A8.3.0-6?arch=amd64&distro=debian-10&package-id=715380b30f28d876&upstream=gcc-8%408.3.0-6" + ] + }, + { + "ref": "pkg:deb/debian/libcap-ng0@0.7.9-2?arch=amd64&distro=debian-10&package-id=aaab7004e87358fb&upstream=libcap-ng", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libcom-err2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=1a8a9dbb194df5d1&upstream=e2fsprogs", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libcurl4@7.64.0-4%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=af03801f530228cd&upstream=curl", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libcom-err2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=1a8a9dbb194df5d1&upstream=e2fsprogs", + "pkg:deb/debian/libgssapi-krb5-2@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=563dc09768844327&upstream=krb5", + "pkg:deb/debian/libidn2-0@2.0.5-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=5a5081d247582e95&upstream=libidn2", + "pkg:deb/debian/libk5crypto3@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=04ecc244c55268d8&upstream=krb5", + "pkg:deb/debian/libkrb5-3@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=2702e37fa523f601&upstream=krb5", + "pkg:deb/debian/libldap-2.4-2@2.4.47%2Bdfsg-3%2Bdeb10u6?arch=amd64&distro=debian-10&package-id=b63707706e516b73&upstream=openldap", + "pkg:deb/debian/libnghttp2-14@1.36.0-2%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=0ee3c902a7004593&upstream=nghttp2", + "pkg:deb/debian/libpsl5@0.20.2-2?arch=amd64&distro=debian-10&package-id=409f4da8465b655e&upstream=libpsl", + "pkg:deb/debian/librtmp1@2.4%2B20151223.gitfa8646d.1-2?arch=amd64&distro=debian-10&package-id=4e31bab7a6ca0f63&upstream=rtmpdump", + "pkg:deb/debian/libssh2-1@1.8.0-2.1?arch=amd64&distro=debian-10&package-id=16faa100e8d6ebcf&upstream=libssh2", + "pkg:deb/debian/libssl1.1@1.1.1d-0%2Bdeb10u7?arch=amd64&distro=debian-10&package-id=0aa101ed766132f9&upstream=openssl", + "pkg:deb/debian/zlib1g@1%3A1.2.11.dfsg-1?arch=amd64&distro=debian-10&package-id=bcc78aeb924eb6b8&upstream=zlib" + ] + }, + { + "ref": "pkg:deb/debian/libdb5.3@5.3.28%2Bdfsg1-0.5?arch=amd64&distro=debian-10&package-id=910a20bdce3547ea&upstream=db5.3", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libdebconfclient0@0.249?arch=amd64&distro=debian-10&package-id=0ab574cc914c04a7&upstream=cdebconf", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libexpat1@2.2.6-2%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=d55bfe42f054b394&upstream=expat", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libext2fs2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=e40d517f10e825e0&upstream=e2fsprogs", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libfdisk1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=54c2753ee170e0ea&upstream=util-linux", + "dependsOn": [ + "pkg:deb/debian/libblkid1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=d20eac8952a5e6b5&upstream=util-linux", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libuuid1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=cc943ca139d0e67b&upstream=util-linux" + ] + }, + { + "ref": "pkg:deb/debian/libffi6@3.2.1-9?arch=amd64&distro=debian-10&package-id=81f81c06eb491929&upstream=libffi", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libgcc1@1%3A8.3.0-6?arch=amd64&distro=debian-10&package-id=715380b30f28d876&upstream=gcc-8%408.3.0-6", + "dependsOn": [ + "pkg:deb/debian/gcc-8-base@8.3.0-6?arch=amd64&distro=debian-10&package-id=0b418e36eec6c020&upstream=gcc-8", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libgcrypt20@1.8.4-5%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=7957520e1bba8fa0", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libgpg-error0@1.35-1?arch=amd64&distro=debian-10&package-id=07738f8b4e87f646&upstream=libgpg-error" + ] + }, + { + "ref": "pkg:deb/debian/libgdbm6@1.18.1-4?arch=amd64&distro=debian-10&package-id=c9afbf45b6ae55eb&upstream=gdbm", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libgmp10@2%3A6.1.2%2Bdfsg-4?arch=amd64&distro=debian-10&package-id=5a68e3044376edb7&upstream=gmp", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libgnutls30@3.6.7-4%2Bdeb10u7?arch=amd64&distro=debian-10&package-id=2b175f545e2e827e&upstream=gnutls28", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libgmp10@2%3A6.1.2%2Bdfsg-4?arch=amd64&distro=debian-10&package-id=5a68e3044376edb7&upstream=gmp", + "pkg:deb/debian/libhogweed4@3.4.1-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=1c418be752fe00a9&upstream=nettle", + "pkg:deb/debian/libidn2-0@2.0.5-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=5a5081d247582e95&upstream=libidn2", + "pkg:deb/debian/libnettle6@3.4.1-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=89d7efaea95993d3&upstream=nettle", + "pkg:deb/debian/libp11-kit0@0.23.15-2%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=dac1be12b689bc10&upstream=p11-kit", + "pkg:deb/debian/libtasn1-6@4.13-3?arch=amd64&distro=debian-10&package-id=4472b190d0061f51", + "pkg:deb/debian/libunistring2@0.9.10-1?arch=amd64&distro=debian-10&package-id=337ddb48ec21ed97&upstream=libunistring" + ] + }, + { + "ref": "pkg:deb/debian/libgpg-error0@1.35-1?arch=amd64&distro=debian-10&package-id=07738f8b4e87f646&upstream=libgpg-error", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libgssapi-krb5-2@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=563dc09768844327&upstream=krb5", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libcom-err2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=1a8a9dbb194df5d1&upstream=e2fsprogs", + "pkg:deb/debian/libk5crypto3@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=04ecc244c55268d8&upstream=krb5", + "pkg:deb/debian/libkeyutils1@1.6-6?arch=amd64&distro=debian-10&package-id=1ed46086dbffc087&upstream=keyutils", + "pkg:deb/debian/libkrb5-3@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=2702e37fa523f601&upstream=krb5", + "pkg:deb/debian/libkrb5support0@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=23be6b473ec0b06b&upstream=krb5" + ] + }, + { + "ref": "pkg:deb/debian/libhogweed4@3.4.1-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=1c418be752fe00a9&upstream=nettle", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libgmp10@2%3A6.1.2%2Bdfsg-4?arch=amd64&distro=debian-10&package-id=5a68e3044376edb7&upstream=gmp", + "pkg:deb/debian/libnettle6@3.4.1-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=89d7efaea95993d3&upstream=nettle" + ] + }, + { + "ref": "pkg:deb/debian/libicu63@63.1-6%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=a180ea9e3b7989a3&upstream=icu", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libgcc1@1%3A8.3.0-6?arch=amd64&distro=debian-10&package-id=715380b30f28d876&upstream=gcc-8%408.3.0-6", + "pkg:deb/debian/libstdc%2B%2B6@8.3.0-6?arch=amd64&distro=debian-10&package-id=f6ea4c954058336d&upstream=gcc-8" + ] + }, + { + "ref": "pkg:deb/debian/libidn2-0@2.0.5-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=5a5081d247582e95&upstream=libidn2", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libunistring2@0.9.10-1?arch=amd64&distro=debian-10&package-id=337ddb48ec21ed97&upstream=libunistring" + ] + }, + { + "ref": "pkg:deb/debian/libjansson4@2.12-1?arch=amd64&distro=debian-10&package-id=88fb69b90900ef4f&upstream=jansson", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libk5crypto3@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=04ecc244c55268d8&upstream=krb5", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libkeyutils1@1.6-6?arch=amd64&distro=debian-10&package-id=1ed46086dbffc087&upstream=keyutils", + "pkg:deb/debian/libkrb5support0@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=23be6b473ec0b06b&upstream=krb5" + ] + }, + { + "ref": "pkg:deb/debian/libkeyutils1@1.6-6?arch=amd64&distro=debian-10&package-id=1ed46086dbffc087&upstream=keyutils", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libkrb5-3@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=2702e37fa523f601&upstream=krb5", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libcom-err2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=1a8a9dbb194df5d1&upstream=e2fsprogs", + "pkg:deb/debian/libk5crypto3@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=04ecc244c55268d8&upstream=krb5", + "pkg:deb/debian/libkeyutils1@1.6-6?arch=amd64&distro=debian-10&package-id=1ed46086dbffc087&upstream=keyutils", + "pkg:deb/debian/libkrb5support0@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=23be6b473ec0b06b&upstream=krb5", + "pkg:deb/debian/libssl1.1@1.1.1d-0%2Bdeb10u7?arch=amd64&distro=debian-10&package-id=0aa101ed766132f9&upstream=openssl" + ] + }, + { + "ref": "pkg:deb/debian/libkrb5support0@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=23be6b473ec0b06b&upstream=krb5", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libkeyutils1@1.6-6?arch=amd64&distro=debian-10&package-id=1ed46086dbffc087&upstream=keyutils" + ] + }, + { + "ref": "pkg:deb/debian/libldap-2.4-2@2.4.47%2Bdfsg-3%2Bdeb10u6?arch=amd64&distro=debian-10&package-id=b63707706e516b73&upstream=openldap", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libgnutls30@3.6.7-4%2Bdeb10u7?arch=amd64&distro=debian-10&package-id=2b175f545e2e827e&upstream=gnutls28", + "pkg:deb/debian/libldap-common@2.4.47%2Bdfsg-3%2Bdeb10u6?arch=all&distro=debian-10&package-id=f04113280174888f&upstream=openldap", + "pkg:deb/debian/libsasl2-2@2.1.27%2Bdfsg-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=56eb272c9677fc6a&upstream=cyrus-sasl2" + ] + }, + { + "ref": "pkg:deb/debian/liblua5.2-0@5.2.4-1.1%2Bb2?arch=amd64&distro=debian-10&package-id=60163e6ffcd36f87&upstream=lua5.2%405.2.4-1.1", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libgcc1@1%3A8.3.0-6?arch=amd64&distro=debian-10&package-id=715380b30f28d876&upstream=gcc-8%408.3.0-6", + "pkg:deb/debian/libstdc%2B%2B6@8.3.0-6?arch=amd64&distro=debian-10&package-id=f6ea4c954058336d&upstream=gcc-8" + ] + }, + { + "ref": "pkg:deb/debian/liblz4-1@1.8.3-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=2ee01fd2c453e926&upstream=lz4", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/liblzma5@5.2.4-1?arch=amd64&distro=debian-10&package-id=c32191f717ec58de&upstream=xz-utils", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libmount1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=c6f6118ba99c54cb&upstream=util-linux", + "dependsOn": [ + "pkg:deb/debian/libblkid1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=d20eac8952a5e6b5&upstream=util-linux", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libselinux1@2.8-1%2Bb1?arch=amd64&distro=debian-10&package-id=49addc4e237b1a0d&upstream=libselinux%402.8-1" + ] + }, + { + "ref": "pkg:deb/debian/libncursesw6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=6c56928a7efb44d4&upstream=ncurses", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libtinfo6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=4d50fedeec9db609&upstream=ncurses" + ] + }, + { + "ref": "pkg:deb/debian/libnettle6@3.4.1-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=89d7efaea95993d3&upstream=nettle", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libnghttp2-14@1.36.0-2%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=0ee3c902a7004593&upstream=nghttp2", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libp11-kit0@0.23.15-2%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=dac1be12b689bc10&upstream=p11-kit", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libffi6@3.2.1-9?arch=amd64&distro=debian-10&package-id=81f81c06eb491929&upstream=libffi" + ] + }, + { + "ref": "pkg:deb/debian/libpam-modules-bin@1.3.1-5?arch=amd64&distro=debian-10&package-id=631d9f9526108591&upstream=pam", + "dependsOn": [ + "pkg:deb/debian/libaudit1@1%3A2.8.4-3?arch=amd64&distro=debian-10&package-id=e445bed1f84bcb4b&upstream=audit", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libpam0g@1.3.1-5?arch=amd64&distro=debian-10&package-id=75c54a61b843e467&upstream=pam", + "pkg:deb/debian/libselinux1@2.8-1%2Bb1?arch=amd64&distro=debian-10&package-id=49addc4e237b1a0d&upstream=libselinux%402.8-1" + ] + }, + { + "ref": "pkg:deb/debian/libpam-modules@1.3.1-5?arch=amd64&distro=debian-10&package-id=5913b683bb6ecea4&upstream=pam", + "dependsOn": [ + "pkg:deb/debian/debconf@1.5.71?arch=all&distro=debian-10&package-id=fe38a53949ca2b50", + "pkg:deb/debian/libaudit1@1%3A2.8.4-3?arch=amd64&distro=debian-10&package-id=e445bed1f84bcb4b&upstream=audit", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libdb5.3@5.3.28%2Bdfsg1-0.5?arch=amd64&distro=debian-10&package-id=910a20bdce3547ea&upstream=db5.3", + "pkg:deb/debian/libpam-modules-bin@1.3.1-5?arch=amd64&distro=debian-10&package-id=631d9f9526108591&upstream=pam", + "pkg:deb/debian/libpam0g@1.3.1-5?arch=amd64&distro=debian-10&package-id=75c54a61b843e467&upstream=pam", + "pkg:deb/debian/libselinux1@2.8-1%2Bb1?arch=amd64&distro=debian-10&package-id=49addc4e237b1a0d&upstream=libselinux%402.8-1" + ] + }, + { + "ref": "pkg:deb/debian/libpam-runtime@1.3.1-5?arch=all&distro=debian-10&package-id=25a1580763811c2a&upstream=pam", + "dependsOn": [ + "pkg:deb/debian/debconf@1.5.71?arch=all&distro=debian-10&package-id=fe38a53949ca2b50", + "pkg:deb/debian/libpam-modules@1.3.1-5?arch=amd64&distro=debian-10&package-id=5913b683bb6ecea4&upstream=pam" + ] + }, + { + "ref": "pkg:deb/debian/libpam0g@1.3.1-5?arch=amd64&distro=debian-10&package-id=75c54a61b843e467&upstream=pam", + "dependsOn": [ + "pkg:deb/debian/debconf@1.5.71?arch=all&distro=debian-10&package-id=fe38a53949ca2b50", + "pkg:deb/debian/libaudit1@1%3A2.8.4-3?arch=amd64&distro=debian-10&package-id=e445bed1f84bcb4b&upstream=audit", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libpcre3@2%3A8.39-12?arch=amd64&distro=debian-10&package-id=35b7de3a80d53d59&upstream=pcre3", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libpsl5@0.20.2-2?arch=amd64&distro=debian-10&package-id=409f4da8465b655e&upstream=libpsl", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libidn2-0@2.0.5-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=5a5081d247582e95&upstream=libidn2", + "pkg:deb/debian/libunistring2@0.9.10-1?arch=amd64&distro=debian-10&package-id=337ddb48ec21ed97&upstream=libunistring" + ] + }, + { + "ref": "pkg:deb/debian/librtmp1@2.4%2B20151223.gitfa8646d.1-2?arch=amd64&distro=debian-10&package-id=4e31bab7a6ca0f63&upstream=rtmpdump", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libgmp10@2%3A6.1.2%2Bdfsg-4?arch=amd64&distro=debian-10&package-id=5a68e3044376edb7&upstream=gmp", + "pkg:deb/debian/libgnutls30@3.6.7-4%2Bdeb10u7?arch=amd64&distro=debian-10&package-id=2b175f545e2e827e&upstream=gnutls28", + "pkg:deb/debian/libhogweed4@3.4.1-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=1c418be752fe00a9&upstream=nettle", + "pkg:deb/debian/libnettle6@3.4.1-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=89d7efaea95993d3&upstream=nettle", + "pkg:deb/debian/zlib1g@1%3A1.2.11.dfsg-1?arch=amd64&distro=debian-10&package-id=bcc78aeb924eb6b8&upstream=zlib" + ] + }, + { + "ref": "pkg:deb/debian/libsasl2-2@2.1.27%2Bdfsg-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=56eb272c9677fc6a&upstream=cyrus-sasl2", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libsasl2-modules-db@2.1.27%2Bdfsg-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=0dddbf5f31db948d&upstream=cyrus-sasl2" + ] + }, + { + "ref": "pkg:deb/debian/libsasl2-modules-db@2.1.27%2Bdfsg-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=0dddbf5f31db948d&upstream=cyrus-sasl2", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libdb5.3@5.3.28%2Bdfsg1-0.5?arch=amd64&distro=debian-10&package-id=910a20bdce3547ea&upstream=db5.3" + ] + }, + { + "ref": "pkg:deb/debian/libseccomp2@2.3.3-4?arch=amd64&distro=debian-10&package-id=b46e6445b6660a4d&upstream=libseccomp", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libselinux1@2.8-1%2Bb1?arch=amd64&distro=debian-10&package-id=49addc4e237b1a0d&upstream=libselinux%402.8-1", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libpcre3@2%3A8.39-12?arch=amd64&distro=debian-10&package-id=35b7de3a80d53d59&upstream=pcre3" + ] + }, + { + "ref": "pkg:deb/debian/libsemanage1@2.8-2?arch=amd64&distro=debian-10&package-id=ee0c44fcf6fdf849&upstream=libsemanage", + "dependsOn": [ + "pkg:deb/debian/libaudit1@1%3A2.8.4-3?arch=amd64&distro=debian-10&package-id=e445bed1f84bcb4b&upstream=audit", + "pkg:deb/debian/libbz2-1.0@1.0.6-9.2~deb10u1?arch=amd64&distro=debian-10&package-id=0908c2a2770a4bad&upstream=bzip2", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libselinux1@2.8-1%2Bb1?arch=amd64&distro=debian-10&package-id=49addc4e237b1a0d&upstream=libselinux%402.8-1", + "pkg:deb/debian/libsemanage-common@2.8-2?arch=all&distro=debian-10&package-id=f140402ff5125f8f&upstream=libsemanage", + "pkg:deb/debian/libsepol1@2.8-1?arch=amd64&distro=debian-10&package-id=e475ad99443adf15&upstream=libsepol" + ] + }, + { + "ref": "pkg:deb/debian/libsepol1@2.8-1?arch=amd64&distro=debian-10&package-id=e475ad99443adf15&upstream=libsepol", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libsmartcols1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=a95e9a21c0932258&upstream=util-linux", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libss2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=63fa318f9eefbc75&upstream=e2fsprogs", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libcom-err2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=1a8a9dbb194df5d1&upstream=e2fsprogs" + ] + }, + { + "ref": "pkg:deb/debian/libssh2-1@1.8.0-2.1?arch=amd64&distro=debian-10&package-id=16faa100e8d6ebcf&upstream=libssh2", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libgcrypt20@1.8.4-5%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=7957520e1bba8fa0", + "pkg:deb/debian/zlib1g@1%3A1.2.11.dfsg-1?arch=amd64&distro=debian-10&package-id=bcc78aeb924eb6b8&upstream=zlib" + ] + }, + { + "ref": "pkg:deb/debian/libssl1.1@1.1.1d-0%2Bdeb10u7?arch=amd64&distro=debian-10&package-id=0aa101ed766132f9&upstream=openssl", + "dependsOn": [ + "pkg:deb/debian/debconf@1.5.71?arch=all&distro=debian-10&package-id=fe38a53949ca2b50", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libstdc%2B%2B6@8.3.0-6?arch=amd64&distro=debian-10&package-id=f6ea4c954058336d&upstream=gcc-8", + "dependsOn": [ + "pkg:deb/debian/gcc-8-base@8.3.0-6?arch=amd64&distro=debian-10&package-id=0b418e36eec6c020&upstream=gcc-8", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libgcc1@1%3A8.3.0-6?arch=amd64&distro=debian-10&package-id=715380b30f28d876&upstream=gcc-8%408.3.0-6" + ] + }, + { + "ref": "pkg:deb/debian/libsystemd0@241-7~deb10u8?arch=amd64&distro=debian-10&package-id=af5fa602069b9853&upstream=systemd", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libgcrypt20@1.8.4-5%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=7957520e1bba8fa0", + "pkg:deb/debian/liblz4-1@1.8.3-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=2ee01fd2c453e926&upstream=lz4", + "pkg:deb/debian/liblzma5@5.2.4-1?arch=amd64&distro=debian-10&package-id=c32191f717ec58de&upstream=xz-utils" + ] + }, + { + "ref": "pkg:deb/debian/libtasn1-6@4.13-3?arch=amd64&distro=debian-10&package-id=4472b190d0061f51", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libtinfo6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=4d50fedeec9db609&upstream=ncurses", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libudev1@241-7~deb10u8?arch=amd64&distro=debian-10&package-id=1650009f99e14534&upstream=systemd", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libunistring2@0.9.10-1?arch=amd64&distro=debian-10&package-id=337ddb48ec21ed97&upstream=libunistring", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libuuid1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=cc943ca139d0e67b&upstream=util-linux", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libxml2@2.9.4%2Bdfsg1-7%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=2b71d5263434c464", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libicu63@63.1-6%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=a180ea9e3b7989a3&upstream=icu", + "pkg:deb/debian/liblzma5@5.2.4-1?arch=amd64&distro=debian-10&package-id=c32191f717ec58de&upstream=xz-utils", + "pkg:deb/debian/zlib1g@1%3A1.2.11.dfsg-1?arch=amd64&distro=debian-10&package-id=bcc78aeb924eb6b8&upstream=zlib" + ] + }, + { + "ref": "pkg:deb/debian/libzstd1@1.3.8%2Bdfsg-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=f15273b1b73a0197&upstream=libzstd", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/login@1%3A4.5-1.1?arch=amd64&distro=debian-10&package-id=beffe62c711b8d0b&upstream=shadow", + "dependsOn": [ + "pkg:deb/debian/libaudit1@1%3A2.8.4-3?arch=amd64&distro=debian-10&package-id=e445bed1f84bcb4b&upstream=audit", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libpam-modules@1.3.1-5?arch=amd64&distro=debian-10&package-id=5913b683bb6ecea4&upstream=pam", + "pkg:deb/debian/libpam-runtime@1.3.1-5?arch=all&distro=debian-10&package-id=25a1580763811c2a&upstream=pam", + "pkg:deb/debian/libpam0g@1.3.1-5?arch=amd64&distro=debian-10&package-id=75c54a61b843e467&upstream=pam" + ] + }, + { + "ref": "pkg:deb/debian/mawk@1.3.3-17%2Bb3?arch=amd64&distro=debian-10&package-id=a795c3217ac08dfa&upstream=mawk%401.3.3-17", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/mount@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=0cd3087f123a0ab4&upstream=util-linux", + "dependsOn": [ + "pkg:deb/debian/libblkid1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=d20eac8952a5e6b5&upstream=util-linux", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libmount1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=c6f6118ba99c54cb&upstream=util-linux", + "pkg:deb/debian/libselinux1@2.8-1%2Bb1?arch=amd64&distro=debian-10&package-id=49addc4e237b1a0d&upstream=libselinux%402.8-1", + "pkg:deb/debian/libsmartcols1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=a95e9a21c0932258&upstream=util-linux", + "pkg:deb/debian/util-linux@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=3d071e40c62fe471" + ] + }, + { + "ref": "pkg:deb/debian/ncurses-bin@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=68e8ed2220f015ff&upstream=ncurses", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libtinfo6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=4d50fedeec9db609&upstream=ncurses" + ] + }, + { + "ref": "pkg:deb/debian/passwd@1%3A4.5-1.1?arch=amd64&distro=debian-10&package-id=8b4ea518599f59aa&upstream=shadow", + "dependsOn": [ + "pkg:deb/debian/libaudit1@1%3A2.8.4-3?arch=amd64&distro=debian-10&package-id=e445bed1f84bcb4b&upstream=audit", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libpam-modules@1.3.1-5?arch=amd64&distro=debian-10&package-id=5913b683bb6ecea4&upstream=pam", + "pkg:deb/debian/libpam0g@1.3.1-5?arch=amd64&distro=debian-10&package-id=75c54a61b843e467&upstream=pam", + "pkg:deb/debian/libselinux1@2.8-1%2Bb1?arch=amd64&distro=debian-10&package-id=49addc4e237b1a0d&upstream=libselinux%402.8-1", + "pkg:deb/debian/libsemanage1@2.8-2?arch=amd64&distro=debian-10&package-id=ee0c44fcf6fdf849&upstream=libsemanage" + ] + }, + { + "ref": "pkg:deb/debian/perl-base@5.28.1-6%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=12ef1f27f6a6900d&upstream=perl", + "dependsOn": [ + "pkg:deb/debian/dpkg@1.19.7?arch=amd64&distro=debian-10&package-id=da9ff9a377f09d63", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/sed@4.7-1?arch=amd64&distro=debian-10&package-id=8afeab9e14add71f", + "dependsOn": [ + "pkg:deb/debian/libacl1@2.2.53-4?arch=amd64&distro=debian-10&package-id=2f436d85fbc9eccc&upstream=acl", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libselinux1@2.8-1%2Bb1?arch=amd64&distro=debian-10&package-id=49addc4e237b1a0d&upstream=libselinux%402.8-1" + ] + }, + { + "ref": "pkg:deb/debian/sysvinit-utils@2.93-8?arch=amd64&distro=debian-10&package-id=84b2ad21b188f1d2&upstream=sysvinit", + "dependsOn": [ + "pkg:deb/debian/init-system-helpers@1.56%2Bnmu1?arch=all&distro=debian-10&package-id=4a3347396c872902", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/util-linux@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=3d071e40c62fe471" + ] + }, + { + "ref": "pkg:deb/debian/tar@1.30%2Bdfsg-6?arch=amd64&distro=debian-10&package-id=62da3202d5716782", + "dependsOn": [ + "pkg:deb/debian/libacl1@2.2.53-4?arch=amd64&distro=debian-10&package-id=2f436d85fbc9eccc&upstream=acl", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libselinux1@2.8-1%2Bb1?arch=amd64&distro=debian-10&package-id=49addc4e237b1a0d&upstream=libselinux%402.8-1" + ] + }, + { + "ref": "pkg:deb/debian/tzdata@2021a-0%2Bdeb10u1?arch=all&distro=debian-10&package-id=11e09e914c1cd4a6", + "dependsOn": [ + "pkg:deb/debian/debconf@1.5.71?arch=all&distro=debian-10&package-id=fe38a53949ca2b50" + ] + }, + { + "ref": "pkg:deb/debian/util-linux@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=3d071e40c62fe471", + "dependsOn": [ + "pkg:deb/debian/fdisk@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=4c321df8375fa5f7&upstream=util-linux", + "pkg:deb/debian/libaudit1@1%3A2.8.4-3?arch=amd64&distro=debian-10&package-id=e445bed1f84bcb4b&upstream=audit", + "pkg:deb/debian/libblkid1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=d20eac8952a5e6b5&upstream=util-linux", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libcap-ng0@0.7.9-2?arch=amd64&distro=debian-10&package-id=aaab7004e87358fb&upstream=libcap-ng", + "pkg:deb/debian/libmount1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=c6f6118ba99c54cb&upstream=util-linux", + "pkg:deb/debian/libpam0g@1.3.1-5?arch=amd64&distro=debian-10&package-id=75c54a61b843e467&upstream=pam", + "pkg:deb/debian/libselinux1@2.8-1%2Bb1?arch=amd64&distro=debian-10&package-id=49addc4e237b1a0d&upstream=libselinux%402.8-1", + "pkg:deb/debian/libsmartcols1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=a95e9a21c0932258&upstream=util-linux", + "pkg:deb/debian/libsystemd0@241-7~deb10u8?arch=amd64&distro=debian-10&package-id=af5fa602069b9853&upstream=systemd", + "pkg:deb/debian/libtinfo6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=4d50fedeec9db609&upstream=ncurses", + "pkg:deb/debian/libudev1@241-7~deb10u8?arch=amd64&distro=debian-10&package-id=1650009f99e14534&upstream=systemd", + "pkg:deb/debian/libuuid1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=cc943ca139d0e67b&upstream=util-linux", + "pkg:deb/debian/login@1%3A4.5-1.1?arch=amd64&distro=debian-10&package-id=beffe62c711b8d0b&upstream=shadow", + "pkg:deb/debian/zlib1g@1%3A1.2.11.dfsg-1?arch=amd64&distro=debian-10&package-id=bcc78aeb924eb6b8&upstream=zlib" + ] + }, + { + "ref": "pkg:deb/debian/zlib1g@1%3A1.2.11.dfsg-1?arch=amd64&distro=debian-10&package-id=bcc78aeb924eb6b8&upstream=zlib", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + } + ] +} diff --git a/test/providers/tst_manifests/image/httpd@sha256:4b5cb7697fea2aa6d398504c381b693a54ae9ad5e6317fcdbb7a2d9b8c3b1364.json b/test/providers/tst_manifests/image/httpd@sha256:4b5cb7697fea2aa6d398504c381b693a54ae9ad5e6317fcdbb7a2d9b8c3b1364.json new file mode 100644 index 0000000..93e7390 --- /dev/null +++ b/test/providers/tst_manifests/image/httpd@sha256:4b5cb7697fea2aa6d398504c381b693a54ae9ad5e6317fcdbb7a2d9b8c3b1364.json @@ -0,0 +1,55444 @@ +{ + "$schema": "http://cyclonedx.org/schema/bom-1.5.schema.json", + "bomFormat": "CycloneDX", + "specVersion": "1.5", + "serialNumber": null, + "version": 1, + "metadata": null, + "components": [ + { + "bom-ref": "pkg:deb/debian/adduser@3.118?arch=all&distro=debian-10&package-id=826edd56153fa710", + "type": "library", + "publisher": "Debian Adduser Developers ", + "name": "adduser", + "version": "3.118", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + } + ], + "cpe": "cpe:2.3:a:adduser:adduser:3.118:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/adduser@3.118?arch=all&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:10:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:10:path", + "value": "/var/lib/dpkg/info/adduser.templates" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/adduser/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/adduser.conffiles" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/adduser.md5sums" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/adduser.config" + }, + { + "name": "syft:location:7:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:7:path", + "value": "/var/lib/dpkg/info/adduser.list" + }, + { + "name": "syft:location:8:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:8:path", + "value": "/var/lib/dpkg/info/adduser.postinst" + }, + { + "name": "syft:location:9:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:9:path", + "value": "/var/lib/dpkg/info/adduser.postrm" + }, + { + "name": "syft:metadata:installedSize", + "value": "849" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/apt@1.8.2.3?arch=amd64&distro=debian-10&package-id=0e5b211b31df59d4", + "type": "library", + "publisher": "APT Development Team ", + "name": "apt", + "version": "1.8.2.3", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "name": "GPLv2+" + } + } + ], + "cpe": "cpe:2.3:a:apt:apt:1.8.2.3:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/apt@1.8.2.3?arch=amd64&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:10:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:10:path", + "value": "/var/lib/dpkg/info/apt.prerm" + }, + { + "name": "syft:location:11:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:11:path", + "value": "/var/lib/dpkg/info/apt.shlibs" + }, + { + "name": "syft:location:12:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:12:path", + "value": "/var/lib/dpkg/info/apt.triggers" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/apt/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/apt.conffiles" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/apt.md5sums" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/apt.list" + }, + { + "name": "syft:location:7:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:7:path", + "value": "/var/lib/dpkg/info/apt.postinst" + }, + { + "name": "syft:location:8:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:8:path", + "value": "/var/lib/dpkg/info/apt.postrm" + }, + { + "name": "syft:location:9:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:9:path", + "value": "/var/lib/dpkg/info/apt.preinst" + }, + { + "name": "syft:metadata:installedSize", + "value": "4064" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/base-files@10.3%2Bdeb10u10?arch=amd64&distro=debian-10&package-id=ae452714cef9cf4e", + "type": "library", + "publisher": "Santiago Vila ", + "name": "base-files", + "version": "10.3+deb10u10", + "licenses": [ + { + "license": { + "name": "GPL" + } + } + ], + "cpe": "cpe:2.3:a:base-files:base-files:10.3\\+deb10u10:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/base-files@10.3%2Bdeb10u10?arch=amd64&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:base-files:base_files:10.3\\+deb10u10:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:base_files:base-files:10.3\\+deb10u10:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:base_files:base_files:10.3\\+deb10u10:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:base:base-files:10.3\\+deb10u10:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:base:base_files:10.3\\+deb10u10:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/base-files/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/base-files.conffiles" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/base-files.md5sums" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/base-files.list" + }, + { + "name": "syft:location:7:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:7:path", + "value": "/var/lib/dpkg/info/base-files.postinst" + }, + { + "name": "syft:metadata:installedSize", + "value": "340" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/base-passwd@3.5.46?arch=amd64&distro=debian-10&package-id=f039cd1f2cf0bafa", + "type": "library", + "publisher": "Colin Watson ", + "name": "base-passwd", + "version": "3.5.46", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "name": "PD" + } + } + ], + "cpe": "cpe:2.3:a:base-passwd:base-passwd:3.5.46:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/base-passwd@3.5.46?arch=amd64&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:base-passwd:base_passwd:3.5.46:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:base_passwd:base-passwd:3.5.46:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:base_passwd:base_passwd:3.5.46:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:base:base-passwd:3.5.46:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:base:base_passwd:3.5.46:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/base-passwd/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/base-passwd.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/base-passwd.list" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/base-passwd.postinst" + }, + { + "name": "syft:location:7:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:7:path", + "value": "/var/lib/dpkg/info/base-passwd.postrm" + }, + { + "name": "syft:location:8:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:8:path", + "value": "/var/lib/dpkg/info/base-passwd.preinst" + }, + { + "name": "syft:location:9:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:9:path", + "value": "/var/lib/dpkg/info/base-passwd.templates" + }, + { + "name": "syft:metadata:installedSize", + "value": "232" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/bash@5.0-4?arch=amd64&distro=debian-10&package-id=cd34aee2896ce84f", + "type": "library", + "publisher": "Matthias Klose ", + "name": "bash", + "version": "5.0-4", + "licenses": [ + { + "license": { + "id": "GPL-3.0-only" + } + } + ], + "cpe": "cpe:2.3:a:bash:bash:5.0-4:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/bash@5.0-4?arch=amd64&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:10:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:10:path", + "value": "/var/lib/dpkg/info/bash.prerm" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/bash/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/bash.conffiles" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/bash.md5sums" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/bash.list" + }, + { + "name": "syft:location:7:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:7:path", + "value": "/var/lib/dpkg/info/bash.postinst" + }, + { + "name": "syft:location:8:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:8:path", + "value": "/var/lib/dpkg/info/bash.postrm" + }, + { + "name": "syft:location:9:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:9:path", + "value": "/var/lib/dpkg/info/bash.preinst" + }, + { + "name": "syft:metadata:installedSize", + "value": "6439" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/bsdutils@1%3A2.33.1-0.1?arch=amd64&distro=debian-10&package-id=f2a2af9c9a7c48e8&upstream=util-linux%402.33.1-0.1", + "type": "library", + "publisher": "LaMont Jones ", + "name": "bsdutils", + "version": "1:2.33.1-0.1", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + }, + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "BSD-4-Clause" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1-or-later" + } + }, + { + "license": { + "id": "LGPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-3.0-or-later" + } + }, + { + "license": { + "id": "MIT" + } + }, + { + "license": { + "name": "LGPL" + } + }, + { + "license": { + "name": "public-domain" + } + } + ], + "cpe": "cpe:2.3:a:bsdutils:bsdutils:1\\:2.33.1-0.1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/bsdutils@1%3A2.33.1-0.1?arch=amd64&distro=debian-10&upstream=util-linux%402.33.1-0.1", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/bsdutils/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/bsdutils.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/bsdutils.list" + }, + { + "name": "syft:metadata:installedSize", + "value": "293" + }, + { + "name": "syft:metadata:source", + "value": "util-linux" + }, + { + "name": "syft:metadata:sourceVersion", + "value": "2.33.1-0.1" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/coreutils@8.30-3?arch=amd64&distro=debian-10&package-id=17d4bb5fcfeac966", + "type": "library", + "publisher": "Michael Stone ", + "name": "coreutils", + "version": "8.30-3", + "licenses": [ + { + "license": { + "id": "GPL-3.0-only" + } + } + ], + "cpe": "cpe:2.3:a:coreutils:coreutils:8.30-3:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/coreutils@8.30-3?arch=amd64&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/coreutils/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/coreutils.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/coreutils.list" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/coreutils.postinst" + }, + { + "name": "syft:location:7:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:7:path", + "value": "/var/lib/dpkg/info/coreutils.postrm" + }, + { + "name": "syft:metadata:installedSize", + "value": "15719" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/dash@0.5.10.2-5?arch=amd64&distro=debian-10&package-id=9b327d82627f2476", + "type": "library", + "publisher": "Andrej Shadura ", + "name": "dash", + "version": "0.5.10.2-5", + "licenses": [ + { + "license": { + "name": "GPL" + } + } + ], + "cpe": "cpe:2.3:a:dash:dash:0.5.10.2-5:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/dash@0.5.10.2-5?arch=amd64&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:10:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:10:path", + "value": "/var/lib/dpkg/info/dash.templates" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/dash/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/dash.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/dash.config" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/dash.list" + }, + { + "name": "syft:location:7:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:7:path", + "value": "/var/lib/dpkg/info/dash.postinst" + }, + { + "name": "syft:location:8:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:8:path", + "value": "/var/lib/dpkg/info/dash.postrm" + }, + { + "name": "syft:location:9:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:9:path", + "value": "/var/lib/dpkg/info/dash.prerm" + }, + { + "name": "syft:metadata:installedSize", + "value": "212" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/debconf@1.5.71?arch=all&distro=debian-10&package-id=fe38a53949ca2b50", + "type": "library", + "publisher": "Debconf Developers ", + "name": "debconf", + "version": "1.5.71", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + } + ], + "cpe": "cpe:2.3:a:debconf:debconf:1.5.71:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/debconf@1.5.71?arch=all&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:10:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:10:path", + "value": "/var/lib/dpkg/info/debconf.preinst" + }, + { + "name": "syft:location:11:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:11:path", + "value": "/var/lib/dpkg/info/debconf.prerm" + }, + { + "name": "syft:location:12:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:12:path", + "value": "/var/lib/dpkg/info/debconf.templates" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/debconf/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/debconf.conffiles" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/debconf.md5sums" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/debconf.config" + }, + { + "name": "syft:location:7:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:7:path", + "value": "/var/lib/dpkg/info/debconf.list" + }, + { + "name": "syft:location:8:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:8:path", + "value": "/var/lib/dpkg/info/debconf.postinst" + }, + { + "name": "syft:location:9:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:9:path", + "value": "/var/lib/dpkg/info/debconf.postrm" + }, + { + "name": "syft:metadata:installedSize", + "value": "520" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/debian-archive-keyring@2019.1%2Bdeb10u1?arch=all&distro=debian-10&package-id=1ebe9d91bd632f80", + "type": "library", + "publisher": "Debian Release Team ", + "name": "debian-archive-keyring", + "version": "2019.1+deb10u1", + "licenses": [ + { + "license": { + "name": "GPL" + } + } + ], + "cpe": "cpe:2.3:a:debian-archive-keyring:debian-archive-keyring:2019.1\\+deb10u1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/debian-archive-keyring@2019.1%2Bdeb10u1?arch=all&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:debian-archive-keyring:debian_archive_keyring:2019.1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:debian_archive_keyring:debian-archive-keyring:2019.1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:debian_archive_keyring:debian_archive_keyring:2019.1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:debian-archive:debian-archive-keyring:2019.1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:debian-archive:debian_archive_keyring:2019.1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:debian_archive:debian-archive-keyring:2019.1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:debian_archive:debian_archive_keyring:2019.1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:debian:debian-archive-keyring:2019.1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:debian:debian_archive_keyring:2019.1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:10:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:10:path", + "value": "/var/lib/dpkg/info/debian-archive-keyring.prerm" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/debian-archive-keyring/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/debian-archive-keyring.conffiles" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/debian-archive-keyring.md5sums" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/debian-archive-keyring.list" + }, + { + "name": "syft:location:7:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:7:path", + "value": "/var/lib/dpkg/info/debian-archive-keyring.postinst" + }, + { + "name": "syft:location:8:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:8:path", + "value": "/var/lib/dpkg/info/debian-archive-keyring.postrm" + }, + { + "name": "syft:location:9:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:9:path", + "value": "/var/lib/dpkg/info/debian-archive-keyring.preinst" + }, + { + "name": "syft:metadata:installedSize", + "value": "235" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/debianutils@4.8.6.1?arch=amd64&distro=debian-10&package-id=b0e8f666c912d962", + "type": "library", + "publisher": "Clint Adams ", + "name": "debianutils", + "version": "4.8.6.1", + "licenses": [ + { + "license": { + "name": "GPL" + } + } + ], + "cpe": "cpe:2.3:a:debianutils:debianutils:4.8.6.1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/debianutils@4.8.6.1?arch=amd64&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/debianutils/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/debianutils.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/debianutils.list" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/debianutils.postinst" + }, + { + "name": "syft:location:7:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:7:path", + "value": "/var/lib/dpkg/info/debianutils.postrm" + }, + { + "name": "syft:metadata:installedSize", + "value": "226" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/diffutils@1%3A3.7-3?arch=amd64&distro=debian-10&package-id=a19af11f72f0db48", + "type": "library", + "publisher": "Santiago Vila ", + "name": "diffutils", + "version": "1:3.7-3", + "licenses": [ + { + "license": { + "name": "GFDL" + } + }, + { + "license": { + "name": "GPL" + } + } + ], + "cpe": "cpe:2.3:a:diffutils:diffutils:1\\:3.7-3:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/diffutils@1%3A3.7-3?arch=amd64&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/diffutils/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/diffutils.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/diffutils.list" + }, + { + "name": "syft:metadata:installedSize", + "value": "1574" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/dpkg@1.19.7?arch=amd64&distro=debian-10&package-id=da9ff9a377f09d63", + "type": "library", + "publisher": "Dpkg Developers ", + "name": "dpkg", + "version": "1.19.7", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "name": "public-domain-md5" + } + }, + { + "license": { + "name": "public-domain-s-s-d" + } + } + ], + "cpe": "cpe:2.3:a:dpkg:dpkg:1.19.7:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/dpkg@1.19.7?arch=amd64&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/dpkg/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/dpkg.conffiles" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/dpkg.md5sums" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/dpkg.list" + }, + { + "name": "syft:location:7:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:7:path", + "value": "/var/lib/dpkg/info/dpkg.postinst" + }, + { + "name": "syft:location:8:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:8:path", + "value": "/var/lib/dpkg/info/dpkg.postrm" + }, + { + "name": "syft:metadata:installedSize", + "value": "6693" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/e2fsprogs@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=1675eecc8d4a417f", + "type": "library", + "publisher": "Theodore Y. Ts'o ", + "name": "e2fsprogs", + "version": "1.44.5-1+deb10u3", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.0-only" + } + } + ], + "cpe": "cpe:2.3:a:e2fsprogs:e2fsprogs:1.44.5-1\\+deb10u3:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/e2fsprogs@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/e2fsprogs/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/e2fsprogs.conffiles" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/e2fsprogs.md5sums" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/e2fsprogs.list" + }, + { + "name": "syft:location:7:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:7:path", + "value": "/var/lib/dpkg/info/e2fsprogs.postinst" + }, + { + "name": "syft:location:8:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:8:path", + "value": "/var/lib/dpkg/info/e2fsprogs.preinst" + }, + { + "name": "syft:metadata:installedSize", + "value": "1416" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/fdisk@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=4c321df8375fa5f7&upstream=util-linux", + "type": "library", + "publisher": "LaMont Jones ", + "name": "fdisk", + "version": "2.33.1-0.1", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + }, + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "BSD-4-Clause" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1-or-later" + } + }, + { + "license": { + "id": "LGPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-3.0-or-later" + } + }, + { + "license": { + "id": "MIT" + } + }, + { + "license": { + "name": "LGPL" + } + }, + { + "license": { + "name": "public-domain" + } + } + ], + "cpe": "cpe:2.3:a:fdisk:fdisk:2.33.1-0.1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/fdisk@2.33.1-0.1?arch=amd64&distro=debian-10&upstream=util-linux", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/fdisk/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/fdisk.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/fdisk.list" + }, + { + "name": "syft:metadata:installedSize", + "value": "483" + }, + { + "name": "syft:metadata:source", + "value": "util-linux" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/findutils@4.6.0%2Bgit%2B20190209-2?arch=amd64&distro=debian-10&package-id=9b3ed054ec2849a7", + "type": "library", + "publisher": "Andreas Metzler ", + "name": "findutils", + "version": "4.6.0+git+20190209-2", + "licenses": [ + { + "license": { + "id": "GFDL-1.3-only" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + } + ], + "cpe": "cpe:2.3:a:findutils:findutils:4.6.0\\+git\\+20190209-2:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/findutils@4.6.0%2Bgit%2B20190209-2?arch=amd64&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/findutils/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/findutils.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/findutils.list" + }, + { + "name": "syft:metadata:installedSize", + "value": "1938" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/gcc-8-base@8.3.0-6?arch=amd64&distro=debian-10&package-id=0b418e36eec6c020&upstream=gcc-8", + "type": "library", + "publisher": "Debian GCC Maintainers ", + "name": "gcc-8-base", + "version": "8.3.0-6", + "licenses": [ + { + "license": { + "id": "GFDL-1.2-only" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "name": "Artistic" + } + }, + { + "license": { + "name": "GPL" + } + }, + { + "license": { + "name": "LGPL" + } + } + ], + "cpe": "cpe:2.3:a:gcc-8-base:gcc-8-base:8.3.0-6:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/gcc-8-base@8.3.0-6?arch=amd64&distro=debian-10&upstream=gcc-8", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gcc-8-base:gcc_8_base:8.3.0-6:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gcc_8_base:gcc-8-base:8.3.0-6:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gcc_8_base:gcc_8_base:8.3.0-6:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gcc-8:gcc-8-base:8.3.0-6:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gcc-8:gcc_8_base:8.3.0-6:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gcc_8:gcc-8-base:8.3.0-6:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gcc_8:gcc_8_base:8.3.0-6:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gcc:gcc-8-base:8.3.0-6:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gcc:gcc_8_base:8.3.0-6:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/gcc-8-base/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/gcc-8-base:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "248" + }, + { + "name": "syft:metadata:source", + "value": "gcc-8" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/gpgv@2.2.12-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=7f936fc60378589a&upstream=gnupg2", + "type": "library", + "publisher": "Debian GnuPG Maintainers ", + "name": "gpgv", + "version": "2.2.12-1+deb10u1", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "CC0-1.0" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1-or-later" + } + }, + { + "license": { + "id": "LGPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-3.0-or-later" + } + }, + { + "license": { + "name": "Expat" + } + }, + { + "license": { + "name": "RFC-Reference" + } + }, + { + "license": { + "name": "TinySCHEME" + } + }, + { + "license": { + "name": "permissive" + } + } + ], + "cpe": "cpe:2.3:a:gpgv:gpgv:2.2.12-1\\+deb10u1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/gpgv@2.2.12-1%2Bdeb10u1?arch=amd64&distro=debian-10&upstream=gnupg2", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/gpgv/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/gpgv.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/gpgv.list" + }, + { + "name": "syft:metadata:installedSize", + "value": "837" + }, + { + "name": "syft:metadata:source", + "value": "gnupg2" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/grep@3.3-1?arch=amd64&distro=debian-10&package-id=d53561e4ff2a03a4", + "type": "library", + "publisher": "Anibal Monsalve Salazar ", + "name": "grep", + "version": "3.3-1", + "licenses": [ + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + } + ], + "cpe": "cpe:2.3:a:grep:grep:3.3-1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/grep@3.3-1?arch=amd64&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/grep/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/grep.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/grep.list" + }, + { + "name": "syft:metadata:installedSize", + "value": "1014" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/gzip@1.9-3?arch=amd64&distro=debian-10&package-id=febd6969a44b6c8c", + "type": "library", + "publisher": "Bdale Garbee ", + "name": "gzip", + "version": "1.9-3", + "licenses": [ + { + "license": { + "name": "GPL" + } + } + ], + "cpe": "cpe:2.3:a:gzip:gzip:1.9-3:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/gzip@1.9-3?arch=amd64&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/gzip/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/gzip.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/gzip.list" + }, + { + "name": "syft:metadata:installedSize", + "value": "243" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/hostname@3.21?arch=amd64&distro=debian-10&package-id=ca88bf2c2ca324fb", + "type": "library", + "publisher": "Michael Meskes ", + "name": "hostname", + "version": "3.21", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + } + ], + "cpe": "cpe:2.3:a:hostname:hostname:3.21:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/hostname@3.21?arch=amd64&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/hostname/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/hostname.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/hostname.list" + }, + { + "name": "syft:metadata:installedSize", + "value": "54" + } + ] + }, + { + "bom-ref": "pkg:generic/httpd@2.4.49?package-id=e031779968c5b607", + "type": "application", + "name": "httpd", + "version": "2.4.49", + "cpe": "cpe:2.3:a:apache:http_server:2.4.49:*:*:*:*:*:*:*", + "purl": "pkg:generic/httpd@2.4.49", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "binary-classifier-cataloger" + }, + { + "name": "syft:package:type", + "value": "binary" + }, + { + "name": "syft:package:metadataType", + "value": "binary-signature" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:0:path", + "value": "/usr/local/apache2/bin/httpd" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/init-system-helpers@1.56%2Bnmu1?arch=all&distro=debian-10&package-id=4a3347396c872902", + "type": "library", + "publisher": "Debian systemd Maintainers ", + "name": "init-system-helpers", + "version": "1.56+nmu1", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + } + ], + "cpe": "cpe:2.3:a:init-system-helpers:init-system-helpers:1.56\\+nmu1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/init-system-helpers@1.56%2Bnmu1?arch=all&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:init-system-helpers:init_system_helpers:1.56\\+nmu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:init_system_helpers:init-system-helpers:1.56\\+nmu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:init_system_helpers:init_system_helpers:1.56\\+nmu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:init-system:init-system-helpers:1.56\\+nmu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:init-system:init_system_helpers:1.56\\+nmu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:init_system:init-system-helpers:1.56\\+nmu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:init_system:init_system_helpers:1.56\\+nmu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:init:init-system-helpers:1.56\\+nmu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:init:init_system_helpers:1.56\\+nmu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/init-system-helpers/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/init-system-helpers.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/init-system-helpers.list" + }, + { + "name": "syft:metadata:installedSize", + "value": "133" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libacl1@2.2.53-4?arch=amd64&distro=debian-10&package-id=2f436d85fbc9eccc&upstream=acl", + "type": "library", + "publisher": "Guillem Jover ", + "name": "libacl1", + "version": "2.2.53-4", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + } + ], + "cpe": "cpe:2.3:a:libacl1:libacl1:2.2.53-4:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libacl1@2.2.53-4?arch=amd64&distro=debian-10&upstream=acl", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libacl1/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libacl1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "70" + }, + { + "name": "syft:metadata:source", + "value": "acl" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libapr1@1.6.5-1%2Bb1?arch=amd64&distro=debian-10&package-id=489cc45ede79feca&upstream=apr%401.6.5-1", + "type": "library", + "publisher": "Debian Apache Maintainers ", + "name": "libapr1", + "version": "1.6.5-1+b1", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "cpe": "cpe:2.3:a:libapr1:libapr1:1.6.5-1\\+b1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libapr1@1.6.5-1%2Bb1?arch=amd64&distro=debian-10&upstream=apr%401.6.5-1", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:2:path", + "value": "/usr/share/doc/libapr1/copyright" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:3:path", + "value": "/var/lib/dpkg/info/libapr1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "278" + }, + { + "name": "syft:metadata:source", + "value": "apr" + }, + { + "name": "syft:metadata:sourceVersion", + "value": "1.6.5-1" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libaprutil1@1.6.1-4?arch=amd64&distro=debian-10&package-id=eda9a1ee2039d110&upstream=apr-util", + "type": "library", + "publisher": "Debian Apache Maintainers ", + "name": "libaprutil1", + "version": "1.6.1-4", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "cpe": "cpe:2.3:a:libaprutil1:libaprutil1:1.6.1-4:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libaprutil1@1.6.1-4?arch=amd64&distro=debian-10&upstream=apr-util", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:2:path", + "value": "/usr/share/doc/libaprutil1/copyright" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:3:path", + "value": "/var/lib/dpkg/info/libaprutil1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "285" + }, + { + "name": "syft:metadata:source", + "value": "apr-util" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libaprutil1-ldap@1.6.1-4?arch=amd64&distro=debian-10&package-id=3d99122937baf6ae&upstream=apr-util", + "type": "library", + "publisher": "Debian Apache Maintainers ", + "name": "libaprutil1-ldap", + "version": "1.6.1-4", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "cpe": "cpe:2.3:a:libaprutil1-ldap:libaprutil1-ldap:1.6.1-4:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libaprutil1-ldap@1.6.1-4?arch=amd64&distro=debian-10&upstream=apr-util", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libaprutil1-ldap:libaprutil1_ldap:1.6.1-4:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libaprutil1_ldap:libaprutil1-ldap:1.6.1-4:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libaprutil1_ldap:libaprutil1_ldap:1.6.1-4:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libaprutil1:libaprutil1-ldap:1.6.1-4:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libaprutil1:libaprutil1_ldap:1.6.1-4:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:2:path", + "value": "/usr/share/doc/libaprutil1-ldap/copyright" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:3:path", + "value": "/var/lib/dpkg/info/libaprutil1-ldap:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "45" + }, + { + "name": "syft:metadata:source", + "value": "apr-util" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libapt-pkg5.0@1.8.2.3?arch=amd64&distro=debian-10&package-id=6424d2241f89a045&upstream=apt", + "type": "library", + "publisher": "APT Development Team ", + "name": "libapt-pkg5.0", + "version": "1.8.2.3", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "name": "GPLv2+" + } + } + ], + "cpe": "cpe:2.3:a:libapt-pkg5.0:libapt-pkg5.0:1.8.2.3:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libapt-pkg5.0@1.8.2.3?arch=amd64&distro=debian-10&upstream=apt", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libapt-pkg5.0:libapt_pkg5.0:1.8.2.3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libapt_pkg5.0:libapt-pkg5.0:1.8.2.3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libapt_pkg5.0:libapt_pkg5.0:1.8.2.3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libapt:libapt-pkg5.0:1.8.2.3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libapt:libapt_pkg5.0:1.8.2.3:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libapt-pkg5.0/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libapt-pkg5.0:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "3243" + }, + { + "name": "syft:metadata:source", + "value": "apt" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libattr1@1%3A2.4.48-4?arch=amd64&distro=debian-10&package-id=354fec30a51d2496&upstream=attr", + "type": "library", + "publisher": "Guillem Jover ", + "name": "libattr1", + "version": "1:2.4.48-4", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + } + ], + "cpe": "cpe:2.3:a:libattr1:libattr1:1\\:2.4.48-4:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libattr1@1%3A2.4.48-4?arch=amd64&distro=debian-10&upstream=attr", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libattr1/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libattr1:amd64.conffiles" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/libattr1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "55" + }, + { + "name": "syft:metadata:source", + "value": "attr" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libaudit-common@1%3A2.8.4-3?arch=all&distro=debian-10&package-id=15a24d26841e3183&upstream=audit", + "type": "library", + "publisher": "Laurent Bigonville ", + "name": "libaudit-common", + "version": "1:2.8.4-3", + "licenses": [ + { + "license": { + "id": "GPL-1.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + } + ], + "cpe": "cpe:2.3:a:libaudit-common:libaudit-common:1\\:2.8.4-3:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libaudit-common@1%3A2.8.4-3?arch=all&distro=debian-10&upstream=audit", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libaudit-common:libaudit_common:1\\:2.8.4-3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libaudit_common:libaudit-common:1\\:2.8.4-3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libaudit_common:libaudit_common:1\\:2.8.4-3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libaudit:libaudit-common:1\\:2.8.4-3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libaudit:libaudit_common:1\\:2.8.4-3:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libaudit-common/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libaudit-common.conffiles" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/libaudit-common.md5sums" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/libaudit-common.list" + }, + { + "name": "syft:metadata:installedSize", + "value": "33" + }, + { + "name": "syft:metadata:source", + "value": "audit" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libaudit1@1%3A2.8.4-3?arch=amd64&distro=debian-10&package-id=e445bed1f84bcb4b&upstream=audit", + "type": "library", + "publisher": "Laurent Bigonville ", + "name": "libaudit1", + "version": "1:2.8.4-3", + "licenses": [ + { + "license": { + "id": "GPL-1.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + } + ], + "cpe": "cpe:2.3:a:libaudit1:libaudit1:1\\:2.8.4-3:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libaudit1@1%3A2.8.4-3?arch=amd64&distro=debian-10&upstream=audit", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libaudit1/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libaudit1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "161" + }, + { + "name": "syft:metadata:source", + "value": "audit" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libblkid1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=d20eac8952a5e6b5&upstream=util-linux", + "type": "library", + "publisher": "LaMont Jones ", + "name": "libblkid1", + "version": "2.33.1-0.1", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + }, + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "BSD-4-Clause" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1-or-later" + } + }, + { + "license": { + "id": "LGPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-3.0-or-later" + } + }, + { + "license": { + "id": "MIT" + } + }, + { + "license": { + "name": "LGPL" + } + }, + { + "license": { + "name": "public-domain" + } + } + ], + "cpe": "cpe:2.3:a:libblkid1:libblkid1:2.33.1-0.1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libblkid1@2.33.1-0.1?arch=amd64&distro=debian-10&upstream=util-linux", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libblkid1/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libblkid1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "428" + }, + { + "name": "syft:metadata:source", + "value": "util-linux" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libbrotli1@1.0.7-2%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=d61cdb80f6254e3e&upstream=brotli", + "type": "library", + "publisher": "Tomasz Buchert ", + "name": "libbrotli1", + "version": "1.0.7-2+deb10u1", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "cpe": "cpe:2.3:a:libbrotli1:libbrotli1:1.0.7-2\\+deb10u1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libbrotli1@1.0.7-2%2Bdeb10u1?arch=amd64&distro=debian-10&upstream=brotli", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/usr/share/doc/libbrotli1/copyright" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/libbrotli1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "775" + }, + { + "name": "syft:metadata:source", + "value": "brotli" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libbz2-1.0@1.0.6-9.2~deb10u1?arch=amd64&distro=debian-10&package-id=0908c2a2770a4bad&upstream=bzip2", + "type": "library", + "publisher": "Anibal Monsalve Salazar ", + "name": "libbz2-1.0", + "version": "1.0.6-9.2~deb10u1", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "name": "BSD-variant" + } + } + ], + "cpe": "cpe:2.3:a:libbz2-1.0:libbz2-1.0:1.0.6-9.2\\~deb10u1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libbz2-1.0@1.0.6-9.2~deb10u1?arch=amd64&distro=debian-10&upstream=bzip2", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libbz2-1.0:libbz2_1.0:1.0.6-9.2\\~deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libbz2_1.0:libbz2-1.0:1.0.6-9.2\\~deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libbz2_1.0:libbz2_1.0:1.0.6-9.2\\~deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libbz2:libbz2-1.0:1.0.6-9.2\\~deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libbz2:libbz2_1.0:1.0.6-9.2\\~deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libbz2-1.0/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libbz2-1.0:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "104" + }, + { + "name": "syft:metadata:source", + "value": "bzip2" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libc-bin@2.28-10?arch=amd64&distro=debian-10&package-id=324d5fb6de70a42b&upstream=glibc", + "type": "library", + "publisher": "GNU Libc Maintainers ", + "name": "libc-bin", + "version": "2.28-10", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + } + ], + "cpe": "cpe:2.3:a:libc-bin:libc-bin:2.28-10:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libc-bin@2.28-10?arch=amd64&distro=debian-10&upstream=glibc", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libc-bin:libc_bin:2.28-10:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libc_bin:libc-bin:2.28-10:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libc_bin:libc_bin:2.28-10:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libc:libc-bin:2.28-10:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libc:libc_bin:2.28-10:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libc-bin/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libc-bin.conffiles" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/libc-bin.md5sums" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/libc-bin.list" + }, + { + "name": "syft:location:7:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:7:path", + "value": "/var/lib/dpkg/info/libc-bin.postinst" + }, + { + "name": "syft:location:8:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:8:path", + "value": "/var/lib/dpkg/info/libc-bin.triggers" + }, + { + "name": "syft:metadata:installedSize", + "value": "3493" + }, + { + "name": "syft:metadata:source", + "value": "glibc" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "type": "library", + "publisher": "GNU Libc Maintainers ", + "name": "libc6", + "version": "2.28-10", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + } + ], + "cpe": "cpe:2.3:a:libc6:libc6:2.28-10:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&upstream=glibc", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libc6/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libc6:amd64.conffiles" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/libc6:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "12337" + }, + { + "name": "syft:metadata:source", + "value": "glibc" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libcap-ng0@0.7.9-2?arch=amd64&distro=debian-10&package-id=aaab7004e87358fb&upstream=libcap-ng", + "type": "library", + "publisher": "Pierre Chifflier ", + "name": "libcap-ng0", + "version": "0.7.9-2", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + } + ], + "cpe": "cpe:2.3:a:libcap-ng0:libcap-ng0:0.7.9-2:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libcap-ng0@0.7.9-2?arch=amd64&distro=debian-10&upstream=libcap-ng", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libcap-ng0:libcap_ng0:0.7.9-2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libcap_ng0:libcap-ng0:0.7.9-2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libcap_ng0:libcap_ng0:0.7.9-2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libcap:libcap-ng0:0.7.9-2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libcap:libcap_ng0:0.7.9-2:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libcap-ng0/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libcap-ng0:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "47" + }, + { + "name": "syft:metadata:source", + "value": "libcap-ng" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libcom-err2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=1a8a9dbb194df5d1&upstream=e2fsprogs", + "type": "library", + "publisher": "Theodore Y. Ts'o ", + "name": "libcom-err2", + "version": "1.44.5-1+deb10u3", + "licenses": [ + { + "license": { + "name": "LicenseRef-sha256:9e3a4384b6d8d2358d44103f62bcd948328b3f8a63a1a6baa66abeb43302d581" + } + } + ], + "cpe": "cpe:2.3:a:libcom-err2:libcom-err2:1.44.5-1\\+deb10u3:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libcom-err2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&upstream=e2fsprogs", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libcom-err2:libcom_err2:1.44.5-1\\+deb10u3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libcom_err2:libcom-err2:1.44.5-1\\+deb10u3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libcom_err2:libcom_err2:1.44.5-1\\+deb10u3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libcom:libcom-err2:1.44.5-1\\+deb10u3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libcom:libcom_err2:1.44.5-1\\+deb10u3:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libcom-err2/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libcom-err2:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "92" + }, + { + "name": "syft:metadata:source", + "value": "e2fsprogs" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libcurl4@7.64.0-4%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=af03801f530228cd&upstream=curl", + "type": "library", + "publisher": "Alessandro Ghedini ", + "name": "libcurl4", + "version": "7.64.0-4+deb10u2", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "BSD-4-Clause" + } + }, + { + "license": { + "id": "ISC" + } + }, + { + "license": { + "id": "curl" + } + }, + { + "license": { + "name": "other" + } + }, + { + "license": { + "name": "public-domain" + } + } + ], + "cpe": "cpe:2.3:a:libcurl4:libcurl4:7.64.0-4\\+deb10u2:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libcurl4@7.64.0-4%2Bdeb10u2?arch=amd64&distro=debian-10&upstream=curl", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/usr/share/doc/libcurl4/copyright" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/libcurl4:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "698" + }, + { + "name": "syft:metadata:source", + "value": "curl" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libdb5.3@5.3.28%2Bdfsg1-0.5?arch=amd64&distro=debian-10&package-id=910a20bdce3547ea&upstream=db5.3", + "type": "library", + "publisher": "Debian Berkeley DB Team ", + "name": "libdb5.3", + "version": "5.3.28+dfsg1-0.5", + "licenses": [ + { + "license": { + "name": "LicenseRef-sha256:b3bbc6fbb3f2a0e6a487e953eb8c3cc4bdb6f4150f7f51d20b1e9a3c8ef92d3d" + } + } + ], + "cpe": "cpe:2.3:a:libdb5.3:libdb5.3:5.3.28\\+dfsg1-0.5:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libdb5.3@5.3.28%2Bdfsg1-0.5?arch=amd64&distro=debian-10&upstream=db5.3", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libdb5.3/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libdb5.3:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "1802" + }, + { + "name": "syft:metadata:source", + "value": "db5.3" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libdebconfclient0@0.249?arch=amd64&distro=debian-10&package-id=0ab574cc914c04a7&upstream=cdebconf", + "type": "library", + "publisher": "Debian Install System Team ", + "name": "libdebconfclient0", + "version": "0.249", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + } + ], + "cpe": "cpe:2.3:a:libdebconfclient0:libdebconfclient0:0.249:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libdebconfclient0@0.249?arch=amd64&distro=debian-10&upstream=cdebconf", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libdebconfclient0/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libdebconfclient0:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "72" + }, + { + "name": "syft:metadata:source", + "value": "cdebconf" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libexpat1@2.2.6-2%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=d55bfe42f054b394&upstream=expat", + "type": "library", + "publisher": "Laszlo Boszormenyi (GCS) ", + "name": "libexpat1", + "version": "2.2.6-2+deb10u1", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "cpe": "cpe:2.3:a:libexpat1:libexpat1:2.2.6-2\\+deb10u1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libexpat1@2.2.6-2%2Bdeb10u1?arch=amd64&distro=debian-10&upstream=expat", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:2:path", + "value": "/usr/share/doc/libexpat1/copyright" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:3:path", + "value": "/var/lib/dpkg/info/libexpat1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "519" + }, + { + "name": "syft:metadata:source", + "value": "expat" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libext2fs2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=e40d517f10e825e0&upstream=e2fsprogs", + "type": "library", + "publisher": "Theodore Y. Ts'o ", + "name": "libext2fs2", + "version": "1.44.5-1+deb10u3", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.0-only" + } + } + ], + "cpe": "cpe:2.3:a:libext2fs2:libext2fs2:1.44.5-1\\+deb10u3:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libext2fs2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&upstream=e2fsprogs", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libext2fs2/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libext2fs2:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "476" + }, + { + "name": "syft:metadata:source", + "value": "e2fsprogs" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libfdisk1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=54c2753ee170e0ea&upstream=util-linux", + "type": "library", + "publisher": "LaMont Jones ", + "name": "libfdisk1", + "version": "2.33.1-0.1", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + }, + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "BSD-4-Clause" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1-or-later" + } + }, + { + "license": { + "id": "LGPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-3.0-or-later" + } + }, + { + "license": { + "id": "MIT" + } + }, + { + "license": { + "name": "LGPL" + } + }, + { + "license": { + "name": "public-domain" + } + } + ], + "cpe": "cpe:2.3:a:libfdisk1:libfdisk1:2.33.1-0.1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libfdisk1@2.33.1-0.1?arch=amd64&distro=debian-10&upstream=util-linux", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libfdisk1/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libfdisk1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "546" + }, + { + "name": "syft:metadata:source", + "value": "util-linux" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libffi6@3.2.1-9?arch=amd64&distro=debian-10&package-id=81f81c06eb491929&upstream=libffi", + "type": "library", + "publisher": "Debian GCC Maintainers ", + "name": "libffi6", + "version": "3.2.1-9", + "licenses": [ + { + "license": { + "name": "GPL" + } + } + ], + "cpe": "cpe:2.3:a:libffi6:libffi6:3.2.1-9:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libffi6@3.2.1-9?arch=amd64&distro=debian-10&upstream=libffi", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libffi6/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libffi6:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "56" + }, + { + "name": "syft:metadata:source", + "value": "libffi" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libgcc1@1%3A8.3.0-6?arch=amd64&distro=debian-10&package-id=715380b30f28d876&upstream=gcc-8%408.3.0-6", + "type": "library", + "publisher": "Debian GCC Maintainers ", + "name": "libgcc1", + "version": "1:8.3.0-6", + "licenses": [ + { + "license": { + "id": "GFDL-1.2-only" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "name": "Artistic" + } + }, + { + "license": { + "name": "GPL" + } + }, + { + "license": { + "name": "LGPL" + } + } + ], + "cpe": "cpe:2.3:a:libgcc1:libgcc1:1\\:8.3.0-6:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libgcc1@1%3A8.3.0-6?arch=amd64&distro=debian-10&upstream=gcc-8%408.3.0-6", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/gcc-8-base/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libgcc1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "116" + }, + { + "name": "syft:metadata:source", + "value": "gcc-8" + }, + { + "name": "syft:metadata:sourceVersion", + "value": "8.3.0-6" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libgcrypt20@1.8.4-5%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=7957520e1bba8fa0", + "type": "library", + "publisher": "Debian GnuTLS Maintainers ", + "name": "libgcrypt20", + "version": "1.8.4-5+deb10u1", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "name": "LGPL" + } + } + ], + "cpe": "cpe:2.3:a:libgcrypt20:libgcrypt20:1.8.4-5\\+deb10u1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libgcrypt20@1.8.4-5%2Bdeb10u1?arch=amd64&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libgcrypt20/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libgcrypt20:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "1343" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libgdbm6@1.18.1-4?arch=amd64&distro=debian-10&package-id=c9afbf45b6ae55eb&upstream=gdbm", + "type": "library", + "publisher": "Dmitry Bogatov ", + "name": "libgdbm6", + "version": "1.18.1-4", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "name": "GFDL-NIV-1.3+" + } + } + ], + "cpe": "cpe:2.3:a:libgdbm6:libgdbm6:1.18.1-4:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libgdbm6@1.18.1-4?arch=amd64&distro=debian-10&upstream=gdbm", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:2:path", + "value": "/usr/share/doc/libgdbm6/copyright" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:3:path", + "value": "/var/lib/dpkg/info/libgdbm6:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "117" + }, + { + "name": "syft:metadata:source", + "value": "gdbm" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libgmp10@2%3A6.1.2%2Bdfsg-4?arch=amd64&distro=debian-10&package-id=5a68e3044376edb7&upstream=gmp", + "type": "library", + "publisher": "Debian Science Team ", + "name": "libgmp10", + "version": "2:6.1.2+dfsg-4", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-3.0-only" + } + }, + { + "license": { + "name": "GPL" + } + } + ], + "cpe": "cpe:2.3:a:libgmp10:libgmp10:2\\:6.1.2\\+dfsg-4:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libgmp10@2%3A6.1.2%2Bdfsg-4?arch=amd64&distro=debian-10&upstream=gmp", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libgmp10/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libgmp10:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "565" + }, + { + "name": "syft:metadata:source", + "value": "gmp" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libgnutls30@3.6.7-4%2Bdeb10u7?arch=amd64&distro=debian-10&package-id=2b175f545e2e827e&upstream=gnutls28", + "type": "library", + "publisher": "Debian GnuTLS Maintainers ", + "name": "libgnutls30", + "version": "3.6.7-4+deb10u7", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + }, + { + "license": { + "id": "GFDL-1.3-only" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-3.0-only" + } + }, + { + "license": { + "name": "CC0" + } + }, + { + "license": { + "name": "GPL" + } + }, + { + "license": { + "name": "GPLv3+" + } + }, + { + "license": { + "name": "LGPL" + } + }, + { + "license": { + "name": "LGPLv3+_or_GPLv2+" + } + }, + { + "license": { + "name": "The" + } + } + ], + "cpe": "cpe:2.3:a:libgnutls30:libgnutls30:3.6.7-4\\+deb10u7:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libgnutls30@3.6.7-4%2Bdeb10u7?arch=amd64&distro=debian-10&upstream=gnutls28", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libgnutls30/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libgnutls30:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "2649" + }, + { + "name": "syft:metadata:source", + "value": "gnutls28" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libgpg-error0@1.35-1?arch=amd64&distro=debian-10&package-id=07738f8b4e87f646&upstream=libgpg-error", + "type": "library", + "publisher": "Debian GnuPG Maintainers ", + "name": "libgpg-error0", + "version": "1.35-1", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1-or-later" + } + }, + { + "license": { + "name": "g10-permissive" + } + } + ], + "cpe": "cpe:2.3:a:libgpg-error0:libgpg-error0:1.35-1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libgpg-error0@1.35-1?arch=amd64&distro=debian-10&upstream=libgpg-error", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libgpg-error0:libgpg_error0:1.35-1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libgpg_error0:libgpg-error0:1.35-1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libgpg_error0:libgpg_error0:1.35-1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libgpg:libgpg-error0:1.35-1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libgpg:libgpg_error0:1.35-1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libgpg-error0/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libgpg-error0:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "175" + }, + { + "name": "syft:metadata:source", + "value": "libgpg-error" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libgssapi-krb5-2@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=563dc09768844327&upstream=krb5", + "type": "library", + "publisher": "Sam Hartman ", + "name": "libgssapi-krb5-2", + "version": "1.17-3+deb10u2", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + } + ], + "cpe": "cpe:2.3:a:libgssapi-krb5-2:libgssapi-krb5-2:1.17-3\\+deb10u2:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libgssapi-krb5-2@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&upstream=krb5", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libgssapi-krb5-2:libgssapi_krb5_2:1.17-3\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libgssapi_krb5_2:libgssapi-krb5-2:1.17-3\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libgssapi_krb5_2:libgssapi_krb5_2:1.17-3\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libgssapi-krb5:libgssapi-krb5-2:1.17-3\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libgssapi-krb5:libgssapi_krb5_2:1.17-3\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libgssapi_krb5:libgssapi-krb5-2:1.17-3\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libgssapi_krb5:libgssapi_krb5_2:1.17-3\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libgssapi:libgssapi-krb5-2:1.17-3\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libgssapi:libgssapi_krb5_2:1.17-3\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/usr/share/doc/libgssapi-krb5-2/copyright" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/libgssapi-krb5-2:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "428" + }, + { + "name": "syft:metadata:source", + "value": "krb5" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libhogweed4@3.4.1-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=1c418be752fe00a9&upstream=nettle", + "type": "library", + "publisher": "Magnus Holmgren ", + "name": "libhogweed4", + "version": "3.4.1-1+deb10u1", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-or-later" + } + }, + { + "license": { + "name": "GAP" + } + }, + { + "license": { + "name": "GPL" + } + }, + { + "license": { + "name": "LGPL" + } + }, + { + "license": { + "name": "other" + } + }, + { + "license": { + "name": "public-domain" + } + } + ], + "cpe": "cpe:2.3:a:libhogweed4:libhogweed4:3.4.1-1\\+deb10u1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libhogweed4@3.4.1-1%2Bdeb10u1?arch=amd64&distro=debian-10&upstream=nettle", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libnettle6/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libhogweed4:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "246" + }, + { + "name": "syft:metadata:source", + "value": "nettle" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libicu63@63.1-6%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=a180ea9e3b7989a3&upstream=icu", + "type": "library", + "publisher": "Laszlo Boszormenyi (GCS) ", + "name": "libicu63", + "version": "63.1-6+deb10u1", + "licenses": [ + { + "license": { + "name": "LicenseRef-sha256:0515ea67c829d73cf54d074ef7bd030968419f98a83e523d4300ea0f4d18ebc9" + } + } + ], + "cpe": "cpe:2.3:a:libicu63:libicu63:63.1-6\\+deb10u1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libicu63@63.1-6%2Bdeb10u1?arch=amd64&distro=debian-10&upstream=icu", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/usr/share/doc/libicu63/copyright" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/libicu63:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "31687" + }, + { + "name": "syft:metadata:source", + "value": "icu" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libidn2-0@2.0.5-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=5a5081d247582e95&upstream=libidn2", + "type": "library", + "publisher": "Debian Libidn team ", + "name": "libidn2-0", + "version": "2.0.5-1+deb10u1", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "id": "LGPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-3.0-or-later" + } + }, + { + "license": { + "name": "Unicode" + } + } + ], + "cpe": "cpe:2.3:a:libidn2-0:libidn2-0:2.0.5-1\\+deb10u1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libidn2-0@2.0.5-1%2Bdeb10u1?arch=amd64&distro=debian-10&upstream=libidn2", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libidn2-0:libidn2_0:2.0.5-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libidn2_0:libidn2-0:2.0.5-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libidn2_0:libidn2_0:2.0.5-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libidn2:libidn2-0:2.0.5-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libidn2:libidn2_0:2.0.5-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libidn2-0/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libidn2-0:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "280" + }, + { + "name": "syft:metadata:source", + "value": "libidn2" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libjansson4@2.12-1?arch=amd64&distro=debian-10&package-id=88fb69b90900ef4f&upstream=jansson", + "type": "library", + "publisher": "Alessandro Ghedini ", + "name": "libjansson4", + "version": "2.12-1", + "licenses": [ + { + "license": { + "name": "Expat" + } + } + ], + "cpe": "cpe:2.3:a:libjansson4:libjansson4:2.12-1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libjansson4@2.12-1?arch=amd64&distro=debian-10&upstream=jansson", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/usr/share/doc/libjansson4/copyright" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/libjansson4:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "87" + }, + { + "name": "syft:metadata:source", + "value": "jansson" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libk5crypto3@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=04ecc244c55268d8&upstream=krb5", + "type": "library", + "publisher": "Sam Hartman ", + "name": "libk5crypto3", + "version": "1.17-3+deb10u2", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + } + ], + "cpe": "cpe:2.3:a:libk5crypto3:libk5crypto3:1.17-3\\+deb10u2:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libk5crypto3@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&upstream=krb5", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/usr/share/doc/libk5crypto3/copyright" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/libk5crypto3:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "313" + }, + { + "name": "syft:metadata:source", + "value": "krb5" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libkeyutils1@1.6-6?arch=amd64&distro=debian-10&package-id=1ed46086dbffc087&upstream=keyutils", + "type": "library", + "publisher": "Christian Kastner ", + "name": "libkeyutils1", + "version": "1.6-6", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.0-or-later" + } + } + ], + "cpe": "cpe:2.3:a:libkeyutils1:libkeyutils1:1.6-6:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libkeyutils1@1.6-6?arch=amd64&distro=debian-10&upstream=keyutils", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/usr/share/doc/libkeyutils1/copyright" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/libkeyutils1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "45" + }, + { + "name": "syft:metadata:source", + "value": "keyutils" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libkrb5-3@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=2702e37fa523f601&upstream=krb5", + "type": "library", + "publisher": "Sam Hartman ", + "name": "libkrb5-3", + "version": "1.17-3+deb10u2", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + } + ], + "cpe": "cpe:2.3:a:libkrb5-3:libkrb5-3:1.17-3\\+deb10u2:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libkrb5-3@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&upstream=krb5", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libkrb5-3:libkrb5_3:1.17-3\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libkrb5_3:libkrb5-3:1.17-3\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libkrb5_3:libkrb5_3:1.17-3\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libkrb5:libkrb5-3:1.17-3\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libkrb5:libkrb5_3:1.17-3\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/usr/share/doc/libkrb5-3/copyright" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/libkrb5-3:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "1134" + }, + { + "name": "syft:metadata:source", + "value": "krb5" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libkrb5support0@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=23be6b473ec0b06b&upstream=krb5", + "type": "library", + "publisher": "Sam Hartman ", + "name": "libkrb5support0", + "version": "1.17-3+deb10u2", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + } + ], + "cpe": "cpe:2.3:a:libkrb5support0:libkrb5support0:1.17-3\\+deb10u2:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libkrb5support0@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&upstream=krb5", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/usr/share/doc/libkrb5support0/copyright" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/libkrb5support0:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "170" + }, + { + "name": "syft:metadata:source", + "value": "krb5" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libldap-2.4-2@2.4.47%2Bdfsg-3%2Bdeb10u6?arch=amd64&distro=debian-10&package-id=b63707706e516b73&upstream=openldap", + "type": "library", + "publisher": "Debian OpenLDAP Maintainers ", + "name": "libldap-2.4-2", + "version": "2.4.47+dfsg-3+deb10u6", + "licenses": [ + { + "license": { + "name": "LicenseRef-sha256:0690f1ee382f98e95b446743db55395641d5e258de65939e9cb1c660d67a43a8" + } + } + ], + "cpe": "cpe:2.3:a:libldap-2.4-2:libldap-2.4-2:2.4.47\\+dfsg-3\\+deb10u6:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libldap-2.4-2@2.4.47%2Bdfsg-3%2Bdeb10u6?arch=amd64&distro=debian-10&upstream=openldap", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libldap-2.4-2:libldap_2.4_2:2.4.47\\+dfsg-3\\+deb10u6:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libldap_2.4_2:libldap-2.4-2:2.4.47\\+dfsg-3\\+deb10u6:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libldap_2.4_2:libldap_2.4_2:2.4.47\\+dfsg-3\\+deb10u6:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libldap-2.4:libldap-2.4-2:2.4.47\\+dfsg-3\\+deb10u6:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libldap-2.4:libldap_2.4_2:2.4.47\\+dfsg-3\\+deb10u6:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libldap_2.4:libldap-2.4-2:2.4.47\\+dfsg-3\\+deb10u6:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libldap_2.4:libldap_2.4_2:2.4.47\\+dfsg-3\\+deb10u6:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libldap:libldap-2.4-2:2.4.47\\+dfsg-3\\+deb10u6:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libldap:libldap_2.4_2:2.4.47\\+dfsg-3\\+deb10u6:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:2:path", + "value": "/usr/share/doc/libldap-2.4-2/copyright" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:3:path", + "value": "/var/lib/dpkg/info/libldap-2.4-2:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "526" + }, + { + "name": "syft:metadata:source", + "value": "openldap" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libldap-common@2.4.47%2Bdfsg-3%2Bdeb10u6?arch=all&distro=debian-10&package-id=f04113280174888f&upstream=openldap", + "type": "library", + "publisher": "Debian OpenLDAP Maintainers ", + "name": "libldap-common", + "version": "2.4.47+dfsg-3+deb10u6", + "licenses": [ + { + "license": { + "name": "LicenseRef-sha256:0690f1ee382f98e95b446743db55395641d5e258de65939e9cb1c660d67a43a8" + } + } + ], + "cpe": "cpe:2.3:a:libldap-common:libldap-common:2.4.47\\+dfsg-3\\+deb10u6:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libldap-common@2.4.47%2Bdfsg-3%2Bdeb10u6?arch=all&distro=debian-10&upstream=openldap", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libldap-common:libldap_common:2.4.47\\+dfsg-3\\+deb10u6:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libldap_common:libldap-common:2.4.47\\+dfsg-3\\+deb10u6:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libldap_common:libldap_common:2.4.47\\+dfsg-3\\+deb10u6:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libldap:libldap-common:2.4.47\\+dfsg-3\\+deb10u6:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libldap:libldap_common:2.4.47\\+dfsg-3\\+deb10u6:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:2:path", + "value": "/usr/share/doc/libldap-common/copyright" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:3:path", + "value": "/var/lib/dpkg/info/libldap-common.conffiles" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libldap-common.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/libldap-common.list" + }, + { + "name": "syft:metadata:installedSize", + "value": "113" + }, + { + "name": "syft:metadata:source", + "value": "openldap" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/liblua5.2-0@5.2.4-1.1%2Bb2?arch=amd64&distro=debian-10&package-id=60163e6ffcd36f87&upstream=lua5.2%405.2.4-1.1", + "type": "library", + "publisher": "Enrico Tassi ", + "name": "liblua5.2-0", + "version": "5.2.4-1.1+b2", + "licenses": [ + { + "license": { + "name": "Expat" + } + } + ], + "cpe": "cpe:2.3:a:liblua5.2-0:liblua5.2-0:5.2.4-1.1\\+b2:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/liblua5.2-0@5.2.4-1.1%2Bb2?arch=amd64&distro=debian-10&upstream=lua5.2%405.2.4-1.1", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:liblua5.2-0:liblua5.2_0:5.2.4-1.1\\+b2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:liblua5.2_0:liblua5.2-0:5.2.4-1.1\\+b2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:liblua5.2_0:liblua5.2_0:5.2.4-1.1\\+b2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:liblua5.2:liblua5.2-0:5.2.4-1.1\\+b2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:liblua5.2:liblua5.2_0:5.2.4-1.1\\+b2:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/usr/share/doc/liblua5.2-0/copyright" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/liblua5.2-0:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "425" + }, + { + "name": "syft:metadata:source", + "value": "lua5.2" + }, + { + "name": "syft:metadata:sourceVersion", + "value": "5.2.4-1.1" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/liblz4-1@1.8.3-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=2ee01fd2c453e926&upstream=lz4", + "type": "library", + "publisher": "Nobuhiro Iwamatsu ", + "name": "liblz4-1", + "version": "1.8.3-1+deb10u1", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + } + ], + "cpe": "cpe:2.3:a:liblz4-1:liblz4-1:1.8.3-1\\+deb10u1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/liblz4-1@1.8.3-1%2Bdeb10u1?arch=amd64&distro=debian-10&upstream=lz4", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:liblz4-1:liblz4_1:1.8.3-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:liblz4_1:liblz4-1:1.8.3-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:liblz4_1:liblz4_1:1.8.3-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:liblz4:liblz4-1:1.8.3-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:liblz4:liblz4_1:1.8.3-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/liblz4-1/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/liblz4-1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "141" + }, + { + "name": "syft:metadata:source", + "value": "lz4" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/liblzma5@5.2.4-1?arch=amd64&distro=debian-10&package-id=c32191f717ec58de&upstream=xz-utils", + "type": "library", + "publisher": "Jonathan Nieder ", + "name": "liblzma5", + "version": "5.2.4-1", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1-or-later" + } + }, + { + "license": { + "name": "Autoconf" + } + }, + { + "license": { + "name": "PD" + } + }, + { + "license": { + "name": "PD-debian" + } + }, + { + "license": { + "name": "config-h" + } + }, + { + "license": { + "name": "noderivs" + } + }, + { + "license": { + "name": "permissive-fsf" + } + }, + { + "license": { + "name": "permissive-nowarranty" + } + }, + { + "license": { + "name": "probably-PD" + } + } + ], + "cpe": "cpe:2.3:a:liblzma5:liblzma5:5.2.4-1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/liblzma5@5.2.4-1?arch=amd64&distro=debian-10&upstream=xz-utils", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/liblzma5/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/liblzma5:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "263" + }, + { + "name": "syft:metadata:source", + "value": "xz-utils" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libmount1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=c6f6118ba99c54cb&upstream=util-linux", + "type": "library", + "publisher": "LaMont Jones ", + "name": "libmount1", + "version": "2.33.1-0.1", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + }, + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "BSD-4-Clause" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1-or-later" + } + }, + { + "license": { + "id": "LGPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-3.0-or-later" + } + }, + { + "license": { + "id": "MIT" + } + }, + { + "license": { + "name": "LGPL" + } + }, + { + "license": { + "name": "public-domain" + } + } + ], + "cpe": "cpe:2.3:a:libmount1:libmount1:2.33.1-0.1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libmount1@2.33.1-0.1?arch=amd64&distro=debian-10&upstream=util-linux", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libmount1/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libmount1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "475" + }, + { + "name": "syft:metadata:source", + "value": "util-linux" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libncursesw6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=6c56928a7efb44d4&upstream=ncurses", + "type": "library", + "publisher": "Craig Small ", + "name": "libncursesw6", + "version": "6.1+20181013-2+deb10u2", + "licenses": [ + { + "license": { + "name": "LicenseRef-sha256:5e8ee902c8906ddb7779fd36dc9979cb08b51fbebf7c0b1a9aeb78af382af590" + } + } + ], + "cpe": "cpe:2.3:a:libncursesw6:libncursesw6:6.1\\+20181013-2\\+deb10u2:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libncursesw6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&upstream=ncurses", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libtinfo6/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libncursesw6:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "411" + }, + { + "name": "syft:metadata:source", + "value": "ncurses" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libnettle6@3.4.1-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=89d7efaea95993d3&upstream=nettle", + "type": "library", + "publisher": "Magnus Holmgren ", + "name": "libnettle6", + "version": "3.4.1-1+deb10u1", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-or-later" + } + }, + { + "license": { + "name": "GAP" + } + }, + { + "license": { + "name": "GPL" + } + }, + { + "license": { + "name": "LGPL" + } + }, + { + "license": { + "name": "other" + } + }, + { + "license": { + "name": "public-domain" + } + } + ], + "cpe": "cpe:2.3:a:libnettle6:libnettle6:3.4.1-1\\+deb10u1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libnettle6@3.4.1-1%2Bdeb10u1?arch=amd64&distro=debian-10&upstream=nettle", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libnettle6/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libnettle6:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "380" + }, + { + "name": "syft:metadata:source", + "value": "nettle" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libnghttp2-14@1.36.0-2%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=0ee3c902a7004593&upstream=nghttp2", + "type": "library", + "publisher": "Tomasz Buchert ", + "name": "libnghttp2-14", + "version": "1.36.0-2+deb10u1", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "id": "MIT" + } + }, + { + "license": { + "name": "Expat" + } + }, + { + "license": { + "name": "SIL-OFL-1.1" + } + }, + { + "license": { + "name": "all-permissive" + } + } + ], + "cpe": "cpe:2.3:a:libnghttp2-14:libnghttp2-14:1.36.0-2\\+deb10u1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libnghttp2-14@1.36.0-2%2Bdeb10u1?arch=amd64&distro=debian-10&upstream=nghttp2", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libnghttp2-14:libnghttp2_14:1.36.0-2\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libnghttp2_14:libnghttp2-14:1.36.0-2\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libnghttp2_14:libnghttp2_14:1.36.0-2\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libnghttp2:libnghttp2-14:1.36.0-2\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libnghttp2:libnghttp2_14:1.36.0-2\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/usr/share/doc/libnghttp2-14/copyright" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/libnghttp2-14:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "210" + }, + { + "name": "syft:metadata:source", + "value": "nghttp2" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libp11-kit0@0.23.15-2%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=dac1be12b689bc10&upstream=p11-kit", + "type": "library", + "publisher": "Debian GnuTLS Maintainers ", + "name": "libp11-kit0", + "version": "0.23.15-2+deb10u1", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "ISC" + } + }, + { + "license": { + "name": "ISC+IBM" + } + }, + { + "license": { + "name": "permissive-like-automake-output" + } + }, + { + "license": { + "name": "same-as-rest-of-p11kit" + } + } + ], + "cpe": "cpe:2.3:a:libp11-kit0:libp11-kit0:0.23.15-2\\+deb10u1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libp11-kit0@0.23.15-2%2Bdeb10u1?arch=amd64&distro=debian-10&upstream=p11-kit", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libp11-kit0:libp11_kit0:0.23.15-2\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libp11_kit0:libp11-kit0:0.23.15-2\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libp11_kit0:libp11_kit0:0.23.15-2\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libp11:libp11-kit0:0.23.15-2\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libp11:libp11_kit0:0.23.15-2\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libp11-kit0/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libp11-kit0:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "1365" + }, + { + "name": "syft:metadata:source", + "value": "p11-kit" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libpam-modules@1.3.1-5?arch=amd64&distro=debian-10&package-id=5913b683bb6ecea4&upstream=pam", + "type": "library", + "publisher": "Steve Langasek ", + "name": "libpam-modules", + "version": "1.3.1-5", + "licenses": [ + { + "license": { + "name": "GPL" + } + } + ], + "cpe": "cpe:2.3:a:libpam-modules:libpam-modules:1.3.1-5:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libpam-modules@1.3.1-5?arch=amd64&distro=debian-10&upstream=pam", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam-modules:libpam_modules:1.3.1-5:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam_modules:libpam-modules:1.3.1-5:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam_modules:libpam_modules:1.3.1-5:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam:libpam-modules:1.3.1-5:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam:libpam_modules:1.3.1-5:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libpam-modules/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libpam-modules:amd64.conffiles" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/libpam-modules:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "1059" + }, + { + "name": "syft:metadata:source", + "value": "pam" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libpam-modules-bin@1.3.1-5?arch=amd64&distro=debian-10&package-id=631d9f9526108591&upstream=pam", + "type": "library", + "publisher": "Steve Langasek ", + "name": "libpam-modules-bin", + "version": "1.3.1-5", + "licenses": [ + { + "license": { + "name": "GPL" + } + } + ], + "cpe": "cpe:2.3:a:libpam-modules-bin:libpam-modules-bin:1.3.1-5:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libpam-modules-bin@1.3.1-5?arch=amd64&distro=debian-10&upstream=pam", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam-modules-bin:libpam_modules_bin:1.3.1-5:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam_modules_bin:libpam-modules-bin:1.3.1-5:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam_modules_bin:libpam_modules_bin:1.3.1-5:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam-modules:libpam-modules-bin:1.3.1-5:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam-modules:libpam_modules_bin:1.3.1-5:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam_modules:libpam-modules-bin:1.3.1-5:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam_modules:libpam_modules_bin:1.3.1-5:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam:libpam-modules-bin:1.3.1-5:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam:libpam_modules_bin:1.3.1-5:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libpam-modules-bin/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libpam-modules-bin.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/libpam-modules-bin.list" + }, + { + "name": "syft:metadata:installedSize", + "value": "238" + }, + { + "name": "syft:metadata:source", + "value": "pam" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libpam-runtime@1.3.1-5?arch=all&distro=debian-10&package-id=25a1580763811c2a&upstream=pam", + "type": "library", + "publisher": "Steve Langasek ", + "name": "libpam-runtime", + "version": "1.3.1-5", + "licenses": [ + { + "license": { + "name": "GPL" + } + } + ], + "cpe": "cpe:2.3:a:libpam-runtime:libpam-runtime:1.3.1-5:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libpam-runtime@1.3.1-5?arch=all&distro=debian-10&upstream=pam", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam-runtime:libpam_runtime:1.3.1-5:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam_runtime:libpam-runtime:1.3.1-5:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam_runtime:libpam_runtime:1.3.1-5:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam:libpam-runtime:1.3.1-5:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam:libpam_runtime:1.3.1-5:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:10:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:10:path", + "value": "/var/lib/dpkg/info/libpam-runtime.templates" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libpam-runtime/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libpam-runtime.conffiles" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/libpam-runtime.md5sums" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/libpam-runtime.list" + }, + { + "name": "syft:location:7:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:7:path", + "value": "/var/lib/dpkg/info/libpam-runtime.postinst" + }, + { + "name": "syft:location:8:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:8:path", + "value": "/var/lib/dpkg/info/libpam-runtime.postrm" + }, + { + "name": "syft:location:9:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:9:path", + "value": "/var/lib/dpkg/info/libpam-runtime.prerm" + }, + { + "name": "syft:metadata:installedSize", + "value": "1072" + }, + { + "name": "syft:metadata:source", + "value": "pam" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libpam0g@1.3.1-5?arch=amd64&distro=debian-10&package-id=75c54a61b843e467&upstream=pam", + "type": "library", + "publisher": "Steve Langasek ", + "name": "libpam0g", + "version": "1.3.1-5", + "licenses": [ + { + "license": { + "name": "GPL" + } + } + ], + "cpe": "cpe:2.3:a:libpam0g:libpam0g:1.3.1-5:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libpam0g@1.3.1-5?arch=amd64&distro=debian-10&upstream=pam", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libpam0g/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libpam0g:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "244" + }, + { + "name": "syft:metadata:source", + "value": "pam" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libpcre3@2%3A8.39-12?arch=amd64&distro=debian-10&package-id=35b7de3a80d53d59&upstream=pcre3", + "type": "library", + "publisher": "Matthew Vernon ", + "name": "libpcre3", + "version": "2:8.39-12", + "licenses": [ + { + "license": { + "name": "LicenseRef-sha256:ac9276490d2fa167442ae1aae33926514ad10c8886baa40046c5e367fccc5938" + } + } + ], + "cpe": "cpe:2.3:a:libpcre3:libpcre3:2\\:8.39-12:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libpcre3@2%3A8.39-12?arch=amd64&distro=debian-10&upstream=pcre3", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libpcre3/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libpcre3:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "673" + }, + { + "name": "syft:metadata:source", + "value": "pcre3" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libpsl5@0.20.2-2?arch=amd64&distro=debian-10&package-id=409f4da8465b655e&upstream=libpsl", + "type": "library", + "publisher": "Tim Rühsen ", + "name": "libpsl5", + "version": "0.20.2-2", + "licenses": [ + { + "license": { + "id": "MIT" + } + }, + { + "license": { + "name": "Chromium" + } + } + ], + "cpe": "cpe:2.3:a:libpsl5:libpsl5:0.20.2-2:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libpsl5@0.20.2-2?arch=amd64&distro=debian-10&upstream=libpsl", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/usr/share/doc/libpsl5/copyright" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/libpsl5:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "90" + }, + { + "name": "syft:metadata:source", + "value": "libpsl" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/librtmp1@2.4%2B20151223.gitfa8646d.1-2?arch=amd64&distro=debian-10&package-id=4e31bab7a6ca0f63&upstream=rtmpdump", + "type": "library", + "publisher": "Debian Multimedia Maintainers ", + "name": "librtmp1", + "version": "2.4+20151223.gitfa8646d.1-2", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + } + ], + "cpe": "cpe:2.3:a:librtmp1:librtmp1:2.4\\+20151223.gitfa8646d.1-2:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/librtmp1@2.4%2B20151223.gitfa8646d.1-2?arch=amd64&distro=debian-10&upstream=rtmpdump", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/usr/share/doc/librtmp1/copyright" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/librtmp1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "141" + }, + { + "name": "syft:metadata:source", + "value": "rtmpdump" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libsasl2-2@2.1.27%2Bdfsg-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=56eb272c9677fc6a&upstream=cyrus-sasl2", + "type": "library", + "publisher": "Debian Cyrus Team ", + "name": "libsasl2-2", + "version": "2.1.27+dfsg-1+deb10u1", + "licenses": [ + { + "license": { + "id": "BSD-4-Clause" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + } + ], + "cpe": "cpe:2.3:a:libsasl2-2:libsasl2-2:2.1.27\\+dfsg-1\\+deb10u1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libsasl2-2@2.1.27%2Bdfsg-1%2Bdeb10u1?arch=amd64&distro=debian-10&upstream=cyrus-sasl2", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsasl2-2:libsasl2_2:2.1.27\\+dfsg-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsasl2_2:libsasl2-2:2.1.27\\+dfsg-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsasl2_2:libsasl2_2:2.1.27\\+dfsg-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsasl2:libsasl2-2:2.1.27\\+dfsg-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsasl2:libsasl2_2:2.1.27\\+dfsg-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:2:path", + "value": "/usr/share/doc/libsasl2-2/copyright" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:3:path", + "value": "/var/lib/dpkg/info/libsasl2-2:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "188" + }, + { + "name": "syft:metadata:source", + "value": "cyrus-sasl2" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libsasl2-modules-db@2.1.27%2Bdfsg-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=0dddbf5f31db948d&upstream=cyrus-sasl2", + "type": "library", + "publisher": "Debian Cyrus Team ", + "name": "libsasl2-modules-db", + "version": "2.1.27+dfsg-1+deb10u1", + "licenses": [ + { + "license": { + "id": "BSD-4-Clause" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + } + ], + "cpe": "cpe:2.3:a:libsasl2-modules-db:libsasl2-modules-db:2.1.27\\+dfsg-1\\+deb10u1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libsasl2-modules-db@2.1.27%2Bdfsg-1%2Bdeb10u1?arch=amd64&distro=debian-10&upstream=cyrus-sasl2", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsasl2-modules-db:libsasl2_modules_db:2.1.27\\+dfsg-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsasl2_modules_db:libsasl2-modules-db:2.1.27\\+dfsg-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsasl2_modules_db:libsasl2_modules_db:2.1.27\\+dfsg-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsasl2-modules:libsasl2-modules-db:2.1.27\\+dfsg-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsasl2-modules:libsasl2_modules_db:2.1.27\\+dfsg-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsasl2_modules:libsasl2-modules-db:2.1.27\\+dfsg-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsasl2_modules:libsasl2_modules_db:2.1.27\\+dfsg-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsasl2:libsasl2-modules-db:2.1.27\\+dfsg-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsasl2:libsasl2_modules_db:2.1.27\\+dfsg-1\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:2:path", + "value": "/usr/share/doc/libsasl2-modules-db/copyright" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:3:path", + "value": "/var/lib/dpkg/info/libsasl2-modules-db:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "101" + }, + { + "name": "syft:metadata:source", + "value": "cyrus-sasl2" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libseccomp2@2.3.3-4?arch=amd64&distro=debian-10&package-id=b46e6445b6660a4d&upstream=libseccomp", + "type": "library", + "publisher": "Kees Cook ", + "name": "libseccomp2", + "version": "2.3.3-4", + "licenses": [ + { + "license": { + "id": "LGPL-2.1-only" + } + } + ], + "cpe": "cpe:2.3:a:libseccomp2:libseccomp2:2.3.3-4:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libseccomp2@2.3.3-4?arch=amd64&distro=debian-10&upstream=libseccomp", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libseccomp2/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libseccomp2:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "306" + }, + { + "name": "syft:metadata:source", + "value": "libseccomp" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libselinux1@2.8-1%2Bb1?arch=amd64&distro=debian-10&package-id=49addc4e237b1a0d&upstream=libselinux%402.8-1", + "type": "library", + "publisher": "Debian SELinux maintainers ", + "name": "libselinux1", + "version": "2.8-1+b1", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + } + ], + "cpe": "cpe:2.3:a:libselinux1:libselinux1:2.8-1\\+b1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libselinux1@2.8-1%2Bb1?arch=amd64&distro=debian-10&upstream=libselinux%402.8-1", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libselinux1/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libselinux1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "194" + }, + { + "name": "syft:metadata:source", + "value": "libselinux" + }, + { + "name": "syft:metadata:sourceVersion", + "value": "2.8-1" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libsemanage-common@2.8-2?arch=all&distro=debian-10&package-id=f140402ff5125f8f&upstream=libsemanage", + "type": "library", + "publisher": "Debian SELinux maintainers ", + "name": "libsemanage-common", + "version": "2.8-2", + "licenses": [ + { + "license": { + "name": "GPL" + } + }, + { + "license": { + "name": "LGPL" + } + } + ], + "cpe": "cpe:2.3:a:libsemanage-common:libsemanage-common:2.8-2:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libsemanage-common@2.8-2?arch=all&distro=debian-10&upstream=libsemanage", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsemanage-common:libsemanage_common:2.8-2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsemanage_common:libsemanage-common:2.8-2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsemanage_common:libsemanage_common:2.8-2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsemanage:libsemanage-common:2.8-2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsemanage:libsemanage_common:2.8-2:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libsemanage-common/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libsemanage-common.conffiles" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/libsemanage-common.md5sums" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/libsemanage-common.list" + }, + { + "name": "syft:metadata:installedSize", + "value": "30" + }, + { + "name": "syft:metadata:source", + "value": "libsemanage" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libsemanage1@2.8-2?arch=amd64&distro=debian-10&package-id=ee0c44fcf6fdf849&upstream=libsemanage", + "type": "library", + "publisher": "Debian SELinux maintainers ", + "name": "libsemanage1", + "version": "2.8-2", + "licenses": [ + { + "license": { + "name": "GPL" + } + }, + { + "license": { + "name": "LGPL" + } + } + ], + "cpe": "cpe:2.3:a:libsemanage1:libsemanage1:2.8-2:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libsemanage1@2.8-2?arch=amd64&distro=debian-10&upstream=libsemanage", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libsemanage1/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libsemanage1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "301" + }, + { + "name": "syft:metadata:source", + "value": "libsemanage" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libsepol1@2.8-1?arch=amd64&distro=debian-10&package-id=e475ad99443adf15&upstream=libsepol", + "type": "library", + "publisher": "Debian SELinux maintainers ", + "name": "libsepol1", + "version": "2.8-1", + "licenses": [ + { + "license": { + "name": "GPL" + } + }, + { + "license": { + "name": "LGPL" + } + } + ], + "cpe": "cpe:2.3:a:libsepol1:libsepol1:2.8-1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libsepol1@2.8-1?arch=amd64&distro=debian-10&upstream=libsepol", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libsepol1/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libsepol1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "724" + }, + { + "name": "syft:metadata:source", + "value": "libsepol" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libsmartcols1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=a95e9a21c0932258&upstream=util-linux", + "type": "library", + "publisher": "LaMont Jones ", + "name": "libsmartcols1", + "version": "2.33.1-0.1", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + }, + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "BSD-4-Clause" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1-or-later" + } + }, + { + "license": { + "id": "LGPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-3.0-or-later" + } + }, + { + "license": { + "id": "MIT" + } + }, + { + "license": { + "name": "LGPL" + } + }, + { + "license": { + "name": "public-domain" + } + } + ], + "cpe": "cpe:2.3:a:libsmartcols1:libsmartcols1:2.33.1-0.1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libsmartcols1@2.33.1-0.1?arch=amd64&distro=debian-10&upstream=util-linux", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libsmartcols1/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libsmartcols1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "314" + }, + { + "name": "syft:metadata:source", + "value": "util-linux" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libss2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=63fa318f9eefbc75&upstream=e2fsprogs", + "type": "library", + "publisher": "Theodore Y. Ts'o ", + "name": "libss2", + "version": "1.44.5-1+deb10u3", + "licenses": [ + { + "license": { + "name": "LicenseRef-sha256:6f717a1464301a641ac17e7301f1a1b221da802e8edf8cf4bc963721d487b146" + } + } + ], + "cpe": "cpe:2.3:a:libss2:libss2:1.44.5-1\\+deb10u3:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libss2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&upstream=e2fsprogs", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libss2/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libss2:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "104" + }, + { + "name": "syft:metadata:source", + "value": "e2fsprogs" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libssh2-1@1.8.0-2.1?arch=amd64&distro=debian-10&package-id=16faa100e8d6ebcf&upstream=libssh2", + "type": "library", + "publisher": "Mikhail Gusarov ", + "name": "libssh2-1", + "version": "1.8.0-2.1", + "licenses": [ + { + "license": { + "name": "BSD3" + } + } + ], + "cpe": "cpe:2.3:a:libssh2-1:libssh2-1:1.8.0-2.1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libssh2-1@1.8.0-2.1?arch=amd64&distro=debian-10&upstream=libssh2", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libssh2-1:libssh2_1:1.8.0-2.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libssh2_1:libssh2-1:1.8.0-2.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libssh2_1:libssh2_1:1.8.0-2.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libssh2:libssh2-1:1.8.0-2.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libssh2:libssh2_1:1.8.0-2.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/usr/share/doc/libssh2-1/copyright" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/libssh2-1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "270" + }, + { + "name": "syft:metadata:source", + "value": "libssh2" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libssl1.1@1.1.1d-0%2Bdeb10u7?arch=amd64&distro=debian-10&package-id=0aa101ed766132f9&upstream=openssl", + "type": "library", + "publisher": "Debian OpenSSL Team ", + "name": "libssl1.1", + "version": "1.1.1d-0+deb10u7", + "licenses": [ + { + "license": { + "id": "OpenSSL" + } + } + ], + "cpe": "cpe:2.3:a:libssl1.1:libssl1.1:1.1.1d-0\\+deb10u7:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libssl1.1@1.1.1d-0%2Bdeb10u7?arch=amd64&distro=debian-10&upstream=openssl", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:2:path", + "value": "/usr/share/doc/libssl1.1/copyright" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:3:path", + "value": "/var/lib/dpkg/info/libssl1.1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "4078" + }, + { + "name": "syft:metadata:source", + "value": "openssl" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libstdc%2B%2B6@8.3.0-6?arch=amd64&distro=debian-10&package-id=f6ea4c954058336d&upstream=gcc-8", + "type": "library", + "publisher": "Debian GCC Maintainers ", + "name": "libstdc++6", + "version": "8.3.0-6", + "licenses": [ + { + "license": { + "id": "GFDL-1.2-only" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "name": "Artistic" + } + }, + { + "license": { + "name": "GPL" + } + }, + { + "license": { + "name": "LGPL" + } + } + ], + "cpe": "cpe:2.3:a:libstdc\\+\\+6:libstdc\\+\\+6:8.3.0-6:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libstdc%2B%2B6@8.3.0-6?arch=amd64&distro=debian-10&upstream=gcc-8", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/gcc-8-base/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libstdc++6:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "2017" + }, + { + "name": "syft:metadata:source", + "value": "gcc-8" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libsystemd0@241-7~deb10u8?arch=amd64&distro=debian-10&package-id=af5fa602069b9853&upstream=systemd", + "type": "library", + "publisher": "Debian systemd Maintainers ", + "name": "libsystemd0", + "version": "241-7~deb10u8", + "licenses": [ + { + "license": { + "id": "CC0-1.0" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1-or-later" + } + }, + { + "license": { + "name": "Expat" + } + }, + { + "license": { + "name": "public-domain" + } + } + ], + "cpe": "cpe:2.3:a:libsystemd0:libsystemd0:241-7\\~deb10u8:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libsystemd0@241-7~deb10u8?arch=amd64&distro=debian-10&upstream=systemd", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libsystemd0/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libsystemd0:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "768" + }, + { + "name": "syft:metadata:source", + "value": "systemd" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libtasn1-6@4.13-3?arch=amd64&distro=debian-10&package-id=4472b190d0061f51", + "type": "library", + "publisher": "Debian GnuTLS Maintainers ", + "name": "libtasn1-6", + "version": "4.13-3", + "licenses": [ + { + "license": { + "id": "GFDL-1.3-only" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "name": "LGPL" + } + } + ], + "cpe": "cpe:2.3:a:libtasn1-6:libtasn1-6:4.13-3:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libtasn1-6@4.13-3?arch=amd64&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libtasn1-6:libtasn1_6:4.13-3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libtasn1_6:libtasn1-6:4.13-3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libtasn1_6:libtasn1_6:4.13-3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libtasn1:libtasn1-6:4.13-3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libtasn1:libtasn1_6:4.13-3:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libtasn1-6/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libtasn1-6:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "112" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libtinfo6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=4d50fedeec9db609&upstream=ncurses", + "type": "library", + "publisher": "Craig Small ", + "name": "libtinfo6", + "version": "6.1+20181013-2+deb10u2", + "licenses": [ + { + "license": { + "name": "LicenseRef-sha256:5e8ee902c8906ddb7779fd36dc9979cb08b51fbebf7c0b1a9aeb78af382af590" + } + } + ], + "cpe": "cpe:2.3:a:libtinfo6:libtinfo6:6.1\\+20181013-2\\+deb10u2:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libtinfo6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&upstream=ncurses", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libtinfo6/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libtinfo6:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "521" + }, + { + "name": "syft:metadata:source", + "value": "ncurses" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libudev1@241-7~deb10u8?arch=amd64&distro=debian-10&package-id=1650009f99e14534&upstream=systemd", + "type": "library", + "publisher": "Debian systemd Maintainers ", + "name": "libudev1", + "version": "241-7~deb10u8", + "licenses": [ + { + "license": { + "id": "CC0-1.0" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1-or-later" + } + }, + { + "license": { + "name": "Expat" + } + }, + { + "license": { + "name": "public-domain" + } + } + ], + "cpe": "cpe:2.3:a:libudev1:libudev1:241-7\\~deb10u8:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libudev1@241-7~deb10u8?arch=amd64&distro=debian-10&upstream=systemd", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libudev1/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libudev1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "259" + }, + { + "name": "syft:metadata:source", + "value": "systemd" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libunistring2@0.9.10-1?arch=amd64&distro=debian-10&package-id=337ddb48ec21ed97&upstream=libunistring", + "type": "library", + "publisher": "Jörg Frings-Fürst ", + "name": "libunistring2", + "version": "0.9.10-1", + "licenses": [ + { + "license": { + "id": "GFDL-1.2-only" + } + }, + { + "license": { + "id": "GFDL-1.2-or-later" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "id": "LGPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-3.0-or-later" + } + }, + { + "license": { + "id": "MIT" + } + }, + { + "license": { + "name": "FreeSoftware" + } + } + ], + "cpe": "cpe:2.3:a:libunistring2:libunistring2:0.9.10-1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libunistring2@0.9.10-1?arch=amd64&distro=debian-10&upstream=libunistring", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libunistring2/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libunistring2:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "1600" + }, + { + "name": "syft:metadata:source", + "value": "libunistring" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libuuid1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=cc943ca139d0e67b&upstream=util-linux", + "type": "library", + "publisher": "LaMont Jones ", + "name": "libuuid1", + "version": "2.33.1-0.1", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + }, + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "BSD-4-Clause" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1-or-later" + } + }, + { + "license": { + "id": "LGPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-3.0-or-later" + } + }, + { + "license": { + "id": "MIT" + } + }, + { + "license": { + "name": "LGPL" + } + }, + { + "license": { + "name": "public-domain" + } + } + ], + "cpe": "cpe:2.3:a:libuuid1:libuuid1:2.33.1-0.1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libuuid1@2.33.1-0.1?arch=amd64&distro=debian-10&upstream=util-linux", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libuuid1/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libuuid1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "120" + }, + { + "name": "syft:metadata:source", + "value": "util-linux" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libxml2@2.9.4%2Bdfsg1-7%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=2b71d5263434c464", + "type": "library", + "publisher": "Debian XML/SGML Group ", + "name": "libxml2", + "version": "2.9.4+dfsg1-7+deb10u2", + "licenses": [ + { + "license": { + "id": "ISC" + } + }, + { + "license": { + "name": "MIT-1" + } + } + ], + "cpe": "cpe:2.3:a:libxml2:libxml2:2.9.4\\+dfsg1-7\\+deb10u2:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libxml2@2.9.4%2Bdfsg1-7%2Bdeb10u2?arch=amd64&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/usr/share/doc/libxml2/copyright" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/libxml2:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "1858" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/libzstd1@1.3.8%2Bdfsg-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=f15273b1b73a0197&upstream=libzstd", + "type": "library", + "publisher": "Debian Med Packaging Team ", + "name": "libzstd1", + "version": "1.3.8+dfsg-3+deb10u2", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "Zlib" + } + }, + { + "license": { + "name": "Expat" + } + } + ], + "cpe": "cpe:2.3:a:libzstd1:libzstd1:1.3.8\\+dfsg-3\\+deb10u2:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/libzstd1@1.3.8%2Bdfsg-3%2Bdeb10u2?arch=amd64&distro=debian-10&upstream=libzstd", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/libzstd1/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/libzstd1:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "666" + }, + { + "name": "syft:metadata:source", + "value": "libzstd" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/login@1%3A4.5-1.1?arch=amd64&distro=debian-10&package-id=beffe62c711b8d0b&upstream=shadow", + "type": "library", + "publisher": "Shadow package maintainers ", + "name": "login", + "version": "1:4.5-1.1", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + } + ], + "cpe": "cpe:2.3:a:login:login:1\\:4.5-1.1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/login@1%3A4.5-1.1?arch=amd64&distro=debian-10&upstream=shadow", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/login/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/login.conffiles" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/login.md5sums" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/login.list" + }, + { + "name": "syft:location:7:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:7:path", + "value": "/var/lib/dpkg/info/login.postinst" + }, + { + "name": "syft:location:8:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:8:path", + "value": "/var/lib/dpkg/info/login.preinst" + }, + { + "name": "syft:metadata:installedSize", + "value": "2695" + }, + { + "name": "syft:metadata:source", + "value": "shadow" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/lsb-base@10.2019051400?arch=all&distro=debian-10&package-id=c16dd04f5572aaed&upstream=lsb", + "type": "library", + "publisher": "Debian LSB Team ", + "name": "lsb-base", + "version": "10.2019051400", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + } + ], + "cpe": "cpe:2.3:a:lsb-base:lsb-base:10.2019051400:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/lsb-base@10.2019051400?arch=all&distro=debian-10&upstream=lsb", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:lsb-base:lsb_base:10.2019051400:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:lsb_base:lsb-base:10.2019051400:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:lsb_base:lsb_base:10.2019051400:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:lsb:lsb-base:10.2019051400:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:lsb:lsb_base:10.2019051400:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:1:path", + "value": "/usr/share/doc/lsb-base/copyright" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/lsb-base.md5sums" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:3:path", + "value": "/var/lib/dpkg/info/lsb-base.list" + }, + { + "name": "syft:metadata:installedSize", + "value": "49" + }, + { + "name": "syft:metadata:source", + "value": "lsb" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/mawk@1.3.3-17%2Bb3?arch=amd64&distro=debian-10&package-id=a795c3217ac08dfa&upstream=mawk%401.3.3-17", + "type": "library", + "publisher": "Steve Langasek ", + "name": "mawk", + "version": "1.3.3-17+b3", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + } + ], + "cpe": "cpe:2.3:a:mawk:mawk:1.3.3-17\\+b3:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/mawk@1.3.3-17%2Bb3?arch=amd64&distro=debian-10&upstream=mawk%401.3.3-17", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/mawk/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/mawk.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/mawk.list" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/mawk.postinst" + }, + { + "name": "syft:location:7:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:7:path", + "value": "/var/lib/dpkg/info/mawk.prerm" + }, + { + "name": "syft:metadata:installedSize", + "value": "183" + }, + { + "name": "syft:metadata:source", + "value": "mawk" + }, + { + "name": "syft:metadata:sourceVersion", + "value": "1.3.3-17" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/mount@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=0cd3087f123a0ab4&upstream=util-linux", + "type": "library", + "publisher": "LaMont Jones ", + "name": "mount", + "version": "2.33.1-0.1", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + }, + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "BSD-4-Clause" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1-or-later" + } + }, + { + "license": { + "id": "LGPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-3.0-or-later" + } + }, + { + "license": { + "id": "MIT" + } + }, + { + "license": { + "name": "LGPL" + } + }, + { + "license": { + "name": "public-domain" + } + } + ], + "cpe": "cpe:2.3:a:mount:mount:2.33.1-0.1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/mount@2.33.1-0.1?arch=amd64&distro=debian-10&upstream=util-linux", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/mount/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/mount.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/mount.list" + }, + { + "name": "syft:metadata:installedSize", + "value": "418" + }, + { + "name": "syft:metadata:source", + "value": "util-linux" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/ncurses-base@6.1%2B20181013-2%2Bdeb10u2?arch=all&distro=debian-10&package-id=3238e6b392c1b881&upstream=ncurses", + "type": "library", + "publisher": "Craig Small ", + "name": "ncurses-base", + "version": "6.1+20181013-2+deb10u2", + "licenses": [ + { + "license": { + "name": "LicenseRef-sha256:5e8ee902c8906ddb7779fd36dc9979cb08b51fbebf7c0b1a9aeb78af382af590" + } + } + ], + "cpe": "cpe:2.3:a:ncurses-base:ncurses-base:6.1\\+20181013-2\\+deb10u2:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/ncurses-base@6.1%2B20181013-2%2Bdeb10u2?arch=all&distro=debian-10&upstream=ncurses", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:ncurses-base:ncurses_base:6.1\\+20181013-2\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:ncurses_base:ncurses-base:6.1\\+20181013-2\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:ncurses_base:ncurses_base:6.1\\+20181013-2\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:ncurses:ncurses-base:6.1\\+20181013-2\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:ncurses:ncurses_base:6.1\\+20181013-2\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/ncurses-base/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/ncurses-base.conffiles" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/ncurses-base.md5sums" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/ncurses-base.list" + }, + { + "name": "syft:metadata:installedSize", + "value": "368" + }, + { + "name": "syft:metadata:source", + "value": "ncurses" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/ncurses-bin@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=68e8ed2220f015ff&upstream=ncurses", + "type": "library", + "publisher": "Craig Small ", + "name": "ncurses-bin", + "version": "6.1+20181013-2+deb10u2", + "licenses": [ + { + "license": { + "name": "LicenseRef-sha256:5e8ee902c8906ddb7779fd36dc9979cb08b51fbebf7c0b1a9aeb78af382af590" + } + } + ], + "cpe": "cpe:2.3:a:ncurses-bin:ncurses-bin:6.1\\+20181013-2\\+deb10u2:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/ncurses-bin@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&upstream=ncurses", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:ncurses-bin:ncurses_bin:6.1\\+20181013-2\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:ncurses_bin:ncurses-bin:6.1\\+20181013-2\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:ncurses_bin:ncurses_bin:6.1\\+20181013-2\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:ncurses:ncurses-bin:6.1\\+20181013-2\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:ncurses:ncurses_bin:6.1\\+20181013-2\\+deb10u2:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/ncurses-bin/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/ncurses-bin.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/ncurses-bin.list" + }, + { + "name": "syft:metadata:installedSize", + "value": "616" + }, + { + "name": "syft:metadata:source", + "value": "ncurses" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/passwd@1%3A4.5-1.1?arch=amd64&distro=debian-10&package-id=8b4ea518599f59aa&upstream=shadow", + "type": "library", + "publisher": "Shadow package maintainers ", + "name": "passwd", + "version": "1:4.5-1.1", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + } + ], + "cpe": "cpe:2.3:a:passwd:passwd:1\\:4.5-1.1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/passwd@1%3A4.5-1.1?arch=amd64&distro=debian-10&upstream=shadow", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/passwd/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/passwd.conffiles" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/passwd.md5sums" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/passwd.list" + }, + { + "name": "syft:location:7:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:7:path", + "value": "/var/lib/dpkg/info/passwd.postinst" + }, + { + "name": "syft:location:8:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:8:path", + "value": "/var/lib/dpkg/info/passwd.preinst" + }, + { + "name": "syft:metadata:installedSize", + "value": "2591" + }, + { + "name": "syft:metadata:source", + "value": "shadow" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/perl-base@5.28.1-6%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=12ef1f27f6a6900d&upstream=perl", + "type": "library", + "publisher": "Niko Tyni ", + "name": "perl-base", + "version": "5.28.1-6+deb10u1", + "licenses": [ + { + "license": { + "id": "Artistic-2.0" + } + }, + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "GPL-1.0-only" + } + }, + { + "license": { + "id": "GPL-1.0-or-later" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "Zlib" + } + }, + { + "license": { + "name": "Artistic" + } + }, + { + "license": { + "name": "Artistic-dist" + } + }, + { + "license": { + "name": "BSD-3-clause-GENERIC" + } + }, + { + "license": { + "name": "BSD-3-clause-with-weird-numbering" + } + }, + { + "license": { + "name": "BSD-4-clause-POWERDOG" + } + }, + { + "license": { + "name": "BZIP" + } + }, + { + "license": { + "name": "DONT-CHANGE-THE-GPL" + } + }, + { + "license": { + "name": "Expat" + } + }, + { + "license": { + "name": "GPL-3+-WITH-BISON-EXCEPTION" + } + }, + { + "license": { + "name": "HSIEH-BSD" + } + }, + { + "license": { + "name": "HSIEH-DERIVATIVE" + } + }, + { + "license": { + "name": "REGCOMP" + } + }, + { + "license": { + "name": "REGCOMP," + } + }, + { + "license": { + "name": "RRA-KEEP-THIS-NOTICE" + } + }, + { + "license": { + "name": "S2P" + } + }, + { + "license": { + "name": "SDBM-PUBLIC-DOMAIN" + } + }, + { + "license": { + "name": "TEXT-TABS" + } + }, + { + "license": { + "name": "Unicode" + } + } + ], + "cpe": "cpe:2.3:a:perl-base:perl-base:5.28.1-6\\+deb10u1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/perl-base@5.28.1-6%2Bdeb10u1?arch=amd64&distro=debian-10&upstream=perl", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:perl-base:perl_base:5.28.1-6\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:perl_base:perl-base:5.28.1-6\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:perl_base:perl_base:5.28.1-6\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:perl:perl-base:5.28.1-6\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:perl:perl_base:5.28.1-6\\+deb10u1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/perl/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/perl-base.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/perl-base.list" + }, + { + "name": "syft:metadata:installedSize", + "value": "10148" + }, + { + "name": "syft:metadata:source", + "value": "perl" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/sed@4.7-1?arch=amd64&distro=debian-10&package-id=8afeab9e14add71f", + "type": "library", + "publisher": "Clint Adams ", + "name": "sed", + "version": "4.7-1", + "licenses": [ + { + "license": { + "id": "GPL-3.0-only" + } + } + ], + "cpe": "cpe:2.3:a:sed:sed:4.7-1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/sed@4.7-1?arch=amd64&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/sed/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/sed.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/sed.list" + }, + { + "name": "syft:metadata:installedSize", + "value": "883" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/sysvinit-utils@2.93-8?arch=amd64&distro=debian-10&package-id=84b2ad21b188f1d2&upstream=sysvinit", + "type": "library", + "publisher": "Debian sysvinit maintainers ", + "name": "sysvinit-utils", + "version": "2.93-8", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + } + ], + "cpe": "cpe:2.3:a:sysvinit-utils:sysvinit-utils:2.93-8:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/sysvinit-utils@2.93-8?arch=amd64&distro=debian-10&upstream=sysvinit", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:sysvinit-utils:sysvinit_utils:2.93-8:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:sysvinit_utils:sysvinit-utils:2.93-8:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:sysvinit_utils:sysvinit_utils:2.93-8:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:sysvinit:sysvinit-utils:2.93-8:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:sysvinit:sysvinit_utils:2.93-8:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/sysvinit-utils/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/sysvinit-utils.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/sysvinit-utils.list" + }, + { + "name": "syft:metadata:installedSize", + "value": "131" + }, + { + "name": "syft:metadata:source", + "value": "sysvinit" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/tar@1.30%2Bdfsg-6?arch=amd64&distro=debian-10&package-id=62da3202d5716782", + "type": "library", + "publisher": "Bdale Garbee ", + "name": "tar", + "version": "1.30+dfsg-6", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + } + ], + "cpe": "cpe:2.3:a:tar:tar:1.30\\+dfsg-6:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/tar@1.30%2Bdfsg-6?arch=amd64&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/tar/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/tar.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/tar.list" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/tar.postinst" + }, + { + "name": "syft:location:7:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:7:path", + "value": "/var/lib/dpkg/info/tar.prerm" + }, + { + "name": "syft:metadata:installedSize", + "value": "2884" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/tzdata@2021a-0%2Bdeb10u1?arch=all&distro=debian-10&package-id=11e09e914c1cd4a6", + "type": "library", + "publisher": "GNU Libc Maintainers ", + "name": "tzdata", + "version": "2021a-0+deb10u1", + "licenses": [ + { + "license": { + "name": "LicenseRef-sha256:75b41b8de75b1596a239f6fa8e4caa409de4cf985cee2943d2a94b4e96a5197d" + } + } + ], + "cpe": "cpe:2.3:a:tzdata:tzdata:2021a-0\\+deb10u1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/tzdata@2021a-0%2Bdeb10u1?arch=all&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/tzdata/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/tzdata.md5sums" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/tzdata.config" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/tzdata.list" + }, + { + "name": "syft:location:7:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:7:path", + "value": "/var/lib/dpkg/info/tzdata.postinst" + }, + { + "name": "syft:location:8:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:8:path", + "value": "/var/lib/dpkg/info/tzdata.postrm" + }, + { + "name": "syft:location:9:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:9:path", + "value": "/var/lib/dpkg/info/tzdata.templates" + }, + { + "name": "syft:metadata:installedSize", + "value": "3040" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/util-linux@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=3d071e40c62fe471", + "type": "library", + "publisher": "LaMont Jones ", + "name": "util-linux", + "version": "2.33.1-0.1", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + }, + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "BSD-4-Clause" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1-or-later" + } + }, + { + "license": { + "id": "LGPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-3.0-or-later" + } + }, + { + "license": { + "id": "MIT" + } + }, + { + "license": { + "name": "LGPL" + } + }, + { + "license": { + "name": "public-domain" + } + } + ], + "cpe": "cpe:2.3:a:util-linux:util-linux:2.33.1-0.1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/util-linux@2.33.1-0.1?arch=amd64&distro=debian-10", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:util-linux:util_linux:2.33.1-0.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:util_linux:util-linux:2.33.1-0.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:util_linux:util_linux:2.33.1-0.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:util:util-linux:2.33.1-0.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:util:util_linux:2.33.1-0.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/util-linux/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/util-linux.conffiles" + }, + { + "name": "syft:location:5:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:5:path", + "value": "/var/lib/dpkg/info/util-linux.md5sums" + }, + { + "name": "syft:location:6:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:6:path", + "value": "/var/lib/dpkg/info/util-linux.list" + }, + { + "name": "syft:location:7:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:7:path", + "value": "/var/lib/dpkg/info/util-linux.postinst" + }, + { + "name": "syft:location:8:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:8:path", + "value": "/var/lib/dpkg/info/util-linux.postrm" + }, + { + "name": "syft:location:9:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:9:path", + "value": "/var/lib/dpkg/info/util-linux.prerm" + }, + { + "name": "syft:metadata:installedSize", + "value": "4327" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/zlib1g@1%3A1.2.11.dfsg-1?arch=amd64&distro=debian-10&package-id=bcc78aeb924eb6b8&upstream=zlib", + "type": "library", + "publisher": "Mark Brown ", + "name": "zlib1g", + "version": "1:1.2.11.dfsg-1", + "licenses": [ + { + "license": { + "id": "Zlib" + } + } + ], + "cpe": "cpe:2.3:a:zlib1g:zlib1g:1\\:1.2.11.dfsg-1:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/zlib1g@1%3A1.2.11.dfsg-1?arch=amd64&distro=debian-10&upstream=zlib", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkg-db-cataloger" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:package:metadataType", + "value": "dpkg-db-entry" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:5a4dfe5de0fd98040778ff8feaeef07fc875a3de432e734610a1d030b11a1d89" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:07691779c08b36d14ab68fce793f11267431e59a7f690c26757716fda2d45fbd" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:3:path", + "value": "/usr/share/doc/zlib1g/copyright" + }, + { + "name": "syft:location:4:layerID", + "value": "sha256:476baebdfbf7a68c50e979971fcd47d799d1b194bcf1f03c1c979e9262bcd364" + }, + { + "name": "syft:location:4:path", + "value": "/var/lib/dpkg/info/zlib1g:amd64.md5sums" + }, + { + "name": "syft:metadata:installedSize", + "value": "174" + }, + { + "name": "syft:metadata:source", + "value": "zlib" + } + ] + }, + { + "bom-ref": "os:debian@10", + "type": "operating-system", + "name": "debian", + "version": "10", + "description": "Debian GNU/Linux 10 (buster)", + "swid": { + "tagId": "debian", + "name": "debian", + "version": "10" + }, + "externalReferences": [ + { + "url": "https://bugs.debian.org/", + "type": "issue-tracker" + }, + { + "url": "https://www.debian.org/", + "type": "website" + }, + { + "url": "https://www.debian.org/support", + "comment": "support", + "type": "other" + } + ], + "properties": [ + { + "name": "syft:distro:id", + "value": "debian" + }, + { + "name": "syft:distro:prettyName", + "value": "Debian GNU/Linux 10 (buster)" + }, + { + "name": "syft:distro:versionCodename", + "value": "buster" + }, + { + "name": "syft:distro:versionID", + "value": "10" + } + ] + }, + { + "bom-ref": "7647ff73f948e895", + "type": "file", + "name": "/bin/bash", + "hashes": [ + { + "alg": "SHA-1", + "content": "0533efae0065e72c1d833b9f7a678a20995bd5a6" + }, + { + "alg": "SHA-256", + "content": "059fce560704769f9ee72e095e85c77cbcd528dc21cc51d9255cfe46856b5f02" + } + ] + }, + { + "bom-ref": "d0ce5f36825566d3", + "type": "file", + "name": "/bin/cat", + "hashes": [ + { + "alg": "SHA-1", + "content": "b0c322d6803b507c89f3db104a519163e00c57eb" + }, + { + "alg": "SHA-256", + "content": "6491ea0df4ab05962dea6c303aaec1b8478caa38c3fe9345b82c55c576299141" + } + ] + }, + { + "bom-ref": "3dbe11c116109283", + "type": "file", + "name": "/bin/chgrp", + "hashes": [ + { + "alg": "SHA-1", + "content": "5136c2b91d328c29fd2ca945c0402c14b1842520" + }, + { + "alg": "SHA-256", + "content": "4d0a7056b0b20a1d99782de7db552b257ecce50b98aed6cae0d3e1f4674738e7" + } + ] + }, + { + "bom-ref": "49c3afbaecd3c2eb", + "type": "file", + "name": "/bin/chmod", + "hashes": [ + { + "alg": "SHA-1", + "content": "3611e33c16523781b7bb4cb08dd707a0daf3e6c4" + }, + { + "alg": "SHA-256", + "content": "0a6b004cc244f34b40dbfce5f5d44250a6c7788620f4c07ba869e799a23798f1" + } + ] + }, + { + "bom-ref": "8f109257280daca0", + "type": "file", + "name": "/bin/chown", + "hashes": [ + { + "alg": "SHA-1", + "content": "6113f3136c9d8cadde08b97ad99bdc1f83bea367" + }, + { + "alg": "SHA-256", + "content": "0caed90a56afdb575f9cb4279ead1ab917a6c318cfe820f162d4ebfbd7e7f95e" + } + ] + }, + { + "bom-ref": "c2dd210c24757b75", + "type": "file", + "name": "/bin/cp", + "hashes": [ + { + "alg": "SHA-1", + "content": "220687a082fb9d0dbb48e9a2b1093cbb4e9de55a" + }, + { + "alg": "SHA-256", + "content": "23f8a715ee1adb514f00825bc95faf77dc9007aeb12ce971b77cdf860ddd643a" + } + ] + }, + { + "bom-ref": "36dbfdc1a2956571", + "type": "file", + "name": "/bin/dash", + "hashes": [ + { + "alg": "SHA-1", + "content": "45ee5e210fc27623672fa59e1226122005bcd8e6" + }, + { + "alg": "SHA-256", + "content": "350b2973dd4a2d828fd7417e85b4cd7590ef353c8f7d77a4b55a9c6a11c6b571" + } + ] + }, + { + "bom-ref": "f53b7a69201f0626", + "type": "file", + "name": "/bin/date", + "hashes": [ + { + "alg": "SHA-1", + "content": "8562afe7ba4410f732c4442264bddbe237cb8042" + }, + { + "alg": "SHA-256", + "content": "65a20a37076e3376d32f1e1433ec17d12a3b1813333fb08d490306249e0d79c0" + } + ] + }, + { + "bom-ref": "fdfe50249a6fc36c", + "type": "file", + "name": "/bin/dd", + "hashes": [ + { + "alg": "SHA-1", + "content": "03b9db96085a7e127fb02dfeb7497d2d99e27110" + }, + { + "alg": "SHA-256", + "content": "7ec2f70b469593f61685271ebdf8f5ba18ce8e2c7bcb3ff7bd5b9d1f6257d2e4" + } + ] + }, + { + "bom-ref": "1e193ff3d500be9e", + "type": "file", + "name": "/bin/df", + "hashes": [ + { + "alg": "SHA-1", + "content": "894dc51c493e2cb8e96941f620a2acc9d38b66bb" + }, + { + "alg": "SHA-256", + "content": "54d02eaa1ac0ce90467c9d0dc316e29b02155302b3e8f9a62623359c580f9db2" + } + ] + }, + { + "bom-ref": "d7895ec9f3e9f29d", + "type": "file", + "name": "/bin/dir", + "hashes": [ + { + "alg": "SHA-1", + "content": "f7b7f02f8357a25f375aa3b6f777c735ccef3156" + }, + { + "alg": "SHA-256", + "content": "94526b69bae98cf6b56257408162dab1895af0c32ba915c50d05c90501b9a9c5" + } + ] + }, + { + "bom-ref": "d1cd68719098c8f8", + "type": "file", + "name": "/bin/dmesg", + "hashes": [ + { + "alg": "SHA-1", + "content": "c48d21c491a7e347fa41b93077a8060ac563ad42" + }, + { + "alg": "SHA-256", + "content": "12ada41ae0d91148f444d99dc757c981b15fb39d1d9f56b32c277bcdd805aa51" + } + ] + }, + { + "bom-ref": "1e1b3ba900109281", + "type": "file", + "name": "/bin/echo", + "hashes": [ + { + "alg": "SHA-1", + "content": "c78a474a04034c4c0b40e36eab77bdcb8fda8c28" + }, + { + "alg": "SHA-256", + "content": "2b9254e56c59be0cd8d951c099c101649fb8be19f3d8bb52ac6eae5e8ffba148" + } + ] + }, + { + "bom-ref": "d5dccb4768cb09a8", + "type": "file", + "name": "/bin/egrep", + "hashes": [ + { + "alg": "SHA-1", + "content": "92ab8b62375eae26758b91d285ec24a39af1abe8" + }, + { + "alg": "SHA-256", + "content": "f7c621ae0ceb26a76802743830bc469288996f64342901ae5292950ff713e981" + } + ] + }, + { + "bom-ref": "e6b3d66363a5ab8e", + "type": "file", + "name": "/bin/false", + "hashes": [ + { + "alg": "SHA-1", + "content": "086163b141e82098041c74ad3b7c8de811942322" + }, + { + "alg": "SHA-256", + "content": "d7c674b150fc5329a3bf0f9d12002d941f89ddcab5e20fd588d5e27d7bee46f3" + } + ] + }, + { + "bom-ref": "49cf481e73e71244", + "type": "file", + "name": "/bin/fgrep", + "hashes": [ + { + "alg": "SHA-1", + "content": "ad12bd4526ae3f3172987179d850ad1077be0100" + }, + { + "alg": "SHA-256", + "content": "5c8b1486de899cdd010d3cacde94579999cb82d0be9ec8c131b1b56886cfd36b" + } + ] + }, + { + "bom-ref": "296cab0b2dfe4ca9", + "type": "file", + "name": "/bin/findmnt", + "hashes": [ + { + "alg": "SHA-1", + "content": "3dd09b5e8bb8b50cbae2e932c1d42931dd900100" + }, + { + "alg": "SHA-256", + "content": "d29f52b3f6ad577f0a8c3d37ecdc2dbe9b4d04528193ab2f3e86c3a8d6ca57e6" + } + ] + }, + { + "bom-ref": "c4d67f818721a7cf", + "type": "file", + "name": "/bin/grep", + "hashes": [ + { + "alg": "SHA-1", + "content": "7e65599ae85bd86fdbf5aee6340cc71a06718374" + }, + { + "alg": "SHA-256", + "content": "9c10f95df9759ee36b6c0350be168ca67c41bf2594298147bbb9280c02c3f136" + } + ] + }, + { + "bom-ref": "4b9e0652b3011993", + "type": "file", + "name": "/bin/gunzip", + "hashes": [ + { + "alg": "SHA-1", + "content": "4c33d9bcc9d5398d11d8f367c6b856af78a6f495" + }, + { + "alg": "SHA-256", + "content": "0011d06d8822b2097140be7ef6bbfaf0e01b9519a179644c6593a56f2bf5f903" + } + ] + }, + { + "bom-ref": "a51f2de872d65146", + "type": "file", + "name": "/bin/gzexe", + "hashes": [ + { + "alg": "SHA-1", + "content": "cfc6280aef5513aab59e38f9d2a68617b5a3a94a" + }, + { + "alg": "SHA-256", + "content": "f73ab4e05077cddef5de23005312869ea9513d810b02542ece2ff37655711475" + } + ] + }, + { + "bom-ref": "b65e3a8ef221edaf", + "type": "file", + "name": "/bin/gzip", + "hashes": [ + { + "alg": "SHA-1", + "content": "8d597ca749267377dbaf0c05781b48bb82c8053c" + }, + { + "alg": "SHA-256", + "content": "66d2c25b19ed845fb70c8436f9b9739dd8515dde36bd31f382ec1821819ff474" + } + ] + }, + { + "bom-ref": "523243cd508ceb9f", + "type": "file", + "name": "/bin/hostname", + "hashes": [ + { + "alg": "SHA-1", + "content": "adc74340d45adcd463986d24c71a36df19429f5c" + }, + { + "alg": "SHA-256", + "content": "6a3347df1c90c0895464920727a6ee40404de6ad72cf6da3e666e1626df66111" + } + ] + }, + { + "bom-ref": "7554143a67c8905b", + "type": "file", + "name": "/bin/ln", + "hashes": [ + { + "alg": "SHA-1", + "content": "84f3cc59798d4dcb6e97791afd5866060d19fbec" + }, + { + "alg": "SHA-256", + "content": "c4ab3b319776615385b9e262b77afaf3ebce682e95a7650364838a33ad5e6c5f" + } + ] + }, + { + "bom-ref": "93b68eb75fdbe449", + "type": "file", + "name": "/bin/login", + "hashes": [ + { + "alg": "SHA-1", + "content": "b98e8a0ab6a2dacc310ba5bd2861533b47a7e4ae" + }, + { + "alg": "SHA-256", + "content": "6565fa2c97c36311390228ac15001595003ea271e1e23ede2cb0f48f6f4dfe9a" + } + ] + }, + { + "bom-ref": "a462f79f2125efec", + "type": "file", + "name": "/bin/ls", + "hashes": [ + { + "alg": "SHA-1", + "content": "646503c01c841c04e3c0cbc8f6edcc737da466ef" + }, + { + "alg": "SHA-256", + "content": "075e188324c2f4e54359128371a01e4d5e3b7be08382e4433bd53523f8bf6217" + } + ] + }, + { + "bom-ref": "426fec9a5d9f4301", + "type": "file", + "name": "/bin/lsblk", + "hashes": [ + { + "alg": "SHA-1", + "content": "fbbe7d4ce0d295961a006d5b72664218c011c73d" + }, + { + "alg": "SHA-256", + "content": "fcebd7e0c7fc95a516367a131b2a697658c9344a6d7b30d2e1e0308514a06aaa" + } + ] + }, + { + "bom-ref": "54f84cf6bdabd8f6", + "type": "file", + "name": "/bin/mkdir", + "hashes": [ + { + "alg": "SHA-1", + "content": "6f48332524f30ee55932e85fe50377cd4dbf0b23" + }, + { + "alg": "SHA-256", + "content": "49bcc51087a41459b4b2304d05ee50f9c8e217fc23548cd80f13d1d89a6269bf" + } + ] + }, + { + "bom-ref": "75bc071db280ad79", + "type": "file", + "name": "/bin/mknod", + "hashes": [ + { + "alg": "SHA-1", + "content": "0302063704c110bff08e57cc9be4d7418d0bbaca" + }, + { + "alg": "SHA-256", + "content": "6b79d643ae52acd699f32b9610f3700cb97ca90a74351721b544b6dcdc471e5b" + } + ] + }, + { + "bom-ref": "9e608aab1d273724", + "type": "file", + "name": "/bin/mktemp", + "hashes": [ + { + "alg": "SHA-1", + "content": "044214746557077b86c2298fdd519c1866ba460d" + }, + { + "alg": "SHA-256", + "content": "a7588bf8ca0bd9fd862d2da4bf007f2fcafee74bd96292197ea2f448cfc30240" + } + ] + }, + { + "bom-ref": "fcc7856b8a8a7cee", + "type": "file", + "name": "/bin/more", + "hashes": [ + { + "alg": "SHA-1", + "content": "ac2d6ef90a1fe50278d0036d5470f2d9048dfcc6" + }, + { + "alg": "SHA-256", + "content": "e80da1c859d36c8c67b86b339cd54a2961998b1d334c4ec0c2cf9761fc655aec" + } + ] + }, + { + "bom-ref": "245127eaf7414f46", + "type": "file", + "name": "/bin/mount", + "hashes": [ + { + "alg": "SHA-1", + "content": "19199cc4510332cf45179891503019e770117df5" + }, + { + "alg": "SHA-256", + "content": "281d80fc9d9c698ec3a3a4afaf25553929c4897fe23852f93b2548d0e36641a0" + } + ] + }, + { + "bom-ref": "1140aadade4f901a", + "type": "file", + "name": "/bin/mountpoint", + "hashes": [ + { + "alg": "SHA-1", + "content": "459ea8591ed0759bd735e23df49c88a9e4c929da" + }, + { + "alg": "SHA-256", + "content": "0c35bd7c0d1a5f28b23aeddc73d9b8d94581df47c5c6d22e3aab5b968b9e0e22" + } + ] + }, + { + "bom-ref": "540ec82f639837bc", + "type": "file", + "name": "/bin/mv", + "hashes": [ + { + "alg": "SHA-1", + "content": "46e71d67df7eb1c41f8f8c9039f401e242cce94a" + }, + { + "alg": "SHA-256", + "content": "8d9f23ef147c042ed7004620b0dfea220b8aa836c269fc51164fc9365417926d" + } + ] + }, + { + "bom-ref": "92d7145e7dbe32d9", + "type": "file", + "name": "/bin/pwd", + "hashes": [ + { + "alg": "SHA-1", + "content": "4e30495211c5d02cd9036e64b63efc096c0e7c76" + }, + { + "alg": "SHA-256", + "content": "616a8be11ec092debc222d5f8534347f37faf41ce888e7d43bd5658792f4a28a" + } + ] + }, + { + "bom-ref": "16b9d6ce4ce9a508", + "type": "file", + "name": "/bin/readlink", + "hashes": [ + { + "alg": "SHA-1", + "content": "795312b32a5faa75a8a1dc5cae1a2c239e8872c4" + }, + { + "alg": "SHA-256", + "content": "bc5e688f8a016b30ea52eb96c208ee561f595a00c2d6a7b325fade5841aa07de" + } + ] + }, + { + "bom-ref": "c361eaa3070aafac", + "type": "file", + "name": "/bin/rm", + "hashes": [ + { + "alg": "SHA-1", + "content": "d63ca4a768997ba50b916e01c669fb26096a1c55" + }, + { + "alg": "SHA-256", + "content": "144007f9f0217be9bb5e90da781d5155c306ef8b991cfdf4551b89fcbf21434a" + } + ] + }, + { + "bom-ref": "c7751d988c26421d", + "type": "file", + "name": "/bin/rmdir", + "hashes": [ + { + "alg": "SHA-1", + "content": "514da9743a0948ddae9a0aeeb58d4cc303c3a0d3" + }, + { + "alg": "SHA-256", + "content": "57d1e80a8f8c026f085e76958bbc382afb5e3a13845f0801acdeb93afb55e210" + } + ] + }, + { + "bom-ref": "73474bd888a2811a", + "type": "file", + "name": "/bin/run-parts", + "hashes": [ + { + "alg": "SHA-1", + "content": "46b6e74e28e5daf69c1dd0f18a8e911ae2922dda" + }, + { + "alg": "SHA-256", + "content": "3346b4d47c637a8c02cb6865eee42d2a5aa9c4e46c6371a9143621348d27420f" + } + ] + }, + { + "bom-ref": "f136a660e7de8eff", + "type": "file", + "name": "/bin/sed", + "hashes": [ + { + "alg": "SHA-1", + "content": "3e42d7a1221448f7aac232e3733541ec4b9f46a5" + }, + { + "alg": "SHA-256", + "content": "6baa01dd34e2b67590865b24b92cc9b6c43a2566e4803ea5630e41b00a846827" + } + ] + }, + { + "bom-ref": "ecb2331aa30b32b9", + "type": "file", + "name": "/bin/sleep", + "hashes": [ + { + "alg": "SHA-1", + "content": "e8973744ded432415d3411fe621fec3e78a9b4a9" + }, + { + "alg": "SHA-256", + "content": "3e27ced4ece1aab2cf2af72ad66587cfeb3f9ea70dd07472714ffb805a0009f4" + } + ] + }, + { + "bom-ref": "4f9b5c513657a9e3", + "type": "file", + "name": "/bin/stty", + "hashes": [ + { + "alg": "SHA-1", + "content": "8b0d3f3fd8a82a7ef2c40bf8756dfb4a72f0256f" + }, + { + "alg": "SHA-256", + "content": "3a5758a98305d2fe5f8261b8c7eb9cac5df88606ef8e7edeae6fbaba2434c9d5" + } + ] + }, + { + "bom-ref": "e69229679a5b791e", + "type": "file", + "name": "/bin/su", + "hashes": [ + { + "alg": "SHA-1", + "content": "9fa3fe6cfffbb20e7f589c6520e5acb510c12e34" + }, + { + "alg": "SHA-256", + "content": "7d28fb83ff782a8cf221ca813e71b830783fe1af56d264a9547a63aa615b9590" + } + ] + }, + { + "bom-ref": "a40efcabf5ad9594", + "type": "file", + "name": "/bin/sync", + "hashes": [ + { + "alg": "SHA-1", + "content": "647a5e79af4d6b04f5e39acc3cf04e7bfae61138" + }, + { + "alg": "SHA-256", + "content": "fcc3583f0babeaa31560b304213e9d1cac8fd640cfb7025c0116d12d77ee5d9c" + } + ] + }, + { + "bom-ref": "8ccae5b8f0f5a2e8", + "type": "file", + "name": "/bin/tar", + "hashes": [ + { + "alg": "SHA-1", + "content": "1be5d274d29959ab6272793b7aaf38887e536094" + }, + { + "alg": "SHA-256", + "content": "50d65b58a1ee305b2f5eda7bae420ccb0879887a5b40ea3a9dc84740b4a19e7f" + } + ] + }, + { + "bom-ref": "725b3cd6f4a53ded", + "type": "file", + "name": "/bin/tempfile", + "hashes": [ + { + "alg": "SHA-1", + "content": "8f113e684766c129c7a210a7333f44b427007ae3" + }, + { + "alg": "SHA-256", + "content": "1bbf66cb001425a9db884e9614f0e8df674be2e6fe2ff2794d1f910ef2d9f062" + } + ] + }, + { + "bom-ref": "a1bac483816088c8", + "type": "file", + "name": "/bin/touch", + "hashes": [ + { + "alg": "SHA-1", + "content": "f43c8fa8238ce7e0822caa99e376c9eced6b3d2f" + }, + { + "alg": "SHA-256", + "content": "362815dc70f3675a862223c3613ab636ba3ea9903e7e91916e843077711053d6" + } + ] + }, + { + "bom-ref": "ea9fb6cdf77fc2e1", + "type": "file", + "name": "/bin/true", + "hashes": [ + { + "alg": "SHA-1", + "content": "c01bd7cc37d662393cf74235c1311e6e929b31fb" + }, + { + "alg": "SHA-256", + "content": "a7393b08d786ceb7f85de701b48a8ddc0991ff0fcfed00c20fccb9f8bb208907" + } + ] + }, + { + "bom-ref": "025338bae8f9fa3b", + "type": "file", + "name": "/bin/umount", + "hashes": [ + { + "alg": "SHA-1", + "content": "40a06a911d6618e12bc056604a3f3ca8d81cb6d7" + }, + { + "alg": "SHA-256", + "content": "82b09c39bc387424b0d126089e8fc0c78bff29e6c54277c0e55ef0ad2f925bc5" + } + ] + }, + { + "bom-ref": "bd30486f46d7f65e", + "type": "file", + "name": "/bin/uname", + "hashes": [ + { + "alg": "SHA-1", + "content": "7d432a1652d163fb451db3548a441d45ba6be261" + }, + { + "alg": "SHA-256", + "content": "7a6d0bac06112166ed527062baaf3f34b383c15926245edfb74118f9d5d40b30" + } + ] + }, + { + "bom-ref": "c85e442bfb2f8186", + "type": "file", + "name": "/bin/vdir", + "hashes": [ + { + "alg": "SHA-1", + "content": "205bc16375eed4ac29ce89bf3b1729d7d441cd95" + }, + { + "alg": "SHA-256", + "content": "7cd8645eee561bfd0b6c28f2ed70c8970fb6a3cccca524921f2a9e584a36a40b" + } + ] + }, + { + "bom-ref": "e06522066c1062b8", + "type": "file", + "name": "/bin/wdctl", + "hashes": [ + { + "alg": "SHA-1", + "content": "4b8747fed3c44cb487ce7e8055a5d8324164d6fe" + }, + { + "alg": "SHA-256", + "content": "ba5d74ffc0a663f39ca8499c96783fca1b960c83096730162baa3c52569f251d" + } + ] + }, + { + "bom-ref": "bdcf8e5e5fa1f8c8", + "type": "file", + "name": "/bin/which", + "hashes": [ + { + "alg": "SHA-1", + "content": "cd2cdf42c04fba4123f4b8f12bca9bbd76552c95" + }, + { + "alg": "SHA-256", + "content": "7bdde142dc5cb004ab82f55adba0c56fc78430a6f6b23afd33be491d4c7c238b" + } + ] + }, + { + "bom-ref": "23db2ae61655eefd", + "type": "file", + "name": "/bin/zcat", + "hashes": [ + { + "alg": "SHA-1", + "content": "2ad72c8366dcb3e87f16cc38effb86d16c4515bd" + }, + { + "alg": "SHA-256", + "content": "4cdce728b8d9c53e855853a2414b7d93251f632cc7bc34bcf0bf688f2da74ecf" + } + ] + }, + { + "bom-ref": "687a4b7705f727ab", + "type": "file", + "name": "/bin/zcmp", + "hashes": [ + { + "alg": "SHA-1", + "content": "9284b1bfb9b56685ebad1593e80585e0d3f2d099" + }, + { + "alg": "SHA-256", + "content": "dbfb20b6ae482c2f7f8365e3fe71f42266ef2c56e77f0787ad2f094083550a36" + } + ] + }, + { + "bom-ref": "e4dc3a373cc0f3ea", + "type": "file", + "name": "/bin/zdiff", + "hashes": [ + { + "alg": "SHA-1", + "content": "4da39585aa159314a7be0408c30f875bf1849ddf" + }, + { + "alg": "SHA-256", + "content": "1bf1cef165c5265317d9bba07a58a28899fffe331ffa52a87d483e482d539296" + } + ] + }, + { + "bom-ref": "e7286caa943a56c5", + "type": "file", + "name": "/bin/zegrep", + "hashes": [ + { + "alg": "SHA-1", + "content": "0b4eebddbd95c099c22e75245f001e10c4fd934d" + }, + { + "alg": "SHA-256", + "content": "67ee7fadec7ea53b4c1f8cfc3c81427b29c0b1381e80b55642617620c84d0bcc" + } + ] + }, + { + "bom-ref": "3eb46d365d4cee45", + "type": "file", + "name": "/bin/zfgrep", + "hashes": [ + { + "alg": "SHA-1", + "content": "c6cbe086a0c5d526960a93759673fa452251e77e" + }, + { + "alg": "SHA-256", + "content": "87ab5f4c7cb344e409d614d1a69cc156b3b1053d6ae0b59d8e2c2131f3e63e5a" + } + ] + }, + { + "bom-ref": "dfcc24da4c7f1c48", + "type": "file", + "name": "/bin/zforce", + "hashes": [ + { + "alg": "SHA-1", + "content": "0c4efcd870c70eab1bd8ace455c1a377ae96fba7" + }, + { + "alg": "SHA-256", + "content": "136b8f154b0c63d346af66498254e3aec25731d0897f80081d9e8819ff79da31" + } + ] + }, + { + "bom-ref": "9282c43e356b92a4", + "type": "file", + "name": "/bin/zgrep", + "hashes": [ + { + "alg": "SHA-1", + "content": "bba7cbb08c128aada9620f878c53a6481580819b" + }, + { + "alg": "SHA-256", + "content": "a8cebc1fb2afe5639f56371b16d926202cc389907f46f852aac95ba7e819c14d" + } + ] + }, + { + "bom-ref": "78bd5262fbd36486", + "type": "file", + "name": "/bin/zless", + "hashes": [ + { + "alg": "SHA-1", + "content": "130e10b6339cf0b480d14b5b3e423cbc5578c5e7" + }, + { + "alg": "SHA-256", + "content": "d877394651502655a165962d79514bd67e3193f935aeacfea0baa22864739c75" + } + ] + }, + { + "bom-ref": "d37a221764c32e1b", + "type": "file", + "name": "/bin/zmore", + "hashes": [ + { + "alg": "SHA-1", + "content": "cf34c2aa8491fc84e94021e063145871c964e142" + }, + { + "alg": "SHA-256", + "content": "c1700b78ebb87a4806ca6e249abc66ffb18d89913349781b771cf39b9cf09aab" + } + ] + }, + { + "bom-ref": "b591190a760df00b", + "type": "file", + "name": "/bin/znew", + "hashes": [ + { + "alg": "SHA-1", + "content": "22bb54a658ddcb37d647811631fac9e6a515aa19" + }, + { + "alg": "SHA-256", + "content": "60cbb9f5388ebadd7dae2c9d9d061ef999818b18e324bdca9315ecea2771e1ac" + } + ] + }, + { + "bom-ref": "b7995c8758b43332", + "type": "file", + "name": "/etc/alternatives/README", + "hashes": [ + { + "alg": "SHA-1", + "content": "de50c1abd6fca390d6ba22505f9aded89c150fc8" + }, + { + "alg": "SHA-256", + "content": "a44afdb50eacfc09e45f6dac1e18ae231c179feec633c106e1060bae8ae11df1" + } + ] + }, + { + "bom-ref": "320c630a51a4feb7", + "type": "file", + "name": "/etc/apt/apt.conf.d/01autoremove", + "hashes": [ + { + "alg": "SHA-1", + "content": "6ad6e2b1b1545b33798d8adbb25eeb15c0770717" + }, + { + "alg": "SHA-256", + "content": "b646d08e9886f38b33e34ed3ebb71ce6825055a08ae7509030afd3e07d35ad40" + } + ] + }, + { + "bom-ref": "48d8e90b53aa62bf", + "type": "file", + "name": "/etc/apt/apt.conf.d/70debconf", + "hashes": [ + { + "alg": "SHA-1", + "content": "8d02d7c5507330294f8eba69adc413e35c70225b" + }, + { + "alg": "SHA-256", + "content": "db749e19baf3b72ca2c157c70c52522cae23d94bc8b2dc5793fd43d427445367" + } + ] + }, + { + "bom-ref": "17aa7268d4b587d9", + "type": "file", + "name": "/etc/apt/trusted.gpg.d/debian-archive-bullseye-automatic.gpg", + "hashes": [ + { + "alg": "SHA-1", + "content": "27d0f29dc003b5a8c91ba4d61eb39b7a4301c4c1" + }, + { + "alg": "SHA-256", + "content": "9395df01c1c6226584206a77d237c60fdc7039a015ece4e6bd3b1947db6c3b1e" + } + ] + }, + { + "bom-ref": "62e5060c3f738c6c", + "type": "file", + "name": "/etc/apt/trusted.gpg.d/debian-archive-bullseye-security-automatic.gpg", + "hashes": [ + { + "alg": "SHA-1", + "content": "4c3899132dad707cbbe44cf490ba43e35a0dec12" + }, + { + "alg": "SHA-256", + "content": "e551f90fa954a65b3b6c54160f9d8485bee806318afe7a6998c4d9bece8e0df3" + } + ] + }, + { + "bom-ref": "9861af942f3d21aa", + "type": "file", + "name": "/etc/apt/trusted.gpg.d/debian-archive-bullseye-stable.gpg", + "hashes": [ + { + "alg": "SHA-1", + "content": "30a6bce0cab0fe98ca0b13447904f14c33f60b45" + }, + { + "alg": "SHA-256", + "content": "0cdd043ff2e04448802488fd4a4e3812c298a1ab5d81374ea9a9693a274cef8c" + } + ] + }, + { + "bom-ref": "36f25ef40aa349c2", + "type": "file", + "name": "/etc/apt/trusted.gpg.d/debian-archive-buster-automatic.gpg", + "hashes": [ + { + "alg": "SHA-1", + "content": "a6f83aced5193f1f7c1e155785f5b61d38361615" + }, + { + "alg": "SHA-256", + "content": "89d89bcedee9ed88b25eabb5be786fbca6259f121e6ad6ebf5651f852f5227cf" + } + ] + }, + { + "bom-ref": "8a051d92289ca993", + "type": "file", + "name": "/etc/apt/trusted.gpg.d/debian-archive-buster-security-automatic.gpg", + "hashes": [ + { + "alg": "SHA-1", + "content": "400181c4e2ebaf97a4e8b37b904b6bbe94998429" + }, + { + "alg": "SHA-256", + "content": "bd5d7f0384531497968f1866efa6118938e812582a8d2fe86d87b0266c495783" + } + ] + }, + { + "bom-ref": "2ddcde6f2553c698", + "type": "file", + "name": "/etc/apt/trusted.gpg.d/debian-archive-buster-stable.gpg", + "hashes": [ + { + "alg": "SHA-1", + "content": "a4f90d5b993f61a779f40bc1dff6551a5d7b2b03" + }, + { + "alg": "SHA-256", + "content": "488a60d5065a97cc8b3c907be6d2c12ba5dee5b88f5efeebbd8beb60cc9cced1" + } + ] + }, + { + "bom-ref": "8a61232b09b88c9a", + "type": "file", + "name": "/etc/apt/trusted.gpg.d/debian-archive-stretch-automatic.gpg", + "hashes": [ + { + "alg": "SHA-1", + "content": "d62ea924a47d9a3fb24f8a98e32bd88947ba2986" + }, + { + "alg": "SHA-256", + "content": "6e6648330a58db617dd13ba9f51b4101932559d477e7fe5fb656d3a4352efb57" + } + ] + }, + { + "bom-ref": "b1d8a052c1aecebc", + "type": "file", + "name": "/etc/apt/trusted.gpg.d/debian-archive-stretch-security-automatic.gpg", + "hashes": [ + { + "alg": "SHA-1", + "content": "2687cdcd03c9d5a22e619783b721cdfd60fb7fbd" + }, + { + "alg": "SHA-256", + "content": "481618230f62a29729c58e35684eec7be8774c68b7f94f4a70dae668874e12df" + } + ] + }, + { + "bom-ref": "031ed0cddfbd2fac", + "type": "file", + "name": "/etc/apt/trusted.gpg.d/debian-archive-stretch-stable.gpg", + "hashes": [ + { + "alg": "SHA-1", + "content": "6f24e387825ddc9f9df9192e5f94c7c6464885b2" + }, + { + "alg": "SHA-256", + "content": "5306306431152a3fc27406f420b9e1d9905c221ad9565ac7f11abaa3867b0885" + } + ] + }, + { + "bom-ref": "855e4926f397da3c", + "type": "file", + "name": "/etc/bash.bashrc", + "hashes": [ + { + "alg": "SHA-1", + "content": "ccfa17866498a392e99db5e9d4e37f713f58e738" + }, + { + "alg": "SHA-256", + "content": "af4f09eb27cb7f140dfee7f3285574a68ca50ac1db2019652cef4196ee346307" + } + ] + }, + { + "bom-ref": "539f7dfb84a4c540", + "type": "file", + "name": "/etc/bindresvport.blacklist", + "hashes": [ + { + "alg": "SHA-1", + "content": "fc9fced97aa5db3c66342ebd24d92b075e1e5d9d" + }, + { + "alg": "SHA-256", + "content": "63229551ffc257f56e3df60ca97e1f2963f3ab2128ce27a0f398b4418fa454d0" + } + ] + }, + { + "bom-ref": "a5b5c44295780981", + "type": "file", + "name": "/etc/cron.daily/apt-compat", + "hashes": [ + { + "alg": "SHA-1", + "content": "e1e67f58d930134522d140939dd2b8681b8d8ba7" + }, + { + "alg": "SHA-256", + "content": "a069113148fc81e3c72f76249f77bff234d933d1be88909a896d672ea81bfaed" + } + ] + }, + { + "bom-ref": "6daefab9606e293f", + "type": "file", + "name": "/etc/cron.daily/dpkg", + "hashes": [ + { + "alg": "SHA-1", + "content": "670f7b1508e3347264825cfbccac283bbef56dc5" + }, + { + "alg": "SHA-256", + "content": "172557932b09e6b22519653ce4bb4397767c96c270ac9271c8e92df9bba009bf" + } + ] + }, + { + "bom-ref": "834e57f76d41800d", + "type": "file", + "name": "/etc/cron.daily/passwd", + "hashes": [ + { + "alg": "SHA-1", + "content": "387303696a796e27f559c73679e979f2a538072d" + }, + { + "alg": "SHA-256", + "content": "777a9112ee093d8683645b031eb6cfeb9ce77274f40575c48ff2054ea24114d1" + } + ] + }, + { + "bom-ref": "976a8de6022e1b22", + "type": "file", + "name": "/etc/debconf.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "d0f08b9c8893167ab7892c62a3bc6e48cdf3f20d" + }, + { + "alg": "SHA-256", + "content": "fe7e76d4162e80e0bc8c24bc638c56ae92c07a80db750cbf0a87e0904e143f4e" + } + ] + }, + { + "bom-ref": "61c0afd9e4d449ed", + "type": "file", + "name": "/etc/debian_version", + "hashes": [ + { + "alg": "SHA-1", + "content": "a8f4d558f94be8871908764fe8337c7968efe4b8" + }, + { + "alg": "SHA-256", + "content": "0766953c9406158ca41f2d49e96a59972e9cd8ccdc3f19dba8755558f0464d1c" + } + ] + }, + { + "bom-ref": "84153e8980cf4264", + "type": "file", + "name": "/etc/default/hwclock", + "hashes": [ + { + "alg": "SHA-1", + "content": "bcc1aed639afbce9b9096cd2541971ab48e798c2" + }, + { + "alg": "SHA-256", + "content": "827cf5c033ba11433d2b4087ec1e36e82766eab39ceed8e7f8f09d983d2d8235" + } + ] + }, + { + "bom-ref": "9a6c0cc1018eee69", + "type": "file", + "name": "/etc/default/nss", + "hashes": [ + { + "alg": "SHA-1", + "content": "aeaf61a9f1ce085fa16ed22c4cc60d2f565f7d7a" + }, + { + "alg": "SHA-256", + "content": "836614e9d4d501d0af43087c9c9300365a38d53f24f845efcf0b2ad8194cbaa0" + } + ] + }, + { + "bom-ref": "e232a910f238eebd", + "type": "file", + "name": "/etc/default/useradd", + "hashes": [ + { + "alg": "SHA-1", + "content": "9e8f95b9ce7a15c03dc2ded11072774983ca57b1" + }, + { + "alg": "SHA-256", + "content": "03b603de7e8c7a8192902d827edea1891360bd094cf2c810669af13aee823c70" + } + ] + }, + { + "bom-ref": "57099dea7602e7ca", + "type": "file", + "name": "/etc/deluser.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "40e84d9b448fe5f603cecb7e0d03f28cf7c244c8" + }, + { + "alg": "SHA-256", + "content": "946e0f11a8997bf41dbafca1f6f5a4bedf46746c91801ca4f2e90dd0172f06b6" + } + ] + }, + { + "bom-ref": "ef71a75894484cf7", + "type": "file", + "name": "/etc/dpkg/dpkg.cfg", + "hashes": [ + { + "alg": "SHA-1", + "content": "17c8e76036626a55e95f91dca7f60ac4dc027bb5" + }, + { + "alg": "SHA-256", + "content": "fead43b89af3ea5691c48f32d7fe1ba0f7ab229fb5d230f612d76fe8e6f5a015" + } + ] + }, + { + "bom-ref": "3f04c868c349d397", + "type": "file", + "name": "/etc/dpkg/origins/debian", + "hashes": [ + { + "alg": "SHA-1", + "content": "b65f7f2af66c53b51765877bbe91a22bc6fca1e2" + }, + { + "alg": "SHA-256", + "content": "50f35af8ac4a5df3690991a4b428fa49d56580b0020fcc6e38283b3b1b2e6c74" + } + ] + }, + { + "bom-ref": "c70e5ce6be1811a7", + "type": "file", + "name": "/etc/gai.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "37be61f791e145d69bba57a2c402268f4de6db69" + }, + { + "alg": "SHA-256", + "content": "76a5771adee7b9f36c7ae66eae78d72f325557500269107f2d98a7e3560a1808" + } + ] + }, + { + "bom-ref": "bd29efa7a287b7f3", + "type": "file", + "name": "/etc/host.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "b10cafadc043aec4056a948914f011bc39d2ec13" + }, + { + "alg": "SHA-256", + "content": "380f5fe21d755923b44203b58ca3c8b9681c485d152bd5d7e3914f67d821d32a" + } + ] + }, + { + "bom-ref": "8799472c7f1d02e3", + "type": "file", + "name": "/etc/init.d/hwclock.sh", + "hashes": [ + { + "alg": "SHA-1", + "content": "6de496930dfe00e705fa244d77e7dfa2d1c6aef8" + }, + { + "alg": "SHA-256", + "content": "a919f9434b681974a2f1d4120af10c0527b30e8cda6fdec1dea1eee3077b6609" + } + ] + }, + { + "bom-ref": "4f0c6db580d6bdef", + "type": "file", + "name": "/etc/issue", + "hashes": [ + { + "alg": "SHA-1", + "content": "a34985b8cd50f896b76a565c6e88ece484950db5" + }, + { + "alg": "SHA-256", + "content": "79c0ca52a61dfa27c0e15f690ba75d3d74175ce1172befc2d652049a9dbb0d72" + } + ] + }, + { + "bom-ref": "cd9f735e37b1dc18", + "type": "file", + "name": "/etc/issue.net", + "hashes": [ + { + "alg": "SHA-1", + "content": "46e52010170debfae9611c599b65dd54e65f9684" + }, + { + "alg": "SHA-256", + "content": "eb72eb257952111e91991693753bbe7f1e21c95a6be2c1c1fef7379b151794cf" + } + ] + }, + { + "bom-ref": "f11f367a88852739", + "type": "file", + "name": "/etc/kernel/postinst.d/apt-auto-removal", + "hashes": [ + { + "alg": "SHA-1", + "content": "9f778d51b8f046e093bc0220e90ae21d9c8ebbed" + }, + { + "alg": "SHA-256", + "content": "64fef575566fd0ab647200ed6849156d07432997d22c65a06694c8852bdb7255" + } + ] + }, + { + "bom-ref": "0136735b332d7008", + "type": "file", + "name": "/etc/ld.so.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "addee0472ac552e7c43db27234ee260282b9b988" + }, + { + "alg": "SHA-256", + "content": "d4b198c463418b493208485def26a6f4c57279467b9dfa491b70433cedb602e8" + } + ] + }, + { + "bom-ref": "e2dfbe6e6bc68e27", + "type": "file", + "name": "/etc/ld.so.conf.d/libc.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "651d33456c313b129dcff7e6f961b4450add4209" + }, + { + "alg": "SHA-256", + "content": "90d4c7e43e7661cd116010eb9f50ad5817e43162df344bd1ad10898851b15d41" + } + ] + }, + { + "bom-ref": "293c3c60597a0a43", + "type": "file", + "name": "/etc/ld.so.conf.d/x86_64-linux-gnu.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "74613698f745df3c5ae0a9c06fbb8ab3942c1446" + }, + { + "alg": "SHA-256", + "content": "f03e4740e6922b4f4a1181cd696b52f62f9f10d003740a8940f7121795c59c98" + } + ] + }, + { + "bom-ref": "2234bf132aba1144", + "type": "file", + "name": "/etc/libaudit.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "f86b14eb6371b0d99b968dabc1b853b99530cb8a" + }, + { + "alg": "SHA-256", + "content": "d48318c90620fde96cb6a8e6eb1eb64663b21200f9d1d053f9e3b4fce24a2543" + } + ] + }, + { + "bom-ref": "83ad1ac323113c22", + "type": "file", + "name": "/etc/login.defs", + "hashes": [ + { + "alg": "SHA-1", + "content": "62c51d20cdb346a4f40ae34e3aa3901c5bb7397b" + }, + { + "alg": "SHA-256", + "content": "ff7cf6759ea81d72c51ab879e751c23bb4aa73307b737743aae9f034a314e7b6" + } + ] + }, + { + "bom-ref": "be7ecee1a46582b3", + "type": "file", + "name": "/etc/logrotate.d/alternatives", + "hashes": [ + { + "alg": "SHA-1", + "content": "f5db99ee8accefa35a355ce32a02c13fb4d488b7" + }, + { + "alg": "SHA-256", + "content": "edd383958ce315a642cdfa6aa3fbe2779aa5c674b305fe910449b90cee594c58" + } + ] + }, + { + "bom-ref": "d5a1829bca4ba0ee", + "type": "file", + "name": "/etc/logrotate.d/apt", + "hashes": [ + { + "alg": "SHA-1", + "content": "2d2bbc1c53f0ca9962cf971f906ffde3426f0663" + }, + { + "alg": "SHA-256", + "content": "fcc2510172fd914ca22762c4b2dc43d36152e65becf8e84abec59f7652da5e3f" + } + ] + }, + { + "bom-ref": "138eb106592963c5", + "type": "file", + "name": "/etc/logrotate.d/dpkg", + "hashes": [ + { + "alg": "SHA-1", + "content": "86cbac3b434a27c0b627e1f6c50aa06ad0bfffa0" + }, + { + "alg": "SHA-256", + "content": "e4103352545278e47a88b2ca2f2d3681ca474d400d8057ba6ac4f18d71c32042" + } + ] + }, + { + "bom-ref": "9a239484cb65a5ec", + "type": "file", + "name": "/etc/mke2fs.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "42b81300f7946a9c0fe32072a6fe05848fcaf430" + }, + { + "alg": "SHA-256", + "content": "b155410ad87acfcfeceab9db3e6e0ac926e4a37b6a3323963cea884fa4e95d9f" + } + ] + }, + { + "bom-ref": "a054c2356c7eca83", + "type": "file", + "name": "/etc/pam.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "f3a131387778ba216d9095823f4e30c545dde167" + }, + { + "alg": "SHA-256", + "content": "8aa7f3472ec88a24a572d6ffd9748ce3da223fba3b2545098eaaae768b6408c4" + } + ] + }, + { + "bom-ref": "e92c981d052f8c1e", + "type": "file", + "name": "/etc/pam.d/chfn", + "hashes": [ + { + "alg": "SHA-1", + "content": "f16a87690b85fb554bce4ae58cbe8e189cf461f7" + }, + { + "alg": "SHA-256", + "content": "d66a095a330d7e20d0bbb56a4cb28a4b1bfc92e8a5a5e9bfc3d0a51c5e3d7170" + } + ] + }, + { + "bom-ref": "aa407d8286b4eb20", + "type": "file", + "name": "/etc/pam.d/chpasswd", + "hashes": [ + { + "alg": "SHA-1", + "content": "1754cf95dc7720ba76b08b75de077f4cc5d8a868" + }, + { + "alg": "SHA-256", + "content": "f3f96229e82bf41a7fd3ec12e697b3465235d96bb1e44c39ba91157425a36082" + } + ] + }, + { + "bom-ref": "139baa1f615f6646", + "type": "file", + "name": "/etc/pam.d/chsh", + "hashes": [ + { + "alg": "SHA-1", + "content": "7df5f989cbe88e06089bcb4f17d70c8925b6c2b6" + }, + { + "alg": "SHA-256", + "content": "0101e7e589ce40435c5a8709888225400a78ab6be86dfc5fef86ee23ba5338ad" + } + ] + }, + { + "bom-ref": "d6a428799679fec6", + "type": "file", + "name": "/etc/pam.d/login", + "hashes": [ + { + "alg": "SHA-1", + "content": "c6e460ab1394d6ff3527c3e3fdad2270a282fc20" + }, + { + "alg": "SHA-256", + "content": "42e1e68613a5e0d2942ceeb8b5a4544341bde732fed47630108a163545359f6d" + } + ] + }, + { + "bom-ref": "5281639c50e112ab", + "type": "file", + "name": "/etc/pam.d/newusers", + "hashes": [ + { + "alg": "SHA-1", + "content": "cc07d944c1a6d1eeaa00e3a79d9362d8de572ea2" + }, + { + "alg": "SHA-256", + "content": "26e75ce7c9066801b8db380ff9d8ba58a5e8cf2de5fb38ffd1db5ba62c85acef" + } + ] + }, + { + "bom-ref": "a8f20947cdbe11eb", + "type": "file", + "name": "/etc/pam.d/other", + "hashes": [ + { + "alg": "SHA-1", + "content": "22053a92a95f1d81b1932299496f9dd33def03ed" + }, + { + "alg": "SHA-256", + "content": "d13078e71d3351ef7f63a7265ddb50b710a2598b9febc78810fbb0130a02695a" + } + ] + }, + { + "bom-ref": "8ae12df55df178d7", + "type": "file", + "name": "/etc/pam.d/passwd", + "hashes": [ + { + "alg": "SHA-1", + "content": "a7a73b5ddcb02358a988de56376822cd7d8c8f17" + }, + { + "alg": "SHA-256", + "content": "87696fad1046d6b33b6d3407bb419980987331b4dcd8905f7a6041bced90c51d" + } + ] + }, + { + "bom-ref": "163537382ac01221", + "type": "file", + "name": "/etc/pam.d/runuser", + "hashes": [ + { + "alg": "SHA-1", + "content": "5eee0c00c9193b8cfc26a85605a4a10727844295" + }, + { + "alg": "SHA-256", + "content": "2d430cb6628248953568010427d663f3305856f3cb055955c2239bea226c5280" + } + ] + }, + { + "bom-ref": "cba6716ac71034db", + "type": "file", + "name": "/etc/pam.d/runuser-l", + "hashes": [ + { + "alg": "SHA-1", + "content": "ba76bbb7fd56968bb1bd438758c0ec3570b36c5e" + }, + { + "alg": "SHA-256", + "content": "be9329a8b26e3cfd4af879fe60900f646f8188f3fbe491688f23d4d8b491c5b1" + } + ] + }, + { + "bom-ref": "ac41db52ec21d2a4", + "type": "file", + "name": "/etc/pam.d/su", + "hashes": [ + { + "alg": "SHA-1", + "content": "4528698605616fee721d7ef1f28e933b1ac58828" + }, + { + "alg": "SHA-256", + "content": "f7cac62fbcd50f9931d09a9190fc3ec390fd48fb5b8bec57e0996a7246856b12" + } + ] + }, + { + "bom-ref": "8e1de04167a300e2", + "type": "file", + "name": "/etc/pam.d/su-l", + "hashes": [ + { + "alg": "SHA-1", + "content": "4847d6a186c2054aac587fe73fff59aaab57f0a7" + }, + { + "alg": "SHA-256", + "content": "4d10241676e97e5e8d8935e5c8e8f6cb2f871afb881059715f155909be9ebd77" + } + ] + }, + { + "bom-ref": "dc975212ea7500dc", + "type": "file", + "name": "/etc/securetty", + "hashes": [ + { + "alg": "SHA-1", + "content": "c1036f03b47e4f89ad35d57d4dfa670da446bda2" + }, + { + "alg": "SHA-256", + "content": "0dd82ae636d59993f23c411ace459c54b19339f637013aa502c5dc5f542bc31f" + } + ] + }, + { + "bom-ref": "3c1fd83fcdb8f11f", + "type": "file", + "name": "/etc/security/access.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "e2a2cfb8bbf2f3ec5b1b65a1cb8aa1d7e1ace604" + }, + { + "alg": "SHA-256", + "content": "f68915c4eb637aacbfa01cf26dc469a73f70acb0495efc4b074ecbc626bcb345" + } + ] + }, + { + "bom-ref": "3dea8692483fa18a", + "type": "file", + "name": "/etc/security/group.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "251da41358d9e88d303e192a0bb216f19c774483" + }, + { + "alg": "SHA-256", + "content": "41df4bc646811997d0390c6d37d839d2aef4a9a1a940c44ee1a798a9dc1ac864" + } + ] + }, + { + "bom-ref": "1e40f5d9c4c2e952", + "type": "file", + "name": "/etc/security/limits.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "f9a82848e6930edf3dcd9550b0bfa8c49969df21" + }, + { + "alg": "SHA-256", + "content": "efe8446a3c499818e7c5736c9494f222cb9098e8733aee91508b3631ad053b27" + } + ] + }, + { + "bom-ref": "ad0526c7c34be035", + "type": "file", + "name": "/etc/security/namespace.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "239860a486a350256bea8d0a1e032a18fbfd1fc1" + }, + { + "alg": "SHA-256", + "content": "d0c3045ba5071b8375fde6165d4e4db9b69f49af5d2525cecd2bca1cb7538552" + } + ] + }, + { + "bom-ref": "ef3cc12c1ec825c9", + "type": "file", + "name": "/etc/security/namespace.init", + "hashes": [ + { + "alg": "SHA-1", + "content": "0bde0dbd7776db602fadf3b7f0676e314b094d5a" + }, + { + "alg": "SHA-256", + "content": "2d76094c06f10839c566ef64bde5624c325aeab7991e7f5d776c5310e8f41932" + } + ] + }, + { + "bom-ref": "3ab48b2bf8e1767d", + "type": "file", + "name": "/etc/security/pam_env.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "1b7c088fb216a16b6da3149c0f1a86494ec8f282" + }, + { + "alg": "SHA-256", + "content": "ff4956721a3f53e56e25ffffde62fe4fa0267e5dd94c3411def12de50322fb8f" + } + ] + }, + { + "bom-ref": "9acab1d87b94696b", + "type": "file", + "name": "/etc/security/sepermit.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "0519a9bbe7b0dbd3c58df9b3fbf4cf9724e132ff" + }, + { + "alg": "SHA-256", + "content": "885ec2a43042ad88d7f849e5e1cbef4e34e58229764a84a927c0e09cd7d47d70" + } + ] + }, + { + "bom-ref": "a4ae459ea219680d", + "type": "file", + "name": "/etc/security/time.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "f534f75c1e5be8ef028b9daf90836e531e929579" + }, + { + "alg": "SHA-256", + "content": "6802adfc8efc6168f87e98e960fa7d15e516a295fef7a6472ef5359527e886ff" + } + ] + }, + { + "bom-ref": "38644e9f56a97324", + "type": "file", + "name": "/etc/selinux/semanage.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "a0a77875fc424ec2897acf5d2a642c325ffeb878" + }, + { + "alg": "SHA-256", + "content": "80464fb793459392ffbf1e79e57df3247a7b2fe413854f2c155848a0b8c6004f" + } + ] + }, + { + "bom-ref": "b22cc1401f91a2cc", + "type": "file", + "name": "/etc/skel/.bash_logout", + "hashes": [ + { + "alg": "SHA-1", + "content": "dc216ac4a4c232815731979db6e494f315b507dd" + }, + { + "alg": "SHA-256", + "content": "26882b79471c25f945c970f8233d8ce29d54e9d5eedcd2884f88affa84a18f56" + } + ] + }, + { + "bom-ref": "23ce756cb0bc2c46", + "type": "file", + "name": "/etc/skel/.bashrc", + "hashes": [ + { + "alg": "SHA-1", + "content": "1912d65db378e86db92e0ec08c9d90b93e4b0349" + }, + { + "alg": "SHA-256", + "content": "afae8986f549c6403410e029f9cce7983311512d04b1f02af02e4ce0af0dd2bf" + } + ] + }, + { + "bom-ref": "84826bf74c1aa37e", + "type": "file", + "name": "/etc/skel/.profile", + "hashes": [ + { + "alg": "SHA-1", + "content": "2b9ee6d446f8f9ffccaab42b6df5649f749a9a07" + }, + { + "alg": "SHA-256", + "content": "28b4a453b68dde64f814e94bab14ee651f4f162e15dd9920490aa1d49f05d2a4" + } + ] + }, + { + "bom-ref": "08f3bf4372d271e1", + "type": "file", + "name": "/etc/terminfo/README", + "hashes": [ + { + "alg": "SHA-1", + "content": "36fda0c2e04ae4003a9264876dd9a446f135ed53" + }, + { + "alg": "SHA-256", + "content": "cfc3399b782bb0ecb14b9727dbd5ffd82ef774d473f6c47c39e621f8f4850603" + } + ] + }, + { + "bom-ref": "b5ca75dcd49de034", + "type": "file", + "name": "/etc/update-motd.d/10-uname", + "hashes": [ + { + "alg": "SHA-1", + "content": "9149a9aa0c7a6658e96e06aa63a930e07d172b74" + }, + { + "alg": "SHA-256", + "content": "1dca09550a75048731bbd17f17e027cc71ae50a86e0d911a8b3813e88d9b5ab6" + } + ] + }, + { + "bom-ref": "a259fcfe9a7ae21d", + "type": "file", + "name": "/etc/xattr.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "54113a3771fd7b2b8bb63ccf0a899ac9af88f685" + }, + { + "alg": "SHA-256", + "content": "c1259ead36165a9477c9e1948500fb1ae58f33140d2c8b9fdf09ae54425d62b6" + } + ] + }, + { + "bom-ref": "03fbdb9fbb1d9fab", + "type": "file", + "name": "/lib/init/init-d-script", + "hashes": [ + { + "alg": "SHA-1", + "content": "3e5ec921029a42726007cc4070cf8164b1be908c" + }, + { + "alg": "SHA-256", + "content": "1c0da4a585f34258490ea506e96729eb0749634ba80c57f7c88be0aa69f6cd72" + } + ] + }, + { + "bom-ref": "3bca7fd093803a42", + "type": "file", + "name": "/lib/init/vars.sh", + "hashes": [ + { + "alg": "SHA-1", + "content": "e89abe80b0c8b2a77218b6fc3f93e0788f4c6de6" + }, + { + "alg": "SHA-256", + "content": "49d734860b46c62805fc29a67b9d61210113b6eac2409e4ffd5cf14589f4f0a3" + } + ] + }, + { + "bom-ref": "5f7834e13ae80bf3", + "type": "file", + "name": "/lib/systemd/system/apt-daily-upgrade.service", + "hashes": [ + { + "alg": "SHA-1", + "content": "8252d95fe4156f822791ea2a650d6be426938ae9" + }, + { + "alg": "SHA-256", + "content": "da0651537cad0ed384291bd50c0bbc3268e6c625626ec9344150de4e8db3925e" + } + ] + }, + { + "bom-ref": "e8100615ef958985", + "type": "file", + "name": "/lib/systemd/system/apt-daily-upgrade.timer", + "hashes": [ + { + "alg": "SHA-1", + "content": "173ec55519854c75b34e226ac35fffd3be0c021e" + }, + { + "alg": "SHA-256", + "content": "b804d7bab8eb41202384f9270e25d5383346ace8b3d7c4f5029c150638d77bcd" + } + ] + }, + { + "bom-ref": "aa54e7f8cea59155", + "type": "file", + "name": "/lib/systemd/system/apt-daily.service", + "hashes": [ + { + "alg": "SHA-1", + "content": "6d3b7e4314ea883ca6e4f0f10771c1fc6da2bf0d" + }, + { + "alg": "SHA-256", + "content": "90f87047f4ea2f261f9117d02870de8719f808b911bb1808bf039ff3c162e5e9" + } + ] + }, + { + "bom-ref": "ea66102929c24236", + "type": "file", + "name": "/lib/systemd/system/apt-daily.timer", + "hashes": [ + { + "alg": "SHA-1", + "content": "a20cbb7385ba01d03cb70b1b3e5193f0695cce13" + }, + { + "alg": "SHA-256", + "content": "0075e974af4e3a94757e219ba50ccb8348d4d1a8834d938f6cc9b1f4fd1db4e5" + } + ] + }, + { + "bom-ref": "a3e2e4b45d281787", + "type": "file", + "name": "/lib/systemd/system/fstrim.service", + "hashes": [ + { + "alg": "SHA-1", + "content": "702ceed03cbab8376a66408e317f9c9cec08d6e6" + }, + { + "alg": "SHA-256", + "content": "eb3345973ec6502143e56d9f6fc5bf45ac0f3798ea22cbfcc5189f5664f257d6" + } + ] + }, + { + "bom-ref": "311749e0f9c06262", + "type": "file", + "name": "/lib/systemd/system/fstrim.timer", + "hashes": [ + { + "alg": "SHA-1", + "content": "e1b95615491a6ce6e6d3f3974dfde86b09f745b4" + }, + { + "alg": "SHA-256", + "content": "c0207b760f12b3da601be9ffea48872bc446dcd295103563122c3b1eca0faeee" + } + ] + }, + { + "bom-ref": "1ba0da2b5f1a8468", + "type": "file", + "name": "/lib/terminfo/E/Eterm", + "hashes": [ + { + "alg": "SHA-1", + "content": "c171f101adf9f707f41d522837f410e3031114ea" + }, + { + "alg": "SHA-256", + "content": "c22ee12bc37dbdc11378b2125474be364cc2ddc384646593822626a766e5803f" + } + ] + }, + { + "bom-ref": "631ae5e24e85e97a", + "type": "file", + "name": "/lib/terminfo/a/ansi", + "hashes": [ + { + "alg": "SHA-1", + "content": "b5211ae4c20d69e9913b175c3645c5ce97837ce3" + }, + { + "alg": "SHA-256", + "content": "93ec8cb9beb0c898ebc7dda0f670de31addb605be9005735228680d592cff657" + } + ] + }, + { + "bom-ref": "59aaa1c053977957", + "type": "file", + "name": "/lib/terminfo/c/cons25", + "hashes": [ + { + "alg": "SHA-1", + "content": "b9fe14cf5f090381ae40637d02c3734b28fdd3ff" + }, + { + "alg": "SHA-256", + "content": "acd69b88fbc9045037b562dd67c876e88cc5d2616af20b9ca6c41d33ee335606" + } + ] + }, + { + "bom-ref": "f57e68dd9a777381", + "type": "file", + "name": "/lib/terminfo/c/cons25-debian", + "hashes": [ + { + "alg": "SHA-1", + "content": "3da6a66ef89960184340cd835d49e1e46d4f7c18" + }, + { + "alg": "SHA-256", + "content": "0437ef75abb06ca00a0ca444a8aa7402276b7217a20330217c84b59fdd8e0b4f" + } + ] + }, + { + "bom-ref": "0bb631a1039f1e16", + "type": "file", + "name": "/lib/terminfo/c/cygwin", + "hashes": [ + { + "alg": "SHA-1", + "content": "76d9469b0fc8838dacfd5d3922bfc95a06a6ba1c" + }, + { + "alg": "SHA-256", + "content": "3e04bfdcc0764f4e28655701864845752cd3f77d0c52390637ebe588f91665cf" + } + ] + }, + { + "bom-ref": "a64014e9e8bc2f60", + "type": "file", + "name": "/lib/terminfo/d/dumb", + "hashes": [ + { + "alg": "SHA-1", + "content": "df4b4d8fa4137e85510ddb04c84cc7b0bfc518f6" + }, + { + "alg": "SHA-256", + "content": "123c85a2812a517d967db5f31660db0e6aded4a0b95ed943c5ab435368e7a25c" + } + ] + }, + { + "bom-ref": "ddf9aeee60f4a54f", + "type": "file", + "name": "/lib/terminfo/h/hurd", + "hashes": [ + { + "alg": "SHA-1", + "content": "a8e77b1e651fb48c82d4c55574928929596c8984" + }, + { + "alg": "SHA-256", + "content": "d5dc00724a04eb3b030addab6914380521d40f416818943171070ec64c623607" + } + ] + }, + { + "bom-ref": "b1b9906c222ccc30", + "type": "file", + "name": "/lib/terminfo/l/linux", + "hashes": [ + { + "alg": "SHA-1", + "content": "2c24ba7a71a8f1bb9bc1c93f70b3ede700273160" + }, + { + "alg": "SHA-256", + "content": "50b1e7dde373b337efecb490bd514d9deab49accb06361f17c14f554dfc09b92" + } + ] + }, + { + "bom-ref": "f964e215ce0105b0", + "type": "file", + "name": "/lib/terminfo/m/mach", + "hashes": [ + { + "alg": "SHA-1", + "content": "2164ebc6389b2eb81f855aff81dd512a9c0ef589" + }, + { + "alg": "SHA-256", + "content": "ecd31c58040e5908eb434514e67620b2e4be538655126f427155760b273c7e9b" + } + ] + }, + { + "bom-ref": "da6b962a590933b8", + "type": "file", + "name": "/lib/terminfo/m/mach-bold", + "hashes": [ + { + "alg": "SHA-1", + "content": "b31e68274d7e658c3d20302c10f3a8dee2d45a6a" + }, + { + "alg": "SHA-256", + "content": "4e4400e3ad4df2dbbf90920860c540cd72552ca71a24b556a0b6ba62fa091b84" + } + ] + }, + { + "bom-ref": "f1037661871cbde0", + "type": "file", + "name": "/lib/terminfo/m/mach-color", + "hashes": [ + { + "alg": "SHA-1", + "content": "519df843a8d27ca36bb1703c3edc893135793dd1" + }, + { + "alg": "SHA-256", + "content": "5caa825bd606e26c8b6c55a3206eccfea525e788f74da5e7cb48cc713db52239" + } + ] + }, + { + "bom-ref": "2b6a12dd8050bc98", + "type": "file", + "name": "/lib/terminfo/m/mach-gnu", + "hashes": [ + { + "alg": "SHA-1", + "content": "bf9269b2a7a463c68e2ba9200b28ae3115f6b362" + }, + { + "alg": "SHA-256", + "content": "99372cd399478be723230692595362004df345dee6c4145e4d109113a2357717" + } + ] + }, + { + "bom-ref": "f580b88cdfac3f17", + "type": "file", + "name": "/lib/terminfo/m/mach-gnu-color", + "hashes": [ + { + "alg": "SHA-1", + "content": "4466e8a9353f3400cfba527abcf0d26c28f364c2" + }, + { + "alg": "SHA-256", + "content": "e1c62541670d0e10fe46daabce8ce95d9fd77115a68106e5eb2c2a7647e40a13" + } + ] + }, + { + "bom-ref": "552a1864ca3c1d2a", + "type": "file", + "name": "/lib/terminfo/p/pcansi", + "hashes": [ + { + "alg": "SHA-1", + "content": "6867ac96a0cfed1d9df1e9a64f122c75cac71a99" + }, + { + "alg": "SHA-256", + "content": "ecda9662049c96ee0a574f40cfb8950b0198b508b5b72a3de05774eb3cb3f34e" + } + ] + }, + { + "bom-ref": "9061d46a414e1c61", + "type": "file", + "name": "/lib/terminfo/r/rxvt", + "hashes": [ + { + "alg": "SHA-1", + "content": "31ca4123a34c92d39773a055ce13ad80ef6682a7" + }, + { + "alg": "SHA-256", + "content": "75395ba8ddb3660c63f82fc337c63af071307f9211727afd2fedd944baf24285" + } + ] + }, + { + "bom-ref": "2cfcfb0ca6895a1e", + "type": "file", + "name": "/lib/terminfo/r/rxvt-basic", + "hashes": [ + { + "alg": "SHA-1", + "content": "a6ef1550021e08088f68c750f0a46a8f81aa17c5" + }, + { + "alg": "SHA-256", + "content": "6065778e3cb2aa6fac521fc3d1717800956c335fe32f742bfe1655a665da8b02" + } + ] + }, + { + "bom-ref": "7b910e7da0e377e8", + "type": "file", + "name": "/lib/terminfo/r/rxvt-unicode", + "hashes": [ + { + "alg": "SHA-1", + "content": "ed5b20e981296b3f500fd7416a67fd4977dd0a57" + }, + { + "alg": "SHA-256", + "content": "280165734528e93ec7c770524e8ce3a3d29dcf5ca5696dacd093d1eb5ce3460a" + } + ] + }, + { + "bom-ref": "581873c9c4b5ebf2", + "type": "file", + "name": "/lib/terminfo/r/rxvt-unicode-256color", + "hashes": [ + { + "alg": "SHA-1", + "content": "7e4f85a3aaaaed6b1a215daf987738f14b267d9c" + }, + { + "alg": "SHA-256", + "content": "8855f7a9c77a4447f16398cc2542eb56ee80f3e066ad0a01e7183673d0e9e3c9" + } + ] + }, + { + "bom-ref": "12eeca70394f80b2", + "type": "file", + "name": "/lib/terminfo/s/screen", + "hashes": [ + { + "alg": "SHA-1", + "content": "b43375d8185fb26a2f4258639085cc3946e5be41" + }, + { + "alg": "SHA-256", + "content": "b2ca8fc467310c135be658fd93b8175af3ede6e4403a42951f72b388e72e8c43" + } + ] + }, + { + "bom-ref": "1afc68e50b575929", + "type": "file", + "name": "/lib/terminfo/s/screen-256color", + "hashes": [ + { + "alg": "SHA-1", + "content": "f3a5cd83c8216f6e5cb7da5130166b43c5e12669" + }, + { + "alg": "SHA-256", + "content": "ea72d649e11e30ed2bd2385400fea5b17b37f08aa18ccbc1d1c13e18b7ea3af2" + } + ] + }, + { + "bom-ref": "a9bab538463fd8d4", + "type": "file", + "name": "/lib/terminfo/s/screen-256color-bce", + "hashes": [ + { + "alg": "SHA-1", + "content": "f57eb86e5355cf6aa943d452f5a9e73bf15d35e7" + }, + { + "alg": "SHA-256", + "content": "f5719df3d0d6bc1184896a6f385a24c7c75a4677ed5d44fecb9c50256a44911a" + } + ] + }, + { + "bom-ref": "b8a17f6274cafa66", + "type": "file", + "name": "/lib/terminfo/s/screen-bce", + "hashes": [ + { + "alg": "SHA-1", + "content": "21dab0a8e0b80db0b31c401cefef8790bcd3615d" + }, + { + "alg": "SHA-256", + "content": "348ca9c008b9ce4a4e10744a7a5208220f5110e253a6768152ac8bef82bd395f" + } + ] + }, + { + "bom-ref": "62b5065301aa6ae5", + "type": "file", + "name": "/lib/terminfo/s/screen-s", + "hashes": [ + { + "alg": "SHA-1", + "content": "a53bd44e484fd9e07e43c303efea80e5e07c1848" + }, + { + "alg": "SHA-256", + "content": "fc7a12199df61866165db3a902e2d3c9082aba79b6bc49cc9b1b138200968d57" + } + ] + }, + { + "bom-ref": "44daf59fc2ac9190", + "type": "file", + "name": "/lib/terminfo/s/screen-w", + "hashes": [ + { + "alg": "SHA-1", + "content": "183b2fdf34ab0715f471f75a1e16d14330bfa54a" + }, + { + "alg": "SHA-256", + "content": "a2ccf6d70361bd17348e97f88f0e5efee9b076dd64e8e1a5662f5d0baabdb1a5" + } + ] + }, + { + "bom-ref": "9dc260bd375352ae", + "type": "file", + "name": "/lib/terminfo/s/screen.xterm-256color", + "hashes": [ + { + "alg": "SHA-1", + "content": "9ac96d35d03f90aebc9b16498e3f12016dccddd0" + }, + { + "alg": "SHA-256", + "content": "08055417ac9a97e0f896036961861e0ef57fec8bbd141ecd86a07d03ca692d5a" + } + ] + }, + { + "bom-ref": "b6c0fd3c7c5dc7d3", + "type": "file", + "name": "/lib/terminfo/s/sun", + "hashes": [ + { + "alg": "SHA-1", + "content": "faf6b1b33d6c3a6aae31f7b657810b6171d91a8d" + }, + { + "alg": "SHA-256", + "content": "02e392161cb23f49a8fb1ba2f1a6583e013c0c26672f58c5eaca828db3b19914" + } + ] + }, + { + "bom-ref": "9eb50f7f04b50308", + "type": "file", + "name": "/lib/terminfo/v/vt100", + "hashes": [ + { + "alg": "SHA-1", + "content": "604682c15cc708fbd02fecf33d0d23bed5e735e6" + }, + { + "alg": "SHA-256", + "content": "44fe1bfcc36f3a7669a387b623a44c360f9e150868f9924920182b44bcbbdba6" + } + ] + }, + { + "bom-ref": "7173b652a6bc59fe", + "type": "file", + "name": "/lib/terminfo/v/vt102", + "hashes": [ + { + "alg": "SHA-1", + "content": "0647b65463bb39b373e3fa4019249f2b2f84991b" + }, + { + "alg": "SHA-256", + "content": "60e451f57c0308b79004ebc6189b49417b4ac11d783154072cae803a11af7d3f" + } + ] + }, + { + "bom-ref": "f79827425768a704", + "type": "file", + "name": "/lib/terminfo/v/vt220", + "hashes": [ + { + "alg": "SHA-1", + "content": "dd532c9347e2c83c9fe6a3116fb5edc98a4bdad0" + }, + { + "alg": "SHA-256", + "content": "75a4723bfcdcd22756366838f1d65233f386d7592b019740c8ca5b578e9a5857" + } + ] + }, + { + "bom-ref": "852cbcf88d2d1700", + "type": "file", + "name": "/lib/terminfo/v/vt52", + "hashes": [ + { + "alg": "SHA-1", + "content": "b455a64f6289bade2326b57838f8fecc2a0f6c73" + }, + { + "alg": "SHA-256", + "content": "1d8e7d40be89fe71e5d2582caa5168fe53ed85d9063e0ccf42e5c53f4d17b069" + } + ] + }, + { + "bom-ref": "b56ffdbd401b75ce", + "type": "file", + "name": "/lib/terminfo/w/wsvt25", + "hashes": [ + { + "alg": "SHA-1", + "content": "6e544110ee387257fad3048674d0b6cb5e81291c" + }, + { + "alg": "SHA-256", + "content": "28d3410e6b83a3b78a41f108098ac8772a3af3ee2b627b9f9bb4b19b363a5be3" + } + ] + }, + { + "bom-ref": "2d0ce6ea805b51a4", + "type": "file", + "name": "/lib/terminfo/w/wsvt25m", + "hashes": [ + { + "alg": "SHA-1", + "content": "74ef27fc6d81c6a43dd40f231777c0ffb485a559" + }, + { + "alg": "SHA-256", + "content": "18c85db3b0ef0ab15b7eb8dc4ac6ea14a37d851628220c8bb61e2edfa4f81683" + } + ] + }, + { + "bom-ref": "50132bca1c183e9f", + "type": "file", + "name": "/lib/terminfo/x/xterm", + "hashes": [ + { + "alg": "SHA-1", + "content": "e58130030e2a31d1e19a221ffaad7f75331a9778" + }, + { + "alg": "SHA-256", + "content": "d400f558425694bbc618b1faf3c6c92c09f4b264de824d0dea7af8fa3a5096c7" + } + ] + }, + { + "bom-ref": "6bca70c96dab4e70", + "type": "file", + "name": "/lib/terminfo/x/xterm-256color", + "hashes": [ + { + "alg": "SHA-1", + "content": "3b425fa893f5312bcaf576ca7e7fbcd793e03689" + }, + { + "alg": "SHA-256", + "content": "91f49283d1ae04cd8bbbea813268aa4d0bf25ffed0f1d4e2fd24e147eba1d3d0" + } + ] + }, + { + "bom-ref": "47df3ed68fe08b65", + "type": "file", + "name": "/lib/terminfo/x/xterm-color", + "hashes": [ + { + "alg": "SHA-1", + "content": "c198d7918676777aadbe39503332054fbb5a5922" + }, + { + "alg": "SHA-256", + "content": "0b270450c7498756c0e99cfb24341e68f7443344adcf1656e30a0333e48f550f" + } + ] + }, + { + "bom-ref": "a6687485937c67c3", + "type": "file", + "name": "/lib/terminfo/x/xterm-mono", + "hashes": [ + { + "alg": "SHA-1", + "content": "949ff8f7258762b67a3753b2c2f4d5457cfcb0e9" + }, + { + "alg": "SHA-256", + "content": "183c527a8cbec5b5fef3eb8c28473a0530317eea7d01150eec74c01a214fef59" + } + ] + }, + { + "bom-ref": "6f5a9ef19fd8b3eb", + "type": "file", + "name": "/lib/terminfo/x/xterm-r5", + "hashes": [ + { + "alg": "SHA-1", + "content": "a4283a7cf44e9e4a4a9e5ac166328ba8d6ddf632" + }, + { + "alg": "SHA-256", + "content": "82098ec067be6189e91e8264278bb85fe3b7bfdeaa3754be301313be140522ca" + } + ] + }, + { + "bom-ref": "e4babad886480240", + "type": "file", + "name": "/lib/terminfo/x/xterm-r6", + "hashes": [ + { + "alg": "SHA-1", + "content": "97bfc10103a98e54eb646a2e9b39d9e23a983336" + }, + { + "alg": "SHA-256", + "content": "ee12fe6d2d8e1d0b83d1042fe8a38f1aed6fd73e2c7316e6db5ec5b061b09ef8" + } + ] + }, + { + "bom-ref": "5222d67dd72a905b", + "type": "file", + "name": "/lib/terminfo/x/xterm-vt220", + "hashes": [ + { + "alg": "SHA-1", + "content": "196db38ee77ee48febbaf235be78957a82f716c0" + }, + { + "alg": "SHA-256", + "content": "2bfcc418ca74608db0f37f7d4a33353e50a0624ef4f8f422041e22493a0a5b83" + } + ] + }, + { + "bom-ref": "0790d5446891cfab", + "type": "file", + "name": "/lib/terminfo/x/xterm-xfree86", + "hashes": [ + { + "alg": "SHA-1", + "content": "46db5031e65a8ac9143fcf1703133750588a8811" + }, + { + "alg": "SHA-256", + "content": "c9c698fde3f11aa26faa9cc71d3b2f82ee80c60904868054048bc7770910e7e2" + } + ] + }, + { + "bom-ref": "8f10eb36d96dc12d", + "type": "file", + "name": "/lib/udev/hwclock-set", + "hashes": [ + { + "alg": "SHA-1", + "content": "3e2983e594bc5c8b4e26b09cbb1ed9b074a1b2cf" + }, + { + "alg": "SHA-256", + "content": "bec691723c892b77efe3c718846c2f320b4218d6448c8cf71d663e3be8396564" + } + ] + }, + { + "bom-ref": "e384921f0e082574", + "type": "file", + "name": "/lib/udev/rules.d/85-hwclock.rules", + "hashes": [ + { + "alg": "SHA-1", + "content": "d7e6e407d6751c16269a9619f53a65fec72575b5" + }, + { + "alg": "SHA-256", + "content": "a65b7d818578fa91ebc00d086964c0528fa28d0ca04c54f11009c6c375f3e158" + } + ] + }, + { + "bom-ref": "bb966ba09c74f187", + "type": "file", + "name": "/lib/x86_64-linux-gnu/ld-2.28.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "4196dfaca4fc796710efd3dd37bd8f5c8010b11d" + }, + { + "alg": "SHA-256", + "content": "3e7cb1a5fa4d540f582dddfdb0c69958eca738ba8d60c0bbb6719f091192f33f" + } + ] + }, + { + "bom-ref": "0a79b130a5616424", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libBrokenLocale-2.28.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "2db17e165574bb2bd9d349b56a56ea63f41b4d1c" + }, + { + "alg": "SHA-256", + "content": "3de7e493988ee582802242e50491e4d2d3555c26e0c3466343149871649579d6" + } + ] + }, + { + "bom-ref": "a1140c6d957836a4", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libSegFault.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "fb29921e1306877daecd59ccd0f5ea97f7d2cd5b" + }, + { + "alg": "SHA-256", + "content": "df82e27513032ad6cdfb6562f6bcaa0f8a6ec7da674d0617786f26338f9b403e" + } + ] + }, + { + "bom-ref": "f053e80d1f72cde5", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libanl-2.28.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "bf636be0f004ba54696c761104f0d6d00c024bcc" + }, + { + "alg": "SHA-256", + "content": "52e89813dcab84fa75e910fc55a95089489a9a7ecc90c6af15fe1e71ed5e4ef7" + } + ] + }, + { + "bom-ref": "a58e8bdee74aefd9", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libaudit.so.1.0.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "dc1b1d2506dd004332006ada2555e8fc64d50af4" + }, + { + "alg": "SHA-256", + "content": "55982527ea73d4d843b38ce1519dc76134c86f96a5b5adf641ffc14f2a42dbd5" + } + ] + }, + { + "bom-ref": "2b9c124fc481e5cf", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libblkid.so.1.1.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "0669082f3a7943e5705eec4d691b97efc539bd93" + }, + { + "alg": "SHA-256", + "content": "a4e38d30fe77709d0baaa9f0dc41d1813b0cf965a21e5657e67c154f0dc13bc5" + } + ] + }, + { + "bom-ref": "c43e5197094e0aab", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libbz2.so.1.0.4", + "hashes": [ + { + "alg": "SHA-1", + "content": "402d64e4c357a4bdd867f421d540236709831bea" + }, + { + "alg": "SHA-256", + "content": "c23771594bd3f88fee06be1db61cfca3b2b6777f17089c2fc311638375994d93" + } + ] + }, + { + "bom-ref": "e21054bd80cfada8", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libc-2.28.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "13d8d9f665c1f3a087e366e9092c112a0b8e100f" + }, + { + "alg": "SHA-256", + "content": "dedb887a5c49294ecd850d86728a0744c0e7ea780be8de2d4fc89f6948386937" + } + ] + }, + { + "bom-ref": "815a6b0cfc61b494", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libcap-ng.so.0.0.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "9e1a0bda53ea84e0367a33d22d258e57440d982d" + }, + { + "alg": "SHA-256", + "content": "9ab3216433240efd918f6840a7246d83fd325dcdc7dc4efaea42b4a7ca2bc9b0" + } + ] + }, + { + "bom-ref": "f82d8447f5bde0d2", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libcom_err.so.2.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "84c21158a8175f233fcb0b380c862345e28d3ba4" + }, + { + "alg": "SHA-256", + "content": "83d9014e42d348d09940dda2d23ae68cf669b80bf344e45fef50dbe204973656" + } + ] + }, + { + "bom-ref": "e6baf857c6479ff8", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libcrypt-2.28.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "af627a7f2aa2428426b0d15b1269086de40f3577" + }, + { + "alg": "SHA-256", + "content": "fff3ce8707bce57e439ea3602be6e1e30ed26baa495c6c507a70608af8dfbd1e" + } + ] + }, + { + "bom-ref": "942ecc99011b4b8d", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libdl-2.28.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "56da5cc3a589da572aee045c89057fefd9e0d6bf" + }, + { + "alg": "SHA-256", + "content": "c60003f02517b92fafa2b06a3c8a7b18dccc4c17f1ad76b30f41445ea92bf178" + } + ] + }, + { + "bom-ref": "6982ba6e8059d67c", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libe2p.so.2.3", + "hashes": [ + { + "alg": "SHA-1", + "content": "577346b6fd2af331c288d047915cefff3efacf63" + }, + { + "alg": "SHA-256", + "content": "5023e85fba261092753f9533dacfb8b58db669893f79a68978ee2b5a0e8c5289" + } + ] + }, + { + "bom-ref": "47a44811f7025d47", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libext2fs.so.2.4", + "hashes": [ + { + "alg": "SHA-1", + "content": "97d0c180760a58de6653769f4306986b32d2932d" + }, + { + "alg": "SHA-256", + "content": "e69b13fb52e6223cd4f3e014857d89710ea6fe2515c38d34a29ad0c2b1fac231" + } + ] + }, + { + "bom-ref": "d4e71c884c00dd57", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libfdisk.so.1.1.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "638985b3f089025b35262e19ab84a1daa0719455" + }, + { + "alg": "SHA-256", + "content": "e70a12deaeb1f3aee9d185824af0f7373b3ae0388ab2f87d84a3d4e2ef5c0ac2" + } + ] + }, + { + "bom-ref": "abb75a5a213ebb01", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libgcc_s.so.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "ef08acc3362dacac1fa59e288ad2985eee6cb768" + }, + { + "alg": "SHA-256", + "content": "7557f83a5769d557bdf0bfd81220e4af0c7c5bb7a2a61daf3af66918fe077e7a" + } + ] + }, + { + "bom-ref": "d50865008510f787", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libgcrypt.so.20.2.4", + "hashes": [ + { + "alg": "SHA-1", + "content": "1d4b1591df8c1e95a414770939b4ceba4ac7d2e0" + }, + { + "alg": "SHA-256", + "content": "9492390345744a7c37c6624dd10455eb187fe54f4394a3b632b0470b4fe0904b" + } + ] + }, + { + "bom-ref": "0822227015edac64", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libgpg-error.so.0.26.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "ea793b31ae5bbac8a0c803632a26aab8dc3e217a" + }, + { + "alg": "SHA-256", + "content": "fbb4087874f0f4afd4dd9b216bcad0e07aa3d81ed139bd1bc092fccd8655b1e8" + } + ] + }, + { + "bom-ref": "f40e9c71157ed8e8", + "type": "file", + "name": "/lib/x86_64-linux-gnu/liblzma.so.5.2.4", + "hashes": [ + { + "alg": "SHA-1", + "content": "ea33f5805dc6aeab44feff7ca9b3ad8d6a539422" + }, + { + "alg": "SHA-256", + "content": "38f8f22a30d21a1bd713b79b1ac3ce70026a2878d00d028aa699a9ba0075ddb4" + } + ] + }, + { + "bom-ref": "f61bbe4658d52ed3", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libm-2.28.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "b996d294e0a1ed5156b7956a430330252eaff5fa" + }, + { + "alg": "SHA-256", + "content": "b086093ac75af8a01454d29a8fd6ee8b32881b72d9d458d4dfccc8d2b07433c4" + } + ] + }, + { + "bom-ref": "31aa6d135117288c", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libmemusage.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "4d74c1718517bdad39f7ee7f290191cb2da6bd0d" + }, + { + "alg": "SHA-256", + "content": "ebdadbe60abe706840c1cc5afdd9d7790faba7df85ce84f7c9cecb9308694e9b" + } + ] + }, + { + "bom-ref": "3d1251a68eb5b4a3", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libmount.so.1.1.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "03bb71f68efa25ada13e66c5db188204e13f166a" + }, + { + "alg": "SHA-256", + "content": "0f66683ad9817fafe677f5170ab93448a63410a7d14de23c8c566779186bbe4e" + } + ] + }, + { + "bom-ref": "bd4988bd2b87bcec", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libmvec-2.28.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "a019f017e08a9cc13f0c842e99cdac7388d08fc8" + }, + { + "alg": "SHA-256", + "content": "6630a0322a360e8b5ee1353019d88550e64fb7dd5a19421c495f38da9d3c2ba4" + } + ] + }, + { + "bom-ref": "5580cc249d5e28cd", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libncursesw.so.6.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "531ee1783bab3a56dab4f933f55ca4a7f4eb8943" + }, + { + "alg": "SHA-256", + "content": "445de19902d2dcd31d1e51c199054b1c96b814ba1b1dc8c841a8343dc7d765c5" + } + ] + }, + { + "bom-ref": "6a0fe5213393ac83", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libnsl-2.28.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "b78b5b679eeee3ec351524a06f7d279f44a2195e" + }, + { + "alg": "SHA-256", + "content": "7e716d8888dbcf6782d3539602b090d5de0e6b62ad65353fbf5cded042ba977e" + } + ] + }, + { + "bom-ref": "a72d11512bf72ea6", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libnss_compat-2.28.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "290b8cd2d33bc36d2c432f7fea62be5cbd411a80" + }, + { + "alg": "SHA-256", + "content": "8a79301c3070cef8de7fc32d4ee37bcc289ffabc9969e01ea2064501444fbef4" + } + ] + }, + { + "bom-ref": "548fbc8d56afffba", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libnss_dns-2.28.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "d705a2d553e14e365e73960549015539c20eb356" + }, + { + "alg": "SHA-256", + "content": "f9539541bac3b897dc411def29764f13090b56997437787a399a85f84b752a82" + } + ] + }, + { + "bom-ref": "97d5463f0f715699", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libnss_files-2.28.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "2e8486e1a7d837822b04594ca146ac72f31d2904" + }, + { + "alg": "SHA-256", + "content": "2e1f402d888063dda595772a9ad92220ed0904d10c846134feffd55f1b74c826" + } + ] + }, + { + "bom-ref": "e0c963616bcda6ce", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libnss_hesiod-2.28.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "143d99f86d593fce81fabaceeb55f6d661c324ca" + }, + { + "alg": "SHA-256", + "content": "0db9b7de80dd3bcff7d0f81ba3799b339781767e6ef962d5579806d2f01c2d32" + } + ] + }, + { + "bom-ref": "894656ee98481d51", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libnss_nis-2.28.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "5ba4e9d38dbc4530fe41df3262c1445b9ea8274e" + }, + { + "alg": "SHA-256", + "content": "67bca7afec9d74a868bc0c2d970020e23a15976b6bdbf5833d8e2dc0241e27d4" + } + ] + }, + { + "bom-ref": "452c0cedf20b4847", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libnss_nisplus-2.28.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "3c873f41f9b2ae591674a27c9b2c2587c285968c" + }, + { + "alg": "SHA-256", + "content": "8946cbace45a656e0edb5312504541a00c6a31b2a311a5c2f7430015d83a7727" + } + ] + }, + { + "bom-ref": "29f5a0d7f4364e9a", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libpam.so.0.84.2", + "hashes": [ + { + "alg": "SHA-1", + "content": "36727f194ef8c8724457f88dfa96a9bca001d874" + }, + { + "alg": "SHA-256", + "content": "b1a3f560f06788337a05a6759c0fb2fc554342bedc87b3103c792bd78547a4a5" + } + ] + }, + { + "bom-ref": "03795c7c7dd57e98", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libpam_misc.so.0.82.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "87ae0ae93dcddf716b92d6dd33dade7fa567d0c7" + }, + { + "alg": "SHA-256", + "content": "f6418ef5d422963ec2ba4f40b82e9f05eb8a73c1c650529aff6ad947b5f74c07" + } + ] + }, + { + "bom-ref": "03bd1542eee5de7e", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libpamc.so.0.82.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "198aa10ae29cc2ddb851fb159cac926d5012fb81" + }, + { + "alg": "SHA-256", + "content": "f50b06e8433c37d08d0dc8bfa6658b3077ed7c79da73e9475f3e5f2e5189e4c4" + } + ] + }, + { + "bom-ref": "086852fa92fb44b6", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libpcprofile.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "0470d0b9f9a41e932eb4ca2a2d40ed2b68d6e139" + }, + { + "alg": "SHA-256", + "content": "3596278a5a6974e1182fb05324746d4e22a7e3d114dc7503e545a07bf2978b36" + } + ] + }, + { + "bom-ref": "0c26b5e14abe93e5", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libpcre.so.3.13.3", + "hashes": [ + { + "alg": "SHA-1", + "content": "bf8880f430704990778f8a00c1dd8b9c3de0e55a" + }, + { + "alg": "SHA-256", + "content": "22635e5747cde5d4eb9a67e86a0a909ec9c57dc51691238beb93210876a9df82" + } + ] + }, + { + "bom-ref": "cecccfd076f892c2", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libpthread-2.28.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "9fad012def8697ce352c717ee51e1f0a288edeac" + }, + { + "alg": "SHA-256", + "content": "41301d838040c1d334362417ddfeb068a21f56b807d9f3b0081aec9c1730f6cc" + } + ] + }, + { + "bom-ref": "1564f5dd8fbb1346", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libresolv-2.28.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "c85501ce5f74938fdc258d42446c988904d21f25" + }, + { + "alg": "SHA-256", + "content": "cc13cc7674052206a01f80190e743521d324964e6b69799173dd5f1887cfe3b2" + } + ] + }, + { + "bom-ref": "a2ce1561323f2751", + "type": "file", + "name": "/lib/x86_64-linux-gnu/librt-2.28.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "ff388501720daebe6581a9a7e9124734f472b686" + }, + { + "alg": "SHA-256", + "content": "11211055deebaec92ceb507ec8dc356e7225abd2914b1a8be2a7a0f284ac7c87" + } + ] + }, + { + "bom-ref": "abcef49eb8d21461", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libselinux.so.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "05b662eb06d2a17ac78cfab02decc234ea564e95" + }, + { + "alg": "SHA-256", + "content": "e88b4bacb5086abb18befa1bf4d3569791d0ed4f4c270ee25f415a18cf97ec72" + } + ] + }, + { + "bom-ref": "7bc970e3f68d4eae", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libsepol.so.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "04845fa48ee31edd9e5d6a0c61226c09c74dc06c" + }, + { + "alg": "SHA-256", + "content": "4b17ef0cf9235c0d483946a65a811fdae2779f6cc23e54f40a7ef934872540ca" + } + ] + }, + { + "bom-ref": "c519f865a66d62e9", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libsmartcols.so.1.1.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "25c35355c76d77b6b872a3952deba3c8e746a931" + }, + { + "alg": "SHA-256", + "content": "e510e2d6bcf64849b29084f258781bcee73eea9ef2bf5ad4591b419258c22af9" + } + ] + }, + { + "bom-ref": "8713b6ca02cc80c4", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libss.so.2.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "dda0b155b12264ec6222385811022cb89d224036" + }, + { + "alg": "SHA-256", + "content": "65be4ff2451945abc3189232f02ac55dfadf638f8b47b12d440a449d90db4ac5" + } + ] + }, + { + "bom-ref": "57c181e54e598580", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libsystemd.so.0.25.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "d4894011ade8526298b18a37f794b354b956e857" + }, + { + "alg": "SHA-256", + "content": "59ff11a172ad1c112f7f545091e15e41c44aae4b6037317d10228730e8356a80" + } + ] + }, + { + "bom-ref": "b409295883a2c955", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libthread_db-1.0.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "455d1e96d708a2b4123100daeebd4b33711a9194" + }, + { + "alg": "SHA-256", + "content": "795c44a933f91ebbeadddcaefbb0979dc4d72e2524a0b6987c9db7b96e437722" + } + ] + }, + { + "bom-ref": "08dd91532aa08227", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libtinfo.so.6.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "bef17407dd0b1d068e75b9e0aa09329da99c14c2" + }, + { + "alg": "SHA-256", + "content": "72c7adef419a13e01f95116626ae158ddbbbbd8510ba06d0df757ae234d0fc35" + } + ] + }, + { + "bom-ref": "05a1f7b4cd3231fe", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libudev.so.1.6.13", + "hashes": [ + { + "alg": "SHA-1", + "content": "9a670cb87977476eea7ea294bb313a0702a598c5" + }, + { + "alg": "SHA-256", + "content": "4e385b4b90d3012a7d0e2def5529c199c783f70c2bd53c088c163f4f9ce943e4" + } + ] + }, + { + "bom-ref": "40bc5fa37077012b", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libutil-2.28.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "b9bb580786432f6fcf27d8fe5d9bc412be1ed77d" + }, + { + "alg": "SHA-256", + "content": "2bf00466e9a6c4495ca041885e07306e18245cf9f4fec24a1a9f6cf5e7e62a37" + } + ] + }, + { + "bom-ref": "35a5a742f213def6", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libuuid.so.1.3.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "e081354a6fe943cb0a096a0b6c23dfb41dfacd03" + }, + { + "alg": "SHA-256", + "content": "7324d08a81ac3d9bb51026cc9c4e7701921c2243ae37908abdcd231ffec1c667" + } + ] + }, + { + "bom-ref": "b901e1ed050c1101", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libz.so.1.2.11", + "hashes": [ + { + "alg": "SHA-1", + "content": "dc4d7b20e9127b383e88d12f52e3f1bfe51bcc82" + }, + { + "alg": "SHA-256", + "content": "b6f9002df794a16defce57c6c4d4607c698bb58c12d52ef4236f8938cba242c1" + } + ] + }, + { + "bom-ref": "5416bae48714aaf3", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_access.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "774d1449b103df97bff4a92a3f655f5be57a9335" + }, + { + "alg": "SHA-256", + "content": "bab660e4cdf775697327da1113f844716c4a705866eabb687f788e7b17487c60" + } + ] + }, + { + "bom-ref": "2e356e262b9e7638", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_debug.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "93187c1670349990e9d773aad226f94e21043f19" + }, + { + "alg": "SHA-256", + "content": "2d679e7d9c383dbd2db46dfce0aff678292a9c758438fc645b1fe6b96613dcbe" + } + ] + }, + { + "bom-ref": "fb432ec62afe7d74", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_deny.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "691e9a9506b34ebe50d003648c37e3c38b1dee87" + }, + { + "alg": "SHA-256", + "content": "363c80fa49540a8a107b652e028e6cc640eba71c4b93932cc26462199566b5de" + } + ] + }, + { + "bom-ref": "0ecd56f34fd467ce", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_echo.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "767d1f6ea63b723b301fb3c16ef8624ee2f1d556" + }, + { + "alg": "SHA-256", + "content": "4032205c19c881d05fa0edf1f8a89e988f6a832163d702035bcf4f7ceebafdb2" + } + ] + }, + { + "bom-ref": "b2e78340aae19f13", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_env.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "1f31c34cab22aaa0a24a9bf0df156c0be5107aea" + }, + { + "alg": "SHA-256", + "content": "05b70b7eff290d37e22f21d46aba54a92a8993ff5bd4bc34c139dc96f07f15a2" + } + ] + }, + { + "bom-ref": "87ec9f2712f487d6", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_exec.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "3c985b2140502071cf4ddc9daf65e1bfac2e02c4" + }, + { + "alg": "SHA-256", + "content": "20efb572b64a35a2ecf803067ceadb1c205536a6655fd17e00ef1ed27faea6f3" + } + ] + }, + { + "bom-ref": "e3cff9c49a369431", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_faildelay.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "dc44e8abdc7f29c8902297ec7f3740eb5e8bd6d1" + }, + { + "alg": "SHA-256", + "content": "965ceebfdc353873e163e8f0062b58648aa36a9268ea94bcb38be3d30beaf3b8" + } + ] + }, + { + "bom-ref": "96cc3b3ac093490f", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_filter.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "8ce908520e81edb9057f70d7fac24d59e707a5f8" + }, + { + "alg": "SHA-256", + "content": "28a7c8eb39a414a1c191943566398ea8cf7666cfb51caae205194256dc8e3982" + } + ] + }, + { + "bom-ref": "6de6a08b4735d206", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_ftp.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "3ea8ef5b39b45126682d63a789f14a213a76ad76" + }, + { + "alg": "SHA-256", + "content": "2a3e1ee8d777760f823fddd1de17e6821e362be88f46466ef3772773a056eab0" + } + ] + }, + { + "bom-ref": "cce57e505929a700", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_group.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "b32b8ede2c4b0ee42b2bdf3a4ae870fb7cc2f7cd" + }, + { + "alg": "SHA-256", + "content": "07749ca3f24279b07433d3b7bcd3a6dafd76ae91a3e8b9396de6e1ef6eb17029" + } + ] + }, + { + "bom-ref": "293011057b4617c3", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_issue.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "59464a5330214e4384813371f3554f013bf831b7" + }, + { + "alg": "SHA-256", + "content": "99a7a483571e087eb163809845662fa19892291bc948778d2c4b33c25a0d0b2f" + } + ] + }, + { + "bom-ref": "6c7dcd2d92b3cd6d", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_keyinit.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "ca28f2c9a182a47b0a37267e993216e28efb125f" + }, + { + "alg": "SHA-256", + "content": "ee975d8f7295e213dd2d22a0f13b7d3ecffff33f5db3b3f9e891db5d4efe0677" + } + ] + }, + { + "bom-ref": "66d79c68253f38ee", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_lastlog.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "095bfca74b60617e65514016d51a6cf1f05162b8" + }, + { + "alg": "SHA-256", + "content": "b6392caf5e4ba559e739efcecc19818830207a410d22f12e70dfb091089a95c3" + } + ] + }, + { + "bom-ref": "e3cf05129aad17da", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_limits.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "3afad0919dc4bb14fdb03fa59866a75a691b7127" + }, + { + "alg": "SHA-256", + "content": "792f0fe9ef3694b98f359ef4ac64b30edf38a52979df9801d3237c0dd89ea5f0" + } + ] + }, + { + "bom-ref": "c0a853bbcbb86378", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_listfile.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "8b110467614bdcf0d7a8ba6a2a7998c7844b5d22" + }, + { + "alg": "SHA-256", + "content": "82ad040c0921ceb988026fb9ca2ed41738ed69c63777b5a94340445d0bc63f56" + } + ] + }, + { + "bom-ref": "24d4c3ec2f612967", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_localuser.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "c2fc0420b8334e55c05e02e7f7adb9f1fb05230a" + }, + { + "alg": "SHA-256", + "content": "b18d3fd8fe06ffa21e62bbad4081097c18b22ea8a8d3aaf87fee6dfe14935a6f" + } + ] + }, + { + "bom-ref": "78097bfe37caec01", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_loginuid.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "381e4cfcca2ca2eef92ae9667eda3e6157a848bd" + }, + { + "alg": "SHA-256", + "content": "8dc5991f485b647d4801a7893cbe8b25d51e31435e4dcdb055a90341042e1281" + } + ] + }, + { + "bom-ref": "e7d4da16bf42eaf2", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_mail.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "9b0e26efb87377baab9fc7648fc0382f89932c9a" + }, + { + "alg": "SHA-256", + "content": "b8c1e1c1addd28362b41f589f3ca34aec4f9fa96116f76cf0e7ddd04d170fe40" + } + ] + }, + { + "bom-ref": "2dcbb5eff3d4ffa2", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_mkhomedir.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "446d5c7a8813e43e6183c1ec6aca22c447dfc526" + }, + { + "alg": "SHA-256", + "content": "71de81bc3eed912bd6bdbaa6c5e7e22c9b2012a6bfcca62522a8a24e930aa969" + } + ] + }, + { + "bom-ref": "0a419cf58f0c42c7", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_motd.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "bdf8121d49f4c8cf5a01a75c5d1b8e1e3f7731d7" + }, + { + "alg": "SHA-256", + "content": "151adae65406635ce164c988ef198eab0c9424fced7ae70c431f6f8cfe5728ab" + } + ] + }, + { + "bom-ref": "8477fbd10792eba2", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_namespace.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "3494754fa286e5cf5f312eb619c3a23c66facac2" + }, + { + "alg": "SHA-256", + "content": "ab5fb90470b4bc55e3c83f0f7115520ca38b764b760a8e0894c3b59a89c2ea47" + } + ] + }, + { + "bom-ref": "00efb13427c4abc6", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_nologin.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "54722b1ceaa769763f5580184fc10c68589ce14f" + }, + { + "alg": "SHA-256", + "content": "00982438dc8f10f8f66e2951ecffb3f6f9e0d80764934a03f69a6fdf2254d1aa" + } + ] + }, + { + "bom-ref": "6ca346e05414d234", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_permit.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "e4ff19c0f9aa0f0061868a1dc1ed3c3b412b797e" + }, + { + "alg": "SHA-256", + "content": "f3065da323f94a1238b72b47c6feed630b65febe8d81940dd95789d4bce7a995" + } + ] + }, + { + "bom-ref": "676d87f48029a342", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_pwhistory.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "26494a125630d779a6cf6c37293054a17b396669" + }, + { + "alg": "SHA-256", + "content": "f28c90fcfd26720dbd59ec8bc2e1ce14d16ec25228de639d0f150c8590a676e3" + } + ] + }, + { + "bom-ref": "7c581837e13cd446", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_rhosts.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "3e640900f360baeb429018433e512f8fb2438311" + }, + { + "alg": "SHA-256", + "content": "a88ba201848f893d7e97252bba22acbfe757d894833a1ea6450c9487a6ca3827" + } + ] + }, + { + "bom-ref": "c736d6ccbc8197fc", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_rootok.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "60f1f31047572697a60f58e46d927b2c1659065f" + }, + { + "alg": "SHA-256", + "content": "242f87dbfefd392b7f4b9d57948cee38408f1a884a8107626cfbbd55d745ae77" + } + ] + }, + { + "bom-ref": "20f6e94caaae5a9d", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_securetty.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "e54c078b178439b0037af438d4c33ffa6f80cdac" + }, + { + "alg": "SHA-256", + "content": "521a222f586aec1c09d4b9b52dd5b6d5eafec657a3ade888dfef5dc3943b8f5d" + } + ] + }, + { + "bom-ref": "6e84deef0efcd1bb", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_selinux.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "c04f3a1bbce1f6152fd7b7c985e4508c92469121" + }, + { + "alg": "SHA-256", + "content": "2b0c665f761317d5a892dc241b9ac9f71008da10321fc4750710e90efce44f22" + } + ] + }, + { + "bom-ref": "c0c5a20fb55e47bb", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_sepermit.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "cb1385c202484d481f129f2b4b48a90f65640e2e" + }, + { + "alg": "SHA-256", + "content": "331288bb78fa2dc22cadb88938cf063c135b8bcf17f307ae8bb540ad076a7f17" + } + ] + }, + { + "bom-ref": "0b7b9c7057012f21", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_shells.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "1ca1c43fb171bee3ba2afe045f7d2705422c6de6" + }, + { + "alg": "SHA-256", + "content": "55c60f2ef4c1e0b06be5e7ffe79e9a06b889f19d461858620b460c8c4d6a7235" + } + ] + }, + { + "bom-ref": "d49ef6f2ed06e00e", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_stress.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "e3021434dd8b1707b6c2998bc5718c692bd1bc83" + }, + { + "alg": "SHA-256", + "content": "289cc1a3eeef51917b158b75dc27d3f1470a30e0a7c29f4763446b1e61dbe145" + } + ] + }, + { + "bom-ref": "bd6ba633ffefc2e9", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_succeed_if.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "29c125881ae80bc7ad165a8d1965996f3512a4c9" + }, + { + "alg": "SHA-256", + "content": "1d778c9a46b18684739d3b2941ad2b272004b13068d3bcbdb0cf86b3cab101af" + } + ] + }, + { + "bom-ref": "88cbad3f339f3194", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_tally.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "67425cb5b6bac3766efb96f8562050849b628e27" + }, + { + "alg": "SHA-256", + "content": "0853e0e7b0ea307bb679b0f28a82cda9941e62c57e2185f3ffc90da042edd24c" + } + ] + }, + { + "bom-ref": "e0a6d31aa85ffde5", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_tally2.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "ec8b2af76dfa301ffd7be838370d079cb094a5b9" + }, + { + "alg": "SHA-256", + "content": "12bc1472cd377616e76536bd2f1b8633d98e56ea8f184fcbf0769fd26cef2e39" + } + ] + }, + { + "bom-ref": "cca0ae2cc2f5c2c2", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_time.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "b38f5ce6bae3c1a3bb6b0b9742ff86d26575cdd0" + }, + { + "alg": "SHA-256", + "content": "9b7e611facc77a7af171f3f85ecf9defe4240a2a126b21572a13268f666791ee" + } + ] + }, + { + "bom-ref": "4aa0d437dd1bd54f", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_timestamp.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "ab2c454b1d3d4bea90b6879b5d0af5b407bc3d6d" + }, + { + "alg": "SHA-256", + "content": "f650228544bf213d6caa9ceda2de4f95f1eec1c37017fcd8679c3789a5a21b21" + } + ] + }, + { + "bom-ref": "1aadea2897493ae0", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_tty_audit.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "75f576513b85a56056635fb03fae20ae4b756ac0" + }, + { + "alg": "SHA-256", + "content": "e6a706f6d6a43fe54af833de83d5e4f441a781c6327ecb184d2484ef525b9eed" + } + ] + }, + { + "bom-ref": "48faf32374c6f13c", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_umask.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "659d1bea9c311dad4e89157b701d7a4e068a4391" + }, + { + "alg": "SHA-256", + "content": "da02bcfa356366fa15fb9931ffabdb05527f6649c249c7dac0b54d9bc5cee135" + } + ] + }, + { + "bom-ref": "e8398bfbff100a28", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_unix.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "27a2173d5c7b49257a2a0c59d5fa6c7a764e6249" + }, + { + "alg": "SHA-256", + "content": "3188549f928d6131aaf254b2a5889bc25d7e065a838399e045f6682c2f72d1cd" + } + ] + }, + { + "bom-ref": "b0c6f0e729fee005", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_userdb.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "3b19629eb43026921e12654638221300fe84a93a" + }, + { + "alg": "SHA-256", + "content": "2aff0524a5a5b1775c584bad8f282f3956b3d2faa4b0f87a0879ec2ad3a2d336" + } + ] + }, + { + "bom-ref": "463c062dad0be61f", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_warn.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "a090f567c58af49de3fdc954943b6694df8c91ff" + }, + { + "alg": "SHA-256", + "content": "bddb98e326cfc9ffc452704962c991b7bc4f87ba93c99542a3b203e13471c1b9" + } + ] + }, + { + "bom-ref": "50d4a347688f8cdf", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_wheel.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "fe10814c7c31cac0c786d37ae40ef4902f09a01c" + }, + { + "alg": "SHA-256", + "content": "482de4a63b7c0f788b51acd75d7705531d15f1099a31fc41d7eb8f7228e7a06a" + } + ] + }, + { + "bom-ref": "799b80c885e06237", + "type": "file", + "name": "/lib/x86_64-linux-gnu/security/pam_xauth.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "0d83fdc4720f503e63d161054d2157ea2d154d91" + }, + { + "alg": "SHA-256", + "content": "eec9e86dc2fd81a12d0de835845f285435082f50809687f97ddb9720f2976eb0" + } + ] + }, + { + "bom-ref": "a601ca6a9a321807", + "type": "file", + "name": "/sbin/agetty", + "hashes": [ + { + "alg": "SHA-1", + "content": "c3f37f0cb6edea5cfd54037eebd8ecd49225c79c" + }, + { + "alg": "SHA-256", + "content": "507098410a31cc8e8cb7bf7d5ab901c9085c2c550476de8184a08f0e054372ec" + } + ] + }, + { + "bom-ref": "d80a0b136e81d2cb", + "type": "file", + "name": "/sbin/badblocks", + "hashes": [ + { + "alg": "SHA-1", + "content": "1c123f9a243c463365223daf47366c6770004365" + }, + { + "alg": "SHA-256", + "content": "dd3ddf91b38dc22b9fcad64d0832ece37906de75984795859145fe2a1798fdea" + } + ] + }, + { + "bom-ref": "663b345fda9cfb83", + "type": "file", + "name": "/sbin/blkdiscard", + "hashes": [ + { + "alg": "SHA-1", + "content": "f7eb2712c997215416a2ae53545163cb56eddcb7" + }, + { + "alg": "SHA-256", + "content": "3150f7d7801cf1cb6f12553fc09657e69a9eb3f60e52c4b57059d217f1b7dafc" + } + ] + }, + { + "bom-ref": "e7a113d6eeb924ab", + "type": "file", + "name": "/sbin/blkid", + "hashes": [ + { + "alg": "SHA-1", + "content": "4fb851b42b1e0ae2d330815aee8878c61af5d2c8" + }, + { + "alg": "SHA-256", + "content": "6da18df92fd5a42f7037533a071dd9d33fd82d586b3a2ab5137b818e192a23c3" + } + ] + }, + { + "bom-ref": "82412461d1adee7b", + "type": "file", + "name": "/sbin/blkzone", + "hashes": [ + { + "alg": "SHA-1", + "content": "4422374d835bebf9d350ec77b7594d9eb65eda76" + }, + { + "alg": "SHA-256", + "content": "2a93f640422984f2ebed543227a6c15515d62ddeeb2e8216a7b5dc3d2a72d77a" + } + ] + }, + { + "bom-ref": "badf19a805aa1550", + "type": "file", + "name": "/sbin/blockdev", + "hashes": [ + { + "alg": "SHA-1", + "content": "855d03d3491f23b14b0ca0e547f107da6d3f576c" + }, + { + "alg": "SHA-256", + "content": "18cd4bac43b046e7af66289acb2625bc31e27e48e9553df3a85d650b39b5f47b" + } + ] + }, + { + "bom-ref": "84e570d8dae33133", + "type": "file", + "name": "/sbin/cfdisk", + "hashes": [ + { + "alg": "SHA-1", + "content": "aff0a1cc61d4c0cd1e14484b41926366be511cbc" + }, + { + "alg": "SHA-256", + "content": "d042c4f898a7b972f805b6eb1a46f8543e9b921ba089eafd9de6c46907727716" + } + ] + }, + { + "bom-ref": "359ba3e4beca1b3e", + "type": "file", + "name": "/sbin/chcpu", + "hashes": [ + { + "alg": "SHA-1", + "content": "d68e93fac0a5a9f5e4db4114f559024594e88e40" + }, + { + "alg": "SHA-256", + "content": "45304f8529c017c1d1fe6ca284286a10eb23874a80ae7e5434ed41d93dbe8f35" + } + ] + }, + { + "bom-ref": "d163cc0908e7f489", + "type": "file", + "name": "/sbin/ctrlaltdel", + "hashes": [ + { + "alg": "SHA-1", + "content": "9d2bdd0202d0369634a60b7593665cb64dbccb0d" + }, + { + "alg": "SHA-256", + "content": "5446c7ac6c915e1857b238d1b1a6730c2bff506e7a44d5bf34524cff78b947c4" + } + ] + }, + { + "bom-ref": "4ae09ed6f0cb148e", + "type": "file", + "name": "/sbin/debugfs", + "hashes": [ + { + "alg": "SHA-1", + "content": "670251b1a35591f3efeffaeaa0803c5d545d02c1" + }, + { + "alg": "SHA-256", + "content": "6e18779e17918bb6d3fcbacb69d6cd4c73b22d1433afad35243ae10e21d3e4ac" + } + ] + }, + { + "bom-ref": "0fd3b1c44a110b95", + "type": "file", + "name": "/sbin/dumpe2fs", + "hashes": [ + { + "alg": "SHA-1", + "content": "1bfd7e3beba89ef2f4ae3cd58ad064f08b748810" + }, + { + "alg": "SHA-256", + "content": "179ad59633e0acb819f6dc0edaf0094385925d5159df11044022afc8c1a9b8f7" + } + ] + }, + { + "bom-ref": "bd3496c983fceec3", + "type": "file", + "name": "/sbin/e2fsck", + "hashes": [ + { + "alg": "SHA-1", + "content": "e150f444ca85cdab1a25c3c0f9c48092f6765bb0" + }, + { + "alg": "SHA-256", + "content": "8397a5ecc28630ffa3a8d402b4a7a246cc3ebefb808b8bebcf970da7c866bbde" + } + ] + }, + { + "bom-ref": "ff3c21074a9c31f3", + "type": "file", + "name": "/sbin/e2image", + "hashes": [ + { + "alg": "SHA-1", + "content": "02cc993b317d38dbfca7f10c87bcbb5945d1f26c" + }, + { + "alg": "SHA-256", + "content": "92071eae89a59f42de674139580f725d06cb6d133aca64815d1e842ba9c8ce17" + } + ] + }, + { + "bom-ref": "6a117418ce5d5f73", + "type": "file", + "name": "/sbin/e2undo", + "hashes": [ + { + "alg": "SHA-1", + "content": "ec7d677ec20b8cb6db6b74b993fe6ba70cf2c9f3" + }, + { + "alg": "SHA-256", + "content": "8bc374ca21c17333c2aca8242fe87912747ccaf57c176b88030be934287e74c5" + } + ] + }, + { + "bom-ref": "527cb8b139ac0bed", + "type": "file", + "name": "/sbin/fdisk", + "hashes": [ + { + "alg": "SHA-1", + "content": "394ef7df99c84a06da6c36c0312eb96bcaa5f84a" + }, + { + "alg": "SHA-256", + "content": "d904c4a388a3df47aaf448afedec132d8946e13a677059a1f7c26a803acf152c" + } + ] + }, + { + "bom-ref": "2f1c0b9a496aa169", + "type": "file", + "name": "/sbin/findfs", + "hashes": [ + { + "alg": "SHA-1", + "content": "efb841c463c34593e3219e22f675a38b4c5c1764" + }, + { + "alg": "SHA-256", + "content": "1d6639d7d35982b9e917da90cf060f6ab3cca0656658e777395265222a34b36b" + } + ] + }, + { + "bom-ref": "7b63cdb9989599dd", + "type": "file", + "name": "/sbin/fsck", + "hashes": [ + { + "alg": "SHA-1", + "content": "b33436c50d946cb08bb6c06a6a3df2d45bea16a0" + }, + { + "alg": "SHA-256", + "content": "696ce2fa5275711e5ae94f5bf16c972c55f861ed6b1c71d68f995c91777cea09" + } + ] + }, + { + "bom-ref": "6fe8e5ad1476d6f8", + "type": "file", + "name": "/sbin/fsck.cramfs", + "hashes": [ + { + "alg": "SHA-1", + "content": "e8458aa500c66a2474a29be00b3c1244eb834d55" + }, + { + "alg": "SHA-256", + "content": "4a1cc30c82c22eb4328d42fd9df6900c42be529d03a2be47a92a5c82c062e96f" + } + ] + }, + { + "bom-ref": "fa058527dfffdbbd", + "type": "file", + "name": "/sbin/fsck.minix", + "hashes": [ + { + "alg": "SHA-1", + "content": "5f5d95f5d9879a1d22d6fab8f1f7260924e73932" + }, + { + "alg": "SHA-256", + "content": "4c49f9aadd5ee1c8105f93d581a0e0bbe43531656f538035db6935db72bfb844" + } + ] + }, + { + "bom-ref": "a76e2bd691e8c9de", + "type": "file", + "name": "/sbin/fsfreeze", + "hashes": [ + { + "alg": "SHA-1", + "content": "eca9c8ec6f6d73e0f9832be05f1ccaaf12e1643b" + }, + { + "alg": "SHA-256", + "content": "78c61d2ada38fc73183fc720936d77bd7456cf0b821d0711e91cdebb0453bae3" + } + ] + }, + { + "bom-ref": "739383996c667bfc", + "type": "file", + "name": "/sbin/fstab-decode", + "hashes": [ + { + "alg": "SHA-1", + "content": "34cd8192eacf0931a5bc9e44da8bf92b8d314a60" + }, + { + "alg": "SHA-256", + "content": "222f2aa846bc1c57670244dd46f72b0505be4c0d8b56357f7c64224f789a0a37" + } + ] + }, + { + "bom-ref": "e9e897dcc0406c3c", + "type": "file", + "name": "/sbin/fstrim", + "hashes": [ + { + "alg": "SHA-1", + "content": "ad7b559c615425c9f4b55a49ffd2c18f971fb3cd" + }, + { + "alg": "SHA-256", + "content": "77ac907b8196ebca74f0baeb7bb6a21b15f90bcc421b85ad4b30bbf93a9d5cab" + } + ] + }, + { + "bom-ref": "69eb8d9629d0cb43", + "type": "file", + "name": "/sbin/hwclock", + "hashes": [ + { + "alg": "SHA-1", + "content": "b36b2ba08967648235f20175f14129e802927428" + }, + { + "alg": "SHA-256", + "content": "24186640655d1dcfac10eea96f6fd60d617f32d7ab4647b855dd5cd339ceb4bb" + } + ] + }, + { + "bom-ref": "1ee20edc2d7d554c", + "type": "file", + "name": "/sbin/installkernel", + "hashes": [ + { + "alg": "SHA-1", + "content": "7c2877dfffadf500415e726bd6a755620bfc3a92" + }, + { + "alg": "SHA-256", + "content": "ab0bedb106c10aa2c2ce88ca6bb9db1a973854049b36a9961a532c4496051815" + } + ] + }, + { + "bom-ref": "83634f17f89d5255", + "type": "file", + "name": "/sbin/isosize", + "hashes": [ + { + "alg": "SHA-1", + "content": "919dd9fef08faacdee2236fb482e2cf557bb1604" + }, + { + "alg": "SHA-256", + "content": "9e78578aa2b90bab935b55f2bc830a18482bf95e12326b4afa0781e392ddb6e9" + } + ] + }, + { + "bom-ref": "8c4fe9120355fbed", + "type": "file", + "name": "/sbin/killall5", + "hashes": [ + { + "alg": "SHA-1", + "content": "56ba8e1497a6920eca299a9f46a5c87aba0552d5" + }, + { + "alg": "SHA-256", + "content": "d2115b6696114843c729b6189428729ba9c308c17d7d55497593075428e2e853" + } + ] + }, + { + "bom-ref": "31cbc5fd46d62b75", + "type": "file", + "name": "/sbin/ldconfig", + "hashes": [ + { + "alg": "SHA-1", + "content": "7c84a008ec6ae69467a05633766616578b5c3fda" + }, + { + "alg": "SHA-256", + "content": "71d1eddafa6e09f4991a044b12535ffa2e61aa40b830b10534465b25ff8a0105" + } + ] + }, + { + "bom-ref": "4fac0e39999dbf83", + "type": "file", + "name": "/sbin/logsave", + "hashes": [ + { + "alg": "SHA-1", + "content": "2d27b729e9b11edbc48e54cc51c5441e03bd89e4" + }, + { + "alg": "SHA-256", + "content": "b20df480ca9b0a4cd98c6e880046b2550d4b209c6ce46f357c739031cadf726d" + } + ] + }, + { + "bom-ref": "8cc5141feb5d0dac", + "type": "file", + "name": "/sbin/losetup", + "hashes": [ + { + "alg": "SHA-1", + "content": "7b245a217f1800ff79c688e99f8e9c4fb10c41ae" + }, + { + "alg": "SHA-256", + "content": "cf48e042a74fecdd3808d300d1ae841520a5ad67a6a1ce864d3205c174869ce8" + } + ] + }, + { + "bom-ref": "74c1a5034e896318", + "type": "file", + "name": "/sbin/mke2fs", + "hashes": [ + { + "alg": "SHA-1", + "content": "2e2ef7fe806e8e602a46131cd816ed2f1884fc28" + }, + { + "alg": "SHA-256", + "content": "373f20092949fe913e8a59d6a78f23d05ab92e008c2c27852b39cfe5e7e8a59d" + } + ] + }, + { + "bom-ref": "6fdd584f43dec65f", + "type": "file", + "name": "/sbin/mkfs", + "hashes": [ + { + "alg": "SHA-1", + "content": "29639a36820adfd3a3ea1b8e45004f48b39df846" + }, + { + "alg": "SHA-256", + "content": "d6fd4d3ffd3ccc6d1d98eaebbf6bd370b378bdbac61ba5836fd9ca304b7a782b" + } + ] + }, + { + "bom-ref": "b7b58d1650e8963b", + "type": "file", + "name": "/sbin/mkfs.bfs", + "hashes": [ + { + "alg": "SHA-1", + "content": "f3f28b27662f73aee000cc757f3cc6d5a5cf8bbc" + }, + { + "alg": "SHA-256", + "content": "bca4a529a3468ccca570f9e1c32e937b5ead823c2b941a5a132babbe0e868161" + } + ] + }, + { + "bom-ref": "3dda086737b0face", + "type": "file", + "name": "/sbin/mkfs.cramfs", + "hashes": [ + { + "alg": "SHA-1", + "content": "b9c1c8e8637cdd50a53418b94e93bb297f65bba1" + }, + { + "alg": "SHA-256", + "content": "f49a6fe1ba904c6281c376ffca09424b7f33329d040011a5076c12e4829c757c" + } + ] + }, + { + "bom-ref": "f3a197792a67254b", + "type": "file", + "name": "/sbin/mkfs.minix", + "hashes": [ + { + "alg": "SHA-1", + "content": "dc2cba2ac9165a0796dc1e33439dbd7a1c135d5a" + }, + { + "alg": "SHA-256", + "content": "cccb6fb8aa5b77f85214cab7bab8f5176911a86cdf6ce89d90acb2b7ec1d6e13" + } + ] + }, + { + "bom-ref": "da83ff87ee57d9b6", + "type": "file", + "name": "/sbin/mkhomedir_helper", + "hashes": [ + { + "alg": "SHA-1", + "content": "6475e5b4f4b7bcfa908306568f8dd2dd9032ef6b" + }, + { + "alg": "SHA-256", + "content": "41e759c85335eee1c687d4ec4dc196bfdd4334b4afe815d71c7d7b670731904e" + } + ] + }, + { + "bom-ref": "4bf4b073e36e623f", + "type": "file", + "name": "/sbin/mkswap", + "hashes": [ + { + "alg": "SHA-1", + "content": "ec9cc6f5f0b531387940ccd2072b6f6e2de8f2f1" + }, + { + "alg": "SHA-256", + "content": "29e38ab412b11845dd6836e46581f3376295d37094dac7eadc8a9fa2247ad96b" + } + ] + }, + { + "bom-ref": "ed883b23fc1c078f", + "type": "file", + "name": "/sbin/pam_tally", + "hashes": [ + { + "alg": "SHA-1", + "content": "68cf525eb16866fe9add4bacd1c0c111e62f4fb8" + }, + { + "alg": "SHA-256", + "content": "fa7f09027fdb5ac6685a0ec40d1e4f011261b589232f64320d38a383c5085c48" + } + ] + }, + { + "bom-ref": "a5adb654276bb0cf", + "type": "file", + "name": "/sbin/pam_tally2", + "hashes": [ + { + "alg": "SHA-1", + "content": "11f58e0a37e6a9bbd3b4ae9dce2e0fe37072ddad" + }, + { + "alg": "SHA-256", + "content": "e5782482e0652005bfe9023a69fa1f2f5d0046f53ea591ad1ad1e3163d250faf" + } + ] + }, + { + "bom-ref": "9d5601fbeca78a8b", + "type": "file", + "name": "/sbin/pivot_root", + "hashes": [ + { + "alg": "SHA-1", + "content": "c23f9b1ddd8bca0e2e2490eb8b28a188859814c7" + }, + { + "alg": "SHA-256", + "content": "86729ee3dcae08ba99f17a244ac92d196e993227b136b0a710f2523cd91f839e" + } + ] + }, + { + "bom-ref": "7ec52f4f9b8f8a20", + "type": "file", + "name": "/sbin/raw", + "hashes": [ + { + "alg": "SHA-1", + "content": "52252b087fd0db4ba81cd536d6653c088510b79f" + }, + { + "alg": "SHA-256", + "content": "9b854ca023bbe8e84f7ac73c06d8f68f938b247b1034c1a28e432fcb99f3aacf" + } + ] + }, + { + "bom-ref": "55e056e1a4a80c39", + "type": "file", + "name": "/sbin/resize2fs", + "hashes": [ + { + "alg": "SHA-1", + "content": "14a6de4f950d5eb33913c6057eda39d02bb6d001" + }, + { + "alg": "SHA-256", + "content": "84cc6cc19c62f9159b410f26dbb33d5d229c2eb223e50efd56f166a21c09ea43" + } + ] + }, + { + "bom-ref": "66130f524f0ceb70", + "type": "file", + "name": "/sbin/runuser", + "hashes": [ + { + "alg": "SHA-1", + "content": "7431e4279e0ec8a79281a59d544d91f9f6316bc2" + }, + { + "alg": "SHA-256", + "content": "3c0c4834897e870ed2d7d2d34b66664bc02c45429377187fe06681191f9730c2" + } + ] + }, + { + "bom-ref": "642b0e088d559b61", + "type": "file", + "name": "/sbin/sfdisk", + "hashes": [ + { + "alg": "SHA-1", + "content": "f45911632af6f783e1741dd9d197a63b75037eb7" + }, + { + "alg": "SHA-256", + "content": "7fbddcff20ca72f7888d8327695d1bcb812a174120a6f7116433cf62eb613403" + } + ] + }, + { + "bom-ref": "d919903bd99bc1de", + "type": "file", + "name": "/sbin/shadowconfig", + "hashes": [ + { + "alg": "SHA-1", + "content": "cb340f1fda080d89c0ddeb7d9d7b735051522e05" + }, + { + "alg": "SHA-256", + "content": "e456ba3088c0cb498ba86d9ce496273138e9cfe523feeb1a7e7083aae349dded" + } + ] + }, + { + "bom-ref": "6decbb35d3eee631", + "type": "file", + "name": "/sbin/start-stop-daemon", + "hashes": [ + { + "alg": "SHA-1", + "content": "8f43bf9e2b8245c95b43e49298056cf77f9f5d3c" + }, + { + "alg": "SHA-256", + "content": "0d0db60349ed1548da3bfc9381cf4fb2fe64f1e08912cf88588a1fa5a9de0641" + } + ] + }, + { + "bom-ref": "fef310c72ee1deab", + "type": "file", + "name": "/sbin/sulogin", + "hashes": [ + { + "alg": "SHA-1", + "content": "4219550bd4bb1d307755f68ce1a6745fc43036b8" + }, + { + "alg": "SHA-256", + "content": "6b45d42667111bef04d3c4c193d75c8d90bd4c55b50ec89cf888b1e79351e762" + } + ] + }, + { + "bom-ref": "a6bf0bf2a5974157", + "type": "file", + "name": "/sbin/swaplabel", + "hashes": [ + { + "alg": "SHA-1", + "content": "fac6a4ddda3fd04bbe87f47fe2afb36adb7e3c6c" + }, + { + "alg": "SHA-256", + "content": "d630c34074ffaafa66824c5fe6ad18f6d850e115dab4a6f850d934c10bb4e156" + } + ] + }, + { + "bom-ref": "150cfd50715868de", + "type": "file", + "name": "/sbin/swapoff", + "hashes": [ + { + "alg": "SHA-1", + "content": "f26b9ac58ced080e024d9215ab0d923ca936a196" + }, + { + "alg": "SHA-256", + "content": "423ccc69452a362f22985ec382b6c62f2fa7beed656f0a185a0bb589ff8f4e43" + } + ] + }, + { + "bom-ref": "0f974b5950cb5803", + "type": "file", + "name": "/sbin/swapon", + "hashes": [ + { + "alg": "SHA-1", + "content": "59e067da45cf36589443c0d6689ccad341cd4caf" + }, + { + "alg": "SHA-256", + "content": "c02ef3d3042e99b194567d7bf6eda3546bcfd30b797ed0c82dca0d0bd2991563" + } + ] + }, + { + "bom-ref": "db13c6cf3a8a6756", + "type": "file", + "name": "/sbin/switch_root", + "hashes": [ + { + "alg": "SHA-1", + "content": "3eac3d10517a854038922cf0885a91bf90eca9ad" + }, + { + "alg": "SHA-256", + "content": "0d01d5f98281a8fea65f59d2776087bd4470b01e2ab50eec3bd44eba26077333" + } + ] + }, + { + "bom-ref": "0bd98246e2319325", + "type": "file", + "name": "/sbin/tune2fs", + "hashes": [ + { + "alg": "SHA-1", + "content": "8b714ebfb943479fb8a4c78ea098afe7793472eb" + }, + { + "alg": "SHA-256", + "content": "bd45fd6febf7b164233650f5e9b4127ef7a26b72c3726d99685fe5d870964c0a" + } + ] + }, + { + "bom-ref": "ebc960611b6838ec", + "type": "file", + "name": "/sbin/unix_chkpwd", + "hashes": [ + { + "alg": "SHA-1", + "content": "21eb30ed2e0c583157a60126f6afb9b8f7a5f4d9" + }, + { + "alg": "SHA-256", + "content": "9924df1f84a1603abe1fab58b5ede42e8acf245f6ecba580e20cb3e698a4d158" + } + ] + }, + { + "bom-ref": "df1fbb94cad8de63", + "type": "file", + "name": "/sbin/unix_update", + "hashes": [ + { + "alg": "SHA-1", + "content": "0d79b449eba25b31abbac0410c8c74fb0c77e73c" + }, + { + "alg": "SHA-256", + "content": "661fcf8f2b0604d7dcc91412c369513a7787487f0a32a61bc8789477c1294277" + } + ] + }, + { + "bom-ref": "3b3c4a3f7fbebf46", + "type": "file", + "name": "/sbin/wipefs", + "hashes": [ + { + "alg": "SHA-1", + "content": "0392f95e6c183856fc5c0d80f99b481f5701ba41" + }, + { + "alg": "SHA-256", + "content": "ab614a6465bfbe4dee1767c844885b242749ec536dd41303c7fcc2a38ce38a65" + } + ] + }, + { + "bom-ref": "a912a2b6dbccdcba", + "type": "file", + "name": "/sbin/zramctl", + "hashes": [ + { + "alg": "SHA-1", + "content": "492c85d8a689e9ac61f9cc345f6270eb278bdea0" + }, + { + "alg": "SHA-256", + "content": "4a3e88232eb18fa8f80543f0d4536d20138cf532d20a49029fc0839471d30ac7" + } + ] + }, + { + "bom-ref": "75f74f57e4642bd7", + "type": "file", + "name": "/usr/bin/[", + "hashes": [ + { + "alg": "SHA-1", + "content": "78f6a87622a17fef7e841e8e0902c361d29a3a1d" + }, + { + "alg": "SHA-256", + "content": "0d019b94ab38b099a2d51a90cebb22a2d06f9b6754862eb99c85df906abe70f8" + } + ] + }, + { + "bom-ref": "fae1f07baca3473b", + "type": "file", + "name": "/usr/bin/addpart", + "hashes": [ + { + "alg": "SHA-1", + "content": "0e42b38b035869d02f3d2d72a501d303a30ff820" + }, + { + "alg": "SHA-256", + "content": "405e79fae01caa30b951f51c7c1c0784b7c2bd8782561e9a9b0516a534be34f7" + } + ] + }, + { + "bom-ref": "910bd2666ee38bfa", + "type": "file", + "name": "/usr/bin/apt", + "hashes": [ + { + "alg": "SHA-1", + "content": "5504d65ef97bc3091c064018021b723c3f82f841" + }, + { + "alg": "SHA-256", + "content": "eeca3ffa98fb4501a447d06c8a81cacaa8058968e5d9775a43ecfccbb22430ff" + } + ] + }, + { + "bom-ref": "141662044e034e21", + "type": "file", + "name": "/usr/bin/apt-cache", + "hashes": [ + { + "alg": "SHA-1", + "content": "0033c4e456054b696a7e62c9cbe6637fc4dde2e3" + }, + { + "alg": "SHA-256", + "content": "b1a90fdc9b9b18c5490999dd1759b4f59101a1801de29154fa0f556f757c5c32" + } + ] + }, + { + "bom-ref": "f00a4da39bd7c2f1", + "type": "file", + "name": "/usr/bin/apt-cdrom", + "hashes": [ + { + "alg": "SHA-1", + "content": "b71950191fdbf079e0cf7fdd3cf1ec64c886b7fa" + }, + { + "alg": "SHA-256", + "content": "cbc7a0407377e88f1c9a8d217d967d524a2d1363cec46ef23ede28194be466c3" + } + ] + }, + { + "bom-ref": "38e55dd497584df1", + "type": "file", + "name": "/usr/bin/apt-config", + "hashes": [ + { + "alg": "SHA-1", + "content": "e01fa47cdec9b41afd63cbe89bd8fcdf8a9873e3" + }, + { + "alg": "SHA-256", + "content": "7717bdbd58a6f19bc9782fa17674a951b20d959254f10f84f9ae90c29c82c3dd" + } + ] + }, + { + "bom-ref": "29bf63c23b5774cf", + "type": "file", + "name": "/usr/bin/apt-get", + "hashes": [ + { + "alg": "SHA-1", + "content": "df2df28a7aff92487b14543629f372ec2a310c51" + }, + { + "alg": "SHA-256", + "content": "64a67f0e95c6fc931cf85c8e60d5885e7e68259d99c3675453a32c273503326d" + } + ] + }, + { + "bom-ref": "2a6d894efd6f2f2e", + "type": "file", + "name": "/usr/bin/apt-key", + "hashes": [ + { + "alg": "SHA-1", + "content": "5c3a08c3c8f50fcdeb1b512d70918daf6ddebb82" + }, + { + "alg": "SHA-256", + "content": "820c1c9b3aac8147aa9312d3f01a0132b085c6ab0b28790f95185f0a49f07da2" + } + ] + }, + { + "bom-ref": "740246cd0047d6c1", + "type": "file", + "name": "/usr/bin/apt-mark", + "hashes": [ + { + "alg": "SHA-1", + "content": "2f006d15b362f38b920632c0a4445b837e391b20" + }, + { + "alg": "SHA-256", + "content": "c23f36a11af89270eabeddc134325e5869d31bb48f32c10124c74804618d2c50" + } + ] + }, + { + "bom-ref": "e0cefd9c8af27994", + "type": "file", + "name": "/usr/bin/arch", + "hashes": [ + { + "alg": "SHA-1", + "content": "f8f0f01366ed35aee7bc07577b75ae53bea10049" + }, + { + "alg": "SHA-256", + "content": "7fd525b937cbc47f186e4fec788805ccba5490521bb7b6f4bdd85adc7f0cc63a" + } + ] + }, + { + "bom-ref": "81a0b1e9cbdb88f7", + "type": "file", + "name": "/usr/bin/b2sum", + "hashes": [ + { + "alg": "SHA-1", + "content": "b615a3bec1e15e6ccae37e4f9693c8e6e41f7f09" + }, + { + "alg": "SHA-256", + "content": "a569c91067478059e7b00dd69feae10920d738d7055ad269e4d6758e22762657" + } + ] + }, + { + "bom-ref": "6ca85edb39feb293", + "type": "file", + "name": "/usr/bin/base32", + "hashes": [ + { + "alg": "SHA-1", + "content": "f5afd167016d6eb9cfd0bbe85901deba6510ebfc" + }, + { + "alg": "SHA-256", + "content": "2d290f90f33dc93538c8932addbac120446e850bf97bf2ccf2c67f8115764fd9" + } + ] + }, + { + "bom-ref": "fc6cf549c8b41760", + "type": "file", + "name": "/usr/bin/base64", + "hashes": [ + { + "alg": "SHA-1", + "content": "932c2954b40e6e72ab180aec1f897f4f9d7797a8" + }, + { + "alg": "SHA-256", + "content": "42d393d1d6a7a7a61dbd9b4e4927b7014b32dd60d978774259bdaee3a356e24d" + } + ] + }, + { + "bom-ref": "0bb42505bd856fbc", + "type": "file", + "name": "/usr/bin/basename", + "hashes": [ + { + "alg": "SHA-1", + "content": "23afc8b4a34bd94a32c7b05a9f5c5ace69f40331" + }, + { + "alg": "SHA-256", + "content": "39b8ab40f79a2b8594eb0d25d48a1a76508e0b9b1ca969a5fb5f27307bd2839f" + } + ] + }, + { + "bom-ref": "1580ebc7d74a9974", + "type": "file", + "name": "/usr/bin/bashbug", + "hashes": [ + { + "alg": "SHA-1", + "content": "8e8e05c5d45000af4070c7a47ad537d83e9d040b" + }, + { + "alg": "SHA-256", + "content": "23c2cac11a40e09cf296bb3d1632ab63a650eefc6428131b8589ec4ecf786695" + } + ] + }, + { + "bom-ref": "8f4c0d2a68ea0beb", + "type": "file", + "name": "/usr/bin/catchsegv", + "hashes": [ + { + "alg": "SHA-1", + "content": "6d53d45eb1aa8b45b193d293d25b5839cc8e1b56" + }, + { + "alg": "SHA-256", + "content": "df5bf542a5b90c094541dcade99254a4de6ead94710b14507e993def5b075534" + } + ] + }, + { + "bom-ref": "a3d32b964f7d10b2", + "type": "file", + "name": "/usr/bin/chage", + "hashes": [ + { + "alg": "SHA-1", + "content": "52a93308fb2a565da97c732facb3b6828a5f07a7" + }, + { + "alg": "SHA-256", + "content": "ce8fd714eca98ab1c1d88b2b7c4504da92cca82faa27efecbe2ed6cff43654fa" + } + ] + }, + { + "bom-ref": "841d2ac100de50e0", + "type": "file", + "name": "/usr/bin/chattr", + "hashes": [ + { + "alg": "SHA-1", + "content": "cc15c1e6852d2ade693aa9b9df1cfa46b1643831" + }, + { + "alg": "SHA-256", + "content": "5a828bb6febbd3cc8d2681eb21557a893cabd28fd3567b371290cf7129c90635" + } + ] + }, + { + "bom-ref": "59ba4094c68c7be6", + "type": "file", + "name": "/usr/bin/chcon", + "hashes": [ + { + "alg": "SHA-1", + "content": "0574f6031047b9497213683e2f2d7904b6f9eca2" + }, + { + "alg": "SHA-256", + "content": "5181c7a39844f780e7ccf2db9d6fe9a181a1be125efa5b93508cd9899229f378" + } + ] + }, + { + "bom-ref": "90ac343a52567805", + "type": "file", + "name": "/usr/bin/chfn", + "hashes": [ + { + "alg": "SHA-1", + "content": "b7a4c87ea63fe6143d3f3fae19b150108e411223" + }, + { + "alg": "SHA-256", + "content": "cbceea7340d68dcc30e4eb9e6cc4f69a26c078ef1ff26c55360fb65184a8296c" + } + ] + }, + { + "bom-ref": "a4ef30c6071efaef", + "type": "file", + "name": "/usr/bin/choom", + "hashes": [ + { + "alg": "SHA-1", + "content": "e4a9a2884bc607526c070ba98afb01030e4c9ec6" + }, + { + "alg": "SHA-256", + "content": "93fd8c46e0f08929daff3012abbfa1c2cdd66c6ef3c18977870b03967f86949a" + } + ] + }, + { + "bom-ref": "d20c075db63fac89", + "type": "file", + "name": "/usr/bin/chrt", + "hashes": [ + { + "alg": "SHA-1", + "content": "31de858fb8e5b01d2275d66b3eca394b27afc13e" + }, + { + "alg": "SHA-256", + "content": "ec0d2f48407f61040efabe720000329e17e0a60968ad940e2c05e642125429e2" + } + ] + }, + { + "bom-ref": "d22253c01acd6196", + "type": "file", + "name": "/usr/bin/chsh", + "hashes": [ + { + "alg": "SHA-1", + "content": "0c581db9459610550b11ac36532b9fa24d251ebd" + }, + { + "alg": "SHA-256", + "content": "82d20231cdf5423495a00b4e35b544497d6293d85b5e72133668bafe342587d1" + } + ] + }, + { + "bom-ref": "1b053276106ba54c", + "type": "file", + "name": "/usr/bin/cksum", + "hashes": [ + { + "alg": "SHA-1", + "content": "7a51bf06099e5d1b11238e63b7ebd18ee56a9056" + }, + { + "alg": "SHA-256", + "content": "9349e8260e4d984b798bec8a65fea7a3797feef793dfae7ecc4333200862f844" + } + ] + }, + { + "bom-ref": "79907bb1627515e2", + "type": "file", + "name": "/usr/bin/clear", + "hashes": [ + { + "alg": "SHA-1", + "content": "3f4fab0f46e02a10b6f4e4131e7217019e943b1f" + }, + { + "alg": "SHA-256", + "content": "5a39bf45e605a36b7c8ba0397b74383cdc99bf089d1c454260a5c2fdbc41cd93" + } + ] + }, + { + "bom-ref": "7a1a83acaac53a70", + "type": "file", + "name": "/usr/bin/clear_console", + "hashes": [ + { + "alg": "SHA-1", + "content": "67902adb84f7b0e7fbad087ef925a1786c5eb3a9" + }, + { + "alg": "SHA-256", + "content": "401a53500876f168a0725b2db2668de574435d8f6b01e755ec5e17c6bdadc3c7" + } + ] + }, + { + "bom-ref": "b259a4a7841c4b84", + "type": "file", + "name": "/usr/bin/cmp", + "hashes": [ + { + "alg": "SHA-1", + "content": "7dab48f32960e31c872439b4e6950b58469504c9" + }, + { + "alg": "SHA-256", + "content": "37c56ef3028f1622476d6861466183a421b7bbeb2cf7c651aa781a34660eadb1" + } + ] + }, + { + "bom-ref": "63ae9bd29a38b541", + "type": "file", + "name": "/usr/bin/comm", + "hashes": [ + { + "alg": "SHA-1", + "content": "807261986996aed457a9c8fdaf1c40773b9f76e3" + }, + { + "alg": "SHA-256", + "content": "df7c233963926c4c971d0b85f1af9845984635bbc46d9557319995100afabe27" + } + ] + }, + { + "bom-ref": "02c6d71ade074bc8", + "type": "file", + "name": "/usr/bin/csplit", + "hashes": [ + { + "alg": "SHA-1", + "content": "81cfb5be928e70a900e56c29837f3e25a3eef38c" + }, + { + "alg": "SHA-256", + "content": "a10aac32f80e8286115ea7d6a08a7db6d0cdef5dbf1490206fcc1314840cc3a8" + } + ] + }, + { + "bom-ref": "48f990387610d02e", + "type": "file", + "name": "/usr/bin/cut", + "hashes": [ + { + "alg": "SHA-1", + "content": "0689f59ff263ec91e74f637634b6942e3b9fd231" + }, + { + "alg": "SHA-256", + "content": "d1dc9ec31835e244e7233b25f0785ce67327c99dcc274062a1aff5cacf5dd613" + } + ] + }, + { + "bom-ref": "99d38e86e1a16515", + "type": "file", + "name": "/usr/bin/deb-systemd-helper", + "hashes": [ + { + "alg": "SHA-1", + "content": "dfde7cbdc8714059cd2b25801809231e4c42cd4e" + }, + { + "alg": "SHA-256", + "content": "76e6e95c8a57ffa45df1ca84342b97f331958b9af6066178c67bf447c6d12447" + } + ] + }, + { + "bom-ref": "4fea8db6322b2f83", + "type": "file", + "name": "/usr/bin/deb-systemd-invoke", + "hashes": [ + { + "alg": "SHA-1", + "content": "018fd487b799048c59199ae69e42d2ec06178271" + }, + { + "alg": "SHA-256", + "content": "dcbfd9ec0b940d3eb53f63285b396994f1e091280e632a12c708cc6d49ea4806" + } + ] + }, + { + "bom-ref": "34d0c0364d770d55", + "type": "file", + "name": "/usr/bin/debconf", + "hashes": [ + { + "alg": "SHA-1", + "content": "e5fdf013a529ab1fafea520535b660feca1a5658" + }, + { + "alg": "SHA-256", + "content": "d365d13eb1dff880be7361e4043d25875075776445d4edd1eb4fb1e451a2e41a" + } + ] + }, + { + "bom-ref": "1096cd8ad1cb8b9e", + "type": "file", + "name": "/usr/bin/debconf-apt-progress", + "hashes": [ + { + "alg": "SHA-1", + "content": "c6e90c187f546d4e2b1968b56dbb2904f9b5a3ef" + }, + { + "alg": "SHA-256", + "content": "93fb257df4185cc6b83858bdae3c7aec0a4f759a848c743a0b0fd7c7091cf34b" + } + ] + }, + { + "bom-ref": "fd12174dd1d8e6fa", + "type": "file", + "name": "/usr/bin/debconf-communicate", + "hashes": [ + { + "alg": "SHA-1", + "content": "5783cff11d024454030745e28bc81edae1278792" + }, + { + "alg": "SHA-256", + "content": "705b8ce793f999f21bf2f20348b390738a139116c9e483fb39165a508fde4d27" + } + ] + }, + { + "bom-ref": "c7ebcbd96d98be8f", + "type": "file", + "name": "/usr/bin/debconf-copydb", + "hashes": [ + { + "alg": "SHA-1", + "content": "dcd02e9edac2712756664b713d4ec5f0066b861a" + }, + { + "alg": "SHA-256", + "content": "085ff55904c81115d8d65f8862f0a5ad393e062da3047762e4d9cd4f5ba761f4" + } + ] + }, + { + "bom-ref": "c6d09bcd6885c74c", + "type": "file", + "name": "/usr/bin/debconf-escape", + "hashes": [ + { + "alg": "SHA-1", + "content": "de0e7ce4e7369158826dd9caa0894eb5a357e743" + }, + { + "alg": "SHA-256", + "content": "6c17a536ca0fcefa24a7d37f7eaebc02e774415b3160836918cff6cecdef807d" + } + ] + }, + { + "bom-ref": "92ab3dab3fdf39f6", + "type": "file", + "name": "/usr/bin/debconf-set-selections", + "hashes": [ + { + "alg": "SHA-1", + "content": "3a407308248020865ad84bf58807ee96f9e518ac" + }, + { + "alg": "SHA-256", + "content": "8085a988bb9850fd9a3405c8a1f8e643c197811f6edf53dfc5ad20ef85040224" + } + ] + }, + { + "bom-ref": "399347d4d931c99f", + "type": "file", + "name": "/usr/bin/debconf-show", + "hashes": [ + { + "alg": "SHA-1", + "content": "28c58caf56dfd7a565de284297c301bfd3e5b33f" + }, + { + "alg": "SHA-256", + "content": "9dd0bfe9a51d92af868012a32a8190b83a6f4b0834385d12033732b24ee2ceca" + } + ] + }, + { + "bom-ref": "3ab046133a8ae956", + "type": "file", + "name": "/usr/bin/delpart", + "hashes": [ + { + "alg": "SHA-1", + "content": "c8ca354e8b48110c1da958ffcdde9dad7ce54ccd" + }, + { + "alg": "SHA-256", + "content": "4ea8dd80e719de087bd70482d84c763cb46e6323774ad99905099a32ab97bbb6" + } + ] + }, + { + "bom-ref": "5350eda9dd25257a", + "type": "file", + "name": "/usr/bin/diff", + "hashes": [ + { + "alg": "SHA-1", + "content": "44635916fcf393ca1d0f71939403f0b87f22bb7b" + }, + { + "alg": "SHA-256", + "content": "44b4e0c34a331c5527a342f7a997c3dc50f7fcf19090891a02fca606be6126c3" + } + ] + }, + { + "bom-ref": "dfda27b56d96b6eb", + "type": "file", + "name": "/usr/bin/diff3", + "hashes": [ + { + "alg": "SHA-1", + "content": "94d6d4ed1848e7cef8c89850d477001cf576487c" + }, + { + "alg": "SHA-256", + "content": "ac88b338c653726b8d3352abf11d4461d8b96d05db998a968cdcac89255bcb7e" + } + ] + }, + { + "bom-ref": "f64df25379591d23", + "type": "file", + "name": "/usr/bin/dircolors", + "hashes": [ + { + "alg": "SHA-1", + "content": "e3274d19b0f22a215e737335743ac2b60813508b" + }, + { + "alg": "SHA-256", + "content": "55b27e396293571d61fec217f7d915c7ba03ae08ceccaecf6f83f20f438c236f" + } + ] + }, + { + "bom-ref": "1a4adea063713682", + "type": "file", + "name": "/usr/bin/dirname", + "hashes": [ + { + "alg": "SHA-1", + "content": "079d64b7d2f5787321f1c091e9b16f4c6add56a1" + }, + { + "alg": "SHA-256", + "content": "24beee981c1b61a17830f71ff5d807429364aa5f706be15bf01fa8ced73d2fd6" + } + ] + }, + { + "bom-ref": "6f8ae637b64aaee4", + "type": "file", + "name": "/usr/bin/dpkg", + "hashes": [ + { + "alg": "SHA-1", + "content": "80fdea410509bb9d40c8cc30f8525cd539378fbc" + }, + { + "alg": "SHA-256", + "content": "7d72b31a687ec8daa6d6119c76a40cde819954c8fbd558d0085fcbc37e91567f" + } + ] + }, + { + "bom-ref": "b1e395d2c7d69a15", + "type": "file", + "name": "/usr/bin/dpkg-deb", + "hashes": [ + { + "alg": "SHA-1", + "content": "d32ba02f93034dab5cb7e93c3c5b14d110e46203" + }, + { + "alg": "SHA-256", + "content": "a26bf81b48b1b57e1352018c8179284adf568e58495337be32f8f233d3af83e6" + } + ] + }, + { + "bom-ref": "1d2d9b1996669fa6", + "type": "file", + "name": "/usr/bin/dpkg-divert", + "hashes": [ + { + "alg": "SHA-1", + "content": "e0df181db97236f160d23c5c1207f3a1ca2364aa" + }, + { + "alg": "SHA-256", + "content": "0c6009a4a1013f01957a9b70941a225267df88e4fade71541227b14f715cdf1f" + } + ] + }, + { + "bom-ref": "22687e1d9df818c7", + "type": "file", + "name": "/usr/bin/dpkg-maintscript-helper", + "hashes": [ + { + "alg": "SHA-1", + "content": "b3caa6ac32a2c2650303a2455d95d70b77fab896" + }, + { + "alg": "SHA-256", + "content": "254463753cd9c6bc4093c556b181dc418a3fa10ade361fac3bb87ec4525d7aa9" + } + ] + }, + { + "bom-ref": "a93db0da83c16a51", + "type": "file", + "name": "/usr/bin/dpkg-query", + "hashes": [ + { + "alg": "SHA-1", + "content": "ea81d9dd7c2e99f4abb760f8cbd18c2b088c1ed8" + }, + { + "alg": "SHA-256", + "content": "a31b4485435a1d83a973f49ee88247e4ad83b3f7b50383cdb461f71c490944fb" + } + ] + }, + { + "bom-ref": "7dec0ab6f5d624ae", + "type": "file", + "name": "/usr/bin/dpkg-split", + "hashes": [ + { + "alg": "SHA-1", + "content": "d6652dc50a6d22c25b4d4aeec3610f227593697c" + }, + { + "alg": "SHA-256", + "content": "1d266a7a19b9f25ae3bcaaf112b3f4a391df65a75c9f472da5859134229cb4c1" + } + ] + }, + { + "bom-ref": "57f60cc2d6704650", + "type": "file", + "name": "/usr/bin/dpkg-statoverride", + "hashes": [ + { + "alg": "SHA-1", + "content": "cd1cc65b6a119f0798190de7f18208eb54446091" + }, + { + "alg": "SHA-256", + "content": "dc07dd836f8b8cebf2d6730a0e2b34c111ce83d0625a68a466edc9ba7d2766e9" + } + ] + }, + { + "bom-ref": "ca44a57f9eff2396", + "type": "file", + "name": "/usr/bin/dpkg-trigger", + "hashes": [ + { + "alg": "SHA-1", + "content": "1f7b555fceba8cca8bacba1f7fd0a2982e7e2817" + }, + { + "alg": "SHA-256", + "content": "1d0c778f3148496e7474be0ff57f685af4807a3780854a0d3f9f52eff4a2163c" + } + ] + }, + { + "bom-ref": "fe53649d079d4bda", + "type": "file", + "name": "/usr/bin/du", + "hashes": [ + { + "alg": "SHA-1", + "content": "256d96a47adad92a30f83738ed9bd38fcf0bc4a3" + }, + { + "alg": "SHA-256", + "content": "ad0a9752107c5ef02da3a2f35d719356e290e8449a552012d6edbfe3a663127a" + } + ] + }, + { + "bom-ref": "bf1ef3e15cc0f895", + "type": "file", + "name": "/usr/bin/env", + "hashes": [ + { + "alg": "SHA-1", + "content": "a2089dd1825e29b098577a2b47ca301f5c9ddbce" + }, + { + "alg": "SHA-256", + "content": "3019d8a4257a25fd9f6f9bd728f8a7e5090bbd910175fd42d6abc7e5a9de3118" + } + ] + }, + { + "bom-ref": "83b20454ac90edae", + "type": "file", + "name": "/usr/bin/expand", + "hashes": [ + { + "alg": "SHA-1", + "content": "12939dcb46e0e91bc643b3b4ed7a9c5d0c52f343" + }, + { + "alg": "SHA-256", + "content": "6a38a721db80be5881e71d516b91d2994ae256a742944dee213e31604e1946ec" + } + ] + }, + { + "bom-ref": "7f16dc71cbd6c8ec", + "type": "file", + "name": "/usr/bin/expiry", + "hashes": [ + { + "alg": "SHA-1", + "content": "48bcad9dfda959ec7ce52f3ac5a4643933753025" + }, + { + "alg": "SHA-256", + "content": "006c97d68fbddf175f326e554693ceaea984d6406bb5f837f1a00a7c6008218d" + } + ] + }, + { + "bom-ref": "3e5188f472063f6e", + "type": "file", + "name": "/usr/bin/expr", + "hashes": [ + { + "alg": "SHA-1", + "content": "e2fd30834bb6cdf88219b335bd7be5cf0feb8675" + }, + { + "alg": "SHA-256", + "content": "25086c727990cb1afe45f76a1cd98d2e87d2cc153792f6f23f032c0705734bd9" + } + ] + }, + { + "bom-ref": "eee24e8b770cc291", + "type": "file", + "name": "/usr/bin/factor", + "hashes": [ + { + "alg": "SHA-1", + "content": "9962b8e1b983cc851505c3c097af683401ce9773" + }, + { + "alg": "SHA-256", + "content": "058b812512a84ee327f2fc5b86118b26713d285ddf92ff8fe502a7794678afb2" + } + ] + }, + { + "bom-ref": "e70bf19bfce34bb1", + "type": "file", + "name": "/usr/bin/faillog", + "hashes": [ + { + "alg": "SHA-1", + "content": "441c747693457c5696c88863ed399a39530fb663" + }, + { + "alg": "SHA-256", + "content": "31bdc92df6e728514622d7543960ab7fe242ed74bbaf101c73ac2bf59c7e67e0" + } + ] + }, + { + "bom-ref": "b5698615cd3e57d5", + "type": "file", + "name": "/usr/bin/fallocate", + "hashes": [ + { + "alg": "SHA-1", + "content": "bba1af024dec700c99276c7b8ec5c659d966f6ec" + }, + { + "alg": "SHA-256", + "content": "c5dfb56988c18ddd26bdd4939935acf79aafc030e2398381b01777f0e22a1dc0" + } + ] + }, + { + "bom-ref": "4f6f9713684f2843", + "type": "file", + "name": "/usr/bin/fincore", + "hashes": [ + { + "alg": "SHA-1", + "content": "01bf18bd050bdb3290c14aaecc0ecf41215be437" + }, + { + "alg": "SHA-256", + "content": "20e608de722b7417a60c0a6547cddac494bb51e0a5064f008bea5f9afa27d852" + } + ] + }, + { + "bom-ref": "fb4766640d37fd5f", + "type": "file", + "name": "/usr/bin/find", + "hashes": [ + { + "alg": "SHA-1", + "content": "830989cf621cadde370e9c4373a69997ca1bc66b" + }, + { + "alg": "SHA-256", + "content": "95363b9d3e08a30e17f253845b37086da2a7aebc58b9715781b5d6e4ea1ff52d" + } + ] + }, + { + "bom-ref": "fd11d3415d3702db", + "type": "file", + "name": "/usr/bin/flock", + "hashes": [ + { + "alg": "SHA-1", + "content": "1bb29c66272bde64925572b84d4b16e916b76638" + }, + { + "alg": "SHA-256", + "content": "19ef8724eaa5aee890a4f39163b8a31eff1e575ffc1382d5fa84b32a3d677b28" + } + ] + }, + { + "bom-ref": "cf48c7db61277ee4", + "type": "file", + "name": "/usr/bin/fmt", + "hashes": [ + { + "alg": "SHA-1", + "content": "b5efee8a42bc53e49184655f90a4d76a0f5de4dd" + }, + { + "alg": "SHA-256", + "content": "4be3eee43ea3f116de122a77d33a102ce8a9d9d5b36c2afbd3b1480d0b40dfa7" + } + ] + }, + { + "bom-ref": "6156236492f21cab", + "type": "file", + "name": "/usr/bin/fold", + "hashes": [ + { + "alg": "SHA-1", + "content": "d3043922dc780add6bfed89fadebf9aea818a023" + }, + { + "alg": "SHA-256", + "content": "f31d818d4e57d7d42ffdb429cbb1b6155b154067d0481a7edb915e8777bc3aba" + } + ] + }, + { + "bom-ref": "da99da51c48cd221", + "type": "file", + "name": "/usr/bin/getconf", + "hashes": [ + { + "alg": "SHA-1", + "content": "3225bf5c72ba246e4915b0b1c3b99471bdaae09e" + }, + { + "alg": "SHA-256", + "content": "69006964fcd012340b667074de8b0b8ed1426be89c5f12f23f1b7cb8d21ddfff" + } + ] + }, + { + "bom-ref": "9f9ac2827491c8e2", + "type": "file", + "name": "/usr/bin/getent", + "hashes": [ + { + "alg": "SHA-1", + "content": "0c3b629c5b27fb81630a6b4f6dae87ad963e68a1" + }, + { + "alg": "SHA-256", + "content": "f02b2b5779a71b7614996a8dbed8101eb5461d543ee6cfcfc2cc271df2573b67" + } + ] + }, + { + "bom-ref": "57b4238d64e9957b", + "type": "file", + "name": "/usr/bin/getopt", + "hashes": [ + { + "alg": "SHA-1", + "content": "f01a4071008d06a7836bd1b2884935555172ffb1" + }, + { + "alg": "SHA-256", + "content": "363e78a6c332f99c946d0590e7c9d5a1305d4205a6a080211c9918fd27bff16d" + } + ] + }, + { + "bom-ref": "f59c5cfb0b000574", + "type": "file", + "name": "/usr/bin/gpasswd", + "hashes": [ + { + "alg": "SHA-1", + "content": "579fe63f6fef2e408aaa7bd012d5b8e0cb2b5aca" + }, + { + "alg": "SHA-256", + "content": "10a744e7e2f4605e51dc9703c48b7fbfdab58f80a2761e021fed08efe57a04a4" + } + ] + }, + { + "bom-ref": "8f9c6b8bdc041e23", + "type": "file", + "name": "/usr/bin/gpgv", + "hashes": [ + { + "alg": "SHA-1", + "content": "1dbb6657f20f69b9445389e8622084dad9679027" + }, + { + "alg": "SHA-256", + "content": "b18ddb3630fbf8ea97e59581b9913d245ee46c85482b86423ab341c1401eaf3b" + } + ] + }, + { + "bom-ref": "8898879ad2bb7d8c", + "type": "file", + "name": "/usr/bin/groups", + "hashes": [ + { + "alg": "SHA-1", + "content": "817e1a830ccc8acd7797b38867826440741d96d6" + }, + { + "alg": "SHA-256", + "content": "73e1f99e8cb63ab41f70c9126d1447614eb92b91b4d73c02b8aec41632759d89" + } + ] + }, + { + "bom-ref": "4dc5d38afff99ad0", + "type": "file", + "name": "/usr/bin/head", + "hashes": [ + { + "alg": "SHA-1", + "content": "808fc4072d2f062f5ab6c349ad3fea2ca7721932" + }, + { + "alg": "SHA-256", + "content": "39d5c29be06804d15a86f9af2703987e55e2d3580ed22d36910d60bce017c22b" + } + ] + }, + { + "bom-ref": "753bf84bdac47c1a", + "type": "file", + "name": "/usr/bin/hostid", + "hashes": [ + { + "alg": "SHA-1", + "content": "2cf24cc788120476a45aa635a212cc7d1ba4a6e4" + }, + { + "alg": "SHA-256", + "content": "b59ddd548a9fffa181b4174b5e27985e2b6ea65c265d5f4a2248333d26d6c7ab" + } + ] + }, + { + "bom-ref": "35884bf26094706d", + "type": "file", + "name": "/usr/bin/iconv", + "hashes": [ + { + "alg": "SHA-1", + "content": "cafa27f746d4232fb03366e3f59ed70cae4a0ec7" + }, + { + "alg": "SHA-256", + "content": "fb8ac11fc295409e9bee397487d162ab3cdb1d837b088f3eba630519a02a723c" + } + ] + }, + { + "bom-ref": "d67a9bf49cadd80a", + "type": "file", + "name": "/usr/bin/id", + "hashes": [ + { + "alg": "SHA-1", + "content": "b3780ddea64673cbb3550d9acb2b30dfe9c03d34" + }, + { + "alg": "SHA-256", + "content": "cb7cc70d9ac7843dcede6c9ae0fe26f993cc5a9caa5fce924d289a84d3f61354" + } + ] + }, + { + "bom-ref": "1149b03d4f1c4e78", + "type": "file", + "name": "/usr/bin/infocmp", + "hashes": [ + { + "alg": "SHA-1", + "content": "db4e127949d27b8010a106c7dcf86457f0d3c07d" + }, + { + "alg": "SHA-256", + "content": "6fef5eea555f9209a8670cef97a88e36cd91d361e362955481ae8a089c9ca6c8" + } + ] + }, + { + "bom-ref": "3bbd5a9088e3d19f", + "type": "file", + "name": "/usr/bin/install", + "hashes": [ + { + "alg": "SHA-1", + "content": "a7f1dd86fd171b0abb81ab85fef5068703caba9a" + }, + { + "alg": "SHA-256", + "content": "77f8e112d7f30299d235d3c5510d508bbf2e72f236ff78fdf9f5e8fe74755c10" + } + ] + }, + { + "bom-ref": "d9314b8b0e24a53e", + "type": "file", + "name": "/usr/bin/ionice", + "hashes": [ + { + "alg": "SHA-1", + "content": "d051256487ce6f025b529ce475cdac99160f5355" + }, + { + "alg": "SHA-256", + "content": "020a4770df648af0e608425a1dba3df35a14dad7bb4d3f17dde3e3142a35f820" + } + ] + }, + { + "bom-ref": "4101f22d0fd5b4f4", + "type": "file", + "name": "/usr/bin/ipcmk", + "hashes": [ + { + "alg": "SHA-1", + "content": "b12a02551c1722f988d008e6f164380ec1056ceb" + }, + { + "alg": "SHA-256", + "content": "f138b161674fcdb002255f70e630f2ad2be2631370904617de7f9011bbe2cf94" + } + ] + }, + { + "bom-ref": "3d1c5f3279ee2ead", + "type": "file", + "name": "/usr/bin/ipcrm", + "hashes": [ + { + "alg": "SHA-1", + "content": "7e2b6532c0c11bb1f9effb3b408ee42ad9621338" + }, + { + "alg": "SHA-256", + "content": "7566f9bb14fe4a820151c18c0623bf0bd32597b68df60926e2f48831b3ce9b13" + } + ] + }, + { + "bom-ref": "53e94ab1c2cb048e", + "type": "file", + "name": "/usr/bin/ipcs", + "hashes": [ + { + "alg": "SHA-1", + "content": "b811634ef5e05053d3d1dfdf8d215c6be8403c82" + }, + { + "alg": "SHA-256", + "content": "1eed2ffb57faa6eacce030525f90715685347d84dccf976cda5e853b3fb253d8" + } + ] + }, + { + "bom-ref": "7b42b76bea8d0d3d", + "type": "file", + "name": "/usr/bin/ischroot", + "hashes": [ + { + "alg": "SHA-1", + "content": "0f28ab9690d386d90c36564755818e3a61dfb73b" + }, + { + "alg": "SHA-256", + "content": "76f622f57e04d1fe9ce2295c22b0ebe0c6f78f3e215ef9b05a7eb4b9b9844c7b" + } + ] + }, + { + "bom-ref": "ae76bc8c31f19ce0", + "type": "file", + "name": "/usr/bin/join", + "hashes": [ + { + "alg": "SHA-1", + "content": "2f3855d01341a1bb958dc8ee652072652cd74b5e" + }, + { + "alg": "SHA-256", + "content": "8a59dcf7d741cb00b2a4186812378fe17e542b45a114b9862a1255a07e1e62e9" + } + ] + }, + { + "bom-ref": "4a424e3dd841b0ed", + "type": "file", + "name": "/usr/bin/last", + "hashes": [ + { + "alg": "SHA-1", + "content": "f74456090dd2ee5c4e28c18926467c3b99ce9fe4" + }, + { + "alg": "SHA-256", + "content": "168f89efa2f45d55a5232f5becf3278cb1c7921236f47b57a2564dcb69ed69ac" + } + ] + }, + { + "bom-ref": "06ffb8ffe4a704cb", + "type": "file", + "name": "/usr/bin/lastlog", + "hashes": [ + { + "alg": "SHA-1", + "content": "a62f3cc1e5764a570ccd620dfe39f8ad24cfa420" + }, + { + "alg": "SHA-256", + "content": "df1b5da620277dcc483ec075f4cafa0ccd3947a88fb5297b05f4a3ce0b6b3d99" + } + ] + }, + { + "bom-ref": "f2f74e2e162e4a8d", + "type": "file", + "name": "/usr/bin/ldd", + "hashes": [ + { + "alg": "SHA-1", + "content": "89bd29baa70ab2a9731e18195ccb96008b9e2035" + }, + { + "alg": "SHA-256", + "content": "1aac7d17853aeec225cc8e467df72bdee385aa31ce42438bdfc9b40c9da289c3" + } + ] + }, + { + "bom-ref": "ab403198d7f48380", + "type": "file", + "name": "/usr/bin/link", + "hashes": [ + { + "alg": "SHA-1", + "content": "781592c0f593429296530813b432873acd02df12" + }, + { + "alg": "SHA-256", + "content": "996e73bac0b2f73ecf0a5a272c012beaa8ad33a7830dbfe9e8e6990382d32ee7" + } + ] + }, + { + "bom-ref": "b1dcad1173eb4e08", + "type": "file", + "name": "/usr/bin/locale", + "hashes": [ + { + "alg": "SHA-1", + "content": "debd47c1a1ad5af274e491ce785eb3eedf373a7d" + }, + { + "alg": "SHA-256", + "content": "af9bdfae49ed856386e21334b0841dfa9a333cd6ac71bb3bd9eb84206b707c00" + } + ] + }, + { + "bom-ref": "c65679c61645633e", + "type": "file", + "name": "/usr/bin/localedef", + "hashes": [ + { + "alg": "SHA-1", + "content": "1e65ddf5857154d18c35acbb339bbffe61c3df85" + }, + { + "alg": "SHA-256", + "content": "8ea9e24e31aa7783df9874471445a99ed48cfea01672b38bac8225eb4989671c" + } + ] + }, + { + "bom-ref": "ea3b4df13552a84e", + "type": "file", + "name": "/usr/bin/logger", + "hashes": [ + { + "alg": "SHA-1", + "content": "1bfb072ab8ca0711bfce43f17fd55d3e3af01ce4" + }, + { + "alg": "SHA-256", + "content": "980f078c81db4cc976376604ebd7b1482ae5ad7d5a4fae9bda89280004448595" + } + ] + }, + { + "bom-ref": "28bc08be974eabff", + "type": "file", + "name": "/usr/bin/logname", + "hashes": [ + { + "alg": "SHA-1", + "content": "d83368de80929b6b79aa589107dd39c5a159acaf" + }, + { + "alg": "SHA-256", + "content": "3cf0e8279b2629c4a72d2488feb57788e63d78578d85347b6053b650d3436f6b" + } + ] + }, + { + "bom-ref": "811e1df21d20fd1d", + "type": "file", + "name": "/usr/bin/lsattr", + "hashes": [ + { + "alg": "SHA-1", + "content": "a368ed2928f684ad013c550bd4be649421d967f1" + }, + { + "alg": "SHA-256", + "content": "563994c49467c289111e37d6b4e8f9e2535e81f06d6e7473f46c674a76f1ac3e" + } + ] + }, + { + "bom-ref": "c14265d7647a54d7", + "type": "file", + "name": "/usr/bin/lscpu", + "hashes": [ + { + "alg": "SHA-1", + "content": "1d9b2347b76c1941acf2e2a9a95f0ec9741231b0" + }, + { + "alg": "SHA-256", + "content": "d6cf21fc255dfc14d02151ffdfd0015a2bb36512e8a615d2e1e984a8f138e84f" + } + ] + }, + { + "bom-ref": "b86d6ca9c1c32e58", + "type": "file", + "name": "/usr/bin/lsipc", + "hashes": [ + { + "alg": "SHA-1", + "content": "68884ec9d2238f30ac09c32c94cbf64171c11ad0" + }, + { + "alg": "SHA-256", + "content": "6bb43ef56eb017b9d6d51d62a6fc258a66d21ce676113c53437b47e893efde6d" + } + ] + }, + { + "bom-ref": "d4666b109d1492aa", + "type": "file", + "name": "/usr/bin/lslocks", + "hashes": [ + { + "alg": "SHA-1", + "content": "5fc0c008d0425c71ee9461a5a13f5c613410e5e3" + }, + { + "alg": "SHA-256", + "content": "16ab7b23d383c590695821c6da0b28125457a65bd2c41ac3c0c4033042cbabdd" + } + ] + }, + { + "bom-ref": "67b731921cdccc08", + "type": "file", + "name": "/usr/bin/lslogins", + "hashes": [ + { + "alg": "SHA-1", + "content": "4a3362bf671c5b7c9428acb8528bd227db7b7c72" + }, + { + "alg": "SHA-256", + "content": "de1e073c4f4891b874029d57ac0301b26e5cecc89bca17ef923262c61f9a1f77" + } + ] + }, + { + "bom-ref": "b0df13a5dd3238f2", + "type": "file", + "name": "/usr/bin/lsmem", + "hashes": [ + { + "alg": "SHA-1", + "content": "143ce74de3b5fe85b847c32201a1904350c1bf90" + }, + { + "alg": "SHA-256", + "content": "b412fe7aa80294a64d5f0f0b9f4afb0f27b863e4aae0899930f40a4d03971f37" + } + ] + }, + { + "bom-ref": "ebdb1bb684c69c8e", + "type": "file", + "name": "/usr/bin/lsns", + "hashes": [ + { + "alg": "SHA-1", + "content": "42466401940698189d9cee53c79c2f61b98aaacb" + }, + { + "alg": "SHA-256", + "content": "c95e8cadf6c14597d36d3341ed5e6195d5fb22fc118df3d79ddeaa4b46666eed" + } + ] + }, + { + "bom-ref": "4a22353a4523d192", + "type": "file", + "name": "/usr/bin/mawk", + "hashes": [ + { + "alg": "SHA-1", + "content": "c3549bdcc204d9a05806b37b4cfdacbb81671b2a" + }, + { + "alg": "SHA-256", + "content": "3f791f82e19d9723c55fe3fb70e85a19c1663e5b76936293fe75070667a42cba" + } + ] + }, + { + "bom-ref": "c2f3134a189a2529", + "type": "file", + "name": "/usr/bin/mcookie", + "hashes": [ + { + "alg": "SHA-1", + "content": "d2ccc176f41fe7f2fcc67ab445edbb01016e100f" + }, + { + "alg": "SHA-256", + "content": "20645cfb8304ab3837c154a66abef20bbad27b8a3d0665ecf11c02390ec29349" + } + ] + }, + { + "bom-ref": "558f3c03bbfa3583", + "type": "file", + "name": "/usr/bin/md5sum", + "hashes": [ + { + "alg": "SHA-1", + "content": "ba3c3bb0060e3d4570a5472b2cbcb8d6750369b9" + }, + { + "alg": "SHA-256", + "content": "5aaa453c3dabb22892e4072ff46c4730a4cf25b3c0817c2952ec23b39f8a1765" + } + ] + }, + { + "bom-ref": "babe2f2ebe28afe8", + "type": "file", + "name": "/usr/bin/mesg", + "hashes": [ + { + "alg": "SHA-1", + "content": "456d8242b45af1bcbce8db07c35bf50a156a925c" + }, + { + "alg": "SHA-256", + "content": "6e042b80e4b264d0ed6792bace0326aefde44612301749f25f040ec1cad38835" + } + ] + }, + { + "bom-ref": "0cb9a199d8db1428", + "type": "file", + "name": "/usr/bin/mkfifo", + "hashes": [ + { + "alg": "SHA-1", + "content": "5ddb15c2621bd7dd46e2e5e873d93ad523325313" + }, + { + "alg": "SHA-256", + "content": "355a640c64aff10abe702a3f3e52825e4038105381547ea4b321ad5cafbd91a8" + } + ] + }, + { + "bom-ref": "9b69ceb25c2bca1f", + "type": "file", + "name": "/usr/bin/namei", + "hashes": [ + { + "alg": "SHA-1", + "content": "5b792a78a20fc0c08040a1d47a9ede5d9e10fb2d" + }, + { + "alg": "SHA-256", + "content": "25d2f97201970437f1e3e0b6492768cbbebd0302b22e4d3f4d435688ae76f5fa" + } + ] + }, + { + "bom-ref": "d66a49b60f8f3341", + "type": "file", + "name": "/usr/bin/newgrp", + "hashes": [ + { + "alg": "SHA-1", + "content": "35d17851104ed44d9821e06af5a546af018c62b9" + }, + { + "alg": "SHA-256", + "content": "f625f76368f7708b0835014474e2e415563a0dcfec62aed1d7c468908d09be49" + } + ] + }, + { + "bom-ref": "bc12ee2657406764", + "type": "file", + "name": "/usr/bin/nice", + "hashes": [ + { + "alg": "SHA-1", + "content": "61624fbe3f99bd15008dbfdfa0664d7d26044e37" + }, + { + "alg": "SHA-256", + "content": "b548a1d06b95ac7ef8327c64a4b192c4a9100fcfb38daed6d7cf4ef519d22c90" + } + ] + }, + { + "bom-ref": "43cf0cf2aee0db3b", + "type": "file", + "name": "/usr/bin/nl", + "hashes": [ + { + "alg": "SHA-1", + "content": "55976bab4239077ac7f3ac3cf1b9da5c9a7d6d95" + }, + { + "alg": "SHA-256", + "content": "9a110bf879e1e13c2996172fec34df394b751540e987e57ec6e7225e8b824cfb" + } + ] + }, + { + "bom-ref": "ab8951c27c5d1afd", + "type": "file", + "name": "/usr/bin/nohup", + "hashes": [ + { + "alg": "SHA-1", + "content": "64fb8dad82a2a7dc6897a207edad45ff241ff2f4" + }, + { + "alg": "SHA-256", + "content": "5b585877ab2f002014b14312f32f81d427eaf2191aea061ecfa975636af780f6" + } + ] + }, + { + "bom-ref": "8a88686607208185", + "type": "file", + "name": "/usr/bin/nproc", + "hashes": [ + { + "alg": "SHA-1", + "content": "ac01848d7925f07e9eb7db408928871c7a98e9c9" + }, + { + "alg": "SHA-256", + "content": "15c233f41815ad82f479ac02cb6fbcb9dc27c43b6018bde480e59ce103a849bc" + } + ] + }, + { + "bom-ref": "2ed864cc2132852b", + "type": "file", + "name": "/usr/bin/nsenter", + "hashes": [ + { + "alg": "SHA-1", + "content": "8007e8f8622d5c0cb6bb2910065d0302052a3022" + }, + { + "alg": "SHA-256", + "content": "f5a55c919c531230167ca1edaad8ab1512daf86386adb993dfd241250f2aa013" + } + ] + }, + { + "bom-ref": "fc4ba99970bef093", + "type": "file", + "name": "/usr/bin/numfmt", + "hashes": [ + { + "alg": "SHA-1", + "content": "d334c9426214a1a1d55b7784a1a555062fdc96ea" + }, + { + "alg": "SHA-256", + "content": "4200be4a31dabc9a2902ffa6fa83d5b639c7dfd52a21cd3ca6aabc66a7284c87" + } + ] + }, + { + "bom-ref": "e7365c623fb1b127", + "type": "file", + "name": "/usr/bin/od", + "hashes": [ + { + "alg": "SHA-1", + "content": "d8eb0670570cefe76c86c52d7ba877f8827bc57f" + }, + { + "alg": "SHA-256", + "content": "57e286b2e1fde7a20c2427d1f520006393b58e1f9647e0e24a625de641d95627" + } + ] + }, + { + "bom-ref": "9cc134ee2ac0f806", + "type": "file", + "name": "/usr/bin/partx", + "hashes": [ + { + "alg": "SHA-1", + "content": "72c764fc297575ad0bb4c058937722971b1107c3" + }, + { + "alg": "SHA-256", + "content": "cd2b9c6054efdc437eac75b4dce3f699fb182e64785dc70bbbc344a0cba685ca" + } + ] + }, + { + "bom-ref": "a3c732e39d542fbe", + "type": "file", + "name": "/usr/bin/passwd", + "hashes": [ + { + "alg": "SHA-1", + "content": "a1af417c59ad07c44cbcb61eff0ff920d24e878c" + }, + { + "alg": "SHA-256", + "content": "e05c0d20ef30f9dadb349f2958b9ab9e3320f6840d86e09fbea7b0a7bb087117" + } + ] + }, + { + "bom-ref": "db1c8c9ece64b4ce", + "type": "file", + "name": "/usr/bin/paste", + "hashes": [ + { + "alg": "SHA-1", + "content": "a93ab63d84dbea6654ccd47d9e06205e77d4e0d8" + }, + { + "alg": "SHA-256", + "content": "4d5ea32e0cfc404809dc97debb232521a12f0577209a2cd11583a44800d8e4d0" + } + ] + }, + { + "bom-ref": "881ffef05036bd85", + "type": "file", + "name": "/usr/bin/pathchk", + "hashes": [ + { + "alg": "SHA-1", + "content": "0fb31f19cec8978591fa1adbe3cfb23e0fa47720" + }, + { + "alg": "SHA-256", + "content": "f7f9f55c3c3bde3b856eac1395be762df6c921c86c16807096553862635a8478" + } + ] + }, + { + "bom-ref": "abc66fcfcb547cc7", + "type": "file", + "name": "/usr/bin/perl", + "hashes": [ + { + "alg": "SHA-1", + "content": "36d5ac6fbed709a88d2d29b39c58ba5bafab092c" + }, + { + "alg": "SHA-256", + "content": "a6183e3a2fb0d18980a94a7ce7d45657a52b54ff16ca925eabf9bc993dd37e24" + } + ] + }, + { + "bom-ref": "a57fe6fd8ffdbce1", + "type": "file", + "name": "/usr/bin/pinky", + "hashes": [ + { + "alg": "SHA-1", + "content": "416a1100e5016c46b8c23c837af460fe00e8a158" + }, + { + "alg": "SHA-256", + "content": "8cb654dcf86c96de61527531caf10df8b9847e7b5d065843c9b866d8a598abbc" + } + ] + }, + { + "bom-ref": "4c76c090fc30a9f3", + "type": "file", + "name": "/usr/bin/pldd", + "hashes": [ + { + "alg": "SHA-1", + "content": "c42a6979778e31393c10ddc3c8610fb51f226939" + }, + { + "alg": "SHA-256", + "content": "4790648179ee5fc1cab0d86a7e2a28cf79ba78ee6c63baa523829d6ec8ec73ed" + } + ] + }, + { + "bom-ref": "b8b7baacca4c8737", + "type": "file", + "name": "/usr/bin/pr", + "hashes": [ + { + "alg": "SHA-1", + "content": "1db7e215fc0c32b33b389100a2c160229b279de3" + }, + { + "alg": "SHA-256", + "content": "f921e51a30d43f5ccc981ef0ffd88ed24a05b67d07a63526ff1543b4ca625320" + } + ] + }, + { + "bom-ref": "1434b34a01549a93", + "type": "file", + "name": "/usr/bin/printenv", + "hashes": [ + { + "alg": "SHA-1", + "content": "fde4796508dbe14c00b70e2129fb9789a41da078" + }, + { + "alg": "SHA-256", + "content": "6af38428adc7db2ef3416119e7dbf1b93a5f7bcc4b664fb76132740e5ee2bcc5" + } + ] + }, + { + "bom-ref": "dab144b8acfe059c", + "type": "file", + "name": "/usr/bin/printf", + "hashes": [ + { + "alg": "SHA-1", + "content": "aac4558940907a261e0c40cc7ca1b8537b629f3e" + }, + { + "alg": "SHA-256", + "content": "d6ef6fa611d0e6e18f9b0653ef5140d6302b575e3c3ccd274e360c776f63bdd7" + } + ] + }, + { + "bom-ref": "d0a84f4b9bf355c7", + "type": "file", + "name": "/usr/bin/prlimit", + "hashes": [ + { + "alg": "SHA-1", + "content": "edd2862b7ddeafa3d75f829f729c039fee9c003f" + }, + { + "alg": "SHA-256", + "content": "836b4cde29904046a70bbbd7220a87001b71853686ba553d18e357bad3d17c13" + } + ] + }, + { + "bom-ref": "4434bb1741ddb2b6", + "type": "file", + "name": "/usr/bin/ptx", + "hashes": [ + { + "alg": "SHA-1", + "content": "618d568daab45c233e8d08a36dcf266c480f37f0" + }, + { + "alg": "SHA-256", + "content": "f585d840da42f573aa5832046409364f87e228be65c706a620fe76d6f999d66d" + } + ] + }, + { + "bom-ref": "d799981b7d7b7840", + "type": "file", + "name": "/usr/bin/realpath", + "hashes": [ + { + "alg": "SHA-1", + "content": "402d9268764da8ce4875d5a3a0b1b476694f6009" + }, + { + "alg": "SHA-256", + "content": "4abf0f672fe8ef16a72ac4643a6d0df5f58e40bbe1bfa06385f60f877e4f2e98" + } + ] + }, + { + "bom-ref": "a06860aab1010347", + "type": "file", + "name": "/usr/bin/rename.ul", + "hashes": [ + { + "alg": "SHA-1", + "content": "0e8a3063dc073051956d59133c331c14eaf28935" + }, + { + "alg": "SHA-256", + "content": "599d5723227b231772f32a98c877d3237e36e2716b4eb4ba4747a6740e491534" + } + ] + }, + { + "bom-ref": "2c25a0ffd7987f79", + "type": "file", + "name": "/usr/bin/renice", + "hashes": [ + { + "alg": "SHA-1", + "content": "55f1d1b595307b9d7ffdc68e177b2a83145e5e28" + }, + { + "alg": "SHA-256", + "content": "896d0ac084ddf03aa85ab04fd14c6f6582aa461450109868e37a8365527e4d4c" + } + ] + }, + { + "bom-ref": "539fcfdb84517db1", + "type": "file", + "name": "/usr/bin/resizepart", + "hashes": [ + { + "alg": "SHA-1", + "content": "f9f5ff399a6222925f0ed5b58064a32ad5e18ec1" + }, + { + "alg": "SHA-256", + "content": "0bfb4f34bd61d4b0b4a1fc58b58b59dcc0d3d0220bbfdcb6836b8b8e3c7b451e" + } + ] + }, + { + "bom-ref": "fd8b83999640644b", + "type": "file", + "name": "/usr/bin/rev", + "hashes": [ + { + "alg": "SHA-1", + "content": "a31f29ddae2febbf4ab849743b95c65f2c09cc3c" + }, + { + "alg": "SHA-256", + "content": "ba55f806d7c27254ca2e542d98c0c626cef3fdc0d080a2dde84c73e4e17d8f71" + } + ] + }, + { + "bom-ref": "441fe63fe995b9fc", + "type": "file", + "name": "/usr/bin/rgrep", + "hashes": [ + { + "alg": "SHA-1", + "content": "af86e14387b692c347dcc6659508cef278f74edc" + }, + { + "alg": "SHA-256", + "content": "0a8dd42a068115f058ae57f9f6347e1ef0ae2ffea89bf658b132974246577748" + } + ] + }, + { + "bom-ref": "6873350626ea46b7", + "type": "file", + "name": "/usr/bin/runcon", + "hashes": [ + { + "alg": "SHA-1", + "content": "cefe27219861bd2afa8c606c306b3aa00e46f3a3" + }, + { + "alg": "SHA-256", + "content": "261ca0e3ac57667833b63bd5985154e0d317a3805bef38fd00c08532c17fc07b" + } + ] + }, + { + "bom-ref": "a990ca5231869a03", + "type": "file", + "name": "/usr/bin/savelog", + "hashes": [ + { + "alg": "SHA-1", + "content": "6c635edd39daea69067f5959965666598f8bec5c" + }, + { + "alg": "SHA-256", + "content": "b5a489fb4c7a5e1240384e25ac3ff8de31e0456a3439fd7ad0ae28fda777c5db" + } + ] + }, + { + "bom-ref": "f2f187a367413886", + "type": "file", + "name": "/usr/bin/script", + "hashes": [ + { + "alg": "SHA-1", + "content": "16674a9afe91be753200145aa257bab75b87d13d" + }, + { + "alg": "SHA-256", + "content": "87eec26bdf79a18a610cc7b48e0e729ff37e05834977947c009bda981d9c4177" + } + ] + }, + { + "bom-ref": "ad090f1c3a362e0c", + "type": "file", + "name": "/usr/bin/scriptreplay", + "hashes": [ + { + "alg": "SHA-1", + "content": "ea273e9d299c1a38b6fd516e73203b95be90ff9d" + }, + { + "alg": "SHA-256", + "content": "17152532e1beb76936dc4281ef59428b3481a4402288c925ae27ed92a6972e41" + } + ] + }, + { + "bom-ref": "2753818b8a2a1882", + "type": "file", + "name": "/usr/bin/sdiff", + "hashes": [ + { + "alg": "SHA-1", + "content": "c3499b4de98b48b3739551fc5c7d99119b55247d" + }, + { + "alg": "SHA-256", + "content": "250c75399a7c30c248555fad92cd8831a376d7bc40de3fcc5c11f61b0f3e554e" + } + ] + }, + { + "bom-ref": "598003e31f716b81", + "type": "file", + "name": "/usr/bin/seq", + "hashes": [ + { + "alg": "SHA-1", + "content": "5ffa3190d7ebae1ed8028dad87f6a47125b555b9" + }, + { + "alg": "SHA-256", + "content": "ec9904627b0d154453bd1081cc4ece1d47b0d5cb0833167697a7d52e9a3ddfa6" + } + ] + }, + { + "bom-ref": "daf93d20a2f3dd7e", + "type": "file", + "name": "/usr/bin/setarch", + "hashes": [ + { + "alg": "SHA-1", + "content": "83a44bf7d40d6989b75a84b787e0231508a2f55f" + }, + { + "alg": "SHA-256", + "content": "b704c7eae64ebde4d9a989aa35e1573a310241e16266596dc049513fbfdc1bf3" + } + ] + }, + { + "bom-ref": "9e00b15984e1caee", + "type": "file", + "name": "/usr/bin/setpriv", + "hashes": [ + { + "alg": "SHA-1", + "content": "2f143b0760834c6e1e39d0c368f8c8016292d42c" + }, + { + "alg": "SHA-256", + "content": "63280721ada6697db6fbe90ef74584681c3212dee51a255ec1de7679b6aec1d2" + } + ] + }, + { + "bom-ref": "a629981f1cae4322", + "type": "file", + "name": "/usr/bin/setsid", + "hashes": [ + { + "alg": "SHA-1", + "content": "f590a9e2c56a4383e4c5e15e05502e208f2e729d" + }, + { + "alg": "SHA-256", + "content": "9c41b143d31691253cc791b47cd89bb102f083a11a762400ae3c1f27c9a134a4" + } + ] + }, + { + "bom-ref": "5509fcf306b2ff02", + "type": "file", + "name": "/usr/bin/setterm", + "hashes": [ + { + "alg": "SHA-1", + "content": "e0d412c17d430f75b0735f0a55157f2c928a6cf7" + }, + { + "alg": "SHA-256", + "content": "d4be0e239f7dcab70a5c0fff7986a5e42831a729596759c940923308492c1c96" + } + ] + }, + { + "bom-ref": "40c5c5d307922e56", + "type": "file", + "name": "/usr/bin/sha1sum", + "hashes": [ + { + "alg": "SHA-1", + "content": "44fd655f5276c743430fe1b42897abd70e159922" + }, + { + "alg": "SHA-256", + "content": "8cea75855517a6cd215900e7efc8cabb23fec146f2e19ed55d778e5c91679906" + } + ] + }, + { + "bom-ref": "cf0d982d54d47788", + "type": "file", + "name": "/usr/bin/sha224sum", + "hashes": [ + { + "alg": "SHA-1", + "content": "dfa1f0528b51f599b9c12843afb0e87041ce24dc" + }, + { + "alg": "SHA-256", + "content": "bcf4f3012c78d148864163c7bd5034aeb9c57371272032d7fb7c79111ac48bb8" + } + ] + }, + { + "bom-ref": "817f30db3309ffc8", + "type": "file", + "name": "/usr/bin/sha256sum", + "hashes": [ + { + "alg": "SHA-1", + "content": "7bf2e2ced20a3c68c9d69585f148e53f95bf1e2d" + }, + { + "alg": "SHA-256", + "content": "c40717532492c6f2681df75dd14a8fa05675e8153f9c126e8b0c0b6db7e38247" + } + ] + }, + { + "bom-ref": "73b8fe4be3c3c386", + "type": "file", + "name": "/usr/bin/sha384sum", + "hashes": [ + { + "alg": "SHA-1", + "content": "d6f3bbcda96634fc72a66ca1d7c2361a98e08ad6" + }, + { + "alg": "SHA-256", + "content": "f52ab664d62284375c1dce3083c509cc4773803c9773066a11d47027d1fd3e40" + } + ] + }, + { + "bom-ref": "2d93f88372be171b", + "type": "file", + "name": "/usr/bin/sha512sum", + "hashes": [ + { + "alg": "SHA-1", + "content": "da5e2975ef81c29dcdbd77678d465760d3976b4f" + }, + { + "alg": "SHA-256", + "content": "711ce58dc7d912bf4425ba5477f15d8f17a34059f3de1319eb4845b3ad822f21" + } + ] + }, + { + "bom-ref": "d081e7d76e7d017a", + "type": "file", + "name": "/usr/bin/shred", + "hashes": [ + { + "alg": "SHA-1", + "content": "d6802eb89b6fa1b2e7e1d5ab4d2dcabfdfe78d98" + }, + { + "alg": "SHA-256", + "content": "e531c3c87fcfafe01d42c234350fee5551ac008749cdc2e8c618d12ee58aded1" + } + ] + }, + { + "bom-ref": "9054ecd146abca3e", + "type": "file", + "name": "/usr/bin/shuf", + "hashes": [ + { + "alg": "SHA-1", + "content": "8b9995ed34e2da16b16524bc9f8d4ef50871e077" + }, + { + "alg": "SHA-256", + "content": "3e5d515222505822518bf28550042b0542e84b577680f658885326cbbaab06a7" + } + ] + }, + { + "bom-ref": "eb14c50825381cfa", + "type": "file", + "name": "/usr/bin/sort", + "hashes": [ + { + "alg": "SHA-1", + "content": "1084eba03286350be0b46777ef1172b377e794c0" + }, + { + "alg": "SHA-256", + "content": "5c9c5373d32f315833066103f848d687aa955ec9e3fa5e06c2862ed40e6d4583" + } + ] + }, + { + "bom-ref": "5044790447b6f665", + "type": "file", + "name": "/usr/bin/split", + "hashes": [ + { + "alg": "SHA-1", + "content": "4eb8a46478ae26e3ea8b765d6e2ecd21d3d68798" + }, + { + "alg": "SHA-256", + "content": "08591d85909ed8274bdb95a7d94ffb2a15b0cf405b95458bf143765d65769318" + } + ] + }, + { + "bom-ref": "4d5b7aa56760cc39", + "type": "file", + "name": "/usr/bin/stat", + "hashes": [ + { + "alg": "SHA-1", + "content": "0c6be017c5756d66934fb81ef4059d0626ee2333" + }, + { + "alg": "SHA-256", + "content": "222b21e4b91675661ecc0dee677ba575e5ee3dfe0fadae9d432cd0ac069a1f62" + } + ] + }, + { + "bom-ref": "390fae2b6e959d01", + "type": "file", + "name": "/usr/bin/stdbuf", + "hashes": [ + { + "alg": "SHA-1", + "content": "fedeeeb9d8b30236073335494331082b42e6cde7" + }, + { + "alg": "SHA-256", + "content": "00a5270c7b0262754886e4d26ebc1a5a03911c46fa3c02e2b8d2b346be1f924a" + } + ] + }, + { + "bom-ref": "ae9369f4dae67fc4", + "type": "file", + "name": "/usr/bin/sum", + "hashes": [ + { + "alg": "SHA-1", + "content": "1a9629cb042959acafddd62c6c2a0ff9b6d482f1" + }, + { + "alg": "SHA-256", + "content": "1cc7bc67a5f99eab5311c76d103c2e50f2deddc34421a8c01c0744c9fdf60066" + } + ] + }, + { + "bom-ref": "7ea599d97298f060", + "type": "file", + "name": "/usr/bin/tabs", + "hashes": [ + { + "alg": "SHA-1", + "content": "b9e76cbe2060e23151b71e9af860e487cdd2567d" + }, + { + "alg": "SHA-256", + "content": "9617f02d8f1ccd55366f04c0211e5bd6c6cf470463bf64be9e398c72ec4ce9a1" + } + ] + }, + { + "bom-ref": "71d1181e70f25994", + "type": "file", + "name": "/usr/bin/tac", + "hashes": [ + { + "alg": "SHA-1", + "content": "107ff3bf9cd9e7c44dd8a2f2925b1717d07fe1b9" + }, + { + "alg": "SHA-256", + "content": "d8d562f2fad2d3675a28535bceaad4b58a646b8bbe5f78540130b94d8ec2d42c" + } + ] + }, + { + "bom-ref": "dbdb96698cd184d9", + "type": "file", + "name": "/usr/bin/tail", + "hashes": [ + { + "alg": "SHA-1", + "content": "f2b9193d25773902ba9fc20d758d7c2aa078891c" + }, + { + "alg": "SHA-256", + "content": "62f9f84c362528336f8d0b7a8040fd7b401ec74a90b709434a56fa2583af035e" + } + ] + }, + { + "bom-ref": "2537a045a2e691e4", + "type": "file", + "name": "/usr/bin/taskset", + "hashes": [ + { + "alg": "SHA-1", + "content": "57e78b5451f96ece1be5f40dc80888af12acd4f3" + }, + { + "alg": "SHA-256", + "content": "b6865fd6e0e6114364774e33df11c537da32976ffc254c24bd834093c6cdd686" + } + ] + }, + { + "bom-ref": "6a71710948053452", + "type": "file", + "name": "/usr/bin/tee", + "hashes": [ + { + "alg": "SHA-1", + "content": "6ecb50b4a16d0e4785616471b5db3fe214eba3c9" + }, + { + "alg": "SHA-256", + "content": "ad920a0fa326ba6d09d83ab2140852c69dbf42ab3a4b2a2a378df3f4da800e78" + } + ] + }, + { + "bom-ref": "840d6467fae44ff2", + "type": "file", + "name": "/usr/bin/test", + "hashes": [ + { + "alg": "SHA-1", + "content": "cd88447fc262f9a483d5fa9a28abd1445a05d397" + }, + { + "alg": "SHA-256", + "content": "b87155acb17cfae564a2318108f196805497f5b0edaa96fb5afdcb857d7eb6c8" + } + ] + }, + { + "bom-ref": "981840e3fe520a07", + "type": "file", + "name": "/usr/bin/tic", + "hashes": [ + { + "alg": "SHA-1", + "content": "cac3ceae20fe0521f8abd941065a5b9f2ad0e8b7" + }, + { + "alg": "SHA-256", + "content": "c2ee7b4690e7b3888e05bfff39a68430a8ea4568323b459a318310999cae60ff" + } + ] + }, + { + "bom-ref": "ecc5c1b75f58c76e", + "type": "file", + "name": "/usr/bin/timeout", + "hashes": [ + { + "alg": "SHA-1", + "content": "d86212366e20a0fe28f27a177fffb016127dc3ff" + }, + { + "alg": "SHA-256", + "content": "81b1f877246269f37f2fe9c207c0a25779d189a804db5214e8a185674fd28f8b" + } + ] + }, + { + "bom-ref": "26c6d684742b730d", + "type": "file", + "name": "/usr/bin/toe", + "hashes": [ + { + "alg": "SHA-1", + "content": "4ed447db111f164b836455427cd0a3af49aec5b9" + }, + { + "alg": "SHA-256", + "content": "4e562e80a2cc7765a34a2cffca5f7444d2feccabd778a19bbbbf7655c8854d93" + } + ] + }, + { + "bom-ref": "72861f44f9b75e74", + "type": "file", + "name": "/usr/bin/tput", + "hashes": [ + { + "alg": "SHA-1", + "content": "b03253d9d929fa6766b362ca5d66c281d3735ff9" + }, + { + "alg": "SHA-256", + "content": "814958ca9c07d7fafe9830577c61e7d7665c1bf0b107c61dd21247a2952928f0" + } + ] + }, + { + "bom-ref": "2aece09671163187", + "type": "file", + "name": "/usr/bin/tr", + "hashes": [ + { + "alg": "SHA-1", + "content": "94bdf6c1207ce5e18bb7c0187d13ec0cd701358c" + }, + { + "alg": "SHA-256", + "content": "23a9e3aa04a9109e7448c167fd7e87e5413ea5f07ac5e055b9bdd8bfb6764ae2" + } + ] + }, + { + "bom-ref": "1f838a7769af277b", + "type": "file", + "name": "/usr/bin/truncate", + "hashes": [ + { + "alg": "SHA-1", + "content": "45d958c39a3ce4dbc392267b63027777f32ac391" + }, + { + "alg": "SHA-256", + "content": "cbed97bd03bf50823526eb6199ea3ae98d6a49e3e983af99ed57c7887ca33165" + } + ] + }, + { + "bom-ref": "7e229795839fc93f", + "type": "file", + "name": "/usr/bin/tset", + "hashes": [ + { + "alg": "SHA-1", + "content": "1c2125b5364c3dc15cf3ee9a68fe5c08c4bb340a" + }, + { + "alg": "SHA-256", + "content": "e1d2870f07982fa5c05bbb41bc4b2f652dcb4e84d38348fddfe7c65088ee2acb" + } + ] + }, + { + "bom-ref": "45615675bbb60234", + "type": "file", + "name": "/usr/bin/tsort", + "hashes": [ + { + "alg": "SHA-1", + "content": "d12fe9980a601fda928a01f7abd5d71d4e910523" + }, + { + "alg": "SHA-256", + "content": "40fb3aaf3d8c2d54027b42ebc3b5bb72270657584a3116a029e0fdfba3d582b0" + } + ] + }, + { + "bom-ref": "bd6073e129e3a807", + "type": "file", + "name": "/usr/bin/tty", + "hashes": [ + { + "alg": "SHA-1", + "content": "16d0946bed68213b724ed0cee499f77abbada4af" + }, + { + "alg": "SHA-256", + "content": "345a918cdcd0d1762ed3ac0675a5164c80506db8ebfc27932caabe707559aba5" + } + ] + }, + { + "bom-ref": "95878a19128677f8", + "type": "file", + "name": "/usr/bin/tzselect", + "hashes": [ + { + "alg": "SHA-1", + "content": "fbf713cff8807df097db1a4fcfe7be845f2fbf6f" + }, + { + "alg": "SHA-256", + "content": "299abe2c1b38aa21df5e6079c5b654914a6a5f14aa1a37da7463a8f3c0976a81" + } + ] + }, + { + "bom-ref": "01fc8aa8d76dfbaf", + "type": "file", + "name": "/usr/bin/unexpand", + "hashes": [ + { + "alg": "SHA-1", + "content": "0ce413dc085165050dcd73f85c04dcdc82f06cb8" + }, + { + "alg": "SHA-256", + "content": "0db66d773f2c8ff4b4994a4b3b859430e0f8857d16c28a48f29a99dd4f280e24" + } + ] + }, + { + "bom-ref": "cf33a48672568cc5", + "type": "file", + "name": "/usr/bin/uniq", + "hashes": [ + { + "alg": "SHA-1", + "content": "566523308fd47a65562a90a4dea06c838d64b5ef" + }, + { + "alg": "SHA-256", + "content": "80f3f287f39c0c81b318a4ce2e1708870703b95bb0c624ceedb285cd3ad54d3b" + } + ] + }, + { + "bom-ref": "6db21018d2933543", + "type": "file", + "name": "/usr/bin/unlink", + "hashes": [ + { + "alg": "SHA-1", + "content": "56d43d0b4d4b3aa8f2b72c40b80c14e6214aef92" + }, + { + "alg": "SHA-256", + "content": "5b91de85c66d77c8b39f3fdff754e2aa006393b94106f5350bc805908c6b037c" + } + ] + }, + { + "bom-ref": "2f4325ad11723f03", + "type": "file", + "name": "/usr/bin/unshare", + "hashes": [ + { + "alg": "SHA-1", + "content": "74b641e5b78aa79a0b0436951fd91df09bb2d4ae" + }, + { + "alg": "SHA-256", + "content": "7406bd510854c90e2bb05e705687fae5862d996a2923e7309d997cc78b2ad1e2" + } + ] + }, + { + "bom-ref": "07ad3b798baab50b", + "type": "file", + "name": "/usr/bin/update-alternatives", + "hashes": [ + { + "alg": "SHA-1", + "content": "7bd0d4014ecbe7af6776f9ee316d69d826b7e1c4" + }, + { + "alg": "SHA-256", + "content": "a51f8948733fe5d10a2a3fdfec97b7718245212f97bc82f2e9cb2dbf550e6dc4" + } + ] + }, + { + "bom-ref": "870f511aa56f76bb", + "type": "file", + "name": "/usr/bin/users", + "hashes": [ + { + "alg": "SHA-1", + "content": "6442090d2f650d955630c8e998103f16148389f3" + }, + { + "alg": "SHA-256", + "content": "cf639d336ce3215727b742b2474cbd9511d8fa3fe9307e011728fa06ff7951f0" + } + ] + }, + { + "bom-ref": "a301255b9268085e", + "type": "file", + "name": "/usr/bin/utmpdump", + "hashes": [ + { + "alg": "SHA-1", + "content": "88863bf90d72abe2b8a8f16817ef08260afb8cf6" + }, + { + "alg": "SHA-256", + "content": "6b8a5a198fbd4e1a5c21ba6b60863fdbb07a6e7f211ae71ca54b834ae933e240" + } + ] + }, + { + "bom-ref": "e253f03ec29d2901", + "type": "file", + "name": "/usr/bin/wall", + "hashes": [ + { + "alg": "SHA-1", + "content": "0131d389533cae05e991295221142cafaf9e43ee" + }, + { + "alg": "SHA-256", + "content": "e3c5462b0b0e2e6eb5b9f7f1278cf6ad0255b44abbbc6431668be14d509b01c6" + } + ] + }, + { + "bom-ref": "963cc963c0f728ee", + "type": "file", + "name": "/usr/bin/wc", + "hashes": [ + { + "alg": "SHA-1", + "content": "3a9d3466e8481031ab5bfe379b8a8b89164a2855" + }, + { + "alg": "SHA-256", + "content": "b4cbcc139e9f1cc1b9e0fa2d3afedad5391bdd2dbd05610da8994988c57ee5e0" + } + ] + }, + { + "bom-ref": "9c69d11b80c9ac9f", + "type": "file", + "name": "/usr/bin/whereis", + "hashes": [ + { + "alg": "SHA-1", + "content": "d438d7d541a3df11868f059c6f4a2601622b8728" + }, + { + "alg": "SHA-256", + "content": "b42266bb2b4a3cfa39fc0bd847a7acb316dbeea0930059422ef55c7fbe83bf2e" + } + ] + }, + { + "bom-ref": "ddb08dab8f68dca9", + "type": "file", + "name": "/usr/bin/who", + "hashes": [ + { + "alg": "SHA-1", + "content": "4788453db9a8252b69ff8405624109839475a437" + }, + { + "alg": "SHA-256", + "content": "a00e66033dc7343c9f2ba271dd8eef32cdcccdcdfd1461218da66bef4db36dee" + } + ] + }, + { + "bom-ref": "08666a2d7f3c50ca", + "type": "file", + "name": "/usr/bin/whoami", + "hashes": [ + { + "alg": "SHA-1", + "content": "8379306341f5fdfc1969c45f54a011fc89a43678" + }, + { + "alg": "SHA-256", + "content": "fa7553f568e3cedee99995fe02e2a66a4d7e9a4f9585abed4bf96daf07700ac3" + } + ] + }, + { + "bom-ref": "cd5f8b8cfa69c712", + "type": "file", + "name": "/usr/bin/xargs", + "hashes": [ + { + "alg": "SHA-1", + "content": "59a6c83a70f155b4e485927bec14ae00696235ea" + }, + { + "alg": "SHA-256", + "content": "4def535c9ca4edd7a26eab995b2c75316550b1d65bf4720e6be2238c5fdd472e" + } + ] + }, + { + "bom-ref": "f545d77052fb927e", + "type": "file", + "name": "/usr/bin/yes", + "hashes": [ + { + "alg": "SHA-1", + "content": "93f099747005433d2c42d5218126395e69298b86" + }, + { + "alg": "SHA-256", + "content": "cecffad9d7d0fd743c2b9809c51f99923991686a27c397db80385fede02aaaee" + } + ] + }, + { + "bom-ref": "6383c3661e4e18be", + "type": "file", + "name": "/usr/bin/zdump", + "hashes": [ + { + "alg": "SHA-1", + "content": "cf3a29456fe5a2bb3773edf8f1912050fec4ad14" + }, + { + "alg": "SHA-256", + "content": "3dfc284e413122f3c2ebcb310f189fe20d5e33d53fddf279ac05acae591cb5a5" + } + ] + }, + { + "bom-ref": "fb0d674ef60cb9f6", + "type": "file", + "name": "/usr/lib/apt/apt-helper", + "hashes": [ + { + "alg": "SHA-1", + "content": "da86b089e15f2e35b0152a4319dfd7ba5ef509e8" + }, + { + "alg": "SHA-256", + "content": "379758596b84b1eb38c6f5463d474c36299f3c3fc37a70fc4ded57385871428c" + } + ] + }, + { + "bom-ref": "c92bc9b4c06de17c", + "type": "file", + "name": "/usr/lib/apt/apt.systemd.daily", + "hashes": [ + { + "alg": "SHA-1", + "content": "5fcf84ec2ef5fd3ff510fa633c5a2710cc95724d" + }, + { + "alg": "SHA-256", + "content": "f05ec6f060a9d2b351f321d0d53471a9b163a7bbad465095c1b1f2cd2d9e3867" + } + ] + }, + { + "bom-ref": "e55984b3ae58ba60", + "type": "file", + "name": "/usr/lib/apt/methods/cdrom", + "hashes": [ + { + "alg": "SHA-1", + "content": "f97cb6d533faea5651632955242875bff09a0ee2" + }, + { + "alg": "SHA-256", + "content": "b9489cb71148b6459bbed0521fef59d436f32a2b9df8565907c9c2c15d32ec31" + } + ] + }, + { + "bom-ref": "64a54264af9a564c", + "type": "file", + "name": "/usr/lib/apt/methods/copy", + "hashes": [ + { + "alg": "SHA-1", + "content": "4059fbd210252d8ba3b56cdc1c9d7eaed850153d" + }, + { + "alg": "SHA-256", + "content": "d52a62d3cb3453abca6b7a399b8693694e3de8c22e6e5f413cd7e9a9cb2db093" + } + ] + }, + { + "bom-ref": "f55204048ea3646c", + "type": "file", + "name": "/usr/lib/apt/methods/file", + "hashes": [ + { + "alg": "SHA-1", + "content": "0b1bc81b4387b8109bdc3ed94c2f430e34c9151d" + }, + { + "alg": "SHA-256", + "content": "9a16873934521fc8431e3979e3db6af994c4dd22086fd569193ed498f4c04645" + } + ] + }, + { + "bom-ref": "0637ed0527940d19", + "type": "file", + "name": "/usr/lib/apt/methods/ftp", + "hashes": [ + { + "alg": "SHA-1", + "content": "7d8bd03af44d601ad9ca14f41e721c747a8af067" + }, + { + "alg": "SHA-256", + "content": "8950535d6daed6441a4323d9c97b98f797a0eef0a78e74d1a5d4d9e9b61698eb" + } + ] + }, + { + "bom-ref": "1e904871fb4c7eb6", + "type": "file", + "name": "/usr/lib/apt/methods/gpgv", + "hashes": [ + { + "alg": "SHA-1", + "content": "e70c9b5b235d75f0d07b83a782c68f0f4ea7954b" + }, + { + "alg": "SHA-256", + "content": "60572fafb9c952ca000fd4534f5bea1632426bd8a4a728c8a63fb475b75cac47" + } + ] + }, + { + "bom-ref": "1e5d4448914c488a", + "type": "file", + "name": "/usr/lib/apt/methods/http", + "hashes": [ + { + "alg": "SHA-1", + "content": "150ade638ff899a16179f989c8c6992200492ff7" + }, + { + "alg": "SHA-256", + "content": "1e4df41c3187a2b483788d8b0ea545d0e2e83ff602346275da67e642d9459e01" + } + ] + }, + { + "bom-ref": "4a9d7f802ad353ce", + "type": "file", + "name": "/usr/lib/apt/methods/mirror", + "hashes": [ + { + "alg": "SHA-1", + "content": "6d08656680b822705de59767cdf140c98be1ce16" + }, + { + "alg": "SHA-256", + "content": "7702620751134283f0cac5b63ad4dd538ac3592e814e05e51ba750abd5727329" + } + ] + }, + { + "bom-ref": "2194f6ffa96f6885", + "type": "file", + "name": "/usr/lib/apt/methods/rred", + "hashes": [ + { + "alg": "SHA-1", + "content": "4fba1e3eb84adf4fe0fabc058e6a23061d208713" + }, + { + "alg": "SHA-256", + "content": "3025a408756252ee5d687e2c894f490145c2d2acfce7cb6e5d53fa3302c661c6" + } + ] + }, + { + "bom-ref": "a27ecadeb5738e89", + "type": "file", + "name": "/usr/lib/apt/methods/rsh", + "hashes": [ + { + "alg": "SHA-1", + "content": "f44d5a9e195c0e395db44213712ab56e333b9c06" + }, + { + "alg": "SHA-256", + "content": "f9605c863e99c1e82e6650e492c8054b83b9c884a6fb2ee97125cad9d5468edb" + } + ] + }, + { + "bom-ref": "c32db9622bb7ba44", + "type": "file", + "name": "/usr/lib/apt/methods/store", + "hashes": [ + { + "alg": "SHA-1", + "content": "a908f870a6d9c50c97c72485c610abedc728c1f1" + }, + { + "alg": "SHA-256", + "content": "d51ed41d8d2c9a05c352985079a1da383d28048fb58a3ebd0884ff54e733001b" + } + ] + }, + { + "bom-ref": "e917862b99f2881d", + "type": "file", + "name": "/usr/lib/apt/solvers/dump", + "hashes": [ + { + "alg": "SHA-1", + "content": "a426befd5cf01ed4a044945d2f63757568d4e17d" + }, + { + "alg": "SHA-256", + "content": "75549b439daa6a365a0bdff757dd39258de3ee6ce2a5d7bb34d3daf67042ddf0" + } + ] + }, + { + "bom-ref": "77d64df48f130001", + "type": "file", + "name": "/usr/lib/dpkg/methods/apt/desc.apt", + "hashes": [ + { + "alg": "SHA-1", + "content": "682dc97778774b8a82b26c97782f5843c343b7d5" + }, + { + "alg": "SHA-256", + "content": "4035a2ca99d6d473f6e9a0af7b39d395bfe47e48b3a9993488fc2fae139145f8" + } + ] + }, + { + "bom-ref": "995894a681be4ed0", + "type": "file", + "name": "/usr/lib/dpkg/methods/apt/install", + "hashes": [ + { + "alg": "SHA-1", + "content": "052f3d37f45b1febda3918365145716c063b5a22" + }, + { + "alg": "SHA-256", + "content": "810da1fcf97636219401c67e891a04a7a4f01b2a0d73fd60bf3bbbdfb3775f76" + } + ] + }, + { + "bom-ref": "56db6f33a57cf5c0", + "type": "file", + "name": "/usr/lib/dpkg/methods/apt/names", + "hashes": [ + { + "alg": "SHA-1", + "content": "48accef05a84ae2361d8db806623da6623d6c37d" + }, + { + "alg": "SHA-256", + "content": "0a636de469385b41ea06f639a389c523946ec7f023fe2a12c0adf8300e2a82ad" + } + ] + }, + { + "bom-ref": "d203a0f505e0ef7d", + "type": "file", + "name": "/usr/lib/dpkg/methods/apt/setup", + "hashes": [ + { + "alg": "SHA-1", + "content": "de763d7d348211c690e6af0a5596dfa395e9ef39" + }, + { + "alg": "SHA-256", + "content": "c645a091943f61ff46847973d000cbf1817623a86e1ede412f97f437aa1eb56a" + } + ] + }, + { + "bom-ref": "c2a905288ec2b7da", + "type": "file", + "name": "/usr/lib/dpkg/methods/apt/update", + "hashes": [ + { + "alg": "SHA-1", + "content": "1921cb2b619b98dc62a6e7d0a7e4ce48da794428" + }, + { + "alg": "SHA-256", + "content": "605ae19f87289e8d4cdb80028dd071c4b3ea0e2e46da9ad697b6bd739ba4c6b3" + } + ] + }, + { + "bom-ref": "231fac698db9c89d", + "type": "file", + "name": "/usr/lib/locale/C.UTF-8/LC_ADDRESS", + "hashes": [ + { + "alg": "SHA-1", + "content": "e17f64601d95342e6977b3fe6779532c8a67a765" + }, + { + "alg": "SHA-256", + "content": "e56fdac7f4d70bdb7517a9a3c98bbfefef52fcfb082d3a49c26eec93fd8f9d9d" + } + ] + }, + { + "bom-ref": "36f23f45e8c8a1e4", + "type": "file", + "name": "/usr/lib/locale/C.UTF-8/LC_COLLATE", + "hashes": [ + { + "alg": "SHA-1", + "content": "e1853ba5ed068f3171290c2b7f948905c6e4942e" + }, + { + "alg": "SHA-256", + "content": "400602bb4b2d0e72e937ab6b4ad239b05a286d307627160ec4638a37d797e1d0" + } + ] + }, + { + "bom-ref": "85d2ee2c6f99a4a2", + "type": "file", + "name": "/usr/lib/locale/C.UTF-8/LC_CTYPE", + "hashes": [ + { + "alg": "SHA-1", + "content": "aae750bbd36295c81a03a9deeeaa81a104af5c9e" + }, + { + "alg": "SHA-256", + "content": "dac2aa98f74eb28473182732e8adaf5100bab0a085a862d8c58fcaa7096a99d0" + } + ] + }, + { + "bom-ref": "f9531940f7fa1d0b", + "type": "file", + "name": "/usr/lib/locale/C.UTF-8/LC_IDENTIFICATION", + "hashes": [ + { + "alg": "SHA-1", + "content": "7e5c3b48f452c3bd65d3185db6d568f83bdaa976" + }, + { + "alg": "SHA-256", + "content": "a18e79a14c660aa2eb90d2e145e79c23a20915552797403eed8732c6a75b6500" + } + ] + }, + { + "bom-ref": "eac49d74face29f2", + "type": "file", + "name": "/usr/lib/locale/C.UTF-8/LC_MEASUREMENT", + "hashes": [ + { + "alg": "SHA-1", + "content": "0a7d0d264f9ded94057020e807bfaa13a7573821" + }, + { + "alg": "SHA-256", + "content": "bb14a6f2cbd5092a755e8f272079822d3e842620dd4542a8dfa1e5e72fc6115b" + } + ] + }, + { + "bom-ref": "cf6f51bd2f40566e", + "type": "file", + "name": "/usr/lib/locale/C.UTF-8/LC_MESSAGES/SYS_LC_MESSAGES", + "hashes": [ + { + "alg": "SHA-1", + "content": "574d7e92bedf1373ec9506859b0d55ee7babbf20" + }, + { + "alg": "SHA-256", + "content": "f9ad02f1d8eba721d4cbd50c365b5c681c39aec008f90bfc2be2dc80bfbaddcb" + } + ] + }, + { + "bom-ref": "e7ca9fb388585958", + "type": "file", + "name": "/usr/lib/locale/C.UTF-8/LC_MONETARY", + "hashes": [ + { + "alg": "SHA-1", + "content": "e15e804a83f37be7902e75fe50b4791a32d8d1c0" + }, + { + "alg": "SHA-256", + "content": "cafa798824e8125971c72f9491b95f02f0fbeeb2429bcaeb17491fa5ef1a7f49" + } + ] + }, + { + "bom-ref": "43441b8bb5cd474c", + "type": "file", + "name": "/usr/lib/locale/C.UTF-8/LC_NAME", + "hashes": [ + { + "alg": "SHA-1", + "content": "b5d16f1042c3c1c4bef85766aa2c20c1b0d8cff6" + }, + { + "alg": "SHA-256", + "content": "14507aad9f806112e464b9ca94c93b2e4d759ddc612b5f87922d7cac7170697d" + } + ] + }, + { + "bom-ref": "56921c5bf5d5a857", + "type": "file", + "name": "/usr/lib/locale/C.UTF-8/LC_NUMERIC", + "hashes": [ + { + "alg": "SHA-1", + "content": "1bd2f3db04022b8cfe5cd7a7f90176f191e19425" + }, + { + "alg": "SHA-256", + "content": "f5976e6b3e6b24dfe03caad6a5b98d894d8110d8bd15507e690fd60fd3e04ab2" + } + ] + }, + { + "bom-ref": "6f93adebd1333a5b", + "type": "file", + "name": "/usr/lib/locale/C.UTF-8/LC_PAPER", + "hashes": [ + { + "alg": "SHA-1", + "content": "567aaf639393135b76e22e72aaee1df95764e990" + }, + { + "alg": "SHA-256", + "content": "cde048b81e2a026517cc707c906aebbd50f5ee3957b6f0c1c04699dffcb7c015" + } + ] + }, + { + "bom-ref": "d0fbfeece53639b7", + "type": "file", + "name": "/usr/lib/locale/C.UTF-8/LC_TELEPHONE", + "hashes": [ + { + "alg": "SHA-1", + "content": "3316c99e183186c5cad97a71674ef7431c3da845" + }, + { + "alg": "SHA-256", + "content": "f4caf0d12844219b65ba42edc7ec2f5ac1b2fc36a3c88c28887457275daca1ee" + } + ] + }, + { + "bom-ref": "f31b657c14013cbf", + "type": "file", + "name": "/usr/lib/locale/C.UTF-8/LC_TIME", + "hashes": [ + { + "alg": "SHA-1", + "content": "e619a4db877e0b54fa14b8a3992da2b561b3239b" + }, + { + "alg": "SHA-256", + "content": "0910b595d1d5d4e52cc0f415bbb1ff07c015d6860d34aae02505dd9973a63154" + } + ] + }, + { + "bom-ref": "abd1f47ba6f03c88", + "type": "file", + "name": "/usr/lib/mime/packages/tar", + "hashes": [ + { + "alg": "SHA-1", + "content": "c3e6f74ad526dc0aa3c1634f3a5dfa559f7508d9" + }, + { + "alg": "SHA-256", + "content": "31deef64d49013a02645bcd32e43d108d12ebb89a93034fb35947c7c576397c8" + } + ] + }, + { + "bom-ref": "861308abbb3d7359", + "type": "file", + "name": "/usr/lib/mime/packages/util-linux", + "hashes": [ + { + "alg": "SHA-1", + "content": "86976cfbb3272bf87d782fd82fc72a7a60850ba2" + }, + { + "alg": "SHA-256", + "content": "8c2a3124292211ce117712858ad06a036675a7f7d8f578e5b84267b1196c1665" + } + ] + }, + { + "bom-ref": "2cb5bb06929f4e71", + "type": "file", + "name": "/usr/lib/os-release", + "hashes": [ + { + "alg": "SHA-1", + "content": "f0ed42f3d397f3d12be10aa49760f5ece28cdbef" + }, + { + "alg": "SHA-256", + "content": "c0c501c05a85ad53cbaf4028f75c078569dadda64ae8e793339096e05a3d98b0" + } + ] + }, + { + "bom-ref": "cd52ddb6e0d9f07f", + "type": "file", + "name": "/usr/lib/tmpfiles.d/passwd.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "886f48aea32a6d5da3242dfe02abab0a94c594ad" + }, + { + "alg": "SHA-256", + "content": "1a3b927102b44454eb4c47e4fe659de2f5283f364ba27408329a54d4ad47e310" + } + ] + }, + { + "bom-ref": "a66d19225fc72cb0", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/audit/sotruss-lib.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "665dcf319f0af255610073174b86b8dac98d178c" + }, + { + "alg": "SHA-256", + "content": "af41a716d9cd3ac146b8f15e9588a23e3176d57f553ce785b8f7c43b743f7cfe" + } + ] + }, + { + "bom-ref": "1530b0de145f15c5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/coreutils/libstdbuf.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "0a5906149729c3ae56360961a8d4d4a9c22df888" + }, + { + "alg": "SHA-256", + "content": "387b5735775c8fca542d4b1ecf0f9e1f459bcbc4891f0728c49b9d580742f61d" + } + ] + }, + { + "bom-ref": "8999b962f461c719", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ANSI_X3.110.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "ab0662fab3d38c31a4fc38b826832fdba33bbb0b" + }, + { + "alg": "SHA-256", + "content": "8bd1055135eadec3ee6d9b72c74b4fb3e1e5f041c83a14c435d282e0fe1035dc" + } + ] + }, + { + "bom-ref": "cc0e14af39fdab84", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ARMSCII-8.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "08665207a2014003d49b189746d6610698fd6cd1" + }, + { + "alg": "SHA-256", + "content": "d0d039dc5bbede0e1fa78068e6054453ad79c0b0197ceb067b71c0c15d4a1ff8" + } + ] + }, + { + "bom-ref": "9ae5bba0f8ec0f54", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ASMO_449.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "c9e44499be7ead24fc5ab87fd4ccf33707b34974" + }, + { + "alg": "SHA-256", + "content": "3d2c59c8948bb7f9ef707b827b224f6b5dacb160881f6be7fdca2589b0245320" + } + ] + }, + { + "bom-ref": "5db62674e57d78d4", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/BIG5.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "7a6eb66114d07f1ba00c97d8362485a8957f066b" + }, + { + "alg": "SHA-256", + "content": "fa32a4767be2a492dcd50760805ae950f3aa0ec480f9651f9964b8fc5ff503a0" + } + ] + }, + { + "bom-ref": "39a7e425eaa17b2c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/BIG5HKSCS.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "eae19e1e6d4c5f5edf4924df6bfbfeece86ecd0e" + }, + { + "alg": "SHA-256", + "content": "d575f30cff18651ab688eee9f8b42e60a1532b72cb57aa3e6d8fd6434413fd02" + } + ] + }, + { + "bom-ref": "4b2ae255b469b3c5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/BRF.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "d46e7b38ec5ee655b5cd388328a03b80b27bfdf8" + }, + { + "alg": "SHA-256", + "content": "68caf9dc16a8d06253de07c0e4573daec01806664614adca1318dcccc10ece1a" + } + ] + }, + { + "bom-ref": "66683b8abf176005", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/CP10007.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "aedc1ba3aba126258e17369e031789291fa5cb83" + }, + { + "alg": "SHA-256", + "content": "e635d1609316c046762a449c761d6cb0ef3d14d62e3b961e379c72857ef3af01" + } + ] + }, + { + "bom-ref": "e1d6a16c2b5a78d5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/CP1125.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "1ed969318f358928f7c8cae41f4be9aa28643c4c" + }, + { + "alg": "SHA-256", + "content": "faf077ffe9786b03ea2b0cb2c7684d61f76e3e8e5e1ea7d17bc359372833b60b" + } + ] + }, + { + "bom-ref": "d0d53f7b53b7a475", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/CP1250.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "c7d53f3620b7ec610d53236594ab3706c109f3d4" + }, + { + "alg": "SHA-256", + "content": "6a74d26dff05c10fb561ec4977e6c8d392e3402503e1a012dec981ffc5a633cf" + } + ] + }, + { + "bom-ref": "7b42c2a245512567", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/CP1251.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "281b38b5571f8a8ca9236f5d233a55f7d776998b" + }, + { + "alg": "SHA-256", + "content": "707abece1c50053296939aedf261641fc46b42704d27c78780b009e923ce21ff" + } + ] + }, + { + "bom-ref": "425f24900b3dacd6", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/CP1252.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "ec622e21e5938d31eb0ecddfeabef4e88e8dc679" + }, + { + "alg": "SHA-256", + "content": "eed98d0a56001c0195bc059fc47cc7782a90f141656e9f3d39ac6f5f77068bf3" + } + ] + }, + { + "bom-ref": "89e0f877f0208c1c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/CP1253.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "e029f7e9f0d1b4b8f30e7bd0ec9a37045843db2e" + }, + { + "alg": "SHA-256", + "content": "4b4ddd241d2acb12c325ea86809525e432bb0c5fea71764830a9e9a46eef9af3" + } + ] + }, + { + "bom-ref": "483295a6bb8fce25", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/CP1254.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "80307774fb612ef63c5b6246f9d47e9c0e5cd0a1" + }, + { + "alg": "SHA-256", + "content": "67ba123f246ba621fb6910d81fd6305a5d600ee139911c569999114f60401534" + } + ] + }, + { + "bom-ref": "98dae79d93748f03", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/CP1255.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "9b312e5166c5eda1086c21b42d862df93ac8c1bd" + }, + { + "alg": "SHA-256", + "content": "fb3dc833a4e0508e80cf8b579915df241d8026de541df89449a0513f2320fa80" + } + ] + }, + { + "bom-ref": "c2b890c4c8c86817", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/CP1256.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "723aaf6b2d0372008bf6f5f944fee3ab62c5b553" + }, + { + "alg": "SHA-256", + "content": "a5a32a599a5abe9801058b93c22c0a8532d70fff72eef236bfbeab10c7feca2d" + } + ] + }, + { + "bom-ref": "ecc3fc07b1462b3c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/CP1257.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "298d31c15703183c7df4e2290a7f3f4736d1db6a" + }, + { + "alg": "SHA-256", + "content": "fc3941e1a67515e61f0aff5afee1135c7ffe8b38b9d03cd18a748c9ac72331fd" + } + ] + }, + { + "bom-ref": "db5a79597f810231", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/CP1258.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "2532f6022db964683c4b52e5b5ac21fb6cec0d81" + }, + { + "alg": "SHA-256", + "content": "47ea0f32bbe001d41e316f7f73069cf08d7493992bee7990c872b4710072bd24" + } + ] + }, + { + "bom-ref": "e4f1ed33f5394ee4", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/CP737.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "dc75bccf149afa6f519bf7390b48e3340d111aaf" + }, + { + "alg": "SHA-256", + "content": "d31b3e86bbaebcd3e7ec24144a8ba9b3e06812448dc056cd35577f84244ea674" + } + ] + }, + { + "bom-ref": "c1cb4e3d8991097c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/CP770.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "d97bd508dfff2eb282ebfd301f921adcefc79a6b" + }, + { + "alg": "SHA-256", + "content": "1fec0bcca731da96f6df3efab37ce300f48905cc3e99df7708a322d6c12a2ec5" + } + ] + }, + { + "bom-ref": "ec0fb5676d3ff2c2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/CP771.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "bda55887179daf2fb9bee33ec912209d83b5d66b" + }, + { + "alg": "SHA-256", + "content": "0c7d1fddc39a7dade319df177e0ea32d7bc10566c31c2b71e2138af66dfca710" + } + ] + }, + { + "bom-ref": "d65f287e3c08fcfa", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/CP772.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "2f3845b0156f2e576513873b89b574d20f210d13" + }, + { + "alg": "SHA-256", + "content": "29b91ccc988381ac9c92348addb90c5fc371022bb6981c44584d6f618b6228f9" + } + ] + }, + { + "bom-ref": "ecaf93a277a71897", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/CP773.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "fb3ce4ebdefd7e8b853e190e6dc7f2afc6e8a28e" + }, + { + "alg": "SHA-256", + "content": "8fcb4a7445b306e19f6c137b70b4355e16cae748b8ead506cf256c2b15326113" + } + ] + }, + { + "bom-ref": "86591647729d828d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/CP774.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "2aaeeef9bdfe831ae03c2cfb6ce5ee255bdc87af" + }, + { + "alg": "SHA-256", + "content": "31e46d08a042180daf9a7b53a4f0c25f7c22853d1fb8bacd07442a15ec59e3f4" + } + ] + }, + { + "bom-ref": "908da8c8aab40444", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/CP775.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "5f30ab4eeb075e20ad48a82757c8c0a6ef0f95d7" + }, + { + "alg": "SHA-256", + "content": "c9118dccc47c12b4d5003d0215ff48740f41cde2d7b830cb3360514fbd54ba5c" + } + ] + }, + { + "bom-ref": "fd635faf4c13327c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/CP932.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "f8184b0071fbd52a8259e0ee99f1c7443fc24506" + }, + { + "alg": "SHA-256", + "content": "e35a6aa2e28e0c4d5454312072c257dab4264463032c1d2391b9d21671439a09" + } + ] + }, + { + "bom-ref": "837184261dfcb5a4", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/CSN_369103.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "291dc32323bf1b1a34a126b4ad1ba69047c5c345" + }, + { + "alg": "SHA-256", + "content": "bc32e27f1ee5397f8a483d9e3db993878c783ca6e2f221a0fcaace630bce86d3" + } + ] + }, + { + "bom-ref": "340cfbea3fb0640d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/CWI.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "dab1a230e752a6f9b0a50ab7a94e05f50e18bbf9" + }, + { + "alg": "SHA-256", + "content": "4e935f0984c5473054dddf55fbe0264d48cd71e786cff8bbb72cbd8cd2635af6" + } + ] + }, + { + "bom-ref": "7589eeac5e2cd079", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/DEC-MCS.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "db7da16d161d0c65569f45a0a3745b209d2c6839" + }, + { + "alg": "SHA-256", + "content": "1600719c09e0269eb49e4aa3ecd8cf97107f1b59022d89f3fdcdde24e9070bfd" + } + ] + }, + { + "bom-ref": "a4615769349f18a3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-AT-DE-A.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "e1f6bddc7874a7c057a02047c96ed318a9f894c1" + }, + { + "alg": "SHA-256", + "content": "15e1929d95f8d34a6328d202e2a277b0433d1d91fb69c6fec5951a68cf30d459" + } + ] + }, + { + "bom-ref": "2c5f746687cfb9b5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-AT-DE.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "2979591d0b574558ef9985ea55b9748b6427ab26" + }, + { + "alg": "SHA-256", + "content": "d8695cf3c951d9fdbe646be215514883c73748d1a1826c4efd118d358153f04b" + } + ] + }, + { + "bom-ref": "dd1efe2b690a0c36", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-CA-FR.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "c368ea01d4039ade9bfae74c0ef1cae3ef99b8c3" + }, + { + "alg": "SHA-256", + "content": "cf4b30d7ccfefa4ef754b735e421ac152cca41cfa61a9af20e5bc30911567f2d" + } + ] + }, + { + "bom-ref": "865f4eb7490521c4", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-DK-NO-A.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "c2a7ce7aef13f15ffb2b4566af5174e5e7b6625d" + }, + { + "alg": "SHA-256", + "content": "4ac8bcc4ace7825f855c6adca9ce9e8b0d6785345a7b1aa0bf55bfb85863cba5" + } + ] + }, + { + "bom-ref": "d6f882e768c87fc3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-DK-NO.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "ada0045df7ec704adeec3e74e9d69442ce38b515" + }, + { + "alg": "SHA-256", + "content": "908c155365a9d6fb1465b75bc4a4ac5dfc716685d10a108dc406260d513f44af" + } + ] + }, + { + "bom-ref": "75c170916cf94875", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-ES-A.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "aac6b6d00b0e0d5d92e540b9ea543b409363a7e5" + }, + { + "alg": "SHA-256", + "content": "cb7b38d5b84e4207df4e203f2cee9c9008dd12c7c34a55b9274e484e837480ac" + } + ] + }, + { + "bom-ref": "796602f15a31309b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-ES-S.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "bb4881a4d0462b090c8064f286290bd6bd6d2c98" + }, + { + "alg": "SHA-256", + "content": "f16a89927b6cd65ecb4c718b3b0e5f315d7f53bc99fd2f2398c077e6ee6350c6" + } + ] + }, + { + "bom-ref": "2ec498cfb2aa398d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-ES.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "3734b5faad337f8f828e6c3c2b3ffe5879fcfc37" + }, + { + "alg": "SHA-256", + "content": "2e2bbe3e532a39eca7aab2a3d314280dde3097feed20ecc557cac357dad10d3d" + } + ] + }, + { + "bom-ref": "3a3682f4bc3bcaf7", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-FI-SE-A.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "5b4b182c216519b08e3971235f42046ebbf1d2f3" + }, + { + "alg": "SHA-256", + "content": "89c97624dbd3a160c8649dea77a99583c5e9553d696ae125884d32a65258fd22" + } + ] + }, + { + "bom-ref": "c0f27c548762befb", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-FI-SE.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "7aa1672e05779505362e62588b57b7a778e6ca45" + }, + { + "alg": "SHA-256", + "content": "3cbc7e2f6b9950fc1dc3b772429a7dd5951dbf0338a3e8a4c86bdcad33fb2c7d" + } + ] + }, + { + "bom-ref": "3b7cda50ca58ab1b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-FR.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "3908e6e067dec52481f26441df904de03fb3aead" + }, + { + "alg": "SHA-256", + "content": "b1bea56eb39baf93897b74316902c91f1cc3c4b531c15eb45776ff6a3515ab43" + } + ] + }, + { + "bom-ref": "721028f98e7ac766", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-IS-FRISS.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "84a05410f06ccbad9897609beec5127a3114e4f3" + }, + { + "alg": "SHA-256", + "content": "c5c9242e063035405884eee4374fd648b5b48dd7cc3f1d67548dffc319a90009" + } + ] + }, + { + "bom-ref": "b2d0a223da60b935", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-IT.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "7101ced17b5b68cb3c0573c8389503fdde37a1d6" + }, + { + "alg": "SHA-256", + "content": "57d6b6201894ca13af07ddd6f0e33e473590ad95f88a118237fea4bf8b2026ad" + } + ] + }, + { + "bom-ref": "659a80e4b7c6c531", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-PT.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "383fed02a226d64d34794070a60950a06003b54e" + }, + { + "alg": "SHA-256", + "content": "9d083199fa5e50f50ce3c688e46ea7f657a57a76ea405dbcb951522b2ce52a4e" + } + ] + }, + { + "bom-ref": "27799b99f6040546", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-UK.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "bda9d94fa50c19716f83ff96eb777da867a4298b" + }, + { + "alg": "SHA-256", + "content": "b387532e6647a92bbfbddf49d138205a591e1dd3e29804e83ffe9a7c1f41f96c" + } + ] + }, + { + "bom-ref": "780b03d20eb08649", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-US.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "76c580d53d1520e83a667c3aa576a7139a995d07" + }, + { + "alg": "SHA-256", + "content": "14c447d7ff4d350fb7c08cf71d9112782093096d1108b6484b0ee8e53657889e" + } + ] + }, + { + "bom-ref": "5abe83b4cceb8419", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ECMA-CYRILLIC.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "8b4a19a50906c11907dd110562a7867ef7f62e21" + }, + { + "alg": "SHA-256", + "content": "9f6551c14bcca8a6e58ae1cf4755d6c4fe8671454b5846da17d3e413af0792d0" + } + ] + }, + { + "bom-ref": "ca80d763adff906a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/EUC-CN.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "5a79d3bfc9c442fc739d7dcdee0547406e23c637" + }, + { + "alg": "SHA-256", + "content": "090f945e0f0bbe201bf981bc8f537ff72a026d3eca53949e069bde12439b8df2" + } + ] + }, + { + "bom-ref": "ed2d5b1d3bd7c332", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/EUC-JISX0213.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "c7dfd2f636e6699eea53f86632f16e86e78748b0" + }, + { + "alg": "SHA-256", + "content": "650a4f1844acf75ada832e15ac6075ece0b08324bdcdfd2338be75ac68a24344" + } + ] + }, + { + "bom-ref": "2848a99eb63aede1", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/EUC-JP-MS.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "d6b2a7fe76355c251ceae92104e60c7b12780c9c" + }, + { + "alg": "SHA-256", + "content": "4b79e7b3c75f9ffec81b56386167cce0c18e4344862468835098baa85ffe8967" + } + ] + }, + { + "bom-ref": "c29735d085aadfac", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/EUC-JP.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "3d7748b8c565fc2bad274181821ff9d4db23e00c" + }, + { + "alg": "SHA-256", + "content": "ecbabe88a9a6d82e508a43c14d8e53e10896e6bf7096642a0a5c0c47089f9d36" + } + ] + }, + { + "bom-ref": "9bf9ffd3f4e8e4db", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/EUC-KR.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "3097feeac30e33c92488aaec7a6800c14ad95063" + }, + { + "alg": "SHA-256", + "content": "a2db6ce59c38160dbf4858fc5c5d0e6854de9fd8b39fcc0222ba7f12751b2069" + } + ] + }, + { + "bom-ref": "79d04664d199eb1b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/EUC-TW.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "dc8b84d04eafc582bb1a681767d65f09144658fc" + }, + { + "alg": "SHA-256", + "content": "7cbdfdb6ea3297d5db22384321cbf0ed16fae471a4093aca76c14fdd8f21e4d1" + } + ] + }, + { + "bom-ref": "7e7b7de0cd6ae8b7", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/GB18030.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "3e66fe7d2a8b77b9e875cd8495984aaa5db5a26e" + }, + { + "alg": "SHA-256", + "content": "c261b9ee7385c7b80e695f23067b13969d93a1215f72b914dcd31a67227a2d04" + } + ] + }, + { + "bom-ref": "a82ac9c045f73b27", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/GBBIG5.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "2ae28d0fe8d54062f7dbf12a611a5ec926a0bdcd" + }, + { + "alg": "SHA-256", + "content": "46aa94bad310c1cd0854b18a8d4dae41a5c8dedfaa6586fa81bb38fc1c1bded5" + } + ] + }, + { + "bom-ref": "003f995aa248a025", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/GBGBK.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "81507605c8c80f3c2423b9f14dfa8b47968e091d" + }, + { + "alg": "SHA-256", + "content": "654ba267aef6e69767c5a3fba41955441f2e869684b77ab3cd8aa1ac47d7f74a" + } + ] + }, + { + "bom-ref": "798d3efb61a3ec5b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/GBK.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "36b66067f711cb2c7abe881989be16169794e982" + }, + { + "alg": "SHA-256", + "content": "cd474473314b5c4123e5a21b94ec2ec398b55ff186fe210df40961a116560437" + } + ] + }, + { + "bom-ref": "e30f0f10fb083a90", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/GEORGIAN-ACADEMY.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "7f317d6d4d9daa76626e10c33797e18bcd0ca47e" + }, + { + "alg": "SHA-256", + "content": "056bea644fbab1dfd8b3f50feaf7879b35da0b3b01e73a4c3f3241e95eaf87a2" + } + ] + }, + { + "bom-ref": "e29888e105a87aea", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/GEORGIAN-PS.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "571f7fdff52a4ee66d9ed9df537e683b08facbb7" + }, + { + "alg": "SHA-256", + "content": "8068a171689155e50ca308ba9ecc9488dd4606db19dfab7edbbaea67fe52853c" + } + ] + }, + { + "bom-ref": "f5d14aea3ddc369a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/GOST_19768-74.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "3e4d7c8f8ef29df0009009a3f72e838831ccf9a7" + }, + { + "alg": "SHA-256", + "content": "f09cdce594bfa5018d97c3c07fa7a59d05587a87d81d5aa73ea4fc6969f60b31" + } + ] + }, + { + "bom-ref": "ef5d4bf86c86c26d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/GREEK-CCITT.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "6f96ecb78244404416b0d9da5f5d72179bdd7581" + }, + { + "alg": "SHA-256", + "content": "fcd98019c961e118bb5a22b04f8cfd4ed05dc24892b30986242add922a2fff25" + } + ] + }, + { + "bom-ref": "6858aba0285c1ff6", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/GREEK7-OLD.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "05a1027ebd0cbe4ba6254f9a69a0b1c419d50b34" + }, + { + "alg": "SHA-256", + "content": "de15818b16fad57bd9b910578cc109e058bdfa68a6e91fce39205f5ba6ea258f" + } + ] + }, + { + "bom-ref": "8092a5ad04c410e5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/GREEK7.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "9cf4a4b2fc31013bc96b5a5d3f251e80c991600a" + }, + { + "alg": "SHA-256", + "content": "6db6ab7fb998752d80c9179a857dade2cf69b5ffeb031acea23f851f5499025f" + } + ] + }, + { + "bom-ref": "0660aa6c8b1f7424", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/HP-GREEK8.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "68c12181c137968c33c9907fb623da995b3001ab" + }, + { + "alg": "SHA-256", + "content": "4033d21e5d4a928f67f6ff3945678a9d95b1b360a7f426ba313db7c3e030cbc5" + } + ] + }, + { + "bom-ref": "9ab10b3fa130bb96", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/HP-ROMAN8.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "9fa46e7209ec7a0e6f47c0700023079e8ad757e2" + }, + { + "alg": "SHA-256", + "content": "5b69bc31febc906c946590ce146375cca2fcba7381ce03f0a7f6b94334f7a644" + } + ] + }, + { + "bom-ref": "216d9a06b36df47d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/HP-ROMAN9.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "cf2bfcf3aff6e6e8ca29c44588d7336fbf31a187" + }, + { + "alg": "SHA-256", + "content": "294bb4244e10d1230b04b34f4e16ff214d2b962234a8b5f6e05138b7936b97b2" + } + ] + }, + { + "bom-ref": "47738e72ae7ae009", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/HP-THAI8.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "e6dd52956551f2dae0bd41d2c46833d552e55688" + }, + { + "alg": "SHA-256", + "content": "7177faf207a4b668eea3bd35a37bfac8d496348db8d5ad8c9e8adf653ad196a5" + } + ] + }, + { + "bom-ref": "3d8915bbb2d8743f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/HP-TURKISH8.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "ae37f0a488ee0e94d801fbbe8bb0d4b6ca6071ac" + }, + { + "alg": "SHA-256", + "content": "3c6a43ab21096711c1b70df829588b199b16ee9d5276947efaa9cef058387c54" + } + ] + }, + { + "bom-ref": "421b86510703eed4", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM037.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "4069eb47eb1bee67a2def0da95ef5313169567d4" + }, + { + "alg": "SHA-256", + "content": "e63c7551c7043276d40c7cf9364b3d0fc87d52c8ad5e6fdc996d5dbcf0feec50" + } + ] + }, + { + "bom-ref": "54d12d0f633d356f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM038.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "66d0b849bbac7501a1eeeb2e9f6cad86ee0f4de8" + }, + { + "alg": "SHA-256", + "content": "e04fc40310e2d1580beb4f1974a1e19a757b50c1b3f57c37402e75d2ab888a6c" + } + ] + }, + { + "bom-ref": "41921345ce13cac4", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1004.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "eb8e02014a55c3575be3ad43e9a09710d6266e7b" + }, + { + "alg": "SHA-256", + "content": "a045972d585e3934d2df73910231067f10bd4dc3c85d20e569df76544adde393" + } + ] + }, + { + "bom-ref": "23c1054b09559c18", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1008.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "b31f7f66cf90b01f66711001737bfb8fb45f330b" + }, + { + "alg": "SHA-256", + "content": "d3e74071bfe6d896611b03a9e2cb6189835c6f529338eee0bb361662db77a09e" + } + ] + }, + { + "bom-ref": "85d5140e8a7f0f5d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1008_420.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "f4cc7cca421e9fe4f123a0c932d22b7871c045cc" + }, + { + "alg": "SHA-256", + "content": "f01a30c5394090595284f180d07d16f4794e1fb569b86ae5cc1c168bdf290c81" + } + ] + }, + { + "bom-ref": "11f432465eab1417", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1025.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "394501638138918f5abf3bf5b1d121515bf11566" + }, + { + "alg": "SHA-256", + "content": "4a5ba2c0547db7c9f700866aa48d14a47c6e1b503da0958fbcedc18a5a73c7de" + } + ] + }, + { + "bom-ref": "72844c040377059c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1026.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "a3588b2c69f64fbd17afa44aaa086683a70aed2c" + }, + { + "alg": "SHA-256", + "content": "08f68a40b69637ab121e43cc6a38cc62df440c597c2738ae1ce196a95dad7455" + } + ] + }, + { + "bom-ref": "62d251fd3059746c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1046.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "baf19f3d69519b2ca992d483789be04ebd86cd84" + }, + { + "alg": "SHA-256", + "content": "a8b9bab98a16878676bae578a15c73cd504a05568170939b83d0101e391e7e37" + } + ] + }, + { + "bom-ref": "c772b3ce7af6dc15", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1047.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "9a7734eacf4e76cb44593ff376b3e5f497ae4d2c" + }, + { + "alg": "SHA-256", + "content": "886912ee0689c57c19ddc22ae08e219bfd84c634d81d9c5c9ae39ac5a81e0cdf" + } + ] + }, + { + "bom-ref": "30519c61bd4b2783", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1097.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "4130755ab9c2bd5bf2c099e09cc4d4b5a46e6d9d" + }, + { + "alg": "SHA-256", + "content": "e56f05fca19876f6a4e86922dd3e8416575da64e1956f7334184823f8b46730e" + } + ] + }, + { + "bom-ref": "a3f1884edf50e5ab", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1112.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "d0df9b90e6524c7090bce43b6c7e7507dc2c8f0c" + }, + { + "alg": "SHA-256", + "content": "9945fa0fb7351caf30fb0b29305a8dac274f4e33da443ee1c5543964b6a36d7c" + } + ] + }, + { + "bom-ref": "8d486ec70bb92318", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1122.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "32f496b03b52fd782966da83adc492ea68b8ada6" + }, + { + "alg": "SHA-256", + "content": "dcb4659bc9807ac07171a5215e040b4565e00cb70955811d4e62fc687cda02c0" + } + ] + }, + { + "bom-ref": "f5d9533c4d7602a1", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1123.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "e5ce17a6906a4a1dad6abaf346f455fae18a8bd6" + }, + { + "alg": "SHA-256", + "content": "833d694d8b389404e1838ff6bf7d76a65410a3a6644945760fa3c01d5c295b76" + } + ] + }, + { + "bom-ref": "786aa36ffeccaa56", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1124.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "5cdc1b11774a78181cbc957f46363bf28ed95346" + }, + { + "alg": "SHA-256", + "content": "372e37091107d88e10d099c8d6ae1b9b3eddad4d4abe125f8240f50d6b8ac7b6" + } + ] + }, + { + "bom-ref": "652cfa55b8da3b62", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1129.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "67b310f94910108cf7559963445d86c9820d7cb5" + }, + { + "alg": "SHA-256", + "content": "1d3ef5fdef09c512cf7aeebad0b821064840006e237184c4393c3a9e02db486c" + } + ] + }, + { + "bom-ref": "197ef192a35f64b2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1130.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "bd569337cf3e438866c0c8bd7139028bc4c19da7" + }, + { + "alg": "SHA-256", + "content": "ba146225241c2749a7a90d271d2fc000784fbd3b02cc92a731d8282a208ab60a" + } + ] + }, + { + "bom-ref": "1bd6c2c06b5834ea", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1132.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "19af06b5b0b082f092842aedb07fcde4b81aca5b" + }, + { + "alg": "SHA-256", + "content": "524183c89b47e0f8b4db59cfb865505bca48f2b40c51aca80659e70678e4ad19" + } + ] + }, + { + "bom-ref": "17f02625c2f2a16e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1133.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "823dbdcff5a4d9d00793592d819cf80d47912c07" + }, + { + "alg": "SHA-256", + "content": "4ce179d8022132306310c1e4b9d052bc06dbc64847188fa152647ce345f59e64" + } + ] + }, + { + "bom-ref": "637d8a82aa0680ad", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1137.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "94b6ad6febf9cad80ad7f1b2c4df178adf3eddf5" + }, + { + "alg": "SHA-256", + "content": "6156a30a04224990d6d57b7571dd18d847b0a99af61b04593533e457d7c633e7" + } + ] + }, + { + "bom-ref": "9def3ccec684395a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1140.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "9423a3c3f876f138fdc13c91e0634f693dac73a1" + }, + { + "alg": "SHA-256", + "content": "bde6364e90246c430cef00a6e927c45d679f1c4b5469f66944f4b7a5883f4cc2" + } + ] + }, + { + "bom-ref": "fb5299aef401cc8d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1141.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "b548bc3371d6ea586d580ec50ff092e7a6955ec1" + }, + { + "alg": "SHA-256", + "content": "90ff752f8d1f14dc973d808e9e5a22d75610f4ab61e6b9c027b998882e9d04d1" + } + ] + }, + { + "bom-ref": "55d2b708b1d9ee1e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1142.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "818130e3acf1a70fffee546f16787eea147091fb" + }, + { + "alg": "SHA-256", + "content": "55fabd05962dbe55e49e50a3177e751a2a562eb7350e3bf942dec6abc42f858d" + } + ] + }, + { + "bom-ref": "85ab14172c021615", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1143.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "4403cd91c5c842afc0aed0083c1a4504cca458e8" + }, + { + "alg": "SHA-256", + "content": "a35ffb1105d7244c7e448f243cf4a51869042bf2d4480dab02b897f103ae57a7" + } + ] + }, + { + "bom-ref": "f3c0708315746876", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1144.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "447463435568f83665cc5b534f851a246bd8d496" + }, + { + "alg": "SHA-256", + "content": "0faa29bcf2c689b3a8997445b88e0eb4f425ad2c080660aeab8f9f8cf56e0695" + } + ] + }, + { + "bom-ref": "5036bcdf78359e94", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1145.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "66fb4ba9d8b19be744231cb3bda1ca42b68a4ff2" + }, + { + "alg": "SHA-256", + "content": "264bfa150fb0e87ebefbb412e3609a3526e6de328c29e4860a6b6763f63ecb26" + } + ] + }, + { + "bom-ref": "0471f3891f24cf43", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1146.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "677f0a09eaf1eba4f43e0af4b353d4d01ada94c5" + }, + { + "alg": "SHA-256", + "content": "068352dd4bb0077dc8a07e99b8adf62d05b51a07a33542981336e9c2aff47ecd" + } + ] + }, + { + "bom-ref": "585bb3acc6e4a379", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1147.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "5ba0669bbe90bc51536b3e701b05fbed65d18353" + }, + { + "alg": "SHA-256", + "content": "0eece55c76b4a2fca58012111b356ec7a5da12493179dec2ab4ef48e2b954438" + } + ] + }, + { + "bom-ref": "1cee3b3538c375a8", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1148.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "0b6202a6c87c49dff7f9d020114b2cf8112a71ce" + }, + { + "alg": "SHA-256", + "content": "f55b53b2b5918de95c8ac5bd38652b0d54eb3aa224b545c97ba7f06683223157" + } + ] + }, + { + "bom-ref": "3d4c9efc1ff1b338", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1149.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "e1c7efe812b9a4fd55e09dd524df820e7d14b061" + }, + { + "alg": "SHA-256", + "content": "4f82a72c69b174248ef5bd7aa76da3511a1a8f9d8b3c4b60d0bc3c970d01c9ce" + } + ] + }, + { + "bom-ref": "9ef0ec2289e23c8e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1153.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "a92d47f57c52757501abb600d085464596ea2a4f" + }, + { + "alg": "SHA-256", + "content": "b3fdba5fc64d1251a7807bec8ec9f66569935dd29066b2acdafd8977fc7faa2f" + } + ] + }, + { + "bom-ref": "7eefe815a1362920", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1154.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "554a56c97bb3f4611f821fea9d08b1122e3b00d4" + }, + { + "alg": "SHA-256", + "content": "0b1a52054f274056e49b4c4d1ea7dc09f74b1ebe2eaae7deccac087d747e9870" + } + ] + }, + { + "bom-ref": "25a59b95dc069687", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1155.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "70ba846090765467226ba290b66333586af2c3f6" + }, + { + "alg": "SHA-256", + "content": "f73817d79ebeab12f0e95f7c226e780459bb0aa46b56ad6a93a18a7d4bcf6f1f" + } + ] + }, + { + "bom-ref": "6ea267f22eac9901", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1156.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "3f0a916b75bcd165e208b9c25615be2c46bc2438" + }, + { + "alg": "SHA-256", + "content": "5678f2adc68f29698c8a704d2fdbc0ab9436b414cb52cc72bdd4dfd6c102c594" + } + ] + }, + { + "bom-ref": "c8b5a50f8e7b2349", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1157.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "3616e9ad9819f050d0817ec3695d3db0a5e77a16" + }, + { + "alg": "SHA-256", + "content": "9f8d416805bba233521ef4075454c41b98e5525fdf4f16eda07bb6c5b2143f18" + } + ] + }, + { + "bom-ref": "beb4cc31f500b08a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1158.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "d5ee9fa75d380a906ae2d1f547c9bc1ee60d3cf4" + }, + { + "alg": "SHA-256", + "content": "e5bf69307c43a1dd3e6b0b5fd8f9e04546f28d48715340c418580301169d260c" + } + ] + }, + { + "bom-ref": "b43c8cac6c570b96", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1160.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "81e53ac59d1b6018a4a284f6ba08306e9412b733" + }, + { + "alg": "SHA-256", + "content": "22fbd444cb08c909c247e24c3704e8c86f4a1b108ebaf4ae4e1d472a72c00021" + } + ] + }, + { + "bom-ref": "db1a6d0d7ada8b78", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1161.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "5d2c9f4853f9101e894f235eac2dcbb639ae6866" + }, + { + "alg": "SHA-256", + "content": "3b286b1b6e5f807fe9804815e27fe5bb79b2c2029d6125bc1242f3fb813642a1" + } + ] + }, + { + "bom-ref": "8649f29ec5d75b25", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1162.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "b0a98c958906c43390ba2f0f9845eec2b6aedeb7" + }, + { + "alg": "SHA-256", + "content": "8f99048ab34e0393550c3a89317213b3545e18190e5c652c559c4486f75d60ac" + } + ] + }, + { + "bom-ref": "7c3eb7a63744b4d3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1163.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "6de2756df5afbe77fbbab9c5917810c1eb75b24d" + }, + { + "alg": "SHA-256", + "content": "8a60b6ad5bc4b952b21453392487654423545446b4646aee529464f470180482" + } + ] + }, + { + "bom-ref": "733734b369eacee9", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1164.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "904aa9e1b9130b22b064abe4a3c53f186240b133" + }, + { + "alg": "SHA-256", + "content": "20621545648ef4928f66e9f39294f0809e6cd4612c5e727e6e1568a3419f536b" + } + ] + }, + { + "bom-ref": "1fa6010023983b5c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1166.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "d0074dd3f4252697cff8bceca4deab2ffda79a3c" + }, + { + "alg": "SHA-256", + "content": "69798f9a9f33e7c99e1c5828476ffa86ddad624f33b692b35e1a52fae7f5519a" + } + ] + }, + { + "bom-ref": "40fdeedbf9b582f1", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1167.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "4eba0884a24ce331830782355b009305c7d61e24" + }, + { + "alg": "SHA-256", + "content": "2a3c6b859d2bfdc6cd50002cbc137cbfe9ffbb55af1866f565fcbc7df91629d8" + } + ] + }, + { + "bom-ref": "4c26b1f88233777c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM12712.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "3efadd37b47b9ffb2b96363b63a28bdd2b542f89" + }, + { + "alg": "SHA-256", + "content": "aa92fb14d1c14c1c82e334902e5baf0ff53c68558154060c1bde1a36a9408196" + } + ] + }, + { + "bom-ref": "682edfc9b1648172", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1364.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "f1ee9e4307c9a051519ffce40d2fedc09c0396b4" + }, + { + "alg": "SHA-256", + "content": "94bfe6d3bfb022ec7bc3c1b31091a901333693d1a41c2d775b6d30cbfc39ba38" + } + ] + }, + { + "bom-ref": "1a0103e8bd9e2340", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1371.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "9b716210c77eaa283f74c4e22a6cd7b5bb127553" + }, + { + "alg": "SHA-256", + "content": "2165315043dae6f5a7c9097c15d4874652312579ceed3e62d2f387412d41d3fe" + } + ] + }, + { + "bom-ref": "2d16eb6789765034", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1388.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "52bbb9d8d24a9d20271258c85bf6a38ec8081b4a" + }, + { + "alg": "SHA-256", + "content": "3f3bdbccc01c7834a17f3a822d1c18551e98ef2fa6021198e50b87c832158861" + } + ] + }, + { + "bom-ref": "b45f3a33f20a3c41", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1390.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "57cc87662045442128b4e970b1c50d1dd99f13a7" + }, + { + "alg": "SHA-256", + "content": "099177066ce4e058e0e7fa22b9ce0566a90159ea479576e1db365986094852f0" + } + ] + }, + { + "bom-ref": "04b5cad71148da25", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM1399.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "0a577d4f836c58aabcda058eb0d72fe38636f055" + }, + { + "alg": "SHA-256", + "content": "01723d47627035b65c4432d6b4810dcec1f274194812173a16248eb99827ca07" + } + ] + }, + { + "bom-ref": "46a0e17e59b8a007", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM16804.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "4c51a72dd65e609a8ddfd610c696e274a62ec5d2" + }, + { + "alg": "SHA-256", + "content": "aa393948bf86a369b89eeddd72a7592e35e34ae28519e1cf0c70236991004a40" + } + ] + }, + { + "bom-ref": "93d42862540dc360", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM256.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "5dd225cdb7e1b1c21ec388f4b915a2e6e30e080b" + }, + { + "alg": "SHA-256", + "content": "a4ea9c6d63257764ca337bf48f430b86d865653b5b8b587e2fa0fb757833ee40" + } + ] + }, + { + "bom-ref": "04c304914c98aecb", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM273.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "33d692350278ca44b4f69be05683d2222f29a0ba" + }, + { + "alg": "SHA-256", + "content": "e6db90d2325e04e3a5c4ee3e305754311c44998698ec9645d91f03274187310d" + } + ] + }, + { + "bom-ref": "df8f756f8de9511f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM274.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "c4be721b59dc5dee8643b19bed12e3f80758eaf5" + }, + { + "alg": "SHA-256", + "content": "6423caf1255d8722b9c9cb8a0abe705fbc928f8133a60c03dd59f4031bbcbc28" + } + ] + }, + { + "bom-ref": "3e3a82c959dc5456", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM275.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "2a58ca07770db3e5c0beb05e86ebf02d9cf5c92d" + }, + { + "alg": "SHA-256", + "content": "75b02600cfcf6da18f5cd1855f1e466d33ad8390b473cf9a0f0abde34ae2427f" + } + ] + }, + { + "bom-ref": "eab7a105da751d23", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM277.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "900f67c00d4611b3b7875e320f50ea38bceba2d7" + }, + { + "alg": "SHA-256", + "content": "8b7e756303e33a2fdd13af2ba5b1f7818f15949ca1c0e330dfd95d48b03378d1" + } + ] + }, + { + "bom-ref": "1daf53533899e074", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM278.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "49ccb76acd7c1c0e7aa85f7955993fae0494e6cc" + }, + { + "alg": "SHA-256", + "content": "bf7cee8a3f2f2847cea8aa5ffe461e6441861a966045f630cc73bba47dcf357f" + } + ] + }, + { + "bom-ref": "ef9e0de0734e1f14", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM280.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "9e096c5e458e7bb701aabfb58340d162698d740d" + }, + { + "alg": "SHA-256", + "content": "de09dcd7d50654c02acdea9476d7ff334f359112b50383288fe49db594d798ba" + } + ] + }, + { + "bom-ref": "c8b6a79f1496139c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM281.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "cab771312a0ca490f55b894ceaf86722d976abcf" + }, + { + "alg": "SHA-256", + "content": "16d042f1807408cda19ea1d8e5a3bf06007554536a53d4605c435f36713a08b3" + } + ] + }, + { + "bom-ref": "c290b9d8994d2211", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM284.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "5a9771a712fa0feaf25c2e99ea216fd7e5923511" + }, + { + "alg": "SHA-256", + "content": "39046bdff6f0fec840d45cb23ac4d2d5f32bb746c9a96a4ba9e42bf2178487aa" + } + ] + }, + { + "bom-ref": "0e1e64909a693fa7", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM285.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "5126abf5f08c65b844e569556889215cf13af414" + }, + { + "alg": "SHA-256", + "content": "c9f54a9bf9bc3187924ea44a862757d2faa6a5599d028efca85483ccdfbd8fd1" + } + ] + }, + { + "bom-ref": "8d9095fc85ceb232", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM290.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "06f6bb276c5d7b7de52e105fc0576b910521e1bc" + }, + { + "alg": "SHA-256", + "content": "95957db809fcea97edb0a30d9a64129f6c3cb2356770cf5e774c52fe41c7921c" + } + ] + }, + { + "bom-ref": "9cd2826a17b7c181", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM297.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "3281679834e76cef7377fed4779ef76957d77055" + }, + { + "alg": "SHA-256", + "content": "e714fe4e9d02d112e8c0480a55c1605b338543a0e8df19067769b08ee95a1923" + } + ] + }, + { + "bom-ref": "161264103c8a3a59", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM420.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "26e9045e07c2b56b1bf0b32eee5c351ec88c276e" + }, + { + "alg": "SHA-256", + "content": "0afb239f4c32b4c37783b03d37b9f66d012a45dbea85052d34ce8ba2e7cf60dd" + } + ] + }, + { + "bom-ref": "3d50f269242bc682", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM423.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "d2efff0b18be6a81cc52595d90609f2a072a34c0" + }, + { + "alg": "SHA-256", + "content": "977331b034712009115b5a92bef6aa69e74e99a5b0f6435e9532856b8ed7c352" + } + ] + }, + { + "bom-ref": "2a4faa6c3a2c6d64", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM424.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "30264bea594a0183bd6445bbd16c134f5b0871b0" + }, + { + "alg": "SHA-256", + "content": "e3d0a5b82610ca48404667eb49ed3f2c73f01b617b06cc7387b9146de543ad23" + } + ] + }, + { + "bom-ref": "17af832f46de3d1c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM437.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "ffa0bac89e2850a1cfe53f707f330e33c63405ed" + }, + { + "alg": "SHA-256", + "content": "69f1cbfd9590dd1c5e1ba31616cf80350574b887746fcd0c2569ddf47df9a8b0" + } + ] + }, + { + "bom-ref": "c47b8b6cdda6fa76", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM4517.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "aa6c38b3d70ef273c060d34415b7d45edea33fbe" + }, + { + "alg": "SHA-256", + "content": "d49b2d1c5104369f8ca85c725ac254841a0f6ffc4fc6c638b5df77d0bd368318" + } + ] + }, + { + "bom-ref": "97ba584f5503bcce", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM4899.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "52ad65109cce8592f7d14105230dd18390062227" + }, + { + "alg": "SHA-256", + "content": "e0408a48acee548641b1cafaf078899fffc6829a5cc77d931d1647262db74af5" + } + ] + }, + { + "bom-ref": "e2f86bab3d94c2af", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM4909.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "022cce45d0a2c03f467f58c140986e60865340a1" + }, + { + "alg": "SHA-256", + "content": "5c4bc1c97f714f9a81537bd5029924c086a09096d3eee68c289266816c336923" + } + ] + }, + { + "bom-ref": "4c7c6eb845417b38", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM4971.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "5daeaa4df03ecc687ba125d806adbe8c13b66380" + }, + { + "alg": "SHA-256", + "content": "a59b93909ec26b07746583de54ddf0b197047eb1955dc32ef4c8b0a5f447db9e" + } + ] + }, + { + "bom-ref": "8dfcf7f9568307f9", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM500.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "ff43a5d8a4f75c1c782abf4f936d5fe52a056f73" + }, + { + "alg": "SHA-256", + "content": "0bc970ae0e0fbcfabef8c2fb885d7f8c913bbf1614a144f550dc75656090ad45" + } + ] + }, + { + "bom-ref": "0749752e37542fb1", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM5347.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "e2ccdafd3f4c9d3a9665e0e9923528d7bf09ddd0" + }, + { + "alg": "SHA-256", + "content": "7f84282ed95da752b395e62414831a7e7f8c54abcf71e54e3dd5fb938d5f1732" + } + ] + }, + { + "bom-ref": "e1a5298d6056d20e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM803.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "190c8c7d485652bf3244a45db7fe41332e82ffbb" + }, + { + "alg": "SHA-256", + "content": "ddc7a037aaa6eab5d2c126f10d2cb2d7f2114a968d0ab9c7b38efc683cfbeda3" + } + ] + }, + { + "bom-ref": "a11fe1d29346d7ec", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM850.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "aee0ed82cdeb62b8645ebe5ff98cb3686354786b" + }, + { + "alg": "SHA-256", + "content": "ffb6a2cbeed3318cafe6d3c70af225b8080f2833d38f1d37ec14d12a77b2c4a6" + } + ] + }, + { + "bom-ref": "5dcedc08dba7227b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM851.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "c01627cc5601cc28cc1324df2825dc6415e79323" + }, + { + "alg": "SHA-256", + "content": "0e25ad7e753a913eca7478f951599b62bb6ce853bcf2d139ebb0c8d88dd1295d" + } + ] + }, + { + "bom-ref": "80ad7d944642773c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM852.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "9f9604d08eb757a19d784428bce8dac867c58c3f" + }, + { + "alg": "SHA-256", + "content": "a470e55c8307f0ca842801e54ec9c5df5a1dd0d1a2480ab1d0cd350b7dfc4f63" + } + ] + }, + { + "bom-ref": "38b776943831aef3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM855.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "ae5085bad18aded170eb585a9818790dc5b622a9" + }, + { + "alg": "SHA-256", + "content": "5c40062630597b51ff7794c045bdae2fe3139737909823560f475e497210ca41" + } + ] + }, + { + "bom-ref": "11c56a1680c243ab", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM856.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "7e722b8539e3c257d8072c16db0fe4a23293043d" + }, + { + "alg": "SHA-256", + "content": "fafa720a52b26b54d8d201e2892a3bea3276899ee48c91bcba268530452b8698" + } + ] + }, + { + "bom-ref": "e0af75035923d7d5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM857.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "cb3bb9025de1a6b99897bf7abd1dc7d268a06fc9" + }, + { + "alg": "SHA-256", + "content": "440c0ff6a3e15e7f321124ae106ab076e77f1fc7e0340cf73cf44ac9e6ab69f1" + } + ] + }, + { + "bom-ref": "2bac5abda42ef11e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM858.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "f7b39e07864c88af86046ae259bae80b07e29622" + }, + { + "alg": "SHA-256", + "content": "53018dceef2fcdcf0f2c6252816f400f54ad3bfa2754be1392cee89e3997deac" + } + ] + }, + { + "bom-ref": "0d5d89e4cbf2efae", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM860.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "cc413050a31fb1f2427d4777ea364d2ada02be80" + }, + { + "alg": "SHA-256", + "content": "d7f9a87a4060c4f041a77986616d7c8829d1957e585fcfebfe53e09ca88e8596" + } + ] + }, + { + "bom-ref": "80417a7a905cbd51", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM861.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "e3ef4d8010ee368af443ed34cf08fc283b1e9196" + }, + { + "alg": "SHA-256", + "content": "3487f19af408ac59963b89284fed25603b6b7a4aec4253d218eddfbfb99ece31" + } + ] + }, + { + "bom-ref": "4d1a9127a658c7f0", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM862.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "a4baf34d8298c770fb10a63e9d9097183074cf68" + }, + { + "alg": "SHA-256", + "content": "1660ccfe6cf5318391a8cca8db796b23bb7427175b32250ddf0833f73c4b93e2" + } + ] + }, + { + "bom-ref": "bbc5730932428ad5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM863.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "9023c16bdcbf504c19efa1e04445fbc653edb30a" + }, + { + "alg": "SHA-256", + "content": "f6c136bb5a00504fde7f3385ba6de8050a70bbe41f5c961af76c594bf01fe6a2" + } + ] + }, + { + "bom-ref": "ae66faf6446c0367", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM864.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "a9e41f0c9c85f52106e86e621c29f1923b70b941" + }, + { + "alg": "SHA-256", + "content": "3153d4af884dae2e7c30d537fbfe7980c455bf0cc14c9321f06d5eca1b3c3666" + } + ] + }, + { + "bom-ref": "c4ea436d3d65d0bc", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM865.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "49ec5688c4ea9ce5f2ee06fbc63dd043fd5a5087" + }, + { + "alg": "SHA-256", + "content": "74d4f4e3e17fb43b51af95c58c2071d504eb01332b00262ef56f48e285c1be1e" + } + ] + }, + { + "bom-ref": "2ce48e9f43c3d986", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM866.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "91f61423d079ff91fcb1ad78918ec69bfa06f71c" + }, + { + "alg": "SHA-256", + "content": "ab6d94c857ef2938d5b3709494e988a8aded464f4edc2b1600ad0be9e3f396ca" + } + ] + }, + { + "bom-ref": "67ce8f06d14ec033", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM866NAV.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "fe75c0583b4d32e6efb5b5c9e3dbed98433e6ce8" + }, + { + "alg": "SHA-256", + "content": "65eb38a63a5b3ac0d309939f6f9a9fcb20c1786b38cc431215ef7dee003ce780" + } + ] + }, + { + "bom-ref": "ff107a5b820f889b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM868.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "9099704b94f99f04feaa2a0a37feedd4631e921c" + }, + { + "alg": "SHA-256", + "content": "a24bc374bca9a8a891ea87c8c58fca681525d2575e749e5ee7d6febf42280086" + } + ] + }, + { + "bom-ref": "793fe8833b866e7d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM869.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "61cff0562cffdaa87f85425c6d24ae12f7bc77bf" + }, + { + "alg": "SHA-256", + "content": "a28fa006242455bd62003377b0e88915cc41e085155230685016719063c98752" + } + ] + }, + { + "bom-ref": "95ba45a4f5415304", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM870.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "21b759ae1feee6e5fdde8d86065483cbe5408eb4" + }, + { + "alg": "SHA-256", + "content": "7b80dbbbb106daa92a943ddce12c34a6ee9a601400b5d2f71accc4809815c195" + } + ] + }, + { + "bom-ref": "0bea1af784c9ad57", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM871.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "4996fd68a8186f39e09e4d6b9fcf2852d2ceac8f" + }, + { + "alg": "SHA-256", + "content": "b6862d39b5ca0b10131f041b23794fe1c8eb88e3d55e231ccff52dfe9fb14041" + } + ] + }, + { + "bom-ref": "425fe06c0b54e7bc", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM874.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "f5aaa5aa13568b920a24c471e35f4d43e2e016d4" + }, + { + "alg": "SHA-256", + "content": "62016a40e4ff397c443781cff1dd0059764b56ec6c2e4821c1da894dd923de75" + } + ] + }, + { + "bom-ref": "aaf319081b208c3f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM875.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "f303b19e44701779fc2c3338c046585c0c40aec0" + }, + { + "alg": "SHA-256", + "content": "c0cfe1fb3771c7cba309814f596cdbdebd281499164030ef93f9d2f394d7cc7d" + } + ] + }, + { + "bom-ref": "1aa608c071d7e012", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM880.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "afe5e35b517134e68e7470d8e9dd800938572331" + }, + { + "alg": "SHA-256", + "content": "72b0cfe45520139a2ed004043f4c7c44363c031ba52502b326529ef67dbd8518" + } + ] + }, + { + "bom-ref": "1b18cd4385708771", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM891.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "847fbf776b341a3d6f09909ad3adcbb65e4f9b37" + }, + { + "alg": "SHA-256", + "content": "c6f5b2f6a8ad447104693e8d1b146317921fb89e39d2fc03dc3067ea5f9bb87f" + } + ] + }, + { + "bom-ref": "feb0113d90099d9b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM901.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "b49b28cd1941a40de21465f31d9f74add4f07302" + }, + { + "alg": "SHA-256", + "content": "5af93e589e29cfc8c9471058107dd070addf572ea7ef410fc4aac1028fe2953b" + } + ] + }, + { + "bom-ref": "77f848f47378b48e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM902.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "faa11dbc564c9119bfa5f896b37c19fde4266533" + }, + { + "alg": "SHA-256", + "content": "341b6c5d667cf5a1d982ac22d0c396828bdfe43fd875d8284753ea8f5a5cb1bb" + } + ] + }, + { + "bom-ref": "75e0fb747c395221", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM903.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "ee39dae823908454aee02c997e1947f9a72ab047" + }, + { + "alg": "SHA-256", + "content": "0f61e26ca6139d7d0d48898143c77fd112c716089e7169c1e06daf9195f39cf3" + } + ] + }, + { + "bom-ref": "73224cc834406254", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM9030.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "ddbf079fcaebbe59e0f295ee6d5e90853e393353" + }, + { + "alg": "SHA-256", + "content": "fdc658654d1203215cc946897c8702b3cb1a4c0d57b6cb29a5d66f85d0e453d2" + } + ] + }, + { + "bom-ref": "89025b42f0c08e8d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM904.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "4136767a552fd60b109068b58bf01f459bc57b5c" + }, + { + "alg": "SHA-256", + "content": "6858bafc0a0e44eb486a17615804dc1bf22616073a99e718214c0b3b44b32e9a" + } + ] + }, + { + "bom-ref": "f18de43ac9378000", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM905.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "dd1bf7968aeffc0ebec92185960cb40d2e37de77" + }, + { + "alg": "SHA-256", + "content": "e405abd6991c3e145f607209a7bac833a9d529bf829507ce4811b372f1066542" + } + ] + }, + { + "bom-ref": "e36cce62767c6eb4", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM9066.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "4a1363aa388131a09e31c1e4b147c6fb6ca8220f" + }, + { + "alg": "SHA-256", + "content": "2ee248ad9ceca23b8bc9c3840a8cb5ee62934fa0ebe77f2d94e847c7f0a23373" + } + ] + }, + { + "bom-ref": "b0ce8e9fd5146a80", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM918.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "1ddf2cb91b98635e1123764ef90f5bd5764a910f" + }, + { + "alg": "SHA-256", + "content": "c4dab1d5dcb3abb4c65dfc6f705337a47fad6baf7a1975293465746851283732" + } + ] + }, + { + "bom-ref": "632ac74172d14805", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM921.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "c5d6670319ffc48869d78c0e850d744056ef4bd8" + }, + { + "alg": "SHA-256", + "content": "0a49179e4a16614db301c053725df745dc33f6b76a269a9f44fe2882f49f9336" + } + ] + }, + { + "bom-ref": "e82afda856f847d7", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM922.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "ec601b5f468e00528e3eaa14227ee2c3a7b051d1" + }, + { + "alg": "SHA-256", + "content": "6367c12509b2bc5b210e24c533f195fffb0e8b7966a725457a5fb7f3985fbe43" + } + ] + }, + { + "bom-ref": "a2dac02a941b8894", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM930.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "efe05c0ed6b7a966cbc68d6196f3f5ed4813c887" + }, + { + "alg": "SHA-256", + "content": "0ef72e18de175a1e465392b75645bc0e16672fdc1c995658d88bbf7ae1c8b8d4" + } + ] + }, + { + "bom-ref": "7e67bda8430c69d3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM932.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "60140943db57a37e6fd5db8d122cfa9021037bbd" + }, + { + "alg": "SHA-256", + "content": "c936c9d8c1becf9ba156215dc9e898302c1092abbbf8e771130fe740936a9889" + } + ] + }, + { + "bom-ref": "58ed72a012f650fa", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM933.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "ff79619b4f3ead8f0c0db9e1813e1c61dbcd87eb" + }, + { + "alg": "SHA-256", + "content": "d65b1ea4cf5e1f075568fa9dc3f1bcba9756b77b512c26301d1fd98b2fa05c74" + } + ] + }, + { + "bom-ref": "1b359bbae6b90ad8", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM935.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "c86d59193ffa45e56fe5684fd3f86c3500ea59cf" + }, + { + "alg": "SHA-256", + "content": "8dc36800ace6cbfc7c283a7a3a55237b965eaef7e87c2f65cf30f03938b5a042" + } + ] + }, + { + "bom-ref": "22b01add97242231", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM937.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "b545fc79067f8ac7b38c60f7f48e601761fdf35c" + }, + { + "alg": "SHA-256", + "content": "868649969df0325a5fec0aa7cd8d07ed9d594a3a3262f89abab00fe3f90706df" + } + ] + }, + { + "bom-ref": "34419478666049d2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM939.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "2d6d0fd5528d0ba61f9c14518b6048526b0e7fe0" + }, + { + "alg": "SHA-256", + "content": "1dbb575e34d352abe8abbed948aad9fc39e407a80464607312c4842291eb944d" + } + ] + }, + { + "bom-ref": "a9dab603230ebb6c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM943.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "e3cabeac57fdb55d3465af58f6027a4c2c21e649" + }, + { + "alg": "SHA-256", + "content": "1f205dcbfc592e87e5a6b300a040f6c256d9de9d938a90d9f3d982bb3b693e21" + } + ] + }, + { + "bom-ref": "adf47f0e484bead2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IBM9448.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "07a63e0a3d95226fee5d82ae801af80e571eb9b3" + }, + { + "alg": "SHA-256", + "content": "67699597d81ed62d947f12c0dc1f99a45bcd7d1fa0833c6b7594670afdb38b97" + } + ] + }, + { + "bom-ref": "3bbd6faf45d55b35", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/IEC_P27-1.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "496e7a44e14ef5bce4447233e3df14f994fd6d81" + }, + { + "alg": "SHA-256", + "content": "b7c568b36cc94a322dff1dcd0393eba516eb71a29ebc7b19ff36bb15e204fed8" + } + ] + }, + { + "bom-ref": "be1d2411f676ffcd", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/INIS-8.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "7aaf42b98dbf86fe0c5f1a866e2190a0da09a5ec" + }, + { + "alg": "SHA-256", + "content": "6fd91c51b0f0aa58a78c940738f6e879c1ffe78b7596e5f876684bc5d33fac79" + } + ] + }, + { + "bom-ref": "f7db3d72bf720fa1", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/INIS-CYRILLIC.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "ff3d6066a12687fd53e34720f9e6d834e732b98c" + }, + { + "alg": "SHA-256", + "content": "ed62e9841e01ad724f9c8d42a0de567ef86d47209f9349daebb64686246ddf60" + } + ] + }, + { + "bom-ref": "682caa6474e049ad", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/INIS.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "4fe840bc49515285b8ccd9a0ad896c09dfb11c7f" + }, + { + "alg": "SHA-256", + "content": "5aedc89641b9973cb6f8d8367ffea6cd80c56452e336ec09d1750508da2773ad" + } + ] + }, + { + "bom-ref": "049f95a1481eef09", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISIRI-3342.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "8b6bdda4cd73f9b1bcf3ae287e5d2364725fe133" + }, + { + "alg": "SHA-256", + "content": "62cc1ae9eca5f89c88cf87f6e9ec201e1b0e4bdaf9ea81e13c636271c77ec360" + } + ] + }, + { + "bom-ref": "56f74d7a36e39b9e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO-2022-CN-EXT.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "81cac14e09cbe4699c957597c96315d9133f00e1" + }, + { + "alg": "SHA-256", + "content": "026eb42e2ca402226e7e626aee9425de8dc7b616a6fbb13a825f1af8ea54bb7b" + } + ] + }, + { + "bom-ref": "4e933a8a954e1eae", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO-2022-CN.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "e4fdcb0b706f3d787198e6aff1db63cf101e6ab0" + }, + { + "alg": "SHA-256", + "content": "e205f460bd863dea48e81f154118dfe1f4b0890c1f54a0aab0402cf9bba3d3ac" + } + ] + }, + { + "bom-ref": "094a25bb2e62607a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO-2022-JP-3.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "a9cc16ac369dfa76d48408af3c73e726775d75e0" + }, + { + "alg": "SHA-256", + "content": "aa9f8d44d1c8f8554f4439df3accb6a96ddc3931f9b1378de0ec06a8ba71e80d" + } + ] + }, + { + "bom-ref": "00958c232513d53a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO-2022-JP.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "27228923f39c87632ad15a0c7f2ef014d21495bd" + }, + { + "alg": "SHA-256", + "content": "5b5f22f43fcc4ec5c69c1d8b1a5b394c063447bccf5037430b19d6d46a69d02c" + } + ] + }, + { + "bom-ref": "8f5a24da733c8563", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO-2022-KR.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "0740c8366f9374f7210936a368c7919aef8082db" + }, + { + "alg": "SHA-256", + "content": "25b9a74b609d2925f2467ba5f39c11ffe130e1a9edcc1e6549e79510b048e49e" + } + ] + }, + { + "bom-ref": "d3561e169ae88fa1", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO-IR-197.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "609f745c798bc19e4bbe78a6f0e9d72a9bd0fbb4" + }, + { + "alg": "SHA-256", + "content": "57ed5262f481ee65c862edcac758dddfac61cff039b3ec991b55832c059e4cfd" + } + ] + }, + { + "bom-ref": "e01dfac0ded567f7", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO-IR-209.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "2399733753e2de3b28a8936d1c0cc49bb5494f0e" + }, + { + "alg": "SHA-256", + "content": "eecbdf0f88b5d147f330692b5f8d9cb011a357c56c43cea6df44eaf21ef75e68" + } + ] + }, + { + "bom-ref": "20f4a014249e378f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO646.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "e67034b127eb815a6a1d256f7c7d4f2d3a1ff326" + }, + { + "alg": "SHA-256", + "content": "59abf0a5c13017ad370df26eca662524c96038cd289f0b49f8ed2aab0beade35" + } + ] + }, + { + "bom-ref": "4ef0fd0e12fcb336", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-1.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "e810268daab2e636512290380ce0daa0ed1cefdf" + }, + { + "alg": "SHA-256", + "content": "0ed5421b730bb65f0411263b25954771a3c00dae9f9b0451425bb4a6826ebfa0" + } + ] + }, + { + "bom-ref": "9ef1da3507911a52", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-10.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "785a910314c4954d3c99da35190221a24648a768" + }, + { + "alg": "SHA-256", + "content": "2442f550f7ff44be696981edb58c0562846953b44671e4ec13187911e8190c02" + } + ] + }, + { + "bom-ref": "17329ed78ba342b2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-11.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "719f04505ee79f02c42e2656e246feb1adcb1e57" + }, + { + "alg": "SHA-256", + "content": "ddddadef47ae9994ff0461856d14931bd357a685f48008a00ba00873554e74a7" + } + ] + }, + { + "bom-ref": "cba5dbdcc5484b11", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-13.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "7c8c57882233aad24fe37afc3e94970b3ce99c61" + }, + { + "alg": "SHA-256", + "content": "05cf922e88fdbe5be06474e54f6219064d07148cf3a13c4c8135634760e8531b" + } + ] + }, + { + "bom-ref": "ea4ffd0dec203eaa", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-14.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "e157affade69f43d5a5f98022eeac14215e3b175" + }, + { + "alg": "SHA-256", + "content": "90c2e57dd1ccee6e6b06339f2452c8eabcf302353b263bd4a6a5440ef5be02bf" + } + ] + }, + { + "bom-ref": "d0d0d01c6322a312", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-15.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "2d1234cd35841b828a7e1752a2a8ff63e526f07e" + }, + { + "alg": "SHA-256", + "content": "3ebecaf31b3bd5f23df5dce450d87b9e74d7b926026ec07fa4884b6d69dcf6ec" + } + ] + }, + { + "bom-ref": "f38aeecc9832fd35", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-16.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "2c63e715a79bdafcf13e7a0f0de38b54115d4939" + }, + { + "alg": "SHA-256", + "content": "83ed57f0dcf0855a8824ba1d31e38fbc3978d932ade8f42690d3c86cb8f8b124" + } + ] + }, + { + "bom-ref": "92070c7865012b96", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-2.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "48d4987a47d44e45dcb139351d3a04e5a51edcb7" + }, + { + "alg": "SHA-256", + "content": "62c5ad5387efdbc699c41a80aa3d24a3e9dfda0714ee8c91dd3002b99a19dcce" + } + ] + }, + { + "bom-ref": "ddbfae0d6b97c4b0", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-3.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "d5c5b65188cff07d9165e236a8e02365239fdb2c" + }, + { + "alg": "SHA-256", + "content": "141183612b387fb0eebcae40058ec96977594e0fad95cb849b6de27e0b73f284" + } + ] + }, + { + "bom-ref": "b4c792b43e2e57fb", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-4.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "da43d0f219feaeadeba5d9e916c40fdfbf493667" + }, + { + "alg": "SHA-256", + "content": "9bdb563a2e170f83fd856aeba7a90eab6269af40dc0d95aa792f9fa0e0566e07" + } + ] + }, + { + "bom-ref": "2656f94547650fee", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-5.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "35a6b877f4c4b71b25de94a19f64a15276cf7c81" + }, + { + "alg": "SHA-256", + "content": "e89ba843bcbb898b7452f92fdab3b83af072734cdb5c80b8f1a9564085fc6608" + } + ] + }, + { + "bom-ref": "c9033852290225e4", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-6.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "3a275feebe6b45ed20c444bf4a68dfff19d8efb9" + }, + { + "alg": "SHA-256", + "content": "c0267fa43e71cba1c0106243d9ac8a7b2f87cf2552765b86a977dbaaf44088b2" + } + ] + }, + { + "bom-ref": "340ff541b089e970", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-7.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "f0ffa3f6e4d737654689945197fcfa5c07208251" + }, + { + "alg": "SHA-256", + "content": "10ff5c458c2a98a851d1887e7f66e1650da926f3c27e79aaaaf4fbb58f68da5f" + } + ] + }, + { + "bom-ref": "f6d856c168a12c92", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-8.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "0847cddeedb3763b3253d13910a31775f670db94" + }, + { + "alg": "SHA-256", + "content": "012d955784a414f66c835fccb74387b31a67e56d4936df973282a06122ebac28" + } + ] + }, + { + "bom-ref": "b88b4255bdb9064d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-9.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "f875b68a67a64bd8a453c50f45ac087234650e21" + }, + { + "alg": "SHA-256", + "content": "3a3ff587082b32a45752c00268d4ab87e0c417d07b55db33444f2a543dc20db8" + } + ] + }, + { + "bom-ref": "f15dcf886adc1dec", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-9E.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "ca6c1193bebed49235ebc4589ecd98d185f38cb3" + }, + { + "alg": "SHA-256", + "content": "a32056d57ef427748efc2105538811279bef3cf55a60d2ca64847ee2332d02cf" + } + ] + }, + { + "bom-ref": "e4b54e04c3cbbb20", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO_10367-BOX.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "1c95a4b1bc4ae907c28d91591ba370d89866b823" + }, + { + "alg": "SHA-256", + "content": "0b3eef2f1dbb3d33c298145b83419f5a4b7f1ef26ce774903fb887ed8a28c79b" + } + ] + }, + { + "bom-ref": "73b81f1c0e24d400", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO_11548-1.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "851997fff60f0b165f43aa7926e1713486d8a4f0" + }, + { + "alg": "SHA-256", + "content": "89f4b9afa329d7fa61fad25effccc69faec2a054688a1d8cc414e5b6567d75ce" + } + ] + }, + { + "bom-ref": "1456b8d19f7d1a7f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO_2033.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "425ac4f40ff242888670bfdbcce62f9775e026cf" + }, + { + "alg": "SHA-256", + "content": "fa96637f7051ced3d5ef0a507877bc3736fe28dd605e9e2762ded7d9a591b142" + } + ] + }, + { + "bom-ref": "bdaa966dd67a9d74", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO_5427-EXT.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "5ecd309067e1d1b4d6469fc0dc96f980ee46a62a" + }, + { + "alg": "SHA-256", + "content": "bfdf2c3beb89f1c2b066d561b5afacf19f19635ec4c7269a6754fb824f61c7ec" + } + ] + }, + { + "bom-ref": "4f6e27566b98045d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO_5427.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "5d0a4b5a31d4ae1d95c636d8d7e0e51e1290ba98" + }, + { + "alg": "SHA-256", + "content": "0b6c4334329c68b1404cc5ddc29d0afde3c7b8e6e12b399ac6e31fcf81e7a979" + } + ] + }, + { + "bom-ref": "49e315a84f1cf80e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO_5428.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "d6887a58bcacea4d4fe5dfa7d72be327c1450568" + }, + { + "alg": "SHA-256", + "content": "2853b050a6fce7367c238f4d2db05b79e5ac5ed26bd9638b1e27e82017fe509e" + } + ] + }, + { + "bom-ref": "1a7693ab0e4240c7", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO_6937-2.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "fb12355ee7894611fc3b8bbe58831b8c4c93542e" + }, + { + "alg": "SHA-256", + "content": "e46f45b0d0b4a7de4c86b7873b8ce9f4927d0398b0f296bbaef88ae1d3d0e978" + } + ] + }, + { + "bom-ref": "72f28d4409f0fb95", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/ISO_6937.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "2b034e5f4c2d80b6a502ed9d4dda64a9ebcc7dac" + }, + { + "alg": "SHA-256", + "content": "d725e54743c215d118efc2f4f586e646a5041fe7098a1bedbbbe9ae4690323c9" + } + ] + }, + { + "bom-ref": "0c127f57ffcf2563", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/JOHAB.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "d708d28913fd687e0e02af0119dd25cf60ef08b2" + }, + { + "alg": "SHA-256", + "content": "7ae50549864ec795d769e7ce791b37225c502550d1de5dbf077d8ee279201a7b" + } + ] + }, + { + "bom-ref": "d5f587ced110c975", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/KOI-8.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "fd502424f1cf8e4bbb368b492402a2d556a42b82" + }, + { + "alg": "SHA-256", + "content": "6dad72917737247466942b1404fca2a5f95c486b771367d10d8314655f3eeb55" + } + ] + }, + { + "bom-ref": "d52fe820bc751d88", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/KOI8-R.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "a73705525184604f82ebed5de78a08bfc975d61c" + }, + { + "alg": "SHA-256", + "content": "ae320b105cc316df48740af238862708ab2e5eedc5c0cff508eeab6421da78ad" + } + ] + }, + { + "bom-ref": "de63e7fb0f9e0880", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/KOI8-RU.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "a61312e8677ab4cc345af80bf5e057ee4de85027" + }, + { + "alg": "SHA-256", + "content": "14b63a4bd69532106861f3e674122e12717c1bc4593b1343924f5c00f0b575fc" + } + ] + }, + { + "bom-ref": "d989d7a5e8147ba0", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/KOI8-T.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "902e0940eadf644c219ee88eb61f02b3ea51cbca" + }, + { + "alg": "SHA-256", + "content": "72e2444b277133a9a094dae34d3cc294bd3d54ab3bbd27a353ac14f538f50723" + } + ] + }, + { + "bom-ref": "1dfb578fb888a486", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/KOI8-U.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "97de0fa43b208e6fa4dbbab8da02efd7cd271ad4" + }, + { + "alg": "SHA-256", + "content": "871f3ce8b29ea063f354c4b1aeec06c87c00020c604075e810c5ed676ba583b6" + } + ] + }, + { + "bom-ref": "3eb81685c135f7cf", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/LATIN-GREEK-1.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "fceb44da1250525c8e82a15251db0f4d8c474e50" + }, + { + "alg": "SHA-256", + "content": "b284b511b31ab07fb4f82a9a01604a35450278ea0e19aa68ca663a074277c3db" + } + ] + }, + { + "bom-ref": "c9a5ad5685df3014", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/LATIN-GREEK.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "59727e5a69b16a15b7e6bc7674bc38394e6075e4" + }, + { + "alg": "SHA-256", + "content": "6bf2d4914220683781b0c087527052b0eac3dda89660d3e9406998dc588c552f" + } + ] + }, + { + "bom-ref": "4e9246d492c4e62a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/MAC-CENTRALEUROPE.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "58747cb432179384c521fe755c113bb36088ff9d" + }, + { + "alg": "SHA-256", + "content": "14b6d3d575baeab6060075bc55eaaae1c55a05c7b1c1c316c114f6cb8fbedb36" + } + ] + }, + { + "bom-ref": "a3b825a4c5fd66b7", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/MAC-IS.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "fec913b7230a6ce164555bd4da5634d5b3dfbd06" + }, + { + "alg": "SHA-256", + "content": "90a5495b580db443415d33fb14749aecfe820602e7d2f54155d920eb31d686d4" + } + ] + }, + { + "bom-ref": "75855c32076f0d8c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/MAC-SAMI.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "97fe75d227b4a60c96d62c4f41a9e743a2ebea31" + }, + { + "alg": "SHA-256", + "content": "9c4ea021d3f923b6941c2f9ca5fc2f87eb54b2791fa09304cec7f94c72135a14" + } + ] + }, + { + "bom-ref": "a56b62f7ba3ba2eb", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/MAC-UK.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "477edbd4558bddd693034927f0dba21c8c185d27" + }, + { + "alg": "SHA-256", + "content": "5ed579da177bf222ea53ae2f4853cecf684da5187699d7457ae2ca462b589af3" + } + ] + }, + { + "bom-ref": "7608fe034e4e6442", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/MACINTOSH.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "9817fce401388ebf6428acbefbd15143b4059e59" + }, + { + "alg": "SHA-256", + "content": "a98bb1e14fb5ca2d666443c855ac3f8c16c8409fdd21e4cc43db972574fdd3ba" + } + ] + }, + { + "bom-ref": "35a8b56b80d79963", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/MIK.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "fcf3d658aca2751e21cac3fc116f1656e51c0b3b" + }, + { + "alg": "SHA-256", + "content": "9c0447e5307806b15314aa8047295520de32a3a12174ab75bdd632a1d635ef4c" + } + ] + }, + { + "bom-ref": "671d917e2e96b5d1", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/NATS-DANO.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "fb05d038bfb999af410bb9173d65d64aaaa13bd2" + }, + { + "alg": "SHA-256", + "content": "b8ea0e2e9db836e90296ee52065375e6ebe267d5bd1386f605dab0cf07b29456" + } + ] + }, + { + "bom-ref": "3742c826cb8b4be9", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/NATS-SEFI.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "bfec8da5f270fb97fa4f575fdce430efe7b75818" + }, + { + "alg": "SHA-256", + "content": "d96332220ffe8f3f13cfd583bb0a4f9b57874ee1059b7562df592e04677e7bee" + } + ] + }, + { + "bom-ref": "df1ca1baa94832b7", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/PT154.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "45f282fcd156876a8561c755f611dad45ec8fcd0" + }, + { + "alg": "SHA-256", + "content": "ffd04b3c302ffb0a6158071746a350167492dfee1b54665bb24990f42739a712" + } + ] + }, + { + "bom-ref": "f2c4fca1f9df6570", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/RK1048.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "5c3ec4f27cf31f73fe34d2f91186e08fdf0679de" + }, + { + "alg": "SHA-256", + "content": "41b07b35b165b219b26464883725e1f1c20e3c6a361a42ed7a8073033d606d45" + } + ] + }, + { + "bom-ref": "f1c1c7482cdd0243", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/SAMI-WS2.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "73e7e76877e5c16dbc470b50e930e5a98acfd74d" + }, + { + "alg": "SHA-256", + "content": "d7e1911929236a6129a80b65fcd1f59ad387b1046ee5ca6d3ca911a5432ad45d" + } + ] + }, + { + "bom-ref": "b6a6c6d685b21de8", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/SHIFT_JISX0213.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "a73334705389906021ca24b3a9bfa8287987466a" + }, + { + "alg": "SHA-256", + "content": "62d937d7c5f02827733838b9fc8e9af95fd1b330cbeb82fd29e50bce3d9b2f2b" + } + ] + }, + { + "bom-ref": "6a522e969b383eb6", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/SJIS.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "5a5158de63138bc7c22ec9d9ecefb8d1438d6e9e" + }, + { + "alg": "SHA-256", + "content": "ae4a37109dfbdc341dbe552a56ff1f391a174ec740a7d75366a343ed0b57bd5c" + } + ] + }, + { + "bom-ref": "04136bb7fdce40f4", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/T.61.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "003d09dd83a3626619c6144bbf7d72e08800dae2" + }, + { + "alg": "SHA-256", + "content": "8a594a36619720363ff25980f6e2aa965dbabf100d8fcb02a58616fe0a0186fe" + } + ] + }, + { + "bom-ref": "4ef710437bcc0137", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/TCVN5712-1.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "014b991fec6b28e27f17b5a16ae56d911c8a3a2a" + }, + { + "alg": "SHA-256", + "content": "b487d36ec8ffc8c90d23c82822376bcf9219ceac248004d5e757d939796ebb72" + } + ] + }, + { + "bom-ref": "fa9dded1d42f0bdc", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/TIS-620.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "c2d78bd600c0fd843fc566518bec2f40df125542" + }, + { + "alg": "SHA-256", + "content": "758bddda72af8891c23c38e9d9306cefbb61ffd2cbd96013b9bc4b099502c909" + } + ] + }, + { + "bom-ref": "1af6e02025529c9e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/TSCII.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "ab2ef38eb2f4ab01fe3cdbf099b2ecea30261d1b" + }, + { + "alg": "SHA-256", + "content": "4404ce906e258b4d997006589d21a0a3feef0bf5e155285950b7c225b3283bf6" + } + ] + }, + { + "bom-ref": "7634612d66dff4dd", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/UHC.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "7a091353f607053d0e1a0ea03b9ab783b53ab0b2" + }, + { + "alg": "SHA-256", + "content": "9cbfbfefece5fc2ddc48ee861bb3f68fc86199616d0af2da359d52a7b818d4bc" + } + ] + }, + { + "bom-ref": "3fbb9613eebe11a9", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/UNICODE.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "3348ea0ec19f0343633533bed62f2890ca6ca349" + }, + { + "alg": "SHA-256", + "content": "50bf0c97154d218bd0e66050c527be6dec9a5979e17d2e423466673112321542" + } + ] + }, + { + "bom-ref": "48a0f150ec812d20", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/UTF-16.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "2d2c3d38528668cb0844b574fa84d2649795200b" + }, + { + "alg": "SHA-256", + "content": "30fd1fa847ff14f7dcbd288a4beebb76bffa3f6af4c9ea84450cc173196abd47" + } + ] + }, + { + "bom-ref": "f464c7a5cdd3a927", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/UTF-32.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "00e1e39a4e4566c356d28692b48eeb1177913e67" + }, + { + "alg": "SHA-256", + "content": "5455efa59c625ceedbcd12d59ea15ec2c7ce5f4015872e55beb2538e5184b5e1" + } + ] + }, + { + "bom-ref": "e27a9223ec7b7da4", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/UTF-7.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "6d618648f89bddd881598aeb4a58cd6d47de2978" + }, + { + "alg": "SHA-256", + "content": "5e2708da24fd889014b68da2bb521ada111037afe517cf2ab46bcb7ffb5e8d1b" + } + ] + }, + { + "bom-ref": "00eb08026af7a093", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/VISCII.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "01b0907930b7aa3436fa81c57e388941eb380efd" + }, + { + "alg": "SHA-256", + "content": "9543506b1f2487251a1cf1db277734139a85160e4c2e6a8392e1d0046daf9f7b" + } + ] + }, + { + "bom-ref": "d6cf0a3d1dbd6507", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/gconv-modules", + "hashes": [ + { + "alg": "SHA-1", + "content": "8c7a68e1ddb73b08676c834082be9982a6c92317" + }, + { + "alg": "SHA-256", + "content": "b6ff4ae1acb8453e26356956f5a6dcdab4b651b71072a2e32b94cc209b573c77" + } + ] + }, + { + "bom-ref": "0f5b6c00bb04a9f0", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache", + "hashes": [ + { + "alg": "SHA-1", + "content": "7cf7907d5b90a9acbcaf362c060168e376ebcc9c" + }, + { + "alg": "SHA-256", + "content": "c229d237dbd6d89abe5ac82f500f9ddad2612fde270d79238a63bde06f93febd" + } + ] + }, + { + "bom-ref": "b6a89edd3c38e341", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/libCNS.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "b43ab513bffb50701cf961e0f928dbaf403d303a" + }, + { + "alg": "SHA-256", + "content": "d1039d15302b5fa19d3962d330cba73fad4affde1504cbc5d7919b8b8eff3e47" + } + ] + }, + { + "bom-ref": "ce728e4721a2bbc7", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/libGB.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "d059b7414da133c95bc5dbc26f35ea69dff15f22" + }, + { + "alg": "SHA-256", + "content": "3161080afd0de2697b8f364b76d4ddfb1bd5925a5acad9e0dfe354fcd7bac0c9" + } + ] + }, + { + "bom-ref": "cbf75a34cbd5a858", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/libISOIR165.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "03102c2ea8e13f6d7f0fb1c834c459e76c14e977" + }, + { + "alg": "SHA-256", + "content": "3b0d831dafd7fdd4de5c5ab8cd7d2f0a6079c5d38745053bbb78428444201691" + } + ] + }, + { + "bom-ref": "71b0876b8e02e301", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/libJIS.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "455de09c5573e1584e31d85c87f150b62be13699" + }, + { + "alg": "SHA-256", + "content": "2bf3bb73a2c2dacf70e2f927039ebb129aad44e711f7c44332a6c8b433598b9f" + } + ] + }, + { + "bom-ref": "d6fede6950fe895e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/libJISX0213.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "655846aff43f34268d6d5bff8f175f1a478d813a" + }, + { + "alg": "SHA-256", + "content": "56570fe918655f3c60be5e759b0f272a9eb65bebdb2e9cf727a4f4fea555b2f1" + } + ] + }, + { + "bom-ref": "ebd8b0ba916ca8f0", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/gconv/libKSC.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "4276810cfdb545f3478e25edbe9fc24d7e131177" + }, + { + "alg": "SHA-256", + "content": "6679b6203dba3e53e03a287144cc6b46223ba589060460f09bbece69cfdb82ba" + } + ] + }, + { + "bom-ref": "0654e496e45abdbd", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libacl.so.1.1.2253", + "hashes": [ + { + "alg": "SHA-1", + "content": "1aba57fe9b7789762d6108caa2c8bfc255ba62fb" + }, + { + "alg": "SHA-256", + "content": "722ffe926c3ce1d46005a4bbc74c2b109b65a32607e01328a204b981249c5668" + } + ] + }, + { + "bom-ref": "e4018a02d2596a35", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libapt-pkg.so.5.0.2", + "hashes": [ + { + "alg": "SHA-1", + "content": "44bc421cac73c08c14585d6595db6c1bb7ebe23c" + }, + { + "alg": "SHA-256", + "content": "ff539d9b6aca71d1a094fcc05e498f3135e910dc77cff5804fca2a766dbe4c19" + } + ] + }, + { + "bom-ref": "6e46f3f3dfa408ef", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libapt-private.so.0.0.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "72a73cf0e2ef81824cd9ac2b1dfd7d3188ec0c5f" + }, + { + "alg": "SHA-256", + "content": "58440f33bf034ebdeb03333c3e005ddcad2fd45f7903d34a74d09d22a8e87741" + } + ] + }, + { + "bom-ref": "4d26e31ea953af09", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libattr.so.1.1.2448", + "hashes": [ + { + "alg": "SHA-1", + "content": "0245623994d36392f69ab161c9a49431bf52b2db" + }, + { + "alg": "SHA-256", + "content": "380c951ab98b152cdffe3b97a5358a1248525593df1b10d02f5163a38065a2bc" + } + ] + }, + { + "bom-ref": "cdb9543230989173", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libdb-5.3.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "f02a0d6fa7e1e0ddba8c4195af02c39eaa3c83ae" + }, + { + "alg": "SHA-256", + "content": "c02b40ecec54ac03be7bffdaa02fe3683859c269f31a233aaae5c02109483cf7" + } + ] + }, + { + "bom-ref": "91610e4dd13939f8", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libdebconfclient.so.0.0.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "8987c4cab7420ed37ce2783e7dbe2d6813c9f1b5" + }, + { + "alg": "SHA-256", + "content": "62e45e9c5fd9e71160f4cede498996368b5e21d693c53936f0613bcf03cbd6fd" + } + ] + }, + { + "bom-ref": "29bfa1c2ccacaadc", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libffi.so.6.0.4", + "hashes": [ + { + "alg": "SHA-1", + "content": "e7df747eaaea825fa1c304fe80318b2b7a2a1d2e" + }, + { + "alg": "SHA-256", + "content": "f91a4c675adf5a68dced59432d19eaec5d863d37b9ded1f928f17ebbdd7ec2ea" + } + ] + }, + { + "bom-ref": "20689edd05dacd16", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libformw.so.6.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "78b7cfdd7fc086a958abb034d301bc1bd9ac3bbf" + }, + { + "alg": "SHA-256", + "content": "74729f09eb99739a1691b64ccd5ca5d6fe27c1aa2b1b5f417a0b851a8b199545" + } + ] + }, + { + "bom-ref": "3a7b7c9814b0772b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libgmp.so.10.3.2", + "hashes": [ + { + "alg": "SHA-1", + "content": "d2ec2565f06f6637921797c69f663624739f182d" + }, + { + "alg": "SHA-256", + "content": "14748116ec8ec63cc9f4e7c911e1c32f9ff1f771aeade59234a54fd917ca198a" + } + ] + }, + { + "bom-ref": "c1dda3654757f4f3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libgnutls.so.30.23.2", + "hashes": [ + { + "alg": "SHA-1", + "content": "57615f627b1e0caef10eb8d833a6a664b04649e6" + }, + { + "alg": "SHA-256", + "content": "1b4ad830d8721c709d980c053060e23459e486395a0fabffa2a491b4c89a363d" + } + ] + }, + { + "bom-ref": "b7e6a2b62460f936", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libhogweed.so.4.5", + "hashes": [ + { + "alg": "SHA-1", + "content": "a6cb8d4b5d22f6a1ead92cffa142c1d3d92f85b7" + }, + { + "alg": "SHA-256", + "content": "4135795c36afc73f01145309c0e3acb07543b263566d612f6e4de4d53f7cb8b0" + } + ] + }, + { + "bom-ref": "ee3cd2f13a2a0269", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libidn2.so.0.3.4", + "hashes": [ + { + "alg": "SHA-1", + "content": "113179d4d43bf1f341acbfc4e3c9a0d9136982ab" + }, + { + "alg": "SHA-256", + "content": "3c1a9050920588c6a593913bee2ecfb2f3449336a43945e3e04ee0e640235e9f" + } + ] + }, + { + "bom-ref": "24390df313b7ad1b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/liblz4.so.1.8.3", + "hashes": [ + { + "alg": "SHA-1", + "content": "f6996035d854b710b0cfa0cf33bed4e64fecb02d" + }, + { + "alg": "SHA-256", + "content": "244066c277ec836afbeb1483f9a518f3166b9d077f6a8511ef80fb8148ba1e60" + } + ] + }, + { + "bom-ref": "edc7e195cd4e60b5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libmenuw.so.6.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "6254e99fe30c7f235f84faafb9f38d393ade59cf" + }, + { + "alg": "SHA-256", + "content": "44e2a7f95bf2515743c0a80fd68718fea068ca34330fe75d089a35eed427d9d8" + } + ] + }, + { + "bom-ref": "c484ac7d4403546c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libnettle.so.6.5", + "hashes": [ + { + "alg": "SHA-1", + "content": "a550509f6fc2d59b60d82edf92388fc6c602e1cd" + }, + { + "alg": "SHA-256", + "content": "e17fee9561403a2712bc825a5b6c8f098db13dea6cf323fdd798fe0dc0703054" + } + ] + }, + { + "bom-ref": "7e63f3afdde3ce47", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libp11-kit.so.0.3.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "6fafb1fea407d713511f52308b77c6e661fde30f" + }, + { + "alg": "SHA-256", + "content": "bdc5cf37024d0fce66a397603efc0cf2a4e19034e5753e907e2840211bc086c9" + } + ] + }, + { + "bom-ref": "f5908c44ddca245c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libpanelw.so.6.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "97569fcf8bb2fe4f226972e347415b9714f2af2e" + }, + { + "alg": "SHA-256", + "content": "adb7bf8aa30ff3385ac4dd033efb41241e1adb94fb0c23bd6a4026cceb6d6447" + } + ] + }, + { + "bom-ref": "fa8995410d877382", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libpcreposix.so.3.13.3", + "hashes": [ + { + "alg": "SHA-1", + "content": "dbf7654a49a1993ceb782e96e70fbd21c233dce9" + }, + { + "alg": "SHA-256", + "content": "9ef989e82be51545a5f1f1505f059faa9bc37a709bb97b5603238719706b2a2b" + } + ] + }, + { + "bom-ref": "bf5f5bddc6945ba5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libseccomp.so.2.3.3", + "hashes": [ + { + "alg": "SHA-1", + "content": "439cab8916d8520ba77d0107ee6663fd48868fea" + }, + { + "alg": "SHA-256", + "content": "010f6a6d48fb08bd76dcd0edd519bb9a8f33d4130fefa43b9106f052db25b762" + } + ] + }, + { + "bom-ref": "72e640c19009609c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libsemanage.so.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "2ee01f94cebf1d7f0b96a3118c0f496914088032" + }, + { + "alg": "SHA-256", + "content": "9be6186e79b523a542bf1ba76a8a06bfb8193329dc76631799fdeb7f50f45191" + } + ] + }, + { + "bom-ref": "b3c20e7bd8e2d699", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25", + "hashes": [ + { + "alg": "SHA-1", + "content": "d746e2a7281d476be9541271d1993d0989ed79d6" + }, + { + "alg": "SHA-256", + "content": "b62f36dd7e4926c64debe131d5bc55e32abfd9fe3f6306c08388fcc43b50cce0" + } + ] + }, + { + "bom-ref": "496535e91398864e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libtasn1.so.6.5.5", + "hashes": [ + { + "alg": "SHA-1", + "content": "954415cbd6ea73211ff59f7aaa3eb16ca52aaa79" + }, + { + "alg": "SHA-256", + "content": "41ad92453adf926d06be2cc42527c9084bb2c64a1f6806615c7ea8dac5789c3c" + } + ] + }, + { + "bom-ref": "e53fe5c894d9a8e6", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libtic.so.6.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "18a18d96b16171125b8e18944a80224076ea8018" + }, + { + "alg": "SHA-256", + "content": "1cd7f5a479f900ec91595ef738ae5ffa86c8663f45f9074cac0a171fb2499d4e" + } + ] + }, + { + "bom-ref": "233a5c48794f6158", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libunistring.so.2.1.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "0de1f130f1845e9c81c6676ce7c0488a09c97970" + }, + { + "alg": "SHA-256", + "content": "bd2fdf827aee611047c457dc6f48a1e4c831277d3016193d41fed4d8216058b5" + } + ] + }, + { + "bom-ref": "51e48139a58c466a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libzstd.so.1.3.8", + "hashes": [ + { + "alg": "SHA-1", + "content": "53cc92de8726a5b7d2a61a6ac323f78ca4cc3879" + }, + { + "alg": "SHA-256", + "content": "6f1015640fa55228fb6fa51ed0d6b705904fb758e5fc3cf58eb20d00bd479c70" + } + ] + }, + { + "bom-ref": "244a9e1ec27fbf49", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/AutoLoader.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "1f31e94944eba37da3bd3bb312d7a2269205b879" + }, + { + "alg": "SHA-256", + "content": "750ee369fbf3c34f72a823ca261d33a89bba98ad1d4a967f4f89e19b122eaabf" + } + ] + }, + { + "bom-ref": "24858762180e5768", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/Carp.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "cc2048ecf5c89cf8dd84426135357c3ad1cae2a6" + }, + { + "alg": "SHA-256", + "content": "fb5389969d145478576396a1716159d85691f08b5cc7e994b7bb9f76dd092da3" + } + ] + }, + { + "bom-ref": "665782f70367f30b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/Carp/Heavy.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "d59b9600b5ad9f1520a9ebe43109531d5ebce602" + }, + { + "alg": "SHA-256", + "content": "867846437cfd54b3603a4a9ca3583fec18ce624ca1df05ff55f1ec4815fa2157" + } + ] + }, + { + "bom-ref": "4df2f8dc7131d74e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/Config.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "94c07ffd92bc7acda614f0b2b8a512533f1b3323" + }, + { + "alg": "SHA-256", + "content": "f4e532ef61a4507b62a67908337e582d196b0f2731672862fd5971db0a26e11c" + } + ] + }, + { + "bom-ref": "b4d3c6c6e8f30b89", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/Config_git.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "0e5f48d5076ce55cc31139de71b81c7e003610e9" + }, + { + "alg": "SHA-256", + "content": "09c5e2ee35ee18d9043d95273f1cd37bc82e80567fd1372a1eb134c809c39504" + } + ] + }, + { + "bom-ref": "6c120a8255ee279b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/Config_heavy.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "6636a990f8e430ecfaea3d5dda59975f358167a7" + }, + { + "alg": "SHA-256", + "content": "1861adf41857490a4ce0c9bf0969b242c9ff2228dfea9236b4ec551b2c9f19ab" + } + ] + }, + { + "bom-ref": "cd218cf7ae5d28d3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/Cwd.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "94b66b0bbf5c078c88f5a7c8a85149e3461019e7" + }, + { + "alg": "SHA-256", + "content": "84c168cecf9770d5ba0f6f24fdea515e707f6323a8e9e08ae6b284026b009aeb" + } + ] + }, + { + "bom-ref": "530ddd32c00dc852", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/DynaLoader.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "a9e568ef830f71093627820d0838189d7be766f1" + }, + { + "alg": "SHA-256", + "content": "7ac4366d0129e3daeef5a8f2311764e0025f2812977663dbc82d11ba8fbf0021" + } + ] + }, + { + "bom-ref": "44e4c57068526b80", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/Errno.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "426a6d195aedd5aea4af9b7fadffa0cbe0d1a991" + }, + { + "alg": "SHA-256", + "content": "5c2d60c4c82acf2fa9f59ed3b71a3f8d77eaa1ef4f110d02c4ceb2c465211505" + } + ] + }, + { + "bom-ref": "81ba35e2b2cbaa09", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/Exporter.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "9759264b136707e8a8b763241f07ff88406a3e33" + }, + { + "alg": "SHA-256", + "content": "e392a2c5568140b1e76eaa4fb8579a728bdb643931c8b9cc2e57f80ee7ea2f79" + } + ] + }, + { + "bom-ref": "2c746cc990eb2f98", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/Exporter/Heavy.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "2f228aa8283047739818a6811e097ce69154cc51" + }, + { + "alg": "SHA-256", + "content": "4a05d2fb4ade7016e108d8b8cdb25b8426b232560be0874755b198fc5be0fee1" + } + ] + }, + { + "bom-ref": "4b8072c5b10cf3f3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/Fcntl.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "d5160f72b22f561d1946a1c12d8efbc4ac98e132" + }, + { + "alg": "SHA-256", + "content": "293ad7b0904fa32bf79bda796dd2244e799bb6b42450c910ef8f54d2edf076ee" + } + ] + }, + { + "bom-ref": "9ba46f6331c2a520", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/File/Basename.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "9db4c3eac640ca4d3e659edcd973adf05430c906" + }, + { + "alg": "SHA-256", + "content": "9aeea43fda475ea4e2b75633b2e25528f45b2510c7df4809449fbf938de58bd8" + } + ] + }, + { + "bom-ref": "9f80e20e902eb88d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/File/Glob.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "7bff1fa38b92429d8fdde48c70cb8015390160b2" + }, + { + "alg": "SHA-256", + "content": "4ae6ccae060c7a7dc8f688c9e3735d09b2489a34d409cdb8f059de596e098207" + } + ] + }, + { + "bom-ref": "ac6556173af2ab59", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/File/Path.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "328f3ee0a999bfd5171053693a04c9b587caf5ce" + }, + { + "alg": "SHA-256", + "content": "8e3bd6496faed3c6dfb7dbf696135aef6c362a99c7fa09d2728cd4feea334b97" + } + ] + }, + { + "bom-ref": "d7cf8883a0af4337", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/File/Spec.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "3c23500b983d600e34cc0433fdec6575070d58a2" + }, + { + "alg": "SHA-256", + "content": "cc58410399562a9c05d6954d277d6a0776db9176ac23909dad778f7a29deab09" + } + ] + }, + { + "bom-ref": "65659c42f7092703", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/File/Spec/Unix.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "bbb6f6052302f36e13b90e4f6aca89caeba464f5" + }, + { + "alg": "SHA-256", + "content": "bdcad33fe9d31537bbdbce2e32ab3b6fcf902432522e167d39531558c554450e" + } + ] + }, + { + "bom-ref": "7291efa77b5867b3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/File/Temp.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "f65bfa53b496e9759f3b5f663777725e2c293d0e" + }, + { + "alg": "SHA-256", + "content": "f83f5e969b8ba4cb9de0302624d1df4220f1ad8c5e20f83acb9967d474516fb2" + } + ] + }, + { + "bom-ref": "031ef49edf434d46", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/FileHandle.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "5ce121464335daa58fc4d0424e9639bbb0e0f00f" + }, + { + "alg": "SHA-256", + "content": "91ec6e83b34fb8501aba443335f86843d93dc5385604baaa002588c99c75b9ee" + } + ] + }, + { + "bom-ref": "0ad8e612abc4ff57", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/Getopt/Long.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "e7a4b93b3b61671141ce5b6ee46fb9938472d8e4" + }, + { + "alg": "SHA-256", + "content": "936f106aec8da64b2299914ff5c3614f9ba7c7d83053e5d13ab7f499e9235b8f" + } + ] + }, + { + "bom-ref": "3bf7e61d735ccd84", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/Hash/Util.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "c3d430e773d00a4852e2ee25164f18b503eef158" + }, + { + "alg": "SHA-256", + "content": "2aa0c6c7e43a40de48e50e57a8ddeb95b4b06d1849482d47e9bb670ef2a4ee96" + } + ] + }, + { + "bom-ref": "30045eb621465ca2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/IO.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "2a8ba6c4b3e64ae22d18d52e862a9c5901ca0292" + }, + { + "alg": "SHA-256", + "content": "4238dbe714699a77ac210bec27ab7a4e4a942deee43698db76fa98c86506ac7e" + } + ] + }, + { + "bom-ref": "45d5d086d241d828", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/IO/File.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "e923f4c162e272da40d050c561350471ae1e40fb" + }, + { + "alg": "SHA-256", + "content": "aac59ac09f638b5e1bdf4de4fd30f57b1d19fbcd06d4ab44d73f3fbf050c01e8" + } + ] + }, + { + "bom-ref": "b9bf5d75e711c74d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/IO/Handle.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "0fff14780d426be1069f8ea351dfbf13a62ac611" + }, + { + "alg": "SHA-256", + "content": "2c9749e2333144a13ae48afba8022c07a9dd42d7804347f6f581929cf4b972ad" + } + ] + }, + { + "bom-ref": "324f78c74532188d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/IO/Pipe.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "817f7d37c397485819a5ae2b59fb89deaecdeea4" + }, + { + "alg": "SHA-256", + "content": "07955c4b9eb527a81dfdbb82ed9493bdd89607310ddcd7b801866115192ebca8" + } + ] + }, + { + "bom-ref": "f3beadcc10c30e99", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/IO/Seekable.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "8f9bc758b545d036d60f40ccad52fa4e0d73b571" + }, + { + "alg": "SHA-256", + "content": "ca74503f91481275f9af45a4d088e7ed8c444a87c8cf56d3995857af95478bea" + } + ] + }, + { + "bom-ref": "5301ab0eb2ab545b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/IO/Select.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "dd7d93703935d6a5fa6342e9c6fe76751d13aad9" + }, + { + "alg": "SHA-256", + "content": "0c6b8ab7890b66ae8e60da14daaef31a81fb21ec2285a4fd6a1abe2d75d94d20" + } + ] + }, + { + "bom-ref": "b6433e187384b343", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/IO/Socket.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "e5b3355af1653502a72c3d12caa16fadcdc4a772" + }, + { + "alg": "SHA-256", + "content": "e86bcfc4297c0431f46785cf163ce467c10efe62efb0c6f28e0681b0c9d5b18f" + } + ] + }, + { + "bom-ref": "e7aad97116f4fe70", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/IO/Socket/INET.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "fe1ea6cfd6a7b553331958c2e3b03f7d780a3c0f" + }, + { + "alg": "SHA-256", + "content": "13cd3fd520d396386092dfaf96bf4577ac5c3bb3dec65586f44257b82c673b0a" + } + ] + }, + { + "bom-ref": "faf5a5f45cc3126a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/IO/Socket/IP.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "40d8eac93501f697ef5f59e9e93d8eb5dcaaf079" + }, + { + "alg": "SHA-256", + "content": "d7b09595b40b1137729897254ae867b0dcda23a8c6000286f35cf3d1648e09fe" + } + ] + }, + { + "bom-ref": "b07a57c31805aca5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/IO/Socket/UNIX.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "62e47ed49756cbe5ef97023868d034134caaec17" + }, + { + "alg": "SHA-256", + "content": "38bd2ea8705d23db1084f70404db6f7ac077831aa3847c21b5412b1cd4936cad" + } + ] + }, + { + "bom-ref": "9792acb321a7d1ef", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/IPC/Open2.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "d3db7d30c477e7890a2f4bbaf972f2fa02e66704" + }, + { + "alg": "SHA-256", + "content": "6500142ce04d79ddb58102de7bdf1427c49a9d1be04f6c908027b6240a0e6303" + } + ] + }, + { + "bom-ref": "68a34042597ad86b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/IPC/Open3.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "9f196f4852cde3eb17ea4b10ea2c7c30a72b5a36" + }, + { + "alg": "SHA-256", + "content": "2d4aa629476d90f663ebff57af566044f9cb134f4eef1699516dc13c227cdb83" + } + ] + }, + { + "bom-ref": "8de753e09005530e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/List/Util.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "7b4dbe32db7fdafbc156c2fce7eb0142a62ddd98" + }, + { + "alg": "SHA-256", + "content": "0e47e08b8980bed03bb32c7df4efdabb434dee0e27cf952240fd5ec90a65a48d" + } + ] + }, + { + "bom-ref": "8d4435a6e4b103d7", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/POSIX.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "9f95942156fb69cc4e89d50a6f7ad27419b2e914" + }, + { + "alg": "SHA-256", + "content": "d264318238441b25fa59c2d603028b27c4ace3d333aee2e291eb300bb5948ff6" + } + ] + }, + { + "bom-ref": "e29bfc13e23fd085", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/Scalar/Util.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "e2d63a19ce14546ed815630475712dae3a12f57e" + }, + { + "alg": "SHA-256", + "content": "cd15abf6613b2159360c471acdbddc8d3bdb6903acf9ade6868f809cd0ff5996" + } + ] + }, + { + "bom-ref": "b9672b63595d846e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/SelectSaver.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "4692c9c5ff0249639601fda2eef38f5f4214e5bf" + }, + { + "alg": "SHA-256", + "content": "f6f2b9bf40423e54466311866dc9f67a1318396d2d162cf84722e28d715a0ca9" + } + ] + }, + { + "bom-ref": "7c758882b0250840", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/Socket.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "4d1ee5647be23a7cf9e81b8e53e31316e0a74977" + }, + { + "alg": "SHA-256", + "content": "94cb1665b2fcdc5aa339ca7da2093590bb05b76e5334910c81f932d273d6daa6" + } + ] + }, + { + "bom-ref": "7a85f92bd83e678f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/Symbol.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "7dec2357ddc382e8e9eea5071407d94a6135c45a" + }, + { + "alg": "SHA-256", + "content": "3489f58d1a1ac356ce725d42de90155dd6821219788f593c9ac85c97123dfc0b" + } + ] + }, + { + "bom-ref": "17def102f1c304db", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/Text/ParseWords.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "4e5605cdd66f5ecca08d2a1321c0840d79c84365" + }, + { + "alg": "SHA-256", + "content": "aa7484ce8671e27adbb65f24d19d376882e84edab8da3ea91d144fefc6906184" + } + ] + }, + { + "bom-ref": "c4c1c4274e3e5b44", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/Text/Tabs.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "7f03e127f2dbd415bb18e828da46c04bfb989ebb" + }, + { + "alg": "SHA-256", + "content": "fa167b69c997b88b575b3a98013421745b41c3681b0a6a7433f17c1da19f8f25" + } + ] + }, + { + "bom-ref": "464cdeaa76250bab", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/Text/Wrap.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "073dbc8917cfc233bbda2cce25a8fd2a917f3667" + }, + { + "alg": "SHA-256", + "content": "d63777a317a5631dcfb6b0ea4ae5f782d2e718ff31b9f091ac03962a997fc095" + } + ] + }, + { + "bom-ref": "7c159727aebb3b6e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/Tie/Hash.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "0478b3087dba6ba5db66d5830aac6c3015d1acc5" + }, + { + "alg": "SHA-256", + "content": "e81ae4e495e961af321beac6695b5d43870418739901785a6b90c742f2d39d42" + } + ] + }, + { + "bom-ref": "a3a6b0009fc81aa1", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/XSLoader.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "12c586437b765be392cfae104caf9938cb4f3d71" + }, + { + "alg": "SHA-256", + "content": "b0c42116510e16ef6571ec72c04fdbc0c7488cfff690a631380652a68ba6d9e5" + } + ] + }, + { + "bom-ref": "2170db46a3a192fe", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/attributes.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "8b34e2a8b62d5d4b03e677cf46e627b4b5ab9ed1" + }, + { + "alg": "SHA-256", + "content": "613b235f27f4034a4d9aaa87672d3da1af3397cfe94032fd979df5c87f5a08dc" + } + ] + }, + { + "bom-ref": "7cce1f4983d430bd", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/auto/Cwd/Cwd.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "aa916cc77acb2099e27dee90cabaaa6656c41853" + }, + { + "alg": "SHA-256", + "content": "d4d0855c2a777faa96e2db2d29fbd51b2f4b45fe36d1d969fe15d512c63649a9" + } + ] + }, + { + "bom-ref": "63752a74978d2f53", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/auto/Fcntl/Fcntl.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "0ff9c06ff5e783553b57eed8722579df182c7946" + }, + { + "alg": "SHA-256", + "content": "af206c4247eb55501b59b72d12b93ea2af7637e526c6c44cf0ec1779d9f51b71" + } + ] + }, + { + "bom-ref": "b30fa26527c484cd", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/auto/File/Glob/Glob.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "502a9cfa41b89772f23a454945077e346821c397" + }, + { + "alg": "SHA-256", + "content": "fe64c0bc70fc19132454c8e909ef634883d5e8ca52311d05d04863ad1600174e" + } + ] + }, + { + "bom-ref": "cbbeeea85270f8c6", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/auto/Hash/Util/Util.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "43c7e94c1c96207b08afda91b328feb25ff5ed33" + }, + { + "alg": "SHA-256", + "content": "f174f9928ec813f362571b5d4c278709589bc69f6a7ad72b5863912eb345b002" + } + ] + }, + { + "bom-ref": "624d01b6afd520f7", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/auto/IO/IO.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "c2da805a39f0baf6aa8ba5f0c418a83459ff01b5" + }, + { + "alg": "SHA-256", + "content": "b813fa75c5654b92b327c847e854c6a21174b44766fcda95748e255ec80bf635" + } + ] + }, + { + "bom-ref": "b4eb23f55f3f1bbb", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/auto/List/Util/Util.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "c9caa3757a9167e408d2d4bdc3c7646082355317" + }, + { + "alg": "SHA-256", + "content": "6511226929f9ab65d377643088b28623662ffbe884fc2aff7ebdcb604dde7f62" + } + ] + }, + { + "bom-ref": "fb04e4a111008143", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/auto/POSIX/POSIX.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "057f630e58f4a693524b48aca43808a858485ab7" + }, + { + "alg": "SHA-256", + "content": "59f239f4b19825a82018859fe435fbb5ef4f32102b7490156a0a3bb74238ce6b" + } + ] + }, + { + "bom-ref": "e4af2f54ca7f6138", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/auto/Socket/Socket.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "85323d21c1bd47422aac8ba0ce1faf7e50691b1d" + }, + { + "alg": "SHA-256", + "content": "fe76ad27bccb3b4336d4685eca57a93fe22653961bd7f0ca9fa1148317c6ad67" + } + ] + }, + { + "bom-ref": "bd4a78414cd7353e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/auto/attributes/attributes.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "aee8648734be45b3dae1a159c7ff4efe086adf67" + }, + { + "alg": "SHA-256", + "content": "29fbd9e3b2e20e1cc8d02c6a9bba1224ade5198bae99377e4dad4045310cbee5" + } + ] + }, + { + "bom-ref": "cfc541fa170dbe9d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/auto/re/re.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "8c799251c70a7c72a75b7ae0098e37108ff2f306" + }, + { + "alg": "SHA-256", + "content": "c592552aeff2e98b520a6b47d365127cd2e5bf9f61497383a0afd6fb7d9acd96" + } + ] + }, + { + "bom-ref": "c36f9286efa99c95", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/base.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "a9e54ee2cf40e62e6a5cd80381c6c129567d3180" + }, + { + "alg": "SHA-256", + "content": "081a2a231e2765996d306b46b4148d7e5bd80e6c7b0294081c6cd8a15a537ce0" + } + ] + }, + { + "bom-ref": "80851a18988049c1", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/bytes.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "2237c36718cf8d884301c36e2ffe0e66673d2994" + }, + { + "alg": "SHA-256", + "content": "35ab937a2a3f4b9bac4e731d3fdca47c982e2cf40ffdebb00e2556aa7852736b" + } + ] + }, + { + "bom-ref": "5db79246e79a5285", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/bytes_heavy.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "f7c0517ae493a39e0a6b2fba90d9b69bc421b4a3" + }, + { + "alg": "SHA-256", + "content": "c7def62cbf7d031c4fe319e414117043f2a273885bff93bd18e11935d00a6677" + } + ] + }, + { + "bom-ref": "e5dc065aac8f7e53", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/constant.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "867d8c9828f16799a7e515fc7d6e1a1fc4e08614" + }, + { + "alg": "SHA-256", + "content": "5decbf923c0f5f065147a7a1a89fd351a26d5d5efd8799ba4ee992a1d00cd837" + } + ] + }, + { + "bom-ref": "cc04883214e6aa44", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/feature.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "a3171c86590f8a9e5f3843ac0fad33f584808b7d" + }, + { + "alg": "SHA-256", + "content": "7a9ddf1f3cc8842d1eb3b9334ae23b1bf82e73de3f2bbf334c7eaef4436b9aed" + } + ] + }, + { + "bom-ref": "4a048c53066ccad2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/fields.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "7ca4cd23a9d13c5a76510a640ee53d506412f574" + }, + { + "alg": "SHA-256", + "content": "ce0f1efbe6ef77f3becd4e898bb3df04ce6dce6c1e93da9eff9adf53767e2b80" + } + ] + }, + { + "bom-ref": "6d93043fe58dc7b3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/integer.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "fd2b597a1b6f3bfd72aa39af3745c7443502692a" + }, + { + "alg": "SHA-256", + "content": "1c387bfbc4bcb4046e7372c534372c7150315499bc5641328d5c3c1c1ad50373" + } + ] + }, + { + "bom-ref": "ef994f9514a5ff86", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/lib.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "c3b757c502dad1e5b175d5aecf744256aaa77093" + }, + { + "alg": "SHA-256", + "content": "93e87fe9dab7e5c3ac6a830e0a7ce06d2b4c94f1ede6a55d190d1c34e6336941" + } + ] + }, + { + "bom-ref": "c1b27f7089725659", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/locale.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "9a9d95896152cd51a70103fa90f9a6d6f21e0fc0" + }, + { + "alg": "SHA-256", + "content": "d584f47f71a525301511965b4a245933e9a936f94406b6bcd1c78e7fe63a7b6f" + } + ] + }, + { + "bom-ref": "004051ccdf3068af", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/overload.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "1edb5ea45c57bed653a0e120f642f1ddafc19a97" + }, + { + "alg": "SHA-256", + "content": "e09d4c8c421d88d19c551c2709d6515d044ae378f09577dbb6754d6376532f5e" + } + ] + }, + { + "bom-ref": "a9899c23018b0172", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/overloading.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "edcbb7cef522a06b150f2468742135128268faf1" + }, + { + "alg": "SHA-256", + "content": "5387b33943963d2e47f05b3f37926f2d454f9ded33ca857e56ffb33b3adb999d" + } + ] + }, + { + "bom-ref": "548755427b6952aa", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/parent.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "beaad3f8596aa51f803297b70566404f337764f8" + }, + { + "alg": "SHA-256", + "content": "e9877a2f677372e9a87706cc637279398191ec2f35890d641f3850a2d7f7bc2d" + } + ] + }, + { + "bom-ref": "943ebf16f97c2b5f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/re.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "f35996ad231e1234eadd1f91392696c4d70d1d5d" + }, + { + "alg": "SHA-256", + "content": "2ea070f2ccc487f31d54f722c9be424ff60ac5012a8744d0eb17453898f12db4" + } + ] + }, + { + "bom-ref": "391e475ea5737c7e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/strict.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "1aeeedf12205b93b7c047ef4e63a5826d12c6faa" + }, + { + "alg": "SHA-256", + "content": "3f100533c2abc1cd0b20060bfe71372c28443b13356fd5604133a69e844fc88b" + } + ] + }, + { + "bom-ref": "885a641c446b3c38", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/Heavy.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c5f082bb3ae167e48598b9fa34245fc0561d3d2c" + }, + { + "alg": "SHA-256", + "content": "db24bd320d0b3619fcaea9e7b94764cd7ba9199346775c464b7b7aab353638e5" + } + ] + }, + { + "bom-ref": "31feadad3f9c0e25", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Age.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "e041b78c75ebc27895168faca7f3118476d45760" + }, + { + "alg": "SHA-256", + "content": "4d028b845a5db9ed46aa6fbf84d5310f357335ca2e183fe109878c35d2f22b5d" + } + ] + }, + { + "bom-ref": "aa52906ac6c30dd2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Bc.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a4459815eafdf5eb81f8e377593bdab6f622e794" + }, + { + "alg": "SHA-256", + "content": "9f2fe3a67d982d458e39e3b950eaff005cdb445855a1a8962054fd90117c9193" + } + ] + }, + { + "bom-ref": "a47930cad9a4b70f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Bmg.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "23ab882a61f02f467dace828ebc62c2c9cfebdb9" + }, + { + "alg": "SHA-256", + "content": "dbba233b9fa658b15b74a50a4cb68e3737358b6f3576ec77b6d3ed1aaa80ede8" + } + ] + }, + { + "bom-ref": "d2763f04bbaacd5a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Bpb.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "48434858ff718a5822ec84b52c829ea2f30c912c" + }, + { + "alg": "SHA-256", + "content": "c0c252bd22d05f0aed20b63a91963176925d1e1bb3800b2960e8151488ea750b" + } + ] + }, + { + "bom-ref": "ceb97ebfc1d4ee31", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Bpt.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a01db5c12b1c1f1bd72d8a33c8045a70c7a4b9c9" + }, + { + "alg": "SHA-256", + "content": "8cb180ddee34b6c00e6a4b0efae211573a3cb0d75bdf867edf421dee73fa6b47" + } + ] + }, + { + "bom-ref": "629fceab3b3ad04a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Cf.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "91d7e79361b3f2c21f72da050d7190592001b2d0" + }, + { + "alg": "SHA-256", + "content": "6bc90370ef1c0d60d5010ed68768ab96857a2c8a2224896b79434864ded3775b" + } + ] + }, + { + "bom-ref": "24d032719c01aa5a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Digit.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c714023ff0be68390d4f08d4c4fda245242427a4" + }, + { + "alg": "SHA-256", + "content": "6431c243ee93924400d54e7bdbbcbf2d27b72df6c7785c6b974a0789e6b64d34" + } + ] + }, + { + "bom-ref": "52ebb1f2547eab90", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Ea.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "65335db2d25a629728d3b21b71f4cddbdb5dc1fe" + }, + { + "alg": "SHA-256", + "content": "9705be4733a19b02612d3a0ae34addde357562f4daeda3ecbc43894e9b8a9229" + } + ] + }, + { + "bom-ref": "e4c7d251811da02b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Fold.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "84ec66889956e728e8b4bedd8b6bc01218b4b928" + }, + { + "alg": "SHA-256", + "content": "64e73283ca6b681e1bae53665e7713ee3c66ce479613966a915c24753e97e2c7" + } + ] + }, + { + "bom-ref": "05cf55dfffb686ce", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/GCB.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "4a38931fcbcfb158f74f3559ba1d1ab7d602bbae" + }, + { + "alg": "SHA-256", + "content": "8b3a0fc99d32e9b4a78cc181fcff9e997f885dbd89370db3523a2afb8c192d1f" + } + ] + }, + { + "bom-ref": "76e1dc69a0f33570", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Gc.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "051d5a90294f8f8aff9e7fa3f257c37cbc014043" + }, + { + "alg": "SHA-256", + "content": "4c00b543acd7e1ed10135bd51f8bf97481f17f30881e663fd51d38d6567d4fc6" + } + ] + }, + { + "bom-ref": "6f5c9d80761c115f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Hst.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "b65b8fd0717df5fd71690834623571cdbdceae9e" + }, + { + "alg": "SHA-256", + "content": "0fa76426c17912f09d82e86b5a3d8740371e96e873f4ce69e4564f78c01f9b8b" + } + ] + }, + { + "bom-ref": "0a05db22d23d709b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/InPC.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "680bc43b779ed58f8fb069e9a3868cb01aedbdfc" + }, + { + "alg": "SHA-256", + "content": "812971a26fbf7e8bf3fbaac74c11a2f10e1f42d30d62c140f371aa1ed8f874a5" + } + ] + }, + { + "bom-ref": "464353eb4730bb85", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/InSC.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "700bca111f9cfa2adbda6215e9a15fea47219322" + }, + { + "alg": "SHA-256", + "content": "44547652c0559b9f7b0a5420ce01e15260042abe401fbb268b88019c41f6e03e" + } + ] + }, + { + "bom-ref": "06e2ced20e4d010b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Isc.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "71255d2770dc4f04ea9e2b5a6c3a654124f8dc35" + }, + { + "alg": "SHA-256", + "content": "5f0e6e890d064053d164b18e746fa26c8232456d5e9d13e204006c9afe66faed" + } + ] + }, + { + "bom-ref": "9de0b196bdd9e7f7", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Jg.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "ad86b9c70a01eb92616997f310f8fdb971778f23" + }, + { + "alg": "SHA-256", + "content": "40f6b6bdce2478e37c3eacb93ea66d63cb8f4bf43b3bf2a00eca5c928c8dc336" + } + ] + }, + { + "bom-ref": "6534f875ea6e6f0c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Jt.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "ff68cbf576945e0036f9a3c172521349af75135f" + }, + { + "alg": "SHA-256", + "content": "2851a6aeb5bfc14be7502cab6e4538a4e90ee2ecf318eea8421406f342fba069" + } + ] + }, + { + "bom-ref": "706886b69f4fee3b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Lb.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "b785f13adecbd4ba68bfb0cc0867f4a1a6564101" + }, + { + "alg": "SHA-256", + "content": "711b9805556488110448e79c33a561d4b9ad1192d494dee093ee93b0aa680fa1" + } + ] + }, + { + "bom-ref": "476d37a8d524d175", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Lc.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "f0c6ab213bc21ee0b38aa4f1d76cc2a3697c2e26" + }, + { + "alg": "SHA-256", + "content": "92a6e31a6557e9273f2c9a8261a4f6ccf5b24c5e9d8050a83c38230e3a25d095" + } + ] + }, + { + "bom-ref": "496c14c3a2a1a191", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Lower.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c396da29dbc0569befbc362660d0a0e33a134edd" + }, + { + "alg": "SHA-256", + "content": "91f865c126c8bb160185b21ab77e23d28a662db12ecb4bead3ae7c7f18335161" + } + ] + }, + { + "bom-ref": "0b718f4bb9c4c106", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/NFCQC.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "735e0ae6f4eb0479d2191506b099aaf409d74a1f" + }, + { + "alg": "SHA-256", + "content": "f8b8ab49be8b452880ffcff7a9903cad803ceb5a476ae3661996b62d43f801a6" + } + ] + }, + { + "bom-ref": "6338be1a06468a40", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/NFDQC.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "137ecde15f31c73c95ee3dc5bb8e6be3df1bd162" + }, + { + "alg": "SHA-256", + "content": "8fb24096855e1fb8579923047876569278fc2398f361ae8bbe3a31973ac85578" + } + ] + }, + { + "bom-ref": "a476fe55ab39247b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/NFKCCF.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a2c9df233c5e09df676d647bc36596cfa2c15724" + }, + { + "alg": "SHA-256", + "content": "f554d3723e0b5f8b151851afd1d55d4f1287a42ae4e3fbd7fe1d54fc3f2fdf33" + } + ] + }, + { + "bom-ref": "720f708e489d37d3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/NFKCQC.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "63362b5b67fca0991ae0fc7556684119ef079d92" + }, + { + "alg": "SHA-256", + "content": "6841152e3da6255534c807756fe45303983ee2921e1d56bb5e65aa3f3e1fef25" + } + ] + }, + { + "bom-ref": "1813278bfa7f3eb3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/NFKDQC.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "24b294d29f389d2c2142a47ab7cfaa1d35162098" + }, + { + "alg": "SHA-256", + "content": "3da082e319f98001015b1658e63f7b10c2013a75018191ab98296fe6c50c2318" + } + ] + }, + { + "bom-ref": "07d4a8a17386a7b0", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Na1.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a13383598edb55ef54c813bd366ae3ccef6f6a1d" + }, + { + "alg": "SHA-256", + "content": "4338bbb345f1eda23db4d98ead1f11b0fc83a68fa0c7446f8ef1254e6193ca38" + } + ] + }, + { + "bom-ref": "ee31e6fe79e323ac", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/NameAlia.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "8f3abc6aeff153e146c99a6fb2b66e78167b9802" + }, + { + "alg": "SHA-256", + "content": "677505f0fc2d62dbf3b92fa8aefd34ce0a54d34a10e657ebfc97c461dec123d7" + } + ] + }, + { + "bom-ref": "75798ea590d43687", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Nt.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "14f11292afd94346b7cb7acbab03396b30f6c1a0" + }, + { + "alg": "SHA-256", + "content": "6e248139111b53022215b537ee649b8f7410b273d8cc35941cd6a0e6267f9e74" + } + ] + }, + { + "bom-ref": "95296b2a1efe5431", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Nv.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "63c2dbe8cbb4e269b50b16e056e9e67ad5a1cf49" + }, + { + "alg": "SHA-256", + "content": "e5c0fe81d290bf7e162e59737c5da8e9832f94c64c5b8f30b6f757f989f99667" + } + ] + }, + { + "bom-ref": "685fe6b548c26acb", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/PerlDeci.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "4a048f02861697f4f16d2c7f406d026e6fcfa57c" + }, + { + "alg": "SHA-256", + "content": "a113ad3a5e05c0c67a4fdcfdf416b2543335e69a313a8d2ee5eb5857b0b67216" + } + ] + }, + { + "bom-ref": "9a1bf9f06016bee3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/SB.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "1414f66ca4d7084d4726cdb290b640659f8c5c7d" + }, + { + "alg": "SHA-256", + "content": "277aa261e41a39930d97c3dbc41d54e729a2a009a79b505cd305c781c46998f0" + } + ] + }, + { + "bom-ref": "6724cd9b5b6a808a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Sc.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "2844b3fe1a2ecda2485ef2f9d234999525a8eb43" + }, + { + "alg": "SHA-256", + "content": "41dc9d9a6a3429ebb812170f02529279c1bea478fb830e57c71753c885f6dd48" + } + ] + }, + { + "bom-ref": "734940a14623c926", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Scx.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "ffdbecbf5cc92db4eff9a266f1d2befe52b93ebc" + }, + { + "alg": "SHA-256", + "content": "cc87c2b0b6b7df26033b8f1d23226bf75f0e2059808195b18b9d7172c3b92952" + } + ] + }, + { + "bom-ref": "a030ac86a686bfea", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Tc.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "aca4c4aaaad42ae1f60ce3de01084bd119db7170" + }, + { + "alg": "SHA-256", + "content": "1378a0eedf0e6de9bc451e1a3ad055b63b7249149bbe10c3194140c6932cdd44" + } + ] + }, + { + "bom-ref": "f0def3b303fb50ff", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Title.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "bf0fee748cd3c5079e1b58fbf5b484035403fa3d" + }, + { + "alg": "SHA-256", + "content": "7169f9955eb9c3f35201a81f32a7c05c31fdfc96a5e14393fc56d60851d82b2b" + } + ] + }, + { + "bom-ref": "6f7949a9c4eea2e2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Uc.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "e3d38dc440a90134b506c7947ca2b138e2cb2da5" + }, + { + "alg": "SHA-256", + "content": "756887753b62ccc861dff6f04f4600cb6a22e981100448a42459750ae38a1810" + } + ] + }, + { + "bom-ref": "94bb5b2ccf3e134d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Upper.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "7a9abb53449940b1b85bf3fd10b26808257a9f1a" + }, + { + "alg": "SHA-256", + "content": "d42a1fff1a14c4e9ed8baeb6af9a89e50fc26362415f6b217767a0fdde87d471" + } + ] + }, + { + "bom-ref": "23651d73e3153083", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Vo.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "30bee3a239f3a99a7f02c73d68406adc078d9f89" + }, + { + "alg": "SHA-256", + "content": "a80475d7dc5b20f637c777afe7a4040b068987e730b142cd29a1bf4728d9045b" + } + ] + }, + { + "bom-ref": "6dae65ff7040d23a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/WB.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a613076e717f46b3b3d3ba087c47f171fe70dee6" + }, + { + "alg": "SHA-256", + "content": "427d902f986f5955c4bcf71cecad88976b0ae187cdf2afb77ef0c72ab3f5037a" + } + ] + }, + { + "bom-ref": "e9c52b3ad3616c1d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/_PerlLB.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "1107225ffe0e58c40380969114ecde70ad3a912e" + }, + { + "alg": "SHA-256", + "content": "1aee8bec9e89e93ed822b208d9e24a5a3ef8c754f911ed878b50897de9d52b76" + } + ] + }, + { + "bom-ref": "ab52a829a83d38c8", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/_PerlSCX.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "72bf5476b9ef01f1537f3f60556a5c2b716a31ad" + }, + { + "alg": "SHA-256", + "content": "618a1409bd777ee9a2c31e30ec45dedb726ccf1d8b71325779fff50360d44db2" + } + ] + }, + { + "bom-ref": "41f534de77fd1079", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/_PerlWB.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "62149a885ca0dc853d8accb59f139e2da1883628" + }, + { + "alg": "SHA-256", + "content": "f927f056e83fa15387d23b36a90cb14c3ce88a09d833a6b1bce47c094b0d859d" + } + ] + }, + { + "bom-ref": "b1e06d19fd56a90b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/NA.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "4083c92646923702d0378328c173190a82b395ec" + }, + { + "alg": "SHA-256", + "content": "617957caeaa7b15678ccadb80507d98c3e4aea448b43d027be2d4911a42e8d2d" + } + ] + }, + { + "bom-ref": "0cbe4bcf3d16e690", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V100.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a471458b0345640b6690e9a87c1348fd37d75afe" + }, + { + "alg": "SHA-256", + "content": "a28cb320c14df444f0f43d5ccbf19857d585cb635405d65226d82780757319f0" + } + ] + }, + { + "bom-ref": "f35bb4293d1456ec", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V11.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "152c5e1d2faf789cdca2a96433023815e0a753e0" + }, + { + "alg": "SHA-256", + "content": "99dd1cdf0dd1068df1be95d3b5f3248f22f997b6f6b5af298a7b043fc85cbe39" + } + ] + }, + { + "bom-ref": "22a14ce246c09b13", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V20.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "262ef4862f4e301724527c08fdc354a8f5266630" + }, + { + "alg": "SHA-256", + "content": "1dbc8d5ee4a08f3e8a31c2e971cd4f6894113b148d0ea7391880b4c4bae9b76b" + } + ] + }, + { + "bom-ref": "474a2fdb2fb07bb0", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V30.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "f4a2eb35d93edbe9ac2711f29542d6f2566f83b0" + }, + { + "alg": "SHA-256", + "content": "391a7d52ebcd4b405a3c3eca4a22787597ad2f6936e84ad732b4139f67fe1b04" + } + ] + }, + { + "bom-ref": "6ef56e58383b7d84", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V31.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "523ffbf87d5825cfa4cd125d87c40e1be155e74a" + }, + { + "alg": "SHA-256", + "content": "6b9de91aad62bf26bf1d349430bf89ee8bacf97cc18b185dc526b1a60df8e765" + } + ] + }, + { + "bom-ref": "9994d95783170fb5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V32.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "fe2e8c3bd22b838189762eef7a130a4f15c8bfe2" + }, + { + "alg": "SHA-256", + "content": "db3d9eb971d8073769d9be5ce9f7d9f6b06a0bb43bdd5265cf60d66af3a3f02a" + } + ] + }, + { + "bom-ref": "18a4f7362e4ee216", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V40.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "44978262e7218185ec3e679cea09cb9a75d5723e" + }, + { + "alg": "SHA-256", + "content": "3a7d0e161389cf074c659cb764a2a9ffb6a79b616e9d41ae495eb7d387951e06" + } + ] + }, + { + "bom-ref": "f0267480c25f74d2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V41.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "6607e96605172c02130758faac1ca3630362a8f1" + }, + { + "alg": "SHA-256", + "content": "b94837edc69740deae470ee4c422905e8f5b4c58598f9e5e8e565d223afc676c" + } + ] + }, + { + "bom-ref": "65421e2af33c1375", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V50.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "991ee82e6affa6ecbe0b068fdea2b0fc46fc6c2f" + }, + { + "alg": "SHA-256", + "content": "e757f5f9f2189c7e32e4c0e2c6cdec267a38785047a8a0455ef63b407ec892a1" + } + ] + }, + { + "bom-ref": "215de5c04d84ee08", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V51.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "ddb69ebb70552c00cc9f5fc2e93024fa56cc76e0" + }, + { + "alg": "SHA-256", + "content": "a6b3fd43fdc88e77d75447efa548d01a31206bb5243165e12b800263ad412080" + } + ] + }, + { + "bom-ref": "7c06430981031cac", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V52.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "4bf2305eb9e8b4e201cbd519b5118a6446f7035a" + }, + { + "alg": "SHA-256", + "content": "0590c3b2d95a5b9982f1a1943cd2260428d5bbccc37cd7f1a77a6c3edae5f6ce" + } + ] + }, + { + "bom-ref": "27dbd952c5f3e620", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V60.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a4b5bfe691440a0e8c53a62d9c0ab8b03d4a7175" + }, + { + "alg": "SHA-256", + "content": "171995416038512979d2a32ac6935049609824200ff1a0dbaf1748c5edbd68fb" + } + ] + }, + { + "bom-ref": "6a8d8fdc5082cb15", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V61.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "0efb4409bd3a38373d70533bc9603a3ca0ed0885" + }, + { + "alg": "SHA-256", + "content": "5efcf536fadd4d9ef9e2860b9b441e1d72c8296e1a73e1b4c0307a905c90c569" + } + ] + }, + { + "bom-ref": "f3c60d043e19c0e6", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V70.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c2cd96f0c2b454e4e5dd197157945b66ddf710ee" + }, + { + "alg": "SHA-256", + "content": "1e9a47e543cb3f1f8bfe9b461a3e2eaf7f11ef5b7adca7aa357c18351838ed0b" + } + ] + }, + { + "bom-ref": "380738637a2afed3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V80.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "b705f74a29396e10475c0dcccab5230acab7fdd9" + }, + { + "alg": "SHA-256", + "content": "ba74e9a07f28119d24e35c6eeaf07f8720f1f7214d139111f6e6d280c7189a62" + } + ] + }, + { + "bom-ref": "a73c93128476e743", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V90.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "e3aee3c46d8150fac4c3fd4f7857873e393de54f" + }, + { + "alg": "SHA-256", + "content": "dc2cb3e08097f098700bf4a6a04592b42b135ecf1f7b65615aa88066e52287f5" + } + ] + }, + { + "bom-ref": "099b6d2db6fe190c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Alpha/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "89044b0aac65982783241e3083a83821f783d10f" + }, + { + "alg": "SHA-256", + "content": "0d66139e7c7342d92c1a7c35626c6658f3ab3460348f7d69a338c1151ef3b49c" + } + ] + }, + { + "bom-ref": "5f431769b78311ac", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bc/AL.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "07154d7b57d99b421777211004806f4786ed5ba4" + }, + { + "alg": "SHA-256", + "content": "1c27c7455e0de25cfeef0b626e16500f13b4c56116ec16d5aebb20f6dda3317c" + } + ] + }, + { + "bom-ref": "15d39c434b5c2507", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bc/AN.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "9307141787cbff4ff0841fb66f0cd3506acf6ade" + }, + { + "alg": "SHA-256", + "content": "5f955370417128abfec4ed381d356865ab9f118a0161aa3785d9f1648310bdd1" + } + ] + }, + { + "bom-ref": "0ebdc1a3950a2cd3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bc/B.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "ba1a96fcd08c71b1056f84ccaf6e775315007cf8" + }, + { + "alg": "SHA-256", + "content": "91e59398f292e15b1f8c5a839e7033ce05b7dddcb92ab031d720817569d78763" + } + ] + }, + { + "bom-ref": "e2f03d9edff53613", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bc/BN.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "fc4d78118f5f8a14b20b7d8897bd0b365ea0dd9d" + }, + { + "alg": "SHA-256", + "content": "2c59dfb109195fce0d2b950c191679af90eed06db688fdc1a67378926936ef09" + } + ] + }, + { + "bom-ref": "249d0b3543ef007e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bc/CS.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a3ce4e949407038822cc228318884d23284198aa" + }, + { + "alg": "SHA-256", + "content": "6b2bfb9c880ef856fb1b5026741336bc5d11ab0f6f8a8590da78f8da687d3695" + } + ] + }, + { + "bom-ref": "e3140d721809cbfa", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bc/EN.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "737b5614085c16861aa865bfe0a0694ec2490156" + }, + { + "alg": "SHA-256", + "content": "9d7ba74f75f5d2ab948c69a1ae4458ccc757bec657f610e030435b6c43a5d82f" + } + ] + }, + { + "bom-ref": "2c60549f26d1b670", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bc/ES.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "67c75226832f7e45a0ace9852f653c822ce14fc0" + }, + { + "alg": "SHA-256", + "content": "44024d4c6db92408ee2067033687b9a4934a3a803bdc65ec9d9c9987cb445a65" + } + ] + }, + { + "bom-ref": "2328c8a8577789b7", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bc/ET.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "70eb355322e85dc569a3c0850c332f0763e21bca" + }, + { + "alg": "SHA-256", + "content": "94fe0b40e5a682de67a4d786e0fd684c32230f7547f2837a293475cf5c6024bd" + } + ] + }, + { + "bom-ref": "ea5fc7dc0585c66f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bc/L.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "f2250677bd8a2c4329f8e89bb04b3f3afe3cf204" + }, + { + "alg": "SHA-256", + "content": "f738b67f9f2ea65452fcde4d3b470f4c3f350bd39913e29ca29eea5172d56014" + } + ] + }, + { + "bom-ref": "6ceae4e2cd27da31", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bc/NSM.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "f82093c8c881c81294076e5dd1f5b1eb0ea8de3d" + }, + { + "alg": "SHA-256", + "content": "e3597120535589bf86d712478b15aff394386c19bc5dd3f0632e9c42b8cc5822" + } + ] + }, + { + "bom-ref": "d4f8f48d50892455", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bc/ON.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "87b38a433ffa7519ed1d142c68678eeced9ea51e" + }, + { + "alg": "SHA-256", + "content": "f2f8509923e40a5e1a33a8923f8552fca1eeb2726d07a31a1f18eb4139baaf77" + } + ] + }, + { + "bom-ref": "6d896d43bcc51e3f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bc/R.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "d1dc382c7883e9ac2adb29cba2836bb95c1b9998" + }, + { + "alg": "SHA-256", + "content": "2ae1297cf3e5cacc4f8d6ef80da3b3575baa48dd56675b5783a93b8d287a3bb7" + } + ] + }, + { + "bom-ref": "020ad9b8b2649d96", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bc/WS.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "3cc7075aad00ffdfa220241b526e3e06414aec00" + }, + { + "alg": "SHA-256", + "content": "4833df0ee5d62befd8f7178db8440dd4ecb2855cd019e7407139cc1291f8046f" + } + ] + }, + { + "bom-ref": "8485c6e6ecb4f906", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/BidiC/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "38d1257d8f9353bb67929bc957438a9a0537768a" + }, + { + "alg": "SHA-256", + "content": "27cf49e917225fea0d0faf5a503c1ad8c1093581509645768aeaedd40b7b9818" + } + ] + }, + { + "bom-ref": "6529286d1244508d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/BidiM/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "6136a2e056e5ceb6cf7111df38bdbbf1ca8e2dc0" + }, + { + "alg": "SHA-256", + "content": "67c39c53542c15877ce653f4ec03a64e3e7d710800a215a8b93783221290d6e3" + } + ] + }, + { + "bom-ref": "9eeffbd6e9c710c9", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Blk/NB.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "13c8be42fd03c8004c17c5ae448ebfea25a3ae55" + }, + { + "alg": "SHA-256", + "content": "2311eee6e5bfa326371c0bbd00108c665d5a19600834b76548c218a4a512fe04" + } + ] + }, + { + "bom-ref": "c2d10c8bd793275a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bpt/C.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "7f902519f042cb3b3688407e4b4de3cdc2e55af0" + }, + { + "alg": "SHA-256", + "content": "acfb96b11a1c55a80e67e6b767ff0961a65279c205a56680f905abeee560ef03" + } + ] + }, + { + "bom-ref": "6e206c1c807a318f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bpt/N.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "956930f1103424429993b415d0bad7f174f97f31" + }, + { + "alg": "SHA-256", + "content": "5277583252d861c9a72b756676ae07fbb27c395b37b21c546ca65b2f6155b302" + } + ] + }, + { + "bom-ref": "e1c7b549b8d323e2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bpt/O.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "da6bf08c3248e4ebeb47ce7575d98fffe1607fb9" + }, + { + "alg": "SHA-256", + "content": "542fc27ac7403300c6a64b7e6821c9c515cdaebbf49835ba7001ec36abf2ca40" + } + ] + }, + { + "bom-ref": "b396a0f76bc8fb20", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/CE/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "543c0fe0175c6fdedeb9932b77ee10b39fa0f63b" + }, + { + "alg": "SHA-256", + "content": "ca2f2d4834133c9c41a16e403744626b96e4a79af05a51a6f4cf62b196811c4d" + } + ] + }, + { + "bom-ref": "519ce254d7924ea9", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/CI/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "097cf5b57ffc6d966c047a1aa5ef6230c2ef8e27" + }, + { + "alg": "SHA-256", + "content": "3feade17477bf318e741a13849e2d10e26c377a9df1368ff7c8c3bc76a217228" + } + ] + }, + { + "bom-ref": "ea2483aa9020d8b6", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/CWCF/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "dc9537d8e7cd1bb0108369cc1119aab02f547448" + }, + { + "alg": "SHA-256", + "content": "8c87571d2d5f239f56305c68f75b5c3e4d209bb18b265439fa9ef3884e07ccf8" + } + ] + }, + { + "bom-ref": "e00f66330c3c01b2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/CWCM/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "2e6983d4c301f0e93457363a238ce091431085c8" + }, + { + "alg": "SHA-256", + "content": "546bb4318bf0f62965ea88ae2fb2e4e013712b254b77ab96d510d7e102c2daa3" + } + ] + }, + { + "bom-ref": "66efcb5aec85ab0c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/CWKCF/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "739d28110cd46be0eed065c551b90f9722aeef40" + }, + { + "alg": "SHA-256", + "content": "320dd06280a889a9011ae5813be52b0b27c1dc520cbcfeb42b20c983f5a8924d" + } + ] + }, + { + "bom-ref": "ed3ce3fb7099803f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/CWL/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "3c6df3bb96407428b049f31db0000932352d7430" + }, + { + "alg": "SHA-256", + "content": "d81bc20e625f52b51edf156aea5b014c78b6d3db30b8caeb612ec541fd09e6e3" + } + ] + }, + { + "bom-ref": "5cff23f8109bf1c0", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/CWT/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "18e9a08a62fb9ce73efe41538c908bebf41c831b" + }, + { + "alg": "SHA-256", + "content": "e7b7d2eeab7cff214d61163721315b7fc0e5b0075c1b92bb19d8e7b544074111" + } + ] + }, + { + "bom-ref": "9f1147295e140a59", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/CWU/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "1325f9931b06d19db8e26a4afbef023297f7bda1" + }, + { + "alg": "SHA-256", + "content": "439979cb58c2529070dc30bc2173207cf0be67af4582b92d0cef3f5bb58bf92d" + } + ] + }, + { + "bom-ref": "a2ae30e1998be8cc", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Cased/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "32c816e908b7ef18a235b28f3aeed27521755228" + }, + { + "alg": "SHA-256", + "content": "9c2800401d858bd32477fd1f87e12dc684d757f40e1407339ed0b0f9073b95cf" + } + ] + }, + { + "bom-ref": "6e871f6fb8f01a78", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ccc/A.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "0d859e5aa74740cc38386d70a81cb4063fb40e39" + }, + { + "alg": "SHA-256", + "content": "2718a40c2d57bfd00f0f3a702343dd28ce7b7bb889dbbdd72d86961a732d1ad5" + } + ] + }, + { + "bom-ref": "7f3f64be647cfaca", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ccc/AL.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "74289ca7a1005efa419d4200f1bfa07a64aa9575" + }, + { + "alg": "SHA-256", + "content": "e5088d2eedbf1b287aaff5d15cf3fa732e26af39ca4e15864837a2f847187c8d" + } + ] + }, + { + "bom-ref": "00db767c75a51f7f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ccc/AR.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "ee3878528e62d9fdca29564c5aa4b40304e0b643" + }, + { + "alg": "SHA-256", + "content": "ff47a865d73d70e555f2b40ac5e5d498582cab70361bf8114d207a96aaa29047" + } + ] + }, + { + "bom-ref": "4ebf7aa4ad9b31d5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ccc/ATAR.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "7b98c36ae7aa9092de11de439a2827c8b8075871" + }, + { + "alg": "SHA-256", + "content": "be356873be111e19b9d45af7c90d03fb9ab6f24a20b21d3ce83dc3590c552f48" + } + ] + }, + { + "bom-ref": "57d890d5e2929bf1", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ccc/B.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a9ed193afa1822c2cc3e826b7f0c24385932ce2d" + }, + { + "alg": "SHA-256", + "content": "c023014e90797541844278580b8c3498f47b32c200ba7871134159138fdedf45" + } + ] + }, + { + "bom-ref": "8a63659a713fdf6f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ccc/BR.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "f3669d2ab64d725bdc8223f23911b72cee04a9a0" + }, + { + "alg": "SHA-256", + "content": "779f502245ff2d8ce6df6bef379dcb76648b876419856d8210c94715e87c3297" + } + ] + }, + { + "bom-ref": "491e64718cc3dcb3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ccc/DB.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "9582d1af53d020940fbcf992d46d0ad6c4c47276" + }, + { + "alg": "SHA-256", + "content": "a69d27057a6c553c244c2bc9af83dad66de7b7ebf95c645c020ba6f82351ebbc" + } + ] + }, + { + "bom-ref": "1982a2ad0334d73d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ccc/NK.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "7754fdadd66d67403d4487b1091fe3242002c053" + }, + { + "alg": "SHA-256", + "content": "56bd09c830b951db7efb376eb3e612aba17ff80d515f98095b0bdfbe3f61f061" + } + ] + }, + { + "bom-ref": "5a60e16ac4d8a6c4", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ccc/NR.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "6fb71433eaa2316802e74ed517195262f1de5043" + }, + { + "alg": "SHA-256", + "content": "e7e2f2f544b3aa7d49e5d51980190429c781b9b5c994ecb3ffc0328be3d3d9d3" + } + ] + }, + { + "bom-ref": "6a636f889b91481c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ccc/OV.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "cf2a57a0991be325598a9f9d02498e3dd69fb5c0" + }, + { + "alg": "SHA-256", + "content": "18e0872cf6744001515335d9838cf22bec0da1a1dbc6afefb29083966152b533" + } + ] + }, + { + "bom-ref": "4a12ad76e84b31c5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ccc/VR.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "9dcea2a7839a5141d3f0674325bdc6fc5d66c310" + }, + { + "alg": "SHA-256", + "content": "7a97dde998bc1d0eb67fd5081371dc4e00725a9944756bec9ef3da6aa6a89696" + } + ] + }, + { + "bom-ref": "fbfe2dc12609f372", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/CompEx/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "1bfeadbb7543ba5b6e079c90bdd7f0fd3709ba50" + }, + { + "alg": "SHA-256", + "content": "3d1bf26c4ff351adca99b01de5d6a744202a179027dcfc12862972db2ac166a4" + } + ] + }, + { + "bom-ref": "624b66c6dce6f9d0", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/DI/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "609a46100599f24db4be52ea20c604a891f05ec2" + }, + { + "alg": "SHA-256", + "content": "923f227c6c393c372888253b081a050e8056bb040de6226df431859c80b01301" + } + ] + }, + { + "bom-ref": "8d1d1a2dcea3ea88", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dash/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "dae549a9221c31093d606acdbce6e19daf7890af" + }, + { + "alg": "SHA-256", + "content": "b8256a6f3f6a55b16d3c175743bcf1c3ae666def4935ddb5b1e8d2b3007e4e01" + } + ] + }, + { + "bom-ref": "1b818a08aeddadd7", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dep/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c8d6f47d3dfdfa3ce8f0da85e8fbc73782f54745" + }, + { + "alg": "SHA-256", + "content": "b4eed9050669b2eb5b9cf6799cf4b2a089397bc3df254d1a1c8ecd398c955027" + } + ] + }, + { + "bom-ref": "625af16d0a6b0cab", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dia/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "80e4fa67678dfbda2d542ed9ba5c715fa2add8db" + }, + { + "alg": "SHA-256", + "content": "96156f7a3b7971ffe9cb83f48e8747b55f0461e7d9f913f73c2b5f43b623988a" + } + ] + }, + { + "bom-ref": "d1c9703b732cd26c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/Com.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "95a0992b64856d94f451de8df5a3401ec162540b" + }, + { + "alg": "SHA-256", + "content": "14542c4c5981eb2d0bce2f5edeb59ab66643d931554b9787dd5f988ef16ffc0a" + } + ] + }, + { + "bom-ref": "f32f018b5c63c4e2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/Enc.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a01e0b42810c223446f64df827ea745d98f39ac7" + }, + { + "alg": "SHA-256", + "content": "a38d61911c780619814cfd19f28a1d8cdfce23c5020dfd55a11e0d728a902700" + } + ] + }, + { + "bom-ref": "1291b83c83e49e6a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/Fin.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "e9ed0500c836b8e9fb850f5ac779617947a66fb2" + }, + { + "alg": "SHA-256", + "content": "4f21a480273c93b39d1d835c0e212e97bfe95b67940948fd6462f8b041602312" + } + ] + }, + { + "bom-ref": "d8d28f2f4a80bf6d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/Font.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "7db1461aa70a11e303af42124f625bb45c99e5fe" + }, + { + "alg": "SHA-256", + "content": "b727404e6871ecffc3d60986b29b8990bbf0093c975245edd30b6ed712277cb6" + } + ] + }, + { + "bom-ref": "1e7deaa64aff51e9", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/Init.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "06dfac24c74e8da437db40e9dde8da7da45e98b2" + }, + { + "alg": "SHA-256", + "content": "2efeba37e1c94d398dca7e3e3f6e3031168efab85ab05a4fe3313491a61f07a7" + } + ] + }, + { + "bom-ref": "75d4f96001639b90", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/Iso.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "93ec438cb444a2263feab20087a246e997eace29" + }, + { + "alg": "SHA-256", + "content": "4b4541612cf7252017a94d3cee3e31608cb13c86b2b92afce449f277ea6e6254" + } + ] + }, + { + "bom-ref": "416e64f42adc60b7", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/Med.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "4e3bed7c8bcadc13ddf93d78a25506a34f663db4" + }, + { + "alg": "SHA-256", + "content": "954f874a00998e847ae660c8710a2ae43b8587d52ba1a6caab856eff2bc4c396" + } + ] + }, + { + "bom-ref": "5beb4f873aabcada", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/Nar.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "0ea7efe8170fd221ac3ad642ac08ab9308ad953a" + }, + { + "alg": "SHA-256", + "content": "43a762dd2b5eddc257122b8f8b090f529fd6fa6fd0f1aabe1e50d98704617e3f" + } + ] + }, + { + "bom-ref": "fa6c4ad501561e7d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/Nb.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "fe0152d2718170513de541af6d1bab11143ec51a" + }, + { + "alg": "SHA-256", + "content": "ac44f80eb982cd6f075fac34355cd66ee12b0286bec403ea016016d536fea395" + } + ] + }, + { + "bom-ref": "338495753a78d4a0", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/NonCanon.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "43c12400ea31d39b61d2fb60e6da5fd311b07073" + }, + { + "alg": "SHA-256", + "content": "69e228189cf372b29d554414da7ab28fd76fe47923654769eebc77f4de7f2b90" + } + ] + }, + { + "bom-ref": "d675a4734efe828d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/Sqr.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "398a1947787ba6f7bd014aeb7e6c5c58cbc97f8a" + }, + { + "alg": "SHA-256", + "content": "f30c639d1403109d826d98d9268a14cae1d017d5dd1d912f2d1b0fd830736c9b" + } + ] + }, + { + "bom-ref": "b83decb669bc2c8c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/Sub.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "0557c4c3b41fd32412e23a0e292e7546afeec97d" + }, + { + "alg": "SHA-256", + "content": "1954ebdc36d34be45faa9ac20db8cf95942a259c175ea3e47b45cc8141a67326" + } + ] + }, + { + "bom-ref": "1fd4c649a19f5c0e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/Sup.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c1e3bc746071fba3df1b4f9c45baab557cbd4bdd" + }, + { + "alg": "SHA-256", + "content": "4a235f48f048e523331281ba3ff5a1d71ec67e12355ef7f2c5dc0fb0bb254407" + } + ] + }, + { + "bom-ref": "87226b86c99f2dc2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/Vert.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "495d39a7f3fe0b80ce367030fe8481fe422a7990" + }, + { + "alg": "SHA-256", + "content": "ae56761dd27f522e4bee2b2543ee64d0ccb85664cce71e90a0a7d673f76a33db" + } + ] + }, + { + "bom-ref": "822e25069f7f40e0", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ea/A.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "e956df7a29193e007493da1351931dc8d23402f7" + }, + { + "alg": "SHA-256", + "content": "b459018a285c5ed37e4737bfca4df2cd42774296ad50b6f7117b90f9248ca918" + } + ] + }, + { + "bom-ref": "07c2861efab6ecba", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ea/H.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "8e61caf4be329e9c9c0cdab0124e9b2954e905aa" + }, + { + "alg": "SHA-256", + "content": "da7b3cec33ba565387ea09b4f6497d367d2c18c2e2f5150ddcf1616c5da8c957" + } + ] + }, + { + "bom-ref": "a82cfcfd75644f84", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ea/N.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "8638b4c39d34d326b09841b710ba368062bfb5b3" + }, + { + "alg": "SHA-256", + "content": "3acea7adcb6b7d1879af19f7c38d231a2b9ea790c28d5947a80088e5dcdaa653" + } + ] + }, + { + "bom-ref": "5e94bdf691f0b6c3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ea/Na.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "58fd94c1b196faa79da57e9324fbf98049918548" + }, + { + "alg": "SHA-256", + "content": "7055cb263dff22d78992adbb97b9d18011cac2c2032bed7b4c68e99127368aff" + } + ] + }, + { + "bom-ref": "e1bdeecb8701d77b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ea/W.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "aeeea66b901b9de3b95f777eade2e8db982ecf53" + }, + { + "alg": "SHA-256", + "content": "9b5ca242fb29ef9bd7f9748a4848f670667edfb344d19be8c2234c880d67e560" + } + ] + }, + { + "bom-ref": "351bdb5075d9153f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ext/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "396b30cc13f6c2c20b9cf784f17f9c1caf2d94e9" + }, + { + "alg": "SHA-256", + "content": "6375883e6d0116708d66691f64751f3bdeddb4c0bb81f4f8b1dbdd5d049afd5b" + } + ] + }, + { + "bom-ref": "bd6698b15f74e16b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/GCB/CN.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "032b33b494aba1792705a14cb30bec878d9ce8bf" + }, + { + "alg": "SHA-256", + "content": "292e9c3ea238f1dfe550338e176d8c7d5da394d3e779801de91d422e5d039d19" + } + ] + }, + { + "bom-ref": "31c2c5e2a529d145", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/GCB/EB.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "ff54cfe4fa4de9dd24d0475a832c454b74df8084" + }, + { + "alg": "SHA-256", + "content": "433750080ae7596886ffddf734d5029fff9efff4fa1ce0b721a0512cd2a0408e" + } + ] + }, + { + "bom-ref": "8d57a190c8d110b0", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/GCB/EX.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "8fd3c67e83d979c2a45c150cd26e23b45c6c71d6" + }, + { + "alg": "SHA-256", + "content": "fd983b42d28e19a87420f342c571043b71557065a9854e696cde10995cfaa4ed" + } + ] + }, + { + "bom-ref": "16f7c41cedd9c53c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/GCB/GAZ.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "b0711519473efe5d3406bdf5eaa159cf537db2f7" + }, + { + "alg": "SHA-256", + "content": "8f433059177ceb49097ea31c72961d5237aff7a3851b31546fe61cd436b9e1a1" + } + ] + }, + { + "bom-ref": "52e524dcda024f5e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/GCB/LV.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "f314f43461d284ceb6d860cde4715a0c7a531793" + }, + { + "alg": "SHA-256", + "content": "9ca0b31ca06b07a9c9d2dc5035d97de6c92d94952677f58031a18bd5b3474fa4" + } + ] + }, + { + "bom-ref": "36975cc1b229bdc3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/GCB/LVT.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "dabe323fc8139d8cbe4ef5d6bfadf65932afdd74" + }, + { + "alg": "SHA-256", + "content": "c71f8a85b712358572aafb9e7868ca4afd4242310cce8d96cbbcb8ab5dd61ca2" + } + ] + }, + { + "bom-ref": "ffa6007170f176a6", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/GCB/PP.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c762cc1ab8c185220b53246c1ac0906c4b3a611f" + }, + { + "alg": "SHA-256", + "content": "74b06dbbfe3be53c24e04cb1c452049847bb2ad79a8affa497c85549d895d17e" + } + ] + }, + { + "bom-ref": "9b9610cdb73bc49e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/GCB/SM.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "635e94a1d7bd05d72bec64a2ea395f4ece71bac0" + }, + { + "alg": "SHA-256", + "content": "9d223b75f0e51a30e03377b2b4bbfb9d1880026ebfa3c74b01e4c202a35c3c1a" + } + ] + }, + { + "bom-ref": "bea45f8955e08fb3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/GCB/XX.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "3c184b8837a6c08f5589d56381e65cd3b8905ed1" + }, + { + "alg": "SHA-256", + "content": "e08f1f1beab13fcf1c03ebd965094843a4c137bcaf7a5a4cd4ddef68f4b967f4" + } + ] + }, + { + "bom-ref": "e33c0c182fdc7417", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/C.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "0e5a37c840941b8848bac9441acab12009929e29" + }, + { + "alg": "SHA-256", + "content": "97e995675fc32af746766ff0b232b2b1e30860a54d3e5f3d43acbc1600d6e0ab" + } + ] + }, + { + "bom-ref": "cd76261436aa7f9d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Cf.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c2fa2fe65b24d4d1875056935df2e3b9b28ecd04" + }, + { + "alg": "SHA-256", + "content": "5741625da5602f93a49489c2c286d57011b2c23ef9bee710d13ad0a8acc03725" + } + ] + }, + { + "bom-ref": "1ee142192e54825f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Cn.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "62ff4c2f21f2bf187a56762c1b1531a316d0842a" + }, + { + "alg": "SHA-256", + "content": "daefd17528b18c03393edf81daac8fb039dc6fe39b9db3fea639197dd5a2019f" + } + ] + }, + { + "bom-ref": "587ca1ced12bc87a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/L.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "6c8c0c223e24e1abab9c5f83e0fa6c51366516c6" + }, + { + "alg": "SHA-256", + "content": "3ae80f948a4aa36bef20e8963e746f5aa89bf3af8f57624b412f45fc5e859cc8" + } + ] + }, + { + "bom-ref": "5b8019635d58bbe5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/LC.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c1eddcfbe299ea792104e706cae856d051230fe8" + }, + { + "alg": "SHA-256", + "content": "1ac403d5322e95979cd9892a56337d977ee7f6b44284a0dc74e79b9358872248" + } + ] + }, + { + "bom-ref": "590c883802fac21b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Ll.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "5717e868dcc5c2b897a2ccede4f1ee8b2e5a4c48" + }, + { + "alg": "SHA-256", + "content": "ff2b991edb5b67c3f5db10076d3df02c3dc7c01809a85759372e625eb1e220be" + } + ] + }, + { + "bom-ref": "1219f01e41bb251e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Lm.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "e9471efb0cfa6ccfb871b1be9312c7b6074d1368" + }, + { + "alg": "SHA-256", + "content": "6322da67b6003afb092577f2547b5a4844c90d9ad8c7d541c76b60db729b8037" + } + ] + }, + { + "bom-ref": "15e457570728defc", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Lo.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "878eb443855f07f463b7fa4f6a64fb7add7573d4" + }, + { + "alg": "SHA-256", + "content": "67f71a5e26b7111cf68a2d7bb316fbb1ba4781365b68a9287cf835685cad2d31" + } + ] + }, + { + "bom-ref": "37c59252df653226", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Lu.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "12574f2782472e8cda92bc4b1711be942b391275" + }, + { + "alg": "SHA-256", + "content": "d52da5c6e5fac1fd08c047d561448e06b35376e58cedd5413d146cae2250251e" + } + ] + }, + { + "bom-ref": "5e30fccb2375c579", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/M.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "5d3b95b8ff6f52c0cca38b0d4566db1f3f5afbfa" + }, + { + "alg": "SHA-256", + "content": "d1e1eaf8b0c665a156179f193f9058276843af6ea292088a71418b8d8f072b99" + } + ] + }, + { + "bom-ref": "12f21bde153329fd", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Mc.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "92bf946efc709ec6b4861f112efe2eb333c72528" + }, + { + "alg": "SHA-256", + "content": "2b721b083f86cb6add1f82310bdda65b58a1b9a981714844cafe20c96ee3893d" + } + ] + }, + { + "bom-ref": "f4833fb86a260542", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Me.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "5ba75d67e3de57b9a713c2af7a9cdef551c3d575" + }, + { + "alg": "SHA-256", + "content": "4795e74a1493084597efca9d30afb93d35f6ec5aac14f10dfbe85f029d01a158" + } + ] + }, + { + "bom-ref": "06a31091982f1d4b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Mn.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a1c4985b39e6f0af616e017b051605780408a781" + }, + { + "alg": "SHA-256", + "content": "cbf3e4cdbdc96ea636d80fe15d16931b6bcfb1dc83e54147ca22557701e3a002" + } + ] + }, + { + "bom-ref": "d36050419526588f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/N.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "feb6c5325a14b097c60fcd66d013c8cbd12fe2e8" + }, + { + "alg": "SHA-256", + "content": "9ec0de7b2dbb75abc88eeb503e9cebda4cc4863a2da66b90f02ad2b737164e7d" + } + ] + }, + { + "bom-ref": "c90ae24a78223b4b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Nd.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "eb4f2772840dc74042ba0a6aba998bcc98377f77" + }, + { + "alg": "SHA-256", + "content": "63e1f1291d99f8d76938eaccf6865f27c0191522f6c914a4191208d7504b0acb" + } + ] + }, + { + "bom-ref": "9817b22cb219543c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Nl.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "cdbfaafaf63a01e0bda1e472e4d44805d4f7b67b" + }, + { + "alg": "SHA-256", + "content": "aff3512e8f5cdc6cb269b622efbc95409072bd5b983a13e73fbef116c12bd652" + } + ] + }, + { + "bom-ref": "4ce456a72d0ec1e8", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/No.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "448db392e4743d60a9be8d65f7bace2edc95b554" + }, + { + "alg": "SHA-256", + "content": "becb3180f6dfe913ebdbc6bb30e611f516015824188e246834c3b729a7cfeb3e" + } + ] + }, + { + "bom-ref": "f3c54903ce94e861", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/P.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "73909d6bc6d21ce1db0a6d2d5ff34fb5fc1acd8f" + }, + { + "alg": "SHA-256", + "content": "ecbfb8751edf38b6e139033f2e8650165cabc81cd978103e85d040d58c5629ae" + } + ] + }, + { + "bom-ref": "44e9ea3d5ad12c24", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Pc.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "bb08f07486f1826b49ac4d263e09b166190e0be2" + }, + { + "alg": "SHA-256", + "content": "ab30f6d5f74729dacc2dd2bdf24ae528c3c9ee09ed87fcd54bfeb87d029d891e" + } + ] + }, + { + "bom-ref": "6b2a235d2bfc9cbb", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Pd.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "85470272da94db8f2fe3c206781bcb8c8854485a" + }, + { + "alg": "SHA-256", + "content": "00808b36fd5ad3b3a130648ab2438a671518e71bc5997d3ac0bce64f63f98a79" + } + ] + }, + { + "bom-ref": "2a18322f684bccbd", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Pe.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "5062be0373d4568bbad5e60438a40dec8225a945" + }, + { + "alg": "SHA-256", + "content": "1f38acd79ff15892865f9fc73287cd62033fd54faec8edf0ac30996a7f92906a" + } + ] + }, + { + "bom-ref": "f058e5265229fbc1", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Pf.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "2c96a6cefa85f5aef51e113b7b4c6b8902ef2400" + }, + { + "alg": "SHA-256", + "content": "1ff4b37fb9c6abc1acac657dcf889ffe615482c2af5c1c3be6424bf589f6ff1b" + } + ] + }, + { + "bom-ref": "2c9ecf52b29b6adb", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Pi.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "61d5d86cc1a98088a1ccd74e0864c37a23319af7" + }, + { + "alg": "SHA-256", + "content": "a645dbf9f1582d7eb47bd9e51c42681c88aa6ad77cd7a6427b1ffa2bad6cba6b" + } + ] + }, + { + "bom-ref": "50a2d7da40c5719c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Po.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a49f607dc5b777ab99d1823d5282f1113de39e07" + }, + { + "alg": "SHA-256", + "content": "3d87e6eae9de3c634c9a00b9200fc5a384e107cfe585177ae4764b68e4eb79f6" + } + ] + }, + { + "bom-ref": "fbf80bbfe8c816b7", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Ps.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "e7b4922596f748b46629eae961f4ff73cc13ab78" + }, + { + "alg": "SHA-256", + "content": "45b14b4f7c1557c1d6bbd19bc3c27563c2146636ae862f63037c5a3ff41f9df4" + } + ] + }, + { + "bom-ref": "050fbc0468b585da", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/S.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "223aa031ac2476b9df053f6b7a10a1c70a3feec8" + }, + { + "alg": "SHA-256", + "content": "1b77abca41c50430848f4e318f8086dcdcdaa8dff7a1e513543d8080d23d0653" + } + ] + }, + { + "bom-ref": "628a3949b567c591", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Sc.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "efa3b4cb980d4009ae70c18faa4cb6eb49b472e3" + }, + { + "alg": "SHA-256", + "content": "0f6816eb603c8c4c4cf14bccd06c77c8e3314efdbbb922807f827ecce920f328" + } + ] + }, + { + "bom-ref": "836180fde5693aa1", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Sk.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "025ee587cbd03aed5cc87ed15dcf6b2fe5bfb4c3" + }, + { + "alg": "SHA-256", + "content": "bb1b599e62059328e11cf239391632f4189f5433aceb64d5b370b10074fdeb4a" + } + ] + }, + { + "bom-ref": "4660850fe7a51837", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Sm.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "3d0f4649a2277ee99f5adc7b160daba0d16fa918" + }, + { + "alg": "SHA-256", + "content": "63bc639f90f4ef18c0646ecbe8572d93caec35e03276479d8c2bdbf53dae602b" + } + ] + }, + { + "bom-ref": "9a6a16df213b3a0b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/So.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "b45cccccfd9671e33631b78e1c4d8707c08ae67b" + }, + { + "alg": "SHA-256", + "content": "68666cd18ed419f0743fa4df08c35a98f95e58e9994010418b341d36d66322a7" + } + ] + }, + { + "bom-ref": "8c27218346c153d7", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Z.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c3e852eb028a229a26f7c58343b8b0b4294a0ed5" + }, + { + "alg": "SHA-256", + "content": "f16b45102de2aaa3af34b82b00f001dc682db2671e4de0cb3a17bd91df0db0cc" + } + ] + }, + { + "bom-ref": "54882195cc120780", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Zs.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "09c6ef4c51c2005c75aceb62f979c928bcce48a6" + }, + { + "alg": "SHA-256", + "content": "7df5c11d3d3bab3651ff2d969d859d97b66ca562570a8f9ba97cde06d300eb76" + } + ] + }, + { + "bom-ref": "74ca229ee2c7bb00", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/GrBase/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "6ad8da32d30bf261eaf17020327ac0956d1dc199" + }, + { + "alg": "SHA-256", + "content": "fcfe782552bdc88af49cd9295768af44c062046c0b8780ce3b266c7966bd3ba5" + } + ] + }, + { + "bom-ref": "cc28075e1b092dc2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Hex/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "3482c552226529b8baa8efed3a14b76803b86bb2" + }, + { + "alg": "SHA-256", + "content": "cd9dadf888ac1fa1b6f1bf8c18fc6d125cb5fa7728e4397356e829e8b9b4cff2" + } + ] + }, + { + "bom-ref": "09ed109d7875afe0", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Hst/NA.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "dc5842bce49ff4e8895ee6364513eda2fdf02820" + }, + { + "alg": "SHA-256", + "content": "eb50571c127db80c66e432dc3e330aa015fb96142212ccd821e3754c25a88e23" + } + ] + }, + { + "bom-ref": "3a3c02abfbf0df8d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Hyphen/T.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a60f4783953ade34423cfc4b8a643deda9a8dddf" + }, + { + "alg": "SHA-256", + "content": "71b76c8fe142ec49028b55747027e1cce1bf841fa15880083f8c890b332107b2" + } + ] + }, + { + "bom-ref": "bcdee3eda201245d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/IDC/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "1d761dc5321a868a3b699e160272a52b38a2b5fb" + }, + { + "alg": "SHA-256", + "content": "e5b7660933b74b8a9fa30b2fb3af88dcf4bd7591e2340022611e29f410c42c1f" + } + ] + }, + { + "bom-ref": "6c663dc2e4bb429b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/IDS/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "16a4883df6ba1b4afa584d5417387643493800a7" + }, + { + "alg": "SHA-256", + "content": "d0bfdd7894414a47efaf475202871560fe27d589ac5364590d7ce0ef78bf4654" + } + ] + }, + { + "bom-ref": "2b3d5289870294bb", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ideo/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "982f5370f79c8c93cd11700578d1ee72a836e4a3" + }, + { + "alg": "SHA-256", + "content": "48d27169f9ad5d58206f6dc771c945a0fd844019c0bd42d15a68e45784bc2d48" + } + ] + }, + { + "bom-ref": "d7a7e6a7d9f7bbc1", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/10_0.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "4b0c25a9a94d428f488b332d999135eaea19d81a" + }, + { + "alg": "SHA-256", + "content": "d5170c8dc588bbcc1e2de148e7dddee99b1ef8f0ae872abc5dff8e35b030b8c7" + } + ] + }, + { + "bom-ref": "d4fe1e28b0bc7aba", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/2_0.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "e5b1552f3cdc3f6fbf76cd42073b90022db362e0" + }, + { + "alg": "SHA-256", + "content": "8053ae801d7f66cb65785836ef99c7aa8ba6468b952b4ff589dcde18e0dd78cf" + } + ] + }, + { + "bom-ref": "87423651aa49f9f9", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/2_1.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "3b30ead9c03c629de4d3c27bde0064277b7a1a11" + }, + { + "alg": "SHA-256", + "content": "3d41772bc3a88473837bc1e725893cb8fa883c9ca6396a417216efa0ca86035b" + } + ] + }, + { + "bom-ref": "0675e314ee7b4dac", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/3_0.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "678828072cd852a966c47663422ac0bec88c8b21" + }, + { + "alg": "SHA-256", + "content": "08579733175c30685315564ab583a1d1dc67d7bd52cf1903e77c3c3c90fafac8" + } + ] + }, + { + "bom-ref": "046207b270aa730d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/3_1.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "7bcabc39a443f4be46dc86826d236067295c5b6a" + }, + { + "alg": "SHA-256", + "content": "f00a0981743a29046c86c03efc2f4189858fcc30c9e915b13abf2a6464c2b5c5" + } + ] + }, + { + "bom-ref": "22121067ae17e005", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/3_2.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "0ec38cbab30d40588ce74b42e360c3e3fe5971e8" + }, + { + "alg": "SHA-256", + "content": "22fc77e5d4b04ea9c0836d776bc34ed0da38b9491a96364e2ce6a1c6803526b3" + } + ] + }, + { + "bom-ref": "1364a28f409c942e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/4_0.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "33cb8b376d9cabfd205101fb525b5b1f4d94ada0" + }, + { + "alg": "SHA-256", + "content": "d60ce739b06f237d6848f34e5174e98fdfcbbbc6ad3cde0bf0c307ed3cf175fe" + } + ] + }, + { + "bom-ref": "d66acf9cd45b5064", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/4_1.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a063a7c78e9b06b5965bd762ea20d1b8f0d61050" + }, + { + "alg": "SHA-256", + "content": "d0fc0d98cd61cbc51989ad1e84fbe7c3a58b0af87acec9e8317909211309d8dc" + } + ] + }, + { + "bom-ref": "d6f46db5c5c5a7fb", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/5_0.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "d5a69fb6a328e2b000714c50de857bfa14c25536" + }, + { + "alg": "SHA-256", + "content": "8b59d27faa6b23d02e251c57b9e6ffde03d1c974f1d2a5372c3109d116c370b2" + } + ] + }, + { + "bom-ref": "bf7a15f6df6cec02", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/5_1.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "44f1e0091f1e71995f108898b60d7d06558ea362" + }, + { + "alg": "SHA-256", + "content": "cb04602584a55bb9cb1e2c242ee597e96dbb37c240b5f786aa89d377c7a7b6a6" + } + ] + }, + { + "bom-ref": "76142e3b7ca4da2d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/5_2.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "6a44995e8f59cd0b4b720ac56c7c70012a24993b" + }, + { + "alg": "SHA-256", + "content": "0b0f0de0731cfc3d2e11182c7970d6e73cbc0c01bd4c7c536791988a65395f6a" + } + ] + }, + { + "bom-ref": "796b6d59d447792c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/6_0.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "f514770c77036648dabfe37e3ad88a7dc0be6ef9" + }, + { + "alg": "SHA-256", + "content": "a273960027fa7959b66c6c1c3559018ef4765a23af5e565e0d7c7cb1bb7c1d43" + } + ] + }, + { + "bom-ref": "7fa088b123ed5ed0", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/6_1.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "e5048743d25b06762cc7a3bf8050584d41292639" + }, + { + "alg": "SHA-256", + "content": "1b35968e0053fdf1b56f733acdfcd8e58bdec2edf53dc35f8ee3a7874ae2d3e6" + } + ] + }, + { + "bom-ref": "71d41e84f6ad256f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/6_2.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "1ec30ee0ae13ba7a475a6f9378361e7cdf13940f" + }, + { + "alg": "SHA-256", + "content": "1fe320130bdc13ae02e5571102b8a826a589595a26859663153060b3313948d7" + } + ] + }, + { + "bom-ref": "de8f9b9e9736395e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/6_3.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "654413e1f29db0d75d2643fbfc77bc85ad480b77" + }, + { + "alg": "SHA-256", + "content": "15f0197ed479551139d5e0412196e0ad4c75ea10d298035eddf02c1456c5f7c4" + } + ] + }, + { + "bom-ref": "fa8b47d1def11980", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/7_0.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "bf20c1bebdfe641b56aa99cdff99dd44ede672a7" + }, + { + "alg": "SHA-256", + "content": "1faea7c88f8ecbc2022fd6302b5d780965675c408cc60d2b6376332ed8a4f2ca" + } + ] + }, + { + "bom-ref": "a6214bef2a90853d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/8_0.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "f54781a106f840ae4ecf3aeba825f52abc1162cc" + }, + { + "alg": "SHA-256", + "content": "1d57faca7db41f401db8f553cd1199875a6e5c22efc48d5b3eb5724fb4e2532f" + } + ] + }, + { + "bom-ref": "b5b18e3747bbcd2a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/9_0.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "86f4a82e3324d70dd84e378dc4d4e973ec5fa1ef" + }, + { + "alg": "SHA-256", + "content": "37e0b1005ffad23438dc95112fea084b3dc9d4b9e76d98b05c7462028a0ac922" + } + ] + }, + { + "bom-ref": "85a6e316a047a61a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InPC/Bottom.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "d9dd212c4701e33a4776366778e72572d0794304" + }, + { + "alg": "SHA-256", + "content": "0fd753f5f0eb14ae77902168a09ca2ff3a059b9cf114db81e5dc653a117b4ddc" + } + ] + }, + { + "bom-ref": "ab394552cd26b5de", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InPC/Left.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "711ecd70a316e648e77aa471e4923a585693a21c" + }, + { + "alg": "SHA-256", + "content": "4c6ee35f2c249487d015afaca32fcad5b7ac8fd7109616fdeb9dd0f45f2e5c76" + } + ] + }, + { + "bom-ref": "07acf0aaed99a30d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InPC/LeftAndR.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "4501e1372740d99dfda7c9b5113f79038c121418" + }, + { + "alg": "SHA-256", + "content": "a9cd5243aa98f336e313cb5488f0044264e6750b8ac0869e1714288462b2fa04" + } + ] + }, + { + "bom-ref": "4f3238f864cf30e7", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InPC/NA.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "4bde4a8399f0bf295d45eb7c62ef2823ba903a43" + }, + { + "alg": "SHA-256", + "content": "238a37cc10f4be7e15bbb6d621bd1307548eda2bb493d1e326e7da2ea7b47910" + } + ] + }, + { + "bom-ref": "3c55fe2a464695e0", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InPC/Overstru.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "bc098fb646fe3675920cb8351da7bca1d70e4356" + }, + { + "alg": "SHA-256", + "content": "abefa16db85dc6c6ff6ffe768fd4f20d3d97aec02e5443045243dcae6af7700e" + } + ] + }, + { + "bom-ref": "8e1760ab27af4176", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InPC/Right.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "4880955c8208aa4749cf1651308ec4a5269a7fa4" + }, + { + "alg": "SHA-256", + "content": "2562db629b3cec320f0f76f220832d0f7cde0ee5ce6ac2b23d4fba8848641140" + } + ] + }, + { + "bom-ref": "e872b2cb59840d72", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InPC/Top.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "70d75fd78e6fd55f5838f2d70d7734de4c08028e" + }, + { + "alg": "SHA-256", + "content": "92a025ee5ce9a535c25eae6d8179b7a1ffed614173a8ab03d9414a01b929f577" + } + ] + }, + { + "bom-ref": "427ba03821e82c9b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InPC/TopAndBo.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "5b7509b308466c8876c66cddd3a9c80274b26075" + }, + { + "alg": "SHA-256", + "content": "881c40b2d3bb821aa8cf816f90c36cc4f9fa124163794ce76d4e87e7b000c108" + } + ] + }, + { + "bom-ref": "2d32958b2bf4fc91", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InPC/TopAndL2.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "22da22f843bef601cde0d20cd715c28528d04f32" + }, + { + "alg": "SHA-256", + "content": "5efc958c02534fbe571f065c8403a5346692463b459af1136110064a6b27650d" + } + ] + }, + { + "bom-ref": "5b7f1a5c5ec2e308", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InPC/TopAndLe.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "42bdea55050bab0f509e24d36ade3ca768045df5" + }, + { + "alg": "SHA-256", + "content": "1f3e9fb48f9bac051b2bd0446d81236feb3f9d572894170c742c9ffa018cd0c2" + } + ] + }, + { + "bom-ref": "c9e7f2f899e5a5ce", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InPC/TopAndRi.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "dea718bfa307a025c0c562435b820681d573b271" + }, + { + "alg": "SHA-256", + "content": "180ca95d3fc899d71f973d7d3aedd67dd8e27787c682713102ef97aa101adaf7" + } + ] + }, + { + "bom-ref": "7be2d5745b5c6e65", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InPC/VisualOr.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c71faf9a0a9204499e60531bb7b9b1eff4d26b0c" + }, + { + "alg": "SHA-256", + "content": "d8b78b716e804e5a6b2d98a19ad272485edae21a11fedbe140b9fddcb023bcf4" + } + ] + }, + { + "bom-ref": "10b6072c1f329364", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Avagraha.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "20d786accd2db3cc1992581491b2f600d8328f9b" + }, + { + "alg": "SHA-256", + "content": "0081939f9fad30b5972850feb7e4549075edcf22494d6225e471ce1d52908ede" + } + ] + }, + { + "bom-ref": "fac882a4c00506ca", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Bindu.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "8c99607c52bb6d0d14d0ec85f47bb1c8644fe8d2" + }, + { + "alg": "SHA-256", + "content": "4f232b9d2819be8bbde1b62c513ff37414c4d4eaca2c80fe80f3b42e2f7fca50" + } + ] + }, + { + "bom-ref": "a2ec5299b74419b0", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Cantilla.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "bf29ab45cedf4037d65de5c61b2005ea9a3545cf" + }, + { + "alg": "SHA-256", + "content": "c288759f438bbcce71a320d9ff9f1ad2f1db863716b4743f7b9ec91f13474bc4" + } + ] + }, + { + "bom-ref": "d1cd13a4c6b8337a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Consona2.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "72803cd2026faa609721d8e8433ddb1fd4438456" + }, + { + "alg": "SHA-256", + "content": "a92e93a45c29f1539eb37c4e57b3a5df4888dd8dd6a8adbfbca4151c0d7fe661" + } + ] + }, + { + "bom-ref": "c61f8266303a28c2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Consona3.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "b276a94f67134e9a552e0ddae7367ffba8e2170e" + }, + { + "alg": "SHA-256", + "content": "24f0dc29796fe515711c17bc82f121f5d2b46b3333f1970dbc490f01575f677b" + } + ] + }, + { + "bom-ref": "8308e94b41141b2c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Consona4.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "09f575bd89284fef4eb4a510ef4db1cf90964263" + }, + { + "alg": "SHA-256", + "content": "b4e56d587ce00563065fc498f77517be6d8c101a691bbd551a48f47fe2895cbc" + } + ] + }, + { + "bom-ref": "a37fad0956b605ed", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Consona5.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "96a84ca6c028fa66bb10435fb5e534d7bc14fd66" + }, + { + "alg": "SHA-256", + "content": "a1d5b424c53d44e70ae94e423d5065d5449f3466dc6235c5872ab6bdc4963f75" + } + ] + }, + { + "bom-ref": "4cfdb61a626ab205", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Consona6.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "2ffe733e6193cf84694dc59c8fc98c4ba2cbff1c" + }, + { + "alg": "SHA-256", + "content": "aaf4bf624b1ccffd6184ec534ed6e8a8367f3d4190b3e143648f35165d553e5e" + } + ] + }, + { + "bom-ref": "37cacba43b85cc2a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Consonan.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "fcad5fd3665e371590edf4ea8e2d8322cfeec25f" + }, + { + "alg": "SHA-256", + "content": "e6ee81972a3d5f5a33510718037f3dc08863e0e91d7977c68d4eb9e20b71ddef" + } + ] + }, + { + "bom-ref": "0d7bba23bd4b7762", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Invisibl.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "68d55a6443fe0d0deeae19bba8dde20e011ae310" + }, + { + "alg": "SHA-256", + "content": "f52b787a50eb934a9868dfb7c97eea8e5c3680299730db48b408fd5a47c3b1e8" + } + ] + }, + { + "bom-ref": "287c921964e426e6", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Nukta.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "659e99cf4a110d43f90c7b11cdc53a39bb8c7ac7" + }, + { + "alg": "SHA-256", + "content": "b3674660488660b2f0b3de35c3c5463d492c91a33b9663179906aca06d3b1068" + } + ] + }, + { + "bom-ref": "8311975f864acc09", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Number.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "27caea37387231609fe006526d5bfa923585037b" + }, + { + "alg": "SHA-256", + "content": "71306721e52fbf24f90af0bf35d2be77f3177004ac11718df656ade4c028c4f6" + } + ] + }, + { + "bom-ref": "4532a52381ab29ff", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Other.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "96ade2413800e88139ab5a88061d36d974b90fbc" + }, + { + "alg": "SHA-256", + "content": "e00b47159d1661a80a1d8b7e2f27e3dd84b7f3fd1cb1d8b4cb2a8367bf7f6e80" + } + ] + }, + { + "bom-ref": "24f3ffea5c9ab219", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/PureKill.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "6869cb4997af2e972e74a07569a2bf1524935d91" + }, + { + "alg": "SHA-256", + "content": "656ef2277247585e07ccf323d207ae1bdefed41f99c4d6ae04ac5004ea2a1a67" + } + ] + }, + { + "bom-ref": "aeb00123bee3d31f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Syllable.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "b51f98f12b910d9aa3255bc85fca2161381bcf2b" + }, + { + "alg": "SHA-256", + "content": "203523eb01f4a20301105778b52afefccc8c5a2cbadefb1cec606c549de03ebe" + } + ] + }, + { + "bom-ref": "a24915598a2cc282", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/ToneMark.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "2916203b26400f8edbcfbcf75b32532f58cc426a" + }, + { + "alg": "SHA-256", + "content": "b227e08b1bb11f350a919658ba9fc0ebbdd3bdc03bd36e82f0766fa02267fbd2" + } + ] + }, + { + "bom-ref": "9d82c4d9c5a3bda1", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Virama.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a1bbd370dd5fe3065f8a768fa3e204d0c3997e41" + }, + { + "alg": "SHA-256", + "content": "caad069971da4e7633048508b6b540d30336bb87a9f25e3bdc460459704a3866" + } + ] + }, + { + "bom-ref": "68b50890ff12970b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Visarga.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "0debbaf44eb0a57181d20a156fc8988c69bcf369" + }, + { + "alg": "SHA-256", + "content": "cc7747f5aef2a22e1fcff9a05a563f4218997d8d1c4b057b2297dc4b5b1d8a4c" + } + ] + }, + { + "bom-ref": "fb119eea5ee84218", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Vowel.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "efee49de96cd1c8b32f7fbad710ce506195704c4" + }, + { + "alg": "SHA-256", + "content": "fa114cddd76e4ab7af5ad9cb2b6f678c9e29b138a70db0e1df3c5450b767ee49" + } + ] + }, + { + "bom-ref": "040e5627e8955527", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/VowelDep.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "b00f170ed72e77c85788012839bbcf11648768a4" + }, + { + "alg": "SHA-256", + "content": "1f83b136008eb03fd46d8aac64b435fac0fdbbea08ed77097610b4f9eaa083c5" + } + ] + }, + { + "bom-ref": "2d7467a7fe8f54a8", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/VowelInd.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "7baa2ccf1b6758891f058a8986e7d239d1585d8d" + }, + { + "alg": "SHA-256", + "content": "ebda4f07632a65389e7e0c7ae780806a1371419ea3937b1cfdbe584c87b0bea9" + } + ] + }, + { + "bom-ref": "4552afd31b03c4c9", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Ain.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "bc743825630550ec1013dbd6ebfcc77ede016f01" + }, + { + "alg": "SHA-256", + "content": "84eb6d4881075a3c1b68ebec6863c5bb33cd93d70ba0f8ace8d20ef766188c88" + } + ] + }, + { + "bom-ref": "7fdfa17738405176", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Alef.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "b63567feac55675cfec8a79429e8f152e56d5761" + }, + { + "alg": "SHA-256", + "content": "64fb82a7a91e3579cc1157df5c6d39912f867b8f7e2ce94ec205f4ecaf4194e0" + } + ] + }, + { + "bom-ref": "c247cb2aa32a6d0e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Beh.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "4dc27e62ba20e5bb44b1d106e3486a5d67e4fd00" + }, + { + "alg": "SHA-256", + "content": "72fa1da7b3a204c2d539b53bb52ded5dcbbf5969bfe8c9ab492987c0b1a2041f" + } + ] + }, + { + "bom-ref": "74960b17259c5025", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Dal.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "6aca2e3ec8dfb39cf9f524deaa1de82a65f78f18" + }, + { + "alg": "SHA-256", + "content": "0969319ef0fac6f93d668f8af6c60ec1800aa29ef4a3ba4ba83ea71a25a5d6a1" + } + ] + }, + { + "bom-ref": "a76ca0b275990dbb", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/FarsiYeh.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "5951d4a812b092c496b020fdf004a02a210df04b" + }, + { + "alg": "SHA-256", + "content": "6c4c384bcc2832a10d393e7201437b9def8125bd92fe58c2f131f6819c4bd2bc" + } + ] + }, + { + "bom-ref": "cb2797442ec73fa6", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Feh.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "975a7c05b3b73c0fedbc9b691ffd7716568d5ba1" + }, + { + "alg": "SHA-256", + "content": "afa1498e596ccc75a4d9ed5fd165612ffff8aa8243faebcf7b87760c45df7734" + } + ] + }, + { + "bom-ref": "b06cfe9c5fca5992", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Gaf.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "660963628718cc3b029c93fc73a37e08e3d3ae13" + }, + { + "alg": "SHA-256", + "content": "7ee1ea84d8cc9f3b8a83325dd64f9d7c05e5c3fad00f9c3e9fde0ab062c32a68" + } + ] + }, + { + "bom-ref": "47be64fe1dd83a30", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Hah.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "6276ac0542fde9ca7ba1460f841d7bc59d4d15b4" + }, + { + "alg": "SHA-256", + "content": "c4c5703322b7feb0024b34a03bdee6e061ee810a4190837b58f2f0795b8a0416" + } + ] + }, + { + "bom-ref": "e6f03f5a6dcff9f8", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Kaf.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "41f379e3ba40433ebb540686da58474833ed1922" + }, + { + "alg": "SHA-256", + "content": "cbee3f69228ff19475eae2749f243c83d893d95565feaf28fb50a29565831688" + } + ] + }, + { + "bom-ref": "ae8afe52c753d058", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Lam.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "217577b4ed598e4160f95ac650efd65547e4b984" + }, + { + "alg": "SHA-256", + "content": "d479760c712e6206767a7c13d3806dbf5f55d5e654b26a8b6a73127d85e5011b" + } + ] + }, + { + "bom-ref": "f34b64c7b6b44825", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/NoJoinin.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "11dcd31a15f7bf3745e74ca60ae0275b41883a25" + }, + { + "alg": "SHA-256", + "content": "bf66de705a12af60595915db5cce79104f2edca43a6589bebfeebed3aeb43c76" + } + ] + }, + { + "bom-ref": "f49f6df8e98b3eb5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Qaf.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "d893fae2bb27917ad872355864357ca594eae7e1" + }, + { + "alg": "SHA-256", + "content": "ee85a597952eabb5e85e3a1f30160c748e89aa1d58937f2d6a244e11a13e25c2" + } + ] + }, + { + "bom-ref": "3062c7ba40ecefd9", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Reh.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "d30fcd3762b8efff9324b3f4b8e23c15fa15cd26" + }, + { + "alg": "SHA-256", + "content": "d0e302d3b523c4d006d5f177753ab903922eac3904cee9152d29d76092912944" + } + ] + }, + { + "bom-ref": "36079fa99ad51c33", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Sad.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "4c810241762869d474c2fee14d617bce8ad95ab7" + }, + { + "alg": "SHA-256", + "content": "b7dca05f911ed46c9ef1b75925613b9ecc91722b38c95c9752da6883a5112dbe" + } + ] + }, + { + "bom-ref": "7a4a500a4462ceac", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Seen.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "269dff842e5822e30e4c18bddc26684ed1e50bd4" + }, + { + "alg": "SHA-256", + "content": "0b40e5e917c449a905f42f7edbbdedb6cbc9123fc78ec7ceb76a054ef47f43ec" + } + ] + }, + { + "bom-ref": "abe3cccc3cd5c89e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Waw.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "bd072ff54dcf3eda07de8f37c0647adb9162c266" + }, + { + "alg": "SHA-256", + "content": "78610b13b556d8d932434c7fec59dac77e6e892a978d452cf968f88a263af6cc" + } + ] + }, + { + "bom-ref": "54d5697e9b1cfe52", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Yeh.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "1a2dcfb5527f4f88097f5b39126a59a18f1edfb7" + }, + { + "alg": "SHA-256", + "content": "1cb8a27c88f6f3f5713309c4b92dc6af8f1a7d7cab12292cc0bab7a0b9663531" + } + ] + }, + { + "bom-ref": "0b947cdcf2e14be2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jt/C.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "111f46e9f9fc0ea0d6bcdc088ba7c8a42ac68e35" + }, + { + "alg": "SHA-256", + "content": "374bd61080bae3a5288d7a4c86357d5f068d251372e6c70c5d82507499c024d2" + } + ] + }, + { + "bom-ref": "fccf0b2852db9910", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jt/D.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "de54e95108a4e60734944c4e9d43ea3cee9b3df7" + }, + { + "alg": "SHA-256", + "content": "1c7a8c737e5fe929b9d252eab9bb25f06ecc98490a69f2dfb9bbac079969dc29" + } + ] + }, + { + "bom-ref": "854e4ae6166b8203", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jt/R.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "90900f7fdc5453bd8ccd409fca5946479e9be7a4" + }, + { + "alg": "SHA-256", + "content": "fa8d0cc794f123afd981c441d34fc654d5b7c8fcab44218e2f18673d5fb2adeb" + } + ] + }, + { + "bom-ref": "d1c91b199a86ee7d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jt/T.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "d72e8c1672bf081523126c83a9eb64ddaced2d6c" + }, + { + "alg": "SHA-256", + "content": "87d21d0383fd1bbeff88bf893ef216a47c1787954ea6335e476b0cd723b8fb17" + } + ] + }, + { + "bom-ref": "ed80d686b7a8a528", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jt/U.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "edb002374748cbabe1e2059b497307d398623963" + }, + { + "alg": "SHA-256", + "content": "c65140380e2e4093c68061c04d896e06f7c68bb60efe6f34da61fefd9d705b4c" + } + ] + }, + { + "bom-ref": "2d27489bbb703132", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/AI.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "d1a345178e22c1a909996686fb79d04e33c32956" + }, + { + "alg": "SHA-256", + "content": "468e704a8ee1fdc357043f2795fff34db2eeff7825c081cd3ee72dd6bb16c074" + } + ] + }, + { + "bom-ref": "d763ddec00ba3730", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/AL.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "103f4daeb7003b0256d0d30c04cf96bc6672a83d" + }, + { + "alg": "SHA-256", + "content": "330e72884fea95c8333b9b0411717f26b04132dcb2b7378e39017bc166d6c61d" + } + ] + }, + { + "bom-ref": "e9e7337e3ba1a634", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/BA.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "f2d8c9ff0806f9e008da34cfb79f28e719dc9868" + }, + { + "alg": "SHA-256", + "content": "b3323cb2268125baa71b4bba8b1314756ee533e2911f38a2a547458aaed24cfa" + } + ] + }, + { + "bom-ref": "3ab5da571a96d26f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/BB.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "9c347662284942bdaba3e13b03fe3cf6e3925f9a" + }, + { + "alg": "SHA-256", + "content": "9cca290a7b69bce6288912276226c670749d91e66c0ee4d8fb031d6a0099916c" + } + ] + }, + { + "bom-ref": "5ab1e24bf81fbae4", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/CJ.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "38e5c09d9d285df352315797b9ce4df880773fde" + }, + { + "alg": "SHA-256", + "content": "ea968460a34f6b5b5e9e7ee367f7349679d2e97be6b97b69e1a3cc3775195e6f" + } + ] + }, + { + "bom-ref": "497100d2078dbab4", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/CL.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a5dabd22d918cd267e5d18ad86dfe03843dc3703" + }, + { + "alg": "SHA-256", + "content": "97322a7099f4e123302239849327d13da83568178f05811526bfd2c9dabac5b7" + } + ] + }, + { + "bom-ref": "d50a904780cd758e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/CM.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "e003e7ad76640ee5a8f421cde21c6983d8d02944" + }, + { + "alg": "SHA-256", + "content": "0ca0bc3994159bd7e67cd6a2720416e43d3aa121aac65a28dc59424e4179e1a9" + } + ] + }, + { + "bom-ref": "3bb79939c0855bb1", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/EB.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "cf8dd31974d3ca4d9f630e2006abafa4c1e4203b" + }, + { + "alg": "SHA-256", + "content": "44ddb36fbacbb5664674bd5649da21321992ef1110b4abda484f53bd32b2a0f5" + } + ] + }, + { + "bom-ref": "9b89ce11de53d2d6", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/EX.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "2d4c0b280d808542cf84d2a757a724aa8c8cf669" + }, + { + "alg": "SHA-256", + "content": "d5b256cc2996abdc51118a95cc74acdc88411f0d08dabeb571e411fa7f49f0c4" + } + ] + }, + { + "bom-ref": "78aec6b442234046", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/GL.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a5211285ed8e1290dfffd3ad0b0de40c4cfb862d" + }, + { + "alg": "SHA-256", + "content": "efb6e15b6707a84d3c68291075e84f4d0445c8fc1a5f58ba68b24905a19d6045" + } + ] + }, + { + "bom-ref": "920655edce90591b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/ID.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c8f296c6bb4bb1ad37b3ed6f70000ff4d5e318f0" + }, + { + "alg": "SHA-256", + "content": "368468aec83d216cbb607372f0483a03fb1b446bb4471b938c15cd260e5a5d77" + } + ] + }, + { + "bom-ref": "7427e02e477fa7ed", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/IN.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "9b72bca13c997e921ded6dcd921c6d7db989acc3" + }, + { + "alg": "SHA-256", + "content": "3d9bdc308b72dc68323152724732a390b9d3f1b31f3788b3d753d91fbe4492f8" + } + ] + }, + { + "bom-ref": "4b7f3aa150869cdc", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/IS.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "488a9e40701c0cfc833644b30524be894efe955e" + }, + { + "alg": "SHA-256", + "content": "53c8f596b47eb97e0c83c9b79623ae65e55eb522ac25c0adb53dcabda794e1b4" + } + ] + }, + { + "bom-ref": "c988fc0a45e59e99", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/NS.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "4f5d42e9720965cc809fe1eced4d30a3d3a60940" + }, + { + "alg": "SHA-256", + "content": "a83f3d4d834044f31ff2b27db7cc111f3889cbca00cd09802e8c04027fccba37" + } + ] + }, + { + "bom-ref": "b681f85dc144e818", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/OP.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "dfbc3d4d1ff1139b49724f6cd848167d0f7fc504" + }, + { + "alg": "SHA-256", + "content": "df3ffe501b94a176189f275819ab6559be16c3f35fe4bf76c80974c295fe054f" + } + ] + }, + { + "bom-ref": "ead17787a884a015", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/PO.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "98a1486d4d640c75f6068cdb0db8efeb4d2072d5" + }, + { + "alg": "SHA-256", + "content": "c3b2414302230252972626e27280592949b197a4bef0be35aaa224f802af69a3" + } + ] + }, + { + "bom-ref": "c4bfba4bf7bf323c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/PR.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "9f4f968b69e042d09de1ac19122c8c25a6c8b7b2" + }, + { + "alg": "SHA-256", + "content": "818fde7896a55ddd560cacb6cf81a9f8e495be4c407a2a0be3852759f5abcb1e" + } + ] + }, + { + "bom-ref": "b5f3c85090cde08f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/QU.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "6db7fc2a6ef8902a4d16772b352ffc8378c6b510" + }, + { + "alg": "SHA-256", + "content": "2106fad5616bc411ba64dfd2a691eb09a8b40b1dcfbcb4eb113ae84e67542994" + } + ] + }, + { + "bom-ref": "cc9eb0ee34425f27", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/SA.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "f586a629ef8d639ca3fe22d70359fc21789c4df4" + }, + { + "alg": "SHA-256", + "content": "4a2f70ab4d37bef8d61d8d4dcdac44fcd57b1c3cb01f176620a72ba5129c401e" + } + ] + }, + { + "bom-ref": "549396a953ab2d41", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/XX.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "6aab8843d8b25f9959d05b40403541e0a9362652" + }, + { + "alg": "SHA-256", + "content": "9a2cb6d760bbd0fd9c9f7e40957fc6cccc782e82490410c32c6c7f872e39db2c" + } + ] + }, + { + "bom-ref": "7c0836132c1614ec", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lower/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "e7035733ad2c9660ae9f0469857506574e4c5ae7" + }, + { + "alg": "SHA-256", + "content": "52410792cb4583dd4d6b10ea6ec95482f2c7b64a075086351bc645eada6c4c6f" + } + ] + }, + { + "bom-ref": "1e88eb84eb7ba7ee", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Math/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "7d9abf817494a355c4c5c84f669745ba2ac61de7" + }, + { + "alg": "SHA-256", + "content": "951643aa72f253a7f8e08cf33b69349b5d3d945d27a6310971de0fd3efa42606" + } + ] + }, + { + "bom-ref": "73c5d322baea444e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/NFCQC/M.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "261c9d44b250568be21c6d9f9aa5edc1f879f1fe" + }, + { + "alg": "SHA-256", + "content": "7575039168dd680bb333c1f0749c1a086537b1d2b5f8f13e156c08564abbffe4" + } + ] + }, + { + "bom-ref": "2ede9442a3cfb28e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/NFCQC/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "afe6c7524093652621dda1828509ca7c7484b202" + }, + { + "alg": "SHA-256", + "content": "19a379eb048d06e98ed7b5e238514277b0652ea8e4582aedd5d65251c9b5c7ef" + } + ] + }, + { + "bom-ref": "2b4bb17344a46756", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/NFDQC/N.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "ff0dfe2ca1b3ef1346e691d472fefbd035ec00e4" + }, + { + "alg": "SHA-256", + "content": "6930ce8c3fb953fe9c8811a3b664fce344b8449f885765429dc7b06144a2bdd7" + } + ] + }, + { + "bom-ref": "408be32002847b9c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/NFDQC/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "bfc8ceacd28bd670d2eee267bcddf6a0572c1e72" + }, + { + "alg": "SHA-256", + "content": "4f01f75cfdc1638c3087f46fbb02ad39d2cfe2192b76a64e9edfaec319a1c5df" + } + ] + }, + { + "bom-ref": "34a8219afa6949b4", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/NFKCQC/N.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "ca520076516a5c907fed30f100ee82b185776f6e" + }, + { + "alg": "SHA-256", + "content": "3cd11ee07ee877f82420c871a271c9b68c7471b24a2d281108d0d210c09d8d27" + } + ] + }, + { + "bom-ref": "e704dad19956b1bb", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/NFKCQC/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "ed033427903fe3676ff735d8e789b239b63629d4" + }, + { + "alg": "SHA-256", + "content": "68d8339b7f26d07dae7024896276bf101ffb3f1b7c8aa4433c0a68b346135a46" + } + ] + }, + { + "bom-ref": "aea9dcb42908a659", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/NFKDQC/N.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "b6e9e36bcb759979056b0f3fe2aced4323c1effe" + }, + { + "alg": "SHA-256", + "content": "c39aa4421d97f4084341a00d40f599176c3f44ae1a0dd99af009fa2dd6867cbf" + } + ] + }, + { + "bom-ref": "26ce984a2d7dd186", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/NFKDQC/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "d28523de6185edefebfc1cefc3abbcdc4a06d0f0" + }, + { + "alg": "SHA-256", + "content": "ad2daf035bfa1dc839a0cf3a821ab4ae9e6be33f02f259229b167e3d3d016b5d" + } + ] + }, + { + "bom-ref": "40d277c9a753c041", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nt/Di.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "4b6e0ebc45b0cfc0c2cff83859030b397a50b76f" + }, + { + "alg": "SHA-256", + "content": "6ef1058e9e09cdc91ff49296b26c3204ae342537b5d4c32844b8d058ef45058c" + } + ] + }, + { + "bom-ref": "5b5a67531cb5f1e9", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nt/None.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "6662b1ae29a1d0753b029b644c6c18618ebdb508" + }, + { + "alg": "SHA-256", + "content": "69208c53fb3c7fa3119d28060cbf4352bbcd575fb495c79a47d07fffcde821c6" + } + ] + }, + { + "bom-ref": "4bb716b762a88c17", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nt/Nu.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a17a16da1c31256ba70c17f18894aa32e2a25e23" + }, + { + "alg": "SHA-256", + "content": "9e24fcd330b4ab4539c6bbeac20955d53caeba96bc72d51185f7e953bb1e0cb5" + } + ] + }, + { + "bom-ref": "97606a2b8170aa09", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/0.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "97b7e94bfca810a925e2eeacbdada0b3d60c8e7a" + }, + { + "alg": "SHA-256", + "content": "ac8078ed7e631d6b77912aea1e5605c7a03430d6704d3ed11d86ca846da70e93" + } + ] + }, + { + "bom-ref": "70b1f5e065881b2f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/1.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "72e6e442945db9a42d8c5308c02bac9a78000106" + }, + { + "alg": "SHA-256", + "content": "f2bed0efeb0c105bea17991965c7cbf7913908778e13ab158b838609eb7b5235" + } + ] + }, + { + "bom-ref": "7ac4b523bf2690ad", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/10.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "68cbfe2be296eaf6c288811de5964024d476a19d" + }, + { + "alg": "SHA-256", + "content": "53c915387dd77a19f828a05e90ff70170ed58148eea25055eb27cf2feba0ef8d" + } + ] + }, + { + "bom-ref": "90846c299c544b7e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/100.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "3727975d539bae311720f82f7b94f2e5a19cb8b9" + }, + { + "alg": "SHA-256", + "content": "0895053fc3ba1003a19eed2700cd9f481dee7c49acb12bbf5f66318d40ad9879" + } + ] + }, + { + "bom-ref": "8a999f3063ffc660", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/1000.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "f0acf849908509c069b1fb5e6767ad1e4faf2c9a" + }, + { + "alg": "SHA-256", + "content": "5ac4f2e74984bc4a7654c5dcfc91b15d33eae43835ad6208eb1ba8d0fcb32b73" + } + ] + }, + { + "bom-ref": "67a6a5a7563e4132", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/10000.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "dd26665ec239f498586022e24f96c195b879fb26" + }, + { + "alg": "SHA-256", + "content": "9ba675a140deb30a6a10cb01b6bb2292f261d8af9368d036d744750a5a384f7e" + } + ] + }, + { + "bom-ref": "ece32a6675f84d76", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/11.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "4a125cff7e8f7086f700244d9afedc4de22080b4" + }, + { + "alg": "SHA-256", + "content": "f93b07b6a7d5b3e69906ac5f39d28dd1f6ba724c67858dfac4ce29910502fd8c" + } + ] + }, + { + "bom-ref": "9f715569b4b8fd54", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/12.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "1c2c6056e1752d65ba968250277e748632f7d2ae" + }, + { + "alg": "SHA-256", + "content": "03c29316b3b5f7810e412665ce5b0c76a3b85028cbbfd806d90ce7871cc42af6" + } + ] + }, + { + "bom-ref": "2c58f44a9237cb53", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/13.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "f83d9b3012ed2f2e7913333274da41773ea4db14" + }, + { + "alg": "SHA-256", + "content": "b3e504bb7b0d2494467f5e3fcbdc0c6eb9dd3bdbddcad52a3cb78188950186f3" + } + ] + }, + { + "bom-ref": "9b05365c59e7e336", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/14.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "b68a265cabe70e7092e60d03f7b660d408ef66fc" + }, + { + "alg": "SHA-256", + "content": "3a9d88c7a78f53fc7976ae2c5c1fb81a76d7dffce69267ab217ccfc6e102f9f4" + } + ] + }, + { + "bom-ref": "dda82a550267d50d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/15.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "5df6d58a4dbd9572c014b4c944f1dff2571bd2b6" + }, + { + "alg": "SHA-256", + "content": "f85af9c2d29dfe9aa3037ef8846b8ce517e42a7d1a39f9cfaf32327f5f34a9ef" + } + ] + }, + { + "bom-ref": "c46f41459e58c682", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/16.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "6b40169ce21ab2afa1eed811a15ef97bbea93a26" + }, + { + "alg": "SHA-256", + "content": "748ddd3fd76a321878200607787d0fa5a65706733935865de7b981a814bb7005" + } + ] + }, + { + "bom-ref": "ab1282c110d47020", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/17.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "e9194ee6c27b968f541d35fe6a8b15f36cf0ffae" + }, + { + "alg": "SHA-256", + "content": "50df17f99eb765fe8db30c4de7bed8b69710a4c1d018dd06ac57feb828467f2f" + } + ] + }, + { + "bom-ref": "24ad68297003d5ba", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/18.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "181206a8ee0a293e7ad3c610a75fe971b44c7f39" + }, + { + "alg": "SHA-256", + "content": "a9ca115d79775e959a82e01e83caf509dd29338ea09dc23acabbdf26ebf345b7" + } + ] + }, + { + "bom-ref": "291e89cc5658e4c5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/19.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "4c9a7abc70e2ee10aa60412738aed7932a9b9170" + }, + { + "alg": "SHA-256", + "content": "b1e0abb359479a7eee30d71716b28412b25595b612a703a869efd930a14d1dac" + } + ] + }, + { + "bom-ref": "0830633e9518f530", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/1_16.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "314caa848deb26c00879f99d10dbf238948a1a79" + }, + { + "alg": "SHA-256", + "content": "8c9258cfa5520cc126ac3a073e0c28f9c1b00dfae478978db23c3f0fc4991576" + } + ] + }, + { + "bom-ref": "134af5dc56311527", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/1_2.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "e9c51bbfcc94b1d23d3e7acd1cfb759c76a371a3" + }, + { + "alg": "SHA-256", + "content": "66789087e35b4ba7d080488921cf969611278a088a3318723cb7270b55c0d315" + } + ] + }, + { + "bom-ref": "6007ca3a2d149c56", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/1_3.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "38cabea6a3bf4f4dd60da3663eef9f6f352de77b" + }, + { + "alg": "SHA-256", + "content": "2d56c4206b1b17be2af6c6021042721153fc239adda951efdf84412462a7f347" + } + ] + }, + { + "bom-ref": "10c62feee6d804f7", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/1_4.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "4e60848e60d81896278879e0e4a1e58aa1ef3130" + }, + { + "alg": "SHA-256", + "content": "45dd3483064abea0688257e8dfb91fef20d8338e2bcefeb27a51183bc3c99dd2" + } + ] + }, + { + "bom-ref": "76a661969e8fffd9", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/1_8.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "6564475e5979f710744279fd996d535a99c9710a" + }, + { + "alg": "SHA-256", + "content": "3a59f4378f5afc043beed389883ffee28f1c5be0cc1075bd0e018c85e48d1c32" + } + ] + }, + { + "bom-ref": "45626ea22a1cf364", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/2.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "025aac1ba45cb5280efc5081af464916272e6e97" + }, + { + "alg": "SHA-256", + "content": "c0b849efdede0c8ab4a7b934ac92c44850ca64166421a7a2171b9045ff70121c" + } + ] + }, + { + "bom-ref": "1d42d4025c5f2223", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/20.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "765915d809e1ea98803d2523e28cc54dc91a876f" + }, + { + "alg": "SHA-256", + "content": "1542725f9e2fd74c1216d15a92c28da79249cefc22225e6aaaa42888fb3b5848" + } + ] + }, + { + "bom-ref": "31a7c00641570307", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/200.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "0a536df0dc0da6e03cd9328be440497029936382" + }, + { + "alg": "SHA-256", + "content": "0783976aa5c8b9772c1a85a607eee8e8d935183a478f5ddb03c1e439171b2a8f" + } + ] + }, + { + "bom-ref": "f789b9e76149303d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/2_3.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "8c58d4619985400a7363892d23c89da0c91c8691" + }, + { + "alg": "SHA-256", + "content": "304c8f9a77116974200d1ebba3062217f461cd5671ff59f6ce786ddb7114db71" + } + ] + }, + { + "bom-ref": "3f7706baafa385e5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/3.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "cd20ed1da48e9efeb8644f762aa5e89931929b63" + }, + { + "alg": "SHA-256", + "content": "58171a1c6bbdaca54d88b696d4b2783e588f90f3770e8b8d03dca063e468370a" + } + ] + }, + { + "bom-ref": "cf4454ad07a1e807", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/30.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "e2bcdf308d3d8d38dd0dec0f04db06a002115eda" + }, + { + "alg": "SHA-256", + "content": "6041c1081d6df74513efa8eece77454b869b388923c0c96ae095190a3a74db6b" + } + ] + }, + { + "bom-ref": "2aa0f07314e99453", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/300.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "d06203b9124938bc1e97fe74e46667ec2c4c89e3" + }, + { + "alg": "SHA-256", + "content": "34aff18f00bb1d618ea1a9546505ed54f928d5419c6da4eb70d2ed4ca26533c7" + } + ] + }, + { + "bom-ref": "61e274dae3f189fa", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/3_16.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "236cf7d02d7d7914d1565452a231a6e41c49840b" + }, + { + "alg": "SHA-256", + "content": "a7275ec3e8aae9f6594c93ccfc70d34dbca4771326eabe756ca66fa44bc82d5f" + } + ] + }, + { + "bom-ref": "e2ad7635e4abe189", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/3_4.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "2bf289211904074e6d3202bd08f9338235c3da2b" + }, + { + "alg": "SHA-256", + "content": "92a53fdca9bc912a9dbcd8b6479f704abed478dc3385e12f6a9d7e60a0bfae4d" + } + ] + }, + { + "bom-ref": "6e9e6d47b47541d2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/4.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "d8eede02428425137dfde979decb915fb6064f6b" + }, + { + "alg": "SHA-256", + "content": "0b42b370c345be74e120c4bdd31d8ea46a5e498ca4ca4a9111172473ca52bed5" + } + ] + }, + { + "bom-ref": "2b05e468a0451338", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/40.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "d46228d10932ff435f3ebf9f69a34c3883f42be6" + }, + { + "alg": "SHA-256", + "content": "f8834b0f0c79e6c2bbdacb79c92936a8242788537236ce64dae01b3e51788578" + } + ] + }, + { + "bom-ref": "106b68800bf8aca2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/400.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "f268456fd50649fbfb7cff6053c26c312f956e33" + }, + { + "alg": "SHA-256", + "content": "bfade35fd045871d5bf95d36876746faebc22f59bb50ac5343e2e6a380bcb08d" + } + ] + }, + { + "bom-ref": "022d3a9c4a149318", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/5.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "916f7632e5b6429dc0a0df0854608c28a238e491" + }, + { + "alg": "SHA-256", + "content": "80bcbd092eb5c755388abe92d7e3ac42f0507849d45a804cb5757aaa563d6312" + } + ] + }, + { + "bom-ref": "0895ac1cf969e573", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/50.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "e605bb71b22241328133602d4ec0bccaf4198d53" + }, + { + "alg": "SHA-256", + "content": "087808cbf995cfac9dda4f7678b33612b2c22856140daf81efca424177f66975" + } + ] + }, + { + "bom-ref": "2587713bafb002ba", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/500.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "528a3b1721dec91ee47ce40a80f99ecf1dd65e03" + }, + { + "alg": "SHA-256", + "content": "a6c3f4efc4e1fc45bfccab7e9918c0c9ee44c18a3b8d3ef571672abaa8a0fc34" + } + ] + }, + { + "bom-ref": "efbb9d4e2b687445", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/5000.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "5cdfffa710cd31a7f899c5821f29a427450e9511" + }, + { + "alg": "SHA-256", + "content": "3ca27978e20b1f94315518bf66653536c982e800994aa20c1bb3cc84cf965500" + } + ] + }, + { + "bom-ref": "cdc43398bd606152", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/50000.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "25231d36078099018334b6313afc1cbc2646e910" + }, + { + "alg": "SHA-256", + "content": "3e792b6ab4bfaf92245f1b85195d3692ba4c8fbabfa65e0baa6d0548847fb0ba" + } + ] + }, + { + "bom-ref": "8a4c8edc09dc26db", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/6.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a88428268b50c1aff510a475f3a0175af7b706ac" + }, + { + "alg": "SHA-256", + "content": "1d2f28ee9c60c593aa67a94602009b53aca58334f09917fa9ade034e2abd5b9e" + } + ] + }, + { + "bom-ref": "b83904aa6f9f8c68", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/60.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "9e749247077eb7f38fde9c2981c45ee0878320bb" + }, + { + "alg": "SHA-256", + "content": "9d8ef01d1d289467b07915bf8a0f615a78b1fa45a761adf017af8bf24361247c" + } + ] + }, + { + "bom-ref": "c7466955edb80703", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/600.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "0be0b9d0c1e686534ffc776da3d36313e22a00ff" + }, + { + "alg": "SHA-256", + "content": "c35fcba01f56da6c5e485724029f4e1339d4114cdb2463efd06b6e56d0b17b67" + } + ] + }, + { + "bom-ref": "68ad9c977677fcfa", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/7.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "07460495bceb774e835023423a4af055887370e8" + }, + { + "alg": "SHA-256", + "content": "de4a53d7ea4b787cfe55d7dc6147f3cfba948dc7ee0c032042c1481416268883" + } + ] + }, + { + "bom-ref": "572771afb90872c5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/70.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "0ff5addc28f2108cb3aa6170d1a2363c516342c7" + }, + { + "alg": "SHA-256", + "content": "c389e51310a37e0b335ed15e0ab764f16ffc3f92836cdc0f72db1a7308e8e612" + } + ] + }, + { + "bom-ref": "f0508f2735082ecb", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/700.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "2c481812b48f51be6666e90e12db81581bbd2f23" + }, + { + "alg": "SHA-256", + "content": "2b13fc31c3308213095371e4a5569298085c84bb40b838aee59946bf8ca258af" + } + ] + }, + { + "bom-ref": "0e2e26a8e1d118a6", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/8.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "7886c4e078aba542db7a0211c3903fc0daf8754d" + }, + { + "alg": "SHA-256", + "content": "91c13fef4109f19412914e38274dd99c5a08016f4d47b9febe0743084214f98e" + } + ] + }, + { + "bom-ref": "4b25ca71e981e69c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/80.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "b228d64c590e437c4a9302e0caffa77c6083f15b" + }, + { + "alg": "SHA-256", + "content": "a5d14caddd4d0f7312a015b4545abced0bb907a79d92ad2fa48417a9e8a00225" + } + ] + }, + { + "bom-ref": "67004e5945d578c5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/800.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "9ff3591954c050ef9c415c33f272fbabce1cc4cd" + }, + { + "alg": "SHA-256", + "content": "69f233936c119e1fcdfea5711caa88f162ee57c0d6d7c88fbfab884f9b3592f1" + } + ] + }, + { + "bom-ref": "53e2a181db423aa3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/9.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a875270982df054e21486e47b60566ab2dacda32" + }, + { + "alg": "SHA-256", + "content": "994355cdd9ddc89546b85a55928d1752f0f3caec4043f4df0e7a48c8c1dd5dae" + } + ] + }, + { + "bom-ref": "f07b81ac4cda9c83", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/90.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "835dfcb38416d028726ffff3ac7779463beb5791" + }, + { + "alg": "SHA-256", + "content": "a4ea5261c82305fac1c13c5d70f28fe03680f28bfce5f153c90ef7164e19d321" + } + ] + }, + { + "bom-ref": "397c36850dd44a6b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/900.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "9e3d236236edf787b88c8a7d7b277386da5e5adc" + }, + { + "alg": "SHA-256", + "content": "cda0d4ff2a96443e3518d2b0edb9872951e96cec2e9b4072f9617d582d7a85da" + } + ] + }, + { + "bom-ref": "de51f0fc5b94bb42", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/PCM/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "7856ed7ed5ef87238eb6d90046eb2a4b91586fb8" + }, + { + "alg": "SHA-256", + "content": "41110e696b1e4ff5e28f59fe2f544af0a536de8bf99967b30a675db1f11b0f7e" + } + ] + }, + { + "bom-ref": "75f9ad7b65678181", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/PatSyn/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "149ffda4720897d5902730a9561dde912059080d" + }, + { + "alg": "SHA-256", + "content": "685076705658415298a0a07c181094c05e66263468340075a98a9841ee5ebb6f" + } + ] + }, + { + "bom-ref": "26ccbea4798f54ea", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/Alnum.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "e24cc62f281b1524562a4cf822b45cd554464c17" + }, + { + "alg": "SHA-256", + "content": "d347fdb287222cc6b6b9f5169d89f20641ac0252c923edb6edac98a5fa875fc5" + } + ] + }, + { + "bom-ref": "f5b858e004b23906", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/Assigned.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "91796c5c7ede5491613f67acb51ed3ad738cebc5" + }, + { + "alg": "SHA-256", + "content": "c939586074feac62219b6093979e4da8f2de560257f6a2f9b9f5540976b3a91d" + } + ] + }, + { + "bom-ref": "50873de4d172b163", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/Blank.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c800b64f4b9099ee8c48da16447a5d7dc891a9a6" + }, + { + "alg": "SHA-256", + "content": "685e6f71d6a866061e03d37369c411a2557c7e3f81e8e8bc44cd99f2c1cdf573" + } + ] + }, + { + "bom-ref": "9d1c420208482276", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/Graph.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "f4bfe8b2ccc54aad54bcb90ab76fcf0b70f3f2aa" + }, + { + "alg": "SHA-256", + "content": "db90dba71ab507960a2f54f5006a6a141be6538f0d047284aa27ee2b6fd02b12" + } + ] + }, + { + "bom-ref": "987f38bba8409bcb", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/PerlWord.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "de6e8e185c273b287de66e6c03dd868d9ef8b2e4" + }, + { + "alg": "SHA-256", + "content": "75be0dce6673e3f33a3ae3fb1cbf5c40219f7c285d9f14747ce21435ac8ce48a" + } + ] + }, + { + "bom-ref": "023d4b0b14f546ae", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/PosixPun.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "4c1c68977dbeb3c6cb4c8efbe8ec8e2ccc3dcc48" + }, + { + "alg": "SHA-256", + "content": "22b60b3931d41415f8975e2e81522798231a85e828080183824463ff93c603a8" + } + ] + }, + { + "bom-ref": "8dd875615c38796f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/Print.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "57623946b2843d79decd0def63e250d2ac6fa184" + }, + { + "alg": "SHA-256", + "content": "d6140bd64c86fdc62ccd59ef8662194ac6a7a7a805a66b21d39780abdd023daa" + } + ] + }, + { + "bom-ref": "d03a2ae67df1af35", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/SpacePer.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "635c5f96675c9682331b8966b115b1fb42c88ebc" + }, + { + "alg": "SHA-256", + "content": "a8b05ebd255603b30916a0440fd6e932d8c0e25f17775d638a301dcc795d3754" + } + ] + }, + { + "bom-ref": "be5cc4a23114c9e5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/Title.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "8939256c0ceaf65ac077c5e52311962969bea082" + }, + { + "alg": "SHA-256", + "content": "5f34fb065e9550f266af4eecd9654d8d4ab201362bebe7fb0a57b4ce9724d957" + } + ] + }, + { + "bom-ref": "8257ba0533dddb61", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/Word.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "dc8d00f5adee143720a05fb1d3dd82cd84716683" + }, + { + "alg": "SHA-256", + "content": "b86ad27d5ff32d81b515064ab307907591c72735586ad6840d293e120e7f96b5" + } + ] + }, + { + "bom-ref": "567de47d29164ea1", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/XPosixPu.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "1b9fa6e9df3e80acb1d8174ff367c0a54f4d304a" + }, + { + "alg": "SHA-256", + "content": "c480e9354fbf3209e690638bdd0e5bd803dd1d83dca1983bc6f613d86503bc26" + } + ] + }, + { + "bom-ref": "1cf9c10def9b0141", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/_PerlAny.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "5e08e2a7edb6202b693532dc492eb61d45947d69" + }, + { + "alg": "SHA-256", + "content": "155109a7ffdf78f39b5067d00158902c086d5a5e11efb60b0a005873fd23d7af" + } + ] + }, + { + "bom-ref": "add4d1833a67f29b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/_PerlCh2.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "6e22bbe7a114c3bfa7a1d885d2effe4ad9c7eea7" + }, + { + "alg": "SHA-256", + "content": "80aee9e6b17727370e5a9bc281fe90390508a6cf52a20c1e2408480e2f33dd8d" + } + ] + }, + { + "bom-ref": "70b3e1907488bc22", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/_PerlCha.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a3ab93164c0ba4afd5f552760ff1ca2bf84242cb" + }, + { + "alg": "SHA-256", + "content": "d4d5316e5a5d5798986d40a919bbbff3633e4897f67bbd2b3de45b2c1da2664a" + } + ] + }, + { + "bom-ref": "5d3d398a4698259f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/_PerlFol.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "cd2f42a6b503523c5c6bc03f18ce2139061af090" + }, + { + "alg": "SHA-256", + "content": "fd140864ce1408ea7fbf1ee8fa6c5edc6a0bcafde1d1eb4860ce57c5222ffd05" + } + ] + }, + { + "bom-ref": "7615c50041b72c86", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/_PerlIDC.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "d13f7039182b69c65926c6c8b9d4d85447f22df7" + }, + { + "alg": "SHA-256", + "content": "e5343745a8d654c5c1c3edc0aada73b48c47bb6d2fdd1243ec6bb84749ae0efb" + } + ] + }, + { + "bom-ref": "fdaf919ad5cac53e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/_PerlIDS.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "1d63e046bab337d6e4ff5f7b3fc7f9df94c60ecc" + }, + { + "alg": "SHA-256", + "content": "4fc5bdd3a37733855f15d1e3a58c7bf670084ddf114e149521f0d8bf22866e55" + } + ] + }, + { + "bom-ref": "54062e4310ab24ff", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/_PerlNch.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "5d530b1820149f2c3fcdca5e6bc971b3ca557c8e" + }, + { + "alg": "SHA-256", + "content": "cee71593e4d82dbd40f5a371aab6b3b4fe9ec0e1d37993fd013534511231633c" + } + ] + }, + { + "bom-ref": "2b04711361dd030e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/_PerlPat.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "e5bdb2bf7df4898aecc4c11878a15b9392765b1b" + }, + { + "alg": "SHA-256", + "content": "ab70372f5a2d3de00fe2a33bebb5d535c075b08af0a38e908320fbe00ed74d68" + } + ] + }, + { + "bom-ref": "e3fe2655b20fcd85", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/_PerlPr2.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "d48766531929f5c9a3236b8667af45cca1d3acf4" + }, + { + "alg": "SHA-256", + "content": "aa6f45d2085a49a9dd715741d0ac112c403842876e760c6d1a34b84cc05105c9" + } + ] + }, + { + "bom-ref": "df90e66c4525d9a5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/_PerlPro.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "e899e63c7c8f30e200584e1da362476d17fd1a6d" + }, + { + "alg": "SHA-256", + "content": "104b020ba83d6f667c648b944d48cf1c8d4104abb0c03deffc87701d5316a045" + } + ] + }, + { + "bom-ref": "6ce0bf907d2d60cc", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/_PerlQuo.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "23e02a933f90bf35da15461566f15b9f93cffad7" + }, + { + "alg": "SHA-256", + "content": "92bbc62dfe5f0112fbefc59caed88cb734981e6b16104231f4299582232e6df2" + } + ] + }, + { + "bom-ref": "1108159d0bcdc533", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/QMark/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "25b9c59d9f5a00b96286ebba34ccb80c5785bc35" + }, + { + "alg": "SHA-256", + "content": "98d5baa7c13a07618d1738e2e95fae097556d24d5bba3e799e7b6b7c003edc37" + } + ] + }, + { + "bom-ref": "d9992241663d6d5d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SB/AT.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "afb19807c1a1db611e233ff00bb5976b5f75b7b6" + }, + { + "alg": "SHA-256", + "content": "fbed34bc1aaf18f45bb559611916a62f6989eac139b38ed1679a42ce60e75c8c" + } + ] + }, + { + "bom-ref": "a8f49c55be3be017", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SB/CL.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a7e0dea6f83d283dbafc7c3fa45b9ece2953490a" + }, + { + "alg": "SHA-256", + "content": "e1dd7a250e759894f8236d38f9abedbbca48bec240b6e7da941f747c429a6bf6" + } + ] + }, + { + "bom-ref": "ff3ca718c7fa929a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SB/EX.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "7c8349b09c994cde810ca2a00215038548b1caa8" + }, + { + "alg": "SHA-256", + "content": "26f7224a94f2b44187bcaebaf81e01800f3f887d74720014a31b389b81071808" + } + ] + }, + { + "bom-ref": "a902b401c6898d2b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SB/FO.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "0f888aa38b13db5476af4bb6907b4bfaab79b859" + }, + { + "alg": "SHA-256", + "content": "2b6b9b1225ad8728082fe95216e649f57470e0784300adb25ea62fc6ca0c5fde" + } + ] + }, + { + "bom-ref": "a69b272a51b762bf", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SB/LE.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "e14c4e4cde0a735f09c6515f9c3c1ae251c8d5a6" + }, + { + "alg": "SHA-256", + "content": "b2e98d17ed1daad47e1ef3389fcffa06b8e7d4a0de3aed516d8688120a7f802b" + } + ] + }, + { + "bom-ref": "007ff9eec84127e7", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SB/LO.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c911130d829c40612f09ad36163e25e024fb04b8" + }, + { + "alg": "SHA-256", + "content": "bb003014b8f9cb539d69386036096730e4f0f9d7d16a720059470ceb05b6e8e7" + } + ] + }, + { + "bom-ref": "c92dc7b6e5c36f17", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SB/NU.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "7559c7adab9c4ccef801f7c66530c7dd8e7d9b90" + }, + { + "alg": "SHA-256", + "content": "aa70f9f8220779adf1e4e90c6ae42661bf451b0ee453ed989b366c7e5f230941" + } + ] + }, + { + "bom-ref": "faaea49134ca03b5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SB/SC.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "3592201b4564ccf6a7b1a8af5bb687c61f576cd5" + }, + { + "alg": "SHA-256", + "content": "471533f06e10e4b3dbb6b42276e17d693bd466a62823858685907093325db2cf" + } + ] + }, + { + "bom-ref": "60a3e424769f1fe9", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SB/ST.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "3bc312c345bbf9de4e87a107c2168d21ef0b20b8" + }, + { + "alg": "SHA-256", + "content": "96d24a6903d964f5b10f35e5479eab3d5de3b66d3c950ce8a77222ed1af21287" + } + ] + }, + { + "bom-ref": "95de074c76c9746d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SB/Sp.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c0cfce18101991e9d728677b13a824b43eca3ea4" + }, + { + "alg": "SHA-256", + "content": "63d60fc6498daeb4ff8e3083ece0a52d1dbcc6f4de994c95f31ecb251fdc5f09" + } + ] + }, + { + "bom-ref": "24a3d99bf00a8551", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SB/UP.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "89fdd012de3171a45d7869861394fa45eb890d02" + }, + { + "alg": "SHA-256", + "content": "94795e6989f8c313f23b117dbd36ef879b835dcbaf5078f19dc9133a2c29f555" + } + ] + }, + { + "bom-ref": "ebb6749c5d06077d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SB/XX.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "b68e54437f7327a81b026a0e0bfd191401e53626" + }, + { + "alg": "SHA-256", + "content": "fa37d4ad0ed11f5c679bf93a7a0f656723610d8a65b5d01fbf7d922891977ee9" + } + ] + }, + { + "bom-ref": "972f02a846b8a62c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SD/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "01f8b5128c8ab694c672552b139d99a642bf4372" + }, + { + "alg": "SHA-256", + "content": "dcdf1647191ff001275183db73a73c71e0e8bbabbf96a48c0e56649ee9365321" + } + ] + }, + { + "bom-ref": "a2156c7038d28089", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/STerm/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "ba323f9d520c16db435c6d24d356bef86dfb5bf7" + }, + { + "alg": "SHA-256", + "content": "cecffb68d0814a2e6ede4d68ec3f165f15bf6c5fd0c26a102c5291008b3df472" + } + ] + }, + { + "bom-ref": "42eec5fab43486ae", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Arab.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "05af3c8e6c44e860d1ab853ed6347750023fd7b5" + }, + { + "alg": "SHA-256", + "content": "7c458689eaacdf8b26f07aa82c48736a065d49fc2efd66352344921845eb2f68" + } + ] + }, + { + "bom-ref": "2d7161cf82b99157", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Armn.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "31e03b4671717344c338df3f73a2cbd3c349db4d" + }, + { + "alg": "SHA-256", + "content": "c7b4884e4f065d3d9ab79d65467cbc7fce4cc00e376a87891f063c3f2d891365" + } + ] + }, + { + "bom-ref": "45c14aebb1c5822a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Beng.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a88cc08aa5b785341278a539e17c3628bc5d42b2" + }, + { + "alg": "SHA-256", + "content": "ca25509d5ebdb241de2d32cbfdd67c7f6d1326f7978cb06a0b778c396f6c3ce7" + } + ] + }, + { + "bom-ref": "e3f891b75ed8d5cb", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Cprt.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "d00a6fa4c0ee7f5df5f219935b6b849553802dc2" + }, + { + "alg": "SHA-256", + "content": "154ba399d33fb7a85782e47e4b53ceaf1c0899012b04e82b68cc5d7641c6241f" + } + ] + }, + { + "bom-ref": "7bb6e3849d157ca9", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Cyrl.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "e88bc8f9d53b5a77e0e06d59053ca5ddd0d9c165" + }, + { + "alg": "SHA-256", + "content": "d81874cbaf0d31e3c009947123c2bf9a3836a02f89095604c5f5b2989f1e5008" + } + ] + }, + { + "bom-ref": "76c1b60315594259", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Deva.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "4b43eb5401bf3ad5e3f2166fc62bc073c40c32b8" + }, + { + "alg": "SHA-256", + "content": "068e1120d8b01c3af6ea98bce7bf31dba3dc9a38da219a72bd4de6fa765c5568" + } + ] + }, + { + "bom-ref": "d7c2c7e8b9a11d33", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Dupl.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "88ac729f43e64042b2ede2936ef0e10217d279db" + }, + { + "alg": "SHA-256", + "content": "d64973631ce7d3ed0926369e5e70982095d32def8177e6f506facc28c50fabd4" + } + ] + }, + { + "bom-ref": "80a8a9f1937ccb65", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Geor.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "993b4139eadb3241cc00aef240aec38fe4679451" + }, + { + "alg": "SHA-256", + "content": "0572658ed8d4041134d7d5733a025a1f2215fd1d39006afd4075748580504639" + } + ] + }, + { + "bom-ref": "0595460e0d884e8e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Glag.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "1322928c9f1cd5d0677866c2f5bd75a8937f47d4" + }, + { + "alg": "SHA-256", + "content": "0400bf4ac6571ee1e213af09538e53ee2eb1639432c132e2755185dce0e0ae6a" + } + ] + }, + { + "bom-ref": "bb4449e8a250e472", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Gran.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "bf79340d1b12be1ccecec1900bb9537ecb0ca3b7" + }, + { + "alg": "SHA-256", + "content": "a8ba1b7272b164622976ac6f5bfdf75aff5c195ecef7ccbd7bf3560d116c1e00" + } + ] + }, + { + "bom-ref": "18bdac61034c5015", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Grek.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a92c93383407e204cc5d46489260328fc3dda1d0" + }, + { + "alg": "SHA-256", + "content": "075d920dc1ebaa723f17320344221855595a743bc6b778d7da8cc7b5a9a70d00" + } + ] + }, + { + "bom-ref": "a25062bea52bc66b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Gujr.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "917bd8a8cffa212d4beb20f4ab9dc79871373baa" + }, + { + "alg": "SHA-256", + "content": "115a467eb875ffee7e4606886eae0d19c90add191113250240c0b5e76635821c" + } + ] + }, + { + "bom-ref": "8a39ce0749c14e57", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Guru.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "b26a38ecde8a4cc35a8a65277ab0877da2fc0328" + }, + { + "alg": "SHA-256", + "content": "e2d8941ef9c2f892e47724287248c5c48afdba877f54ac8b6b47eb1076ce89f6" + } + ] + }, + { + "bom-ref": "7924519ee64fff93", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Han.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c71ee6b41ce7374aae501ef230c6dd383a2337a9" + }, + { + "alg": "SHA-256", + "content": "a6e55607244388d04c101952cb3cffcb430cf09de337ce43f262622c17ed6d47" + } + ] + }, + { + "bom-ref": "a4731ffec3c976fa", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Hang.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "de80862a8d11ec187e8e61a7abe9f2a140ad5c01" + }, + { + "alg": "SHA-256", + "content": "fa57d51d61ec3fc51782880c054ba87b8bb9b3df3eda48afc028e7441772c314" + } + ] + }, + { + "bom-ref": "fa19507b4bf83600", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Hira.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "0e8e35b11ec1e45a9174b04d8b79d833c448a05e" + }, + { + "alg": "SHA-256", + "content": "971b8087e79e4bda003828d319700feb6fed11dd7233cabc40a5a849ca74673d" + } + ] + }, + { + "bom-ref": "a6cb14ea75960c78", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Kana.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "b740e734c9ca241b8018ae2590d20a806aedc373" + }, + { + "alg": "SHA-256", + "content": "383523c8d308a96e73799ad9c4a385df7f71fa231143e6a3281f278b5e573605" + } + ] + }, + { + "bom-ref": "010dcf1255082b11", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Knda.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "7812b60e1b58446b10f8cb5735de1044192fa702" + }, + { + "alg": "SHA-256", + "content": "672853ee36bfd451a130ea6bd5c28adc15c13dd0d9d8dafe4ad482de2432121d" + } + ] + }, + { + "bom-ref": "d717827505608f56", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Latn.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "5a0520f0859e2eebf0eee8bd8aacde4097978871" + }, + { + "alg": "SHA-256", + "content": "69725dc9d71d9456061256525ec769f1af130d003b66a4d8d86ec4d1790b982d" + } + ] + }, + { + "bom-ref": "a0ac17d8c110f44b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Limb.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "d26173b35dec4ebcf67237bdee9a9f5a34da59cd" + }, + { + "alg": "SHA-256", + "content": "98e00b043903f4f890ccadf647bd647970a4d2f1bc4fd71f8ff792c8858d50a9" + } + ] + }, + { + "bom-ref": "6d196535f638b2f7", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Linb.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "baa6ed6585e495447507271e3e37dec48de814cd" + }, + { + "alg": "SHA-256", + "content": "587402062b2c9fea174f58e686745a1c89b59fe04e3b0370f55293918ade4825" + } + ] + }, + { + "bom-ref": "6345682ebab06c5f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Mlym.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "77374a2f8153312b9a623e678aa0dcac49313697" + }, + { + "alg": "SHA-256", + "content": "eaf98ec0143805ac612da1103ec004d434b553225622d2f29e401da066b6068c" + } + ] + }, + { + "bom-ref": "48a9eebfe9731a7c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Mong.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "36864336800738c6808ea9d86bfa5312255ad0d7" + }, + { + "alg": "SHA-256", + "content": "2aa0c57c06600a105d29cf5e0b00917b992cd70ccc88e73ccfa76aedbadb6dda" + } + ] + }, + { + "bom-ref": "0299a67b87b8da34", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Mult.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "3444e0882027ffad601b896795e7b87b33d7dff1" + }, + { + "alg": "SHA-256", + "content": "aa10c2969f9de61afd6c261da12af05ee14fe173edb855c6ad1877ba88f32e15" + } + ] + }, + { + "bom-ref": "17117f49c83fb722", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Orya.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "31c35943b57240b9f46b44880bb9e06c2d87d0fb" + }, + { + "alg": "SHA-256", + "content": "cd7851f06bf4c921401746a80da63bfeba9992c2e19a9cd9e0f41d9033fb49e7" + } + ] + }, + { + "bom-ref": "69987c207c6bc048", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Sinh.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "f91b03335bfa0d7d790dcad11af649b27429b448" + }, + { + "alg": "SHA-256", + "content": "46d7e510621a5efff7f6e3049a4034ba90f7980864e45bb0c2d780dcb9777080" + } + ] + }, + { + "bom-ref": "6f882eda7b93274e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Syrc.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "8c79479ae9d7c53dcb1639216d7c9fb364c9fffd" + }, + { + "alg": "SHA-256", + "content": "293176b33747188ac47657843848c2a92f3b165ca52bf11d84226a547b4aaa30" + } + ] + }, + { + "bom-ref": "25b3b6a8b57142bf", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Taml.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "1acc4a3ca6a5b7da1b1393ec25ab1e3cad4d7b55" + }, + { + "alg": "SHA-256", + "content": "c837a3fcd38742a8623fa071eeccc3182d8f19c5c8c292cd3067a8d66689ffb9" + } + ] + }, + { + "bom-ref": "b58c3d9b6fd87f52", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Telu.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "aeac548c3056d17a69ee93bb79114e996116907b" + }, + { + "alg": "SHA-256", + "content": "dcc310c988b8577e9c9a2883d35eaeec7711dde5efda4faff5c7f3cf6c4b8641" + } + ] + }, + { + "bom-ref": "3141a6a9dc24de4d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Zinh.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "6763c6956c5be62f6e438af2d80535faea2895d6" + }, + { + "alg": "SHA-256", + "content": "2d902e28682147e361d61dca3a00367583e7b7322627a3221fd573cea83ab22a" + } + ] + }, + { + "bom-ref": "e54fef1a3b20c0c1", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Zyyy.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "081e67478ddb7986e4cd1be26adc43ed0e219dcf" + }, + { + "alg": "SHA-256", + "content": "272769ccbea9833a5415b23063ba304e38ea092b71c210e1bf8570c077babb72" + } + ] + }, + { + "bom-ref": "ab8ecf786a51bd65", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Adlm.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "b98eb17c576206c90d8e75bc1a1921431375a254" + }, + { + "alg": "SHA-256", + "content": "d0f38519b5fa10a3d52d979749edb89cd8e24598b1c467918c8ab31fc3df2f98" + } + ] + }, + { + "bom-ref": "55fd6e49d6df291e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Arab.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "bfea54e2fa026f2d3317e3c1d958c136f7312f60" + }, + { + "alg": "SHA-256", + "content": "b842174d547f311bd414a3083f5fc32c2387171c12c10f4a3bf2bfbbf40b1714" + } + ] + }, + { + "bom-ref": "5e3f89007674c118", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Armn.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "e5149ee135d2df4d02a102af8bbe7929942ff41f" + }, + { + "alg": "SHA-256", + "content": "b6b258f55f5e1ab4d817e9cb703c1fd5ad52a0ed0264df69f1b207dc4566cbc0" + } + ] + }, + { + "bom-ref": "b7dfe2a6ec54fd43", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Beng.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "776be165e3188443821d518e3f531a53548db499" + }, + { + "alg": "SHA-256", + "content": "537f9bd9799379dde4332e7901ada4f47e47575767880fe6d62df33a2951044a" + } + ] + }, + { + "bom-ref": "96b449a63543b2a3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Bhks.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "400e0924ccb09b311499ad29456fa1209c876bc0" + }, + { + "alg": "SHA-256", + "content": "19779f34f95a4f2f06796fd2c96673e259381328a46843eec7737d6f199915bc" + } + ] + }, + { + "bom-ref": "2a4b5ceda1345627", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Bopo.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c70bd8a91c4b3e12c44afb425b841dbe4f1f03af" + }, + { + "alg": "SHA-256", + "content": "4bee517f813ffea4836fd1f9aa16493e3ddb88cd2b54d3e96080af736818670b" + } + ] + }, + { + "bom-ref": "3c20a783819c632c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Cakm.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "406c4404a5c4739d7894e8a64c86bf5f2bb96599" + }, + { + "alg": "SHA-256", + "content": "249047cdea75de4546381562efe1c5fbc02188b904a7796e5a012be8deb13214" + } + ] + }, + { + "bom-ref": "4f7aca256d36f464", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Cham.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "7b17e67879b0cabdfd9148d4fc457c2436ccfe29" + }, + { + "alg": "SHA-256", + "content": "1f40f78536b1df748d57b77ad0d354800d7fe4af336c4d46ba48f61565bf3222" + } + ] + }, + { + "bom-ref": "797edf46c6baafd3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Copt.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "637432ced0a1c1d4f841b0b8e3c8e83af789c4a7" + }, + { + "alg": "SHA-256", + "content": "828a852bbdc3d566b5f4ad39d72fab829ef15db29c8d013bcf79abc61a10013d" + } + ] + }, + { + "bom-ref": "4fadb25c58cc7d29", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Cprt.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "100a4a195e3cdfdfe2146981456e4da9ef46833b" + }, + { + "alg": "SHA-256", + "content": "b78e93a90e14c57cce731ac39bd31d29eaaf86a05245e0faca5351010de3e466" + } + ] + }, + { + "bom-ref": "587966717c4bcb42", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Cyrl.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "61a1272463c9996d1658842a15c8ca35d7e836a3" + }, + { + "alg": "SHA-256", + "content": "8d3fcf8d98358ea933846dd40ca30f5e58fd102290043a0e3cddfdf1c8bbfd5d" + } + ] + }, + { + "bom-ref": "e929ce87df205243", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Deva.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "be09ff7755703f165ff3f80c10960655715767e3" + }, + { + "alg": "SHA-256", + "content": "34df473039128e85574be2617249161196e5e0dd0521a965a2a2e978e0076ad0" + } + ] + }, + { + "bom-ref": "db2515e997e28871", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Dupl.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c0c910d5c32b1c3de3b8ebf2905b35a00086ff77" + }, + { + "alg": "SHA-256", + "content": "e816bae05474d2a0b047f23ab0ab6e0b090787c9821b4532fa49fc3db91fd98d" + } + ] + }, + { + "bom-ref": "a900e226e7c4f408", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Ethi.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "1e53baf691ed37c5aaf3467541fe9c754a14e656" + }, + { + "alg": "SHA-256", + "content": "9c8a6e54af70b32e9bd2ccee7714f8ccbe601fd95a8b916ed42f754674872eac" + } + ] + }, + { + "bom-ref": "8e5d53ead09bf341", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Geor.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "50841d7de867416ea4c7ab4aa45b10f310f30f4c" + }, + { + "alg": "SHA-256", + "content": "8a01fa43e92225858b979693113b7935f5d30d41b8ceac3ba68def3324363a31" + } + ] + }, + { + "bom-ref": "1f10250d691ea0e9", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Glag.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "de0370973cb99e64fa01304febcb5bd234abbad5" + }, + { + "alg": "SHA-256", + "content": "ed7e64a7f6f74b993268fe5c03454066ef306c9432b571c2afc966d9ecd697bc" + } + ] + }, + { + "bom-ref": "99ccb142265b0b06", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Gonm.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "f4b9547d6648bc818a5edc3297275a87e883b361" + }, + { + "alg": "SHA-256", + "content": "24f515d7771d270d0b4224065f30cd7e396f9786acaf04b114016821d74f56aa" + } + ] + }, + { + "bom-ref": "5bbf84c6d37f2515", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Gran.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "447e2035f7723125247fc5b4f5b6496d7311d5e4" + }, + { + "alg": "SHA-256", + "content": "e1f1a0005108a5e75ba068640bf04c43040a0ce349871b3624170fd0e283d2b8" + } + ] + }, + { + "bom-ref": "281b61d6acb1f934", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Grek.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "1b3081735b9dc0a4de2f4b87151869f7dabf402e" + }, + { + "alg": "SHA-256", + "content": "e38b1e797b6b4a51c71ea894e907d1c42128aac229f768f06f6a7301028cffa4" + } + ] + }, + { + "bom-ref": "02bba784446be85c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Gujr.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "dc71e686fe097effe4cab71baf3624a17f19c101" + }, + { + "alg": "SHA-256", + "content": "9c25984371ec603c9b4af0868f67b32a092f9b060517dc5377ea5c4facb9bf5f" + } + ] + }, + { + "bom-ref": "9960ddaf30ead2df", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Guru.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "cd657894b534cb02cc4bb84832e41f7836275569" + }, + { + "alg": "SHA-256", + "content": "5e4d2d3ce1d53b54ac618e119bc2b7898843551c226f17222f8b48f6f8452b58" + } + ] + }, + { + "bom-ref": "78f1200cb85b6754", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Han.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a3a807c403c1d56fabe01a8f061f025c601128ea" + }, + { + "alg": "SHA-256", + "content": "860d0f3df01839ba2c5d9ce15cc6009ee534513ab787acc8be57deaeed1ebc01" + } + ] + }, + { + "bom-ref": "fe4671c348679964", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Hang.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "962549741ad969e1d206d3ae667b2cb08c65e4bb" + }, + { + "alg": "SHA-256", + "content": "6ec84d61b886f409b5f445d628244290b5ef76dd82f2e420c62a01b0f041bfee" + } + ] + }, + { + "bom-ref": "a6bdc543d233bb1b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Hebr.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "84757b09b732e63890e114a1e92dbbe9536997ae" + }, + { + "alg": "SHA-256", + "content": "269f9b9798cef2d7726b9d468dfa9e0b5881cd08ba9f474f0aaab37ea31d310b" + } + ] + }, + { + "bom-ref": "e4e8651b2b5724ee", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Hira.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "37d486c5f2056275454fa85fd26e73901bf2e200" + }, + { + "alg": "SHA-256", + "content": "7102721b57e68c616f9b3be836a61d8bfe2d844e13efd578faad53024f15f29f" + } + ] + }, + { + "bom-ref": "2189cc572b94e340", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Hmng.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "60f3eb00e9cdb124413dcf58ee1e9a51bb3f16ad" + }, + { + "alg": "SHA-256", + "content": "b21bfbb06d111574226585321b814fe5848ecae3b82a73e312c427d50bcaac55" + } + ] + }, + { + "bom-ref": "02007f6a349012c0", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Kana.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "cec18101979c0c1e386ce9767fae592ed0395289" + }, + { + "alg": "SHA-256", + "content": "746b746debb50ec9ad9b4d43440c460c1de4752577c6dd705cb4f1ae7f5690dd" + } + ] + }, + { + "bom-ref": "3424d0775da3ed25", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Khar.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "ffa5613b20c0c9bd336e40033ef64f026a4677f3" + }, + { + "alg": "SHA-256", + "content": "dc841b83289d9df1f3264f35f31f7ff01a8b11124f6470abb58ae81770420f1d" + } + ] + }, + { + "bom-ref": "f515c69fb5b3c739", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Khmr.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "446f65053589a9041bd93da8b38cc6c01f3506d5" + }, + { + "alg": "SHA-256", + "content": "117ebe2777b90a2026e651db8ac9e9e69eeed8dc6cfd6eae04972d7107721215" + } + ] + }, + { + "bom-ref": "0de8882ea158bf65", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Knda.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "d97db88035b3319fad7896b0debb7dac268c5f75" + }, + { + "alg": "SHA-256", + "content": "dc6404b88a99648491882ec4ba7c14656c5ab660f8bd5051d47d5073c6daeb24" + } + ] + }, + { + "bom-ref": "73045ad2464b187e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Lana.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c88f502fc7d5e92eeb81c146da5fc3dc1844e232" + }, + { + "alg": "SHA-256", + "content": "c224b507803412fc3ce2db7c8c622ef0a5f6f229c24ad20a699500ca2339c24a" + } + ] + }, + { + "bom-ref": "b98c8a31999298f2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Lao.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "0bfbfbc8361e639905d81eb0b80b1f4509aa0e3b" + }, + { + "alg": "SHA-256", + "content": "4e3592576bd367ba5b6708daee0f4374d085945d9b587a4ba5268548868d6012" + } + ] + }, + { + "bom-ref": "e3818f717afce736", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Latn.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "d1fe6ac9ed9fabc4a80f1794c6b504f05f76c3d2" + }, + { + "alg": "SHA-256", + "content": "d6fdd416851b5a7426daab5c172ab47aaff3e8a13e7025710103381be2c04faf" + } + ] + }, + { + "bom-ref": "10c51c090f2e2f1b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Limb.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "078327f0d1be431f6b594c9cdc47e691051de87f" + }, + { + "alg": "SHA-256", + "content": "e6429d77abb7ca195f4a1f0a9a2c6a48739e9a607cdfc58a5961111d1948e319" + } + ] + }, + { + "bom-ref": "5e69d2ddff9c759b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Lina.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "d35227396a702518057f40efe496bf6fd2095875" + }, + { + "alg": "SHA-256", + "content": "820dccb48a8f37c106b7b470f3366c345972ecfe837f50e3dc63d37397b2aed0" + } + ] + }, + { + "bom-ref": "6ea575ee0e99ba7d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Linb.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "5ffda753e43ec91cd66f4ab8fc214bb054f984fc" + }, + { + "alg": "SHA-256", + "content": "c1f0c945de13c9475b63e4b476159366990da289eb73cb13cf10f8378c9bf214" + } + ] + }, + { + "bom-ref": "2128277ccf718d6f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Mlym.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "fb315a39a075868e9e4547255a5e03bdb760f3ee" + }, + { + "alg": "SHA-256", + "content": "dc007c64d6a06f01e155a5c76849a04d8d203f9d96b30b867d592df71f5f6e05" + } + ] + }, + { + "bom-ref": "4d320c95fcb790cc", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Mong.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "92b30dc3b14dc3f7d9088633a4b5007831c0c713" + }, + { + "alg": "SHA-256", + "content": "658657045928a90bddef580a0b0133525e17d1f9e6d427589e0887f35030f2ce" + } + ] + }, + { + "bom-ref": "d63300a330a11ab4", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Mult.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c9f93f8e37bb0117f88091b9a16c416f17d1d198" + }, + { + "alg": "SHA-256", + "content": "6d89864335f80f813a2206c350bb020122cb3918f73b2cfac9c45189c8c4e16d" + } + ] + }, + { + "bom-ref": "c5d440342ad5edf8", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Mymr.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "714e3af1f32d481d23a5d789310337d2d4492a5b" + }, + { + "alg": "SHA-256", + "content": "7c09dcb5c71985a6755db1d383a53ccba6a90515880f38cdacee3937815486ae" + } + ] + }, + { + "bom-ref": "709c95bd12759806", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Orya.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "3b19fa258935f69c84cdc4f58d7c0c8c6604ce95" + }, + { + "alg": "SHA-256", + "content": "8a318f9962732baa5dae0d99796860fb221afd76de5d64cfb035e22b2f94190c" + } + ] + }, + { + "bom-ref": "dd3e0d07d7106996", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Phlp.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c3b38bd26bff8943508da2d4dcf969e1213fffa4" + }, + { + "alg": "SHA-256", + "content": "b501fbbd6e1d1980cc3fbdea87569062763c7814ceb5102c956b6121f9b6c478" + } + ] + }, + { + "bom-ref": "ce5a5ebec6baadf6", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Shrd.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "415f8035c82088f04cf3d6916e1c355c37c787e9" + }, + { + "alg": "SHA-256", + "content": "7c2f07a67335dfdb217ae689692554d6ce86ea0c270d57a233856f03ae0b2ba7" + } + ] + }, + { + "bom-ref": "4633674b9e2c828f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Sind.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "2fc6f1e4fa087c0a0b6604467015a19bf18fa9ae" + }, + { + "alg": "SHA-256", + "content": "31a994689c0be70cae29b487e0e5fa6ba9824a3e1f5c17d70dc309bf5fe07f06" + } + ] + }, + { + "bom-ref": "151acde9b83b3dd3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Sinh.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "d8e9b83e33c406998cebc83510905178636327a1" + }, + { + "alg": "SHA-256", + "content": "8f601397c339ddaa9dc9d9dbd6d7d3aadac1b002df2275042aeff65235fec48e" + } + ] + }, + { + "bom-ref": "dbcf1efc53fbca8b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Syrc.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "b6d4aa7a8f2505fd2e63fe720efe5d453e5c561e" + }, + { + "alg": "SHA-256", + "content": "ae2528f2184288aa0763606e4a609a28699809dcf3c4d25128066fe0b7d9c5db" + } + ] + }, + { + "bom-ref": "d34c2bc17c96b196", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Tagb.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "7a014fa5b871aedf1b56449862c359c31af0dbdd" + }, + { + "alg": "SHA-256", + "content": "86a4026845539bc274172c57168cb5074913b2c065c570b5c36578eb3ff01cc3" + } + ] + }, + { + "bom-ref": "bfa9f44d4a614109", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Takr.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "992cc83a23dd7dc10320bb35b149699a9f8279f9" + }, + { + "alg": "SHA-256", + "content": "a568736c971ff7f413e31947283c5fb504baf8a58390ee03060b2cea28c64c93" + } + ] + }, + { + "bom-ref": "5a0646714aa52827", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Talu.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "313135b43d8a37d2fb197b40c0a9b308ebc7ed33" + }, + { + "alg": "SHA-256", + "content": "c065dc61853df82316b796bf26a8e632803ac31ffb9bd5b3878a7d6afc48ffbe" + } + ] + }, + { + "bom-ref": "c52ce839b8ebf061", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Taml.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a029d879b105006137cc7ffb23a3d8afcc810abe" + }, + { + "alg": "SHA-256", + "content": "3650671d47aff1c3fc807b483c7c75d259e5080c8db28a21485ee8932749a46c" + } + ] + }, + { + "bom-ref": "bf22bdf87bd6b6a8", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Telu.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "d119ddd7a350e868ea4fbfdc35886e4cea210ded" + }, + { + "alg": "SHA-256", + "content": "472282ab964381b1e3d42fd8a21a14ac9dc893eec45271e021d68fab6629a2e5" + } + ] + }, + { + "bom-ref": "955b53ec10a419d1", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Thaa.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "70157cc820288c32448192d891e1be8ce398948f" + }, + { + "alg": "SHA-256", + "content": "d53974bfbadabcf925b4e454b9b785bdebff96b0d555280ca4e2cb04faa8706a" + } + ] + }, + { + "bom-ref": "8ebf91df215adc19", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Tibt.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "418d2dc794f074324072a062a4aad9d2414b8764" + }, + { + "alg": "SHA-256", + "content": "550372b4194556e776b3d7c582f798166751877f4c4f9725a2d9eb2df860907a" + } + ] + }, + { + "bom-ref": "e22607d31d72df94", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Tirh.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "071effc097245a4b5633765745daefd60dc08b0e" + }, + { + "alg": "SHA-256", + "content": "1e735616d21651f9ad720ce107598a7b079565b65af42c72338ec5617dbd2773" + } + ] + }, + { + "bom-ref": "7276e5951e9a984f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Xsux.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "487a4f8dc0dd8458f0145a431e679c0636589a13" + }, + { + "alg": "SHA-256", + "content": "27cc4079760b4a3fb3a9fe3070f551e5e672f2a9bf5893ab4a079080d061f2bf" + } + ] + }, + { + "bom-ref": "06dd1f8065d95e0e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Yi.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "8cb8e258569aefd06aa803a6e8e30c66d6519c2c" + }, + { + "alg": "SHA-256", + "content": "3cf2ca166c9cf3649419e4fbf49e37a4690cdd98a9683affd2c13541837e2fe5" + } + ] + }, + { + "bom-ref": "5db86d3f0262e9f5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Zinh.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "dabc4c453eff89f1ac008883f88b284de9221010" + }, + { + "alg": "SHA-256", + "content": "1eba8b8bd3296067a5a4d5ec59a7202b7bd1900a90fa7ad92f3ed20be5f6d51e" + } + ] + }, + { + "bom-ref": "1a5984901d4ef639", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Zyyy.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "dd4c355869ccd42ebfe26b633c76de9b1625fc08" + }, + { + "alg": "SHA-256", + "content": "6056d6013fc84cda77273e5511b308c78c4261316b2a183ff3f42d7730180e6a" + } + ] + }, + { + "bom-ref": "da3dad5ddc585ce4", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Zzzz.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c61414fe0514ac3ccb7890b5610ab8853354cfd6" + }, + { + "alg": "SHA-256", + "content": "c571970d8b558a70f6c5da7bcf610b48e4b775d910e398f8dd6be807e855d34f" + } + ] + }, + { + "bom-ref": "4ab6f94b26764069", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Term/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "4d8b2f9efe53455fe6684699f9acfbd3938efa1f" + }, + { + "alg": "SHA-256", + "content": "ffe5e6cdea14b3268591bdec0d941b22016982982e262d67707b10f36fe9c232" + } + ] + }, + { + "bom-ref": "e87d668ad5590b2a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/UIdeo/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "6b3678cd861f6ad69f0fa078d99abf663069b948" + }, + { + "alg": "SHA-256", + "content": "81ec72c987fa9a848f94e9d5e42a028d2ea11a6ceb958480508c0107cc04667a" + } + ] + }, + { + "bom-ref": "17ea6a84677eb2d9", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Upper/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "88ad544510a01e44938bad518706670945d0f59a" + }, + { + "alg": "SHA-256", + "content": "ee21717ce1c6dbecf04743139f66b7d0a54876dd26e1fe46b3e22e80e1f60c26" + } + ] + }, + { + "bom-ref": "9941221059e1e6fd", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Vo/R.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "1cc483e077ba8b6ad5607ab5c51508a17ec03904" + }, + { + "alg": "SHA-256", + "content": "bd8812289efcc4faaa56e2411b196d15aa74e97df166b3c3e1e84d09f16444c3" + } + ] + }, + { + "bom-ref": "9e9a6e1e8ae0c651", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Vo/Tr.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "d98cf17ab0ff8d6af6fbc2c3737ebf4ac9cd84c5" + }, + { + "alg": "SHA-256", + "content": "9a023030433092de52fc0a2a07db86baba747cf9cdbdb30870ed00af1a5059d5" + } + ] + }, + { + "bom-ref": "a0fac9f301b59ca1", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Vo/Tu.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "9ea551fbb35fc40efb3334142574553a4f949c93" + }, + { + "alg": "SHA-256", + "content": "a38a08ccef6ae0ccecf1851b2010c0d241fff08f836683295a61037f38bc2a26" + } + ] + }, + { + "bom-ref": "93063de0aa3193a5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Vo/U.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "8da6d30cf4041fcde9d6abe04d25a5dc04f06c48" + }, + { + "alg": "SHA-256", + "content": "6c29dfa812250f4a1697d99007b557317feab1199b3c13dd8aad031839be3eff" + } + ] + }, + { + "bom-ref": "6d8f6349c6c60d73", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/WB/EX.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "cc50719b64db32df1f965adc7e70a884cb0a8326" + }, + { + "alg": "SHA-256", + "content": "76c30a2bb4f548c97b6ffd9de104e50578f72d7dcd4f6644e08178c2755a8b59" + } + ] + }, + { + "bom-ref": "a2d173dc16a55c9c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/WB/Extend.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "668e04a9007da4dc74ac376ea9709618573f8062" + }, + { + "alg": "SHA-256", + "content": "1f8cdc0385504c8decf9eaf1f6875e45adb2dc3c4b40675155c73faad0dc5b9b" + } + ] + }, + { + "bom-ref": "826f710f5fd419b2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/WB/FO.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "2031f6b9d7e3a9e01262e129343c0427aef45514" + }, + { + "alg": "SHA-256", + "content": "63955f6f52a0f863c844303cb6f2df5b4d70743cedad080b0c21dce50e13ea65" + } + ] + }, + { + "bom-ref": "3dafd4a2710292ba", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/WB/HL.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "c6f9d0126706ac027f62de5929a9762200dd28d1" + }, + { + "alg": "SHA-256", + "content": "3849af7ad94e7489a38e417359442d0a42a9e7449c2ee528fe535865d25537d2" + } + ] + }, + { + "bom-ref": "6e23956c2932974d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/WB/KA.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "2c52eb591c16dbf3719525e83ccf21f28a91aa04" + }, + { + "alg": "SHA-256", + "content": "398fbb581f6fc9841c61abb4248d487a0f803d2db0858331b2cac00e6b402cf8" + } + ] + }, + { + "bom-ref": "001c4af95e835a25", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/WB/LE.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "eb17a90ddab51ec80e40d9dffbf73b89f04a36a9" + }, + { + "alg": "SHA-256", + "content": "1b7737906c1ea741dc1967e383f2c5a32e06099a1871a2b638ffb489fce670cc" + } + ] + }, + { + "bom-ref": "2d86f61937305679", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/WB/MB.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "ae26b575e4bd4085c226b860e93554d5d48bde9c" + }, + { + "alg": "SHA-256", + "content": "6a05346d2a93c05790dbd1eda4af3f9d4e5f41afa6c31d6feda5bb1a4e0fe3ca" + } + ] + }, + { + "bom-ref": "ea9ca70da13633a3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/WB/ML.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "0d70eec900de6ed59874686197dda81b3ec7ffd5" + }, + { + "alg": "SHA-256", + "content": "f15ee00643baf3f66c4b0868d31ced360ef8201095806ddd3128fb00e0ad313c" + } + ] + }, + { + "bom-ref": "f226414e8bceebe3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/WB/MN.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "a50cf3ef18dbae3b87cc0514f809a148eb12f535" + }, + { + "alg": "SHA-256", + "content": "f458e7f0495cf11ea6b13e867cdbd830943761aceeebccff3e9861f8ad7d9f81" + } + ] + }, + { + "bom-ref": "558ffc4d59ed6922", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/WB/NU.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "f91cac5502dc480f442e7b93d63446006edf8c11" + }, + { + "alg": "SHA-256", + "content": "3fa78e29e157412db0024fb9bf896d0eca1e8ed46309f6529a56bc1aca6b488c" + } + ] + }, + { + "bom-ref": "f4700ebe4c56a13d", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/WB/XX.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "002e9b5e999a2683808cfde84bc77bb3a4c48824" + }, + { + "alg": "SHA-256", + "content": "c81cf745a2ce6449abf999a577eefa3445c60e3f5ba567b1e85483b4b455d647" + } + ] + }, + { + "bom-ref": "d33b405d6fc8fe57", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/XIDC/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "63a521072f1bf0885fee9d60e0af5873b28538f6" + }, + { + "alg": "SHA-256", + "content": "661fee477084217acd3c162aeb7489e92ad827dac48d5978c2ccb37d46988c34" + } + ] + }, + { + "bom-ref": "a14396e914968e31", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/XIDS/Y.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "63ec23a55ff550771584095dd426a4e3cb9bb2d3" + }, + { + "alg": "SHA-256", + "content": "3f3ff636724fda5ba689d066f701c186b0b394f129fce7a1e0f2e62707b1eab7" + } + ] + }, + { + "bom-ref": "06c67c6a7689d33e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/utf8.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "b43a646db31947e52e0dd497dc0391adbcc32fbf" + }, + { + "alg": "SHA-256", + "content": "3e8c5dbbcc41514f0329f1d91a69acf39c8666cbceb43932dcf546d34b0f33e5" + } + ] + }, + { + "bom-ref": "b7e4b5ee51c851ad", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/utf8_heavy.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "8b9df7a96d80741fd23e2841b41adf143013150c" + }, + { + "alg": "SHA-256", + "content": "dd1cea927bfb0cd3ddc6020ee822aac3745aa7723ccfbd4beb1d70a652224a4b" + } + ] + }, + { + "bom-ref": "7e6b8bb763d9d52b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/vars.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "5065f6654a4598e951d37460b859d7f2336d051a" + }, + { + "alg": "SHA-256", + "content": "2c8f74e255d3f1157bf44e9f6764d93f15540adc8eb10ec67b57f0438cb455fa" + } + ] + }, + { + "bom-ref": "3063b6a571663c67", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/warnings.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "4c476f419f8b3a58fcd1174c50ec277e5e53e59b" + }, + { + "alg": "SHA-256", + "content": "87271a4ecdbf35210db836e7afc48965081c5dfa7f1938cef4c265ee2becd856" + } + ] + }, + { + "bom-ref": "4bcf7ce00f2bc84c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/perl-base/warnings/register.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "d5d2c542dc97b134df36d6966897a61d2de1fde5" + }, + { + "alg": "SHA-256", + "content": "962110d3faf3e55749a260d97edaf8a9d31293b0f33d2e7771663a9ef364aa94" + } + ] + }, + { + "bom-ref": "9f8e9d972f184e24", + "type": "file", + "name": "/usr/sbin/add-shell", + "hashes": [ + { + "alg": "SHA-1", + "content": "47e9e8533982606eb7b5b1c76e17a692d87917e7" + }, + { + "alg": "SHA-256", + "content": "959e8afe5754f4f09e70e95f3aa952d265e9344b0cb635663aeb4bbf70347bf3" + } + ] + }, + { + "bom-ref": "cfafc156ed926524", + "type": "file", + "name": "/usr/sbin/adduser", + "hashes": [ + { + "alg": "SHA-1", + "content": "a816eeefbd97e85c2440879c7bff331ffdad4be1" + }, + { + "alg": "SHA-256", + "content": "f13ad85950859c760c12b090241c723103a9ce9c1034b03db695a4b39fa5623c" + } + ] + }, + { + "bom-ref": "5b2d23ccf14038ea", + "type": "file", + "name": "/usr/sbin/chgpasswd", + "hashes": [ + { + "alg": "SHA-1", + "content": "728cbe062adb3da0afb7412750cee21c7b0c3ea6" + }, + { + "alg": "SHA-256", + "content": "dbda3ab0df73fbd7c6e8a5c3c4032d930f1488675110f05a9c25e3265af3a203" + } + ] + }, + { + "bom-ref": "cae8fa9e14626bf1", + "type": "file", + "name": "/usr/sbin/chmem", + "hashes": [ + { + "alg": "SHA-1", + "content": "ee1a35d71c7ec5a101ef35da24f99e15cb21ceb2" + }, + { + "alg": "SHA-256", + "content": "1087e09e36e4d389938a8b0354dc2be91580b1a22e08b44539711fa8d8b2e777" + } + ] + }, + { + "bom-ref": "5f8610b186bcadf2", + "type": "file", + "name": "/usr/sbin/chpasswd", + "hashes": [ + { + "alg": "SHA-1", + "content": "bceb4496bac4eb5a5820570a9adf71854fe8795c" + }, + { + "alg": "SHA-256", + "content": "214e13ae4f9f3a5b6df5fa3a78ed1dbddf003173e32f0e7bab2133a582dc3572" + } + ] + }, + { + "bom-ref": "ade958e3184e6382", + "type": "file", + "name": "/usr/sbin/chroot", + "hashes": [ + { + "alg": "SHA-1", + "content": "c66fd8ca4593b599e3d3e5f8704a35d14794cf40" + }, + { + "alg": "SHA-256", + "content": "cfdfb4ae550de4f89ca9a2658a84b738da04fb205b16626146b641d3a82eb4b3" + } + ] + }, + { + "bom-ref": "598b48691a5984a1", + "type": "file", + "name": "/usr/sbin/cppw", + "hashes": [ + { + "alg": "SHA-1", + "content": "cd875c7785de62f5a8f5ad1042f130c1df7437ef" + }, + { + "alg": "SHA-256", + "content": "7b809806dc857d1bd0a9a8cea0a117d68014a30035231b1853231a833c563a9b" + } + ] + }, + { + "bom-ref": "439dc9750494e848", + "type": "file", + "name": "/usr/sbin/deluser", + "hashes": [ + { + "alg": "SHA-1", + "content": "42f487960855d0cac935dd1aed90828f1edd357c" + }, + { + "alg": "SHA-256", + "content": "916a9338b199f8e78086e7ea787b992f5672c62cd693c7a2f9b1c6f74c8c0fda" + } + ] + }, + { + "bom-ref": "b4945c4204ee25a0", + "type": "file", + "name": "/usr/sbin/dpkg-preconfigure", + "hashes": [ + { + "alg": "SHA-1", + "content": "fe7f225c5a0dfc40f9af3cb119f44ff94ef1b64b" + }, + { + "alg": "SHA-256", + "content": "be85745cc3f23a9bd5d9eed0aa8fe2c4504abaf1c5e669120432ee35dee1c479" + } + ] + }, + { + "bom-ref": "836657f3cf735ee2", + "type": "file", + "name": "/usr/sbin/dpkg-reconfigure", + "hashes": [ + { + "alg": "SHA-1", + "content": "f46ada5edd0ba3a95d948ea46925bddbcf1458cc" + }, + { + "alg": "SHA-256", + "content": "a6aadf25a48b6662b185a4a5bbbb3fb53d1ab72beb43087c145deced9e209844" + } + ] + }, + { + "bom-ref": "a140c671a2ee39f6", + "type": "file", + "name": "/usr/sbin/e2freefrag", + "hashes": [ + { + "alg": "SHA-1", + "content": "ab45689d0f0bf91ecac7a30ae4fd5bbd01617fb2" + }, + { + "alg": "SHA-256", + "content": "16cb1c6021990d46aaeac4384e28281c88113cef4f3b60f822af4d02beb501cc" + } + ] + }, + { + "bom-ref": "2990087c0af3fe95", + "type": "file", + "name": "/usr/sbin/e4crypt", + "hashes": [ + { + "alg": "SHA-1", + "content": "ac379bfbe765764108789b1f5b86fb00e5c0a284" + }, + { + "alg": "SHA-256", + "content": "000f029110db9e82938af924a74409d5db3a4c840ea2a1ea295001cda299e2b7" + } + ] + }, + { + "bom-ref": "ee8e935b79329c59", + "type": "file", + "name": "/usr/sbin/e4defrag", + "hashes": [ + { + "alg": "SHA-1", + "content": "dfd149323d86506f5ba4a97a24b3aa01e4bfcf57" + }, + { + "alg": "SHA-256", + "content": "6554ca3148d6dabf4b13a5c1df7e83353d54aaa6a7dd8b016e2c8f91d79d2ebc" + } + ] + }, + { + "bom-ref": "6ac14414d5ed3d0c", + "type": "file", + "name": "/usr/sbin/fdformat", + "hashes": [ + { + "alg": "SHA-1", + "content": "b163b50cbb7e9dcbf2de93ef949b1ad5ae3528d8" + }, + { + "alg": "SHA-256", + "content": "628e7cefe43ac273a79dafdeddf986a1a8d17c63fbac6f7a1586f1868609072d" + } + ] + }, + { + "bom-ref": "9211d74c96a8e3a9", + "type": "file", + "name": "/usr/sbin/filefrag", + "hashes": [ + { + "alg": "SHA-1", + "content": "69241cbe6ca303b6f47a4aff8cf3373e31e66ef8" + }, + { + "alg": "SHA-256", + "content": "dca51e84e138f0fee8a8099e34bfe7ca569579ee8ea7c221819308e455d7aea2" + } + ] + }, + { + "bom-ref": "dd26269f921fca14", + "type": "file", + "name": "/usr/sbin/groupadd", + "hashes": [ + { + "alg": "SHA-1", + "content": "659f0b011f41a597ce887508fadfb0572371173b" + }, + { + "alg": "SHA-256", + "content": "d2f48e521f94b2c1b2bece1166e92f9460b738ba859ee36f6edd609e454b60da" + } + ] + }, + { + "bom-ref": "00ebef6aca5a2e91", + "type": "file", + "name": "/usr/sbin/groupdel", + "hashes": [ + { + "alg": "SHA-1", + "content": "05ffab57cd3dcb03423d2cf17d57669b3621ed36" + }, + { + "alg": "SHA-256", + "content": "f02366b0c2b9e67bf38898ca39ca0a7af4c3638e8933bd6db13f5710ebbccf88" + } + ] + }, + { + "bom-ref": "d07b979fcd7522bc", + "type": "file", + "name": "/usr/sbin/groupmems", + "hashes": [ + { + "alg": "SHA-1", + "content": "b1dec722a72a6adfa00449af95d6814ef1fc8282" + }, + { + "alg": "SHA-256", + "content": "3b407cd77762e53d639546542200ac443c8db25e767d74fc69b4e0b5954ec11c" + } + ] + }, + { + "bom-ref": "182ec0c129dd243d", + "type": "file", + "name": "/usr/sbin/groupmod", + "hashes": [ + { + "alg": "SHA-1", + "content": "d604a08ca4b961e3efe6286202730030d5b77f74" + }, + { + "alg": "SHA-256", + "content": "9ef64d9f11983a7d44d742b8f6902b48741bc03c58153fbadf5b829531264d6c" + } + ] + }, + { + "bom-ref": "bfdda280919f9269", + "type": "file", + "name": "/usr/sbin/grpck", + "hashes": [ + { + "alg": "SHA-1", + "content": "932f2b0c50988d356fe2a147128d05b6e05b4804" + }, + { + "alg": "SHA-256", + "content": "b74d443e4e3879edb7bc5994ba623f9f0bb1286fda74003e922ab15471d41436" + } + ] + }, + { + "bom-ref": "cbc3f745e468b4df", + "type": "file", + "name": "/usr/sbin/grpconv", + "hashes": [ + { + "alg": "SHA-1", + "content": "1fbbe95a7c42261cb2ca34bb37681d6113055a66" + }, + { + "alg": "SHA-256", + "content": "db8a05df481efb9dbe47dde5b340d2158ac4b1b9bb7c8f6a5970405dad71ee36" + } + ] + }, + { + "bom-ref": "26643545517a8cd7", + "type": "file", + "name": "/usr/sbin/grpunconv", + "hashes": [ + { + "alg": "SHA-1", + "content": "54f1ec3159a04dd10c047aeb63bce59d430a354c" + }, + { + "alg": "SHA-256", + "content": "797f41d47a10eeff13a876e9b1edd09388fcd90b6778bf405937803ff39f8031" + } + ] + }, + { + "bom-ref": "4902c438c9240caf", + "type": "file", + "name": "/usr/sbin/iconvconfig", + "hashes": [ + { + "alg": "SHA-1", + "content": "efd0c54690dbd7d6a114b2e65ca95e3af9f9727c" + }, + { + "alg": "SHA-256", + "content": "839c33a0f1f38d93bd6e088f047c0294ef996acf502f2a038548758330070afc" + } + ] + }, + { + "bom-ref": "1ccfb80877059005", + "type": "file", + "name": "/usr/sbin/invoke-rc.d", + "hashes": [ + { + "alg": "SHA-1", + "content": "c4d03a533fc24580d9ad9f9f74ce20068323cf51" + }, + { + "alg": "SHA-256", + "content": "e23bd68aa92ea828f64b67839906ec0a3ad6bb81611100a6db907830e77945ab" + } + ] + }, + { + "bom-ref": "31a2d67cfc3adb98", + "type": "file", + "name": "/usr/sbin/ldattach", + "hashes": [ + { + "alg": "SHA-1", + "content": "a435f466a50f803959cbdc5c1edb1d729b686931" + }, + { + "alg": "SHA-256", + "content": "2af8c02baa62f4c6c90fa4307be01a49fbfe404e805f79255c2326111f9cda7a" + } + ] + }, + { + "bom-ref": "23a440d9a2c80762", + "type": "file", + "name": "/usr/sbin/mklost+found", + "hashes": [ + { + "alg": "SHA-1", + "content": "d7de24f0ebefc974ecd70cf41a09589114efb7e3" + }, + { + "alg": "SHA-256", + "content": "1d958a999843f959bfe6b730eafc77cdf727f8323ecc7ed2f8e11ed88ef6bc59" + } + ] + }, + { + "bom-ref": "07771e58de61f66a", + "type": "file", + "name": "/usr/sbin/newusers", + "hashes": [ + { + "alg": "SHA-1", + "content": "6e5a7ff8652384d3a31d7373985b06432c54c5dc" + }, + { + "alg": "SHA-256", + "content": "911e819ca85edcea5fc0a3e92e9d9842eab6626ffed1b8464f4d1c98a5e6d51d" + } + ] + }, + { + "bom-ref": "9e397f131de83bb1", + "type": "file", + "name": "/usr/sbin/nologin", + "hashes": [ + { + "alg": "SHA-1", + "content": "11580e4554a3f32f0205bbc6e4ac9c8c8d70a168" + }, + { + "alg": "SHA-256", + "content": "56c0323b20b43f41daed7bc65cb27a0f196acab42eac69ff7334513215c7c1ea" + } + ] + }, + { + "bom-ref": "6a77e154fbf1ddba", + "type": "file", + "name": "/usr/sbin/pam-auth-update", + "hashes": [ + { + "alg": "SHA-1", + "content": "f97182863d0eceab654d3bc430d2aa7e4a46173c" + }, + { + "alg": "SHA-256", + "content": "05f863328fc375a59dcff3a1165cbc1ba39fa1e0a08fa6f0862295df0e4d7e84" + } + ] + }, + { + "bom-ref": "e68c0b64139483f1", + "type": "file", + "name": "/usr/sbin/pam_getenv", + "hashes": [ + { + "alg": "SHA-1", + "content": "5378554fd443fa3c515fa581395eb1f6c364cb0a" + }, + { + "alg": "SHA-256", + "content": "982cca7d6a9afe07d7ba3fc929082ef11ed1cadb88d253f6464bfc0a19730674" + } + ] + }, + { + "bom-ref": "daf7946f7b37889d", + "type": "file", + "name": "/usr/sbin/pam_timestamp_check", + "hashes": [ + { + "alg": "SHA-1", + "content": "6936a459591059e72622ebb684ff4da95fc0b633" + }, + { + "alg": "SHA-256", + "content": "950b7b60269275707d98fa5f6bd8be307d152c83e69c269d7a762fd13cb246e8" + } + ] + }, + { + "bom-ref": "f8749187dff31ddb", + "type": "file", + "name": "/usr/sbin/pwck", + "hashes": [ + { + "alg": "SHA-1", + "content": "36ee22ab78b703003b498951dd779e45f5a4301e" + }, + { + "alg": "SHA-256", + "content": "f82f04958d384886823345865d8bfb75fe0e4e842c5e4110efaf30fb931990c8" + } + ] + }, + { + "bom-ref": "19baf68f829b57b8", + "type": "file", + "name": "/usr/sbin/pwconv", + "hashes": [ + { + "alg": "SHA-1", + "content": "ad8b05e68f34b6c980b69bda73aff9e355c1b7e7" + }, + { + "alg": "SHA-256", + "content": "27e4ce3a50261d088eb5b65bd1f06bac38d4211c3f21edff36d4983862eca9f7" + } + ] + }, + { + "bom-ref": "a996091da032bc92", + "type": "file", + "name": "/usr/sbin/pwunconv", + "hashes": [ + { + "alg": "SHA-1", + "content": "afd177fc7dba852e43199ea2c07e923acdbfb1d4" + }, + { + "alg": "SHA-256", + "content": "ed1e5ede244c9ecd2d1e0908bfa12e7eb047eda733ccf82b94b970544b92ac24" + } + ] + }, + { + "bom-ref": "7ad33c2c32bbb16a", + "type": "file", + "name": "/usr/sbin/readprofile", + "hashes": [ + { + "alg": "SHA-1", + "content": "737757d4015fd698af0a73b79817c5cf66e3a9ca" + }, + { + "alg": "SHA-256", + "content": "d02c0800f642f70e88070c9c5bb7a6b4758b67ae09d4d461813d3686f4fed568" + } + ] + }, + { + "bom-ref": "5cb7a88b6d925c39", + "type": "file", + "name": "/usr/sbin/remove-shell", + "hashes": [ + { + "alg": "SHA-1", + "content": "66e936843f0357648c6e560d101bbede6fe70f97" + }, + { + "alg": "SHA-256", + "content": "5a15986f8fd235bccf215832a5c39070acd6c48176c73a2415a7148bed327267" + } + ] + }, + { + "bom-ref": "812c70e7f1bdd0b5", + "type": "file", + "name": "/usr/sbin/rmt-tar", + "hashes": [ + { + "alg": "SHA-1", + "content": "97f0d0e2eac4bf6769bd9426d072ef9a7f62039f" + }, + { + "alg": "SHA-256", + "content": "d380f8974bc87f58e01aecc08e2e09802ce32d9a524f8cb650e5a85a4018cfbe" + } + ] + }, + { + "bom-ref": "82aeb3301d171871", + "type": "file", + "name": "/usr/sbin/rtcwake", + "hashes": [ + { + "alg": "SHA-1", + "content": "9330ed67addabb7445c65877e7a7e319a9cbb23f" + }, + { + "alg": "SHA-256", + "content": "2cf9af2cde35a9ff2842d8a0b546c37bcc93fd53fe4b25519fcf57c91d506562" + } + ] + }, + { + "bom-ref": "03c9f107d75551de", + "type": "file", + "name": "/usr/sbin/service", + "hashes": [ + { + "alg": "SHA-1", + "content": "c72e31b74e8654867c5558b19502dd14d03fbe55" + }, + { + "alg": "SHA-256", + "content": "90d290edebced3366414da3c362561b7fa817e85fc3d9e4ba8ef814869c8919e" + } + ] + }, + { + "bom-ref": "3f824f0e7d0541d9", + "type": "file", + "name": "/usr/sbin/tarcat", + "hashes": [ + { + "alg": "SHA-1", + "content": "442ba2dad8d3acbd48ed226215791fb8a0707141" + }, + { + "alg": "SHA-256", + "content": "4307aa7cc97a4db32a674ad32f893b251188903cafa6d5266c813fc5c9ea755e" + } + ] + }, + { + "bom-ref": "8a3adf1d8e02d5c3", + "type": "file", + "name": "/usr/sbin/tzconfig", + "hashes": [ + { + "alg": "SHA-1", + "content": "4f67e105f64cca78218b0c4d054257c09c349607" + }, + { + "alg": "SHA-256", + "content": "816e1759cc6a017900439acc6c85dd2293cc78948d54bf76c1f23bf16437b1fc" + } + ] + }, + { + "bom-ref": "df50652cdf0b1e0d", + "type": "file", + "name": "/usr/sbin/update-passwd", + "hashes": [ + { + "alg": "SHA-1", + "content": "cc8c09e59f5d5719a4208e83fbf9dd94cc4b4cb2" + }, + { + "alg": "SHA-256", + "content": "02650d987b3803832f92999d96da44b8339e26c854787a1bc744091a85794f08" + } + ] + }, + { + "bom-ref": "d0ce0e3a5b500a2b", + "type": "file", + "name": "/usr/sbin/update-rc.d", + "hashes": [ + { + "alg": "SHA-1", + "content": "46f0eda094e2d58c364c5833be5e6714a6ff03ea" + }, + { + "alg": "SHA-256", + "content": "1102a9c7a3edbfd57bf7b7b466aaf45a10763a186093f65bac3966f0da8a5448" + } + ] + }, + { + "bom-ref": "a7c3d1ce361774d4", + "type": "file", + "name": "/usr/sbin/useradd", + "hashes": [ + { + "alg": "SHA-1", + "content": "e4d5a3dbd0c2d33a1405c17171743ff32147348d" + }, + { + "alg": "SHA-256", + "content": "fb24d8fa8ccd8fe991422d77c9778fcc04c75709cbe7086a3330dbda54886e72" + } + ] + }, + { + "bom-ref": "bb47d141473a345e", + "type": "file", + "name": "/usr/sbin/userdel", + "hashes": [ + { + "alg": "SHA-1", + "content": "a3405adca202946f8c0bd4a24c1f331545eb50dc" + }, + { + "alg": "SHA-256", + "content": "90f05dcb559fe7e8f2048dbfec649088e47050105c320b437fae37171b00e37c" + } + ] + }, + { + "bom-ref": "5744164e348d67f3", + "type": "file", + "name": "/usr/sbin/usermod", + "hashes": [ + { + "alg": "SHA-1", + "content": "f2c541a84531a1d997478a2a4e40cb68a4621ce2" + }, + { + "alg": "SHA-256", + "content": "ec2c279d48f407101c71ef44acc0d5e8b4c938f098493266388029fba92ede26" + } + ] + }, + { + "bom-ref": "ed76483f17a165dc", + "type": "file", + "name": "/usr/sbin/vipw", + "hashes": [ + { + "alg": "SHA-1", + "content": "2541cc4ec75ec6ec5609e681d35e9fbbfb01516c" + }, + { + "alg": "SHA-256", + "content": "f8efa6fbae96c822070e8c1afe38adbb6733491cf284e9a241a3a8f2869a23f0" + } + ] + }, + { + "bom-ref": "f0b3d548760d5f27", + "type": "file", + "name": "/usr/sbin/zic", + "hashes": [ + { + "alg": "SHA-1", + "content": "d6f9f4ba32bd7c2901fb333e1c0bbeca673688f0" + }, + { + "alg": "SHA-256", + "content": "b10eeafa724b44fea527d3a597b7aea2075debbaf7ecaf0a903531473a2b77e7" + } + ] + }, + { + "bom-ref": "766c2631fe80df22", + "type": "file", + "name": "/usr/share/adduser/adduser.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "4b5690a85d28731d4c2ed043e38a5a2680c46216" + }, + { + "alg": "SHA-256", + "content": "ccdc9675d7bd39c3cc79c2a5d6938f2562dd4062350dbed3058c1faee48b353e" + } + ] + }, + { + "bom-ref": "fb3d2655c97f05f7", + "type": "file", + "name": "/usr/share/base-files/dot.bashrc", + "hashes": [ + { + "alg": "SHA-1", + "content": "b737c392222ddac2271cc8d0d8cc0308d08cf458" + }, + { + "alg": "SHA-256", + "content": "41f1685d04031d88891dea1cd02d5154f8aa841119001a72017b0e7158159e23" + } + ] + }, + { + "bom-ref": "b51bed7f76d24389", + "type": "file", + "name": "/usr/share/base-files/dot.profile", + "hashes": [ + { + "alg": "SHA-1", + "content": "dcd1b431c955cf1fb6064756c6044a49ef507c37" + }, + { + "alg": "SHA-256", + "content": "74bc92bcf960bfb62b22aa65370cdd1cd37739baa4eab9b240d72692c898ef1f" + } + ] + }, + { + "bom-ref": "bcfcf8105e4c33c0", + "type": "file", + "name": "/usr/share/base-files/dot.profile.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "349bd16693e670bda2b38dbd86c31297775c5491" + }, + { + "alg": "SHA-256", + "content": "8961ee041c712c735fb05287740ab62737777bd58ce631b54b07d8083efad3bf" + } + ] + }, + { + "bom-ref": "690168615e0864e9", + "type": "file", + "name": "/usr/share/base-files/info.dir", + "hashes": [ + { + "alg": "SHA-1", + "content": "3551f8dfbf114c159f692d5e823099cdd53b16cf" + }, + { + "alg": "SHA-256", + "content": "c58a258cb9c410c29486aa8fa37f4e5b738bfeedc2b8e97be1cd6cff1df28459" + } + ] + }, + { + "bom-ref": "014a5d59b3ab5909", + "type": "file", + "name": "/usr/share/base-files/motd", + "hashes": [ + { + "alg": "SHA-1", + "content": "8b55aac644e9e6f2701805584cc391ff81d3ecec" + }, + { + "alg": "SHA-256", + "content": "a378977155fb42bb006496321cbe31f74cbda803c3f6ca590f30e76d1afad921" + } + ] + }, + { + "bom-ref": "611cae39865c2aba", + "type": "file", + "name": "/usr/share/base-files/profile", + "hashes": [ + { + "alg": "SHA-1", + "content": "3aee14773c38f138ed4b1d93a649bdbce112115e" + }, + { + "alg": "SHA-256", + "content": "b8ffd2c97588047e1cea84b7dfdb68bfde167e2957f667ca2b6ab2929feb4f49" + } + ] + }, + { + "bom-ref": "474bfad743e066da", + "type": "file", + "name": "/usr/share/base-files/profile.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "ca4245aad6551f17d0ed032bb062ef9d3f64b9fc" + }, + { + "alg": "SHA-256", + "content": "7d09366be1eb6bd4fa6b3cf9837e87236bbb9ec5ebe4e2428fbec3f88b7ec762" + } + ] + }, + { + "bom-ref": "7b0a78f5b97f24c9", + "type": "file", + "name": "/usr/share/base-files/staff-group-for-usr-local", + "hashes": [ + { + "alg": "SHA-1", + "content": "7e36ba0fdd3b1f5b267821d4b06a1f8c17336efb" + }, + { + "alg": "SHA-256", + "content": "64a482506f00572df1d4909a347d6f4fa8e6ce23686b7f058bfbd650ec0658ce" + } + ] + }, + { + "bom-ref": "a8041fd649d5a4f1", + "type": "file", + "name": "/usr/share/base-passwd/group.master", + "hashes": [ + { + "alg": "SHA-1", + "content": "845525bcc8c4464b770fbf36690e8ee8e7a25591" + }, + { + "alg": "SHA-256", + "content": "cfde4574c857edbfbd31667000d75d07efe6bc61f22063693010dee2a912450b" + } + ] + }, + { + "bom-ref": "be5f6cdb5bf96dca", + "type": "file", + "name": "/usr/share/base-passwd/passwd.master", + "hashes": [ + { + "alg": "SHA-1", + "content": "e813d4016f0bf8c042183d3585075750f3312c42" + }, + { + "alg": "SHA-256", + "content": "5e66dea2e22fa69f64b4f92053bedbf8ea2550dffb95967994730b718f4eb930" + } + ] + }, + { + "bom-ref": "1bd61392600e0cff", + "type": "file", + "name": "/usr/share/bash-completion/completions/addpart", + "hashes": [ + { + "alg": "SHA-1", + "content": "66ab6204b219cee6dc5377a33eb4478270db4fc4" + }, + { + "alg": "SHA-256", + "content": "61badc8851eb6f1c153df1a07c9c2f3bffa048fbd05d1ef775384087440a08c8" + } + ] + }, + { + "bom-ref": "0a8e7e5e2c4d59ac", + "type": "file", + "name": "/usr/share/bash-completion/completions/apt", + "hashes": [ + { + "alg": "SHA-1", + "content": "cad4eb1d01f08f16a868ba7997667ccccb830fa7" + }, + { + "alg": "SHA-256", + "content": "d5e1eca3f19f16abdb59af4ab5494770ab6f17d31ee495dcb3756eb0393ca997" + } + ] + }, + { + "bom-ref": "479524053cf95d0e", + "type": "file", + "name": "/usr/share/bash-completion/completions/blkdiscard", + "hashes": [ + { + "alg": "SHA-1", + "content": "d47e122278bbd91872ef97e8865c913a47ce9ef8" + }, + { + "alg": "SHA-256", + "content": "52ae5cec0990942b3e239d9bae331ea237d6dd457575746e382d07fbabf9ad70" + } + ] + }, + { + "bom-ref": "bd59ceadb1310027", + "type": "file", + "name": "/usr/share/bash-completion/completions/blkid", + "hashes": [ + { + "alg": "SHA-1", + "content": "b20843cfd4eef9ac1e7b83a57b568e936fccb377" + }, + { + "alg": "SHA-256", + "content": "f4ec23b0db103c742d655c8e9dbbe3e2d59f1b711abe6a241c91a8211895e624" + } + ] + }, + { + "bom-ref": "495437da2e6856f1", + "type": "file", + "name": "/usr/share/bash-completion/completions/blkzone", + "hashes": [ + { + "alg": "SHA-1", + "content": "4e86a43da2fef3709584a0c94a5b1a941ae8e64e" + }, + { + "alg": "SHA-256", + "content": "bf20f342237b951779fb457d68cc4bc7900e6db044becb5419efa109b77ffadf" + } + ] + }, + { + "bom-ref": "7c7a8d2e40ff41a3", + "type": "file", + "name": "/usr/share/bash-completion/completions/blockdev", + "hashes": [ + { + "alg": "SHA-1", + "content": "1522f9a9dfab815c2630ce91c090ab25b6a415b6" + }, + { + "alg": "SHA-256", + "content": "32a9db482f3941d0d22c12b5feb8a73c71489f7bf83693a9c3b4d3d27e97d8b0" + } + ] + }, + { + "bom-ref": "3900dbb63480787c", + "type": "file", + "name": "/usr/share/bash-completion/completions/cfdisk", + "hashes": [ + { + "alg": "SHA-1", + "content": "fa23b3d28c54302a3936005755b2a305d90d08b4" + }, + { + "alg": "SHA-256", + "content": "2995b77066141f0a0b67dec82d554a20909466eca6a3e8f237eb709b7f5b4c62" + } + ] + }, + { + "bom-ref": "8ce2f732107e76fc", + "type": "file", + "name": "/usr/share/bash-completion/completions/chcpu", + "hashes": [ + { + "alg": "SHA-1", + "content": "32991098188f537cd23345037950d572d96a01c5" + }, + { + "alg": "SHA-256", + "content": "38548158ca1b6d13b515c4fb5107a6fc85ae04c8444f3edd75e98e42dba100f6" + } + ] + }, + { + "bom-ref": "07584815da423474", + "type": "file", + "name": "/usr/share/bash-completion/completions/chmem", + "hashes": [ + { + "alg": "SHA-1", + "content": "5c421450f8c8ce9039fbc912dd24132207ab4eea" + }, + { + "alg": "SHA-256", + "content": "6bb1f0dbb7af9f2891badb28f90e7ab9b82647a4b982a284b541968f669f2a9f" + } + ] + }, + { + "bom-ref": "d72ee7f3a744c9ed", + "type": "file", + "name": "/usr/share/bash-completion/completions/chrt", + "hashes": [ + { + "alg": "SHA-1", + "content": "37f14d93b1a354fc3cfa78af794d133a0cbe013d" + }, + { + "alg": "SHA-256", + "content": "1dd13080d71c8d880e628eee89e8f493c979441692ef364e01ca8c8a761d381e" + } + ] + }, + { + "bom-ref": "b08c9f5a2971ad0e", + "type": "file", + "name": "/usr/share/bash-completion/completions/ctrlaltdel", + "hashes": [ + { + "alg": "SHA-1", + "content": "665f505fb4ff41b64b660dbf800ed6977e9c474f" + }, + { + "alg": "SHA-256", + "content": "52021091a5554e9b6275cdabbf1820ccd18eff38d8b0094284ef7fb68c38f66f" + } + ] + }, + { + "bom-ref": "ec3badb56286dc81", + "type": "file", + "name": "/usr/share/bash-completion/completions/debconf", + "hashes": [ + { + "alg": "SHA-1", + "content": "66c69cc37dafb9a38da52c29e55c89013876780e" + }, + { + "alg": "SHA-256", + "content": "45a6978806b39111a579c0e7d4e85937bd6c8e20c3f6732d3ecf5fbd2344cfb0" + } + ] + }, + { + "bom-ref": "8a66e426ea4f0286", + "type": "file", + "name": "/usr/share/bash-completion/completions/delpart", + "hashes": [ + { + "alg": "SHA-1", + "content": "e139c4b8c55ee4ceda62b1e9828a3d743de8447b" + }, + { + "alg": "SHA-256", + "content": "e337b3898cacda9485085c522d9306a043146cc52c780bbcf2c65b8d366f095a" + } + ] + }, + { + "bom-ref": "c7648f73f26d277d", + "type": "file", + "name": "/usr/share/bash-completion/completions/dmesg", + "hashes": [ + { + "alg": "SHA-1", + "content": "502d94cbc727bc0e0ddbb9b6fb462cf2330d3ff1" + }, + { + "alg": "SHA-256", + "content": "5cd7dd59ef1558c7d5bf8fe58581eb6b173f823b21f1e83598328de2d7695060" + } + ] + }, + { + "bom-ref": "13a59265a68b85d3", + "type": "file", + "name": "/usr/share/bash-completion/completions/fallocate", + "hashes": [ + { + "alg": "SHA-1", + "content": "df548fa9e77ed5f1cb96be7b5d938d2c638b50ab" + }, + { + "alg": "SHA-256", + "content": "f775a5a4e4d051193cfc5dbcc2ba373d5cfe350604f3c4b79372ef4a7e494f02" + } + ] + }, + { + "bom-ref": "f405b33f3ffbfa3f", + "type": "file", + "name": "/usr/share/bash-completion/completions/fdformat", + "hashes": [ + { + "alg": "SHA-1", + "content": "968494cb7ab4864df6d4af51082e42cbf2db62e7" + }, + { + "alg": "SHA-256", + "content": "d1478a7f29aa6e2ac647acb10a2b1036bf2e2cb98e9627abb43fb1bf6ac561ec" + } + ] + }, + { + "bom-ref": "2d36aad3dc38f7fc", + "type": "file", + "name": "/usr/share/bash-completion/completions/fdisk", + "hashes": [ + { + "alg": "SHA-1", + "content": "e63dc6b35be32a69cfcd41c5e1d9f0a57c1319c6" + }, + { + "alg": "SHA-256", + "content": "2eddd6f947b6246d18959c173aac7112e1e9b2d523ffe852f88011dd2e4836c6" + } + ] + }, + { + "bom-ref": "354077cc0b2f81d8", + "type": "file", + "name": "/usr/share/bash-completion/completions/fincore", + "hashes": [ + { + "alg": "SHA-1", + "content": "475baa9cc4f25946e16551a06e6604031b468422" + }, + { + "alg": "SHA-256", + "content": "0d66d90486e2f0b6eee9a962adc762cd19f7311b42d344cf47e49ef1261f90e4" + } + ] + }, + { + "bom-ref": "cc547f1ed14a51b0", + "type": "file", + "name": "/usr/share/bash-completion/completions/findfs", + "hashes": [ + { + "alg": "SHA-1", + "content": "337c51a0628d03a16500b06bbaba129fd338cb22" + }, + { + "alg": "SHA-256", + "content": "ff73ffe3f15cc6ec0bfeed0a2c87b67eb1c9890ec5e7a23d18eab733d16c0df8" + } + ] + }, + { + "bom-ref": "07d6895e719d9322", + "type": "file", + "name": "/usr/share/bash-completion/completions/findmnt", + "hashes": [ + { + "alg": "SHA-1", + "content": "515ab77c245338ce0827012038b93df6a3733b8b" + }, + { + "alg": "SHA-256", + "content": "40332dfec0e1d317cf5f9782d95cec282e649635b33e6449d67f664f74ae5199" + } + ] + }, + { + "bom-ref": "6f41cb86a219e084", + "type": "file", + "name": "/usr/share/bash-completion/completions/flock", + "hashes": [ + { + "alg": "SHA-1", + "content": "b542856570c6961e100aa509cc6109fe78ccf166" + }, + { + "alg": "SHA-256", + "content": "4ea2ecf934319c37348fddefdf0f028614ce04cc1840574242bf47219cb0a8c8" + } + ] + }, + { + "bom-ref": "3af81562f7ca3386", + "type": "file", + "name": "/usr/share/bash-completion/completions/fsck", + "hashes": [ + { + "alg": "SHA-1", + "content": "35b50c434e12b3d80467af148bf70d895fdc690d" + }, + { + "alg": "SHA-256", + "content": "feb2b95abe8caac7840120e9575816d9e02dc8d08fe883293211f6f88389dfd8" + } + ] + }, + { + "bom-ref": "45b32d87d38c3196", + "type": "file", + "name": "/usr/share/bash-completion/completions/fsck.cramfs", + "hashes": [ + { + "alg": "SHA-1", + "content": "e3ebab334ca469b70b24eace55544c9c5f3675e0" + }, + { + "alg": "SHA-256", + "content": "74f9052c2e8991509621e742d39b65beb9489deef2b2b1f7a443f05acf11db46" + } + ] + }, + { + "bom-ref": "691a61f061fdddf1", + "type": "file", + "name": "/usr/share/bash-completion/completions/fsck.minix", + "hashes": [ + { + "alg": "SHA-1", + "content": "7909b234a5d2e41dce6f1ae2d9a35c899ae7ac25" + }, + { + "alg": "SHA-256", + "content": "c80e2696bcb4fb7642418d3aec96f7c2931cdcfdaf245786ee3b6cded99e22fe" + } + ] + }, + { + "bom-ref": "80d05b88250d572c", + "type": "file", + "name": "/usr/share/bash-completion/completions/fsfreeze", + "hashes": [ + { + "alg": "SHA-1", + "content": "4f5b727591789ee1f07547241d4d00c1233c3b1c" + }, + { + "alg": "SHA-256", + "content": "7f99f914f660697f78e57850e4e70c027e73a0aa5074a28bd3a5d25c2564b371" + } + ] + }, + { + "bom-ref": "b29809ca3f56f9dd", + "type": "file", + "name": "/usr/share/bash-completion/completions/fstrim", + "hashes": [ + { + "alg": "SHA-1", + "content": "44f71d0de76cc5c93f9918b2d0f68c83baa413cd" + }, + { + "alg": "SHA-256", + "content": "00d3ec98092ad7a2c698c1865015368d7be5fead7d3ad171def63cc78658b6b2" + } + ] + }, + { + "bom-ref": "dccde07121101552", + "type": "file", + "name": "/usr/share/bash-completion/completions/getopt", + "hashes": [ + { + "alg": "SHA-1", + "content": "126f08636509e707669ccf575a548e1d8b2589b2" + }, + { + "alg": "SHA-256", + "content": "0ae50ed789c556f2abdabe09362169d385f9facf1bd05c13cf57b3f8e0078a5d" + } + ] + }, + { + "bom-ref": "2ca5c3349e432877", + "type": "file", + "name": "/usr/share/bash-completion/completions/hwclock", + "hashes": [ + { + "alg": "SHA-1", + "content": "7049d785c5826b92aab74274c5610426008d905e" + }, + { + "alg": "SHA-256", + "content": "1cfd65593d59333936ba7e71a2306d7f0c33f9a7cc1f68ccc3232eb2815b93e6" + } + ] + }, + { + "bom-ref": "0a52e66c9feb5934", + "type": "file", + "name": "/usr/share/bash-completion/completions/ionice", + "hashes": [ + { + "alg": "SHA-1", + "content": "a117c036cce1cd9cf660c9070f2be2159aaa6722" + }, + { + "alg": "SHA-256", + "content": "8a92b4a98b89f6c3af9baf94aab2cc24f58e0e2c4ffc6e2ea822cdc093d940ff" + } + ] + }, + { + "bom-ref": "f5ffb0f46bd92a43", + "type": "file", + "name": "/usr/share/bash-completion/completions/ipcmk", + "hashes": [ + { + "alg": "SHA-1", + "content": "23b0931088d6691871338347a1c2ce34b11102a1" + }, + { + "alg": "SHA-256", + "content": "701db74a1133159cf159c9a182a46eb77ecdab618c52e373f432b3924d8e2707" + } + ] + }, + { + "bom-ref": "74f60b17d72d9def", + "type": "file", + "name": "/usr/share/bash-completion/completions/ipcrm", + "hashes": [ + { + "alg": "SHA-1", + "content": "bf22725bdc3926b961eb4024bd1a3ebcf981dd9c" + }, + { + "alg": "SHA-256", + "content": "454731bfb20b7be1e41f5b0704536a549ebf7ee755d64bd9ef882b04ae84173d" + } + ] + }, + { + "bom-ref": "4116a36aa6754c39", + "type": "file", + "name": "/usr/share/bash-completion/completions/ipcs", + "hashes": [ + { + "alg": "SHA-1", + "content": "b8e74ed1e3347f50c8cd618b5ef97d1c98467525" + }, + { + "alg": "SHA-256", + "content": "c8d2fc0706082e013fdec16a7b7fcc3aadbc0c3e22f87d8a818d9aa95f364acf" + } + ] + }, + { + "bom-ref": "62519fc3f616b1f5", + "type": "file", + "name": "/usr/share/bash-completion/completions/isosize", + "hashes": [ + { + "alg": "SHA-1", + "content": "4e001a21169ac9b9980ef424a19f69c36f2c00d5" + }, + { + "alg": "SHA-256", + "content": "0afdd61db90044908eef15ef623eb9e6f4598cdfe581f20b1b812650d961f567" + } + ] + }, + { + "bom-ref": "a21635682e864005", + "type": "file", + "name": "/usr/share/bash-completion/completions/last", + "hashes": [ + { + "alg": "SHA-1", + "content": "bbf954b3f10c0b0e9d1de96f7639d606750b3961" + }, + { + "alg": "SHA-256", + "content": "406ba6772a881f22d10cad9096093673513c8426e81594c44977e1a57e7c4724" + } + ] + }, + { + "bom-ref": "8f631982db687a8b", + "type": "file", + "name": "/usr/share/bash-completion/completions/ldattach", + "hashes": [ + { + "alg": "SHA-1", + "content": "679909fc2522233de721a3cf4871743bd24297ed" + }, + { + "alg": "SHA-256", + "content": "f2a5396940e79dbdeea768970b2960d067e8a2fb78e9379a1b1b0fa250906595" + } + ] + }, + { + "bom-ref": "e6ebe988b3e3d407", + "type": "file", + "name": "/usr/share/bash-completion/completions/logger", + "hashes": [ + { + "alg": "SHA-1", + "content": "fbb9db937f7060655aff9f8975e8c3f6b38b4311" + }, + { + "alg": "SHA-256", + "content": "20a52821ce9e70f58e72f9050e3037aba96986aa39403a7b36bf5fac3de1b2c5" + } + ] + }, + { + "bom-ref": "ed2d2825ae350f66", + "type": "file", + "name": "/usr/share/bash-completion/completions/losetup", + "hashes": [ + { + "alg": "SHA-1", + "content": "57a4c07cd33a261fe332a3dd02bcfce081c30c11" + }, + { + "alg": "SHA-256", + "content": "97287d6f705c048fe6fa6e78c2e9693af0e3fdcc13efe56bbbebc6c7fdf71a93" + } + ] + }, + { + "bom-ref": "fdc25dbf993d4538", + "type": "file", + "name": "/usr/share/bash-completion/completions/lsblk", + "hashes": [ + { + "alg": "SHA-1", + "content": "d39aa23d4069a736b33e352feed1a6e6846aa8a6" + }, + { + "alg": "SHA-256", + "content": "b736ec0a304992cfdc981ef92d854827fe5192a04cfe88e68f48b3e1b320773d" + } + ] + }, + { + "bom-ref": "6600c00bd7a3e00c", + "type": "file", + "name": "/usr/share/bash-completion/completions/lscpu", + "hashes": [ + { + "alg": "SHA-1", + "content": "62000095654c0871c7d964764fcad86e5e056057" + }, + { + "alg": "SHA-256", + "content": "e036a5c87c232e9d9d3521dc9ae4208726fdc8efcc48941e69111f761be3e779" + } + ] + }, + { + "bom-ref": "185bfaa26f59d1f2", + "type": "file", + "name": "/usr/share/bash-completion/completions/lsipc", + "hashes": [ + { + "alg": "SHA-1", + "content": "524f46257dfe5a71b3ac3a842455bab8eb59e4a7" + }, + { + "alg": "SHA-256", + "content": "650711cc8c467b10fc463a333d3bba815810ae9cc1dd8b5c8bc0181b9721df82" + } + ] + }, + { + "bom-ref": "bcbcddc7a62ff727", + "type": "file", + "name": "/usr/share/bash-completion/completions/lslocks", + "hashes": [ + { + "alg": "SHA-1", + "content": "43a36735b6ac253436755c267e262997ce66a890" + }, + { + "alg": "SHA-256", + "content": "57b7d517dee24e93362bafa490b7904f37286f954a2bed21b256b3ca1fd8f4d9" + } + ] + }, + { + "bom-ref": "941d8ca10fee43c6", + "type": "file", + "name": "/usr/share/bash-completion/completions/lslogins", + "hashes": [ + { + "alg": "SHA-1", + "content": "751e8757bd83a3107876cf40b18ffa14c353994b" + }, + { + "alg": "SHA-256", + "content": "b7db5c076e389f7d4f13919978664d61e5924bee9e4df5880af7b49e71f656e3" + } + ] + }, + { + "bom-ref": "e3e0f1c4b41c39de", + "type": "file", + "name": "/usr/share/bash-completion/completions/lsmem", + "hashes": [ + { + "alg": "SHA-1", + "content": "1d464c74d3dacbd31c74b3173679b2dcb145d8c3" + }, + { + "alg": "SHA-256", + "content": "d6d396f2c0581a5a3a6ab1bd9ba3c12a6159bd370bafb58d73ffa1f638a7eb56" + } + ] + }, + { + "bom-ref": "223de08e6294ff90", + "type": "file", + "name": "/usr/share/bash-completion/completions/lsns", + "hashes": [ + { + "alg": "SHA-1", + "content": "4b5432d17529820bdb091314094e5628be47754d" + }, + { + "alg": "SHA-256", + "content": "48d857b7124298243da9467e1ab2c32244784a55d9032976319df7908163c9af" + } + ] + }, + { + "bom-ref": "76c78e06d77a9121", + "type": "file", + "name": "/usr/share/bash-completion/completions/mcookie", + "hashes": [ + { + "alg": "SHA-1", + "content": "3d62a53a3b104c6e48f7d851655dc7158a107297" + }, + { + "alg": "SHA-256", + "content": "c1460f2f78f58e0195f4dc3af4a5e92925aa23f3f6ec5c73a7565329a7eb8b3b" + } + ] + }, + { + "bom-ref": "38184119bd1f6571", + "type": "file", + "name": "/usr/share/bash-completion/completions/mesg", + "hashes": [ + { + "alg": "SHA-1", + "content": "e6e9d2c18f0e48a69e6b33137a355799bda706d8" + }, + { + "alg": "SHA-256", + "content": "67d09288e327f405fa72009d7e85b81a70d20c5577ffb8b418b6b0de043e7fc1" + } + ] + }, + { + "bom-ref": "fe8baba5a1b76fca", + "type": "file", + "name": "/usr/share/bash-completion/completions/mkfs", + "hashes": [ + { + "alg": "SHA-1", + "content": "ac77a804001bd2ed009ac46f21f39d675ea183ab" + }, + { + "alg": "SHA-256", + "content": "b90a36595a7585f33e27d5028c66fecb8db2f01832240b70527aa93f9d93c486" + } + ] + }, + { + "bom-ref": "77c831ad66270bed", + "type": "file", + "name": "/usr/share/bash-completion/completions/mkfs.bfs", + "hashes": [ + { + "alg": "SHA-1", + "content": "b91ea3d0712ed922f802e248ec5834dbae86278a" + }, + { + "alg": "SHA-256", + "content": "fd5315672633d2cc96166fedd130416e7ec9c37a87f8afe57dc906059a4fac04" + } + ] + }, + { + "bom-ref": "23a30d766c0d388e", + "type": "file", + "name": "/usr/share/bash-completion/completions/mkfs.cramfs", + "hashes": [ + { + "alg": "SHA-1", + "content": "161ac0b5765b66b0375c260f35e476ee8316160a" + }, + { + "alg": "SHA-256", + "content": "a33449ad64a9c1e51ad0b82fc6afbb07febd5650842fea214231f399d7f3bf4d" + } + ] + }, + { + "bom-ref": "6bd3056cd077fa76", + "type": "file", + "name": "/usr/share/bash-completion/completions/mkfs.minix", + "hashes": [ + { + "alg": "SHA-1", + "content": "9d2e79b266343749a60d0421a04972baa761e576" + }, + { + "alg": "SHA-256", + "content": "aa873021ae3d172211a649626f466efd53423970ba15d29d6f5ce4fc5d78fcc9" + } + ] + }, + { + "bom-ref": "8202d8aadc648069", + "type": "file", + "name": "/usr/share/bash-completion/completions/mkswap", + "hashes": [ + { + "alg": "SHA-1", + "content": "cd4267666fdf7a24ce9a488f886521b54597747e" + }, + { + "alg": "SHA-256", + "content": "e1cf77f54f0bd20cc47638b163a4b4adab20f4901ff4ef296cd2a9e3ebbb6577" + } + ] + }, + { + "bom-ref": "79164e6da8f72345", + "type": "file", + "name": "/usr/share/bash-completion/completions/more", + "hashes": [ + { + "alg": "SHA-1", + "content": "941c04b53f3c45cf7a20548fdf79160e2fb28c3e" + }, + { + "alg": "SHA-256", + "content": "f2a14123adff1db7144fa503b2e939d9383055e7b893a7730e146dd93c328032" + } + ] + }, + { + "bom-ref": "60cd0e1df594934e", + "type": "file", + "name": "/usr/share/bash-completion/completions/mount", + "hashes": [ + { + "alg": "SHA-1", + "content": "55a7f4ac1bbab68ec43083e62da7e66436781448" + }, + { + "alg": "SHA-256", + "content": "18e67a52959c1dbcd2d3706e6e300cb28556ecd1257d1289a629ffbf7a1af3ad" + } + ] + }, + { + "bom-ref": "825ce41680e0576b", + "type": "file", + "name": "/usr/share/bash-completion/completions/mountpoint", + "hashes": [ + { + "alg": "SHA-1", + "content": "f644865326fd7cd1b8d04c480d08ea35a2f14d06" + }, + { + "alg": "SHA-256", + "content": "4b9350fe71eac2b6927a0e0ea228c4d5d809d96320c0c2db233af2c6e522ae94" + } + ] + }, + { + "bom-ref": "79d44549bac05625", + "type": "file", + "name": "/usr/share/bash-completion/completions/namei", + "hashes": [ + { + "alg": "SHA-1", + "content": "4863488e0a27839d3d29da103cfc24d6194fb28d" + }, + { + "alg": "SHA-256", + "content": "1519a1b96f840f476647daa9d041a7d5db2dde0d80d3c99e973b1eccff8b259d" + } + ] + }, + { + "bom-ref": "0201a66a0d8d74d8", + "type": "file", + "name": "/usr/share/bash-completion/completions/nsenter", + "hashes": [ + { + "alg": "SHA-1", + "content": "5e470200ec18bc63b8bc182ceba7295dda440c9d" + }, + { + "alg": "SHA-256", + "content": "c60762eff4f9768cda50c4e719c869ad6f2d9396f48c3bd4cb6c5bb90e847a3b" + } + ] + }, + { + "bom-ref": "4f0c5b4a31c78fc2", + "type": "file", + "name": "/usr/share/bash-completion/completions/partx", + "hashes": [ + { + "alg": "SHA-1", + "content": "61e1b252cbebb2fed5fa231da9972185c29d403a" + }, + { + "alg": "SHA-256", + "content": "fd4885b8a4a683c1058210fbecf4c291cdc3de9a968128e7051eaf2d7a07c81d" + } + ] + }, + { + "bom-ref": "86c5b1d114e4f184", + "type": "file", + "name": "/usr/share/bash-completion/completions/pivot_root", + "hashes": [ + { + "alg": "SHA-1", + "content": "8d82a895d17a6409ff64afb828a17d553100e48c" + }, + { + "alg": "SHA-256", + "content": "e3fd2fed08fe53b1bdf0b344633375273ce54bdb75c65a4383f2bf29aa9868dd" + } + ] + }, + { + "bom-ref": "40d562fec12add3f", + "type": "file", + "name": "/usr/share/bash-completion/completions/prlimit", + "hashes": [ + { + "alg": "SHA-1", + "content": "0495fb7093dc819f191bb52b16dd1388499089d7" + }, + { + "alg": "SHA-256", + "content": "feb868f23ea5c5833a4fc9a642b78a83dd186259826304be649e7902086b8f9f" + } + ] + }, + { + "bom-ref": "79af9c3d0d7b9b63", + "type": "file", + "name": "/usr/share/bash-completion/completions/raw", + "hashes": [ + { + "alg": "SHA-1", + "content": "a8763bfe8398d96adf7fbe6adbdc11c021b585ac" + }, + { + "alg": "SHA-256", + "content": "f546700af22030dffeefaa6b13e9ebb7c24538adb0941dcb98a9d68a6426640f" + } + ] + }, + { + "bom-ref": "8d5e35b335c01269", + "type": "file", + "name": "/usr/share/bash-completion/completions/readprofile", + "hashes": [ + { + "alg": "SHA-1", + "content": "d6fc0cb9b9e14e75ad60cb58158936fc231e1d66" + }, + { + "alg": "SHA-256", + "content": "874cf09268bc51c0dd77267ef8e3d9948ff9c8c376a1b9ce911ca135b7baf9a5" + } + ] + }, + { + "bom-ref": "164c348a969afe06", + "type": "file", + "name": "/usr/share/bash-completion/completions/renice", + "hashes": [ + { + "alg": "SHA-1", + "content": "e71a05683ee770328d315546faa735e217536f9a" + }, + { + "alg": "SHA-256", + "content": "6fdf113c8a43356f2bddaff1613e3f66679f5f0b64d061a30e474f146163569b" + } + ] + }, + { + "bom-ref": "e35b1b9719ce83e3", + "type": "file", + "name": "/usr/share/bash-completion/completions/resizepart", + "hashes": [ + { + "alg": "SHA-1", + "content": "042f02299c6959d7144f1930789f79094c6e4e68" + }, + { + "alg": "SHA-256", + "content": "e0692d25787a3625816b07ea00ef66cfeada23fff0016cf0a37efd95ad84b0d5" + } + ] + }, + { + "bom-ref": "0bc11a532d093d26", + "type": "file", + "name": "/usr/share/bash-completion/completions/rev", + "hashes": [ + { + "alg": "SHA-1", + "content": "5c7004e84ad961fff850953258e72e4efcf5f0ec" + }, + { + "alg": "SHA-256", + "content": "ffab4735212694543267952b527e72f3ee4ac9b0e07d49b432db219bd26a3aae" + } + ] + }, + { + "bom-ref": "9554d674638699d6", + "type": "file", + "name": "/usr/share/bash-completion/completions/rtcwake", + "hashes": [ + { + "alg": "SHA-1", + "content": "9ca5329c1b893884bcddda0b04344fdcbe93a0bd" + }, + { + "alg": "SHA-256", + "content": "00d17c7f0f1d58372d1687ddc0004c0758818bc845de2caf1ec65435297b8a9b" + } + ] + }, + { + "bom-ref": "8f1ccf383e0e6bea", + "type": "file", + "name": "/usr/share/bash-completion/completions/script", + "hashes": [ + { + "alg": "SHA-1", + "content": "9c5982a08b96ff4f1767d503826956187f39d2d6" + }, + { + "alg": "SHA-256", + "content": "d6a324ae3d54016e7defbf7259e750bf86b73c5f9b822eae158889f17945167c" + } + ] + }, + { + "bom-ref": "439487e9d7c56789", + "type": "file", + "name": "/usr/share/bash-completion/completions/scriptreplay", + "hashes": [ + { + "alg": "SHA-1", + "content": "79c88bdcd306f20428099d3ed7d388747828c1e8" + }, + { + "alg": "SHA-256", + "content": "58d1c51c587e26dec022c31a4beaac423f4157b858a35a28dd6d3b4575f1111f" + } + ] + }, + { + "bom-ref": "ffa92e9e89ca9586", + "type": "file", + "name": "/usr/share/bash-completion/completions/setarch", + "hashes": [ + { + "alg": "SHA-1", + "content": "bf0ae521849c62366833a3793724d69eb2a204a0" + }, + { + "alg": "SHA-256", + "content": "bccea2e0e6fd329c9614c4c04f09093de21ba76595ef093bd70027df28bda533" + } + ] + }, + { + "bom-ref": "158191b54c46d5ea", + "type": "file", + "name": "/usr/share/bash-completion/completions/setpriv", + "hashes": [ + { + "alg": "SHA-1", + "content": "5a08d01c020927db51a69124055f5adf6f62448c" + }, + { + "alg": "SHA-256", + "content": "06ae6f7d80cdb4f1675690b89bf17298c9dfcc4c42c118fb04cf9cfa950cd3c8" + } + ] + }, + { + "bom-ref": "de1bb6ef91dbf458", + "type": "file", + "name": "/usr/share/bash-completion/completions/setsid", + "hashes": [ + { + "alg": "SHA-1", + "content": "3fee7139b8ecb800e922ea8b88ccdcb286466da8" + }, + { + "alg": "SHA-256", + "content": "376e5ac5d2a289c03bf36a8f9a86ae160cffc6693112043bf33d2d4f99614c30" + } + ] + }, + { + "bom-ref": "bceeb60f82e4c085", + "type": "file", + "name": "/usr/share/bash-completion/completions/setterm", + "hashes": [ + { + "alg": "SHA-1", + "content": "1b810345924a2f0e3853b87c62b434c57a949d8f" + }, + { + "alg": "SHA-256", + "content": "19ba4c6271e87a588517a67d2c02aae0683b2ab45c047784200e6a435da9248f" + } + ] + }, + { + "bom-ref": "123c18e26705feff", + "type": "file", + "name": "/usr/share/bash-completion/completions/sfdisk", + "hashes": [ + { + "alg": "SHA-1", + "content": "4e28762db5bbaf7deb5e932d9d65aaae75835f42" + }, + { + "alg": "SHA-256", + "content": "37d03e1a9db3c6d7539b46ac99395811c6d33a00c33ad400abff2765e0618bcc" + } + ] + }, + { + "bom-ref": "c05a374783113357", + "type": "file", + "name": "/usr/share/bash-completion/completions/su", + "hashes": [ + { + "alg": "SHA-1", + "content": "9bdbd36186191ecdd3b7a6a040bf62fdf355a6f8" + }, + { + "alg": "SHA-256", + "content": "f163759953aafc083e9ee25c20cda300ae01e37612eb24e54086cacffe1aca5a" + } + ] + }, + { + "bom-ref": "e11a90d7d32ec4d4", + "type": "file", + "name": "/usr/share/bash-completion/completions/swaplabel", + "hashes": [ + { + "alg": "SHA-1", + "content": "8e3d220da1365b70bc338c3adafb68a51bdb340b" + }, + { + "alg": "SHA-256", + "content": "1805b9fa1953570fa4bb99339afbb25a6d701ce5a442d22b8ddabe486b46c9c9" + } + ] + }, + { + "bom-ref": "516f2a91d70ae687", + "type": "file", + "name": "/usr/share/bash-completion/completions/swapoff", + "hashes": [ + { + "alg": "SHA-1", + "content": "5aa90bbd655fd080943ef9ac3979053361128cb8" + }, + { + "alg": "SHA-256", + "content": "e84478bfbcfb4eb0accf290e7b158085cb0db7f679afade1a270f7e1e731a691" + } + ] + }, + { + "bom-ref": "220b56805404c4cb", + "type": "file", + "name": "/usr/share/bash-completion/completions/swapon", + "hashes": [ + { + "alg": "SHA-1", + "content": "a34b9707c7ae2e96db198182593e841eeb234e39" + }, + { + "alg": "SHA-256", + "content": "717091ab909ce678799aef4aba00469550dfb05736640440686fecab2d41ae3c" + } + ] + }, + { + "bom-ref": "c34818507b2601cf", + "type": "file", + "name": "/usr/share/bash-completion/completions/taskset", + "hashes": [ + { + "alg": "SHA-1", + "content": "95a1b38ea7ae4ccd643fefe25bbac65ceec3ff9b" + }, + { + "alg": "SHA-256", + "content": "3128f328cc438f772ace3b8428c2be81f1bf061e3fe7d4c67a5c89b829654e36" + } + ] + }, + { + "bom-ref": "6f51f03593f0546e", + "type": "file", + "name": "/usr/share/bash-completion/completions/umount", + "hashes": [ + { + "alg": "SHA-1", + "content": "cbd93370b5f97e8a3297ca103048305a37479e77" + }, + { + "alg": "SHA-256", + "content": "bfd1b799c1a4b09c14bfad5995a4328dd2169815252c56a1efe4a12f29d53a1b" + } + ] + }, + { + "bom-ref": "2831389fc323328e", + "type": "file", + "name": "/usr/share/bash-completion/completions/unshare", + "hashes": [ + { + "alg": "SHA-1", + "content": "86831bb481b4f7db51b73b7a1a1cbd71f6e535e1" + }, + { + "alg": "SHA-256", + "content": "716ea1e75c1f6d2bb3480863ccb9f145a222dee237f766901083fc3f0b884644" + } + ] + }, + { + "bom-ref": "a91e7bb026a2ca03", + "type": "file", + "name": "/usr/share/bash-completion/completions/utmpdump", + "hashes": [ + { + "alg": "SHA-1", + "content": "1c571fa1b7769f3270270a71cd9cd4a0202ecaec" + }, + { + "alg": "SHA-256", + "content": "69a8a5a630ce32790499b7690d033c7d73c40c861a5985ca23c4f1585fd69b48" + } + ] + }, + { + "bom-ref": "b1f6f84bf1ca31d2", + "type": "file", + "name": "/usr/share/bash-completion/completions/wall", + "hashes": [ + { + "alg": "SHA-1", + "content": "906becc9681dececb4924b605aab8cb5cd2d9da9" + }, + { + "alg": "SHA-256", + "content": "bc527b9f476ec852921e2cbbc9fbfc2ecc4c1677c58103fb88678e25e11528a1" + } + ] + }, + { + "bom-ref": "17df0346d8d7e4c0", + "type": "file", + "name": "/usr/share/bash-completion/completions/wdctl", + "hashes": [ + { + "alg": "SHA-1", + "content": "4b4c95e5cc0d723729d8ee4e3ec32f99d77ecd24" + }, + { + "alg": "SHA-256", + "content": "d2c3148ba44506574ddfa4cb939d91bd99e8e83b73fbe36119cdba9452e68401" + } + ] + }, + { + "bom-ref": "8c83dbba7aaf0fc9", + "type": "file", + "name": "/usr/share/bash-completion/completions/whereis", + "hashes": [ + { + "alg": "SHA-1", + "content": "906a64de9762f25393d387a83d3bbfd8b34a86b6" + }, + { + "alg": "SHA-256", + "content": "2a040afc44337e73ffcb2b910180aacf09566b784f887e82255a09cc42689d50" + } + ] + }, + { + "bom-ref": "3c39866fbd4d43bb", + "type": "file", + "name": "/usr/share/bash-completion/completions/wipefs", + "hashes": [ + { + "alg": "SHA-1", + "content": "ede679e3f2ff2d53a4c8fb613b75d9166cfa722e" + }, + { + "alg": "SHA-256", + "content": "3850447cb9c3d7e2f2a99f556b88d944cb9b15be6fe9a0d9699ee62242b19412" + } + ] + }, + { + "bom-ref": "dd1aa5b4a57ad84b", + "type": "file", + "name": "/usr/share/bash-completion/completions/zramctl", + "hashes": [ + { + "alg": "SHA-1", + "content": "8f2777708bac7f4ee7f1f78f19043a33e6cfbeeb" + }, + { + "alg": "SHA-256", + "content": "3f7de813fbd3178cac3953891b3c2629f0f911001f2e6e480c25aab193510ebe" + } + ] + }, + { + "bom-ref": "94cfb6badfdedc57", + "type": "file", + "name": "/usr/share/bug/apt/script", + "hashes": [ + { + "alg": "SHA-1", + "content": "5c4fccbb703362ac2d15780606f3cb55c52b9bc8" + }, + { + "alg": "SHA-256", + "content": "b2cba592c2bd6e4077dd8b732d4895c22e77f555ed51540899b9a7bc908751bb" + } + ] + }, + { + "bom-ref": "6f9b67e0b444f7d8", + "type": "file", + "name": "/usr/share/bug/dpkg", + "hashes": [ + { + "alg": "SHA-1", + "content": "3c322bc2a74b42a29db4322a3fa8a9c2021f5ee5" + }, + { + "alg": "SHA-256", + "content": "c25b9bf426a98c31a5e744660f5ba647147a2f5588f538f76d3691e73b28b80c" + } + ] + }, + { + "bom-ref": "9780c8d15dbcf182", + "type": "file", + "name": "/usr/share/bug/init-system-helpers/control", + "hashes": [ + { + "alg": "SHA-1", + "content": "bc2c6c6013f430a68c1bc86eaa98af7b6a2ed019" + }, + { + "alg": "SHA-256", + "content": "c0306308b3e8655628cca8238616b8750ab7003201bdd68937a4739fe087ce5c" + } + ] + }, + { + "bom-ref": "67c55813f31dba46", + "type": "file", + "name": "/usr/share/common-licenses/Apache-2.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "2b8b815229aa8a61e483fb4ba0588b8b6c491890" + }, + { + "alg": "SHA-256", + "content": "cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30" + } + ] + }, + { + "bom-ref": "803ddc72450046ce", + "type": "file", + "name": "/usr/share/common-licenses/Artistic", + "hashes": [ + { + "alg": "SHA-1", + "content": "be0627fff2e8aef3d2a14d5d7486babc8a4873ba" + }, + { + "alg": "SHA-256", + "content": "b7fd9b73ea99602016a326e0b62e6646060d18febdd065ceca8bb482208c3d88" + } + ] + }, + { + "bom-ref": "afba75e9ca4f7093", + "type": "file", + "name": "/usr/share/common-licenses/BSD", + "hashes": [ + { + "alg": "SHA-1", + "content": "095d1f504f6fd8add73a4e4964e37f260f332b6a" + }, + { + "alg": "SHA-256", + "content": "5d588eb3b157d52112afea935c88a7ff9efddc1e2d95a42c25d3b96ad9055008" + } + ] + }, + { + "bom-ref": "eb3316e05a9e81c3", + "type": "file", + "name": "/usr/share/common-licenses/CC0-1.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "82da472f6d00dc5f0a651f33ebb320aa9c7b08d0" + }, + { + "alg": "SHA-256", + "content": "a2010f343487d3f7618affe54f789f5487602331c0a8d03f49e9a7c547cf0499" + } + ] + }, + { + "bom-ref": "e2ff0c48aa2e5c90", + "type": "file", + "name": "/usr/share/common-licenses/GFDL-1.2", + "hashes": [ + { + "alg": "SHA-1", + "content": "fcbf818f92ef8679a88f3778b12b4c8b5810545b" + }, + { + "alg": "SHA-256", + "content": "56976e64523fa1e68db4e6f464f5b2cb89d7d08f54b1d012e317b8db286b3faf" + } + ] + }, + { + "bom-ref": "4d57b0dda2974c1a", + "type": "file", + "name": "/usr/share/common-licenses/GFDL-1.3", + "hashes": [ + { + "alg": "SHA-1", + "content": "e1d31e42d2a477d6def889000aa8ffc251f2354c" + }, + { + "alg": "SHA-256", + "content": "4748f03ed2dbcc14cde6ebc30799899c403e356a7465dc30fcf2b80c45fc0059" + } + ] + }, + { + "bom-ref": "49b7f9c276d4bd52", + "type": "file", + "name": "/usr/share/common-licenses/GPL-1", + "hashes": [ + { + "alg": "SHA-1", + "content": "18eaf66587c5eea277721d5e569a6e3cd869f855" + }, + { + "alg": "SHA-256", + "content": "d77d235e41d54594865151f4751e835c5a82322b0e87ace266567c3391a4b912" + } + ] + }, + { + "bom-ref": "82bad77189dcddc6", + "type": "file", + "name": "/usr/share/common-licenses/GPL-2", + "hashes": [ + { + "alg": "SHA-1", + "content": "4cc77b90af91e615a64ae04893fdffa7939db84c" + }, + { + "alg": "SHA-256", + "content": "8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643" + } + ] + }, + { + "bom-ref": "57b1621fd139e3be", + "type": "file", + "name": "/usr/share/common-licenses/GPL-3", + "hashes": [ + { + "alg": "SHA-1", + "content": "8624bcdae55baeef00cd11d5dfcfa60f68710a02" + }, + { + "alg": "SHA-256", + "content": "8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903" + } + ] + }, + { + "bom-ref": "e34d5d21fff90c88", + "type": "file", + "name": "/usr/share/common-licenses/LGPL-2", + "hashes": [ + { + "alg": "SHA-1", + "content": "ba8966e2473a9969bdcab3dc82274c817cfd98a1" + }, + { + "alg": "SHA-256", + "content": "b7993225104d90ddd8024fd838faf300bea5e83d91203eab98e29512acebd69c" + } + ] + }, + { + "bom-ref": "df24232e1824688f", + "type": "file", + "name": "/usr/share/common-licenses/LGPL-2.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "01a6b4bf79aca9b556822601186afab86e8c4fbf" + }, + { + "alg": "SHA-256", + "content": "dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551" + } + ] + }, + { + "bom-ref": "df6970cc4db906bd", + "type": "file", + "name": "/usr/share/common-licenses/LGPL-3", + "hashes": [ + { + "alg": "SHA-1", + "content": "f45ee1c765646813b442ca58de72e20a64a7ddba" + }, + { + "alg": "SHA-256", + "content": "da7eabb7bafdf7d3ae5e9f223aa5bdc1eece45ac569dc21b3b037520b4464768" + } + ] + }, + { + "bom-ref": "9c2138931b3948be", + "type": "file", + "name": "/usr/share/common-licenses/MPL-1.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "ee93a1907dafcb7901b28f14ee05e49176ab7c87" + }, + { + "alg": "SHA-256", + "content": "f849fc26a7a99981611a3a370e83078deb617d12a45776d6c4cada4d338be469" + } + ] + }, + { + "bom-ref": "d16d00259a895701", + "type": "file", + "name": "/usr/share/common-licenses/MPL-2.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "9744cedce099f727b327cd9913a1fdc58a7f5599" + }, + { + "alg": "SHA-256", + "content": "fab3dd6bdab226f1c08630b1dd917e11fcb4ec5e1e020e2c16f83a0a13863e85" + } + ] + }, + { + "bom-ref": "fa79db32b6996332", + "type": "file", + "name": "/usr/share/debconf/confmodule", + "hashes": [ + { + "alg": "SHA-1", + "content": "ec2348ceb3861d43ab2fcab9da5734d2a20e1d9c" + }, + { + "alg": "SHA-256", + "content": "c441d29fb3a1e75d9a9b35535067f73abf7104ab77cd4286087a154517dfa3dd" + } + ] + }, + { + "bom-ref": "f1992dd1318373d3", + "type": "file", + "name": "/usr/share/debconf/confmodule.sh", + "hashes": [ + { + "alg": "SHA-1", + "content": "65f3de36c25e7baff823a44707c14c78d588b305" + }, + { + "alg": "SHA-256", + "content": "9bb739cea6c1f88c3282c6743a230acba64ac1d12c40a89daf12fe5f2390cb68" + } + ] + }, + { + "bom-ref": "f8c3194c98f7f6dc", + "type": "file", + "name": "/usr/share/debconf/debconf.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "52b154a47b950dfce5dff3103c656f69966a67f9" + }, + { + "alg": "SHA-256", + "content": "2ed2f1e25211c95ae120cecfff540e33a533c03bb2793504c3d692b0b034c2dd" + } + ] + }, + { + "bom-ref": "5fd12eb225a19783", + "type": "file", + "name": "/usr/share/debconf/fix_db.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "5e25875cabcb393d8513ea28d07ede4b53827b3c" + }, + { + "alg": "SHA-256", + "content": "3023d816728349ffe6647f852722046631f1802737753f75517ebff0461473df" + } + ] + }, + { + "bom-ref": "30189de1ce13b9c7", + "type": "file", + "name": "/usr/share/debconf/frontend", + "hashes": [ + { + "alg": "SHA-1", + "content": "e7eaf7b3ce2970e17351bf25dcb51d3cbad23edf" + }, + { + "alg": "SHA-256", + "content": "4425ec2e272875006ca7dde26d1c11b79a0a3570ececcd11f65baddd4b474ae0" + } + ] + }, + { + "bom-ref": "6084cfc28daad706", + "type": "file", + "name": "/usr/share/debconf/transition_db.pl", + "hashes": [ + { + "alg": "SHA-1", + "content": "24457df505bb4fe2697e7f185e21aad0705b8e66" + }, + { + "alg": "SHA-256", + "content": "9dbd7e5dcf314de4f1c1f15c46c69754f9c61c6be632b7c5a6efee08df0aa798" + } + ] + }, + { + "bom-ref": "c98b6afbbc151471", + "type": "file", + "name": "/usr/share/debianutils/shells", + "hashes": [ + { + "alg": "SHA-1", + "content": "4f360cd116c9366f8090f987d06a0f415f0c71a8" + }, + { + "alg": "SHA-256", + "content": "184fd1ac95af5ad460ee875e9fddb4975e8720ee7d805d964c68d125573537be" + } + ] + }, + { + "bom-ref": "3ec41edaa59b8ae2", + "type": "file", + "name": "/usr/share/doc-base/findutils", + "hashes": [ + { + "alg": "SHA-1", + "content": "2858e44bc9841dfbad3465e594198820819d396c" + }, + { + "alg": "SHA-256", + "content": "83026123456c2f7c1cc44196701180752a65423ade28344ef277cf577b12faa6" + } + ] + }, + { + "bom-ref": "6ec834183a25d065", + "type": "file", + "name": "/usr/share/doc-base/users-and-groups", + "hashes": [ + { + "alg": "SHA-1", + "content": "7013bfeff328ba446a0d01306f3264cbe8f908ed" + }, + { + "alg": "SHA-256", + "content": "159902a0284dbbcc039824ebab914948f8a803280fa2b67742b8f7fd40c50250" + } + ] + }, + { + "bom-ref": "68449184dd6193fa", + "type": "file", + "name": "/usr/share/doc/adduser/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "31388b9f41add43b5193c735ff757f98e0b56b4e" + }, + { + "alg": "SHA-256", + "content": "3e67668ed552fe3a0684e77282325d07fa8847f2575ea1e1906000de571b5c1e" + } + ] + }, + { + "bom-ref": "5835dd156119c0bd", + "type": "file", + "name": "/usr/share/doc/apt/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "a78f979f237619213f2a0dc4279020c775d2ac38" + }, + { + "alg": "SHA-256", + "content": "307e96c4b7e8170b422d86cfb04d9ae4a404e6d46755448331cdedb23cf1c3b0" + } + ] + }, + { + "bom-ref": "a024e6ef974490e1", + "type": "file", + "name": "/usr/share/doc/base-files/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "ead0e582771a70943265c346c0a16283ee46d513" + }, + { + "alg": "SHA-256", + "content": "cdb5461d8515002d0fe3babb764eec3877458b20f4e4bb16219f62ea953afeea" + } + ] + }, + { + "bom-ref": "fe0d9ed9923c1baf", + "type": "file", + "name": "/usr/share/doc/base-passwd/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "adefc60f944f90ee41d0ac84a9aeda5447987a30" + }, + { + "alg": "SHA-256", + "content": "a77c7e339acd99c86320ee3b47789eebbeaab1bc0d6b5eb966977c4ccf2a6563" + } + ] + }, + { + "bom-ref": "e819c370caccf13a", + "type": "file", + "name": "/usr/share/doc/bash/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "ec167386a742ce0d0a69b2eebbd9d7c6a223dbb0" + }, + { + "alg": "SHA-256", + "content": "da7a8d93abf1eccdeaf326642c8ce9ed760f3a973ca46f3f69b3cf755bb81ade" + } + ] + }, + { + "bom-ref": "177d0e68bc89ec85", + "type": "file", + "name": "/usr/share/doc/bsdutils/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "b0d6c1ee6ae5779cb634f2e65717725201cd53c0" + }, + { + "alg": "SHA-256", + "content": "9fe7275892298c35c8da084b1f5114e6baacb1af56aea0031d6dfec3097301f1" + } + ] + }, + { + "bom-ref": "ea23ab841c4521a7", + "type": "file", + "name": "/usr/share/doc/coreutils/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "83777ceb56f76ff602dfb10f2ac82277c730176e" + }, + { + "alg": "SHA-256", + "content": "350c1a60923248396acdf5aa3d20cdd5156e82648b3411bf9dff3a16b1ce9c7e" + } + ] + }, + { + "bom-ref": "69c9536b6aafe924", + "type": "file", + "name": "/usr/share/doc/dash/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "615fc49104b31c521d435f8f4776460bd19ef298" + }, + { + "alg": "SHA-256", + "content": "7c77d28679de92b8aca0b3dd400eabac91bf9f6c68171e49355888d2593a968f" + } + ] + }, + { + "bom-ref": "cfa0801fc7d2a33b", + "type": "file", + "name": "/usr/share/doc/debconf/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "a9e28b15ea1090dd00910c09f47b4844ed80d8ac" + }, + { + "alg": "SHA-256", + "content": "29162b7d5d9aabc3351d9e834dba936ee0e7b31d8bed2b87bea4b72745f36a66" + } + ] + }, + { + "bom-ref": "04c37f50a862967b", + "type": "file", + "name": "/usr/share/doc/debian-archive-keyring/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "5c99fb4a07cfc548bb209f469ef276106196b252" + }, + { + "alg": "SHA-256", + "content": "b32aecaae84643700a33bc9ee83fa9b36938d35aa7b61b5042092eca77ddb732" + } + ] + }, + { + "bom-ref": "3bd0e76d84eadf44", + "type": "file", + "name": "/usr/share/doc/debianutils/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "5319d6423e4da642ed0aa3f7b79ac7501843c888" + }, + { + "alg": "SHA-256", + "content": "a8698f078cd21fc501e66d070e12cf2f23ec1eaf5841bbc87629de76858ef7a7" + } + ] + }, + { + "bom-ref": "e1301ba84e4540c1", + "type": "file", + "name": "/usr/share/doc/diffutils/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "cacd7d5a52ec2dfeaf512ea45d7aa4d546749979" + }, + { + "alg": "SHA-256", + "content": "b3c97bfbcbb85a128e4408a67bbd7d2b4dd28469e9382a9b42ff4a72cad65024" + } + ] + }, + { + "bom-ref": "0a1fbccbcfbbe800", + "type": "file", + "name": "/usr/share/doc/dpkg/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "f749f6719867a620a66ada355fa5e351b914e3e5" + }, + { + "alg": "SHA-256", + "content": "1a87ca75439f4e5be763913b21e9d23476b7e5c37814b9a0500c819e437f9b8f" + } + ] + }, + { + "bom-ref": "23ba3393864ff4bd", + "type": "file", + "name": "/usr/share/doc/e2fsprogs/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "fc6b02ddb7365d99d34715f755cd7a1a44f59e8e" + }, + { + "alg": "SHA-256", + "content": "b7b391571e7253d4cf607e33e3b463895768fad264471e7774882974f834faa1" + } + ] + }, + { + "bom-ref": "989cd977e70ee157", + "type": "file", + "name": "/usr/share/doc/fdisk/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "b0d6c1ee6ae5779cb634f2e65717725201cd53c0" + }, + { + "alg": "SHA-256", + "content": "9fe7275892298c35c8da084b1f5114e6baacb1af56aea0031d6dfec3097301f1" + } + ] + }, + { + "bom-ref": "ab723a3b4ce8a36c", + "type": "file", + "name": "/usr/share/doc/findutils/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "5b46ef799873422a5e105ad4f2470cac2d6bf77f" + }, + { + "alg": "SHA-256", + "content": "fb98507cf4fa9d3fd299f8d493ae1b3ed0f4d3b530f88a5d4eab187be2a22e26" + } + ] + }, + { + "bom-ref": "d0ada769ddd9ca94", + "type": "file", + "name": "/usr/share/doc/gcc-8-base/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "384081e36f380ffd31b84f5fb1625ddb01cc6412" + }, + { + "alg": "SHA-256", + "content": "9865be517c31de50eb2b36a8957ccd97942807974afad2515578101d1168887a" + } + ] + }, + { + "bom-ref": "ecca6677f42d4558", + "type": "file", + "name": "/usr/share/doc/gpgv/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "cc497524f2e2ae1677f2b8699de4424ff66cb4b6" + }, + { + "alg": "SHA-256", + "content": "8e565dd3d0bf5675e3641b144a7e805ed11be4fbcfdcbc93dc869f7107c0f252" + } + ] + }, + { + "bom-ref": "dd31ca641287535e", + "type": "file", + "name": "/usr/share/doc/grep/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "07c64f0cfe0196aa7cd4cce2d949c2900d9dfc79" + }, + { + "alg": "SHA-256", + "content": "42d9b4d610396b1e8d1303dcb9487af3f5a2d2709623cf03a04cf76acdf6c5e3" + } + ] + }, + { + "bom-ref": "4b47bfe1dc848621", + "type": "file", + "name": "/usr/share/doc/gzip/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "37c2aea0e12b8948ce0c48935ac167442bc5e492" + }, + { + "alg": "SHA-256", + "content": "f9ac4a5d7a670e3891881a2cdba5fa2cd625c4d58eae4a7aa372ac00a06803bd" + } + ] + }, + { + "bom-ref": "9499c9d54cb04f05", + "type": "file", + "name": "/usr/share/doc/hostname/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "4ee28eb61e908c48a9d8e1885df467079d173af5" + }, + { + "alg": "SHA-256", + "content": "272c5b1c9235edc311f202b2a6abfff24ba96a47c779b4db3b97c2e60eb3e81a" + } + ] + }, + { + "bom-ref": "a221b91efa353b2b", + "type": "file", + "name": "/usr/share/doc/init-system-helpers/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "72cc0ea56f3548cb5f649cd6d1428e53f19569b8" + }, + { + "alg": "SHA-256", + "content": "6679b51cc827aeec6b2d10909435db6312a4ecb8a8a8a15cb7194d98460f8869" + } + ] + }, + { + "bom-ref": "2cec65930d3000f5", + "type": "file", + "name": "/usr/share/doc/libacl1/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "50560c96790ad20e386b50012221d6bf298e2e01" + }, + { + "alg": "SHA-256", + "content": "9a2dfb4a5abc7e84be2cc41f1089be665519c9409549296f6c19de57ab1d37c2" + } + ] + }, + { + "bom-ref": "81d903d15d1e7c2f", + "type": "file", + "name": "/usr/share/doc/libapt-pkg5.0/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "a78f979f237619213f2a0dc4279020c775d2ac38" + }, + { + "alg": "SHA-256", + "content": "307e96c4b7e8170b422d86cfb04d9ae4a404e6d46755448331cdedb23cf1c3b0" + } + ] + }, + { + "bom-ref": "a3e324c12d139ddb", + "type": "file", + "name": "/usr/share/doc/libattr1/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "f139a3ba90f2635b230183acd7ff4e8b2caae75e" + }, + { + "alg": "SHA-256", + "content": "0cbec745d85ea775450b2d54fac55277197f429e52d611f72852ed420450620e" + } + ] + }, + { + "bom-ref": "74ce42ceb4917b8b", + "type": "file", + "name": "/usr/share/doc/libaudit-common/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "88131231e40bbcca38b2852b7c8c84c5fc28dd74" + }, + { + "alg": "SHA-256", + "content": "44cda705476da1eea0a6ab4c3d941f756d7b995743214b6f2fa7c7d52d8813e2" + } + ] + }, + { + "bom-ref": "3d06a2468b93c4c1", + "type": "file", + "name": "/usr/share/doc/libaudit1/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "88131231e40bbcca38b2852b7c8c84c5fc28dd74" + }, + { + "alg": "SHA-256", + "content": "44cda705476da1eea0a6ab4c3d941f756d7b995743214b6f2fa7c7d52d8813e2" + } + ] + }, + { + "bom-ref": "908dca9e5306d6d1", + "type": "file", + "name": "/usr/share/doc/libblkid1/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "b0d6c1ee6ae5779cb634f2e65717725201cd53c0" + }, + { + "alg": "SHA-256", + "content": "9fe7275892298c35c8da084b1f5114e6baacb1af56aea0031d6dfec3097301f1" + } + ] + }, + { + "bom-ref": "cdf9f0288d4fd6e8", + "type": "file", + "name": "/usr/share/doc/libbz2-1.0/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "d29b4fd58a4a1923e6fd75369d58d7ded84e54de" + }, + { + "alg": "SHA-256", + "content": "832ed535ff3c3d025a8d2348eb1b697b89addcf2eaadbc17650262040b9145e2" + } + ] + }, + { + "bom-ref": "7a5a555f97b3135d", + "type": "file", + "name": "/usr/share/doc/libc-bin/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "5c4df62d190848821200ce4041d2753bd431a7eb" + }, + { + "alg": "SHA-256", + "content": "40c7e1f2118531f038ca22999bd976901254e1bc5cd1b0f0211bdd064c599987" + } + ] + }, + { + "bom-ref": "6f4bfa124fe29a9d", + "type": "file", + "name": "/usr/share/doc/libc6/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "5c4df62d190848821200ce4041d2753bd431a7eb" + }, + { + "alg": "SHA-256", + "content": "40c7e1f2118531f038ca22999bd976901254e1bc5cd1b0f0211bdd064c599987" + } + ] + }, + { + "bom-ref": "d007ebb9b3dee5f2", + "type": "file", + "name": "/usr/share/doc/libcap-ng0/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "d365603c1824ae72bf09c6613f03a8facbe21d07" + }, + { + "alg": "SHA-256", + "content": "8cdc2d0eeeb4ed84963c58be27389b148e830ce5ec42c2598cf194721d0430ec" + } + ] + }, + { + "bom-ref": "dfd87528c58627be", + "type": "file", + "name": "/usr/share/doc/libcom-err2/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "964940cab57f7a95a1ab2edf904e0018285c13f3" + }, + { + "alg": "SHA-256", + "content": "9e3a4384b6d8d2358d44103f62bcd948328b3f8a63a1a6baa66abeb43302d581" + } + ] + }, + { + "bom-ref": "393938b6d3f0cbf9", + "type": "file", + "name": "/usr/share/doc/libdb5.3/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "6b19d88c2421c47ec380b588ce0558f9b80574f6" + }, + { + "alg": "SHA-256", + "content": "b3bbc6fbb3f2a0e6a487e953eb8c3cc4bdb6f4150f7f51d20b1e9a3c8ef92d3d" + } + ] + }, + { + "bom-ref": "85a072eb69fe4d94", + "type": "file", + "name": "/usr/share/doc/libdebconfclient0/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "88f497736f11896da400269efd7d255d14bc2331" + }, + { + "alg": "SHA-256", + "content": "1f48252e8bd71085c67fe1f5468c67da1d2d7cc34cd8a7e9d90b9ad2df080e8e" + } + ] + }, + { + "bom-ref": "2ce11e0c88eb72f6", + "type": "file", + "name": "/usr/share/doc/libext2fs2/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "fc6b02ddb7365d99d34715f755cd7a1a44f59e8e" + }, + { + "alg": "SHA-256", + "content": "b7b391571e7253d4cf607e33e3b463895768fad264471e7774882974f834faa1" + } + ] + }, + { + "bom-ref": "1bdcab5d04d7995f", + "type": "file", + "name": "/usr/share/doc/libfdisk1/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "b0d6c1ee6ae5779cb634f2e65717725201cd53c0" + }, + { + "alg": "SHA-256", + "content": "9fe7275892298c35c8da084b1f5114e6baacb1af56aea0031d6dfec3097301f1" + } + ] + }, + { + "bom-ref": "ed4f88dc7c0c2385", + "type": "file", + "name": "/usr/share/doc/libffi6/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "da80f4f4082fe6cfabf61ed51f7059ae0c02424e" + }, + { + "alg": "SHA-256", + "content": "7258c8acc378030d8dbe1fcdf394e915769fa31dcbaf3d2991d9a79891f3bcdc" + } + ] + }, + { + "bom-ref": "c4f2b4d7214f631c", + "type": "file", + "name": "/usr/share/doc/libgcrypt20/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "697d2792af8686cbcf1720ed92edd313041e103e" + }, + { + "alg": "SHA-256", + "content": "26c21767c3a769ed688e2fe3d890963bd0992b5a53ee9cd18babd680e665f131" + } + ] + }, + { + "bom-ref": "c92997c457810b89", + "type": "file", + "name": "/usr/share/doc/libgmp10/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "d57b164902c5f5657f38711f25f0883f57722e56" + }, + { + "alg": "SHA-256", + "content": "f73f781beb9f85b3f921f9bf540fc89d6eff9e20689ef9323ce510d077a30878" + } + ] + }, + { + "bom-ref": "ccb2259ec97e8a7c", + "type": "file", + "name": "/usr/share/doc/libgnutls30/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "36379e049de0b6e6447225ba8ed51f447804063c" + }, + { + "alg": "SHA-256", + "content": "d35f0abecc61a3676965c20cf13a44815b05d9b4a68985fa1809b13c2aff9090" + } + ] + }, + { + "bom-ref": "46152a33af2f169a", + "type": "file", + "name": "/usr/share/doc/libgpg-error0/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "73486a0eb60de2396b9306a117bc82885d993594" + }, + { + "alg": "SHA-256", + "content": "ef74578dd392759954c80d4ad3986273d05d8c2098b2e9ee18980f88e0ad3342" + } + ] + }, + { + "bom-ref": "b467d6a5788827c9", + "type": "file", + "name": "/usr/share/doc/libidn2-0/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "c4f462d6880bdf10c6f370dd86ae52a979180e98" + }, + { + "alg": "SHA-256", + "content": "7266ea99392fc30a070358029621c5381fa73a9cec9111d1befb3edf2f379568" + } + ] + }, + { + "bom-ref": "bfcf08e058174c92", + "type": "file", + "name": "/usr/share/doc/liblz4-1/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "ab4cd2512a83c3ba76f3bb529f3233da95ba405e" + }, + { + "alg": "SHA-256", + "content": "a82c5d50439c6d9f32b874dbc75ae5292ba5a3e50318bed80e82a8f5254689ca" + } + ] + }, + { + "bom-ref": "dd55fc7fc95a8cf4", + "type": "file", + "name": "/usr/share/doc/liblzma5/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "1e2322cee162497b530386a6dddc00ffde6e601e" + }, + { + "alg": "SHA-256", + "content": "a2dc8fac0f496e1c58aff67018cf0c6b88336316afa5642f9335b71642e28aa8" + } + ] + }, + { + "bom-ref": "540ea297c0dba3ae", + "type": "file", + "name": "/usr/share/doc/libmount1/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "b0d6c1ee6ae5779cb634f2e65717725201cd53c0" + }, + { + "alg": "SHA-256", + "content": "9fe7275892298c35c8da084b1f5114e6baacb1af56aea0031d6dfec3097301f1" + } + ] + }, + { + "bom-ref": "9a665a1e64a6af9a", + "type": "file", + "name": "/usr/share/doc/libnettle6/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "285aa936bb57c1ecc16c01ba7edb7d7ae85ebc8f" + }, + { + "alg": "SHA-256", + "content": "84de5caab44520665c49dff405356c56de9d371a9f63cf67c09589af14c3f008" + } + ] + }, + { + "bom-ref": "2446cb4505508e16", + "type": "file", + "name": "/usr/share/doc/libp11-kit0/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "127c1aab48bef48205049847a3975711f3041016" + }, + { + "alg": "SHA-256", + "content": "7e0942c830cd46f69d01e0806c63b6757bb229b635f0bdd48bcc0e7c32ea4787" + } + ] + }, + { + "bom-ref": "adbf6f7cd942daa6", + "type": "file", + "name": "/usr/share/doc/libpam-modules-bin/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "4f6dd617065f06173e48f2cd98be073405b2d14b" + }, + { + "alg": "SHA-256", + "content": "7c584b7b1f37b612da7fdf3b076eb2b2c1bae72865f0699d745ae2ac7d40d13e" + } + ] + }, + { + "bom-ref": "61034c6cf1a63d4e", + "type": "file", + "name": "/usr/share/doc/libpam-modules/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "4f6dd617065f06173e48f2cd98be073405b2d14b" + }, + { + "alg": "SHA-256", + "content": "7c584b7b1f37b612da7fdf3b076eb2b2c1bae72865f0699d745ae2ac7d40d13e" + } + ] + }, + { + "bom-ref": "fa50d5bb106640c5", + "type": "file", + "name": "/usr/share/doc/libpam-runtime/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "4f6dd617065f06173e48f2cd98be073405b2d14b" + }, + { + "alg": "SHA-256", + "content": "7c584b7b1f37b612da7fdf3b076eb2b2c1bae72865f0699d745ae2ac7d40d13e" + } + ] + }, + { + "bom-ref": "810df1339419d539", + "type": "file", + "name": "/usr/share/doc/libpam0g/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "4f6dd617065f06173e48f2cd98be073405b2d14b" + }, + { + "alg": "SHA-256", + "content": "7c584b7b1f37b612da7fdf3b076eb2b2c1bae72865f0699d745ae2ac7d40d13e" + } + ] + }, + { + "bom-ref": "81f489454b416c59", + "type": "file", + "name": "/usr/share/doc/libpcre3/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "4fbf031fd132fc284b85934b33df5c858b1e83df" + }, + { + "alg": "SHA-256", + "content": "ac9276490d2fa167442ae1aae33926514ad10c8886baa40046c5e367fccc5938" + } + ] + }, + { + "bom-ref": "a99346798d335209", + "type": "file", + "name": "/usr/share/doc/libseccomp2/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "64fc5a7c28d530bfb4daf70fa41d0946a8c98319" + }, + { + "alg": "SHA-256", + "content": "6da0653a365b80ab31478dbfe9e7c358e80d58b6d2b52b4e16b4dbb42d7d9f5c" + } + ] + }, + { + "bom-ref": "51646cf67af0ee49", + "type": "file", + "name": "/usr/share/doc/libselinux1/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "7457a4fcc8b1f370f9fabb1f3e1df3bd7426977c" + }, + { + "alg": "SHA-256", + "content": "641806738b0c6a3d03168c2649e6b94205198bb66cd557e6bae3a20b71c9bb0b" + } + ] + }, + { + "bom-ref": "68136b838d49a259", + "type": "file", + "name": "/usr/share/doc/libsemanage-common/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "80f13496ec787fb5b457c6cdd9b0fa4b284865be" + }, + { + "alg": "SHA-256", + "content": "e00e6a86c598f9e24ced0180a70a5f2f2e45e133d93adf2b17ce8a06ce4b1b51" + } + ] + }, + { + "bom-ref": "20c7856cce787fcb", + "type": "file", + "name": "/usr/share/doc/libsemanage1/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "80f13496ec787fb5b457c6cdd9b0fa4b284865be" + }, + { + "alg": "SHA-256", + "content": "e00e6a86c598f9e24ced0180a70a5f2f2e45e133d93adf2b17ce8a06ce4b1b51" + } + ] + }, + { + "bom-ref": "8f05dad219b5f871", + "type": "file", + "name": "/usr/share/doc/libsepol1/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "eef1f936876810bdc90eb31dcffabaa2a461702b" + }, + { + "alg": "SHA-256", + "content": "34414ad829fcea0064729c14f1f900632bfa7d38061b13a9797eec320c372d9e" + } + ] + }, + { + "bom-ref": "2480d34f17a5c272", + "type": "file", + "name": "/usr/share/doc/libsmartcols1/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "b0d6c1ee6ae5779cb634f2e65717725201cd53c0" + }, + { + "alg": "SHA-256", + "content": "9fe7275892298c35c8da084b1f5114e6baacb1af56aea0031d6dfec3097301f1" + } + ] + }, + { + "bom-ref": "a7f21c997cadb0fa", + "type": "file", + "name": "/usr/share/doc/libss2/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "67e778ea9b95ab6ab7b40ba50986c2d6dac124da" + }, + { + "alg": "SHA-256", + "content": "6f717a1464301a641ac17e7301f1a1b221da802e8edf8cf4bc963721d487b146" + } + ] + }, + { + "bom-ref": "1d019285db11bcfb", + "type": "file", + "name": "/usr/share/doc/libsystemd0/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "5fcefe8d03de158446e2749ba29fcd404f5b0b57" + }, + { + "alg": "SHA-256", + "content": "c4b0169d4d79af9996c35f65c75daa1f919e1eac60180295c18331a31deb134c" + } + ] + }, + { + "bom-ref": "21a8f52c91009ed3", + "type": "file", + "name": "/usr/share/doc/libtasn1-6/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "092bf1eebd07625a23b844d767001cbb2ef9b625" + }, + { + "alg": "SHA-256", + "content": "dc1e5deaae0e497cdf0833a38742749695ad77fb8cfb5ef1e608724e6add9c81" + } + ] + }, + { + "bom-ref": "d9b0f9c0678d7fb2", + "type": "file", + "name": "/usr/share/doc/libtinfo6/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "37dcd9c6a4af70f278c55c8370a1dfd610058c22" + }, + { + "alg": "SHA-256", + "content": "5e8ee902c8906ddb7779fd36dc9979cb08b51fbebf7c0b1a9aeb78af382af590" + } + ] + }, + { + "bom-ref": "f25ebf3b2df7c200", + "type": "file", + "name": "/usr/share/doc/libudev1/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "5fcefe8d03de158446e2749ba29fcd404f5b0b57" + }, + { + "alg": "SHA-256", + "content": "c4b0169d4d79af9996c35f65c75daa1f919e1eac60180295c18331a31deb134c" + } + ] + }, + { + "bom-ref": "5a5e62a41604be0f", + "type": "file", + "name": "/usr/share/doc/libunistring2/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "fba3b7b26f1df1e7b497f4be1825dfdbfccfc279" + }, + { + "alg": "SHA-256", + "content": "61b72a0430a1ec0c5cbabf6982bb4e4f7b4f040c50a31bbd503e95f890a32c87" + } + ] + }, + { + "bom-ref": "dbc893d2cbdb837b", + "type": "file", + "name": "/usr/share/doc/libuuid1/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "b0d6c1ee6ae5779cb634f2e65717725201cd53c0" + }, + { + "alg": "SHA-256", + "content": "9fe7275892298c35c8da084b1f5114e6baacb1af56aea0031d6dfec3097301f1" + } + ] + }, + { + "bom-ref": "7eca8f5e2aff279d", + "type": "file", + "name": "/usr/share/doc/libzstd1/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "7df6e78680e189da370a4606e71c45c7ffea5337" + }, + { + "alg": "SHA-256", + "content": "61dd6d9f6c02e3ccb52dc6924ddea5808be432835a454b64d807db546d80c25f" + } + ] + }, + { + "bom-ref": "005fe6228cec9ebb", + "type": "file", + "name": "/usr/share/doc/login/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "6cf403ae824277b0dbf6424d83262997442be5ea" + }, + { + "alg": "SHA-256", + "content": "56ca9c00cdef4d69b35d2013465c539eb9e09a80fec538d0f6dc91423dbaa1d3" + } + ] + }, + { + "bom-ref": "1d2a3da9ae96bda2", + "type": "file", + "name": "/usr/share/doc/mawk/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "9de239f48e335976027302ad1f672ff01e3873ff" + }, + { + "alg": "SHA-256", + "content": "80910bdabaf183ae4d3ffd72d9fe9066a9a1035be8e5d7dd541ddc6755d19abb" + } + ] + }, + { + "bom-ref": "10d131a95602437d", + "type": "file", + "name": "/usr/share/doc/mount/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "b0d6c1ee6ae5779cb634f2e65717725201cd53c0" + }, + { + "alg": "SHA-256", + "content": "9fe7275892298c35c8da084b1f5114e6baacb1af56aea0031d6dfec3097301f1" + } + ] + }, + { + "bom-ref": "3b78b8e21b22e0c5", + "type": "file", + "name": "/usr/share/doc/ncurses-base/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "37dcd9c6a4af70f278c55c8370a1dfd610058c22" + }, + { + "alg": "SHA-256", + "content": "5e8ee902c8906ddb7779fd36dc9979cb08b51fbebf7c0b1a9aeb78af382af590" + } + ] + }, + { + "bom-ref": "059332ea8e39eb67", + "type": "file", + "name": "/usr/share/doc/ncurses-bin/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "37dcd9c6a4af70f278c55c8370a1dfd610058c22" + }, + { + "alg": "SHA-256", + "content": "5e8ee902c8906ddb7779fd36dc9979cb08b51fbebf7c0b1a9aeb78af382af590" + } + ] + }, + { + "bom-ref": "0555889a73b1072e", + "type": "file", + "name": "/usr/share/doc/passwd/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "6cf403ae824277b0dbf6424d83262997442be5ea" + }, + { + "alg": "SHA-256", + "content": "56ca9c00cdef4d69b35d2013465c539eb9e09a80fec538d0f6dc91423dbaa1d3" + } + ] + }, + { + "bom-ref": "7dd889cd535c4ee0", + "type": "file", + "name": "/usr/share/doc/perl/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "7dbffb4103bf00705d3ae598a9739e4a4e8938bf" + }, + { + "alg": "SHA-256", + "content": "d4d4d09e501ff40950f29373512a4db1721604a5c3e0c0d9510f23f72ef0860c" + } + ] + }, + { + "bom-ref": "960d7c1077634fca", + "type": "file", + "name": "/usr/share/doc/sed/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "e8a478d071577c0f555120a909538ab015adb2e8" + }, + { + "alg": "SHA-256", + "content": "60886b6264e9531565ccf1e31a63cd9b23f0bf4bbd7053b46aa9e6ae7622d31d" + } + ] + }, + { + "bom-ref": "1a7c5faa3f1df97c", + "type": "file", + "name": "/usr/share/doc/sysvinit-utils/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "66130e3610ecfee561a2690f95714d267fd7ccc6" + }, + { + "alg": "SHA-256", + "content": "ce1edf366d5e3d9a26ca2708247ce57c7475c526ec7f8048fb5ca0296e2c2837" + } + ] + }, + { + "bom-ref": "c260f0937fc050cb", + "type": "file", + "name": "/usr/share/doc/tar/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "6684fe4a523a2266552fb5f3af6266af7674dfa6" + }, + { + "alg": "SHA-256", + "content": "9292780f2dfd11900e92ea67c7a316cf9df740b955956f87ec099a5b4f3d9136" + } + ] + }, + { + "bom-ref": "91cf0fdf6575c0b4", + "type": "file", + "name": "/usr/share/doc/tzdata/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "372af7c5572684c49c9bb641c2a2a42f0967cc67" + }, + { + "alg": "SHA-256", + "content": "75b41b8de75b1596a239f6fa8e4caa409de4cf985cee2943d2a94b4e96a5197d" + } + ] + }, + { + "bom-ref": "ffa1bcb2a229c5d3", + "type": "file", + "name": "/usr/share/doc/util-linux/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "b0d6c1ee6ae5779cb634f2e65717725201cd53c0" + }, + { + "alg": "SHA-256", + "content": "9fe7275892298c35c8da084b1f5114e6baacb1af56aea0031d6dfec3097301f1" + } + ] + }, + { + "bom-ref": "81ba383cf93074da", + "type": "file", + "name": "/usr/share/doc/zlib1g/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "39128d0780a010c6fa3b9002b383a98a7439dee5" + }, + { + "alg": "SHA-256", + "content": "d77204eee882807240f6351c4f5ae2a4bcdb5b773ff77d10647b9b66b826b2fb" + } + ] + }, + { + "bom-ref": "f57acc87558d09e6", + "type": "file", + "name": "/usr/share/dpkg/abitable", + "hashes": [ + { + "alg": "SHA-1", + "content": "f217c6a7b190107dedb49c792653f19322f65193" + }, + { + "alg": "SHA-256", + "content": "c9ed655f391a2dffdfee2070e9c4bd1f502ffff17d19abff21ba492ab643c919" + } + ] + }, + { + "bom-ref": "d0b5f3636a2661f9", + "type": "file", + "name": "/usr/share/dpkg/cputable", + "hashes": [ + { + "alg": "SHA-1", + "content": "113af339a74ad34b6f3adaa35e5311e96d9789dc" + }, + { + "alg": "SHA-256", + "content": "88d770b7e95d793c6250285c4d901365487c44e460a8ebdd4895685f7613d104" + } + ] + }, + { + "bom-ref": "9254d4309bdf1d2c", + "type": "file", + "name": "/usr/share/dpkg/ostable", + "hashes": [ + { + "alg": "SHA-1", + "content": "f3a941c26e8f6a4f7c3b43b14714ab013e9d089d" + }, + { + "alg": "SHA-256", + "content": "49b8a094236fd9f06463afab94d49956cf6fba363ec14d75da6ae3310214ca42" + } + ] + }, + { + "bom-ref": "e987b540cd8a534d", + "type": "file", + "name": "/usr/share/dpkg/tupletable", + "hashes": [ + { + "alg": "SHA-1", + "content": "fccda70d1771b3bca71f0b6ca0aa5e7da3590b93" + }, + { + "alg": "SHA-256", + "content": "8e67a11365119686218b5a245c60fc62484050daf676c6e009d9a0a0e4265f0a" + } + ] + }, + { + "bom-ref": "f240ec2e394b7f38", + "type": "file", + "name": "/usr/share/gcc-8/python/libstdcxx/__init__.py", + "hashes": [ + { + "alg": "SHA-1", + "content": "adc83b19e793491b1c6ea0fd8b46cd9f32e592fc" + }, + { + "alg": "SHA-256", + "content": "01ba4719c80b6fe911b091a7c05124b64eeece964e09c058ef8f9805daca546b" + } + ] + }, + { + "bom-ref": "1e4b41dbee4c8322", + "type": "file", + "name": "/usr/share/gcc-8/python/libstdcxx/v6/__init__.py", + "hashes": [ + { + "alg": "SHA-1", + "content": "47a94a4c7ae319ddeddea45d8c60854f4cf80c50" + }, + { + "alg": "SHA-256", + "content": "fc792a50d118d5feb068481d0328f89fe8762b7705011910281bfe65c1170c8f" + } + ] + }, + { + "bom-ref": "af32f44a32ac2f9c", + "type": "file", + "name": "/usr/share/gcc-8/python/libstdcxx/v6/printers.py", + "hashes": [ + { + "alg": "SHA-1", + "content": "120175fe9c596fb98e17650dc8ff6979212a8f84" + }, + { + "alg": "SHA-256", + "content": "1e7e02c740c4cc73e5992d39d0f6e8bcf580dbbf52b65f96d70923db2069e800" + } + ] + }, + { + "bom-ref": "d020cdfdaf47c7f9", + "type": "file", + "name": "/usr/share/gcc-8/python/libstdcxx/v6/xmethods.py", + "hashes": [ + { + "alg": "SHA-1", + "content": "9a3595a01636b3c76dfa45907fa09661f4dc5afa" + }, + { + "alg": "SHA-256", + "content": "98db47a3b61cf963823b628160a329db5c38812a0886deeca7195046df87a908" + } + ] + }, + { + "bom-ref": "d206f75eee94e52c", + "type": "file", + "name": "/usr/share/gdb/auto-load/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25-gdb.py", + "hashes": [ + { + "alg": "SHA-1", + "content": "7548794459302e04df1bad2812fd8d8425bac892" + }, + { + "alg": "SHA-256", + "content": "d6380489539aa349920cb13761c9d3dd223866f05320a195ace37566fd064572" + } + ] + }, + { + "bom-ref": "75dc68068d61124f", + "type": "file", + "name": "/usr/share/keyrings/debian-archive-bullseye-automatic.gpg", + "hashes": [ + { + "alg": "SHA-1", + "content": "27d0f29dc003b5a8c91ba4d61eb39b7a4301c4c1" + }, + { + "alg": "SHA-256", + "content": "9395df01c1c6226584206a77d237c60fdc7039a015ece4e6bd3b1947db6c3b1e" + } + ] + }, + { + "bom-ref": "7649d555efd34a43", + "type": "file", + "name": "/usr/share/keyrings/debian-archive-bullseye-security-automatic.gpg", + "hashes": [ + { + "alg": "SHA-1", + "content": "4c3899132dad707cbbe44cf490ba43e35a0dec12" + }, + { + "alg": "SHA-256", + "content": "e551f90fa954a65b3b6c54160f9d8485bee806318afe7a6998c4d9bece8e0df3" + } + ] + }, + { + "bom-ref": "d4f938feef64ada2", + "type": "file", + "name": "/usr/share/keyrings/debian-archive-bullseye-stable.gpg", + "hashes": [ + { + "alg": "SHA-1", + "content": "30a6bce0cab0fe98ca0b13447904f14c33f60b45" + }, + { + "alg": "SHA-256", + "content": "0cdd043ff2e04448802488fd4a4e3812c298a1ab5d81374ea9a9693a274cef8c" + } + ] + }, + { + "bom-ref": "d2e5595b4090be1b", + "type": "file", + "name": "/usr/share/keyrings/debian-archive-buster-automatic.gpg", + "hashes": [ + { + "alg": "SHA-1", + "content": "a6f83aced5193f1f7c1e155785f5b61d38361615" + }, + { + "alg": "SHA-256", + "content": "89d89bcedee9ed88b25eabb5be786fbca6259f121e6ad6ebf5651f852f5227cf" + } + ] + }, + { + "bom-ref": "21dbaa4c354aa179", + "type": "file", + "name": "/usr/share/keyrings/debian-archive-buster-security-automatic.gpg", + "hashes": [ + { + "alg": "SHA-1", + "content": "400181c4e2ebaf97a4e8b37b904b6bbe94998429" + }, + { + "alg": "SHA-256", + "content": "bd5d7f0384531497968f1866efa6118938e812582a8d2fe86d87b0266c495783" + } + ] + }, + { + "bom-ref": "58ae5f56a3cfc170", + "type": "file", + "name": "/usr/share/keyrings/debian-archive-buster-stable.gpg", + "hashes": [ + { + "alg": "SHA-1", + "content": "a4f90d5b993f61a779f40bc1dff6551a5d7b2b03" + }, + { + "alg": "SHA-256", + "content": "488a60d5065a97cc8b3c907be6d2c12ba5dee5b88f5efeebbd8beb60cc9cced1" + } + ] + }, + { + "bom-ref": "2c80310af7852ca1", + "type": "file", + "name": "/usr/share/keyrings/debian-archive-keyring.gpg", + "hashes": [ + { + "alg": "SHA-1", + "content": "840de30631af61f66914d4f2a162d4dd15dda88b" + }, + { + "alg": "SHA-256", + "content": "a75b59c2c00e3e84dc5c37cf2a459702bd8e0f990d09bf4c3acb6dd2953a3998" + } + ] + }, + { + "bom-ref": "27959408624a5bb5", + "type": "file", + "name": "/usr/share/keyrings/debian-archive-removed-keys.gpg", + "hashes": [ + { + "alg": "SHA-1", + "content": "1f98e588d8eb046df11dbf7d02f2f986a172382a" + }, + { + "alg": "SHA-256", + "content": "2bf17b8b38083e34a0bd6787264f3827df849a66d6960d3f11e77acb5c340922" + } + ] + }, + { + "bom-ref": "0bc69db7d2234f69", + "type": "file", + "name": "/usr/share/keyrings/debian-archive-stretch-automatic.gpg", + "hashes": [ + { + "alg": "SHA-1", + "content": "d62ea924a47d9a3fb24f8a98e32bd88947ba2986" + }, + { + "alg": "SHA-256", + "content": "6e6648330a58db617dd13ba9f51b4101932559d477e7fe5fb656d3a4352efb57" + } + ] + }, + { + "bom-ref": "fe2ffc7f96b4d117", + "type": "file", + "name": "/usr/share/keyrings/debian-archive-stretch-security-automatic.gpg", + "hashes": [ + { + "alg": "SHA-1", + "content": "2687cdcd03c9d5a22e619783b721cdfd60fb7fbd" + }, + { + "alg": "SHA-256", + "content": "481618230f62a29729c58e35684eec7be8774c68b7f94f4a70dae668874e12df" + } + ] + }, + { + "bom-ref": "0a87d4946e442ae2", + "type": "file", + "name": "/usr/share/keyrings/debian-archive-stretch-stable.gpg", + "hashes": [ + { + "alg": "SHA-1", + "content": "6f24e387825ddc9f9df9192e5f94c7c6464885b2" + }, + { + "alg": "SHA-256", + "content": "5306306431152a3fc27406f420b9e1d9905c221ad9565ac7f11abaa3867b0885" + } + ] + }, + { + "bom-ref": "5f6aa9a8c130ef84", + "type": "file", + "name": "/usr/share/libc-bin/nsswitch.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "6dffef69c10367a91b048d9180a4424eede80b74" + }, + { + "alg": "SHA-256", + "content": "eec30745bade42a3f3f792e4d4192e57d2bcfe8e472433b1de426fe39a39cddb" + } + ] + }, + { + "bom-ref": "f6c7e7ec4e82cf74", + "type": "file", + "name": "/usr/share/lintian/profiles/dpkg/main.profile", + "hashes": [ + { + "alg": "SHA-1", + "content": "e744141dcd15fb4e2c10ecf50458a2d70f000081" + }, + { + "alg": "SHA-256", + "content": "9c7ad7d30a894b98266051bab347007009898aa0ddd0aa234cc127a92aefd0d0" + } + ] + }, + { + "bom-ref": "1f45c2944b9d215f", + "type": "file", + "name": "/usr/share/menu/bash", + "hashes": [ + { + "alg": "SHA-1", + "content": "076b29db00bf32456969bd5b1815df7a806abfa4" + }, + { + "alg": "SHA-256", + "content": "1e862c7883df7a31e995769e90b4e6b87399a70f2cad6b2ce95fd865975286aa" + } + ] + }, + { + "bom-ref": "a65b5a88d2ac41ce", + "type": "file", + "name": "/usr/share/menu/dash", + "hashes": [ + { + "alg": "SHA-1", + "content": "28daf8a290b88e61acf188ed687992e2b42e8f9e" + }, + { + "alg": "SHA-256", + "content": "c8bdff923cdb32fc55c80c70546c344e22444dfdccdea6280d9c4c6fa25c7c38" + } + ] + }, + { + "bom-ref": "d2bd8bf3e5932915", + "type": "file", + "name": "/usr/share/pam-configs/mkhomedir", + "hashes": [ + { + "alg": "SHA-1", + "content": "01da6ef5f074c49588a5f08e9084558f2454d319" + }, + { + "alg": "SHA-256", + "content": "ea2840c7336e177f75943580824fe69a5edff790c30c1c40c286462151e22dfa" + } + ] + }, + { + "bom-ref": "3a0679fc0f0b2813", + "type": "file", + "name": "/usr/share/pam-configs/unix", + "hashes": [ + { + "alg": "SHA-1", + "content": "727dc8f53ceaea0264d0877fcbb2a52eb341ff10" + }, + { + "alg": "SHA-256", + "content": "5b434421d10875a53932e967eddc9b885ea42bd9f1360600af04248e8d42be74" + } + ] + }, + { + "bom-ref": "7c0701caf897da96", + "type": "file", + "name": "/usr/share/pam/common-account", + "hashes": [ + { + "alg": "SHA-1", + "content": "dc0573f2ff8f2fc9b73566aafc08f1932f97161e" + }, + { + "alg": "SHA-256", + "content": "8657819f898333b2ff09e8bb4fcc6ffabb02acd015411d0ec89f28a70e672537" + } + ] + }, + { + "bom-ref": "dec0efc0cc43d621", + "type": "file", + "name": "/usr/share/pam/common-account.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "3c813640dfab3bb74d75c3a21fd69b067e55d8c7" + }, + { + "alg": "SHA-256", + "content": "8e2e9985399c29f44638f97acc1b71f9b2b946cfedb21ead16a54cd12c25992a" + } + ] + }, + { + "bom-ref": "d895c20ba0895050", + "type": "file", + "name": "/usr/share/pam/common-auth", + "hashes": [ + { + "alg": "SHA-1", + "content": "483e67258ebaf6ea234773804eca370267fea030" + }, + { + "alg": "SHA-256", + "content": "940827d13f472a45ebd38cca4c4b2f91b7fc22f08a266a9e987222e88df4cc9b" + } + ] + }, + { + "bom-ref": "74dbb82d75fc1c6f", + "type": "file", + "name": "/usr/share/pam/common-auth.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "5bec296feed2e1ee63844074e0211549b1d796d6" + }, + { + "alg": "SHA-256", + "content": "9dfd7b4897f508b7e327e7a511c7d097551d7063145b411e266aa91f2c0c1d57" + } + ] + }, + { + "bom-ref": "9f40897563d01962", + "type": "file", + "name": "/usr/share/pam/common-password", + "hashes": [ + { + "alg": "SHA-1", + "content": "6106317c56b17c5dee2adb2156223a1a35fd3aa5" + }, + { + "alg": "SHA-256", + "content": "fa54ac2f7b8f18c22c1a73dc63d471bfd2694686686fd244d02cd774772dc911" + } + ] + }, + { + "bom-ref": "ce83895bf333ede0", + "type": "file", + "name": "/usr/share/pam/common-password.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "75ae9a1a6c4ddedd753e8dfbe215125bf5c919bc" + }, + { + "alg": "SHA-256", + "content": "5f44a9db909d4ec8cc580261a4674f9a609ad5e7a776a7896087b738e9581b38" + } + ] + }, + { + "bom-ref": "5757432efd3d7f7a", + "type": "file", + "name": "/usr/share/pam/common-session", + "hashes": [ + { + "alg": "SHA-1", + "content": "0bd34b41e75c07e4d521e9fb229cab47e0a479fd" + }, + { + "alg": "SHA-256", + "content": "b1413e5c9105ebdaec6be4eee00535552331a09c5f6206006e8c280374b5a2df" + } + ] + }, + { + "bom-ref": "f4a4f1efd970c907", + "type": "file", + "name": "/usr/share/pam/common-session-noninteractive", + "hashes": [ + { + "alg": "SHA-1", + "content": "2e5f555beff3731d027fed20072ba528f2cb5758" + }, + { + "alg": "SHA-256", + "content": "7ac763203bc998dde4c1ddbdf0c572be2afa61e3f59d82194a51f7b3a5d11f7f" + } + ] + }, + { + "bom-ref": "f4cd678100c84fb7", + "type": "file", + "name": "/usr/share/pam/common-session-noninteractive.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "84e8ae9d5fb3816a33fa83c6e803d30c2dcc53aa" + }, + { + "alg": "SHA-256", + "content": "c4e029edf22d18a793db84b3092d36b88ddfacc5e361b785364e4756755b10e1" + } + ] + }, + { + "bom-ref": "35114347f1a749b2", + "type": "file", + "name": "/usr/share/pam/common-session.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "cc9918b908f52c7c298d8ddb58b208bfb4dfb55d" + }, + { + "alg": "SHA-256", + "content": "b80d0e21fd90493886ba1dd4a4fbacf283e6ffc07815469a0ccb130f2e5d156b" + } + ] + }, + { + "bom-ref": "7683bdf9aa56cc2d", + "type": "file", + "name": "/usr/share/perl5/Debconf/AutoSelect.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "e107e183410ea3afdb443cb398097c9a11c9e754" + }, + { + "alg": "SHA-256", + "content": "1ba6314adcb7339b9730255a752b78863688d7628fe75fe5d02ea04607b7f80d" + } + ] + }, + { + "bom-ref": "f5cb831360b697c4", + "type": "file", + "name": "/usr/share/perl5/Debconf/Base.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "6122fa7bf985a3dba2b8a7b6355222da172ca993" + }, + { + "alg": "SHA-256", + "content": "66ddc0f2cb2cae1e92bce9f5ae48cc82aea652a9ade8ab86cf9a1a3093e1f3e1" + } + ] + }, + { + "bom-ref": "0d23b7808c5dc4d0", + "type": "file", + "name": "/usr/share/perl5/Debconf/Client/ConfModule.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "b50df3b24b8ac4cfa07aa84dd930887ca510a65f" + }, + { + "alg": "SHA-256", + "content": "7d1b308c40b249d160ca49488f5ef1658db695940b53c7bf83bc89f49640b066" + } + ] + }, + { + "bom-ref": "075bf35233073601", + "type": "file", + "name": "/usr/share/perl5/Debconf/ConfModule.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "ba68143a442a8a7ee46f6d6f666bcb9e0eb5b017" + }, + { + "alg": "SHA-256", + "content": "387c6f3a403d3e4cd862b3e68450ab014be1b3b7b6c5824e09ad2f590aae2314" + } + ] + }, + { + "bom-ref": "a699e11fdfc9ec93", + "type": "file", + "name": "/usr/share/perl5/Debconf/Config.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "96b35c728b9570b37a9e3b085feac97d8c446eba" + }, + { + "alg": "SHA-256", + "content": "cd8de0d581b2ef08ff3deddd060fed52e4a914ddc0b59d46e3af617ee4961d1d" + } + ] + }, + { + "bom-ref": "1725126a6b9e3744", + "type": "file", + "name": "/usr/share/perl5/Debconf/Db.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "f7505af908ff3f42d42b9cf41cfe245c8ecc4595" + }, + { + "alg": "SHA-256", + "content": "c0e7a554455e3cf9c42d937bbc8a701627b43f048cbf7a1d7590af44f218338f" + } + ] + }, + { + "bom-ref": "520be2d6b6cd2dc4", + "type": "file", + "name": "/usr/share/perl5/Debconf/DbDriver.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "49aaa9fa144c0ddfb1d5a00cc0de2ceb74d19924" + }, + { + "alg": "SHA-256", + "content": "7ce0f564262a8d5dcdc1027951b080af151669b1841ac88cf6db54f9f5dcacab" + } + ] + }, + { + "bom-ref": "70c2ea51728c4bc0", + "type": "file", + "name": "/usr/share/perl5/Debconf/DbDriver/Backup.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "4423c82d0001e5f0d481c5179db639e6e790175c" + }, + { + "alg": "SHA-256", + "content": "0dd39de90e426e2062483ea468348aef62ecbdfb76fb1292728f3679a42b9dfd" + } + ] + }, + { + "bom-ref": "1cb1c6a0ae0fb3fc", + "type": "file", + "name": "/usr/share/perl5/Debconf/DbDriver/Cache.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "ad42cb683bfe58fe2cab66c9fb843d8c19a425ec" + }, + { + "alg": "SHA-256", + "content": "7075a4f322db7e12d96e2391267073cf11a01277ed972b8fd5285c8b3b89e272" + } + ] + }, + { + "bom-ref": "f83ec3371590fcba", + "type": "file", + "name": "/usr/share/perl5/Debconf/DbDriver/Copy.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "e9c686bdeb9f57047ff204ccda738029dc86dc11" + }, + { + "alg": "SHA-256", + "content": "d79bf94498c68355489fdd90c09d7aaa62116e42f0845ae78ba2c3b45fef9859" + } + ] + }, + { + "bom-ref": "297b8dd52288d7e3", + "type": "file", + "name": "/usr/share/perl5/Debconf/DbDriver/Debug.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "9050a7cd0fb2f2c3ab7a5ff7e6db44d2c94f92ce" + }, + { + "alg": "SHA-256", + "content": "feb9793dbf296b01cc866c0bb792843e711f2126a2ed4171f4a1f2561da76cb8" + } + ] + }, + { + "bom-ref": "103d600d1b33ef9e", + "type": "file", + "name": "/usr/share/perl5/Debconf/DbDriver/DirTree.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "df8bc8c333020098e3bd2a3d2d93259bd43ffe07" + }, + { + "alg": "SHA-256", + "content": "57aba77c08bd3c0106b9d21c1c177984e20a477c2528b85b13ef1345b20af677" + } + ] + }, + { + "bom-ref": "809bcab1b6b0983f", + "type": "file", + "name": "/usr/share/perl5/Debconf/DbDriver/Directory.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "b8053edbd613ec9a61f22dc43fbf8a7acbc6d369" + }, + { + "alg": "SHA-256", + "content": "ecf618cb2a38996f131f775e72084062b9c942c274133f7adb50ab8c36ef598f" + } + ] + }, + { + "bom-ref": "717b2d240225733b", + "type": "file", + "name": "/usr/share/perl5/Debconf/DbDriver/File.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "5fc8769cfd59b52fbb5004e7723ca0d736a7c142" + }, + { + "alg": "SHA-256", + "content": "18906996142065a6c897392a366934054c821d08f34acacb645724da5f6235d5" + } + ] + }, + { + "bom-ref": "9bd6376cb01640f0", + "type": "file", + "name": "/usr/share/perl5/Debconf/DbDriver/LDAP.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "14235bdbfa2df6778a94c57fff0de58aabbd5644" + }, + { + "alg": "SHA-256", + "content": "633a36005440e5101b822a293751d63e0574787fe2b13157aacc2bc00fb0ef02" + } + ] + }, + { + "bom-ref": "55ffb70536f1d995", + "type": "file", + "name": "/usr/share/perl5/Debconf/DbDriver/PackageDir.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "2f601a30edc10170218670abf3670382fabfd2af" + }, + { + "alg": "SHA-256", + "content": "081953795cd5ffbfc2b56cdc1e24c59f76be1fd7664ceaaee6688a55f12c1a3e" + } + ] + }, + { + "bom-ref": "a5d75d034afcc307", + "type": "file", + "name": "/usr/share/perl5/Debconf/DbDriver/Pipe.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "d15a410f5d522aa23c9d4ed78d02036a4113d73c" + }, + { + "alg": "SHA-256", + "content": "b50341f54a9e86d13c0fc1b607466df39f8db062f226b22123a97d73b1d73063" + } + ] + }, + { + "bom-ref": "795fbae5bb447665", + "type": "file", + "name": "/usr/share/perl5/Debconf/DbDriver/Stack.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "7bf894d30b739a17975090168a9684a3161169e1" + }, + { + "alg": "SHA-256", + "content": "f55d0e3f3f4f3ad8910ca1db54838eea67ee5b4fd4efdfa668e4fb23b432f6b9" + } + ] + }, + { + "bom-ref": "3459e77aa4ad0c73", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "21e05af09e6f14ced01d6d3c90c6e50994639007" + }, + { + "alg": "SHA-256", + "content": "00c10272de11fd0ddfbacf752982b22623e629b9d796533c95d586d858ce2c39" + } + ] + }, + { + "bom-ref": "49ec7361531acdbb", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Dialog/Boolean.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "4fb3eb2e96d075090df0733d25fc1ed08dbc3ddc" + }, + { + "alg": "SHA-256", + "content": "81d60ef5716baeedcd3ec9ed5d59d8d310d6a187d7c902133770fa201604cfa5" + } + ] + }, + { + "bom-ref": "a85dd42d5ca4e5c1", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Dialog/Error.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "235b1a24d7a044bbb39379dd3bd76bf2632e170b" + }, + { + "alg": "SHA-256", + "content": "94044eacc5f6137204dc1c805e9323d8ee370163e21e16485961c073bd244c16" + } + ] + }, + { + "bom-ref": "ae61336e42246327", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Dialog/Multiselect.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "d866481152d59808652f248131e0ecf4997fb569" + }, + { + "alg": "SHA-256", + "content": "5a89b6e6233776c40896589664ad74bf8c78235f23ebcc19e9dcda32beb21e9e" + } + ] + }, + { + "bom-ref": "9c97dd96d54fcc5e", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Dialog/Note.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "a105586f6bf5510cc1897c29376572dde7ceadd5" + }, + { + "alg": "SHA-256", + "content": "768e0c2ebfbc4e9227ce359f38b2469e070135c56adba1ec7f5b7505e8ec87e6" + } + ] + }, + { + "bom-ref": "16f8c8910ce2d4e6", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Dialog/Password.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "510387c0ff17a7ae937956816fd389dce181033a" + }, + { + "alg": "SHA-256", + "content": "0f795cb55435e9660233584f899e769e263d1e605e9748860b5edb02ffad3aae" + } + ] + }, + { + "bom-ref": "6c2d7ea9bce02cf9", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Dialog/Progress.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "1def1fe9cb3b91b2a2c9e293f2d61aba2aa82061" + }, + { + "alg": "SHA-256", + "content": "abe844eae752340e23f9f21ddcb6b24764f0eb980471c25f5158c452cfce961d" + } + ] + }, + { + "bom-ref": "6d99306e39a95259", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Dialog/Select.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "0e0091068d5d20e97d3bbfd97b35849ccb5f6773" + }, + { + "alg": "SHA-256", + "content": "024a308e995a3721990978bfc60d584e3a0fc8ed08753692727e1012cfdba322" + } + ] + }, + { + "bom-ref": "faca027b2c165acd", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Dialog/String.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "154ba2078e5fad71f6870bb9dfb66db893b3a8ea" + }, + { + "alg": "SHA-256", + "content": "6c2a414ab5362a2d25f5d080c18da7dfb6efee6d6073635b6e3f1da5793ffac8" + } + ] + }, + { + "bom-ref": "c26a5742c6241645", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Dialog/Text.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "2243bb3d5647e8ee596f9902f0db200d0c00b5d3" + }, + { + "alg": "SHA-256", + "content": "d95c589193ffc32fa5f5c7fb151a458f210ec17a8f33ef5d1644b61110c7a8b0" + } + ] + }, + { + "bom-ref": "632324c7d165d6fc", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Editor/Boolean.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "5be970a25fc546071c277ce4ff68c8003f298658" + }, + { + "alg": "SHA-256", + "content": "03aaf5a065ce57bce012d4ac22f19c776eb5b49daf5842f06bf50de0948b7b17" + } + ] + }, + { + "bom-ref": "7c39181312fed2d6", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Editor/Error.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "e23bcf644cab0bfb1932823a0b8c503d16bfa1f3" + }, + { + "alg": "SHA-256", + "content": "dea5e8e710441f23f824944d013a72167c5e5a0eb9ed31502b543e6aea6d33ba" + } + ] + }, + { + "bom-ref": "4274e0f516f688aa", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Editor/Multiselect.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "9a9a80c08c81874255275c18847d39ee0da41b25" + }, + { + "alg": "SHA-256", + "content": "6a607d19aec535e157cc301eb01a49d25335000d3312f5d0a06e9701d46edfb3" + } + ] + }, + { + "bom-ref": "7a94ff5e7d235868", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Editor/Note.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "db62b31245889af550cffea72fa027e4204bc3bc" + }, + { + "alg": "SHA-256", + "content": "f3922ec83c3ff8ab7f2a0c9a832628c64aeff1a92249544259df48f642df14b7" + } + ] + }, + { + "bom-ref": "911679347e395cff", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Editor/Password.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "5f1872a8a18cce59ba31b8edb1876dea994a1a9e" + }, + { + "alg": "SHA-256", + "content": "e0802d54649714aafd6d6ef426ed4bf4f0429bc8b5ad930e8822b4835d66c4be" + } + ] + }, + { + "bom-ref": "5f3e57554edaa358", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Editor/Progress.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "2366f5883a86aca30a2272d0f316ef14f0231f4c" + }, + { + "alg": "SHA-256", + "content": "f5b8cf39ff9f833f719d260e27466e4e11839a488286c25dacb56a23b049f831" + } + ] + }, + { + "bom-ref": "28595c919d1fcb68", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Editor/Select.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "c08ae3e6c64ae1529801d61f0c52f4a5f86ba6d9" + }, + { + "alg": "SHA-256", + "content": "4d8a031e7a23ad208675d097d700692b04304704fca6764630ffaeaa647843d0" + } + ] + }, + { + "bom-ref": "2c0b8f9055c561ad", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Editor/String.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "901b3e8623ff3dd177461cba5330be9c464753b4" + }, + { + "alg": "SHA-256", + "content": "f8aec4b503d26da2b87eba5acb67456aa6752ad37add8915beee15646626d4a6" + } + ] + }, + { + "bom-ref": "6f2351093bd1ac12", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Editor/Text.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "7f7670944fca9fc5739f42fa3832949ac661144f" + }, + { + "alg": "SHA-256", + "content": "5478c4f864725771238f7a4d42071be055fdf1781098f9a67671ce4c082d6236" + } + ] + }, + { + "bom-ref": "b9e5bbb5703df1fb", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Gnome.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "99d9a2c86889d73a2717d6302e889ec20542d660" + }, + { + "alg": "SHA-256", + "content": "2de0e06b467b7c1682dc4f301cc2443076540c0450e21ab3ac0aba1f9b9d00a5" + } + ] + }, + { + "bom-ref": "66d5d2bce1f749b4", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Gnome/Boolean.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "45f6bf84c05d7fcd92a72379b9d82c1f3a4e156b" + }, + { + "alg": "SHA-256", + "content": "254847cc4aeceeeb3b64a1c84cba614c2ce33dd63182246e5e1a8cf2f7d924fc" + } + ] + }, + { + "bom-ref": "5a35b15f55b31bde", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Gnome/Error.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "6ee33d55116f5af3b23fc8d7105f2530de2a258f" + }, + { + "alg": "SHA-256", + "content": "2292d7d3d45fd14c8ee4d276fdb1a6858365249df49868518114fb6dc19e682e" + } + ] + }, + { + "bom-ref": "432851f3337430da", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Gnome/Multiselect.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "ca52d15764797fac35cba076435997819682cfd7" + }, + { + "alg": "SHA-256", + "content": "df7fa143150ffcd85c5fe4cb83a79d533c0d6408e15537a593d4dd0217afbcfe" + } + ] + }, + { + "bom-ref": "6840e18f52149ca6", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Gnome/Note.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "d90a83939938f3fc75c583d0de9dbd4705f91736" + }, + { + "alg": "SHA-256", + "content": "5f87a9c18562d15b6d7933e1e76894f5b7058d66dd738fd37b9aa07981561ed9" + } + ] + }, + { + "bom-ref": "5ef10194cfbf0ca4", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Gnome/Password.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "8d1bef89efbd13a44ad193bb806716560d03351f" + }, + { + "alg": "SHA-256", + "content": "58755994eafd92c42fd7765afb988f6e1522f1a43a289fc85ed0ffa712403a3f" + } + ] + }, + { + "bom-ref": "a449f8164d56ebd4", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Gnome/Progress.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "ae37ca8b58d490a53c17fb274dd4806992ffa708" + }, + { + "alg": "SHA-256", + "content": "04f10cf7e7c163ec96266afb533bc94828ae1343e13af66c32fb47be2ef1d09d" + } + ] + }, + { + "bom-ref": "abec0606f63fe817", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Gnome/Select.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "2ea35ebb55a877fcabe1f9a86e3afac1a6763166" + }, + { + "alg": "SHA-256", + "content": "2a5bf7f95334d01613049b945144682653b977c49b664ca610fee3636c29b8bc" + } + ] + }, + { + "bom-ref": "e52ef07f29cfe542", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Gnome/String.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "5709f3000b232c6979a76b19b89999673f7dcda0" + }, + { + "alg": "SHA-256", + "content": "382add68ada4f5658b2efa1d5b0bc34356c6b5e3d5ca3445e2b1e17aac45e4e6" + } + ] + }, + { + "bom-ref": "9feb44a0e8c804dd", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Gnome/Text.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "09c4c41d4f6c987f9d8d6ee883f91de04392ef40" + }, + { + "alg": "SHA-256", + "content": "5cd8ceb1ccaca18d12569710eca5a868b953b79fd3e5f4193fc4ae7440f5a204" + } + ] + }, + { + "bom-ref": "c7af44da4ac2226f", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Multiselect.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "8e155c3c1cd69aa5611ba7859cc93052300d7753" + }, + { + "alg": "SHA-256", + "content": "8f4919e0b67b61f650af51406b13998467a477cd04f7772bc8b5ad6cb18649c3" + } + ] + }, + { + "bom-ref": "0a464be7d46698b5", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Noninteractive.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "a3f978944aa4f9599292aad12a436f881b8bd8c4" + }, + { + "alg": "SHA-256", + "content": "e1b6db74cda4b4b43bdf2244350494ea6a53d13a1f7dfeaca90ed16b22d13791" + } + ] + }, + { + "bom-ref": "21a63ff45407d756", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Noninteractive/Boolean.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "a8b214e8a7e3bd653d24453da62b2f7bc35c107f" + }, + { + "alg": "SHA-256", + "content": "13e3e74cafc97617862521b51e2c4ba4b87e87658363d1537452fcd5d874d261" + } + ] + }, + { + "bom-ref": "a423bca0fc0a9734", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Noninteractive/Error.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "52c244be7a9ccbdc289cc6797e43b21cb5aed4ff" + }, + { + "alg": "SHA-256", + "content": "799e48fc5a362d653334159305bafe67cd451420d98988d3047d515b2408120b" + } + ] + }, + { + "bom-ref": "5e27d6a4d278b2b7", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Noninteractive/Multiselect.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "6351b52798bb04e387ccc21acfe21962efbabdfc" + }, + { + "alg": "SHA-256", + "content": "14bbbea9a46115ea16632083ea3ba850b13594957e5dc49b7907ec07e14a0789" + } + ] + }, + { + "bom-ref": "95a3f54bd3fb8e10", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Noninteractive/Note.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "06d4d6f2ac40be9d01657c8ce0b0f5659712d470" + }, + { + "alg": "SHA-256", + "content": "88f2b6eaca06a4b404d62cbdaad4f497aa17aca4d44e785c3a78a763b66c24d4" + } + ] + }, + { + "bom-ref": "e6e914b513d54891", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Noninteractive/Password.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "1134f92fa09282afa577f3cf1b5bda489e45c51a" + }, + { + "alg": "SHA-256", + "content": "5a046112c91b00436a614d93590338a04ad14710cf3af56ebdb883041e38a955" + } + ] + }, + { + "bom-ref": "80d2e2addd0e8c28", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Noninteractive/Progress.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "a13dfe57f366f3b9efa049e5f9c7bd3b3a74dee9" + }, + { + "alg": "SHA-256", + "content": "f21d00539d3a4b8dafa82322d0e0cb1281f0493995723dfdd9a6fc7cc28a7434" + } + ] + }, + { + "bom-ref": "85315eb10032a4b5", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Noninteractive/Select.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "621dfa331e87c3abddcc20df5089582b452b69b3" + }, + { + "alg": "SHA-256", + "content": "e0b972e4af3cefd2ab4858fac0a20df5ac91feb886bb8f0003cfac187581609b" + } + ] + }, + { + "bom-ref": "d54df21bf29cacd6", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Noninteractive/String.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "e9d33b38f0be2d3d2c3cba665f7e137a83e6e490" + }, + { + "alg": "SHA-256", + "content": "505643b340d236ba8fe6e3bb930640e79ecf6ac15b43513456cb81228c946e23" + } + ] + }, + { + "bom-ref": "7d80d69b68a0554c", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Noninteractive/Text.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "7966daf5c90ef053bd39bb2acaec81b39b429270" + }, + { + "alg": "SHA-256", + "content": "17d40add0e5bf98fdfb6ad5f71f337a04536c57c5b4e663cb6f5308398f27349" + } + ] + }, + { + "bom-ref": "70b899198c10bc52", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Select.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "7f0704abc2be1c497d1c3f3328eb0105e323e97d" + }, + { + "alg": "SHA-256", + "content": "249a05d5f564db0f40e09c13d79b0a77ab128563a19a1ceee585c3431b844d1e" + } + ] + }, + { + "bom-ref": "17a5924a3b3e1e68", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Teletype/Boolean.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "262d1e1d6ce5e79ea77389fab444abda8e206314" + }, + { + "alg": "SHA-256", + "content": "a97d6deb504426af124f6c1dd8d522a6abd009dbb37fbe0a3e2a284b921ea1f3" + } + ] + }, + { + "bom-ref": "3c7eb0a19b422f29", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Teletype/Error.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "1587e057380f7b1b380caeecc33dc8abedd575a7" + }, + { + "alg": "SHA-256", + "content": "a271b558a75a7617474d93cd77402c339334e84938651ea0a01f7336db09d010" + } + ] + }, + { + "bom-ref": "d11a45136e89d370", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Teletype/Multiselect.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "1a89c9963db442a3ee81e916d682e7e7ee51c17f" + }, + { + "alg": "SHA-256", + "content": "dccdb67e08a4053c00c2395d4178ecf37ce8e64e81c63b4807e1d763ab0d5450" + } + ] + }, + { + "bom-ref": "4c85310a036bbb4b", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Teletype/Note.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "6f347f1ddce1f697e64011301269fa9eeae0210a" + }, + { + "alg": "SHA-256", + "content": "0ea94576f9890a0f5f9a4a59361bd1e0f6153b3ff23b883e6078b2e08063155d" + } + ] + }, + { + "bom-ref": "31012b02cd26f32e", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Teletype/Password.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "019a352fd8884730cf1619c0a911447fb2781d6b" + }, + { + "alg": "SHA-256", + "content": "9c3cc0ef1ccbe6da38b3885610369edef2005a691d043023c27689621e027a39" + } + ] + }, + { + "bom-ref": "79cd6d225078a626", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Teletype/Progress.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "6ba57990c768c5b5360bc16063e8afc3c782b0d4" + }, + { + "alg": "SHA-256", + "content": "63968f89058f1066176e80bc3a4e4ada8f4f24dcf78fc56c722edc7aa12f0f9c" + } + ] + }, + { + "bom-ref": "2a85d172291eb0e1", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Teletype/Select.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "3e0a994b5200a380a28784aad26b48dfd472de6e" + }, + { + "alg": "SHA-256", + "content": "a5749589dee50745a7db1e2c6743788334381461cca018552058183edae81d8c" + } + ] + }, + { + "bom-ref": "056284765c58cfe7", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Teletype/String.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "b9070ee1b4486a772e967b8684a6a24131f04012" + }, + { + "alg": "SHA-256", + "content": "9bbe2c52e9629b135b888fe81fdcaf9eb1280076df252bb86292ba904aad8a1c" + } + ] + }, + { + "bom-ref": "701e77531befc566", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Teletype/Text.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "1de79733ccc2cdb968361110492ae77b35f128f4" + }, + { + "alg": "SHA-256", + "content": "f61a5ec96a09bf7671dadd87281a75622df7043b2736d788af6767f6827bcbba" + } + ] + }, + { + "bom-ref": "eeaac639730d0dc2", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Web/Boolean.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "9a4c41c34cb2a534ebf048172b355650e3af3597" + }, + { + "alg": "SHA-256", + "content": "e74c742b01709c060bd24a58f960c03cbe688a818919037295d6222f8c3165ee" + } + ] + }, + { + "bom-ref": "646650a072ff7c5f", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Web/Error.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "083e19175f027c9437a1282c923f336e3cf06357" + }, + { + "alg": "SHA-256", + "content": "1699c8211d030d2d67fcfaafd5e30867d2661c21dad41c574dec2d88bd96ebc6" + } + ] + }, + { + "bom-ref": "d948f3ec730cf5ec", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Web/Multiselect.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "59108a76dfd01df30a0df1e859b63e30eaf54f45" + }, + { + "alg": "SHA-256", + "content": "367f3dce72c5bb9e40587416570903867824a063eb04319b6d57afdce1039d01" + } + ] + }, + { + "bom-ref": "e1edf0c18cb6c2cb", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Web/Note.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "e47edd2095db13c0bf9252de07eb7573efe6de9e" + }, + { + "alg": "SHA-256", + "content": "6654230ab4dc25692f22f7eae0798896067c2f5471ceabc4bbfdfa63258970aa" + } + ] + }, + { + "bom-ref": "a8a06af36f0cb4e6", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Web/Password.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "08da4571327b05bdc61b6ecf10501ac28edc4798" + }, + { + "alg": "SHA-256", + "content": "aff9175f3d6d46cd1a98d602e670d565c66005bc1e482174ca8ca75b53a40300" + } + ] + }, + { + "bom-ref": "7b4f110a1a58efbf", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Web/Progress.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "9c015e55475ec5964d07819bce69a60fcbb2e594" + }, + { + "alg": "SHA-256", + "content": "430c8365d9c3278fc0375434cc93725f8fa75a5353b072f0f8cfdfe4c7dd4dfc" + } + ] + }, + { + "bom-ref": "42a7f73329cb7639", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Web/Select.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "593e64a2958877338e8c2c5c6bd7ad21e706c23b" + }, + { + "alg": "SHA-256", + "content": "42a7752151c302e29228a17fa3d0fa8bd65dc999025846c013ee580e06d78766" + } + ] + }, + { + "bom-ref": "88738fc89edb4d8f", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Web/String.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "4f81007eb3597bab810402f95d58b42c9fbd0b2e" + }, + { + "alg": "SHA-256", + "content": "3dacc1ab78f01cd9db77d95163cc33fec708f1ba1d3ca10146f5b14c6096def7" + } + ] + }, + { + "bom-ref": "749b952fcd9ada22", + "type": "file", + "name": "/usr/share/perl5/Debconf/Element/Web/Text.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "ee74023bfe3306485ce0c6ede37ffb6c68818e22" + }, + { + "alg": "SHA-256", + "content": "03e9ea3bda1040086d423f3fbe2ee6cc93f59d90d26b4bf8554ab5c6cdc73885" + } + ] + }, + { + "bom-ref": "0875f8d28d54b26a", + "type": "file", + "name": "/usr/share/perl5/Debconf/Encoding.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "aaf7af5ba0fce8be71737b491010366de840590e" + }, + { + "alg": "SHA-256", + "content": "801fe349da27f9312f3b6c60ea38e44e34bf7fce5138a0a9235b5efd1f7ff7eb" + } + ] + }, + { + "bom-ref": "7b1d2bdf3b67928f", + "type": "file", + "name": "/usr/share/perl5/Debconf/Format.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "782a823865146e2f384097763c26817eaf720313" + }, + { + "alg": "SHA-256", + "content": "5ce727bb1a20759b641ffb8bd6c45176bae65e65f907e237c6dc1f093899b02f" + } + ] + }, + { + "bom-ref": "d6ed59e9e2dca77e", + "type": "file", + "name": "/usr/share/perl5/Debconf/Format/822.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "3ecbb7bf740a5f64c0dcd213a1db57f56792752e" + }, + { + "alg": "SHA-256", + "content": "47bb2e39010d9e051b79bdae364bb5824c663441b05037babae6a634fd4c0fb4" + } + ] + }, + { + "bom-ref": "0ba22a5599ffdc91", + "type": "file", + "name": "/usr/share/perl5/Debconf/FrontEnd.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "072272f571560e29c81883230c559f6d2c9bacb2" + }, + { + "alg": "SHA-256", + "content": "e7a545c137bb45bfc70dc75f6f14f2246219a4cf9a60344bff9dcf04b1e25b33" + } + ] + }, + { + "bom-ref": "4ca64bf9d7ec3b79", + "type": "file", + "name": "/usr/share/perl5/Debconf/FrontEnd/Dialog.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "a1f645fee57432b970658d3381d4aac1912468fb" + }, + { + "alg": "SHA-256", + "content": "954d3f0c3b3d84a54b449d4f186136dd2c5dc30943c364aee625728171712e34" + } + ] + }, + { + "bom-ref": "6ec8432299c02ecc", + "type": "file", + "name": "/usr/share/perl5/Debconf/FrontEnd/Editor.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "8867c9cb644986bcd98881d8db0e4875febd2700" + }, + { + "alg": "SHA-256", + "content": "24b3da6ed94ce2682a51501683188675dbb50d4b154496e875ef1488c391711c" + } + ] + }, + { + "bom-ref": "75663e87dcd5a741", + "type": "file", + "name": "/usr/share/perl5/Debconf/FrontEnd/Gnome.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "d197214d7b7d65059b88d1f42164acf8bde7d8f0" + }, + { + "alg": "SHA-256", + "content": "0bcbe1bc51af79f25aa3c2de2427cd27936c5e1aff04ffb45b6dc4cd92d58de7" + } + ] + }, + { + "bom-ref": "3739daafceda2e3e", + "type": "file", + "name": "/usr/share/perl5/Debconf/FrontEnd/Kde.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "2975e47a9629d4eabac23597796d5ba0dc1afcdf" + }, + { + "alg": "SHA-256", + "content": "af31800eed184035c7cb762fdeff4ecf77d76b37fe433836cfed540c38dacccd" + } + ] + }, + { + "bom-ref": "04d080ffb97799e4", + "type": "file", + "name": "/usr/share/perl5/Debconf/FrontEnd/Noninteractive.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "9e11bd3808a207003cdec8e703aa56edee1b32c5" + }, + { + "alg": "SHA-256", + "content": "1604a04e4c2ddebc03659bef3bfe94a1f97330ca8e4ea88b036b10ca509308e5" + } + ] + }, + { + "bom-ref": "287628a28241dad4", + "type": "file", + "name": "/usr/share/perl5/Debconf/FrontEnd/Passthrough.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "ad4d4b4a6af80c1cedb84e1ce8b432cadaa4de06" + }, + { + "alg": "SHA-256", + "content": "ef86bb94c07c56f825585a680e65bdfe5f5f2cf6abc31903643945e1fa949cf2" + } + ] + }, + { + "bom-ref": "6945b48d2834f61d", + "type": "file", + "name": "/usr/share/perl5/Debconf/FrontEnd/Readline.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "69be3ca5d8337a93e84f53c8144d1273b2912038" + }, + { + "alg": "SHA-256", + "content": "de513abc3901f8244dc3cee1f84ccbeb817f7c3594167c9d3d52c074ea586d81" + } + ] + }, + { + "bom-ref": "ee0539ee126555e1", + "type": "file", + "name": "/usr/share/perl5/Debconf/FrontEnd/ScreenSize.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "3bd174fcc0ca463728ae0e23c6baa8f5506e6d98" + }, + { + "alg": "SHA-256", + "content": "abd4a309996b0f8798df81bd51d881fa014b66ebbd0d626220884aee2868922e" + } + ] + }, + { + "bom-ref": "b66cd756f1849af6", + "type": "file", + "name": "/usr/share/perl5/Debconf/FrontEnd/Teletype.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "848bcaf68f651358ef30a5f7c12797f120f0cc04" + }, + { + "alg": "SHA-256", + "content": "e01ec0a98b14a8092dda1656e66248212dc4f164248f4058178e2964e5b72928" + } + ] + }, + { + "bom-ref": "947c0defc928f32f", + "type": "file", + "name": "/usr/share/perl5/Debconf/FrontEnd/Text.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "5e0301a2ab3ee5b130a8164c1656fadf06895b56" + }, + { + "alg": "SHA-256", + "content": "cf4595fb746e12a9c0a43cd6806aec7d45523aa71b2bf9d98328d8c713c8470b" + } + ] + }, + { + "bom-ref": "636209252737af75", + "type": "file", + "name": "/usr/share/perl5/Debconf/FrontEnd/Web.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "910c2bd665c4bd6323abbaaffc57e9e3928f8989" + }, + { + "alg": "SHA-256", + "content": "ca7b97f7c6ecd207e6b161a89a0d42e5e547c81206b09c430b9a4ac1f0b9f847" + } + ] + }, + { + "bom-ref": "0d53aa8556a6b27c", + "type": "file", + "name": "/usr/share/perl5/Debconf/Gettext.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "59ea6fc7709c4fbdfc636472dc24a19f86bdec0c" + }, + { + "alg": "SHA-256", + "content": "a88fa616d014b4668aa0acddd4b62c6f16f23ca4d770f74c42a465bccd757ddf" + } + ] + }, + { + "bom-ref": "c83636cfaa7d3ba2", + "type": "file", + "name": "/usr/share/perl5/Debconf/Iterator.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "79ee9180377943905e2135efb0403b7dc5f71e94" + }, + { + "alg": "SHA-256", + "content": "25e26945b7cd46f0807fc71e4aa0187668d883f9068076356ec4fc3515d58b15" + } + ] + }, + { + "bom-ref": "d98fc5c3535b2c68", + "type": "file", + "name": "/usr/share/perl5/Debconf/Log.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "995335798836a14f29ea0a05c749e466ef8853f4" + }, + { + "alg": "SHA-256", + "content": "295705788c02bc5ecab17acab91e8bca411c88a5ec5404b64ea1bf85f408d98a" + } + ] + }, + { + "bom-ref": "5d468c881c298b42", + "type": "file", + "name": "/usr/share/perl5/Debconf/Path.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "d34d4806a30eb72fd8995df70d17ffcde736baf7" + }, + { + "alg": "SHA-256", + "content": "028380a22abab29ad18b0f4411bb3f1a1f3bf192f139ae61121393cebf5acc6e" + } + ] + }, + { + "bom-ref": "ce0629fefe17ae96", + "type": "file", + "name": "/usr/share/perl5/Debconf/Priority.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "dbae40c9239cb9980b80522a30043a875ffcb31a" + }, + { + "alg": "SHA-256", + "content": "bf398f78a07d12eb8aee3fb782ffd002f311027279d076eaa6fffd0de11ce0d1" + } + ] + }, + { + "bom-ref": "10dc84124e22483a", + "type": "file", + "name": "/usr/share/perl5/Debconf/Question.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "10ee6cce8d922f84fa6e25c1374c98018b3ee010" + }, + { + "alg": "SHA-256", + "content": "457f0d6a12d8dc4ab1fc109b5c54c423a703184630b50e49abfd3b2cbba2e640" + } + ] + }, + { + "bom-ref": "f7500d5575c13ebc", + "type": "file", + "name": "/usr/share/perl5/Debconf/Template.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "46316168279ab0c1f2fe4744f0ab1b5181283bb1" + }, + { + "alg": "SHA-256", + "content": "4ee3d67fccb651ed7bca60a48bd85758e3a177fdda3167a5209f1513379eb6ac" + } + ] + }, + { + "bom-ref": "d70fbb9aadc898da", + "type": "file", + "name": "/usr/share/perl5/Debconf/Template/Transient.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "408fd328862f731c8a8d60bc3da2a50c83efe8bc" + }, + { + "alg": "SHA-256", + "content": "3a0e780834bf3c643f32931ad4fe02b3447343b1a54def72f03e15823e6723ae" + } + ] + }, + { + "bom-ref": "2ad4196ade112006", + "type": "file", + "name": "/usr/share/perl5/Debconf/TmpFile.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "101fb9b4e0870e0c9309aa7c2a1b83be4ee27bc7" + }, + { + "alg": "SHA-256", + "content": "01a27c6a5acbf11d145efb8341e0328892a0c00db0526ad522a8c2165e4e01f6" + } + ] + }, + { + "bom-ref": "e2d6e2e92aac8c1e", + "type": "file", + "name": "/usr/share/perl5/Debian/AdduserCommon.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "83e9c48c9b8a5a0c7e2f2831191828f98d57304d" + }, + { + "alg": "SHA-256", + "content": "94551d94231a98889d4fe7559c990cd5b26abf14c53a5ed8d072287e66b637d1" + } + ] + }, + { + "bom-ref": "535060592141d2fc", + "type": "file", + "name": "/usr/share/perl5/Debian/DebConf/Client/ConfModule.pm", + "hashes": [ + { + "alg": "SHA-1", + "content": "11fdd2f4192753536cbf74cae4fad5859eb168a0" + }, + { + "alg": "SHA-256", + "content": "18613eb5076afb75cd5cd97811c465b78533ab566d482023c9f3379f4f7fe7a0" + } + ] + }, + { + "bom-ref": "31bbf287ce9a859f", + "type": "file", + "name": "/usr/share/pixmaps/debian-logo.png", + "hashes": [ + { + "alg": "SHA-1", + "content": "164ea613e4f6a6b6a146ecfb2da202fb3111f62b" + }, + { + "alg": "SHA-256", + "content": "429c611b72d40aaf52281b6b3033c4631cdee1c4a88c17ae999244dc2245ab65" + } + ] + }, + { + "bom-ref": "0f5ac55fda00ac9d", + "type": "file", + "name": "/usr/share/polkit-1/actions/org.dpkg.pkexec.update-alternatives.policy", + "hashes": [ + { + "alg": "SHA-1", + "content": "55c15545fd19b64be03f5819c95c2d8f1fc7436e" + }, + { + "alg": "SHA-256", + "content": "6e63b446c50efe364d96b17941c8daef12f2e66a326eedb287986fa8457ef877" + } + ] + }, + { + "bom-ref": "bb2c782a66f55208", + "type": "file", + "name": "/usr/share/tabset/std", + "hashes": [ + { + "alg": "SHA-1", + "content": "0969b2c95d9430c81b0d4b05d81146a6cced5f31" + }, + { + "alg": "SHA-256", + "content": "fbadb5f608b355fe481c0c7d9c6265b2372bfa35250662f81f68d46540080770" + } + ] + }, + { + "bom-ref": "266218b6b52d4191", + "type": "file", + "name": "/usr/share/tabset/stdcrt", + "hashes": [ + { + "alg": "SHA-1", + "content": "e1fae2fc4bba672fc26554780be21d74106a064b" + }, + { + "alg": "SHA-256", + "content": "cf6c37b18ceea7c306f7e3a5e604a03b0dfb9c22ec99163e4b52f885ce063145" + } + ] + }, + { + "bom-ref": "4c301fd6ccb0a819", + "type": "file", + "name": "/usr/share/tabset/vt100", + "hashes": [ + { + "alg": "SHA-1", + "content": "b84fb01263cd003588e9a164e80bd0b8ea2e56b5" + }, + { + "alg": "SHA-256", + "content": "075251754239d9973945d82b95c18cd90997acd2017393e70c8832e9297de056" + } + ] + }, + { + "bom-ref": "02ead6d96505d492", + "type": "file", + "name": "/usr/share/tabset/vt300", + "hashes": [ + { + "alg": "SHA-1", + "content": "5246984995036718d05516acefc59c8bbd17b3ce" + }, + { + "alg": "SHA-256", + "content": "61f8388cad6a381feb819bc6a8d299d06a853d15e1f4bfdfd6b6f40069ad4956" + } + ] + }, + { + "bom-ref": "515a2234fa4502fd", + "type": "file", + "name": "/usr/share/zoneinfo/Africa/Abidjan", + "hashes": [ + { + "alg": "SHA-1", + "content": "2761dd20ffe255714f9005b59407db9bc75b5f08" + }, + { + "alg": "SHA-256", + "content": "d5ded126df8f693ce1ff83e85aa4d44185c2bdef7da1f915b214f53deffdee47" + } + ] + }, + { + "bom-ref": "fc87250654cd3080", + "type": "file", + "name": "/usr/share/zoneinfo/Africa/Accra", + "hashes": [ + { + "alg": "SHA-1", + "content": "abf8b8bee2d38fa403c83703cbcc1b3dfe3011a6" + }, + { + "alg": "SHA-256", + "content": "382d63af9c6d9ba351a764dc0b2b90cf1b7933489d068397f775e57ec2b3e879" + } + ] + }, + { + "bom-ref": "2c7b368941de05b8", + "type": "file", + "name": "/usr/share/zoneinfo/Africa/Addis_Ababa", + "hashes": [ + { + "alg": "SHA-1", + "content": "3396be7a5f3bd8d2ab7af6a62d95f95b7fb9e58b" + }, + { + "alg": "SHA-256", + "content": "010faad7279f538d056c0d17843b423123ab8de29ba42432eaa745514e59de20" + } + ] + }, + { + "bom-ref": "4628ade86fc3f9f2", + "type": "file", + "name": "/usr/share/zoneinfo/Africa/Algiers", + "hashes": [ + { + "alg": "SHA-1", + "content": "7f956aa470703a90b3ff026f8007a31bda793aa9" + }, + { + "alg": "SHA-256", + "content": "80e523121788b9c011b1c375ab28b167446aa30d3e4596e54b4957a5c988bd06" + } + ] + }, + { + "bom-ref": "2207539e05d5b295", + "type": "file", + "name": "/usr/share/zoneinfo/Africa/Bangui", + "hashes": [ + { + "alg": "SHA-1", + "content": "e078d8241d68f71c3fe87f4375d498ded945d19c" + }, + { + "alg": "SHA-256", + "content": "11c1b6f2796a91b26a3779d3b5d81ad862b143e324deda58060fa74c76392563" + } + ] + }, + { + "bom-ref": "c9b83f89da774196", + "type": "file", + "name": "/usr/share/zoneinfo/Africa/Bissau", + "hashes": [ + { + "alg": "SHA-1", + "content": "a79052fafa065a251228c0c001e5dc65ae391096" + }, + { + "alg": "SHA-256", + "content": "8ddad13adc33cdee8eaf55cfa31efcafd79305ae8dfcc3be06ff78299f29f1d8" + } + ] + }, + { + "bom-ref": "c9b4a163cd821b57", + "type": "file", + "name": "/usr/share/zoneinfo/Africa/Blantyre", + "hashes": [ + { + "alg": "SHA-1", + "content": "2f6afbdba37f364f0eca9ffe905d0abbcde401d3" + }, + { + "alg": "SHA-256", + "content": "3d7e6d17cabdaa1814a56dddec02687e1087bc3334fe920ad268a892bf080511" + } + ] + }, + { + "bom-ref": "333736512c336eb0", + "type": "file", + "name": "/usr/share/zoneinfo/Africa/Casablanca", + "hashes": [ + { + "alg": "SHA-1", + "content": "a85292f6af795954480c87b6edfa8c1b40b9d2e2" + }, + { + "alg": "SHA-256", + "content": "2b7a7b77743d1ae6779591fbe01fbb39042cff06cbaf4a9e2d05de77a3ab73bb" + } + ] + }, + { + "bom-ref": "173df6b8c2e6b6d6", + "type": "file", + "name": "/usr/share/zoneinfo/Africa/Ceuta", + "hashes": [ + { + "alg": "SHA-1", + "content": "80550c17972d6ebb0f1a25c557f8a5a2917b0d2e" + }, + { + "alg": "SHA-256", + "content": "387d2c354117fe2a22f6f3b429e4193a331d3e93d7007a55c50b3b9eedee63de" + } + ] + }, + { + "bom-ref": "9c6dea0637bf56a1", + "type": "file", + "name": "/usr/share/zoneinfo/Africa/El_Aaiun", + "hashes": [ + { + "alg": "SHA-1", + "content": "a19dce22d4a4bc1b72ff87324ad90217fed6aecb" + }, + { + "alg": "SHA-256", + "content": "cf993587fac56e670c1f8f70a72e5c5c0adfe97d3cabab512dc75046f56fea94" + } + ] + }, + { + "bom-ref": "bd2c906d4411b596", + "type": "file", + "name": "/usr/share/zoneinfo/Africa/Johannesburg", + "hashes": [ + { + "alg": "SHA-1", + "content": "50802275b65126faf8b763a47d7c22112a39648e" + }, + { + "alg": "SHA-256", + "content": "fcec4247091905d88a0b869e8e5c7ee6bcfba7db6c310165baa95078b0be31af" + } + ] + }, + { + "bom-ref": "3cd6a9ed29cd7045", + "type": "file", + "name": "/usr/share/zoneinfo/Africa/Juba", + "hashes": [ + { + "alg": "SHA-1", + "content": "2fb0e4738086360089061d685e4190cc83165a16" + }, + { + "alg": "SHA-256", + "content": "b4c8d41efe33e187a39a9640e67320b2b6f396c37a5d1ca7b42f30c23ccf960e" + } + ] + }, + { + "bom-ref": "c87bf4dbb14f1721", + "type": "file", + "name": "/usr/share/zoneinfo/Africa/Khartoum", + "hashes": [ + { + "alg": "SHA-1", + "content": "5bb911b4318e21a1534207657bbc8e61fa16d856" + }, + { + "alg": "SHA-256", + "content": "5256a96f78382e82db80ad8591240c3886fc58f9a83fe94506e3a192fbcf2f4e" + } + ] + }, + { + "bom-ref": "971abe185fbba4f9", + "type": "file", + "name": "/usr/share/zoneinfo/Africa/Monrovia", + "hashes": [ + { + "alg": "SHA-1", + "content": "aed4c9626b74960c1e976f3f8d97c81ba76668f8" + }, + { + "alg": "SHA-256", + "content": "3f9672c98983af595b3c6274cf8135728c8815a4f9c98ffba043707609e5d122" + } + ] + }, + { + "bom-ref": "1c9e966579ca75e3", + "type": "file", + "name": "/usr/share/zoneinfo/Africa/Ndjamena", + "hashes": [ + { + "alg": "SHA-1", + "content": "9ee39466dfe171c6df83f53cff9eb85932d365a3" + }, + { + "alg": "SHA-256", + "content": "b1391c8edd23b3f73e0bfacf8b878801c58206ca42349c30b22fcb7e8d13de3a" + } + ] + }, + { + "bom-ref": "fa72997ca7bbc52d", + "type": "file", + "name": "/usr/share/zoneinfo/Africa/Sao_Tome", + "hashes": [ + { + "alg": "SHA-1", + "content": "588334c31eb301cb045bece4395503caced8e6b7" + }, + { + "alg": "SHA-256", + "content": "1c04b1866beb73b69104997850cce075376d62716f8d01156e796d878b160545" + } + ] + }, + { + "bom-ref": "dcc15122ff6e3ab1", + "type": "file", + "name": "/usr/share/zoneinfo/Africa/Tunis", + "hashes": [ + { + "alg": "SHA-1", + "content": "e0e395375053b9eff061c9aec6444acaece15351" + }, + { + "alg": "SHA-256", + "content": "eecc34436d1dd96c49d6b671ed61bc594548d280a967537a9653841b537a9a92" + } + ] + }, + { + "bom-ref": "5c8d7264a92a23e1", + "type": "file", + "name": "/usr/share/zoneinfo/Africa/Windhoek", + "hashes": [ + { + "alg": "SHA-1", + "content": "600c6e60dc2c8247493d7b77125c06c5bbbf61de" + }, + { + "alg": "SHA-256", + "content": "f6d37353c3cf02bb1b950cdc1cc024e9849a374532a8f7e4ee0bb00bdd4b6ab1" + } + ] + }, + { + "bom-ref": "3c6d601c26643339", + "type": "file", + "name": "/usr/share/zoneinfo/America/Adak", + "hashes": [ + { + "alg": "SHA-1", + "content": "bf488900e8f61278e9b4e0a0acb1715f0923e269" + }, + { + "alg": "SHA-256", + "content": "c45c94d316413c8f666aff65ed1f837a7e2d392262de31ce59fac2e96a1edc81" + } + ] + }, + { + "bom-ref": "8dccdffe222c67b5", + "type": "file", + "name": "/usr/share/zoneinfo/America/Anchorage", + "hashes": [ + { + "alg": "SHA-1", + "content": "0b94eba3b05525a45a3d95848ca71c3996274e22" + }, + { + "alg": "SHA-256", + "content": "f5df0a6f7f9d43cbbd3e74d33a23fe686080eb55965f5d9246b6e859b3db9d18" + } + ] + }, + { + "bom-ref": "a34be61e8b4fc492", + "type": "file", + "name": "/usr/share/zoneinfo/America/Anguilla", + "hashes": [ + { + "alg": "SHA-1", + "content": "0fa20e8413a337c1d603389fb46484f1cfa5d71e" + }, + { + "alg": "SHA-256", + "content": "b2659c267f7555c0640505660234cbe0d7feead3a5e29f41272e28a1d7d18962" + } + ] + }, + { + "bom-ref": "535e2ac4ea8ae9d3", + "type": "file", + "name": "/usr/share/zoneinfo/America/Araguaina", + "hashes": [ + { + "alg": "SHA-1", + "content": "b3076e49bce6515d37df19b1e19e7820777dcfd3" + }, + { + "alg": "SHA-256", + "content": "fb7fe2d06e8ee5c5d9a8a568c8cb37efbb0086824f38d1bc4d8505f963b5970d" + } + ] + }, + { + "bom-ref": "f3d34ed51b7b8a7f", + "type": "file", + "name": "/usr/share/zoneinfo/America/Argentina/La_Rioja", + "hashes": [ + { + "alg": "SHA-1", + "content": "b3007950b298abb368a5ee5f824db100e51990ff" + }, + { + "alg": "SHA-256", + "content": "edc82d9225b8ae3ca911eab14f8201a8916928cfab233e182f807e715cf18435" + } + ] + }, + { + "bom-ref": "c4692d01bd3c4f48", + "type": "file", + "name": "/usr/share/zoneinfo/America/Argentina/Rio_Gallegos", + "hashes": [ + { + "alg": "SHA-1", + "content": "2be81c5a3a0236c75db8aff78c5de9798b2299c8" + }, + { + "alg": "SHA-256", + "content": "f762067b25cc7e6141b06a6eae77764caccccbfe8716f1370c33e169ec2e1723" + } + ] + }, + { + "bom-ref": "034c10fbbafb60d5", + "type": "file", + "name": "/usr/share/zoneinfo/America/Argentina/Salta", + "hashes": [ + { + "alg": "SHA-1", + "content": "888c5ecc4dee02cdf074192ab776f3cea0b12c34" + }, + { + "alg": "SHA-256", + "content": "1deede9c14ed0b4dc6e5a40110c7056083c8fed557b84aadc0fa2a045411e560" + } + ] + }, + { + "bom-ref": "c68976662fbf350e", + "type": "file", + "name": "/usr/share/zoneinfo/America/Argentina/San_Juan", + "hashes": [ + { + "alg": "SHA-1", + "content": "95ec23a249f9ba72ac72a073de70dbc746badca7" + }, + { + "alg": "SHA-256", + "content": "100c000b03b9a0e19c778d9e81ad8e5c2c34db4b7da24c55d67c0ad8050a67c5" + } + ] + }, + { + "bom-ref": "79601ca86db8e766", + "type": "file", + "name": "/usr/share/zoneinfo/America/Argentina/San_Luis", + "hashes": [ + { + "alg": "SHA-1", + "content": "68c574db8d0f14268b6402da8669920fb3bbcbdc" + }, + { + "alg": "SHA-256", + "content": "ab15b1141b87b1381e5cad386fc374b5a9a2ca922504da5b848074fab91e9abc" + } + ] + }, + { + "bom-ref": "ae9ce9b86edcb804", + "type": "file", + "name": "/usr/share/zoneinfo/America/Argentina/Tucuman", + "hashes": [ + { + "alg": "SHA-1", + "content": "e04515ab8b71eeb874eb28492d8e441bf5adb0f7" + }, + { + "alg": "SHA-256", + "content": "6a623bbcd2144f1e43892777084bde4e2613ae6f22bf92dedf6e1dc6e68248b3" + } + ] + }, + { + "bom-ref": "5cc98e057ac41930", + "type": "file", + "name": "/usr/share/zoneinfo/America/Argentina/Ushuaia", + "hashes": [ + { + "alg": "SHA-1", + "content": "e0417294a56ad2adf5ab8b1823f28004cee6955b" + }, + { + "alg": "SHA-256", + "content": "02f9a96426823c7bf25ff15a1f241069e2cb15969d48d0c6cc31aad13a7d0f49" + } + ] + }, + { + "bom-ref": "734bb106c773b327", + "type": "file", + "name": "/usr/share/zoneinfo/America/Aruba", + "hashes": [ + { + "alg": "SHA-1", + "content": "b1a1b54c10a8add3cc0cfe981de532763c906673" + }, + { + "alg": "SHA-256", + "content": "023d877932f35d889772f561f79e266c8541b984e0ce2bd257723aafc7d883c1" + } + ] + }, + { + "bom-ref": "b4d89197adb6fc66", + "type": "file", + "name": "/usr/share/zoneinfo/America/Asuncion", + "hashes": [ + { + "alg": "SHA-1", + "content": "3eb693904c60c9a27732a7251fa98c5c7477e3fa" + }, + { + "alg": "SHA-256", + "content": "1e29f7cdc530419ad31e4afc8fc2adf40d9577f55e2174a3a82358a027780ca2" + } + ] + }, + { + "bom-ref": "4c98820dd0ae5871", + "type": "file", + "name": "/usr/share/zoneinfo/America/Atikokan", + "hashes": [ + { + "alg": "SHA-1", + "content": "71491e34457361fb0d53de48c8c617e625949bf6" + }, + { + "alg": "SHA-256", + "content": "c30226b472b507b5a30b69557d56f24fcc8e9467110e4d3ec15c2c51de5d245c" + } + ] + }, + { + "bom-ref": "6c547f4193cddd8c", + "type": "file", + "name": "/usr/share/zoneinfo/America/Bahia", + "hashes": [ + { + "alg": "SHA-1", + "content": "50adfb46d2c7e3c941c0eef64d0db232b23cad52" + }, + { + "alg": "SHA-256", + "content": "2e1c1b5e2579e15a623bfd3774db703a49b937790e68b44a6b99a308c6ecba66" + } + ] + }, + { + "bom-ref": "c11bc140b4859992", + "type": "file", + "name": "/usr/share/zoneinfo/America/Bahia_Banderas", + "hashes": [ + { + "alg": "SHA-1", + "content": "458df0252aa57110ed4c8b0e7fec2d3fa1dd4979" + }, + { + "alg": "SHA-256", + "content": "9d0e0d9f6168635a5f98550a170d423854ff5b662ce0d874c3cba77199bf1cbd" + } + ] + }, + { + "bom-ref": "9ea03d214bd7b0dd", + "type": "file", + "name": "/usr/share/zoneinfo/America/Barbados", + "hashes": [ + { + "alg": "SHA-1", + "content": "521ea82e07f12a271237dd8bd592d11acd96b9c6" + }, + { + "alg": "SHA-256", + "content": "9b1a7857a01ae2a3ae9a51e0b40cfbed91bac468579ed3c08b54466276bbb1fa" + } + ] + }, + { + "bom-ref": "77ae49791085f568", + "type": "file", + "name": "/usr/share/zoneinfo/America/Belem", + "hashes": [ + { + "alg": "SHA-1", + "content": "b75b5d3bc094676a4ffb075049355109a6a8c3aa" + }, + { + "alg": "SHA-256", + "content": "84749f6075de59dc62bd69343194806cfd552641b912a6f8e96c83c99914a187" + } + ] + }, + { + "bom-ref": "d79f0828965ca421", + "type": "file", + "name": "/usr/share/zoneinfo/America/Belize", + "hashes": [ + { + "alg": "SHA-1", + "content": "6c1bf18ff8c6088e847c3d9bc11571e8288ffe71" + }, + { + "alg": "SHA-256", + "content": "dec5c63068e5ad99b53be62bb22eea068c8fb7782042dd3829be2424c5cf3c3c" + } + ] + }, + { + "bom-ref": "42a22a4333112fb7", + "type": "file", + "name": "/usr/share/zoneinfo/America/Blanc-Sablon", + "hashes": [ + { + "alg": "SHA-1", + "content": "66a2fee5e66c5cec095bf435b72bcd645b3f5703" + }, + { + "alg": "SHA-256", + "content": "c7d383bfb7e85331030f8091a9055a5f424e3674407ca0c76cce06b5a0316fdb" + } + ] + }, + { + "bom-ref": "70f56a114e7c2e96", + "type": "file", + "name": "/usr/share/zoneinfo/America/Boa_Vista", + "hashes": [ + { + "alg": "SHA-1", + "content": "fd57654adfaf9c9c1742b8c055bf38da9122a0ca" + }, + { + "alg": "SHA-256", + "content": "c57a63f22280c2c46587414956efc8fcaadc36ed422589b48929dcc7ab4f6680" + } + ] + }, + { + "bom-ref": "4ac921a8fcea13bb", + "type": "file", + "name": "/usr/share/zoneinfo/America/Bogota", + "hashes": [ + { + "alg": "SHA-1", + "content": "3039300336c1a540f03d732faeda9dfce2dfb356" + }, + { + "alg": "SHA-256", + "content": "3611de34f765f2d65ec0593e79c678de36092549898680dc4639b8c68f7137ba" + } + ] + }, + { + "bom-ref": "3db82a2b6de68f40", + "type": "file", + "name": "/usr/share/zoneinfo/America/Boise", + "hashes": [ + { + "alg": "SHA-1", + "content": "1f8cb096410dba57ca0ab7c93874770553628533" + }, + { + "alg": "SHA-256", + "content": "33353ef05ccdda7debe757cf865ee7bd78031f38c6797b8fbfc11f9010f55a10" + } + ] + }, + { + "bom-ref": "ce10b4d81d5081af", + "type": "file", + "name": "/usr/share/zoneinfo/America/Buenos_Aires", + "hashes": [ + { + "alg": "SHA-1", + "content": "d24c701f981fcabfa2aa5a7b0fa5655c7da065fa" + }, + { + "alg": "SHA-256", + "content": "841b9bca947f2acd9adc6cb5c10171204eecec1e46e6042654f355c89debc43f" + } + ] + }, + { + "bom-ref": "a2be458a37a08d66", + "type": "file", + "name": "/usr/share/zoneinfo/America/Cambridge_Bay", + "hashes": [ + { + "alg": "SHA-1", + "content": "5338d502ca9fb08d55b43941f021df4423b8265b" + }, + { + "alg": "SHA-256", + "content": "0aeaed5b104ee99ab13a9f5b5a7aaf7f6c9a7f59bdefd15d3c9951551c7b5f6f" + } + ] + }, + { + "bom-ref": "52c9cb99591ec80b", + "type": "file", + "name": "/usr/share/zoneinfo/America/Campo_Grande", + "hashes": [ + { + "alg": "SHA-1", + "content": "f12d6a93ce42b6c01c5f89f3e52eabb2a034c1aa" + }, + { + "alg": "SHA-256", + "content": "e670b40a7dd3adf79f66ea43382a70e60caee6ffb59ae92c4c9ee081d16259d2" + } + ] + }, + { + "bom-ref": "c0337070add6b57b", + "type": "file", + "name": "/usr/share/zoneinfo/America/Cancun", + "hashes": [ + { + "alg": "SHA-1", + "content": "a4fbe5e13cf390a886f3d4bec8596ed195564d1c" + }, + { + "alg": "SHA-256", + "content": "d22316873f309799c6f97fefb8a0a8897d0df4eb376f84bb0b71602ec240d04f" + } + ] + }, + { + "bom-ref": "4ac59cc3f953d2b0", + "type": "file", + "name": "/usr/share/zoneinfo/America/Caracas", + "hashes": [ + { + "alg": "SHA-1", + "content": "db673a7fafdf27e614cb8d61b45c15e771d85655" + }, + { + "alg": "SHA-256", + "content": "94e8efae88e096d6dd0abda2661d826c004f0c587f97782cb2f911ed7c942f1a" + } + ] + }, + { + "bom-ref": "b270e4c76e05f013", + "type": "file", + "name": "/usr/share/zoneinfo/America/Catamarca", + "hashes": [ + { + "alg": "SHA-1", + "content": "2e5938d213dc0e815cc04934d1cf4d0f9ce7b63a" + }, + { + "alg": "SHA-256", + "content": "e844a8f34c71c2d04bfdac6b11e913b5f20ea9fddb5d145433d0831087f1c5d6" + } + ] + }, + { + "bom-ref": "70397f731e53caa5", + "type": "file", + "name": "/usr/share/zoneinfo/America/Cayenne", + "hashes": [ + { + "alg": "SHA-1", + "content": "54da1196e5ae621c56255596ea45e73585bc4cec" + }, + { + "alg": "SHA-256", + "content": "af8de87447f7093759a595cc3d403e5fa7b51fc3520959c4da54956ffbac856a" + } + ] + }, + { + "bom-ref": "a49574c046796162", + "type": "file", + "name": "/usr/share/zoneinfo/America/Cayman", + "hashes": [ + { + "alg": "SHA-1", + "content": "73f1a382a74f1b2299f385699e7ce9feabdeb03a" + }, + { + "alg": "SHA-256", + "content": "fc4fbba14653a3186f3c5b719f7b9bf7d8a5824401064cf6d508205592e55a9f" + } + ] + }, + { + "bom-ref": "b0f2e486a5db8b72", + "type": "file", + "name": "/usr/share/zoneinfo/America/Chicago", + "hashes": [ + { + "alg": "SHA-1", + "content": "9c757e7e753439aa21384dfbb42401067ff2831b" + }, + { + "alg": "SHA-256", + "content": "143f29b957173a46008187230a38125bd3a03b3dbcba0dc1d1b8661331f71693" + } + ] + }, + { + "bom-ref": "60a305cc87591b42", + "type": "file", + "name": "/usr/share/zoneinfo/America/Chihuahua", + "hashes": [ + { + "alg": "SHA-1", + "content": "9e513e6a2f898d015fb3f3a702c1e4f852a0b886" + }, + { + "alg": "SHA-256", + "content": "a7d150e716db5b1c96bb0e50252b80306e1d9e8bcc2bf90a3ae7071906e71513" + } + ] + }, + { + "bom-ref": "12526439d1747a6a", + "type": "file", + "name": "/usr/share/zoneinfo/America/Cordoba", + "hashes": [ + { + "alg": "SHA-1", + "content": "756fb0415446127d1c2ebbe2fcbb75ce3995334c" + }, + { + "alg": "SHA-256", + "content": "254a30f9b9b00558350d0c1f40a1d9c8738045bb7fe88e56c81bbb9fbd161026" + } + ] + }, + { + "bom-ref": "287f0d656702480c", + "type": "file", + "name": "/usr/share/zoneinfo/America/Costa_Rica", + "hashes": [ + { + "alg": "SHA-1", + "content": "65eaee26f1178ff3ffb2bba735c1432d43f255e8" + }, + { + "alg": "SHA-256", + "content": "4e6ff29a776e053226bf590ebe734896f9150d69074f22a16a1c7199a1484ec5" + } + ] + }, + { + "bom-ref": "7c66b7bf46c528a8", + "type": "file", + "name": "/usr/share/zoneinfo/America/Creston", + "hashes": [ + { + "alg": "SHA-1", + "content": "27c5e7e651cf3d8e609d3bb1e1780c0f8be44f27" + }, + { + "alg": "SHA-256", + "content": "97b74beec3714be518219f24533cc21edf9b53d01f4ab792a6fe0f88973449eb" + } + ] + }, + { + "bom-ref": "da22001788e91caf", + "type": "file", + "name": "/usr/share/zoneinfo/America/Cuiaba", + "hashes": [ + { + "alg": "SHA-1", + "content": "832438b3e483d7154ae419dc7c22ca7855ce4e40" + }, + { + "alg": "SHA-256", + "content": "309f877286fad7d01fbbae6bb1a64e23227688e1687a90b6ce67faaef5b0cb67" + } + ] + }, + { + "bom-ref": "d5995008e00ac36e", + "type": "file", + "name": "/usr/share/zoneinfo/America/Danmarkshavn", + "hashes": [ + { + "alg": "SHA-1", + "content": "4ecc592cd923d7cbe06961af9f31545916ad9c26" + }, + { + "alg": "SHA-256", + "content": "087e39cd6f10b6944b68b1de557289ef33769467f1b29806b96a16cf8e438e6e" + } + ] + }, + { + "bom-ref": "d95ad83750d59ffe", + "type": "file", + "name": "/usr/share/zoneinfo/America/Dawson", + "hashes": [ + { + "alg": "SHA-1", + "content": "4abb7005efddaf48260e79063982a20bd179ed3b" + }, + { + "alg": "SHA-256", + "content": "e8f52ccbfc01ab99e46f66fcb8e2e5e46b3239a6a6f7bfdc2279f6dc3fb10013" + } + ] + }, + { + "bom-ref": "09fa582874c83baf", + "type": "file", + "name": "/usr/share/zoneinfo/America/Dawson_Creek", + "hashes": [ + { + "alg": "SHA-1", + "content": "766d212da5f33609b8509a006084174c31f62228" + }, + { + "alg": "SHA-256", + "content": "29d0245bc04dadcbb196a3b6a81bace1696451166a7417d5bb2a8610f37ec5ba" + } + ] + }, + { + "bom-ref": "325613d8d02199ca", + "type": "file", + "name": "/usr/share/zoneinfo/America/Detroit", + "hashes": [ + { + "alg": "SHA-1", + "content": "a62154cb793804dc3199ee66d5cef8f50ed4e478" + }, + { + "alg": "SHA-256", + "content": "e668e3859786c92f462769f87d5bc4ef31b5d6646bbd1635b91007e2a03dbc6c" + } + ] + }, + { + "bom-ref": "c1816e43acca74a7", + "type": "file", + "name": "/usr/share/zoneinfo/America/Edmonton", + "hashes": [ + { + "alg": "SHA-1", + "content": "e7d76dfdb07759b945aa19ae6723844d3974b904" + }, + { + "alg": "SHA-256", + "content": "92ac6208f1ef357787fcfce6a334990252189eb0b427b28bc60e21ab5e792b3c" + } + ] + }, + { + "bom-ref": "ecaff1961530ce8b", + "type": "file", + "name": "/usr/share/zoneinfo/America/Eirunepe", + "hashes": [ + { + "alg": "SHA-1", + "content": "09ee8af38d9a7a75755fcd91c76a08a410ba7bda" + }, + { + "alg": "SHA-256", + "content": "07761278f5c58867c645625c9b819ea09e4703d76564e231979e48d6d2e0881a" + } + ] + }, + { + "bom-ref": "e635e540eaafa3a7", + "type": "file", + "name": "/usr/share/zoneinfo/America/El_Salvador", + "hashes": [ + { + "alg": "SHA-1", + "content": "892b21f94039cfe4b56b36c9ba5c173c2801678e" + }, + { + "alg": "SHA-256", + "content": "63215b213a31505bfd545fd52b11214cb614f13f0f55911f414edb44286e7f8a" + } + ] + }, + { + "bom-ref": "1895489fb07f3fa3", + "type": "file", + "name": "/usr/share/zoneinfo/America/Ensenada", + "hashes": [ + { + "alg": "SHA-1", + "content": "10ef18acecef25f6884428c5f32b874efe62c159" + }, + { + "alg": "SHA-256", + "content": "d827b95b4fa16b8c56d9a1636341c9112657e567ae84b37a9bfca133ae31babb" + } + ] + }, + { + "bom-ref": "4c47dc0f7bbae37b", + "type": "file", + "name": "/usr/share/zoneinfo/America/Fort_Nelson", + "hashes": [ + { + "alg": "SHA-1", + "content": "483f23913b25d359a8ba5bcc87611f916f8537ad" + }, + { + "alg": "SHA-256", + "content": "e7ce9a01cdd313d20352112430341c262e1b90182de490fc95c132daac118ce7" + } + ] + }, + { + "bom-ref": "ee6c8c4b9d86a3b0", + "type": "file", + "name": "/usr/share/zoneinfo/America/Fort_Wayne", + "hashes": [ + { + "alg": "SHA-1", + "content": "d822888ba3588c0509ec806a03197c53097ba742" + }, + { + "alg": "SHA-256", + "content": "55c2f3feb241f88435e9876e76e2c69ddfd0dfd36a273b551ff480e2cfad99fe" + } + ] + }, + { + "bom-ref": "2ac3f980e4d0700d", + "type": "file", + "name": "/usr/share/zoneinfo/America/Fortaleza", + "hashes": [ + { + "alg": "SHA-1", + "content": "d37e06512abc08a885320aa83243fbdd342cf821" + }, + { + "alg": "SHA-256", + "content": "ca3cd6cdd4ec5f945742cd72a91e539756e0ad2eac3dfa62afc21397061eea99" + } + ] + }, + { + "bom-ref": "a93756599c40618b", + "type": "file", + "name": "/usr/share/zoneinfo/America/Glace_Bay", + "hashes": [ + { + "alg": "SHA-1", + "content": "6c4af69874ce85dca30a2a27cd2f24aead45f624" + }, + { + "alg": "SHA-256", + "content": "e6af24e3b9f1240abb8618fac326ee3a1ecccd25d2fa4936b2a28b0b0880e550" + } + ] + }, + { + "bom-ref": "cbc81a2e297507e3", + "type": "file", + "name": "/usr/share/zoneinfo/America/Godthab", + "hashes": [ + { + "alg": "SHA-1", + "content": "888e7e4d9b26898829fc3cd10686a9f53eb95d87" + }, + { + "alg": "SHA-256", + "content": "356cd2d4e74c958622b77385ae0509b5ea87e691f21207230f6fe1fa67e220af" + } + ] + }, + { + "bom-ref": "e3ea415df800301a", + "type": "file", + "name": "/usr/share/zoneinfo/America/Goose_Bay", + "hashes": [ + { + "alg": "SHA-1", + "content": "37cce6f40c4d131dc51e5122e4f4feb0f7095826" + }, + { + "alg": "SHA-256", + "content": "f0c06c6a1841cdc37bfb311c11caba1c974d0d6c27725c04b69657e7ca112a49" + } + ] + }, + { + "bom-ref": "28bf06998e7856c2", + "type": "file", + "name": "/usr/share/zoneinfo/America/Grand_Turk", + "hashes": [ + { + "alg": "SHA-1", + "content": "7771ad3f812f68776883993eb5aac30aeb36af3f" + }, + { + "alg": "SHA-256", + "content": "73da89488b297b080468938594242c7f898e2c391e8575e8be832d56a1b87246" + } + ] + }, + { + "bom-ref": "58f914e44d4ee445", + "type": "file", + "name": "/usr/share/zoneinfo/America/Guatemala", + "hashes": [ + { + "alg": "SHA-1", + "content": "2ffc6ac0c1270f793d1e5c7dbaa2aaa60bc92c7c" + }, + { + "alg": "SHA-256", + "content": "795cc25e5ffe825a8b3d86eed98ad5f9bb9f6d152df2b624f0e2a63b17f0ee43" + } + ] + }, + { + "bom-ref": "164d6e1c34a248a8", + "type": "file", + "name": "/usr/share/zoneinfo/America/Guayaquil", + "hashes": [ + { + "alg": "SHA-1", + "content": "f721580d255bca9852e08d6536111faaddd7a95d" + }, + { + "alg": "SHA-256", + "content": "6f52c0cff32100d797e64032c4ce19fa5a94b75b7678f1beb3c0cb549cdc00f7" + } + ] + }, + { + "bom-ref": "9d67a92a26760e83", + "type": "file", + "name": "/usr/share/zoneinfo/America/Guyana", + "hashes": [ + { + "alg": "SHA-1", + "content": "83afa10270f6b6da37c0b7f79c99b7f52b3186a9" + }, + { + "alg": "SHA-256", + "content": "ffa4db9ef9c8a2902355de59b3693aa3dabd21e7a06054772bfcd754902e9342" + } + ] + }, + { + "bom-ref": "f75819589843d9ca", + "type": "file", + "name": "/usr/share/zoneinfo/America/Halifax", + "hashes": [ + { + "alg": "SHA-1", + "content": "72a35d81e965c2e98da92056c8369f9d50f2bf27" + }, + { + "alg": "SHA-256", + "content": "627e18218c6f3c3f446c4970abe8164672e2a7ba94bcf841b1e06af5089b94ea" + } + ] + }, + { + "bom-ref": "aee7cdd50a8e59e2", + "type": "file", + "name": "/usr/share/zoneinfo/America/Hermosillo", + "hashes": [ + { + "alg": "SHA-1", + "content": "afd34f472515ef1c3694a3a4337e9bc4c7e2ad05" + }, + { + "alg": "SHA-256", + "content": "ec6eb21d068f1ca8e80a9e825206ad1b5a04b1e8abb2dd981c6c90b7686b8820" + } + ] + }, + { + "bom-ref": "68841c27c02b5549", + "type": "file", + "name": "/usr/share/zoneinfo/America/Indiana/Marengo", + "hashes": [ + { + "alg": "SHA-1", + "content": "eec0be36f8dd019b5c5e5a367eb8cad0e1ab8bb8" + }, + { + "alg": "SHA-256", + "content": "64bb87669a7c161454b283e5855e28de7655450680cc403eea0572e580eb2625" + } + ] + }, + { + "bom-ref": "64136822bc0209ac", + "type": "file", + "name": "/usr/share/zoneinfo/America/Indiana/Petersburg", + "hashes": [ + { + "alg": "SHA-1", + "content": "3283907667ccc19804647b4bca6bc4c0d4caa751" + }, + { + "alg": "SHA-256", + "content": "3eb5dd510d677f9118ec4bca7892db4ed181722fbaf94ef9cb1a441718400321" + } + ] + }, + { + "bom-ref": "04c5adef0e626bc0", + "type": "file", + "name": "/usr/share/zoneinfo/America/Indiana/Tell_City", + "hashes": [ + { + "alg": "SHA-1", + "content": "526961884c7f95e6ba2cfdcb11d934f1f530ef10" + }, + { + "alg": "SHA-256", + "content": "6814c2b71389711819f44b98c880caf317c03a42064b2217103795114781a80f" + } + ] + }, + { + "bom-ref": "94291e7d167aa7d1", + "type": "file", + "name": "/usr/share/zoneinfo/America/Indiana/Vevay", + "hashes": [ + { + "alg": "SHA-1", + "content": "19e347531c46e3bc0cd7685509bf9dda33f56ba4" + }, + { + "alg": "SHA-256", + "content": "5cf728ac267cce51bddf1875219bf0e800d5aaa17794dc2c7408293773f516e5" + } + ] + }, + { + "bom-ref": "554f062cbf945979", + "type": "file", + "name": "/usr/share/zoneinfo/America/Indiana/Vincennes", + "hashes": [ + { + "alg": "SHA-1", + "content": "4a1ea520e4d2a6e806b8c4c63d5c947522ba6328" + }, + { + "alg": "SHA-256", + "content": "8a9db38f7575f9e2a624c9466128927caef0eea7e9a3841679cd6eb129b019d3" + } + ] + }, + { + "bom-ref": "f5c2339672630b21", + "type": "file", + "name": "/usr/share/zoneinfo/America/Indiana/Winamac", + "hashes": [ + { + "alg": "SHA-1", + "content": "c36a7df4d05086e80791f91b959b4b44dfbf0472" + }, + { + "alg": "SHA-256", + "content": "d2dc919207b8db95bd82aff68b8a498a6d3bec2c33220ba5381ebca171dcc095" + } + ] + }, + { + "bom-ref": "8b03f8329e497380", + "type": "file", + "name": "/usr/share/zoneinfo/America/Inuvik", + "hashes": [ + { + "alg": "SHA-1", + "content": "124ba21361900c06708d1d8b76055407f8e51796" + }, + { + "alg": "SHA-256", + "content": "ea64cbc0bf92cf88c8917222f11db8838f42e2d41360cd81bb93f669a2bc685b" + } + ] + }, + { + "bom-ref": "0dee3e698c2fc204", + "type": "file", + "name": "/usr/share/zoneinfo/America/Iqaluit", + "hashes": [ + { + "alg": "SHA-1", + "content": "5a78f8e5017551eb2866d05ed2ed70611a9e9387" + }, + { + "alg": "SHA-256", + "content": "eb8797250b8bd8c3d09893b4f261ffb1bedd668869a051c8e2c80f6c0d63408c" + } + ] + }, + { + "bom-ref": "ff90f11c096988c4", + "type": "file", + "name": "/usr/share/zoneinfo/America/Jujuy", + "hashes": [ + { + "alg": "SHA-1", + "content": "ecf30bd926e6b7feaf6a29cbcfb092c78b939e7b" + }, + { + "alg": "SHA-256", + "content": "233f43f895b08f21cd28918fbdb9c22892511c0996ac6212e019c3e866aca455" + } + ] + }, + { + "bom-ref": "ac28a9c8b7a43be4", + "type": "file", + "name": "/usr/share/zoneinfo/America/Juneau", + "hashes": [ + { + "alg": "SHA-1", + "content": "d1dd03c5e2818945179368c4c0a8886a3aec5bae" + }, + { + "alg": "SHA-256", + "content": "8185913ee68f7ec72cd98efcee68d1b6bd0c304e303a2dc613b06cd97e6333c8" + } + ] + }, + { + "bom-ref": "af3cee74ef1ae3a4", + "type": "file", + "name": "/usr/share/zoneinfo/America/Kentucky/Monticello", + "hashes": [ + { + "alg": "SHA-1", + "content": "30cceea7b1eb757b7e6c7e2a436ee9f6f4865e94" + }, + { + "alg": "SHA-256", + "content": "b87081e46bbe688816a7e03cfdc5b4efe10bd6b92cb5a780df6b0c86af4c1a37" + } + ] + }, + { + "bom-ref": "5b91442948c8c501", + "type": "file", + "name": "/usr/share/zoneinfo/America/Knox_IN", + "hashes": [ + { + "alg": "SHA-1", + "content": "06b80b933cdf747c3dd0ce5d68278874b64b93f0" + }, + { + "alg": "SHA-256", + "content": "9e75dd6c52c5339c8e2b195ff8ac6a7212e2c5e84b2be3023cc355972c20d856" + } + ] + }, + { + "bom-ref": "314da58dcaf09365", + "type": "file", + "name": "/usr/share/zoneinfo/America/La_Paz", + "hashes": [ + { + "alg": "SHA-1", + "content": "5e234a018666fe58baa4917cd9fffeb9e9fd489b" + }, + { + "alg": "SHA-256", + "content": "1f10b013aea85ad55c3b3f65d68fa09bba4abe7fb5311018698823f0ab909a88" + } + ] + }, + { + "bom-ref": "383e87ec2e577562", + "type": "file", + "name": "/usr/share/zoneinfo/America/Lima", + "hashes": [ + { + "alg": "SHA-1", + "content": "e8d01c61a972ba427254883d16e6ba2633dd7c0e" + }, + { + "alg": "SHA-256", + "content": "5f514d5245abb9de7c35fabed4c4cc86f6c027548cd1be04cc84b122878e1ad3" + } + ] + }, + { + "bom-ref": "fdf1b46198c7694d", + "type": "file", + "name": "/usr/share/zoneinfo/America/Los_Angeles", + "hashes": [ + { + "alg": "SHA-1", + "content": "6b272416122dae794487818603243b1e86866234" + }, + { + "alg": "SHA-256", + "content": "fea9d66ff6522e69d22073dc4e84179b7cac2e372b398dc2fafdfdb61a9eb2e1" + } + ] + }, + { + "bom-ref": "bd65903dbe6aa71b", + "type": "file", + "name": "/usr/share/zoneinfo/America/Louisville", + "hashes": [ + { + "alg": "SHA-1", + "content": "c96f194ce7e669dd7116206b53b48f4ac36ed387" + }, + { + "alg": "SHA-256", + "content": "31e1152a8de9463bcef2b5db10415965b96b83a93bd940609bc390bab963f384" + } + ] + }, + { + "bom-ref": "258a8d4cd25cc679", + "type": "file", + "name": "/usr/share/zoneinfo/America/Maceio", + "hashes": [ + { + "alg": "SHA-1", + "content": "79cf3326476fdd903e50c9f9ab907374975758cd" + }, + { + "alg": "SHA-256", + "content": "3241ce8df0004a0cb5db2eb3800a3dfe770cc1d24d144fee27862c4dd7400840" + } + ] + }, + { + "bom-ref": "363cd11c149b899a", + "type": "file", + "name": "/usr/share/zoneinfo/America/Managua", + "hashes": [ + { + "alg": "SHA-1", + "content": "4f8bbf2929c33667126d8bb2996c89efef9f7c17" + }, + { + "alg": "SHA-256", + "content": "a3c1f00bc879ee84e623d25252f1fb8ffd8cf43cd9c8b8bf12b6b5eda8045683" + } + ] + }, + { + "bom-ref": "62fb2119919233e6", + "type": "file", + "name": "/usr/share/zoneinfo/America/Manaus", + "hashes": [ + { + "alg": "SHA-1", + "content": "54c83a6d547f5e744b614e681d5393c8941de300" + }, + { + "alg": "SHA-256", + "content": "e1213e7b97cfa580b4f9c728c34ffa64a6ab277b06b558893b299c20d3528e6c" + } + ] + }, + { + "bom-ref": "263ac1c43ff2c71c", + "type": "file", + "name": "/usr/share/zoneinfo/America/Martinique", + "hashes": [ + { + "alg": "SHA-1", + "content": "1ae26dfd7c388dd2cc5552817727200b292af0b7" + }, + { + "alg": "SHA-256", + "content": "e087c3e4ae20234a08667adcf6ab4cd03ab3aeee7e035278f271ddb0b65cfff2" + } + ] + }, + { + "bom-ref": "7a805d89fb2041ea", + "type": "file", + "name": "/usr/share/zoneinfo/America/Matamoros", + "hashes": [ + { + "alg": "SHA-1", + "content": "77c13685c3d1ac515114769aa17af02cb6805ff5" + }, + { + "alg": "SHA-256", + "content": "4398d831df4bfcfd9bafa22ac35cd55dbb7dfd5f25c138452e8adf275ea11735" + } + ] + }, + { + "bom-ref": "4f8587c018933dd4", + "type": "file", + "name": "/usr/share/zoneinfo/America/Mazatlan", + "hashes": [ + { + "alg": "SHA-1", + "content": "0fe37e001e5e1824c0a0319cc5ef1184ab44fbb7" + }, + { + "alg": "SHA-256", + "content": "9340b719b250773262cec62e771d121105aed168836723dfc305e30bb04cfbb1" + } + ] + }, + { + "bom-ref": "ceea1f023050a941", + "type": "file", + "name": "/usr/share/zoneinfo/America/Mendoza", + "hashes": [ + { + "alg": "SHA-1", + "content": "f7d1839c51686e31e318b8df98869915ae1475fc" + }, + { + "alg": "SHA-256", + "content": "d50f245cf1eeb3650dbbdd45720ddc6b1c5e22aede7981f20b9efe2c7ac68c4d" + } + ] + }, + { + "bom-ref": "737f2b8c0b7ceb82", + "type": "file", + "name": "/usr/share/zoneinfo/America/Menominee", + "hashes": [ + { + "alg": "SHA-1", + "content": "4ead905a8f5fe1ea8e81824dc3440c422d6d10bd" + }, + { + "alg": "SHA-256", + "content": "46ced580e74834d2c68a80a60ae05a0b715014bb2b4dad67cf994ac20ce2ac22" + } + ] + }, + { + "bom-ref": "e2e85a7f01f34bde", + "type": "file", + "name": "/usr/share/zoneinfo/America/Merida", + "hashes": [ + { + "alg": "SHA-1", + "content": "c30785c626637481bd7ce933d36a8dce1cea22aa" + }, + { + "alg": "SHA-256", + "content": "ecdcf4b29f7b439152b9e9b559f04d7d4ba759dd942c2fd685a4ee36798fc8d1" + } + ] + }, + { + "bom-ref": "a3fa429c481d8b82", + "type": "file", + "name": "/usr/share/zoneinfo/America/Metlakatla", + "hashes": [ + { + "alg": "SHA-1", + "content": "2be6672607cb5e862d3a7e63a7073a39bd389566" + }, + { + "alg": "SHA-256", + "content": "9d091e1f411ccec6f2274317c53cc3ca45d6895f2c7497583e71ffca496716f3" + } + ] + }, + { + "bom-ref": "c9690247f2cceb82", + "type": "file", + "name": "/usr/share/zoneinfo/America/Mexico_City", + "hashes": [ + { + "alg": "SHA-1", + "content": "ca23e2e897c830658da03a6c292380f149bb24ff" + }, + { + "alg": "SHA-256", + "content": "88bc3fcb1a92ef053e0af4af9053ecbf12855fdf18f859b2a54d826dbfacb655" + } + ] + }, + { + "bom-ref": "77f9951934c20f01", + "type": "file", + "name": "/usr/share/zoneinfo/America/Miquelon", + "hashes": [ + { + "alg": "SHA-1", + "content": "321f965ce0aabc7cf60309eac1debe55f07e39a5" + }, + { + "alg": "SHA-256", + "content": "21fabc9c2cafd8eef46af9126040cced6ef27d648d73d48951178143e6bb006b" + } + ] + }, + { + "bom-ref": "ed69c647a8dda838", + "type": "file", + "name": "/usr/share/zoneinfo/America/Moncton", + "hashes": [ + { + "alg": "SHA-1", + "content": "81ab3fb3b457816b5d54417cf105fb64d083d21d" + }, + { + "alg": "SHA-256", + "content": "1300d5a93bb376cbf23a890a23ea05fa2b229486e7eb7d5959c7834260fbb7b7" + } + ] + }, + { + "bom-ref": "fbb47501496c3640", + "type": "file", + "name": "/usr/share/zoneinfo/America/Monterrey", + "hashes": [ + { + "alg": "SHA-1", + "content": "76f7f5df8e8884a6b594446775d44915ad53285e" + }, + { + "alg": "SHA-256", + "content": "89dadca852ebf52e4405c958132255c25fb195604d7df9b844bf50b48a0865d8" + } + ] + }, + { + "bom-ref": "ac66434b105e3956", + "type": "file", + "name": "/usr/share/zoneinfo/America/Montevideo", + "hashes": [ + { + "alg": "SHA-1", + "content": "936bcb6592d68644ac7fca6e99080e12a0b6fe38" + }, + { + "alg": "SHA-256", + "content": "550efc39d3e1c9e6909aa80a9d067f9355c47a874fcaf4f59302407ef6f968e1" + } + ] + }, + { + "bom-ref": "f634ee71dbb9f872", + "type": "file", + "name": "/usr/share/zoneinfo/America/Montreal", + "hashes": [ + { + "alg": "SHA-1", + "content": "f0738b3fc039a2d1233a856343b883fa81380a70" + }, + { + "alg": "SHA-256", + "content": "842f7a103dfac9c0c2c33c9cc392a113d266ac064c5c7497883ab41b797ce194" + } + ] + }, + { + "bom-ref": "7fb2f70f22d0f618", + "type": "file", + "name": "/usr/share/zoneinfo/America/Nassau", + "hashes": [ + { + "alg": "SHA-1", + "content": "7c542f4384a270295b44d73d67502b04e2dac34e" + }, + { + "alg": "SHA-256", + "content": "9631141bea8930f28ed079a6ccdf52bf27ac52fff85c53329f50b6fa9dd5881a" + } + ] + }, + { + "bom-ref": "2803e121dddce5bb", + "type": "file", + "name": "/usr/share/zoneinfo/America/Nipigon", + "hashes": [ + { + "alg": "SHA-1", + "content": "cb3d30ffa912161d0d42628f2808e022d70b260d" + }, + { + "alg": "SHA-256", + "content": "7100ca4bf3044211ff8e770dade20b683880f3965f146ebbdd72c644aaec7c37" + } + ] + }, + { + "bom-ref": "93db7ee1cf9f0944", + "type": "file", + "name": "/usr/share/zoneinfo/America/Nome", + "hashes": [ + { + "alg": "SHA-1", + "content": "148d8f791d8265b2218060da66a072a4a7581b7e" + }, + { + "alg": "SHA-256", + "content": "d312bc797eb1b384ccfba0c40822d50b2e0abf37d5daa43dd3e255fdc7573b00" + } + ] + }, + { + "bom-ref": "8aaca6c16cc80809", + "type": "file", + "name": "/usr/share/zoneinfo/America/Noronha", + "hashes": [ + { + "alg": "SHA-1", + "content": "0c5c9d4d3c6e0cfa9d7680b042bd4f4cba6a9bec" + }, + { + "alg": "SHA-256", + "content": "cb4e968f415ed53e769108c9d5f9710e898716af74536d39b7077b0426f3960d" + } + ] + }, + { + "bom-ref": "ac76e2f681479449", + "type": "file", + "name": "/usr/share/zoneinfo/America/North_Dakota/Beulah", + "hashes": [ + { + "alg": "SHA-1", + "content": "294e1cfb1ce1eef45d5ba77b554491edf4389c63" + }, + { + "alg": "SHA-256", + "content": "f604eb42f0197f5edefcd6d43051a0b64e6e1327dbd2d3cfa94d0348b23e1fa8" + } + ] + }, + { + "bom-ref": "5467fca25008be93", + "type": "file", + "name": "/usr/share/zoneinfo/America/North_Dakota/Center", + "hashes": [ + { + "alg": "SHA-1", + "content": "af9fbd86a4d955d1f91aaaf9309cf5b7e0e6ba74" + }, + { + "alg": "SHA-256", + "content": "08efea4af9a2b6a5ab25e86116cfcf4b93c16ba9b7b22f762d9cb3481ecf3ac8" + } + ] + }, + { + "bom-ref": "79aaaa7dfa8a5755", + "type": "file", + "name": "/usr/share/zoneinfo/America/North_Dakota/New_Salem", + "hashes": [ + { + "alg": "SHA-1", + "content": "9bedd2da1055142e7bc246b31dfc62306e0c17c0" + }, + { + "alg": "SHA-256", + "content": "c5a43eb6776c326b1250f914f00e9e00e121b9b51f63665f90f245376da2017a" + } + ] + }, + { + "bom-ref": "8658fce51af5fb82", + "type": "file", + "name": "/usr/share/zoneinfo/America/Ojinaga", + "hashes": [ + { + "alg": "SHA-1", + "content": "cdc0fd0441d135f266dd2bd1417d98a2ca02c453" + }, + { + "alg": "SHA-256", + "content": "a07ff8fe3ee3531f866afca0f7937d86acec1826fb3eaa655d54300ec22dc713" + } + ] + }, + { + "bom-ref": "7836fa5c677e9c63", + "type": "file", + "name": "/usr/share/zoneinfo/America/Pangnirtung", + "hashes": [ + { + "alg": "SHA-1", + "content": "816558b9b031dcc687ebb9f54c5d4809fc147238" + }, + { + "alg": "SHA-256", + "content": "1b6a497653df9220c30a022d87ec2aa1320af9e51bb3cdc48756e72d770a6738" + } + ] + }, + { + "bom-ref": "fb9d4ea18ad7ecce", + "type": "file", + "name": "/usr/share/zoneinfo/America/Paramaribo", + "hashes": [ + { + "alg": "SHA-1", + "content": "7564b798823189ebdf27cd281dee91fb808e0063" + }, + { + "alg": "SHA-256", + "content": "57039b31a68b30ba0731916cffa7b9a1bbb52bf7650f7aa62052e89a8fc9edf6" + } + ] + }, + { + "bom-ref": "8cabda29c566e8fd", + "type": "file", + "name": "/usr/share/zoneinfo/America/Phoenix", + "hashes": [ + { + "alg": "SHA-1", + "content": "5edada5d6ac5d8909739b7b00d27f074e6c6cace" + }, + { + "alg": "SHA-256", + "content": "9c013ecf82b6ed1dde235b5fc983fe9d23c8d56d610323f7c94c6ba3cd7b4564" + } + ] + }, + { + "bom-ref": "84d9d68b7a7e6d42", + "type": "file", + "name": "/usr/share/zoneinfo/America/Port-au-Prince", + "hashes": [ + { + "alg": "SHA-1", + "content": "2bc58f6987d7f845b97c1f7861e8a647fd2a0fcc" + }, + { + "alg": "SHA-256", + "content": "b0b60ad1c557c41596e0fcc7fc8b9b39444c78295b147cee495e29985a225da6" + } + ] + }, + { + "bom-ref": "177ae7f7205d5593", + "type": "file", + "name": "/usr/share/zoneinfo/America/Porto_Acre", + "hashes": [ + { + "alg": "SHA-1", + "content": "a4bde518acfca0525379b7358bc04d89d300cb14" + }, + { + "alg": "SHA-256", + "content": "16c86cccc93c7ebfeffae880e439ce848055e421578982d5cabef8aaec15f802" + } + ] + }, + { + "bom-ref": "6a68331868d07253", + "type": "file", + "name": "/usr/share/zoneinfo/America/Porto_Velho", + "hashes": [ + { + "alg": "SHA-1", + "content": "7c8fd62280312a0d238e94046d4e52c6bb840d00" + }, + { + "alg": "SHA-256", + "content": "29f8daaa8fdca090df7145e69ecdc936cd3fedacea0b723f5c93da2a8c80f976" + } + ] + }, + { + "bom-ref": "130ef8377231b8fd", + "type": "file", + "name": "/usr/share/zoneinfo/America/Puerto_Rico", + "hashes": [ + { + "alg": "SHA-1", + "content": "b0e67202647204698dbd16902eabd3e93de36049" + }, + { + "alg": "SHA-256", + "content": "7eee44e1cb7ac885fdd5042815c548bcb6ca84cff8de007e52b53c0b9ad53f19" + } + ] + }, + { + "bom-ref": "74fdea840ef18415", + "type": "file", + "name": "/usr/share/zoneinfo/America/Punta_Arenas", + "hashes": [ + { + "alg": "SHA-1", + "content": "8f8945a86ab7327b22ded1c5291ae09df84e9e8f" + }, + { + "alg": "SHA-256", + "content": "33e26b3c8bf3dd7100151d3c1842ae9aa8ef69b15f961aa2eee2e1dc3508c6e5" + } + ] + }, + { + "bom-ref": "24d12eae8fabf9e5", + "type": "file", + "name": "/usr/share/zoneinfo/America/Rainy_River", + "hashes": [ + { + "alg": "SHA-1", + "content": "57280d5a602e233309a164ba2efd57c629b4e0ae" + }, + { + "alg": "SHA-256", + "content": "9a7b8dd4c968de31fe35fd9fe075fad8afc15892067119f638b5aef0d2288d83" + } + ] + }, + { + "bom-ref": "dc1ab4d52cab5605", + "type": "file", + "name": "/usr/share/zoneinfo/America/Rankin_Inlet", + "hashes": [ + { + "alg": "SHA-1", + "content": "8545dd3ef55384579e53f80c337f816935c860ed" + }, + { + "alg": "SHA-256", + "content": "b3ae38ccfa3091ebd8037fd5e1fd2715a72008932f94526a15fb1aa7fae722dc" + } + ] + }, + { + "bom-ref": "08e2b2276ffb7b3b", + "type": "file", + "name": "/usr/share/zoneinfo/America/Recife", + "hashes": [ + { + "alg": "SHA-1", + "content": "40b933cac6d1041ac9238f3fcdb42e25e6fa6002" + }, + { + "alg": "SHA-256", + "content": "cebb6d30c20b00bc437d4e0a8c6a0c91db120a3aef2c28bc56960f682b3fc30c" + } + ] + }, + { + "bom-ref": "358bfca547d0d616", + "type": "file", + "name": "/usr/share/zoneinfo/America/Regina", + "hashes": [ + { + "alg": "SHA-1", + "content": "76e2a4142b661be49545b622318268b3de4ef526" + }, + { + "alg": "SHA-256", + "content": "929d07457407529637626d09f5ca975b4f05801f35d0bfac4e3b0027efee6776" + } + ] + }, + { + "bom-ref": "712cd717c9790089", + "type": "file", + "name": "/usr/share/zoneinfo/America/Resolute", + "hashes": [ + { + "alg": "SHA-1", + "content": "c995fd52ddec0b15ee86b146087114f65f8d728f" + }, + { + "alg": "SHA-256", + "content": "c529141807704725b059187b9f458080f911b6dd4313e74139d2c7dac287c901" + } + ] + }, + { + "bom-ref": "57302a4ae3aac3c8", + "type": "file", + "name": "/usr/share/zoneinfo/America/Santarem", + "hashes": [ + { + "alg": "SHA-1", + "content": "03af6dbbbd217be2348e73e70d9ab86274dadf43" + }, + { + "alg": "SHA-256", + "content": "78440d01f4c5b7c13d1dbe6500ba71188efdcf90069979c80a224d831c8bd97b" + } + ] + }, + { + "bom-ref": "3eeabfe57500cd67", + "type": "file", + "name": "/usr/share/zoneinfo/America/Santiago", + "hashes": [ + { + "alg": "SHA-1", + "content": "7d32f6045377f3788d4015d66eb27b0777439730" + }, + { + "alg": "SHA-256", + "content": "b83e4129763ef7a22be3fba68029b4ecb6f14a360112498446d8c89640f420b5" + } + ] + }, + { + "bom-ref": "78cd1148df21a6b3", + "type": "file", + "name": "/usr/share/zoneinfo/America/Santo_Domingo", + "hashes": [ + { + "alg": "SHA-1", + "content": "a29f83f20c2a6cf56576054d80e0f8266de2c86e" + }, + { + "alg": "SHA-256", + "content": "adf349e4c7314aaa699c4893c589b077f6dfa7d9a54ea9eae459658f9af41dc7" + } + ] + }, + { + "bom-ref": "fd0a1553d160fcbd", + "type": "file", + "name": "/usr/share/zoneinfo/America/Sao_Paulo", + "hashes": [ + { + "alg": "SHA-1", + "content": "1fc57d2f4fb5a14833f253bf2fd7abed447f0016" + }, + { + "alg": "SHA-256", + "content": "a4090cbdfa5168012d460585f7eab9302f8848cca0419d73cf03993ef12c08c4" + } + ] + }, + { + "bom-ref": "b543336a241ff7a9", + "type": "file", + "name": "/usr/share/zoneinfo/America/Scoresbysund", + "hashes": [ + { + "alg": "SHA-1", + "content": "928c70dd1b85e8d32c344a19936c04330cac5c7c" + }, + { + "alg": "SHA-256", + "content": "c668772d49326cde3798d158089d2f9ced43788f904360a6dc67a53868b28f96" + } + ] + }, + { + "bom-ref": "6576f778678fc816", + "type": "file", + "name": "/usr/share/zoneinfo/America/Sitka", + "hashes": [ + { + "alg": "SHA-1", + "content": "ef1b9d1ce149a6f4877f0e5318b9b349184e4f15" + }, + { + "alg": "SHA-256", + "content": "ba79b89ecd8e64dba4119f2c5af2373167557c4bc71b7b134ab252e0b7485fdb" + } + ] + }, + { + "bom-ref": "6b7bc846f4bfa8cd", + "type": "file", + "name": "/usr/share/zoneinfo/America/St_Johns", + "hashes": [ + { + "alg": "SHA-1", + "content": "4aad3891be9ae7da8151cf34aa7ec12874c5952a" + }, + { + "alg": "SHA-256", + "content": "2b960a58d6d3f6a272707f941f55b15b8ba3fd0fd55f8680ea84af6b1e98bae0" + } + ] + }, + { + "bom-ref": "9faf0c679d3c5486", + "type": "file", + "name": "/usr/share/zoneinfo/America/Swift_Current", + "hashes": [ + { + "alg": "SHA-1", + "content": "a7eef9d862fa3bc2374813578f5712f3320aa66e" + }, + { + "alg": "SHA-256", + "content": "6b6029f04ac07c382e20d315da7a72d9204d813ef83585f042562e7f6788a78f" + } + ] + }, + { + "bom-ref": "a14db45e8c5dd4b1", + "type": "file", + "name": "/usr/share/zoneinfo/America/Tegucigalpa", + "hashes": [ + { + "alg": "SHA-1", + "content": "148518623ec71040a6431d9f0b6d30728e0e1652" + }, + { + "alg": "SHA-256", + "content": "fd295a9cc689a966786b6e0ec9d0f101796ac8b4f04a6f529b192937df3a2115" + } + ] + }, + { + "bom-ref": "f76b041bfbfa4115", + "type": "file", + "name": "/usr/share/zoneinfo/America/Thule", + "hashes": [ + { + "alg": "SHA-1", + "content": "b30145a508f7076ed907a1f09d828875d97d7aa2" + }, + { + "alg": "SHA-256", + "content": "9a474a1fc764343470d310369cdbf6d7007ea611116e25bea68f60ddf5a6cd68" + } + ] + }, + { + "bom-ref": "9cf83baad17806c9", + "type": "file", + "name": "/usr/share/zoneinfo/America/Thunder_Bay", + "hashes": [ + { + "alg": "SHA-1", + "content": "af6db11bf14add853af6f69bacea7e6636fd29ba" + }, + { + "alg": "SHA-256", + "content": "aef45e1474369f52e1afb1cd7f312e9f035ca13686092cf2351a353133e1cee6" + } + ] + }, + { + "bom-ref": "c496718af43e4ef7", + "type": "file", + "name": "/usr/share/zoneinfo/America/Vancouver", + "hashes": [ + { + "alg": "SHA-1", + "content": "7b2de208fd65d137c4176b50c191ab3b674fb7be" + }, + { + "alg": "SHA-256", + "content": "460182c93960fd636820b1b43cfec871da4f0197556bb6bdb2fa527b637a4332" + } + ] + }, + { + "bom-ref": "f97c0e3e96b0ea06", + "type": "file", + "name": "/usr/share/zoneinfo/America/Whitehorse", + "hashes": [ + { + "alg": "SHA-1", + "content": "800b76218fe759b14741b4659e0e92e8b93ac690" + }, + { + "alg": "SHA-256", + "content": "7e9e052642d3571e477bc6041031df8990350435e42ce38e7a802720d0f3a836" + } + ] + }, + { + "bom-ref": "b63a738b3959e091", + "type": "file", + "name": "/usr/share/zoneinfo/America/Winnipeg", + "hashes": [ + { + "alg": "SHA-1", + "content": "9b638a6d8f6138aa8a3c2af1e59ec2ce467c26a0" + }, + { + "alg": "SHA-256", + "content": "77be5c08f6f8ebe5330fb86a60c4447ea2549620609f4ef6a7a7a68d1a12d9d6" + } + ] + }, + { + "bom-ref": "00d712ef695b393d", + "type": "file", + "name": "/usr/share/zoneinfo/America/Yakutat", + "hashes": [ + { + "alg": "SHA-1", + "content": "71467f6640996eab149a9d1d03c27df76f97370b" + }, + { + "alg": "SHA-256", + "content": "07f189f49873b1392989ecbde19d19d33cd6c16953bf7e6b927ca2f1040f7106" + } + ] + }, + { + "bom-ref": "ee4047ee357a0490", + "type": "file", + "name": "/usr/share/zoneinfo/America/Yellowknife", + "hashes": [ + { + "alg": "SHA-1", + "content": "6f24a025e7ea0853b4e1bd993423f19ccfdbcfc2" + }, + { + "alg": "SHA-256", + "content": "3140de7fe4136fb4920e8bb8ed8d707256e78c672edfce1657ae22672de68768" + } + ] + }, + { + "bom-ref": "c41c034a1f2658a4", + "type": "file", + "name": "/usr/share/zoneinfo/Antarctica/Casey", + "hashes": [ + { + "alg": "SHA-1", + "content": "8a271e2c35ad54bc1da08c458943b7bad6b155dd" + }, + { + "alg": "SHA-256", + "content": "68cb638c8729bfad8bc7ac2f39892b90424e97aadb3107ed531e04e6fc83bbbe" + } + ] + }, + { + "bom-ref": "015a93f3bded5bdb", + "type": "file", + "name": "/usr/share/zoneinfo/Antarctica/Davis", + "hashes": [ + { + "alg": "SHA-1", + "content": "839a076e633ad6d3b9276a3cc53da10a5e5a0cea" + }, + { + "alg": "SHA-256", + "content": "8dec77b2a23389d30c680a6fb0241cae32f1c0c71bf28fde1679bdb035a2939b" + } + ] + }, + { + "bom-ref": "916b62a272bd2dcd", + "type": "file", + "name": "/usr/share/zoneinfo/Antarctica/DumontDUrville", + "hashes": [ + { + "alg": "SHA-1", + "content": "790b5785af51a9f201fb1ece8cf89a9e605b6cd0" + }, + { + "alg": "SHA-256", + "content": "86d1e72a7cad1d9817f57d456e39184b749436a02783a272f2109994addfbd55" + } + ] + }, + { + "bom-ref": "227838352df5cb07", + "type": "file", + "name": "/usr/share/zoneinfo/Antarctica/Macquarie", + "hashes": [ + { + "alg": "SHA-1", + "content": "c1a70264890f7f9e412e62faa3af20abde474f9e" + }, + { + "alg": "SHA-256", + "content": "84c67090354098f795919978c62b6b18f9e4fd2d05fd33a76067f84152d1c7f5" + } + ] + }, + { + "bom-ref": "c8dd87e0c06aea89", + "type": "file", + "name": "/usr/share/zoneinfo/Antarctica/Mawson", + "hashes": [ + { + "alg": "SHA-1", + "content": "1309b9108f7bf6f91dc007fad88770fd40355743" + }, + { + "alg": "SHA-256", + "content": "afa4aec36d9ff91992970b4c645e038810f25d8e58118a56568dbc9226704543" + } + ] + }, + { + "bom-ref": "b29cb461a656aa23", + "type": "file", + "name": "/usr/share/zoneinfo/Antarctica/Palmer", + "hashes": [ + { + "alg": "SHA-1", + "content": "d024e5b4a1b859fa79de798845bb946cacee2b3e" + }, + { + "alg": "SHA-256", + "content": "aa3fc7dd1b1f1599bf71ed328ae5dba81e09ac3e3a914689e7ea5ff3adc28183" + } + ] + }, + { + "bom-ref": "1388797829f9f00a", + "type": "file", + "name": "/usr/share/zoneinfo/Antarctica/Rothera", + "hashes": [ + { + "alg": "SHA-1", + "content": "b96df6c298173a3e9b4603a42620f6dd0199008a" + }, + { + "alg": "SHA-256", + "content": "e67d9eb78b53d3a415865402758eca495c69c347ed0ca7d5a0238c5f7ac01d8b" + } + ] + }, + { + "bom-ref": "83972c2341d2fc7a", + "type": "file", + "name": "/usr/share/zoneinfo/Antarctica/Syowa", + "hashes": [ + { + "alg": "SHA-1", + "content": "e18f1930aba6968e26250d0d4c73f226826e7c12" + }, + { + "alg": "SHA-256", + "content": "aef765ec9b3fae2cedbbaf2b525505008aa24f2f4e06abae3f770a9677387879" + } + ] + }, + { + "bom-ref": "d2afa18711057d1d", + "type": "file", + "name": "/usr/share/zoneinfo/Antarctica/Troll", + "hashes": [ + { + "alg": "SHA-1", + "content": "390f051d8f9efc940336fb27a150dc06f73f7a05" + }, + { + "alg": "SHA-256", + "content": "1d8bdfe767292729981993a64fd8a2f745b24058c8bcbcf21bf3b0b6d5075c2d" + } + ] + }, + { + "bom-ref": "da4f2e84d7d4c75d", + "type": "file", + "name": "/usr/share/zoneinfo/Antarctica/Vostok", + "hashes": [ + { + "alg": "SHA-1", + "content": "50d803475d5d8c5ba151e9a7b4179fdcc1d8721c" + }, + { + "alg": "SHA-256", + "content": "903d2010d8a06be20cd57000e89d92e6f8307dca3810294215a58cd7c7c863e2" + } + ] + }, + { + "bom-ref": "1e4449414f672cd4", + "type": "file", + "name": "/usr/share/zoneinfo/Arctic/Longyearbyen", + "hashes": [ + { + "alg": "SHA-1", + "content": "a69be8a3e576dce7b744191865b30344af571257" + }, + { + "alg": "SHA-256", + "content": "0fa4e635da2b178fa3ea13ff3829c702844cf8bd69e16bca8e1d34dbd9249d01" + } + ] + }, + { + "bom-ref": "176b0b4c1d9b934e", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Aden", + "hashes": [ + { + "alg": "SHA-1", + "content": "dd378bd1f0c89ad3893652f696720212d24552b5" + }, + { + "alg": "SHA-256", + "content": "3102c1755d9a64b2e2b363381bbf52d6a01eb866a4d2cdfd0cf7e0832517094d" + } + ] + }, + { + "bom-ref": "841c197c81804e27", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Almaty", + "hashes": [ + { + "alg": "SHA-1", + "content": "a8f39dc95d87e5a5a7cc1584a7fab4e414d69388" + }, + { + "alg": "SHA-256", + "content": "4401628c6d2a36430efdddec3d9aeb9ff091e85daa21d0783298cddfe70c38c4" + } + ] + }, + { + "bom-ref": "9107edb48dae9835", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Amman", + "hashes": [ + { + "alg": "SHA-1", + "content": "435774413c6bde74aa08f7f620280bacfde8963d" + }, + { + "alg": "SHA-256", + "content": "ba18a1f823f77e478e7030eeb82ddd71a5f3fae6efdf56325b7776304912da08" + } + ] + }, + { + "bom-ref": "cddd2f788346ad12", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Anadyr", + "hashes": [ + { + "alg": "SHA-1", + "content": "139bc8f7d5fc83a8f864668f4d5ff9e1745e5c02" + }, + { + "alg": "SHA-256", + "content": "b4b88045d6624e21cb233c7c6226edee88afb63e0ca8d4e3df580d74a6c8a34c" + } + ] + }, + { + "bom-ref": "dc9ec30d3f167088", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Aqtau", + "hashes": [ + { + "alg": "SHA-1", + "content": "093aea4dc4618d428344a3b9956551a86b9e8d49" + }, + { + "alg": "SHA-256", + "content": "e2e79c79371b0c8601cc8da9dc613145b60721e9c574310ed4b7fa9ae9baa30b" + } + ] + }, + { + "bom-ref": "e1fdea4ebe0f33fc", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Aqtobe", + "hashes": [ + { + "alg": "SHA-1", + "content": "c26ad860f6c6f3f23aa2fd01fb7afb447beef6f2" + }, + { + "alg": "SHA-256", + "content": "ccd2ab0718fc8a637bb44576e4ca3ff267151cc4081dc697e69ebd426dbe4c1d" + } + ] + }, + { + "bom-ref": "2f5e6d18bd8f7b7e", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Ashgabat", + "hashes": [ + { + "alg": "SHA-1", + "content": "410dfa09a7a4e9e8d409539222348627d5ea930c" + }, + { + "alg": "SHA-256", + "content": "46284acf00fcee991886ee879f507f970bef4105a05d5e330736a02b329d3375" + } + ] + }, + { + "bom-ref": "bdd905d9286957ad", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Atyrau", + "hashes": [ + { + "alg": "SHA-1", + "content": "e2be1c6fba4a1512c5daed23036631e2142d118b" + }, + { + "alg": "SHA-256", + "content": "44812ada1ccc49ab42dd04e3c5ebe8f9f592682765b0e400972662c34ef6e931" + } + ] + }, + { + "bom-ref": "25d40640a1ee4f3e", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Baghdad", + "hashes": [ + { + "alg": "SHA-1", + "content": "ade20aa3de5a2efc729a922e86700ca2624b080d" + }, + { + "alg": "SHA-256", + "content": "942ba9632d564f1e29f60e75a7edf598d3b001515ecdd7d403b147e5bf703cb1" + } + ] + }, + { + "bom-ref": "26f46cb7a829089b", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Bahrain", + "hashes": [ + { + "alg": "SHA-1", + "content": "aeb68f2a5bd34e659e15c6634d8e7768ad06de65" + }, + { + "alg": "SHA-256", + "content": "f15d455b503a1d9b99a9bc15f27e0d87d9bf3cac8100709f6a3140e63bab56bd" + } + ] + }, + { + "bom-ref": "8e4059a175f5203e", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Baku", + "hashes": [ + { + "alg": "SHA-1", + "content": "eae4d1d23621f55e0ff05ec805d3a2c71288720e" + }, + { + "alg": "SHA-256", + "content": "8efffa197f6ee0747d60f4b37db8823d2f712f3df7350bfb40461641d9e7ca31" + } + ] + }, + { + "bom-ref": "157c8d859fd1f1de", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Bangkok", + "hashes": [ + { + "alg": "SHA-1", + "content": "30b3e86db6a7ec38ab2fdbf7cb58b62f73c1b652" + }, + { + "alg": "SHA-256", + "content": "cf866703a05b067069db05f87584d5c8a3489bcaad3e41bb012609904915c11b" + } + ] + }, + { + "bom-ref": "7b43b28684e112a3", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Barnaul", + "hashes": [ + { + "alg": "SHA-1", + "content": "d663be2180fb10bcda48ce333717664f97506e59" + }, + { + "alg": "SHA-256", + "content": "b556552d881c7729f21a4fb10c5e75e3885afc08e539461d40d6e4e359dcdd7f" + } + ] + }, + { + "bom-ref": "e73434b415edf3b7", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Beirut", + "hashes": [ + { + "alg": "SHA-1", + "content": "423142944fe014fb5ca12b7143860875ddfdb68f" + }, + { + "alg": "SHA-256", + "content": "abdfa509ed982455873c1035962d8642ae8b88ab75f7f1a9a4cf7eea5ce120ef" + } + ] + }, + { + "bom-ref": "3ffa251f4f3f0c5f", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Bishkek", + "hashes": [ + { + "alg": "SHA-1", + "content": "ebf278322a9737a3654e567bf1cad7ab59659362" + }, + { + "alg": "SHA-256", + "content": "8b449cf64ad7d46bae4196787f47012bfd0899aafd7cac77f8794dd7730b41ee" + } + ] + }, + { + "bom-ref": "a7c2e2758c0b5112", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Brunei", + "hashes": [ + { + "alg": "SHA-1", + "content": "39199590f60b22ddcdac2cd4048f426ae32d6e67" + }, + { + "alg": "SHA-256", + "content": "cd14c89f40eaece7f87f9679ebd6fdc23356c1ee31da031400c59806044ca4d1" + } + ] + }, + { + "bom-ref": "ff5c9963011047f0", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Calcutta", + "hashes": [ + { + "alg": "SHA-1", + "content": "1c7d91634cdf31b11ccec65b10af71e60d325be7" + }, + { + "alg": "SHA-256", + "content": "c71d7bc10d52c64f59eae8eac701c1b156bbec3fd9fe750970bed15e9b408fa5" + } + ] + }, + { + "bom-ref": "39bd109fd2abc788", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Chita", + "hashes": [ + { + "alg": "SHA-1", + "content": "25aacb126b3415f4df339ef5bf9d933c572df6cf" + }, + { + "alg": "SHA-256", + "content": "3bc537b6c3f62fbcd134ce4c8e58c351a5770b9216f2483f1e36d8ec9035b3bc" + } + ] + }, + { + "bom-ref": "962e8138f1c1739f", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Choibalsan", + "hashes": [ + { + "alg": "SHA-1", + "content": "aee2340ec0d73e8717d29536f919ae6c0b2eac1e" + }, + { + "alg": "SHA-256", + "content": "6ea08272fe78ef15058b5821d053e907ea937db9bb6ca8f71cb9997a44c64315" + } + ] + }, + { + "bom-ref": "b03e7ab1211edcd0", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Colombo", + "hashes": [ + { + "alg": "SHA-1", + "content": "74b1b37eaeb1116450c92f6fd04cd4685f918bb1" + }, + { + "alg": "SHA-256", + "content": "60108a5aec08236b5e9132d33de72649cdf01f854c86d01a8bd609d820b569ba" + } + ] + }, + { + "bom-ref": "4b7504460cd473b3", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Dacca", + "hashes": [ + { + "alg": "SHA-1", + "content": "8a796bb4e40123f1645d268e342ae3a7ce468534" + }, + { + "alg": "SHA-256", + "content": "b17631c1fb3033ffde15391d2fbec4e3d29b846fd2cfb089898c6b61308eb7b2" + } + ] + }, + { + "bom-ref": "1056eec1b49d8621", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Damascus", + "hashes": [ + { + "alg": "SHA-1", + "content": "85feb76073847aaa72d5c1a12d2cbe0a765e4d9e" + }, + { + "alg": "SHA-256", + "content": "0f42d5702ee52944dde43071569de645a5d668a385c4a2e0cd8aa43d39d2ea21" + } + ] + }, + { + "bom-ref": "a96dbc37ef4af309", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Dili", + "hashes": [ + { + "alg": "SHA-1", + "content": "dd7cd762be47f9afc60962fc182d3dd78d2cf69f" + }, + { + "alg": "SHA-256", + "content": "1f691df244d73613de758975adca5454ee9a91821b3f4382ea9b793ef04b1fc4" + } + ] + }, + { + "bom-ref": "2a798adf8fe5e316", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Dubai", + "hashes": [ + { + "alg": "SHA-1", + "content": "b9f4bb0d046d524840453d3f3c88aebc4d15acd4" + }, + { + "alg": "SHA-256", + "content": "52c19684fb4943773d86c43f78c7ad7b46ae7557a8ae9ed16508342bd319678a" + } + ] + }, + { + "bom-ref": "d6051204ee19af6e", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Dushanbe", + "hashes": [ + { + "alg": "SHA-1", + "content": "1d6731f0b2b13355eda808d119cba8e22a85b380" + }, + { + "alg": "SHA-256", + "content": "e832524a0d020a34015e423182bec05920c1e73b4149aab1bb31b7479a0a8f4c" + } + ] + }, + { + "bom-ref": "224b7e96ea562ff2", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Famagusta", + "hashes": [ + { + "alg": "SHA-1", + "content": "c5ffa8a169584e44cd2d9543f7d888105dfb04f7" + }, + { + "alg": "SHA-256", + "content": "4a3e66759c060ff5d9e338169781678161df5b9acd9aec6146f1d4d3cfd9030b" + } + ] + }, + { + "bom-ref": "bbe818a5951bd166", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Gaza", + "hashes": [ + { + "alg": "SHA-1", + "content": "0826f27f9cc4b1ebd31259e5170c9d5bd5329693" + }, + { + "alg": "SHA-256", + "content": "d4d929f809e81c47ed0f187b8dc4dbd5abb68d4045d59c9064217aee0101211e" + } + ] + }, + { + "bom-ref": "e4be75d45f3afa7a", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Hebron", + "hashes": [ + { + "alg": "SHA-1", + "content": "d90742ba86aa995fc03f3c9640df67b46cb11746" + }, + { + "alg": "SHA-256", + "content": "0a34a339fd7d63ee4566dff8875ee351e058c4728a6451092a7e15685984c1ef" + } + ] + }, + { + "bom-ref": "5d4307a13a7f8b1a", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Ho_Chi_Minh", + "hashes": [ + { + "alg": "SHA-1", + "content": "c0bca9911f6048e950b4e2e5ce3e0b29238e348f" + }, + { + "alg": "SHA-256", + "content": "013ffccf1a05a9e7b509b55f6b949569dd9e676bfcce10c886fffe59745440e5" + } + ] + }, + { + "bom-ref": "e6086366cf9d69cc", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Hovd", + "hashes": [ + { + "alg": "SHA-1", + "content": "846d4572a744589252523b9eb24e43c3e20d7380" + }, + { + "alg": "SHA-256", + "content": "cdc65f913f2b67cd1d23286944546c42fabb64720b78aaf32f88605a1943689a" + } + ] + }, + { + "bom-ref": "bdff4cc3e72858c0", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Irkutsk", + "hashes": [ + { + "alg": "SHA-1", + "content": "d841d87562525bcd57f200f17a1ba12314fdcd5a" + }, + { + "alg": "SHA-256", + "content": "77ed8a38a9f3e4a65a5ded6a846089c4c8a60eb245c476f7ee20d62780303eef" + } + ] + }, + { + "bom-ref": "8512651fc18398aa", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Jakarta", + "hashes": [ + { + "alg": "SHA-1", + "content": "ed751a8a8ced3291285589653abc637f1d7f24bf" + }, + { + "alg": "SHA-256", + "content": "7ea1c3e53a0d3f40cb6d7724f1bacb4fca1cf0ae96d9ab42f00f2d30dc0dee3a" + } + ] + }, + { + "bom-ref": "d68da15c5bc6d333", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Jayapura", + "hashes": [ + { + "alg": "SHA-1", + "content": "ca2a2780d397283ae77b84dd353b87f869ec3a02" + }, + { + "alg": "SHA-256", + "content": "c6fa24de2e83f471878b8e10ecd68828eb3aba1f49ce462dac7721661386eb0c" + } + ] + }, + { + "bom-ref": "c5884679f43dd23e", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Kabul", + "hashes": [ + { + "alg": "SHA-1", + "content": "ab40907a8517feacf530dee564f2c55bdf4a54a0" + }, + { + "alg": "SHA-256", + "content": "386b98b95b19bbec52c6d8f334e04a178f4f99f2b8a1cea33c142375668d7227" + } + ] + }, + { + "bom-ref": "923248b90623f47c", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Kamchatka", + "hashes": [ + { + "alg": "SHA-1", + "content": "d06af9faa2f5e420abcd659585a482d4ea12d31e" + }, + { + "alg": "SHA-256", + "content": "a45d587c7134607cb6feade6af9a04203c38b1ed481f7c7ce8eb10e7cd972cac" + } + ] + }, + { + "bom-ref": "59d4420c34fba0ce", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Karachi", + "hashes": [ + { + "alg": "SHA-1", + "content": "7b2381e3b2392323f0279c97a7706ca3b4b7cbac" + }, + { + "alg": "SHA-256", + "content": "fc4b2a68ad79efadecf52f333fa19cbaa5dd084cdc9bf96ab8b65a75c559a370" + } + ] + }, + { + "bom-ref": "5951d98036a65b6b", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Kashgar", + "hashes": [ + { + "alg": "SHA-1", + "content": "2ed8cbea508c323cfc4b11ae1d2186e9b11a10c8" + }, + { + "alg": "SHA-256", + "content": "9ae8868df5441ce4ac33aaed777f5ea6883eb95050b7d66d1e5ec5648c9e3fcc" + } + ] + }, + { + "bom-ref": "753f43285d5fd82e", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Kathmandu", + "hashes": [ + { + "alg": "SHA-1", + "content": "af5c092e0e7b9ea3dde01895761552b52a9eff00" + }, + { + "alg": "SHA-256", + "content": "5c557b86c5f0fdd19d105afbd38bd9daaad1cd075e9efdbe80547ddca85ae5ae" + } + ] + }, + { + "bom-ref": "ada7a52c775c35c1", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Khandyga", + "hashes": [ + { + "alg": "SHA-1", + "content": "06f6bb734790985eab879598c5101dbed0c67aa2" + }, + { + "alg": "SHA-256", + "content": "0169f2ad82832f6466984cad9cc673fb4098ee15e14b21521ce54f37a3fa6de3" + } + ] + }, + { + "bom-ref": "d8cb00937e880b0f", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Krasnoyarsk", + "hashes": [ + { + "alg": "SHA-1", + "content": "969dcde7f9c3a26d76ccc1b93588893e2b22d5ea" + }, + { + "alg": "SHA-256", + "content": "9122ec3df9d2f1e1767edfbc9cce49e7cff95491cb9de234c4588f985eb361c8" + } + ] + }, + { + "bom-ref": "893c2e013324128c", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Kuala_Lumpur", + "hashes": [ + { + "alg": "SHA-1", + "content": "2b4631070726d586f76b9377454e71a954e189fa" + }, + { + "alg": "SHA-256", + "content": "268d3cc29dae9854fea1b9109da2873602c48806994d3f3df0b9ca9863fcf59b" + } + ] + }, + { + "bom-ref": "ec6574ac1adbf37d", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Kuching", + "hashes": [ + { + "alg": "SHA-1", + "content": "f70d463d17a65a6cdd69c5bfca9601f8bf43e80c" + }, + { + "alg": "SHA-256", + "content": "0d0c68d2cddcf9431056b27b884c89951de456a484fdf96a2b10c78faf195bd8" + } + ] + }, + { + "bom-ref": "0bdff9af0ab40a11", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Macao", + "hashes": [ + { + "alg": "SHA-1", + "content": "532a4a7527d7785e52cefee887e7b048e1ffd5d9" + }, + { + "alg": "SHA-256", + "content": "bc423d28d8ba83fb0ba6984472c46dc83c014dd4876b59f6c8e2a4d8761fc585" + } + ] + }, + { + "bom-ref": "b11f35770888a629", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Magadan", + "hashes": [ + { + "alg": "SHA-1", + "content": "db1c111bafa860ff65e664a77816189f824b8031" + }, + { + "alg": "SHA-256", + "content": "a32f022b2aa9b370f41866047c28b6d96007bec7e7f05e4fd1a2f06111057e8b" + } + ] + }, + { + "bom-ref": "df15b0d372b17d2d", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Makassar", + "hashes": [ + { + "alg": "SHA-1", + "content": "ac0380229d33532006c8646649ef60972e3b65cf" + }, + { + "alg": "SHA-256", + "content": "24fac901695ef43b73fa8b3cd9e4bf893ceb757c5200b6628ae6a0fc70f01956" + } + ] + }, + { + "bom-ref": "084c106a88e660a9", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Manila", + "hashes": [ + { + "alg": "SHA-1", + "content": "6954bc96e87b2a3530eef2e4bc19d1e184abf562" + }, + { + "alg": "SHA-256", + "content": "01cb854c5033bef7324b3102f4362206e1a792d703a478fe090135943b180392" + } + ] + }, + { + "bom-ref": "464620d3f868cfff", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Nicosia", + "hashes": [ + { + "alg": "SHA-1", + "content": "9d7a0ebc8f361eb6f9633974dab221f99f4ae6e2" + }, + { + "alg": "SHA-256", + "content": "f2aa2a3f77a43b7558a7508a6cd6c50fdf7d991f9d64da5948fd9003923b1d72" + } + ] + }, + { + "bom-ref": "7c1b16a247cc1a3e", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Novokuznetsk", + "hashes": [ + { + "alg": "SHA-1", + "content": "c1dc59ef5900a474624f3c32828ad8512da6ed25" + }, + { + "alg": "SHA-256", + "content": "45df208266ce41dccdae6a47b6b78235a2e70c4eeb69b28e30125e03e7b9e0d3" + } + ] + }, + { + "bom-ref": "259d78b287d807e4", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Novosibirsk", + "hashes": [ + { + "alg": "SHA-1", + "content": "5200a3e45f27edbb8eed9aa73393bd466f3535af" + }, + { + "alg": "SHA-256", + "content": "53f555c078378d726db6d203c96bee7efc9b138c10cfd634f750b28cb6212ba5" + } + ] + }, + { + "bom-ref": "ba6703da29edb1c9", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Omsk", + "hashes": [ + { + "alg": "SHA-1", + "content": "e09b569a4006c139b44f9622120335653d5f487a" + }, + { + "alg": "SHA-256", + "content": "e32bfb976274657a892f5918b3f42e56c838dac040e06ac60c2d36318c80fd49" + } + ] + }, + { + "bom-ref": "7de837e686d86c9a", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Oral", + "hashes": [ + { + "alg": "SHA-1", + "content": "b204984139c932f387e13b0c8bf82a4b40891d6f" + }, + { + "alg": "SHA-256", + "content": "4ddd665f81f9ffe7fa3c7540f5065ddad72274da22913885eefe86951a857998" + } + ] + }, + { + "bom-ref": "6702f626976142c9", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Pontianak", + "hashes": [ + { + "alg": "SHA-1", + "content": "e49cfa5c2f0cfc52ca12d240c06d9ee2e4fd2ba5" + }, + { + "alg": "SHA-256", + "content": "2516ac2bc84fe6498a50bc8865ec00e3499b38f2f485403cd5028578a98d1fd8" + } + ] + }, + { + "bom-ref": "7f3e25ce84a0df12", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Pyongyang", + "hashes": [ + { + "alg": "SHA-1", + "content": "82b4f8b8e0ae8e4e1be46ba8082ba4e08c526d02" + }, + { + "alg": "SHA-256", + "content": "a108bfd54c6c22fbc67177c281c1058dfb1f00f40803ffc04fda5f41d4ba6505" + } + ] + }, + { + "bom-ref": "1e1bb79e4744d4ba", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Qostanay", + "hashes": [ + { + "alg": "SHA-1", + "content": "93aad277a6e3665bc5b532f67e3ac17763afb9de" + }, + { + "alg": "SHA-256", + "content": "b763af98dc579384866d60e3541d7f87c10b492310a4bdd3f927d28d091edeca" + } + ] + }, + { + "bom-ref": "57566a9b5fe197d1", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Qyzylorda", + "hashes": [ + { + "alg": "SHA-1", + "content": "f0f7be3b155e18d1e8c4fade0ccfb4e6dc255e20" + }, + { + "alg": "SHA-256", + "content": "e116692a053d3b100258a742dd5577df8ae1e262d0f23830606c87b80031d4a2" + } + ] + }, + { + "bom-ref": "3db84d13ebd2df07", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Rangoon", + "hashes": [ + { + "alg": "SHA-1", + "content": "247d6b94633bae9d97078e96267e69ef127c305a" + }, + { + "alg": "SHA-256", + "content": "1b4605825adbae3c7136f3f055d7cbac76faad62703516eaf94fc8d10e1df3ad" + } + ] + }, + { + "bom-ref": "8df961a8b187d4de", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Sakhalin", + "hashes": [ + { + "alg": "SHA-1", + "content": "00456e0df377d09389485512efc26c7ed8cf976f" + }, + { + "alg": "SHA-256", + "content": "d6af67dd853ea20ec92aa39fdd647b70ec329606e7565536030dbdd70f062148" + } + ] + }, + { + "bom-ref": "e70d343fcac9db89", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Samarkand", + "hashes": [ + { + "alg": "SHA-1", + "content": "e9999b0f3a616c0bd2fee0323464683205c33f2e" + }, + { + "alg": "SHA-256", + "content": "fd928b56ff2b6fdf1e28c198d8871e87979473109dfc395a51d8aaed0efb5924" + } + ] + }, + { + "bom-ref": "3f8e8dd535c7f6bc", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Srednekolymsk", + "hashes": [ + { + "alg": "SHA-1", + "content": "06e107b0f1fdc59b32b0916795a5a80115a3ff93" + }, + { + "alg": "SHA-256", + "content": "35c545e24d61a31f5fd4fa712d8b6cc09ecbdfddee10e5b859d6b29e57d98806" + } + ] + }, + { + "bom-ref": "108ebff903f9595b", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Tashkent", + "hashes": [ + { + "alg": "SHA-1", + "content": "c7b429dbc1dfafdb6baeb2c5aa4fbbce2c32c886" + }, + { + "alg": "SHA-256", + "content": "8674eb501cd25c540258e94006ce151f91f653849e800aa97986551b89ead688" + } + ] + }, + { + "bom-ref": "952f27c87b4cc5b8", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Tbilisi", + "hashes": [ + { + "alg": "SHA-1", + "content": "f3b1e7531ab8864b9d87e7163e53a4114ce14c00" + }, + { + "alg": "SHA-256", + "content": "bc88efdf57da66aaa71c15d8fbc36d87242adca776e103ddd5531aa45ca21177" + } + ] + }, + { + "bom-ref": "6d676d8ad7a1e307", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Thimbu", + "hashes": [ + { + "alg": "SHA-1", + "content": "9b3c82077ec322cea9d996df4b0127ed4130a137" + }, + { + "alg": "SHA-256", + "content": "e54c4d565a4be5f34209ba351c7aadd1071dccf8a0380d69e06e936a425203a2" + } + ] + }, + { + "bom-ref": "5b7b39cf7e4a68f4", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Tomsk", + "hashes": [ + { + "alg": "SHA-1", + "content": "e5e681c82cb11b4125a8e0359a80314feb766f9a" + }, + { + "alg": "SHA-256", + "content": "1142db40b91678b4ab3c2935346f6f0bce6a84353392a1ab97dbeba0ee1582d5" + } + ] + }, + { + "bom-ref": "821f53806787ed0b", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Ulaanbaatar", + "hashes": [ + { + "alg": "SHA-1", + "content": "8f54e74dd4a2f8bad4fdb029b8be5929e0273b03" + }, + { + "alg": "SHA-256", + "content": "17a31d0ea8eaf0d1484b54e53d6803eaeaa832740d521a340e1d5c073de97e22" + } + ] + }, + { + "bom-ref": "d0bd592ae3319480", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Ust-Nera", + "hashes": [ + { + "alg": "SHA-1", + "content": "0625c1c29719a7781d4081fc941fdacafc509488" + }, + { + "alg": "SHA-256", + "content": "ab0edbe8871813e11548d34641521878aca12634a44683945d24ef85016bd0aa" + } + ] + }, + { + "bom-ref": "9b48aa930088cd28", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Vladivostok", + "hashes": [ + { + "alg": "SHA-1", + "content": "15aaadfee879261a6374129d79484f3c8e358b94" + }, + { + "alg": "SHA-256", + "content": "32eb6e1405aa048e6cba3396d4b09ad04ed05c239dbcb054f82e4dbbd2dbbd31" + } + ] + }, + { + "bom-ref": "b49086bca82a35d1", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Yakutsk", + "hashes": [ + { + "alg": "SHA-1", + "content": "116dfcc0c33b37de379c16208d66d786eeac3567" + }, + { + "alg": "SHA-256", + "content": "545036a8cb48068d5f6f98bd28eb90bb6c25d3136b58f01486b875780519208e" + } + ] + }, + { + "bom-ref": "8015d591b3e96212", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Yekaterinburg", + "hashes": [ + { + "alg": "SHA-1", + "content": "2407b7fc5239e02a80cb9e761d4ac7af93b9739f" + }, + { + "alg": "SHA-256", + "content": "8819eff29a90ad2c0d3588f56d6e974d99419e80104bfc9313274f0a33e0b590" + } + ] + }, + { + "bom-ref": "d5ded6ee265c2d44", + "type": "file", + "name": "/usr/share/zoneinfo/Asia/Yerevan", + "hashes": [ + { + "alg": "SHA-1", + "content": "5a88ec2e2eddef2b2098c9d3c62d6ac121ca68d9" + }, + { + "alg": "SHA-256", + "content": "2e456011e9e0d8c1958c17bf34116fe89a3239028010e7db61ae46012c8f2304" + } + ] + }, + { + "bom-ref": "64227921b38acf09", + "type": "file", + "name": "/usr/share/zoneinfo/Atlantic/Azores", + "hashes": [ + { + "alg": "SHA-1", + "content": "5eca289c7d93b0d37c40086b38710d146113f6da" + }, + { + "alg": "SHA-256", + "content": "d3dfcd9c77d1e2a49e15c87aff9e43f0d5283a532b4bc6c7afa22fa14fa0c377" + } + ] + }, + { + "bom-ref": "43a1a766b1b03130", + "type": "file", + "name": "/usr/share/zoneinfo/Atlantic/Bermuda", + "hashes": [ + { + "alg": "SHA-1", + "content": "584f1071a47fb83c2f6f8f4af3c68faf4febbe72" + }, + { + "alg": "SHA-256", + "content": "8800de9ba0f7cf61fe38433d9a29591ec0d8a1192f1f3d5dfcf6f6ec912002b7" + } + ] + }, + { + "bom-ref": "d6b5fa825fe980cb", + "type": "file", + "name": "/usr/share/zoneinfo/Atlantic/Canary", + "hashes": [ + { + "alg": "SHA-1", + "content": "1acb0c3f885aefcc8f2a375b70cc917f8ebb4638" + }, + { + "alg": "SHA-256", + "content": "4617cb1aa75514003f181908e9ccfc1d3d062ef22bb0196867dbe530ec2e1416" + } + ] + }, + { + "bom-ref": "bd23fd3e15073eb3", + "type": "file", + "name": "/usr/share/zoneinfo/Atlantic/Cape_Verde", + "hashes": [ + { + "alg": "SHA-1", + "content": "d55ac68b63124c12de79af743813c20afb59d63b" + }, + { + "alg": "SHA-256", + "content": "f7a81342ed5884f34fdc07e6ebf8f0f322e41ba3e2d399d7f516b4d28771350b" + } + ] + }, + { + "bom-ref": "df78f42601eeda7b", + "type": "file", + "name": "/usr/share/zoneinfo/Atlantic/Faeroe", + "hashes": [ + { + "alg": "SHA-1", + "content": "13bbd1c04101cdb566ea5598921896abc7a4fdb1" + }, + { + "alg": "SHA-256", + "content": "6b1a5769f8ffa2ec29bf298dffd7fb324e625e36fc527c14bb66b6520e6f76a7" + } + ] + }, + { + "bom-ref": "df743cbe2c10a2a3", + "type": "file", + "name": "/usr/share/zoneinfo/Atlantic/Madeira", + "hashes": [ + { + "alg": "SHA-1", + "content": "327b25bebe9a1dfc0d577e1af5712d3169e03db5" + }, + { + "alg": "SHA-256", + "content": "24c616780589fb6a7e22913e3402522517ba4a7460738ccd38f1a3a0e4a21f40" + } + ] + }, + { + "bom-ref": "adce0be8b06669b7", + "type": "file", + "name": "/usr/share/zoneinfo/Atlantic/South_Georgia", + "hashes": [ + { + "alg": "SHA-1", + "content": "7c62036fdc9aac7f1fb155bd83e5a528a87a08dc" + }, + { + "alg": "SHA-256", + "content": "f745dca3964c6ae3e8b88166e0db6df487ee8f6e6ad7fb1ac3ad4e6ab2e0a361" + } + ] + }, + { + "bom-ref": "f65e1fbc2956bdf7", + "type": "file", + "name": "/usr/share/zoneinfo/Atlantic/Stanley", + "hashes": [ + { + "alg": "SHA-1", + "content": "9681c85f05247c8f0e74612317dd578dde7e951d" + }, + { + "alg": "SHA-256", + "content": "57ee27fac7d72ba2c34725702e5876aa27462a09ac4b841b40122afe103a4c41" + } + ] + }, + { + "bom-ref": "ec9bb7ea669b58bb", + "type": "file", + "name": "/usr/share/zoneinfo/Australia/ACT", + "hashes": [ + { + "alg": "SHA-1", + "content": "f9a74134cba1ebe57c4ba568f15737d0f2f8e704" + }, + { + "alg": "SHA-256", + "content": "5089cd93b5102c5b1c8ae3dd9e42cd2255ae1e6a469484cadaa1f3692a7e6e79" + } + ] + }, + { + "bom-ref": "e534309133b8b657", + "type": "file", + "name": "/usr/share/zoneinfo/Australia/Adelaide", + "hashes": [ + { + "alg": "SHA-1", + "content": "910897528f237dbd7cda52c2289570d313c9cbaf" + }, + { + "alg": "SHA-256", + "content": "ad5289c19982758edd995a5f5ad5f8bf5611024d306f1b8188b8356932f633fd" + } + ] + }, + { + "bom-ref": "7f45306926eb0356", + "type": "file", + "name": "/usr/share/zoneinfo/Australia/Brisbane", + "hashes": [ + { + "alg": "SHA-1", + "content": "3655a0c8315063d62b85c3b8a977f1496e2c0a98" + }, + { + "alg": "SHA-256", + "content": "1b39bd80c21383d71e93a73d17579467fd15131e5ee0277f34c30413809f11af" + } + ] + }, + { + "bom-ref": "9d3431c3da82bd50", + "type": "file", + "name": "/usr/share/zoneinfo/Australia/Broken_Hill", + "hashes": [ + { + "alg": "SHA-1", + "content": "68a64d5a46dd309152466f559733cfd2f4f6ce74" + }, + { + "alg": "SHA-256", + "content": "794920e79f48b868598908f4ef72684108c4db6ac510c970a87c812a70b5e2fd" + } + ] + }, + { + "bom-ref": "a603154c357e74b2", + "type": "file", + "name": "/usr/share/zoneinfo/Australia/Currie", + "hashes": [ + { + "alg": "SHA-1", + "content": "b2d6c5837af83c814acd1283a7580482cc101863" + }, + { + "alg": "SHA-256", + "content": "1429d2cd2a0e2db83e016c66a011d4c429e9b2860356ed29375c5855bf728d2b" + } + ] + }, + { + "bom-ref": "5c30838fac5d4dd9", + "type": "file", + "name": "/usr/share/zoneinfo/Australia/Darwin", + "hashes": [ + { + "alg": "SHA-1", + "content": "b84c0b2834e49dc895e82c2bee9ab13b16859653" + }, + { + "alg": "SHA-256", + "content": "fe250e8d59a4f96dd9f7fa78206839ebe77a89f55bcc8fe67c3ce6d2c8a9dfe2" + } + ] + }, + { + "bom-ref": "0c1d4d187e267e27", + "type": "file", + "name": "/usr/share/zoneinfo/Australia/Eucla", + "hashes": [ + { + "alg": "SHA-1", + "content": "5a4cfa85b9e8b442284a00679aedc9d5fa87b042" + }, + { + "alg": "SHA-256", + "content": "ad57bce0ab2a3a7c7477783fbf6ff4b25784889a08eba3bdf8104d63081a652d" + } + ] + }, + { + "bom-ref": "cb1cbfc3e7abbfdb", + "type": "file", + "name": "/usr/share/zoneinfo/Australia/LHI", + "hashes": [ + { + "alg": "SHA-1", + "content": "dcc2512abf4a8ecb10a10775e2ae8a5dd8eae8e8" + }, + { + "alg": "SHA-256", + "content": "09626975ee86238fd5f85bc275eafad83bc696709d78144cc0bd4ced75acaf2d" + } + ] + }, + { + "bom-ref": "77a97baa5667b007", + "type": "file", + "name": "/usr/share/zoneinfo/Australia/Lindeman", + "hashes": [ + { + "alg": "SHA-1", + "content": "a49c32c7a0951d0cbd57c97ebf2246f653b4f48b" + }, + { + "alg": "SHA-256", + "content": "6d064110c6d10fb62ce0bfff5f14b40a80dfbec2b656406158392555146ad378" + } + ] + }, + { + "bom-ref": "778a01729746a49f", + "type": "file", + "name": "/usr/share/zoneinfo/Australia/Melbourne", + "hashes": [ + { + "alg": "SHA-1", + "content": "717e55a8e8978f525b3dcb14f6194e87902afec1" + }, + { + "alg": "SHA-256", + "content": "e2a531c30cac43b4090464d519ef17bebe99cfd9cf6adb5ba8bc76b7157b5176" + } + ] + }, + { + "bom-ref": "193e42defa3d2570", + "type": "file", + "name": "/usr/share/zoneinfo/Australia/Perth", + "hashes": [ + { + "alg": "SHA-1", + "content": "058331354b135202d43ae5dae2746455b0f0efb0" + }, + { + "alg": "SHA-256", + "content": "7bf635f2b826c7f98b52cef52f779e3b93335f5808b8f6deee8ff0a3fcd35078" + } + ] + }, + { + "bom-ref": "d27996c3eca10fbe", + "type": "file", + "name": "/usr/share/zoneinfo/CET", + "hashes": [ + { + "alg": "SHA-1", + "content": "02ac393901944e270a2e47c39e34dd6a85a86cc1" + }, + { + "alg": "SHA-256", + "content": "3c0029045f6f80bc5a84f1bb8ed36230454759c54578eb9a8c195d14f442213c" + } + ] + }, + { + "bom-ref": "c52f0842f08ae7a1", + "type": "file", + "name": "/usr/share/zoneinfo/CST6CDT", + "hashes": [ + { + "alg": "SHA-1", + "content": "78c416c796c41bc6e6171801fe0857895510ef41" + }, + { + "alg": "SHA-256", + "content": "44e8b569e60027647f9801a33d0b43be0106a6d3f6cd059677e0ed65c9b8b831" + } + ] + }, + { + "bom-ref": "eb8d1f507e0ed293", + "type": "file", + "name": "/usr/share/zoneinfo/Chile/EasterIsland", + "hashes": [ + { + "alg": "SHA-1", + "content": "af473be91814f80a320fc1fc675b42e5edfffd02" + }, + { + "alg": "SHA-256", + "content": "d344955a3a8dea47b50a72d2af7fde01a6a27365bef0fefb2c11429a4f5dfca1" + } + ] + }, + { + "bom-ref": "1f80e0801d8107c8", + "type": "file", + "name": "/usr/share/zoneinfo/Cuba", + "hashes": [ + { + "alg": "SHA-1", + "content": "8535bea419dc64beaa2aa452e0ee6d304869693d" + }, + { + "alg": "SHA-256", + "content": "7871f875a8819f415c292519db1590556a0dc1a6ce691bf4f7af55e6716fb894" + } + ] + }, + { + "bom-ref": "40402bbd25f69f6b", + "type": "file", + "name": "/usr/share/zoneinfo/EET", + "hashes": [ + { + "alg": "SHA-1", + "content": "78c398114cc733ec0912a80574fa67c7c4ccf7c0" + }, + { + "alg": "SHA-256", + "content": "0bf6d2669ab45c13a1c9be47c351972feb671770b90a61d9d313fc60b721b2b4" + } + ] + }, + { + "bom-ref": "17bfbbe873e2f689", + "type": "file", + "name": "/usr/share/zoneinfo/EST", + "hashes": [ + { + "alg": "SHA-1", + "content": "d90139b75126d98f5c15b249e6192a38424944c3" + }, + { + "alg": "SHA-256", + "content": "c9e75f112a498ff00344551c3c5c4a62bd15d5c218ee951f4363ab218c5d88eb" + } + ] + }, + { + "bom-ref": "eecb52e045a70a07", + "type": "file", + "name": "/usr/share/zoneinfo/EST5EDT", + "hashes": [ + { + "alg": "SHA-1", + "content": "c8e4c1c29f53514483944f1114529b696635be0e" + }, + { + "alg": "SHA-256", + "content": "79ce27e03a2752091e8a49cc7e7ccc9ac202d6c52dd5d224571fe82262fbeec8" + } + ] + }, + { + "bom-ref": "b1ba23b79617a73d", + "type": "file", + "name": "/usr/share/zoneinfo/Egypt", + "hashes": [ + { + "alg": "SHA-1", + "content": "bc2e0cd8e76aa4788536cb273388ced307b118b3" + }, + { + "alg": "SHA-256", + "content": "279bbe1fa62da67387c63593b60bb655252ef5c8f189cf43469087740af2b4fc" + } + ] + }, + { + "bom-ref": "9bb02ab995b6de5e", + "type": "file", + "name": "/usr/share/zoneinfo/Eire", + "hashes": [ + { + "alg": "SHA-1", + "content": "4bc6cc19e0d28ab61e5092859b1ef4131bcd2d52" + }, + { + "alg": "SHA-256", + "content": "44bdc5d63e5b1663867491cc0d30b81820fc8694ad0fd5ef500ba8ac6b7fba5f" + } + ] + }, + { + "bom-ref": "49fed6b7b97630d4", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT+1", + "hashes": [ + { + "alg": "SHA-1", + "content": "ff6caab6b80254a6f9fae7b0623873cf53374247" + }, + { + "alg": "SHA-256", + "content": "35d004edb2a0b1137ae1ea3659ef8e95a753330f0713fc94929d0f79d8021b07" + } + ] + }, + { + "bom-ref": "38eecd451ec6fd54", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT+10", + "hashes": [ + { + "alg": "SHA-1", + "content": "0f657867c23d4a51ee9d4cede010655f2a3320dc" + }, + { + "alg": "SHA-256", + "content": "4762603f3f51c0d5063ea549f9a578b7ebf26e47fd7109a6e34495ac3e09b2ed" + } + ] + }, + { + "bom-ref": "2697a77d33a9c44d", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT+11", + "hashes": [ + { + "alg": "SHA-1", + "content": "88c627e90a17c33b9fd1bdee7326653db7b7bd06" + }, + { + "alg": "SHA-256", + "content": "8a23521d6e93326291dbdacf2857f8a78970bef3dd93a53557da4cc2e79c36ba" + } + ] + }, + { + "bom-ref": "3f17a613bb1cda68", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT+12", + "hashes": [ + { + "alg": "SHA-1", + "content": "14413540aa4fdfbbde51aa2b58af9ee086f18448" + }, + { + "alg": "SHA-256", + "content": "ec7046f7e41252f839950ce04e3f20e41ba228e678aae2a45b5b050ba990e626" + } + ] + }, + { + "bom-ref": "3fdc4a2af3bd7d9b", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT+2", + "hashes": [ + { + "alg": "SHA-1", + "content": "f4a593c22d5200a472782ba1795ee5cddcd7e5bd" + }, + { + "alg": "SHA-256", + "content": "21319b8c2634a8349e84c3bef422998f6dd4f79bad91f79fa38145c1f6b694dd" + } + ] + }, + { + "bom-ref": "2a6200d6fc5dba08", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT+3", + "hashes": [ + { + "alg": "SHA-1", + "content": "91c0b6105495ccf38ec36ddcdbddbd4c51f42bde" + }, + { + "alg": "SHA-256", + "content": "e7861defa0a8bc5e0ee58d8a7a993ac22950e3fed608c9532c680b74ef6cc67f" + } + ] + }, + { + "bom-ref": "82765e6ae189d6fe", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT+4", + "hashes": [ + { + "alg": "SHA-1", + "content": "1342063a3314f801239931063fd38527f4ba752a" + }, + { + "alg": "SHA-256", + "content": "0f0ab77c5beca68231484090c38ecc1ce211b135511d5431dc1994f8a2580c89" + } + ] + }, + { + "bom-ref": "a93ea18a3c1bdd7d", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT+5", + "hashes": [ + { + "alg": "SHA-1", + "content": "6350d13d9df8746de3859aa9f7ababe515d73029" + }, + { + "alg": "SHA-256", + "content": "be7cef32cf0094520b344fc461bc28747e617d6043b8be0b0871e87225ee8568" + } + ] + }, + { + "bom-ref": "a1e1b8a6c7c15904", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT+6", + "hashes": [ + { + "alg": "SHA-1", + "content": "118df72ae51c29a80d0d07c508c66697df06a23c" + }, + { + "alg": "SHA-256", + "content": "d285eec873a91b2660ff29816304693056ee61ac1e9bd3485e26c4bcc067e041" + } + ] + }, + { + "bom-ref": "9edd80d89dd59a0e", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT+7", + "hashes": [ + { + "alg": "SHA-1", + "content": "e12192613742e97dbe07492c4d67462bca7093c4" + }, + { + "alg": "SHA-256", + "content": "631be5659ae83739e1056e088289b642caf4d07be5887f74c6cc954e2b0e9e5c" + } + ] + }, + { + "bom-ref": "3960e3f162dce78b", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT+8", + "hashes": [ + { + "alg": "SHA-1", + "content": "5595167f0801b6e827a3d66fbaa7427e341c2f51" + }, + { + "alg": "SHA-256", + "content": "f0ede5d811e0d8b283b18b80aebe6ce617267664ec313fc5bf01e2880a8c4229" + } + ] + }, + { + "bom-ref": "5c84955cf5edcd2c", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT+9", + "hashes": [ + { + "alg": "SHA-1", + "content": "4203286566c0f26919ecfad16a808bc1fbee1c8e" + }, + { + "alg": "SHA-256", + "content": "6aab552f947986b00b2d43ff28a3257ab7b88967322b9ce067e45c5ea96cc014" + } + ] + }, + { + "bom-ref": "dca386e182c8a9ea", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT-1", + "hashes": [ + { + "alg": "SHA-1", + "content": "35ba0f95113aec023762c431629c0c1de812abfb" + }, + { + "alg": "SHA-256", + "content": "d5f7f0682e71000de343fce27f2e8cff9e37e50cb064bf0f61245dc7ff6806ed" + } + ] + }, + { + "bom-ref": "7262ab5c2ec06695", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT-10", + "hashes": [ + { + "alg": "SHA-1", + "content": "58d3f666db188e7e659d09e92c6e1216d14d80ba" + }, + { + "alg": "SHA-256", + "content": "2fdcfd00c1be46329891da92b46f49258b35c09eb9e1103e3789a3d58338eb78" + } + ] + }, + { + "bom-ref": "bd325ed314e9bfa2", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT-11", + "hashes": [ + { + "alg": "SHA-1", + "content": "7b13e982a8abe452b2ce6b22e1a931492e13cb43" + }, + { + "alg": "SHA-256", + "content": "4439c8a7d5a8c87c47b7a81bd2e9534c8c676f610d4038fdf3b3951089a5db91" + } + ] + }, + { + "bom-ref": "cf51e1936a747811", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT-12", + "hashes": [ + { + "alg": "SHA-1", + "content": "892df33e9cf33799bf642195ca2f4a06c037d0b0" + }, + { + "alg": "SHA-256", + "content": "5f0c2c21cec4020ec3116c038ca9ff5e5a9e863ddb7fc0beba7136c321b05851" + } + ] + }, + { + "bom-ref": "e1f71cb482925dde", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT-13", + "hashes": [ + { + "alg": "SHA-1", + "content": "b679b71f4900b409327dd022162f719f1c6b1665" + }, + { + "alg": "SHA-256", + "content": "0c4e6bff6354406378f2bdb165fae025fa100fe8c7d76c6cfaabb716f6f096ca" + } + ] + }, + { + "bom-ref": "fecd4669bb849cfb", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT-14", + "hashes": [ + { + "alg": "SHA-1", + "content": "04874a155c42a87a6d0d105487f0a95246f7b8ef" + }, + { + "alg": "SHA-256", + "content": "4685f92efa5bbdb625dd8d6454a340af8ac0510308b6b66847ad5f7bc3c4fc84" + } + ] + }, + { + "bom-ref": "577fed2dc33b767b", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT-2", + "hashes": [ + { + "alg": "SHA-1", + "content": "ced9f38a88567ccc24f6afceaa23a99fc437cfa8" + }, + { + "alg": "SHA-256", + "content": "530335b26ac0306edc8f0683a830bc1e7f5111ad228df4b74c197d2cb9c31387" + } + ] + }, + { + "bom-ref": "a0733769508c8ed5", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT-3", + "hashes": [ + { + "alg": "SHA-1", + "content": "5601017498006e3a9a539ceb66ff028f156f4469" + }, + { + "alg": "SHA-256", + "content": "a59e1e4a707222ac22fefb3a6dc495cef266872a94d51e5ca862ffde74ef0c4c" + } + ] + }, + { + "bom-ref": "f6979a083902f9db", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT-4", + "hashes": [ + { + "alg": "SHA-1", + "content": "8797e3fd301f6a17c926ec2f7983a5b245c7f0b3" + }, + { + "alg": "SHA-256", + "content": "7d6471f8835da5e7906f8220dd9674b664573fee650f0a28b5ab51aa54a4524e" + } + ] + }, + { + "bom-ref": "ee210b8616d39cbe", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT-5", + "hashes": [ + { + "alg": "SHA-1", + "content": "bc651984d42e07846a5d027c4d539d48b6ba92ff" + }, + { + "alg": "SHA-256", + "content": "33a439130048c8b6400ad082b2e4011c7b85fafe9171e13110aa86f266bedfa4" + } + ] + }, + { + "bom-ref": "cba6f9dd51d37154", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT-6", + "hashes": [ + { + "alg": "SHA-1", + "content": "054e38de39b951b82ef404bc3ec3a6714903f803" + }, + { + "alg": "SHA-256", + "content": "f2ae16bd9a3a9a75788ca13a281bcc39567c93aaf5ad5402fcbfebac473b6cf7" + } + ] + }, + { + "bom-ref": "b84ce12f087293ff", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT-7", + "hashes": [ + { + "alg": "SHA-1", + "content": "f3f769440f44515a643d813d83a92bb8f5b9db0c" + }, + { + "alg": "SHA-256", + "content": "b0e37d9bf496f375b7c024e81b6ae5943ccbace0ffbecb684d8bd1847c5cb93a" + } + ] + }, + { + "bom-ref": "9f708e3c1a1def59", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT-8", + "hashes": [ + { + "alg": "SHA-1", + "content": "00931bd6e94afaa960f1388e41233e3db5e3234a" + }, + { + "alg": "SHA-256", + "content": "5ec67811fbce13ee23123eee60791be8cb5f9c84451ae0d8297738af9b7f0cca" + } + ] + }, + { + "bom-ref": "b040cb8c2e1c37c6", + "type": "file", + "name": "/usr/share/zoneinfo/Etc/GMT-9", + "hashes": [ + { + "alg": "SHA-1", + "content": "2da37c3d09d24399bf2092ec69915043d376e145" + }, + { + "alg": "SHA-256", + "content": "16ed57cd7c3577fdc22d57683841e922b208a535e6125e686be4f8702a75f485" + } + ] + }, + { + "bom-ref": "ba498bc3c3f9dd0f", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Amsterdam", + "hashes": [ + { + "alg": "SHA-1", + "content": "91eb366d96b507ecf104b8a06c33504948a6948b" + }, + { + "alg": "SHA-256", + "content": "8a813ac6b8d1b68a7960242cae5325a2269fd1c791b203f8d22f2dfa3b61ba87" + } + ] + }, + { + "bom-ref": "63253ec9af6749d9", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Andorra", + "hashes": [ + { + "alg": "SHA-1", + "content": "7cde74ca7b99326a70d9c02bfcc34a90ae365e17" + }, + { + "alg": "SHA-256", + "content": "add5505c473225e33a884a02105610a9b95003f429195624b953c18f771317af" + } + ] + }, + { + "bom-ref": "5e325a8a6045edb0", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Astrakhan", + "hashes": [ + { + "alg": "SHA-1", + "content": "ed0e0d5ffa5faeada90736decaaf26063e828846" + }, + { + "alg": "SHA-256", + "content": "a027561f493c02a04d699903a08e9e78ac76eb3a719c4749d9ae9480418baad8" + } + ] + }, + { + "bom-ref": "f9ee81a2f643350f", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Athens", + "hashes": [ + { + "alg": "SHA-1", + "content": "a1fefa96ad4a9d2b967e1ff90697c8a95e291f17" + }, + { + "alg": "SHA-256", + "content": "799090551202c0b8417f836facf75049573dd1c27b5e6adeb584fcc414051139" + } + ] + }, + { + "bom-ref": "9ea7a1bf7b9bbcdf", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Belgrade", + "hashes": [ + { + "alg": "SHA-1", + "content": "44797e1d8343743f9f77ee24527db98491c1609e" + }, + { + "alg": "SHA-256", + "content": "e957543623baaba84999b40188e7e0948471b75a8ff4f88abb267e773feb8e5c" + } + ] + }, + { + "bom-ref": "4038b0642712af89", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Berlin", + "hashes": [ + { + "alg": "SHA-1", + "content": "99ba42dd86467512b1d1699a6129bbd5ce7388c2" + }, + { + "alg": "SHA-256", + "content": "7eb93dcba603d528fdf536160ef6911c16f834afcf88ce23a382b97ff28319d4" + } + ] + }, + { + "bom-ref": "e1a9058bbf771438", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Bratislava", + "hashes": [ + { + "alg": "SHA-1", + "content": "0c1fecf11fdd8c8d20988f0bca6936bf95e00aaf" + }, + { + "alg": "SHA-256", + "content": "a50be470a22de9def3e4fec7bcd95d5d7e24e5b11edf448a82b04d19da3d3e52" + } + ] + }, + { + "bom-ref": "27005acb61c3774b", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Brussels", + "hashes": [ + { + "alg": "SHA-1", + "content": "5138859e805d84b20b63d1fe5490ff255ee82858" + }, + { + "alg": "SHA-256", + "content": "11497c2fd62834d7c1ab568fb47e5947a7f5a63378dc723d7f73ccab21da5342" + } + ] + }, + { + "bom-ref": "56b56be304570f21", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Bucharest", + "hashes": [ + { + "alg": "SHA-1", + "content": "8a63b772f37d2ae386b0455fd0e59a87e0218b59" + }, + { + "alg": "SHA-256", + "content": "3b3a0017333b2f466e59c8ac3dc0cf7aa4f0a4608040a3180f752b19d6a93526" + } + ] + }, + { + "bom-ref": "a5511a586f130b76", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Budapest", + "hashes": [ + { + "alg": "SHA-1", + "content": "59ea894eecb461e9f5fe18f47a2ff7faadfc4c3b" + }, + { + "alg": "SHA-256", + "content": "b98bde5a204ae4b583174d206bc77005e96a3121e217782b3255ddf3de9fd4f9" + } + ] + }, + { + "bom-ref": "7733637d10d6fe3a", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Busingen", + "hashes": [ + { + "alg": "SHA-1", + "content": "75bca683f46cb7b34728cbec259e91e4f4447bfd" + }, + { + "alg": "SHA-256", + "content": "bc45f8c6c8190477cdaae46f77059fab74fde92a02fc57b733f07cb9a55e98a3" + } + ] + }, + { + "bom-ref": "008cd73832ad28f0", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Chisinau", + "hashes": [ + { + "alg": "SHA-1", + "content": "5fa517df491b152daca27eba1861cbb4cad6df09" + }, + { + "alg": "SHA-256", + "content": "5749f01c78d0c2fd50d0dc2280c1957ce0419edbfc7c4073c67e6da78153d8c8" + } + ] + }, + { + "bom-ref": "06ef7443be64692a", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Copenhagen", + "hashes": [ + { + "alg": "SHA-1", + "content": "bdb13d9ab968612b6e88666b575dc1924d396889" + }, + { + "alg": "SHA-256", + "content": "d2d9a359ef02d2afe293f429c4fd60fc04fbf8d1d8343c9b224dcfc116c011a8" + } + ] + }, + { + "bom-ref": "6595427f00eefc05", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Gibraltar", + "hashes": [ + { + "alg": "SHA-1", + "content": "e14236c7b6944713a4a0edbcd0cf0dedae46a330" + }, + { + "alg": "SHA-256", + "content": "c79088f67ba5d3fa9ad989bd573bfdef0e86c89e310ea70bc3e01e14dca1075e" + } + ] + }, + { + "bom-ref": "c0152a1e31231acb", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Helsinki", + "hashes": [ + { + "alg": "SHA-1", + "content": "f70cdd43ef4f7c47a29bbd1e3ebc915d42a646c7" + }, + { + "alg": "SHA-256", + "content": "ed7d89fae1fb40a9582edd7e03ed02d7fe81ba456b9c1ed8d6ee5f0b931aad45" + } + ] + }, + { + "bom-ref": "3fa34c27e010573d", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Kaliningrad", + "hashes": [ + { + "alg": "SHA-1", + "content": "d9313a3aa4b7b5bd519d3305db9eed390c09ec30" + }, + { + "alg": "SHA-256", + "content": "78018b1f78b60635b744bc5d78ca209f87c184a634ffe11510b3dfe885eed165" + } + ] + }, + { + "bom-ref": "8ac170b57e401a1e", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Kiev", + "hashes": [ + { + "alg": "SHA-1", + "content": "9f18dcc63d109a4b83a267f418e72dfe05bfd863" + }, + { + "alg": "SHA-256", + "content": "242912df3212e0725ded4aab25fd869c52f13c3ce619764a883adcbbd937afc5" + } + ] + }, + { + "bom-ref": "70cc4aa720a15c91", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Kirov", + "hashes": [ + { + "alg": "SHA-1", + "content": "c89ee11141a7669a0b6b08d779f977c04e06b6be" + }, + { + "alg": "SHA-256", + "content": "a44267313cba43fb671622af5b17cda285def184f6121e8ec6007164643e3c25" + } + ] + }, + { + "bom-ref": "16b6ba7b142cdb11", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Luxembourg", + "hashes": [ + { + "alg": "SHA-1", + "content": "ace67ea11b9557266507dca203b6634083ddb3f9" + }, + { + "alg": "SHA-256", + "content": "90b76259274c78a40f34aa5b58545b5409edfbba2fd08efa1b300896cb4062ee" + } + ] + }, + { + "bom-ref": "046c3621c6fc6a1e", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Madrid", + "hashes": [ + { + "alg": "SHA-1", + "content": "7486d3d7c6637773fc920cbbb366443fe2697478" + }, + { + "alg": "SHA-256", + "content": "74103ad1e48f71f4cd9b6d1c03dcd97b58d87bb8affb02b1d6967b204036ebd6" + } + ] + }, + { + "bom-ref": "a8920a40995602c6", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Malta", + "hashes": [ + { + "alg": "SHA-1", + "content": "a4eb2da99676eb54f10e9327ed68e47ee64b7407" + }, + { + "alg": "SHA-256", + "content": "7c4134c8d37bd159e31fd739e8b1b8203a9f3023788bd9c83b8109e361eee5d5" + } + ] + }, + { + "bom-ref": "502eac06b504bbe0", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Minsk", + "hashes": [ + { + "alg": "SHA-1", + "content": "93ee118b2776a73060ecf25b5206f233d44090ef" + }, + { + "alg": "SHA-256", + "content": "c82aa831a68fec1c918d23393d795fef9dbf4d0948791bcba6ba09f45b3826c4" + } + ] + }, + { + "bom-ref": "d36fc50c7bac0368", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Monaco", + "hashes": [ + { + "alg": "SHA-1", + "content": "e5959bb542d4390caf820c415da58e2f379fbe9f" + }, + { + "alg": "SHA-256", + "content": "991fc96ee87786ba55cfb3e8f1310ed84b418937a0f2cb72f3cf510417ae8deb" + } + ] + }, + { + "bom-ref": "193ffa5c24867bfd", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Paris", + "hashes": [ + { + "alg": "SHA-1", + "content": "4bc5f5ceb14882eb94674559fed6f4a9428d8718" + }, + { + "alg": "SHA-256", + "content": "e9e280ef5a4603e11f70b37762129ae4daa10635fdd96cac2a9e0559f4e7cbaf" + } + ] + }, + { + "bom-ref": "01cdf18e256dac63", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Riga", + "hashes": [ + { + "alg": "SHA-1", + "content": "5f80655c66e2737dc8eee9d2c622e39246138b85" + }, + { + "alg": "SHA-256", + "content": "79d10debbaa2743458d0dec1fb71d3c576cea80d245f84819da82a25d93c1401" + } + ] + }, + { + "bom-ref": "a6562413fbd39ac2", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Rome", + "hashes": [ + { + "alg": "SHA-1", + "content": "892f0a0fa8e336e53bfe6e5473299f8ab237f096" + }, + { + "alg": "SHA-256", + "content": "e878580b27d866d9803e3b82eed5c0b851ef55174e2b76e13caa5e741421a138" + } + ] + }, + { + "bom-ref": "b82fb9a9eb8437cb", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Samara", + "hashes": [ + { + "alg": "SHA-1", + "content": "08b92c8f3c911110d72768698ff4edc347f477c8" + }, + { + "alg": "SHA-256", + "content": "52278e6f22bf900faeda4266078cfa7fed25cc1d5653bd345cf3090fde6e9114" + } + ] + }, + { + "bom-ref": "b939279056550f2f", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Saratov", + "hashes": [ + { + "alg": "SHA-1", + "content": "328f9955d364c1c3930b1a1d65bec6be6bf832ed" + }, + { + "alg": "SHA-256", + "content": "29ab2a05f63412656a143515fe57218a8e19b9c916dfd05de15a87afcc0d9849" + } + ] + }, + { + "bom-ref": "0f703b0b907fd680", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Simferopol", + "hashes": [ + { + "alg": "SHA-1", + "content": "869aba8df03ae6b33637bdf117aaff2848e20e40" + }, + { + "alg": "SHA-256", + "content": "b1ee6f714fd88fd61fef6df54f95abacb80dd3036c25e9a10708fec9b11c34cf" + } + ] + }, + { + "bom-ref": "ccdadab633c7e459", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Sofia", + "hashes": [ + { + "alg": "SHA-1", + "content": "8bf90f00a0a67a3d3b48161fc945740fe4019695" + }, + { + "alg": "SHA-256", + "content": "16813fb30f2ebb782a806ce0664014ddfbf921890d32ec3d1398bd182bf9245c" + } + ] + }, + { + "bom-ref": "347f995714c443e9", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Stockholm", + "hashes": [ + { + "alg": "SHA-1", + "content": "52f93313dc34ddf0953210ef441d7162320285cd" + }, + { + "alg": "SHA-256", + "content": "07b242f9e3d8150663bfaf417fe7d209927fc299fac487789b70841956c35335" + } + ] + }, + { + "bom-ref": "b5122073a9398785", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Tallinn", + "hashes": [ + { + "alg": "SHA-1", + "content": "79a3d50fd287819f372692515a438aaf027e2790" + }, + { + "alg": "SHA-256", + "content": "e3c4ba916c25500c709c56395c040abad62a834fafaf5163a89974b7f66b019a" + } + ] + }, + { + "bom-ref": "8a75f4d1d419256d", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Tirane", + "hashes": [ + { + "alg": "SHA-1", + "content": "2eb38a0e1edf118f9d251f41510803e786c62e46" + }, + { + "alg": "SHA-256", + "content": "62dbc606a32a5f50ceca86c6f96d088ea689bced60a1623c986f045cde9c730a" + } + ] + }, + { + "bom-ref": "d9c6b4367b3b9229", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Ulyanovsk", + "hashes": [ + { + "alg": "SHA-1", + "content": "e568d5c9bcc6223e63e7ac10f064f76c6f93a2e4" + }, + { + "alg": "SHA-256", + "content": "9cfe87e108465369f14dbf5f8eed9285028f6500c09d06cc3e787be94c55cb91" + } + ] + }, + { + "bom-ref": "72639fabc5225d89", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Uzhgorod", + "hashes": [ + { + "alg": "SHA-1", + "content": "4ce66f6b1b5f293d6791d6410952bc93b2fc730c" + }, + { + "alg": "SHA-256", + "content": "098575b4ec6599758c85bcad8dd21d89bca213a9f890c0ead6defd14878705f3" + } + ] + }, + { + "bom-ref": "c7f182a2acb9fbba", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Vienna", + "hashes": [ + { + "alg": "SHA-1", + "content": "0b331488dd93646f22f2f77e19e320311b071f3a" + }, + { + "alg": "SHA-256", + "content": "116fab88b849fbbba59b136477814d2e0fa7d7f735166554d6e72a787cd2ccf8" + } + ] + }, + { + "bom-ref": "75dbe05015c449c7", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Vilnius", + "hashes": [ + { + "alg": "SHA-1", + "content": "2381fea618f5d7029b2a29753232733021337581" + }, + { + "alg": "SHA-256", + "content": "75adc0a906b39e283f5e5020984a36f34b4f58ef1d3099efbc899ff07f035f7e" + } + ] + }, + { + "bom-ref": "f1140613fb1babd7", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Volgograd", + "hashes": [ + { + "alg": "SHA-1", + "content": "df7f439877b13d7198dfa8c48ff72b87a2f0ec73" + }, + { + "alg": "SHA-256", + "content": "e8dd322bdb997a5de1885744c8e03b3e6c0eec2689712ad7e3f2ef05e0be5880" + } + ] + }, + { + "bom-ref": "abdee5a4682c15a0", + "type": "file", + "name": "/usr/share/zoneinfo/Europe/Zaporozhye", + "hashes": [ + { + "alg": "SHA-1", + "content": "1579a787fb93e6350aea43bfd42f7a603bb23373" + }, + { + "alg": "SHA-256", + "content": "b6c5127b52518818e3b4211e89e5e1e9a479cca65f7763a0afb145d512c38e34" + } + ] + }, + { + "bom-ref": "835a0ec5459f486d", + "type": "file", + "name": "/usr/share/zoneinfo/Factory", + "hashes": [ + { + "alg": "SHA-1", + "content": "390d3d7898a36ad1e31a939339fd7160e464ca54" + }, + { + "alg": "SHA-256", + "content": "46c9e49942a62722b9bf1737fcb8130dd160938faa7c035862ef02637c37aa1d" + } + ] + }, + { + "bom-ref": "99c3559661f7af29", + "type": "file", + "name": "/usr/share/zoneinfo/GB", + "hashes": [ + { + "alg": "SHA-1", + "content": "ebbbd8852b59532ffdb5c32b1623afdfa8231780" + }, + { + "alg": "SHA-256", + "content": "b14c486019e3cb259cf8235a0d6a4bc3ff6cfa726a165f1ea2df403c8ae31b86" + } + ] + }, + { + "bom-ref": "ba618cbc8be9a768", + "type": "file", + "name": "/usr/share/zoneinfo/GMT", + "hashes": [ + { + "alg": "SHA-1", + "content": "0e94823baf3e5865c79f728bf51191bab399070c" + }, + { + "alg": "SHA-256", + "content": "d7b39879094135d13efd282937690b43f48bb53597ce3e78697f48dcceaeb3ec" + } + ] + }, + { + "bom-ref": "1c1a36a77afb6a24", + "type": "file", + "name": "/usr/share/zoneinfo/HST", + "hashes": [ + { + "alg": "SHA-1", + "content": "2892dc88fbd47a7a0e16d03cc87c6d595ba38fef" + }, + { + "alg": "SHA-256", + "content": "44048bf7df61bdcf45972c13426b039f0d34d80947d60a2603183b3b6be4027f" + } + ] + }, + { + "bom-ref": "829c7064188b3c5d", + "type": "file", + "name": "/usr/share/zoneinfo/Hongkong", + "hashes": [ + { + "alg": "SHA-1", + "content": "d326333ca3e2edca7f786918c7951a06f1c44aba" + }, + { + "alg": "SHA-256", + "content": "680a46ee9866bd0c8435fef70694663c1e8ca2ba1e50ff2979ad62f27295707a" + } + ] + }, + { + "bom-ref": "1fea6136b9ed0b2b", + "type": "file", + "name": "/usr/share/zoneinfo/Iceland", + "hashes": [ + { + "alg": "SHA-1", + "content": "3aa67a08d552bd8051258ce645372b22c558d7c6" + }, + { + "alg": "SHA-256", + "content": "9cdcea6aa1eed8276d3f6620e0c0ffae9cfcc3722c443ea6ba39147975eafaa3" + } + ] + }, + { + "bom-ref": "69ad588bc4d64b6e", + "type": "file", + "name": "/usr/share/zoneinfo/Indian/Chagos", + "hashes": [ + { + "alg": "SHA-1", + "content": "326a413bc818167376dd2fc9c1ac14a9dd416f11" + }, + { + "alg": "SHA-256", + "content": "f9d2fc010d11285d8430248e7a9ca16c5fe67949e768866f00b3be70aa0ea871" + } + ] + }, + { + "bom-ref": "775a8f3f1323fae8", + "type": "file", + "name": "/usr/share/zoneinfo/Indian/Christmas", + "hashes": [ + { + "alg": "SHA-1", + "content": "1e62a2bf7c15beeb78d1c062b226331db4446a65" + }, + { + "alg": "SHA-256", + "content": "6d094a3d9b022ed04fc53e4a665588bd73f4eeaee9c23667b46944bac5dbbe05" + } + ] + }, + { + "bom-ref": "ed832f9476921c56", + "type": "file", + "name": "/usr/share/zoneinfo/Indian/Cocos", + "hashes": [ + { + "alg": "SHA-1", + "content": "7761aa167cd699a73e0d0c70c7f1a00a699b95ad" + }, + { + "alg": "SHA-256", + "content": "3a57c446d6734a074659b854ed56cec53c40831a33c1052ce6ef4b5f0f6b0009" + } + ] + }, + { + "bom-ref": "225a94bd38ac0558", + "type": "file", + "name": "/usr/share/zoneinfo/Indian/Kerguelen", + "hashes": [ + { + "alg": "SHA-1", + "content": "dd9391ef00bf4781c1dae786c233c8a81825bc3a" + }, + { + "alg": "SHA-256", + "content": "4dcaa3dc0c2628097499d2cfd37ab2ad70011ee31be9f7e45391ea2faee63b07" + } + ] + }, + { + "bom-ref": "59293ca07bc5660d", + "type": "file", + "name": "/usr/share/zoneinfo/Indian/Mahe", + "hashes": [ + { + "alg": "SHA-1", + "content": "23a234646bfbf6ee27031bf32b15bbd43e0823d4" + }, + { + "alg": "SHA-256", + "content": "478e69e66f9c02bb7e2810469322695475a612353403ee54c812e56cf37d1075" + } + ] + }, + { + "bom-ref": "3d8a00f5bcfab4db", + "type": "file", + "name": "/usr/share/zoneinfo/Indian/Maldives", + "hashes": [ + { + "alg": "SHA-1", + "content": "f69ba692aa4c7d712bf51a09b8fe68b1cfb5be19" + }, + { + "alg": "SHA-256", + "content": "b5b933b3fc554914587c6af95702a4c0d93941418737a8895372ea514aa7d475" + } + ] + }, + { + "bom-ref": "235240a97668fb60", + "type": "file", + "name": "/usr/share/zoneinfo/Indian/Mauritius", + "hashes": [ + { + "alg": "SHA-1", + "content": "1e21cdd9ca44996775e8b46d232ef1e497bf7076" + }, + { + "alg": "SHA-256", + "content": "f257466ded0ce1a324c63e6ebc3a39354e6cde0504f1daa35136c6855278ef0f" + } + ] + }, + { + "bom-ref": "a837bd4574a80ed0", + "type": "file", + "name": "/usr/share/zoneinfo/Indian/Reunion", + "hashes": [ + { + "alg": "SHA-1", + "content": "97bff51604c3625fdc7dbfe384e1ec9f065333ba" + }, + { + "alg": "SHA-256", + "content": "c3d95eaceb2806a82b1f2c093f3d73ca0cfa0034ad0446aefbe8c4904f6a955e" + } + ] + }, + { + "bom-ref": "adb94b7138e2b056", + "type": "file", + "name": "/usr/share/zoneinfo/Iran", + "hashes": [ + { + "alg": "SHA-1", + "content": "469ae4fa0c85ca6402e54bf09bd00d746995baf8" + }, + { + "alg": "SHA-256", + "content": "29fc1861f6e088decab370c3ef2c090d0c3fbdea50b78c2d3158ddaf001b8088" + } + ] + }, + { + "bom-ref": "16fabc0918db1979", + "type": "file", + "name": "/usr/share/zoneinfo/Israel", + "hashes": [ + { + "alg": "SHA-1", + "content": "45b76c650154fbdd0ac740b7d909f4d603515004" + }, + { + "alg": "SHA-256", + "content": "7d24df9162d3bd40305941c5f3589f35befa85c03595b571c0037c7c05d2837c" + } + ] + }, + { + "bom-ref": "efcebe4a44a38cd2", + "type": "file", + "name": "/usr/share/zoneinfo/Jamaica", + "hashes": [ + { + "alg": "SHA-1", + "content": "1f325b0b117255cca531eb9c5df64d2591ca7578" + }, + { + "alg": "SHA-256", + "content": "addb98caf3459bb75d6e14ed76aa66e642bead2d067e7fe81814a4f02cf13503" + } + ] + }, + { + "bom-ref": "7a7efedc773e89f4", + "type": "file", + "name": "/usr/share/zoneinfo/Japan", + "hashes": [ + { + "alg": "SHA-1", + "content": "9f4e57c6ea9aed36aaffede660db9c6991b3ec02" + }, + { + "alg": "SHA-256", + "content": "046bb09bc08554ef8a54dc05685d0eab10e04c692f6320b6091b6a6f07214c83" + } + ] + }, + { + "bom-ref": "0823dd9e2908ce49", + "type": "file", + "name": "/usr/share/zoneinfo/Kwajalein", + "hashes": [ + { + "alg": "SHA-1", + "content": "a172c7e4992f1da096f844620bdd1efe8dfe8476" + }, + { + "alg": "SHA-256", + "content": "94c42dbf73fe0fde173fed33b5f15512b1ea614f40108ac0dacf6e15c23785e0" + } + ] + }, + { + "bom-ref": "ec4b8cc5a208c451", + "type": "file", + "name": "/usr/share/zoneinfo/Libya", + "hashes": [ + { + "alg": "SHA-1", + "content": "fd17573587b5564fa583933a2b75fdfbe89a97c7" + }, + { + "alg": "SHA-256", + "content": "8ff53f7072863fb56f1e71339392b6de7e50675efa4333b9e032b677c9c9a527" + } + ] + }, + { + "bom-ref": "fc723dcfb3d8ecad", + "type": "file", + "name": "/usr/share/zoneinfo/MET", + "hashes": [ + { + "alg": "SHA-1", + "content": "97a4ab6f36331422d7ea697ba846f1103ff9733e" + }, + { + "alg": "SHA-256", + "content": "1fff331a4414e98097d33bec1a9bbf2a155d991b57acd1bb4c11f8559fb4e514" + } + ] + }, + { + "bom-ref": "974a89057d6f244e", + "type": "file", + "name": "/usr/share/zoneinfo/MST", + "hashes": [ + { + "alg": "SHA-1", + "content": "f03bf6321d2b81a107f6ba56548078b5ea256f7c" + }, + { + "alg": "SHA-256", + "content": "f8fb610056087bb3ca8ecf5cdcb5305c1652b649fde512f606b9ee1b3556fb9e" + } + ] + }, + { + "bom-ref": "685379acb1564fda", + "type": "file", + "name": "/usr/share/zoneinfo/MST7MDT", + "hashes": [ + { + "alg": "SHA-1", + "content": "09c6d5bba53a1136dda4611046b06c80acea5c1b" + }, + { + "alg": "SHA-256", + "content": "85452d031526621178e9b24c91af69b7ecc30df47036669378956135c4e735d0" + } + ] + }, + { + "bom-ref": "b132717d927ce6a1", + "type": "file", + "name": "/usr/share/zoneinfo/NZ", + "hashes": [ + { + "alg": "SHA-1", + "content": "76a7b65f6566d6019f7c0ebbaa2bf6dc93823bb1" + }, + { + "alg": "SHA-256", + "content": "d7b5175387ac78e29f7b9021e411512756be283ed3d1819942ef5d45ecf338e4" + } + ] + }, + { + "bom-ref": "7ac2f2d030e75625", + "type": "file", + "name": "/usr/share/zoneinfo/NZ-CHAT", + "hashes": [ + { + "alg": "SHA-1", + "content": "487fe8bbe967648ce2fe400dc29f8d427667a805" + }, + { + "alg": "SHA-256", + "content": "58019f2faa29dc7db7081293230a728769054dd7c0d0fa9e96e8c4299e71314d" + } + ] + }, + { + "bom-ref": "a3ef9574b8b2f824", + "type": "file", + "name": "/usr/share/zoneinfo/Navajo", + "hashes": [ + { + "alg": "SHA-1", + "content": "a578e7e933eac5e8b0f676e50f11a807392b19ce" + }, + { + "alg": "SHA-256", + "content": "f4df3cc74c79d070a25a7927744d3a422a05d862a9a234a12105c5c964efb22d" + } + ] + }, + { + "bom-ref": "62c31e834bf0413b", + "type": "file", + "name": "/usr/share/zoneinfo/PRC", + "hashes": [ + { + "alg": "SHA-1", + "content": "59a6816c1006b00de53daf1c6142e7f759804a7f" + }, + { + "alg": "SHA-256", + "content": "395b1d4ba9ef45348272c98ecab314999ecaa510f7c5830342ed6eba42cfc25d" + } + ] + }, + { + "bom-ref": "6581ab248d0c659b", + "type": "file", + "name": "/usr/share/zoneinfo/PST8PDT", + "hashes": [ + { + "alg": "SHA-1", + "content": "1102d7c6b701efc0b09c32323ed45c1a960c8922" + }, + { + "alg": "SHA-256", + "content": "4d8e69bd43e8d71f0f58e115593814d68c1a6aa441255b17b3e9a92a9d6efc46" + } + ] + }, + { + "bom-ref": "1cb4c15e07437c53", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Apia", + "hashes": [ + { + "alg": "SHA-1", + "content": "b5aeb901fbf1e9f32c3c19167592d2a600603a61" + }, + { + "alg": "SHA-256", + "content": "fb24a31e538dd3ad0b22cf4788d80cb17d79134622510e2aa67c8712d09721cb" + } + ] + }, + { + "bom-ref": "f2afd53a1d71e366", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Bougainville", + "hashes": [ + { + "alg": "SHA-1", + "content": "d7b061e1766da69d77269b8954c939f2481509d5" + }, + { + "alg": "SHA-256", + "content": "c1b670d434aa6c04cbf73b647a07e5be7dcf2ff30663e10c24e0f0cfabe55b36" + } + ] + }, + { + "bom-ref": "194d400d896ba396", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Chuuk", + "hashes": [ + { + "alg": "SHA-1", + "content": "ab74ddc48bc0ccf1054218f2a38195d228651e48" + }, + { + "alg": "SHA-256", + "content": "cd2606a5760aa15600fa906aec3ddea4aba9b89b1e1143de20c7db52ace5bf32" + } + ] + }, + { + "bom-ref": "24cfd8868d228a47", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Efate", + "hashes": [ + { + "alg": "SHA-1", + "content": "b88a82019adb99d337aa9bdcd74793159e7b7c1c" + }, + { + "alg": "SHA-256", + "content": "c86380cf2219e957e6ee00ad07545d6584cf64ecd19b9fd7e6a36c3dc0ff8751" + } + ] + }, + { + "bom-ref": "f783736bc4155050", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Enderbury", + "hashes": [ + { + "alg": "SHA-1", + "content": "35ee62f80ffb1a5a1a83574d4b465c08e5e9dca6" + }, + { + "alg": "SHA-256", + "content": "5bf2e193795d4a8ec88bcdcf338097dfa71c254332ed3235e7d3270ea7051cf7" + } + ] + }, + { + "bom-ref": "9ba9164b1e2a145b", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Fakaofo", + "hashes": [ + { + "alg": "SHA-1", + "content": "60cfe4f5795a042eacc60004c974b953c3c6b760" + }, + { + "alg": "SHA-256", + "content": "ebcdbbb97d8fa7c9a20ecf62964d207f1ed81e73a3cbea77dc8be5144950af6d" + } + ] + }, + { + "bom-ref": "8d5e58c368ccc0b7", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Fiji", + "hashes": [ + { + "alg": "SHA-1", + "content": "76b35aa5cc0195f0dfe759d182ca70aacdf4b08b" + }, + { + "alg": "SHA-256", + "content": "123f7bceecb95a0378bc8d03815f11efe25ff4e49d313557de133c375373439f" + } + ] + }, + { + "bom-ref": "3e9921e230fc7bb1", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Funafuti", + "hashes": [ + { + "alg": "SHA-1", + "content": "009b3e9a1010b4cd37ddb66bff6cbdcb52cc2862" + }, + { + "alg": "SHA-256", + "content": "812f276576cae6bbd0135d40700fde4fce64f830f75fea928cabe77c51dce579" + } + ] + }, + { + "bom-ref": "a75eba753c360da9", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Galapagos", + "hashes": [ + { + "alg": "SHA-1", + "content": "b4f4f3a0643b920ea506258c239de87417005b01" + }, + { + "alg": "SHA-256", + "content": "3727ec66f71d8629656377c1f3a004c5cfade0f6c52b8da8b7c3ba2d36998603" + } + ] + }, + { + "bom-ref": "d36e35db657064b2", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Gambier", + "hashes": [ + { + "alg": "SHA-1", + "content": "1489e9d0c595de571e44480d46b44c0097e7fe43" + }, + { + "alg": "SHA-256", + "content": "abd4f7e51731d259e30ec4b33c2bcb899e147ee102eb278a1a9b2bb8001c64db" + } + ] + }, + { + "bom-ref": "ff2b6e74a307824e", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Guadalcanal", + "hashes": [ + { + "alg": "SHA-1", + "content": "68093961343adcd06db9d0237e8b50419ab64e61" + }, + { + "alg": "SHA-256", + "content": "a69b3ab3a6e6541933831609ab8bbc3ed5bf0ff678e519226b8df966b4973f20" + } + ] + }, + { + "bom-ref": "a3398fdfc64fa77d", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Guam", + "hashes": [ + { + "alg": "SHA-1", + "content": "f963e0e4c288e9aaeadf120eae3cb0ff7013a53c" + }, + { + "alg": "SHA-256", + "content": "c97a94f15eb7ed24c114ed3b6103987aedd65435aabb85217845df4695fa9069" + } + ] + }, + { + "bom-ref": "aff7ee3b00497396", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Honolulu", + "hashes": [ + { + "alg": "SHA-1", + "content": "51a0bfcc4ed77ba41ead3fa764378e0f09455cfc" + }, + { + "alg": "SHA-256", + "content": "528f01a0a7c21d9cc853eb79b32ecabe8a343028d116b67e6d05cd616d83d5ee" + } + ] + }, + { + "bom-ref": "970f5b123b66f55c", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Kiritimati", + "hashes": [ + { + "alg": "SHA-1", + "content": "78298a4aedeca734a304f178e91606b4d72962f6" + }, + { + "alg": "SHA-256", + "content": "b78f341b3f703c5dc508805923c91e3884d91ae8bd1e2f82d9b28b2308cd8eef" + } + ] + }, + { + "bom-ref": "0ac0fb2d08bc8c5b", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Kosrae", + "hashes": [ + { + "alg": "SHA-1", + "content": "cf5e2f0d23a8313543ca47582114ea0c835cf0b9" + }, + { + "alg": "SHA-256", + "content": "b5e1e429c7d31a845f3ff7f73604e13049ac51626da067b2cd2f4cceac34b2c3" + } + ] + }, + { + "bom-ref": "35ee66a11c6e8947", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Majuro", + "hashes": [ + { + "alg": "SHA-1", + "content": "c5d14cb64f88c062ab8d82f8b69afe45519ca616" + }, + { + "alg": "SHA-256", + "content": "5663127802eeab9ef7b7eb3c889e76ca9683001ed76a2a4549906e864fd10f32" + } + ] + }, + { + "bom-ref": "6e78bf980f46e34d", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Marquesas", + "hashes": [ + { + "alg": "SHA-1", + "content": "45026965250b45d26e1af62045b54b36b9885af6" + }, + { + "alg": "SHA-256", + "content": "5a63de681b53d7bfc728c5d491b2986ab47347a9f2fd15a6f3b6ff978d2f826d" + } + ] + }, + { + "bom-ref": "4296804fc7c90214", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Midway", + "hashes": [ + { + "alg": "SHA-1", + "content": "715b5c39b4bb71131168910bdce8bf720a83b235" + }, + { + "alg": "SHA-256", + "content": "7218a2ae386cd5e8981a940f6b56f6f9b60a65f3e3bd2ec1fe6c9d43bac4db1a" + } + ] + }, + { + "bom-ref": "85fa67ae990b6cbf", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Nauru", + "hashes": [ + { + "alg": "SHA-1", + "content": "60b1014c5a6132889aebb41b59a324abe7470518" + }, + { + "alg": "SHA-256", + "content": "90f5b914416c9e4189a530cd7fcf878a19e5f5569da00bc926a4d2b6c0cdf0d5" + } + ] + }, + { + "bom-ref": "7fe6ffd3e57793ab", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Niue", + "hashes": [ + { + "alg": "SHA-1", + "content": "58a0bc5f95bdae5bbc5870bb33bfb7403f7d48d7" + }, + { + "alg": "SHA-256", + "content": "c16c73631f28c41351fff90d3108bc5751cbd40010fdf872da112a10e9739a53" + } + ] + }, + { + "bom-ref": "b2280d7cb7e3a004", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Norfolk", + "hashes": [ + { + "alg": "SHA-1", + "content": "2fac72e613b57aee6e9d326abb16a53f5045992b" + }, + { + "alg": "SHA-256", + "content": "d3ea212e8cfe37da5b6becba0cbc308a26bd5590986d4f046845bb5571aa899c" + } + ] + }, + { + "bom-ref": "ba50f25256355fba", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Noumea", + "hashes": [ + { + "alg": "SHA-1", + "content": "203a22bfa639189f6aceb9338dc7ce01ff79bace" + }, + { + "alg": "SHA-256", + "content": "13e18b4bb426c3739b34e37d6cdc00d488721a05865cdeca94af76246f55a4de" + } + ] + }, + { + "bom-ref": "4680d562ef82db64", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Palau", + "hashes": [ + { + "alg": "SHA-1", + "content": "f093cf245401ee7432df8375e88f18aaebe7eb67" + }, + { + "alg": "SHA-256", + "content": "fa004039c36449b9a8e280ff0c768e4d15d3853d9f2b87a177d365d8ad864525" + } + ] + }, + { + "bom-ref": "5ba5e1cd0a38f4f4", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Pitcairn", + "hashes": [ + { + "alg": "SHA-1", + "content": "0a44730a6999f2609d4319458fd5cb86f2f19f20" + }, + { + "alg": "SHA-256", + "content": "b0ad4cbe872b4d208d45bc6d326290cd240c1886150f0ee42638386276a8b0b0" + } + ] + }, + { + "bom-ref": "d046740b0c636a0d", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Pohnpei", + "hashes": [ + { + "alg": "SHA-1", + "content": "3d48500d89c7db8de96169df0b5ce033d7a10fe1" + }, + { + "alg": "SHA-256", + "content": "ee4a05d2735ebff35c2f093f0b2d03f70434de110a5403ed7a218e1b73bcf3ed" + } + ] + }, + { + "bom-ref": "b4714f02ea347143", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Port_Moresby", + "hashes": [ + { + "alg": "SHA-1", + "content": "e7fbde066f758c4d965a7ab799f27ac8428ebd27" + }, + { + "alg": "SHA-256", + "content": "1fb4613fb4bf246f537e265e441fe5f62713037df40338cfd80cb7d768e8ca5f" + } + ] + }, + { + "bom-ref": "ea82d18faff30085", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Rarotonga", + "hashes": [ + { + "alg": "SHA-1", + "content": "63370823946b5e953c4aac05a657dbdc10da28ed" + }, + { + "alg": "SHA-256", + "content": "9695a885289664511eb65f931860f584e7c5443d6f05b10b5197ac7834d47cde" + } + ] + }, + { + "bom-ref": "97829b3a5355c7f3", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Tahiti", + "hashes": [ + { + "alg": "SHA-1", + "content": "c5bae1f0278c5d05f571d2b04f1fd75df40472ad" + }, + { + "alg": "SHA-256", + "content": "c9a22621ddb737b5d6342691dc2d94e265c81b0e743010b6713986db122fc855" + } + ] + }, + { + "bom-ref": "c39753d77586a0c2", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Tarawa", + "hashes": [ + { + "alg": "SHA-1", + "content": "d084772ab43accb3713e5c0ed9c651434d662b96" + }, + { + "alg": "SHA-256", + "content": "28fea38528135a54fd642fe3d2bbb41aa8da6b7c892c3991ab2612a81144e799" + } + ] + }, + { + "bom-ref": "bac771288e912ede", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Tongatapu", + "hashes": [ + { + "alg": "SHA-1", + "content": "a6ff0943688ec6d3158f8d0f72595ca6a9badbb1" + }, + { + "alg": "SHA-256", + "content": "14d5bf3a7fea21eb6c9e63970d1dad5b9fbedc5f5b0fd3f5069ee74f7a0f4d8d" + } + ] + }, + { + "bom-ref": "7ed3a8e572dea8a4", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Wake", + "hashes": [ + { + "alg": "SHA-1", + "content": "7b8879d283b5817679207a6635dcd0ad9059cc6c" + }, + { + "alg": "SHA-256", + "content": "0346a78cf610bc43eae87c0a332d30ac5cf9c95001a4264731563cccf3c38331" + } + ] + }, + { + "bom-ref": "12c50f49cee11c29", + "type": "file", + "name": "/usr/share/zoneinfo/Pacific/Wallis", + "hashes": [ + { + "alg": "SHA-1", + "content": "688c8c8a3d61b0d09892a5e34a3f72089dc52787" + }, + { + "alg": "SHA-256", + "content": "837699bd07ada63d632fc2303a687e5ef9e194e063bac786055885258206ee5c" + } + ] + }, + { + "bom-ref": "d8241a6b91d95218", + "type": "file", + "name": "/usr/share/zoneinfo/Poland", + "hashes": [ + { + "alg": "SHA-1", + "content": "7af2dd5a07b4b8c26e16524120b85424fde44ebf" + }, + { + "alg": "SHA-256", + "content": "68e7493c1ca050e4134062a74aa4a4fc32159c042b4c9d8d40c8bfc9d273c5fa" + } + ] + }, + { + "bom-ref": "c9bc72c909f72af9", + "type": "file", + "name": "/usr/share/zoneinfo/Portugal", + "hashes": [ + { + "alg": "SHA-1", + "content": "9fc34f4f1a590d67386c71f270ef494ceb4c09b3" + }, + { + "alg": "SHA-256", + "content": "4bbe65d4ff3394ffa1b4ae6fe2296e333f55bad0ae49ca6717b6076e53490ea2" + } + ] + }, + { + "bom-ref": "fd204161ac30af2c", + "type": "file", + "name": "/usr/share/zoneinfo/ROC", + "hashes": [ + { + "alg": "SHA-1", + "content": "e5635f0691154dfc95a832e4445d2c9dfa44309c" + }, + { + "alg": "SHA-256", + "content": "25cfd02bc847bdcb11e586445ba886a76315f1f9be86f7e74944a6e8e8644543" + } + ] + }, + { + "bom-ref": "374c7016d7db6f46", + "type": "file", + "name": "/usr/share/zoneinfo/ROK", + "hashes": [ + { + "alg": "SHA-1", + "content": "30b1499e7dedb135ee71068846e50fa4a86bed2b" + }, + { + "alg": "SHA-256", + "content": "3673a9439d49ea97b47c9fb28433c6d41c469ca03ad320768f1514d075647c26" + } + ] + }, + { + "bom-ref": "35612f698c80af24", + "type": "file", + "name": "/usr/share/zoneinfo/Singapore", + "hashes": [ + { + "alg": "SHA-1", + "content": "b59595c88e53389d07914e7630f65dfaed3a6de7" + }, + { + "alg": "SHA-256", + "content": "e6929fde43ffc48bbac4081b31bbf7fd42643b3c26fadf322bdeadeb23cfc748" + } + ] + }, + { + "bom-ref": "cdf83d8894f58ccd", + "type": "file", + "name": "/usr/share/zoneinfo/Turkey", + "hashes": [ + { + "alg": "SHA-1", + "content": "d3fdf5120ff3dde53ccac2094830d51359d14ab3" + }, + { + "alg": "SHA-256", + "content": "2f24f072fa325c0a9bbecc48ea2782317c459a6cad941a37f7e305238443c45a" + } + ] + }, + { + "bom-ref": "8abca652d79cd9d4", + "type": "file", + "name": "/usr/share/zoneinfo/UCT", + "hashes": [ + { + "alg": "SHA-1", + "content": "d7948ef155843e0c7d055bdc3632877b49873864" + }, + { + "alg": "SHA-256", + "content": "3c71b358be81e13b1c24e199a119fd001dbcdb90edc7d44c2c7ae175321a0215" + } + ] + }, + { + "bom-ref": "f56fdbb715bd5d49", + "type": "file", + "name": "/usr/share/zoneinfo/W-SU", + "hashes": [ + { + "alg": "SHA-1", + "content": "7216c72e5b65d8aa6a7f2b0d73d1c673be4a0a7d" + }, + { + "alg": "SHA-256", + "content": "02d55516d0f9d497998260b4f129aee59867b77a920ba2ca0c58b15ec8588e7a" + } + ] + }, + { + "bom-ref": "8f0caf7d5ecf57af", + "type": "file", + "name": "/usr/share/zoneinfo/WET", + "hashes": [ + { + "alg": "SHA-1", + "content": "d1acd595a5d4a1e5c04f91a1b80e86a11b394efb" + }, + { + "alg": "SHA-256", + "content": "e5e7c4631295e7f17085e3530f99fc2984cc7e4bdb9a07db7702de8c18c2aab1" + } + ] + }, + { + "bom-ref": "4b0057544d788d05", + "type": "file", + "name": "/usr/share/zoneinfo/iso3166.tab", + "hashes": [ + { + "alg": "SHA-1", + "content": "0fc6d5c93a74b418876236fcac9d710b695c87a0" + }, + { + "alg": "SHA-256", + "content": "04c87fc98ecc5e9f03304cbbd636ab157dc8252369c2e132223228d872945c3e" + } + ] + }, + { + "bom-ref": "f3a269363b04981d", + "type": "file", + "name": "/usr/share/zoneinfo/leap-seconds.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "7f2cd8c69ac0c947d97c21b8999f49725d96f1d7" + }, + { + "alg": "SHA-256", + "content": "4aa024da4b2e7a45b57f5c3c464983f5d8efab18883d2250b96bd53b1d4e58f7" + } + ] + }, + { + "bom-ref": "8968d471ba70c83a", + "type": "file", + "name": "/usr/share/zoneinfo/posixrules", + "hashes": [ + { + "alg": "SHA-1", + "content": "1607371cc3e09de17ce3746d2f9d731f9887e2f2" + }, + { + "alg": "SHA-256", + "content": "5fa6dccc303352e1195c4348b189f3085014d8a56a1976c8e8a32bd4fedb69fd" + } + ] + }, + { + "bom-ref": "a03ccbbdd5ec9f71", + "type": "file", + "name": "/usr/share/zoneinfo/right/Africa/Abidjan", + "hashes": [ + { + "alg": "SHA-1", + "content": "76188a6d88196419831371b91928ac9db6bc83b2" + }, + { + "alg": "SHA-256", + "content": "c177f3894cfb7acf27cfefcefd177aebfa1699e409e7fc4cd5a11ef116f8d236" + } + ] + }, + { + "bom-ref": "5d16c51ce04b37be", + "type": "file", + "name": "/usr/share/zoneinfo/right/Africa/Accra", + "hashes": [ + { + "alg": "SHA-1", + "content": "02dd430d38adc7997ff4b7c544898e4ff0ae3f17" + }, + { + "alg": "SHA-256", + "content": "9863eb82771cf02cf4ee1de5ea5f77ee1f64735c3177ec2d5d88d16c3c22adac" + } + ] + }, + { + "bom-ref": "9a0bccf8719f18ba", + "type": "file", + "name": "/usr/share/zoneinfo/right/Africa/Addis_Ababa", + "hashes": [ + { + "alg": "SHA-1", + "content": "1a2dae6fb6469402fdb152b761cee35a40f11631" + }, + { + "alg": "SHA-256", + "content": "d2247051e9475386f19fdaa6bf7d12ce1512f7ef608783d89edd8a88d9b48f55" + } + ] + }, + { + "bom-ref": "b72d420855dfef26", + "type": "file", + "name": "/usr/share/zoneinfo/right/Africa/Algiers", + "hashes": [ + { + "alg": "SHA-1", + "content": "ae11b17e4be49dd4c75cb66f0651355b057b19fc" + }, + { + "alg": "SHA-256", + "content": "ae1ed232eba1c94a05f5e19ad6232076b09addb808405129e77b1629713beabc" + } + ] + }, + { + "bom-ref": "739abfeaf16f3f8d", + "type": "file", + "name": "/usr/share/zoneinfo/right/Africa/Bangui", + "hashes": [ + { + "alg": "SHA-1", + "content": "67e2c5ae05cb209fb1e38c8cab276ad2a6909cd4" + }, + { + "alg": "SHA-256", + "content": "0918dd4428aa52ae36a135800f5fcc423b8ca08ed77874b11920cd944c4fb72d" + } + ] + }, + { + "bom-ref": "499a1975e5172f2c", + "type": "file", + "name": "/usr/share/zoneinfo/right/Africa/Bissau", + "hashes": [ + { + "alg": "SHA-1", + "content": "2c00fc95dae85dd1b64e2d4dab8e83fdab1d4fa7" + }, + { + "alg": "SHA-256", + "content": "197606820a95c35d6c3d2f64e5e1d9542e198732db52d3b9ca6ff7294bb0ff9b" + } + ] + }, + { + "bom-ref": "0d2a6fe581e23b18", + "type": "file", + "name": "/usr/share/zoneinfo/right/Africa/Blantyre", + "hashes": [ + { + "alg": "SHA-1", + "content": "994639b2cfee59f64836c05f3b48931e2ff63462" + }, + { + "alg": "SHA-256", + "content": "3e39755e95604e242f4218d248dafd51ffa09392975c3f86c26907e6aad60da9" + } + ] + }, + { + "bom-ref": "a0b621bea0613174", + "type": "file", + "name": "/usr/share/zoneinfo/right/Africa/Casablanca", + "hashes": [ + { + "alg": "SHA-1", + "content": "fee57787cf71f1c38c6ffbeca6d31253c5a69724" + }, + { + "alg": "SHA-256", + "content": "30dceeb1934dc0eefd00a92e5776ac4fec085e20667523e363254ac857ac5789" + } + ] + }, + { + "bom-ref": "38aba3ede870f3a3", + "type": "file", + "name": "/usr/share/zoneinfo/right/Africa/Ceuta", + "hashes": [ + { + "alg": "SHA-1", + "content": "d487615d5a7455c44944247f9d4f533d3a749473" + }, + { + "alg": "SHA-256", + "content": "ca6b06411c93017e93ded83d917cac8399690d6fb2771bcc66ecf132ee2e3ef6" + } + ] + }, + { + "bom-ref": "1956d7fbefeb0df1", + "type": "file", + "name": "/usr/share/zoneinfo/right/Africa/El_Aaiun", + "hashes": [ + { + "alg": "SHA-1", + "content": "2804013ca3e4a532260206eb0747ebed696b057b" + }, + { + "alg": "SHA-256", + "content": "40d77bc305fa567c1a1442b0624f4f0d26f1c0f368367c85a58917bde31750e2" + } + ] + }, + { + "bom-ref": "aced37d45b6216eb", + "type": "file", + "name": "/usr/share/zoneinfo/right/Africa/Johannesburg", + "hashes": [ + { + "alg": "SHA-1", + "content": "fa8e7f696051fddc3e5018466ffa5edabab3da55" + }, + { + "alg": "SHA-256", + "content": "af7338314b4255661ce9afdd064e487321d4369ce15488395bb20bb4627d1ae2" + } + ] + }, + { + "bom-ref": "afa60be9fb711466", + "type": "file", + "name": "/usr/share/zoneinfo/right/Africa/Juba", + "hashes": [ + { + "alg": "SHA-1", + "content": "585e858ed6894183743783da23d1066a546aedef" + }, + { + "alg": "SHA-256", + "content": "5416feae2ba255834605ca4e707c721d2c3f3e7fde21d8c256329445c8c67ee8" + } + ] + }, + { + "bom-ref": "babffb762cac5aec", + "type": "file", + "name": "/usr/share/zoneinfo/right/Africa/Khartoum", + "hashes": [ + { + "alg": "SHA-1", + "content": "f3bb2e955ff8f3feef911d2c3258517bfa351675" + }, + { + "alg": "SHA-256", + "content": "0cd1350c87bd18606418d615dd78790f8ee9458ade7acb1af82b67afbdfc27f1" + } + ] + }, + { + "bom-ref": "77ab1d8e9610c5cd", + "type": "file", + "name": "/usr/share/zoneinfo/right/Africa/Monrovia", + "hashes": [ + { + "alg": "SHA-1", + "content": "f0a0ae93cc645c702b828887a140d8c4dc79f44b" + }, + { + "alg": "SHA-256", + "content": "eb1deb0dd9325844227c376d1532b484511c76f79f42032806553d36a9464e55" + } + ] + }, + { + "bom-ref": "02ef266a1336376d", + "type": "file", + "name": "/usr/share/zoneinfo/right/Africa/Ndjamena", + "hashes": [ + { + "alg": "SHA-1", + "content": "c1fcef0c4ec5fde9fca5fb83dc8867eea3377d7a" + }, + { + "alg": "SHA-256", + "content": "180050fab205819406f6d6b572fe6f37eb805cc3f796543185c3229108470189" + } + ] + }, + { + "bom-ref": "2c9d84332df3fc69", + "type": "file", + "name": "/usr/share/zoneinfo/right/Africa/Sao_Tome", + "hashes": [ + { + "alg": "SHA-1", + "content": "774bc2c324c817bcdef74d2d5b11a9c0ffa7d95f" + }, + { + "alg": "SHA-256", + "content": "0de4113ee9dadb292b55aaf2d49c4726604149a44fd6c52af4f098e6d3be5560" + } + ] + }, + { + "bom-ref": "175544d92c547101", + "type": "file", + "name": "/usr/share/zoneinfo/right/Africa/Tunis", + "hashes": [ + { + "alg": "SHA-1", + "content": "4171db54db6da784d8a37b04f5f5620e81376e43" + }, + { + "alg": "SHA-256", + "content": "dbc64f2ddde5756e10d2ec8156bbe83f6f9ecbeb33b5bd6d771542f623d8fc39" + } + ] + }, + { + "bom-ref": "11cc4d9d97f549ef", + "type": "file", + "name": "/usr/share/zoneinfo/right/Africa/Windhoek", + "hashes": [ + { + "alg": "SHA-1", + "content": "f8f3ac428751bf9ea93e626aa0f9bc162fb34ff1" + }, + { + "alg": "SHA-256", + "content": "9232e815aee566ea37642ad831abe23161c2f1c286dcffdc72d95f71d5e40289" + } + ] + }, + { + "bom-ref": "2eb1d2f7d14a0b77", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Adak", + "hashes": [ + { + "alg": "SHA-1", + "content": "3d28ea1ce4b362c587ad652992e556fbc288f7d9" + }, + { + "alg": "SHA-256", + "content": "6d3e31970fee36399f30950e3f68ce7a5038be38a64547241c2ac97daaccd994" + } + ] + }, + { + "bom-ref": "6e020924ee61b52d", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Anchorage", + "hashes": [ + { + "alg": "SHA-1", + "content": "4ace94a500dd294d5b21be750776291f7237b87f" + }, + { + "alg": "SHA-256", + "content": "b5b62f7337785e26117bbc34ef7976018f021e63eb3e208f8c752d4f949ef2ef" + } + ] + }, + { + "bom-ref": "de81ed4d7572f394", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Anguilla", + "hashes": [ + { + "alg": "SHA-1", + "content": "bae93c9976621e2dbdbb7ee2459cb49968e8bda8" + }, + { + "alg": "SHA-256", + "content": "dbe365d9a8abfd164690db1cec6c51c19f86154900595509c991401e13a16585" + } + ] + }, + { + "bom-ref": "b43dbcb99ec55ed4", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Araguaina", + "hashes": [ + { + "alg": "SHA-1", + "content": "7388ed13a231d869dc15b13e417fc1935a6dd0e1" + }, + { + "alg": "SHA-256", + "content": "82109fd707c8edb4e656ff24c036c4745b6eb99568f9f8be4a9480f69718b893" + } + ] + }, + { + "bom-ref": "c629be66cec46b4e", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Argentina/La_Rioja", + "hashes": [ + { + "alg": "SHA-1", + "content": "82533bc0548e570b18e7e333bdf75ca77294d307" + }, + { + "alg": "SHA-256", + "content": "ca44f15fcc0edf702aa78d83f590d05964fffa5955e697ad7e12c1231f974402" + } + ] + }, + { + "bom-ref": "eed9b623cd815c61", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Argentina/Rio_Gallegos", + "hashes": [ + { + "alg": "SHA-1", + "content": "881e6be7cd8224cc360d840e4c9e6efe01cbdb43" + }, + { + "alg": "SHA-256", + "content": "91cf62d744daee339ecffef8c6d3222602c0edcbac281a986de084084eee0a66" + } + ] + }, + { + "bom-ref": "8f579f37e66f3a50", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Argentina/Salta", + "hashes": [ + { + "alg": "SHA-1", + "content": "112ca0f3afdd0d437acc562f68d207001ccbfaeb" + }, + { + "alg": "SHA-256", + "content": "29c28845ace42cd30c66b7368489b0739b6e576a6ec994612aa6b0f21e3e41e7" + } + ] + }, + { + "bom-ref": "93314549cf5ca90b", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Argentina/San_Juan", + "hashes": [ + { + "alg": "SHA-1", + "content": "fbc1d8d41180bc9192e29d3b1fd659fede1946df" + }, + { + "alg": "SHA-256", + "content": "f37e4d35b9e3881d3a842b82322841fba4b1af27a4cc6a6e32a29ee516f5b7d9" + } + ] + }, + { + "bom-ref": "89b6f9a35bc7f76b", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Argentina/San_Luis", + "hashes": [ + { + "alg": "SHA-1", + "content": "c848c360bd64108d6b95bccc00176c1a6a00f48d" + }, + { + "alg": "SHA-256", + "content": "792ff8486d80c28aca88a4dd4a235f7fa2d8096c78b712807867d70ed696350b" + } + ] + }, + { + "bom-ref": "c85b518f38325562", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Argentina/Tucuman", + "hashes": [ + { + "alg": "SHA-1", + "content": "1d3dfd44ca2bdb1b1d0a11320c62eaa4f9dfd328" + }, + { + "alg": "SHA-256", + "content": "ff5b362c9623df8cc3c5322a8bc5fc68b8cb55a0bb2e869856244559179e65f4" + } + ] + }, + { + "bom-ref": "6266e4c2cc57bf40", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Argentina/Ushuaia", + "hashes": [ + { + "alg": "SHA-1", + "content": "a4df280d48d561b9fee5798c6f6f0e4dc61aca4c" + }, + { + "alg": "SHA-256", + "content": "ef3d614cc912b10dfd59f42f529a41d4e4f5dc0a653a5cbecf7f49eaf32518a7" + } + ] + }, + { + "bom-ref": "20c57484a8893b13", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Aruba", + "hashes": [ + { + "alg": "SHA-1", + "content": "ed5a29a5d798fc60c69fd6af3828f454c3ec15bd" + }, + { + "alg": "SHA-256", + "content": "ec9709d87bbdd0aae7be4070156e5dc05c12d822da203cb1030354342bae2df0" + } + ] + }, + { + "bom-ref": "978980949e9fa2cf", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Asuncion", + "hashes": [ + { + "alg": "SHA-1", + "content": "0ba1df05e941d9c7119123c02b0c77595bcafa2c" + }, + { + "alg": "SHA-256", + "content": "a8578deb3800b6aacd9e448736cc82f80dbb0247516df7a22663e822bf3d959c" + } + ] + }, + { + "bom-ref": "ae39fd1b85e41425", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Atikokan", + "hashes": [ + { + "alg": "SHA-1", + "content": "b0c0f69d250ee9cf1f6b95262e7f5543fe19c6c8" + }, + { + "alg": "SHA-256", + "content": "2fe220cd5f52ece0e3aa468ed33c443eaad61fc9e3bfbb47b7b754e8ad1a4613" + } + ] + }, + { + "bom-ref": "38dc0ae6e54e56e6", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Bahia", + "hashes": [ + { + "alg": "SHA-1", + "content": "4a9331fe3fda81bc83cbfd5b69181a0b77b43396" + }, + { + "alg": "SHA-256", + "content": "57be9fcdea20da18d7324009677d390f2098a1035f052a946e4c0ab101b52aa7" + } + ] + }, + { + "bom-ref": "82463ecce7fdf48b", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Bahia_Banderas", + "hashes": [ + { + "alg": "SHA-1", + "content": "ccdd1e5a46bb8a9eb391f51bd90a6396d80d5fbe" + }, + { + "alg": "SHA-256", + "content": "e44343d2e96738b96a6d83d5327dda8d041b1fb8e62b281f7fac7e56642b960b" + } + ] + }, + { + "bom-ref": "55548c82c5a0ddce", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Barbados", + "hashes": [ + { + "alg": "SHA-1", + "content": "919d66d2092de7c669be2eeee0f44cda00bac53f" + }, + { + "alg": "SHA-256", + "content": "64d664790217c76976a3a1f386ac82fc0f2295247f64547385711656b9f8f13b" + } + ] + }, + { + "bom-ref": "032e7cec592ae906", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Belem", + "hashes": [ + { + "alg": "SHA-1", + "content": "466c0d84da6083f734e16639b4c93d305868bccf" + }, + { + "alg": "SHA-256", + "content": "b42a81883f67e3e7f2ab0d7599a7828babe2847de45cca683ad9c1b9e0e5f517" + } + ] + }, + { + "bom-ref": "b3af90fe113eb210", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Belize", + "hashes": [ + { + "alg": "SHA-1", + "content": "f6fc69bf833eee40484767928b9e742441045a8e" + }, + { + "alg": "SHA-256", + "content": "64c8ad5880386d6b4b00707ee7f83b0e327b72fbf4ba8f9cb71f8d083eca8472" + } + ] + }, + { + "bom-ref": "4f28c73b066f11eb", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Blanc-Sablon", + "hashes": [ + { + "alg": "SHA-1", + "content": "f155d2fadcc0c41bb0723e9338e1b43b0531fcf2" + }, + { + "alg": "SHA-256", + "content": "6e9969e343200d865e82628b88310774524c38ae9c5ede30b7e5163acb70e6a1" + } + ] + }, + { + "bom-ref": "f9f178c1e26e2803", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Boa_Vista", + "hashes": [ + { + "alg": "SHA-1", + "content": "c66dacc8e76def17ca6c30e7d66c84180c2d42dc" + }, + { + "alg": "SHA-256", + "content": "571117b369cd426ece6f39b03b5105236c6b45bb48a14633c510b8217f9d1425" + } + ] + }, + { + "bom-ref": "1299d59f1fd67bed", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Bogota", + "hashes": [ + { + "alg": "SHA-1", + "content": "ee37b38299af8bcfe3e9f6dda3af96767c9b6909" + }, + { + "alg": "SHA-256", + "content": "2e6720337c693fb0d3d5b9da958aed2736a828d3db08d060262c04e98dd4d09d" + } + ] + }, + { + "bom-ref": "0a29edf80d271049", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Boise", + "hashes": [ + { + "alg": "SHA-1", + "content": "d06afb5c0682d254f9e95d79241b386d00173ec8" + }, + { + "alg": "SHA-256", + "content": "7189c739198e19615b75a8a336aabd3cb223a765487382eb16c783cbb91c8c95" + } + ] + }, + { + "bom-ref": "e221d8f735444f25", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Buenos_Aires", + "hashes": [ + { + "alg": "SHA-1", + "content": "ba25c5008a687b76ce047dc3305a427ecfa88bcd" + }, + { + "alg": "SHA-256", + "content": "11f0d85022c24b9744ed8511f75ca67bed67a3e5d8b439fd02ec0d05d1afa710" + } + ] + }, + { + "bom-ref": "49e7f020cc6e462a", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Cambridge_Bay", + "hashes": [ + { + "alg": "SHA-1", + "content": "c74dbfbf0b88e75f52e47fb079aa495a6dee3446" + }, + { + "alg": "SHA-256", + "content": "dfa58c30cd1217d5f8e9dcb757d64bfb901c28a5f9475a38ac7de9e03c2d80c0" + } + ] + }, + { + "bom-ref": "1aa6f42c40e6d5b9", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Campo_Grande", + "hashes": [ + { + "alg": "SHA-1", + "content": "261091289dcc1c5362bc96e47d45981456606a95" + }, + { + "alg": "SHA-256", + "content": "a8706aa08dfa1b1d590cbea13a10219797f5462aaba556a2173265c54c3ee514" + } + ] + }, + { + "bom-ref": "74adb00dc64b67ec", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Cancun", + "hashes": [ + { + "alg": "SHA-1", + "content": "ccae0bc2a899957e88c15214d9892fd105f8b4ec" + }, + { + "alg": "SHA-256", + "content": "c8ce65577ce494166ad8f57f14a55ae961e27dd7aa356d8802fb5c9f2d510fb6" + } + ] + }, + { + "bom-ref": "d42122e830780632", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Caracas", + "hashes": [ + { + "alg": "SHA-1", + "content": "707c66a94fe672b5633d5c5b9982fd6af5df080a" + }, + { + "alg": "SHA-256", + "content": "a96e2b167e1bada8a827a7102f82ab54b80f2e34748c157c39d50d4605a1b3f6" + } + ] + }, + { + "bom-ref": "b25e1e2891dbbd88", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Catamarca", + "hashes": [ + { + "alg": "SHA-1", + "content": "dbe691ff5debb639fefe1c128189603f8d03344f" + }, + { + "alg": "SHA-256", + "content": "e8eb2f2a5ceead008a4000d50d3e8363a3181dd29a51600efd0328fe1ff75ba0" + } + ] + }, + { + "bom-ref": "4400eeb18d898a5c", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Cayenne", + "hashes": [ + { + "alg": "SHA-1", + "content": "f197ce5cecb67f9144800955a54994983c92b126" + }, + { + "alg": "SHA-256", + "content": "0eafc920b259f82d386d82c7ba4dae9301cec9a9dea17abcfd27f40dd2b06d18" + } + ] + }, + { + "bom-ref": "d944058bdf34b277", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Cayman", + "hashes": [ + { + "alg": "SHA-1", + "content": "84d0f1cef0809cde20925163306efad1f2998dd0" + }, + { + "alg": "SHA-256", + "content": "6962181adfca6314029efa4c3a2dae17c775d6031cff3bd6c63d49ed30c31cb1" + } + ] + }, + { + "bom-ref": "efbceddc68808a5d", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Chicago", + "hashes": [ + { + "alg": "SHA-1", + "content": "0e5f83d394a5eb74856f9798a51a9dac1563e44d" + }, + { + "alg": "SHA-256", + "content": "94f71253caa6bde6db52f2f5ad3b816df0c2da9af7cc7d4a4abf1b91e391821f" + } + ] + }, + { + "bom-ref": "4c7af512c8386a40", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Chihuahua", + "hashes": [ + { + "alg": "SHA-1", + "content": "81d540e6967344737be0acdcd98d07705e0245e0" + }, + { + "alg": "SHA-256", + "content": "1f0007a74669d2ede5ccea2c49ff17ced52ae2e28756ebbf5eb08aa08b3e9d45" + } + ] + }, + { + "bom-ref": "c64450b885b18bfa", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Cordoba", + "hashes": [ + { + "alg": "SHA-1", + "content": "79b7fcf0fe3572d931bf79b43869b0b5826b2804" + }, + { + "alg": "SHA-256", + "content": "71317d3d37f6c9547838beb260ddc830350e32ebb702fc280a878e0cc20b5b01" + } + ] + }, + { + "bom-ref": "130465c931560dca", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Costa_Rica", + "hashes": [ + { + "alg": "SHA-1", + "content": "44dd7772680277d86ae2e0719d7067b9ea75c374" + }, + { + "alg": "SHA-256", + "content": "a697b205589062aab7599c2e812f164df50b32f2d9c8f2ea7b42f1e53b4e3e94" + } + ] + }, + { + "bom-ref": "4f28d7115fca5449", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Creston", + "hashes": [ + { + "alg": "SHA-1", + "content": "2b59fa53be5813f7a84664b23345f98d7cc1338a" + }, + { + "alg": "SHA-256", + "content": "071acbeb9c771d5bd244b0d6bd73b7e7893aa40deb19c1074908a0094de4463f" + } + ] + }, + { + "bom-ref": "a1a994bc3fad406b", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Cuiaba", + "hashes": [ + { + "alg": "SHA-1", + "content": "bc9f6730538e0fd6bc6fe7716b6a4e19332c14ce" + }, + { + "alg": "SHA-256", + "content": "8df0f198ed0c5152081615876698fccee1adf1a84368ea30b3e7a00671e231e2" + } + ] + }, + { + "bom-ref": "9a1fdcce8a9b0373", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Danmarkshavn", + "hashes": [ + { + "alg": "SHA-1", + "content": "c250afb955a658311ad581078b2c4df23b69f49a" + }, + { + "alg": "SHA-256", + "content": "99b1ff4ad370c93145279b56504ccd2d0bb39f92c002aaa490bd5969285cdd1f" + } + ] + }, + { + "bom-ref": "8ec5793328d3ddf7", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Dawson", + "hashes": [ + { + "alg": "SHA-1", + "content": "20fdccf15239a70feface1a4ab39d07e1d3801f6" + }, + { + "alg": "SHA-256", + "content": "80603f40526cf878ecb1d2d6d65a94f8c1021fe53acd720174dd856219566ddd" + } + ] + }, + { + "bom-ref": "4a9e8dcc469cae29", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Dawson_Creek", + "hashes": [ + { + "alg": "SHA-1", + "content": "9a07ac3d92a5541d8a85c88841973e2ca90e25cc" + }, + { + "alg": "SHA-256", + "content": "4f2bb35e6c4c8804409dc81ad024881457705dca4ae468184f73c04bff51ead1" + } + ] + }, + { + "bom-ref": "c06fcd9faa20fab9", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Detroit", + "hashes": [ + { + "alg": "SHA-1", + "content": "1fb7c485aabe5e02a2dd569424f76906ba9648d6" + }, + { + "alg": "SHA-256", + "content": "5549176b1eddafbfea4f7156db3872560d9c7085e200706ca281103c7918d1dd" + } + ] + }, + { + "bom-ref": "3c624f1212834152", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Edmonton", + "hashes": [ + { + "alg": "SHA-1", + "content": "bd885797915f08217c88b32535258f184ec62296" + }, + { + "alg": "SHA-256", + "content": "022478c15aee3ef60c10f350122529278adf3954d02e30f78df5ca8d6eb937ee" + } + ] + }, + { + "bom-ref": "85edb339bd7be1dd", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Eirunepe", + "hashes": [ + { + "alg": "SHA-1", + "content": "1f594862fa42fd4bb8ae2ae8c9f8d63cd3b96196" + }, + { + "alg": "SHA-256", + "content": "c4f55d375fc0af9be895823939d16d5b414619368817025e4ca1cd33b72b251f" + } + ] + }, + { + "bom-ref": "99511da6306a7698", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/El_Salvador", + "hashes": [ + { + "alg": "SHA-1", + "content": "c5d1c6aab980fdb2aefd94b11ae48a32e847e70f" + }, + { + "alg": "SHA-256", + "content": "04993007b8086580ac35e8fa524bbdcd45f045c965608fca3da26deaa1ede337" + } + ] + }, + { + "bom-ref": "b3139526cef35eba", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Ensenada", + "hashes": [ + { + "alg": "SHA-1", + "content": "18a7448d2014ec7c4c6fdc13cea755c37aab411d" + }, + { + "alg": "SHA-256", + "content": "a1a5199868d6aa4c24fef5e908e99e4c6e116d16afc554d25ec431990d8f02da" + } + ] + }, + { + "bom-ref": "d16900f27591794a", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Fort_Nelson", + "hashes": [ + { + "alg": "SHA-1", + "content": "3509ae723694d605035e21406cfe20a5d28af632" + }, + { + "alg": "SHA-256", + "content": "c20108fb21d7e76aef2c0bd669f1dfd6043b5269020bde6cff669f088d13abec" + } + ] + }, + { + "bom-ref": "2ec30d8b1436bc10", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Fort_Wayne", + "hashes": [ + { + "alg": "SHA-1", + "content": "6235f82350f693318f4ae7aca340200669854d9a" + }, + { + "alg": "SHA-256", + "content": "7dfb7b2796f9b9d9a69d402b2e8269a2f834e1d01e2da34af490b2b24c21ace5" + } + ] + }, + { + "bom-ref": "182aa33f975e0f39", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Fortaleza", + "hashes": [ + { + "alg": "SHA-1", + "content": "9ed4395adccd655edbda8af1ae3be46299e9e383" + }, + { + "alg": "SHA-256", + "content": "0c7c0174e80d20bb3233959a3c804006cbeff3d3ac86ab6b1e21988da7efdc9c" + } + ] + }, + { + "bom-ref": "86f73221b8c5c792", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Glace_Bay", + "hashes": [ + { + "alg": "SHA-1", + "content": "ebcc97f62e0650249d02b903f709a28a91a1d277" + }, + { + "alg": "SHA-256", + "content": "799c72cab5fafdcf48dfe766d52c24e7fd7f4a61e0d554c97888023766219287" + } + ] + }, + { + "bom-ref": "68227008c1d53259", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Godthab", + "hashes": [ + { + "alg": "SHA-1", + "content": "71b1fb003b57b6f8c40cb7cf11322bd4bcb775ae" + }, + { + "alg": "SHA-256", + "content": "9624c131f68def896035d8ad7e011456dfc60c90a2956e32545fc391e4ec9a44" + } + ] + }, + { + "bom-ref": "6695438651999c5c", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Goose_Bay", + "hashes": [ + { + "alg": "SHA-1", + "content": "221aec59fa0187e94587132a88c9c1338930b352" + }, + { + "alg": "SHA-256", + "content": "462bef059c879d10cbcce574a128bc2d847dfc342dd77f43e6494f3aba6cf94c" + } + ] + }, + { + "bom-ref": "89ee442664bfeec8", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Grand_Turk", + "hashes": [ + { + "alg": "SHA-1", + "content": "62d260571dc9499085ffd0ad050bd2bc0f5d2582" + }, + { + "alg": "SHA-256", + "content": "62c8422fa9715c9897596d74d1960cd40018f44a1253b0380a33017fcc3fdde3" + } + ] + }, + { + "bom-ref": "323fe1577c43e076", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Guatemala", + "hashes": [ + { + "alg": "SHA-1", + "content": "c18e465cc61e853f11e3daaaeaf9cf12ccd5eaa7" + }, + { + "alg": "SHA-256", + "content": "b8d8d7b3edd1a237b4d4aee860162700cf11e25aa9102ba61bed6640ced94463" + } + ] + }, + { + "bom-ref": "4950f8ca77b092a9", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Guayaquil", + "hashes": [ + { + "alg": "SHA-1", + "content": "f04f648e2ad9640677dd29cbcf453757e919c6e2" + }, + { + "alg": "SHA-256", + "content": "261c214acf962a01f616006a670d717ed104b80afb006f3c78e7e1054c9637fa" + } + ] + }, + { + "bom-ref": "6e5ee5a960228dec", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Guyana", + "hashes": [ + { + "alg": "SHA-1", + "content": "e13bdff705b99b33d018ba358a8a1bc4a77a75e4" + }, + { + "alg": "SHA-256", + "content": "8664ad5ccf6551c731f7235c7dc307cf5ef4106dc109e99da1cfc3b193b8d536" + } + ] + }, + { + "bom-ref": "9e4169e8a70c0523", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Halifax", + "hashes": [ + { + "alg": "SHA-1", + "content": "8cee8ad21c24925851825ee17a04a879a04a927c" + }, + { + "alg": "SHA-256", + "content": "86c84ef0a21a387fdd0058046268c5eca94c10cb73231638724d344cc478bd10" + } + ] + }, + { + "bom-ref": "19cce8269aa740f7", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Hermosillo", + "hashes": [ + { + "alg": "SHA-1", + "content": "594d0994f5c120f536740a1cd137b15145ebcd5e" + }, + { + "alg": "SHA-256", + "content": "778350bbb96f05ab2e74834f35be215801da358dd7c261f1ba3bfe6f1c9b07e9" + } + ] + }, + { + "bom-ref": "4bacf41000dbf867", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Indiana/Marengo", + "hashes": [ + { + "alg": "SHA-1", + "content": "509c06d6dc8d8888c88820f10c509e90cd6ef36d" + }, + { + "alg": "SHA-256", + "content": "b3e8fe887a5ce407f7208f16d0b296a4594b3f93de33b70d5a260139f66cfab2" + } + ] + }, + { + "bom-ref": "dc8eda18b273328d", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Indiana/Petersburg", + "hashes": [ + { + "alg": "SHA-1", + "content": "f7d0797ce609388d83337592db21ff1dfaf1759c" + }, + { + "alg": "SHA-256", + "content": "285f27ebb54838060d3a33238dae6ee695af5c258d40780fc89c797a239360ba" + } + ] + }, + { + "bom-ref": "855548412080c35b", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Indiana/Tell_City", + "hashes": [ + { + "alg": "SHA-1", + "content": "091003cb997362f96cd0435e1fd563f009c13257" + }, + { + "alg": "SHA-256", + "content": "2e364ec1dc4a5ebca7a3bbe89b3f498f9d2f1362739d26a08d887571f3a65d19" + } + ] + }, + { + "bom-ref": "0bbd74ec49ebf8cc", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Indiana/Vevay", + "hashes": [ + { + "alg": "SHA-1", + "content": "a4f3e0316af346c4104d7ace8b915064a565eb8e" + }, + { + "alg": "SHA-256", + "content": "74d2b6f797d63017075f1425e695e5f61a6e1b3ef08f812bc330e22fae18333a" + } + ] + }, + { + "bom-ref": "3790845ccd4e4a37", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Indiana/Vincennes", + "hashes": [ + { + "alg": "SHA-1", + "content": "2b1fcc354b93cae8a9ab816f9eaefc88d71be3b4" + }, + { + "alg": "SHA-256", + "content": "970baaf1ed777c07d74546d61282e9df9a0488ad90084210a770c82ae78b8357" + } + ] + }, + { + "bom-ref": "08ed403daeb8527e", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Indiana/Winamac", + "hashes": [ + { + "alg": "SHA-1", + "content": "c921575d7e5138a21e5701c60b91257640f9660e" + }, + { + "alg": "SHA-256", + "content": "cade9b122bd306fd5bb1fd4ff0471861c8eaed414a166ba570554a349a7a20b6" + } + ] + }, + { + "bom-ref": "59207e94102a2df7", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Inuvik", + "hashes": [ + { + "alg": "SHA-1", + "content": "26d19218f2493ce9bffc049cd8e83b91c585a607" + }, + { + "alg": "SHA-256", + "content": "c51f2f3cef4844e5c800ed3592d85bc69e5f05dc4a53e94c76b2433be16b1a5f" + } + ] + }, + { + "bom-ref": "f32bbe9f65242841", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Iqaluit", + "hashes": [ + { + "alg": "SHA-1", + "content": "fa5b5992a1fd349412efe973004e87f17b6bc67b" + }, + { + "alg": "SHA-256", + "content": "7179d696e8f2aac641bbe8a0b0635128246fd4669e258befaac2e91170f75d1e" + } + ] + }, + { + "bom-ref": "99113e3af95fbb18", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Jujuy", + "hashes": [ + { + "alg": "SHA-1", + "content": "f37bf373231dc62e6dc9292dd1a7a5a6ea350062" + }, + { + "alg": "SHA-256", + "content": "f9b3f77caa862cee71a893e64fe1e4dbb24eda9ceff5875ae5b744638810aa14" + } + ] + }, + { + "bom-ref": "327b63068da6865a", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Juneau", + "hashes": [ + { + "alg": "SHA-1", + "content": "d6b8c5b1267edbb53b88b4027aec2d47dccf8c50" + }, + { + "alg": "SHA-256", + "content": "2be628832b78514026f7932644e221fd4490d502f686f069d7ebf8ba0b220c40" + } + ] + }, + { + "bom-ref": "2845f6b93bdaf424", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Kentucky/Monticello", + "hashes": [ + { + "alg": "SHA-1", + "content": "26b30fd3d1b05906f7dcff54f74022702762811c" + }, + { + "alg": "SHA-256", + "content": "ff56ff4d9ee52923c57354d5d836e87cc8acb748bbf0648c2406bcbafaa4227c" + } + ] + }, + { + "bom-ref": "2c04ee8426fa9a42", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Knox_IN", + "hashes": [ + { + "alg": "SHA-1", + "content": "2e4bbd4d2d4a5985eaf70306a65630ccaac5a8ce" + }, + { + "alg": "SHA-256", + "content": "ac4c928ad03acaf42f346aa81bf9d269a513adb14a955ff55a5177927832c6a8" + } + ] + }, + { + "bom-ref": "8628f9c6d5e11522", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/La_Paz", + "hashes": [ + { + "alg": "SHA-1", + "content": "f3f98197ac2eff5c28b03f46aff257aeb4fbb9dd" + }, + { + "alg": "SHA-256", + "content": "c95fb5fbc80f32110f36c756e648d901e362e4d96bc48e5b8d5eaf8c232654f7" + } + ] + }, + { + "bom-ref": "9b5885ac568b2616", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Lima", + "hashes": [ + { + "alg": "SHA-1", + "content": "19f85755b9bb958c43f7a3ce779c51124e65a490" + }, + { + "alg": "SHA-256", + "content": "f1ddf01592db3ede97b94d43fd210e2a841365b84017601248f51b21c20314eb" + } + ] + }, + { + "bom-ref": "ef6fa1061b15f7b3", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Los_Angeles", + "hashes": [ + { + "alg": "SHA-1", + "content": "8bc90b409c65a4297e874d896b9e216dd4dece6c" + }, + { + "alg": "SHA-256", + "content": "5f2a6fb2744e29e2a6ac88e89843ce0c74f8934b37d1b35d67e115d5363c9e57" + } + ] + }, + { + "bom-ref": "2e9a880f21959ee5", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Louisville", + "hashes": [ + { + "alg": "SHA-1", + "content": "4e438926303c8d5ca99bbee3499f5b93f483e290" + }, + { + "alg": "SHA-256", + "content": "afb7d1fa10278e2b8275017c592ba7679b4800a5fd1c875f5ecc8aa5ab21befe" + } + ] + }, + { + "bom-ref": "385d67f8e2584c63", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Maceio", + "hashes": [ + { + "alg": "SHA-1", + "content": "28f5555d5d9249fd9a5de665814bebb8e2a30ed1" + }, + { + "alg": "SHA-256", + "content": "564da2e13a0ac0d0bf7901bef8f811e53c3d78b51dbd5dc200630ba34151e6c8" + } + ] + }, + { + "bom-ref": "52b9f20cc4245d6f", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Managua", + "hashes": [ + { + "alg": "SHA-1", + "content": "7f121c056b462b7487792b722f42e07ad6c2b3e6" + }, + { + "alg": "SHA-256", + "content": "1a2e937499925a46e4d2b93113e7b035fdc270174a8fb4b65fd61f163b430ca3" + } + ] + }, + { + "bom-ref": "eedb66a970ce0e32", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Manaus", + "hashes": [ + { + "alg": "SHA-1", + "content": "f63c6e91bcfc4ff715db2fde78bd87049dc6ff52" + }, + { + "alg": "SHA-256", + "content": "c921cc8c1a0a1ed91805b81c0f22d5ee3a78fe3422f6366160c37b03302fd250" + } + ] + }, + { + "bom-ref": "f2d1911b4137de91", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Martinique", + "hashes": [ + { + "alg": "SHA-1", + "content": "9b750b0dfd1d66c3f0f7c5eb956db417720db5d0" + }, + { + "alg": "SHA-256", + "content": "18a0f75cca7c62ff1b7c8e0463856c1fa811e796806ef23cfd53d40a860861fa" + } + ] + }, + { + "bom-ref": "fbed0b4cd920aff0", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Matamoros", + "hashes": [ + { + "alg": "SHA-1", + "content": "07b19eb170ea97f00ff6b929a441806154e78e00" + }, + { + "alg": "SHA-256", + "content": "298a0a44d6576a9c127e048262a3f7f1b613653e0520a75bf912a65ccef50771" + } + ] + }, + { + "bom-ref": "a4a39cf5b008ea2a", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Mazatlan", + "hashes": [ + { + "alg": "SHA-1", + "content": "b95a3aa1ef177390a7c8c8ed20ef6c785883485c" + }, + { + "alg": "SHA-256", + "content": "972ebc94965c29a285412a68e853fc7729bd741b5be52edeb9f3b9a1a707ac43" + } + ] + }, + { + "bom-ref": "a5a258be78010959", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Mendoza", + "hashes": [ + { + "alg": "SHA-1", + "content": "a76cf095cb0ed10703f3c85b2d9a71d24d519beb" + }, + { + "alg": "SHA-256", + "content": "f5005f3971c083b81c94b0fa05262178468f7fb74462576a412f3d42b8dde50d" + } + ] + }, + { + "bom-ref": "5882418d2de2fced", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Menominee", + "hashes": [ + { + "alg": "SHA-1", + "content": "9c990d28995cc94bafb947838e91e2c6a98bc081" + }, + { + "alg": "SHA-256", + "content": "a9f238c519f7699a3bdd001ffb5588fc5c80329a14c95309aa424c0026440108" + } + ] + }, + { + "bom-ref": "5bccb37b54834a9d", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Merida", + "hashes": [ + { + "alg": "SHA-1", + "content": "6e1b686131de13c08420145d0f21482f50c5e3ac" + }, + { + "alg": "SHA-256", + "content": "a6352eb8ee46c326f0231e5e22ae330d465964514c21390e28aa5ddee377fb5c" + } + ] + }, + { + "bom-ref": "b6d93b55e99927df", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Metlakatla", + "hashes": [ + { + "alg": "SHA-1", + "content": "3273e15f439e1e11aaa295efb23d958a3f47b0ac" + }, + { + "alg": "SHA-256", + "content": "fc8c8661c4ebe17757c7fcc12b570674a0a84af90cdb36edf7e19d0293c36dfd" + } + ] + }, + { + "bom-ref": "abb266f01c535cd9", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Mexico_City", + "hashes": [ + { + "alg": "SHA-1", + "content": "b302b90247759fbd663cc375af4b950c7757941e" + }, + { + "alg": "SHA-256", + "content": "2b2e4e7d462f693d46142205a03882b383f3cfbc6eaa0a4c514fe71fd5112f12" + } + ] + }, + { + "bom-ref": "fa7778191f5e9aa4", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Miquelon", + "hashes": [ + { + "alg": "SHA-1", + "content": "ad885d883f932e876c32794a8fb89d777e79c33a" + }, + { + "alg": "SHA-256", + "content": "fa668103b3e90dc7ebbb2666fe3e76b29b15627b2eb6a82317a2f9b474ce98c2" + } + ] + }, + { + "bom-ref": "a67b44a4b017aaa9", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Moncton", + "hashes": [ + { + "alg": "SHA-1", + "content": "acbf1d07459a3b7adaeaeec2ec381e4aa61c264b" + }, + { + "alg": "SHA-256", + "content": "d587577011570e8271781f98b52f5ccb8650a7a1dc2c50789f4cb5d5d7e9c13a" + } + ] + }, + { + "bom-ref": "5446e6457b799bbc", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Monterrey", + "hashes": [ + { + "alg": "SHA-1", + "content": "f7145722a1b99d6645ee4e50284ba0af5720f999" + }, + { + "alg": "SHA-256", + "content": "a0334e1c8f6ebfdb959a536fea620a72031db45036d563864cdaba4e34b0c2c7" + } + ] + }, + { + "bom-ref": "3247afb499000cca", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Montevideo", + "hashes": [ + { + "alg": "SHA-1", + "content": "59f2a2ad905959d66047a742e7ae54203fbde17f" + }, + { + "alg": "SHA-256", + "content": "5717f3694cbcfdddb8b0ce33c5b50193f3cc1af97474230f0fe4f230d4769b01" + } + ] + }, + { + "bom-ref": "d4796e38ed3bc1ee", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Montreal", + "hashes": [ + { + "alg": "SHA-1", + "content": "c3c12775f021f944101bf960dfa4b392c5b48ae0" + }, + { + "alg": "SHA-256", + "content": "bd1fdaf567be65339c2fe8cadf9e690d0929548cd731edcb41ae7f322885a590" + } + ] + }, + { + "bom-ref": "f9a1aa35386240ac", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Nassau", + "hashes": [ + { + "alg": "SHA-1", + "content": "d8c61c85f823ffd277764baf52646a247f47a256" + }, + { + "alg": "SHA-256", + "content": "4ca3f90b3314d2fd13ba6310ac2e97a772dfdf1074ad87e9d2bc292549743ad2" + } + ] + }, + { + "bom-ref": "473b154752b4fbef", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/New_York", + "hashes": [ + { + "alg": "SHA-1", + "content": "1706f2e355174cb274f14fce57c79dc51d645575" + }, + { + "alg": "SHA-256", + "content": "9699b3dbf1b5a2fe33cc0eeb1bae542d83608786c0b1872b07b24adda81556a1" + } + ] + }, + { + "bom-ref": "2c9a377f882f7073", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Nipigon", + "hashes": [ + { + "alg": "SHA-1", + "content": "07fdd514959ac8a16e2a08288f903412f781c805" + }, + { + "alg": "SHA-256", + "content": "bedddedf42d1ecd3db1eeb61988fa1216f75b06c45a768822a16b4bf3e78542f" + } + ] + }, + { + "bom-ref": "6eabc6441299d978", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Nome", + "hashes": [ + { + "alg": "SHA-1", + "content": "c7c58c11806cdd649b569853b17ccfcb0a3baeff" + }, + { + "alg": "SHA-256", + "content": "2f167608a9d4171d89ee0a4d68c3ee845ebbd073e3759dc663a95dc8c865e4c1" + } + ] + }, + { + "bom-ref": "7294dd9d34b94c66", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Noronha", + "hashes": [ + { + "alg": "SHA-1", + "content": "7463d6f86dfd5e4590cfa67a1c4d66ee35fe118b" + }, + { + "alg": "SHA-256", + "content": "cc5b5c148b76dc58c925f589124f7f1ac05a52e9bc8f8cb0bf8bbef2b5779c78" + } + ] + }, + { + "bom-ref": "b33a360135a1b558", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/North_Dakota/Beulah", + "hashes": [ + { + "alg": "SHA-1", + "content": "7df91787b13ea67d6226d626ae11e5d84b1179d7" + }, + { + "alg": "SHA-256", + "content": "5a05c79be4ba9c4ed5a70aedbb8e83c2864c9ee5d974824130552d11097f654d" + } + ] + }, + { + "bom-ref": "7a8e982afbf5d2ad", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/North_Dakota/Center", + "hashes": [ + { + "alg": "SHA-1", + "content": "f78e004bd1a4f59f918da3fba9e1a261ecf4ca58" + }, + { + "alg": "SHA-256", + "content": "c4daf0f8f179948ca4f3edfef1c4bf6ea9926d157cbb83334d990c4f3ae76fb3" + } + ] + }, + { + "bom-ref": "f58926b661c65883", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/North_Dakota/New_Salem", + "hashes": [ + { + "alg": "SHA-1", + "content": "88da36a7aa3ecfdfca5480dc5f381a10aaf41f14" + }, + { + "alg": "SHA-256", + "content": "f728e13f15039666ade97ebb9e0e7d54b575495e14aa88ccf2761d29e5a390f4" + } + ] + }, + { + "bom-ref": "4c39c783f7542185", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Ojinaga", + "hashes": [ + { + "alg": "SHA-1", + "content": "66d477c00667d75459902693f2f844398f8b849b" + }, + { + "alg": "SHA-256", + "content": "e9cb05ec786e833e837b19a3d7bfe611e6d3ff3da1fc576fa5ea4f44c43f937f" + } + ] + }, + { + "bom-ref": "59efa0c7ed121bd5", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Pangnirtung", + "hashes": [ + { + "alg": "SHA-1", + "content": "96c1c7ecd3b0734074f9f2388ecd66d9e7964acc" + }, + { + "alg": "SHA-256", + "content": "c71e8ae865312e517ebc4076ecb9665c2cfdc7155549d18462e01275961925b8" + } + ] + }, + { + "bom-ref": "11d8a04286289486", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Paramaribo", + "hashes": [ + { + "alg": "SHA-1", + "content": "ac95bd0c866b405628685d462d93bc5d0dcdda42" + }, + { + "alg": "SHA-256", + "content": "cf4b95b3e776a776aaffb4c77cb62dcad960796b0876d0663c01ae3da38c078c" + } + ] + }, + { + "bom-ref": "fa1493654af04aee", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Phoenix", + "hashes": [ + { + "alg": "SHA-1", + "content": "b07023c58f0f07134b1fa44a7909483bc2ece29d" + }, + { + "alg": "SHA-256", + "content": "8a89f0e65cd0a0b2edbbf65a7a81441aa91073b133edac17c25c6c9f809b8995" + } + ] + }, + { + "bom-ref": "bea7c029d1d658fc", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Port-au-Prince", + "hashes": [ + { + "alg": "SHA-1", + "content": "53c15bf2fa7782bc15a8687a1cb7d8308d395ebe" + }, + { + "alg": "SHA-256", + "content": "aab1855d3200ed78c12406a44d8558a9a875dc57f94090b2c205811a92b5e066" + } + ] + }, + { + "bom-ref": "927ae03fe5388cd9", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Porto_Acre", + "hashes": [ + { + "alg": "SHA-1", + "content": "98e9d883dd26bbe4c274c4d8d676c2bcb42d1e27" + }, + { + "alg": "SHA-256", + "content": "90e09a708c3c756baf60fafda6f8a5f3316b8f0f13ae2433bcad860c74bd544c" + } + ] + }, + { + "bom-ref": "30e7d909d51e607e", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Porto_Velho", + "hashes": [ + { + "alg": "SHA-1", + "content": "f90471cd035d25edead4992f60dbc3a6eca0eea2" + }, + { + "alg": "SHA-256", + "content": "651eea662c20cfff098d84663237abba967604a6d0258d138d75e06ab483390b" + } + ] + }, + { + "bom-ref": "7374bb9894615250", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Puerto_Rico", + "hashes": [ + { + "alg": "SHA-1", + "content": "c5844b848fd8ed8ab2a728aff7a6ce46f95eeeca" + }, + { + "alg": "SHA-256", + "content": "a9e478dd8515a4c8086ff535afe44db1cf53b9400ec62aed7b6d122ecfb778f3" + } + ] + }, + { + "bom-ref": "eaffc8ba1702a489", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Punta_Arenas", + "hashes": [ + { + "alg": "SHA-1", + "content": "d7ca8a643873bf48ad4697d401c43e47ba80b040" + }, + { + "alg": "SHA-256", + "content": "300872a317db68e683587783e80e3a464c63971da1774b539fea0ee26763c451" + } + ] + }, + { + "bom-ref": "2b6eaaebe5e4cc74", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Rainy_River", + "hashes": [ + { + "alg": "SHA-1", + "content": "99f2f4a197a52778862adee4b1b7a593a43c695f" + }, + { + "alg": "SHA-256", + "content": "1680a0ae7e1d154aa9672b6e2d24155987de256acd7273f23177ef258d4ffe16" + } + ] + }, + { + "bom-ref": "85cc98a72a73adbf", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Rankin_Inlet", + "hashes": [ + { + "alg": "SHA-1", + "content": "5f30e146bb73e225902358bf4309e75a2ed5f5dd" + }, + { + "alg": "SHA-256", + "content": "1bb3cc33e21e5e7663a0cabcb02f9e7f74ee0619dcd0d84d4a4a31f611698b57" + } + ] + }, + { + "bom-ref": "9ab82e83855dec73", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Recife", + "hashes": [ + { + "alg": "SHA-1", + "content": "0ba2ca08f2fba631caea8fb6fc940d3026bc9ac4" + }, + { + "alg": "SHA-256", + "content": "4bf3764907eedcdc1325748d005e883ead0253178f552bf8c26f91c9472c5884" + } + ] + }, + { + "bom-ref": "5863cc301e8427f6", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Regina", + "hashes": [ + { + "alg": "SHA-1", + "content": "c9423136b4d214d9832eeeb9561b4b8058fead5f" + }, + { + "alg": "SHA-256", + "content": "7ef7b8f3a4e1baf07289907c77a4218ac0be68c7a24e980940a05cbba77e53c9" + } + ] + }, + { + "bom-ref": "7eff2080e21d8386", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Resolute", + "hashes": [ + { + "alg": "SHA-1", + "content": "0bbb9f0143829619a86c1d73e7db0bef63dbb063" + }, + { + "alg": "SHA-256", + "content": "2a208ed79da175c5081c8db0fb767d9b0e0270e4a73bb95f24ae0ffd22b6354f" + } + ] + }, + { + "bom-ref": "655205cbc11cef39", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Santarem", + "hashes": [ + { + "alg": "SHA-1", + "content": "cffc80e0c503d0567d0e6e27e8f8e2fc166c0157" + }, + { + "alg": "SHA-256", + "content": "5994056b5ce743dfdcdc80dba996df44665d743abbdff8d8841b7b4ac326339f" + } + ] + }, + { + "bom-ref": "bee4689f97a44e47", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Santiago", + "hashes": [ + { + "alg": "SHA-1", + "content": "99f95d99170d73e2a90aaacf6d17ec41d1e8ab3c" + }, + { + "alg": "SHA-256", + "content": "986a3d87481910c37ff5045ecb26e8d7832333bb9b8bf0cefa8f2518c787fcb5" + } + ] + }, + { + "bom-ref": "9053ec0a223960d9", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Santo_Domingo", + "hashes": [ + { + "alg": "SHA-1", + "content": "34ae761d5b22852d593396d7ba47682b06060f4c" + }, + { + "alg": "SHA-256", + "content": "24bf349defe5c3ed5d8950593acbcd57dc662784ddfae68b31cddfa02746f2ba" + } + ] + }, + { + "bom-ref": "3163e81d0a33749b", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Sao_Paulo", + "hashes": [ + { + "alg": "SHA-1", + "content": "119fc141a11808d15be7407b2894ef4601dbe919" + }, + { + "alg": "SHA-256", + "content": "30ef7b506e76ac5286ad4415d7daa8abf0af2b6c63abb540869a8dc1c61f28a0" + } + ] + }, + { + "bom-ref": "0042af14e527093f", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Scoresbysund", + "hashes": [ + { + "alg": "SHA-1", + "content": "b784fa1e86c247f48d02a4faddd8db6ed5ed9afa" + }, + { + "alg": "SHA-256", + "content": "fa41c201d42521e8a0db51e00fa9487fad84467b15706e00221088e217ba129d" + } + ] + }, + { + "bom-ref": "d1f052b0b59e7112", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Sitka", + "hashes": [ + { + "alg": "SHA-1", + "content": "a6f9b4f0b66aec72cdca591a856243d529776e95" + }, + { + "alg": "SHA-256", + "content": "81ba6e3b87b7f9c9814c4f607a3c722a0bbd8355ab1647c51847882b3a3c0628" + } + ] + }, + { + "bom-ref": "e55ce43482255194", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/St_Johns", + "hashes": [ + { + "alg": "SHA-1", + "content": "400e3b11cff8acf487e4739bad557c1b7a157364" + }, + { + "alg": "SHA-256", + "content": "10784794564849767481803ad10924bd7092c041b5e5859dc7cdf883abe13a7e" + } + ] + }, + { + "bom-ref": "8e669dd61a674854", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Swift_Current", + "hashes": [ + { + "alg": "SHA-1", + "content": "5e88cf6e6fbe05951f3950856c6a396994bbd5e9" + }, + { + "alg": "SHA-256", + "content": "7752d4a7cd93e6c9a16f89dfa148ce6ac6f491cf40359f9d6730e03b4aedf848" + } + ] + }, + { + "bom-ref": "5ebcd3490f0e32d6", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Tegucigalpa", + "hashes": [ + { + "alg": "SHA-1", + "content": "d469e4255a563de31fbd87ae8cd97598f32222c5" + }, + { + "alg": "SHA-256", + "content": "c37dd7463adb25b95fd20bd17473e710e03c9c5d36481b4626a82aabd7469983" + } + ] + }, + { + "bom-ref": "7c33ff6ebd2593fd", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Thule", + "hashes": [ + { + "alg": "SHA-1", + "content": "b6310a4db7591b006fa2cd5b1f33699cc482f54c" + }, + { + "alg": "SHA-256", + "content": "67e571d61867a4ea726d7b19f5fabca2a7751219685d57eee29570ec9225f0ea" + } + ] + }, + { + "bom-ref": "29f612ea206f0219", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Thunder_Bay", + "hashes": [ + { + "alg": "SHA-1", + "content": "fae15856122255c188a68d7f5b05424dd9a5dc77" + }, + { + "alg": "SHA-256", + "content": "2c04cafec84e648e5d1154986626b32ebdb0def10d7c8843d27bbee20ad82e5e" + } + ] + }, + { + "bom-ref": "7661525512dedb1d", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Vancouver", + "hashes": [ + { + "alg": "SHA-1", + "content": "067128b78f49dff6017a4bb46418bee49374b939" + }, + { + "alg": "SHA-256", + "content": "59f3b401ccdbabb740e3395b75233402d6d2e0590195df1e5d8e73e736158361" + } + ] + }, + { + "bom-ref": "57edd36ad3e71eba", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Whitehorse", + "hashes": [ + { + "alg": "SHA-1", + "content": "705d61b665f97bd0408f00cf6859b3e918832c4b" + }, + { + "alg": "SHA-256", + "content": "b4313b33ba86eccfb0375437fe893cf15f051a4c2dc59f3ad3b9fc2dfa8bbcc0" + } + ] + }, + { + "bom-ref": "bf81a1140faa39dc", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Winnipeg", + "hashes": [ + { + "alg": "SHA-1", + "content": "d0ef2e75dd47308f0e1cc9d58b76b475768291ff" + }, + { + "alg": "SHA-256", + "content": "a91e3074914af25d44e7428f07b7e15c46a9b1c61adf146d78058bfb95128031" + } + ] + }, + { + "bom-ref": "609fd2dbf1cd2b8d", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Yakutat", + "hashes": [ + { + "alg": "SHA-1", + "content": "8c0a3edc2d383d230aa884f8450b7beaf1faa8ad" + }, + { + "alg": "SHA-256", + "content": "a8d6177b9fb9653500c7a5468e35508251be2a6dce9040ad9ebfbffcd4cc3ad2" + } + ] + }, + { + "bom-ref": "1da5ce9f12049f0a", + "type": "file", + "name": "/usr/share/zoneinfo/right/America/Yellowknife", + "hashes": [ + { + "alg": "SHA-1", + "content": "f123d094a43aacf14f7785b5a6863d4b8bfcd6dc" + }, + { + "alg": "SHA-256", + "content": "ffb6c39b1c757ff250651391b07dc8d3e3ea361f837472ef57c62eea144677ef" + } + ] + }, + { + "bom-ref": "50c133454c87515e", + "type": "file", + "name": "/usr/share/zoneinfo/right/Antarctica/Casey", + "hashes": [ + { + "alg": "SHA-1", + "content": "a5c90e8ed6c6966cfb6d20f64f5e8c5c3dab20db" + }, + { + "alg": "SHA-256", + "content": "8d5daeee007f1c92a7749a2e4dfc4f53aac37d955e7fd0f942d09b7841a1cbb7" + } + ] + }, + { + "bom-ref": "6344e15e0e987e20", + "type": "file", + "name": "/usr/share/zoneinfo/right/Antarctica/Davis", + "hashes": [ + { + "alg": "SHA-1", + "content": "0d47244c320c6c7ce3734b6c2c6c4bca0b202d12" + }, + { + "alg": "SHA-256", + "content": "74c57bbabd9734817648bb1b717ba8cea2d000297a0c82d9d9f0ecfb5a6de509" + } + ] + }, + { + "bom-ref": "ad167785e17317b3", + "type": "file", + "name": "/usr/share/zoneinfo/right/Antarctica/DumontDUrville", + "hashes": [ + { + "alg": "SHA-1", + "content": "73c722527690eb102f9eaf304f2a68eeaeb22af8" + }, + { + "alg": "SHA-256", + "content": "02aadd2f58956d4ecf18d22258af85b368a0140656ef079ea81e0f9e3eae59ef" + } + ] + }, + { + "bom-ref": "932379496a49aece", + "type": "file", + "name": "/usr/share/zoneinfo/right/Antarctica/Macquarie", + "hashes": [ + { + "alg": "SHA-1", + "content": "f56cb025ab08e48a25e7ed310f40f8f9fb0ba091" + }, + { + "alg": "SHA-256", + "content": "44e9dda15fa60b0f03fc171c9f2de82bb18a0078fdc5a8f49f74d60729bcaee3" + } + ] + }, + { + "bom-ref": "6c1a5edf52222e7d", + "type": "file", + "name": "/usr/share/zoneinfo/right/Antarctica/Mawson", + "hashes": [ + { + "alg": "SHA-1", + "content": "c6d49ad45fdc14949e02b2f065e682f1886bd129" + }, + { + "alg": "SHA-256", + "content": "c21ee7da441169a32db233d5f712b0e0e9f467224c31005a6ee94791e80dce7d" + } + ] + }, + { + "bom-ref": "0bce7f8a2ad53b04", + "type": "file", + "name": "/usr/share/zoneinfo/right/Antarctica/Palmer", + "hashes": [ + { + "alg": "SHA-1", + "content": "1563fc36e17ea079e386e4f76be8cea5ba9125b7" + }, + { + "alg": "SHA-256", + "content": "3d776d3217806a1dfa38b342c7d413bf1c05d47e440625a25850f10de050175a" + } + ] + }, + { + "bom-ref": "d4e9fdf9b5f5591d", + "type": "file", + "name": "/usr/share/zoneinfo/right/Antarctica/Rothera", + "hashes": [ + { + "alg": "SHA-1", + "content": "fc1ce5a0154f6b04cc6ad26f724e7b80e7f1844e" + }, + { + "alg": "SHA-256", + "content": "6a17dce1f665a2ca8026fef6634fca93b698392000e97f89797ef44b57afa7ca" + } + ] + }, + { + "bom-ref": "bb6694b1eba8cb08", + "type": "file", + "name": "/usr/share/zoneinfo/right/Antarctica/Syowa", + "hashes": [ + { + "alg": "SHA-1", + "content": "305620cf0417376628c91b4c534656ab947b3af7" + }, + { + "alg": "SHA-256", + "content": "785f2980f27b1976e65a7e5bc7f1d944d5b7e78656a35b30ef8f144c35103a5b" + } + ] + }, + { + "bom-ref": "57a1f02bafb5251e", + "type": "file", + "name": "/usr/share/zoneinfo/right/Antarctica/Troll", + "hashes": [ + { + "alg": "SHA-1", + "content": "2aeddac6bb21e4d8c38f6115d8d5c10d75669b0b" + }, + { + "alg": "SHA-256", + "content": "4fe25a3e29129e9204e750a191c11202dc66e122423c1d97ea03d579182e38ac" + } + ] + }, + { + "bom-ref": "ffd51f7893ee83da", + "type": "file", + "name": "/usr/share/zoneinfo/right/Antarctica/Vostok", + "hashes": [ + { + "alg": "SHA-1", + "content": "4ac16b69d7ee7f799379c37425f2991932dbedd1" + }, + { + "alg": "SHA-256", + "content": "85a1b3ff9f71acab9c1e01cb31ee3e9330b9abe48a84763b8d35c6a3b7d6086c" + } + ] + }, + { + "bom-ref": "c0484763fb0162c9", + "type": "file", + "name": "/usr/share/zoneinfo/right/Arctic/Longyearbyen", + "hashes": [ + { + "alg": "SHA-1", + "content": "8f8bd76eceef514dbb868ccef4c7eeae9c6bf5a8" + }, + { + "alg": "SHA-256", + "content": "b9f4a8a248c4b945a12640b4be549baaa438a9c3472822028e9f4988cd4e8b63" + } + ] + }, + { + "bom-ref": "83c7786fcd88efc6", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Aden", + "hashes": [ + { + "alg": "SHA-1", + "content": "99427ded3b5fd88972874c3b3dd7ba695ae4bffe" + }, + { + "alg": "SHA-256", + "content": "f3f24b3aba19f09734826f156f5537eb97ef899b249ec673048e5d07369487c7" + } + ] + }, + { + "bom-ref": "88962f9705425a3c", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Almaty", + "hashes": [ + { + "alg": "SHA-1", + "content": "f5d183f61fee12467ce1ba86885dca2e06b28076" + }, + { + "alg": "SHA-256", + "content": "bb58e7c09cb5daf5f6afc61969735809085f8f7d1fb9d129f2dff6d52c2d5370" + } + ] + }, + { + "bom-ref": "09ed062ac9eb1f41", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Amman", + "hashes": [ + { + "alg": "SHA-1", + "content": "7182c18bff35717f222b23354bb5908144f0c546" + }, + { + "alg": "SHA-256", + "content": "0dfa946fc43a7d4ad00e75aba44720018d82f36411351b2e5a103dbfadaf0d8c" + } + ] + }, + { + "bom-ref": "8dd3acd742d08222", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Anadyr", + "hashes": [ + { + "alg": "SHA-1", + "content": "844a76a8ea5399baed7701a1317af9953418cfd1" + }, + { + "alg": "SHA-256", + "content": "723f952ffdde9c6027874689c1b831211ed782bcd1a78b0b3a63f9dd22b661f4" + } + ] + }, + { + "bom-ref": "41665e81bbc3ef96", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Aqtau", + "hashes": [ + { + "alg": "SHA-1", + "content": "3fbee42c963c39bb66056ca3ee0e2de30e7f6dc3" + }, + { + "alg": "SHA-256", + "content": "aee361faa20979a35b89ac0f538cb4b67c793a36ccfcd98bae1f0f1e2dce98e1" + } + ] + }, + { + "bom-ref": "dc3c13880c44bb72", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Aqtobe", + "hashes": [ + { + "alg": "SHA-1", + "content": "c187658a234fbaf4ad27cb86fa9939ede3129303" + }, + { + "alg": "SHA-256", + "content": "58034c93dece9d7b3b8f44e6d39318814c3a5810cd460e87d888c572e8794b17" + } + ] + }, + { + "bom-ref": "7d7420446a84e9ba", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Ashgabat", + "hashes": [ + { + "alg": "SHA-1", + "content": "142b9783e1d73939a27e2d02bc43c64e281a4d79" + }, + { + "alg": "SHA-256", + "content": "67ef3f1da89446f546c8f8767c16e3106e8c85df4a20d89bc1870f0ea174a20d" + } + ] + }, + { + "bom-ref": "71163992d7a5ac80", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Atyrau", + "hashes": [ + { + "alg": "SHA-1", + "content": "6a6503f18bcc10e2726eb4c1dda1d9acb1c9cfa8" + }, + { + "alg": "SHA-256", + "content": "37546c1d6704164b04d1126a889c03876bd08241f2fa70e8ec6d6f3012857651" + } + ] + }, + { + "bom-ref": "3410ab840916a71e", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Baghdad", + "hashes": [ + { + "alg": "SHA-1", + "content": "e53a20e870a2b3f18a4d4c44f25d269f53a05f99" + }, + { + "alg": "SHA-256", + "content": "71e50815aa9bfebe11c36f200503c2c62d89bf715a067175d2091185bb6b2829" + } + ] + }, + { + "bom-ref": "2ecda1f6411e5bb3", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Bahrain", + "hashes": [ + { + "alg": "SHA-1", + "content": "a4db805e5f5fe3209cf343bcd8a636663b4986b9" + }, + { + "alg": "SHA-256", + "content": "2e7b84c80828a81f1f7bbaf7355133a81ad96b1273a29c223acf12d1446d4922" + } + ] + }, + { + "bom-ref": "15c381cbd05e6da2", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Baku", + "hashes": [ + { + "alg": "SHA-1", + "content": "6bcb640895f9ee62f83f2156ff2505403bc5f294" + }, + { + "alg": "SHA-256", + "content": "3a06bcc490313e6868f2c50f64a724c494f39c23420e741d4e78208abdd5f69d" + } + ] + }, + { + "bom-ref": "8ba1a4358172f4e9", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Bangkok", + "hashes": [ + { + "alg": "SHA-1", + "content": "d010835725154ab03c21403d44bb954501a6b0ed" + }, + { + "alg": "SHA-256", + "content": "d91fabfc29473f96272f2e96868a44393d6ce11950b7a5ec32eae83dc142b4a4" + } + ] + }, + { + "bom-ref": "0353368bf59b5123", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Barnaul", + "hashes": [ + { + "alg": "SHA-1", + "content": "54f272abacc369ea7635d12dcd2a36945d27442e" + }, + { + "alg": "SHA-256", + "content": "0436ee225d77df15229ebf4e30079643bb2cf55131d60b1d6718ddbb77826710" + } + ] + }, + { + "bom-ref": "04e807102da3bd78", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Beirut", + "hashes": [ + { + "alg": "SHA-1", + "content": "808941b4dbf4d525ec577f8f47c3519f319aa8fc" + }, + { + "alg": "SHA-256", + "content": "3e24a502c1fb5fb0dd7a8c738f28074b8e785311ba73a33fb597c2172ca288a0" + } + ] + }, + { + "bom-ref": "5098a5f80ddb918c", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Bishkek", + "hashes": [ + { + "alg": "SHA-1", + "content": "ab6483b7cf54ca197f36507cd0650fefff41900a" + }, + { + "alg": "SHA-256", + "content": "9bab70e971735626c3169c9a45153d4da93114bfd8b7295e5d56fc0173cc26fd" + } + ] + }, + { + "bom-ref": "370d2b1189d21c8a", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Brunei", + "hashes": [ + { + "alg": "SHA-1", + "content": "8e370f0073fd6c86db67f13d84c0560c004dfee0" + }, + { + "alg": "SHA-256", + "content": "a44c283addb335506e1b7a9c288240d2c651e1bbfbfefd9cadfa7181aaf4b1ec" + } + ] + }, + { + "bom-ref": "efcbbc0112a11d30", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Calcutta", + "hashes": [ + { + "alg": "SHA-1", + "content": "f28c26c212d9cd35bee3af067a58f3e8122786e2" + }, + { + "alg": "SHA-256", + "content": "637147fe7b40e10955c08b61ecc5639148589ce9bd6939cf7b98bc02cccd5036" + } + ] + }, + { + "bom-ref": "edce828f0fdb1eaf", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Chita", + "hashes": [ + { + "alg": "SHA-1", + "content": "0461d4e24308235caec10a9c08d5bd30a21e8eea" + }, + { + "alg": "SHA-256", + "content": "d935e891890a25a2d1ebf88768f70193d23e3d6522c67ed4e4c1435fd9de6a0e" + } + ] + }, + { + "bom-ref": "7849dac1bd3cdce0", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Choibalsan", + "hashes": [ + { + "alg": "SHA-1", + "content": "6525a629b93c91b0eea30c6bab3c4c4af5ab7442" + }, + { + "alg": "SHA-256", + "content": "5e68707f2d985de61d9a1ca14134c5f96781eff2486e40be8d5b4d34708d59e2" + } + ] + }, + { + "bom-ref": "d38de6b5aba40e46", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Colombo", + "hashes": [ + { + "alg": "SHA-1", + "content": "5decf6ef7c188c3c242cd39c698ae385424e50e9" + }, + { + "alg": "SHA-256", + "content": "d2105ff2a10182bf68780abfa1b9a22574b1e30efe6a249b4f8e0f17058fa659" + } + ] + }, + { + "bom-ref": "c2df7b3bd7116259", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Dacca", + "hashes": [ + { + "alg": "SHA-1", + "content": "2d382ec97c1758d7fe9f9c04af82c7549193d83d" + }, + { + "alg": "SHA-256", + "content": "8b30cb0ad86ae48068d4d6293137bb66ac4ebc73000ba2cca9428ef13c244b8a" + } + ] + }, + { + "bom-ref": "759ce6ee67daa000", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Damascus", + "hashes": [ + { + "alg": "SHA-1", + "content": "cff80f629072511806b90c68dfba4dd4293ebf59" + }, + { + "alg": "SHA-256", + "content": "e23e8576a6f8b5b65a356e535ba0ffc916d211a155207e486dd40b1757f3b831" + } + ] + }, + { + "bom-ref": "5f6edfe557c7e8f5", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Dili", + "hashes": [ + { + "alg": "SHA-1", + "content": "dc611f17559cb5e3a167843ef3ca29ddca3d6b8e" + }, + { + "alg": "SHA-256", + "content": "1027c57d5d5094c84e80ab360790f0355acce56ec10c6df5567ad35baeba093b" + } + ] + }, + { + "bom-ref": "c30c831d31c4db13", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Dubai", + "hashes": [ + { + "alg": "SHA-1", + "content": "962d02721959a400cd0a2e57cf5757f080b323a5" + }, + { + "alg": "SHA-256", + "content": "86cb3519886f292920f8c8ff5b551bb66ab5c7ab559ef378584a464dfcc539fc" + } + ] + }, + { + "bom-ref": "a2d44859f48e37ba", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Dushanbe", + "hashes": [ + { + "alg": "SHA-1", + "content": "e95bb198c41ec035b48540525e3b32307ad76dfa" + }, + { + "alg": "SHA-256", + "content": "518c7e9aabe61a423f703f9285036c37b0b63db85614a54fc053b72dc0f7ac9f" + } + ] + }, + { + "bom-ref": "e361e41026013ac7", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Famagusta", + "hashes": [ + { + "alg": "SHA-1", + "content": "549f96cb12326a5bf789409cbf6b7a429b0c36c4" + }, + { + "alg": "SHA-256", + "content": "40438f760718c79a99e171a199690123f0cc531fef996423c2ca840d20b6bce9" + } + ] + }, + { + "bom-ref": "4382667166346a55", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Gaza", + "hashes": [ + { + "alg": "SHA-1", + "content": "ceadddec67bb38a70c63064ad6b95b2d1062091c" + }, + { + "alg": "SHA-256", + "content": "38e5830f0db3ca80955a4b7803928e21920902739012f76425652dad1ee76493" + } + ] + }, + { + "bom-ref": "25b56e897d193bfe", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Hebron", + "hashes": [ + { + "alg": "SHA-1", + "content": "6c8b3624214e3a555abce0d9f8c4c47f0ee9b352" + }, + { + "alg": "SHA-256", + "content": "190d10d40c9c8971f618d80f0ca79d1f304ba326a7466352497e6320c43d3f91" + } + ] + }, + { + "bom-ref": "4691fd5d9ba62d87", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Ho_Chi_Minh", + "hashes": [ + { + "alg": "SHA-1", + "content": "75c87f94f4c40cc829d9755a975dc600ed3c8e08" + }, + { + "alg": "SHA-256", + "content": "496bbfe0b2bbd4922f8a4a5cc56a405485c1b9df21375d75996ac5e3008f87b9" + } + ] + }, + { + "bom-ref": "f0ba14d520b6bc3a", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Hovd", + "hashes": [ + { + "alg": "SHA-1", + "content": "36a66f5a98a4f4c295db6a12fe33c1f76b064135" + }, + { + "alg": "SHA-256", + "content": "c51f36d33e1b9fc550b8dd1d2182d8b441a8c77d6f64a5a89859b901a08e2759" + } + ] + }, + { + "bom-ref": "10aaa2583486dafd", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Irkutsk", + "hashes": [ + { + "alg": "SHA-1", + "content": "9351a45a94d34b04c1378ea287fa553d6845d877" + }, + { + "alg": "SHA-256", + "content": "ad1c94f9d9a0e542c80d2b53c4980131675936f6d6e7f04615c1e5029ff1d643" + } + ] + }, + { + "bom-ref": "1a86600b94b55b90", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Jakarta", + "hashes": [ + { + "alg": "SHA-1", + "content": "fc2501f0bbf1ecd9213dd477548cfe2cc7f5a2de" + }, + { + "alg": "SHA-256", + "content": "1e1d6c8a2a336137b702b0e68da98b2b2c3135a1844f9bc17d05d0eff1ef18bd" + } + ] + }, + { + "bom-ref": "540fe6f5ec8b6975", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Jayapura", + "hashes": [ + { + "alg": "SHA-1", + "content": "505fddabfcc8c600ec8d18aa54c3217e5d77d3d7" + }, + { + "alg": "SHA-256", + "content": "ccfa8a6a43b97d5dd2e2c33f84951460b2bffcc1202919ef38c3b097a83167db" + } + ] + }, + { + "bom-ref": "984fe6798aa6cc41", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Kabul", + "hashes": [ + { + "alg": "SHA-1", + "content": "86b16da36122d6ddaf30f53ff4cfbcc148a1b734" + }, + { + "alg": "SHA-256", + "content": "94835befd0e3581a0cf3c5d3fe177b2f1319868077ccd423af2fda0996cfee7b" + } + ] + }, + { + "bom-ref": "01b5fbb37c886988", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Kamchatka", + "hashes": [ + { + "alg": "SHA-1", + "content": "289a1cd7ccf61e3b20325dd981c1fe68d2b0d1c5" + }, + { + "alg": "SHA-256", + "content": "bc897301c4b520c5fe1201efc6b656b77e54c55cec912beab9891463f79410f3" + } + ] + }, + { + "bom-ref": "b8ff2b3afaf7ffd7", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Karachi", + "hashes": [ + { + "alg": "SHA-1", + "content": "45d261db0c2a328997b0dbe0d672f3d605853ed6" + }, + { + "alg": "SHA-256", + "content": "08c8c89e2687b19464bc067b6b368bfe3106c980538c0b3314e7301e192a295a" + } + ] + }, + { + "bom-ref": "64b13e0ced6d6f5c", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Kashgar", + "hashes": [ + { + "alg": "SHA-1", + "content": "82323765804ef278c11d3c0595642cb83df0c92a" + }, + { + "alg": "SHA-256", + "content": "c73db62481070869d19d18143892e5fea592a147cc3a230b120d2b0663882591" + } + ] + }, + { + "bom-ref": "b9bdd8853d952e1f", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Kathmandu", + "hashes": [ + { + "alg": "SHA-1", + "content": "b6389d024e000921ca9393eba5c0ad14e29a68a6" + }, + { + "alg": "SHA-256", + "content": "c9482baab20e577e331c8c15889c2b881eff5de670ff0502c3c8bdc5e985c1cc" + } + ] + }, + { + "bom-ref": "2d393d4a20759a5b", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Khandyga", + "hashes": [ + { + "alg": "SHA-1", + "content": "77e698665941e9434003b102971a33a28814475e" + }, + { + "alg": "SHA-256", + "content": "79a1086c8573e9fc21ad02d2c092f00182fc14fecf7aee7df2c66d16d33f58d8" + } + ] + }, + { + "bom-ref": "8bf3cbe90565ffce", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Krasnoyarsk", + "hashes": [ + { + "alg": "SHA-1", + "content": "0f129239eb7bf428a9a66e9d6ae0bfb9d4e51705" + }, + { + "alg": "SHA-256", + "content": "1f2e856dd5b062136b649c0b86738d31ac218406fdee6d98f26b110c0e913287" + } + ] + }, + { + "bom-ref": "6c968ee3052c9d76", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Kuala_Lumpur", + "hashes": [ + { + "alg": "SHA-1", + "content": "fb035f04c8d9fccd66f7760d5e304c2833175887" + }, + { + "alg": "SHA-256", + "content": "b49df9efbe233fded04d2a35bafd4a2291fd7c91639a7761e5882d5824c8868e" + } + ] + }, + { + "bom-ref": "fc0c72245c176be6", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Kuching", + "hashes": [ + { + "alg": "SHA-1", + "content": "9d14443bf616aafed5f1c697c943019cfd194dec" + }, + { + "alg": "SHA-256", + "content": "217b0ff65b13b272a0661ebbbfb6cd392f13fdd0612dcfbe1077c40d2fcf58cb" + } + ] + }, + { + "bom-ref": "3973e0e2398eaeb2", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Macao", + "hashes": [ + { + "alg": "SHA-1", + "content": "ccaed6c3752ecfaadf3f361de8e89093b1014ed3" + }, + { + "alg": "SHA-256", + "content": "470b21048ae38a2d611012c63f0359ae5bf685afa696d9cdb2a17438635b5283" + } + ] + }, + { + "bom-ref": "25e62d28a87d8447", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Magadan", + "hashes": [ + { + "alg": "SHA-1", + "content": "c7657afa6701167c840d1827422866b216fc5525" + }, + { + "alg": "SHA-256", + "content": "4da1ed819b7a50248044e582cd1221e878cc104f429900dccda3d097b9ad6ad4" + } + ] + }, + { + "bom-ref": "44035fd9aed5edc0", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Makassar", + "hashes": [ + { + "alg": "SHA-1", + "content": "eb5c39a5d8f32ac23cea4d3f19ecb59f2d264693" + }, + { + "alg": "SHA-256", + "content": "6bb9b9d31d2f3c57b17a9ec143294ffaa86669e793adf98c5acd1a980d6d4125" + } + ] + }, + { + "bom-ref": "dc125bb8325436bf", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Manila", + "hashes": [ + { + "alg": "SHA-1", + "content": "ac1d20b0511f8b601069d63b0cd60771ed1032f2" + }, + { + "alg": "SHA-256", + "content": "676bd6835773f0de41e52285dbb78830de3f80d98097f06dfedafff34b6c40aa" + } + ] + }, + { + "bom-ref": "82f2023f2750e088", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Nicosia", + "hashes": [ + { + "alg": "SHA-1", + "content": "8a3e57105a56ea4d50737f3a73d7f099e523092c" + }, + { + "alg": "SHA-256", + "content": "b801d86c6b957dd1affe34a2d19a0c580be861d8ccd283d9f48e2dc991fe3696" + } + ] + }, + { + "bom-ref": "64e97608d94fa959", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Novokuznetsk", + "hashes": [ + { + "alg": "SHA-1", + "content": "d83f380ecb93a382edd2d857400076fd81b9b4a7" + }, + { + "alg": "SHA-256", + "content": "121a05f4f5f4f88638e53bd570db3a9f3c247d29020491e871c55df3febc59e0" + } + ] + }, + { + "bom-ref": "e1aa8c7a5410bd21", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Novosibirsk", + "hashes": [ + { + "alg": "SHA-1", + "content": "34c99afaecb0cd1333ba0bafb393481f57b2fed8" + }, + { + "alg": "SHA-256", + "content": "0efbee40872e742db4124508044fdabf5cbc616ed26dcfe5fb80e1a97b0f365d" + } + ] + }, + { + "bom-ref": "6c1f7cd3187a46d1", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Omsk", + "hashes": [ + { + "alg": "SHA-1", + "content": "2e02297aff287676e574169b2bcde7c26d58f627" + }, + { + "alg": "SHA-256", + "content": "64615d9337250ed8ef6a150d1b331947f4b75e3132d9319ad5243d07d41089d0" + } + ] + }, + { + "bom-ref": "bd43d2f89af8a9ee", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Oral", + "hashes": [ + { + "alg": "SHA-1", + "content": "cff575ad85880e882fc318f34662fdd2af965caa" + }, + { + "alg": "SHA-256", + "content": "f6881fc8bcbf070d6f8d5dac52f19fdf9162ce8d5144766b92620705fe82d59a" + } + ] + }, + { + "bom-ref": "7aa536160abac87f", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Pontianak", + "hashes": [ + { + "alg": "SHA-1", + "content": "582d71133328ae1862c3cc3a7cfbfe491a94ead0" + }, + { + "alg": "SHA-256", + "content": "5387a863122580120cb3ee351bcada3b3dfbf163424291b97bac4e2cabd9845f" + } + ] + }, + { + "bom-ref": "6df23e9d8b05a06f", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Pyongyang", + "hashes": [ + { + "alg": "SHA-1", + "content": "f0c5bc80ad77c81509ad2341346747c6ff11a984" + }, + { + "alg": "SHA-256", + "content": "c74b65040a8f280458f9f6054fdecb2b980510376426b6367a457ec0da0ac08d" + } + ] + }, + { + "bom-ref": "332f2aef379011da", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Qostanay", + "hashes": [ + { + "alg": "SHA-1", + "content": "4e50382b02c9053eb8f4afb923348a288037568c" + }, + { + "alg": "SHA-256", + "content": "c2fcd0ffd483e7c87cc92e63f5409cfa72e322ef99bfb89ff040ef53ce6f0170" + } + ] + }, + { + "bom-ref": "82da4b960c2d8e39", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Qyzylorda", + "hashes": [ + { + "alg": "SHA-1", + "content": "a2c99b49c636e5c460a40480d5ad10237f005a8e" + }, + { + "alg": "SHA-256", + "content": "4bb11726867dc275fd2622da77c437aedd48df9d2ffac75af12f3540408f13e5" + } + ] + }, + { + "bom-ref": "0d850f888addcf48", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Rangoon", + "hashes": [ + { + "alg": "SHA-1", + "content": "5d9f6fab9ab04d079cfd379ff38333b92ff1c5b4" + }, + { + "alg": "SHA-256", + "content": "a38bd662f07725a121cbb302b992167054cd598c5127c30514f1fe1fe0c8d70d" + } + ] + }, + { + "bom-ref": "ff7ebccee737c3c2", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Sakhalin", + "hashes": [ + { + "alg": "SHA-1", + "content": "d2c2c2630a7e4c8923b3ee9ac7234d2df2007e75" + }, + { + "alg": "SHA-256", + "content": "a0651f797d67edd06928f67bbebb2872fff7b5c8d42e3dbb5554dd66389d610a" + } + ] + }, + { + "bom-ref": "306083ca5a795c5a", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Samarkand", + "hashes": [ + { + "alg": "SHA-1", + "content": "87d3e6117db84a593bb5d79639ae36118545b6a9" + }, + { + "alg": "SHA-256", + "content": "8e8266acc24f1234e3df68f68e1d4c80e3c9c3ed313da024517f3051f9dcaa09" + } + ] + }, + { + "bom-ref": "a0d44b4a0ab390e9", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Srednekolymsk", + "hashes": [ + { + "alg": "SHA-1", + "content": "dbd01f4d811f80dc3196df983c3d4b261d9c5f39" + }, + { + "alg": "SHA-256", + "content": "bc4ac100afd7e317e5939451b677a707dc1a51e646f380bf56411916084a2f87" + } + ] + }, + { + "bom-ref": "8069af867a88b755", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Tashkent", + "hashes": [ + { + "alg": "SHA-1", + "content": "3ab62851d7a653cf74ef7ff6bbd344070013e5fb" + }, + { + "alg": "SHA-256", + "content": "7ef3e54ff15a28d5054bc7a3c2946ad05849d57a4cf0096f1982a59be031a207" + } + ] + }, + { + "bom-ref": "99cd0ac70240d02f", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Tbilisi", + "hashes": [ + { + "alg": "SHA-1", + "content": "e75fb851cb164dd03dee4bc4d803fe31e0464463" + }, + { + "alg": "SHA-256", + "content": "265b4e7c276a60c19c2039171c2b633b3b0c0d51c7d3d527a11c9eaa0b2b9ec7" + } + ] + }, + { + "bom-ref": "d080a98223c67bd4", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Thimbu", + "hashes": [ + { + "alg": "SHA-1", + "content": "2964637e375fac37e5aba18c67cb48c0a191e5ac" + }, + { + "alg": "SHA-256", + "content": "38acdb7ead0a0945764ce021f31292acba206c6361ec57eb56129a52d5efe650" + } + ] + }, + { + "bom-ref": "3404a689e051c380", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Tomsk", + "hashes": [ + { + "alg": "SHA-1", + "content": "8e5739350a3e49aa4639e0264d563d66bcfafae2" + }, + { + "alg": "SHA-256", + "content": "ec986c86975c8d0f95485b5d809100261dd19de6376d960672dd08671e8eb63e" + } + ] + }, + { + "bom-ref": "986b38b6e3500b9a", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Ulaanbaatar", + "hashes": [ + { + "alg": "SHA-1", + "content": "ec443858ad7d96bf5eb6297fe422c39fbb63111e" + }, + { + "alg": "SHA-256", + "content": "77dac4fa1d2f3d584ac760f2ae886c14d1c20c321865f5c28602038aeb43b0f4" + } + ] + }, + { + "bom-ref": "e06c2805718aad9c", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Ust-Nera", + "hashes": [ + { + "alg": "SHA-1", + "content": "ea5ead6649a3f2852b4e08d20cc89da99e0559e8" + }, + { + "alg": "SHA-256", + "content": "c7a0a40880eca39a3d0eeb389cb84bf23cb3b97d746989aac07478288fe4cb25" + } + ] + }, + { + "bom-ref": "938ae59489f3f925", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Vladivostok", + "hashes": [ + { + "alg": "SHA-1", + "content": "c7e3969c7d453945b8e7b4cf7058528cdca9d233" + }, + { + "alg": "SHA-256", + "content": "633d4328fec78ef09dc0bf58025da4a365176a1680f4c8c8cf90cef309e65236" + } + ] + }, + { + "bom-ref": "0a3213d7be499193", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Yakutsk", + "hashes": [ + { + "alg": "SHA-1", + "content": "304b0d6db4a66f832e82d996ada323dce5851229" + }, + { + "alg": "SHA-256", + "content": "d1fc7358bb9353f77a5c500910586619b82a7d3a3de096b25f90742eddc07d2d" + } + ] + }, + { + "bom-ref": "be97b6d9303dba8e", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Yekaterinburg", + "hashes": [ + { + "alg": "SHA-1", + "content": "c13f346c91585409cd615796636652c16c894fa4" + }, + { + "alg": "SHA-256", + "content": "d259b425879f1d3fea283f9ee237e4f11aa2e4bf918fc40cff782cb2fa4a4f36" + } + ] + }, + { + "bom-ref": "c2daec6fd80bdd82", + "type": "file", + "name": "/usr/share/zoneinfo/right/Asia/Yerevan", + "hashes": [ + { + "alg": "SHA-1", + "content": "8f97612887eb34934b940e40246209b8f17ba38d" + }, + { + "alg": "SHA-256", + "content": "5b7792e14dafe5e5cf54fb58169472bf364e7d841a08ef82224fd13c3f3d6b46" + } + ] + }, + { + "bom-ref": "121e432d70e31961", + "type": "file", + "name": "/usr/share/zoneinfo/right/Atlantic/Azores", + "hashes": [ + { + "alg": "SHA-1", + "content": "a560ade99fc52e14d69a1f8ad93488a62e26d635" + }, + { + "alg": "SHA-256", + "content": "bf6ed07f6b72df9243e62a64bca11608dcf4b7a0ef0231c3c3f819c1e74fdc2a" + } + ] + }, + { + "bom-ref": "415444bc488622d1", + "type": "file", + "name": "/usr/share/zoneinfo/right/Atlantic/Bermuda", + "hashes": [ + { + "alg": "SHA-1", + "content": "2b96dac052b2ba10e72d4964d3f8b5f9f47aa421" + }, + { + "alg": "SHA-256", + "content": "2099c0c4248915afca89fc7624c1498b569847f1ae314b5cf00d8f35ddbab912" + } + ] + }, + { + "bom-ref": "2fe48201aeaa5f27", + "type": "file", + "name": "/usr/share/zoneinfo/right/Atlantic/Canary", + "hashes": [ + { + "alg": "SHA-1", + "content": "aadb8f1b887a17085843d3d03b843780a732ffcf" + }, + { + "alg": "SHA-256", + "content": "f0bf9911e3c52ec1a10e1b9c0cb94d323c7425614948efc559ffe15c67fb48cd" + } + ] + }, + { + "bom-ref": "adf2dba1f2fd34f0", + "type": "file", + "name": "/usr/share/zoneinfo/right/Atlantic/Cape_Verde", + "hashes": [ + { + "alg": "SHA-1", + "content": "c85334e13dbdc9504479ba4e21bfc5f522c6192a" + }, + { + "alg": "SHA-256", + "content": "ab775c80ae7c0b1b6b02016a7ae7045fc69310869a35ac3027e5f6a900e96f8c" + } + ] + }, + { + "bom-ref": "cc19bf42270b83b2", + "type": "file", + "name": "/usr/share/zoneinfo/right/Atlantic/Faeroe", + "hashes": [ + { + "alg": "SHA-1", + "content": "3017faac2dd5869dd23ce1283e1101e7c6392d87" + }, + { + "alg": "SHA-256", + "content": "4f5a41b4ae349e1c6466cba14b5afaf7d7b4a9623fc8395173e4d3a2b4a5f90d" + } + ] + }, + { + "bom-ref": "137ab48087fa49ed", + "type": "file", + "name": "/usr/share/zoneinfo/right/Atlantic/Madeira", + "hashes": [ + { + "alg": "SHA-1", + "content": "b5f8e242df272d60db77e2ca36de0ef60f687738" + }, + { + "alg": "SHA-256", + "content": "35dedfac50f7e188bdf50bf3e03fd597e822d77b353461bbb60e3ffc3be1b71f" + } + ] + }, + { + "bom-ref": "a2ad949a1ed27c92", + "type": "file", + "name": "/usr/share/zoneinfo/right/Atlantic/South_Georgia", + "hashes": [ + { + "alg": "SHA-1", + "content": "da8c2d09b2fed4035d2e70393d85d0b717365c93" + }, + { + "alg": "SHA-256", + "content": "87c1e145862e19c3591293cebc524c2248485fc6d82c0b9f7f289eac3c665cb2" + } + ] + }, + { + "bom-ref": "535d9bfc9422dcce", + "type": "file", + "name": "/usr/share/zoneinfo/right/Atlantic/Stanley", + "hashes": [ + { + "alg": "SHA-1", + "content": "b04fab64ae4a30021d66b15182fa8a1c1dcdf1be" + }, + { + "alg": "SHA-256", + "content": "e0f88a4e32a223a054780193c34fbcfea7be9ac87493ddc98df5636868a69c44" + } + ] + }, + { + "bom-ref": "7b6b1fa216f225a7", + "type": "file", + "name": "/usr/share/zoneinfo/right/Australia/ACT", + "hashes": [ + { + "alg": "SHA-1", + "content": "cac2db2bac69b51e5d20165478c84a255fdd20d4" + }, + { + "alg": "SHA-256", + "content": "39b2517a2794a269b95d18a01123304b7a37ea101acb2a0e47cc08d1c568736b" + } + ] + }, + { + "bom-ref": "9a5619911894b355", + "type": "file", + "name": "/usr/share/zoneinfo/right/Australia/Adelaide", + "hashes": [ + { + "alg": "SHA-1", + "content": "2840c1d370441fd24918400cc935bd6ce229f1c8" + }, + { + "alg": "SHA-256", + "content": "4e72b2525aa821bb13e2f42b7dc4e830d3eb9a66aab03216dd3929e2f338d97d" + } + ] + }, + { + "bom-ref": "5e184d9cbbc2ecc7", + "type": "file", + "name": "/usr/share/zoneinfo/right/Australia/Brisbane", + "hashes": [ + { + "alg": "SHA-1", + "content": "e2c8de4bdea230735a35f5d90a5c90fdd0ddb1d7" + }, + { + "alg": "SHA-256", + "content": "6ec595e80af0cbc989924452e824b29b85a1dd5481b51bed85f4889706553f8f" + } + ] + }, + { + "bom-ref": "c210152c707cada9", + "type": "file", + "name": "/usr/share/zoneinfo/right/Australia/Broken_Hill", + "hashes": [ + { + "alg": "SHA-1", + "content": "f9193b51aca41cac14bbc930077dea7a4d6c285d" + }, + { + "alg": "SHA-256", + "content": "eedd5a3343cc03a474fa7bccbafc63837d2eef4abdb25403e7f97e1e9ea342df" + } + ] + }, + { + "bom-ref": "87114fc13c40962e", + "type": "file", + "name": "/usr/share/zoneinfo/right/Australia/Currie", + "hashes": [ + { + "alg": "SHA-1", + "content": "3aad58135862de02d06bb9e4c6324370dcc93907" + }, + { + "alg": "SHA-256", + "content": "8aa17850069f9cf005cb8eac2148a2ee23fb10935debb3d7a6836274d289a81b" + } + ] + }, + { + "bom-ref": "e655f2d6e5b84eb7", + "type": "file", + "name": "/usr/share/zoneinfo/right/Australia/Darwin", + "hashes": [ + { + "alg": "SHA-1", + "content": "9eb92f8918294fac2aaefe6e4f22d3cdd1db5cdb" + }, + { + "alg": "SHA-256", + "content": "625d71f702b37a502235ea8fcf478f54e33a1c3709f3caf511185ad242c3797c" + } + ] + }, + { + "bom-ref": "4e62d1de3835d82c", + "type": "file", + "name": "/usr/share/zoneinfo/right/Australia/Eucla", + "hashes": [ + { + "alg": "SHA-1", + "content": "dca8b15d24fa22300448580d35885558de238f1d" + }, + { + "alg": "SHA-256", + "content": "b6d509e81f6bd1c7fb6a6bad87b4f84784b4ee4c013f79dc0ef166add4ae9ae4" + } + ] + }, + { + "bom-ref": "648558eca90266ba", + "type": "file", + "name": "/usr/share/zoneinfo/right/Australia/LHI", + "hashes": [ + { + "alg": "SHA-1", + "content": "374b6bd4d211f736cd92d451bc530e5589779618" + }, + { + "alg": "SHA-256", + "content": "7546e925623ccba6e9a112784d57389b98b7cff5bd403e179625e2ee7dbf67e3" + } + ] + }, + { + "bom-ref": "d24185551756ce50", + "type": "file", + "name": "/usr/share/zoneinfo/right/Australia/Lindeman", + "hashes": [ + { + "alg": "SHA-1", + "content": "e99a1761f9b0a00d453eebddc346af3844ac8fa0" + }, + { + "alg": "SHA-256", + "content": "00b972c761aa9512be72915269db9230e5565204be6edf329e60d4cd3e8a6b18" + } + ] + }, + { + "bom-ref": "c01948ff95ecc739", + "type": "file", + "name": "/usr/share/zoneinfo/right/Australia/Melbourne", + "hashes": [ + { + "alg": "SHA-1", + "content": "b891cdb8fd941702696ae1d13a1cfecf58a6703f" + }, + { + "alg": "SHA-256", + "content": "cfb21c4abfcc33faaacc5a9a5960c2f93b476ebf22358929ad8c2dff2060257d" + } + ] + }, + { + "bom-ref": "85e344ca43bbb92d", + "type": "file", + "name": "/usr/share/zoneinfo/right/Australia/Perth", + "hashes": [ + { + "alg": "SHA-1", + "content": "d55ee2a5190177949a8e46d65ed4e833304dc690" + }, + { + "alg": "SHA-256", + "content": "e9e545b0d855f5f7359b4c6431a381178108a4f232eec8d6b617bc1e14a1ddff" + } + ] + }, + { + "bom-ref": "f76972c2da7906a2", + "type": "file", + "name": "/usr/share/zoneinfo/right/CET", + "hashes": [ + { + "alg": "SHA-1", + "content": "6e0b234c120375b4450be82a3330d057e07a4a7f" + }, + { + "alg": "SHA-256", + "content": "a9ab0888ef44577631cf924205405001a436f7d97899c8989907aba1b77a61be" + } + ] + }, + { + "bom-ref": "0e353ed6e0389038", + "type": "file", + "name": "/usr/share/zoneinfo/right/CST6CDT", + "hashes": [ + { + "alg": "SHA-1", + "content": "0388bf0d9ab324cddb3e31f36fb09663503197f6" + }, + { + "alg": "SHA-256", + "content": "fc4181f42429479b45e3b5d1e9d8775017957bca5c82fc9530769fcb81b2fe8e" + } + ] + }, + { + "bom-ref": "6c7374f497fa2aba", + "type": "file", + "name": "/usr/share/zoneinfo/right/Chile/EasterIsland", + "hashes": [ + { + "alg": "SHA-1", + "content": "96fbda051683fd28fe96e91087dfcfc0234855d1" + }, + { + "alg": "SHA-256", + "content": "27c072b5550ceea84e801fd932d838d9c6fde3fbe5f3fffd897dcf12f5f36bb1" + } + ] + }, + { + "bom-ref": "437fb5bc41ae987d", + "type": "file", + "name": "/usr/share/zoneinfo/right/Cuba", + "hashes": [ + { + "alg": "SHA-1", + "content": "1d6cecf4492080acfb6ae36dfada45cefb6e72c7" + }, + { + "alg": "SHA-256", + "content": "0d4bfd6b414442661f79556ac625c9f30e051af6694be67e3ad312e9e9589c50" + } + ] + }, + { + "bom-ref": "2f563588ffc6ab2a", + "type": "file", + "name": "/usr/share/zoneinfo/right/EET", + "hashes": [ + { + "alg": "SHA-1", + "content": "4056245a126c96bbe6569f8fc1b5219e9f7d0a94" + }, + { + "alg": "SHA-256", + "content": "7a4178745768032216702f31fa03f676677d5951079d7e17856ab4be0ddc4061" + } + ] + }, + { + "bom-ref": "76446dc7f64f73d4", + "type": "file", + "name": "/usr/share/zoneinfo/right/EST", + "hashes": [ + { + "alg": "SHA-1", + "content": "3d9cb9edbc96ef4fb129d7848894ba225dfd8d7d" + }, + { + "alg": "SHA-256", + "content": "e7c90a5d782d8843b78996aaf9cc7d332f29d923e8b41739fa0d523b6675a816" + } + ] + }, + { + "bom-ref": "242a05b2feaf9a50", + "type": "file", + "name": "/usr/share/zoneinfo/right/EST5EDT", + "hashes": [ + { + "alg": "SHA-1", + "content": "941ef3409d0e49b47dad5686b9a3c898f0c53b4e" + }, + { + "alg": "SHA-256", + "content": "0f7e22d9f44ba8c1c49034d187a3910eabea89ea5702363f55eadfcd12e01daa" + } + ] + }, + { + "bom-ref": "a6ca3a0a251460f9", + "type": "file", + "name": "/usr/share/zoneinfo/right/Egypt", + "hashes": [ + { + "alg": "SHA-1", + "content": "f58bf94b6198cce20fc06c3e27de22f7fc680619" + }, + { + "alg": "SHA-256", + "content": "a3c84ceb744bbb495b49ef286308143f267da03f75931b82fdcb5c5a3aebcdd8" + } + ] + }, + { + "bom-ref": "13c05f00e8a7b9e1", + "type": "file", + "name": "/usr/share/zoneinfo/right/Eire", + "hashes": [ + { + "alg": "SHA-1", + "content": "6902fc867206c1d0f9353184b204b24796409d6b" + }, + { + "alg": "SHA-256", + "content": "2004b00c415e097897394d0fcbe0e1b28f6db7b708f7777d51344a73de890132" + } + ] + }, + { + "bom-ref": "94e9aeba3cc5f940", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT+1", + "hashes": [ + { + "alg": "SHA-1", + "content": "fdcc1aacc5235b87ad071e270a19db05da7b64cf" + }, + { + "alg": "SHA-256", + "content": "2dfab8b47a9935ec8047b521c8a271ca2f4543ddd8c7e5615c489c3257824140" + } + ] + }, + { + "bom-ref": "5eb4595e51542f44", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT+10", + "hashes": [ + { + "alg": "SHA-1", + "content": "a57808a16067403a3bd9f77fb0f94ab2cc4e9262" + }, + { + "alg": "SHA-256", + "content": "daf919cae7f8cbe9932a89be91f2054c115838dae240389d4f4567a66287e531" + } + ] + }, + { + "bom-ref": "2837527f4bd84f0c", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT+11", + "hashes": [ + { + "alg": "SHA-1", + "content": "33567f4afd14308ed87d280dc626f292d5081603" + }, + { + "alg": "SHA-256", + "content": "ef109214424a5197b2a034d5a67606ffd2396fe37b464876745541e6ed9ca375" + } + ] + }, + { + "bom-ref": "f7ba31095743bdce", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT+12", + "hashes": [ + { + "alg": "SHA-1", + "content": "e49e8c3465ac865a583bfe3816a32002a7f485e4" + }, + { + "alg": "SHA-256", + "content": "b901dd04cd5aa1e1bc91e16f651751ff45a24c88a3b3236336044dccf7a21244" + } + ] + }, + { + "bom-ref": "5d99cf2d9650879a", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT+2", + "hashes": [ + { + "alg": "SHA-1", + "content": "22368a00ec8416e493cf5653b5f54412f10308b2" + }, + { + "alg": "SHA-256", + "content": "2d16fb68e998d75ad599d5f6101c45ac83f7dc02e8a4cca6f5fee81fa77ce668" + } + ] + }, + { + "bom-ref": "40c9f0996ad36fad", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT+3", + "hashes": [ + { + "alg": "SHA-1", + "content": "26f2fcba218aff8dc90d259ff698779ab37de657" + }, + { + "alg": "SHA-256", + "content": "3f6f463bbba4e762a8834597a7033c770d6af14b05a8b703b3d5d014990ea4b7" + } + ] + }, + { + "bom-ref": "17b973b04505ec38", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT+4", + "hashes": [ + { + "alg": "SHA-1", + "content": "55abc9146c1368b268ba752a2bf7f3e035a30810" + }, + { + "alg": "SHA-256", + "content": "932f8cf3e71116a6b3c4a73a68e8b9b78ad33772c11c38f6e49bd3b9e3508358" + } + ] + }, + { + "bom-ref": "3de38cfaa3ebc8f0", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT+5", + "hashes": [ + { + "alg": "SHA-1", + "content": "0bec061ea6a987be9d3860161582368e7078bb50" + }, + { + "alg": "SHA-256", + "content": "7469abe462d0ecd98bd657ac98e8a420ac3bc5c913a7d1d0b6571b9ad55ad659" + } + ] + }, + { + "bom-ref": "0d287b7ac2953d09", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT+6", + "hashes": [ + { + "alg": "SHA-1", + "content": "0c68868a43e3f1382cb6907d389f4c092b7f8fe6" + }, + { + "alg": "SHA-256", + "content": "516d359bfacd113d911e4a19d93dfb00c8d5a1de3d21b0356f520e4c45471fc9" + } + ] + }, + { + "bom-ref": "0dfd9dd39e24a287", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT+7", + "hashes": [ + { + "alg": "SHA-1", + "content": "a58779092ffa1d3824392b5e5f02af5a6a220059" + }, + { + "alg": "SHA-256", + "content": "48e9f1b3cbab9cc818adab2956234adfdf8eeacb51e442221282c073921462fb" + } + ] + }, + { + "bom-ref": "46bc9de2767d630d", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT+8", + "hashes": [ + { + "alg": "SHA-1", + "content": "29f8ed0d7e726040836d49e1adb3079b143be267" + }, + { + "alg": "SHA-256", + "content": "b8ac2c2ab11935c312c05c72a665b2567e6df428ee4229e688272e9aa3c71603" + } + ] + }, + { + "bom-ref": "07cac77230429426", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT+9", + "hashes": [ + { + "alg": "SHA-1", + "content": "501d447e7a30e8ea0eb6b56a4b7ea76ad7e1f084" + }, + { + "alg": "SHA-256", + "content": "66586cb177e807cf1f7f9382f7ffb847f97b579405f6a2a4258f3b601837441f" + } + ] + }, + { + "bom-ref": "75176109a44c4fb0", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT-1", + "hashes": [ + { + "alg": "SHA-1", + "content": "04cd6f2b42a036d12696b253b07f160fce50b5e1" + }, + { + "alg": "SHA-256", + "content": "3f64722b5d0b9119c26d97bea25b946aa46b440fbd0c5735276049ec0bc9ea9a" + } + ] + }, + { + "bom-ref": "79b3983b1740a872", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT-10", + "hashes": [ + { + "alg": "SHA-1", + "content": "03c399d6ab315d01a77ce85661f0ea346980fbeb" + }, + { + "alg": "SHA-256", + "content": "364a1c067f561986ce55d2a1c132d394bb12c024b41fd8185498605eb6d68996" + } + ] + }, + { + "bom-ref": "b5e9d95c9e3aeed7", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT-11", + "hashes": [ + { + "alg": "SHA-1", + "content": "371eefd97ffef98f45990d3b43f530c7ed519198" + }, + { + "alg": "SHA-256", + "content": "3c27112120e1d285b1feaaabd7d6086d82bb20498f8b3b79135345dcfb5beb34" + } + ] + }, + { + "bom-ref": "4ca2644cd99668da", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT-12", + "hashes": [ + { + "alg": "SHA-1", + "content": "0755b26be2dce97d235b1a7422c69fc4d56f9cd2" + }, + { + "alg": "SHA-256", + "content": "5f7d64bac9608ae4d00f58ce111c849fa5fd10c219dfe0a85d8d56e514fe386f" + } + ] + }, + { + "bom-ref": "00c704c63ae17f68", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT-13", + "hashes": [ + { + "alg": "SHA-1", + "content": "5b21a13ba26c8205733bb4a9e5bd39326984506e" + }, + { + "alg": "SHA-256", + "content": "9349e68a0ac17041b18afe3cdd474c562e9aac289fd76f12f5169b59754825b7" + } + ] + }, + { + "bom-ref": "efa086ef6087303a", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT-14", + "hashes": [ + { + "alg": "SHA-1", + "content": "6f4f5fe695ed9e9aae331842febed6c4ec94d3e3" + }, + { + "alg": "SHA-256", + "content": "a748a0ca53f5a510a3abb4a62ffbbe3ffc17e01f65cc6af01878c9df8b43b204" + } + ] + }, + { + "bom-ref": "5ebb7e09fecc6f55", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT-2", + "hashes": [ + { + "alg": "SHA-1", + "content": "da1d81b12927c73e55fa0df9dfa1a54fc1974ce2" + }, + { + "alg": "SHA-256", + "content": "41884dfc60a5b6ec4048d7d94db86d44ef512e166200d2de6843218bb97fb3c9" + } + ] + }, + { + "bom-ref": "130e42e29899fdc1", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT-3", + "hashes": [ + { + "alg": "SHA-1", + "content": "f6d860986e75e7d1b8d43a8cd9d9cbbf0a74ec58" + }, + { + "alg": "SHA-256", + "content": "5391c1595cf4e7df4e5fb4a390cab8cbf6c23644c8bf87a8d6fcc7753dd64f36" + } + ] + }, + { + "bom-ref": "2a29d460f45d9ebc", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT-4", + "hashes": [ + { + "alg": "SHA-1", + "content": "3e47f203564612e9451b55b269da509676ff230b" + }, + { + "alg": "SHA-256", + "content": "6e710ab5d40d44ae4b369a01ba839f5b52dd417565bd92ac663585a0372db6e1" + } + ] + }, + { + "bom-ref": "27019172f886a5c0", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT-5", + "hashes": [ + { + "alg": "SHA-1", + "content": "e34712c5d0529a5cfc0b6ddc9013fe581aaf6d7a" + }, + { + "alg": "SHA-256", + "content": "b4d14c0621108bb15b9e3a08479291c8afbb960ab9205cbd109cfeebe87465b9" + } + ] + }, + { + "bom-ref": "093e56d985da7c6f", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT-6", + "hashes": [ + { + "alg": "SHA-1", + "content": "92ec4fa174beeb698af50ece7f2f8f71c7c61df3" + }, + { + "alg": "SHA-256", + "content": "68d638daa5d47e0684ecb49c49fa0eba30e044df0b01655a366e4f2615bebe82" + } + ] + }, + { + "bom-ref": "4fe9dee74abb7d21", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT-7", + "hashes": [ + { + "alg": "SHA-1", + "content": "3afb8d3c965993422666e1c6bc672c16ff289889" + }, + { + "alg": "SHA-256", + "content": "bc003bfc68545e819c20e22e92f08f67caef03822ed8dc60231fe96028aa6072" + } + ] + }, + { + "bom-ref": "9fa80f26199e191d", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT-8", + "hashes": [ + { + "alg": "SHA-1", + "content": "48b5c11b339ac09c58ac6227092dd32bd3296130" + }, + { + "alg": "SHA-256", + "content": "c32fe342c3ef366d364c0edc9cdeb26a35a9868f599ee5cc05568145121ab2b8" + } + ] + }, + { + "bom-ref": "091db44234c00a37", + "type": "file", + "name": "/usr/share/zoneinfo/right/Etc/GMT-9", + "hashes": [ + { + "alg": "SHA-1", + "content": "445528637b4f84b4b871e28156dd5b57a743bfe0" + }, + { + "alg": "SHA-256", + "content": "3546d660bbebcf312239764bea8f0c39a91e719d2b8ac3e8bfed0d362d334479" + } + ] + }, + { + "bom-ref": "f801a85a7c597730", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Amsterdam", + "hashes": [ + { + "alg": "SHA-1", + "content": "fd3a7490000084bc5b153991854ffd23459cf9ee" + }, + { + "alg": "SHA-256", + "content": "ae32e0cb5a9ea89b38213163daf4feb4840a6b72e82d5464c647d0a618531697" + } + ] + }, + { + "bom-ref": "46477f2785789e3b", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Andorra", + "hashes": [ + { + "alg": "SHA-1", + "content": "dd6f420142459da04e62f668fe9524787f6047bc" + }, + { + "alg": "SHA-256", + "content": "1330f8009adea3c6e5134cdeadaedaa6fbbcd72b2753207ccbb953ccf5001d18" + } + ] + }, + { + "bom-ref": "4ffe1ac0a3945671", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Astrakhan", + "hashes": [ + { + "alg": "SHA-1", + "content": "33f2873baf2d930d4ce4d3b7c4530c5f76e55208" + }, + { + "alg": "SHA-256", + "content": "bcb19ce7f27da441ddc26ddb5efdb9683ece2df2f013e35333a113bca8d84ac0" + } + ] + }, + { + "bom-ref": "6c3805a769e6d7af", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Athens", + "hashes": [ + { + "alg": "SHA-1", + "content": "5228e98d91b3bb6927c4a344b26a8e50c227180e" + }, + { + "alg": "SHA-256", + "content": "0c23a856f0e9c47bba55cb81c426eca0d190aea6043b018e2affa55f21b43664" + } + ] + }, + { + "bom-ref": "492e7167c10f6baa", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Belgrade", + "hashes": [ + { + "alg": "SHA-1", + "content": "eb417cfdf7d2314e7674cfb080431bc3c8f5d96e" + }, + { + "alg": "SHA-256", + "content": "3debded934cdf0c472df38375bd1a69c9135fb21890969bd68a50956e7181e7c" + } + ] + }, + { + "bom-ref": "bfbb21c4f7d5f980", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Berlin", + "hashes": [ + { + "alg": "SHA-1", + "content": "93157edff271969281ab282c7a7fd641ec911e71" + }, + { + "alg": "SHA-256", + "content": "0b4604767edbae4fc43cd24bd96ec235232471fddff9dc15328c0b74d4c3dc90" + } + ] + }, + { + "bom-ref": "100e11f41ac90658", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Bratislava", + "hashes": [ + { + "alg": "SHA-1", + "content": "958ac8018574a49599dee4bee92b2364e943524d" + }, + { + "alg": "SHA-256", + "content": "faec42cc5833011f1a0f07219bbdea30138befb2c85258c5e5a0d37961a0bae7" + } + ] + }, + { + "bom-ref": "a5a62dc4d321acd2", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Brussels", + "hashes": [ + { + "alg": "SHA-1", + "content": "926249f0a4e0cf04ab4324c3a7293f1d17a9636c" + }, + { + "alg": "SHA-256", + "content": "5e8b1eb03d518914baa45eeaf1d19e491fd3ac24319f7f79ce904120bac7ae19" + } + ] + }, + { + "bom-ref": "d3c8f8e59c8bad72", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Bucharest", + "hashes": [ + { + "alg": "SHA-1", + "content": "000b86e383e76ceaacbfe4d665d099e08de08839" + }, + { + "alg": "SHA-256", + "content": "4052f7958d6994e77da457cc9255749b2df0a6270841d23cb93937d58e1f4ec2" + } + ] + }, + { + "bom-ref": "0a8240efe6776580", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Budapest", + "hashes": [ + { + "alg": "SHA-1", + "content": "8e157ea37fa076f3c447d31971b5efca084cc427" + }, + { + "alg": "SHA-256", + "content": "a865abc0602b509977e9ce086903fd3d5c97833f3479ea16abb6e53655f52377" + } + ] + }, + { + "bom-ref": "fd1e327b77549ad6", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Busingen", + "hashes": [ + { + "alg": "SHA-1", + "content": "14c0f0d7fb40dc47c1fb15ea993fdd62bcee49c1" + }, + { + "alg": "SHA-256", + "content": "46a95ddb0c5047f5b03c6ebdd2c35f87f59e6719d2a2385134408f826753e60f" + } + ] + }, + { + "bom-ref": "0ae9ce48fe067c0b", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Chisinau", + "hashes": [ + { + "alg": "SHA-1", + "content": "db71c40c1609cb799ffec9df0b01a6d53369c049" + }, + { + "alg": "SHA-256", + "content": "ea169f6577633d68990e74350d1f53c54d309ea1fb461bc235f6dc3c2bfd03c4" + } + ] + }, + { + "bom-ref": "fbab0e83cbfe8ed7", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Copenhagen", + "hashes": [ + { + "alg": "SHA-1", + "content": "c37b8543052a1b1573bf3c2f5f17c03dbb3a2228" + }, + { + "alg": "SHA-256", + "content": "cc7d0746ef3061d3de714685a821a4781abe813fdc6327f162fc70b0c22d62ac" + } + ] + }, + { + "bom-ref": "6a6470fd825e01a7", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Gibraltar", + "hashes": [ + { + "alg": "SHA-1", + "content": "213ba4a93b1499f81f2ac2ad1cac83a02b835e3e" + }, + { + "alg": "SHA-256", + "content": "16fa8d1cb048eb5d4defb961df736ae7db4d477b6f08b9d94572da2303681fe7" + } + ] + }, + { + "bom-ref": "7df076796aecf5d6", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Helsinki", + "hashes": [ + { + "alg": "SHA-1", + "content": "06c695b494b7ced5267909eca91e30a43854286f" + }, + { + "alg": "SHA-256", + "content": "a1894d50d5bc5e541f340d601cd8ababe40da90fa867cc7ed3215be1cd6282de" + } + ] + }, + { + "bom-ref": "49c3595855ec9887", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Kaliningrad", + "hashes": [ + { + "alg": "SHA-1", + "content": "ca72e7645149e3b7d31ce6741050dc42c645beed" + }, + { + "alg": "SHA-256", + "content": "5ec14b617cbe85a326677b570296a68c866c954a2c2d42e19387c06c29c635e3" + } + ] + }, + { + "bom-ref": "37cad97872ffbce5", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Kiev", + "hashes": [ + { + "alg": "SHA-1", + "content": "265c21dcbe99463de62eb9fd98548fd39d0bfc80" + }, + { + "alg": "SHA-256", + "content": "24c81f9cf9518821df795eb6c2660d1de98a29d658922bec6f70b05dc9f427e7" + } + ] + }, + { + "bom-ref": "bef196762d7d9217", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Kirov", + "hashes": [ + { + "alg": "SHA-1", + "content": "236494d43e86a45819d697328f80faf86bb6278e" + }, + { + "alg": "SHA-256", + "content": "50f356bc8b1d5232fe2746f29a440b7e4876a011ad0833d7a137c31d1c1721f0" + } + ] + }, + { + "bom-ref": "6b48088d6f1d0972", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Luxembourg", + "hashes": [ + { + "alg": "SHA-1", + "content": "611584023fcd146349ae89b39fe9c0d27d860117" + }, + { + "alg": "SHA-256", + "content": "af6eb983dfb45c9e363dafb9d26b8466179415e37ef87991b258523a36c18239" + } + ] + }, + { + "bom-ref": "b998741b4bbcbc14", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Madrid", + "hashes": [ + { + "alg": "SHA-1", + "content": "9d058dae9d93ab406bb9de3e726d827ecae45eb2" + }, + { + "alg": "SHA-256", + "content": "01a00debc9c470fe55edfa31568135024d2450ba34c1c88ed16d620b67af5d83" + } + ] + }, + { + "bom-ref": "4aa8e8c683b56696", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Malta", + "hashes": [ + { + "alg": "SHA-1", + "content": "23296ca060807c609dc6a8ffeceed54cd4f00f7c" + }, + { + "alg": "SHA-256", + "content": "80919f93a3dd18f905ec9ecc82797ea80f289fe05795f32bd9390dbed7ff7d05" + } + ] + }, + { + "bom-ref": "e76c7f49f97b7866", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Minsk", + "hashes": [ + { + "alg": "SHA-1", + "content": "4f8869789694ad9f39753ae662cb73c8d8b9272b" + }, + { + "alg": "SHA-256", + "content": "52c3784ac0b17fb45be32b9c06a10978f4c53763cf97cf1e9f54b16494fc2a84" + } + ] + }, + { + "bom-ref": "01ac65532d00a56b", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Monaco", + "hashes": [ + { + "alg": "SHA-1", + "content": "158eb001d2536a4883965973518db86e5159ca75" + }, + { + "alg": "SHA-256", + "content": "151e752ffb48b89cd97797534514648dc6c10529d67e460eb9a38b52c0703153" + } + ] + }, + { + "bom-ref": "2e93857c21535a38", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Paris", + "hashes": [ + { + "alg": "SHA-1", + "content": "d7c24907589f3f16aa030f138d3c46e39d571463" + }, + { + "alg": "SHA-256", + "content": "1cc008a471ce3cd84997bc18d5ac6eb87060ec02d8fa39e2d992abd2d8a4d404" + } + ] + }, + { + "bom-ref": "e3b1f975218fda7a", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Riga", + "hashes": [ + { + "alg": "SHA-1", + "content": "083081a784d56a55881b00b560ed68bde05e7188" + }, + { + "alg": "SHA-256", + "content": "543f059b0b90d203ac284c74a9eb1a43acfb6f6de2c3f618b9df24b1b53564d8" + } + ] + }, + { + "bom-ref": "c880ad610fed0447", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Rome", + "hashes": [ + { + "alg": "SHA-1", + "content": "7b5dc74813fb3b02138db543bb6127e15da5ea0a" + }, + { + "alg": "SHA-256", + "content": "1900f59ffcc6e5d11fca684876c3efdc837d8ac7c0432603a352b1f17a768b06" + } + ] + }, + { + "bom-ref": "2b78c67391aec18b", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Samara", + "hashes": [ + { + "alg": "SHA-1", + "content": "4262eeceaa3cf13aca23e06f098525c01a7383ac" + }, + { + "alg": "SHA-256", + "content": "757ea574d61782c57c7a27f4ca052c5277e3009f99dae455b486f7633fe05e17" + } + ] + }, + { + "bom-ref": "0628758eb0b0970f", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Saratov", + "hashes": [ + { + "alg": "SHA-1", + "content": "803363899b67201d23402e09beaeec32d7d94d37" + }, + { + "alg": "SHA-256", + "content": "d363c02f8c0d79a6b550239df44b5754efc54291da4d85d82e345f8edb3b6f68" + } + ] + }, + { + "bom-ref": "df119828290cdad0", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Simferopol", + "hashes": [ + { + "alg": "SHA-1", + "content": "5bc2a3f7285e8e36dd83cf3892283552de96ec01" + }, + { + "alg": "SHA-256", + "content": "c749271304d25a3772fec2f14e1a9fe29d66a993e88384b4fb8c35305208aa06" + } + ] + }, + { + "bom-ref": "867ca63ae68ca3e2", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Sofia", + "hashes": [ + { + "alg": "SHA-1", + "content": "d4194adab72550c866c1e8bb7f9b8c6ebc87c868" + }, + { + "alg": "SHA-256", + "content": "2d9a0ae58e5f9d5b678d68e5874b4d4bf0481a5decd3e9a097bed5f172a16cd0" + } + ] + }, + { + "bom-ref": "e20d6c7e826ade12", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Stockholm", + "hashes": [ + { + "alg": "SHA-1", + "content": "0a16e797e7f388b74dfbdc8a44d0daaa93096a00" + }, + { + "alg": "SHA-256", + "content": "57c9a0626fe99afad4195a26bdd53a0013d465c876e4970a365196242191009a" + } + ] + }, + { + "bom-ref": "2b2292378f6fb5da", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Tallinn", + "hashes": [ + { + "alg": "SHA-1", + "content": "9da67a9600699c4d875b157df5a7be5c44eee153" + }, + { + "alg": "SHA-256", + "content": "3ce08292fa8bf8241cfc2bd85b05dec3459e3b653a0333720380ef66841e9db1" + } + ] + }, + { + "bom-ref": "2af765ed57f42d68", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Tirane", + "hashes": [ + { + "alg": "SHA-1", + "content": "efb237cf3f14a5d46e484c63b28dfeba71d11f93" + }, + { + "alg": "SHA-256", + "content": "aecddbe0e431c06b7d90ce8c9be834f2aafeba71716812b98797272f72d54141" + } + ] + }, + { + "bom-ref": "0817206d4f5f830f", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Ulyanovsk", + "hashes": [ + { + "alg": "SHA-1", + "content": "94a03914fed7c8e79e96fcd700e81aed010048e5" + }, + { + "alg": "SHA-256", + "content": "1805377db5fc2f5733f3b229c5c3744321fc279b46fd004a5d0d7492a8c55f16" + } + ] + }, + { + "bom-ref": "f7058a400fec8273", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Uzhgorod", + "hashes": [ + { + "alg": "SHA-1", + "content": "96589b9fc6fb3a4cee1044eb139adab295231f82" + }, + { + "alg": "SHA-256", + "content": "7ede029288ea2e0af7da34e57ef3414159d510db5e41db99ef2bd0becff29c72" + } + ] + }, + { + "bom-ref": "cd4874bbee70208c", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Vienna", + "hashes": [ + { + "alg": "SHA-1", + "content": "e91939ca0343bb7643f3ecb15cc62982d37623e1" + }, + { + "alg": "SHA-256", + "content": "e69df04b842a8f784b6fc0adddf418fe2e3e635d7a0f1c60ed35c05c5c7e7b9d" + } + ] + }, + { + "bom-ref": "5c03e0147ed53e1d", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Vilnius", + "hashes": [ + { + "alg": "SHA-1", + "content": "77240d99110494ff581f409a4f91e8d666b9e7dd" + }, + { + "alg": "SHA-256", + "content": "60409d0bfd11d41ed822fbc0564645c41d63b215b8b1822c369a5af7824631fe" + } + ] + }, + { + "bom-ref": "58a222aedae04019", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Volgograd", + "hashes": [ + { + "alg": "SHA-1", + "content": "be9639833159c9bb7232a5f2f161772bfb96328a" + }, + { + "alg": "SHA-256", + "content": "42e86a9d73081569a4a32a84b165b6cdaf802b8b1f1f82bbe24acae6b6df1ce3" + } + ] + }, + { + "bom-ref": "c077a8388fd20535", + "type": "file", + "name": "/usr/share/zoneinfo/right/Europe/Zaporozhye", + "hashes": [ + { + "alg": "SHA-1", + "content": "7fcf6521972b53277cbdf211ac2a19a60bcd27d8" + }, + { + "alg": "SHA-256", + "content": "67d4c4e23f865eeb4fcc7779563524189dd9852d7547ab5b9374f637f4f3faef" + } + ] + }, + { + "bom-ref": "1f8786a09f8f8baa", + "type": "file", + "name": "/usr/share/zoneinfo/right/Factory", + "hashes": [ + { + "alg": "SHA-1", + "content": "d127aba9c4f7502db8494bb29749cd5fd864d5d4" + }, + { + "alg": "SHA-256", + "content": "08f3d0855f41ad3d49a9ddb59b6a2385c565d23daf5f80d8ed1a056978578c28" + } + ] + }, + { + "bom-ref": "af3e23a2e51c207f", + "type": "file", + "name": "/usr/share/zoneinfo/right/GB", + "hashes": [ + { + "alg": "SHA-1", + "content": "2e83295f3fd84a717bf6a2ed5b5eeef5567572fe" + }, + { + "alg": "SHA-256", + "content": "256c78cc8a67c9b7796737d6af67860246715133443319c41c5962d4d4411f6d" + } + ] + }, + { + "bom-ref": "6ed59fe403650418", + "type": "file", + "name": "/usr/share/zoneinfo/right/GMT", + "hashes": [ + { + "alg": "SHA-1", + "content": "32060a2dc263b14098b048fb911f8591df6f5900" + }, + { + "alg": "SHA-256", + "content": "da4f5e177e0e5138774896d0b82b59cce878cf3700734a5d6cdfac2f0f96eb28" + } + ] + }, + { + "bom-ref": "62718a4ee8074f95", + "type": "file", + "name": "/usr/share/zoneinfo/right/HST", + "hashes": [ + { + "alg": "SHA-1", + "content": "f9812f0cd5325024bb6f900e35b77c727f64b9e2" + }, + { + "alg": "SHA-256", + "content": "d6c14dcfa90060f656344c7f7078d78fd6046e38d850b78de5f066c0f3c0c655" + } + ] + }, + { + "bom-ref": "4ff9dc95362f383e", + "type": "file", + "name": "/usr/share/zoneinfo/right/Hongkong", + "hashes": [ + { + "alg": "SHA-1", + "content": "3b1ce0b4642612f04585640e884fda791daad6b5" + }, + { + "alg": "SHA-256", + "content": "f4f912297ccc9172c05ffe76746d938e832d85d3154b4638709753c0f4800c7c" + } + ] + }, + { + "bom-ref": "600a2cf25b5f00ec", + "type": "file", + "name": "/usr/share/zoneinfo/right/Iceland", + "hashes": [ + { + "alg": "SHA-1", + "content": "b87325e519c0dfbc498fe24dd8fb45cb8dd9e853" + }, + { + "alg": "SHA-256", + "content": "4a419779c4e933cb9ba204355f1a3649c72d443a95e0a6d81ff506ab467293c0" + } + ] + }, + { + "bom-ref": "65a9722e0c86720b", + "type": "file", + "name": "/usr/share/zoneinfo/right/Indian/Chagos", + "hashes": [ + { + "alg": "SHA-1", + "content": "d6d9d4dfd343d36ec38d1bee7038df5e20b0f975" + }, + { + "alg": "SHA-256", + "content": "f8cf0c5a28233ce257fb4b7fbcc360677dd2263eac889a65eb02c09e86541d72" + } + ] + }, + { + "bom-ref": "92d923d69c79a55d", + "type": "file", + "name": "/usr/share/zoneinfo/right/Indian/Christmas", + "hashes": [ + { + "alg": "SHA-1", + "content": "3466d5ce6150d0cfcfb8bc5a58697ba8f773c1ce" + }, + { + "alg": "SHA-256", + "content": "445dd04f82a28c39962af2578501b9d8cfc0e17ee56630a30c78bbd7e8de7ba1" + } + ] + }, + { + "bom-ref": "259e7028c64168c0", + "type": "file", + "name": "/usr/share/zoneinfo/right/Indian/Cocos", + "hashes": [ + { + "alg": "SHA-1", + "content": "070d0227bca6af35e785e444ca925a096c086328" + }, + { + "alg": "SHA-256", + "content": "73738c8c7d23555123841d80cf638f6e8e2be52f93c841b54d97edba207f9ad5" + } + ] + }, + { + "bom-ref": "fc5c1ece7920d44e", + "type": "file", + "name": "/usr/share/zoneinfo/right/Indian/Kerguelen", + "hashes": [ + { + "alg": "SHA-1", + "content": "136728160069ea43a57589626d6dff51b2e01ba0" + }, + { + "alg": "SHA-256", + "content": "ac6df2f0f61d25a524ae0c2aa10b663ab852dcbd51e97cec4db54843b8ee916e" + } + ] + }, + { + "bom-ref": "740c535fea035c21", + "type": "file", + "name": "/usr/share/zoneinfo/right/Indian/Mahe", + "hashes": [ + { + "alg": "SHA-1", + "content": "6f2ac38894d3fb259e148148380c3cb462325a6c" + }, + { + "alg": "SHA-256", + "content": "0b9df215f8fb10374001f1ba26b12929db2b7f3e9c9380b41653b5acba0ec1c2" + } + ] + }, + { + "bom-ref": "7604f1023e7787c2", + "type": "file", + "name": "/usr/share/zoneinfo/right/Indian/Maldives", + "hashes": [ + { + "alg": "SHA-1", + "content": "4bfde2f88401358cfc58d09c8d9640a20f860c36" + }, + { + "alg": "SHA-256", + "content": "f7e3029145d587448a750d43b4dd67a40bc9a6a2499916cd3093fbcc6a4d7b2c" + } + ] + }, + { + "bom-ref": "c07dd36402dfb8f5", + "type": "file", + "name": "/usr/share/zoneinfo/right/Indian/Mauritius", + "hashes": [ + { + "alg": "SHA-1", + "content": "9d0926b3bb4685f948d6841ad2481943e75c774b" + }, + { + "alg": "SHA-256", + "content": "930cd4dc0a8cbbbbebd33c61edf12c5431e3263b3748cdb6ac0c1afba39c8623" + } + ] + }, + { + "bom-ref": "4a87e1674ba8240f", + "type": "file", + "name": "/usr/share/zoneinfo/right/Indian/Reunion", + "hashes": [ + { + "alg": "SHA-1", + "content": "adcdaf71e46938190e5e2eb1d5b7e4baea23431a" + }, + { + "alg": "SHA-256", + "content": "f3460ec007959b0ed112cdc75fd1decf42969ab272cdb157edf9c3a040c6c279" + } + ] + }, + { + "bom-ref": "62e35b7040f9c87c", + "type": "file", + "name": "/usr/share/zoneinfo/right/Iran", + "hashes": [ + { + "alg": "SHA-1", + "content": "b8a7703b3dbb09aed48ec04fdd029fff6d239513" + }, + { + "alg": "SHA-256", + "content": "c5940a0ac0a0fb9c21f747d475f7b30031ec8c2700fbfa1bfd1496724c953715" + } + ] + }, + { + "bom-ref": "b9671e9738df13cc", + "type": "file", + "name": "/usr/share/zoneinfo/right/Israel", + "hashes": [ + { + "alg": "SHA-1", + "content": "28c9d09f5ee8487928b01241064447e1ed269026" + }, + { + "alg": "SHA-256", + "content": "80aeeae1c2240a9fe9fd82ec889da6acc3e2e284d4a051343ff35cb79e147af0" + } + ] + }, + { + "bom-ref": "7df455f42ca8cbb0", + "type": "file", + "name": "/usr/share/zoneinfo/right/Jamaica", + "hashes": [ + { + "alg": "SHA-1", + "content": "8ee6e0cd229bfc34dd4c598e42f69bed37612dda" + }, + { + "alg": "SHA-256", + "content": "47ddec901639efbe7268363dcc0d8b92a855372b0cae12720d68cce9a8974fdb" + } + ] + }, + { + "bom-ref": "78691894ed252e3e", + "type": "file", + "name": "/usr/share/zoneinfo/right/Japan", + "hashes": [ + { + "alg": "SHA-1", + "content": "7e8294296c3c4285d8fd73af73cb7c98e619a60e" + }, + { + "alg": "SHA-256", + "content": "1ecabb9dd5bcee432606c243ffd05fc8f1f50ec8f531dfaf3dd7a872160814f0" + } + ] + }, + { + "bom-ref": "9368686d1874aa8a", + "type": "file", + "name": "/usr/share/zoneinfo/right/Kwajalein", + "hashes": [ + { + "alg": "SHA-1", + "content": "4758b52fe69262d8de90943bd55c5dfd1d867278" + }, + { + "alg": "SHA-256", + "content": "f85d2a961799deb5cb0bd7a45974d7cdfbedeac8a3b82330512b0b1ccb7cd8eb" + } + ] + }, + { + "bom-ref": "3c0c9c3fdebbb7f5", + "type": "file", + "name": "/usr/share/zoneinfo/right/Libya", + "hashes": [ + { + "alg": "SHA-1", + "content": "9e8c2725e4959d29c548cca677a25f874c2d2865" + }, + { + "alg": "SHA-256", + "content": "72bb85f8ac4ec74b2ae92214c047c82f1f39c9c0785d0f54e152b8c1d940adda" + } + ] + }, + { + "bom-ref": "d4ddbaaeda6975e5", + "type": "file", + "name": "/usr/share/zoneinfo/right/MET", + "hashes": [ + { + "alg": "SHA-1", + "content": "a0ea3cb09c579c288b2d94ea3a05d8459b34e12f" + }, + { + "alg": "SHA-256", + "content": "735b7a481c6b4024076996235dc00c88eba04788ea0d2320f52f3b6f832e2c5c" + } + ] + }, + { + "bom-ref": "32b08103305a6263", + "type": "file", + "name": "/usr/share/zoneinfo/right/MST", + "hashes": [ + { + "alg": "SHA-1", + "content": "f30a44a046b19f0fec016f3fd1180d64963d538f" + }, + { + "alg": "SHA-256", + "content": "d7ed7889d7e664fa5f24d3ebca03abc5e6f4c1af886e13b6d057d0aa4009a953" + } + ] + }, + { + "bom-ref": "2732b5ea3f8d40ba", + "type": "file", + "name": "/usr/share/zoneinfo/right/MST7MDT", + "hashes": [ + { + "alg": "SHA-1", + "content": "b9666da0bde1862a824c609e2fa13d6cb4160f07" + }, + { + "alg": "SHA-256", + "content": "f5bff9e9551d99b333440822fd3fa74d2bf03b0303585ce0705557b869e47e83" + } + ] + }, + { + "bom-ref": "4843181646276735", + "type": "file", + "name": "/usr/share/zoneinfo/right/NZ", + "hashes": [ + { + "alg": "SHA-1", + "content": "e00942d422cccaf683fe0f6ca58898074879797a" + }, + { + "alg": "SHA-256", + "content": "c6fa7d47e6fb209806155ca05d2d0721726515ad678714f3197b9daeb9da3a96" + } + ] + }, + { + "bom-ref": "161c7a28f3d2c411", + "type": "file", + "name": "/usr/share/zoneinfo/right/NZ-CHAT", + "hashes": [ + { + "alg": "SHA-1", + "content": "19dbd397eb53c05564c6541f9637da885ddb8b92" + }, + { + "alg": "SHA-256", + "content": "7d7cab36a76aa5df26ae237bb5b1f4abb4efbc7eb4807dabe74540ef5187a25d" + } + ] + }, + { + "bom-ref": "3f91e7b1848eefa4", + "type": "file", + "name": "/usr/share/zoneinfo/right/Navajo", + "hashes": [ + { + "alg": "SHA-1", + "content": "39335f755a05ac949b22c12fbc24e6703cec03bf" + }, + { + "alg": "SHA-256", + "content": "7448c66048e5489a28ecad3adc495351163e62cedff714bec6d15506a9e1f548" + } + ] + }, + { + "bom-ref": "290e3f78acbf5fff", + "type": "file", + "name": "/usr/share/zoneinfo/right/PRC", + "hashes": [ + { + "alg": "SHA-1", + "content": "605d9acf8e50a8c7bded9455e067592bf185795d" + }, + { + "alg": "SHA-256", + "content": "add747558dc8f3175776014d9653cf734a761b95dec62f06a3922bfce9f82b6e" + } + ] + }, + { + "bom-ref": "291b73c6c23ad0d1", + "type": "file", + "name": "/usr/share/zoneinfo/right/PST8PDT", + "hashes": [ + { + "alg": "SHA-1", + "content": "5f16aef0d55587d87a93982ff498183a87058c71" + }, + { + "alg": "SHA-256", + "content": "f08ae6766d50d2008608f2e668ff34560eef0fb62b3e60df8c019e04cb914780" + } + ] + }, + { + "bom-ref": "9b9cc63013c3496c", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Apia", + "hashes": [ + { + "alg": "SHA-1", + "content": "aa21b0a26e2018b36e368eb06af9b3fa6a55e414" + }, + { + "alg": "SHA-256", + "content": "3b8ceeb83ab926790b5ae3dacbf350c1a67f014b0794bcafe42616944d52a1a6" + } + ] + }, + { + "bom-ref": "7de7b2fbbea3eda1", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Bougainville", + "hashes": [ + { + "alg": "SHA-1", + "content": "cd141795e0c9775ff08ef8f8885ee724f9ffabdd" + }, + { + "alg": "SHA-256", + "content": "f6be590e2ca7b1132a89a2347e6bab35f303881e27a95a3768fbe2044fd2da9b" + } + ] + }, + { + "bom-ref": "cf88890984baca85", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Chuuk", + "hashes": [ + { + "alg": "SHA-1", + "content": "8956587666fd592f63acc1cf669f1e12c505de94" + }, + { + "alg": "SHA-256", + "content": "9edef2327e3ea2e74d2eb9d2ce91dbfcc72ee9c46541cfd686f0eda9989942c1" + } + ] + }, + { + "bom-ref": "d9fd79a79924dfd5", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Efate", + "hashes": [ + { + "alg": "SHA-1", + "content": "6c1c7acb66631ba9675a3827bf78ec48a78d66fb" + }, + { + "alg": "SHA-256", + "content": "d8b5b1f416db9fe13eb83ae113aef84af8c21dc65bbda12f7c284f2931dfcd71" + } + ] + }, + { + "bom-ref": "af730b7d2b708e95", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Enderbury", + "hashes": [ + { + "alg": "SHA-1", + "content": "0b0d21ed8c36efb77e51345d1a29b87dc138f20d" + }, + { + "alg": "SHA-256", + "content": "8757354f311a09599c3eac732b4cafe172c311a15291a96b95f659038ba025cf" + } + ] + }, + { + "bom-ref": "422011ee90854f0c", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Fakaofo", + "hashes": [ + { + "alg": "SHA-1", + "content": "91680bf344d82ae375428043b084bba6aeab52c1" + }, + { + "alg": "SHA-256", + "content": "250e6d05b76670206d86dbf786f8c671e7ee0e3260fa3cf728246f05e40117f2" + } + ] + }, + { + "bom-ref": "c9e84a9f0c6a44d0", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Fiji", + "hashes": [ + { + "alg": "SHA-1", + "content": "5ce359cb780e994bedaa80c6c8c259996f359b59" + }, + { + "alg": "SHA-256", + "content": "5adaad4c4c3d28f31f828259476d05e117d9c69ed6ae5feaf83687c9666a6c1b" + } + ] + }, + { + "bom-ref": "82e9413b4afe2636", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Funafuti", + "hashes": [ + { + "alg": "SHA-1", + "content": "d086249279c082e45724017fcb906a2983567c67" + }, + { + "alg": "SHA-256", + "content": "3a9da5b61aad5ea62609b9b7b6c838e38129f7c1722f3c078ad2588aafbe0428" + } + ] + }, + { + "bom-ref": "60f5107ea0b144fe", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Galapagos", + "hashes": [ + { + "alg": "SHA-1", + "content": "bfb607ad112688c8d546b976a99b51096dd415a8" + }, + { + "alg": "SHA-256", + "content": "6d318df273394bf526ef4318eecfc047e55dda60fb4791bda097d0ba7e52a8c8" + } + ] + }, + { + "bom-ref": "762341f48321f0f7", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Gambier", + "hashes": [ + { + "alg": "SHA-1", + "content": "d25d3c7cdd0f3bc6cedfd8d15b2c9cb8439e33af" + }, + { + "alg": "SHA-256", + "content": "2d89a421366c5757aa91f50667646b760032b5f4732a53374e4a05b0045d6483" + } + ] + }, + { + "bom-ref": "a76444c2c8e746f5", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Guadalcanal", + "hashes": [ + { + "alg": "SHA-1", + "content": "c6f3e78ee3b7df56549c9b0efd719063c72de5d6" + }, + { + "alg": "SHA-256", + "content": "fe837664f234ac8eb7598cc4df8f9bd1df7afc34d9c5905001cfdc3241e2ea73" + } + ] + }, + { + "bom-ref": "328a7573406b0193", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Guam", + "hashes": [ + { + "alg": "SHA-1", + "content": "cd9c9289b06c0ca2e3adb521c8e8b59ec5021b9c" + }, + { + "alg": "SHA-256", + "content": "2e85a11e3769f6576cc0131f7a59d3d145639f527548d59638086ae4b09a1d13" + } + ] + }, + { + "bom-ref": "49388594778e9c21", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Honolulu", + "hashes": [ + { + "alg": "SHA-1", + "content": "da20c0e6d70b3debc00034951cc016a1b37beb01" + }, + { + "alg": "SHA-256", + "content": "93c484f1a3546cf33ee6bcbc52494b4e91d7c5d8d6dc9cc6a73751f8d8235cb3" + } + ] + }, + { + "bom-ref": "ce322f77437e15b9", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Kiritimati", + "hashes": [ + { + "alg": "SHA-1", + "content": "18a675209605e37454a2a9794e51c5f08b0ac44f" + }, + { + "alg": "SHA-256", + "content": "f33ea162876a1311c2d6a974cf7f079893bdac950dbd180e2cfb107a879ab303" + } + ] + }, + { + "bom-ref": "26647ed0f745233d", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Kosrae", + "hashes": [ + { + "alg": "SHA-1", + "content": "4d9aa51a6b1c1e61810fd35e505fd7880b27921b" + }, + { + "alg": "SHA-256", + "content": "572fb52c2262c3aeda2aef85157c862a305e99c15a5a673b081a01c9dd89c3ee" + } + ] + }, + { + "bom-ref": "935972dd6d248adc", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Majuro", + "hashes": [ + { + "alg": "SHA-1", + "content": "f1a44373e1456df2b3327b307ca5f2df4cd16949" + }, + { + "alg": "SHA-256", + "content": "6298dff3baf870ed80da5e52a282ffdb0b9ac6ccf2c1a2ed4d910aef532dbf74" + } + ] + }, + { + "bom-ref": "977bc9518708a32d", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Marquesas", + "hashes": [ + { + "alg": "SHA-1", + "content": "0b969d2c5c307f4cf0e4c3203df5983700dfe599" + }, + { + "alg": "SHA-256", + "content": "8bddb6881492ed79f799832454b02809ad7922791994b9c19f98094dc4206647" + } + ] + }, + { + "bom-ref": "65c30ee31ac865ad", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Midway", + "hashes": [ + { + "alg": "SHA-1", + "content": "0a749023cb5dc6fb6584a5c2914d350bafdce1f5" + }, + { + "alg": "SHA-256", + "content": "c996db6822af6b663b37e0c8750132432169950eed2c24bab4c9f843475b5cb5" + } + ] + }, + { + "bom-ref": "62d467e7957c7990", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Nauru", + "hashes": [ + { + "alg": "SHA-1", + "content": "b2a14530f173f1234b6544d2d66188d681c759d6" + }, + { + "alg": "SHA-256", + "content": "7e240f6870254d1f701d3d480248add43b0648f75dff3269d926ea3b2d703a9a" + } + ] + }, + { + "bom-ref": "bbb7c6e759dd5463", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Niue", + "hashes": [ + { + "alg": "SHA-1", + "content": "1dd8bd1d402c1b56e2ed70e198801b9c82e99468" + }, + { + "alg": "SHA-256", + "content": "2eecd96d4056c59d3db04eea43c3f1cb491398d84732d88a500b13e15624eb57" + } + ] + }, + { + "bom-ref": "44e491d8915fdf78", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Norfolk", + "hashes": [ + { + "alg": "SHA-1", + "content": "f305fcf22f280b98d7b326fc7e8bd8ac115d4585" + }, + { + "alg": "SHA-256", + "content": "8c5874c6ab78e49f434f7ca29ac0303b59d2dace69ef0e3fdd6bf6a566bfbc6a" + } + ] + }, + { + "bom-ref": "8c815f71372193a2", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Noumea", + "hashes": [ + { + "alg": "SHA-1", + "content": "e685069b620a855a00a84813620048431e5abc94" + }, + { + "alg": "SHA-256", + "content": "5e4a79b64ba530ff85ee0747c693d00efb94d7625cc70a4a99557fcc4fa60ae2" + } + ] + }, + { + "bom-ref": "bb030883338f7989", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Palau", + "hashes": [ + { + "alg": "SHA-1", + "content": "437ca554d518af6373d38ff478326551b4a62da3" + }, + { + "alg": "SHA-256", + "content": "fa7e4882188f567514105374c59a5b95bf1c82bfa8216c52fc6f247d57a56cdf" + } + ] + }, + { + "bom-ref": "fbc3ab6b03defc8d", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Pitcairn", + "hashes": [ + { + "alg": "SHA-1", + "content": "6c9b71ab5c4682512994ff245554d02759a4897d" + }, + { + "alg": "SHA-256", + "content": "05ab1d75088ddcaa01f819e2820a2e84285ee261c574e25f3a1f026f05d440a1" + } + ] + }, + { + "bom-ref": "05c743df7db292d2", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Pohnpei", + "hashes": [ + { + "alg": "SHA-1", + "content": "4667a298abf0e5de843060d7fbbf8c871db74e0e" + }, + { + "alg": "SHA-256", + "content": "68eec56a56e1a4eed4d7cb732995e773a0d46f84c29c55875e24df333e6a6c27" + } + ] + }, + { + "bom-ref": "37916b85d4758ebc", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Port_Moresby", + "hashes": [ + { + "alg": "SHA-1", + "content": "6e88bd35c86c02f6d1baf30018a0b4e121992073" + }, + { + "alg": "SHA-256", + "content": "627805f2b9bf76f41742808c227b3bfd443e2ef73e5eef7162616074aa97e41b" + } + ] + }, + { + "bom-ref": "afc0cbb6777b4531", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Rarotonga", + "hashes": [ + { + "alg": "SHA-1", + "content": "c0435de7d319d62b4057fbdcb3a04de0afd6ccfa" + }, + { + "alg": "SHA-256", + "content": "2d1e4a68104638e75fb5cf82daf680d934f965e682e35a04ecc0e518d8f8a097" + } + ] + }, + { + "bom-ref": "65c25eb692c71b6a", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Tahiti", + "hashes": [ + { + "alg": "SHA-1", + "content": "b50e5f5d7d23f283f57fc3e86da4f69ec0c4102a" + }, + { + "alg": "SHA-256", + "content": "344408438702e718bca59faacbd552969b7397bdaf5aedf99e126f50c8233ee3" + } + ] + }, + { + "bom-ref": "fe7df375d7d5ba9f", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Tarawa", + "hashes": [ + { + "alg": "SHA-1", + "content": "6ea42e732e9af05124166771628f10d08114ffed" + }, + { + "alg": "SHA-256", + "content": "f82a0f21667dce26d11673eef99db2d9200f915256c41289afb85689edce34f2" + } + ] + }, + { + "bom-ref": "d127c28170315ac9", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Tongatapu", + "hashes": [ + { + "alg": "SHA-1", + "content": "3b4de04b915a7da0f85aa8308275331cd257770a" + }, + { + "alg": "SHA-256", + "content": "bbb8632d8f1d1a120c351694103ee55e7b45193c2aa9bcb5b65e99f8ffee424d" + } + ] + }, + { + "bom-ref": "101cab7c7d11a8c7", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Wake", + "hashes": [ + { + "alg": "SHA-1", + "content": "29c5b45932598bc152c17b3e0a8639b4ac3c0412" + }, + { + "alg": "SHA-256", + "content": "17180eb8fef967ac24d5492908cce1e90a7b4c578657fbddf0f60a2d832a7745" + } + ] + }, + { + "bom-ref": "42b15e3f5baea97c", + "type": "file", + "name": "/usr/share/zoneinfo/right/Pacific/Wallis", + "hashes": [ + { + "alg": "SHA-1", + "content": "0e9cc9611472c345e5c8c38f06b7539681d70bfc" + }, + { + "alg": "SHA-256", + "content": "5fa9d027fcf24e4d9ad77875907d675144b7384bda0ddbedb03fbe44c09a63ab" + } + ] + }, + { + "bom-ref": "06d344a8f85708d7", + "type": "file", + "name": "/usr/share/zoneinfo/right/Poland", + "hashes": [ + { + "alg": "SHA-1", + "content": "0db3f817512b0b29c2814cafcc4c064d19eeec28" + }, + { + "alg": "SHA-256", + "content": "2776052936d3361f49da479c0a6d522ea7ec256300cc9263d1011848ab2bb3a9" + } + ] + }, + { + "bom-ref": "a56ec530a5407f0b", + "type": "file", + "name": "/usr/share/zoneinfo/right/Portugal", + "hashes": [ + { + "alg": "SHA-1", + "content": "b97498fb000c592f2927cc7e37ff11fb0ab34b6b" + }, + { + "alg": "SHA-256", + "content": "f8e850961fc42ea64edb30cebaabad27fccda97bdf6cf1047e4051298bdf20d0" + } + ] + }, + { + "bom-ref": "6c9af8fb2ad71805", + "type": "file", + "name": "/usr/share/zoneinfo/right/ROC", + "hashes": [ + { + "alg": "SHA-1", + "content": "31681bb16db32cfd096bcd8a1e16e0525d351fa8" + }, + { + "alg": "SHA-256", + "content": "d5ff02c7a5dc9adb7a5b8de1e492f8ace92d832e8f2f6879265520c47f850078" + } + ] + }, + { + "bom-ref": "808a3778c95c62cd", + "type": "file", + "name": "/usr/share/zoneinfo/right/ROK", + "hashes": [ + { + "alg": "SHA-1", + "content": "2250daa35057ec3456ed9c4457e4fbb9db00109b" + }, + { + "alg": "SHA-256", + "content": "6c95b3eee50a28160e185e76e2bab6ec9f28f50e2d9a3166b20c4acfcf4aef1c" + } + ] + }, + { + "bom-ref": "ba068122e594130b", + "type": "file", + "name": "/usr/share/zoneinfo/right/Singapore", + "hashes": [ + { + "alg": "SHA-1", + "content": "df9afc7eca5470ab701e375f795075842cc93387" + }, + { + "alg": "SHA-256", + "content": "91e407e2266fb1de8a5a90631744cd5b213f2521db783258f2f9f41697517dda" + } + ] + }, + { + "bom-ref": "a8c68687b18dfd2c", + "type": "file", + "name": "/usr/share/zoneinfo/right/Turkey", + "hashes": [ + { + "alg": "SHA-1", + "content": "1c8dd859c65289cc678d10a339eb027b286a4f7b" + }, + { + "alg": "SHA-256", + "content": "d0fd3d19c0e209595df3017696f8dc59d900be1dd6a3a8b354f7798ba6ce1f4d" + } + ] + }, + { + "bom-ref": "05eb099e19a462ee", + "type": "file", + "name": "/usr/share/zoneinfo/right/UCT", + "hashes": [ + { + "alg": "SHA-1", + "content": "26998daae7d053ece89ae8e2c13d0f1f0be4014e" + }, + { + "alg": "SHA-256", + "content": "d19fdd5d26a7753518ee9a09ab74a8e4efa9a4e6ed56eff85baabd8af9c0e459" + } + ] + }, + { + "bom-ref": "6fad0c8bb5c8c00c", + "type": "file", + "name": "/usr/share/zoneinfo/right/W-SU", + "hashes": [ + { + "alg": "SHA-1", + "content": "b0882f05fa6f6096fc5c8d69371b756e030598d0" + }, + { + "alg": "SHA-256", + "content": "8e1367300579da7319742b25b9da707131b058482c77e7a707c71aeb60f067ff" + } + ] + }, + { + "bom-ref": "0bf97ac5c1892c01", + "type": "file", + "name": "/usr/share/zoneinfo/right/WET", + "hashes": [ + { + "alg": "SHA-1", + "content": "6c9f8f1182d265bb730b1c63222e0c165b4bd71e" + }, + { + "alg": "SHA-256", + "content": "e9826478fee66e6f8a7583d9a67d82f114f8a12856b4f4a6bfed5db540c54753" + } + ] + }, + { + "bom-ref": "c8262326ecf4dbde", + "type": "file", + "name": "/usr/share/zoneinfo/zone.tab", + "hashes": [ + { + "alg": "SHA-1", + "content": "7bcf27b3c1c95dd59d673043a6e82193f5374d8e" + }, + { + "alg": "SHA-256", + "content": "db0cec68e09f62e86133166c14ef72d5c9003e00f8bb305f6df7fae17575a965" + } + ] + }, + { + "bom-ref": "8ea1f2fc66aa6c9d", + "type": "file", + "name": "/usr/share/zoneinfo/zone1970.tab", + "hashes": [ + { + "alg": "SHA-1", + "content": "562cb671936f54f76fd0277d218187aeadb1e464" + }, + { + "alg": "SHA-256", + "content": "1019220a999e8a8ef71105c297b4fd9461414f5f4d27058fc3cb6a9027344112" + } + ] + }, + { + "bom-ref": "fcc498f2f8d89536", + "type": "file", + "name": "/var/lib/dpkg/info/adduser.conffiles", + "hashes": [ + { + "alg": "SHA-1", + "content": "f599d9982b74b2e62934f8cedd70e33ef36ede5b" + }, + { + "alg": "SHA-256", + "content": "2ed8c75e30af614b19760b001063fbeb2a48ebaf469c44d921d3df787f2ca173" + } + ] + }, + { + "bom-ref": "fc475ef8ad2e47e2", + "type": "file", + "name": "/var/lib/dpkg/info/adduser.config", + "hashes": [ + { + "alg": "SHA-1", + "content": "6bb4297adf2d6d4f3fec6396d1a6c60f48cd34b0" + }, + { + "alg": "SHA-256", + "content": "7bbbed298ee1cba145ccced3c596025d1bf420c978feef4269e9e3c0c8ef1855" + } + ] + }, + { + "bom-ref": "168177368e95413c", + "type": "file", + "name": "/var/lib/dpkg/info/adduser.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "d05abd30065d5714e07b8a8689146694d27357b9" + }, + { + "alg": "SHA-256", + "content": "1d2871a453ad11657eb656cc724f8fde70e8e618722a033460deb3418a80615d" + } + ] + }, + { + "bom-ref": "fb9d3fb52538e008", + "type": "file", + "name": "/var/lib/dpkg/info/adduser.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "6e036e83b95fbc5766e1d949ac529c2fb3653d2a" + }, + { + "alg": "SHA-256", + "content": "ca22aec2cb78ba7e2459cbcaff569fcdc44d069ece6076862792ea307d683d42" + } + ] + }, + { + "bom-ref": "64b9985447853007", + "type": "file", + "name": "/var/lib/dpkg/info/adduser.postinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "92a6cd78a7311cf40713e3f032ac4ca862255b63" + }, + { + "alg": "SHA-256", + "content": "725a17e3ccb6bcda57076fa51d824c1a0903c885261c34e053f9750be30a2755" + } + ] + }, + { + "bom-ref": "bb474cc1b5ec2f6b", + "type": "file", + "name": "/var/lib/dpkg/info/adduser.postrm", + "hashes": [ + { + "alg": "SHA-1", + "content": "f530c3dd56d1166f63e32c40f4bac041e226896f" + }, + { + "alg": "SHA-256", + "content": "0ac3e1a63427a3073ca3b68aea0294bfe31c8572529fcf9bb44bdb4aa0764342" + } + ] + }, + { + "bom-ref": "0efa37b67a37e2e3", + "type": "file", + "name": "/var/lib/dpkg/info/adduser.templates", + "hashes": [ + { + "alg": "SHA-1", + "content": "f6544f1c47faac6e01477dbd3220c2291575b99b" + }, + { + "alg": "SHA-256", + "content": "3006aced92c75c420b780e8e2c7d9b850be88cef12937f5b22fd119c3e391021" + } + ] + }, + { + "bom-ref": "e870f201d4dcdd16", + "type": "file", + "name": "/var/lib/dpkg/info/apt.conffiles", + "hashes": [ + { + "alg": "SHA-1", + "content": "82451cc325a55117167698aa9ee93d4af75bf165" + }, + { + "alg": "SHA-256", + "content": "40d910bb31d4f4744f154ccd80bf53c3ec5574f1577f35af78e5ef77dbcaae47" + } + ] + }, + { + "bom-ref": "2805a81b4a7bb1cb", + "type": "file", + "name": "/var/lib/dpkg/info/apt.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "29d54313029f19d6ea784399e953f2f4eac79b5f" + }, + { + "alg": "SHA-256", + "content": "84d86fa796054caa72c01b3fe0fba75020b929b32b57f5f58f3f56f90684a0dc" + } + ] + }, + { + "bom-ref": "dfa29e44fa7fa7a2", + "type": "file", + "name": "/var/lib/dpkg/info/apt.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "9a75d783eaca859278d756bfb94b6787acd3418d" + }, + { + "alg": "SHA-256", + "content": "a7d8d0dc9e72dcc89482bfa42a57c7c35c01bf37715f984a1b05cf6a9e5e2cb1" + } + ] + }, + { + "bom-ref": "b9391d3823469d80", + "type": "file", + "name": "/var/lib/dpkg/info/apt.postinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "ca4e36223187e1840ab803c69be644d9e4388af8" + }, + { + "alg": "SHA-256", + "content": "970fc550d058899d9579e1fc0d1e79452b621e406e88699e1a13e6db76b880e3" + } + ] + }, + { + "bom-ref": "492bf388de989ecc", + "type": "file", + "name": "/var/lib/dpkg/info/apt.postrm", + "hashes": [ + { + "alg": "SHA-1", + "content": "ac7b1b3b6691c5c70126c0c381a0786b8a1fb966" + }, + { + "alg": "SHA-256", + "content": "e9cc5f954c30346d08671ac37a55e1cbd83d1e33d06a06265065bddde3d81213" + } + ] + }, + { + "bom-ref": "c10d579c7fe2c6b9", + "type": "file", + "name": "/var/lib/dpkg/info/apt.preinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "bef252305ddab8b1a136f638e827c095cfbf9365" + }, + { + "alg": "SHA-256", + "content": "d5e908aa83097ed42de33e92867208a5f3ab82f57e9b92efe0acec9a616f1d4b" + } + ] + }, + { + "bom-ref": "c1a4e4b1afc1ec2b", + "type": "file", + "name": "/var/lib/dpkg/info/apt.prerm", + "hashes": [ + { + "alg": "SHA-1", + "content": "4fc1b3e1ad64f35af37ea29113828684c23f0dc1" + }, + { + "alg": "SHA-256", + "content": "d30d6f3378dafd4ff65490a4f214420ebcd2e1a9663b19b984e5c696efc5e553" + } + ] + }, + { + "bom-ref": "c7c965da8b3c25f3", + "type": "file", + "name": "/var/lib/dpkg/info/apt.shlibs", + "hashes": [ + { + "alg": "SHA-1", + "content": "e8d1ec9ad003f3f586b0b0c58344bc4bbaab0c20" + }, + { + "alg": "SHA-256", + "content": "ac130374b3322f21573625a13454d60cf7b5166bcd43b931f8ec09e99d54c455" + } + ] + }, + { + "bom-ref": "e3269b49fe5b2345", + "type": "file", + "name": "/var/lib/dpkg/info/apt.triggers", + "hashes": [ + { + "alg": "SHA-1", + "content": "8dae58cef087a99d2fae9403c50f0a9683a9624f" + }, + { + "alg": "SHA-256", + "content": "07a5fdf8ff08ba2362ae00a082911153f9578fc6235d0955f2c91a54d71451a0" + } + ] + }, + { + "bom-ref": "fc86792fe7708e28", + "type": "file", + "name": "/var/lib/dpkg/info/base-files.conffiles", + "hashes": [ + { + "alg": "SHA-1", + "content": "e50605106d2a8746c3ca789de214be224a409ea9" + }, + { + "alg": "SHA-256", + "content": "4b3e9e5378d40d8d9e7c508b759513975ad83bf6faeaa3a1b1684c53931b8556" + } + ] + }, + { + "bom-ref": "ad30bc6aa98aa31b", + "type": "file", + "name": "/var/lib/dpkg/info/base-files.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "464095b7d4f426885d308699aa4030572a3f8add" + }, + { + "alg": "SHA-256", + "content": "118f4dd6bafffcf46631dfc39de25abb0ce0d2f1f6b5ad2b122993f089bbcb87" + } + ] + }, + { + "bom-ref": "8505dab8980d8f1c", + "type": "file", + "name": "/var/lib/dpkg/info/base-files.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "4c29382a619c37fdd266159565b75c1ea5042e0a" + }, + { + "alg": "SHA-256", + "content": "cf8bd9d1b5970af1a409aed7d987b811cfa72a9aed320275d7779fb821a36daa" + } + ] + }, + { + "bom-ref": "9466ef9dbacfb94c", + "type": "file", + "name": "/var/lib/dpkg/info/base-files.postinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "fdd9ec9ef84695fcc33f1004cee9c3484ddad986" + }, + { + "alg": "SHA-256", + "content": "33a5b7e9a52ee15ebbbe3f2033e10cf90fd9506cf362bb94752ab7772e7c5640" + } + ] + }, + { + "bom-ref": "a8f16eebaafbd954", + "type": "file", + "name": "/var/lib/dpkg/info/base-passwd.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "b38ea9ec662800e8aac11339ea552760dcdebe5f" + }, + { + "alg": "SHA-256", + "content": "59e7d3f01481b921ab2fe7b7c0f4c9010c5dbd68e63fd6aa6b98144ec444129c" + } + ] + }, + { + "bom-ref": "7592126a85697357", + "type": "file", + "name": "/var/lib/dpkg/info/base-passwd.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "bd75e33fe859e5e4f8caa9ea5b4ae9adf01912c0" + }, + { + "alg": "SHA-256", + "content": "16587126e47a8af491dc0d7523e3cdb80211314b86684821166ee97e9ffe22c5" + } + ] + }, + { + "bom-ref": "b736260a85d49263", + "type": "file", + "name": "/var/lib/dpkg/info/base-passwd.postinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "926bed034a5d11a8bb7be45327ffaec4086948a3" + }, + { + "alg": "SHA-256", + "content": "01ea366cf8c635d5e21ce289ab3b9998247eac1d3f33312cf002257b0abce445" + } + ] + }, + { + "bom-ref": "8686b3760d094e9c", + "type": "file", + "name": "/var/lib/dpkg/info/base-passwd.postrm", + "hashes": [ + { + "alg": "SHA-1", + "content": "491bff3c810de9b8326944e1e4a8b2e5f44de947" + }, + { + "alg": "SHA-256", + "content": "4ee45fbc0ef26cf9a8cceafcfc80ca5681eb02da68c91c24eeb5e31daaa8da89" + } + ] + }, + { + "bom-ref": "57c62f5341e05dd6", + "type": "file", + "name": "/var/lib/dpkg/info/base-passwd.preinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "fc01283063fc822a6c73700962fe055a147415ce" + }, + { + "alg": "SHA-256", + "content": "6e38694265a25ef4a21a595dbcf58679b02eb3ef91a76b8ce293cfb97def209c" + } + ] + }, + { + "bom-ref": "51e4dde6b3a9112a", + "type": "file", + "name": "/var/lib/dpkg/info/base-passwd.templates", + "hashes": [ + { + "alg": "SHA-1", + "content": "aef245430d45b459e81d92d2d1d50895183b99c2" + }, + { + "alg": "SHA-256", + "content": "f7de1e47978fedea5a736df4f16b947218f4e65735753d97c1c8954e8312c776" + } + ] + }, + { + "bom-ref": "31976b8c975be63d", + "type": "file", + "name": "/var/lib/dpkg/info/bash.conffiles", + "hashes": [ + { + "alg": "SHA-1", + "content": "59508ce0ae15c440b8b9a943d4f9740309e75151" + }, + { + "alg": "SHA-256", + "content": "547d1cf6291bce0dcc569f9caad2b7d204f42efb7a20047d86aa48e0c305a52f" + } + ] + }, + { + "bom-ref": "7641736eb32c798c", + "type": "file", + "name": "/var/lib/dpkg/info/bash.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "0fcded184681255a7312f6ff9c8af8fbdebfa4ee" + }, + { + "alg": "SHA-256", + "content": "898a7bda103c9c368b055da5f797e3e3a37c5d40428716cb683a55aaff45990e" + } + ] + }, + { + "bom-ref": "20787932b541c040", + "type": "file", + "name": "/var/lib/dpkg/info/bash.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "8f253ac374dc458fcaaad526796164f693bf3b94" + }, + { + "alg": "SHA-256", + "content": "df67456b848349c881a60bd3bf765e98a7eceba72f2778cde93aa2d7f13f85f3" + } + ] + }, + { + "bom-ref": "0d58f88e1867d645", + "type": "file", + "name": "/var/lib/dpkg/info/bash.postinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "2c5e0b35138f805d1393c9f68bf065577996fe4d" + }, + { + "alg": "SHA-256", + "content": "3e8995ddc6c96c81021f3556dd8de4cbc8c64bb7f211181f9dfa72af548aa9da" + } + ] + }, + { + "bom-ref": "aad50caab5f12163", + "type": "file", + "name": "/var/lib/dpkg/info/bash.postrm", + "hashes": [ + { + "alg": "SHA-1", + "content": "d5c24af325dab2013bce69464853989295cefe74" + }, + { + "alg": "SHA-256", + "content": "b8c3425b65be2c56f2b66a7e4c5f2b1e7156ad1af868ba0d407c7a31d7427d67" + } + ] + }, + { + "bom-ref": "a7f86a84c21cca17", + "type": "file", + "name": "/var/lib/dpkg/info/bash.preinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "e71e04818b9341963a662f628248d99c54788ef8" + }, + { + "alg": "SHA-256", + "content": "082fae2f50ea8a6bb24c06d499c2c3e8e9fa0cf33dd8955647417e44971e712c" + } + ] + }, + { + "bom-ref": "9c6442772f03772c", + "type": "file", + "name": "/var/lib/dpkg/info/bash.prerm", + "hashes": [ + { + "alg": "SHA-1", + "content": "579b93eeb8818eaf04760eae2087ea9ece9b9fd3" + }, + { + "alg": "SHA-256", + "content": "8d4c0e961f582ca7821cd5b81c8ba304a90f2ddfd6efd963f58cf6020eb2198a" + } + ] + }, + { + "bom-ref": "0bfa3865259b7d8f", + "type": "file", + "name": "/var/lib/dpkg/info/bsdutils.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "95a215f7cecc31e4b363c802768f800f373fcf61" + }, + { + "alg": "SHA-256", + "content": "d4b57cd70404a8b1f20addaa2a31b0ff0539f2b9175814229e904f5f4804661a" + } + ] + }, + { + "bom-ref": "74feec199378ac00", + "type": "file", + "name": "/var/lib/dpkg/info/bsdutils.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "62d80a6f5b9dd9f3701ac2be76dad95de673cdd6" + }, + { + "alg": "SHA-256", + "content": "b391a8b12795747d4a646fd480a480889482b3fa53c5c02511b5fd6f7681675d" + } + ] + }, + { + "bom-ref": "a1d6cdf8646ec725", + "type": "file", + "name": "/var/lib/dpkg/info/coreutils.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "645307365671258a990223d7ecdf3ad4d069e311" + }, + { + "alg": "SHA-256", + "content": "73887279428ab722d2e19ab01daa96efa399ff7fd71c5670f3b692d86dacf190" + } + ] + }, + { + "bom-ref": "9a88e6000cac3f35", + "type": "file", + "name": "/var/lib/dpkg/info/coreutils.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "76b83c05d477f91c187d2571f629f9c72c7047ac" + }, + { + "alg": "SHA-256", + "content": "15c0928087598d9aa52f14d11f017a7fa77b4fe77f55ceeec8cdadb6a0560ac5" + } + ] + }, + { + "bom-ref": "8e428eadd84f1b63", + "type": "file", + "name": "/var/lib/dpkg/info/coreutils.postinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "885178e725463e34cd91dd2c5c85879b915624ac" + }, + { + "alg": "SHA-256", + "content": "b8cc23953515e77bc392d81af72f7362118a5fdf5961680620c2f832bf4c56a8" + } + ] + }, + { + "bom-ref": "3ba636eec8a2cc0f", + "type": "file", + "name": "/var/lib/dpkg/info/coreutils.postrm", + "hashes": [ + { + "alg": "SHA-1", + "content": "3740e6592a8a52be4b1c5e3b5e538d46f73d075d" + }, + { + "alg": "SHA-256", + "content": "fb04069056d6bd6aadb41350b25da0f9da66ff520185f4f16445430535e1bf18" + } + ] + }, + { + "bom-ref": "0387c2faae9379a1", + "type": "file", + "name": "/var/lib/dpkg/info/dash.config", + "hashes": [ + { + "alg": "SHA-1", + "content": "48a6a301c95801c722e9d8b7074e60c91ab8fcb2" + }, + { + "alg": "SHA-256", + "content": "6ce6e1f0695bac42e20a96be49b70c79cf596e8f81047ff4ea3cf922c0a9cc57" + } + ] + }, + { + "bom-ref": "b66979beb9aa4d8d", + "type": "file", + "name": "/var/lib/dpkg/info/dash.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "e5aec6d5d045f89322971c58235f028d19ca82fa" + }, + { + "alg": "SHA-256", + "content": "0994309c7384d07ada80e7c9d77ef00d978d9c9f1faa6a055d044679a3c65244" + } + ] + }, + { + "bom-ref": "f542ffea25636b9d", + "type": "file", + "name": "/var/lib/dpkg/info/dash.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "28b284e0b6b0842fcd637860c62d27446bf2d185" + }, + { + "alg": "SHA-256", + "content": "5bc20df7dfdc9b41fd3eec72dad98a69cb0ee1e03dbecd1285a45d13c3b43a77" + } + ] + }, + { + "bom-ref": "21902b89c32b5c93", + "type": "file", + "name": "/var/lib/dpkg/info/dash.postinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "ebdfb18cd44dc583d1d0793c2174403e00a95ec6" + }, + { + "alg": "SHA-256", + "content": "bd0b98d1648721510e02243de038a6aa75016f7f506c0ea8ee6dedaad8b6da39" + } + ] + }, + { + "bom-ref": "b7d04efcb0db3326", + "type": "file", + "name": "/var/lib/dpkg/info/dash.postrm", + "hashes": [ + { + "alg": "SHA-1", + "content": "7ffbaf91069cae46b007fda0415bf2ef87307863" + }, + { + "alg": "SHA-256", + "content": "1dcbcde726d12aa01f77475fa2c7d46c3b9f7e2e5980a7883eef819ad18229ae" + } + ] + }, + { + "bom-ref": "e67fdb1fb9f9eff9", + "type": "file", + "name": "/var/lib/dpkg/info/dash.prerm", + "hashes": [ + { + "alg": "SHA-1", + "content": "9fdde0d07fc79dad449bc685b7ac2a2ca67d81dd" + }, + { + "alg": "SHA-256", + "content": "10b4e35c3a2cdfb7aec9405173a5da1fe044c3b7cba51aa8ce2d5008a18cd1f1" + } + ] + }, + { + "bom-ref": "435800b2116d4dd9", + "type": "file", + "name": "/var/lib/dpkg/info/dash.templates", + "hashes": [ + { + "alg": "SHA-1", + "content": "9a3a18639de5bdbae2502839921279086a3c45d1" + }, + { + "alg": "SHA-256", + "content": "9451f0fff5c8aa0da29e1947305f9430ab0b1ee6d7eac8b23f46d73716c5c64c" + } + ] + }, + { + "bom-ref": "22b8a1ea38382859", + "type": "file", + "name": "/var/lib/dpkg/info/debconf.conffiles", + "hashes": [ + { + "alg": "SHA-1", + "content": "2eb6676c02e75ea06452a2749787c156c80c6dd3" + }, + { + "alg": "SHA-256", + "content": "1980054721522ce9b99b3c1ea992a517b0ae93c7eebb9c502129c5f12ad928a8" + } + ] + }, + { + "bom-ref": "fcbb560bca8ef249", + "type": "file", + "name": "/var/lib/dpkg/info/debconf.config", + "hashes": [ + { + "alg": "SHA-1", + "content": "a7e68dba5c56b7e99e5602013e32c903c4e5c684" + }, + { + "alg": "SHA-256", + "content": "4f6cca919cf82b607d0ec001e451566c887383c41320d796021eee66b4473db2" + } + ] + }, + { + "bom-ref": "73fb499147dbfc84", + "type": "file", + "name": "/var/lib/dpkg/info/debconf.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "46574daf2b5199a5bbfa7b0e48ed95c115e88914" + }, + { + "alg": "SHA-256", + "content": "cd075f55bdb0dc4d53677ad17d4f646048e07da61c1b0599717696878b57eb2b" + } + ] + }, + { + "bom-ref": "99514d9871538e1f", + "type": "file", + "name": "/var/lib/dpkg/info/debconf.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "6fbc76f4e53991faf3258b2da32e0965abdaae36" + }, + { + "alg": "SHA-256", + "content": "6d75b00b0ed161f887c8ad0715e88cadbe400ed7d08ca59657cb3674f02baa34" + } + ] + }, + { + "bom-ref": "bc2413adb14e2637", + "type": "file", + "name": "/var/lib/dpkg/info/debconf.postinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "0353ca1a65fa6607fdc6f5a96711bac223f000f2" + }, + { + "alg": "SHA-256", + "content": "4d08ce201b08f4252c906339ebd2260613888ff5723238df7ad9582f0dce23ce" + } + ] + }, + { + "bom-ref": "6297a09a3ee8295b", + "type": "file", + "name": "/var/lib/dpkg/info/debconf.postrm", + "hashes": [ + { + "alg": "SHA-1", + "content": "b1243b4fa9250c9ea244c33ada39e308a5ba3ad6" + }, + { + "alg": "SHA-256", + "content": "69d031944b619046adc276b7bebfd5fb23d645c3d1b55669cf5e657cb421d2a3" + } + ] + }, + { + "bom-ref": "95ae6a6df9e423b7", + "type": "file", + "name": "/var/lib/dpkg/info/debconf.preinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "e72bee7a2510629e63d7696d5997e31299d911ba" + }, + { + "alg": "SHA-256", + "content": "1591a0ac3a57039bd6c20829a73c3f879b0556c58d90f5e456dc48f25ef9cce0" + } + ] + }, + { + "bom-ref": "e1cf0e30d058792b", + "type": "file", + "name": "/var/lib/dpkg/info/debconf.prerm", + "hashes": [ + { + "alg": "SHA-1", + "content": "b1243b4fa9250c9ea244c33ada39e308a5ba3ad6" + }, + { + "alg": "SHA-256", + "content": "69d031944b619046adc276b7bebfd5fb23d645c3d1b55669cf5e657cb421d2a3" + } + ] + }, + { + "bom-ref": "5afb3fd47d6da438", + "type": "file", + "name": "/var/lib/dpkg/info/debconf.templates", + "hashes": [ + { + "alg": "SHA-1", + "content": "031d6173691c1a410714d7e0b08ce9a1f8c87040" + }, + { + "alg": "SHA-256", + "content": "f9976867788ecea1b70d36e04246011fe856797bbb938c08ebf8d64112267064" + } + ] + }, + { + "bom-ref": "4324ee20596bbf9c", + "type": "file", + "name": "/var/lib/dpkg/info/debian-archive-keyring.conffiles", + "hashes": [ + { + "alg": "SHA-1", + "content": "f293d91e7d09a60e29ad5312ae76deca7efbeb7e" + }, + { + "alg": "SHA-256", + "content": "e6d86c39e80872af02855c3c1072cec57e2f06b8bad0646e7bf0ec672abb0fd2" + } + ] + }, + { + "bom-ref": "90de36ac96275c75", + "type": "file", + "name": "/var/lib/dpkg/info/debian-archive-keyring.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "9493dd0daab8642e9e8803c50a1f23b7de393a82" + }, + { + "alg": "SHA-256", + "content": "afb1419e928588b294b72b4ea6e9021580834b7360a0f481ca8efdc7a0661e7c" + } + ] + }, + { + "bom-ref": "a805918f3e73bd2b", + "type": "file", + "name": "/var/lib/dpkg/info/debian-archive-keyring.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "d4b0049fa5a0e83773a5028b5f40d1167dba5f10" + }, + { + "alg": "SHA-256", + "content": "2d9179d051b5b334fdc712fc6a348c4fa2417049a461080cb4cfd08aedb1cd3d" + } + ] + }, + { + "bom-ref": "0166161879c8729c", + "type": "file", + "name": "/var/lib/dpkg/info/debian-archive-keyring.postinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "98d8a0130d8ace9a030d5bd5cfd16be0a4381a16" + }, + { + "alg": "SHA-256", + "content": "0a1eab3c336ca52da3cdae85f2dc4baececb61fc0b96d8fb1255a8fb564433dc" + } + ] + }, + { + "bom-ref": "258788fdb422caac", + "type": "file", + "name": "/var/lib/dpkg/info/debian-archive-keyring.postrm", + "hashes": [ + { + "alg": "SHA-1", + "content": "98fa9ff3db48dd70ba55c84c7061df062c6eccf3" + }, + { + "alg": "SHA-256", + "content": "8b34b077090d0628234fddc6f407ec354b1fe3ff57a833fbfc290496f46da43f" + } + ] + }, + { + "bom-ref": "0b656b09fe44634d", + "type": "file", + "name": "/var/lib/dpkg/info/debian-archive-keyring.preinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "e0226d6c71e20235d23e3954183f5c973b0f293a" + }, + { + "alg": "SHA-256", + "content": "d18560f985de55381e1bccae9c52eb04e3a26a2b5d1b761d4923852a6f916c22" + } + ] + }, + { + "bom-ref": "0c183a66bf9f2069", + "type": "file", + "name": "/var/lib/dpkg/info/debian-archive-keyring.prerm", + "hashes": [ + { + "alg": "SHA-1", + "content": "e0226d6c71e20235d23e3954183f5c973b0f293a" + }, + { + "alg": "SHA-256", + "content": "d18560f985de55381e1bccae9c52eb04e3a26a2b5d1b761d4923852a6f916c22" + } + ] + }, + { + "bom-ref": "6c90491efc8a7cfb", + "type": "file", + "name": "/var/lib/dpkg/info/debianutils.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "f55858aa5da08f74d0f735cab1920811d1256c1c" + }, + { + "alg": "SHA-256", + "content": "ce60da81c5675bf3052f1bc84b3716607de015c561813f1420797e4a106e3efe" + } + ] + }, + { + "bom-ref": "20a27934e38283ef", + "type": "file", + "name": "/var/lib/dpkg/info/debianutils.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "631975427677619deb57b54bc8004dc5b528c9fe" + }, + { + "alg": "SHA-256", + "content": "29ac7266c8adeda6542a97d86b98f0d98161d7f9e6a967647abe96c897bf9126" + } + ] + }, + { + "bom-ref": "646fe288c14c8068", + "type": "file", + "name": "/var/lib/dpkg/info/debianutils.postinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "e6c9a9fb3bd269e1c2d8e75e631954dd5c3be4ed" + }, + { + "alg": "SHA-256", + "content": "d7aa50ccd2391e2b8c627cde1ca98128022bcc387801ef50c12fee0bca864ddc" + } + ] + }, + { + "bom-ref": "e959b942f9333767", + "type": "file", + "name": "/var/lib/dpkg/info/debianutils.postrm", + "hashes": [ + { + "alg": "SHA-1", + "content": "8b90a7249f17f4b73230ca67a263248764249dac" + }, + { + "alg": "SHA-256", + "content": "cb0dfa3fc27cf2dfac46a355e383fc25a920cda0622e1225cc74fc3b01a6c4b1" + } + ] + }, + { + "bom-ref": "b1f5f646173e2ba5", + "type": "file", + "name": "/var/lib/dpkg/info/diffutils.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "1da328331fbd0761658018fc6a3624cf45718304" + }, + { + "alg": "SHA-256", + "content": "429f33b358e9800b815c228c0784b23d30445ac8966f18d8c6a86e1039ffc3d7" + } + ] + }, + { + "bom-ref": "77f541a0bb78826e", + "type": "file", + "name": "/var/lib/dpkg/info/diffutils.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "23e00e60170ed0c03cd89f7f2dbb554ef44b787e" + }, + { + "alg": "SHA-256", + "content": "83967917c678f47122a4f605a8d3295588ac433fa68f9a31f9cf3429f1f4eeeb" + } + ] + }, + { + "bom-ref": "baf4f8b2816a8853", + "type": "file", + "name": "/var/lib/dpkg/info/dpkg.conffiles", + "hashes": [ + { + "alg": "SHA-1", + "content": "9720dfb4e61b9232f4b4b5d551da16a851ac2484" + }, + { + "alg": "SHA-256", + "content": "1fa597ab4184eb9914de0677909ddeeb10acb4fa091578341cfdcaec60e3a867" + } + ] + }, + { + "bom-ref": "9a5a2224f8660648", + "type": "file", + "name": "/var/lib/dpkg/info/dpkg.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "8f7914d3427c405e821a4a2315a0f98c9ae785cb" + }, + { + "alg": "SHA-256", + "content": "f33dc203f8e47119be6aa0fcafe1ea04cd2a8787ddb4b612105bd14196a3b495" + } + ] + }, + { + "bom-ref": "28d834eb536060b6", + "type": "file", + "name": "/var/lib/dpkg/info/dpkg.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "3d65033ec394f201a7c768d52d3d1201e602ee88" + }, + { + "alg": "SHA-256", + "content": "9df0e52084c98b622d673ede61915d4d232cf58f80b8ead80ca03621300fd8a6" + } + ] + }, + { + "bom-ref": "c8f3d92b4ab257ad", + "type": "file", + "name": "/var/lib/dpkg/info/dpkg.postinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "3877d1287ece5e993ebf5bc6fa6eb5bc17537ec2" + }, + { + "alg": "SHA-256", + "content": "e9083f93c5aace492e41937de838b91be018c10a6b91d0d9d4dd5fe553c0e29d" + } + ] + }, + { + "bom-ref": "4064b80e669f1420", + "type": "file", + "name": "/var/lib/dpkg/info/dpkg.postrm", + "hashes": [ + { + "alg": "SHA-1", + "content": "58d8258a477dc2bd022c013b7755e7391f618fcb" + }, + { + "alg": "SHA-256", + "content": "2463d32c05510e4983ca8eb139e5c15c1a63f463ab5a00573730019e746a8f05" + } + ] + }, + { + "bom-ref": "25e2d00468374e9e", + "type": "file", + "name": "/var/lib/dpkg/info/e2fsprogs.conffiles", + "hashes": [ + { + "alg": "SHA-1", + "content": "8c01798e4ecf5f64db3c562280c659c1e36d610b" + }, + { + "alg": "SHA-256", + "content": "4a21d18e62ee18b0b1afd94364e581e0b9b9881ea6e2df831fe8d4086a9672b9" + } + ] + }, + { + "bom-ref": "ab4c7ffbd539d9b3", + "type": "file", + "name": "/var/lib/dpkg/info/e2fsprogs.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "c4daeb77a05e03381b83431157f469029bf9b7e7" + }, + { + "alg": "SHA-256", + "content": "583ab2e2e3a29fbeba51bae0bc986ef8e89c890a8a18fd6aeb25b8a6ca2c4cf8" + } + ] + }, + { + "bom-ref": "1bf886a991216e33", + "type": "file", + "name": "/var/lib/dpkg/info/e2fsprogs.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "81068c90e00e140174ce4432909044eb3be73050" + }, + { + "alg": "SHA-256", + "content": "ea07748e6ac72b71b5fd2d1fe1581d2ff61c36c0a9286c0026d3e8b39b29a993" + } + ] + }, + { + "bom-ref": "bdab701c95cb73b2", + "type": "file", + "name": "/var/lib/dpkg/info/e2fsprogs.postinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "5df27826e536b5aa7d5f89aeaf7b94f10343f7c0" + }, + { + "alg": "SHA-256", + "content": "6cd869d76cb66fbd9e1cbeb40d7a21a060ffbef4337f5486ec167b9fa733c240" + } + ] + }, + { + "bom-ref": "3659e9e7dc079e4b", + "type": "file", + "name": "/var/lib/dpkg/info/e2fsprogs.preinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "682674dbb2d71c009bf0b48f6d1d090b1692a011" + }, + { + "alg": "SHA-256", + "content": "0ac4873d936cbf6ea2c958b686aa5097f82306e1bd50fa6eff1b95337664dac1" + } + ] + }, + { + "bom-ref": "e0a319db2574da5e", + "type": "file", + "name": "/var/lib/dpkg/info/fdisk.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "4a19d3f78c1fcc27dd35de2dca38d8fa53e274e2" + }, + { + "alg": "SHA-256", + "content": "c38c133d41e65e9637989aecee22b097882de26baa96336ba8a480a17a947f67" + } + ] + }, + { + "bom-ref": "7bddb79fbb213b81", + "type": "file", + "name": "/var/lib/dpkg/info/fdisk.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "27295eca79e9712fe999792d2b0db9ec76d13375" + }, + { + "alg": "SHA-256", + "content": "664cbea1ff008234b942bc1fc08cb5a3aaaacb4f6cdc6a7d84d11b5a6f450ddb" + } + ] + }, + { + "bom-ref": "ef77cc802783eac2", + "type": "file", + "name": "/var/lib/dpkg/info/findutils.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "e3db463c8b172f98ab7212c2724e955e4b242394" + }, + { + "alg": "SHA-256", + "content": "fae5dcc0bdf37c5dda884535d6dfbef9a3ab401cf69a9cf908d18e29bad414c3" + } + ] + }, + { + "bom-ref": "bf36a6eef7af3fc2", + "type": "file", + "name": "/var/lib/dpkg/info/findutils.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "f93c45a7d3386037b17d1ae73c230b91ef63db32" + }, + { + "alg": "SHA-256", + "content": "bd4a9d61b0667dafd864a7ccd9528a929b14a6c553a44952b34ea3676e7211c5" + } + ] + }, + { + "bom-ref": "4285fd8fb13e812c", + "type": "file", + "name": "/var/lib/dpkg/info/gcc-8-base:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "d449744e6650ae33398150105a9eca7f6bdc7514" + }, + { + "alg": "SHA-256", + "content": "1d62943fb4b92908f59def1eaee9aa449ece05cfe3c413ddfa6783cdf2a1a8dd" + } + ] + }, + { + "bom-ref": "67b77d33244d3df9", + "type": "file", + "name": "/var/lib/dpkg/info/gpgv.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "15bd6a1db486c93b33572da3f61d0780498437e7" + }, + { + "alg": "SHA-256", + "content": "fa4d4420c6b77df26e9b1b0a18411c1430ad18ef9dfbb5e833d8b5480954c598" + } + ] + }, + { + "bom-ref": "d46a96d2987117a1", + "type": "file", + "name": "/var/lib/dpkg/info/gpgv.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "78ab17e5257b5a9ddda387f04ca5750757ec5bb9" + }, + { + "alg": "SHA-256", + "content": "3eade34808333c68ad6860b5b859764113986837d4a4551fae0581e741674f7c" + } + ] + }, + { + "bom-ref": "a3edcacf6a1a9a4b", + "type": "file", + "name": "/var/lib/dpkg/info/grep.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "b6d2510bd88a53f82b10f695633237889a96cd0c" + }, + { + "alg": "SHA-256", + "content": "aa6915ec381a63d8a0a642d76ca65dc13762d2148bf113aa53899a0ae8168026" + } + ] + }, + { + "bom-ref": "0d7ef09fd839fdb0", + "type": "file", + "name": "/var/lib/dpkg/info/grep.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "98ef437297ed6333a678c1d21a8962ca911c161a" + }, + { + "alg": "SHA-256", + "content": "1978bf3911fdec04ad3382686432780649236d41a83629219a9623f210c1e760" + } + ] + }, + { + "bom-ref": "de92e0e9e05d22de", + "type": "file", + "name": "/var/lib/dpkg/info/gzip.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "42c40899411129e3ddcb78386cd5f4abc0cc7110" + }, + { + "alg": "SHA-256", + "content": "3ec70e83716c0d0cfa5a431f0a4acf15a359bb9f133345d599bf168767f5e1c9" + } + ] + }, + { + "bom-ref": "70027c78f9f5b936", + "type": "file", + "name": "/var/lib/dpkg/info/gzip.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "24870053a1677ffa79d1d0594cb8870d1234f210" + }, + { + "alg": "SHA-256", + "content": "634d23d99a8e08a64299b0cb794b32738584115ed8380c11a497fe1ae407c02d" + } + ] + }, + { + "bom-ref": "f361294f8e8a972b", + "type": "file", + "name": "/var/lib/dpkg/info/hostname.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "06a0d8046e7a14902f7cad07e842b032f723e2ab" + }, + { + "alg": "SHA-256", + "content": "973b0a026b9bf3e8f808ddabef2ef585c67345cdd69f524f5aa51a9fb0ec25b4" + } + ] + }, + { + "bom-ref": "335b573263af515a", + "type": "file", + "name": "/var/lib/dpkg/info/hostname.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "58b0bb467384e67189b9f1877aacd6f4c43a8b7b" + }, + { + "alg": "SHA-256", + "content": "4f23b617c9248b8d9dbcdb79265004e9b55dec573f412b12d131c8dffdad5e8e" + } + ] + }, + { + "bom-ref": "47b4bcc4f7eace8b", + "type": "file", + "name": "/var/lib/dpkg/info/init-system-helpers.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "69e5d659f03c63360b63a0f926cac6aedc3e6169" + }, + { + "alg": "SHA-256", + "content": "9746762ee1530db38b7065f1c13389638e238c6215ea54bec21d0fdaafdaf31f" + } + ] + }, + { + "bom-ref": "e686b91a526ed3d1", + "type": "file", + "name": "/var/lib/dpkg/info/init-system-helpers.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "9620bcec7d00921a3a3efedf79915ecff8d1ab46" + }, + { + "alg": "SHA-256", + "content": "c85f7ce9734d0cc138e071f5cdbc35a0e389a13b24b78fcdfec27189df8ceae8" + } + ] + }, + { + "bom-ref": "34703fe90915d17e", + "type": "file", + "name": "/var/lib/dpkg/info/libacl1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "9ba1597975b018041af4b260f74821e7254fdbe2" + }, + { + "alg": "SHA-256", + "content": "09d5790e09428e6f89a80a915c11026f402a928b1eb7d9bd629cacad8a40e1cf" + } + ] + }, + { + "bom-ref": "c1de3715f03736fd", + "type": "file", + "name": "/var/lib/dpkg/info/libapt-pkg5.0:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "653aabd4da668ecb006cfef5f00af4dca82b5169" + }, + { + "alg": "SHA-256", + "content": "d98c2a04cf47ff24b9222bbbd6cd6051c23fd4df1728e5361c5403a25acc182a" + } + ] + }, + { + "bom-ref": "5e093e4a503ee19e", + "type": "file", + "name": "/var/lib/dpkg/info/libattr1:amd64.conffiles", + "hashes": [ + { + "alg": "SHA-1", + "content": "088e81bbdf8ac60e8b905f7f6ebffcaa03156ba7" + }, + { + "alg": "SHA-256", + "content": "d359ef22e3d78ab9baf0ca82354e916895e45ee5c2ca0db5346fd8555f39c9fd" + } + ] + }, + { + "bom-ref": "8555112ee39c6e0a", + "type": "file", + "name": "/var/lib/dpkg/info/libattr1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "2e94fe819e5ed39c0c82e362daf4c441fd645343" + }, + { + "alg": "SHA-256", + "content": "c6425cbbe99f54460d8700b94d265cef124956ab1ac014ffe6610ad6b861c177" + } + ] + }, + { + "bom-ref": "03b5c623904dd949", + "type": "file", + "name": "/var/lib/dpkg/info/libaudit-common.conffiles", + "hashes": [ + { + "alg": "SHA-1", + "content": "68815c766de040e94590bdd9a274e034a9edad1e" + }, + { + "alg": "SHA-256", + "content": "e59079facf60922dd9bef9974c852e6ad3315ca2639141786bb268e8e877bec3" + } + ] + }, + { + "bom-ref": "609be38340339f27", + "type": "file", + "name": "/var/lib/dpkg/info/libaudit-common.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "69756a2c668bb8359dc593d3a50a44818c229252" + }, + { + "alg": "SHA-256", + "content": "809f79c7732df66a7252edea0a4ef3388b43e122fedd8a27bf0a90a059c5c3d8" + } + ] + }, + { + "bom-ref": "109a5c747d3eed3a", + "type": "file", + "name": "/var/lib/dpkg/info/libaudit-common.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "32437cab2d0a1f8ba42fd9d47ebe38e8e47a5bdb" + }, + { + "alg": "SHA-256", + "content": "788cd710dd6872c3eddaa95f9799d241a2fe97dd2c60e9a4851d4bc2b74d94be" + } + ] + }, + { + "bom-ref": "1b23ed2d6e5bdcd7", + "type": "file", + "name": "/var/lib/dpkg/info/libaudit1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "8f64d859611ac944cc1d66f954f37ab9f9db6641" + }, + { + "alg": "SHA-256", + "content": "27cc423a595c5275059634505ffc85160d6328607094339952d456198e1a9495" + } + ] + }, + { + "bom-ref": "a949de168ed1bb50", + "type": "file", + "name": "/var/lib/dpkg/info/libblkid1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "086a14651281c9d2486049fca62421274d58c896" + }, + { + "alg": "SHA-256", + "content": "604a8ee47ed935d56125041cfc3bf41e257fca914c3a69d8f3a007a32e1f86cb" + } + ] + }, + { + "bom-ref": "3cb3f572dd14f363", + "type": "file", + "name": "/var/lib/dpkg/info/libbz2-1.0:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "47d773d8c4eb070da30ad61419c4cdefbb934f65" + }, + { + "alg": "SHA-256", + "content": "7faa60f379d5d0b518a5ead97e731b28fa61aa09def9b1b7cf848c694e1c65be" + } + ] + }, + { + "bom-ref": "d8707b29b7b0f3f3", + "type": "file", + "name": "/var/lib/dpkg/info/libc-bin.conffiles", + "hashes": [ + { + "alg": "SHA-1", + "content": "a880cffda6ebe9d4cc01bc315adda184e33570ee" + }, + { + "alg": "SHA-256", + "content": "ed1819b3573af7f7dfa94bc34567884dce8f5fabd0ae065a646d4f23d28ade32" + } + ] + }, + { + "bom-ref": "48b5ea1265cde6c4", + "type": "file", + "name": "/var/lib/dpkg/info/libc-bin.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "e0efa30593b8d93d5d0a7ecf77baa88e7ab18f89" + }, + { + "alg": "SHA-256", + "content": "5f95bcc50c60a7da16e8712cf72a7e7eae8a4f89640a790b0f86414ae5498a90" + } + ] + }, + { + "bom-ref": "defafee8d959d6c4", + "type": "file", + "name": "/var/lib/dpkg/info/libc-bin.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "477545d3089ffcc4417ae297bf010a1531ddb3b3" + }, + { + "alg": "SHA-256", + "content": "f08cdddde8de47d0d1cbc634af965095b0a9c1303207b62d9723f081f0ca6ab8" + } + ] + }, + { + "bom-ref": "eb50f1b9686b0a35", + "type": "file", + "name": "/var/lib/dpkg/info/libc-bin.postinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "70967560d386f55f34e3337d990344af985f7ef5" + }, + { + "alg": "SHA-256", + "content": "47fc92ea75c72d16a695f78d1fc35671020810e4bef594266a269b34d6e9ac9a" + } + ] + }, + { + "bom-ref": "48601671d833b238", + "type": "file", + "name": "/var/lib/dpkg/info/libc-bin.triggers", + "hashes": [ + { + "alg": "SHA-1", + "content": "a50727aa5c561e2e012d0d54fee760e600cda1e6" + }, + { + "alg": "SHA-256", + "content": "c3d6b5df131336e54c31dc5687929467de7abea5c5798e3d6a6b2a64ef971fd4" + } + ] + }, + { + "bom-ref": "c046b324710cf94e", + "type": "file", + "name": "/var/lib/dpkg/info/libc6:amd64.conffiles", + "hashes": [ + { + "alg": "SHA-1", + "content": "386809e0fb1f09d77ec36022a7171815d274e3a2" + }, + { + "alg": "SHA-256", + "content": "a59a14914231cc9a833ba49b14308e57b755236ff70bc3b0c4ee77b2bd34eed8" + } + ] + }, + { + "bom-ref": "e14ccb119ce79855", + "type": "file", + "name": "/var/lib/dpkg/info/libc6:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "a3d6bd2debd90ca46eebddad830b882b21115bd5" + }, + { + "alg": "SHA-256", + "content": "7e421dcf4dbdc3eede4aa53fe3d828be0dae176a9047590ec6ffd23076f18009" + } + ] + }, + { + "bom-ref": "2e3a5ba4587e722b", + "type": "file", + "name": "/var/lib/dpkg/info/libcap-ng0:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "5fb920159f5b5423b1fc0c77a7b8a8dec449d6c5" + }, + { + "alg": "SHA-256", + "content": "6c8eac66d483ef1ede9890b6214b245e454d6e8d74de1194e4adadf033955e60" + } + ] + }, + { + "bom-ref": "02a8b0a7ffeaebfa", + "type": "file", + "name": "/var/lib/dpkg/info/libcom-err2:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "d9ca0d3eb8b86b7a56540f3b3f7c1f888cbfb314" + }, + { + "alg": "SHA-256", + "content": "1515c56e4e3f36b0ae32e7a327fdcf74c7b4bb8632eb3e0b9cfea9dc902f6262" + } + ] + }, + { + "bom-ref": "21aad98931190eaf", + "type": "file", + "name": "/var/lib/dpkg/info/libdb5.3:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "09d0e3c4f288946f91d788bb8ff56f407b85b2b8" + }, + { + "alg": "SHA-256", + "content": "6033817c225aa795c61d10617c729e3b44f8c60386ff11275709702c58d492e5" + } + ] + }, + { + "bom-ref": "fb11fe1d045072f9", + "type": "file", + "name": "/var/lib/dpkg/info/libdebconfclient0:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "a6706f6018b238326483e00877578f0414db2cfc" + }, + { + "alg": "SHA-256", + "content": "31248e792afdf5f838994d7dac3a4bdfe2e30a53e2876c2b6261b64af93c1f0b" + } + ] + }, + { + "bom-ref": "a9f0feb4c896c628", + "type": "file", + "name": "/var/lib/dpkg/info/libext2fs2:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "35c02296643d6b8034d30e5bb0462a29fd49a32e" + }, + { + "alg": "SHA-256", + "content": "00120762af34dab0d3b6a0577353a3a81b3ae636ff8fe18f56d1d4a8b22fbee1" + } + ] + }, + { + "bom-ref": "3b27ae3abb94e8c0", + "type": "file", + "name": "/var/lib/dpkg/info/libfdisk1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "0ab90005c632b76c842f9293dd38118c8cc0d93e" + }, + { + "alg": "SHA-256", + "content": "a6d09000d1e1f0dbbe2143565134314fcde7c1938673ef035c34e1b98f280334" + } + ] + }, + { + "bom-ref": "7a33921049c0e775", + "type": "file", + "name": "/var/lib/dpkg/info/libffi6:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "9f9e5f3f8070200e5c98a1111f276a2e4fccb469" + }, + { + "alg": "SHA-256", + "content": "146dfd36121c02864ab52940a205a18f2279f2a6ba68da383ca7e00ee06a9552" + } + ] + }, + { + "bom-ref": "552e3acddb1c5042", + "type": "file", + "name": "/var/lib/dpkg/info/libgcc1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "72f4860ca6a56d184f849f133a4b44895320d603" + }, + { + "alg": "SHA-256", + "content": "d32dcbe9f9152f8e02e7dda525a611cb1231ddfbc434b82eded558822ce4b8fe" + } + ] + }, + { + "bom-ref": "14ffb015cd09292b", + "type": "file", + "name": "/var/lib/dpkg/info/libgcrypt20:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "bc6f9cc539c782cc9112b3a75345f7d97c10b1de" + }, + { + "alg": "SHA-256", + "content": "6e5c2488ccfa02caeb8b97554ca5b979d37bbd7fad6993111c634a3b2626b861" + } + ] + }, + { + "bom-ref": "cda770dea2f8d00d", + "type": "file", + "name": "/var/lib/dpkg/info/libgmp10:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "a3be8091fab7d1270bed863ea22c0728d73ea71b" + }, + { + "alg": "SHA-256", + "content": "1503904f162ad5fa0446380324a3c56d15627a8d338052f1a0f10618c80c4998" + } + ] + }, + { + "bom-ref": "c2a4d49088fb90ec", + "type": "file", + "name": "/var/lib/dpkg/info/libgnutls30:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "7486a2db4a270af30a4301a23f0d8e68ed2e9ff0" + }, + { + "alg": "SHA-256", + "content": "182369110dc50ea58a9b01c55ec9334f8dce31546e3d390d395f95ac179966ac" + } + ] + }, + { + "bom-ref": "eec67e3ba14dc12f", + "type": "file", + "name": "/var/lib/dpkg/info/libgpg-error0:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "1637764fdd1fc4cff92ef8b4ea49592842d2a4d1" + }, + { + "alg": "SHA-256", + "content": "ab4022d67ab71f8abc30a089416c26c28a8d3059287b0a1bac19b67d7e16ca54" + } + ] + }, + { + "bom-ref": "c846dbf5c2038203", + "type": "file", + "name": "/var/lib/dpkg/info/libhogweed4:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "8802e9c0ef5e462be812c6e53a105b0228d887c4" + }, + { + "alg": "SHA-256", + "content": "81eeb35804c900342abb398e8b50a42408c57bfe42cfb58aa648555b16d0a5b7" + } + ] + }, + { + "bom-ref": "373c9b7f7450d3eb", + "type": "file", + "name": "/var/lib/dpkg/info/libidn2-0:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "799ef8ac39821fb3a0bb9c1636e80f4cc031ccd1" + }, + { + "alg": "SHA-256", + "content": "216632651f6ccd13b8c4a92cfc0e9f023fa636b3ecb42d1acb5f0cbf7ccad385" + } + ] + }, + { + "bom-ref": "0c449c39ebed6834", + "type": "file", + "name": "/var/lib/dpkg/info/liblz4-1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "dbe2749c08e0d1fba9a23cad420ee215a2054522" + }, + { + "alg": "SHA-256", + "content": "3dedd2cbe52dbd164dccf7ab09aff428853005ffab9ca48d669f5aacf0383ccb" + } + ] + }, + { + "bom-ref": "5d63bad22591d90a", + "type": "file", + "name": "/var/lib/dpkg/info/liblzma5:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "a8813643018821ccf1533921d82f49c3166ef29b" + }, + { + "alg": "SHA-256", + "content": "37121275232b08793279c2f13e2d5b52a9cf380c01723174b8508fb676a161d4" + } + ] + }, + { + "bom-ref": "f0e47eed0b291e71", + "type": "file", + "name": "/var/lib/dpkg/info/libmount1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "fe3e884a1d7bc686120f9af02d56bc6958e39da9" + }, + { + "alg": "SHA-256", + "content": "cf73ac29b22fa67c9cb08bd1f424c44c376e8d25ee1407972d91c38f6a8286ef" + } + ] + }, + { + "bom-ref": "0c4a43d78eccd897", + "type": "file", + "name": "/var/lib/dpkg/info/libncursesw6:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "d42ed9225ddb8e4250bc859be3ccc5ce08b6784b" + }, + { + "alg": "SHA-256", + "content": "336d3c081602a0697afaf290542470be8841bd3c1d14d6d4d041753b866b302c" + } + ] + }, + { + "bom-ref": "96472c32ca240357", + "type": "file", + "name": "/var/lib/dpkg/info/libnettle6:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "11868741b438e3f56cadb83ab09e121b76745388" + }, + { + "alg": "SHA-256", + "content": "3959d6ef7f539eb4590a8dec3ba30a4d2be0079226bd736d69c171de5d1f240a" + } + ] + }, + { + "bom-ref": "00fbdc4ed5f0fb95", + "type": "file", + "name": "/var/lib/dpkg/info/libp11-kit0:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "11221d0944c57ce783c8e7ced99528f0fd790994" + }, + { + "alg": "SHA-256", + "content": "882e6e5ef14a3217acf8f1dc724b4ba7eb1b027a912412be79e77e925f87d759" + } + ] + }, + { + "bom-ref": "3e6d05690d48258d", + "type": "file", + "name": "/var/lib/dpkg/info/libpam-modules-bin.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "27ce871fc00f24217b5b5798db488afd3d44fdae" + }, + { + "alg": "SHA-256", + "content": "df966cbf9d317eac8664ace185fcc8719052f35021d521c74d83c79054fd58a6" + } + ] + }, + { + "bom-ref": "b9969fd3da8a5033", + "type": "file", + "name": "/var/lib/dpkg/info/libpam-modules-bin.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "ba5dd6ae7744dae1e5ff228274f79b39a348dc77" + }, + { + "alg": "SHA-256", + "content": "86f1318a80e13b80f5e6b47556eb25e1c321944b4106b4deea50172de3917990" + } + ] + }, + { + "bom-ref": "fedc662bcd7b2653", + "type": "file", + "name": "/var/lib/dpkg/info/libpam-modules:amd64.conffiles", + "hashes": [ + { + "alg": "SHA-1", + "content": "3df8a83976b32d5edd9abfd520733592b017bd8c" + }, + { + "alg": "SHA-256", + "content": "d55c2f2fa42a5a8d21bb599e010aa7053a91156c8523bc54fe6907ddfbf665dd" + } + ] + }, + { + "bom-ref": "904d44bfce001189", + "type": "file", + "name": "/var/lib/dpkg/info/libpam-modules:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "d9fa7e1bcf3c4d2ba6b3560cfbc5b39b264c649b" + }, + { + "alg": "SHA-256", + "content": "853b2852b5a129dbde9fbe9980989fb3d532ac149d33806d0fa5058dd59cb37c" + } + ] + }, + { + "bom-ref": "2d505f68543991f3", + "type": "file", + "name": "/var/lib/dpkg/info/libpam-runtime.conffiles", + "hashes": [ + { + "alg": "SHA-1", + "content": "ac667b2e62edafa178fcff950dba09d1e28d061d" + }, + { + "alg": "SHA-256", + "content": "0e5df5e3149674007ef3a300996163a4d8692d21dabe9df527cf6a07e3abd65d" + } + ] + }, + { + "bom-ref": "73355abae555e932", + "type": "file", + "name": "/var/lib/dpkg/info/libpam-runtime.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "acee4acedcbfe7dde1775969b2ad526efc28b4f8" + }, + { + "alg": "SHA-256", + "content": "51cc0665b9e3b5530e56deb71993fa15c04dc5eec938f325c4c9e4bf8e1b9c98" + } + ] + }, + { + "bom-ref": "3c3f1875dd913e3b", + "type": "file", + "name": "/var/lib/dpkg/info/libpam-runtime.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "ee930b9cbde8f322afbd7f91822c8e5505fe7779" + }, + { + "alg": "SHA-256", + "content": "30effbaccf8fc2b9c2f35314097ae6efd14352876a329558ee9a874f19b415ea" + } + ] + }, + { + "bom-ref": "f257a3fb94273a0d", + "type": "file", + "name": "/var/lib/dpkg/info/libpam-runtime.postinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "f391ef6ebf91b1b84b2637480b8ebc8d7f1881c0" + }, + { + "alg": "SHA-256", + "content": "d6db2d0dd0999f840faaacc10a2cdc4e6b9227022b2d72da42ee67fe7c5968ec" + } + ] + }, + { + "bom-ref": "7a19fecd7498da5c", + "type": "file", + "name": "/var/lib/dpkg/info/libpam-runtime.postrm", + "hashes": [ + { + "alg": "SHA-1", + "content": "d2ae0a308fe07c53c7553c9f6775b7a28d67b1f6" + }, + { + "alg": "SHA-256", + "content": "2143ded6d389bca52b9c819af779de4039b359bcd8f0d015cc2a740e46a34576" + } + ] + }, + { + "bom-ref": "9a881ce3b9f8588c", + "type": "file", + "name": "/var/lib/dpkg/info/libpam-runtime.prerm", + "hashes": [ + { + "alg": "SHA-1", + "content": "742528c58c4744e7b1d46d73f6d31f466ff75201" + }, + { + "alg": "SHA-256", + "content": "b3e3b7ea23ac1d1c74ebc6aa3efee132675f5e69d9e2caba6c23e64a7b94b7f8" + } + ] + }, + { + "bom-ref": "76558b089abcbcac", + "type": "file", + "name": "/var/lib/dpkg/info/libpam-runtime.templates", + "hashes": [ + { + "alg": "SHA-1", + "content": "f12bb4fe75fad3cc2b07df46edb744863942fdd7" + }, + { + "alg": "SHA-256", + "content": "9dde4a26827d812fec5ad30ba50d6bcb9ddc7769d983de02cf9aec9172e8bdf8" + } + ] + }, + { + "bom-ref": "f3698b0400f88639", + "type": "file", + "name": "/var/lib/dpkg/info/libpam0g:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "3577d1874d8306b17fec7c92bb916a48a6b6a2a4" + }, + { + "alg": "SHA-256", + "content": "33d2911a2142818bd388a6e5545baec7da7b9687946d2ec3a682e435983ca20b" + } + ] + }, + { + "bom-ref": "e859de239a4d631f", + "type": "file", + "name": "/var/lib/dpkg/info/libpcre3:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "684ff301864c3a7844b56fd27f7ff92abd8d9ec3" + }, + { + "alg": "SHA-256", + "content": "371dc6fc3eb80319b903f7347fbd5ea406e50b855144e1e4c913c380326c13ac" + } + ] + }, + { + "bom-ref": "442ef226bf9c5a40", + "type": "file", + "name": "/var/lib/dpkg/info/libseccomp2:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "c0eb11dd0bb5aee5ba64c159e251f0cd9d5b7413" + }, + { + "alg": "SHA-256", + "content": "6a29131563b81422aae8745433a05977ba2dfc5a7e915750dc6478d22416f08d" + } + ] + }, + { + "bom-ref": "fd7ba620bd6ee194", + "type": "file", + "name": "/var/lib/dpkg/info/libselinux1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "6dbb3de3c03a3c17a25f282882c70e223206bf5c" + }, + { + "alg": "SHA-256", + "content": "4cda83cb3c40eef078c499466e9849ab789302afa5d0ffdb73f2a15d596dc009" + } + ] + }, + { + "bom-ref": "4538c4cbc5a31ca9", + "type": "file", + "name": "/var/lib/dpkg/info/libsemanage-common.conffiles", + "hashes": [ + { + "alg": "SHA-1", + "content": "63c2c2b06c9064268fa7d094baab637e43fc4385" + }, + { + "alg": "SHA-256", + "content": "e0b0a931b5ae99c4bc030b6ecb183385a46fbd5e55e0e10cce9d5ed1eae556e2" + } + ] + }, + { + "bom-ref": "5c371c2831ff536b", + "type": "file", + "name": "/var/lib/dpkg/info/libsemanage-common.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "5905729943bf354e56467b21ec9a5606885ea570" + }, + { + "alg": "SHA-256", + "content": "11bc9aa8b78fffb063ba39f6913b15d192f4f3d8e417213f57ad18b73a6be0ea" + } + ] + }, + { + "bom-ref": "c22a9ae05f938a7a", + "type": "file", + "name": "/var/lib/dpkg/info/libsemanage-common.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "d7fa03497f5085931dac17f0d51361dfcac01513" + }, + { + "alg": "SHA-256", + "content": "44038d3202b987a0e117cd6c168e89734e7a55837cc8ed4469a08276475c3373" + } + ] + }, + { + "bom-ref": "c80ac7e73bd3c93b", + "type": "file", + "name": "/var/lib/dpkg/info/libsemanage1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "720260ac1a83de80bcd89f38c8f9dbe66d335c35" + }, + { + "alg": "SHA-256", + "content": "bb364ba734791fc9c178cca623c92abe72e9e8cb722044219e0aefcdfe1dc132" + } + ] + }, + { + "bom-ref": "fa6ac55276ad4adc", + "type": "file", + "name": "/var/lib/dpkg/info/libsepol1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "41f03f4a9ffdbcb4b1ced7e987e727719c41d85d" + }, + { + "alg": "SHA-256", + "content": "a57cfed1c862aa39dd5f9680fb6b3e6194e90c8f9c1dbaeda010e5618076a758" + } + ] + }, + { + "bom-ref": "7f66a5fc0299f7cf", + "type": "file", + "name": "/var/lib/dpkg/info/libsmartcols1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "55eb7e527adb1f4e36fa3587743edefbfd8f461e" + }, + { + "alg": "SHA-256", + "content": "3bfb7c535c98f1091193e0d88d397cb2168fbeca65814e09a554073de00c6263" + } + ] + }, + { + "bom-ref": "9aff87a14fbe14e6", + "type": "file", + "name": "/var/lib/dpkg/info/libss2:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "e02811614c1643f9bb0d7f50bc090c967ec13252" + }, + { + "alg": "SHA-256", + "content": "d46e56804e251cb436571f44e8bee6a2e7b0d59d5d6a9b7217d8fa0ff42d20de" + } + ] + }, + { + "bom-ref": "04aad2a0f7739d34", + "type": "file", + "name": "/var/lib/dpkg/info/libstdc++6:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "0147d0aece08b68d1ea04230ad4327fafd8da4a7" + }, + { + "alg": "SHA-256", + "content": "4aa0bd568fd6f49694a3dd125455b1302ccffb4591037ecbdb9799f52a0dd567" + } + ] + }, + { + "bom-ref": "b5a4d0939bd01f16", + "type": "file", + "name": "/var/lib/dpkg/info/libsystemd0:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "da5ace7d1db86857c104b762ddf8d552807ebb4a" + }, + { + "alg": "SHA-256", + "content": "0a1f088f9634db56f72d25f3062eb6dced50579e29136ebe6558d90c7aedd4c0" + } + ] + }, + { + "bom-ref": "45b6b78c8f86d761", + "type": "file", + "name": "/var/lib/dpkg/info/libtasn1-6:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "aeefe3092df4e75dcabc3b64069e10bff11a08f2" + }, + { + "alg": "SHA-256", + "content": "b88477cffe9078ae6c101c35d33279d7f774ce7c6913786c3b84dcbd44459ef4" + } + ] + }, + { + "bom-ref": "90d9238c47fa72dd", + "type": "file", + "name": "/var/lib/dpkg/info/libtinfo6:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "d08c08a3676c4aa618f7ec0fa7b13f0c241894af" + }, + { + "alg": "SHA-256", + "content": "b671ca577de6eedca93c8df9312452e104645ac09b5088d71d917a3d8781eac2" + } + ] + }, + { + "bom-ref": "07b6e6b19f82565f", + "type": "file", + "name": "/var/lib/dpkg/info/libudev1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "163b6f3e8f5c966dd9b4fa9cb6d84beb81192345" + }, + { + "alg": "SHA-256", + "content": "1796684028a9291a61b775964cc8ea50e41cce5cf9c88c17f7af73fab3fe2bc3" + } + ] + }, + { + "bom-ref": "a97ee37b179f1698", + "type": "file", + "name": "/var/lib/dpkg/info/libunistring2:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "8095b029d4e66b6498a05e60efd232aaf99eccb2" + }, + { + "alg": "SHA-256", + "content": "bfd97b2571439887efe61bd61a71512f1659fb63be1dd46527642e46609b524a" + } + ] + }, + { + "bom-ref": "2de23c06c5760e53", + "type": "file", + "name": "/var/lib/dpkg/info/libuuid1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "6e13e5b40242605fb0a27964f4ed02d1962ea941" + }, + { + "alg": "SHA-256", + "content": "b0538c430aa7d95208ed4479bb93e4b0683a69eb34b097e3537ebb5743b2bc6b" + } + ] + }, + { + "bom-ref": "e6cba64d1b885d90", + "type": "file", + "name": "/var/lib/dpkg/info/libzstd1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "309e6afa5c3468dd1faee3f741734f59448a2970" + }, + { + "alg": "SHA-256", + "content": "6606f8484eeae936460fb6d7201c83ae63aa666c57ae0c7910101354697a6a3a" + } + ] + }, + { + "bom-ref": "c37a47a8ee8feb94", + "type": "file", + "name": "/var/lib/dpkg/info/login.conffiles", + "hashes": [ + { + "alg": "SHA-1", + "content": "f021a0cea879d52870bcfd875ba5e2856ae63cf0" + }, + { + "alg": "SHA-256", + "content": "87c7a8899eceddd525138d2df3f44736f529a7e10b9fabed8ce3d234c7bab266" + } + ] + }, + { + "bom-ref": "57e9677762d3e7fd", + "type": "file", + "name": "/var/lib/dpkg/info/login.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "af32b7ccb3e7f2d291c2ea2a2028b848c4a6abec" + }, + { + "alg": "SHA-256", + "content": "0b632852c0464372875270a9ee8ab155d15557c600d22cbceee950cd0a3c3fd7" + } + ] + }, + { + "bom-ref": "099693c3ce9ce594", + "type": "file", + "name": "/var/lib/dpkg/info/login.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "635d1f98e4d4859025141822363b7d61f71a0bdf" + }, + { + "alg": "SHA-256", + "content": "00296931ec5d2eda111136b1c025a5a22f6e3795dd9f0208d0fdd00f2983f22a" + } + ] + }, + { + "bom-ref": "3803ad4458dd74a9", + "type": "file", + "name": "/var/lib/dpkg/info/login.postinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "9cce00a7f138dea0ec6ee63639b965072a838ec9" + }, + { + "alg": "SHA-256", + "content": "13780f74190f9e9564d2eaf2d4f9d26e09c67b15a61ebae713b070854e263f58" + } + ] + }, + { + "bom-ref": "8a4c669977d45dff", + "type": "file", + "name": "/var/lib/dpkg/info/login.preinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "ac2a6020d5592452619da61120572792f7571ec9" + }, + { + "alg": "SHA-256", + "content": "60940bcd58ac8bc2308601c284183358fa5814064ac33e90345f706dc35f473b" + } + ] + }, + { + "bom-ref": "cd9d181501b40366", + "type": "file", + "name": "/var/lib/dpkg/info/mawk.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "95fd0dfcd5936c36f9a2523a8c958ed4692f7969" + }, + { + "alg": "SHA-256", + "content": "362378374a77852a70e0e0131ef2241675623e663817a1167f8db4497ae9e80a" + } + ] + }, + { + "bom-ref": "9ecda1345c8074e4", + "type": "file", + "name": "/var/lib/dpkg/info/mawk.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "3de654dd41c2cb9508814bbdf3ec0d809240a52a" + }, + { + "alg": "SHA-256", + "content": "66921a131a48fd13c2ea73b30af7873a74b632d845164aefee1f4dae60a0a55e" + } + ] + }, + { + "bom-ref": "53147d0eebc47bf4", + "type": "file", + "name": "/var/lib/dpkg/info/mawk.postinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "298be82d393cdc9ce13ecab2a3124af36d657db0" + }, + { + "alg": "SHA-256", + "content": "6374f7996297a6933c9ccae7eecc506a14c85112bf1984c12da1f975dab573b2" + } + ] + }, + { + "bom-ref": "980f9a988ef85090", + "type": "file", + "name": "/var/lib/dpkg/info/mawk.prerm", + "hashes": [ + { + "alg": "SHA-1", + "content": "67cc822086f049733fa9a2f23c481f6df8ffe9af" + }, + { + "alg": "SHA-256", + "content": "7f5bf8abeb16efa0dea7513462bf1a1dbfee6a7945dc39424d87547128d52aca" + } + ] + }, + { + "bom-ref": "b1eebfc72ef55007", + "type": "file", + "name": "/var/lib/dpkg/info/mount.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "3e73b125798fe785d8b2093c9cc632bb0cbaceab" + }, + { + "alg": "SHA-256", + "content": "8caba783884a56a3600a0a63b5bd220f396b5a781e251f474609e5a5af306a1b" + } + ] + }, + { + "bom-ref": "adab33dc298bf92e", + "type": "file", + "name": "/var/lib/dpkg/info/mount.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "9c4ea4ae1415008ee7f2e580df4e65a35eb8d826" + }, + { + "alg": "SHA-256", + "content": "e88b521a8422136d34c08e30546d3a890ce9e28a5612415f3c1a7ae87636ec1c" + } + ] + }, + { + "bom-ref": "af48fb936238c057", + "type": "file", + "name": "/var/lib/dpkg/info/ncurses-base.conffiles", + "hashes": [ + { + "alg": "SHA-1", + "content": "3e29390e819adb21b30675bbf4b2d1aab57d5b85" + }, + { + "alg": "SHA-256", + "content": "b97a47660009db296563cccb2fdce8826e134e3b1bf90248d9c7cf825f06e50a" + } + ] + }, + { + "bom-ref": "759329fe9f461230", + "type": "file", + "name": "/var/lib/dpkg/info/ncurses-base.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "17f8aef5b27c89050b61406dbe84360fb14992d9" + }, + { + "alg": "SHA-256", + "content": "6d62c5df571987a05ea8bf883bd75e77f35f48b1cdc7ebc6edff7d3c3582815a" + } + ] + }, + { + "bom-ref": "2c68d9520352e4e4", + "type": "file", + "name": "/var/lib/dpkg/info/ncurses-base.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "5937025656c50e8a56d21c63eddaeaf16a2ec6c7" + }, + { + "alg": "SHA-256", + "content": "e123e3a60a36156d3ed047db00205b9102f878096d672a3e6f0f68af45e6bc67" + } + ] + }, + { + "bom-ref": "dfc6f73044fbefa3", + "type": "file", + "name": "/var/lib/dpkg/info/ncurses-bin.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "3cd1205937d1263748a43eece3ce55edd5f5ab66" + }, + { + "alg": "SHA-256", + "content": "9c28f1e97eb7a36b845560811521dea9d82bb20b8139fd0c4bf0a7ac77485ec9" + } + ] + }, + { + "bom-ref": "209575ea285d9910", + "type": "file", + "name": "/var/lib/dpkg/info/ncurses-bin.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "37392b45ebe4dbedf0b754c5ed770e076c6748ac" + }, + { + "alg": "SHA-256", + "content": "746d24a9de22039ff611073985ff3aac785fdfad0c0406652c8370ce1fcc2d67" + } + ] + }, + { + "bom-ref": "7a54d5b0a3b67385", + "type": "file", + "name": "/var/lib/dpkg/info/passwd.conffiles", + "hashes": [ + { + "alg": "SHA-1", + "content": "ff8121167feb3339ae588cc76b1c2e90d1e54dfb" + }, + { + "alg": "SHA-256", + "content": "05cfff1ddfa6cf7fc524250fe96fba6e443e070b15a4014b74c7a4a5d07a12a2" + } + ] + }, + { + "bom-ref": "32662429165fcefa", + "type": "file", + "name": "/var/lib/dpkg/info/passwd.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "7eacfdf59432c88ca0e997249111e5cad00595e3" + }, + { + "alg": "SHA-256", + "content": "3054328771c1a422e3af1132091b55842b27ef0c50de8d95faad643a4a12e895" + } + ] + }, + { + "bom-ref": "3c7dcb1409f79b36", + "type": "file", + "name": "/var/lib/dpkg/info/passwd.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "3fc75750cb8afde6f7d40375af60a5e6dc5b8bc1" + }, + { + "alg": "SHA-256", + "content": "25d4cd43e8bd011dfc1e282067ea93a795a15b8bc3307dc957c16b7caf85716f" + } + ] + }, + { + "bom-ref": "7a4d37c54232d28c", + "type": "file", + "name": "/var/lib/dpkg/info/passwd.postinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "66a8a17c4fd7d8f295b663c25c2f9d8ac6013f38" + }, + { + "alg": "SHA-256", + "content": "faa2672789a5cf0e080ba117439fe781518aa7e155f4fe325e97eabbb9fea879" + } + ] + }, + { + "bom-ref": "b99b6cd6f3efca34", + "type": "file", + "name": "/var/lib/dpkg/info/passwd.preinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "e64afaeb33ce984e91e683b20fbea7054be9109b" + }, + { + "alg": "SHA-256", + "content": "cf6e8844db16f76a96c215d16d674c35d3ff7128fef855c6c690f04f3aa38a64" + } + ] + }, + { + "bom-ref": "1aba9ff9338a247f", + "type": "file", + "name": "/var/lib/dpkg/info/perl-base.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "1d789c2387f844c9bcf31c238f9be765d26fb029" + }, + { + "alg": "SHA-256", + "content": "e3b2b1b9d77e363fba0de072687baeed94f95c44580768d96e3efce3d58432a3" + } + ] + }, + { + "bom-ref": "b0e583b70774d126", + "type": "file", + "name": "/var/lib/dpkg/info/perl-base.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "33393f408edb2f1526c7f5d1e8c6eb1b1bc890ca" + }, + { + "alg": "SHA-256", + "content": "cf9ba1eba5e6886c620fd962192226d6d4a4a897874c0c1c356374f322d671e2" + } + ] + }, + { + "bom-ref": "3a31601b54e5ab82", + "type": "file", + "name": "/var/lib/dpkg/info/sed.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "603146d518f7b644ccb5972114f541ba9b04174b" + }, + { + "alg": "SHA-256", + "content": "5ade75cbe445776676e0d7b189262df16f41b85cc3277075a969540b1d30d2f0" + } + ] + }, + { + "bom-ref": "8843f830c46fead3", + "type": "file", + "name": "/var/lib/dpkg/info/sed.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "7a6ec8abafea9dcf8ee46d2d4344de99b867805d" + }, + { + "alg": "SHA-256", + "content": "953f975da6623a7577db8e06c65894278102e98da11c750657a63babb1531d8e" + } + ] + }, + { + "bom-ref": "6a86bd6fae23e08e", + "type": "file", + "name": "/var/lib/dpkg/info/sysvinit-utils.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "f97b13f3626ec9269b72f115ef7f5b419e54a8c0" + }, + { + "alg": "SHA-256", + "content": "201c4dc0cc171838e01e801bfdf022ac760fef040ffe2a8997d66033430f41ca" + } + ] + }, + { + "bom-ref": "b75e6fe88c055c1d", + "type": "file", + "name": "/var/lib/dpkg/info/sysvinit-utils.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "6dbbec06e6922f796ebcce90a79b97d9045f612d" + }, + { + "alg": "SHA-256", + "content": "e37f9a8ba3490cb256acf1a9265f4d5d61dde96186f5579d990f8e60ca2f05b5" + } + ] + }, + { + "bom-ref": "25628b0204fc9884", + "type": "file", + "name": "/var/lib/dpkg/info/tar.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "7dd9dbb6ff1d4fcdd4979d53cde30b246546e794" + }, + { + "alg": "SHA-256", + "content": "ecfae764fe6afbd5dd3b13a64f55fc54b3e80b6957840237940201e2d362c986" + } + ] + }, + { + "bom-ref": "5fa85ac29c269961", + "type": "file", + "name": "/var/lib/dpkg/info/tar.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "d7e1055247d4f26534981258cd044f2cec6657ae" + }, + { + "alg": "SHA-256", + "content": "da1738db2ea4e1bb022681b88eef37d204df0d53fc17f36a417c9275891390f0" + } + ] + }, + { + "bom-ref": "e65a8f4f7f09e858", + "type": "file", + "name": "/var/lib/dpkg/info/tar.postinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "541bdf68ab980e044aa4bfa7c2b3f601958e4988" + }, + { + "alg": "SHA-256", + "content": "4eed7466e8f44c6b480002d80becc0d998c462b759c0118e285170a93f4b3dca" + } + ] + }, + { + "bom-ref": "24b10b5c6ed863fe", + "type": "file", + "name": "/var/lib/dpkg/info/tar.prerm", + "hashes": [ + { + "alg": "SHA-1", + "content": "39cbb5ac7a222a8e9588d131a3ea3c95e830b70d" + }, + { + "alg": "SHA-256", + "content": "de3fa1115a52ea8e0017f65b767176146e35585e050581adcef95aab495d648c" + } + ] + }, + { + "bom-ref": "363f6e7ca539a0ae", + "type": "file", + "name": "/var/lib/dpkg/info/tzdata.config", + "hashes": [ + { + "alg": "SHA-1", + "content": "c83089308f7ad6ccb09713789061ae8dcfe4da0b" + }, + { + "alg": "SHA-256", + "content": "06b375f4c33ed60b3a5c0509e77d6e1268afcdafee18f7a93ac7cb60ffe1fd67" + } + ] + }, + { + "bom-ref": "08793c6752dc767b", + "type": "file", + "name": "/var/lib/dpkg/info/tzdata.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "08a17ca31ff9640aa58f88cf59281a7bc8ee004b" + }, + { + "alg": "SHA-256", + "content": "f37085e96efe0799f5cd163c0f18ede09fdb4c4e715b5aca8afd4ecac64d3878" + } + ] + }, + { + "bom-ref": "9d7c63a63220ed3d", + "type": "file", + "name": "/var/lib/dpkg/info/tzdata.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "f123ee7c69c280f00c69f36431595306e3fc7981" + }, + { + "alg": "SHA-256", + "content": "84e6a26edb9f10a75d0303e3b0286543baee762b83e5a32cfd4180b77cd851dc" + } + ] + }, + { + "bom-ref": "82e67d632529b85e", + "type": "file", + "name": "/var/lib/dpkg/info/tzdata.postinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "7430fca277bbc136ad4200bc4c8b15bba33770c1" + }, + { + "alg": "SHA-256", + "content": "d0b65a6ef298850b186a12b84cdeff63f79b272a259b2f4495aca6f3e14eed86" + } + ] + }, + { + "bom-ref": "0cb0f93abbaa7570", + "type": "file", + "name": "/var/lib/dpkg/info/tzdata.postrm", + "hashes": [ + { + "alg": "SHA-1", + "content": "e81b69d0fe68e81e8a78f95aea0473cc755211b4" + }, + { + "alg": "SHA-256", + "content": "3ae0a53f093dab27fbeaec8f240ed162be743ae77edb9a82cadffad13664208b" + } + ] + }, + { + "bom-ref": "58b9fe696275b747", + "type": "file", + "name": "/var/lib/dpkg/info/tzdata.templates", + "hashes": [ + { + "alg": "SHA-1", + "content": "e1c0461e32b038989d1102d21805c0d84567e25f" + }, + { + "alg": "SHA-256", + "content": "6ffd96b4ce49812f45e8a3aa678dbcab760c8eeaa3b56c87501ea852a4c3fc27" + } + ] + }, + { + "bom-ref": "91f802e9b83c9cef", + "type": "file", + "name": "/var/lib/dpkg/info/util-linux.conffiles", + "hashes": [ + { + "alg": "SHA-1", + "content": "9c65154ec7e789334354b849b7bc4ca813201ec4" + }, + { + "alg": "SHA-256", + "content": "6f508a501d0a0367d792e191ea32aea0aea84032a22c3899e46ba6cbb2782d97" + } + ] + }, + { + "bom-ref": "205da275beae3680", + "type": "file", + "name": "/var/lib/dpkg/info/util-linux.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "8e39b85554586e3c0f1ea2c7cf6bd8afb513e104" + }, + { + "alg": "SHA-256", + "content": "bda6d146c88255cbc744e5a6e3511ffcae641adae77c0fa9caee72b568dc4a5a" + } + ] + }, + { + "bom-ref": "19095eefa5cd7633", + "type": "file", + "name": "/var/lib/dpkg/info/util-linux.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "c0f5ecc89a1a0b4b2015ca409750c6488b537a23" + }, + { + "alg": "SHA-256", + "content": "157007410d05b53ece689f9e2a92c6c38783a01463ebc7128aceff9c75f425f1" + } + ] + }, + { + "bom-ref": "04a7916feb1e1e65", + "type": "file", + "name": "/var/lib/dpkg/info/util-linux.postinst", + "hashes": [ + { + "alg": "SHA-1", + "content": "fe4d64dc2e2e593019f003e46ce413326d191364" + }, + { + "alg": "SHA-256", + "content": "ddd86327b0e0c543782a86860c4bb501ba41755251ff7985f769cfbbe658b87a" + } + ] + }, + { + "bom-ref": "735d07bdad788459", + "type": "file", + "name": "/var/lib/dpkg/info/util-linux.postrm", + "hashes": [ + { + "alg": "SHA-1", + "content": "9662e4420ec5015395f8321367ef020b02260f71" + }, + { + "alg": "SHA-256", + "content": "1d1f844c29b80517559e40728df5fbfde817ce10e50c16aa3ad1cd37325758a3" + } + ] + }, + { + "bom-ref": "0985d5c3ae25155c", + "type": "file", + "name": "/var/lib/dpkg/info/util-linux.prerm", + "hashes": [ + { + "alg": "SHA-1", + "content": "23196a533c3a84f5c75f392227f983dd2b8d67c4" + }, + { + "alg": "SHA-256", + "content": "860fa296fe027f8a893d2ede4ce9c13e12a8e1c325be18b7ab263fa534695a93" + } + ] + }, + { + "bom-ref": "58a5615762253691", + "type": "file", + "name": "/var/lib/dpkg/info/zlib1g:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "b125e5816025dd34eb940bb17f8de01e635b2e0f" + }, + { + "alg": "SHA-256", + "content": "e0f4d7c724dce1c126f260e25994702341f82fd6e6d807462da322f9b4816276" + } + ] + }, + { + "bom-ref": "56b21cc13f8986af", + "type": "file", + "name": "/var/lib/dpkg/status", + "hashes": [ + { + "alg": "SHA-1", + "content": "1f1c9f6246dbf3515ef6a1e6886b0309b165dfd7" + }, + { + "alg": "SHA-256", + "content": "894c1759789f1518a9e71b2ab3059dc8b07eb45c9f86813fde9d93d212e4020a" + } + ] + }, + { + "bom-ref": "1fcbd10101736763", + "type": "file", + "name": "/etc/ldap/ldap.conf", + "hashes": [ + { + "alg": "SHA-1", + "content": "92ae12598635df4f396da493f702ed59e77a33a3" + }, + { + "alg": "SHA-256", + "content": "3529bc485d817f9adc9e19f6931748184af43cd4c400918f5051af27fd80e8ff" + } + ] + }, + { + "bom-ref": "ad2e051d965db7fd", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libexpat.so.1.6.8", + "hashes": [ + { + "alg": "SHA-1", + "content": "38b76669ec0ae6d1ab27d6e97ec0b586d5e92d22" + }, + { + "alg": "SHA-256", + "content": "9081d3d3683c3353eedbcfea4dc95027e2d0d899d63c5ff193bd9eebf3148b73" + } + ] + }, + { + "bom-ref": "5822570909c51ff0", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/apr-util-1/apr_crypto_openssl-1.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "093ebe7c3650b51c613ac8b7b2c8e0e66e1ece77" + }, + { + "alg": "SHA-256", + "content": "12d1ce889d9c4dc495373e803564d76d67e6129e1fb941df5c5c8a0b777d7e77" + } + ] + }, + { + "bom-ref": "9ed0b80b6c827155", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/apr-util-1/apr_dbm_db-1.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "624c2514db3803348aff4a6fb817cbba6575e7a1" + }, + { + "alg": "SHA-256", + "content": "24c8669238514ddfc6c28d4d9ed1baebdc8c291e17c7ec34470994fcd641ec56" + } + ] + }, + { + "bom-ref": "621b304bf12e8ef5", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/apr-util-1/apr_dbm_gdbm-1.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "fd48cee77ff1c0deff91d0e77e1c0a33bd33f3ed" + }, + { + "alg": "SHA-256", + "content": "d7d5867706c45fb0c1bddf3a1dcabae2109be64e8e5af9f7b55009f2710710d6" + } + ] + }, + { + "bom-ref": "01df3ea215b63532", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/apr-util-1/apr_ldap-1.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "dc4fc91b874879fd20fdb2fc3877ea758de5495f" + }, + { + "alg": "SHA-256", + "content": "ef21c4a5511a6b81410224fc04d9ae44ef544dc8ebc942d84a1ded3210840643" + } + ] + }, + { + "bom-ref": "20b69e4ac0ca3dc9", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/engines-1.1/afalg.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "272333cab44f9ce44c94afb940ae369cfacc04ed" + }, + { + "alg": "SHA-256", + "content": "2c0a8d148cc1f41f2c7853e4825198345a67e45a6c2854741e99e1d715c33855" + } + ] + }, + { + "bom-ref": "18c69fa6cafe2dc3", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/engines-1.1/capi.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "6fa345aa6881c2e65b6c095ca2ff0b7b0f8795c8" + }, + { + "alg": "SHA-256", + "content": "5dab1a2291dbaca88daddc55b4e534a12b6cd222309a02baef9050ac51068c06" + } + ] + }, + { + "bom-ref": "cc3219e676718e20", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/engines-1.1/padlock.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "976546f2d059e66a038fa5f39c6b1bdee6e5b4b1" + }, + { + "alg": "SHA-256", + "content": "8d518c95a48074bc3978da0f35a784dcd0f3a6261069149d13e4bfa177ffd10e" + } + ] + }, + { + "bom-ref": "383a28e0f11e5a21", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libapr-1.so.0.6.5", + "hashes": [ + { + "alg": "SHA-1", + "content": "14a5db8897d76f899d0b879aae90e26e3a359eac" + }, + { + "alg": "SHA-256", + "content": "3fc78fcb61dc9550e6d2a03b4f8ba956f08c80add0a0147ca91f70d525f50ca1" + } + ] + }, + { + "bom-ref": "732a07af8672d9ae", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libaprutil-1.so.0.6.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "ae875733a5bfdd2fe5acec62d8b9f49557aefa6f" + }, + { + "alg": "SHA-256", + "content": "a367a71e528bb19b32e75ac62320a22baef843b40ef7e907d40de640500a38c0" + } + ] + }, + { + "bom-ref": "f0bc3c6177d7e3e2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libcrypto.so.1.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "c3fec899895db9e76722ed164e7e2202b3e8ded9" + }, + { + "alg": "SHA-256", + "content": "ea84125ef747ef0b62ca98fbf6f58685edcce3ba0dc2c659ff4256b4191b36b6" + } + ] + }, + { + "bom-ref": "edb214f49b00e40e", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libexpatw.so.1.6.8", + "hashes": [ + { + "alg": "SHA-1", + "content": "254e99e4d42986e0008649d4aa957068bd0d6d01" + }, + { + "alg": "SHA-256", + "content": "88eec91d28c7073152341d3040ee08dd4e9364b6c6443187aa87386d3b53439e" + } + ] + }, + { + "bom-ref": "beec57e1bb9ddbfe", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libgdbm.so.6.0.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "edc76eb4a58ddea29e2a54a034ab46917a1e7024" + }, + { + "alg": "SHA-256", + "content": "ba313cd4047c1f8490d02f10c89ec32be9a50282b546de91ee37065da8a41735" + } + ] + }, + { + "bom-ref": "64c5b967e19a4f89", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/liblber-2.4.so.2.10.10", + "hashes": [ + { + "alg": "SHA-1", + "content": "881d231ef2b16ad1647f1238be60bede3259f92c" + }, + { + "alg": "SHA-256", + "content": "88c5e8924f8f6ada73385cd7d3175e8303960f566dbf34c4f80333243b0ecc45" + } + ] + }, + { + "bom-ref": "b061bcd45853dbd8", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libldap_r-2.4.so.2.10.10", + "hashes": [ + { + "alg": "SHA-1", + "content": "0333c37a7a93269481ea91f44c2da2cc628e0e8c" + }, + { + "alg": "SHA-256", + "content": "e00b6d3845c777d5a834c8164afceb853105c473eed1f4f28a7867cefe9bf856" + } + ] + }, + { + "bom-ref": "6d9b5ac86aa7158b", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libsasl2.so.2.0.25", + "hashes": [ + { + "alg": "SHA-1", + "content": "b8094fa35d4a1eace6783a8532dda3fe3e22384b" + }, + { + "alg": "SHA-256", + "content": "aeb9831250b4c68732b05da7f96565f6679c6b9e4b89b4d452b5152a43fa2968" + } + ] + }, + { + "bom-ref": "214ed8882465b3d2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libssl.so.1.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "b6181a2e5566d5abe79f0351c1124724f4b68e38" + }, + { + "alg": "SHA-256", + "content": "3a98c2d9e91c278d4a0332d42616f7bfded96bb1f1a63f640c1e521ba6260706" + } + ] + }, + { + "bom-ref": "885443b8dacce042", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/sasl2/libsasldb.so.2.0.25", + "hashes": [ + { + "alg": "SHA-1", + "content": "6f43e841d05452fe3258efd51354639159c8814e" + }, + { + "alg": "SHA-256", + "content": "5152f5f81f758cc262f0679e26e4148db9c597a96d6c8bf39f362349fabf2bae" + } + ] + }, + { + "bom-ref": "cd633bcdb96a503f", + "type": "file", + "name": "/usr/share/doc/libapr1/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "9b57102069769cce1e86ab67d9193a71744b2630" + }, + { + "alg": "SHA-256", + "content": "05b1acb983fa0c8580a6b981e37c5a05e370029f4bfea2618ad0e418d646f578" + } + ] + }, + { + "bom-ref": "5a4a597c014486f6", + "type": "file", + "name": "/usr/share/doc/libaprutil1-ldap/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "86db7e5338da0094c88357442f799ccb27f8f870" + }, + { + "alg": "SHA-256", + "content": "c7506f37d68ef98f7808cdb09074d77433b734e51a7c82d60daff0b869cd83ef" + } + ] + }, + { + "bom-ref": "53d11f6dcb956408", + "type": "file", + "name": "/usr/share/doc/libaprutil1/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "86db7e5338da0094c88357442f799ccb27f8f870" + }, + { + "alg": "SHA-256", + "content": "c7506f37d68ef98f7808cdb09074d77433b734e51a7c82d60daff0b869cd83ef" + } + ] + }, + { + "bom-ref": "edc067efdb701414", + "type": "file", + "name": "/usr/share/doc/libexpat1/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "4028dc6cdde996dac11faaabe969173bbba4270f" + }, + { + "alg": "SHA-256", + "content": "15721756f0bdfd8fb83d3ae9fd9f76ceb3285b0ecacb0532a547e9e2f324c35c" + } + ] + }, + { + "bom-ref": "0ef59709499051ed", + "type": "file", + "name": "/usr/share/doc/libgdbm6/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "aa9c60252252e016b7d46524ba66f121561c4cc0" + }, + { + "alg": "SHA-256", + "content": "6a23a03e40c38dd0aa28885635bc1cbd989b596aafaecbaa0bf1d888535a672e" + } + ] + }, + { + "bom-ref": "486f918ade41204c", + "type": "file", + "name": "/usr/share/doc/libldap-2.4-2/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "dafbd159d68c2112925600499ef053994190dec0" + }, + { + "alg": "SHA-256", + "content": "0690f1ee382f98e95b446743db55395641d5e258de65939e9cb1c660d67a43a8" + } + ] + }, + { + "bom-ref": "b4fd9e37ff16d43b", + "type": "file", + "name": "/usr/share/doc/libldap-common/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "dafbd159d68c2112925600499ef053994190dec0" + }, + { + "alg": "SHA-256", + "content": "0690f1ee382f98e95b446743db55395641d5e258de65939e9cb1c660d67a43a8" + } + ] + }, + { + "bom-ref": "44c66a07639683e0", + "type": "file", + "name": "/usr/share/doc/libsasl2-2/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "c6bd709cbb5bbc8aeda80c91f4bd486b3bb63247" + }, + { + "alg": "SHA-256", + "content": "cc230c5b0ea3cecd0bd9aa6ebb778c3b1ddb3c478d94ccf6cbdf77c8ca99bc77" + } + ] + }, + { + "bom-ref": "42f4da5146b78205", + "type": "file", + "name": "/usr/share/doc/libsasl2-modules-db/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "c6bd709cbb5bbc8aeda80c91f4bd486b3bb63247" + }, + { + "alg": "SHA-256", + "content": "cc230c5b0ea3cecd0bd9aa6ebb778c3b1ddb3c478d94ccf6cbdf77c8ca99bc77" + } + ] + }, + { + "bom-ref": "eac807882c85d049", + "type": "file", + "name": "/usr/share/doc/libssl1.1/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "d2d7b4d2d035a7732fcded56e31300b65d471545" + }, + { + "alg": "SHA-256", + "content": "bd7fb9ce3586c01003ff505d69fade885b68b0f8a1cdd7ce43630f8ed3dc119a" + } + ] + }, + { + "bom-ref": "bc9cb707ab2712ef", + "type": "file", + "name": "/var/lib/dpkg/info/libapr1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "5ec1c6f54659bdf333fa4bfecac14a01f527c0c1" + }, + { + "alg": "SHA-256", + "content": "1359837201f1cab499614885795de74f95fd483f343248111626dca5ac2deec4" + } + ] + }, + { + "bom-ref": "87c302c73ba6a500", + "type": "file", + "name": "/var/lib/dpkg/info/libaprutil1-ldap:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "a0d3d500d06484d7eba160dbe3107213c0173583" + }, + { + "alg": "SHA-256", + "content": "de473ff9392e640dd04ad61c690de39d00df14319a738f38601d51db21b54a6c" + } + ] + }, + { + "bom-ref": "4acda2192f0b4200", + "type": "file", + "name": "/var/lib/dpkg/info/libaprutil1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "795bda739ab9b45418a1c2c9bbcc21390ad53aad" + }, + { + "alg": "SHA-256", + "content": "0509e2f75ea7f826d2564d0adade7814e322dacfe8dfac9bc57da8cd17edcb87" + } + ] + }, + { + "bom-ref": "4c66036f8442d7c8", + "type": "file", + "name": "/var/lib/dpkg/info/libexpat1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "fe91d4d66d19b718cc618517b9659d443a65dcdd" + }, + { + "alg": "SHA-256", + "content": "406ca9c7de9f01ef697d6522b7d91bc5ffeeb5dbedce938128d2f7e6e36112dd" + } + ] + }, + { + "bom-ref": "9100fe03b4344573", + "type": "file", + "name": "/var/lib/dpkg/info/libgdbm6:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "e7f7389fdc35da771a25e5e54460bd8701b011bf" + }, + { + "alg": "SHA-256", + "content": "52d1368b428bdf56ca56893912adc6dbd7cd68f0cb43a19ae2f0b5b6b430d881" + } + ] + }, + { + "bom-ref": "00e7a4978c83b1ca", + "type": "file", + "name": "/var/lib/dpkg/info/libldap-2.4-2:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "a0b94f59de6cbdc3339d12fcd963898e2dacad47" + }, + { + "alg": "SHA-256", + "content": "66ab0772da300b4e2658f7592417c7b8985f39939ce911f5c88dbd99583eb7cd" + } + ] + }, + { + "bom-ref": "b9fe7b71d3c56c40", + "type": "file", + "name": "/var/lib/dpkg/info/libldap-common.conffiles", + "hashes": [ + { + "alg": "SHA-1", + "content": "ddf48ce4269e89e1270cc61d06b73418cf31f9b2" + }, + { + "alg": "SHA-256", + "content": "12d338700c4401fd8aab581208555e662fc5e1b4081d7bcface40c3ad6c83070" + } + ] + }, + { + "bom-ref": "0af359526e4926b0", + "type": "file", + "name": "/var/lib/dpkg/info/libldap-common.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "4f39010b976a1fb3a430aebdb321b2b5968d7955" + }, + { + "alg": "SHA-256", + "content": "ccaf68d0b37d4ed64fdd0fc83cbea7f9c2566d02080a8762f8b49d2421f991a6" + } + ] + }, + { + "bom-ref": "ab848071ad3b3303", + "type": "file", + "name": "/var/lib/dpkg/info/libldap-common.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "688f845a40dba66fb3f1617a87c4e7c2061ab546" + }, + { + "alg": "SHA-256", + "content": "d0668c653ff46cc51ab79d7ee5444fa38902fba2943df441542a26be431e8ced" + } + ] + }, + { + "bom-ref": "b84c7651833ba2c2", + "type": "file", + "name": "/var/lib/dpkg/info/libsasl2-2:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "af426198675ad5a628fbfac12de8a6f3f3a13983" + }, + { + "alg": "SHA-256", + "content": "2204f527b5fbbaf93fa57d3fdeb3edf9640a1119f1d7ef22fbdf60cc8bbcefce" + } + ] + }, + { + "bom-ref": "659f70ca786127e4", + "type": "file", + "name": "/var/lib/dpkg/info/libsasl2-modules-db:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "47b2bb3aa1d70f61616031243e7c7e8b0e76de93" + }, + { + "alg": "SHA-256", + "content": "07a62ac9d43ab4fa1c1aeff0df9a941fe21936ee5347e968ebbfd15bfc91c818" + } + ] + }, + { + "bom-ref": "16ab5ad2d5953299", + "type": "file", + "name": "/var/lib/dpkg/info/libssl1.1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "2af8adca063f3f710ceb331a8975905c02ba4685" + }, + { + "alg": "SHA-256", + "content": "39cc1817f5c9394fff01544451dd6d665f92eed200ac4fd0283c7528616dad83" + } + ] + }, + { + "bom-ref": "401bec50a8eff0cb", + "type": "file", + "name": "/var/lib/dpkg/status", + "hashes": [ + { + "alg": "SHA-1", + "content": "46436289d32a9cd241320aaa851daf6714def3d3" + }, + { + "alg": "SHA-256", + "content": "9af5f13f24c0f99f9c2e2742014c54cb8acbe6ae47b5244c0de31f0bfc8a68e2" + } + ] + }, + { + "bom-ref": "de09781e0e3c422f", + "type": "file", + "name": "/lib/lsb/init-functions", + "hashes": [ + { + "alg": "SHA-1", + "content": "f42e62f9dea1d881a5eef072d8d0b5beb8c5c47d" + }, + { + "alg": "SHA-256", + "content": "3e0428b8665bb91a9783386ceef42f7e67e330f9db25a107c7131239c7e07405" + } + ] + }, + { + "bom-ref": "8bfa427bdefe9d11", + "type": "file", + "name": "/lib/lsb/init-functions.d/20-left-info-blocks", + "hashes": [ + { + "alg": "SHA-1", + "content": "1cba9ab03a0e2f597752891c67bcb55e1f700ee8" + }, + { + "alg": "SHA-256", + "content": "10997f92734d15a0a49c153f47cbd11553a2f3d8132f7191e6676a69444f8810" + } + ] + }, + { + "bom-ref": "58c7ef44b2310c77", + "type": "file", + "name": "/lib/x86_64-linux-gnu/libkeyutils.so.1.8", + "hashes": [ + { + "alg": "SHA-1", + "content": "2825a952da3582dd0051ff98afbc6ada352d48b1" + }, + { + "alg": "SHA-256", + "content": "2d85f26959a61560d48223b45262b4223f97c3b5a56c75a4dcda8bed9907a939" + } + ] + }, + { + "bom-ref": "a9192c2e4ae09fbd", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/krb5/plugins/preauth/spake.so", + "hashes": [ + { + "alg": "SHA-1", + "content": "6676323069a09111b9518d0682377a9bbef16946" + }, + { + "alg": "SHA-256", + "content": "d6d19e7ed35a13a5729d39f619f62357f3f63331a5961b1d339dad3547821e55" + } + ] + }, + { + "bom-ref": "b5ed2d667d16b942", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libbrotlicommon.so.1.0.7", + "hashes": [ + { + "alg": "SHA-1", + "content": "a258d9f8189bffd36fac36c1a139c4a90f4320ed" + }, + { + "alg": "SHA-256", + "content": "e46ad24bcb36b744df33156eb08bcadd8d14f2699adf4fe0d16848e40578c397" + } + ] + }, + { + "bom-ref": "10138d54ad42457f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libbrotlidec.so.1.0.7", + "hashes": [ + { + "alg": "SHA-1", + "content": "526c1cc1d27c60bdfab113bf769ec6a00f591296" + }, + { + "alg": "SHA-256", + "content": "ebdba87c3c2ab60695851d8758d52d325b9fee20784113f34f766e1cb9dd3876" + } + ] + }, + { + "bom-ref": "0cb6dc0d19bf6e6f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libbrotlienc.so.1.0.7", + "hashes": [ + { + "alg": "SHA-1", + "content": "942f4b154cf4834987ca563040516d073c6ca729" + }, + { + "alg": "SHA-256", + "content": "8d176b6c6817084088f27f3df8910e8ac6eb4fe33dd094f5bb2547b6a0a18f1f" + } + ] + }, + { + "bom-ref": "6466f483f37264dc", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libcurl.so.4.5.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "2d4c5f353cd38f15fc7e8268b4c068350d327b75" + }, + { + "alg": "SHA-256", + "content": "c65ea15000c6d180d350c0eb0f96ef60ae97700608a04a840a0188737486c600" + } + ] + }, + { + "bom-ref": "a0bddae0af74215c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libgssapi_krb5.so.2.2", + "hashes": [ + { + "alg": "SHA-1", + "content": "1518899546cd82532373b4c52924ba07d915f959" + }, + { + "alg": "SHA-256", + "content": "9b85bf8b2aff3c56dc3295ca0cff338dac64b23de16fbe8c39c5fc6b0134667e" + } + ] + }, + { + "bom-ref": "f9c36f410f701aed", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libicudata.so.63.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "4cf272e8d734928a46d18dd12775f6f8d198b453" + }, + { + "alg": "SHA-256", + "content": "11c540493e354f3fb907544ba908f1fe8eb1404d590b56fc518a67391f441ab5" + } + ] + }, + { + "bom-ref": "f1be8b9f171fe3a2", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libicui18n.so.63.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "0bd885871f0809754c753deb01d60e6000c779df" + }, + { + "alg": "SHA-256", + "content": "e809f84da8f78aeccc4a8d3a6440a50efe1df698eb0b274bb8416e361a27f947" + } + ] + }, + { + "bom-ref": "114e71b376bb0f76", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libicuio.so.63.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "f1cad2aba748643f9cece0f85f384ba5bc176b74" + }, + { + "alg": "SHA-256", + "content": "c74b03373ae2f59e9cf051469f8e51756bbc409f20e7c5ab1e1f85dfdbcec026" + } + ] + }, + { + "bom-ref": "3289e09458049b5c", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libicutest.so.63.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "5ae686f867222467d1894ce669cb21bac2cfee7b" + }, + { + "alg": "SHA-256", + "content": "67643d8c2790d12a40cebc47174c5ea683215addc3b15b8b9fccbd1f63c939b9" + } + ] + }, + { + "bom-ref": "29898104ae98142f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libicutu.so.63.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "f762ff70f67b21bbde73172ccb27e7a676399a7f" + }, + { + "alg": "SHA-256", + "content": "1e464630c6a226d6b7340d1ebe3e73fcc03dc93eb7eed8a760173f3750a44c0d" + } + ] + }, + { + "bom-ref": "ef8ea2af52acd09f", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libicuuc.so.63.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "fa4e7f0bcacbcb3135accfbc28f914679e9d7ef4" + }, + { + "alg": "SHA-256", + "content": "23ff51d1000463bfaf3b1c88de7db8ffa9c0f8c515ad33ae1cd5b86006f811b3" + } + ] + }, + { + "bom-ref": "f5809f310a65928a", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libjansson.so.4.11.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "62e595cc3705e2c07ecf47321e0548258286be6a" + }, + { + "alg": "SHA-256", + "content": "442607cc7f8ec0fa1758e01cf3956d2dda6489188137d46fff57ace8630fbf2e" + } + ] + }, + { + "bom-ref": "8162ebe9a2099bec", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libk5crypto.so.3.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "9f54bfbc21b2a1506441f5e908268e5ae2388f2b" + }, + { + "alg": "SHA-256", + "content": "900f743f1654b9b6846ca4151970c1bb1af4b3fa4e0e5f0d316a0e1b41f21246" + } + ] + }, + { + "bom-ref": "d4b3c5e7f54deb83", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libkrb5.so.3.3", + "hashes": [ + { + "alg": "SHA-1", + "content": "1d6d9a9cd236122ee30356ae6cb6e429ae8f30c7" + }, + { + "alg": "SHA-256", + "content": "85397eb4e2db0d31148f5309af15e45e1ccd7bc4f012e00c64abe9e2b4fc16e9" + } + ] + }, + { + "bom-ref": "577026066e03f044", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libkrb5support.so.0.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "cf0d6693737a367a6f364b2412f0b0c4d38f6224" + }, + { + "alg": "SHA-256", + "content": "89319234576a54add5aebc551be36b4a2fe9e4cf45d8fae16eedcadca71d12f4" + } + ] + }, + { + "bom-ref": "1bbd5256c1f16af7", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/liblua5.2-c++.so.0.0.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "a14efedd7cb068cec93dbd3e017c05222e5771d3" + }, + { + "alg": "SHA-256", + "content": "688de9363cda3dc3aa082a58924f88963496c5918687b25297478c33646025f6" + } + ] + }, + { + "bom-ref": "7c7ea86eecc7dbce", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/liblua5.2.so.0.0.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "415139afc11c07b32536f29bd3c57d3d21594aa3" + }, + { + "alg": "SHA-256", + "content": "0bfd16edaf60b645ad1e2c507a3693a86b616d6f772685f38d34c0034bd23341" + } + ] + }, + { + "bom-ref": "94189c5e007a0bfe", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libnghttp2.so.14.17.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "645121a33779832ef2c9470ede40c59ddc327755" + }, + { + "alg": "SHA-256", + "content": "bd3b72e3c600ef9339e204745d64c070a8900211d07b80b07a1ae4284aaebd64" + } + ] + }, + { + "bom-ref": "80bfb455c5669703", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libpsl.so.5.3.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "9619135bd625f97465e3de7bb9e2d8aaa91c156c" + }, + { + "alg": "SHA-256", + "content": "bc74e9c10f4312a004364c36ad47b11bd6a522a03347e598b8fdeed0866ba19a" + } + ] + }, + { + "bom-ref": "4a79ea4f0f6dc938", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/librtmp.so.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "7f3bd551ea62806993c38bfddca8badf5d894a84" + }, + { + "alg": "SHA-256", + "content": "f92e188958cc37c2b2fb1bfe9363f1abf65230f5852095ff231a3415d8525942" + } + ] + }, + { + "bom-ref": "b4c27e1ad18fe496", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libssh2.so.1.0.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "faefcf42c2d1b5dd0594fbf898486440af669441" + }, + { + "alg": "SHA-256", + "content": "a97e772b9e921abe6bf040be48e285c99f23faaa44e646a9c8b91a13d1916df1" + } + ] + }, + { + "bom-ref": "8c924a3cfe466fad", + "type": "file", + "name": "/usr/lib/x86_64-linux-gnu/libxml2.so.2.9.4", + "hashes": [ + { + "alg": "SHA-1", + "content": "97f3343ff8f3ec3a01616f4d43257fa95370a9ca" + }, + { + "alg": "SHA-256", + "content": "1b78f999164d63a169a0bb3d113c6edb634a0a45452afb889572415448f030a4" + } + ] + }, + { + "bom-ref": "41990392223251e0", + "type": "file", + "name": "/usr/local/apache2/bin/httpd", + "hashes": [ + { + "alg": "SHA-1", + "content": "90fb07bfb2c897468934825573fce4f0011722fe" + }, + { + "alg": "SHA-256", + "content": "3787557f9f5f87809f0a6b6b0465408243613d8be4c4e8a89e136065462db499" + } + ] + }, + { + "bom-ref": "cf6aecc8f767bce6", + "type": "file", + "name": "/usr/share/doc/libbrotli1/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "d64fdae5680a62415257f6166bdc7c54ecd548e6" + }, + { + "alg": "SHA-256", + "content": "24a64e5bb83d0960d1835696a1e23c0896ad6055b0ca47c66ab0eb9a766324b1" + } + ] + }, + { + "bom-ref": "5734c5d4e65e4cc0", + "type": "file", + "name": "/usr/share/doc/libcurl4/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "710cd58e6bb65108a2e43566d245c5cc6d9032ca" + }, + { + "alg": "SHA-256", + "content": "b0c93189c21018f86534687ca73937284eb7c2b3411c2ec9f1620c288637f9fc" + } + ] + }, + { + "bom-ref": "9bdce77612bd6a12", + "type": "file", + "name": "/usr/share/doc/libgssapi-krb5-2/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "c838b5e08a65d11bbaa642461b24ae6cfee75d7c" + }, + { + "alg": "SHA-256", + "content": "4a2d321ab57260e8de4b67bde8cff76c07d28be69c2d8b22dfc2bfa42f5c41b9" + } + ] + }, + { + "bom-ref": "02b4c876362cf699", + "type": "file", + "name": "/usr/share/doc/libicu63/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "678988eff4ed89ec1fe42da13470e8b6f69f00d0" + }, + { + "alg": "SHA-256", + "content": "0515ea67c829d73cf54d074ef7bd030968419f98a83e523d4300ea0f4d18ebc9" + } + ] + }, + { + "bom-ref": "005cc579c3cf3da5", + "type": "file", + "name": "/usr/share/doc/libjansson4/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "6439aa4657616ca84334c81fb424ff0b9ace4616" + }, + { + "alg": "SHA-256", + "content": "29347e2528ab31d20e8582b09aa89cd878d306c59a273541141c9aede1903cb8" + } + ] + }, + { + "bom-ref": "256d3c010d7cd228", + "type": "file", + "name": "/usr/share/doc/libk5crypto3/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "c838b5e08a65d11bbaa642461b24ae6cfee75d7c" + }, + { + "alg": "SHA-256", + "content": "4a2d321ab57260e8de4b67bde8cff76c07d28be69c2d8b22dfc2bfa42f5c41b9" + } + ] + }, + { + "bom-ref": "9aeccdd91b07c10a", + "type": "file", + "name": "/usr/share/doc/libkeyutils1/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "7985da4e0f2d93919d5dfacf449846cac43f73f8" + }, + { + "alg": "SHA-256", + "content": "6ab5c541723d8211cab7ebc1643d53aa51c4863c1c838e4625d797ece9472ee8" + } + ] + }, + { + "bom-ref": "57102a1ac6465d61", + "type": "file", + "name": "/usr/share/doc/libkrb5-3/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "c838b5e08a65d11bbaa642461b24ae6cfee75d7c" + }, + { + "alg": "SHA-256", + "content": "4a2d321ab57260e8de4b67bde8cff76c07d28be69c2d8b22dfc2bfa42f5c41b9" + } + ] + }, + { + "bom-ref": "51ec43fba24fd4d0", + "type": "file", + "name": "/usr/share/doc/libkrb5support0/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "c838b5e08a65d11bbaa642461b24ae6cfee75d7c" + }, + { + "alg": "SHA-256", + "content": "4a2d321ab57260e8de4b67bde8cff76c07d28be69c2d8b22dfc2bfa42f5c41b9" + } + ] + }, + { + "bom-ref": "6c8e7dab5063b9d8", + "type": "file", + "name": "/usr/share/doc/liblua5.2-0/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "5711106f9179944e26d8618485b673406a3060c9" + }, + { + "alg": "SHA-256", + "content": "1b5f84fd86e61825fc5191ff9773718198f3692a5f715a80507f60afb55ec1a1" + } + ] + }, + { + "bom-ref": "c58745e26fd827f4", + "type": "file", + "name": "/usr/share/doc/libnghttp2-14/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "c6c858643914d0536c6b3ddf60aed17fa2465375" + }, + { + "alg": "SHA-256", + "content": "aa58ecb6ad7418831046ef8a69d6c374ed93e2d04a2ba0477629160ef6a54ab7" + } + ] + }, + { + "bom-ref": "349959c81dee3b2c", + "type": "file", + "name": "/usr/share/doc/libpsl5/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "d7c1f1b749c13d3c00950fe9a28b8d84b12d1ff3" + }, + { + "alg": "SHA-256", + "content": "a530da63c89b707cb51a9c84667aecd0f2a138b0503734cbc8e73ea7cc6fbae0" + } + ] + }, + { + "bom-ref": "3f901320bd91505c", + "type": "file", + "name": "/usr/share/doc/librtmp1/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "315c5e0b4c3defb00ea7d92238c09d4408116172" + }, + { + "alg": "SHA-256", + "content": "4302abcc1ea1b6cbe8d19c79b892acf78878030220210707c19006828866207c" + } + ] + }, + { + "bom-ref": "b421d2aa92c4c939", + "type": "file", + "name": "/usr/share/doc/libssh2-1/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "e050ba1262069cafb5ddc2cc126b288b88ad7b6f" + }, + { + "alg": "SHA-256", + "content": "be3f042c665403ab951d2c21050eb83e8221cbf4b5e86876282abb2b48f7168d" + } + ] + }, + { + "bom-ref": "03e7dd6f721e4f85", + "type": "file", + "name": "/usr/share/doc/libxml2/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "992c59e58e2e03cb652177ac2a86b436bbb087bc" + }, + { + "alg": "SHA-256", + "content": "41eb8dfa594b3fb799a066293ed91434765b23b6d493da1778e7c6b04d5059e0" + } + ] + }, + { + "bom-ref": "b1dcaaa50758fb33", + "type": "file", + "name": "/usr/share/doc/lsb-base/copyright", + "hashes": [ + { + "alg": "SHA-1", + "content": "60d58837f87b10f27167c3ab21d3f61c91645c69" + }, + { + "alg": "SHA-256", + "content": "5838867827e001081f2a1884f55614df9fbb303bb03de6087220ac0b6f8ea44b" + } + ] + }, + { + "bom-ref": "9d9b51ab3104b55b", + "type": "file", + "name": "/var/lib/dpkg/info/libbrotli1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "239042095d29ac9c0d965bd73f54f98d0df3aca2" + }, + { + "alg": "SHA-256", + "content": "bc86cc618a2fdddcea5cf4a521e3ebd553c306b8883e665de08541d986556bc7" + } + ] + }, + { + "bom-ref": "ef6351db0f78c14f", + "type": "file", + "name": "/var/lib/dpkg/info/libcurl4:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "64f21dc3905b17ab9919b47e31e624afd357da24" + }, + { + "alg": "SHA-256", + "content": "c4a983e95964894e9d02256252312ff2767339f84acbc71e36c9a0f48db6898e" + } + ] + }, + { + "bom-ref": "5d572fe9038e1321", + "type": "file", + "name": "/var/lib/dpkg/info/libgssapi-krb5-2:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "d26a9e7d6a360bb5048e846676d13c973607a7f3" + }, + { + "alg": "SHA-256", + "content": "f85d02725a158ae68757801c2d31af194f0b3f88c77d38fdc251f6f1b5c5019f" + } + ] + }, + { + "bom-ref": "1ab3f29d2c92e860", + "type": "file", + "name": "/var/lib/dpkg/info/libicu63:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "faa98a39da51fdf6bc8fa51b4702e1d38d56a561" + }, + { + "alg": "SHA-256", + "content": "a7c80f4131540409bee056dd41a7af22cf9408ed81ea869dcdd59a149a6cbb15" + } + ] + }, + { + "bom-ref": "97964f42a9ae7bb6", + "type": "file", + "name": "/var/lib/dpkg/info/libjansson4:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "92bc8bf102a272b139b06820ec773a1cfcab9c5f" + }, + { + "alg": "SHA-256", + "content": "bc13e30762074c44300eead1378ccfdee95cec1feeca82de653eb6f50732b777" + } + ] + }, + { + "bom-ref": "96165f0f02edfd1e", + "type": "file", + "name": "/var/lib/dpkg/info/libk5crypto3:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "43edc32f38015f9619820d2521a87e55bbde2f6f" + }, + { + "alg": "SHA-256", + "content": "fc6cc2fae3c9e6afd3f372f9736a0893e34c7f736863d7407f3a03ea6f9f0590" + } + ] + }, + { + "bom-ref": "05452ba64542f708", + "type": "file", + "name": "/var/lib/dpkg/info/libkeyutils1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "cef0f3d9f07c1fdafe509ffab1c6c2525f3f99f8" + }, + { + "alg": "SHA-256", + "content": "4da269198daf4bbab7188d60e2477cb4c51e8b33582837da1b646e67a68b587c" + } + ] + }, + { + "bom-ref": "6ea60d20d3bf2903", + "type": "file", + "name": "/var/lib/dpkg/info/libkrb5-3:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "04b6ad1fbe4436b0f9118b7c480856e34beab31b" + }, + { + "alg": "SHA-256", + "content": "68fbcb72c4146c1cefa20a14335f34535c9286aa2deda20f00c22438ebb9ab25" + } + ] + }, + { + "bom-ref": "44c32103e77d8547", + "type": "file", + "name": "/var/lib/dpkg/info/libkrb5support0:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "aa13f21f9d5699c04557d470176a2cbe4086ead2" + }, + { + "alg": "SHA-256", + "content": "29198232b53a000331dfa54da32d68f211c513a1b697eff2eba3a7db2d15c0d5" + } + ] + }, + { + "bom-ref": "53970c79cd445331", + "type": "file", + "name": "/var/lib/dpkg/info/liblua5.2-0:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "d32fe09eb039e13df99107ef5f84a2095686cc9e" + }, + { + "alg": "SHA-256", + "content": "781119b7fb934b9d2a777cb4c9cd676832df04555f34f04a4ad53c74b857f3bc" + } + ] + }, + { + "bom-ref": "c5b9f6a8be404b90", + "type": "file", + "name": "/var/lib/dpkg/info/libnghttp2-14:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "202e9d71ca21cda4b61e4493496eb75e75c9d559" + }, + { + "alg": "SHA-256", + "content": "3d6a7f67bfb8e726519234932825caf02f5a4c9291847d6ff064fad708e6f730" + } + ] + }, + { + "bom-ref": "71cb870776e1e4b7", + "type": "file", + "name": "/var/lib/dpkg/info/libpsl5:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "2da135b55461202ee6fdba9aea8bc6ddcc5c998a" + }, + { + "alg": "SHA-256", + "content": "b0773060c37966a937e18b8ee5996444f8922e063d34d61bcd0489c5c112e75b" + } + ] + }, + { + "bom-ref": "1031b420bd481b0a", + "type": "file", + "name": "/var/lib/dpkg/info/librtmp1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "6d243906048914521b1f1b78004a5c977061b5c1" + }, + { + "alg": "SHA-256", + "content": "a1e1be924ae6ad5c42be3ffa92344026f0e1df851563942bcebf25f4a032ba87" + } + ] + }, + { + "bom-ref": "47ec90a6aed66dc9", + "type": "file", + "name": "/var/lib/dpkg/info/libssh2-1:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "b139c7158d587ae6b1f2d025f601ee9616dda723" + }, + { + "alg": "SHA-256", + "content": "9dd2295c5404e10d2d0558db92b653abf5a6ccd1ff7783580de79bc080986093" + } + ] + }, + { + "bom-ref": "1f5c9034699c3fbe", + "type": "file", + "name": "/var/lib/dpkg/info/libxml2:amd64.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "ec8aa0a5107b1e9fbee269e9f7e9db50a0f4ae53" + }, + { + "alg": "SHA-256", + "content": "85b75734124afd72185fb683bf1568793d8cf3e1185f566a88509b633766b046" + } + ] + }, + { + "bom-ref": "66e77e4acbad1a53", + "type": "file", + "name": "/var/lib/dpkg/info/lsb-base.list", + "hashes": [ + { + "alg": "SHA-1", + "content": "3e9ae854477f55c3b8e959b1c774a13d2a55d8c8" + }, + { + "alg": "SHA-256", + "content": "cdb270a80c74a84629d08e14fe0e6cefadb23bfe782bcbc828e7c119d5cffc18" + } + ] + }, + { + "bom-ref": "a5e2fce1c4f48e37", + "type": "file", + "name": "/var/lib/dpkg/info/lsb-base.md5sums", + "hashes": [ + { + "alg": "SHA-1", + "content": "cbfbc60e736b7a94d979a16c4f202cd8696040c2" + }, + { + "alg": "SHA-256", + "content": "6029d2f2e1a0805d4d8d7b6b7fc006a55025899ecb49d5855681ce7c5c3e0eea" + } + ] + }, + { + "bom-ref": "fcb75cb7bf4c60ed", + "type": "file", + "name": "/var/lib/dpkg/status", + "hashes": [ + { + "alg": "SHA-1", + "content": "a63fb285150f40b56b122d0969c5f109e2c13742" + }, + { + "alg": "SHA-256", + "content": "bbf81e53c1f31f1aad181f4a3c0852664ec9dc85a88a432b34f80e05e0651be7" + } + ] + } + ], + "dependencies": [ + { + "ref": "pkg:deb/debian/adduser@3.118?arch=all&distro=debian-10&package-id=826edd56153fa710", + "dependsOn": [ + "pkg:deb/debian/debconf@1.5.71?arch=all&distro=debian-10&package-id=fe38a53949ca2b50", + "pkg:deb/debian/passwd@1%3A4.5-1.1?arch=amd64&distro=debian-10&package-id=8b4ea518599f59aa&upstream=shadow" + ] + }, + { + "ref": "pkg:deb/debian/apt@1.8.2.3?arch=amd64&distro=debian-10&package-id=0e5b211b31df59d4", + "dependsOn": [ + "pkg:deb/debian/adduser@3.118?arch=all&distro=debian-10&package-id=826edd56153fa710", + "pkg:deb/debian/debian-archive-keyring@2019.1%2Bdeb10u1?arch=all&distro=debian-10&package-id=1ebe9d91bd632f80", + "pkg:deb/debian/gpgv@2.2.12-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=7f936fc60378589a&upstream=gnupg2", + "pkg:deb/debian/libapt-pkg5.0@1.8.2.3?arch=amd64&distro=debian-10&package-id=6424d2241f89a045&upstream=apt", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libgcc1@1%3A8.3.0-6?arch=amd64&distro=debian-10&package-id=715380b30f28d876&upstream=gcc-8%408.3.0-6", + "pkg:deb/debian/libgnutls30@3.6.7-4%2Bdeb10u7?arch=amd64&distro=debian-10&package-id=2b175f545e2e827e&upstream=gnutls28", + "pkg:deb/debian/libseccomp2@2.3.3-4?arch=amd64&distro=debian-10&package-id=b46e6445b6660a4d&upstream=libseccomp", + "pkg:deb/debian/libstdc%2B%2B6@8.3.0-6?arch=amd64&distro=debian-10&package-id=f6ea4c954058336d&upstream=gcc-8" + ] + }, + { + "ref": "pkg:deb/debian/base-files@10.3%2Bdeb10u10?arch=amd64&distro=debian-10&package-id=ae452714cef9cf4e", + "dependsOn": [ + "pkg:deb/debian/mawk@1.3.3-17%2Bb3?arch=amd64&distro=debian-10&package-id=a795c3217ac08dfa&upstream=mawk%401.3.3-17" + ] + }, + { + "ref": "pkg:deb/debian/base-passwd@3.5.46?arch=amd64&distro=debian-10&package-id=f039cd1f2cf0bafa", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libdebconfclient0@0.249?arch=amd64&distro=debian-10&package-id=0ab574cc914c04a7&upstream=cdebconf" + ] + }, + { + "ref": "pkg:deb/debian/bash@5.0-4?arch=amd64&distro=debian-10&package-id=cd34aee2896ce84f", + "dependsOn": [ + "pkg:deb/debian/base-files@10.3%2Bdeb10u10?arch=amd64&distro=debian-10&package-id=ae452714cef9cf4e", + "pkg:deb/debian/debianutils@4.8.6.1?arch=amd64&distro=debian-10&package-id=b0e8f666c912d962", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libtinfo6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=4d50fedeec9db609&upstream=ncurses" + ] + }, + { + "ref": "pkg:deb/debian/bsdutils@1%3A2.33.1-0.1?arch=amd64&distro=debian-10&package-id=f2a2af9c9a7c48e8&upstream=util-linux%402.33.1-0.1", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libsystemd0@241-7~deb10u8?arch=amd64&distro=debian-10&package-id=af5fa602069b9853&upstream=systemd" + ] + }, + { + "ref": "pkg:deb/debian/coreutils@8.30-3?arch=amd64&distro=debian-10&package-id=17d4bb5fcfeac966", + "dependsOn": [ + "pkg:deb/debian/libacl1@2.2.53-4?arch=amd64&distro=debian-10&package-id=2f436d85fbc9eccc&upstream=acl", + "pkg:deb/debian/libattr1@1%3A2.4.48-4?arch=amd64&distro=debian-10&package-id=354fec30a51d2496&upstream=attr", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libselinux1@2.8-1%2Bb1?arch=amd64&distro=debian-10&package-id=49addc4e237b1a0d&upstream=libselinux%402.8-1" + ] + }, + { + "ref": "pkg:deb/debian/dash@0.5.10.2-5?arch=amd64&distro=debian-10&package-id=9b327d82627f2476", + "dependsOn": [ + "pkg:deb/debian/debconf@1.5.71?arch=all&distro=debian-10&package-id=fe38a53949ca2b50", + "pkg:deb/debian/debianutils@4.8.6.1?arch=amd64&distro=debian-10&package-id=b0e8f666c912d962", + "pkg:deb/debian/dpkg@1.19.7?arch=amd64&distro=debian-10&package-id=da9ff9a377f09d63", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/debconf@1.5.71?arch=all&distro=debian-10&package-id=fe38a53949ca2b50", + "dependsOn": [ + "pkg:deb/debian/perl-base@5.28.1-6%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=12ef1f27f6a6900d&upstream=perl" + ] + }, + { + "ref": "pkg:deb/debian/debianutils@4.8.6.1?arch=amd64&distro=debian-10&package-id=b0e8f666c912d962", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/diffutils@1%3A3.7-3?arch=amd64&distro=debian-10&package-id=a19af11f72f0db48", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/dpkg@1.19.7?arch=amd64&distro=debian-10&package-id=da9ff9a377f09d63", + "dependsOn": [ + "pkg:deb/debian/libbz2-1.0@1.0.6-9.2~deb10u1?arch=amd64&distro=debian-10&package-id=0908c2a2770a4bad&upstream=bzip2", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/liblzma5@5.2.4-1?arch=amd64&distro=debian-10&package-id=c32191f717ec58de&upstream=xz-utils", + "pkg:deb/debian/libselinux1@2.8-1%2Bb1?arch=amd64&distro=debian-10&package-id=49addc4e237b1a0d&upstream=libselinux%402.8-1", + "pkg:deb/debian/tar@1.30%2Bdfsg-6?arch=amd64&distro=debian-10&package-id=62da3202d5716782", + "pkg:deb/debian/zlib1g@1%3A1.2.11.dfsg-1?arch=amd64&distro=debian-10&package-id=bcc78aeb924eb6b8&upstream=zlib" + ] + }, + { + "ref": "pkg:deb/debian/e2fsprogs@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=1675eecc8d4a417f", + "dependsOn": [ + "pkg:deb/debian/libblkid1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=d20eac8952a5e6b5&upstream=util-linux", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libcom-err2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=1a8a9dbb194df5d1&upstream=e2fsprogs", + "pkg:deb/debian/libext2fs2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=e40d517f10e825e0&upstream=e2fsprogs", + "pkg:deb/debian/libss2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=63fa318f9eefbc75&upstream=e2fsprogs", + "pkg:deb/debian/libuuid1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=cc943ca139d0e67b&upstream=util-linux" + ] + }, + { + "ref": "pkg:deb/debian/fdisk@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=4c321df8375fa5f7&upstream=util-linux", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libfdisk1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=54c2753ee170e0ea&upstream=util-linux", + "pkg:deb/debian/libmount1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=c6f6118ba99c54cb&upstream=util-linux", + "pkg:deb/debian/libncursesw6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=6c56928a7efb44d4&upstream=ncurses", + "pkg:deb/debian/libsmartcols1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=a95e9a21c0932258&upstream=util-linux", + "pkg:deb/debian/libtinfo6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=4d50fedeec9db609&upstream=ncurses" + ] + }, + { + "ref": "pkg:deb/debian/findutils@4.6.0%2Bgit%2B20190209-2?arch=amd64&distro=debian-10&package-id=9b3ed054ec2849a7", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libselinux1@2.8-1%2Bb1?arch=amd64&distro=debian-10&package-id=49addc4e237b1a0d&upstream=libselinux%402.8-1" + ] + }, + { + "ref": "pkg:deb/debian/gpgv@2.2.12-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=7f936fc60378589a&upstream=gnupg2", + "dependsOn": [ + "pkg:deb/debian/libbz2-1.0@1.0.6-9.2~deb10u1?arch=amd64&distro=debian-10&package-id=0908c2a2770a4bad&upstream=bzip2", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libgcrypt20@1.8.4-5%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=7957520e1bba8fa0", + "pkg:deb/debian/libgpg-error0@1.35-1?arch=amd64&distro=debian-10&package-id=07738f8b4e87f646&upstream=libgpg-error", + "pkg:deb/debian/zlib1g@1%3A1.2.11.dfsg-1?arch=amd64&distro=debian-10&package-id=bcc78aeb924eb6b8&upstream=zlib" + ] + }, + { + "ref": "pkg:deb/debian/grep@3.3-1?arch=amd64&distro=debian-10&package-id=d53561e4ff2a03a4", + "dependsOn": [ + "pkg:deb/debian/dpkg@1.19.7?arch=amd64&distro=debian-10&package-id=da9ff9a377f09d63", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libpcre3@2%3A8.39-12?arch=amd64&distro=debian-10&package-id=35b7de3a80d53d59&upstream=pcre3" + ] + }, + { + "ref": "pkg:deb/debian/gzip@1.9-3?arch=amd64&distro=debian-10&package-id=febd6969a44b6c8c", + "dependsOn": [ + "pkg:deb/debian/dpkg@1.19.7?arch=amd64&distro=debian-10&package-id=da9ff9a377f09d63", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/hostname@3.21?arch=amd64&distro=debian-10&package-id=ca88bf2c2ca324fb", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/init-system-helpers@1.56%2Bnmu1?arch=all&distro=debian-10&package-id=4a3347396c872902", + "dependsOn": [ + "pkg:deb/debian/perl-base@5.28.1-6%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=12ef1f27f6a6900d&upstream=perl" + ] + }, + { + "ref": "pkg:deb/debian/libacl1@2.2.53-4?arch=amd64&distro=debian-10&package-id=2f436d85fbc9eccc&upstream=acl", + "dependsOn": [ + "pkg:deb/debian/libattr1@1%3A2.4.48-4?arch=amd64&distro=debian-10&package-id=354fec30a51d2496&upstream=attr", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libapr1@1.6.5-1%2Bb1?arch=amd64&distro=debian-10&package-id=489cc45ede79feca&upstream=apr%401.6.5-1", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libuuid1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=cc943ca139d0e67b&upstream=util-linux" + ] + }, + { + "ref": "pkg:deb/debian/libaprutil1-ldap@1.6.1-4?arch=amd64&distro=debian-10&package-id=3d99122937baf6ae&upstream=apr-util", + "dependsOn": [ + "pkg:deb/debian/libaprutil1@1.6.1-4?arch=amd64&distro=debian-10&package-id=eda9a1ee2039d110&upstream=apr-util", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libldap-2.4-2@2.4.47%2Bdfsg-3%2Bdeb10u6?arch=amd64&distro=debian-10&package-id=b63707706e516b73&upstream=openldap" + ] + }, + { + "ref": "pkg:deb/debian/libaprutil1@1.6.1-4?arch=amd64&distro=debian-10&package-id=eda9a1ee2039d110&upstream=apr-util", + "dependsOn": [ + "pkg:deb/debian/libapr1@1.6.5-1%2Bb1?arch=amd64&distro=debian-10&package-id=489cc45ede79feca&upstream=apr%401.6.5-1", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libdb5.3@5.3.28%2Bdfsg1-0.5?arch=amd64&distro=debian-10&package-id=910a20bdce3547ea&upstream=db5.3", + "pkg:deb/debian/libexpat1@2.2.6-2%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=d55bfe42f054b394&upstream=expat", + "pkg:deb/debian/libgdbm6@1.18.1-4?arch=amd64&distro=debian-10&package-id=c9afbf45b6ae55eb&upstream=gdbm", + "pkg:deb/debian/libssl1.1@1.1.1d-0%2Bdeb10u7?arch=amd64&distro=debian-10&package-id=0aa101ed766132f9&upstream=openssl", + "pkg:deb/debian/libuuid1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=cc943ca139d0e67b&upstream=util-linux" + ] + }, + { + "ref": "pkg:deb/debian/libapt-pkg5.0@1.8.2.3?arch=amd64&distro=debian-10&package-id=6424d2241f89a045&upstream=apt", + "dependsOn": [ + "pkg:deb/debian/libbz2-1.0@1.0.6-9.2~deb10u1?arch=amd64&distro=debian-10&package-id=0908c2a2770a4bad&upstream=bzip2", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libgcc1@1%3A8.3.0-6?arch=amd64&distro=debian-10&package-id=715380b30f28d876&upstream=gcc-8%408.3.0-6", + "pkg:deb/debian/liblz4-1@1.8.3-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=2ee01fd2c453e926&upstream=lz4", + "pkg:deb/debian/liblzma5@5.2.4-1?arch=amd64&distro=debian-10&package-id=c32191f717ec58de&upstream=xz-utils", + "pkg:deb/debian/libstdc%2B%2B6@8.3.0-6?arch=amd64&distro=debian-10&package-id=f6ea4c954058336d&upstream=gcc-8", + "pkg:deb/debian/libsystemd0@241-7~deb10u8?arch=amd64&distro=debian-10&package-id=af5fa602069b9853&upstream=systemd", + "pkg:deb/debian/libudev1@241-7~deb10u8?arch=amd64&distro=debian-10&package-id=1650009f99e14534&upstream=systemd", + "pkg:deb/debian/libzstd1@1.3.8%2Bdfsg-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=f15273b1b73a0197&upstream=libzstd", + "pkg:deb/debian/zlib1g@1%3A1.2.11.dfsg-1?arch=amd64&distro=debian-10&package-id=bcc78aeb924eb6b8&upstream=zlib" + ] + }, + { + "ref": "pkg:deb/debian/libattr1@1%3A2.4.48-4?arch=amd64&distro=debian-10&package-id=354fec30a51d2496&upstream=attr", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libaudit1@1%3A2.8.4-3?arch=amd64&distro=debian-10&package-id=e445bed1f84bcb4b&upstream=audit", + "dependsOn": [ + "pkg:deb/debian/libaudit-common@1%3A2.8.4-3?arch=all&distro=debian-10&package-id=15a24d26841e3183&upstream=audit", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libcap-ng0@0.7.9-2?arch=amd64&distro=debian-10&package-id=aaab7004e87358fb&upstream=libcap-ng" + ] + }, + { + "ref": "pkg:deb/debian/libblkid1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=d20eac8952a5e6b5&upstream=util-linux", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libuuid1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=cc943ca139d0e67b&upstream=util-linux" + ] + }, + { + "ref": "pkg:deb/debian/libbrotli1@1.0.7-2%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=d61cdb80f6254e3e&upstream=brotli", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libbz2-1.0@1.0.6-9.2~deb10u1?arch=amd64&distro=debian-10&package-id=0908c2a2770a4bad&upstream=bzip2", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libc-bin@2.28-10?arch=amd64&distro=debian-10&package-id=324d5fb6de70a42b&upstream=glibc", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "dependsOn": [ + "pkg:deb/debian/libgcc1@1%3A8.3.0-6?arch=amd64&distro=debian-10&package-id=715380b30f28d876&upstream=gcc-8%408.3.0-6" + ] + }, + { + "ref": "pkg:deb/debian/libcap-ng0@0.7.9-2?arch=amd64&distro=debian-10&package-id=aaab7004e87358fb&upstream=libcap-ng", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libcom-err2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=1a8a9dbb194df5d1&upstream=e2fsprogs", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libcurl4@7.64.0-4%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=af03801f530228cd&upstream=curl", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libcom-err2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=1a8a9dbb194df5d1&upstream=e2fsprogs", + "pkg:deb/debian/libgssapi-krb5-2@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=563dc09768844327&upstream=krb5", + "pkg:deb/debian/libidn2-0@2.0.5-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=5a5081d247582e95&upstream=libidn2", + "pkg:deb/debian/libk5crypto3@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=04ecc244c55268d8&upstream=krb5", + "pkg:deb/debian/libkrb5-3@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=2702e37fa523f601&upstream=krb5", + "pkg:deb/debian/libldap-2.4-2@2.4.47%2Bdfsg-3%2Bdeb10u6?arch=amd64&distro=debian-10&package-id=b63707706e516b73&upstream=openldap", + "pkg:deb/debian/libnghttp2-14@1.36.0-2%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=0ee3c902a7004593&upstream=nghttp2", + "pkg:deb/debian/libpsl5@0.20.2-2?arch=amd64&distro=debian-10&package-id=409f4da8465b655e&upstream=libpsl", + "pkg:deb/debian/librtmp1@2.4%2B20151223.gitfa8646d.1-2?arch=amd64&distro=debian-10&package-id=4e31bab7a6ca0f63&upstream=rtmpdump", + "pkg:deb/debian/libssh2-1@1.8.0-2.1?arch=amd64&distro=debian-10&package-id=16faa100e8d6ebcf&upstream=libssh2", + "pkg:deb/debian/libssl1.1@1.1.1d-0%2Bdeb10u7?arch=amd64&distro=debian-10&package-id=0aa101ed766132f9&upstream=openssl", + "pkg:deb/debian/zlib1g@1%3A1.2.11.dfsg-1?arch=amd64&distro=debian-10&package-id=bcc78aeb924eb6b8&upstream=zlib" + ] + }, + { + "ref": "pkg:deb/debian/libdb5.3@5.3.28%2Bdfsg1-0.5?arch=amd64&distro=debian-10&package-id=910a20bdce3547ea&upstream=db5.3", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libdebconfclient0@0.249?arch=amd64&distro=debian-10&package-id=0ab574cc914c04a7&upstream=cdebconf", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libexpat1@2.2.6-2%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=d55bfe42f054b394&upstream=expat", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libext2fs2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=e40d517f10e825e0&upstream=e2fsprogs", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libfdisk1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=54c2753ee170e0ea&upstream=util-linux", + "dependsOn": [ + "pkg:deb/debian/libblkid1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=d20eac8952a5e6b5&upstream=util-linux", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libuuid1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=cc943ca139d0e67b&upstream=util-linux" + ] + }, + { + "ref": "pkg:deb/debian/libffi6@3.2.1-9?arch=amd64&distro=debian-10&package-id=81f81c06eb491929&upstream=libffi", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libgcc1@1%3A8.3.0-6?arch=amd64&distro=debian-10&package-id=715380b30f28d876&upstream=gcc-8%408.3.0-6", + "dependsOn": [ + "pkg:deb/debian/gcc-8-base@8.3.0-6?arch=amd64&distro=debian-10&package-id=0b418e36eec6c020&upstream=gcc-8", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libgcrypt20@1.8.4-5%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=7957520e1bba8fa0", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libgpg-error0@1.35-1?arch=amd64&distro=debian-10&package-id=07738f8b4e87f646&upstream=libgpg-error" + ] + }, + { + "ref": "pkg:deb/debian/libgdbm6@1.18.1-4?arch=amd64&distro=debian-10&package-id=c9afbf45b6ae55eb&upstream=gdbm", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libgmp10@2%3A6.1.2%2Bdfsg-4?arch=amd64&distro=debian-10&package-id=5a68e3044376edb7&upstream=gmp", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libgnutls30@3.6.7-4%2Bdeb10u7?arch=amd64&distro=debian-10&package-id=2b175f545e2e827e&upstream=gnutls28", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libgmp10@2%3A6.1.2%2Bdfsg-4?arch=amd64&distro=debian-10&package-id=5a68e3044376edb7&upstream=gmp", + "pkg:deb/debian/libhogweed4@3.4.1-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=1c418be752fe00a9&upstream=nettle", + "pkg:deb/debian/libidn2-0@2.0.5-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=5a5081d247582e95&upstream=libidn2", + "pkg:deb/debian/libnettle6@3.4.1-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=89d7efaea95993d3&upstream=nettle", + "pkg:deb/debian/libp11-kit0@0.23.15-2%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=dac1be12b689bc10&upstream=p11-kit", + "pkg:deb/debian/libtasn1-6@4.13-3?arch=amd64&distro=debian-10&package-id=4472b190d0061f51", + "pkg:deb/debian/libunistring2@0.9.10-1?arch=amd64&distro=debian-10&package-id=337ddb48ec21ed97&upstream=libunistring" + ] + }, + { + "ref": "pkg:deb/debian/libgpg-error0@1.35-1?arch=amd64&distro=debian-10&package-id=07738f8b4e87f646&upstream=libgpg-error", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libgssapi-krb5-2@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=563dc09768844327&upstream=krb5", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libcom-err2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=1a8a9dbb194df5d1&upstream=e2fsprogs", + "pkg:deb/debian/libk5crypto3@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=04ecc244c55268d8&upstream=krb5", + "pkg:deb/debian/libkeyutils1@1.6-6?arch=amd64&distro=debian-10&package-id=1ed46086dbffc087&upstream=keyutils", + "pkg:deb/debian/libkrb5-3@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=2702e37fa523f601&upstream=krb5", + "pkg:deb/debian/libkrb5support0@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=23be6b473ec0b06b&upstream=krb5" + ] + }, + { + "ref": "pkg:deb/debian/libhogweed4@3.4.1-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=1c418be752fe00a9&upstream=nettle", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libgmp10@2%3A6.1.2%2Bdfsg-4?arch=amd64&distro=debian-10&package-id=5a68e3044376edb7&upstream=gmp", + "pkg:deb/debian/libnettle6@3.4.1-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=89d7efaea95993d3&upstream=nettle" + ] + }, + { + "ref": "pkg:deb/debian/libicu63@63.1-6%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=a180ea9e3b7989a3&upstream=icu", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libgcc1@1%3A8.3.0-6?arch=amd64&distro=debian-10&package-id=715380b30f28d876&upstream=gcc-8%408.3.0-6", + "pkg:deb/debian/libstdc%2B%2B6@8.3.0-6?arch=amd64&distro=debian-10&package-id=f6ea4c954058336d&upstream=gcc-8" + ] + }, + { + "ref": "pkg:deb/debian/libidn2-0@2.0.5-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=5a5081d247582e95&upstream=libidn2", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libunistring2@0.9.10-1?arch=amd64&distro=debian-10&package-id=337ddb48ec21ed97&upstream=libunistring" + ] + }, + { + "ref": "pkg:deb/debian/libjansson4@2.12-1?arch=amd64&distro=debian-10&package-id=88fb69b90900ef4f&upstream=jansson", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libk5crypto3@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=04ecc244c55268d8&upstream=krb5", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libkeyutils1@1.6-6?arch=amd64&distro=debian-10&package-id=1ed46086dbffc087&upstream=keyutils", + "pkg:deb/debian/libkrb5support0@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=23be6b473ec0b06b&upstream=krb5" + ] + }, + { + "ref": "pkg:deb/debian/libkeyutils1@1.6-6?arch=amd64&distro=debian-10&package-id=1ed46086dbffc087&upstream=keyutils", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libkrb5-3@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=2702e37fa523f601&upstream=krb5", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libcom-err2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=1a8a9dbb194df5d1&upstream=e2fsprogs", + "pkg:deb/debian/libk5crypto3@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=04ecc244c55268d8&upstream=krb5", + "pkg:deb/debian/libkeyutils1@1.6-6?arch=amd64&distro=debian-10&package-id=1ed46086dbffc087&upstream=keyutils", + "pkg:deb/debian/libkrb5support0@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=23be6b473ec0b06b&upstream=krb5", + "pkg:deb/debian/libssl1.1@1.1.1d-0%2Bdeb10u7?arch=amd64&distro=debian-10&package-id=0aa101ed766132f9&upstream=openssl" + ] + }, + { + "ref": "pkg:deb/debian/libkrb5support0@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=23be6b473ec0b06b&upstream=krb5", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libkeyutils1@1.6-6?arch=amd64&distro=debian-10&package-id=1ed46086dbffc087&upstream=keyutils" + ] + }, + { + "ref": "pkg:deb/debian/libldap-2.4-2@2.4.47%2Bdfsg-3%2Bdeb10u6?arch=amd64&distro=debian-10&package-id=b63707706e516b73&upstream=openldap", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libgnutls30@3.6.7-4%2Bdeb10u7?arch=amd64&distro=debian-10&package-id=2b175f545e2e827e&upstream=gnutls28", + "pkg:deb/debian/libldap-common@2.4.47%2Bdfsg-3%2Bdeb10u6?arch=all&distro=debian-10&package-id=f04113280174888f&upstream=openldap", + "pkg:deb/debian/libsasl2-2@2.1.27%2Bdfsg-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=56eb272c9677fc6a&upstream=cyrus-sasl2" + ] + }, + { + "ref": "pkg:deb/debian/liblua5.2-0@5.2.4-1.1%2Bb2?arch=amd64&distro=debian-10&package-id=60163e6ffcd36f87&upstream=lua5.2%405.2.4-1.1", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libgcc1@1%3A8.3.0-6?arch=amd64&distro=debian-10&package-id=715380b30f28d876&upstream=gcc-8%408.3.0-6", + "pkg:deb/debian/libstdc%2B%2B6@8.3.0-6?arch=amd64&distro=debian-10&package-id=f6ea4c954058336d&upstream=gcc-8" + ] + }, + { + "ref": "pkg:deb/debian/liblz4-1@1.8.3-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=2ee01fd2c453e926&upstream=lz4", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/liblzma5@5.2.4-1?arch=amd64&distro=debian-10&package-id=c32191f717ec58de&upstream=xz-utils", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libmount1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=c6f6118ba99c54cb&upstream=util-linux", + "dependsOn": [ + "pkg:deb/debian/libblkid1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=d20eac8952a5e6b5&upstream=util-linux", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libselinux1@2.8-1%2Bb1?arch=amd64&distro=debian-10&package-id=49addc4e237b1a0d&upstream=libselinux%402.8-1" + ] + }, + { + "ref": "pkg:deb/debian/libncursesw6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=6c56928a7efb44d4&upstream=ncurses", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libtinfo6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=4d50fedeec9db609&upstream=ncurses" + ] + }, + { + "ref": "pkg:deb/debian/libnettle6@3.4.1-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=89d7efaea95993d3&upstream=nettle", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libnghttp2-14@1.36.0-2%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=0ee3c902a7004593&upstream=nghttp2", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libp11-kit0@0.23.15-2%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=dac1be12b689bc10&upstream=p11-kit", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libffi6@3.2.1-9?arch=amd64&distro=debian-10&package-id=81f81c06eb491929&upstream=libffi" + ] + }, + { + "ref": "pkg:deb/debian/libpam-modules-bin@1.3.1-5?arch=amd64&distro=debian-10&package-id=631d9f9526108591&upstream=pam", + "dependsOn": [ + "pkg:deb/debian/libaudit1@1%3A2.8.4-3?arch=amd64&distro=debian-10&package-id=e445bed1f84bcb4b&upstream=audit", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libpam0g@1.3.1-5?arch=amd64&distro=debian-10&package-id=75c54a61b843e467&upstream=pam", + "pkg:deb/debian/libselinux1@2.8-1%2Bb1?arch=amd64&distro=debian-10&package-id=49addc4e237b1a0d&upstream=libselinux%402.8-1" + ] + }, + { + "ref": "pkg:deb/debian/libpam-modules@1.3.1-5?arch=amd64&distro=debian-10&package-id=5913b683bb6ecea4&upstream=pam", + "dependsOn": [ + "pkg:deb/debian/debconf@1.5.71?arch=all&distro=debian-10&package-id=fe38a53949ca2b50", + "pkg:deb/debian/libaudit1@1%3A2.8.4-3?arch=amd64&distro=debian-10&package-id=e445bed1f84bcb4b&upstream=audit", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libdb5.3@5.3.28%2Bdfsg1-0.5?arch=amd64&distro=debian-10&package-id=910a20bdce3547ea&upstream=db5.3", + "pkg:deb/debian/libpam-modules-bin@1.3.1-5?arch=amd64&distro=debian-10&package-id=631d9f9526108591&upstream=pam", + "pkg:deb/debian/libpam0g@1.3.1-5?arch=amd64&distro=debian-10&package-id=75c54a61b843e467&upstream=pam", + "pkg:deb/debian/libselinux1@2.8-1%2Bb1?arch=amd64&distro=debian-10&package-id=49addc4e237b1a0d&upstream=libselinux%402.8-1" + ] + }, + { + "ref": "pkg:deb/debian/libpam-runtime@1.3.1-5?arch=all&distro=debian-10&package-id=25a1580763811c2a&upstream=pam", + "dependsOn": [ + "pkg:deb/debian/debconf@1.5.71?arch=all&distro=debian-10&package-id=fe38a53949ca2b50", + "pkg:deb/debian/libpam-modules@1.3.1-5?arch=amd64&distro=debian-10&package-id=5913b683bb6ecea4&upstream=pam" + ] + }, + { + "ref": "pkg:deb/debian/libpam0g@1.3.1-5?arch=amd64&distro=debian-10&package-id=75c54a61b843e467&upstream=pam", + "dependsOn": [ + "pkg:deb/debian/debconf@1.5.71?arch=all&distro=debian-10&package-id=fe38a53949ca2b50", + "pkg:deb/debian/libaudit1@1%3A2.8.4-3?arch=amd64&distro=debian-10&package-id=e445bed1f84bcb4b&upstream=audit", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libpcre3@2%3A8.39-12?arch=amd64&distro=debian-10&package-id=35b7de3a80d53d59&upstream=pcre3", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libpsl5@0.20.2-2?arch=amd64&distro=debian-10&package-id=409f4da8465b655e&upstream=libpsl", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libidn2-0@2.0.5-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=5a5081d247582e95&upstream=libidn2", + "pkg:deb/debian/libunistring2@0.9.10-1?arch=amd64&distro=debian-10&package-id=337ddb48ec21ed97&upstream=libunistring" + ] + }, + { + "ref": "pkg:deb/debian/librtmp1@2.4%2B20151223.gitfa8646d.1-2?arch=amd64&distro=debian-10&package-id=4e31bab7a6ca0f63&upstream=rtmpdump", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libgmp10@2%3A6.1.2%2Bdfsg-4?arch=amd64&distro=debian-10&package-id=5a68e3044376edb7&upstream=gmp", + "pkg:deb/debian/libgnutls30@3.6.7-4%2Bdeb10u7?arch=amd64&distro=debian-10&package-id=2b175f545e2e827e&upstream=gnutls28", + "pkg:deb/debian/libhogweed4@3.4.1-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=1c418be752fe00a9&upstream=nettle", + "pkg:deb/debian/libnettle6@3.4.1-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=89d7efaea95993d3&upstream=nettle", + "pkg:deb/debian/zlib1g@1%3A1.2.11.dfsg-1?arch=amd64&distro=debian-10&package-id=bcc78aeb924eb6b8&upstream=zlib" + ] + }, + { + "ref": "pkg:deb/debian/libsasl2-2@2.1.27%2Bdfsg-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=56eb272c9677fc6a&upstream=cyrus-sasl2", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libsasl2-modules-db@2.1.27%2Bdfsg-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=0dddbf5f31db948d&upstream=cyrus-sasl2" + ] + }, + { + "ref": "pkg:deb/debian/libsasl2-modules-db@2.1.27%2Bdfsg-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=0dddbf5f31db948d&upstream=cyrus-sasl2", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libdb5.3@5.3.28%2Bdfsg1-0.5?arch=amd64&distro=debian-10&package-id=910a20bdce3547ea&upstream=db5.3" + ] + }, + { + "ref": "pkg:deb/debian/libseccomp2@2.3.3-4?arch=amd64&distro=debian-10&package-id=b46e6445b6660a4d&upstream=libseccomp", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libselinux1@2.8-1%2Bb1?arch=amd64&distro=debian-10&package-id=49addc4e237b1a0d&upstream=libselinux%402.8-1", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libpcre3@2%3A8.39-12?arch=amd64&distro=debian-10&package-id=35b7de3a80d53d59&upstream=pcre3" + ] + }, + { + "ref": "pkg:deb/debian/libsemanage1@2.8-2?arch=amd64&distro=debian-10&package-id=ee0c44fcf6fdf849&upstream=libsemanage", + "dependsOn": [ + "pkg:deb/debian/libaudit1@1%3A2.8.4-3?arch=amd64&distro=debian-10&package-id=e445bed1f84bcb4b&upstream=audit", + "pkg:deb/debian/libbz2-1.0@1.0.6-9.2~deb10u1?arch=amd64&distro=debian-10&package-id=0908c2a2770a4bad&upstream=bzip2", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libselinux1@2.8-1%2Bb1?arch=amd64&distro=debian-10&package-id=49addc4e237b1a0d&upstream=libselinux%402.8-1", + "pkg:deb/debian/libsemanage-common@2.8-2?arch=all&distro=debian-10&package-id=f140402ff5125f8f&upstream=libsemanage", + "pkg:deb/debian/libsepol1@2.8-1?arch=amd64&distro=debian-10&package-id=e475ad99443adf15&upstream=libsepol" + ] + }, + { + "ref": "pkg:deb/debian/libsepol1@2.8-1?arch=amd64&distro=debian-10&package-id=e475ad99443adf15&upstream=libsepol", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libsmartcols1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=a95e9a21c0932258&upstream=util-linux", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libss2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=63fa318f9eefbc75&upstream=e2fsprogs", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libcom-err2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=1a8a9dbb194df5d1&upstream=e2fsprogs" + ] + }, + { + "ref": "pkg:deb/debian/libssh2-1@1.8.0-2.1?arch=amd64&distro=debian-10&package-id=16faa100e8d6ebcf&upstream=libssh2", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libgcrypt20@1.8.4-5%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=7957520e1bba8fa0", + "pkg:deb/debian/zlib1g@1%3A1.2.11.dfsg-1?arch=amd64&distro=debian-10&package-id=bcc78aeb924eb6b8&upstream=zlib" + ] + }, + { + "ref": "pkg:deb/debian/libssl1.1@1.1.1d-0%2Bdeb10u7?arch=amd64&distro=debian-10&package-id=0aa101ed766132f9&upstream=openssl", + "dependsOn": [ + "pkg:deb/debian/debconf@1.5.71?arch=all&distro=debian-10&package-id=fe38a53949ca2b50", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libstdc%2B%2B6@8.3.0-6?arch=amd64&distro=debian-10&package-id=f6ea4c954058336d&upstream=gcc-8", + "dependsOn": [ + "pkg:deb/debian/gcc-8-base@8.3.0-6?arch=amd64&distro=debian-10&package-id=0b418e36eec6c020&upstream=gcc-8", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libgcc1@1%3A8.3.0-6?arch=amd64&distro=debian-10&package-id=715380b30f28d876&upstream=gcc-8%408.3.0-6" + ] + }, + { + "ref": "pkg:deb/debian/libsystemd0@241-7~deb10u8?arch=amd64&distro=debian-10&package-id=af5fa602069b9853&upstream=systemd", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libgcrypt20@1.8.4-5%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=7957520e1bba8fa0", + "pkg:deb/debian/liblz4-1@1.8.3-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=2ee01fd2c453e926&upstream=lz4", + "pkg:deb/debian/liblzma5@5.2.4-1?arch=amd64&distro=debian-10&package-id=c32191f717ec58de&upstream=xz-utils" + ] + }, + { + "ref": "pkg:deb/debian/libtasn1-6@4.13-3?arch=amd64&distro=debian-10&package-id=4472b190d0061f51", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libtinfo6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=4d50fedeec9db609&upstream=ncurses", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libudev1@241-7~deb10u8?arch=amd64&distro=debian-10&package-id=1650009f99e14534&upstream=systemd", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libunistring2@0.9.10-1?arch=amd64&distro=debian-10&package-id=337ddb48ec21ed97&upstream=libunistring", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libuuid1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=cc943ca139d0e67b&upstream=util-linux", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/libxml2@2.9.4%2Bdfsg1-7%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=2b71d5263434c464", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libicu63@63.1-6%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=a180ea9e3b7989a3&upstream=icu", + "pkg:deb/debian/liblzma5@5.2.4-1?arch=amd64&distro=debian-10&package-id=c32191f717ec58de&upstream=xz-utils", + "pkg:deb/debian/zlib1g@1%3A1.2.11.dfsg-1?arch=amd64&distro=debian-10&package-id=bcc78aeb924eb6b8&upstream=zlib" + ] + }, + { + "ref": "pkg:deb/debian/libzstd1@1.3.8%2Bdfsg-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=f15273b1b73a0197&upstream=libzstd", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/login@1%3A4.5-1.1?arch=amd64&distro=debian-10&package-id=beffe62c711b8d0b&upstream=shadow", + "dependsOn": [ + "pkg:deb/debian/libaudit1@1%3A2.8.4-3?arch=amd64&distro=debian-10&package-id=e445bed1f84bcb4b&upstream=audit", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libpam-modules@1.3.1-5?arch=amd64&distro=debian-10&package-id=5913b683bb6ecea4&upstream=pam", + "pkg:deb/debian/libpam-runtime@1.3.1-5?arch=all&distro=debian-10&package-id=25a1580763811c2a&upstream=pam", + "pkg:deb/debian/libpam0g@1.3.1-5?arch=amd64&distro=debian-10&package-id=75c54a61b843e467&upstream=pam" + ] + }, + { + "ref": "pkg:deb/debian/mawk@1.3.3-17%2Bb3?arch=amd64&distro=debian-10&package-id=a795c3217ac08dfa&upstream=mawk%401.3.3-17", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/mount@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=0cd3087f123a0ab4&upstream=util-linux", + "dependsOn": [ + "pkg:deb/debian/libblkid1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=d20eac8952a5e6b5&upstream=util-linux", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libmount1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=c6f6118ba99c54cb&upstream=util-linux", + "pkg:deb/debian/libselinux1@2.8-1%2Bb1?arch=amd64&distro=debian-10&package-id=49addc4e237b1a0d&upstream=libselinux%402.8-1", + "pkg:deb/debian/libsmartcols1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=a95e9a21c0932258&upstream=util-linux", + "pkg:deb/debian/util-linux@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=3d071e40c62fe471" + ] + }, + { + "ref": "pkg:deb/debian/ncurses-bin@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=68e8ed2220f015ff&upstream=ncurses", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libtinfo6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=4d50fedeec9db609&upstream=ncurses" + ] + }, + { + "ref": "pkg:deb/debian/passwd@1%3A4.5-1.1?arch=amd64&distro=debian-10&package-id=8b4ea518599f59aa&upstream=shadow", + "dependsOn": [ + "pkg:deb/debian/libaudit1@1%3A2.8.4-3?arch=amd64&distro=debian-10&package-id=e445bed1f84bcb4b&upstream=audit", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libpam-modules@1.3.1-5?arch=amd64&distro=debian-10&package-id=5913b683bb6ecea4&upstream=pam", + "pkg:deb/debian/libpam0g@1.3.1-5?arch=amd64&distro=debian-10&package-id=75c54a61b843e467&upstream=pam", + "pkg:deb/debian/libselinux1@2.8-1%2Bb1?arch=amd64&distro=debian-10&package-id=49addc4e237b1a0d&upstream=libselinux%402.8-1", + "pkg:deb/debian/libsemanage1@2.8-2?arch=amd64&distro=debian-10&package-id=ee0c44fcf6fdf849&upstream=libsemanage" + ] + }, + { + "ref": "pkg:deb/debian/perl-base@5.28.1-6%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=12ef1f27f6a6900d&upstream=perl", + "dependsOn": [ + "pkg:deb/debian/dpkg@1.19.7?arch=amd64&distro=debian-10&package-id=da9ff9a377f09d63", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + }, + { + "ref": "pkg:deb/debian/sed@4.7-1?arch=amd64&distro=debian-10&package-id=8afeab9e14add71f", + "dependsOn": [ + "pkg:deb/debian/libacl1@2.2.53-4?arch=amd64&distro=debian-10&package-id=2f436d85fbc9eccc&upstream=acl", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libselinux1@2.8-1%2Bb1?arch=amd64&distro=debian-10&package-id=49addc4e237b1a0d&upstream=libselinux%402.8-1" + ] + }, + { + "ref": "pkg:deb/debian/sysvinit-utils@2.93-8?arch=amd64&distro=debian-10&package-id=84b2ad21b188f1d2&upstream=sysvinit", + "dependsOn": [ + "pkg:deb/debian/init-system-helpers@1.56%2Bnmu1?arch=all&distro=debian-10&package-id=4a3347396c872902", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/util-linux@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=3d071e40c62fe471" + ] + }, + { + "ref": "pkg:deb/debian/tar@1.30%2Bdfsg-6?arch=amd64&distro=debian-10&package-id=62da3202d5716782", + "dependsOn": [ + "pkg:deb/debian/libacl1@2.2.53-4?arch=amd64&distro=debian-10&package-id=2f436d85fbc9eccc&upstream=acl", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libselinux1@2.8-1%2Bb1?arch=amd64&distro=debian-10&package-id=49addc4e237b1a0d&upstream=libselinux%402.8-1" + ] + }, + { + "ref": "pkg:deb/debian/tzdata@2021a-0%2Bdeb10u1?arch=all&distro=debian-10&package-id=11e09e914c1cd4a6", + "dependsOn": [ + "pkg:deb/debian/debconf@1.5.71?arch=all&distro=debian-10&package-id=fe38a53949ca2b50" + ] + }, + { + "ref": "pkg:deb/debian/util-linux@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=3d071e40c62fe471", + "dependsOn": [ + "pkg:deb/debian/fdisk@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=4c321df8375fa5f7&upstream=util-linux", + "pkg:deb/debian/libaudit1@1%3A2.8.4-3?arch=amd64&distro=debian-10&package-id=e445bed1f84bcb4b&upstream=audit", + "pkg:deb/debian/libblkid1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=d20eac8952a5e6b5&upstream=util-linux", + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", + "pkg:deb/debian/libcap-ng0@0.7.9-2?arch=amd64&distro=debian-10&package-id=aaab7004e87358fb&upstream=libcap-ng", + "pkg:deb/debian/libmount1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=c6f6118ba99c54cb&upstream=util-linux", + "pkg:deb/debian/libpam0g@1.3.1-5?arch=amd64&distro=debian-10&package-id=75c54a61b843e467&upstream=pam", + "pkg:deb/debian/libselinux1@2.8-1%2Bb1?arch=amd64&distro=debian-10&package-id=49addc4e237b1a0d&upstream=libselinux%402.8-1", + "pkg:deb/debian/libsmartcols1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=a95e9a21c0932258&upstream=util-linux", + "pkg:deb/debian/libsystemd0@241-7~deb10u8?arch=amd64&distro=debian-10&package-id=af5fa602069b9853&upstream=systemd", + "pkg:deb/debian/libtinfo6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=4d50fedeec9db609&upstream=ncurses", + "pkg:deb/debian/libudev1@241-7~deb10u8?arch=amd64&distro=debian-10&package-id=1650009f99e14534&upstream=systemd", + "pkg:deb/debian/libuuid1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=cc943ca139d0e67b&upstream=util-linux", + "pkg:deb/debian/login@1%3A4.5-1.1?arch=amd64&distro=debian-10&package-id=beffe62c711b8d0b&upstream=shadow", + "pkg:deb/debian/zlib1g@1%3A1.2.11.dfsg-1?arch=amd64&distro=debian-10&package-id=bcc78aeb924eb6b8&upstream=zlib" + ] + }, + { + "ref": "pkg:deb/debian/zlib1g@1%3A1.2.11.dfsg-1?arch=amd64&distro=debian-10&package-id=bcc78aeb924eb6b8&upstream=zlib", + "dependsOn": [ + "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" + ] + } + ] +} From 695cf941be53db1362d28013eb2402fb427bcc57 Mon Sep 17 00:00:00 2001 From: Noah Santschi-Cooney Date: Tue, 20 May 2025 11:12:39 +0100 Subject: [PATCH 2/5] chore: add syft and skopeo to GHA --- .github/workflows/pr.yml | 11 ++ .github/workflows/stage.yml | 12 +- .../tst_manifests/image/httpd:2.4.49.json | 110 +++++++++--------- .../image/httpd:2.4.49^^amd64.json | 110 +++++++++--------- ...b693a54ae9ad5e6317fcdbb7a2d9b8c3b1364.json | 110 +++++++++--------- 5 files changed, 187 insertions(+), 166 deletions(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index bfc7651..8b15a69 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -70,6 +70,17 @@ jobs: - name: Setup Gradle uses: gradle/actions/setup-gradle@v4 + - name: Setup syft + uses: jaxxstorm/action-install-gh-release@v1.10.0 + with: + repo: anchore/syft + platform: linux + arch: amd64 + # tag: the latest one, so we can catch changes + + - name: Setup skopeo + run: sudo apt update && sudo apt-get -y install skopeo + - name: Install project modules run: npm ci diff --git a/.github/workflows/stage.yml b/.github/workflows/stage.yml index a36074a..e39d590 100644 --- a/.github/workflows/stage.yml +++ b/.github/workflows/stage.yml @@ -60,7 +60,6 @@ jobs: - name: Prepare PNPM run: corepack prepare pnpm@latest --activate - - name: Setup Java 17 uses: actions/setup-java@v4 with: @@ -76,6 +75,17 @@ jobs: - name: Setup Gradle uses: gradle/gradle-build-action@v3 + - name: Setup syft + uses: jaxxstorm/action-install-gh-release@v1.10.0 + with: + repo: anchore/syft + platform: linux + arch: amd64 + # tag: the latest one, so we can catch changes + + - name: Setup skopeo + run: sudo apt update && sudo apt-get -y install skopeo + - name: Configure git run: | git config user.name "${{ github.actor }}" diff --git a/test/providers/tst_manifests/image/httpd:2.4.49.json b/test/providers/tst_manifests/image/httpd:2.4.49.json index 93e7390..8a166dc 100644 --- a/test/providers/tst_manifests/image/httpd:2.4.49.json +++ b/test/providers/tst_manifests/image/httpd:2.4.49.json @@ -4086,7 +4086,7 @@ ] }, { - "bom-ref": "pkg:deb/debian/libcom-err2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=1a8a9dbb194df5d1&upstream=e2fsprogs", + "bom-ref": "pkg:deb/debian/libcom-err2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=3ae0e410cfe581ff&upstream=e2fsprogs", "type": "library", "publisher": "Theodore Y. Ts'o ", "name": "libcom-err2", @@ -4094,7 +4094,7 @@ "licenses": [ { "license": { - "name": "LicenseRef-sha256:9e3a4384b6d8d2358d44103f62bcd948328b3f8a63a1a6baa66abeb43302d581" + "name": "sha256:9e3a4384b6d8d2358d44103f62bcd948328b3f8a63a1a6baa66abeb43302d581" } } ], @@ -4271,7 +4271,7 @@ ] }, { - "bom-ref": "pkg:deb/debian/libdb5.3@5.3.28%2Bdfsg1-0.5?arch=amd64&distro=debian-10&package-id=910a20bdce3547ea&upstream=db5.3", + "bom-ref": "pkg:deb/debian/libdb5.3@5.3.28%2Bdfsg1-0.5?arch=amd64&distro=debian-10&package-id=24cab09f870cf7ee&upstream=db5.3", "type": "library", "publisher": "Debian Berkeley DB Team ", "name": "libdb5.3", @@ -4279,7 +4279,7 @@ "licenses": [ { "license": { - "name": "LicenseRef-sha256:b3bbc6fbb3f2a0e6a487e953eb8c3cc4bdb6f4150f7f51d20b1e9a3c8ef92d3d" + "name": "sha256:b3bbc6fbb3f2a0e6a487e953eb8c3cc4bdb6f4150f7f51d20b1e9a3c8ef92d3d" } } ], @@ -5647,7 +5647,7 @@ ] }, { - "bom-ref": "pkg:deb/debian/libicu63@63.1-6%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=a180ea9e3b7989a3&upstream=icu", + "bom-ref": "pkg:deb/debian/libicu63@63.1-6%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=59d3854e0c9375a1&upstream=icu", "type": "library", "publisher": "Laszlo Boszormenyi (GCS) ", "name": "libicu63", @@ -5655,7 +5655,7 @@ "licenses": [ { "license": { - "name": "LicenseRef-sha256:0515ea67c829d73cf54d074ef7bd030968419f98a83e523d4300ea0f4d18ebc9" + "name": "sha256:0515ea67c829d73cf54d074ef7bd030968419f98a83e523d4300ea0f4d18ebc9" } } ], @@ -6182,7 +6182,7 @@ ] }, { - "bom-ref": "pkg:deb/debian/libldap-2.4-2@2.4.47%2Bdfsg-3%2Bdeb10u6?arch=amd64&distro=debian-10&package-id=b63707706e516b73&upstream=openldap", + "bom-ref": "pkg:deb/debian/libldap-2.4-2@2.4.47%2Bdfsg-3%2Bdeb10u6?arch=amd64&distro=debian-10&package-id=1cfe6e2be5a9442c&upstream=openldap", "type": "library", "publisher": "Debian OpenLDAP Maintainers ", "name": "libldap-2.4-2", @@ -6190,7 +6190,7 @@ "licenses": [ { "license": { - "name": "LicenseRef-sha256:0690f1ee382f98e95b446743db55395641d5e258de65939e9cb1c660d67a43a8" + "name": "sha256:0690f1ee382f98e95b446743db55395641d5e258de65939e9cb1c660d67a43a8" } } ], @@ -6288,7 +6288,7 @@ ] }, { - "bom-ref": "pkg:deb/debian/libldap-common@2.4.47%2Bdfsg-3%2Bdeb10u6?arch=all&distro=debian-10&package-id=f04113280174888f&upstream=openldap", + "bom-ref": "pkg:deb/debian/libldap-common@2.4.47%2Bdfsg-3%2Bdeb10u6?arch=all&distro=debian-10&package-id=e69f561869ff04f0&upstream=openldap", "type": "library", "publisher": "Debian OpenLDAP Maintainers ", "name": "libldap-common", @@ -6296,7 +6296,7 @@ "licenses": [ { "license": { - "name": "LicenseRef-sha256:0690f1ee382f98e95b446743db55395641d5e258de65939e9cb1c660d67a43a8" + "name": "sha256:0690f1ee382f98e95b446743db55395641d5e258de65939e9cb1c660d67a43a8" } } ], @@ -6884,7 +6884,7 @@ ] }, { - "bom-ref": "pkg:deb/debian/libncursesw6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=6c56928a7efb44d4&upstream=ncurses", + "bom-ref": "pkg:deb/debian/libncursesw6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=dd6e91cb036cd97c&upstream=ncurses", "type": "library", "publisher": "Craig Small ", "name": "libncursesw6", @@ -6892,7 +6892,7 @@ "licenses": [ { "license": { - "name": "LicenseRef-sha256:5e8ee902c8906ddb7779fd36dc9979cb08b51fbebf7c0b1a9aeb78af382af590" + "name": "sha256:5e8ee902c8906ddb7779fd36dc9979cb08b51fbebf7c0b1a9aeb78af382af590" } } ], @@ -7767,7 +7767,7 @@ ] }, { - "bom-ref": "pkg:deb/debian/libpcre3@2%3A8.39-12?arch=amd64&distro=debian-10&package-id=35b7de3a80d53d59&upstream=pcre3", + "bom-ref": "pkg:deb/debian/libpcre3@2%3A8.39-12?arch=amd64&distro=debian-10&package-id=a2c5569d9b015a19&upstream=pcre3", "type": "library", "publisher": "Matthew Vernon ", "name": "libpcre3", @@ -7775,7 +7775,7 @@ "licenses": [ { "license": { - "name": "LicenseRef-sha256:ac9276490d2fa167442ae1aae33926514ad10c8886baa40046c5e367fccc5938" + "name": "sha256:ac9276490d2fa167442ae1aae33926514ad10c8886baa40046c5e367fccc5938" } } ], @@ -8798,7 +8798,7 @@ ] }, { - "bom-ref": "pkg:deb/debian/libss2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=63fa318f9eefbc75&upstream=e2fsprogs", + "bom-ref": "pkg:deb/debian/libss2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=e493cfd6333d7432&upstream=e2fsprogs", "type": "library", "publisher": "Theodore Y. Ts'o ", "name": "libss2", @@ -8806,7 +8806,7 @@ "licenses": [ { "license": { - "name": "LicenseRef-sha256:6f717a1464301a641ac17e7301f1a1b221da802e8edf8cf4bc963721d487b146" + "name": "sha256:6f717a1464301a641ac17e7301f1a1b221da802e8edf8cf4bc963721d487b146" } } ], @@ -9348,7 +9348,7 @@ ] }, { - "bom-ref": "pkg:deb/debian/libtinfo6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=4d50fedeec9db609&upstream=ncurses", + "bom-ref": "pkg:deb/debian/libtinfo6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=32ae0288f40dd7ec&upstream=ncurses", "type": "library", "publisher": "Craig Small ", "name": "libtinfo6", @@ -9356,7 +9356,7 @@ "licenses": [ { "license": { - "name": "LicenseRef-sha256:5e8ee902c8906ddb7779fd36dc9979cb08b51fbebf7c0b1a9aeb78af382af590" + "name": "sha256:5e8ee902c8906ddb7779fd36dc9979cb08b51fbebf7c0b1a9aeb78af382af590" } } ], @@ -10443,7 +10443,7 @@ ] }, { - "bom-ref": "pkg:deb/debian/ncurses-base@6.1%2B20181013-2%2Bdeb10u2?arch=all&distro=debian-10&package-id=3238e6b392c1b881&upstream=ncurses", + "bom-ref": "pkg:deb/debian/ncurses-base@6.1%2B20181013-2%2Bdeb10u2?arch=all&distro=debian-10&package-id=a8f604f9c5ac808b&upstream=ncurses", "type": "library", "publisher": "Craig Small ", "name": "ncurses-base", @@ -10451,7 +10451,7 @@ "licenses": [ { "license": { - "name": "LicenseRef-sha256:5e8ee902c8906ddb7779fd36dc9979cb08b51fbebf7c0b1a9aeb78af382af590" + "name": "sha256:5e8ee902c8906ddb7779fd36dc9979cb08b51fbebf7c0b1a9aeb78af382af590" } } ], @@ -10557,7 +10557,7 @@ ] }, { - "bom-ref": "pkg:deb/debian/ncurses-bin@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=68e8ed2220f015ff&upstream=ncurses", + "bom-ref": "pkg:deb/debian/ncurses-bin@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=9954ccfd24462fc8&upstream=ncurses", "type": "library", "publisher": "Craig Small ", "name": "ncurses-bin", @@ -10565,7 +10565,7 @@ "licenses": [ { "license": { - "name": "LicenseRef-sha256:5e8ee902c8906ddb7779fd36dc9979cb08b51fbebf7c0b1a9aeb78af382af590" + "name": "sha256:5e8ee902c8906ddb7779fd36dc9979cb08b51fbebf7c0b1a9aeb78af382af590" } } ], @@ -11300,7 +11300,7 @@ ] }, { - "bom-ref": "pkg:deb/debian/tzdata@2021a-0%2Bdeb10u1?arch=all&distro=debian-10&package-id=11e09e914c1cd4a6", + "bom-ref": "pkg:deb/debian/tzdata@2021a-0%2Bdeb10u1?arch=all&distro=debian-10&package-id=c5cac233d1bc4fe4", "type": "library", "publisher": "GNU Libc Maintainers ", "name": "tzdata", @@ -11308,7 +11308,7 @@ "licenses": [ { "license": { - "name": "LicenseRef-sha256:75b41b8de75b1596a239f6fa8e4caa409de4cf985cee2943d2a94b4e96a5197d" + "name": "sha256:75b41b8de75b1596a239f6fa8e4caa409de4cf985cee2943d2a94b4e96a5197d" } } ], @@ -54672,7 +54672,7 @@ "pkg:deb/debian/base-files@10.3%2Bdeb10u10?arch=amd64&distro=debian-10&package-id=ae452714cef9cf4e", "pkg:deb/debian/debianutils@4.8.6.1?arch=amd64&distro=debian-10&package-id=b0e8f666c912d962", "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", - "pkg:deb/debian/libtinfo6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=4d50fedeec9db609&upstream=ncurses" + "pkg:deb/debian/libtinfo6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=32ae0288f40dd7ec&upstream=ncurses" ] }, { @@ -54734,9 +54734,9 @@ "dependsOn": [ "pkg:deb/debian/libblkid1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=d20eac8952a5e6b5&upstream=util-linux", "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", - "pkg:deb/debian/libcom-err2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=1a8a9dbb194df5d1&upstream=e2fsprogs", + "pkg:deb/debian/libcom-err2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=3ae0e410cfe581ff&upstream=e2fsprogs", "pkg:deb/debian/libext2fs2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=e40d517f10e825e0&upstream=e2fsprogs", - "pkg:deb/debian/libss2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=63fa318f9eefbc75&upstream=e2fsprogs", + "pkg:deb/debian/libss2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=e493cfd6333d7432&upstream=e2fsprogs", "pkg:deb/debian/libuuid1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=cc943ca139d0e67b&upstream=util-linux" ] }, @@ -54746,9 +54746,9 @@ "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", "pkg:deb/debian/libfdisk1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=54c2753ee170e0ea&upstream=util-linux", "pkg:deb/debian/libmount1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=c6f6118ba99c54cb&upstream=util-linux", - "pkg:deb/debian/libncursesw6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=6c56928a7efb44d4&upstream=ncurses", + "pkg:deb/debian/libncursesw6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=dd6e91cb036cd97c&upstream=ncurses", "pkg:deb/debian/libsmartcols1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=a95e9a21c0932258&upstream=util-linux", - "pkg:deb/debian/libtinfo6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=4d50fedeec9db609&upstream=ncurses" + "pkg:deb/debian/libtinfo6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=32ae0288f40dd7ec&upstream=ncurses" ] }, { @@ -54773,7 +54773,7 @@ "dependsOn": [ "pkg:deb/debian/dpkg@1.19.7?arch=amd64&distro=debian-10&package-id=da9ff9a377f09d63", "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", - "pkg:deb/debian/libpcre3@2%3A8.39-12?arch=amd64&distro=debian-10&package-id=35b7de3a80d53d59&upstream=pcre3" + "pkg:deb/debian/libpcre3@2%3A8.39-12?arch=amd64&distro=debian-10&package-id=a2c5569d9b015a19&upstream=pcre3" ] }, { @@ -54814,7 +54814,7 @@ "dependsOn": [ "pkg:deb/debian/libaprutil1@1.6.1-4?arch=amd64&distro=debian-10&package-id=eda9a1ee2039d110&upstream=apr-util", "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", - "pkg:deb/debian/libldap-2.4-2@2.4.47%2Bdfsg-3%2Bdeb10u6?arch=amd64&distro=debian-10&package-id=b63707706e516b73&upstream=openldap" + "pkg:deb/debian/libldap-2.4-2@2.4.47%2Bdfsg-3%2Bdeb10u6?arch=amd64&distro=debian-10&package-id=1cfe6e2be5a9442c&upstream=openldap" ] }, { @@ -54822,7 +54822,7 @@ "dependsOn": [ "pkg:deb/debian/libapr1@1.6.5-1%2Bb1?arch=amd64&distro=debian-10&package-id=489cc45ede79feca&upstream=apr%401.6.5-1", "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", - "pkg:deb/debian/libdb5.3@5.3.28%2Bdfsg1-0.5?arch=amd64&distro=debian-10&package-id=910a20bdce3547ea&upstream=db5.3", + "pkg:deb/debian/libdb5.3@5.3.28%2Bdfsg1-0.5?arch=amd64&distro=debian-10&package-id=24cab09f870cf7ee&upstream=db5.3", "pkg:deb/debian/libexpat1@2.2.6-2%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=d55bfe42f054b394&upstream=expat", "pkg:deb/debian/libgdbm6@1.18.1-4?arch=amd64&distro=debian-10&package-id=c9afbf45b6ae55eb&upstream=gdbm", "pkg:deb/debian/libssl1.1@1.1.1d-0%2Bdeb10u7?arch=amd64&distro=debian-10&package-id=0aa101ed766132f9&upstream=openssl", @@ -54896,7 +54896,7 @@ ] }, { - "ref": "pkg:deb/debian/libcom-err2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=1a8a9dbb194df5d1&upstream=e2fsprogs", + "ref": "pkg:deb/debian/libcom-err2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=3ae0e410cfe581ff&upstream=e2fsprogs", "dependsOn": [ "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" ] @@ -54905,12 +54905,12 @@ "ref": "pkg:deb/debian/libcurl4@7.64.0-4%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=af03801f530228cd&upstream=curl", "dependsOn": [ "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", - "pkg:deb/debian/libcom-err2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=1a8a9dbb194df5d1&upstream=e2fsprogs", + "pkg:deb/debian/libcom-err2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=3ae0e410cfe581ff&upstream=e2fsprogs", "pkg:deb/debian/libgssapi-krb5-2@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=563dc09768844327&upstream=krb5", "pkg:deb/debian/libidn2-0@2.0.5-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=5a5081d247582e95&upstream=libidn2", "pkg:deb/debian/libk5crypto3@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=04ecc244c55268d8&upstream=krb5", "pkg:deb/debian/libkrb5-3@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=2702e37fa523f601&upstream=krb5", - "pkg:deb/debian/libldap-2.4-2@2.4.47%2Bdfsg-3%2Bdeb10u6?arch=amd64&distro=debian-10&package-id=b63707706e516b73&upstream=openldap", + "pkg:deb/debian/libldap-2.4-2@2.4.47%2Bdfsg-3%2Bdeb10u6?arch=amd64&distro=debian-10&package-id=1cfe6e2be5a9442c&upstream=openldap", "pkg:deb/debian/libnghttp2-14@1.36.0-2%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=0ee3c902a7004593&upstream=nghttp2", "pkg:deb/debian/libpsl5@0.20.2-2?arch=amd64&distro=debian-10&package-id=409f4da8465b655e&upstream=libpsl", "pkg:deb/debian/librtmp1@2.4%2B20151223.gitfa8646d.1-2?arch=amd64&distro=debian-10&package-id=4e31bab7a6ca0f63&upstream=rtmpdump", @@ -54920,7 +54920,7 @@ ] }, { - "ref": "pkg:deb/debian/libdb5.3@5.3.28%2Bdfsg1-0.5?arch=amd64&distro=debian-10&package-id=910a20bdce3547ea&upstream=db5.3", + "ref": "pkg:deb/debian/libdb5.3@5.3.28%2Bdfsg1-0.5?arch=amd64&distro=debian-10&package-id=24cab09f870cf7ee&upstream=db5.3", "dependsOn": [ "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" ] @@ -55006,7 +55006,7 @@ "ref": "pkg:deb/debian/libgssapi-krb5-2@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=563dc09768844327&upstream=krb5", "dependsOn": [ "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", - "pkg:deb/debian/libcom-err2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=1a8a9dbb194df5d1&upstream=e2fsprogs", + "pkg:deb/debian/libcom-err2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=3ae0e410cfe581ff&upstream=e2fsprogs", "pkg:deb/debian/libk5crypto3@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=04ecc244c55268d8&upstream=krb5", "pkg:deb/debian/libkeyutils1@1.6-6?arch=amd64&distro=debian-10&package-id=1ed46086dbffc087&upstream=keyutils", "pkg:deb/debian/libkrb5-3@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=2702e37fa523f601&upstream=krb5", @@ -55022,7 +55022,7 @@ ] }, { - "ref": "pkg:deb/debian/libicu63@63.1-6%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=a180ea9e3b7989a3&upstream=icu", + "ref": "pkg:deb/debian/libicu63@63.1-6%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=59d3854e0c9375a1&upstream=icu", "dependsOn": [ "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", "pkg:deb/debian/libgcc1@1%3A8.3.0-6?arch=amd64&distro=debian-10&package-id=715380b30f28d876&upstream=gcc-8%408.3.0-6", @@ -55060,7 +55060,7 @@ "ref": "pkg:deb/debian/libkrb5-3@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=2702e37fa523f601&upstream=krb5", "dependsOn": [ "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", - "pkg:deb/debian/libcom-err2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=1a8a9dbb194df5d1&upstream=e2fsprogs", + "pkg:deb/debian/libcom-err2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=3ae0e410cfe581ff&upstream=e2fsprogs", "pkg:deb/debian/libk5crypto3@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=04ecc244c55268d8&upstream=krb5", "pkg:deb/debian/libkeyutils1@1.6-6?arch=amd64&distro=debian-10&package-id=1ed46086dbffc087&upstream=keyutils", "pkg:deb/debian/libkrb5support0@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=23be6b473ec0b06b&upstream=krb5", @@ -55075,11 +55075,11 @@ ] }, { - "ref": "pkg:deb/debian/libldap-2.4-2@2.4.47%2Bdfsg-3%2Bdeb10u6?arch=amd64&distro=debian-10&package-id=b63707706e516b73&upstream=openldap", + "ref": "pkg:deb/debian/libldap-2.4-2@2.4.47%2Bdfsg-3%2Bdeb10u6?arch=amd64&distro=debian-10&package-id=1cfe6e2be5a9442c&upstream=openldap", "dependsOn": [ "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", "pkg:deb/debian/libgnutls30@3.6.7-4%2Bdeb10u7?arch=amd64&distro=debian-10&package-id=2b175f545e2e827e&upstream=gnutls28", - "pkg:deb/debian/libldap-common@2.4.47%2Bdfsg-3%2Bdeb10u6?arch=all&distro=debian-10&package-id=f04113280174888f&upstream=openldap", + "pkg:deb/debian/libldap-common@2.4.47%2Bdfsg-3%2Bdeb10u6?arch=all&distro=debian-10&package-id=e69f561869ff04f0&upstream=openldap", "pkg:deb/debian/libsasl2-2@2.1.27%2Bdfsg-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=56eb272c9677fc6a&upstream=cyrus-sasl2" ] }, @@ -55112,10 +55112,10 @@ ] }, { - "ref": "pkg:deb/debian/libncursesw6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=6c56928a7efb44d4&upstream=ncurses", + "ref": "pkg:deb/debian/libncursesw6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=dd6e91cb036cd97c&upstream=ncurses", "dependsOn": [ "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", - "pkg:deb/debian/libtinfo6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=4d50fedeec9db609&upstream=ncurses" + "pkg:deb/debian/libtinfo6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=32ae0288f40dd7ec&upstream=ncurses" ] }, { @@ -55152,7 +55152,7 @@ "pkg:deb/debian/debconf@1.5.71?arch=all&distro=debian-10&package-id=fe38a53949ca2b50", "pkg:deb/debian/libaudit1@1%3A2.8.4-3?arch=amd64&distro=debian-10&package-id=e445bed1f84bcb4b&upstream=audit", "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", - "pkg:deb/debian/libdb5.3@5.3.28%2Bdfsg1-0.5?arch=amd64&distro=debian-10&package-id=910a20bdce3547ea&upstream=db5.3", + "pkg:deb/debian/libdb5.3@5.3.28%2Bdfsg1-0.5?arch=amd64&distro=debian-10&package-id=24cab09f870cf7ee&upstream=db5.3", "pkg:deb/debian/libpam-modules-bin@1.3.1-5?arch=amd64&distro=debian-10&package-id=631d9f9526108591&upstream=pam", "pkg:deb/debian/libpam0g@1.3.1-5?arch=amd64&distro=debian-10&package-id=75c54a61b843e467&upstream=pam", "pkg:deb/debian/libselinux1@2.8-1%2Bb1?arch=amd64&distro=debian-10&package-id=49addc4e237b1a0d&upstream=libselinux%402.8-1" @@ -55174,7 +55174,7 @@ ] }, { - "ref": "pkg:deb/debian/libpcre3@2%3A8.39-12?arch=amd64&distro=debian-10&package-id=35b7de3a80d53d59&upstream=pcre3", + "ref": "pkg:deb/debian/libpcre3@2%3A8.39-12?arch=amd64&distro=debian-10&package-id=a2c5569d9b015a19&upstream=pcre3", "dependsOn": [ "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" ] @@ -55209,7 +55209,7 @@ "ref": "pkg:deb/debian/libsasl2-modules-db@2.1.27%2Bdfsg-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=0dddbf5f31db948d&upstream=cyrus-sasl2", "dependsOn": [ "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", - "pkg:deb/debian/libdb5.3@5.3.28%2Bdfsg1-0.5?arch=amd64&distro=debian-10&package-id=910a20bdce3547ea&upstream=db5.3" + "pkg:deb/debian/libdb5.3@5.3.28%2Bdfsg1-0.5?arch=amd64&distro=debian-10&package-id=24cab09f870cf7ee&upstream=db5.3" ] }, { @@ -55222,7 +55222,7 @@ "ref": "pkg:deb/debian/libselinux1@2.8-1%2Bb1?arch=amd64&distro=debian-10&package-id=49addc4e237b1a0d&upstream=libselinux%402.8-1", "dependsOn": [ "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", - "pkg:deb/debian/libpcre3@2%3A8.39-12?arch=amd64&distro=debian-10&package-id=35b7de3a80d53d59&upstream=pcre3" + "pkg:deb/debian/libpcre3@2%3A8.39-12?arch=amd64&distro=debian-10&package-id=a2c5569d9b015a19&upstream=pcre3" ] }, { @@ -55249,10 +55249,10 @@ ] }, { - "ref": "pkg:deb/debian/libss2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=63fa318f9eefbc75&upstream=e2fsprogs", + "ref": "pkg:deb/debian/libss2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=e493cfd6333d7432&upstream=e2fsprogs", "dependsOn": [ "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", - "pkg:deb/debian/libcom-err2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=1a8a9dbb194df5d1&upstream=e2fsprogs" + "pkg:deb/debian/libcom-err2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=3ae0e410cfe581ff&upstream=e2fsprogs" ] }, { @@ -55294,7 +55294,7 @@ ] }, { - "ref": "pkg:deb/debian/libtinfo6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=4d50fedeec9db609&upstream=ncurses", + "ref": "pkg:deb/debian/libtinfo6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=32ae0288f40dd7ec&upstream=ncurses", "dependsOn": [ "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" ] @@ -55321,7 +55321,7 @@ "ref": "pkg:deb/debian/libxml2@2.9.4%2Bdfsg1-7%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=2b71d5263434c464", "dependsOn": [ "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", - "pkg:deb/debian/libicu63@63.1-6%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=a180ea9e3b7989a3&upstream=icu", + "pkg:deb/debian/libicu63@63.1-6%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=59d3854e0c9375a1&upstream=icu", "pkg:deb/debian/liblzma5@5.2.4-1?arch=amd64&distro=debian-10&package-id=c32191f717ec58de&upstream=xz-utils", "pkg:deb/debian/zlib1g@1%3A1.2.11.dfsg-1?arch=amd64&distro=debian-10&package-id=bcc78aeb924eb6b8&upstream=zlib" ] @@ -55360,10 +55360,10 @@ ] }, { - "ref": "pkg:deb/debian/ncurses-bin@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=68e8ed2220f015ff&upstream=ncurses", + "ref": "pkg:deb/debian/ncurses-bin@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=9954ccfd24462fc8&upstream=ncurses", "dependsOn": [ "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", - "pkg:deb/debian/libtinfo6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=4d50fedeec9db609&upstream=ncurses" + "pkg:deb/debian/libtinfo6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=32ae0288f40dd7ec&upstream=ncurses" ] }, { @@ -55409,7 +55409,7 @@ ] }, { - "ref": "pkg:deb/debian/tzdata@2021a-0%2Bdeb10u1?arch=all&distro=debian-10&package-id=11e09e914c1cd4a6", + "ref": "pkg:deb/debian/tzdata@2021a-0%2Bdeb10u1?arch=all&distro=debian-10&package-id=c5cac233d1bc4fe4", "dependsOn": [ "pkg:deb/debian/debconf@1.5.71?arch=all&distro=debian-10&package-id=fe38a53949ca2b50" ] @@ -55427,7 +55427,7 @@ "pkg:deb/debian/libselinux1@2.8-1%2Bb1?arch=amd64&distro=debian-10&package-id=49addc4e237b1a0d&upstream=libselinux%402.8-1", "pkg:deb/debian/libsmartcols1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=a95e9a21c0932258&upstream=util-linux", "pkg:deb/debian/libsystemd0@241-7~deb10u8?arch=amd64&distro=debian-10&package-id=af5fa602069b9853&upstream=systemd", - "pkg:deb/debian/libtinfo6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=4d50fedeec9db609&upstream=ncurses", + "pkg:deb/debian/libtinfo6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=32ae0288f40dd7ec&upstream=ncurses", "pkg:deb/debian/libudev1@241-7~deb10u8?arch=amd64&distro=debian-10&package-id=1650009f99e14534&upstream=systemd", "pkg:deb/debian/libuuid1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=cc943ca139d0e67b&upstream=util-linux", "pkg:deb/debian/login@1%3A4.5-1.1?arch=amd64&distro=debian-10&package-id=beffe62c711b8d0b&upstream=shadow", diff --git a/test/providers/tst_manifests/image/httpd:2.4.49^^amd64.json b/test/providers/tst_manifests/image/httpd:2.4.49^^amd64.json index 93e7390..8a166dc 100644 --- a/test/providers/tst_manifests/image/httpd:2.4.49^^amd64.json +++ b/test/providers/tst_manifests/image/httpd:2.4.49^^amd64.json @@ -4086,7 +4086,7 @@ ] }, { - "bom-ref": "pkg:deb/debian/libcom-err2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=1a8a9dbb194df5d1&upstream=e2fsprogs", + "bom-ref": "pkg:deb/debian/libcom-err2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=3ae0e410cfe581ff&upstream=e2fsprogs", "type": "library", "publisher": "Theodore Y. Ts'o ", "name": "libcom-err2", @@ -4094,7 +4094,7 @@ "licenses": [ { "license": { - "name": "LicenseRef-sha256:9e3a4384b6d8d2358d44103f62bcd948328b3f8a63a1a6baa66abeb43302d581" + "name": "sha256:9e3a4384b6d8d2358d44103f62bcd948328b3f8a63a1a6baa66abeb43302d581" } } ], @@ -4271,7 +4271,7 @@ ] }, { - "bom-ref": "pkg:deb/debian/libdb5.3@5.3.28%2Bdfsg1-0.5?arch=amd64&distro=debian-10&package-id=910a20bdce3547ea&upstream=db5.3", + "bom-ref": "pkg:deb/debian/libdb5.3@5.3.28%2Bdfsg1-0.5?arch=amd64&distro=debian-10&package-id=24cab09f870cf7ee&upstream=db5.3", "type": "library", "publisher": "Debian Berkeley DB Team ", "name": "libdb5.3", @@ -4279,7 +4279,7 @@ "licenses": [ { "license": { - "name": "LicenseRef-sha256:b3bbc6fbb3f2a0e6a487e953eb8c3cc4bdb6f4150f7f51d20b1e9a3c8ef92d3d" + "name": "sha256:b3bbc6fbb3f2a0e6a487e953eb8c3cc4bdb6f4150f7f51d20b1e9a3c8ef92d3d" } } ], @@ -5647,7 +5647,7 @@ ] }, { - "bom-ref": "pkg:deb/debian/libicu63@63.1-6%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=a180ea9e3b7989a3&upstream=icu", + "bom-ref": "pkg:deb/debian/libicu63@63.1-6%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=59d3854e0c9375a1&upstream=icu", "type": "library", "publisher": "Laszlo Boszormenyi (GCS) ", "name": "libicu63", @@ -5655,7 +5655,7 @@ "licenses": [ { "license": { - "name": "LicenseRef-sha256:0515ea67c829d73cf54d074ef7bd030968419f98a83e523d4300ea0f4d18ebc9" + "name": "sha256:0515ea67c829d73cf54d074ef7bd030968419f98a83e523d4300ea0f4d18ebc9" } } ], @@ -6182,7 +6182,7 @@ ] }, { - "bom-ref": "pkg:deb/debian/libldap-2.4-2@2.4.47%2Bdfsg-3%2Bdeb10u6?arch=amd64&distro=debian-10&package-id=b63707706e516b73&upstream=openldap", + "bom-ref": "pkg:deb/debian/libldap-2.4-2@2.4.47%2Bdfsg-3%2Bdeb10u6?arch=amd64&distro=debian-10&package-id=1cfe6e2be5a9442c&upstream=openldap", "type": "library", "publisher": "Debian OpenLDAP Maintainers ", "name": "libldap-2.4-2", @@ -6190,7 +6190,7 @@ "licenses": [ { "license": { - "name": "LicenseRef-sha256:0690f1ee382f98e95b446743db55395641d5e258de65939e9cb1c660d67a43a8" + "name": "sha256:0690f1ee382f98e95b446743db55395641d5e258de65939e9cb1c660d67a43a8" } } ], @@ -6288,7 +6288,7 @@ ] }, { - "bom-ref": "pkg:deb/debian/libldap-common@2.4.47%2Bdfsg-3%2Bdeb10u6?arch=all&distro=debian-10&package-id=f04113280174888f&upstream=openldap", + "bom-ref": "pkg:deb/debian/libldap-common@2.4.47%2Bdfsg-3%2Bdeb10u6?arch=all&distro=debian-10&package-id=e69f561869ff04f0&upstream=openldap", "type": "library", "publisher": "Debian OpenLDAP Maintainers ", "name": "libldap-common", @@ -6296,7 +6296,7 @@ "licenses": [ { "license": { - "name": "LicenseRef-sha256:0690f1ee382f98e95b446743db55395641d5e258de65939e9cb1c660d67a43a8" + "name": "sha256:0690f1ee382f98e95b446743db55395641d5e258de65939e9cb1c660d67a43a8" } } ], @@ -6884,7 +6884,7 @@ ] }, { - "bom-ref": "pkg:deb/debian/libncursesw6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=6c56928a7efb44d4&upstream=ncurses", + "bom-ref": "pkg:deb/debian/libncursesw6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=dd6e91cb036cd97c&upstream=ncurses", "type": "library", "publisher": "Craig Small ", "name": "libncursesw6", @@ -6892,7 +6892,7 @@ "licenses": [ { "license": { - "name": "LicenseRef-sha256:5e8ee902c8906ddb7779fd36dc9979cb08b51fbebf7c0b1a9aeb78af382af590" + "name": "sha256:5e8ee902c8906ddb7779fd36dc9979cb08b51fbebf7c0b1a9aeb78af382af590" } } ], @@ -7767,7 +7767,7 @@ ] }, { - "bom-ref": "pkg:deb/debian/libpcre3@2%3A8.39-12?arch=amd64&distro=debian-10&package-id=35b7de3a80d53d59&upstream=pcre3", + "bom-ref": "pkg:deb/debian/libpcre3@2%3A8.39-12?arch=amd64&distro=debian-10&package-id=a2c5569d9b015a19&upstream=pcre3", "type": "library", "publisher": "Matthew Vernon ", "name": "libpcre3", @@ -7775,7 +7775,7 @@ "licenses": [ { "license": { - "name": "LicenseRef-sha256:ac9276490d2fa167442ae1aae33926514ad10c8886baa40046c5e367fccc5938" + "name": "sha256:ac9276490d2fa167442ae1aae33926514ad10c8886baa40046c5e367fccc5938" } } ], @@ -8798,7 +8798,7 @@ ] }, { - "bom-ref": "pkg:deb/debian/libss2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=63fa318f9eefbc75&upstream=e2fsprogs", + "bom-ref": "pkg:deb/debian/libss2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=e493cfd6333d7432&upstream=e2fsprogs", "type": "library", "publisher": "Theodore Y. Ts'o ", "name": "libss2", @@ -8806,7 +8806,7 @@ "licenses": [ { "license": { - "name": "LicenseRef-sha256:6f717a1464301a641ac17e7301f1a1b221da802e8edf8cf4bc963721d487b146" + "name": "sha256:6f717a1464301a641ac17e7301f1a1b221da802e8edf8cf4bc963721d487b146" } } ], @@ -9348,7 +9348,7 @@ ] }, { - "bom-ref": "pkg:deb/debian/libtinfo6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=4d50fedeec9db609&upstream=ncurses", + "bom-ref": "pkg:deb/debian/libtinfo6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=32ae0288f40dd7ec&upstream=ncurses", "type": "library", "publisher": "Craig Small ", "name": "libtinfo6", @@ -9356,7 +9356,7 @@ "licenses": [ { "license": { - "name": "LicenseRef-sha256:5e8ee902c8906ddb7779fd36dc9979cb08b51fbebf7c0b1a9aeb78af382af590" + "name": "sha256:5e8ee902c8906ddb7779fd36dc9979cb08b51fbebf7c0b1a9aeb78af382af590" } } ], @@ -10443,7 +10443,7 @@ ] }, { - "bom-ref": "pkg:deb/debian/ncurses-base@6.1%2B20181013-2%2Bdeb10u2?arch=all&distro=debian-10&package-id=3238e6b392c1b881&upstream=ncurses", + "bom-ref": "pkg:deb/debian/ncurses-base@6.1%2B20181013-2%2Bdeb10u2?arch=all&distro=debian-10&package-id=a8f604f9c5ac808b&upstream=ncurses", "type": "library", "publisher": "Craig Small ", "name": "ncurses-base", @@ -10451,7 +10451,7 @@ "licenses": [ { "license": { - "name": "LicenseRef-sha256:5e8ee902c8906ddb7779fd36dc9979cb08b51fbebf7c0b1a9aeb78af382af590" + "name": "sha256:5e8ee902c8906ddb7779fd36dc9979cb08b51fbebf7c0b1a9aeb78af382af590" } } ], @@ -10557,7 +10557,7 @@ ] }, { - "bom-ref": "pkg:deb/debian/ncurses-bin@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=68e8ed2220f015ff&upstream=ncurses", + "bom-ref": "pkg:deb/debian/ncurses-bin@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=9954ccfd24462fc8&upstream=ncurses", "type": "library", "publisher": "Craig Small ", "name": "ncurses-bin", @@ -10565,7 +10565,7 @@ "licenses": [ { "license": { - "name": "LicenseRef-sha256:5e8ee902c8906ddb7779fd36dc9979cb08b51fbebf7c0b1a9aeb78af382af590" + "name": "sha256:5e8ee902c8906ddb7779fd36dc9979cb08b51fbebf7c0b1a9aeb78af382af590" } } ], @@ -11300,7 +11300,7 @@ ] }, { - "bom-ref": "pkg:deb/debian/tzdata@2021a-0%2Bdeb10u1?arch=all&distro=debian-10&package-id=11e09e914c1cd4a6", + "bom-ref": "pkg:deb/debian/tzdata@2021a-0%2Bdeb10u1?arch=all&distro=debian-10&package-id=c5cac233d1bc4fe4", "type": "library", "publisher": "GNU Libc Maintainers ", "name": "tzdata", @@ -11308,7 +11308,7 @@ "licenses": [ { "license": { - "name": "LicenseRef-sha256:75b41b8de75b1596a239f6fa8e4caa409de4cf985cee2943d2a94b4e96a5197d" + "name": "sha256:75b41b8de75b1596a239f6fa8e4caa409de4cf985cee2943d2a94b4e96a5197d" } } ], @@ -54672,7 +54672,7 @@ "pkg:deb/debian/base-files@10.3%2Bdeb10u10?arch=amd64&distro=debian-10&package-id=ae452714cef9cf4e", "pkg:deb/debian/debianutils@4.8.6.1?arch=amd64&distro=debian-10&package-id=b0e8f666c912d962", "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", - "pkg:deb/debian/libtinfo6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=4d50fedeec9db609&upstream=ncurses" + "pkg:deb/debian/libtinfo6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=32ae0288f40dd7ec&upstream=ncurses" ] }, { @@ -54734,9 +54734,9 @@ "dependsOn": [ "pkg:deb/debian/libblkid1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=d20eac8952a5e6b5&upstream=util-linux", "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", - "pkg:deb/debian/libcom-err2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=1a8a9dbb194df5d1&upstream=e2fsprogs", + "pkg:deb/debian/libcom-err2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=3ae0e410cfe581ff&upstream=e2fsprogs", "pkg:deb/debian/libext2fs2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=e40d517f10e825e0&upstream=e2fsprogs", - "pkg:deb/debian/libss2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=63fa318f9eefbc75&upstream=e2fsprogs", + "pkg:deb/debian/libss2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=e493cfd6333d7432&upstream=e2fsprogs", "pkg:deb/debian/libuuid1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=cc943ca139d0e67b&upstream=util-linux" ] }, @@ -54746,9 +54746,9 @@ "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", "pkg:deb/debian/libfdisk1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=54c2753ee170e0ea&upstream=util-linux", "pkg:deb/debian/libmount1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=c6f6118ba99c54cb&upstream=util-linux", - "pkg:deb/debian/libncursesw6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=6c56928a7efb44d4&upstream=ncurses", + "pkg:deb/debian/libncursesw6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=dd6e91cb036cd97c&upstream=ncurses", "pkg:deb/debian/libsmartcols1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=a95e9a21c0932258&upstream=util-linux", - "pkg:deb/debian/libtinfo6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=4d50fedeec9db609&upstream=ncurses" + "pkg:deb/debian/libtinfo6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=32ae0288f40dd7ec&upstream=ncurses" ] }, { @@ -54773,7 +54773,7 @@ "dependsOn": [ "pkg:deb/debian/dpkg@1.19.7?arch=amd64&distro=debian-10&package-id=da9ff9a377f09d63", "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", - "pkg:deb/debian/libpcre3@2%3A8.39-12?arch=amd64&distro=debian-10&package-id=35b7de3a80d53d59&upstream=pcre3" + "pkg:deb/debian/libpcre3@2%3A8.39-12?arch=amd64&distro=debian-10&package-id=a2c5569d9b015a19&upstream=pcre3" ] }, { @@ -54814,7 +54814,7 @@ "dependsOn": [ "pkg:deb/debian/libaprutil1@1.6.1-4?arch=amd64&distro=debian-10&package-id=eda9a1ee2039d110&upstream=apr-util", "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", - "pkg:deb/debian/libldap-2.4-2@2.4.47%2Bdfsg-3%2Bdeb10u6?arch=amd64&distro=debian-10&package-id=b63707706e516b73&upstream=openldap" + "pkg:deb/debian/libldap-2.4-2@2.4.47%2Bdfsg-3%2Bdeb10u6?arch=amd64&distro=debian-10&package-id=1cfe6e2be5a9442c&upstream=openldap" ] }, { @@ -54822,7 +54822,7 @@ "dependsOn": [ "pkg:deb/debian/libapr1@1.6.5-1%2Bb1?arch=amd64&distro=debian-10&package-id=489cc45ede79feca&upstream=apr%401.6.5-1", "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", - "pkg:deb/debian/libdb5.3@5.3.28%2Bdfsg1-0.5?arch=amd64&distro=debian-10&package-id=910a20bdce3547ea&upstream=db5.3", + "pkg:deb/debian/libdb5.3@5.3.28%2Bdfsg1-0.5?arch=amd64&distro=debian-10&package-id=24cab09f870cf7ee&upstream=db5.3", "pkg:deb/debian/libexpat1@2.2.6-2%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=d55bfe42f054b394&upstream=expat", "pkg:deb/debian/libgdbm6@1.18.1-4?arch=amd64&distro=debian-10&package-id=c9afbf45b6ae55eb&upstream=gdbm", "pkg:deb/debian/libssl1.1@1.1.1d-0%2Bdeb10u7?arch=amd64&distro=debian-10&package-id=0aa101ed766132f9&upstream=openssl", @@ -54896,7 +54896,7 @@ ] }, { - "ref": "pkg:deb/debian/libcom-err2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=1a8a9dbb194df5d1&upstream=e2fsprogs", + "ref": "pkg:deb/debian/libcom-err2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=3ae0e410cfe581ff&upstream=e2fsprogs", "dependsOn": [ "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" ] @@ -54905,12 +54905,12 @@ "ref": "pkg:deb/debian/libcurl4@7.64.0-4%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=af03801f530228cd&upstream=curl", "dependsOn": [ "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", - "pkg:deb/debian/libcom-err2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=1a8a9dbb194df5d1&upstream=e2fsprogs", + "pkg:deb/debian/libcom-err2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=3ae0e410cfe581ff&upstream=e2fsprogs", "pkg:deb/debian/libgssapi-krb5-2@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=563dc09768844327&upstream=krb5", "pkg:deb/debian/libidn2-0@2.0.5-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=5a5081d247582e95&upstream=libidn2", "pkg:deb/debian/libk5crypto3@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=04ecc244c55268d8&upstream=krb5", "pkg:deb/debian/libkrb5-3@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=2702e37fa523f601&upstream=krb5", - "pkg:deb/debian/libldap-2.4-2@2.4.47%2Bdfsg-3%2Bdeb10u6?arch=amd64&distro=debian-10&package-id=b63707706e516b73&upstream=openldap", + "pkg:deb/debian/libldap-2.4-2@2.4.47%2Bdfsg-3%2Bdeb10u6?arch=amd64&distro=debian-10&package-id=1cfe6e2be5a9442c&upstream=openldap", "pkg:deb/debian/libnghttp2-14@1.36.0-2%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=0ee3c902a7004593&upstream=nghttp2", "pkg:deb/debian/libpsl5@0.20.2-2?arch=amd64&distro=debian-10&package-id=409f4da8465b655e&upstream=libpsl", "pkg:deb/debian/librtmp1@2.4%2B20151223.gitfa8646d.1-2?arch=amd64&distro=debian-10&package-id=4e31bab7a6ca0f63&upstream=rtmpdump", @@ -54920,7 +54920,7 @@ ] }, { - "ref": "pkg:deb/debian/libdb5.3@5.3.28%2Bdfsg1-0.5?arch=amd64&distro=debian-10&package-id=910a20bdce3547ea&upstream=db5.3", + "ref": "pkg:deb/debian/libdb5.3@5.3.28%2Bdfsg1-0.5?arch=amd64&distro=debian-10&package-id=24cab09f870cf7ee&upstream=db5.3", "dependsOn": [ "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" ] @@ -55006,7 +55006,7 @@ "ref": "pkg:deb/debian/libgssapi-krb5-2@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=563dc09768844327&upstream=krb5", "dependsOn": [ "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", - "pkg:deb/debian/libcom-err2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=1a8a9dbb194df5d1&upstream=e2fsprogs", + "pkg:deb/debian/libcom-err2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=3ae0e410cfe581ff&upstream=e2fsprogs", "pkg:deb/debian/libk5crypto3@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=04ecc244c55268d8&upstream=krb5", "pkg:deb/debian/libkeyutils1@1.6-6?arch=amd64&distro=debian-10&package-id=1ed46086dbffc087&upstream=keyutils", "pkg:deb/debian/libkrb5-3@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=2702e37fa523f601&upstream=krb5", @@ -55022,7 +55022,7 @@ ] }, { - "ref": "pkg:deb/debian/libicu63@63.1-6%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=a180ea9e3b7989a3&upstream=icu", + "ref": "pkg:deb/debian/libicu63@63.1-6%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=59d3854e0c9375a1&upstream=icu", "dependsOn": [ "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", "pkg:deb/debian/libgcc1@1%3A8.3.0-6?arch=amd64&distro=debian-10&package-id=715380b30f28d876&upstream=gcc-8%408.3.0-6", @@ -55060,7 +55060,7 @@ "ref": "pkg:deb/debian/libkrb5-3@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=2702e37fa523f601&upstream=krb5", "dependsOn": [ "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", - "pkg:deb/debian/libcom-err2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=1a8a9dbb194df5d1&upstream=e2fsprogs", + "pkg:deb/debian/libcom-err2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=3ae0e410cfe581ff&upstream=e2fsprogs", "pkg:deb/debian/libk5crypto3@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=04ecc244c55268d8&upstream=krb5", "pkg:deb/debian/libkeyutils1@1.6-6?arch=amd64&distro=debian-10&package-id=1ed46086dbffc087&upstream=keyutils", "pkg:deb/debian/libkrb5support0@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=23be6b473ec0b06b&upstream=krb5", @@ -55075,11 +55075,11 @@ ] }, { - "ref": "pkg:deb/debian/libldap-2.4-2@2.4.47%2Bdfsg-3%2Bdeb10u6?arch=amd64&distro=debian-10&package-id=b63707706e516b73&upstream=openldap", + "ref": "pkg:deb/debian/libldap-2.4-2@2.4.47%2Bdfsg-3%2Bdeb10u6?arch=amd64&distro=debian-10&package-id=1cfe6e2be5a9442c&upstream=openldap", "dependsOn": [ "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", "pkg:deb/debian/libgnutls30@3.6.7-4%2Bdeb10u7?arch=amd64&distro=debian-10&package-id=2b175f545e2e827e&upstream=gnutls28", - "pkg:deb/debian/libldap-common@2.4.47%2Bdfsg-3%2Bdeb10u6?arch=all&distro=debian-10&package-id=f04113280174888f&upstream=openldap", + "pkg:deb/debian/libldap-common@2.4.47%2Bdfsg-3%2Bdeb10u6?arch=all&distro=debian-10&package-id=e69f561869ff04f0&upstream=openldap", "pkg:deb/debian/libsasl2-2@2.1.27%2Bdfsg-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=56eb272c9677fc6a&upstream=cyrus-sasl2" ] }, @@ -55112,10 +55112,10 @@ ] }, { - "ref": "pkg:deb/debian/libncursesw6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=6c56928a7efb44d4&upstream=ncurses", + "ref": "pkg:deb/debian/libncursesw6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=dd6e91cb036cd97c&upstream=ncurses", "dependsOn": [ "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", - "pkg:deb/debian/libtinfo6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=4d50fedeec9db609&upstream=ncurses" + "pkg:deb/debian/libtinfo6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=32ae0288f40dd7ec&upstream=ncurses" ] }, { @@ -55152,7 +55152,7 @@ "pkg:deb/debian/debconf@1.5.71?arch=all&distro=debian-10&package-id=fe38a53949ca2b50", "pkg:deb/debian/libaudit1@1%3A2.8.4-3?arch=amd64&distro=debian-10&package-id=e445bed1f84bcb4b&upstream=audit", "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", - "pkg:deb/debian/libdb5.3@5.3.28%2Bdfsg1-0.5?arch=amd64&distro=debian-10&package-id=910a20bdce3547ea&upstream=db5.3", + "pkg:deb/debian/libdb5.3@5.3.28%2Bdfsg1-0.5?arch=amd64&distro=debian-10&package-id=24cab09f870cf7ee&upstream=db5.3", "pkg:deb/debian/libpam-modules-bin@1.3.1-5?arch=amd64&distro=debian-10&package-id=631d9f9526108591&upstream=pam", "pkg:deb/debian/libpam0g@1.3.1-5?arch=amd64&distro=debian-10&package-id=75c54a61b843e467&upstream=pam", "pkg:deb/debian/libselinux1@2.8-1%2Bb1?arch=amd64&distro=debian-10&package-id=49addc4e237b1a0d&upstream=libselinux%402.8-1" @@ -55174,7 +55174,7 @@ ] }, { - "ref": "pkg:deb/debian/libpcre3@2%3A8.39-12?arch=amd64&distro=debian-10&package-id=35b7de3a80d53d59&upstream=pcre3", + "ref": "pkg:deb/debian/libpcre3@2%3A8.39-12?arch=amd64&distro=debian-10&package-id=a2c5569d9b015a19&upstream=pcre3", "dependsOn": [ "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" ] @@ -55209,7 +55209,7 @@ "ref": "pkg:deb/debian/libsasl2-modules-db@2.1.27%2Bdfsg-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=0dddbf5f31db948d&upstream=cyrus-sasl2", "dependsOn": [ "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", - "pkg:deb/debian/libdb5.3@5.3.28%2Bdfsg1-0.5?arch=amd64&distro=debian-10&package-id=910a20bdce3547ea&upstream=db5.3" + "pkg:deb/debian/libdb5.3@5.3.28%2Bdfsg1-0.5?arch=amd64&distro=debian-10&package-id=24cab09f870cf7ee&upstream=db5.3" ] }, { @@ -55222,7 +55222,7 @@ "ref": "pkg:deb/debian/libselinux1@2.8-1%2Bb1?arch=amd64&distro=debian-10&package-id=49addc4e237b1a0d&upstream=libselinux%402.8-1", "dependsOn": [ "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", - "pkg:deb/debian/libpcre3@2%3A8.39-12?arch=amd64&distro=debian-10&package-id=35b7de3a80d53d59&upstream=pcre3" + "pkg:deb/debian/libpcre3@2%3A8.39-12?arch=amd64&distro=debian-10&package-id=a2c5569d9b015a19&upstream=pcre3" ] }, { @@ -55249,10 +55249,10 @@ ] }, { - "ref": "pkg:deb/debian/libss2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=63fa318f9eefbc75&upstream=e2fsprogs", + "ref": "pkg:deb/debian/libss2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=e493cfd6333d7432&upstream=e2fsprogs", "dependsOn": [ "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", - "pkg:deb/debian/libcom-err2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=1a8a9dbb194df5d1&upstream=e2fsprogs" + "pkg:deb/debian/libcom-err2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=3ae0e410cfe581ff&upstream=e2fsprogs" ] }, { @@ -55294,7 +55294,7 @@ ] }, { - "ref": "pkg:deb/debian/libtinfo6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=4d50fedeec9db609&upstream=ncurses", + "ref": "pkg:deb/debian/libtinfo6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=32ae0288f40dd7ec&upstream=ncurses", "dependsOn": [ "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" ] @@ -55321,7 +55321,7 @@ "ref": "pkg:deb/debian/libxml2@2.9.4%2Bdfsg1-7%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=2b71d5263434c464", "dependsOn": [ "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", - "pkg:deb/debian/libicu63@63.1-6%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=a180ea9e3b7989a3&upstream=icu", + "pkg:deb/debian/libicu63@63.1-6%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=59d3854e0c9375a1&upstream=icu", "pkg:deb/debian/liblzma5@5.2.4-1?arch=amd64&distro=debian-10&package-id=c32191f717ec58de&upstream=xz-utils", "pkg:deb/debian/zlib1g@1%3A1.2.11.dfsg-1?arch=amd64&distro=debian-10&package-id=bcc78aeb924eb6b8&upstream=zlib" ] @@ -55360,10 +55360,10 @@ ] }, { - "ref": "pkg:deb/debian/ncurses-bin@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=68e8ed2220f015ff&upstream=ncurses", + "ref": "pkg:deb/debian/ncurses-bin@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=9954ccfd24462fc8&upstream=ncurses", "dependsOn": [ "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", - "pkg:deb/debian/libtinfo6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=4d50fedeec9db609&upstream=ncurses" + "pkg:deb/debian/libtinfo6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=32ae0288f40dd7ec&upstream=ncurses" ] }, { @@ -55409,7 +55409,7 @@ ] }, { - "ref": "pkg:deb/debian/tzdata@2021a-0%2Bdeb10u1?arch=all&distro=debian-10&package-id=11e09e914c1cd4a6", + "ref": "pkg:deb/debian/tzdata@2021a-0%2Bdeb10u1?arch=all&distro=debian-10&package-id=c5cac233d1bc4fe4", "dependsOn": [ "pkg:deb/debian/debconf@1.5.71?arch=all&distro=debian-10&package-id=fe38a53949ca2b50" ] @@ -55427,7 +55427,7 @@ "pkg:deb/debian/libselinux1@2.8-1%2Bb1?arch=amd64&distro=debian-10&package-id=49addc4e237b1a0d&upstream=libselinux%402.8-1", "pkg:deb/debian/libsmartcols1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=a95e9a21c0932258&upstream=util-linux", "pkg:deb/debian/libsystemd0@241-7~deb10u8?arch=amd64&distro=debian-10&package-id=af5fa602069b9853&upstream=systemd", - "pkg:deb/debian/libtinfo6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=4d50fedeec9db609&upstream=ncurses", + "pkg:deb/debian/libtinfo6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=32ae0288f40dd7ec&upstream=ncurses", "pkg:deb/debian/libudev1@241-7~deb10u8?arch=amd64&distro=debian-10&package-id=1650009f99e14534&upstream=systemd", "pkg:deb/debian/libuuid1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=cc943ca139d0e67b&upstream=util-linux", "pkg:deb/debian/login@1%3A4.5-1.1?arch=amd64&distro=debian-10&package-id=beffe62c711b8d0b&upstream=shadow", diff --git a/test/providers/tst_manifests/image/httpd@sha256:4b5cb7697fea2aa6d398504c381b693a54ae9ad5e6317fcdbb7a2d9b8c3b1364.json b/test/providers/tst_manifests/image/httpd@sha256:4b5cb7697fea2aa6d398504c381b693a54ae9ad5e6317fcdbb7a2d9b8c3b1364.json index 93e7390..8a166dc 100644 --- a/test/providers/tst_manifests/image/httpd@sha256:4b5cb7697fea2aa6d398504c381b693a54ae9ad5e6317fcdbb7a2d9b8c3b1364.json +++ b/test/providers/tst_manifests/image/httpd@sha256:4b5cb7697fea2aa6d398504c381b693a54ae9ad5e6317fcdbb7a2d9b8c3b1364.json @@ -4086,7 +4086,7 @@ ] }, { - "bom-ref": "pkg:deb/debian/libcom-err2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=1a8a9dbb194df5d1&upstream=e2fsprogs", + "bom-ref": "pkg:deb/debian/libcom-err2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=3ae0e410cfe581ff&upstream=e2fsprogs", "type": "library", "publisher": "Theodore Y. Ts'o ", "name": "libcom-err2", @@ -4094,7 +4094,7 @@ "licenses": [ { "license": { - "name": "LicenseRef-sha256:9e3a4384b6d8d2358d44103f62bcd948328b3f8a63a1a6baa66abeb43302d581" + "name": "sha256:9e3a4384b6d8d2358d44103f62bcd948328b3f8a63a1a6baa66abeb43302d581" } } ], @@ -4271,7 +4271,7 @@ ] }, { - "bom-ref": "pkg:deb/debian/libdb5.3@5.3.28%2Bdfsg1-0.5?arch=amd64&distro=debian-10&package-id=910a20bdce3547ea&upstream=db5.3", + "bom-ref": "pkg:deb/debian/libdb5.3@5.3.28%2Bdfsg1-0.5?arch=amd64&distro=debian-10&package-id=24cab09f870cf7ee&upstream=db5.3", "type": "library", "publisher": "Debian Berkeley DB Team ", "name": "libdb5.3", @@ -4279,7 +4279,7 @@ "licenses": [ { "license": { - "name": "LicenseRef-sha256:b3bbc6fbb3f2a0e6a487e953eb8c3cc4bdb6f4150f7f51d20b1e9a3c8ef92d3d" + "name": "sha256:b3bbc6fbb3f2a0e6a487e953eb8c3cc4bdb6f4150f7f51d20b1e9a3c8ef92d3d" } } ], @@ -5647,7 +5647,7 @@ ] }, { - "bom-ref": "pkg:deb/debian/libicu63@63.1-6%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=a180ea9e3b7989a3&upstream=icu", + "bom-ref": "pkg:deb/debian/libicu63@63.1-6%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=59d3854e0c9375a1&upstream=icu", "type": "library", "publisher": "Laszlo Boszormenyi (GCS) ", "name": "libicu63", @@ -5655,7 +5655,7 @@ "licenses": [ { "license": { - "name": "LicenseRef-sha256:0515ea67c829d73cf54d074ef7bd030968419f98a83e523d4300ea0f4d18ebc9" + "name": "sha256:0515ea67c829d73cf54d074ef7bd030968419f98a83e523d4300ea0f4d18ebc9" } } ], @@ -6182,7 +6182,7 @@ ] }, { - "bom-ref": "pkg:deb/debian/libldap-2.4-2@2.4.47%2Bdfsg-3%2Bdeb10u6?arch=amd64&distro=debian-10&package-id=b63707706e516b73&upstream=openldap", + "bom-ref": "pkg:deb/debian/libldap-2.4-2@2.4.47%2Bdfsg-3%2Bdeb10u6?arch=amd64&distro=debian-10&package-id=1cfe6e2be5a9442c&upstream=openldap", "type": "library", "publisher": "Debian OpenLDAP Maintainers ", "name": "libldap-2.4-2", @@ -6190,7 +6190,7 @@ "licenses": [ { "license": { - "name": "LicenseRef-sha256:0690f1ee382f98e95b446743db55395641d5e258de65939e9cb1c660d67a43a8" + "name": "sha256:0690f1ee382f98e95b446743db55395641d5e258de65939e9cb1c660d67a43a8" } } ], @@ -6288,7 +6288,7 @@ ] }, { - "bom-ref": "pkg:deb/debian/libldap-common@2.4.47%2Bdfsg-3%2Bdeb10u6?arch=all&distro=debian-10&package-id=f04113280174888f&upstream=openldap", + "bom-ref": "pkg:deb/debian/libldap-common@2.4.47%2Bdfsg-3%2Bdeb10u6?arch=all&distro=debian-10&package-id=e69f561869ff04f0&upstream=openldap", "type": "library", "publisher": "Debian OpenLDAP Maintainers ", "name": "libldap-common", @@ -6296,7 +6296,7 @@ "licenses": [ { "license": { - "name": "LicenseRef-sha256:0690f1ee382f98e95b446743db55395641d5e258de65939e9cb1c660d67a43a8" + "name": "sha256:0690f1ee382f98e95b446743db55395641d5e258de65939e9cb1c660d67a43a8" } } ], @@ -6884,7 +6884,7 @@ ] }, { - "bom-ref": "pkg:deb/debian/libncursesw6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=6c56928a7efb44d4&upstream=ncurses", + "bom-ref": "pkg:deb/debian/libncursesw6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=dd6e91cb036cd97c&upstream=ncurses", "type": "library", "publisher": "Craig Small ", "name": "libncursesw6", @@ -6892,7 +6892,7 @@ "licenses": [ { "license": { - "name": "LicenseRef-sha256:5e8ee902c8906ddb7779fd36dc9979cb08b51fbebf7c0b1a9aeb78af382af590" + "name": "sha256:5e8ee902c8906ddb7779fd36dc9979cb08b51fbebf7c0b1a9aeb78af382af590" } } ], @@ -7767,7 +7767,7 @@ ] }, { - "bom-ref": "pkg:deb/debian/libpcre3@2%3A8.39-12?arch=amd64&distro=debian-10&package-id=35b7de3a80d53d59&upstream=pcre3", + "bom-ref": "pkg:deb/debian/libpcre3@2%3A8.39-12?arch=amd64&distro=debian-10&package-id=a2c5569d9b015a19&upstream=pcre3", "type": "library", "publisher": "Matthew Vernon ", "name": "libpcre3", @@ -7775,7 +7775,7 @@ "licenses": [ { "license": { - "name": "LicenseRef-sha256:ac9276490d2fa167442ae1aae33926514ad10c8886baa40046c5e367fccc5938" + "name": "sha256:ac9276490d2fa167442ae1aae33926514ad10c8886baa40046c5e367fccc5938" } } ], @@ -8798,7 +8798,7 @@ ] }, { - "bom-ref": "pkg:deb/debian/libss2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=63fa318f9eefbc75&upstream=e2fsprogs", + "bom-ref": "pkg:deb/debian/libss2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=e493cfd6333d7432&upstream=e2fsprogs", "type": "library", "publisher": "Theodore Y. Ts'o ", "name": "libss2", @@ -8806,7 +8806,7 @@ "licenses": [ { "license": { - "name": "LicenseRef-sha256:6f717a1464301a641ac17e7301f1a1b221da802e8edf8cf4bc963721d487b146" + "name": "sha256:6f717a1464301a641ac17e7301f1a1b221da802e8edf8cf4bc963721d487b146" } } ], @@ -9348,7 +9348,7 @@ ] }, { - "bom-ref": "pkg:deb/debian/libtinfo6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=4d50fedeec9db609&upstream=ncurses", + "bom-ref": "pkg:deb/debian/libtinfo6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=32ae0288f40dd7ec&upstream=ncurses", "type": "library", "publisher": "Craig Small ", "name": "libtinfo6", @@ -9356,7 +9356,7 @@ "licenses": [ { "license": { - "name": "LicenseRef-sha256:5e8ee902c8906ddb7779fd36dc9979cb08b51fbebf7c0b1a9aeb78af382af590" + "name": "sha256:5e8ee902c8906ddb7779fd36dc9979cb08b51fbebf7c0b1a9aeb78af382af590" } } ], @@ -10443,7 +10443,7 @@ ] }, { - "bom-ref": "pkg:deb/debian/ncurses-base@6.1%2B20181013-2%2Bdeb10u2?arch=all&distro=debian-10&package-id=3238e6b392c1b881&upstream=ncurses", + "bom-ref": "pkg:deb/debian/ncurses-base@6.1%2B20181013-2%2Bdeb10u2?arch=all&distro=debian-10&package-id=a8f604f9c5ac808b&upstream=ncurses", "type": "library", "publisher": "Craig Small ", "name": "ncurses-base", @@ -10451,7 +10451,7 @@ "licenses": [ { "license": { - "name": "LicenseRef-sha256:5e8ee902c8906ddb7779fd36dc9979cb08b51fbebf7c0b1a9aeb78af382af590" + "name": "sha256:5e8ee902c8906ddb7779fd36dc9979cb08b51fbebf7c0b1a9aeb78af382af590" } } ], @@ -10557,7 +10557,7 @@ ] }, { - "bom-ref": "pkg:deb/debian/ncurses-bin@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=68e8ed2220f015ff&upstream=ncurses", + "bom-ref": "pkg:deb/debian/ncurses-bin@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=9954ccfd24462fc8&upstream=ncurses", "type": "library", "publisher": "Craig Small ", "name": "ncurses-bin", @@ -10565,7 +10565,7 @@ "licenses": [ { "license": { - "name": "LicenseRef-sha256:5e8ee902c8906ddb7779fd36dc9979cb08b51fbebf7c0b1a9aeb78af382af590" + "name": "sha256:5e8ee902c8906ddb7779fd36dc9979cb08b51fbebf7c0b1a9aeb78af382af590" } } ], @@ -11300,7 +11300,7 @@ ] }, { - "bom-ref": "pkg:deb/debian/tzdata@2021a-0%2Bdeb10u1?arch=all&distro=debian-10&package-id=11e09e914c1cd4a6", + "bom-ref": "pkg:deb/debian/tzdata@2021a-0%2Bdeb10u1?arch=all&distro=debian-10&package-id=c5cac233d1bc4fe4", "type": "library", "publisher": "GNU Libc Maintainers ", "name": "tzdata", @@ -11308,7 +11308,7 @@ "licenses": [ { "license": { - "name": "LicenseRef-sha256:75b41b8de75b1596a239f6fa8e4caa409de4cf985cee2943d2a94b4e96a5197d" + "name": "sha256:75b41b8de75b1596a239f6fa8e4caa409de4cf985cee2943d2a94b4e96a5197d" } } ], @@ -54672,7 +54672,7 @@ "pkg:deb/debian/base-files@10.3%2Bdeb10u10?arch=amd64&distro=debian-10&package-id=ae452714cef9cf4e", "pkg:deb/debian/debianutils@4.8.6.1?arch=amd64&distro=debian-10&package-id=b0e8f666c912d962", "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", - "pkg:deb/debian/libtinfo6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=4d50fedeec9db609&upstream=ncurses" + "pkg:deb/debian/libtinfo6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=32ae0288f40dd7ec&upstream=ncurses" ] }, { @@ -54734,9 +54734,9 @@ "dependsOn": [ "pkg:deb/debian/libblkid1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=d20eac8952a5e6b5&upstream=util-linux", "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", - "pkg:deb/debian/libcom-err2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=1a8a9dbb194df5d1&upstream=e2fsprogs", + "pkg:deb/debian/libcom-err2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=3ae0e410cfe581ff&upstream=e2fsprogs", "pkg:deb/debian/libext2fs2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=e40d517f10e825e0&upstream=e2fsprogs", - "pkg:deb/debian/libss2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=63fa318f9eefbc75&upstream=e2fsprogs", + "pkg:deb/debian/libss2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=e493cfd6333d7432&upstream=e2fsprogs", "pkg:deb/debian/libuuid1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=cc943ca139d0e67b&upstream=util-linux" ] }, @@ -54746,9 +54746,9 @@ "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", "pkg:deb/debian/libfdisk1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=54c2753ee170e0ea&upstream=util-linux", "pkg:deb/debian/libmount1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=c6f6118ba99c54cb&upstream=util-linux", - "pkg:deb/debian/libncursesw6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=6c56928a7efb44d4&upstream=ncurses", + "pkg:deb/debian/libncursesw6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=dd6e91cb036cd97c&upstream=ncurses", "pkg:deb/debian/libsmartcols1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=a95e9a21c0932258&upstream=util-linux", - "pkg:deb/debian/libtinfo6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=4d50fedeec9db609&upstream=ncurses" + "pkg:deb/debian/libtinfo6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=32ae0288f40dd7ec&upstream=ncurses" ] }, { @@ -54773,7 +54773,7 @@ "dependsOn": [ "pkg:deb/debian/dpkg@1.19.7?arch=amd64&distro=debian-10&package-id=da9ff9a377f09d63", "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", - "pkg:deb/debian/libpcre3@2%3A8.39-12?arch=amd64&distro=debian-10&package-id=35b7de3a80d53d59&upstream=pcre3" + "pkg:deb/debian/libpcre3@2%3A8.39-12?arch=amd64&distro=debian-10&package-id=a2c5569d9b015a19&upstream=pcre3" ] }, { @@ -54814,7 +54814,7 @@ "dependsOn": [ "pkg:deb/debian/libaprutil1@1.6.1-4?arch=amd64&distro=debian-10&package-id=eda9a1ee2039d110&upstream=apr-util", "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", - "pkg:deb/debian/libldap-2.4-2@2.4.47%2Bdfsg-3%2Bdeb10u6?arch=amd64&distro=debian-10&package-id=b63707706e516b73&upstream=openldap" + "pkg:deb/debian/libldap-2.4-2@2.4.47%2Bdfsg-3%2Bdeb10u6?arch=amd64&distro=debian-10&package-id=1cfe6e2be5a9442c&upstream=openldap" ] }, { @@ -54822,7 +54822,7 @@ "dependsOn": [ "pkg:deb/debian/libapr1@1.6.5-1%2Bb1?arch=amd64&distro=debian-10&package-id=489cc45ede79feca&upstream=apr%401.6.5-1", "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", - "pkg:deb/debian/libdb5.3@5.3.28%2Bdfsg1-0.5?arch=amd64&distro=debian-10&package-id=910a20bdce3547ea&upstream=db5.3", + "pkg:deb/debian/libdb5.3@5.3.28%2Bdfsg1-0.5?arch=amd64&distro=debian-10&package-id=24cab09f870cf7ee&upstream=db5.3", "pkg:deb/debian/libexpat1@2.2.6-2%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=d55bfe42f054b394&upstream=expat", "pkg:deb/debian/libgdbm6@1.18.1-4?arch=amd64&distro=debian-10&package-id=c9afbf45b6ae55eb&upstream=gdbm", "pkg:deb/debian/libssl1.1@1.1.1d-0%2Bdeb10u7?arch=amd64&distro=debian-10&package-id=0aa101ed766132f9&upstream=openssl", @@ -54896,7 +54896,7 @@ ] }, { - "ref": "pkg:deb/debian/libcom-err2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=1a8a9dbb194df5d1&upstream=e2fsprogs", + "ref": "pkg:deb/debian/libcom-err2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=3ae0e410cfe581ff&upstream=e2fsprogs", "dependsOn": [ "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" ] @@ -54905,12 +54905,12 @@ "ref": "pkg:deb/debian/libcurl4@7.64.0-4%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=af03801f530228cd&upstream=curl", "dependsOn": [ "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", - "pkg:deb/debian/libcom-err2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=1a8a9dbb194df5d1&upstream=e2fsprogs", + "pkg:deb/debian/libcom-err2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=3ae0e410cfe581ff&upstream=e2fsprogs", "pkg:deb/debian/libgssapi-krb5-2@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=563dc09768844327&upstream=krb5", "pkg:deb/debian/libidn2-0@2.0.5-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=5a5081d247582e95&upstream=libidn2", "pkg:deb/debian/libk5crypto3@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=04ecc244c55268d8&upstream=krb5", "pkg:deb/debian/libkrb5-3@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=2702e37fa523f601&upstream=krb5", - "pkg:deb/debian/libldap-2.4-2@2.4.47%2Bdfsg-3%2Bdeb10u6?arch=amd64&distro=debian-10&package-id=b63707706e516b73&upstream=openldap", + "pkg:deb/debian/libldap-2.4-2@2.4.47%2Bdfsg-3%2Bdeb10u6?arch=amd64&distro=debian-10&package-id=1cfe6e2be5a9442c&upstream=openldap", "pkg:deb/debian/libnghttp2-14@1.36.0-2%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=0ee3c902a7004593&upstream=nghttp2", "pkg:deb/debian/libpsl5@0.20.2-2?arch=amd64&distro=debian-10&package-id=409f4da8465b655e&upstream=libpsl", "pkg:deb/debian/librtmp1@2.4%2B20151223.gitfa8646d.1-2?arch=amd64&distro=debian-10&package-id=4e31bab7a6ca0f63&upstream=rtmpdump", @@ -54920,7 +54920,7 @@ ] }, { - "ref": "pkg:deb/debian/libdb5.3@5.3.28%2Bdfsg1-0.5?arch=amd64&distro=debian-10&package-id=910a20bdce3547ea&upstream=db5.3", + "ref": "pkg:deb/debian/libdb5.3@5.3.28%2Bdfsg1-0.5?arch=amd64&distro=debian-10&package-id=24cab09f870cf7ee&upstream=db5.3", "dependsOn": [ "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" ] @@ -55006,7 +55006,7 @@ "ref": "pkg:deb/debian/libgssapi-krb5-2@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=563dc09768844327&upstream=krb5", "dependsOn": [ "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", - "pkg:deb/debian/libcom-err2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=1a8a9dbb194df5d1&upstream=e2fsprogs", + "pkg:deb/debian/libcom-err2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=3ae0e410cfe581ff&upstream=e2fsprogs", "pkg:deb/debian/libk5crypto3@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=04ecc244c55268d8&upstream=krb5", "pkg:deb/debian/libkeyutils1@1.6-6?arch=amd64&distro=debian-10&package-id=1ed46086dbffc087&upstream=keyutils", "pkg:deb/debian/libkrb5-3@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=2702e37fa523f601&upstream=krb5", @@ -55022,7 +55022,7 @@ ] }, { - "ref": "pkg:deb/debian/libicu63@63.1-6%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=a180ea9e3b7989a3&upstream=icu", + "ref": "pkg:deb/debian/libicu63@63.1-6%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=59d3854e0c9375a1&upstream=icu", "dependsOn": [ "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", "pkg:deb/debian/libgcc1@1%3A8.3.0-6?arch=amd64&distro=debian-10&package-id=715380b30f28d876&upstream=gcc-8%408.3.0-6", @@ -55060,7 +55060,7 @@ "ref": "pkg:deb/debian/libkrb5-3@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=2702e37fa523f601&upstream=krb5", "dependsOn": [ "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", - "pkg:deb/debian/libcom-err2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=1a8a9dbb194df5d1&upstream=e2fsprogs", + "pkg:deb/debian/libcom-err2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=3ae0e410cfe581ff&upstream=e2fsprogs", "pkg:deb/debian/libk5crypto3@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=04ecc244c55268d8&upstream=krb5", "pkg:deb/debian/libkeyutils1@1.6-6?arch=amd64&distro=debian-10&package-id=1ed46086dbffc087&upstream=keyutils", "pkg:deb/debian/libkrb5support0@1.17-3%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=23be6b473ec0b06b&upstream=krb5", @@ -55075,11 +55075,11 @@ ] }, { - "ref": "pkg:deb/debian/libldap-2.4-2@2.4.47%2Bdfsg-3%2Bdeb10u6?arch=amd64&distro=debian-10&package-id=b63707706e516b73&upstream=openldap", + "ref": "pkg:deb/debian/libldap-2.4-2@2.4.47%2Bdfsg-3%2Bdeb10u6?arch=amd64&distro=debian-10&package-id=1cfe6e2be5a9442c&upstream=openldap", "dependsOn": [ "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", "pkg:deb/debian/libgnutls30@3.6.7-4%2Bdeb10u7?arch=amd64&distro=debian-10&package-id=2b175f545e2e827e&upstream=gnutls28", - "pkg:deb/debian/libldap-common@2.4.47%2Bdfsg-3%2Bdeb10u6?arch=all&distro=debian-10&package-id=f04113280174888f&upstream=openldap", + "pkg:deb/debian/libldap-common@2.4.47%2Bdfsg-3%2Bdeb10u6?arch=all&distro=debian-10&package-id=e69f561869ff04f0&upstream=openldap", "pkg:deb/debian/libsasl2-2@2.1.27%2Bdfsg-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=56eb272c9677fc6a&upstream=cyrus-sasl2" ] }, @@ -55112,10 +55112,10 @@ ] }, { - "ref": "pkg:deb/debian/libncursesw6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=6c56928a7efb44d4&upstream=ncurses", + "ref": "pkg:deb/debian/libncursesw6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=dd6e91cb036cd97c&upstream=ncurses", "dependsOn": [ "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", - "pkg:deb/debian/libtinfo6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=4d50fedeec9db609&upstream=ncurses" + "pkg:deb/debian/libtinfo6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=32ae0288f40dd7ec&upstream=ncurses" ] }, { @@ -55152,7 +55152,7 @@ "pkg:deb/debian/debconf@1.5.71?arch=all&distro=debian-10&package-id=fe38a53949ca2b50", "pkg:deb/debian/libaudit1@1%3A2.8.4-3?arch=amd64&distro=debian-10&package-id=e445bed1f84bcb4b&upstream=audit", "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", - "pkg:deb/debian/libdb5.3@5.3.28%2Bdfsg1-0.5?arch=amd64&distro=debian-10&package-id=910a20bdce3547ea&upstream=db5.3", + "pkg:deb/debian/libdb5.3@5.3.28%2Bdfsg1-0.5?arch=amd64&distro=debian-10&package-id=24cab09f870cf7ee&upstream=db5.3", "pkg:deb/debian/libpam-modules-bin@1.3.1-5?arch=amd64&distro=debian-10&package-id=631d9f9526108591&upstream=pam", "pkg:deb/debian/libpam0g@1.3.1-5?arch=amd64&distro=debian-10&package-id=75c54a61b843e467&upstream=pam", "pkg:deb/debian/libselinux1@2.8-1%2Bb1?arch=amd64&distro=debian-10&package-id=49addc4e237b1a0d&upstream=libselinux%402.8-1" @@ -55174,7 +55174,7 @@ ] }, { - "ref": "pkg:deb/debian/libpcre3@2%3A8.39-12?arch=amd64&distro=debian-10&package-id=35b7de3a80d53d59&upstream=pcre3", + "ref": "pkg:deb/debian/libpcre3@2%3A8.39-12?arch=amd64&distro=debian-10&package-id=a2c5569d9b015a19&upstream=pcre3", "dependsOn": [ "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" ] @@ -55209,7 +55209,7 @@ "ref": "pkg:deb/debian/libsasl2-modules-db@2.1.27%2Bdfsg-1%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=0dddbf5f31db948d&upstream=cyrus-sasl2", "dependsOn": [ "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", - "pkg:deb/debian/libdb5.3@5.3.28%2Bdfsg1-0.5?arch=amd64&distro=debian-10&package-id=910a20bdce3547ea&upstream=db5.3" + "pkg:deb/debian/libdb5.3@5.3.28%2Bdfsg1-0.5?arch=amd64&distro=debian-10&package-id=24cab09f870cf7ee&upstream=db5.3" ] }, { @@ -55222,7 +55222,7 @@ "ref": "pkg:deb/debian/libselinux1@2.8-1%2Bb1?arch=amd64&distro=debian-10&package-id=49addc4e237b1a0d&upstream=libselinux%402.8-1", "dependsOn": [ "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", - "pkg:deb/debian/libpcre3@2%3A8.39-12?arch=amd64&distro=debian-10&package-id=35b7de3a80d53d59&upstream=pcre3" + "pkg:deb/debian/libpcre3@2%3A8.39-12?arch=amd64&distro=debian-10&package-id=a2c5569d9b015a19&upstream=pcre3" ] }, { @@ -55249,10 +55249,10 @@ ] }, { - "ref": "pkg:deb/debian/libss2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=63fa318f9eefbc75&upstream=e2fsprogs", + "ref": "pkg:deb/debian/libss2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=e493cfd6333d7432&upstream=e2fsprogs", "dependsOn": [ "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", - "pkg:deb/debian/libcom-err2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=1a8a9dbb194df5d1&upstream=e2fsprogs" + "pkg:deb/debian/libcom-err2@1.44.5-1%2Bdeb10u3?arch=amd64&distro=debian-10&package-id=3ae0e410cfe581ff&upstream=e2fsprogs" ] }, { @@ -55294,7 +55294,7 @@ ] }, { - "ref": "pkg:deb/debian/libtinfo6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=4d50fedeec9db609&upstream=ncurses", + "ref": "pkg:deb/debian/libtinfo6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=32ae0288f40dd7ec&upstream=ncurses", "dependsOn": [ "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc" ] @@ -55321,7 +55321,7 @@ "ref": "pkg:deb/debian/libxml2@2.9.4%2Bdfsg1-7%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=2b71d5263434c464", "dependsOn": [ "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", - "pkg:deb/debian/libicu63@63.1-6%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=a180ea9e3b7989a3&upstream=icu", + "pkg:deb/debian/libicu63@63.1-6%2Bdeb10u1?arch=amd64&distro=debian-10&package-id=59d3854e0c9375a1&upstream=icu", "pkg:deb/debian/liblzma5@5.2.4-1?arch=amd64&distro=debian-10&package-id=c32191f717ec58de&upstream=xz-utils", "pkg:deb/debian/zlib1g@1%3A1.2.11.dfsg-1?arch=amd64&distro=debian-10&package-id=bcc78aeb924eb6b8&upstream=zlib" ] @@ -55360,10 +55360,10 @@ ] }, { - "ref": "pkg:deb/debian/ncurses-bin@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=68e8ed2220f015ff&upstream=ncurses", + "ref": "pkg:deb/debian/ncurses-bin@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=9954ccfd24462fc8&upstream=ncurses", "dependsOn": [ "pkg:deb/debian/libc6@2.28-10?arch=amd64&distro=debian-10&package-id=3885776e13200a70&upstream=glibc", - "pkg:deb/debian/libtinfo6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=4d50fedeec9db609&upstream=ncurses" + "pkg:deb/debian/libtinfo6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=32ae0288f40dd7ec&upstream=ncurses" ] }, { @@ -55409,7 +55409,7 @@ ] }, { - "ref": "pkg:deb/debian/tzdata@2021a-0%2Bdeb10u1?arch=all&distro=debian-10&package-id=11e09e914c1cd4a6", + "ref": "pkg:deb/debian/tzdata@2021a-0%2Bdeb10u1?arch=all&distro=debian-10&package-id=c5cac233d1bc4fe4", "dependsOn": [ "pkg:deb/debian/debconf@1.5.71?arch=all&distro=debian-10&package-id=fe38a53949ca2b50" ] @@ -55427,7 +55427,7 @@ "pkg:deb/debian/libselinux1@2.8-1%2Bb1?arch=amd64&distro=debian-10&package-id=49addc4e237b1a0d&upstream=libselinux%402.8-1", "pkg:deb/debian/libsmartcols1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=a95e9a21c0932258&upstream=util-linux", "pkg:deb/debian/libsystemd0@241-7~deb10u8?arch=amd64&distro=debian-10&package-id=af5fa602069b9853&upstream=systemd", - "pkg:deb/debian/libtinfo6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=4d50fedeec9db609&upstream=ncurses", + "pkg:deb/debian/libtinfo6@6.1%2B20181013-2%2Bdeb10u2?arch=amd64&distro=debian-10&package-id=32ae0288f40dd7ec&upstream=ncurses", "pkg:deb/debian/libudev1@241-7~deb10u8?arch=amd64&distro=debian-10&package-id=1650009f99e14534&upstream=systemd", "pkg:deb/debian/libuuid1@2.33.1-0.1?arch=amd64&distro=debian-10&package-id=cc943ca139d0e67b&upstream=util-linux", "pkg:deb/debian/login@1%3A4.5-1.1?arch=amd64&distro=debian-10&package-id=beffe62c711b8d0b&upstream=shadow", From d50bea239c48811d705ed0e80d14c2e12d13a81a Mon Sep 17 00:00:00 2001 From: Noah Santschi-Cooney Date: Tue, 20 May 2025 12:29:53 +0100 Subject: [PATCH 3/5] fix: purl should have %2B not + --- package-lock.json | 8 ++++---- package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index 61fb7af..d9502cf 100644 --- a/package-lock.json +++ b/package-lock.json @@ -16,7 +16,7 @@ "help": "^3.0.2", "https-proxy-agent": "^7.0.6", "node-fetch": "^2.6.7", - "packageurl-js": "^1.2.1", + "packageurl-js": "^1.0.2", "yargs": "^17.7.2" }, "bin": { @@ -3098,9 +3098,9 @@ } }, "node_modules/packageurl-js": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/packageurl-js/-/packageurl-js-1.2.1.tgz", - "integrity": "sha512-cZ6/MzuXaoFd16/k0WnwtI298UCaDHe/XlSh85SeOKbGZ1hq0xvNbx3ILyCMyk7uFQxl6scF3Aucj6/EO9NwcA==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/packageurl-js/-/packageurl-js-1.0.2.tgz", + "integrity": "sha512-fWC4ZPxo80qlh3xN5FxfIoQD3phVY4+EyzTIqyksjhKNDmaicdpxSvkWwIrYTtv9C1/RcUN6pxaTwGmj2NzS6A==", "license": "MIT" }, "node_modules/parent-module": { diff --git a/package.json b/package.json index 11eb4e2..f11bec0 100644 --- a/package.json +++ b/package.json @@ -51,7 +51,7 @@ "help": "^3.0.2", "https-proxy-agent": "^7.0.6", "node-fetch": "^2.6.7", - "packageurl-js": "^1.2.1", + "packageurl-js": "^1.0.2", "yargs": "^17.7.2" }, "devDependencies": { From 7f01da0ce560e0c4bbbcc1c691c41d92d1cfd6d6 Mon Sep 17 00:00:00 2001 From: Noah Santschi-Cooney Date: Tue, 20 May 2025 14:59:32 +0100 Subject: [PATCH 4/5] fix: bigger buffer for large output from syft --- src/index.js | 4 ++-- src/oci_image/utils.js | 13 +++++++------ 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/src/index.js b/src/index.js index 0f74ac9..14ca6d2 100644 --- a/src/index.js +++ b/src/index.js @@ -162,7 +162,7 @@ async function componentAnalysis(manifest, opts = {}) { * @param {Array} imageRefs * @param {false} html * @param {object} [opts={}] - * @returns {Promise} + * @returns {Promise} imageRefs - OCI image references * @param {boolean} [html=false] - true will return a html string, false will return AnalysisReport * @param {{}} [opts={}] - optional various options to pass along the application - * @returns {Promise} + * @returns {Promise Date: Wed, 21 May 2025 11:55:46 +0100 Subject: [PATCH 5/5] fix: review feedback --- src/analysis.js | 4 +-- src/index.js | 4 +-- src/oci_image/images.js | 42 ++++++++----------------------- test/providers/oci_images.test.js | 14 +++++++++++ 4 files changed, 28 insertions(+), 36 deletions(-) diff --git a/src/analysis.js b/src/analysis.js index cd004ed..f841ca9 100644 --- a/src/analysis.js +++ b/src/analysis.js @@ -139,7 +139,7 @@ async function requestComponent(provider, manifest, url, opts = {}) { * @param {Array} imageRefs * @param {string} url * @param {{}} [opts={}] - optional various options to pass along the application - * @returns {Promise} + * @returns {Promise} */ async function requestImages(imageRefs, url, html = false, opts = {}) { const imageSboms = {} @@ -158,8 +158,6 @@ async function requestImages(imageRefs, url, html = false, opts = {}) { body: JSON.stringify(imageSboms), }) - console.error(JSON.stringify(imageSboms, '', '\t')) - if(resp.status === 200) { let result; if (!html) { diff --git a/src/index.js b/src/index.js index 14ca6d2..30bc662 100644 --- a/src/index.js +++ b/src/index.js @@ -162,7 +162,7 @@ async function componentAnalysis(manifest, opts = {}) { * @param {Array} imageRefs * @param {false} html * @param {object} [opts={}] - * @returns {Promise} imageRefs - OCI image references * @param {boolean} [html=false] - true will return a html string, false will return AnalysisReport * @param {{}} [opts={}] - optional various options to pass along the application - * @returns {Promise 0; - } - /** * @param {string[]} parts * @returns {string} @@ -135,13 +121,6 @@ export class Image { return fullName; } - /** - * @returns {string} - */ - getUser() { - return this.user; - } - /** * @returns {string} */ @@ -169,6 +148,7 @@ export class Image { const errors = []; const image = this.user != null ? this.repository.substring(this.user.length + 1) : this.repository; + /** @type {[[string, RegExp, string]]} */ const checks = [ ['registry', Image.DOMAIN_REGEXP, this.registry], ['image', Image.IMAGE_NAME_REGEXP, image], @@ -288,20 +268,20 @@ export class ImageRef { const simpleName = this.image.getSimpleName(); if (repositoryUrl != null && repositoryUrl.toLowerCase() !== simpleName.toLowerCase()) { - qualifiers[ImageRef.REPOSITORY_QUALIFIER, repositoryUrl.toLowerCase()]; + qualifiers[ImageRef.REPOSITORY_QUALIFIER] = repositoryUrl.toLowerCase(); } if (this.platform != null) { - qualifiers[ImageRef.ARCH_QUALIFIER, this.platform.architecture.toLowerCase()]; - qualifiers[ImageRef.OS_QUALIFIER, this.platform.os.toLowerCase()]; + qualifiers[ImageRef.ARCH_QUALIFIER] = this.platform.architecture.toLowerCase(); + qualifiers[ImageRef.OS_QUALIFIER] = this.platform.os.toLowerCase(); if (this.platform.variant != null) { - qualifiers[ImageRef.VARIANT_QUALIFIER, this.platform.variant.toLowerCase()]; + qualifiers[ImageRef.VARIANT_QUALIFIER] = this.platform.variant.toLowerCase(); } } const tag = this.image.tag; if (tag != null) { - qualifiers[ImageRef.TAG_QUALIFIER, tag]; + qualifiers[ImageRef.TAG_QUALIFIER] = tag; } return new PackageURL( diff --git a/test/providers/oci_images.test.js b/test/providers/oci_images.test.js index 9335dfd..3d3c710 100644 --- a/test/providers/oci_images.test.js +++ b/test/providers/oci_images.test.js @@ -19,5 +19,19 @@ suite('testing the OCI image data provider', () => { providedSbom['serialNumber'] = null expect(JSON.stringify(providedSbom, null, 4).trimEnd()).to.deep.equal(expectedSbom) }).timeout(10000) + }); + + [ + "nginx^^darwin/arm64", + "hub.docker.io/banana/phone/dotcom:1.2.3/invalid", + "hub.docker.com/doesnt/exist", + "what^^is^^this", + "definitely\\^\\^notthis", + "httpd@sha256:4b5cb7697fea2aa6d398504c381b693a54ae9ad5e6317fcdbb7a2d9b8c3b1366" // digest doesnt exist + ].forEach(imageRef => { + test(`verify invalid image ref ${imageRef} is rejected`, () => { + expect(() => generateImageSBOM(parseImageRef(imageRef))).to.throw() + }).timeout(10000) }) + }).beforeAll(() => clock = sinon.useFakeTimers(new Date('2023-08-07T00:00:00.000Z'))).afterAll(()=> clock.restore());