Lexer vs Parser

enneatruth_anim

image

Notice how the 3, 9, and 6 is in red and does not connect at the base. That is because it is a vector. The 1,2,4,8,7,5 is the third dimension while the oscillation between the 3 and 6 demonstrates the fourth dimension, which is the higher dimensional magnetic field of an electrical coil.

image

The 3, 9, and 6 always occur together with the 9 as the control. In fact, the Yin/Yang is not a duality but rather a trinary. This is because the 3 and 6 represent each side of the Yin/Yang and the 9 is the "S" curve between them. Everything is based on thirds. We think that the universe is based on dualities because we see the effects not the cause.

Four (4) Vector

!

Φ(11,13) = (114 - 10²) + 13 = 27

1729 = 7 x 13 x 19
1729 / 7 = 13 x 19 = 247

1729 = 7 x 13 x 19
       7 + 13 = 20 = d(2)
                     └──  2 x 19 = 38

+----+----+----+----+----+----+----+----+----+----+----+----+----+----+
| {1}|  2 |  3 |  4 |  5 | {6}| {7}|  8 |  9 | 10 | 11 | 12 | 13 | 14 |
+----+----+----+----+----+----+----+----+----+----+----+----+----+----+
| {3}| {4}|  3 |  4 |  5 |  2 |  3 |  2 |  2 |  1 |  2 |  5 |  1 |  1 |{38}
+----+----+----+----+----+----+----+----+----+----+----+----+----+----+---- } 285
|  3 |  8 |  9 | 16 | 25 |{12}|{21}| 16 | 18 | 10 | 22 | 60 |{13}|{14}|{247}
+----+----+----+----+----+----+----+----+----+----+----+----+----+----+
|-- 38 ---|              |-- 33 ---|                        |-- {27}--|

Four Spacetime Dimensions

------+------+-----+----------+-----+-----                                     |     ---
      |      |     |     11:7 |   5 |   9 |  14 (20) --------› ¤               |      |
      |      |  4  +----------+-----+-----+-----+                              |      |
      |  3   |     |     12:8 |   9 |  60 |  40 | 109 (26) «------------       |     11¨  polymorphism
      |      +-----+----------+-----+-----+-----+                       |      |      |
      |      |     |     13:9 |   9 |  60 |  69 (27) «-- Δ19 (Rep Fork) | {2®} |      |
  2   +------|  5  +----------+-----+-----+-----+                       |      |     ---
      |      |     |    14:19 |   9 |  60 |  40 | 109 (28) -------------       |      |
      |      |-----+----------+-----+-----+-----+                              |      |
      |  4   |     | 15,18:11 |   1 |  30 |  40 | 71 (29,30,31,32) ------------      13¨  inheritance
329   |      |  6  +----------+-----+-----+-----+                                     |
|     |      |     |    19:12 |  10 |  60 | {70} (36) -------› Φ                      |
------+------+-----+----------+-----+-----+                                          ---
      |      |     |    20:13 |  90 |  90 (38) ‹-------------- ¤                      |
      |      |  7  +----------+-----+                                                 |
      |  5   |     |       14 |            -----------------------------             17¨  class
      |      |-----+----------+           |                             |             |
      |      |     |       15 |           |       LEADING SCHEME        |             |
  3   +------+  8  +----------+-----      |    (Multiplication Zone)    |            ---
      |      |     |       16 |           |                             |             |
      |      |-----+----------+-----+      -----------------------------              |
      |  6   |     |    28:17 | 100 |                                                19¨  object
168   |      |  9  +----------+-----+                                                 |
|     |      |     |    29:18 | 50  | 50(68) ---------> Δ18                           |
------|------|-----+----------+-----+                                                ---

Diagram of Classes

COS instances come pre-installed with the Docker runtime and cloud-init. With a COS instance, you can bring up your Docker container at the same time you create your VM, with no on-host setup required.

Note: docker-credential-gcr writes credentials to $HOME/.docker/config.json. When running /usr/bin/docker-credential-gcr configure-docker in a unit file, you must set the environment variable $HOME. Otherwise, docker-credential-gcr will try to write credentials to /root/.docker/config.json, which is not permitted on Container-Optimized OS (Google Cloud).

#cloud-config

users:
- default
- uid: 2000
  name: runner
  groups: admin,adm,video,docker,google-sudoers

write_files:
- owner: root
  permissions: 0644
  path: /etc/systemd/system/runner.service
  content: |
    [Unit]
    Wants=gcr-online.target
    After=gcr-online.target
    Description=gcloud compute instances create instance-template --scopes=https://www.googleapis.com/auth/cloud-platform --network-interface=network=default,network-tier=PREMIUM --maintenance-policy=MIGRATE --provisioning-model=STANDARD --project=feedmapping --zone=us-central1-a --shielded-vtpm --shielded-integrity-monitoring --reservation-affinity=any --service-account=project-owner@feedmapping.iam.gserviceaccount.com --machine-type=e2-micro --enable-display-device --no-shielded-secure-boot --image-family cos-stable --image-project cos-cloud --metadata-from-file user-data=cloud-config --create-disk=auto-delete=yes,device-name=persistent-disk-1,boot=no,image-family=tf-ent-latest-gpu,mode=rw,size=50,type=pd-standard,image-project=deeplearning-platform-release 

    [Service]
    Environment="HOME=/home/runner"
    ExecStartPre=/usr/bin/docker-credential-gcr configure-docker
    ExecStart=/usr/bin/docker run --rm --name myrunner -e RUNNER_NAME=Google-optimized-instance -e RUNNER_ORGANIZATION_URL=https://github.com/FeedMapping -e RUNNER_WORK_DIRECTORY=/mnt/disks/Linux/tmp/_FeedMapping -e RUNNER_REPLACE_EXISTING=true -e GITHUB_ACCESS_TOKEN=ghp_XXXXXXXXXXXXXXXXXXXXXXXXXX -v /var/run/docker.sock:/var/run/docker.sock -v /mnt:/mnt eq19/setup
    ExecStop=/usr/bin/docker stop myrunner
    ExecStopPost=/usr/bin/docker rm myrunner

runcmd:
- systemctl daemon-reload
- systemctl start runner.service
- systemctl status runner.service

bootcmd:
- fsck.ext4 -tvy /dev/sdb1
- mkdir -p /mnt/disks/Linux
- mount -t ext4 -o discard,defaults /dev/sdb1 /mnt/disks/Linux

Using the advanced scenarios you can deploy multiple containers and configure Docker options using cloud-init, you can create a Compute Engine instance with your choice of COS image then proceed to configure with metadata.

docker run -it --name Google-optimized-instance \
    -e RUNNER_NAME=Google-optimized-instance \
    -e RUNNER_ORGANIZATION_URL=https://github.com/FeedMapping \
    -e GITHUB_ACCESS_TOKEN=ghp_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx \
    -v /var/run/docker.sock:/var/run/docker.sock \
    tcardonne/github-runner

The Google instance deployed through the Google Cloud console or the Google Cloud CLI, not the API. Use advanced scenarios to deploy multiple containers, and to use cloud-init for advanced configuration.

default

It will be managed by the boot disk of 10GB represent the central of addition zone with two (2) exponential zone each represent new lagging strand DNA, whose direction of synthesis is opposite to the direction of the growing replication fork.

Deep Learning

Base on above scheme here we are going to use Deep Learning VM Images from Google and Windows Server Images from Microsoft by the image disks of 32GB to represent imajinary part (i), and the 50GB to represent circle part (π).

The Cloud-init is a way to configure a COS instance when it boots up. The tool expects its configuration in the value of the user-data key of the instance metadata. The cloud-init tool understands multiple formats.

default

The COS Container has limited or no support for the gsutil tool. Passing a startup script for COS instance of #cloud-config from Cloud Storage is not possible therefore it needs to be stored in a local file and create-disk using gcloud.

gcloud compute instances create instance-template \
--scopes=https://www.googleapis.com/auth/cloud-platform \
--network-interface=network=default,network-tier=PREMIUM \
--maintenance-policy=MIGRATE --provisioning-model=STANDARD \
--project=feedmapping --zone=us-central1-a --shielded-vtpm \
--shielded-integrity-monitoring --reservation-affinity=any \
--service-account=project-owner@feedmapping.iam.gserviceaccount.com \
--machine-type=e2-micro --enable-display-device --no-shielded-secure-boot \
--image-family cos-stable --image-project cos-cloud \                          ◄- COS
--metadata-from-file user-data=cloud-config \
--create-disk=auto-delete=yes,device-name=persistent-disk-1,boot=no,\          ◄- LINUX
image-family=tf-ent-latest-gpu,mode=rw,size=50,type=pd-standard,\
image-project=deeplearning-platform-release \
--create-disk=auto-delete=yes,device-name=persistent-disk-2,boot=no,\          ◄- WINDOWS
image=projects/gce-uefi-images/global/images/windows-server-1909\
-dc-core-for-containers-v20200609,mode=rw,size=32,type=pd-standard

Deep Learning VM Images are virtual machine images optimized for data science and machine learning tasks. Built with key ML frameworks, tools pre-installed, and can be used out of the box on instances with GPUs to accelerate data processing.

Deciding on an image family

In Linux dpkg is the primary package manager for Debian and Debian-based systems, such as Ubuntu. The tool installs, builds, removes, configures, and retrieves information for Debian packages. The command works with packages in .deb format.

$ dpkg -l

Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name                          Version                     Architecture Description
+++-=============================-===========================-============-===============================================================================
ii  adduser                       3.118                       all          add and remove users and groups
ii  apparmor                      2.13.2-10                   amd64        user-space parser utility for AppArmor
ii  apt                           1.8.2.3                     amd64        commandline package manager
ii  apt-transport-https           1.8.2.3                     all          transitional package for https support
ii  base-files                    10.3+deb10u13               amd64        Debian base system miscellaneous files
ii  base-passwd                   3.5.46                      amd64        Debian base system master password and group files
ii  bash                          5.0-4                       amd64        GNU Bourne Again SHell
ii  binutils                      2.31.1-16                   amd64        GNU assembler, linker and binary utilities
ii  binutils-common:amd64         2.31.1-16                   amd64        Common files for the GNU assembler, linker and binary utilities
ii  binutils-x86-64-linux-gnu     2.31.1-16                   amd64        GNU binary utilities, for x86-64-linux-gnu target
ii  bsdutils                      1:2.33.1-0.1                amd64        basic utilities from 4.4BSD-Lite
ii  build-essential               12.6                        amd64        Informational list of build-essential packages
ii  bzip2                         1.0.6-9.2~deb10u2           amd64        high-quality block-sorting file compressor - utilities
ii  ca-certificates               20200601~deb10u2            all          Common CA certificates
ii  containerd.io                 1.6.20-1                    amd64        An open and reliable container runtime
ii  coreutils                     8.30-3                      amd64        GNU core utilities
ii  cpp                           4:8.3.0-1                   amd64        GNU C preprocessor (cpp)
ii  cpp-8                         8.3.0-6                     amd64        GNU C preprocessor
ii  curl                          7.64.0-4+deb10u5            amd64        command line tool for transferring data with URL syntax
ii  dash                          0.5.10.2-5                  amd64        POSIX-compliant shell
ii  dbus                          1.12.24-0+deb10u1           amd64        simple interprocess messaging system (daemon and utilities)
ii  dbus-user-session             1.12.24-0+deb10u1           amd64        simple interprocess messaging system (systemd --user integration)
ii  debconf                       1.5.71+deb10u1              all          Debian configuration management system
ii  debian-archive-keyring        2019.1+deb10u1              all          GnuPG archive keys of the Debian archive
ii  debianutils                   4.8.6.1                     amd64        Miscellaneous utilities specific to Debian
ii  diffutils                     1:3.7-3                     amd64        File comparison utilities
ii  dirmngr                       2.2.12-1+deb10u2            amd64        GNU privacy guard - network certificate management service
ii  distro-info-data              0.41+deb10u6                all          information about the distributions' releases (data files)
ii  dmsetup                       2:1.02.155-3                amd64        Linux Kernel Device Mapper userspace library
ii  docker-buildx-plugin          0.10.4-1~debian.10~buster   amd64        Docker Buildx cli plugin.
ii  docker-ce                     5:23.0.3-1~debian.10~buster amd64        Docker: the open-source application container engine
ii  docker-ce-cli                 5:23.0.3-1~debian.10~buster amd64        Docker CLI: the open-source application container engine
ii  docker-ce-rootless-extras     5:23.0.3-1~debian.10~buster amd64        Rootless support for Docker.
ii  docker-compose-plugin         2.17.2-1~debian.10~buster   amd64        Docker Compose (V2) plugin for the Docker CLI.
ii  dpkg                          1.19.8                      amd64        Debian package management system
ii  dpkg-dev                      1.19.8                      all          Debian package development tools
ii  e2fsprogs                     1.44.5-1+deb10u3            amd64        ext2/ext3/ext4 file system utilities
ii  fakeroot                      1.23-1                      amd64        tool for simulating superuser privileges
ii  fdisk                         2.33.1-0.1                  amd64        collection of partitioning utilities
ii  file                          1:5.35-4+deb10u2            amd64        Recognize the type of data in a file using "magic" numbers
ii  findutils                     4.6.0+git+20190209-2        amd64        utilities for finding files--find, xargs
ii  g++                           4:8.3.0-1                   amd64        GNU C++ compiler
ii  g++-8                         8.3.0-6                     amd64        GNU C++ compiler
ii  gcc                           4:8.3.0-1                   amd64        GNU C compiler
ii  gcc-8                         8.3.0-6                     amd64        GNU C compiler
ii  gcc-8-base:amd64              8.3.0-6                     amd64        GCC, the GNU Compiler Collection (base package)
ii  gettext                       0.19.8.1-9                  amd64        GNU Internationalization utilities
ii  gettext-base                  0.19.8.1-9                  amd64        GNU Internationalization utilities for the base system
ii  gir1.2-glib-2.0:amd64         1.58.3-2                    amd64        Introspection data for GLib, GObject, Gio and GModule
ii  gir1.2-packagekitglib-1.0     1.1.12-5                    amd64        GObject introspection data for the PackageKit GLib library
ii  git                           1:2.20.1-2+deb10u8          amd64        fast, scalable, distributed revision control system
ii  git-man                       1:2.20.1-2+deb10u8          all          fast, scalable, distributed revision control system (manual pages)
ii  gnupg                         2.2.12-1+deb10u2            all          GNU privacy guard - a free PGP replacement
ii  gnupg-l10n                    2.2.12-1+deb10u2            all          GNU privacy guard - localization files
ii  gnupg-utils                   2.2.12-1+deb10u2            amd64        GNU privacy guard - utility programs
ii  gpg                           2.2.12-1+deb10u2            amd64        GNU Privacy Guard -- minimalist public key operations
ii  gpg-agent                     2.2.12-1+deb10u2            amd64        GNU privacy guard - cryptographic agent
ii  gpg-wks-client                2.2.12-1+deb10u2            amd64        GNU privacy guard - Web Key Service client
ii  gpg-wks-server                2.2.12-1+deb10u2            amd64        GNU privacy guard - Web Key Service server
ii  gpgconf                       2.2.12-1+deb10u2            amd64        GNU privacy guard - core configuration utilities
ii  gpgsm                         2.2.12-1+deb10u2            amd64        GNU privacy guard - S/MIME version
ii  gpgv                          2.2.12-1+deb10u2            amd64        GNU privacy guard - signature verification tool
ii  grep                          3.3-1                       amd64        GNU grep, egrep and fgrep
ii  gzip                          1.9-3+deb10u1               amd64        GNU compression utilities
ii  hostname                      3.21                        amd64        utility to set/show the host name or domain name
ii  init-system-helpers           1.56+nmu1                   all          helper tools for all init systems
ii  iptables                      1.8.2-4                     amd64        administration tools for packet filtering and NAT
ii  iputils-ping                  3:20180629-2+deb10u2        amd64        Tools to test the reachability of network hosts
ii  iso-codes                     4.2-1                       all          ISO language, territory, currency, script codes and their translations
ii  jq                            1.5+dfsg-2+b1               amd64        lightweight and flexible command-line JSON processor
ii  krb5-locales                  1.17-3+deb10u5              all          internationalization support for MIT Kerberos
ii  less                          487-0.1+b1                  amd64        pager program similar to more
ii  libacl1:amd64                 2.2.53-4                    amd64        access control list - shared library
ii  libalgorithm-diff-perl        1.19.03-2                   all          module to find differences between files
ii  libalgorithm-diff-xs-perl     0.04-5+b1                   amd64        module to find differences between files (XS accelerated)
ii  libalgorithm-merge-perl       0.08-3                      all          Perl module for three-way merge of textual data
ii  libapparmor1:amd64            2.13.2-10                   amd64        changehat AppArmor library
ii  libappstream4:amd64           0.12.5-1                    amd64        Library to access AppStream services
ii  libapt-inst2.0:amd64          1.8.2.3                     amd64        deb package format runtime library
ii  libapt-pkg5.0:amd64           1.8.2.3                     amd64        package management runtime library
ii  libargon2-1:amd64             0~20171227-0.2              amd64        memory-hard hashing function - runtime library
ii  libasan5:amd64                8.3.0-6                     amd64        AddressSanitizer -- a fast memory error detector
ii  libassuan0:amd64              2.5.2-1                     amd64        IPC library for the GnuPG components
ii  libatomic1:amd64              8.3.0-6                     amd64        support library providing __atomic built-in functions
ii  libattr1:amd64                1:2.4.48-4                  amd64        extended attribute handling - shared library
ii  libaudit-common               1:2.8.4-3                   all          Dynamic library for security auditing - common files
ii  libaudit1:amd64               1:2.8.4-3                   amd64        Dynamic library for security auditing
ii  libbinutils:amd64             2.31.1-16                   amd64        GNU binary utilities (private shared library)
ii  libblkid1:amd64               2.33.1-0.1                  amd64        block device ID library
ii  libbsd0:amd64                 0.9.1-2+deb10u1             amd64        utility functions from BSD systems - shared library
ii  libbz2-1.0:amd64              1.0.6-9.2~deb10u2           amd64        high-quality block-sorting file compressor library - runtime
ii  libc-bin                      2.28-10+deb10u2             amd64        GNU C Library: Binaries
ii  libc-dev-bin                  2.28-10+deb10u2             amd64        GNU C Library: Development binaries
ii  libc6:amd64                   2.28-10+deb10u2             amd64        GNU C Library: Shared libraries
ii  libc6-dev:amd64               2.28-10+deb10u2             amd64        GNU C Library: Development Libraries and Header Files
ii  libcap-ng0:amd64              0.7.9-2                     amd64        An alternate POSIX capabilities library
ii  libcap2:amd64                 1:2.25-2                    amd64        POSIX 1003.1e capabilities (library)
ii  libcap2-bin                   1:2.25-2                    amd64        POSIX 1003.1e capabilities (utilities)
ii  libcc1-0:amd64                8.3.0-6                     amd64        GCC cc1 plugin for GDB
ii  libcom-err2:amd64             1.44.5-1+deb10u3            amd64        common error description library
ii  libcroco3:amd64               0.6.12-3                    amd64        Cascading Style Sheet (CSS) parsing and manipulation toolkit
ii  libcryptsetup12:amd64         2:2.1.0-5+deb10u2           amd64        disk encryption support - shared library
ii  libcurl3-gnutls:amd64         7.64.0-4+deb10u5            amd64        easy-to-use client-side URL transfer library (GnuTLS flavour)
ii  libcurl4:amd64                7.64.0-4+deb10u5            amd64        easy-to-use client-side URL transfer library (OpenSSL flavour)
ii  libcurl4-openssl-dev:amd64    7.64.0-4+deb10u5            amd64        development files and documentation for libcurl (OpenSSL flavour)
ii  libdb5.3:amd64                5.3.28+dfsg1-0.5            amd64        Berkeley v5.3 Database Libraries [runtime]
ii  libdbus-1-3:amd64             1.12.24-0+deb10u1           amd64        simple interprocess messaging system (library)
ii  libdebconfclient0:amd64       0.249                       amd64        Debian Configuration Management System (C-implementation library)
ii  libdevmapper1.02.1:amd64      2:1.02.155-3                amd64        Linux Kernel Device Mapper userspace library
ii  libdpkg-perl                  1.19.8                      all          Dpkg perl modules
ii  libedit2:amd64                3.1-20181209-1              amd64        BSD editline and history libraries
ii  libelf1:amd64                 0.176-1.1                   amd64        library to read and write ELF files
ii  liberror-perl                 0.17027-2                   all          Perl module for error/exception handling in an OO-ish way
ii  libexpat1:amd64               2.2.6-2+deb10u6             amd64        XML parsing C library - runtime library
ii  libext2fs2:amd64              1.44.5-1+deb10u3            amd64        ext2/ext3/ext4 file system libraries
ii  libfakeroot:amd64             1.23-1                      amd64        tool for simulating superuser privileges - shared libraries
ii  libfdisk1:amd64               2.33.1-0.1                  amd64        fdisk partitioning library
ii  libffi6:amd64                 3.2.1-9                     amd64        Foreign Function Interface library runtime
ii  libfile-fcntllock-perl        0.22-3+b5                   amd64        Perl module for file locking with fcntl(2)
ii  libgcc-8-dev:amd64            8.3.0-6                     amd64        GCC support library (development files)
ii  libgcc1:amd64                 1:8.3.0-6                   amd64        GCC support library
ii  libgcrypt20:amd64             1.8.4-5+deb10u1             amd64        LGPL Crypto library - runtime library
ii  libgdbm-compat4:amd64         1.18.1-4                    amd64        GNU dbm database routines (legacy support runtime version) 
ii  libgdbm6:amd64                1.18.1-4                    amd64        GNU dbm database routines (runtime version) 
ii  libgirepository-1.0-1:amd64   1.58.3-2                    amd64        Library for handling GObject introspection data (runtime library)
ii  libglib2.0-0:amd64            2.58.3-2+deb10u4            amd64        GLib library of C routines
ii  libglib2.0-bin                2.58.3-2+deb10u4            amd64        Programs for the GLib library
ii  libglib2.0-data               2.58.3-2+deb10u4            all          Common files for GLib library
ii  libgmp10:amd64                2:6.1.2+dfsg-4+deb10u1      amd64        Multiprecision arithmetic library
ii  libgnutls30:amd64             3.6.7-4+deb10u10            amd64        GNU TLS library - main runtime library
ii  libgomp1:amd64                8.3.0-6                     amd64        GCC OpenMP (GOMP) support library
ii  libgpg-error0:amd64           1.35-1                      amd64        GnuPG development runtime library
ii  libgpm2:amd64                 1.20.7-5                    amd64        General Purpose Mouse - shared library
ii  libgssapi-krb5-2:amd64        1.17-3+deb10u5              amd64        MIT Kerberos runtime libraries - krb5 GSS-API Mechanism
ii  libgstreamer1.0-0:amd64       1.14.4-1                    amd64        Core GStreamer libraries and elements
ii  libhogweed4:amd64             3.4.1-1+deb10u1             amd64        low level cryptographic library (public-key cryptos)
ii  libicu63:amd64                63.1-6+deb10u3              amd64        International Components for Unicode
ii  libidn11:amd64                1.33-2.2                    amd64        GNU Libidn library, implementation of IETF IDN specifications
ii  libidn2-0:amd64               2.0.5-1+deb10u1             amd64        Internationalized domain names (IDNA2008/TR46) library
ii  libip4tc0:amd64               1.8.2-4                     amd64        netfilter libip4tc library
ii  libip6tc0:amd64               1.8.2-4                     amd64        netfilter libip6tc library
ii  libiptc0:amd64                1.8.2-4                     amd64        netfilter libiptc library
ii  libisl19:amd64                0.20-2                      amd64        manipulating sets and relations of integer points bounded by linear constraints
ii  libitm1:amd64                 8.3.0-6                     amd64        GNU Transactional Memory Library
ii  libjansson4:amd64             2.12-1                      amd64        C library for encoding, decoding and manipulating JSON data
ii  libjq1:amd64                  1.5+dfsg-2+b1               amd64        lightweight and flexible command-line JSON processor - shared library
ii  libjson-c3:amd64              0.12.1+ds-2+deb10u1         amd64        JSON manipulation library - shared library
ii  libk5crypto3:amd64            1.17-3+deb10u5              amd64        MIT Kerberos runtime libraries - Crypto Library
ii  libkeyutils1:amd64            1.6-6                       amd64        Linux Key Management Utilities (library)
ii  libkmod2:amd64                26-1                        amd64        libkmod shared library
ii  libkrb5-3:amd64               1.17-3+deb10u5              amd64        MIT Kerberos runtime libraries
ii  libkrb5support0:amd64         1.17-3+deb10u5              amd64        MIT Kerberos runtime libraries - Support library
ii  libksba8:amd64                1.3.5-2+deb10u2             amd64        X.509 and CMS support library
ii  libldap-2.4-2:amd64           2.4.47+dfsg-3+deb10u7       amd64        OpenLDAP libraries
ii  libldap-common                2.4.47+dfsg-3+deb10u7       all          OpenLDAP common files for libraries
ii  liblocale-gettext-perl        1.07-3+b4                   amd64        module using libc functions for internationalization in Perl
ii  liblsan0:amd64                8.3.0-6                     amd64        LeakSanitizer -- a memory leak detector (runtime)
ii  libltdl7:amd64                2.4.6-9                     amd64        System independent dlopen wrapper for GNU libtool
ii  liblttng-ust-ctl4:amd64       2.10.3-1                    amd64        LTTng 2.0 Userspace Tracer (trace control library)
ii  liblttng-ust0:amd64           2.10.3-1                    amd64        LTTng 2.0 Userspace Tracer (tracing libraries)
ii  liblz4-1:amd64                1.8.3-1+deb10u1             amd64        Fast LZ compression algorithm library - runtime
ii  liblzma5:amd64                5.2.4-1+deb10u1             amd64        XZ-format compression library
ii  libmagic-mgc                  1:5.35-4+deb10u2            amd64        File type determination library using "magic" numbers (compiled magic file)
ii  libmagic1:amd64               1:5.35-4+deb10u2            amd64        Recognize the type of data in a file using "magic" numbers - library
ii  libmnl0:amd64                 1.0.4-2                     amd64        minimalistic Netlink communication library
ii  libmount1:amd64               2.33.1-0.1                  amd64        device mounting library
ii  libmpc3:amd64                 1.1.0-1                     amd64        multiple precision complex floating-point library
ii  libmpdec2:amd64               2.4.2-2                     amd64        library for decimal floating point arithmetic (runtime library)
ii  libmpfr6:amd64                4.0.2-1                     amd64        multiple precision floating-point computation
ii  libmpx2:amd64                 8.3.0-6                     amd64        Intel memory protection extensions (runtime)
ii  libncurses6:amd64             6.1+20181013-2+deb10u3      amd64        shared libraries for terminal handling
ii  libncursesw6:amd64            6.1+20181013-2+deb10u3      amd64        shared libraries for terminal handling (wide character support)
ii  libnetfilter-conntrack3:amd64 1.0.7-1                     amd64        Netfilter netlink-conntrack library
ii  libnettle6:amd64              3.4.1-1+deb10u1             amd64        low level cryptographic library (symmetric and one-way cryptos)
ii  libnfnetlink0:amd64           1.0.1-3+b1                  amd64        Netfilter netlink library
ii  libnftables0:amd64            0.9.0-2                     amd64        Netfilter nftables high level userspace API library
ii  libnftnl11:amd64              1.1.2-2                     amd64        Netfilter nftables userspace API library
ii  libnghttp2-14:amd64           1.36.0-2+deb10u1            amd64        library implementing HTTP/2 protocol (shared library)
ii  libnpth0:amd64                1.6-1                       amd64        replacement for GNU Pth using system threads
ii  libnss-systemd:amd64          241-7~deb10u9               amd64        nss module providing dynamic user and group name resolution
ii  libonig5:amd64                6.9.1-1                     amd64        regular expressions library
ii  libp11-kit0:amd64             0.23.15-2+deb10u1           amd64        library for loading and coordinating access to PKCS#11 modules - runtime
ii  libpackagekit-glib2-18:amd64  1.1.12-5                    amd64        Library for accessing PackageKit using GLib
ii  libpam-cap:amd64              1:2.25-2                    amd64        POSIX 1003.1e capabilities (PAM module)
ii  libpam-modules:amd64          1.3.1-5                     amd64        Pluggable Authentication Modules for PAM
ii  libpam-modules-bin            1.3.1-5                     amd64        Pluggable Authentication Modules for PAM - helper binaries
ii  libpam-runtime                1.3.1-5                     all          Runtime support for the PAM library
ii  libpam-systemd:amd64          241-7~deb10u9               amd64        system and service manager - PAM module
ii  libpam0g:amd64                1.3.1-5                     amd64        Pluggable Authentication Modules library
ii  libpcre2-8-0:amd64            10.32-5+deb10u1             amd64        New Perl Compatible Regular Expression Library- 8 bit runtime files
ii  libpcre3:amd64                2:8.39-12                   amd64        Old Perl 5 Compatible Regular Expression Library - runtime files
ii  libperl5.28:amd64             5.28.1-6+deb10u1            amd64        shared Perl library
ii  libpolkit-agent-1-0:amd64     0.105-25+deb10u1            amd64        PolicyKit Authentication Agent API
ii  libpolkit-backend-1-0:amd64   0.105-25+deb10u1            amd64        PolicyKit backend API
ii  libpolkit-gobject-1-0:amd64   0.105-25+deb10u1            amd64        PolicyKit Authorization API
ii  libprocps7:amd64              2:3.3.15-2                  amd64        library for accessing process information from /proc
ii  libpsl5:amd64                 0.20.2-2                    amd64        Library for Public Suffix List (shared libraries)
ii  libpython-stdlib:amd64        2.7.16-1                    amd64        interactive high-level object-oriented language (Python2)
ii  libpython2-stdlib:amd64       2.7.16-1                    amd64        interactive high-level object-oriented language (Python2)
ii  libpython2.7-minimal:amd64    2.7.16-2+deb10u1            amd64        Minimal subset of the Python language (version 2.7)
ii  libpython2.7-stdlib:amd64     2.7.16-2+deb10u1            amd64        Interactive high-level object-oriented language (standard library, version 2.7)
ii  libpython3-stdlib:amd64       3.7.3-1                     amd64        interactive high-level object-oriented language (default python3 version)
ii  libpython3.7-minimal:amd64    3.7.3-2+deb10u4             amd64        Minimal subset of the Python language (version 3.7)
ii  libpython3.7-stdlib:amd64     3.7.3-2+deb10u4             amd64        Interactive high-level object-oriented language (standard library, version 3.7)
ii  libquadmath0:amd64            8.3.0-6                     amd64        GCC Quad-Precision Math Library
ii  libreadline7:amd64            7.0-5                       amd64        GNU readline and history libraries, run-time libraries
ii  librtmp1:amd64                2.4+20151223.gitfa8646d.1-2 amd64        toolkit for RTMP streams (shared library)
ii  libsasl2-2:amd64              2.1.27+dfsg-1+deb10u2       amd64        Cyrus SASL - authentication abstraction library
ii  libsasl2-modules:amd64        2.1.27+dfsg-1+deb10u2       amd64        Cyrus SASL - pluggable authentication modules
ii  libsasl2-modules-db:amd64     2.1.27+dfsg-1+deb10u2       amd64        Cyrus SASL - pluggable authentication modules (DB)
ii  libseccomp2:amd64             2.3.3-4                     amd64        high level interface to Linux seccomp filter
ii  libselinux1:amd64             2.8-1+b1                    amd64        SELinux runtime shared libraries
ii  libsemanage-common            2.8-2                       all          Common files for SELinux policy management libraries
ii  libsemanage1:amd64            2.8-2                       amd64        SELinux policy management library
ii  libsepol1:amd64               2.8-1                       amd64        SELinux library for manipulating binary security policies
ii  libsmartcols1:amd64           2.33.1-0.1                  amd64        smart column output alignment library
ii  libsqlite3-0:amd64            3.27.2-3+deb10u2            amd64        SQLite 3 shared library
ii  libss2:amd64                  1.44.5-1+deb10u3            amd64        command-line interface parsing library
ii  libssh2-1:amd64               1.8.0-2.1                   amd64        SSH2 client-side library
ii  libssl1.1:amd64               1.1.1n-0+deb10u4            amd64        Secure Sockets Layer toolkit - shared libraries
ii  libstdc++-8-dev:amd64         8.3.0-6                     amd64        GNU Standard C++ Library v3 (development files)
ii  libstdc++6:amd64              8.3.0-6                     amd64        GNU Standard C++ Library v3
ii  libstemmer0d:amd64            0+svn585-1+b2               amd64        Snowball stemming algorithms for use in Information Retrieval
ii  libsystemd0:amd64             241-7~deb10u9               amd64        systemd utility library
ii  libtasn1-6:amd64              4.13-3+deb10u1              amd64        Manage ASN.1 structures (runtime)
ii  libtinfo6:amd64               6.1+20181013-2+deb10u3      amd64        shared low-level terminfo library for terminal handling
ii  libtsan0:amd64                8.3.0-6                     amd64        ThreadSanitizer -- a Valgrind-based detector of data races (runtime)
ii  libubsan1:amd64               8.3.0-6                     amd64        UBSan -- undefined behaviour sanitizer (runtime)
ii  libudev1:amd64                241-7~deb10u8               amd64        libudev shared library
ii  libunistring2:amd64           0.9.10-1                    amd64        Unicode string library for C
ii  liburcu6:amd64                0.10.2-1                    amd64        userspace RCU (read-copy-update) library
ii  libuuid1:amd64                2.33.1-0.1                  amd64        Universally Unique ID library
ii  libx11-6:amd64                2:1.6.7-1+deb10u2           amd64        X11 client-side library
ii  libx11-data                   2:1.6.7-1+deb10u2           all          X11 client-side library
ii  libxau6:amd64                 1:1.0.8-1+b2                amd64        X11 authorisation library
ii  libxcb1:amd64                 1.13.1-2                    amd64        X C Binding
ii  libxdmcp6:amd64               1:1.1.2-3                   amd64        X11 Display Manager Control Protocol library
ii  libxext6:amd64                2:1.3.3-1+b2                amd64        X11 miscellaneous extension library
ii  libxml2:amd64                 2.9.4+dfsg1-7+deb10u5       amd64        GNOME XML library
ii  libxmuu1:amd64                2:1.1.2-2+b3                amd64        X11 miscellaneous micro-utility library
ii  libxtables12:amd64            1.8.2-4                     amd64        netfilter xtables library
ii  libyaml-0-2:amd64             0.2.1-1                     amd64        Fast YAML 1.1 parser and emitter library
ii  libzstd1:amd64                1.3.8+dfsg-3+deb10u2        amd64        fast lossless compression algorithm
ii  linux-libc-dev:amd64          4.19.269-1                  amd64        Linux support headers for userspace development
ii  login                         1:4.5-1.1                   amd64        system login tools
ii  lsb-base                      10.2019051400               all          Linux Standard Base init script functionality
ii  lsb-release                   10.2019051400               all          Linux Standard Base version reporting utility
ii  make                          4.2.1-1.2                   amd64        utility for directing compilation
ii  manpages                      4.16-2                      all          Manual pages about using a GNU/Linux system
ii  manpages-dev                  4.16-2                      all          Manual pages about using GNU/Linux for development
ii  mawk                          1.3.3-17+b3                 amd64        a pattern scanning and text processing language
ii  mime-support                  3.62                        all          MIME files 'mime.types' & 'mailcap', and support programs
ii  mount                         2.33.1-0.1                  amd64        tools for mounting and manipulating filesystems
ii  ncurses-base                  6.1+20181013-2+deb10u3      all          basic terminal type definitions
ii  ncurses-bin                   6.1+20181013-2+deb10u3      amd64        terminal-related programs and man pages
ii  netbase                       5.6                         all          Basic TCP/IP networking system
ii  nftables                      0.9.0-2                     amd64        Program to control packet filtering rules by Netfilter project
ii  openssh-client                1:7.9p1-10+deb10u2          amd64        secure shell (SSH) client, for secure access to remote machines
ii  openssl                       1.1.1n-0+deb10u4            amd64        Secure Sockets Layer toolkit - cryptographic utility
ii  packagekit                    1.1.12-5                    amd64        Provides a package management service
ii  packagekit-tools              1.1.12-5                    amd64        Provides PackageKit command-line tools
ii  passwd                        1:4.5-1.1                   amd64        change and administer password and group data
ii  patch                         2.7.6-3+deb10u1             amd64        Apply a diff file to an original
ii  perl                          5.28.1-6+deb10u1            amd64        Larry Wall's Practical Extraction and Report Language
ii  perl-base                     5.28.1-6+deb10u1            amd64        minimal Perl system
ii  perl-modules-5.28             5.28.1-6+deb10u1            all          Core Perl modules
ii  pigz                          2.4-1                       amd64        Parallel Implementation of GZip
ii  pinentry-curses               1.1.0-2                     amd64        curses-based PIN or pass-phrase entry dialog for GnuPG
ii  policykit-1                   0.105-25+deb10u1            amd64        framework for managing administrative policies and privileges
ii  procps                        2:3.3.15-2                  amd64        /proc file system utilities
ii  psmisc                        23.2-1+deb10u1              amd64        utilities that use the proc file system
ii  publicsuffix                  20220811.1734-0+deb10u1     all          accurate, machine-readable list of domain name suffixes
ii  python                        2.7.16-1                    amd64        interactive high-level object-oriented language (Python2 version)
ii  python-apt-common             1.8.4.3                     all          Python interface to libapt-pkg (locales)
ii  python-meld3                  1.0.2-2                     all          HTML/XML templating system for Python
ii  python-minimal                2.7.16-1                    amd64        minimal subset of the Python2 language
ii  python-pkg-resources          40.8.0-1                    all          Package Discovery and Resource Access using pkg_resources
ii  python2                       2.7.16-1                    amd64        interactive high-level object-oriented language (Python2 version)
ii  python2-minimal               2.7.16-1                    amd64        minimal subset of the Python2 language
ii  python2.7                     2.7.16-2+deb10u1            amd64        Interactive high-level object-oriented language (version 2.7)
ii  python2.7-minimal             2.7.16-2+deb10u1            amd64        Minimal subset of the Python language (version 2.7)
ii  python3                       3.7.3-1                     amd64        interactive high-level object-oriented language (default python3 version)
ii  python3-apt                   1.8.4.3                     amd64        Python 3 interface to libapt-pkg
ii  python3-dbus                  1.2.8-3                     amd64        simple interprocess messaging system (Python 3 interface)
ii  python3-distro-info           0.21                        all          information about distributions' releases (Python 3 module)
ii  python3-gi                    3.30.4-1                    amd64        Python 3 bindings for gobject-introspection libraries
ii  python3-minimal               3.7.3-1                     amd64        minimal subset of the Python language (default python3 version)
ii  python3-pycurl                7.43.0.2-0.1                amd64        Python bindings to libcurl (Python 3)
ii  python3-software-properties   0.96.20.2-2                 all          manage the repositories that you install software from
ii  python3.7                     3.7.3-2+deb10u4             amd64        Interactive high-level object-oriented language (version 3.7)
ii  python3.7-minimal             3.7.3-2+deb10u4             amd64        Minimal subset of the Python language (version 3.7)
ii  readline-common               7.0-5                       all          GNU readline and history libraries, common files
ii  sed                           4.7-1                       amd64        GNU stream editor for filtering/transforming text
ii  sensible-utils                0.0.12                      all          Utilities for sensible alternative selection
ii  shared-mime-info              1.10-1                      amd64        FreeDesktop.org shared MIME database and spec
ii  software-properties-common    0.96.20.2-2                 all          manage the repositories that you install software from (common)
ii  sudo                          1.8.27-1+deb10u5            amd64        Provide limited super user privileges to specific users
ii  supervisor                    3.3.5-1                     all          System for controlling process state
ii  systemd                       241-7~deb10u9               amd64        system and service manager
ii  systemd-sysv                  241-7~deb10u9               amd64        system and service manager - SysV links
ii  sysvinit-utils                2.93-8                      amd64        System-V-like utilities
ii  tar                           1.30+dfsg-6                 amd64        GNU version of the tar archiving utility
ii  tzdata                        2021a-0+deb10u8             all          time zone and daylight-saving time data
ii  ucf                           3.0038+nmu1                 all          Update Configuration File(s): preserve user changes to config files
ii  unattended-upgrades           1.11.2                      all          automatic installation of security upgrades
ii  unzip                         6.0-23+deb10u3              amd64        De-archiver for .zip files
ii  util-linux                    2.33.1-0.1                  amd64        miscellaneous system utilities
ii  xauth                         1:1.0.10-1                  amd64        X authentication utility
ii  xdg-user-dirs                 0.17-2                      amd64        tool to manage well known user directories
ii  xz-utils                      5.2.4-1+deb10u1             amd64        XZ-format compression utilities
ii  zlib1g:amd64                  1:1.2.11.dfsg-1+deb10u2     amd64        compression library - runtime
ii  zlib1g-dev:amd64              1:1.2.11.dfsg-1+deb10u2     amd64        compression library - development
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
/usr/bin/python
Python 3.7.3
curl 7.64.0 (x86_64-pc-linux-gnu) libcurl/7.64.0 OpenSSL/1.1.1n zlib/1.2.11 libidn2/2.0.5 libpsl/0.20.2 (+libidn2/2.0.5) libssh2/1.8.0 nghttp2/1.36.0 librtmp/2.3