Release (V1.0.0)

This commit is contained in:
Andres Pavez 2023-03-14 10:59:59 -07:00
parent 5190c47807
commit 6b7327d6ee
No known key found for this signature in database
GPG Key ID: 8F167EFAA223E095
503 changed files with 832 additions and 368 deletions

8
.gitignore vendored Normal file
View File

@ -0,0 +1,8 @@
*~
\#*
.*~
.\#*
*.bak
.DS_Store
*.iso
*.iso.sha256

50
CHANGELOG.md Normal file
View File

@ -0,0 +1,50 @@
# [v1.0.0-20230109](https://github.com/iana-org/coen/releases/tag/v1.0.0-20230109) coen-1.0.0-amd64.iso
## Contains
* Release v1.0.0
* Based on Debian 11.6 bullseye from http://snapshot.debian.org date 20230109
* EPOCH=1673222400
* [Key Management Tools: Legacy](https://github.com/iana-org/dnssec-keytools-legacy)
* [Key Management Tools](https://github.com/iana-org/dnssec-keytools)
* AEP Keyper PKCS#11 library
* Assorted utilities
* Minimized Xfce Desktop Environment
## Improvements
* Overall grammar improvements
* COEN v1.0.0 is a hybrid ISO. This allows use with both legacy and modern BIOS boot methods and was tested with CD/DVD, USB Flash, and SD card media
* All packages are reproducible from Debian bullseye, and only fontconfing is from bookworm
### Packages
* Replaced syslinux by grub-pc-bin and grub-efi-amd64-bin
* Added exfat, unzip, locales, python3, and openssl libraries
* Added xsltproc for xml file comparison
### Scripts
* **configure-printer:** Deprecation warning message about the use of ppd sent to /dev/null instead of showing in the terminal
* **hsmfd-hash:** Explicitly indicates that sort uses `LC_COLLATE=POSIX`. Added default copies for printing the HSMFD hash
* **printlog:** Added copies for printing, reduced font size, and added regular expression to remove log timestamps and loglevel for printing
### New Features
* **print-script:** Bash script to print the terminal commands
* **print-ttyaudit:** Bash script to print the HSM logs
* **copy-hsmfd:** Bash script to copy HSMFD contents to new flash drives; includes verification via hash comparison
# [v0.4.0-20180311](https://github.com/iana-org/coen/releases/tag/v0.4.0-20180311) coen-0.4.0-amd64.iso
## Contains
* First public release v0.4.0
* Based on Debian 9.4 stretch from http://snapshot.debian.org date 20180311
* EPOCH=1520726400
* [Key Management Tools: Legacy](https://github.com/iana-org/dnssec-keytools-legacy)
* AEP Keyper PKCS#11 provider
* Assorted utilities
* Minimized Xfce Desktop Environment

View File

@ -1,34 +1,38 @@
FROM debian:9.4-slim@sha256:91e111a5c5314bc443be24cf8c0d59f19ffad6b0ea8ef8f54aedd41b8203e3e1
FROM debian:bullseye-20230109-slim@sha256:1acb06a0c31fb467eb8327ad361f1091ab265e0bf26d452dea45dcb0c0ea5e75
ENV DEBIAN_FRONTEND noninteractive
ENV DEBIAN_FRONTEND=noninteractive
COPY create-iso.sh .
COPY variables.sh .
COPY SHA256SUMS .
COPY archives-env.sha256 .
COPY archives-distro.sha256 .
COPY archives-fontc.sha256 .
COPY tools/ /tools/
RUN sha256sum -c SHA256SUMS
RUN sha256sum -c archives-env.sha256
RUN sha256sum -c archives-distro.sha256
RUN sha256sum -c archives-fontc.sha256
RUN . ./variables.sh && \
rm -f /etc/apt/sources.list && \
echo "deb http://snapshot.debian.org/archive/debian/$(date --date "$DATE" '+%Y%m%dT%H%M%SZ') $DIST main" >> /etc/apt/sources.list && \
echo "deb http://snapshot.debian.org/archive/debian/$(date --date "$DATE" '+%Y%m%dT%H%M%SZ') "$DIST" main" >> /etc/apt/sources.list && \
echo "deb http://snapshot.debian.org/archive/debian/$(date --date "$DATE" '+%Y%m%dT%H%M%SZ') "$DIST"-updates main" >> /etc/apt/sources.list && \
echo "deb http://snapshot.debian.org/archive/debian-security/$(date --date "$DATE" '+%Y%m%dT%H%M%SZ') "$DIST"/updates main" >> /etc/apt/sources.list
echo "deb http://snapshot.debian.org/archive/debian-security/$(date --date "$DATE" '+%Y%m%dT%H%M%SZ') "$DIST"-security main" >> /etc/apt/sources.list && \
echo "deb http://snapshot.debian.org/archive/debian/$(date --date "$DATE" '+%Y%m%dT%H%M%SZ') "$DIST_ADD" main" >> /etc/apt/sources.list
RUN apt-get update -o Acquire::Check-Valid-Until=false && \
apt-get install -o Acquire::Check-Valid-Until=false --no-install-recommends --yes \
liblzo2-2 xorriso debootstrap \
locales && \
sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/g' /etc/locale.gen && \
locale-gen en_US.UTF-8
RUN apt-get update -o Acquire::Check-Valid-Until=false
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en
ENV LC_ALL en_US.UTF-8
RUN mkdir -p /var/cache/apt/archives/ && \
cp /tools/archives-env/*.deb /var/cache/apt/archives/
RUN dpkg-reconfigure locales
RUN dpkg -i /tools/squashfs-tools_4.3-3.0tails4_amd64.deb && \
dpkg -i /tools/debuerreotype_0.7-1_all.deb
RUN apt-get install -o Acquire::Check-Valid-Until=false --no-install-recommends --yes \
grub-common mtools \
liblzo2-2 xorriso debootstrap debuerreotype locales squashfs-tools
RUN rm -rf /var/lib/apt/lists/* \
&& localedef -i en_US -c -f UTF-8 -A /usr/share/locale/locale.alias en_US.UTF-8
ENV LANG en_US.utf8
CMD ["/create-iso.sh"]

View File

@ -1,4 +1,4 @@
Copyright (c) 2018 Internet Corporation for Assigned Names and Numbers
Copyright (c) 2023 Internet Corporation for Assigned Names and Numbers
("ICANN")
Permission to use, copy, modify, and distribute this software for any

View File

@ -1,30 +1,54 @@
RELEASE = 0.4.0
RELEASE = 1.0.0
.PHONY: usage build remove run copy all default
.PHONY: usage build podman-build remove podman-remove run podman-run copy podman-copy all podman-all default
usage:
@echo "Please provide an option:"
@echo " make build --- Build the COEN ISO image"
@echo " make run --- Run a container to build the ISO image"
@echo " make remove --- Remove the container"
@echo " make copy --- Copy the ISO image into the host directory"
@echo " make all --- Execute build, remove, run and copy"
@echo "Please execute with one of the following options:"
@echo " make build : Build a Docker container image using the Dockerfile"
@echo " make podman-build : Build a Podman container image using the Dockerfile"
@echo " make run : Run a Docker container to build the COEN ISO image"
@echo " make podman-run : Run a Podman container to build the COEN ISO image"
@echo " make remove : Remove the Docker container"
@echo " make podman-remove : Remove the Podman container"
@echo " make copy : Copy the resultant COEN ISO image from the Docker container into the host directory"
@echo " make podman-copy : Copy the resultant COEN ISO image from the Podman container into the host directory"
@echo " make all : Execute build, remove, run, and copy with Docker"
@echo " make podman-all : Execute build, remove, run, and copy with Podman"
build:
docker build -t coen:$(RELEASE) .
podman-build:
podman build -t coen:$(RELEASE) .
remove:
-docker rm coen
podman-remove:
-podman rm coen
run:
docker run -i -t \
docker run --init --interactive --tty \
--privileged \
--userns=host --ipc=host --network=host --pid=host --uts=host \
--name=coen \
coen:$(RELEASE)
podman-run:
podman run --interactive --tty \
--privileged \
--userns=host --ipc=host --network=host --pid=host --uts=host \
--name=coen \
coen:$(RELEASE)
copy:
-docker cp coen:/opt/coen-${RELEASE}-amd64.iso .
podman-copy:
-podman cp coen:/opt/coen-${RELEASE}-amd64.iso .
all: build remove run copy
podman-all: podman-build podman-remove podman-run podman-copy
default: usage

150
README.md
View File

@ -1,126 +1,100 @@
# Ceremony Operating ENvironment (COEN)
# Ceremony Operating ENvironment (COEN)<!-- omit in toc -->
COEN is a live operating system consisting of:
- A custom Debian GNU/Linux Live CD
- The [Key Management Tools](https://github.com/iana-org/dnssec-keytools)
- The AEP Keyper PKCS#11 provider
- Assorted utilities.
- [Key Management Tools: Legacy](https://github.com/iana-org/dnssec-keytools-legacy)
- [Key Management Tools](https://github.com/iana-org/dnssec-keytools)
- The AEP Keyper PKCS#11 library
- Assorted utilities
## Reproducible ISO image to make The Root Zone DNSSEC Key Signing Key Ceremony System more Trustworthy
## Table of Contents<!-- omit in toc -->
- [Reproducible COEN ISO image to enhance Root Zone DNSSEC Key Signing Key ceremony trustworthiness](#reproducible-coen-iso-image-to-enhance-root-zone-dnssec-key-signing-key-ceremony-trustworthiness)
- [What are reproducible builds?](#what-are-reproducible-builds)
- [Acknowledgments](#acknowledgments)
- [Requirements for building the COEN ISO image](#requirements-for-building-the-coen-iso-image)
- [Disabling SELinux](#disabling-selinux)
- [Building the COEN ISO image](#building-the-coen-iso-image)
- [Tested Platforms](#tested-platforms)
This **Reproducible** ISO image provide a verifiable process to obtain the same
hash every time at build the ISO image to increase the confidence in the DNSSEC Key
Signing Key (KSK) for the Root Zone.
## Reproducible COEN ISO image to enhance Root Zone DNSSEC Key Signing Key ceremony trustworthiness
The **reproducible** COEN ISO image provides a verifiable process to generate the same hash any time the COEN ISO image is built, which consequently increases trustworthiness in the DNSSEC Key Signing Key (KSK).
### What are reproducible builds?
Quoted from https://reproducible-builds.org
> Reproducible builds are a set of software development practices that create a
verifiable path from human readable source code to the binary code used by
computers.
>
> Most aspects of software verification are done on source code, as that is what
humans can reasonably understand. But most of the time, computers require
software to be first built into a long string of numbers to be used. With
reproducible builds, multiple parties can redo this process independently and
ensure they all get exactly the same result. We can thus gain confidence that a
distributed binary code is indeed coming from a given source code.
> Reproducible builds are a set of software development practices that create an independently-verifiable path from source to binary code.
> The motivation behind the **Reproducible Builds** project is therefore to allow verification that no vulnerabilities or backdoors have been introduced during this compilation process. By promising identical results are always generated from a given source, this allows multiple third parties to come to a consensus on a "correct" result, highlighting any deviations as suspect and worthy of scrutiny.
## Acknowledgments
This project cannot be possible without:
This project is made possibly by:
- The [Reproducible Builds](https://reproducible-builds.org/) project
- [Debian as trust anchor](https://wiki.debian.org/ReproducibleBuilds)
- [Debian serving as trust anchor](https://www.debian.org/)
- [Debuerreotype](https://github.com/debuerreotype/debuerreotype) a reproducible, snapshot-based Debian rootfs builder ([License](https://github.com/debuerreotype/debuerreotype/blob/master/LICENSE))
- (The Amnesic Incognito Live System)[https://tails.boum.org/index.en.html] ([License](https://tails.boum.org/doc/about/license/index.en.html))
- [The Amnesic Incognito Live System](https://tails.boum.org/index.en.html) ([License](https://tails.boum.org/doc/about/license/index.en.html))
## Requirements for building the ISO image
## Requirements for building the COEN ISO image
Building the ISO image requires:
> **Warning**: In order to generate a reproducible COEN ISO with a matching hash, Docker/Podman requires administrator privileges, and suppressing container and operating system security protections. Consequently, testing should occur in a suitable environment.
* [Docker](https://www.docker.com/). The recommended Docker version is 18.03.
* SELinux to be disabled. SELinux must be completely disabled rather than with **permissive mode** since the behave is differently.
To build the COEN ISO image:
* Use [Docker](https://www.docker.com/) (recommended) or alternatively [Podman](https://podman.io/)
* Execute commands as administrator, root, or with `sudo`
* Execute container with full capabilities `--privileged` which is required during ISO generation to mount/share, create device nodes, chroot into the new rootfs, and disable security kernel protections e.g. AppArmor and SELinux
* Completely disable SELinux rather than operating with **permissive mode** because the generated image will not be reproducible otherwise. In addition, `--privilege` mode reportedly disables SELinux with `--security-opt label=disable`, but in testing, without manually disabling SELinux prior to ISO generation including a restart to reload the kernel, the resulting ISO will not match the hash. The differences with SELinux enabled are benign, but obviously result in a different hash
### Disabling SELinux
If you are running a Red Hat based distribution, including RHEL, CentOS and
Fedora, you will probably have the SELinux security module installed.
If you are running a Red Hat based distribution, including RHEL, CentOS, and Fedora, it is likely the SELinux security module is installed.
To check your SELinux mode, run `sestatus` and check the output.
Execute `sestatus` and check the output for the current SELinux mode.
If you see **enforcing** or **permissive** on *"Current mode"*, SELinux is
enabled and enforcing rules or is enable and log rather than enforce errors.
If you see **enforcing** or **permissive** for *"Current mode"*, SELinux is
enabled and enforcing rules or is enabled and logging rather than enforcing errors.
> **Warning** before proceeding with this, disabling SELinux also disables the
generation of file contexts so an entire system relabeling is needed afterwards.
> **Note**: before proceeding, be aware disabling SELinux also disables the
generation of file contexts, so an entire system relabeling is required if SELinux is enabled again.
To disable SELinux:
- Edit `/etc/sysconfig/selinux` or `/etc/selinux/config` depending of your distro
- Set the `SELINUX` parameter to `disabled`
- Edit `/etc/sysconfig/selinux` or `/etc/selinux/config` depending on your distribution
- Set the `SELinux` parameter to `disabled`
- For the changes to take effect, you need to **reboot** the machine, since
SELinux is running within the kernel
- Check the status of SELinux using `sestatus` command
- Check the status of SELinux using the `sestatus` command
## Building the ISO image
## Building the COEN ISO image
Execute the following commands to build the ISO image:
Run `make` to see the execution options.
Running `make all` or `make podman-all` will build a container image in Docker or Podman. Then, a container will execute a bash script to build the COEN ISO, and if the build succeeds, the resulting COEN ISO will be copied into the host directory.
If permission errors are encountered executing `make all` or `make podman-all` as a non-root user, try `sudo make all` or `sudo make podman-all`
Final hash result should match with the following:
```
git clone https://github.com/iana-org/coen && \
cd coen && \
make all
```
* If you have a error executing `make all` as a non-root user, try to
execute `sudo make all`.
This will build a docker image with the proper environment to build the
ISO. Then will run a container executing a bash script to build the ISO and
if the build succeeded it will copy the resulting ISO into the host directory.
You can execute `make` command to see more options.
## Contributing
### If the build failed
Please send us an issue report at https://github.com/iana-org/coen with the error
that is displayed in your terminal window.
### If the reproduction succeeded
Congrats for successfully reproducing the ISO image!
You can compute the SHA-256 checksum of the resulting ISO image by yourself:
```
sha256sum coen-0.4.0-amd64.iso
```
or
```
shasum -a 256 coen-0.4.0-amd64.iso
405d7c76c114feb93fcc5345e13850e59d86341a08161207d8eb8c395410c13a coen-1.0.0-amd64.iso
```
Then, comparing it with the following checksum:
## Tested Platforms
```
8105b885b176741d25ef9d391c6a302aed3f6c916093a621a865cb90d560774f coen-0.4.0-amd64.iso
```
Testing has been performed in the following environments:
### If the reproduction failed
Please help us to improve it. You can install `diffoscope` https://diffoscope.org/
and download the image from:
https://github.com/iana-org/coen/releases/tag/v0.4.0-20180311
and then compare it with your image executing the following command:
```
diffoscope \
--text diffoscope.txt \
path/to/public/coen-0.4.0-amd64.iso \
path/to/your/coen-0.4.0-amd64.iso
```
Please send us an issue report at https://github.com/iana-org/coen attaching the
diffoscope.txt file.
| OS | Docker | Podman | SELinux | AppArmor |
| :------------------: | :--------------------------: | :----: | :------: | :------: |
| Debian 11.6 bullseye | 23.0.1, build a5ee5b1 | - | - | Enabled |
| Arch Linux | 23.0.1, build a5ee5b1dfc | - | - | - |
| Fedora 37 | 23.0.1, build a5ee5b1 | 4.4.2 | Disabled | - |
| AlmaLinux 9.1 | 23.0.1, build a5ee5b1 | 4.2.0 | Disabled | - |
| CentOS 7.9.2009 | 23.0.1, build a5ee5b1 | - | Disabled | - |
| MacOS Ventura 13.2.1 | 20.10.23, build 7155243 | - | - | - |
| openSUSE Tumbleweed | 20.10.23-ce, build 6051f1429 | - | - | Enabled |
| Windows 10 | 20.10.22, build 32ac30b | - | - | - |
| Ubuntu 22.04.2 LTS | 20.10.17, build 100c70180f | - | - | Enabled |

View File

@ -1,24 +1,12 @@
f9fd8d851d5a855cfa97eafe062418fb97e9cb574bab77326e9a34f9e8aa2c98 ./create-iso.sh
c93b498e8599dd2368ae92622aee2342a312f84ae216eb2ece659fa9e4864ca3 ./tools/debuerreotype_0.7-1_all.deb
dbed950a8b2e9c35dd76002e414268697a4b84749625753266c13bfbfa5eccb8 ./tools/hooks/00-install-ksk-packages.sh
fa97bedd94635866336547f7f5c2aaeff10e8533ed86e4819d3820d8ccb1c862 ./tools/hooks/01-fix-fontconfig-cache.sh
86441e5494f5444c4d14c6e78d0250d86706e4422fc030d538197b0a60ddf5bf ./tools/hooks/02-fix-initramfs-tools.sh
fc6ad08b3d8d5fd08e64e031b31766355a6faa4249971fca17fd382f42318df1 ./tools/hooks/03-fix-gtk-immodules-cache.sh
76b8539898c19f12f9f1ef26da6b1514cb44dfd2b79f34ae81f2494259a763d6 ./tools/hooks/04-fix-gdk-pixbuf-glib2.0-shadow.sh
b0cb9c6e8ca58353afc5643ba184fc24a501c6f091c354b720ecce736171a951 ./tools/hooks/05-fix-non-reproducible-files.sh
53e79110308dbda9b29d91c755f9250543135447d0d23dac6e9f17867c9334ff ./create-iso.sh
f989acf349846e318793d4486d18f0ecc0cb566b203436299ff39440882c0913 ./tools/hooks/01-install-ksk-packages.sh
0790ad92ff31d09951dea38389890c139397435b2c8a2234c0221ebc9b8184cc ./tools/hooks/02-fix-non-reproducible-files.sh
72e4e673e75466fddd5f3964e3db3f941e0d40214ec37f167fe425b33e60e1c0 ./tools/mksquashfs-excludes
390fdc4c915aeed379196335e672d6a9af6677e6d675093f8855c85953aae246 ./tools/packages/fontconfig-config_2.11.0-6.7.0tails4_all.deb
892a2c0b4f8e4874161165cb253755b3bd695ce238b30c3b8e5447ff269c2740 ./tools/packages/fontconfig_2.11.0-6.7.0tails4_amd64.deb
01db265c90f351367c73cd7ecedeca2f490374579320c5240feecdc70040917e ./tools/packages/gir1.2-gtk-3.0_3.22.11-1.0tails1_amd64.deb
4e49e6161a93424700ced09d0225574d3f6dd406ba9f9e14c36a50e870faab16 ./tools/packages/gtk-update-icon-cache_3.22.11-1.0tails1_amd64.deb
db1d9dcd6d0c9587136c5a65419ee9eaa7a8a20c163dd2718cd826056a893819 ./tools/packages/initramfs-tools-core_0.130.0tails1_all.deb
36c39407b505015a80e666726018edad37211d594b862238475d59d3de4e0da9 ./tools/packages/initramfs-tools_0.130.0tails1_all.deb
93e954744ec11e1d6837a792e26cc93b88f0735f7184337c4e65babca65503ab ./tools/packages/ksk-tools-0.1.0coen_amd64.deb
d5a6fe7a56dcc8e635939234c59118046a5769ec1dfd89f2ead1eb0ace847626 ./tools/packages/initrd.img-5.10.0-20-amd64.tgz
27c88370b4d0ed93bd0d9455c1821143866bbddc26d1e2679ab7bcabb3dbbd40 ./tools/packages/ksk-tools-1.0.0coen_amd64.deb
2080347093bc714b92d2f02e9c19e51ca23804776c2b52958c25630330b25f1d ./tools/packages/ksk-xfce-custom-0.1.0coen_amd64.deb
933adbbead4fd8ced095b5f43fd82b092298aaf95436d8b051b2ee9a4abee917 ./tools/packages/libfontconfig1_2.11.0-6.7.0tails4_amd64.deb
a8946b779ccf305da8dadefa9d7d9402ccfe756246dd70a251e4375076a83648 ./tools/packages/libgtk-3-0_3.22.11-1.0tails1_amd64.deb
605e3c77857d9c55932c7f497f56c70d46af65af59600e5507f42aea3832a848 ./tools/packages/libgtk-3-common_3.22.11-1.0tails1_all.deb
a0ae2652c5ca8461752f17ab22aa385c588481351b7b4aeb199a3d23d6479c34 ./tools/packages/libgtk2.0-0_2.24.31-2.0tails1_amd64.deb
0862890d70bafeb6b4a7a1c1da05c90569e0147522d6526fad6d146d6335b79f ./tools/packages/libgtk2.0-common_2.24.31-2.0tails1_all.deb
5c7ab880233139bc213d2ef214dc6c433eac488eaa51f8d59c4eb791fa777293 ./tools/squashfs-tools_4.3-3.0tails4_amd64.deb
eb66b37b4c0a81285e0c2fa18787b942fdee63a4d1c25cb4343ab50c03d1524a ./variables.sh
e81fb408e40d81a9274cf43fbbe0716f290fc88cb2a9802b9a9fd436612987c7 ./tools/packages/kskm_0.0.1_efd2237_amd64.deb
70cbb0d538516fbd4c77b7a419ab86e789d044709c839522ac6fe4b6fad0bf4d ./variables.sh
752f42c76d9b45300d00308f64b7a28b1512540638e768e2997a2b5116bf8bee ./archives-distro.sha256
24126d60c4814b7abe075f84527cefe254b361e1876caba8dad61bc2f355d1f9 ./archives-env.sha256
22a6fcb59d44d2f3229fb322467d9f65cc1ca1d71a26e6f20898a795ee0f9b2f ./archives-fontc.sha256

430
archives-distro.sha256 Normal file
View File

@ -0,0 +1,430 @@
2046876c82fc1c342b38ace9aa0661bcb3e167837c984b4bdc89702bc78df5ac ./tools/archives-distro/adwaita-icon-theme_3.38.0-1_all.deb
ab18fc8127b384ba094dd2b83716b2197cc773573728ffcebb594918a27ba994 ./tools/archives-distro/bc_1.07.1-2+b2_amd64.deb
b2d488ad4d8d8adb3ba319fc9cb2cf9909fc42cb82ad239a26c570a2e749c389 ./tools/archives-distro/ca-certificates_20210119_all.deb
ed2018b8c7ab7006826ccfcc6d306c3a5e1c6dc12595022e4e02913302fdc10e ./tools/archives-distro/cpp-10_10.2.1-6_amd64.deb
43bf075f7da8d2a30ab0799452ec49c2ae4fb47260f406f5470e2b63593f795b ./tools/archives-distro/cpp_4%3a10.2.1-1_amd64.deb
448bed5be1a75d9d8b4b09d32b90a29799e0bfe8371aeaa336ec325ba7d31cc1 ./tools/archives-distro/cups-bsd_2.3.3op2-3+deb11u2_amd64.deb
22bb98d94642822af0acf4995fc54dce787432eaf0992f2caa60ec28c7a15706 ./tools/archives-distro/cups-client_2.3.3op2-3+deb11u2_amd64.deb
059de9307d51dbf08aebaf850fd273016d6859b6938921fab07dbbb0536b238e ./tools/archives-distro/cups-common_2.3.3op2-3+deb11u2_all.deb
67ba9d5577a4f35c8d3025cab91c352b2dc4d157f62dd347378a593a212798ea ./tools/archives-distro/cups-core-drivers_2.3.3op2-3+deb11u2_amd64.deb
b03d846d6bf67c2121d2962f94994641cc6362c7fb0ba685100c962e10a91d7e ./tools/archives-distro/cups-daemon_2.3.3op2-3+deb11u2_amd64.deb
bf3bb11a01243e436a0e922c7351e5150b24e224015c17a6d31b2f459f45d470 ./tools/archives-distro/cups-filters-core-drivers_1.28.7-1+deb11u1_amd64.deb
4f56f8f978245318efad73b7c5831c4990ad29ed61307a1eb9b5568b3faa3b22 ./tools/archives-distro/cups-filters_1.28.7-1+deb11u1_amd64.deb
4ade4b183d82438a8b933a8f64c0b09db08a6c9ac8b3c764da678c5ee45aed6b ./tools/archives-distro/cups-ipp-utils_2.3.3op2-3+deb11u2_amd64.deb
25319e34115a58e453e289947e1be7f032798f46c548b6fa0f006efb03f8c4f1 ./tools/archives-distro/cups-ppdc_2.3.3op2-3+deb11u2_amd64.deb
abb1e40f2e0eecfa306b303eab446f4627a80722e7f1cf463513696aa6d6ac8f ./tools/archives-distro/cups-server-common_2.3.3op2-3+deb11u2_all.deb
4df971020416388ec991a3928407db43220130d82ac3b1ad14f02f481bb3861f ./tools/archives-distro/cups_2.3.3op2-3+deb11u2_amd64.deb
33f069ae9e5f67c733ab51487459cd75360eaf0af28b50d8dc4a15ff60fd80ee ./tools/archives-distro/dbus-user-session_1.12.24-0+deb11u1_amd64.deb
c7ce20282bad7301cf34dce81bb343fc0f406195ee2e06ebd76870e6da7ca956 ./tools/archives-distro/dbus_1.12.24-0+deb11u1_amd64.deb
194991ed5f4ab1ca25413858cb99c910391cfd6d3b1b6a3d3e56a4b3a706a37d ./tools/archives-distro/dconf-gsettings-backend_0.38.0-2_amd64.deb
639125f7a44d11f96661c61a07abbb58da0e5636ed406ac186adcef8651775c2 ./tools/archives-distro/dconf-service_0.38.0-2_amd64.deb
84f9417de2e1e4a4eeefa3cd819320a7aacc926445e9b731f4a6262ab4d69745 ./tools/archives-distro/desktop-file-utils_0.26-1_amd64.deb
0a4c7396f3144974c9425765a237714bae97df2c663628f2097255cab491e620 ./tools/archives-distro/dmidecode_3.3-2_amd64.deb
71b0471242f7bb777264cdab55c141f1fc043b443105633a38708e125f90c4ea ./tools/archives-distro/dosfstools_4.2-1_amd64.deb
fffea010d602134d5fed7cba9f9e82fc7e12eb41092530655726fee69a4d77d9 ./tools/archives-distro/eject_2.36.1-8+deb11u1_amd64.deb
7b8ae62b76337fd1d5fbf034efda09b76647ad1f57e926ed52b90a78491ce8df ./tools/archives-distro/enscript_1.6.5.90-3+b1_amd64.deb
400d06eaaf5d040cd102ada7c485b62e04498ba08cc5ddc6a0f7f9689d9c324b ./tools/archives-distro/exfat-fuse_1.3.0-2_amd64.deb
d207dac3c9e7ec5b10c0960d534eda2681c68c0af64b8a28e7b8ce0de4971358 ./tools/archives-distro/exfat-utils_1.3.0-2_amd64.deb
2d64d3656244dbaf9bdcd259f153a14f55b03e14a6f3a572eb2536af9843e3e7 ./tools/archives-distro/exo-utils_4.16.0-1+deb11u1_amd64.deb
9ff6017670d7f1d25d759ad9be8fd21ed94239129f4a5cd90e7cd34b9c4cc7a7 ./tools/archives-distro/fdisk_2.36.1-8+deb11u1_amd64.deb
48afb6ad7d15e6104a343b789f73697301ad8bff77b69927bc998f5a409d8e90 ./tools/archives-distro/fontconfig-config_2.13.1-4.2_all.deb
c594a100759ef7c94149359cf4d2da5fb59ef30474c7a2dde1e049d32b9c478a ./tools/archives-distro/fontconfig_2.13.1-4.2_amd64.deb
1f67421437b6eb18669d2868e3e02cb88668683d635198142f48aacc5b397118 ./tools/archives-distro/fonts-dejavu-core_2.37-2_all.deb
f95a139adb7f1b60626e76d4d45d1b35aad1bc2c2597394c291ef5f84b5dcb43 ./tools/archives-distro/fonts-urw-base35_20200910-1_all.deb
11e9f6da3a52110a51877bd5527b3333943f97f57c873140c3e0949aac4fbe6f ./tools/archives-distro/fuse_2.9.9-5_amd64.deb
c515a51d5b3dd488e20ef6123fe052a3b6a0b95393c6b00e62edc83f564c9b13 ./tools/archives-distro/gdisk_1.0.6-1.1_amd64.deb
ed444a124eddd658edf74df7307344c895971032abefc0f976d206091c204ef2 ./tools/archives-distro/ghostscript_9.53.3~dfsg-7+deb11u2_amd64.deb
36154c1e50e8e8013a14ce4ecfa1cf7527250beb49a2c60ac02ab2c8a40a5357 ./tools/archives-distro/gir1.2-atk-1.0_2.36.0-2_amd64.deb
60d8f35f0d67548088525543e3ff9e00934ebb5bfe7639afa45e5740e024f991 ./tools/archives-distro/gir1.2-freedesktop_1.66.1-1+b1_amd64.deb
ba2552eb10b14b6f8ab44e28b7d638dd28de5b7e9a593e08b6f69395382a5c7b ./tools/archives-distro/gir1.2-gdkpixbuf-2.0_2.42.2+dfsg-1+deb11u1_amd64.deb
1163a4e7eb095e37752739c0065bad50fa2177c13a87e7c1b0d44ed517fe8c91 ./tools/archives-distro/gir1.2-glib-2.0_1.66.1-1+b1_amd64.deb
a2a5c8e5aa3d8f7f5244464afce826485c96a0a3f2af8380fb33d8f2b2eb550d ./tools/archives-distro/gir1.2-gtk-3.0_3.24.24-4+deb11u2_amd64.deb
057b61d69437910e0350076cc0dd46d3ddb01ba181a434802aa328e81bc440d1 ./tools/archives-distro/gir1.2-harfbuzz-0.0_2.7.4-1_amd64.deb
ab90d119e8117bd85d122fed5a6be126b319c4f15f00f94bb083fb1de20b869d ./tools/archives-distro/gir1.2-notify-0.7_0.7.9-3_amd64.deb
9a8af1909a11c10b4ace6b4adf8cd09605dfccedccde5de4432df2694ead2661 ./tools/archives-distro/gir1.2-packagekitglib-1.0_1.2.2-2_amd64.deb
0859356937e4b269201341ce410c77761fb68537ed3c317c223e7e67105ab0bb ./tools/archives-distro/gir1.2-pango-1.0_1.46.2-3_amd64.deb
2f9c139e7f371c02eecc116ee076e44e249fdfe1c69a2e8b0428419998b9ca03 ./tools/archives-distro/gir1.2-polkit-1.0_0.105-31+deb11u1_amd64.deb
a07370151ce5169e48ee7799b9bd9a7a035467a21f5cf3373b2aff090968609c ./tools/archives-distro/glib-networking-common_2.66.0-2_all.deb
19131c7c31bc3fae604df30d2f73c3e8338ffeb2988fe167bb8b2b1c8913c9ab ./tools/archives-distro/glib-networking-services_2.66.0-2_amd64.deb
b2cd50a8c3b30c16fd1a19c5244f681c6c0d1f426c385d44900477b052f70024 ./tools/archives-distro/glib-networking_2.66.0-2_amd64.deb
3758968491a770e50cd85122c00d141944ffb43cb7a5c886a37290fef848cee3 ./tools/archives-distro/gsettings-desktop-schemas_3.38.0-2_all.deb
b877617f382240663be1010510511a5f9fe10853a3f97088cc01be277ff184d6 ./tools/archives-distro/gtk-update-icon-cache_3.24.24-4+deb11u2_amd64.deb
48a8b2f7b479baa1209b2f19adf37826d84acd88d1a132cc7afe92fef2bedff1 ./tools/archives-distro/gvfs-common_1.46.2-1_all.deb
73b64c7e3395fce3bdb8bdd8ddf868bc416533a9ecde5e2a5465e7411b3b4aae ./tools/archives-distro/gvfs-daemons_1.46.2-1_amd64.deb
2d97096303fb4eaa90cb8cb4917529f5d0837fc2f11e8f7d64daf98c5fdc7001 ./tools/archives-distro/gvfs-libs_1.46.2-1_amd64.deb
70733602b9b646a04616ae99bf0627fdb5db6afa9fbfd9b170aa66f3337f284f ./tools/archives-distro/gvfs_1.46.2-1_amd64.deb
20304d34b85a734ec1e4830badf3a3a70a5dc5f9c1afc0b2230ecd760c81b5e0 ./tools/archives-distro/hicolor-icon-theme_0.17-2_all.deb
301c937c664f76c9c61813a45ca02a7b1b31f27a7876715ea4e0136c382bfc98 ./tools/archives-distro/ifupdown_0.8.36_amd64.deb
bad652452612c81b8cfdca1411a036a768f5fa3461a04d6662f1ee0807ea3791 ./tools/archives-distro/iproute2_5.10.0-4_amd64.deb
616ec3cb9f9610279c731bc3b9f8aee65c65f0d536fd284f502482497a6ef289 ./tools/archives-distro/iputils-ping_3%3a20210202-1_amd64.deb
0187c070d139b905045763542684cfcaec4c454f9cd854027744229466f8e1ef ./tools/archives-distro/keyboard-configuration_1.205_all.deb
068fa7a7b9f663bbd6d7ae5775942fc363fac86f2d966de0008646e2274d91ca ./tools/archives-distro/less_551-2_amd64.deb
bef9c0ef5c8eeded91a1545b5c66c16aa60775b975bc9747d4b0dccf597d2a4d ./tools/archives-distro/libasyncns0_0.8-6+b2_amd64.deb
aed9f1251832a26967ee6c5a5238ab3c319affb15f127be5e6dc015a8ebef1b0 ./tools/archives-distro/libatasmart4_0.19-5_amd64.deb
65b063b4b45c5fd60d91e374d01bb73eacdb30c545a6ef0873d07d6da97765d1 ./tools/archives-distro/libatk-bridge2.0-0_2.38.0-1_amd64.deb
572cd62f92ec25c75b98617321373d46a6717cbcc93d2025ebd6d550f1abf901 ./tools/archives-distro/libatk1.0-0_2.36.0-2_amd64.deb
86c1acae473977f8a78b905090847df654306996324493f9a39d9f27807778b2 ./tools/archives-distro/libatk1.0-data_2.36.0-2_all.deb
53435278eb8815aafbb41db29a691a43a9de16fa58d9bc7908a1f6f2a07f0b67 ./tools/archives-distro/libatspi2.0-0_2.38.0-4_amd64.deb
44104ae278d853f9d20b90a6192257497d430f3ff4af093af1c504effb9caf4f ./tools/archives-distro/libavahi-client3_0.8-5+deb11u1_amd64.deb
847c7050a234915514a967e2edbf8b1a02fe5451bb910f9bdeffda0688280fce ./tools/archives-distro/libavahi-common-data_0.8-5+deb11u1_amd64.deb
d5d97f84a894e6ef0e535a17d1dcc1ed64933d6e04a350306e989d05b37de00c ./tools/archives-distro/libavahi-common3_0.8-5+deb11u1_amd64.deb
2e717860b56d11782b9be88535be394ce6157fd85225cb1d141010a32e15dc8e ./tools/archives-distro/libayatana-ido3-0.4-0_0.8.2-1_amd64.deb
5060f593d0a7b82674ce57c9801175923b01ef80926eb1a30f0412ccfab547b7 ./tools/archives-distro/libayatana-indicator3-7_0.8.4-1+deb11u2_amd64.deb
0754fe8867fbf9a493798b70ad48adac7900c20cf89329b2676f8fdf8909abd6 ./tools/archives-distro/libblockdev-fs2_2.25-2_amd64.deb
bcafbf75cb76488cedf851706c67143a47a97fbcbb0cd87896c54d15ca2a1ffd ./tools/archives-distro/libblockdev-loop2_2.25-2_amd64.deb
a35d87791fe174781ea8f957a747355ef412b89cca8740667f85ee7e8a270401 ./tools/archives-distro/libblockdev-part-err2_2.25-2_amd64.deb
76078b526543c0527e40a33211b7dca82df71653868a55fb27be20e71bbf0ed5 ./tools/archives-distro/libblockdev-part2_2.25-2_amd64.deb
0ae803beaa662ec7cd80ac0cb6b17c0f03b58a12f6b74f7ce8e2ad83a342654e ./tools/archives-distro/libblockdev-swap2_2.25-2_amd64.deb
a4fed527c01e2b2487909ff2bbc4024def35661dbf83801abe224c5242888774 ./tools/archives-distro/libblockdev-utils2_2.25-2_amd64.deb
b2623c0f8c1af8f720352300d786c66a712e5a4c630cb70e69f10d6d7c837f01 ./tools/archives-distro/libblockdev2_2.25-2_amd64.deb
63b7c2194c739750e0348291fcde00b0dcd345361f8902a057c901190c628734 ./tools/archives-distro/libbluray2_1%3a1.2.1-4+deb11u2_amd64.deb
21775f2ae3e1221dab6b9cbb7743df54f751b831e89e005a6f3ce951ba3a30b9 ./tools/archives-distro/libbpf0_1%3a0.3-2_amd64.deb
c1ebaad3f7e2dfe3f49d519617bb295e6f2f6b00a6dca1f76a99846bef19e080 ./tools/archives-distro/libbsd-dev_0.11.3-1_amd64.deb
284a7b8dcfcad74770f57360721365317448b38ab773db542bf630e94e60c13e ./tools/archives-distro/libbsd0_0.11.3-1_amd64.deb
bac4a07774fbd532c12c350f3ec6e847d6abb3b1d5a5a9fc2030a48e76eeed56 ./tools/archives-distro/libc-l10n_2.31-13+deb11u5_all.deb
a046d3ca805d4151029941fae736bfdf1c6f3dbcf1bd581102bd5ad844ea013e ./tools/archives-distro/libcairo-gobject2_1.16.0-5_amd64.deb
b27210c0cf7757120e871abeba7de12a5cf94727a2360ecca5eb8e50ca809d12 ./tools/archives-distro/libcairo2_1.16.0-5_amd64.deb
a5b9717d8455cf8517c4c5f29aa04a4dec973430f0d3c1232f652abb9a4d93cc ./tools/archives-distro/libcap2-bin_1%3a2.44-1_amd64.deb
b7f0b90535a04f25f4fe8a838b548eed87447b3225414bd4f30755ee917698dd ./tools/archives-distro/libcolord2_1.4.5-3_amd64.deb
67c6cf6ba6259468660da16676fcb7ac77cf4a14ca812a60375ca26263a7b273 ./tools/archives-distro/libcups2_2.3.3op2-3+deb11u2_amd64.deb
de209b2a71aabffa3c05938e7751847662b279fadb9759e6cacbea40b3cbcc1c ./tools/archives-distro/libcupsfilters1_1.28.7-1+deb11u1_amd64.deb
3544f2cf26039fade9c7e7297dde1458b8386442c3b0fc26fdf10127433341c1 ./tools/archives-distro/libdatrie1_0.2.13-1_amd64.deb
dd594737f53de48c3cbe3431b12207c0c3382a48f257a81d5a7e59fcc6d3ace9 ./tools/archives-distro/libdbus-1-3_1.12.24-0+deb11u1_amd64.deb
3007965cbb62f1a39467f3fefaa9fadc1456cfef55689769f09b6bf5c3ca9e8b ./tools/archives-distro/libdbusmenu-glib4_18.10.20180917~bzr492+repack1-2_amd64.deb
e3463a6246716ea615ad04fa11551bf18a6ea5aa3d9ed953883ac7762c18a8f0 ./tools/archives-distro/libdbusmenu-gtk3-4_18.10.20180917~bzr492+repack1-2_amd64.deb
ff3b1d05466782acd6e335b001460b7af4ea76f49bbbbd5447535d2b702fa97e ./tools/archives-distro/libdconf1_0.38.0-2_amd64.deb
dadaf0d28360f6eb21ad389b2e0f12f8709c9de539b28de9c11d7ec7043dec95 ./tools/archives-distro/libdeflate0_1.7-1_amd64.deb
092debbef0ae0076b1c8b43a76aa9291622de4aa9938bb109a709a3a6eb6cc2f ./tools/archives-distro/libdirectfb-1.7-7_1.7.7-9_amd64.deb
0005f21e342925bd26a25185289ae035aa931ced8f6fd9e3d4deade36d272ecd ./tools/archives-distro/libdrm-amdgpu1_2.4.104-1_amd64.deb
60c69026fb8e4cfdf8d80a4a86ee30516c611dcc4de4aa1c8ccbf06dff563e2b ./tools/archives-distro/libdrm-common_2.4.104-1_all.deb
7d376adc7b5d4d83ec8414ff67dbc18765c6d420de9a6e1045fead7f1f82331d ./tools/archives-distro/libdrm-intel1_2.4.104-1_amd64.deb
dbf4a3be55c609b1a2ea89d6782ae5c9a5b991844917dcd42c01666b73a96ceb ./tools/archives-distro/libdrm-nouveau2_2.4.104-1_amd64.deb
c33cd14e8ed7e2dfc02696ed51d4795c5797b0821666667e0a889bba705862b0 ./tools/archives-distro/libdrm-radeon1_2.4.104-1_amd64.deb
113396b3a33000f7f3347cd711ad9bcfe9945927331cc6cee63c751a889a967b ./tools/archives-distro/libdrm2_2.4.104-1_amd64.deb
ac545f6ad10ba791aca24b09255ad1d6d943e6bc7c5511d5998e104aee51c943 ./tools/archives-distro/libedit2_3.1-20191231-2+b1_amd64.deb
a0c36a3665af89cbc96f865bd1b64c6c07b93096e91ba5b470d375d02dfa6d82 ./tools/archives-distro/libegl-mesa0_20.3.5-1_amd64.deb
3a5583ebd7a9d8ad102484db9637c409561428d21345037b310c4ef2ca8e8837 ./tools/archives-distro/libegl1_1.3.2-1_amd64.deb
e1ad132d502b255023c222d0cae1d02ca941f6b68fd0e9b908c6004cc326592c ./tools/archives-distro/libelf1_0.183-1_amd64.deb
d4148f8f07a9b5873af0c701b4237bd51a88750c1c0e142b1c20f7f8f65f4b4f ./tools/archives-distro/libengine-pkcs11-openssl_0.4.11-1_amd64.deb
3d050c9b138872c83b5b3521c97ab89f8a885b1391fdd0477cf8168ae54728a3 ./tools/archives-distro/libepoxy0_1.5.5-1_amd64.deb
37338dff6c7e5239210ed4c056e1f9b1395ab7e12c826428a9c0a0f1d7e4039d ./tools/archives-distro/libevdev2_1.11.0+dfsg-1_amd64.deb
4a6bb3a6fde89b70669760e02cd251fef3906c454064d9f50059fc3b7b7b543d ./tools/archives-distro/libevent-2.1-7_2.1.12-stable-1_amd64.deb
8ea5b829490f9afeeeb8ffa3191e4c8075250465420435f53a007a0a7cbf4f33 ./tools/archives-distro/libexif12_0.6.22-3_amd64.deb
ad038f2461f640b2eac2e6da596995187d41d23cfa5064ce1fb71942d49a57a1 ./tools/archives-distro/libexo-2-0_4.16.0-1+deb11u1_amd64.deb
dd50846347079fcecb2747ff105a0c4e173b596d3745cc8dc77503ccc86da011 ./tools/archives-distro/libexo-common_4.16.0-1+deb11u1_all.deb
5744040c4735bcdd51238aebfa3e402b857244897f1007f61154982ebe5abbd7 ./tools/archives-distro/libexpat1_2.2.10-2+deb11u5_amd64.deb
bfd5f642aba1d5ca38c80efd100b7727e42a247cfd7315f0d7b456bb20666be6 ./tools/archives-distro/libfdisk1_2.36.1-8+deb11u1_amd64.deb
7672e1cbd80dfed5bfa572221f061e61b6d84479ba12dc5825145216fbc01de0 ./tools/archives-distro/libflac8_1.3.3-2+deb11u1_amd64.deb
b92861827627a76e74d6f447a5577d039ef2f95da18af1f29aa98fb96baea4c1 ./tools/archives-distro/libfontconfig1_2.13.1-4.2_amd64.deb
1d0392c1aa9caf4d5f261ff144b467b65fa6519a5a810ea84cd6b72b714ed611 ./tools/archives-distro/libfontembed1_1.28.7-1+deb11u1_amd64.deb
1d0aa6ea16a34a8de1ea170360c4cb699f3239aeddb292df2d2c4eb6e835de4b ./tools/archives-distro/libfontenc1_1%3a1.1.4-1_amd64.deb
690a889adfbe4e656e33b512dc1099cf29328632d684527dcfd4862810c5ee56 ./tools/archives-distro/libfribidi0_1.0.8-2+deb11u1_amd64.deb
2f0f2dc59cd190885a4a52fbcff9958b94759a64abe411e8e061915c40ee3269 ./tools/archives-distro/libgarcon-1-0_4.16.1-1_amd64.deb
167442b0820c3d2ed3dc0e32d57f0ac5cc863ffdbea5b7d02b764fe53ecf6d04 ./tools/archives-distro/libgarcon-common_4.16.1-1_all.deb
d2f3a04da1d20eadbe5a2f50ae00dce63fecc071981cf6b4aa6d120e17b59c51 ./tools/archives-distro/libgarcon-gtk3-1-0_4.16.1-1_amd64.deb
2d9b07282e46e3c9398613b6d4fe86c3259e4326b158be7e1f4f58cab541156c ./tools/archives-distro/libgbm1_20.3.5-1_amd64.deb
ba6d801fc9371064e449214eb16309e7b76ab1729fc467812e4fc969f362e186 ./tools/archives-distro/libgck-1-0_3.38.1-2_amd64.deb
51361136563445bebe7ee7208c334986b516f11753774f62256857102c401073 ./tools/archives-distro/libgcr-base-3-1_3.38.1-2_amd64.deb
e62caed68b0ffaa03b5fa539d6fdc08c4151f66236d5878949bead0b71b7bb09 ./tools/archives-distro/libgdbm-compat4_1.19-2_amd64.deb
e54cfe4d8b8f209bb7df31a404ce040f7c2f9b1045114a927a7e1061cdf90727 ./tools/archives-distro/libgdbm6_1.19-2_amd64.deb
c593621089e9f8a8b5012de2cec9c835fdd64d0c42344423fc0a904c82e4967b ./tools/archives-distro/libgdk-pixbuf-2.0-0_2.42.2+dfsg-1+deb11u1_amd64.deb
c11e9c92534e1e8036ad33a7ee1962b120834a02c41594cdf90ce01855ba84a4 ./tools/archives-distro/libgdk-pixbuf-xlib-2.0-0_2.40.2-2_amd64.deb
2e1988105dee8597fbb356aeb04cc9e2f9774626d0d2dbd18984d3a500f096c6 ./tools/archives-distro/libgdk-pixbuf2.0-0_2.40.2-2_amd64.deb
e99738118ad4a63a4cfd7e34006fd379dd850b9527ec464a104b178a5038b5be ./tools/archives-distro/libgdk-pixbuf2.0-common_2.42.2+dfsg-1+deb11u1_all.deb
787e913bf56f19bc54720c3463ab8afe1cc9442536fde31e2a36afc3939f28c9 ./tools/archives-distro/libgirepository-1.0-1_1.66.1-1+b1_amd64.deb
08e8bc20077e188da7061f77d23a336782d8463c0cc112fabbfa9c8b45923fd2 ./tools/archives-distro/libgl1-mesa-dri_20.3.5-1_amd64.deb
f300f9610b5f05f1ce566c4095f1bf2170e512ac5d201c40d895b8fce29dec98 ./tools/archives-distro/libgl1_1.3.2-1_amd64.deb
aa8f8eaf13224cbb8729416be79350460f7f2230193b2da5d5e24f3dc7e9985f ./tools/archives-distro/libglapi-mesa_20.3.5-1_amd64.deb
367116f5e3b3a003a80203848b5ce1401451a67c2b2b9d6a383efc91badb0724 ./tools/archives-distro/libgles2_1.3.2-1_amd64.deb
995469490dcc8f667df8051a39dd5abd7149d849456c28af4e58cbfd6d6dc4f8 ./tools/archives-distro/libglib2.0-0_2.66.8-1_amd64.deb
52a4464d181949f5ed8f7e55cca67ba2739f019e93fcfa9d14e8d65efe98fffc ./tools/archives-distro/libglvnd0_1.3.2-1_amd64.deb
2d19e2addfbea965220e62f512318351f12bdfe7e180f265f00d0f2834a77833 ./tools/archives-distro/libglx-mesa0_20.3.5-1_amd64.deb
cb642200f7e28e6dbb4075110a0b441880eeec35c8a00a2198c59c53309e5e17 ./tools/archives-distro/libglx0_1.3.2-1_amd64.deb
4530c95aefa48e33fd8cf4acbe5c4b559dbe7bdf4c56469986c83a203982cef1 ./tools/archives-distro/libgomp1_10.2.1-6_amd64.deb
8c6f58b2f0592fdc9d29abc979d3ff47f2c449e20c4f1b326f84165a86115c7b ./tools/archives-distro/libgpm2_1.20.7-8_amd64.deb
31113b9e20c89d3b923da0540d6f30535b8d14f32e5904de89e34537fa87d59a ./tools/archives-distro/libgraphite2-3_1.3.14-1_amd64.deb
addf27b31c5170eef2c4c4bcc76a77fbf42528bb5e9ce4cf88dfd883c5f3afc5 ./tools/archives-distro/libgs9-common_9.53.3~dfsg-7+deb11u2_all.deb
811d0d29674a52ab63a6081d9cbd08f9508301696688cab637bd9d72dc3a7f3e ./tools/archives-distro/libgs9_9.53.3~dfsg-7+deb11u2_amd64.deb
f58fcba87f2b7cb03a0f9f174817cc2ef18cd5dcfe41129b618ec3b7d5e0f8a0 ./tools/archives-distro/libgtk-3-0_3.24.24-4+deb11u2_amd64.deb
172d01f359af8f13cee93dba183e282ea5f059f2a418dfe66d35abf9dd60ddd7 ./tools/archives-distro/libgtk-3-common_3.24.24-4+deb11u2_all.deb
c443b0930e651c9153262482daaf0bd36a239812bba1893fd9fc0a818da46232 ./tools/archives-distro/libgtop-2.0-11_2.40.0-2_amd64.deb
7d8c3f3e2bbbfba2f06b7c9107c3ed2b42166a03c9fd6e7235dba116393e21a6 ./tools/archives-distro/libgtop2-common_2.40.0-2_all.deb
9ec44c4018ed498e871eed85150e5fe557a7fae21f2b5b3d014a0c27be1eaaee ./tools/archives-distro/libgudev-1.0-0_234-1_amd64.deb
c76825341b5877240ff2511a376844a50ffda19d9d019ae65a5b3a97f9a1a183 ./tools/archives-distro/libharfbuzz0b_2.7.4-1_amd64.deb
452796e565c9d42386bd59990000ae9c37d85e142e00ee2b14df0787e2bbf970 ./tools/archives-distro/libice6_2%3a1.0.10-1_amd64.deb
2bf5c46254f527865bfd6368e1120908755fa57d83634bd7d316c9b3cfd57303 ./tools/archives-distro/libicu67_67.1-7_amd64.deb
0227af6e1e6d2aee6123f40ff8678e033ddf5165fcd8fa43a4851fd3832db5e2 ./tools/archives-distro/libidn11_1.33-3_amd64.deb
00730820dbaee9945772231898f53a555204f7c34855b65dac7e6e6b5f37bb1f ./tools/archives-distro/libijs-0.35_0.35-15_amd64.deb
19d90e89fd83502f5f0467dd331a5e649c9e617acbac5e39036ffb8362cd6c10 ./tools/archives-distro/libimobiledevice6_1.3.0-6_amd64.deb
7ece5e583b1e907b4704c02c0a86ee304635d52dde943fcfd77e4ed699cf3378 ./tools/archives-distro/libinput-bin_1.16.4-3_amd64.deb
060d91a72ecc772baf4e1056dc4c53bcc32feb56356a3a1eb22653cfefd7b65b ./tools/archives-distro/libinput10_1.16.4-3_amd64.deb
41eeaf9557571044f75b31730c05c22df3039d3152afd27b9fd33206f2fd5f7e ./tools/archives-distro/libisl23_0.23-1_amd64.deb
9646d69eefce505407bf0437ea12fb7c2d47a3fd4434720ba46b642b6dcfd80f ./tools/archives-distro/libjbig0_2.1-3.1+b2_amd64.deb
ba28c7d02646cf49f4b623f1826d5da92f23fe0edb97aad5ae8c6fbb63cfa29b ./tools/archives-distro/libjbig2dec0_0.19-2_amd64.deb
28de780a1605cf501c3a4ebf3e588f5110e814b208548748ab064100c32202ea ./tools/archives-distro/libjpeg62-turbo_1%3a2.0.6-4_amd64.deb
c2db69dda6ceda43065d694c5ebd515900dd38d7231a74016f10a2d2a870f01d ./tools/archives-distro/libjson-glib-1.0-0_1.6.2-1_amd64.deb
a938ec35a20dca2e5878a8750fb44683b67a5f7c2d23d383963803a9fcfac1a3 ./tools/archives-distro/libjson-glib-1.0-common_1.6.2-1_all.deb
3c22d5fb77b34cf8af99ceec514ffff658da56e91b3e9af66acae23419c20ea6 ./tools/archives-distro/libkeybinder-3.0-0_0.3.2-1.1_amd64.deb
0608ecb6ed258814e390b52b3fb50f2a6d3239b5ecb1086292ae08be00a67b0f ./tools/archives-distro/liblcms2-2_2.12~rc1-2_amd64.deb
e095844e9f9fb3147336a3248899f9893575e8df5bdc020bdb6914cfd2bff142 ./tools/archives-distro/liblightdm-gobject-1-0_1.26.0-7_amd64.deb
eaff3c8dd6039af90b8b6bdbf33433e35d8c808a7aa195d0e3800ef5e61affff ./tools/archives-distro/libllvm11_1%3a11.0.1-2_amd64.deb
af50e8191f505b2afc0bdc1b6323a75842bfeed9e5a092565824cf4913f2d340 ./tools/archives-distro/liblocale-gettext-perl_1.07-4+b1_amd64.deb
f14788b03a47136d7715d34ca6cb6f758e784c742938fe4e850b767deefc9c28 ./tools/archives-distro/liblz1_1.12-1_amd64.deb
482f334a9afcd72316692311e8f79fab15f4e7e7eb1b3d04dc4cb86046faba9c ./tools/archives-distro/libmd-dev_1.0.3-3_amd64.deb
9e425b3c128b69126d95e61998e1b5ef74e862dd1fc953d91eebcc315aea62ea ./tools/archives-distro/libmd0_1.0.3-3_amd64.deb
4581f42e3373cb72f9ea4e88163b17873afca614a6c6f54637e95aa75983ea7c ./tools/archives-distro/libmnl0_1.0.4-3_amd64.deb
ea89e7bd1549c1a7a26ea3c8f64154008be6685bd8bf8506bcf231ab88ef01c2 ./tools/archives-distro/libmotif-common_2.3.8-3_all.deb
8ba77ec6878d3f5e9ebec240e9a2a867325ae47c0d728cfcc4c90830f903a3bc ./tools/archives-distro/libmpc3_1.2.0-1_amd64.deb
816404866f754d5662d69db50072018dccb78cf372fc38e0be961fab0f57d741 ./tools/archives-distro/libmpdec3_2.5.1-1_amd64.deb
5d26306d12a45a8a03dca473490d56a765b58d61b53146c1c7784903cf59c45d ./tools/archives-distro/libmpfr6_4.1.0-3_amd64.deb
176590c0ce393dd492ecb5e21ed338f629e5f38074341860086dbf3315af514d ./tools/archives-distro/libmtdev1_1.1.6-1_amd64.deb
dfe45cb6ab048d1182175df55b007a4a188515c6d764a4dd5a44a0b47b6286a1 ./tools/archives-distro/libncurses6_6.2+20201114-2_amd64.deb
ee3cd315dfa18865cf888ba6813a552077a4f3d1439dd225e4a0d0fee53aadc2 ./tools/archives-distro/libncursesw6_6.2+20201114-2_amd64.deb
8d86852bba4592de16b89e610d916fd2364cb04b9e8e95776e503bd6acaa7c89 ./tools/archives-distro/libnotify4_0.7.9-3_amd64.deb
adc6d0c181279be9f9e422d54fed41f7134eda4a352e98d028a67c2413e62e3d ./tools/archives-distro/libnspr4_2%3a4.29-1_amd64.deb
41c6ceecdbe0067fd6ff99f7f96f52599542f712a1f94173980283b3cacbe30d ./tools/archives-distro/libnss3_2%3a3.61-1+deb11u2_amd64.deb
008a385ccb755d85893bda7d3820408c1f92439ea112130d579025cadc0f58b1 ./tools/archives-distro/libogg0_1.3.4-0.1_amd64.deb
f99e76456459aa19ac5f610096c7054994130597931abf660b82436c477ff03e ./tools/archives-distro/libopenjp2-7_2.4.0-3_amd64.deb
f8249b9e88e01a2f8945ff3082d488b0b9470b25a1976ab409ed9aff118f9b6c ./tools/archives-distro/libopus0_1.3.1-0.1_amd64.deb
f59e938b98ed838ec5a4a2bafd1e77ed09a6c815ceeae05f29d55afef14612ad ./tools/archives-distro/libpackagekit-glib2-18_1.2.2-2_amd64.deb
d64269fb0b875d5fa62f5c218b395dbfe830f56ff6cf7702696fd47e4f87b05f ./tools/archives-distro/libpam-systemd_247.3-7+deb11u1_amd64.deb
cfb3079a7397cc7d50eabe28ea70ce15ba371c84efafd8f8529ee047e667f523 ./tools/archives-distro/libpango-1.0-0_1.46.2-3_amd64.deb
f0489372e4bcb153d750934eb3cddd9104bc3a46d564aa10bef320ba89681d37 ./tools/archives-distro/libpangocairo-1.0-0_1.46.2-3_amd64.deb
78067d7222459902e22da6b4c1ab8ee84940752d25a5f3dea1a43f846a8562e3 ./tools/archives-distro/libpangoft2-1.0-0_1.46.2-3_amd64.deb
621545808843e84288039a55df16023ff872f48b3a155788dba7a1cea25c7a9b ./tools/archives-distro/libpangoxft-1.0-0_1.46.2-3_amd64.deb
51001de28efc4311c5ced8e706b500fd26fdcf25b00610d0debd9e51deba9053 ./tools/archives-distro/libpaper1_1.1.28+b1_amd64.deb
3df32848b39573fb4c1063beb64745a6147f6badf27886f5e3699d8b54496aca ./tools/archives-distro/libparted-fs-resize0_3.4-1_amd64.deb
588e16ff2e0683e133322a10f613e104c69bcc3d6c886ef222d762b03cff57a2 ./tools/archives-distro/libparted2_3.4-1_amd64.deb
5d42163c5e858287b1f79b0c90644ee724f57f1a47ad29ef604324d693a9afbc ./tools/archives-distro/libpci3_1%3a3.7.0-5_amd64.deb
f581ced157bd475477337860e7e7fcabeeb091444bc5a189c5c97adc8fcabda5 ./tools/archives-distro/libpciaccess0_0.16-1_amd64.deb
224cafe65968deb83168113b74dff2d2f13b115a41d99eb209ed3b8f981df0b3 ./tools/archives-distro/libperl5.32_5.32.1-4+deb11u2_amd64.deb
1d0b392aec96fc3dc9c9cffa1241f4abfa7be0282f3451fce72492a934477c3e ./tools/archives-distro/libpixman-1-0_0.40.0-1.1~deb11u1_amd64.deb
c4f7ab59dd4f916ac8f89c1a547198b5155ec94122b8ec77385a4482eee1c9fb ./tools/archives-distro/libplist3_2.2.0-6_amd64.deb
35bd94e8c28f11fa0c8b1e8cd6f24206eb8c7dedc45927be5cc1b60cd5584008 ./tools/archives-distro/libpolkit-agent-1-0_0.105-31+deb11u1_amd64.deb
7935ee2e562c794405d89d9b31eb0bbe7df4647c54e3fe5bf5052fefaa573a01 ./tools/archives-distro/libpolkit-gobject-1-0_0.105-31+deb11u1_amd64.deb
e6527794bf3fbddf88a64c78ba95614c04a1bec2bb99481cce407b31e12cbb82 ./tools/archives-distro/libpoppler-cpp0v5_20.09.0-3.1+deb11u1_amd64.deb
465de156486b6c5e50ce37576c28ec7d1ac2ee3dbe019022a237ca58de61c4a1 ./tools/archives-distro/libpoppler102_20.09.0-3.1+deb11u1_amd64.deb
2f9fca8afbc5a18211ad46fa5f5df323662ba4d5212fa36bfc30dd551ae86b28 ./tools/archives-distro/libpopt0_1.18-2_amd64.deb
0a60017f0229cd4eec95b9f354c68312cc4ca4770ba8c01f545fd9c02b34e8a0 ./tools/archives-distro/libprocps8_2%3a3.3.17-5_amd64.deb
b21c1524b972dd72387ecb8b12c0a860738ce0832ed18fe7ffb9da6adc9b9e41 ./tools/archives-distro/libproxy1v5_0.4.17-1_amd64.deb
d716f5b4346ec85bb728f4530abeb1da4a79f696c72d7f774c59ba127c202fa7 ./tools/archives-distro/libpsl5_0.21.0-1.2_amd64.deb
f273b91e0846f264fd162d1c8fdf8f2403689bf345c1da251fa90464f4590f99 ./tools/archives-distro/libpulse-mainloop-glib0_14.2-2_amd64.deb
f2d2ed93c03cff7cf081d401d855d67e1f73b65dec02687d309e0d72e7d1159d ./tools/archives-distro/libpulse0_14.2-2_amd64.deb
f903a5e24fd155cf09f25823a75c95a7de03a408ab699fe05c2c2930cbe018e3 ./tools/archives-distro/libpython3-stdlib_3.9.2-3_amd64.deb
594283526d67e03e3c4e96534f6bfe5da1bf41da5d49360553c9b79fbf08c4ab ./tools/archives-distro/libpython3.9-minimal_3.9.2-1_amd64.deb
32ac64d959ac2dbc5bb289532fc9834dab8f671b5455695a3a9315aad973c65b ./tools/archives-distro/libpython3.9-stdlib_3.9.2-1_amd64.deb
4ba00b4490537c69bfa265060d7cc48535a7d55bb56a7f6e8e5d1bef338b6b6f ./tools/archives-distro/libqpdf28_10.1.0-1_amd64.deb
162ba9fdcde81b5502953ed4d84b24e8ad4e380bbd02990ab1a0e3edffca3c22 ./tools/archives-distro/libreadline8_8.1-1_amd64.deb
5cd57a96145a362bf60428315ab3fc6c2f528ab38a06a905da2568575c23bdc8 ./tools/archives-distro/librest-0.7-0_0.8.1-1.1_amd64.deb
c5f6cdb66683d9b8cd23f0e02e6adb29d43bdca301872842fa98d44e23fa1091 ./tools/archives-distro/librsvg2-2_2.50.3+dfsg-1_amd64.deb
b34b1471fdf786cc28912b7130d4db00b54807ffe9133fed03673b54651a62d2 ./tools/archives-distro/libsecret-1-0_0.20.4-2_amd64.deb
2e4b281c2c38e5be1c253955c13e4366ae64c449358aa0bc00a46bfb846bf30f ./tools/archives-distro/libsecret-common_0.20.4-2_all.deb
4265811140a591d27c99d026b63707d8235d98c73d7543c66ab9ec73c28523fc ./tools/archives-distro/libsensors-config_1%3a3.6.0-7_all.deb
b9cb9a081ea3c9b68ef047d7e51f3b84bccde1a2467d5657df4c5d54775b187e ./tools/archives-distro/libsensors5_1%3a3.6.0-7_amd64.deb
22a420890489023346f30fecef14ea900a0788e7bf959ef826aabb83944fccfb ./tools/archives-distro/libsm6_2%3a1.2.3-1_amd64.deb
2d703696ec4673051f0f566417871482787749720773e3ac2d909b4a1b937e02 ./tools/archives-distro/libsndfile1_1.0.31-2_amd64.deb
7fdc774b567e3a5e0881aa01fcfcac637fdeeb8ea6233b710571e1f5b3a994b6 ./tools/archives-distro/libsoup-gnome2.4-1_2.72.0-2_amd64.deb
32dad5305be0faa619df36688a20d187ba915f02e9e184cc5c3c6e3d98259e9c ./tools/archives-distro/libsoup2.4-1_2.72.0-2_amd64.deb
a0b8d3acf4a0483048637637d269be93af48d5c16f6f139f53edd13384ad4686 ./tools/archives-distro/libsqlite3-0_3.34.1-3_amd64.deb
b84ed4fd6bf6b1fbd711951c9d9911d78504778a145f6e96eab1b75307293655 ./tools/archives-distro/libstartup-notification0_0.12-6+b1_amd64.deb
64750cb822e54627a25b5a00cde06e233b5dea28571690215f672af97937f01b ./tools/archives-distro/libthai-data_0.1.28-3_all.deb
446e2b6e8e8a0f5f6c0de0a40c2aa4e1c2cf806efc450c37f5358c7ff1092d6a ./tools/archives-distro/libthai0_0.1.28-3_amd64.deb
badf660a8fbad4ad7a4422904cb02f70cc30d2d4956b60bf78451c3076b9adb7 ./tools/archives-distro/libthunarx-3-0_4.16.8-1_amd64.deb
b22d25e14421a36c4c3b721c04c6312d79ccd91c9a0e2291f58e36b8d4a07fbb ./tools/archives-distro/libtiff5_4.2.0-1+deb11u1_amd64.deb
0bd73adf50441a403de1301ce8b2335a315c5dbc6b84893e5d8a79f71ffc49a1 ./tools/archives-distro/libudfread0_1.1.1-1_amd64.deb
215005a23dc16afc1aee9b09958402faa5c061b89c3c8e2e3a040a36e3e9d461 ./tools/archives-distro/libudisks2-0_2.9.2-2+deb11u1_amd64.deb
a8cc1181a479375aeb603cfe748cc19dc3a700a47ffdcb09fa025fe02b0c73bf ./tools/archives-distro/libunwind8_1.3.2-2_amd64.deb
e766f64fa0c5c886a7b2c579dc7cb4b6fb95cc57d27b6f9f70af19cf1e39c144 ./tools/archives-distro/libupower-glib3_0.99.11-2_amd64.deb
946bf6ecad3cec1275fb5a5bedd5cb50676e55d5f5cfb6e28d756442d4601c41 ./tools/archives-distro/libusb-1.0-0_2%3a1.0.24-3_amd64.deb
d3ac0e2de576839c43142c62a010844792e4099ae7542da6c7c9a8cac13ee1fc ./tools/archives-distro/libusbmuxd6_2.0.2-3_amd64.deb
f35de5e99a5f84e8a3688a21718afddcb83b177e267ef7db135365a049ba4bfe ./tools/archives-distro/libutempter0_1.2.1-2_amd64.deb
01c14f9d1109650077a4c5c337c285476a6932d4d448f5a190c2b845724dbf21 ./tools/archives-distro/libvorbis0a_1.3.7-1_amd64.deb
75dd4d6f904c7db82f5112e60d8efea9e81dfedf94e970c5da7af2b3d81643c0 ./tools/archives-distro/libvorbisenc2_1.3.7-1_amd64.deb
fa02e788d0301ff267ba0e42db451efac337d1f9b15c4eab292d430da40975a3 ./tools/archives-distro/libvte-2.91-0_0.62.3-1_amd64.deb
54738260ceecb29773f5adbafe99ba00deca8815a9ee303f1aff514acba0ee85 ./tools/archives-distro/libvte-2.91-common_0.62.3-1_amd64.deb
8b3a6e5db7d8bdc369a0d276bfae1551ffc0fa31dbd193d56655c8f553868361 ./tools/archives-distro/libvulkan1_1.2.162.0-1_amd64.deb
f7317cf0f66aaa836606f04468ab3196849f3fc9cab48a8417688ffca4c63fc0 ./tools/archives-distro/libwacom-common_1.8-2_all.deb
f5deb84a4e491bfe4f950702c72aaf4b06714db22261470f6f911167556a1ed7 ./tools/archives-distro/libwacom2_1.8-2_amd64.deb
4baf16bb3a35823251453368ee078b6be6a14f97b05c19783b5acd4232a608ea ./tools/archives-distro/libwayland-client0_1.18.0-2~exp1.1_amd64.deb
1b48d1d8e17a95b28a2876c7f2a95667ee1618a5f586d4dff05aeb09488172cb ./tools/archives-distro/libwayland-cursor0_1.18.0-2~exp1.1_amd64.deb
b98e636f08eca9e818e326fc8cd75810dbb50b1ed4e3586c2394e11248e29275 ./tools/archives-distro/libwayland-egl1_1.18.0-2~exp1.1_amd64.deb
1df9a6e304bdaebdd53e1044c6eadcda95c914119e9426c2866eaa619a49c85b ./tools/archives-distro/libwayland-server0_1.18.0-2~exp1.1_amd64.deb
52bfd0f8d3a1bbd2c25fcd72fab857d0f24aea35874af68e057dde869ae3902c ./tools/archives-distro/libwebp6_0.6.1-2.1_amd64.deb
8b7746936486b96971e09b01e99abe5ec103e1b3bb206c650f271cd88c9cf2aa ./tools/archives-distro/libwnck-3-0_3.36.0-1_amd64.deb
7257d4363474ae4eaf66381a32a0ca8748e8135f0e9efcdaaa62262c60594656 ./tools/archives-distro/libwnck-3-common_3.36.0-1_all.deb
c6aa9c653857d807cff31682b5158722e8b16eeb3cec443d34d6eba52312e701 ./tools/archives-distro/libwrap0_7.6.q-31_amd64.deb
086bd667fc07369472a923da015d182bb0c15a72228a5c0e6ddbcbeaab70acd2 ./tools/archives-distro/libx11-6_2%3a1.7.2-1_amd64.deb
049b7eabced516acfdf44a5e81c26d108b16e4987e5d7604ea53eaade74027fb ./tools/archives-distro/libx11-data_2%3a1.7.2-1_all.deb
1f9f2dbe7744a2bb7f855d819f43167df095fe7d5291546bec12865aed045e0c ./tools/archives-distro/libx11-xcb1_2%3a1.7.2-1_amd64.deb
baf61194cdc3bc85802a5fbdedb2cef495efec0a2b08d75e3c6c020f595e4e3a ./tools/archives-distro/libxatracker2_20.3.5-1_amd64.deb
679db1c4579ec7c61079adeaae8528adeb2e4bf5465baa6c56233b995d714750 ./tools/archives-distro/libxau6_1%3a1.0.9-1_amd64.deb
fa30777b3c23421d18ed8cd817df7b4dd29d4532d2af00f9d6d449f4ad00a6d4 ./tools/archives-distro/libxaw7_2%3a1.0.13-1.1_amd64.deb
fbfc7d55fa00ab7068d015c185363370215c857ac9484d7020c2d9c38c8401b2 ./tools/archives-distro/libxcb-dri2-0_1.14-3_amd64.deb
4dd503b321253f210fe546aae8fe5061fc7d30015cf5580d7843432a71ebc772 ./tools/archives-distro/libxcb-dri3-0_1.14-3_amd64.deb
61ae35a71148038aad04b021b3adfa0dee4fc06d98e045ec9edfd9e850324876 ./tools/archives-distro/libxcb-glx0_1.14-3_amd64.deb
7937af87426de2ed382ba0d6204fee58f4028b332625e2727ebb7ca9a1b32028 ./tools/archives-distro/libxcb-present0_1.14-3_amd64.deb
3d653df34e5cd35a78a9aff1d90c18ec0200e5574e27bc779315b855bea2ecc0 ./tools/archives-distro/libxcb-render0_1.14-3_amd64.deb
0751b48b1c637b5b0cb080159c29b8dd83af8ec771a21c8cc26d180aaab0d351 ./tools/archives-distro/libxcb-shm0_1.14-3_amd64.deb
53e7f18c8a95b2be2024537a753b6bd914af5f4c7aeed175f61155a5a3c8fe88 ./tools/archives-distro/libxcb-sync1_1.14-3_amd64.deb
4c48af51fb2ac1be0490067e7450aeda27bf6c6c395165de02199eee4835336f ./tools/archives-distro/libxcb-util1_0.4.0-1+b1_amd64.deb
939b29a4eaad5972ba379c2b5f29cf51d7d947b10e68cc2fe96238efcd3d63c2 ./tools/archives-distro/libxcb-xfixes0_1.14-3_amd64.deb
d5e0f047ed766f45eb7473947b70f9e8fddbe45ef22ecfd92ab712c0671a93ac ./tools/archives-distro/libxcb1_1.14-3_amd64.deb
4c26ebf519d2ebc22fc1416dee45e12c4c4ef68aa9b2ed890356830df42b652a ./tools/archives-distro/libxcomposite1_1%3a0.4.5-1_amd64.deb
d9fee761e4c50572c3ce3c3965b70fcfecd277d0d7d598e102134d12757a3d11 ./tools/archives-distro/libxcursor1_1%3a1.2.0-2_amd64.deb
1acf6d6117929a7df346d355caeb579798d75feb7e3b3aae58a2d1af735b444f ./tools/archives-distro/libxdamage1_1%3a1.1.5-2_amd64.deb
ecb8536f5fb34543b55bb9dc5f5b14c9dbb4150a7bddb3f2287b7cab6e9d25ef ./tools/archives-distro/libxdmcp6_1%3a1.1.2-3_amd64.deb
dc1ff8a2b60c7dd3c8917ffb9aa65ee6cda52648d9150608683c47319d1c0c8c ./tools/archives-distro/libxext6_2%3a1.3.3-1.1_amd64.deb
8ccff260edc85d63166531103fe13fd92179a54888e624de903eb655a688f73b ./tools/archives-distro/libxfce4panel-2.0-4_4.16.2-1_amd64.deb
c24dcdc90aaa65ced35ffbe8e5686d9be3a20404cf4f8e6278439c3023c60bdf ./tools/archives-distro/libxfce4ui-2-0_4.16.0-1_amd64.deb
083a9e15e5b28fb849d986fc70aa98299971ee2e177f9cbf6c55562e5808920d ./tools/archives-distro/libxfce4ui-common_4.16.0-1_all.deb
3dfc449ea57b8c97a7a3feba84474697706489f10f0ceeeff1ce830b0d133374 ./tools/archives-distro/libxfce4ui-utils_4.16.0-1_amd64.deb
d9dd9e58d91a507ccccb365ca2b76b474db19ee7330d997c1312f8cb9b8e7849 ./tools/archives-distro/libxfce4util-common_4.16.0-1_all.deb
31e979ff6e8607f4def0535c832a561d3c2b57590fc0bd4c5009ab78ff32eb99 ./tools/archives-distro/libxfce4util7_4.16.0-1_amd64.deb
c6f8d117a7e38c77a2be14438c2924546b748cc910693f6ee03491427e0fa960 ./tools/archives-distro/libxfconf-0-3_4.16.0-2_amd64.deb
58622d0d65c3535bd724c4da62ae7acb71e0e8f527bcbd65daf8c97e6f0ef843 ./tools/archives-distro/libxfixes3_1%3a5.0.3-2_amd64.deb
db5b67a3fc9f3a6adef313cb977a5a2480d751424cca49b286799b4bb98d8694 ./tools/archives-distro/libxfont2_1%3a2.0.4-1_amd64.deb
cd71384b4d511cba69bcee29af326943c7ca12450765f44c40d246608c779aad ./tools/archives-distro/libxft2_2.3.2-2_amd64.deb
4d583f43b5396ca5434100a7274613e9983357d80875a47b29a4f3218fe0bec0 ./tools/archives-distro/libxi6_2%3a1.7.10-1_amd64.deb
f692c854935571ee44fe313541d8a9f678a4f11dc513bc43b9d0a501c6dff0bd ./tools/archives-distro/libxinerama1_2%3a1.1.4-2_amd64.deb
d74d0b9f0a6641b44c279644c7ac627fa7a9b92350b7c6ff37da94352885bcfc ./tools/archives-distro/libxkbcommon0_1.0.3-2_amd64.deb
7c58d9986f918b71568ad83dbb6f4ab22c185f243461d41acee920cc5e13d347 ./tools/archives-distro/libxkbfile1_1%3a1.1.0-1_amd64.deb
eb7895f8964e8793358b335b011b9f3fcfb03f220ef6cbee3c78be0952d356cd ./tools/archives-distro/libxklavier16_5.4-4_amd64.deb
812be7b52324953ad5c7a966e90ad14fe1ade9582e49b3550b95117e43a0488c ./tools/archives-distro/libxm4_2.3.8-3_amd64.deb
41fe729546dd44d4c5ed26d1b1b487a692f5f43f370a25cf0eb30b92694e1ebc ./tools/archives-distro/libxml2-utils_2.9.10+dfsg-6.7+deb11u3_amd64.deb
41e535698c9e9e5a3552bfa80eecfda7f324363527dfb8855beec90d9e4a2b81 ./tools/archives-distro/libxml2_2.9.10+dfsg-6.7+deb11u3_amd64.deb
912a1bfb3416f18193824a4ffc5fe8a3a6e6781d9f8e50e26400dd36a7ca5bd0 ./tools/archives-distro/libxmu6_2%3a1.1.2-2+b3_amd64.deb
329d2974829d0dd61ea5d59676ae6db10e49f97588ddff74042edd0a60b3bcd2 ./tools/archives-distro/libxmuu1_2%3a1.1.2-2+b3_amd64.deb
49e64f0923cdecb2aaf6c93f176c25f63b841da2a501651ae23070f998967aa7 ./tools/archives-distro/libxpm4_1%3a3.5.12-1_amd64.deb
fcd3c7c3828cedd81620079418892fa66c98a7b56908733b8f0425dbb45b0515 ./tools/archives-distro/libxpresent1_1.0.0-2+b10_amd64.deb
8fdd8ba4a8ad819731d6bbd903b52851a2ec2f9ef4139d880e9be421ea61338c ./tools/archives-distro/libxrandr2_2%3a1.5.1-1_amd64.deb
3ea17d07b5aa89012130e2acd92f0fc0ea67314e2f5eab6e33930ef688f48294 ./tools/archives-distro/libxrender1_1%3a0.9.10-1_amd64.deb
da5c88bf9156ac88f13b379a334f4250f243828ebced1fb574a89f1689894694 ./tools/archives-distro/libxres1_2%3a1.2.0-4_amd64.deb
1a38142e40e3d32dc4f9a326bf5617363b7d9b4bb762fdcdd262f2192092024d ./tools/archives-distro/libxshmfence1_1.3-1_amd64.deb
e6109d282ad9a330856b88944a953e86329b2c07d8b0f378a2fd0493f27352c8 ./tools/archives-distro/libxslt1.1_1.1.34-4+deb11u1_amd64.deb
1b2014704c8fb393aa9797da7c6de248f2bbd89eec8dee07bfecd7f2f85cff4d ./tools/archives-distro/libxt6_1%3a1.2.0-1_amd64.deb
9702a4be6f267b58c8fc1cfa0747bbefccb8b9a9af2a3547535533fbf2a7c14d ./tools/archives-distro/libxtables12_1.8.7-1_amd64.deb
6f4ca916aaec26d7000fa7f58de3f71119309ab7590ce1f517abfe1825a676c7 ./tools/archives-distro/libxxf86vm1_1%3a1.1.4-1+b2_amd64.deb
7a38c2dd985eb9315857588ee06ff297e2b16de159dec85bd2777a43ebe9f458 ./tools/archives-distro/libz3-4_4.8.10-1_amd64.deb
d136e8301b8376637f79ce3b860d348f2c6b0e8105764bf66cf6c4b3428e2543 ./tools/archives-distro/lightdm-gtk-greeter_2.0.8-2_amd64.deb
2a045ee9d0a23aeafd571f063a9fca9719062637ea8ec8f5b5d92f09bce0f657 ./tools/archives-distro/lightdm_1.26.0-7_amd64.deb
c52ce06e62ee12a0ba48b5acf12e8d7dd7b5f246887801dc7d4f5cdec8543088 ./tools/archives-distro/links2_2.21-1+b1_amd64.deb
99d7dfb07e8381d71c4938a9c75f633cba6c740261c838a748a2b273bf303924 ./tools/archives-distro/locales_2.31-13+deb11u5_all.deb
a03b5971519f2b2c51e7b4234d6e416ff22ac898e5f3fcc52cd63e4ad6161a77 ./tools/archives-distro/lsof_4.93.2+dfsg-1.1_amd64.deb
f9835dcf3cdbaf163104d4e511c9c4e0f41a56822e147e57f28f749fcbf7d44c ./tools/archives-distro/media-types_4.0.0_all.deb
a6cd9828f30f1d0b901728c53f68a8e12a58c134bf1a8119ca2f4e0c12daa800 ./tools/archives-distro/opensc-pkcs11_0.21.0-1_amd64.deb
531560c62be822fcddc745bd7e91f5c781e5aea62f28e3a87f1d943b0bfb0cca ./tools/archives-distro/opensc_0.21.0-1_amd64.deb
3691cf432febeb8dd621c6a36e3cc66b45fc119016532ffb33c742861aec868b ./tools/archives-distro/openssl_1.1.1n-0+deb11u3_amd64.deb
2d409dc5605df9e2d5c88c1ceef9cba3c27690244a651c39563b5c547f164f63 ./tools/archives-distro/p11-kit-modules_0.23.22-1_amd64.deb
ca4ac67e583cf4b48296684549a1600338e678e2e9b9ab7438f48f26daa778f2 ./tools/archives-distro/p11-kit_0.23.22-1_amd64.deb
c6b7f7248d9792530f6f94dc375254d02c4bee7cad7b8a31bfef4f2a087b3fd1 ./tools/archives-distro/parted_3.4-1_amd64.deb
dca1f318c0dde3b982ab6dec8244474ac21a02a603587e7a309323426689575b ./tools/archives-distro/pci.ids_0.0~2021.02.08-1_all.deb
6fd1c23a437ba7b3f3d7c2e9a87c25691beb737e3e813b7d82a0fce4af38d853 ./tools/archives-distro/pciutils_1%3a3.7.0-5_amd64.deb
6fa15be322c3c89ec4a07d704ad58d4a2d1aabf866135a859f6d8d58c59e9df4 ./tools/archives-distro/perl-modules-5.32_5.32.1-4+deb11u2_all.deb
1cebc4516ed7c240b812c7bdd7e6ea0810f513152717ca17ce139ee0dfbc7b0d ./tools/archives-distro/perl_5.32.1-4+deb11u2_amd64.deb
ed3882d76946568f7fcfc64fef74cdd62dd7f27d1b8088c10b63b3b70d7f50a9 ./tools/archives-distro/poppler-data_0.4.10-1_all.deb
e855ef157d22d9bc4c80253c6fec9c2aa6903a589becec0c4abb7d61033096df ./tools/archives-distro/poppler-utils_20.09.0-3.1+deb11u1_amd64.deb
ac8edf0517abe09637c36651cb6a59e10948b2879f3af9003b9145b2128a7a08 ./tools/archives-distro/procps_2%3a3.3.17-5_amd64.deb
e367c3a2f6755180bba2f99ac1876c0b550cefb4c53df3949963309be9a88bda ./tools/archives-distro/python3-cairo_1.16.2-4+b2_amd64.deb
8f9105eb7cf914c26998b47a21177d75df71ad9290fd14b54e561d4cce536b89 ./tools/archives-distro/python3-certifi_2020.6.20-1_all.deb
25327c2d577baa5275052732324d1c426f08ddba24daf852240a16b6c7de05bb ./tools/archives-distro/python3-chardet_4.0.0-1_all.deb
e7d5abd9b41fa3dcf1ee09c5f5d2b5501ed20429f9104d238386dc3dcff03edc ./tools/archives-distro/python3-cups_2.0.1-4+b1_amd64.deb
bc3386b9a767a1913cb3a1e8ba81db843fff0cb662f96268d21f575cb67af71e ./tools/archives-distro/python3-cupshelpers_1.5.14-1_all.deb
3ca9cda64cddadf4894f54994d2a6187a92e4d17cb28425ad10d67e77b8743b5 ./tools/archives-distro/python3-dbus_1.2.16-5_amd64.deb
48d4d4413013d4bb044feb6c8d9a470108d59546c09f4630187fda8164b8fda1 ./tools/archives-distro/python3-gi_3.38.0-2_amd64.deb
218bc2f8908752f9fddf3ac95cd30d8f9ef770d3d6c96f346fec4fa2f7ada56f ./tools/archives-distro/python3-idna_2.10-1_all.deb
159320ef8a2d740dcc2245c7f0ac0e678b2796354044c90760fe2a4c6ef117b4 ./tools/archives-distro/python3-minimal_3.9.2-3_amd64.deb
e81cb1b4a3aa739fa5bcfceb043c3bd47233b4f5a36f88ad2de1f05a83d6ec2b ./tools/archives-distro/python3-pkg-resources_52.0.0-4_all.deb
3ae277c70c3bf903f9e769adaf2c1c236720fbb2077f4f4a19bb50c05c92648b ./tools/archives-distro/python3-requests_2.25.1+dfsg-2_all.deb
acd4271ba56e42298b9fab0fcdad8f319970b50d1026f8469eed968a20f28761 ./tools/archives-distro/python3-six_1.16.0-2_all.deb
55187f8440eb6b14dabdddca34d1c93b488f1874fdd5acf77bfafd0421328168 ./tools/archives-distro/python3-urllib3_1.26.5-1~exp1_all.deb
5d6003c5c20223a2547ac4976e09a9ec778dbe351507a6292bef3b60df5f4aa7 ./tools/archives-distro/python3.9-minimal_3.9.2-1_amd64.deb
12f8b47632cc26b986bfc4c882fc98e7036d406143ae8bb1dbfff6b61d7c8993 ./tools/archives-distro/python3.9_3.9.2-1_amd64.deb
6d9375916c5c0d670df708bed3e8c033ce4b197a580d536ce39d1170c67a4c95 ./tools/archives-distro/python3_3.9.2-3_amd64.deb
3f947176ef949f93e4ad5d76c067d33fa97cf90b62ee0748acb4f5f64790edc8 ./tools/archives-distro/readline-common_8.1-1_all.deb
b9a447dc4ec8714196b037e20a2209e62cd669f5450222952f259bda4416b71f ./tools/archives-distro/sensible-utils_0.0.14_all.deb
de0a814e186af5a941e1fcd3044da62eb155638fcf9616d6005bcfc6696bbe67 ./tools/archives-distro/shared-mime-info_2.0-1_amd64.deb
6f3b0c20b0a37b2b196d832910a754cf784f96854daa02a16f4ac46d366cdcb8 ./tools/archives-distro/ssl-cert_1.1.0+nmu1_all.deb
4dc632f5cd9fde4b482a835ac220815862dad4c58b4cc7512315d589aad4ec30 ./tools/archives-distro/system-config-printer-common_1.5.14-1_all.deb
cdf83fb30ed5325ec5d28f8d2c0c7244a07d825e479974dd64d336dfe0f39124 ./tools/archives-distro/system-config-printer_1.5.14-1_all.deb
2158eca1d7d4eaa248f4a72eeebe4afbb2864ee840e399e1e1ba7a0f0d92e472 ./tools/archives-distro/thunar-data_4.16.8-1_all.deb
f1b4c7945b5b2799da255440ce74345c078f5aafd986a15329744850e00f33b8 ./tools/archives-distro/thunar-volman_4.16.0-1_amd64.deb
70c09bfb0b5e4acf7e0bbace70a0339fe17781d9239e9663e0b3a20b588fa7b5 ./tools/archives-distro/thunar_4.16.8-1_amd64.deb
07caa44ea56d1327909e846ebe3700c0542460d3cffffef8b41bd9d983140ee7 ./tools/archives-distro/tree_1.8.0-1+b1_amd64.deb
ebef6bcd777b5c0cc2699926f2159db08433aed07c50cb321fd828b28c5e8d53 ./tools/archives-distro/ucf_3.0043_all.deb
b18ea044a6b2a45e3519e6125e405d889d36a19e3257bcc04c00c07b3ef07c76 ./tools/archives-distro/udisks2_2.9.2-2+deb11u1_amd64.deb
bdda56cb4a65874f103d7fd100b6fb46ec4b9a111d740d27b5e4fb4a4eff6153 ./tools/archives-distro/unzip_6.0-26+deb11u1_amd64.deb
c498e30ca9b28893ff9f79762317d3ac70c59ac89d9a57659e0840445d604686 ./tools/archives-distro/upower_0.99.11-2_amd64.deb
aa68392730830bc920413dfba57eeff35a3e0c46dbedff65adfcdeb6fae39d10 ./tools/archives-distro/usbutils_1%3a013-3_amd64.deb
cd10c6292cc5d5494c947fbf577a25ff48715a4314bde1bd65dde44a90ca694b ./tools/archives-distro/vim-common_2%3a8.2.2434-3+deb11u1_all.deb
ad63cd0bacbd592468694dd06e7e84fc69acfcc1521f5a907904f1fe7b527cd0 ./tools/archives-distro/vim-runtime_2%3a8.2.2434-3+deb11u1_all.deb
b06d11fdee525b919deb4778f7af352ebf3d6ce2591c8fb8e02e52f1ae90ef7d ./tools/archives-distro/vim_2%3a8.2.2434-3+deb11u1_amd64.deb
5d1c3287826f60c3a82158b803b9c0489b8aad845ca23a53a982eba3dbb82aa3 ./tools/archives-distro/x11-common_1%3a7.7+22_all.deb
fffdfdaec5533c33ddfdf25657e95e62bfd0348f375d0594d1727630059d1d3d ./tools/archives-distro/x11-xkb-utils_7.7+5_amd64.deb
a0873634f63acbdb0811b0cd07a86e9f71b2c5caf207c1b223b70801233f0055 ./tools/archives-distro/x11-xserver-utils_7.7+8_amd64.deb
d14ba28629fcccd47962900d44b2a2cc081ed78f6e6fd745ff1e110cc86bd804 ./tools/archives-distro/xbitmaps_1.1.1-2.1_all.deb
981006a1e8cf0127b60b4ba01fc2299387f24377ef1f0f1be846b4762a49624a ./tools/archives-distro/xfce4-appfinder_4.16.1-1_amd64.deb
bc51701176a9d0e0a6617512de46bf50f1d4bb680ca1e028881e62c1d4589bdd ./tools/archives-distro/xfce4-helpers_4.16.0-1+deb11u1_amd64.deb
a8fb4b387764dfc423f2bce7f2cfc50fbd16e0356c9b94b14416b4fe7a1273b5 ./tools/archives-distro/xfce4-panel_4.16.2-1_amd64.deb
02eb32615867e0bc7fe85212ba78ca7fd2b03019e9b400c091922b7970829386 ./tools/archives-distro/xfce4-power-manager-data_4.16.0-1_all.deb
667e70ebea9b95eea3e4985c1b3ebc8d1942e1baa1322611fd561f48c24f50af ./tools/archives-distro/xfce4-power-manager_4.16.0-1_amd64.deb
1676a55a94ba5a238ce60d093333a5ba67f0ac1f09e69aa516db9b533bf8c77c ./tools/archives-distro/xfce4-pulseaudio-plugin_0.4.3-1_amd64.deb
f048f9d2c69ad13ab6f27a5efd146f057ff44981aa37fd28547d96720f750ef4 ./tools/archives-distro/xfce4-session_4.16.0-1_amd64.deb
11caff13d2f86cdc8c92922caaee35c42cbb0ea54ce968db072d155be61bad05 ./tools/archives-distro/xfce4-settings_4.16.0-1+deb11u1_amd64.deb
bc96ccecc22b86eda8e79bcdf9fd70e18f7ae0a5de297e30af57c12db3477ba6 ./tools/archives-distro/xfce4-terminal_0.8.10-1_amd64.deb
d7191fc06559151df3f96fecd3563fc2c7df91df2db6ce1d95f8c2bf4a58b42d ./tools/archives-distro/xfce4_4.16_all.deb
7c6e50c130f3f9d24e688725d52ccb0e7753448099ebb2b56db9412d5e322518 ./tools/archives-distro/xfconf_4.16.0-2_amd64.deb
f5894d161e402f1300b75022ae02a545cb1c5e9a395397d379c7e635392ae928 ./tools/archives-distro/xfdesktop4-data_4.16.0-1_all.deb
ca1cc9b5be2734ff5d39c53d87f9d581fbd21a1406522ef256e6a3a0e1c38f5c ./tools/archives-distro/xfdesktop4_4.16.0-1_amd64.deb
f38a4d038c5a7991cfbdb250751ed4d8f873b3d549fd0ef12c1c53c41c99fb63 ./tools/archives-distro/xfwm4_4.16.1-1_amd64.deb
9122cccc67e6b3c3aef2fa9c50ef9d793a12f951c76698a02b1f4ceb9e3634e5 ./tools/archives-distro/xkb-data_2.29-2_all.deb
cc5442858f37b0c59fa128986aa8b232f82c9b2a8a44f4e32b73396a18dc112c ./tools/archives-distro/xpdf_3.04+git20210103-3_amd64.deb
33df8e7323fea1a11d6445e2a168e099597d472c3e234ead19532e589be1106c ./tools/archives-distro/xserver-common_2%3a1.20.11-1+deb11u3_all.deb
d1f81313516bf94a973f09651d44d08862ac75a8c7d6537afd4c8826f4c011a7 ./tools/archives-distro/xserver-xorg-core_2%3a1.20.11-1+deb11u3_amd64.deb
f058bb900c1f402ec99c5dd9787cec83a07309a7d9e7015d7fff74ec68e0889c ./tools/archives-distro/xserver-xorg-input-all_1%3a7.7+22_amd64.deb
17a52db4186e46b0c9548deb583b1dd7f1446f6f5b5646dafafc8d6fad2addbe ./tools/archives-distro/xserver-xorg-input-libinput_0.30.0-1_amd64.deb
48dcaa67e081de37fb7b3451a6fbf065a2439e38ceefd351e5b117e946426c3e ./tools/archives-distro/xserver-xorg-video-all_1%3a7.7+22_amd64.deb
d06a0dfde48c705364ec326bf6a5bf0936d6074a32802731516018c33436e0b4 ./tools/archives-distro/xserver-xorg-video-amdgpu_19.1.0-2_amd64.deb
7816dfd58a8cf56f76ff40e6b9282031e8ed3cec05de37ca63937ab66fb8732f ./tools/archives-distro/xserver-xorg-video-ati_1%3a19.1.0-2_amd64.deb
cccf3792ff2b6c95b55269b67ca7c5213a00561711fe8d10e5436961faf5d9d9 ./tools/archives-distro/xserver-xorg-video-fbdev_1%3a0.5.0-1_amd64.deb
8dc6f201320969c143cd31ced3081deed806db2615e132a8560e3ea9a9a4106c ./tools/archives-distro/xserver-xorg-video-nouveau_1%3a1.0.17-1_amd64.deb
ff967617a625013ed580735ef2515de4505f521341366224e6b5e04992a536bd ./tools/archives-distro/xserver-xorg-video-radeon_1%3a19.1.0-2_amd64.deb
e84fb816251ab2b9c284a5ac3ca355d0766df467c7e1ac84161e9307d43cbc83 ./tools/archives-distro/xserver-xorg-video-vesa_1%3a2.5.0-1_amd64.deb
b1eeb8e3e67d463ceffdc973728c48ac73fc9838d74e01736bf41327902278a0 ./tools/archives-distro/xserver-xorg-video-vmware_1%3a13.3.0-3_amd64.deb
90525e52ef7db85c0acaad24e3b36fd2f1a41af8b7179a524571811d5e942d0c ./tools/archives-distro/xserver-xorg_1%3a7.7+22_amd64.deb
b760f4746dcac5d6c6891037e415d8a63f92fe3b3a0ea409de996a27cc56194e ./tools/archives-distro/xsltproc_1.1.34-4+deb11u1_amd64.deb
77f1d5f1dbc5fee449cb39d143ce4073429357c2770057d171cb390a97bf8cef ./tools/archives-distro/xterm_366-1+deb11u1_amd64.deb
312e72745206a58d1152b55d38bfa05740d4244e1005f535ed0791af201f4b0d ./tools/archives-distro/xxd_2%3a8.2.2434-3+deb11u1_amd64.deb
2aa23d301b2a12064f223bb400e795358b8082ce90b1b986282195e6214bf9c8 ./tools/archives-distro/busybox_1%3a1.30.1-6+b3_amd64.deb
34071be88dae063892af8818eec2532a19b4ea09c45efd4e9973de4c4d88ccb7 ./tools/archives-distro/cpio_2.13+dfsg-4_amd64.deb
7384821ef6798ec840b996594b72ecd707db3496a727ab861c5712701f4b9196 ./tools/archives-distro/dmsetup_2%3a1.02.175-2.1_amd64.deb
d688bd1d65b8c6cd62e1d6f52c709b46ca423dcd29b3ac6ce023c8c4aebbd05f ./tools/archives-distro/gettext-base_0.21-4_amd64.deb
dc9251561af4d065a9e393a2973a8e9adec8e57446d10aeb79cbe79d0c377d00 ./tools/archives-distro/grub-common_2.06-3~deb11u5_amd64.deb
519ef8cc758743d52a17aa7991daca46a23551439f43d9c7be6b0d0be372c60b ./tools/archives-distro/grub-efi-amd64-bin_2.06-3~deb11u5_amd64.deb
e263b3f9af08089a09b4fbb2834c16d27f3d9ed60ba1dace065dabeea1fff0b2 ./tools/archives-distro/grub-pc-bin_2.06-3~deb11u5_amd64.deb
aeb3110851b806c497d02ffa4319b297dcf29efd929c2f3b5909c4411a734fe1 ./tools/archives-distro/initramfs-tools-core_0.140_all.deb
44921b8b3dd24f64b5f33e5e4b938e8aa243f5aa9cc621da396406b17e976e97 ./tools/archives-distro/initramfs-tools_0.140_all.deb
b52516317fd481490a128dd3342acb183c4c6265d03a95d5757fc402edd5a8a6 ./tools/archives-distro/klibc-utils_2.0.8-6.1_amd64.deb
177cc612b3c408d9b60d7b201d74c8dfe468e6e144a1694554dedeb8d2ec8e02 ./tools/archives-distro/kmod_28-1_amd64.deb
cf1d8b38c399259f59185a52b2bc9dceb7d4ef9ae5b44445189e1d1c5d758563 ./tools/archives-distro/libapparmor1_2.13.6-10_amd64.deb
0d2be32c122d26bbd9b604fbe0072265e4978e07b0e1b7149ba364ba3cc5a302 ./tools/archives-distro/libargon2-1_0~20171227-0.2_amd64.deb
65ca7d8b03e9dac09c5d544a89dd52d1aeb74f6a19583d32e4ff5f0c77624c24 ./tools/archives-distro/libbrotli1_1.0.9-2+b2_amd64.deb
7a3ae3e97d0d403a4c54663c0bb48e9341d98822420a4ab808c6dc8e8474558f ./tools/archives-distro/libcap2_1%3a2.44-1_amd64.deb
f002372b5329a2d3b3fa79f0506f48a5ddd52168fa6e7466c4638f7d9ccdf45c ./tools/archives-distro/libcryptsetup12_2%3a2.3.7-1+deb11u1_amd64.deb
74dfe455175a0181957ee2803f4810d26f4c6e00968b49cb67fe7a006e299eb1 ./tools/archives-distro/libdevmapper1.02.1_2%3a1.02.175-2.1_amd64.deb
ca79e849a65dae2ec2eaefd9e7c1dff717464a7cf029e1d109cbea7d43ef9a48 ./tools/archives-distro/libefiboot1_37-6_amd64.deb
2abb5ccbd287049da2eca79c34ef9d68923ae6c73366ce7c7d65f084588dc2c2 ./tools/archives-distro/libefivar1_37-6_amd64.deb
b21cfdd12adf6cac4af320c2485fb62a8a5edc6f9768bc2288fd686f4fa6dfdf ./tools/archives-distro/libfreetype6_2.10.4+dfsg-1+deb11u1_amd64.deb
337321c5250e1f346278cb53e3a83895033149da812eb1ca8778489a074cec14 ./tools/archives-distro/libfuse2_2.9.9-5_amd64.deb
7adeb63d9a350794b8234082082608d1b81097f5b177a9d16c28b72584c4f527 ./tools/archives-distro/libip4tc2_1.8.7-1_amd64.deb
911629a85e4f4bfd426a48e10ad8bca33511cedf1a6c96892fc8a51e04099844 ./tools/archives-distro/libjson-c5_0.15-2_amd64.deb
d1eff6506dc7b07e4c16eba16c6b9852438a39a3232cebeb0d7d0fad56f978a0 ./tools/archives-distro/libklibc_2.0.8-6.1_amd64.deb
7e3799002afb2573c603490db4fe0271026881be1d6df426d49dbe014c0c52ec ./tools/archives-distro/libkmod2_28-1_amd64.deb
7d5336af395d1f658d0e66d74d0e1f4c632028750e7e04314d1a650e0317f3d6 ./tools/archives-distro/libpng16-16_1.6.37-3_amd64.deb
5fa6a64c4184ffa958f8ca13d10922333ff0adaf9f9e0d819ed56f5f69872620 ./tools/archives-distro/linux-base_4.6_all.deb
7548eea625fae953050be707a8579b10800d2cd61ae869926142f85274415a9f ./tools/archives-distro/linux-image-5.10.0-20-amd64_5.10.158-2_amd64.deb
63362747dad3178aa8215b009c403b03500daaf46c898023fad3ed78734c1e19 ./tools/archives-distro/linux-image-amd64_5.10.158-2_amd64.deb
f1a72ed11e6e1848423d4c800e3b9c7dd23ad40ac215bd366c953d3d51062d0b ./tools/archives-distro/live-boot-initramfs-tools_1%3a20210208_all.deb
2342241139d8cf48b67c898949a5a156356167221fcb2028eecdf3268112ceb9 ./tools/archives-distro/live-boot_1%3a20210208_all.deb
8de050bc7c3326d72a3e1b4b678485bc962e24942f5e5311c43a33bb608fed21 ./tools/archives-distro/systemd-sysv_247.3-7+deb11u1_amd64.deb
3e49628911a3e660cf8b231ca1ad0b6327beabbfbf924da361fe3f3984d958ff ./tools/archives-distro/systemd_247.3-7+deb11u1_amd64.deb
86bdec9be6106577e61081578faff7e73f3e30b2b475fe9c7f9e50c9c2e83552 ./tools/archives-distro/udev_247.3-7+deb11u1_amd64.deb

30
archives-env.sha256 Normal file
View File

@ -0,0 +1,30 @@
284fd2a38bd3522bfaa475540d8c622dde29e465b3439223c950023c5a45df60 ./tools/archives-env/debootstrap_1.0.128+nmu2_all.deb
16f4f965c240fbe853f90c998fb271bbfbe41dc8265089763efcb2600466b1b5 ./tools/archives-env/debuerreotype_0.10-2_all.deb
c73fc490b93c83550ed272de69ec96c5da30d4456b889f9e93c7fd8e53860b85 ./tools/archives-env/dmsetup_2%3a1.02.185-2_amd64.deb
8522f640f0ecc8ca8aa5ade278b53bd4c21d6be02385e0dbc407f32c057c1019 ./tools/archives-env/gettext-base_0.21-10_amd64.deb
996d607c6a6710a6bfd6858f2b1608d7292b533d29c0060e5d31e4ea4e64ddf8 ./tools/archives-env/grub-common_2.06-7_amd64.deb
097ce9220edee0de67c2d3304d075f2bf9e864e86801165b0e9d2d46991ee1ad ./tools/archives-env/libbrotli1_1.0.9-2+b5_amd64.deb
55c516c9b770a889b74d0d472158ed342f0704b7493076f847abf64c251eafc3 ./tools/archives-env/libburn4_1.5.4-1_amd64.deb
2ae3f2256b5f54d32a37f6681347cc22a4e78dd8fd833dc0a8bc0fbf3a6c4a2c ./tools/archives-env/libc-bin_2.36-7_amd64.deb
6f89e59aca2c8331f6fc22524e9579e8016ddcef2f5135bc6f7b9113122209d8 ./tools/archives-env/libc-l10n_2.36-7_all.deb
cd56e90b450fb1187b643deb7e3fd2c16f251ec20ac2ad3d68d3931914e335b0 ./tools/archives-env/libc6_2.36-7_amd64.deb
aaa78ca236055fedccf637eacf7bda02bf1980b2db668dccd202b04d0d2cfe04 ./tools/archives-env/libdevmapper1.02.1_2%3a1.02.185-2_amd64.deb
ca79e849a65dae2ec2eaefd9e7c1dff717464a7cf029e1d109cbea7d43ef9a48 ./tools/archives-env/libefiboot1_37-6_amd64.deb
2abb5ccbd287049da2eca79c34ef9d68923ae6c73366ce7c7d65f084588dc2c2 ./tools/archives-env/libefivar1_37-6_amd64.deb
d85f4d2f4f740d09d5f578cf15bbb9b6a912a849047cf807253605d4815745e8 ./tools/archives-env/libfreetype6_2.12.1+dfsg-3_amd64.deb
99980d760012db6f616c55ea0721d75c51964aa6dc6e7338b2a46b14997ebae3 ./tools/archives-env/libfuse2_2.9.9-6_amd64.deb
187aedef2ed763f425c1e523753b9719677633c7eede660401739e9c893482bd ./tools/archives-env/libgmp10_2%3a6.2.1+dfsg1-1.1_amd64.deb
db2d207ae363db66000eec1367d87a5e88c638c5452738059c876580dcc2fc1a ./tools/archives-env/libgnutls30_3.7.8-4_amd64.deb
32bd9f96b2c29700f6ab5848674a4439eda37b1e353c99d89e4afc996b01fb53 ./tools/archives-env/libisoburn1_1.5.4-4_amd64.deb
c3786ebd1340a70d7c91bb489310e33aa48f1a33b219013b9dd44e417961cc7f ./tools/archives-env/libisofs6_1.5.4-1_amd64.deb
233b22e3465d909284f6a81621ea3cb985e477a46da079e527cfbb19720c59a2 ./tools/archives-env/libjte2_1.22-3_amd64.deb
4f08e092c76e425295a498cd547dc9b8f6a595473f3020ab8c96309b29872636 ./tools/archives-env/liblzo2-2_2.10-2_amd64.deb
dc32727dca9a87ba317da7989572011669f568d10159b9d8675ed7aedd26d686 ./tools/archives-env/libpng16-16_1.6.39-2_amd64.deb
d716f5b4346ec85bb728f4530abeb1da4a79f696c72d7f774c59ba127c202fa7 ./tools/archives-env/libpsl5_0.21.0-1.2_amd64.deb
3c8b1eeb420337632d64f61495a81c9d975ffebeba8f303b7e71ee12ed85f08c ./tools/archives-env/libreadline8_8.2-1.2_amd64.deb
3c5644abb03100df53fcfc138af8e6f0a6468726fc7dcdf3063381816a33d4cb ./tools/archives-env/locales_2.36-7_all.deb
972e0857ff43dbfc4c9255844c97b5d2cb0287720216d04c95b4e7fa483aec99 ./tools/archives-env/mtools_4.0.33-1+really4.0.32-1_amd64.deb
59c875947417a73f11e2bc2a7fcf12dac75b028109071365382b914b4effa9e0 ./tools/archives-env/readline-common_8.2-1.2_all.deb
3f96b16c9b985ea03cf70f90a05f4dc5c15039e845326f8f4293a3280fd0b2f4 ./tools/archives-env/squashfs-tools_1%3a4.5.1-1_amd64.deb
6995822451e1300baa41b953c19f1094640ad4237982612583e980d32e18eee5 ./tools/archives-env/wget_1.21.3-1+b2_amd64.deb
9668c8c8d578e80e61bfffb7353bb5128cb16f3195ccd7979af2dadd9ee30875 ./tools/archives-env/xorriso_1.5.4-4_amd64.deb

7
archives-fontc.sha256 Normal file
View File

@ -0,0 +1,7 @@
b983ab23743da7f3800b4218e852ff0140927d2fe75b70534ac03e196516aeda ./tools/archives-fontc/fontconfig-config_2.13.1-4.5_amd64.deb
47252993501368e4e57bd96cb08258ce9d69fa988857f18c3c29f30051d55f38 ./tools/archives-fontc/fontconfig_2.13.1-4.5_amd64.deb
2ae3f2256b5f54d32a37f6681347cc22a4e78dd8fd833dc0a8bc0fbf3a6c4a2c ./tools/archives-fontc/libc-bin_2.36-7_amd64.deb
6f89e59aca2c8331f6fc22524e9579e8016ddcef2f5135bc6f7b9113122209d8 ./tools/archives-fontc/libc-l10n_2.36-7_all.deb
cd56e90b450fb1187b643deb7e3fd2c16f251ec20ac2ad3d68d3931914e335b0 ./tools/archives-fontc/libc6_2.36-7_amd64.deb
608a01a26f2edaedc42d705e88fb5ec692462e1800954dea3a5e73900b477ab8 ./tools/archives-fontc/libfontconfig1_2.13.1-4.5_amd64.deb
3c5644abb03100df53fcfc138af8e6f0a6468726fc7dcdf3063381816a33d4cb ./tools/archives-fontc/locales_2.36-7_all.deb

View File

@ -12,20 +12,33 @@ mkdir -p $WD
# Setting up the base Debian rootfs environment
debuerreotype-init $WD/chroot $DIST $DATE --arch=$ARCH
# root without password
debuerreotype-chroot $WD/chroot passwd -d root
# Installing all needed packages for COEN
echo "Calculating SHA-256 HASH of the rootfs-init"
ROOTFSINITHASH=$(debuerreotype-tar "${WD}"/chroot - | sha256sum)
if [ "$ROOTFSINITHASH" != "$ROOTFS_INIT_SHASUM" ]
then
echo "Warning: SHA-256 hashes do not match. Reproduction of the rootfs-init failed"
echo "Continuing..."
else
echo "Successfully reproduced rootfs-init"
fi
# Installing all required packages for COEN
debuerreotype-apt-get $WD/chroot update
# copying distro packages
cp $DISTRO_DIR/*.deb $WD/chroot/var/cache/apt/archives/
debuerreotype-chroot $WD/chroot DEBIAN_FRONTEND=noninteractive apt-get -o Acquire::Check-Valid-Until=false install \
--no-install-recommends --yes \
linux-image-amd64 live-boot systemd-sysv \
syslinux syslinux-common isolinux
debuerreotype-chroot $WD/chroot DEBIAN_FRONTEND=noninteractive apt-get -o Acquire::Check-Valid-Until=false install \
--no-install-recommends --yes \
linux-image-$ARCH live-boot systemd-sysv \
grub-common grub-pc-bin grub-efi-amd64-bin \
iproute2 ifupdown pciutils usbutils dosfstools eject exfat-utils \
vim links2 xpdf cups cups-bsd enscript libbsd-dev tree openssl less iputils-ping \
xserver-xorg-core xserver-xorg xfce4 xfce4-terminal xfce4-panel lightdm system-config-printer \
xterm gvfs thunar-volman xfce4-power-manager
xterm gvfs thunar-volman xfce4-power-manager exfat-fuse unzip locales \
xsltproc libxml2-utils \
libengine-pkcs11-openssl opensc opensc-pkcs11 python3
debuerreotype-apt-get $WD/chroot --yes --purge autoremove
debuerreotype-apt-get $WD/chroot --yes clean
@ -35,7 +48,10 @@ do
$FIXES
done
# Setting network
# root without password
debuerreotype-chroot $WD/chroot passwd -d root
# Configuring network
echo "coen" > $WD/chroot/etc/hostname
cat > $WD/chroot/etc/hosts << EOF
@ -60,6 +76,10 @@ sed -i -r -e '9s/^#//' \
-e '10s/^#//' \
-e '11s/^#//' \
$WD/chroot/root/.bashrc
# Set HSM environment
egrep -v '^\s*(#|$)' $WD/chroot/opt/dnssec/fixenv >> $WD/chroot/root/.bashrc
# Set the correct locale
echo "export LC_ALL=${LOCALE_LC_ALL}" >> $WD/chroot/root/.bashrc
# Configure autologin
for NUMBER in $(seq 1 6)
@ -84,13 +104,13 @@ sed -i --regexp-extended \
'11s/.*/#&/' \
$WD/chroot/etc/pam.d/lightdm-autologin
# Disabling lastlog since autologin is enabled
# Disabling lastlog because autologin is enabled
sed -i '/^[^#].*pam_lastlog\.so/s/^/# /' $WD/chroot/etc/pam.d/login
# Making sure that the xscreensaver is off
# Ensure that the xscreensaver is off
rm -f $WD/chroot/etc/xdg/autostart/xscreensaver.desktop
# Defining mount point /media/ for HSMFD, HSMFD1 and KSRFD
# Defining mount point /media/ for HSMFD, HSMFD1, and KSRFD
cat > $WD/chroot/etc/udev/rules.d/99-udisks2.rules << EOF
# UDISKS_FILESYSTEM_SHARED
# ==1: mount filesystem to a shared directory (/media/VolumeName)
@ -101,68 +121,82 @@ EOF
# Creating boot directories
mkdir -p $WD/image/live
mkdir -p $WD/image/isolinux
mkdir -p $WD/image/boot/grub
mkdir -p $WD/image/efi/boot
# Copying bootloader
cp -p $WD/chroot/boot/vmlinuz-* $WD/image/live/vmlinuz
cp -p $WD/chroot/boot/initrd.img-* $WD/image/live/initrd.img
cp -p $WD/chroot/boot/vmlinuz-* $WD/image/boot/vmlinuz
cp -p $WD/chroot/boot/initrd.img-* $WD/image/boot/initrd.img
# Creating the isolinux bootloader
cat > $WD/image/isolinux/isolinux.cfg << EOF
UI menu.c32
# Creating the GRUB configuration
cp -a $WD/chroot/usr/lib/grub/i386-pc $WD/image/boot/grub/i386-pc
cp -a $WD/chroot/usr/lib/grub/x86_64-efi $WD/image/boot/grub/x86_64-efi
prompt 0
menu title coen-${RELEASE}
cat > $WD/image/boot/grub/grub.cfg << EOF
timeout 1
set timeout=1
label coen-${RELEASE} Live amd64
menu label ^coen-${RELEASE} amd64
menu default
kernel /live/vmlinuz
append initrd=/live/initrd.img boot=live locales=en_US.UTF-8 keymap=us language=us net.ifnames=0 timezone=Etc/UTC live-media=removable nopersistence selinux=0 STATICIP=frommedia modprobe.blacklist=pcspkr,hci_uart,btintel,btqca,btbcm,bluetooth,snd_hda_intel,snd_hda_codec_realtek,snd_soc_skl,snd_soc_skl_ipc,snd_soc_sst_ipc,snd_soc_sst_dsp,snd_hda_ext_core,snd_soc_sst_match,snd_soc_core,snd_compress,snd_hda_core,snd_pcm,snd_timer,snd,soundcore
menuentry "coen-${RELEASE} ${ARCH}" {
linux /boot/vmlinuz boot=live locales=${LOCALE_LC_ALL} keymap=us language=us net.ifnames=0 timezone=Etc/UTC live-media=removable nopersistence selinux=0 STATICIP=frommedia modprobe.blacklist=pcspkr,hci_uart,btintel,btqca,btbcm,bluetooth,snd_hda_intel,snd_hda_codec_realtek,snd_soc_skl,snd_soc_skl_ipc,snd_soc_sst_ipc,snd_soc_sst_dsp,snd_hda_ext_core,snd_soc_sst_match,snd_soc_core,snd_compress,snd_hda_core,snd_pcm,snd_timer,snd,soundcore
initrd /boot/initrd.img
}
EOF
# Coping files for ISO booting
cp -p $WD/chroot/usr/lib/ISOLINUX/isolinux.bin $WD/image/isolinux/
cp -p $WD/chroot/usr/lib/ISOLINUX/isohdpfx.bin $WD/image/isolinux/
cp -p $WD/chroot/usr/lib/syslinux/modules/bios/menu.c32 $WD/image/isolinux/
cp -p $WD/chroot/usr/lib/syslinux/modules/bios/hdt.c32 $WD/image/isolinux/
cp -p $WD/chroot/usr/lib/syslinux/modules/bios/ldlinux.c32 $WD/image/isolinux/
cp -p $WD/chroot/usr/lib/syslinux/modules/bios/libutil.c32 $WD/image/isolinux/
cp -p $WD/chroot/usr/lib/syslinux/modules/bios/libmenu.c32 $WD/image/isolinux/
cp -p $WD/chroot/usr/lib/syslinux/modules/bios/libcom32.c32 $WD/image/isolinux/
cp -p $WD/chroot/usr/lib/syslinux/modules/bios/libgpl.c32 $WD/image/isolinux/
cp -p $WD/chroot/usr/share/misc/pci.ids $WD/image/isolinux/
# Creating GRUB images
grub-mkimage --directory "$WD/chroot/usr/lib/grub/i386-pc" --prefix '/boot/grub' --output "$WD/image/boot/grub/i386-pc/eltorito.img" --format 'i386-pc-eltorito' --compression 'auto' --config "$WD/image/boot/grub/grub.cfg" 'biosdisk' 'iso9660'
grub-mkimage --directory "$WD/chroot/usr/lib/grub/x86_64-efi" --prefix '()/boot/grub' --output "$WD/image/efi/boot/bootx64.efi" --format 'x86_64-efi' --compression 'auto' --config "$WD/image/boot/grub/grub.cfg" 'part_gpt' 'part_msdos' 'fat' 'part_apple' 'iso9660'
# Fixing dates to SOURCE_DATE_EPOCH
# Creating EFI boot image
mformat -C -f 2880 -L 16 -N 0 -i "$WD/image/boot/grub/efi.img" ::.
mcopy -s -i "$WD/image/boot/grub/efi.img" "$WD/image/efi" ::/.
# Setting dates to SOURCE_DATE_EPOCH
debuerreotype-fixup $WD/chroot
# Fixing main folder timestamps to SOURCE_DATE_EPOCH
# Setting main folder timestamps to SOURCE_DATE_EPOCH
find "$WD/" -exec touch --no-dereference --date="@$SOURCE_DATE_EPOCH" '{}' +
# Compressing the chroot environment into a squashfs
mksquashfs $WD/chroot/ $WD/image/live/filesystem.squashfs -comp xz -Xbcj x86 -b 1024K -Xdict-size 1024K -no-exports -processors 1 -no-fragments -wildcards -ef $TOOL_DIR/mksquashfs-excludes
echo "Calculating SHA-256 HASH of the rootfs-final"
ROOTFSFINALHASH=$(debuerreotype-tar "${WD}"/chroot - | sha256sum)
if [ "$ROOTFSFINALHASH" != "$ROOTFS_FINAL_SHASUM" ]
then
echo "ERROR: SHA-256 hashes do not match. Reproduction of the rootfs-final failed"
echo "Please check the README file, then try again"
exit 1
else
echo "Successfully reproduced rootfs-final"
fi
# Compressing the chroot environment into squashfs
mksquashfs $WD/chroot/ $WD/image/live/filesystem.squashfs -reproducible -comp xz -Xbcj x86 -b 1024K -Xdict-size 1024K -no-exports -no-fragments -wildcards -ef $TOOL_DIR/mksquashfs-excludes
# Setting permissions for squashfs.img
chmod 644 $WD/image/live/filesystem.squashfs
# Fixing squashfs folder timestamps to SOURCE_DATE_EPOCH
# Setting squashfs folder timestamps to SOURCE_DATE_EPOCH
find "$WD/image/" -exec touch --no-dereference --date="@$SOURCE_DATE_EPOCH" '{}' +
echo "Calculating SHA-256 HASH of the squashfs"
SQUASHFSHASH=$(sha256sum < "${WD}"/image/live/filesystem.squashfs)
if [ "$SQUASHFSHASH" != "$SQUASHFS_SHASUM" ]
then
echo "ERROR: SHA-256 hashes do not match. Reproduction of the squashfs failed"
echo "Please check the README file, then try again"
exit 1
else
echo "Successfully reproduced squashfs"
fi
# Creating the iso
xorriso -outdev $ISONAME -volid COEN \
-map $WD/image/ / -chmod 0755 / -- -boot_image isolinux dir=/isolinux \
-boot_image isolinux system_area=$WD/chroot/usr/lib/ISOLINUX/isohdpfx.bin \
-boot_image isolinux partition_entry=gpt_basdat
xorriso -as mkisofs -graft-points -b 'boot/grub/i386-pc/eltorito.img' -no-emul-boot -boot-load-size 4 -boot-info-table --grub2-boot-info --grub2-mbr "$WD/chroot/usr/lib/grub/i386-pc/boot_hybrid.img" --efi-boot 'boot/grub/efi.img' -efi-boot-part --efi-boot-image --protective-msdos-label -o "$ISONAME" -r "$WD/image" --sort-weight 0 '/' --sort-weight 1 '/boot'
echo "Calculating SHA-256 HASH of the $ISONAME"
NEWHASH=$(sha256sum < "${ISONAME}")
if [ "$NEWHASH" != "$SHASUM" ]
ISOHASH=$(sha256sum < "${ISONAME}")
if [ "$ISOHASH" != "$ISO_SHASUM" ]
then
echo "ERROR: SHA-256 hashes mismatched reproduction failed"
echo "Please send us an issue report: https://github.com/iana-org/coen"
echo "ERROR: SHA-256 hashes do not match. Reproduction of the iso failed"
echo "Please check the README file, then try again"
else
echo "Successfully reproduced coen-${RELEASE}"
fi

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Some files were not shown because too many files have changed in this diff Show More