diff options
| -rw-r--r-- | channels.scm | 6 | ||||
| -rwxr-xr-x | deploy.sh | 28 | ||||
| -rw-r--r-- | modules/ryan-packages/test.html | 1073 | ||||
| -rw-r--r-- | modules/ryan-packages/tmp.txt | 841 | ||||
| -rw-r--r-- | modules/ryan-packages/tmp2.txt | 801 |
5 files changed, 27 insertions, 2722 deletions
diff --git a/channels.scm b/channels.scm index a3f2b8c..c79b138 100644 --- a/channels.scm +++ b/channels.scm | |||
| @@ -3,7 +3,7 @@ | |||
| 3 | (url "https://git.savannah.gnu.org/git/guix.git") | 3 | (url "https://git.savannah.gnu.org/git/guix.git") |
| 4 | (branch "master") | 4 | (branch "master") |
| 5 | (commit | 5 | (commit |
| 6 | "9b77bd0b9b4f3de69390da0ba7db5b9dbc01e554") | 6 | "afdbf7f271529573397474fdb8f1c9d00dceba37") |
| 7 | (introduction | 7 | (introduction |
| 8 | (make-channel-introduction | 8 | (make-channel-introduction |
| 9 | "9edb3f66fd807b096b48283debdcddccfea34bad" | 9 | "9edb3f66fd807b096b48283debdcddccfea34bad" |
| @@ -14,7 +14,7 @@ | |||
| 14 | (url "https://gitlab.com/nonguix/nonguix") | 14 | (url "https://gitlab.com/nonguix/nonguix") |
| 15 | (branch "master") | 15 | (branch "master") |
| 16 | (commit | 16 | (commit |
| 17 | "5a0490f23d8cb9a564a2486b2507356cfb328129") | 17 | "71a53faf2e1925a309b480f17e5b836740ce54bc") |
| 18 | (introduction | 18 | (introduction |
| 19 | (make-channel-introduction | 19 | (make-channel-introduction |
| 20 | "897c1a470da759236cc11798f4e0a5f7d4d59fbc" | 20 | "897c1a470da759236cc11798f4e0a5f7d4d59fbc" |
| @@ -25,7 +25,7 @@ | |||
| 25 | (url "https://codeberg.org/hako/rosenthal.git") | 25 | (url "https://codeberg.org/hako/rosenthal.git") |
| 26 | (branch "trunk") | 26 | (branch "trunk") |
| 27 | (commit | 27 | (commit |
| 28 | "417dd04e821084a7137872d3bf16f10379017a18") | 28 | "0d789becf6916017092f85b0d2b0a3f46e90b411") |
| 29 | (introduction | 29 | (introduction |
| 30 | (make-channel-introduction | 30 | (make-channel-introduction |
| 31 | "7677db76330121a901604dfbad19077893865f35" | 31 | "7677db76330121a901604dfbad19077893865f35" |
| @@ -2,7 +2,7 @@ | |||
| 2 | 2 | ||
| 3 | gather_env() { | 3 | gather_env() { |
| 4 | # Gather needed information | 4 | # Gather needed information |
| 5 | echo -n "Type 'e' for encrypted or 'd' for decrypted install: " | 5 | echo -n "Type 'eb' for encrypted w/ boot, 'en' for encrypted w/o boot, or 'd' for decrypted install: " |
| 6 | read install_type | 6 | read install_type |
| 7 | 7 | ||
| 8 | echo -n "Type system hostname: " | 8 | echo -n "Type system hostname: " |
| @@ -17,6 +17,13 @@ gather_env() { | |||
| 17 | echo -n "Type device file for SWAP: " | 17 | echo -n "Type device file for SWAP: " |
| 18 | read swap_dev | 18 | read swap_dev |
| 19 | 19 | ||
| 20 | echo -n "Add local device on network as substitute server? (y/n): " | ||
| 21 | read add_local_sub | ||
| 22 | if [ "$add_local_sub" == "y" ] | ||
| 23 | then | ||
| 24 | echo -n "Enter IP address of server: " | ||
| 25 | read substitute_ip | ||
| 26 | fi | ||
| 20 | } | 27 | } |
| 21 | 28 | ||
| 22 | copy_and_prepare() { | 29 | copy_and_prepare() { |
| @@ -37,14 +44,14 @@ copy_and_prepare() { | |||
| 37 | 44 | ||
| 38 | # We are installing! | 45 | # We are installing! |
| 39 | # Copy template to root of repo | 46 | # Copy template to root of repo |
| 40 | if [ "$install_type" == "e" ] | 47 | if [ "$install_type" == "eb" ] |
| 41 | then | 48 | then |
| 42 | cp ./modules/ryan-config/deploy-templates/HostTemplateEncrypted ./$install_hostname.scm | 49 | cp ./modules/ryan-config/deploy-templates/HostTemplateEncrypted ./$install_hostname.scm |
| 43 | elif [ "$install_type" == "d" ] | 50 | elif [ "$install_type" == "d" ] |
| 44 | then | 51 | then |
| 45 | cp ./modules/ryan-config/deploy-templates/HostTemplate ./$install_hostname.scm | 52 | cp ./modules/ryan-config/deploy-templates/HostTemplate ./$install_hostname.scm |
| 46 | else | 53 | else |
| 47 | echo "Invalid install type (not d or e), bailing!" | 54 | echo "Invalid install type (not eb, en, or d), bailing!" |
| 48 | exit 1 | 55 | exit 1 |
| 49 | fi | 56 | fi |
| 50 | 57 | ||
| @@ -62,11 +69,24 @@ copy_and_prepare() { | |||
| 62 | echo "Installing non-guix signing keys for substitutes..." | 69 | echo "Installing non-guix signing keys for substitutes..." |
| 63 | curl -o sign-key.pub https://substitutes.nonguix.org/signing-key.pub | 70 | curl -o sign-key.pub https://substitutes.nonguix.org/signing-key.pub |
| 64 | guix archive --authorize < sign-key.pub | 71 | guix archive --authorize < sign-key.pub |
| 72 | |||
| 73 | if [ "$add_local_sub" == "y" ] | ||
| 74 | then | ||
| 75 | echo "Installing local substitute server's signing keys" | ||
| 76 | curl -o local-sign.pub http://$substitute_ip/signing-key.pub | ||
| 77 | guix archive --authorize < local-sign.pub | ||
| 78 | fi | ||
| 65 | } | 79 | } |
| 66 | 80 | ||
| 67 | install_system() { | 81 | install_system() { |
| 68 | echo "Beginning install!" | 82 | echo "Beginning install!" |
| 69 | guix time-machine -C ./channels.scm -- system -L ./modules --substitute-urls='https://substitutes.nonguix.org https://bordeaux.guix.gnu.org https://ci.guix.gnu.org' init $install_hostname.scm /mnt | 83 | if [ "$add_local_sub" == "y"] |
| 84 | then | ||
| 85 | guix time-machine -C ./channels.scm -- system -L ./modules --substitute-urls="http://$substitute_ip https://substitutes.nonguix.org https://bordeaux.guix.gnu.org https://ci.guix.gnu.org" init $install_hostname.scm /mnt | ||
| 86 | else | ||
| 87 | guix time-machine -C ./channels.scm -- system -L ./modules --substitute-urls="https://substitutes.nonguix.org https://bordeaux.guix.gnu.org https://ci.guix.gnu.org" init $install_hostname.scm /mnt | ||
| 88 | fi | ||
| 89 | |||
| 70 | } | 90 | } |
| 71 | 91 | ||
| 72 | install_user_env() { | 92 | install_user_env() { |
diff --git a/modules/ryan-packages/test.html b/modules/ryan-packages/test.html deleted file mode 100644 index f0b551d..0000000 --- a/modules/ryan-packages/test.html +++ /dev/null | |||
| @@ -1,1073 +0,0 @@ | |||
| 1 | <!DOCTYPE html> | ||
| 2 | <html> | ||
| 3 | <head> | ||
| 4 | <meta charset="utf-8"> | ||
| 5 | <style> | ||
| 6 | text { | ||
| 7 | font: 10px sans-serif; | ||
| 8 | pointer-events: none; | ||
| 9 | } | ||
| 10 | </style> | ||
| 11 | <script type="text/javascript" src="/gnu/store/d74zg27gc831j3ck7f3zvzgj9spaxnrb-guix-module-union/share/guile/site/3.0/guix/d3.v3.js"></script> | ||
| 12 | </head> | ||
| 13 | <body> | ||
| 14 | <script type="text/javascript"> | ||
| 15 | var nodes = {}, | ||
| 16 | nodeArray = [], | ||
| 17 | links = []; | ||
| 18 | nodes["140550228278192"] = {"id": "140550228278192", "label": "waybar-new@0.9.22", "index": nodeArray.length}; | ||
| 19 | nodeArray.push(nodes["140550228278192"]); | ||
| 20 | links.push({"source": "140550228278192", "target": "140550156000528"}); | ||
| 21 | links.push({"source": "140550228278192", "target": "140550459778960"}); | ||
| 22 | links.push({"source": "140550228278192", "target": "140550159904016"}); | ||
| 23 | links.push({"source": "140550228278192", "target": "140550170777312"}); | ||
| 24 | links.push({"source": "140550228278192", "target": "140550228278544"}); | ||
| 25 | links.push({"source": "140550228278192", "target": "140550155684080"}); | ||
| 26 | links.push({"source": "140550228278192", "target": "140550168427440"}); | ||
| 27 | links.push({"source": "140550228278192", "target": "140550169729440"}); | ||
| 28 | links.push({"source": "140550228278192", "target": "140550169705040"}); | ||
| 29 | links.push({"source": "140550228278192", "target": "140550167187056"}); | ||
| 30 | links.push({"source": "140550228278192", "target": "140550169729616"}); | ||
| 31 | links.push({"source": "140550228278192", "target": "140550168275888"}); | ||
| 32 | links.push({"source": "140550228278192", "target": "140550170779072"}); | ||
| 33 | links.push({"source": "140550228278192", "target": "140550224334448"}); | ||
| 34 | links.push({"source": "140550228278192", "target": "140550157898960"}); | ||
| 35 | links.push({"source": "140550228278192", "target": "140550169727504"}); | ||
| 36 | links.push({"source": "140550228278192", "target": "140550158020608"}); | ||
| 37 | links.push({"source": "140550228278192", "target": "140550190898976"}); | ||
| 38 | links.push({"source": "140550228278192", "target": "140550225229536"}); | ||
| 39 | links.push({"source": "140550228278192", "target": "140550223606640"}); | ||
| 40 | links.push({"source": "140550228278192", "target": "140550170777488"}); | ||
| 41 | links.push({"source": "140550228278192", "target": "140550158044960"}); | ||
| 42 | nodes["140550156000528"] = {"id": "140550156000528", "label": "glib@2.72.3", "index": nodeArray.length}; | ||
| 43 | nodeArray.push(nodes["140550156000528"]); | ||
| 44 | links.push({"source": "140550156000528", "target": "140550155915264"}); | ||
| 45 | links.push({"source": "140550156000528", "target": "140550159771184"}); | ||
| 46 | links.push({"source": "140550156000528", "target": "140550459779840"}); | ||
| 47 | links.push({"source": "140550156000528", "target": "140550160707584"}); | ||
| 48 | links.push({"source": "140550156000528", "target": "140550459778960"}); | ||
| 49 | links.push({"source": "140550156000528", "target": "140550160343392"}); | ||
| 50 | links.push({"source": "140550156000528", "target": "140550160375408"}); | ||
| 51 | links.push({"source": "140550156000528", "target": "140550161420464"}); | ||
| 52 | links.push({"source": "140550156000528", "target": "140550160709520"}); | ||
| 53 | links.push({"source": "140550156000528", "target": "140550160343392"}); | ||
| 54 | links.push({"source": "140550156000528", "target": "140550160375408"}); | ||
| 55 | links.push({"source": "140550156000528", "target": "140550157412944"}); | ||
| 56 | links.push({"source": "140550156000528", "target": "140550458590240"}); | ||
| 57 | links.push({"source": "140550156000528", "target": "140550157879536"}); | ||
| 58 | links.push({"source": "140550156000528", "target": "140550160636496"}); | ||
| 59 | nodes["140550155915264"] = {"id": "140550155915264", "label": "dbus@1.14.0", "index": nodeArray.length}; | ||
| 60 | nodeArray.push(nodes["140550155915264"]); | ||
| 61 | links.push({"source": "140550155915264", "target": "140550459778960"}); | ||
| 62 | links.push({"source": "140550155915264", "target": "140550159684112"}); | ||
| 63 | links.push({"source": "140550155915264", "target": "140550159773472"}); | ||
| 64 | links.push({"source": "140550155915264", "target": "140550155464128"}); | ||
| 65 | links.push({"source": "140550155915264", "target": "140550169807968"}); | ||
| 66 | links.push({"source": "140550155915264", "target": "140550169727504"}); | ||
| 67 | links.push({"source": "140550155915264", "target": "140550169780000"}); | ||
| 68 | links.push({"source": "140550155915264", "target": "140550155265232"}); | ||
| 69 | links.push({"source": "140550155915264", "target": "140550169727856"}); | ||
| 70 | links.push({"source": "140550155915264", "target": "140550168348912"}); | ||
| 71 | nodes["140550459778960"] = {"id": "140550459778960", "label": "pkg-config@0.29.2", "index": nodeArray.length}; | ||
| 72 | nodeArray.push(nodes["140550459778960"]); | ||
| 73 | nodes["140550159684112"] = {"id": "140550159684112", "label": "docbook-xml@4.4", "index": nodeArray.length}; | ||
| 74 | nodeArray.push(nodes["140550159684112"]); | ||
| 75 | nodes["140550159773472"] = {"id": "140550159773472", "label": "docbook-xsl@1.79.2-0.fe16c90", "index": nodeArray.length}; | ||
| 76 | nodeArray.push(nodes["140550159773472"]); | ||
| 77 | nodes["140550155464128"] = {"id": "140550155464128", "label": "doxygen@1.9.5", "index": nodeArray.length}; | ||
| 78 | nodeArray.push(nodes["140550155464128"]); | ||
| 79 | nodes["140550169807968"] = {"id": "140550169807968", "label": "xmlto@0.0.28", "index": nodeArray.length}; | ||
| 80 | nodeArray.push(nodes["140550169807968"]); | ||
| 81 | nodes["140550169727504"] = {"id": "140550169727504", "label": "libxml2@2.9.14", "index": nodeArray.length}; | ||
| 82 | nodeArray.push(nodes["140550169727504"]); | ||
| 83 | nodes["140550169780000"] = {"id": "140550169780000", "label": "libxslt@1.1.37", "index": nodeArray.length}; | ||
| 84 | nodeArray.push(nodes["140550169780000"]); | ||
| 85 | nodes["140550155265232"] = {"id": "140550155265232", "label": "yelp-tools@3.32.2", "index": nodeArray.length}; | ||
| 86 | nodeArray.push(nodes["140550155265232"]); | ||
| 87 | nodes["140550169727856"] = {"id": "140550169727856", "label": "expat@2.5.0", "index": nodeArray.length}; | ||
| 88 | nodeArray.push(nodes["140550169727856"]); | ||
| 89 | nodes["140550168348912"] = {"id": "140550168348912", "label": "libx11@1.8.1", "index": nodeArray.length}; | ||
| 90 | nodeArray.push(nodes["140550168348912"]); | ||
| 91 | nodes["140550159771184"] = {"id": "140550159771184", "label": "gettext-minimal@0.21", "index": nodeArray.length}; | ||
| 92 | nodeArray.push(nodes["140550159771184"]); | ||
| 93 | links.push({"source": "140550159771184", "target": "140550458589888"}); | ||
| 94 | links.push({"source": "140550159771184", "target": "140550169727504"}); | ||
| 95 | links.push({"source": "140550159771184", "target": "140550159586512"}); | ||
| 96 | nodes["140550458589888"] = {"id": "140550458589888", "label": "libunistring@1.0", "index": nodeArray.length}; | ||
| 97 | nodeArray.push(nodes["140550458589888"]); | ||
| 98 | nodes["140550159586512"] = {"id": "140550159586512", "label": "ncurses@6.2.20210619", "index": nodeArray.length}; | ||
| 99 | nodeArray.push(nodes["140550159586512"]); | ||
| 100 | nodes["140550459779840"] = {"id": "140550459779840", "label": "m4@1.4.19", "index": nodeArray.length}; | ||
| 101 | nodeArray.push(nodes["140550459779840"]); | ||
| 102 | nodes["140550160707584"] = {"id": "140550160707584", "label": "perl@5.36.0", "index": nodeArray.length}; | ||
| 103 | nodeArray.push(nodes["140550160707584"]); | ||
| 104 | nodes["140550160343392"] = {"id": "140550160343392", "label": "python@3.10.7", "index": nodeArray.length}; | ||
| 105 | nodeArray.push(nodes["140550160343392"]); | ||
| 106 | links.push({"source": "140550160343392", "target": "140550161420464"}); | ||
| 107 | links.push({"source": "140550160343392", "target": "140550160658432"}); | ||
| 108 | links.push({"source": "140550160343392", "target": "140550160658608"}); | ||
| 109 | links.push({"source": "140550160343392", "target": "140550459778960"}); | ||
| 110 | links.push({"source": "140550160343392", "target": "140550160635616"}); | ||
| 111 | links.push({"source": "140550160343392", "target": "140550169727856"}); | ||
| 112 | links.push({"source": "140550160343392", "target": "140550459779136"}); | ||
| 113 | links.push({"source": "140550160343392", "target": "140550157412944"}); | ||
| 114 | links.push({"source": "140550160343392", "target": "140550307256208"}); | ||
| 115 | links.push({"source": "140550160343392", "target": "140550167241408"}); | ||
| 116 | links.push({"source": "140550160343392", "target": "140550458590944"}); | ||
| 117 | links.push({"source": "140550160343392", "target": "140550160636496"}); | ||
| 118 | links.push({"source": "140550160343392", "target": "140550157678480"}); | ||
| 119 | links.push({"source": "140550160343392", "target": "140550157677952"}); | ||
| 120 | nodes["140550161420464"] = {"id": "140550161420464", "label": "tzdata@2022a", "index": nodeArray.length}; | ||
| 121 | nodeArray.push(nodes["140550161420464"]); | ||
| 122 | nodes["140550160658432"] = {"id": "140550160658432", "label": "unzip@6.0", "index": nodeArray.length}; | ||
| 123 | nodeArray.push(nodes["140550160658432"]); | ||
| 124 | nodes["140550160658608"] = {"id": "140550160658608", "label": "zip@3.0", "index": nodeArray.length}; | ||
| 125 | nodeArray.push(nodes["140550160658608"]); | ||
| 126 | nodes["140550160635616"] = {"id": "140550160635616", "label": "bzip2@1.0.8", "index": nodeArray.length}; | ||
| 127 | nodeArray.push(nodes["140550160635616"]); | ||
| 128 | nodes["140550459779136"] = {"id": "140550459779136", "label": "gdbm@1.23", "index": nodeArray.length}; | ||
| 129 | nodeArray.push(nodes["140550459779136"]); | ||
| 130 | nodes["140550157412944"] = {"id": "140550157412944", "label": "libffi@3.4.4", "index": nodeArray.length}; | ||
| 131 | nodeArray.push(nodes["140550157412944"]); | ||
| 132 | nodes["140550307256208"] = {"id": "140550307256208", "label": "sqlite@3.39.3", "index": nodeArray.length}; | ||
| 133 | nodeArray.push(nodes["140550307256208"]); | ||
| 134 | nodes["140550167241408"] = {"id": "140550167241408", "label": "openssl@3.0.8", "index": nodeArray.length}; | ||
| 135 | nodeArray.push(nodes["140550167241408"]); | ||
| 136 | nodes["140550458590944"] = {"id": "140550458590944", "label": "readline@8.1.2", "index": nodeArray.length}; | ||
| 137 | nodeArray.push(nodes["140550458590944"]); | ||
| 138 | nodes["140550160636496"] = {"id": "140550160636496", "label": "zlib@1.2.13", "index": nodeArray.length}; | ||
| 139 | nodeArray.push(nodes["140550160636496"]); | ||
| 140 | nodes["140550157678480"] = {"id": "140550157678480", "label": "tcl@8.6.12", "index": nodeArray.length}; | ||
| 141 | nodeArray.push(nodes["140550157678480"]); | ||
| 142 | nodes["140550157677952"] = {"id": "140550157677952", "label": "tk@8.6.12", "index": nodeArray.length}; | ||
| 143 | nodeArray.push(nodes["140550157677952"]); | ||
| 144 | nodes["140550160375408"] = {"id": "140550160375408", "label": "python-wrapper@3.10.7", "index": nodeArray.length}; | ||
| 145 | nodeArray.push(nodes["140550160375408"]); | ||
| 146 | links.push({"source": "140550160375408", "target": "140550161420464"}); | ||
| 147 | links.push({"source": "140550160375408", "target": "140550160658432"}); | ||
| 148 | links.push({"source": "140550160375408", "target": "140550160658608"}); | ||
| 149 | links.push({"source": "140550160375408", "target": "140550459778960"}); | ||
| 150 | links.push({"source": "140550160375408", "target": "140550160709696"}); | ||
| 151 | links.push({"source": "140550160375408", "target": "140550160343392"}); | ||
| 152 | nodes["140550160709696"] = {"id": "140550160709696", "label": "bash@5.1.16", "index": nodeArray.length}; | ||
| 153 | nodeArray.push(nodes["140550160709696"]); | ||
| 154 | nodes["140550160709520"] = {"id": "140550160709520", "label": "bash-minimal@5.1.16", "index": nodeArray.length}; | ||
| 155 | nodeArray.push(nodes["140550160709520"]); | ||
| 156 | nodes["140550458590240"] = {"id": "140550458590240", "label": "pcre@8.45", "index": nodeArray.length}; | ||
| 157 | nodeArray.push(nodes["140550458590240"]); | ||
| 158 | links.push({"source": "140550458590240", "target": "140550160635616"}); | ||
| 159 | links.push({"source": "140550458590240", "target": "140550458590944"}); | ||
| 160 | links.push({"source": "140550458590240", "target": "140550160636496"}); | ||
| 161 | nodes["140550157879536"] = {"id": "140550157879536", "label": "util-linux@2.37.4", "index": nodeArray.length}; | ||
| 162 | nodeArray.push(nodes["140550157879536"]); | ||
| 163 | links.push({"source": "140550157879536", "target": "140550160526960"}); | ||
| 164 | links.push({"source": "140550157879536", "target": "140550160707584"}); | ||
| 165 | links.push({"source": "140550157879536", "target": "140550306205472"}); | ||
| 166 | links.push({"source": "140550157879536", "target": "140550159586512"}); | ||
| 167 | links.push({"source": "140550157879536", "target": "140550160636496"}); | ||
| 168 | nodes["140550160526960"] = {"id": "140550160526960", "label": "net-base@5.3", "index": nodeArray.length}; | ||
| 169 | nodeArray.push(nodes["140550160526960"]); | ||
| 170 | nodes["140550306205472"] = {"id": "140550306205472", "label": "file@5.44", "index": nodeArray.length}; | ||
| 171 | nodeArray.push(nodes["140550306205472"]); | ||
| 172 | nodes["140550159904016"] = {"id": "140550159904016", "label": "scdoc@1.11.2", "index": nodeArray.length}; | ||
| 173 | nodeArray.push(nodes["140550159904016"]); | ||
| 174 | nodes["140550170777312"] = {"id": "140550170777312", "label": "wayland-protocols@1.32", "index": nodeArray.length}; | ||
| 175 | nodeArray.push(nodes["140550170777312"]); | ||
| 176 | links.push({"source": "140550170777312", "target": "140550459778960"}); | ||
| 177 | links.push({"source": "140550170777312", "target": "140550160343392"}); | ||
| 178 | links.push({"source": "140550170777312", "target": "140550170777488"}); | ||
| 179 | nodes["140550170777488"] = {"id": "140550170777488", "label": "wayland@1.22.0", "index": nodeArray.length}; | ||
| 180 | nodeArray.push(nodes["140550170777488"]); | ||
| 181 | links.push({"source": "140550170777488", "target": "140550159683760"}); | ||
| 182 | links.push({"source": "140550170777488", "target": "140550159684288"}); | ||
| 183 | links.push({"source": "140550170777488", "target": "140550159773472"}); | ||
| 184 | links.push({"source": "140550170777488", "target": "140550155388464"}); | ||
| 185 | links.push({"source": "140550170777488", "target": "140550155464128"}); | ||
| 186 | links.push({"source": "140550170777488", "target": "140550459778960"}); | ||
| 187 | links.push({"source": "140550170777488", "target": "140550160343392"}); | ||
| 188 | links.push({"source": "140550170777488", "target": "140550169807968"}); | ||
| 189 | links.push({"source": "140550170777488", "target": "140550169780000"}); | ||
| 190 | links.push({"source": "140550170777488", "target": "140550169727856"}); | ||
| 191 | links.push({"source": "140550170777488", "target": "140550169727504"}); | ||
| 192 | links.push({"source": "140550170777488", "target": "140550157412944"}); | ||
| 193 | nodes["140550159683760"] = {"id": "140550159683760", "label": "docbook-xml@4.2", "index": nodeArray.length}; | ||
| 194 | nodeArray.push(nodes["140550159683760"]); | ||
| 195 | nodes["140550159684288"] = {"id": "140550159684288", "label": "docbook-xml@4.5", "index": nodeArray.length}; | ||
| 196 | nodeArray.push(nodes["140550159684288"]); | ||
| 197 | nodes["140550155388464"] = {"id": "140550155388464", "label": "graphviz@7.0.1", "index": nodeArray.length}; | ||
| 198 | nodeArray.push(nodes["140550155388464"]); | ||
| 199 | nodes["140550228278544"] = {"id": "140550228278544", "label": "gtkmm@3.24.6", "index": nodeArray.length}; | ||
| 200 | nodeArray.push(nodes["140550228278544"]); | ||
| 201 | links.push({"source": "140550228278544", "target": "140550155388464"}); | ||
| 202 | links.push({"source": "140550228278544", "target": "140550155464128"}); | ||
| 203 | links.push({"source": "140550228278544", "target": "140550156000528"}); | ||
| 204 | links.push({"source": "140550228278544", "target": "140550459779840"}); | ||
| 205 | links.push({"source": "140550228278544", "target": "140550155118832"}); | ||
| 206 | links.push({"source": "140550228278544", "target": "140550160707584"}); | ||
| 207 | links.push({"source": "140550228278544", "target": "140550459778960"}); | ||
| 208 | links.push({"source": "140550228278544", "target": "140550160343392"}); | ||
| 209 | links.push({"source": "140550228278544", "target": "140550169780000"}); | ||
| 210 | links.push({"source": "140550228278544", "target": "140550168349616"}); | ||
| 211 | links.push({"source": "140550228278544", "target": "140550228278720"}); | ||
| 212 | links.push({"source": "140550228278544", "target": "140550169705392"}); | ||
| 213 | links.push({"source": "140550228278544", "target": "140550169706096"}); | ||
| 214 | links.push({"source": "140550228278544", "target": "140550155998592"}); | ||
| 215 | links.push({"source": "140550228278544", "target": "140550169675136"}); | ||
| 216 | links.push({"source": "140550228278544", "target": "140550169705744"}); | ||
| 217 | nodes["140550155118832"] = {"id": "140550155118832", "label": "mm-common@1.0.3", "index": nodeArray.length}; | ||
| 218 | nodeArray.push(nodes["140550155118832"]); | ||
| 219 | links.push({"source": "140550155118832", "target": "140550161303616"}); | ||
| 220 | links.push({"source": "140550155118832", "target": "140550159771184"}); | ||
| 221 | links.push({"source": "140550155118832", "target": "140550459778960"}); | ||
| 222 | links.push({"source": "140550155118832", "target": "140550161304496"}); | ||
| 223 | links.push({"source": "140550155118832", "target": "140550160343392"}); | ||
| 224 | nodes["140550161303616"] = {"id": "140550161303616", "label": "coreutils@9.1", "index": nodeArray.length}; | ||
| 225 | nodeArray.push(nodes["140550161303616"]); | ||
| 226 | nodes["140550161304496"] = {"id": "140550161304496", "label": "sed@4.8", "index": nodeArray.length}; | ||
| 227 | nodeArray.push(nodes["140550161304496"]); | ||
| 228 | nodes["140550168349616"] = {"id": "140550168349616", "label": "xorg-server@21.1.1", "index": nodeArray.length}; | ||
| 229 | nodeArray.push(nodes["140550168349616"]); | ||
| 230 | links.push({"source": "140550168349616", "target": "140550160375408"}); | ||
| 231 | links.push({"source": "140550168349616", "target": "140550459778960"}); | ||
| 232 | links.push({"source": "140550168349616", "target": "140550157923536"}); | ||
| 233 | links.push({"source": "140550168349616", "target": "140550155915264"}); | ||
| 234 | links.push({"source": "140550168349616", "target": "140550168243648"}); | ||
| 235 | links.push({"source": "140550168349616", "target": "140550168689232"}); | ||
| 236 | links.push({"source": "140550168349616", "target": "140550170701248"}); | ||
| 237 | links.push({"source": "140550168349616", "target": "140550168327200"}); | ||
| 238 | links.push({"source": "140550168349616", "target": "140550168348208"}); | ||
| 239 | links.push({"source": "140550168349616", "target": "140550168241888"}); | ||
| 240 | links.push({"source": "140550168349616", "target": "140550168327024"}); | ||
| 241 | links.push({"source": "140550168349616", "target": "140550168326672"}); | ||
| 242 | links.push({"source": "140550168349616", "target": "140550168241536"}); | ||
| 243 | links.push({"source": "140550168349616", "target": "140550168328256"}); | ||
| 244 | links.push({"source": "140550168349616", "target": "140550168241008"}); | ||
| 245 | links.push({"source": "140550168349616", "target": "140550168243472"}); | ||
| 246 | links.push({"source": "140550168349616", "target": "140550168348384"}); | ||
| 247 | links.push({"source": "140550168349616", "target": "140550168327904"}); | ||
| 248 | links.push({"source": "140550168349616", "target": "140550168321472"}); | ||
| 249 | links.push({"source": "140550168349616", "target": "140550168320768"}); | ||
| 250 | links.push({"source": "140550168349616", "target": "140550168317952"}); | ||
| 251 | links.push({"source": "140550168349616", "target": "140550160636496"}); | ||
| 252 | links.push({"source": "140550168349616", "target": "140550168347856"}); | ||
| 253 | links.push({"source": "140550168349616", "target": "140550168347328"}); | ||
| 254 | links.push({"source": "140550168349616", "target": "140550168347152"}); | ||
| 255 | links.push({"source": "140550168349616", "target": "140550168346976"}); | ||
| 256 | links.push({"source": "140550168349616", "target": "140550168346800"}); | ||
| 257 | links.push({"source": "140550168349616", "target": "140550168242944"}); | ||
| 258 | links.push({"source": "140550168349616", "target": "140550168350144"}); | ||
| 259 | links.push({"source": "140550168349616", "target": "140550168604672"}); | ||
| 260 | links.push({"source": "140550168349616", "target": "140550190062336"}); | ||
| 261 | links.push({"source": "140550168349616", "target": "140550168188288"}); | ||
| 262 | nodes["140550157923536"] = {"id": "140550157923536", "label": "eudev@3.2.11", "index": nodeArray.length}; | ||
| 263 | nodeArray.push(nodes["140550157923536"]); | ||
| 264 | nodes["140550168243648"] = {"id": "140550168243648", "label": "libdmx@1.1.4", "index": nodeArray.length}; | ||
| 265 | nodeArray.push(nodes["140550168243648"]); | ||
| 266 | nodes["140550168689232"] = {"id": "140550168689232", "label": "libepoxy@1.5.10", "index": nodeArray.length}; | ||
| 267 | nodeArray.push(nodes["140550168689232"]); | ||
| 268 | nodes["140550170701248"] = {"id": "140550170701248", "label": "libgcrypt@1.10.1", "index": nodeArray.length}; | ||
| 269 | nodeArray.push(nodes["140550170701248"]); | ||
| 270 | nodes["140550168327200"] = {"id": "140550168327200", "label": "libxau@1.0.10", "index": nodeArray.length}; | ||
| 271 | nodeArray.push(nodes["140550168327200"]); | ||
| 272 | nodes["140550168348208"] = {"id": "140550168348208", "label": "libxaw@1.0.14", "index": nodeArray.length}; | ||
| 273 | nodeArray.push(nodes["140550168348208"]); | ||
| 274 | nodes["140550168241888"] = {"id": "140550168241888", "label": "libxdmcp@1.1.3", "index": nodeArray.length}; | ||
| 275 | nodeArray.push(nodes["140550168241888"]); | ||
| 276 | nodes["140550168327024"] = {"id": "140550168327024", "label": "libxfixes@6.0.0", "index": nodeArray.length}; | ||
| 277 | nodeArray.push(nodes["140550168327024"]); | ||
| 278 | nodes["140550168326672"] = {"id": "140550168326672", "label": "libxfont@2.0.4", "index": nodeArray.length}; | ||
| 279 | nodeArray.push(nodes["140550168326672"]); | ||
| 280 | nodes["140550168241536"] = {"id": "140550168241536", "label": "libxkbfile@1.1.0", "index": nodeArray.length}; | ||
| 281 | nodeArray.push(nodes["140550168241536"]); | ||
| 282 | nodes["140550168328256"] = {"id": "140550168328256", "label": "libxrender@0.9.10", "index": nodeArray.length}; | ||
| 283 | nodeArray.push(nodes["140550168328256"]); | ||
| 284 | nodes["140550168241008"] = {"id": "140550168241008", "label": "libxres@1.2.1", "index": nodeArray.length}; | ||
| 285 | nodeArray.push(nodes["140550168241008"]); | ||
| 286 | nodes["140550168243472"] = {"id": "140550168243472", "label": "libxshmfence@1.3", "index": nodeArray.length}; | ||
| 287 | nodeArray.push(nodes["140550168243472"]); | ||
| 288 | nodes["140550168348384"] = {"id": "140550168348384", "label": "libxt@1.2.1", "index": nodeArray.length}; | ||
| 289 | nodeArray.push(nodes["140550168348384"]); | ||
| 290 | nodes["140550168327904"] = {"id": "140550168327904", "label": "libxv@1.0.12", "index": nodeArray.length}; | ||
| 291 | nodeArray.push(nodes["140550168327904"]); | ||
| 292 | nodes["140550168321472"] = {"id": "140550168321472", "label": "xkbcomp@1.4.5", "index": nodeArray.length}; | ||
| 293 | nodeArray.push(nodes["140550168321472"]); | ||
| 294 | nodes["140550168320768"] = {"id": "140550168320768", "label": "xkeyboard-config@2.38", "index": nodeArray.length}; | ||
| 295 | nodeArray.push(nodes["140550168320768"]); | ||
| 296 | nodes["140550168317952"] = {"id": "140550168317952", "label": "xtrans@1.4.0", "index": nodeArray.length}; | ||
| 297 | nodeArray.push(nodes["140550168317952"]); | ||
| 298 | nodes["140550168347856"] = {"id": "140550168347856", "label": "xcb-util@0.4.0", "index": nodeArray.length}; | ||
| 299 | nodeArray.push(nodes["140550168347856"]); | ||
| 300 | nodes["140550168347328"] = {"id": "140550168347328", "label": "xcb-util-image@0.4.0", "index": nodeArray.length}; | ||
| 301 | nodeArray.push(nodes["140550168347328"]); | ||
| 302 | nodes["140550168347152"] = {"id": "140550168347152", "label": "xcb-util-keysyms@0.4.0", "index": nodeArray.length}; | ||
| 303 | nodeArray.push(nodes["140550168347152"]); | ||
| 304 | nodes["140550168346976"] = {"id": "140550168346976", "label": "xcb-util-renderutil@0.3.9", "index": nodeArray.length}; | ||
| 305 | nodeArray.push(nodes["140550168346976"]); | ||
| 306 | nodes["140550168346800"] = {"id": "140550168346800", "label": "xcb-util-wm@0.4.1", "index": nodeArray.length}; | ||
| 307 | nodeArray.push(nodes["140550168346800"]); | ||
| 308 | nodes["140550168242944"] = {"id": "140550168242944", "label": "libpciaccess@0.16", "index": nodeArray.length}; | ||
| 309 | nodeArray.push(nodes["140550168242944"]); | ||
| 310 | nodes["140550168350144"] = {"id": "140550168350144", "label": "libxcvt@0.1.1", "index": nodeArray.length}; | ||
| 311 | nodeArray.push(nodes["140550168350144"]); | ||
| 312 | nodes["140550168604672"] = {"id": "140550168604672", "label": "mesa@23.1.4", "index": nodeArray.length}; | ||
| 313 | nodeArray.push(nodes["140550168604672"]); | ||
| 314 | nodes["140550190062336"] = {"id": "140550190062336", "label": "pixman@0.40.0", "index": nodeArray.length}; | ||
| 315 | nodeArray.push(nodes["140550190062336"]); | ||
| 316 | nodes["140550168188288"] = {"id": "140550168188288", "label": "xorgproto@2022.2", "index": nodeArray.length}; | ||
| 317 | nodeArray.push(nodes["140550168188288"]); | ||
| 318 | nodes["140550228278720"] = {"id": "140550228278720", "label": "pangomm@2.46.2", "index": nodeArray.length}; | ||
| 319 | nodeArray.push(nodes["140550228278720"]); | ||
| 320 | links.push({"source": "140550228278720", "target": "140550155388464"}); | ||
| 321 | links.push({"source": "140550228278720", "target": "140550155464128"}); | ||
| 322 | links.push({"source": "140550228278720", "target": "140550459779840"}); | ||
| 323 | links.push({"source": "140550228278720", "target": "140550155118832"}); | ||
| 324 | links.push({"source": "140550228278720", "target": "140550160707584"}); | ||
| 325 | links.push({"source": "140550228278720", "target": "140550459778960"}); | ||
| 326 | links.push({"source": "140550228278720", "target": "140550160343392"}); | ||
| 327 | links.push({"source": "140550228278720", "target": "140550169780000"}); | ||
| 328 | links.push({"source": "140550228278720", "target": "140550169706096"}); | ||
| 329 | links.push({"source": "140550228278720", "target": "140550155998240"}); | ||
| 330 | links.push({"source": "140550228278720", "target": "140550169637216"}); | ||
| 331 | nodes["140550169706096"] = {"id": "140550169706096", "label": "cairomm@1.14.2", "index": nodeArray.length}; | ||
| 332 | nodeArray.push(nodes["140550169706096"]); | ||
| 333 | nodes["140550155998240"] = {"id": "140550155998240", "label": "glibmm@2.64.5", "index": nodeArray.length}; | ||
| 334 | nodeArray.push(nodes["140550155998240"]); | ||
| 335 | nodes["140550169637216"] = {"id": "140550169637216", "label": "pango@1.50.10", "index": nodeArray.length}; | ||
| 336 | nodeArray.push(nodes["140550169637216"]); | ||
| 337 | nodes["140550169705392"] = {"id": "140550169705392", "label": "atkmm@2.28.1", "index": nodeArray.length}; | ||
| 338 | nodeArray.push(nodes["140550169705392"]); | ||
| 339 | links.push({"source": "140550169705392", "target": "140550155388464"}); | ||
| 340 | links.push({"source": "140550169705392", "target": "140550155464128"}); | ||
| 341 | links.push({"source": "140550169705392", "target": "140550459779840"}); | ||
| 342 | links.push({"source": "140550169705392", "target": "140550155118832"}); | ||
| 343 | links.push({"source": "140550169705392", "target": "140550160707584"}); | ||
| 344 | links.push({"source": "140550169705392", "target": "140550459778960"}); | ||
| 345 | links.push({"source": "140550169705392", "target": "140550160343392"}); | ||
| 346 | links.push({"source": "140550169705392", "target": "140550169780000"}); | ||
| 347 | links.push({"source": "140550169705392", "target": "140550155998240"}); | ||
| 348 | links.push({"source": "140550169705392", "target": "140550169676016"}); | ||
| 349 | nodes["140550169676016"] = {"id": "140550169676016", "label": "at-spi2-core@2.45.90", "index": nodeArray.length}; | ||
| 350 | nodeArray.push(nodes["140550169676016"]); | ||
| 351 | nodes["140550155998592"] = {"id": "140550155998592", "label": "glibmm@2.72.1", "index": nodeArray.length}; | ||
| 352 | nodeArray.push(nodes["140550155998592"]); | ||
| 353 | links.push({"source": "140550155998592", "target": "140550155388464"}); | ||
| 354 | links.push({"source": "140550155998592", "target": "140550155464128"}); | ||
| 355 | links.push({"source": "140550155998592", "target": "140550156000528"}); | ||
| 356 | links.push({"source": "140550155998592", "target": "140550459779840"}); | ||
| 357 | links.push({"source": "140550155998592", "target": "140550155118832"}); | ||
| 358 | links.push({"source": "140550155998592", "target": "140550160707584"}); | ||
| 359 | links.push({"source": "140550155998592", "target": "140550459778960"}); | ||
| 360 | links.push({"source": "140550155998592", "target": "140550169780000"}); | ||
| 361 | links.push({"source": "140550155998592", "target": "140550155998944"}); | ||
| 362 | links.push({"source": "140550155998592", "target": "140550156000528"}); | ||
| 363 | nodes["140550155998944"] = {"id": "140550155998944", "label": "libsigc++@3.0.6", "index": nodeArray.length}; | ||
| 364 | nodeArray.push(nodes["140550155998944"]); | ||
| 365 | nodes["140550169675136"] = {"id": "140550169675136", "label": "gtk+@3.24.37", "index": nodeArray.length}; | ||
| 366 | nodeArray.push(nodes["140550169675136"]); | ||
| 367 | links.push({"source": "140550169675136", "target": "140550159683936"}); | ||
| 368 | links.push({"source": "140550169675136", "target": "140550159773472"}); | ||
| 369 | links.push({"source": "140550169675136", "target": "140550159771184"}); | ||
| 370 | links.push({"source": "140550169675136", "target": "140550156000528"}); | ||
| 371 | links.push({"source": "140550169675136", "target": "140550156000000"}); | ||
| 372 | links.push({"source": "140550169675136", "target": "140550155164064"}); | ||
| 373 | links.push({"source": "140550169675136", "target": "140550459778960"}); | ||
| 374 | links.push({"source": "140550169675136", "target": "140550160375408"}); | ||
| 375 | links.push({"source": "140550169675136", "target": "140550228671584"}); | ||
| 376 | links.push({"source": "140550169675136", "target": "140550168349616"}); | ||
| 377 | links.push({"source": "140550169675136", "target": "140550169780000"}); | ||
| 378 | links.push({"source": "140550169675136", "target": "140550155223392"}); | ||
| 379 | links.push({"source": "140550169675136", "target": "140550170553792"}); | ||
| 380 | links.push({"source": "140550169675136", "target": "140550169730672"}); | ||
| 381 | links.push({"source": "140550169675136", "target": "140550169637744"}); | ||
| 382 | links.push({"source": "140550169675136", "target": "140550308666992"}); | ||
| 383 | links.push({"source": "140550169675136", "target": "140550155226912"}); | ||
| 384 | links.push({"source": "140550169675136", "target": "140550169727504"}); | ||
| 385 | links.push({"source": "140550169675136", "target": "140550155226032"}); | ||
| 386 | links.push({"source": "140550169675136", "target": "140550169676016"}); | ||
| 387 | links.push({"source": "140550169675136", "target": "140550169638272"}); | ||
| 388 | links.push({"source": "140550169675136", "target": "140550458591296"}); | ||
| 389 | links.push({"source": "140550169675136", "target": "140550159983296"}); | ||
| 390 | links.push({"source": "140550169675136", "target": "140550159903136"}); | ||
| 391 | links.push({"source": "140550169675136", "target": "140550155162480"}); | ||
| 392 | links.push({"source": "140550169675136", "target": "140550156000528"}); | ||
| 393 | links.push({"source": "140550169675136", "target": "140550155027664"}); | ||
| 394 | links.push({"source": "140550169675136", "target": "140550168689232"}); | ||
| 395 | links.push({"source": "140550169675136", "target": "140550168348912"}); | ||
| 396 | links.push({"source": "140550169675136", "target": "140550168242064"}); | ||
| 397 | links.push({"source": "140550169675136", "target": "140550168348560"}); | ||
| 398 | links.push({"source": "140550169675136", "target": "140550168328960"}); | ||
| 399 | links.push({"source": "140550169675136", "target": "140550168328784"}); | ||
| 400 | links.push({"source": "140550169675136", "target": "140550168327024"}); | ||
| 401 | links.push({"source": "140550169675136", "target": "140550168326496"}); | ||
| 402 | links.push({"source": "140550169675136", "target": "140550168328608"}); | ||
| 403 | links.push({"source": "140550169675136", "target": "140550190063216"}); | ||
| 404 | links.push({"source": "140550169675136", "target": "140550168326320"}); | ||
| 405 | links.push({"source": "140550169675136", "target": "140550168328256"}); | ||
| 406 | links.push({"source": "140550169675136", "target": "140550168604672"}); | ||
| 407 | links.push({"source": "140550169675136", "target": "140550169637216"}); | ||
| 408 | links.push({"source": "140550169675136", "target": "140550170777488"}); | ||
| 409 | links.push({"source": "140550169675136", "target": "140550170777312"}); | ||
| 410 | nodes["140550159683936"] = {"id": "140550159683936", "label": "docbook-xml@4.3", "index": nodeArray.length}; | ||
| 411 | nodeArray.push(nodes["140550159683936"]); | ||
| 412 | nodes["140550156000000"] = {"id": "140550156000000", "label": "gobject-introspection@1.72.0", "index": nodeArray.length}; | ||
| 413 | nodeArray.push(nodes["140550156000000"]); | ||
| 414 | nodes["140550155164064"] = {"id": "140550155164064", "label": "hicolor-icon-theme@0.17", "index": nodeArray.length}; | ||
| 415 | nodeArray.push(nodes["140550155164064"]); | ||
| 416 | nodes["140550228671584"] = {"id": "140550228671584", "label": "sassc@3.6.2", "index": nodeArray.length}; | ||
| 417 | nodeArray.push(nodes["140550228671584"]); | ||
| 418 | nodes["140550155223392"] = {"id": "140550155223392", "label": "colord-minimal@1.4.6", "index": nodeArray.length}; | ||
| 419 | nodeArray.push(nodes["140550155223392"]); | ||
| 420 | nodes["140550170553792"] = {"id": "140550170553792", "label": "cups@2.4.2", "index": nodeArray.length}; | ||
| 421 | nodeArray.push(nodes["140550170553792"]); | ||
| 422 | nodes["140550169730672"] = {"id": "140550169730672", "label": "graphene@1.10.6", "index": nodeArray.length}; | ||
| 423 | nodeArray.push(nodes["140550169730672"]); | ||
| 424 | nodes["140550169637744"] = {"id": "140550169637744", "label": "harfbuzz@5.3.1", "index": nodeArray.length}; | ||
| 425 | nodeArray.push(nodes["140550169637744"]); | ||
| 426 | nodes["140550308666992"] = {"id": "140550308666992", "label": "iso-codes@4.5.0", "index": nodeArray.length}; | ||
| 427 | nodeArray.push(nodes["140550308666992"]); | ||
| 428 | nodes["140550155226912"] = {"id": "140550155226912", "label": "json-glib-minimal@1.6.2", "index": nodeArray.length}; | ||
| 429 | nodeArray.push(nodes["140550155226912"]); | ||
| 430 | nodes["140550155226032"] = {"id": "140550155226032", "label": "rest@0.8.1", "index": nodeArray.length}; | ||
| 431 | nodeArray.push(nodes["140550155226032"]); | ||
| 432 | nodes["140550169638272"] = {"id": "140550169638272", "label": "cairo@1.16.0", "index": nodeArray.length}; | ||
| 433 | nodeArray.push(nodes["140550169638272"]); | ||
| 434 | nodes["140550458591296"] = {"id": "140550458591296", "label": "fribidi@1.0.12", "index": nodeArray.length}; | ||
| 435 | nodeArray.push(nodes["140550458591296"]); | ||
| 436 | nodes["140550159983296"] = {"id": "140550159983296", "label": "fontconfig-minimal@2.14.0", "index": nodeArray.length}; | ||
| 437 | nodeArray.push(nodes["140550159983296"]); | ||
| 438 | nodes["140550159903136"] = {"id": "140550159903136", "label": "freetype@2.13.0", "index": nodeArray.length}; | ||
| 439 | nodeArray.push(nodes["140550159903136"]); | ||
| 440 | nodes["140550155162480"] = {"id": "140550155162480", "label": "librsvg@2.54.5", "index": nodeArray.length}; | ||
| 441 | nodeArray.push(nodes["140550155162480"]); | ||
| 442 | nodes["140550155027664"] = {"id": "140550155027664", "label": "libcloudproviders-minimal@0.3.1", "index": nodeArray.length}; | ||
| 443 | nodeArray.push(nodes["140550155027664"]); | ||
| 444 | nodes["140550168242064"] = {"id": "140550168242064", "label": "libxcomposite@0.4.5", "index": nodeArray.length}; | ||
| 445 | nodeArray.push(nodes["140550168242064"]); | ||
| 446 | nodes["140550168348560"] = {"id": "140550168348560", "label": "libxcursor@1.2.1", "index": nodeArray.length}; | ||
| 447 | nodeArray.push(nodes["140550168348560"]); | ||
| 448 | nodes["140550168328960"] = {"id": "140550168328960", "label": "libxdamage@1.1.5", "index": nodeArray.length}; | ||
| 449 | nodeArray.push(nodes["140550168328960"]); | ||
| 450 | nodes["140550168328784"] = {"id": "140550168328784", "label": "libxext@1.3.4", "index": nodeArray.length}; | ||
| 451 | nodeArray.push(nodes["140550168328784"]); | ||
| 452 | nodes["140550168326496"] = {"id": "140550168326496", "label": "libxi@1.7.10", "index": nodeArray.length}; | ||
| 453 | nodeArray.push(nodes["140550168326496"]); | ||
| 454 | nodes["140550168328608"] = {"id": "140550168328608", "label": "libxinerama@1.1.4", "index": nodeArray.length}; | ||
| 455 | nodeArray.push(nodes["140550168328608"]); | ||
| 456 | nodes["140550190063216"] = {"id": "140550190063216", "label": "libxkbcommon@1.4.1", "index": nodeArray.length}; | ||
| 457 | nodeArray.push(nodes["140550190063216"]); | ||
| 458 | nodes["140550168326320"] = {"id": "140550168326320", "label": "libxrandr@1.5.2", "index": nodeArray.length}; | ||
| 459 | nodeArray.push(nodes["140550168326320"]); | ||
| 460 | nodes["140550169705744"] = {"id": "140550169705744", "label": "pangomm@2.46.2", "index": nodeArray.length}; | ||
| 461 | nodeArray.push(nodes["140550169705744"]); | ||
| 462 | links.push({"source": "140550169705744", "target": "140550155388464"}); | ||
| 463 | links.push({"source": "140550169705744", "target": "140550155464128"}); | ||
| 464 | links.push({"source": "140550169705744", "target": "140550459779840"}); | ||
| 465 | links.push({"source": "140550169705744", "target": "140550155118832"}); | ||
| 466 | links.push({"source": "140550169705744", "target": "140550160707584"}); | ||
| 467 | links.push({"source": "140550169705744", "target": "140550459778960"}); | ||
| 468 | links.push({"source": "140550169705744", "target": "140550160343392"}); | ||
| 469 | links.push({"source": "140550169705744", "target": "140550169780000"}); | ||
| 470 | links.push({"source": "140550169705744", "target": "140550169706096"}); | ||
| 471 | links.push({"source": "140550169705744", "target": "140550155998240"}); | ||
| 472 | links.push({"source": "140550169705744", "target": "140550169637216"}); | ||
| 473 | nodes["140550155684080"] = {"id": "140550155684080", "label": "date@2.4.1-9a0ee254", "index": nodeArray.length}; | ||
| 474 | nodeArray.push(nodes["140550155684080"]); | ||
| 475 | links.push({"source": "140550155684080", "target": "140550161420464"}); | ||
| 476 | nodes["140550168427440"] = {"id": "140550168427440", "label": "fmt@9.1.0", "index": nodeArray.length}; | ||
| 477 | nodeArray.push(nodes["140550168427440"]); | ||
| 478 | links.push({"source": "140550168427440", "target": "140550160658432"}); | ||
| 479 | nodes["140550169729440"] = {"id": "140550169729440", "label": "gtk-layer-shell@0.6.0", "index": nodeArray.length}; | ||
| 480 | nodeArray.push(nodes["140550169729440"]); | ||
| 481 | links.push({"source": "140550169729440", "target": "140550459778960"}); | ||
| 482 | links.push({"source": "140550169729440", "target": "140550156000000"}); | ||
| 483 | links.push({"source": "140550169729440", "target": "140550170777488"}); | ||
| 484 | links.push({"source": "140550169729440", "target": "140550169675136"}); | ||
| 485 | nodes["140550169705040"] = {"id": "140550169705040", "label": "gtkmm@3.24.6", "index": nodeArray.length}; | ||
| 486 | nodeArray.push(nodes["140550169705040"]); | ||
| 487 | links.push({"source": "140550169705040", "target": "140550155388464"}); | ||
| 488 | links.push({"source": "140550169705040", "target": "140550155464128"}); | ||
| 489 | links.push({"source": "140550169705040", "target": "140550156000528"}); | ||
| 490 | links.push({"source": "140550169705040", "target": "140550459779840"}); | ||
| 491 | links.push({"source": "140550169705040", "target": "140550155118832"}); | ||
| 492 | links.push({"source": "140550169705040", "target": "140550160707584"}); | ||
| 493 | links.push({"source": "140550169705040", "target": "140550459778960"}); | ||
| 494 | links.push({"source": "140550169705040", "target": "140550160343392"}); | ||
| 495 | links.push({"source": "140550169705040", "target": "140550169780000"}); | ||
| 496 | links.push({"source": "140550169705040", "target": "140550168349616"}); | ||
| 497 | links.push({"source": "140550169705040", "target": "140550169705392"}); | ||
| 498 | links.push({"source": "140550169705040", "target": "140550169706096"}); | ||
| 499 | links.push({"source": "140550169705040", "target": "140550155998592"}); | ||
| 500 | links.push({"source": "140550169705040", "target": "140550169675136"}); | ||
| 501 | links.push({"source": "140550169705040", "target": "140550169705744"}); | ||
| 502 | nodes["140550167187056"] = {"id": "140550167187056", "label": "jsoncpp@1.9.5", "index": nodeArray.length}; | ||
| 503 | nodeArray.push(nodes["140550167187056"]); | ||
| 504 | nodes["140550169729616"] = {"id": "140550169729616", "label": "libdbusmenu@16.04.0-496", "index": nodeArray.length}; | ||
| 505 | nodeArray.push(nodes["140550169729616"]); | ||
| 506 | links.push({"source": "140550169729616", "target": "140550160374000"}); | ||
| 507 | links.push({"source": "140550169729616", "target": "140550160372592"}); | ||
| 508 | links.push({"source": "140550169729616", "target": "140550156000528"}); | ||
| 509 | links.push({"source": "140550169729616", "target": "140550156000000"}); | ||
| 510 | links.push({"source": "140550169729616", "target": "140550155143232"}); | ||
| 511 | links.push({"source": "140550169729616", "target": "140550169703280"}); | ||
| 512 | links.push({"source": "140550169729616", "target": "140550155999648"}); | ||
| 513 | links.push({"source": "140550169729616", "target": "140550155226736"}); | ||
| 514 | links.push({"source": "140550169729616", "target": "140550160372416"}); | ||
| 515 | links.push({"source": "140550169729616", "target": "140550169780000"}); | ||
| 516 | links.push({"source": "140550169729616", "target": "140550459778960"}); | ||
| 517 | links.push({"source": "140550169729616", "target": "140550160375408"}); | ||
| 518 | links.push({"source": "140550169729616", "target": "140550161420992"}); | ||
| 519 | links.push({"source": "140550169729616", "target": "140550155187232"}); | ||
| 520 | links.push({"source": "140550169729616", "target": "140550156000528"}); | ||
| 521 | links.push({"source": "140550169729616", "target": "140550169675136"}); | ||
| 522 | links.push({"source": "140550169729616", "target": "140550169675312"}); | ||
| 523 | nodes["140550160374000"] = {"id": "140550160374000", "label": "autoconf@2.69", "index": nodeArray.length}; | ||
| 524 | nodeArray.push(nodes["140550160374000"]); | ||
| 525 | links.push({"source": "140550160374000", "target": "140550160707584"}); | ||
| 526 | links.push({"source": "140550160374000", "target": "140550459779840"}); | ||
| 527 | links.push({"source": "140550160374000", "target": "140550160709520"}); | ||
| 528 | links.push({"source": "140550160374000", "target": "140550459779840"}); | ||
| 529 | links.push({"source": "140550160374000", "target": "140550160707584"}); | ||
| 530 | nodes["140550160372592"] = {"id": "140550160372592", "label": "automake@1.16.5", "index": nodeArray.length}; | ||
| 531 | nodeArray.push(nodes["140550160372592"]); | ||
| 532 | links.push({"source": "140550160372592", "target": "140550160373120"}); | ||
| 533 | links.push({"source": "140550160372592", "target": "140550160707584"}); | ||
| 534 | links.push({"source": "140550160372592", "target": "140550160373120"}); | ||
| 535 | links.push({"source": "140550160372592", "target": "140550160709520"}); | ||
| 536 | links.push({"source": "140550160372592", "target": "140550160707584"}); | ||
| 537 | nodes["140550160373120"] = {"id": "140550160373120", "label": "autoconf-wrapper@2.69", "index": nodeArray.length}; | ||
| 538 | nodeArray.push(nodes["140550160373120"]); | ||
| 539 | nodes["140550155143232"] = {"id": "140550155143232", "label": "gnome-common@3.18.0", "index": nodeArray.length}; | ||
| 540 | nodeArray.push(nodes["140550155143232"]); | ||
| 541 | nodes["140550169703280"] = {"id": "140550169703280", "label": "gtk-doc@1.33.2", "index": nodeArray.length}; | ||
| 542 | nodeArray.push(nodes["140550169703280"]); | ||
| 543 | links.push({"source": "140550169703280", "target": "140550159771184"}); | ||
| 544 | links.push({"source": "140550169703280", "target": "140550156000528"}); | ||
| 545 | links.push({"source": "140550169703280", "target": "140550156000000"}); | ||
| 546 | links.push({"source": "140550169703280", "target": "140550155999472"}); | ||
| 547 | links.push({"source": "140550169703280", "target": "140550160707584"}); | ||
| 548 | links.push({"source": "140550169703280", "target": "140550459778960"}); | ||
| 549 | links.push({"source": "140550169703280", "target": "140550160375408"}); | ||
| 550 | links.push({"source": "140550169703280", "target": "140550160442752"}); | ||
| 551 | links.push({"source": "140550169703280", "target": "140550159772064"}); | ||
| 552 | links.push({"source": "140550169703280", "target": "140550159683936"}); | ||
| 553 | links.push({"source": "140550169703280", "target": "140550159773472"}); | ||
| 554 | links.push({"source": "140550169703280", "target": "140550156000528"}); | ||
| 555 | links.push({"source": "140550169703280", "target": "140550169727504"}); | ||
| 556 | links.push({"source": "140550169703280", "target": "140550169780000"}); | ||
| 557 | links.push({"source": "140550169703280", "target": "140550160343392"}); | ||
| 558 | links.push({"source": "140550169703280", "target": "140550156518608"}); | ||
| 559 | links.push({"source": "140550169703280", "target": "140550169824352"}); | ||
| 560 | links.push({"source": "140550169703280", "target": "140550160285472"}); | ||
| 561 | links.push({"source": "140550169703280", "target": "140550156545296"}); | ||
| 562 | links.push({"source": "140550169703280", "target": "140550168426560"}); | ||
| 563 | links.push({"source": "140550169703280", "target": "140550155265232"}); | ||
| 564 | nodes["140550155999472"] = {"id": "140550155999472", "label": "itstool@2.0.7", "index": nodeArray.length}; | ||
| 565 | nodeArray.push(nodes["140550155999472"]); | ||
| 566 | nodes["140550160442752"] = {"id": "140550160442752", "label": "bc@1.07.1", "index": nodeArray.length}; | ||
| 567 | nodeArray.push(nodes["140550160442752"]); | ||
| 568 | nodes["140550159772064"] = {"id": "140550159772064", "label": "dblatex@0.3.12", "index": nodeArray.length}; | ||
| 569 | nodeArray.push(nodes["140550159772064"]); | ||
| 570 | nodes["140550156518608"] = {"id": "140550156518608", "label": "python-anytree@2.8.0", "index": nodeArray.length}; | ||
| 571 | nodeArray.push(nodes["140550156518608"]); | ||
| 572 | nodes["140550169824352"] = {"id": "140550169824352", "label": "python-lxml@4.9.1", "index": nodeArray.length}; | ||
| 573 | nodeArray.push(nodes["140550169824352"]); | ||
| 574 | nodes["140550160285472"] = {"id": "140550160285472", "label": "python-parameterized@0.8.1", "index": nodeArray.length}; | ||
| 575 | nodeArray.push(nodes["140550160285472"]); | ||
| 576 | nodes["140550156545296"] = {"id": "140550156545296", "label": "python-pygments@2.12.0", "index": nodeArray.length}; | ||
| 577 | nodeArray.push(nodes["140550156545296"]); | ||
| 578 | nodes["140550168426560"] = {"id": "140550168426560", "label": "source-highlight@3.1.9", "index": nodeArray.length}; | ||
| 579 | nodeArray.push(nodes["140550168426560"]); | ||
| 580 | nodes["140550155999648"] = {"id": "140550155999648", "label": "intltool@0.51.0", "index": nodeArray.length}; | ||
| 581 | nodeArray.push(nodes["140550155999648"]); | ||
| 582 | links.push({"source": "140550155999648", "target": "140550306205472"}); | ||
| 583 | links.push({"source": "140550155999648", "target": "140550159771184"}); | ||
| 584 | links.push({"source": "140550155999648", "target": "140550169779120"}); | ||
| 585 | links.push({"source": "140550155999648", "target": "140550160707584"}); | ||
| 586 | nodes["140550169779120"] = {"id": "140550169779120", "label": "perl-xml-parser@2.46", "index": nodeArray.length}; | ||
| 587 | nodeArray.push(nodes["140550169779120"]); | ||
| 588 | nodes["140550155226736"] = {"id": "140550155226736", "label": "json-glib@1.6.2", "index": nodeArray.length}; | ||
| 589 | nodeArray.push(nodes["140550155226736"]); | ||
| 590 | links.push({"source": "140550155226736", "target": "140550159683936"}); | ||
| 591 | links.push({"source": "140550155226736", "target": "140550159773472"}); | ||
| 592 | links.push({"source": "140550155226736", "target": "140550156000000"}); | ||
| 593 | links.push({"source": "140550155226736", "target": "140550169703280"}); | ||
| 594 | links.push({"source": "140550155226736", "target": "140550169780000"}); | ||
| 595 | links.push({"source": "140550155226736", "target": "140550159771184"}); | ||
| 596 | links.push({"source": "140550155226736", "target": "140550156000528"}); | ||
| 597 | links.push({"source": "140550155226736", "target": "140550459778960"}); | ||
| 598 | links.push({"source": "140550155226736", "target": "140550160709520"}); | ||
| 599 | links.push({"source": "140550155226736", "target": "140550156000528"}); | ||
| 600 | nodes["140550160372416"] = {"id": "140550160372416", "label": "libtool@2.4.7", "index": nodeArray.length}; | ||
| 601 | nodeArray.push(nodes["140550160372416"]); | ||
| 602 | links.push({"source": "140550160372416", "target": "140550459779840"}); | ||
| 603 | links.push({"source": "140550160372416", "target": "140550160707584"}); | ||
| 604 | links.push({"source": "140550160372416", "target": "140550160372064"}); | ||
| 605 | links.push({"source": "140550160372416", "target": "140550159904192"}); | ||
| 606 | links.push({"source": "140550160372416", "target": "140550160372592"}); | ||
| 607 | links.push({"source": "140550160372416", "target": "140550160373120"}); | ||
| 608 | links.push({"source": "140550160372416", "target": "140550459779840"}); | ||
| 609 | nodes["140550160372064"] = {"id": "140550160372064", "label": "libltdl@2.4.7", "index": nodeArray.length}; | ||
| 610 | nodeArray.push(nodes["140550160372064"]); | ||
| 611 | nodes["140550159904192"] = {"id": "140550159904192", "label": "help2man@1.49.2", "index": nodeArray.length}; | ||
| 612 | nodeArray.push(nodes["140550159904192"]); | ||
| 613 | nodes["140550161420992"] = {"id": "140550161420992", "label": "which@2.21", "index": nodeArray.length}; | ||
| 614 | nodeArray.push(nodes["140550161420992"]); | ||
| 615 | nodes["140550155187232"] = {"id": "140550155187232", "label": "vala@0.56.3", "index": nodeArray.length}; | ||
| 616 | nodeArray.push(nodes["140550155187232"]); | ||
| 617 | links.push({"source": "140550155187232", "target": "140550159903488"}); | ||
| 618 | links.push({"source": "140550155187232", "target": "140550155915264"}); | ||
| 619 | links.push({"source": "140550155187232", "target": "140550159684112"}); | ||
| 620 | links.push({"source": "140550155187232", "target": "140550159773472"}); | ||
| 621 | links.push({"source": "140550155187232", "target": "140550159903664"}); | ||
| 622 | links.push({"source": "140550155187232", "target": "140550156000000"}); | ||
| 623 | links.push({"source": "140550155187232", "target": "140550159904192"}); | ||
| 624 | links.push({"source": "140550155187232", "target": "140550160707584"}); | ||
| 625 | links.push({"source": "140550155187232", "target": "140550459778960"}); | ||
| 626 | links.push({"source": "140550155187232", "target": "140550169780000"}); | ||
| 627 | links.push({"source": "140550155187232", "target": "140550156000528"}); | ||
| 628 | links.push({"source": "140550155187232", "target": "140550155388464"}); | ||
| 629 | nodes["140550159903488"] = {"id": "140550159903488", "label": "bison@3.8.2", "index": nodeArray.length}; | ||
| 630 | nodeArray.push(nodes["140550159903488"]); | ||
| 631 | nodes["140550159903664"] = {"id": "140550159903664", "label": "flex@2.6.4", "index": nodeArray.length}; | ||
| 632 | nodeArray.push(nodes["140550159903664"]); | ||
| 633 | nodes["140550169675312"] = {"id": "140550169675312", "label": "gtk+@2.24.33", "index": nodeArray.length}; | ||
| 634 | nodeArray.push(nodes["140550169675312"]); | ||
| 635 | links.push({"source": "140550169675312", "target": "140550159771184"}); | ||
| 636 | links.push({"source": "140550169675312", "target": "140550156000528"}); | ||
| 637 | links.push({"source": "140550169675312", "target": "140550156000000"}); | ||
| 638 | links.push({"source": "140550169675312", "target": "140550155999648"}); | ||
| 639 | links.push({"source": "140550169675312", "target": "140550160707584"}); | ||
| 640 | links.push({"source": "140550169675312", "target": "140550459778960"}); | ||
| 641 | links.push({"source": "140550169675312", "target": "140550160375408"}); | ||
| 642 | links.push({"source": "140550169675312", "target": "140550168349616"}); | ||
| 643 | links.push({"source": "140550169675312", "target": "140550170553792"}); | ||
| 644 | links.push({"source": "140550169675312", "target": "140550168348912"}); | ||
| 645 | links.push({"source": "140550169675312", "target": "140550168242064"}); | ||
| 646 | links.push({"source": "140550169675312", "target": "140550168348560"}); | ||
| 647 | links.push({"source": "140550169675312", "target": "140550168328784"}); | ||
| 648 | links.push({"source": "140550169675312", "target": "140550168328960"}); | ||
| 649 | links.push({"source": "140550169675312", "target": "140550168326496"}); | ||
| 650 | links.push({"source": "140550169675312", "target": "140550168328608"}); | ||
| 651 | links.push({"source": "140550169675312", "target": "140550190063216"}); | ||
| 652 | links.push({"source": "140550169675312", "target": "140550168326320"}); | ||
| 653 | links.push({"source": "140550169675312", "target": "140550168328256"}); | ||
| 654 | links.push({"source": "140550169675312", "target": "140550168243472"}); | ||
| 655 | links.push({"source": "140550169675312", "target": "140550169676016"}); | ||
| 656 | links.push({"source": "140550169675312", "target": "140550169638272"}); | ||
| 657 | links.push({"source": "140550169675312", "target": "140550156000528"}); | ||
| 658 | links.push({"source": "140550169675312", "target": "140550155162480"}); | ||
| 659 | links.push({"source": "140550169675312", "target": "140550169637216"}); | ||
| 660 | nodes["140550168275888"] = {"id": "140550168275888", "label": "libevdev@1.11.0", "index": nodeArray.length}; | ||
| 661 | nodeArray.push(nodes["140550168275888"]); | ||
| 662 | links.push({"source": "140550168275888", "target": "140550160343392"}); | ||
| 663 | nodes["140550170779072"] = {"id": "140550170779072", "label": "libinput-minimal@1.22.1", "index": nodeArray.length}; | ||
| 664 | nodeArray.push(nodes["140550170779072"]); | ||
| 665 | links.push({"source": "140550170779072", "target": "140550160180080"}); | ||
| 666 | links.push({"source": "140550170779072", "target": "140550459778960"}); | ||
| 667 | links.push({"source": "140550170779072", "target": "140550168275888"}); | ||
| 668 | links.push({"source": "140550170779072", "target": "140550190061984"}); | ||
| 669 | links.push({"source": "140550170779072", "target": "140550157923536"}); | ||
| 670 | nodes["140550160180080"] = {"id": "140550160180080", "label": "check@0.15.2", "index": nodeArray.length}; | ||
| 671 | nodeArray.push(nodes["140550160180080"]); | ||
| 672 | nodes["140550190061984"] = {"id": "140550190061984", "label": "mtdev@1.1.6", "index": nodeArray.length}; | ||
| 673 | nodeArray.push(nodes["140550190061984"]); | ||
| 674 | nodes["140550224334448"] = {"id": "140550224334448", "label": "libmpdclient@2.20", "index": nodeArray.length}; | ||
| 675 | nodeArray.push(nodes["140550224334448"]); | ||
| 676 | links.push({"source": "140550224334448", "target": "140550459778960"}); | ||
| 677 | links.push({"source": "140550224334448", "target": "140550155464128"}); | ||
| 678 | links.push({"source": "140550224334448", "target": "140550160180080"}); | ||
| 679 | nodes["140550157898960"] = {"id": "140550157898960", "label": "libnl@3.5.0", "index": nodeArray.length}; | ||
| 680 | nodeArray.push(nodes["140550157898960"]); | ||
| 681 | links.push({"source": "140550157898960", "target": "140550159903488"}); | ||
| 682 | links.push({"source": "140550157898960", "target": "140550159903664"}); | ||
| 683 | links.push({"source": "140550157898960", "target": "140550459778960"}); | ||
| 684 | links.push({"source": "140550157898960", "target": "140550159586864"}); | ||
| 685 | nodes["140550159586864"] = {"id": "140550159586864", "label": "swig@4.0.2", "index": nodeArray.length}; | ||
| 686 | nodeArray.push(nodes["140550159586864"]); | ||
| 687 | links.push({"source": "140550159586864", "target": "140550159588448"}); | ||
| 688 | links.push({"source": "140550159586864", "target": "140550458590240"}); | ||
| 689 | links.push({"source": "140550159586864", "target": "140550157411184"}); | ||
| 690 | links.push({"source": "140550159586864", "target": "140550160707584"}); | ||
| 691 | links.push({"source": "140550159586864", "target": "140550458590240"}); | ||
| 692 | nodes["140550159588448"] = {"id": "140550159588448", "label": "boost@1.80.0", "index": nodeArray.length}; | ||
| 693 | nodeArray.push(nodes["140550159588448"]); | ||
| 694 | nodes["140550157411184"] = {"id": "140550157411184", "label": "guile@3.0.9", "index": nodeArray.length}; | ||
| 695 | nodeArray.push(nodes["140550157411184"]); | ||
| 696 | nodes["140550158020608"] = {"id": "140550158020608", "label": "pipewire@0.3.77", "index": nodeArray.length}; | ||
| 697 | nodeArray.push(nodes["140550158020608"]); | ||
| 698 | links.push({"source": "140550158020608", "target": "140550156000528"}); | ||
| 699 | links.push({"source": "140550158020608", "target": "140550459778960"}); | ||
| 700 | links.push({"source": "140550158020608", "target": "140550156517728"}); | ||
| 701 | links.push({"source": "140550158020608", "target": "140550157900896"}); | ||
| 702 | links.push({"source": "140550158020608", "target": "140550156024224"}); | ||
| 703 | links.push({"source": "140550158020608", "target": "140550157965904"}); | ||
| 704 | links.push({"source": "140550158020608", "target": "140550155915264"}); | ||
| 705 | links.push({"source": "140550158020608", "target": "140550157923536"}); | ||
| 706 | links.push({"source": "140550158020608", "target": "140550190571696"}); | ||
| 707 | links.push({"source": "140550158020608", "target": "140550168718432"}); | ||
| 708 | links.push({"source": "140550158020608", "target": "140550168718608"}); | ||
| 709 | links.push({"source": "140550158020608", "target": "140550154904256"}); | ||
| 710 | links.push({"source": "140550158020608", "target": "140550154965872"}); | ||
| 711 | links.push({"source": "140550158020608", "target": "140550168729136"}); | ||
| 712 | links.push({"source": "140550158020608", "target": "140550154980800"}); | ||
| 713 | links.push({"source": "140550158020608", "target": "140550154980624"}); | ||
| 714 | links.push({"source": "140550158020608", "target": "140550225229888"}); | ||
| 715 | links.push({"source": "140550158020608", "target": "140550190712720"}); | ||
| 716 | links.push({"source": "140550158020608", "target": "140550167241408"}); | ||
| 717 | links.push({"source": "140550158020608", "target": "140550190572048"}); | ||
| 718 | links.push({"source": "140550158020608", "target": "140550225229536"}); | ||
| 719 | links.push({"source": "140550158020608", "target": "140550458590944"}); | ||
| 720 | links.push({"source": "140550158020608", "target": "140550157966080"}); | ||
| 721 | links.push({"source": "140550158020608", "target": "140550227542720"}); | ||
| 722 | links.push({"source": "140550158020608", "target": "140550227542544"}); | ||
| 723 | links.push({"source": "140550158020608", "target": "140550154790624"}); | ||
| 724 | nodes["140550156517728"] = {"id": "140550156517728", "label": "python-docutils@0.19", "index": nodeArray.length}; | ||
| 725 | nodeArray.push(nodes["140550156517728"]); | ||
| 726 | nodes["140550157900896"] = {"id": "140550157900896", "label": "alsa-lib@1.2.4", "index": nodeArray.length}; | ||
| 727 | nodeArray.push(nodes["140550157900896"]); | ||
| 728 | links.push({"source": "140550157900896", "target": "140550157901248"}); | ||
| 729 | links.push({"source": "140550157900896", "target": "140550157901072"}); | ||
| 730 | nodes["140550157901248"] = {"id": "140550157901248", "label": "alsa-ucm-conf@1.2.4", "index": nodeArray.length}; | ||
| 731 | nodeArray.push(nodes["140550157901248"]); | ||
| 732 | nodes["140550157901072"] = {"id": "140550157901072", "label": "alsa-topology-conf@1.2.4", "index": nodeArray.length}; | ||
| 733 | nodeArray.push(nodes["140550157901072"]); | ||
| 734 | nodes["140550156024224"] = {"id": "140550156024224", "label": "avahi@0.8", "index": nodeArray.length}; | ||
| 735 | nodeArray.push(nodes["140550156024224"]); | ||
| 736 | links.push({"source": "140550156024224", "target": "140550159771184"}); | ||
| 737 | links.push({"source": "140550156024224", "target": "140550156000528"}); | ||
| 738 | links.push({"source": "140550156024224", "target": "140550459778960"}); | ||
| 739 | links.push({"source": "140550156024224", "target": "140550160709520"}); | ||
| 740 | links.push({"source": "140550156024224", "target": "140550155915264"}); | ||
| 741 | links.push({"source": "140550156024224", "target": "140550169727856"}); | ||
| 742 | links.push({"source": "140550156024224", "target": "140550459779136"}); | ||
| 743 | links.push({"source": "140550156024224", "target": "140550156000528"}); | ||
| 744 | links.push({"source": "140550156024224", "target": "140550157899312"}); | ||
| 745 | links.push({"source": "140550156024224", "target": "140550156024400"}); | ||
| 746 | links.push({"source": "140550156024224", "target": "140550169896672"}); | ||
| 747 | nodes["140550157899312"] = {"id": "140550157899312", "label": "libcap@2.64", "index": nodeArray.length}; | ||
| 748 | nodeArray.push(nodes["140550157899312"]); | ||
| 749 | nodes["140550156024400"] = {"id": "140550156024400", "label": "libdaemon@0.14", "index": nodeArray.length}; | ||
| 750 | nodeArray.push(nodes["140550156024400"]); | ||
| 751 | nodes["140550169896672"] = {"id": "140550169896672", "label": "libevent@2.1.12", "index": nodeArray.length}; | ||
| 752 | nodeArray.push(nodes["140550169896672"]); | ||
| 753 | nodes["140550157965904"] = {"id": "140550157965904", "label": "bluez@5.66", "index": nodeArray.length}; | ||
| 754 | nodeArray.push(nodes["140550157965904"]); | ||
| 755 | links.push({"source": "140550157965904", "target": "140550159771184"}); | ||
| 756 | links.push({"source": "140550157965904", "target": "140550459778960"}); | ||
| 757 | links.push({"source": "140550157965904", "target": "140550156517728"}); | ||
| 758 | links.push({"source": "140550157965904", "target": "140550156000528"}); | ||
| 759 | links.push({"source": "140550157965904", "target": "140550155915264"}); | ||
| 760 | links.push({"source": "140550157965904", "target": "140550157923536"}); | ||
| 761 | links.push({"source": "140550157965904", "target": "140550155683904"}); | ||
| 762 | links.push({"source": "140550157965904", "target": "140550458590944"}); | ||
| 763 | nodes["140550155683904"] = {"id": "140550155683904", "label": "libical@3.0.16", "index": nodeArray.length}; | ||
| 764 | nodeArray.push(nodes["140550155683904"]); | ||
| 765 | nodes["140550190571696"] = {"id": "140550190571696", "label": "ffmpeg@6.0", "index": nodeArray.length}; | ||
| 766 | nodeArray.push(nodes["140550190571696"]); | ||
| 767 | links.push({"source": "140550190571696", "target": "140550160442752"}); | ||
| 768 | links.push({"source": "140550190571696", "target": "140550160707584"}); | ||
| 769 | links.push({"source": "140550190571696", "target": "140550459778960"}); | ||
| 770 | links.push({"source": "140550190571696", "target": "140550159770304"}); | ||
| 771 | links.push({"source": "140550190571696", "target": "140550190497392"}); | ||
| 772 | links.push({"source": "140550190571696", "target": "140550160606064"}); | ||
| 773 | links.push({"source": "140550190571696", "target": "140550190659648"}); | ||
| 774 | links.push({"source": "140550190571696", "target": "140550190661056"}); | ||
| 775 | links.push({"source": "140550190571696", "target": "140550159983296"}); | ||
| 776 | links.push({"source": "140550190571696", "target": "140550159903136"}); | ||
| 777 | links.push({"source": "140550190571696", "target": "140550190638112"}); | ||
| 778 | links.push({"source": "140550190571696", "target": "140550167242464"}); | ||
| 779 | links.push({"source": "140550190571696", "target": "140550190496336"}); | ||
| 780 | links.push({"source": "140550190571696", "target": "140550154903552"}); | ||
| 781 | links.push({"source": "140550190571696", "target": "140550190714480"}); | ||
| 782 | links.push({"source": "140550190571696", "target": "140550190574336"}); | ||
| 783 | links.push({"source": "140550190571696", "target": "140550190573104"}); | ||
| 784 | links.push({"source": "140550190571696", "target": "140550190588256"}); | ||
| 785 | links.push({"source": "140550190571696", "target": "140550190572928"}); | ||
| 786 | links.push({"source": "140550190571696", "target": "140550154994896"}); | ||
| 787 | links.push({"source": "140550190571696", "target": "140550190062160"}); | ||
| 788 | links.push({"source": "140550190571696", "target": "140550190497568"}); | ||
| 789 | links.push({"source": "140550190571696", "target": "140550190572048"}); | ||
| 790 | links.push({"source": "140550190571696", "target": "140550190609440"}); | ||
| 791 | links.push({"source": "140550190571696", "target": "140550225227776"}); | ||
| 792 | links.push({"source": "140550190571696", "target": "140550190589664"}); | ||
| 793 | links.push({"source": "140550190571696", "target": "140550157635584"}); | ||
| 794 | links.push({"source": "140550190571696", "target": "140550168348912"}); | ||
| 795 | links.push({"source": "140550190571696", "target": "140550190573984"}); | ||
| 796 | links.push({"source": "140550190571696", "target": "140550168604672"}); | ||
| 797 | links.push({"source": "140550190571696", "target": "140550154920816"}); | ||
| 798 | links.push({"source": "140550190571696", "target": "140550225229536"}); | ||
| 799 | links.push({"source": "140550190571696", "target": "140550227396496"}); | ||
| 800 | links.push({"source": "140550190571696", "target": "140550154932400"}); | ||
| 801 | links.push({"source": "140550190571696", "target": "140550190497392"}); | ||
| 802 | links.push({"source": "140550190571696", "target": "140550168728256"}); | ||
| 803 | links.push({"source": "140550190571696", "target": "140550154932224"}); | ||
| 804 | links.push({"source": "140550190571696", "target": "140550190637232"}); | ||
| 805 | links.push({"source": "140550190571696", "target": "140550190573280"}); | ||
| 806 | links.push({"source": "140550190571696", "target": "140550190611376"}); | ||
| 807 | links.push({"source": "140550190571696", "target": "140550160636496"}); | ||
| 808 | nodes["140550159770304"] = {"id": "140550159770304", "label": "texinfo@6.8", "index": nodeArray.length}; | ||
| 809 | nodeArray.push(nodes["140550159770304"]); | ||
| 810 | nodes["140550190497392"] = {"id": "140550190497392", "label": "speex@1.2.1", "index": nodeArray.length}; | ||
| 811 | nodeArray.push(nodes["140550190497392"]); | ||
| 812 | nodes["140550160606064"] = {"id": "140550160606064", "label": "yasm@1.3.0", "index": nodeArray.length}; | ||
| 813 | nodeArray.push(nodes["140550160606064"]); | ||
| 814 | nodes["140550190659648"] = {"id": "140550190659648", "label": "rav1e@0.6.3", "index": nodeArray.length}; | ||
| 815 | nodeArray.push(nodes["140550190659648"]); | ||
| 816 | nodes["140550190661056"] = {"id": "140550190661056", "label": "dav1d@1.0.0", "index": nodeArray.length}; | ||
| 817 | nodeArray.push(nodes["140550190661056"]); | ||
| 818 | nodes["140550190638112"] = {"id": "140550190638112", "label": "frei0r-plugins@1.7.0", "index": nodeArray.length}; | ||
| 819 | nodeArray.push(nodes["140550190638112"]); | ||
| 820 | nodes["140550167242464"] = {"id": "140550167242464", "label": "gnutls@3.7.7", "index": nodeArray.length}; | ||
| 821 | nodeArray.push(nodes["140550167242464"]); | ||
| 822 | nodes["140550190496336"] = {"id": "140550190496336", "label": "opus@1.3.1", "index": nodeArray.length}; | ||
| 823 | nodeArray.push(nodes["140550190496336"]); | ||
| 824 | nodes["140550154903552"] = {"id": "140550154903552", "label": "ladspa@1.13", "index": nodeArray.length}; | ||
| 825 | nodeArray.push(nodes["140550154903552"]); | ||
| 826 | nodes["140550190714480"] = {"id": "140550190714480", "label": "lame@3.100", "index": nodeArray.length}; | ||
| 827 | nodeArray.push(nodes["140550190714480"]); | ||
| 828 | nodes["140550190574336"] = {"id": "140550190574336", "label": "libaom@3.5.0", "index": nodeArray.length}; | ||
| 829 | nodeArray.push(nodes["140550190574336"]); | ||
| 830 | nodes["140550190573104"] = {"id": "140550190573104", "label": "libass@0.15.1", "index": nodeArray.length}; | ||
| 831 | nodeArray.push(nodes["140550190573104"]); | ||
| 832 | nodes["140550190588256"] = {"id": "140550190588256", "label": "libbluray@1.0.2", "index": nodeArray.length}; | ||
| 833 | nodeArray.push(nodes["140550190588256"]); | ||
| 834 | nodes["140550190572928"] = {"id": "140550190572928", "label": "libcaca@0.99.beta19", "index": nodeArray.length}; | ||
| 835 | nodeArray.push(nodes["140550190572928"]); | ||
| 836 | nodes["140550154994896"] = {"id": "140550154994896", "label": "libcdio-paranoia@10.2+2.0.1", "index": nodeArray.length}; | ||
| 837 | nodeArray.push(nodes["140550154994896"]); | ||
| 838 | nodes["140550190062160"] = {"id": "140550190062160", "label": "libdrm@2.4.114", "index": nodeArray.length}; | ||
| 839 | nodeArray.push(nodes["140550190062160"]); | ||
| 840 | nodes["140550190497568"] = {"id": "140550190497568", "label": "libtheora@1.1.1", "index": nodeArray.length}; | ||
| 841 | nodeArray.push(nodes["140550190497568"]); | ||
| 842 | nodes["140550190572048"] = {"id": "140550190572048", "label": "libva@2.19.0", "index": nodeArray.length}; | ||
| 843 | nodeArray.push(nodes["140550190572048"]); | ||
| 844 | nodes["140550190609440"] = {"id": "140550190609440", "label": "libvdpau@1.5", "index": nodeArray.length}; | ||
| 845 | nodeArray.push(nodes["140550190609440"]); | ||
| 846 | nodes["140550225227776"] = {"id": "140550225227776", "label": "libvorbis@1.3.7", "index": nodeArray.length}; | ||
| 847 | nodeArray.push(nodes["140550225227776"]); | ||
| 848 | nodes["140550190589664"] = {"id": "140550190589664", "label": "libvpx@1.12.0", "index": nodeArray.length}; | ||
| 849 | nodeArray.push(nodes["140550190589664"]); | ||
| 850 | nodes["140550157635584"] = {"id": "140550157635584", "label": "libwebp@1.2.4", "index": nodeArray.length}; | ||
| 851 | nodeArray.push(nodes["140550157635584"]); | ||
| 852 | nodes["140550190573984"] = {"id": "140550190573984", "label": "libx264@164-0.b093bbe", "index": nodeArray.length}; | ||
| 853 | nodeArray.push(nodes["140550190573984"]); | ||
| 854 | nodes["140550154920816"] = {"id": "140550154920816", "label": "openal@1.22.2", "index": nodeArray.length}; | ||
| 855 | nodeArray.push(nodes["140550154920816"]); | ||
| 856 | nodes["140550225229536"] = {"id": "140550225229536", "label": "pulseaudio@16.1", "index": nodeArray.length}; | ||
| 857 | nodeArray.push(nodes["140550225229536"]); | ||
| 858 | nodes["140550227396496"] = {"id": "140550227396496", "label": "sdl2@2.26.2", "index": nodeArray.length}; | ||
| 859 | nodeArray.push(nodes["140550227396496"]); | ||
| 860 | nodes["140550154932400"] = {"id": "140550154932400", "label": "soxr@0.1.3", "index": nodeArray.length}; | ||
| 861 | nodeArray.push(nodes["140550154932400"]); | ||
| 862 | nodes["140550168728256"] = {"id": "140550168728256", "label": "srt@1.4.4", "index": nodeArray.length}; | ||
| 863 | nodeArray.push(nodes["140550168728256"]); | ||
| 864 | nodes["140550154932224"] = {"id": "140550154932224", "label": "twolame@0.4.0", "index": nodeArray.length}; | ||
| 865 | nodeArray.push(nodes["140550154932224"]); | ||
| 866 | nodes["140550190637232"] = {"id": "140550190637232", "label": "vidstab@1.1.0-0.aeabc8d", "index": nodeArray.length}; | ||
| 867 | nodeArray.push(nodes["140550190637232"]); | ||
| 868 | nodes["140550190573280"] = {"id": "140550190573280", "label": "x265@3.5", "index": nodeArray.length}; | ||
| 869 | nodeArray.push(nodes["140550190573280"]); | ||
| 870 | nodes["140550190611376"] = {"id": "140550190611376", "label": "xvid@1.3.7", "index": nodeArray.length}; | ||
| 871 | nodeArray.push(nodes["140550190611376"]); | ||
| 872 | nodes["140550168718432"] = {"id": "140550168718432", "label": "gst-plugins-base@1.22.2", "index": nodeArray.length}; | ||
| 873 | nodeArray.push(nodes["140550168718432"]); | ||
| 874 | links.push({"source": "140550168718432", "target": "140550459778960"}); | ||
| 875 | links.push({"source": "140550168718432", "target": "140550156000528"}); | ||
| 876 | links.push({"source": "140550168718432", "target": "140550156000000"}); | ||
| 877 | links.push({"source": "140550168718432", "target": "140550160375408"}); | ||
| 878 | links.push({"source": "140550168718432", "target": "140550159771184"}); | ||
| 879 | links.push({"source": "140550168718432", "target": "140550168349616"}); | ||
| 880 | links.push({"source": "140550168718432", "target": "140550157900896"}); | ||
| 881 | links.push({"source": "140550168718432", "target": "140550154994544"}); | ||
| 882 | links.push({"source": "140550168718432", "target": "140550169730672"}); | ||
| 883 | links.push({"source": "140550168718432", "target": "140550308666992"}); | ||
| 884 | links.push({"source": "140550168718432", "target": "140550157658000"}); | ||
| 885 | links.push({"source": "140550168718432", "target": "140550225227952"}); | ||
| 886 | links.push({"source": "140550168718432", "target": "140550157546176"}); | ||
| 887 | links.push({"source": "140550168718432", "target": "140550190497568"}); | ||
| 888 | links.push({"source": "140550168718432", "target": "140550168686768"}); | ||
| 889 | links.push({"source": "140550168718432", "target": "140550225227776"}); | ||
| 890 | links.push({"source": "140550168718432", "target": "140550168348912"}); | ||
| 891 | links.push({"source": "140550168718432", "target": "140550168328784"}); | ||
| 892 | links.push({"source": "140550168718432", "target": "140550168327904"}); | ||
| 893 | links.push({"source": "140550168718432", "target": "140550168604672"}); | ||
| 894 | links.push({"source": "140550168718432", "target": "140550190496336"}); | ||
| 895 | links.push({"source": "140550168718432", "target": "140550169637216"}); | ||
| 896 | links.push({"source": "140550168718432", "target": "140550170777312"}); | ||
| 897 | links.push({"source": "140550168718432", "target": "140550160636496"}); | ||
| 898 | links.push({"source": "140550168718432", "target": "140550156000528"}); | ||
| 899 | links.push({"source": "140550168718432", "target": "140550168718608"}); | ||
| 900 | links.push({"source": "140550168718432", "target": "140550155266992"}); | ||
| 901 | links.push({"source": "140550168718432", "target": "140550170777488"}); | ||
| 902 | links.push({"source": "140550168718432", "target": "140550168718960"}); | ||
| 903 | nodes["140550154994544"] = {"id": "140550154994544", "label": "cdparanoia@10.2", "index": nodeArray.length}; | ||
| 904 | nodeArray.push(nodes["140550154994544"]); | ||
| 905 | nodes["140550157658000"] = {"id": "140550157658000", "label": "libjpeg-turbo@2.1.4", "index": nodeArray.length}; | ||
| 906 | nodeArray.push(nodes["140550157658000"]); | ||
| 907 | nodes["140550225227952"] = {"id": "140550225227952", "label": "libogg@1.3.5", "index": nodeArray.length}; | ||
| 908 | nodeArray.push(nodes["140550225227952"]); | ||
| 909 | nodes["140550157546176"] = {"id": "140550157546176", "label": "libpng@1.6.37", "index": nodeArray.length}; | ||
| 910 | nodeArray.push(nodes["140550157546176"]); | ||
| 911 | nodes["140550168686768"] = {"id": "140550168686768", "label": "libvisual@0.4.0", "index": nodeArray.length}; | ||
| 912 | nodeArray.push(nodes["140550168686768"]); | ||
| 913 | nodes["140550168718608"] = {"id": "140550168718608", "label": "gstreamer@1.22.2", "index": nodeArray.length}; | ||
| 914 | nodeArray.push(nodes["140550168718608"]); | ||
| 915 | nodes["140550155266992"] = {"id": "140550155266992", "label": "libgudev@236", "index": nodeArray.length}; | ||
| 916 | nodeArray.push(nodes["140550155266992"]); | ||
| 917 | nodes["140550168718960"] = {"id": "140550168718960", "label": "orc@0.4.32", "index": nodeArray.length}; | ||
| 918 | nodeArray.push(nodes["140550168718960"]); | ||
| 919 | nodes["140550154904256"] = {"id": "140550154904256", "label": "jack2@1.9.21", "index": nodeArray.length}; | ||
| 920 | nodeArray.push(nodes["140550154904256"]); | ||
| 921 | links.push({"source": "140550154904256", "target": "140550459778960"}); | ||
| 922 | links.push({"source": "140550154904256", "target": "140550157900896"}); | ||
| 923 | links.push({"source": "140550154904256", "target": "140550155915264"}); | ||
| 924 | links.push({"source": "140550154904256", "target": "140550169727856"}); | ||
| 925 | links.push({"source": "140550154904256", "target": "140550225229712"}); | ||
| 926 | links.push({"source": "140550154904256", "target": "140550190496336"}); | ||
| 927 | links.push({"source": "140550154904256", "target": "140550156684208"}); | ||
| 928 | links.push({"source": "140550154904256", "target": "140550458590944"}); | ||
| 929 | links.push({"source": "140550154904256", "target": "140550157879536"}); | ||
| 930 | links.push({"source": "140550154904256", "target": "140550459779312"}); | ||
| 931 | nodes["140550225229712"] = {"id": "140550225229712", "label": "libsamplerate@0.1.9", "index": nodeArray.length}; | ||
| 932 | nodeArray.push(nodes["140550225229712"]); | ||
| 933 | nodes["140550156684208"] = {"id": "140550156684208", "label": "python-dbus@1.2.18", "index": nodeArray.length}; | ||
| 934 | nodeArray.push(nodes["140550156684208"]); | ||
| 935 | nodes["140550459779312"] = {"id": "140550459779312", "label": "bdb@6.2.32", "index": nodeArray.length}; | ||
| 936 | nodeArray.push(nodes["140550459779312"]); | ||
| 937 | nodes["140550154965872"] = {"id": "140550154965872", "label": "ldacbt@2.0.2.3", "index": nodeArray.length}; | ||
| 938 | nodeArray.push(nodes["140550154965872"]); | ||
| 939 | nodes["140550168729136"] = {"id": "140550168729136", "label": "libcamera@0.1.0", "index": nodeArray.length}; | ||
| 940 | nodeArray.push(nodes["140550168729136"]); | ||
| 941 | links.push({"source": "140550168729136", "target": "140550160265920"}); | ||
| 942 | links.push({"source": "140550168729136", "target": "140550155388464"}); | ||
| 943 | links.push({"source": "140550168729136", "target": "140550155464128"}); | ||
| 944 | links.push({"source": "140550168729136", "target": "140550459778960"}); | ||
| 945 | links.push({"source": "140550168729136", "target": "140550160375408"}); | ||
| 946 | links.push({"source": "140550168729136", "target": "140550154754464"}); | ||
| 947 | links.push({"source": "140550168729136", "target": "140550156493152"}); | ||
| 948 | links.push({"source": "140550168729136", "target": "140550159588448"}); | ||
| 949 | links.push({"source": "140550168729136", "target": "140550157923536"}); | ||
| 950 | links.push({"source": "140550168729136", "target": "140550156000528"}); | ||
| 951 | links.push({"source": "140550168729136", "target": "140550168718432"}); | ||
| 952 | links.push({"source": "140550168729136", "target": "140550167242464"}); | ||
| 953 | links.push({"source": "140550168729136", "target": "140550157638400"}); | ||
| 954 | links.push({"source": "140550168729136", "target": "140550167155216"}); | ||
| 955 | links.push({"source": "140550168729136", "target": "140550167241408"}); | ||
| 956 | links.push({"source": "140550168729136", "target": "140550156519840"}); | ||
| 957 | links.push({"source": "140550168729136", "target": "140550156921952"}); | ||
| 958 | links.push({"source": "140550168729136", "target": "140550308363536"}); | ||
| 959 | nodes["140550160265920"] = {"id": "140550160265920", "label": "googletest@1.12.1", "index": nodeArray.length}; | ||
| 960 | nodeArray.push(nodes["140550160265920"]); | ||
| 961 | nodes["140550154754464"] = {"id": "140550154754464", "label": "python-sphinx@5.1.1", "index": nodeArray.length}; | ||
| 962 | nodeArray.push(nodes["140550154754464"]); | ||
| 963 | nodes["140550156493152"] = {"id": "140550156493152", "label": "python-pyyaml@6.0", "index": nodeArray.length}; | ||
| 964 | nodeArray.push(nodes["140550156493152"]); | ||
| 965 | nodes["140550157638400"] = {"id": "140550157638400", "label": "libtiff@4.4.0", "index": nodeArray.length}; | ||
| 966 | nodeArray.push(nodes["140550157638400"]); | ||
| 967 | nodes["140550167155216"] = {"id": "140550167155216", "label": "libyaml@0.2.5", "index": nodeArray.length}; | ||
| 968 | nodeArray.push(nodes["140550167155216"]); | ||
| 969 | nodes["140550156519840"] = {"id": "140550156519840", "label": "python-jinja2@3.1.1", "index": nodeArray.length}; | ||
| 970 | nodeArray.push(nodes["140550156519840"]); | ||
| 971 | nodes["140550156921952"] = {"id": "140550156921952", "label": "python-ply@3.11", "index": nodeArray.length}; | ||
| 972 | nodeArray.push(nodes["140550156921952"]); | ||
| 973 | nodes["140550308363536"] = {"id": "140550308363536", "label": "qtbase@5.15.10", "index": nodeArray.length}; | ||
| 974 | nodeArray.push(nodes["140550308363536"]); | ||
| 975 | nodes["140550154980800"] = {"id": "140550154980800", "label": "libfdk@2.0.1", "index": nodeArray.length}; | ||
| 976 | nodeArray.push(nodes["140550154980800"]); | ||
| 977 | links.push({"source": "140550154980800", "target": "140550160374000"}); | ||
| 978 | links.push({"source": "140550154980800", "target": "140550160372592"}); | ||
| 979 | links.push({"source": "140550154980800", "target": "140550160372416"}); | ||
| 980 | nodes["140550154980624"] = {"id": "140550154980624", "label": "libfreeaptx@0.1.1", "index": nodeArray.length}; | ||
| 981 | nodeArray.push(nodes["140550154980624"]); | ||
| 982 | nodes["140550225229888"] = {"id": "140550225229888", "label": "libsndfile@1.2.0", "index": nodeArray.length}; | ||
| 983 | nodeArray.push(nodes["140550225229888"]); | ||
| 984 | links.push({"source": "140550225229888", "target": "140550160374000"}); | ||
| 985 | links.push({"source": "140550225229888", "target": "140550157469408"}); | ||
| 986 | links.push({"source": "140550225229888", "target": "140550160372592"}); | ||
| 987 | links.push({"source": "140550225229888", "target": "140550160372416"}); | ||
| 988 | links.push({"source": "140550225229888", "target": "140550459778960"}); | ||
| 989 | links.push({"source": "140550225229888", "target": "140550160343392"}); | ||
| 990 | links.push({"source": "140550225229888", "target": "140550190496864"}); | ||
| 991 | links.push({"source": "140550225229888", "target": "140550225227952"}); | ||
| 992 | links.push({"source": "140550225229888", "target": "140550225227776"}); | ||
| 993 | links.push({"source": "140550225229888", "target": "140550190496336"}); | ||
| 994 | nodes["140550157469408"] = {"id": "140550157469408", "label": "autogen@5.18.16", "index": nodeArray.length}; | ||
| 995 | nodeArray.push(nodes["140550157469408"]); | ||
| 996 | nodes["140550190496864"] = {"id": "140550190496864", "label": "flac@1.3.4", "index": nodeArray.length}; | ||
| 997 | nodeArray.push(nodes["140550190496864"]); | ||
| 998 | nodes["140550190712720"] = {"id": "140550190712720", "label": "libusb@1.0.25", "index": nodeArray.length}; | ||
| 999 | nodeArray.push(nodes["140550190712720"]); | ||
| 1000 | nodes["140550157966080"] = {"id": "140550157966080", "label": "sbc@1.5", "index": nodeArray.length}; | ||
| 1001 | nodeArray.push(nodes["140550157966080"]); | ||
| 1002 | links.push({"source": "140550157966080", "target": "140550459778960"}); | ||
| 1003 | links.push({"source": "140550157966080", "target": "140550225229888"}); | ||
| 1004 | nodes["140550227542720"] = {"id": "140550227542720", "label": "vulkan-headers@sdk-1.3.231.1", "index": nodeArray.length}; | ||
| 1005 | nodeArray.push(nodes["140550227542720"]); | ||
| 1006 | nodes["140550227542544"] = {"id": "140550227542544", "label": "vulkan-loader@sdk-1.3.232", "index": nodeArray.length}; | ||
| 1007 | nodeArray.push(nodes["140550227542544"]); | ||
| 1008 | links.push({"source": "140550227542544", "target": "140550160265920"}); | ||
| 1009 | links.push({"source": "140550227542544", "target": "140550168326320"}); | ||
| 1010 | links.push({"source": "140550227542544", "target": "140550459778960"}); | ||
| 1011 | links.push({"source": "140550227542544", "target": "140550160343392"}); | ||
| 1012 | links.push({"source": "140550227542544", "target": "140550170777488"}); | ||
| 1013 | links.push({"source": "140550227542544", "target": "140550227542720"}); | ||
| 1014 | nodes["140550154790624"] = {"id": "140550154790624", "label": "webrtc-audio-processing@0.3.1", "index": nodeArray.length}; | ||
| 1015 | nodeArray.push(nodes["140550154790624"]); | ||
| 1016 | nodes["140550190898976"] = {"id": "140550190898976", "label": "playerctl@2.4.1", "index": nodeArray.length}; | ||
| 1017 | nodeArray.push(nodes["140550190898976"]); | ||
| 1018 | links.push({"source": "140550190898976", "target": "140550156000528"}); | ||
| 1019 | links.push({"source": "140550190898976", "target": "140550459778960"}); | ||
| 1020 | links.push({"source": "140550190898976", "target": "140550156000000"}); | ||
| 1021 | nodes["140550223606640"] = {"id": "140550223606640", "label": "spdlog@1.12.0", "index": nodeArray.length}; | ||
| 1022 | nodeArray.push(nodes["140550223606640"]); | ||
| 1023 | links.push({"source": "140550223606640", "target": "140550160268032"}); | ||
| 1024 | nodes["140550160268032"] = {"id": "140550160268032", "label": "catch2@3.4.0", "index": nodeArray.length}; | ||
| 1025 | nodeArray.push(nodes["140550160268032"]); | ||
| 1026 | links.push({"source": "140550160268032", "target": "140550160375408"}); | ||
| 1027 | nodes["140550158044960"] = {"id": "140550158044960", "label": "wireplumber@0.4.14", "index": nodeArray.length}; | ||
| 1028 | nodeArray.push(nodes["140550158044960"]); | ||
| 1029 | links.push({"source": "140550158044960", "target": "140550156000528"}); | ||
| 1030 | links.push({"source": "140550158044960", "target": "140550459778960"}); | ||
| 1031 | links.push({"source": "140550158044960", "target": "140550155915264"}); | ||
| 1032 | links.push({"source": "140550158044960", "target": "140550170778720"}); | ||
| 1033 | links.push({"source": "140550158044960", "target": "140550156000528"}); | ||
| 1034 | links.push({"source": "140550158044960", "target": "140550168426208"}); | ||
| 1035 | links.push({"source": "140550158044960", "target": "140550158020608"}); | ||
| 1036 | nodes["140550170778720"] = {"id": "140550170778720", "label": "elogind@252.9", "index": nodeArray.length}; | ||
| 1037 | nodeArray.push(nodes["140550170778720"]); | ||
| 1038 | links.push({"source": "140550170778720", "target": "140550159684288"}); | ||
| 1039 | links.push({"source": "140550170778720", "target": "140550159683760"}); | ||
| 1040 | links.push({"source": "140550170778720", "target": "140550159773472"}); | ||
| 1041 | links.push({"source": "140550170778720", "target": "140550159771184"}); | ||
| 1042 | links.push({"source": "140550170778720", "target": "140550461082016"}); | ||
| 1043 | links.push({"source": "140550170778720", "target": "140550169727504"}); | ||
| 1044 | links.push({"source": "140550170778720", "target": "140550459779840"}); | ||
| 1045 | links.push({"source": "140550170778720", "target": "140550459778960"}); | ||
| 1046 | links.push({"source": "140550170778720", "target": "140550160343392"}); | ||
| 1047 | links.push({"source": "140550170778720", "target": "140550156519840"}); | ||
| 1048 | links.push({"source": "140550170778720", "target": "140550169780000"}); | ||
| 1049 | links.push({"source": "140550170778720", "target": "140550158044608"}); | ||
| 1050 | links.push({"source": "140550170778720", "target": "140550157880768"}); | ||
| 1051 | links.push({"source": "140550170778720", "target": "140550157899312"}); | ||
| 1052 | links.push({"source": "140550170778720", "target": "140550157879536"}); | ||
| 1053 | links.push({"source": "140550170778720", "target": "140550160498688"}); | ||
| 1054 | links.push({"source": "140550170778720", "target": "140550160501856"}); | ||
| 1055 | links.push({"source": "140550170778720", "target": "140550155915264"}); | ||
| 1056 | links.push({"source": "140550170778720", "target": "140550157923536"}); | ||
| 1057 | links.push({"source": "140550170778720", "target": "140550161305200"}); | ||
| 1058 | nodes["140550461082016"] = {"id": "140550461082016", "label": "gperf@3.1", "index": nodeArray.length}; | ||
| 1059 | nodeArray.push(nodes["140550461082016"]); | ||
| 1060 | nodes["140550158044608"] = {"id": "140550158044608", "label": "kexec-tools@2.0.23", "index": nodeArray.length}; | ||
| 1061 | nodeArray.push(nodes["140550158044608"]); | ||
| 1062 | nodes["140550157880768"] = {"id": "140550157880768", "label": "linux-pam@1.5.2", "index": nodeArray.length}; | ||
| 1063 | nodeArray.push(nodes["140550157880768"]); | ||
| 1064 | nodes["140550160498688"] = {"id": "140550160498688", "label": "shadow@4.13", "index": nodeArray.length}; | ||
| 1065 | nodeArray.push(nodes["140550160498688"]); | ||
| 1066 | nodes["140550160501856"] = {"id": "140550160501856", "label": "shepherd@0.9.3", "index": nodeArray.length}; | ||
| 1067 | nodeArray.push(nodes["140550160501856"]); | ||
| 1068 | nodes["140550161305200"] = {"id": "140550161305200", "label": "acl@2.3.1", "index": nodeArray.length}; | ||
| 1069 | nodeArray.push(nodes["140550161305200"]); | ||
| 1070 | nodes["140550168426208"] = {"id": "140550168426208", "label": "lua@5.3.5", "index": nodeArray.length}; | ||
| 1071 | nodeArray.push(nodes["140550168426208"]); | ||
| 1072 | links.push({"source": "140550168426208", "target": "140550458590944"}); | ||
| 1073 | </script><script type="text/javascript" src="/gnu/store/d74zg27gc831j3ck7f3zvzgj9spaxnrb-guix-module-union/share/guile/site/3.0/guix/graph.js"></script></body></html> \ No newline at end of file | ||
diff --git a/modules/ryan-packages/tmp.txt b/modules/ryan-packages/tmp.txt deleted file mode 100644 index 4c04bf8..0000000 --- a/modules/ryan-packages/tmp.txt +++ /dev/null | |||
| @@ -1,841 +0,0 @@ | |||
| 1 | digraph "Guix package" { | ||
| 2 | "140469651626576" [label = "waybar-new@0.9.22", shape = box, fontname = sans]; | ||
| 3 | "140469651626576" -> "140469583334672" [color = magenta]; | ||
| 4 | "140469651626576" -> "140469949282192" [color = magenta]; | ||
| 5 | "140469651626576" -> "140469587242256" [color = magenta]; | ||
| 6 | "140469651626576" -> "140469598181088" [color = magenta]; | ||
| 7 | "140469651626576" -> "140469651626928" [color = magenta]; | ||
| 8 | "140469651626576" -> "140469583014128" [color = magenta]; | ||
| 9 | "140469651626576" -> "140469595823024" [color = magenta]; | ||
| 10 | "140469651626576" -> "140469597125024" [color = magenta]; | ||
| 11 | "140469651626576" -> "140469597100624" [color = magenta]; | ||
| 12 | "140469651626576" -> "140469594578544" [color = magenta]; | ||
| 13 | "140469651626576" -> "140469597125200" [color = magenta]; | ||
| 14 | "140469651626576" -> "140469595671472" [color = magenta]; | ||
| 15 | "140469651626576" -> "140469598182848" [color = magenta]; | ||
| 16 | "140469651626576" -> "140469651766896" [color = magenta]; | ||
| 17 | "140469651626576" -> "140469585233104" [color = magenta]; | ||
| 18 | "140469651626576" -> "140469597123088" [color = magenta]; | ||
| 19 | "140469651626576" -> "140469585350656" [color = magenta]; | ||
| 20 | "140469651626576" -> "140469618253600" [color = magenta]; | ||
| 21 | "140469651626576" -> "140469651957472" [color = magenta]; | ||
| 22 | "140469651626576" -> "140469651030896" [color = magenta]; | ||
| 23 | "140469651626576" -> "140469598181264" [color = magenta]; | ||
| 24 | "140469651626576" -> "140469585375008" [color = magenta]; | ||
| 25 | "140469583334672" [label = "glib@2.72.3", shape = box, fontname = sans]; | ||
| 26 | "140469583334672" -> "140469583245312" [color = blue]; | ||
| 27 | "140469583334672" -> "140469587101232" [color = blue]; | ||
| 28 | "140469583334672" -> "140469949283072" [color = blue]; | ||
| 29 | "140469583334672" -> "140469588041728" [color = blue]; | ||
| 30 | "140469583334672" -> "140469949282192" [color = blue]; | ||
| 31 | "140469583334672" -> "140469587681632" [color = blue]; | ||
| 32 | "140469583334672" -> "140469587709552" [color = blue]; | ||
| 33 | "140469583334672" -> "140469588746416" [color = blue]; | ||
| 34 | "140469583334672" -> "140469588043664" [color = blue]; | ||
| 35 | "140469583334672" -> "140469587681632" [color = blue]; | ||
| 36 | "140469583334672" -> "140469587709552" [color = blue]; | ||
| 37 | "140469583334672" -> "140469584738896" [color = blue]; | ||
| 38 | "140469583334672" -> "140469978866720" [color = blue]; | ||
| 39 | "140469583334672" -> "140469585209584" [color = blue]; | ||
| 40 | "140469583334672" -> "140469587966544" [color = blue]; | ||
| 41 | "140469583245312" [label = "dbus@1.14.0", shape = box, fontname = sans]; | ||
| 42 | "140469583245312" -> "140469949282192" [color = dimgrey]; | ||
| 43 | "140469583245312" -> "140469587010064" [color = dimgrey]; | ||
| 44 | "140469583245312" -> "140469587103520" [color = dimgrey]; | ||
| 45 | "140469583245312" -> "140469582785984" [color = dimgrey]; | ||
| 46 | "140469583245312" -> "140469597203552" [color = dimgrey]; | ||
| 47 | "140469583245312" -> "140469597123088" [color = dimgrey]; | ||
| 48 | "140469583245312" -> "140469597183776" [color = dimgrey]; | ||
| 49 | "140469583245312" -> "140469582591184" [color = dimgrey]; | ||
| 50 | "140469583245312" -> "140469597123440" [color = dimgrey]; | ||
| 51 | "140469583245312" -> "140469595744496" [color = dimgrey]; | ||
| 52 | "140469949282192" [label = "pkg-config@0.29.2", shape = box, fontname = sans]; | ||
| 53 | "140469587010064" [label = "docbook-xml@4.4", shape = box, fontname = sans]; | ||
| 54 | "140469587103520" [label = "docbook-xsl@1.79.2-0.fe16c90", shape = box, fontname = sans]; | ||
| 55 | "140469582785984" [label = "doxygen@1.9.5", shape = box, fontname = sans]; | ||
| 56 | "140469597203552" [label = "xmlto@0.0.28", shape = box, fontname = sans]; | ||
| 57 | "140469597123088" [label = "libxml2@2.9.14", shape = box, fontname = sans]; | ||
| 58 | "140469597183776" [label = "libxslt@1.1.37", shape = box, fontname = sans]; | ||
| 59 | "140469582591184" [label = "yelp-tools@3.32.2", shape = box, fontname = sans]; | ||
| 60 | "140469597123440" [label = "expat@2.5.0", shape = box, fontname = sans]; | ||
| 61 | "140469595744496" [label = "libx11@1.8.1", shape = box, fontname = sans]; | ||
| 62 | "140469587101232" [label = "gettext-minimal@0.21", shape = box, fontname = sans]; | ||
| 63 | "140469587101232" -> "140469978866368" [color = peachpuff4]; | ||
| 64 | "140469587101232" -> "140469597123088" [color = peachpuff4]; | ||
| 65 | "140469587101232" -> "140469586916560" [color = peachpuff4]; | ||
| 66 | "140469978866368" [label = "libunistring@1.0", shape = box, fontname = sans]; | ||
| 67 | "140469586916560" [label = "ncurses@6.2.20210619", shape = box, fontname = sans]; | ||
| 68 | "140469949283072" [label = "m4@1.4.19", shape = box, fontname = sans]; | ||
| 69 | "140469588041728" [label = "perl@5.36.0", shape = box, fontname = sans]; | ||
| 70 | "140469587681632" [label = "python@3.10.7", shape = box, fontname = sans]; | ||
| 71 | "140469587681632" -> "140469588746416" [color = darkgoldenrod]; | ||
| 72 | "140469587681632" -> "140469587992576" [color = darkgoldenrod]; | ||
| 73 | "140469587681632" -> "140469587992752" [color = darkgoldenrod]; | ||
| 74 | "140469587681632" -> "140469949282192" [color = darkgoldenrod]; | ||
| 75 | "140469587681632" -> "140469587965664" [color = darkgoldenrod]; | ||
| 76 | "140469587681632" -> "140469597123440" [color = darkgoldenrod]; | ||
| 77 | "140469587681632" -> "140469949282368" [color = darkgoldenrod]; | ||
| 78 | "140469587681632" -> "140469584738896" [color = darkgoldenrod]; | ||
| 79 | "140469587681632" -> "140469801785232" [color = darkgoldenrod]; | ||
| 80 | "140469587681632" -> "140469594632896" [color = darkgoldenrod]; | ||
| 81 | "140469587681632" -> "140469978867424" [color = darkgoldenrod]; | ||
| 82 | "140469587681632" -> "140469587966544" [color = darkgoldenrod]; | ||
| 83 | "140469587681632" -> "140469585004432" [color = darkgoldenrod]; | ||
| 84 | "140469587681632" -> "140469585003904" [color = darkgoldenrod]; | ||
| 85 | "140469588746416" [label = "tzdata@2022a", shape = box, fontname = sans]; | ||
| 86 | "140469587992576" [label = "unzip@6.0", shape = box, fontname = sans]; | ||
| 87 | "140469587992752" [label = "zip@3.0", shape = box, fontname = sans]; | ||
| 88 | "140469587965664" [label = "bzip2@1.0.8", shape = box, fontname = sans]; | ||
| 89 | "140469949282368" [label = "gdbm@1.23", shape = box, fontname = sans]; | ||
| 90 | "140469584738896" [label = "libffi@3.4.4", shape = box, fontname = sans]; | ||
| 91 | "140469801785232" [label = "sqlite@3.39.3", shape = box, fontname = sans]; | ||
| 92 | "140469594632896" [label = "openssl@3.0.8", shape = box, fontname = sans]; | ||
| 93 | "140469978867424" [label = "readline@8.1.2", shape = box, fontname = sans]; | ||
| 94 | "140469587966544" [label = "zlib@1.2.13", shape = box, fontname = sans]; | ||
| 95 | "140469585004432" [label = "tcl@8.6.12", shape = box, fontname = sans]; | ||
| 96 | "140469585003904" [label = "tk@8.6.12", shape = box, fontname = sans]; | ||
| 97 | "140469587709552" [label = "python-wrapper@3.10.7", shape = box, fontname = sans]; | ||
| 98 | "140469587709552" -> "140469588746416" [color = red]; | ||
| 99 | "140469587709552" -> "140469587992576" [color = red]; | ||
| 100 | "140469587709552" -> "140469587992752" [color = red]; | ||
| 101 | "140469587709552" -> "140469949282192" [color = red]; | ||
| 102 | "140469587709552" -> "140469588043840" [color = red]; | ||
| 103 | "140469587709552" -> "140469587681632" [color = red]; | ||
| 104 | "140469588043840" [label = "bash@5.1.16", shape = box, fontname = sans]; | ||
| 105 | "140469588043664" [label = "bash-minimal@5.1.16", shape = box, fontname = sans]; | ||
| 106 | "140469978866720" [label = "pcre@8.45", shape = box, fontname = sans]; | ||
| 107 | "140469978866720" -> "140469587965664" [color = peachpuff4]; | ||
| 108 | "140469978866720" -> "140469978867424" [color = peachpuff4]; | ||
| 109 | "140469978866720" -> "140469587966544" [color = peachpuff4]; | ||
| 110 | "140469585209584" [label = "util-linux@2.37.4", shape = box, fontname = sans]; | ||
| 111 | "140469585209584" -> "140469587865200" [color = blue]; | ||
| 112 | "140469585209584" -> "140469588041728" [color = blue]; | ||
| 113 | "140469585209584" -> "140469800726304" [color = blue]; | ||
| 114 | "140469585209584" -> "140469586916560" [color = blue]; | ||
| 115 | "140469585209584" -> "140469587966544" [color = blue]; | ||
| 116 | "140469587865200" [label = "net-base@5.3", shape = box, fontname = sans]; | ||
| 117 | "140469800726304" [label = "file@5.44", shape = box, fontname = sans]; | ||
| 118 | "140469587242256" [label = "scdoc@1.11.2", shape = box, fontname = sans]; | ||
| 119 | "140469598181088" [label = "wayland-protocols@1.32", shape = box, fontname = sans]; | ||
| 120 | "140469598181088" -> "140469949282192" [color = magenta]; | ||
| 121 | "140469598181088" -> "140469587681632" [color = magenta]; | ||
| 122 | "140469598181088" -> "140469598181264" [color = magenta]; | ||
| 123 | "140469598181264" [label = "wayland@1.22.0", shape = box, fontname = sans]; | ||
| 124 | "140469598181264" -> "140469587009712" [color = darkgoldenrod]; | ||
| 125 | "140469598181264" -> "140469587010240" [color = darkgoldenrod]; | ||
| 126 | "140469598181264" -> "140469587103520" [color = darkgoldenrod]; | ||
| 127 | "140469598181264" -> "140469582714416" [color = darkgoldenrod]; | ||
| 128 | "140469598181264" -> "140469582785984" [color = darkgoldenrod]; | ||
| 129 | "140469598181264" -> "140469949282192" [color = darkgoldenrod]; | ||
| 130 | "140469598181264" -> "140469587681632" [color = darkgoldenrod]; | ||
| 131 | "140469598181264" -> "140469597203552" [color = darkgoldenrod]; | ||
| 132 | "140469598181264" -> "140469597183776" [color = darkgoldenrod]; | ||
| 133 | "140469598181264" -> "140469597123440" [color = darkgoldenrod]; | ||
| 134 | "140469598181264" -> "140469597123088" [color = darkgoldenrod]; | ||
| 135 | "140469598181264" -> "140469584738896" [color = darkgoldenrod]; | ||
| 136 | "140469587009712" [label = "docbook-xml@4.2", shape = box, fontname = sans]; | ||
| 137 | "140469587010240" [label = "docbook-xml@4.5", shape = box, fontname = sans]; | ||
| 138 | "140469582714416" [label = "graphviz@7.0.1", shape = box, fontname = sans]; | ||
| 139 | "140469651626928" [label = "gtkmm@3.24.6", shape = box, fontname = sans]; | ||
| 140 | "140469651626928" -> "140469582714416" [color = blue]; | ||
| 141 | "140469651626928" -> "140469582785984" [color = blue]; | ||
| 142 | "140469651626928" -> "140469583334672" [color = blue]; | ||
| 143 | "140469651626928" -> "140469949283072" [color = blue]; | ||
| 144 | "140469651626928" -> "140469582444784" [color = blue]; | ||
| 145 | "140469651626928" -> "140469588041728" [color = blue]; | ||
| 146 | "140469651626928" -> "140469949282192" [color = blue]; | ||
| 147 | "140469651626928" -> "140469587681632" [color = blue]; | ||
| 148 | "140469651626928" -> "140469597183776" [color = blue]; | ||
| 149 | "140469651626928" -> "140469595745200" [color = blue]; | ||
| 150 | "140469651626928" -> "140469651627280" [color = blue]; | ||
| 151 | "140469651626928" -> "140469651627104" [color = blue]; | ||
| 152 | "140469651626928" -> "140469583332736" [color = blue]; | ||
| 153 | "140469651626928" -> "140469597078912" [color = blue]; | ||
| 154 | "140469651626928" -> "140469651627456" [color = blue]; | ||
| 155 | "140469582444784" [label = "mm-common@1.0.3", shape = box, fontname = sans]; | ||
| 156 | "140469582444784" -> "140469588629568" [color = blue]; | ||
| 157 | "140469582444784" -> "140469587101232" [color = blue]; | ||
| 158 | "140469582444784" -> "140469949282192" [color = blue]; | ||
| 159 | "140469582444784" -> "140469588630448" [color = blue]; | ||
| 160 | "140469582444784" -> "140469587681632" [color = blue]; | ||
| 161 | "140469588629568" [label = "coreutils@9.1", shape = box, fontname = sans]; | ||
| 162 | "140469588630448" [label = "sed@4.8", shape = box, fontname = sans]; | ||
| 163 | "140469595745200" [label = "xorg-server@21.1.1", shape = box, fontname = sans]; | ||
| 164 | "140469595745200" -> "140469587709552" [color = darkgoldenrod]; | ||
| 165 | "140469595745200" -> "140469949282192" [color = darkgoldenrod]; | ||
| 166 | "140469595745200" -> "140469585253584" [color = darkgoldenrod]; | ||
| 167 | "140469595745200" -> "140469583245312" [color = darkgoldenrod]; | ||
| 168 | "140469595745200" -> "140469595635136" [color = darkgoldenrod]; | ||
| 169 | "140469595745200" -> "140469596084816" [color = darkgoldenrod]; | ||
| 170 | "140469595745200" -> "140469598096832" [color = darkgoldenrod]; | ||
| 171 | "140469595745200" -> "140469595722784" [color = darkgoldenrod]; | ||
| 172 | "140469595745200" -> "140469595743792" [color = darkgoldenrod]; | ||
| 173 | "140469595745200" -> "140469595633376" [color = darkgoldenrod]; | ||
| 174 | "140469595745200" -> "140469595722608" [color = darkgoldenrod]; | ||
| 175 | "140469595745200" -> "140469595722256" [color = darkgoldenrod]; | ||
| 176 | "140469595745200" -> "140469595633024" [color = darkgoldenrod]; | ||
| 177 | "140469595745200" -> "140469595723840" [color = darkgoldenrod]; | ||
| 178 | "140469595745200" -> "140469595632496" [color = darkgoldenrod]; | ||
| 179 | "140469595745200" -> "140469595634960" [color = darkgoldenrod]; | ||
| 180 | "140469595745200" -> "140469595743968" [color = darkgoldenrod]; | ||
| 181 | "140469595745200" -> "140469595723488" [color = darkgoldenrod]; | ||
| 182 | "140469595745200" -> "140469595712960" [color = darkgoldenrod]; | ||
| 183 | "140469595745200" -> "140469595712256" [color = darkgoldenrod]; | ||
| 184 | "140469595745200" -> "140469595709440" [color = darkgoldenrod]; | ||
| 185 | "140469595745200" -> "140469587966544" [color = darkgoldenrod]; | ||
| 186 | "140469595745200" -> "140469595743440" [color = darkgoldenrod]; | ||
| 187 | "140469595745200" -> "140469595742912" [color = darkgoldenrod]; | ||
| 188 | "140469595745200" -> "140469595742736" [color = darkgoldenrod]; | ||
| 189 | "140469595745200" -> "140469595742560" [color = darkgoldenrod]; | ||
| 190 | "140469595745200" -> "140469595742384" [color = darkgoldenrod]; | ||
| 191 | "140469595745200" -> "140469595634432" [color = darkgoldenrod]; | ||
| 192 | "140469595745200" -> "140469595745728" [color = darkgoldenrod]; | ||
| 193 | "140469595745200" -> "140469596004352" [color = darkgoldenrod]; | ||
| 194 | "140469595745200" -> "140469617433344" [color = darkgoldenrod]; | ||
| 195 | "140469595745200" -> "140469595592064" [color = darkgoldenrod]; | ||
| 196 | "140469585253584" [label = "eudev@3.2.11", shape = box, fontname = sans]; | ||
| 197 | "140469595635136" [label = "libdmx@1.1.4", shape = box, fontname = sans]; | ||
| 198 | "140469596084816" [label = "libepoxy@1.5.10", shape = box, fontname = sans]; | ||
| 199 | "140469598096832" [label = "libgcrypt@1.10.1", shape = box, fontname = sans]; | ||
| 200 | "140469595722784" [label = "libxau@1.0.10", shape = box, fontname = sans]; | ||
| 201 | "140469595743792" [label = "libxaw@1.0.14", shape = box, fontname = sans]; | ||
| 202 | "140469595633376" [label = "libxdmcp@1.1.3", shape = box, fontname = sans]; | ||
| 203 | "140469595722608" [label = "libxfixes@6.0.0", shape = box, fontname = sans]; | ||
| 204 | "140469595722256" [label = "libxfont@2.0.4", shape = box, fontname = sans]; | ||
| 205 | "140469595633024" [label = "libxkbfile@1.1.0", shape = box, fontname = sans]; | ||
| 206 | "140469595723840" [label = "libxrender@0.9.10", shape = box, fontname = sans]; | ||
| 207 | "140469595632496" [label = "libxres@1.2.1", shape = box, fontname = sans]; | ||
| 208 | "140469595634960" [label = "libxshmfence@1.3", shape = box, fontname = sans]; | ||
| 209 | "140469595743968" [label = "libxt@1.2.1", shape = box, fontname = sans]; | ||
| 210 | "140469595723488" [label = "libxv@1.0.12", shape = box, fontname = sans]; | ||
| 211 | "140469595712960" [label = "xkbcomp@1.4.5", shape = box, fontname = sans]; | ||
| 212 | "140469595712256" [label = "xkeyboard-config@2.38", shape = box, fontname = sans]; | ||
| 213 | "140469595709440" [label = "xtrans@1.4.0", shape = box, fontname = sans]; | ||
| 214 | "140469595743440" [label = "xcb-util@0.4.0", shape = box, fontname = sans]; | ||
| 215 | "140469595742912" [label = "xcb-util-image@0.4.0", shape = box, fontname = sans]; | ||
| 216 | "140469595742736" [label = "xcb-util-keysyms@0.4.0", shape = box, fontname = sans]; | ||
| 217 | "140469595742560" [label = "xcb-util-renderutil@0.3.9", shape = box, fontname = sans]; | ||
| 218 | "140469595742384" [label = "xcb-util-wm@0.4.1", shape = box, fontname = sans]; | ||
| 219 | "140469595634432" [label = "libpciaccess@0.16", shape = box, fontname = sans]; | ||
| 220 | "140469595745728" [label = "libxcvt@0.1.1", shape = box, fontname = sans]; | ||
| 221 | "140469596004352" [label = "mesa@23.1.4", shape = box, fontname = sans]; | ||
| 222 | "140469617433344" [label = "pixman@0.40.0", shape = box, fontname = sans]; | ||
| 223 | "140469595592064" [label = "xorgproto@2022.2", shape = box, fontname = sans]; | ||
| 224 | "140469651627280" [label = "atkmm@2.28.1", shape = box, fontname = sans]; | ||
| 225 | "140469651627280" -> "140469582714416" [color = darkviolet]; | ||
| 226 | "140469651627280" -> "140469582785984" [color = darkviolet]; | ||
| 227 | "140469651627280" -> "140469949283072" [color = darkviolet]; | ||
| 228 | "140469651627280" -> "140469582444784" [color = darkviolet]; | ||
| 229 | "140469651627280" -> "140469588041728" [color = darkviolet]; | ||
| 230 | "140469651627280" -> "140469949282192" [color = darkviolet]; | ||
| 231 | "140469651627280" -> "140469587681632" [color = darkviolet]; | ||
| 232 | "140469651627280" -> "140469597183776" [color = darkviolet]; | ||
| 233 | "140469651627280" -> "140469583332384" [color = darkviolet]; | ||
| 234 | "140469651627280" -> "140469597079792" [color = darkviolet]; | ||
| 235 | "140469583332384" [label = "glibmm@2.64.5", shape = box, fontname = sans]; | ||
| 236 | "140469597079792" [label = "at-spi2-core@2.45.90", shape = box, fontname = sans]; | ||
| 237 | "140469651627104" [label = "cairomm@1.14.2", shape = box, fontname = sans]; | ||
| 238 | "140469651627104" -> "140469586918496" [color = peachpuff4]; | ||
| 239 | "140469651627104" -> "140469582785984" [color = peachpuff4]; | ||
| 240 | "140469651627104" -> "140469582714416" [color = peachpuff4]; | ||
| 241 | "140469651627104" -> "140469582444784" [color = peachpuff4]; | ||
| 242 | "140469651627104" -> "140469588041728" [color = peachpuff4]; | ||
| 243 | "140469651627104" -> "140469949282192" [color = peachpuff4]; | ||
| 244 | "140469651627104" -> "140469597183776" [color = peachpuff4]; | ||
| 245 | "140469651627104" -> "140469587309248" [color = peachpuff4]; | ||
| 246 | "140469651627104" -> "140469583332912" [color = peachpuff4]; | ||
| 247 | "140469651627104" -> "140469583333088" [color = peachpuff4]; | ||
| 248 | "140469651627104" -> "140469597029760" [color = peachpuff4]; | ||
| 249 | "140469586918496" [label = "boost@1.80.0", shape = box, fontname = sans]; | ||
| 250 | "140469587309248" [label = "fontconfig-minimal@2.14.0", shape = box, fontname = sans]; | ||
| 251 | "140469583332912" [label = "libsigc++@2.9.3", shape = box, fontname = sans]; | ||
| 252 | "140469583333088" [label = "libsigc++@3.0.6", shape = box, fontname = sans]; | ||
| 253 | "140469597029760" [label = "cairo@1.16.0", shape = box, fontname = sans]; | ||
| 254 | "140469583332736" [label = "glibmm@2.72.1", shape = box, fontname = sans]; | ||
| 255 | "140469583332736" -> "140469582714416" [color = darkviolet]; | ||
| 256 | "140469583332736" -> "140469582785984" [color = darkviolet]; | ||
| 257 | "140469583332736" -> "140469583334672" [color = darkviolet]; | ||
| 258 | "140469583332736" -> "140469949283072" [color = darkviolet]; | ||
| 259 | "140469583332736" -> "140469582444784" [color = darkviolet]; | ||
| 260 | "140469583332736" -> "140469588041728" [color = darkviolet]; | ||
| 261 | "140469583332736" -> "140469949282192" [color = darkviolet]; | ||
| 262 | "140469583332736" -> "140469597183776" [color = darkviolet]; | ||
| 263 | "140469583332736" -> "140469583333088" [color = darkviolet]; | ||
| 264 | "140469583332736" -> "140469583334672" [color = darkviolet]; | ||
| 265 | "140469597078912" [label = "gtk+@3.24.37", shape = box, fontname = sans]; | ||
| 266 | "140469597078912" -> "140469587009888" [color = cyan3]; | ||
| 267 | "140469597078912" -> "140469587103520" [color = cyan3]; | ||
| 268 | "140469597078912" -> "140469587101232" [color = cyan3]; | ||
| 269 | "140469597078912" -> "140469583334672" [color = cyan3]; | ||
| 270 | "140469597078912" -> "140469583334144" [color = cyan3]; | ||
| 271 | "140469597078912" -> "140469582494112" [color = cyan3]; | ||
| 272 | "140469597078912" -> "140469949282192" [color = cyan3]; | ||
| 273 | "140469597078912" -> "140469587709552" [color = cyan3]; | ||
| 274 | "140469597078912" -> "140469655776352" [color = cyan3]; | ||
| 275 | "140469597078912" -> "140469595745200" [color = cyan3]; | ||
| 276 | "140469597078912" -> "140469597183776" [color = cyan3]; | ||
| 277 | "140469597078912" -> "140469582549344" [color = cyan3]; | ||
| 278 | "140469597078912" -> "140469597961664" [color = cyan3]; | ||
| 279 | "140469597078912" -> "140469597126256" [color = cyan3]; | ||
| 280 | "140469597078912" -> "140469597029232" [color = cyan3]; | ||
| 281 | "140469597078912" -> "140469803228784" [color = cyan3]; | ||
| 282 | "140469597078912" -> "140469582552864" [color = cyan3]; | ||
| 283 | "140469597078912" -> "140469597123088" [color = cyan3]; | ||
| 284 | "140469597078912" -> "140469582551984" [color = cyan3]; | ||
| 285 | "140469597078912" -> "140469597079792" [color = cyan3]; | ||
| 286 | "140469597078912" -> "140469597029760" [color = cyan3]; | ||
| 287 | "140469597078912" -> "140469978867776" [color = cyan3]; | ||
| 288 | "140469597078912" -> "140469587309248" [color = cyan3]; | ||
| 289 | "140469597078912" -> "140469587241376" [color = cyan3]; | ||
| 290 | "140469597078912" -> "140469582492528" [color = cyan3]; | ||
| 291 | "140469597078912" -> "140469583334672" [color = cyan3]; | ||
| 292 | "140469597078912" -> "140469582357712" [color = cyan3]; | ||
| 293 | "140469597078912" -> "140469596084816" [color = cyan3]; | ||
| 294 | "140469597078912" -> "140469595744496" [color = cyan3]; | ||
| 295 | "140469597078912" -> "140469595633552" [color = cyan3]; | ||
| 296 | "140469597078912" -> "140469595744144" [color = cyan3]; | ||
| 297 | "140469597078912" -> "140469595724544" [color = cyan3]; | ||
| 298 | "140469597078912" -> "140469595724368" [color = cyan3]; | ||
| 299 | "140469597078912" -> "140469595722608" [color = cyan3]; | ||
| 300 | "140469597078912" -> "140469595722080" [color = cyan3]; | ||
| 301 | "140469597078912" -> "140469595724192" [color = cyan3]; | ||
| 302 | "140469597078912" -> "140469617434224" [color = cyan3]; | ||
| 303 | "140469597078912" -> "140469595721904" [color = cyan3]; | ||
| 304 | "140469597078912" -> "140469595723840" [color = cyan3]; | ||
| 305 | "140469597078912" -> "140469596004352" [color = cyan3]; | ||
| 306 | "140469597078912" -> "140469597028704" [color = cyan3]; | ||
| 307 | "140469597078912" -> "140469598181264" [color = cyan3]; | ||
| 308 | "140469597078912" -> "140469598181088" [color = cyan3]; | ||
| 309 | "140469587009888" [label = "docbook-xml@4.3", shape = box, fontname = sans]; | ||
| 310 | "140469583334144" [label = "gobject-introspection@1.72.0", shape = box, fontname = sans]; | ||
| 311 | "140469582494112" [label = "hicolor-icon-theme@0.17", shape = box, fontname = sans]; | ||
| 312 | "140469655776352" [label = "sassc@3.6.2", shape = box, fontname = sans]; | ||
| 313 | "140469582549344" [label = "colord-minimal@1.4.6", shape = box, fontname = sans]; | ||
| 314 | "140469597961664" [label = "cups@2.4.2", shape = box, fontname = sans]; | ||
| 315 | "140469597126256" [label = "graphene@1.10.6", shape = box, fontname = sans]; | ||
| 316 | "140469597029232" [label = "harfbuzz@5.3.1", shape = box, fontname = sans]; | ||
| 317 | "140469803228784" [label = "iso-codes@4.5.0", shape = box, fontname = sans]; | ||
| 318 | "140469582552864" [label = "json-glib-minimal@1.6.2", shape = box, fontname = sans]; | ||
| 319 | "140469582551984" [label = "rest@0.8.1", shape = box, fontname = sans]; | ||
| 320 | "140469978867776" [label = "fribidi@1.0.12", shape = box, fontname = sans]; | ||
| 321 | "140469587241376" [label = "freetype@2.13.0", shape = box, fontname = sans]; | ||
| 322 | "140469582492528" [label = "librsvg@2.54.5", shape = box, fontname = sans]; | ||
| 323 | "140469582357712" [label = "libcloudproviders-minimal@0.3.1", shape = box, fontname = sans]; | ||
| 324 | "140469595633552" [label = "libxcomposite@0.4.5", shape = box, fontname = sans]; | ||
| 325 | "140469595744144" [label = "libxcursor@1.2.1", shape = box, fontname = sans]; | ||
| 326 | "140469595724544" [label = "libxdamage@1.1.5", shape = box, fontname = sans]; | ||
| 327 | "140469595724368" [label = "libxext@1.3.4", shape = box, fontname = sans]; | ||
| 328 | "140469595722080" [label = "libxi@1.7.10", shape = box, fontname = sans]; | ||
| 329 | "140469595724192" [label = "libxinerama@1.1.4", shape = box, fontname = sans]; | ||
| 330 | "140469617434224" [label = "libxkbcommon@1.4.1", shape = box, fontname = sans]; | ||
| 331 | "140469595721904" [label = "libxrandr@1.5.2", shape = box, fontname = sans]; | ||
| 332 | "140469597028704" [label = "pango@1.50.10", shape = box, fontname = sans]; | ||
| 333 | "140469651627456" [label = "pangomm@2.46.2", shape = box, fontname = sans]; | ||
| 334 | "140469651627456" -> "140469582714416" [color = magenta]; | ||
| 335 | "140469651627456" -> "140469582785984" [color = magenta]; | ||
| 336 | "140469651627456" -> "140469949283072" [color = magenta]; | ||
| 337 | "140469651627456" -> "140469582444784" [color = magenta]; | ||
| 338 | "140469651627456" -> "140469588041728" [color = magenta]; | ||
| 339 | "140469651627456" -> "140469949282192" [color = magenta]; | ||
| 340 | "140469651627456" -> "140469587681632" [color = magenta]; | ||
| 341 | "140469651627456" -> "140469597183776" [color = magenta]; | ||
| 342 | "140469651627456" -> "140469597101680" [color = magenta]; | ||
| 343 | "140469651627456" -> "140469583332384" [color = magenta]; | ||
| 344 | "140469651627456" -> "140469597028704" [color = magenta]; | ||
| 345 | "140469597101680" [label = "cairomm@1.14.2", shape = box, fontname = sans]; | ||
| 346 | "140469583014128" [label = "date@2.4.1-9a0ee254", shape = box, fontname = sans]; | ||
| 347 | "140469583014128" -> "140469588746416" [color = dimgrey]; | ||
| 348 | "140469595823024" [label = "fmt@9.1.0", shape = box, fontname = sans]; | ||
| 349 | "140469595823024" -> "140469587992576" [color = peachpuff4]; | ||
| 350 | "140469597125024" [label = "gtk-layer-shell@0.6.0", shape = box, fontname = sans]; | ||
| 351 | "140469597125024" -> "140469949282192" [color = magenta]; | ||
| 352 | "140469597125024" -> "140469583334144" [color = magenta]; | ||
| 353 | "140469597125024" -> "140469598181264" [color = magenta]; | ||
| 354 | "140469597125024" -> "140469597078912" [color = magenta]; | ||
| 355 | "140469597100624" [label = "gtkmm@3.24.6", shape = box, fontname = sans]; | ||
| 356 | "140469597100624" -> "140469582714416" [color = peachpuff4]; | ||
| 357 | "140469597100624" -> "140469582785984" [color = peachpuff4]; | ||
| 358 | "140469597100624" -> "140469583334672" [color = peachpuff4]; | ||
| 359 | "140469597100624" -> "140469949283072" [color = peachpuff4]; | ||
| 360 | "140469597100624" -> "140469582444784" [color = peachpuff4]; | ||
| 361 | "140469597100624" -> "140469588041728" [color = peachpuff4]; | ||
| 362 | "140469597100624" -> "140469949282192" [color = peachpuff4]; | ||
| 363 | "140469597100624" -> "140469587681632" [color = peachpuff4]; | ||
| 364 | "140469597100624" -> "140469597183776" [color = peachpuff4]; | ||
| 365 | "140469597100624" -> "140469595745200" [color = peachpuff4]; | ||
| 366 | "140469597100624" -> "140469597100976" [color = peachpuff4]; | ||
| 367 | "140469597100624" -> "140469597101680" [color = peachpuff4]; | ||
| 368 | "140469597100624" -> "140469583332736" [color = peachpuff4]; | ||
| 369 | "140469597100624" -> "140469597078912" [color = peachpuff4]; | ||
| 370 | "140469597100624" -> "140469597101328" [color = peachpuff4]; | ||
| 371 | "140469597100976" [label = "atkmm@2.28.1", shape = box, fontname = sans]; | ||
| 372 | "140469597100976" -> "140469582714416" [color = peachpuff4]; | ||
| 373 | "140469597100976" -> "140469582785984" [color = peachpuff4]; | ||
| 374 | "140469597100976" -> "140469949283072" [color = peachpuff4]; | ||
| 375 | "140469597100976" -> "140469582444784" [color = peachpuff4]; | ||
| 376 | "140469597100976" -> "140469588041728" [color = peachpuff4]; | ||
| 377 | "140469597100976" -> "140469949282192" [color = peachpuff4]; | ||
| 378 | "140469597100976" -> "140469587681632" [color = peachpuff4]; | ||
| 379 | "140469597100976" -> "140469597183776" [color = peachpuff4]; | ||
| 380 | "140469597100976" -> "140469583332384" [color = peachpuff4]; | ||
| 381 | "140469597100976" -> "140469597079792" [color = peachpuff4]; | ||
| 382 | "140469597101328" [label = "pangomm@2.46.2", shape = box, fontname = sans]; | ||
| 383 | "140469597101328" -> "140469582714416" [color = dimgrey]; | ||
| 384 | "140469597101328" -> "140469582785984" [color = dimgrey]; | ||
| 385 | "140469597101328" -> "140469949283072" [color = dimgrey]; | ||
| 386 | "140469597101328" -> "140469582444784" [color = dimgrey]; | ||
| 387 | "140469597101328" -> "140469588041728" [color = dimgrey]; | ||
| 388 | "140469597101328" -> "140469949282192" [color = dimgrey]; | ||
| 389 | "140469597101328" -> "140469587681632" [color = dimgrey]; | ||
| 390 | "140469597101328" -> "140469597183776" [color = dimgrey]; | ||
| 391 | "140469597101328" -> "140469597101680" [color = dimgrey]; | ||
| 392 | "140469597101328" -> "140469583332384" [color = dimgrey]; | ||
| 393 | "140469597101328" -> "140469597028704" [color = dimgrey]; | ||
| 394 | "140469594578544" [label = "jsoncpp@1.9.5", shape = box, fontname = sans]; | ||
| 395 | "140469597125200" [label = "libdbusmenu@16.04.0-496", shape = box, fontname = sans]; | ||
| 396 | "140469597125200" -> "140469587708144" [color = red]; | ||
| 397 | "140469597125200" -> "140469587706736" [color = red]; | ||
| 398 | "140469597125200" -> "140469583334672" [color = red]; | ||
| 399 | "140469597125200" -> "140469583334144" [color = red]; | ||
| 400 | "140469597125200" -> "140469582469184" [color = red]; | ||
| 401 | "140469597125200" -> "140469597098864" [color = red]; | ||
| 402 | "140469597125200" -> "140469583333792" [color = red]; | ||
| 403 | "140469597125200" -> "140469582552688" [color = red]; | ||
| 404 | "140469597125200" -> "140469587706560" [color = red]; | ||
| 405 | "140469597125200" -> "140469597183776" [color = red]; | ||
| 406 | "140469597125200" -> "140469949282192" [color = red]; | ||
| 407 | "140469597125200" -> "140469587709552" [color = red]; | ||
| 408 | "140469597125200" -> "140469588746944" [color = red]; | ||
| 409 | "140469597125200" -> "140469582517280" [color = red]; | ||
| 410 | "140469597125200" -> "140469583334672" [color = red]; | ||
| 411 | "140469597125200" -> "140469597078912" [color = red]; | ||
| 412 | "140469597125200" -> "140469597079088" [color = red]; | ||
| 413 | "140469587708144" [label = "autoconf@2.69", shape = box, fontname = sans]; | ||
| 414 | "140469587708144" -> "140469588041728" [color = dimgrey]; | ||
| 415 | "140469587708144" -> "140469949283072" [color = dimgrey]; | ||
| 416 | "140469587708144" -> "140469588043664" [color = dimgrey]; | ||
| 417 | "140469587708144" -> "140469949283072" [color = dimgrey]; | ||
| 418 | "140469587708144" -> "140469588041728" [color = dimgrey]; | ||
| 419 | "140469587706736" [label = "automake@1.16.5", shape = box, fontname = sans]; | ||
| 420 | "140469587706736" -> "140469587707264" [color = darkviolet]; | ||
| 421 | "140469587706736" -> "140469588041728" [color = darkviolet]; | ||
| 422 | "140469587706736" -> "140469587707264" [color = darkviolet]; | ||
| 423 | "140469587706736" -> "140469588043664" [color = darkviolet]; | ||
| 424 | "140469587706736" -> "140469588041728" [color = darkviolet]; | ||
| 425 | "140469587707264" [label = "autoconf-wrapper@2.69", shape = box, fontname = sans]; | ||
| 426 | "140469582469184" [label = "gnome-common@3.18.0", shape = box, fontname = sans]; | ||
| 427 | "140469597098864" [label = "gtk-doc@1.33.2", shape = box, fontname = sans]; | ||
| 428 | "140469597098864" -> "140469587101232" [color = cyan3]; | ||
| 429 | "140469597098864" -> "140469583334672" [color = cyan3]; | ||
| 430 | "140469597098864" -> "140469583334144" [color = cyan3]; | ||
| 431 | "140469597098864" -> "140469583333616" [color = cyan3]; | ||
| 432 | "140469597098864" -> "140469588041728" [color = cyan3]; | ||
| 433 | "140469597098864" -> "140469949282192" [color = cyan3]; | ||
| 434 | "140469597098864" -> "140469587709552" [color = cyan3]; | ||
| 435 | "140469597098864" -> "140469587780992" [color = cyan3]; | ||
| 436 | "140469597098864" -> "140469587102112" [color = cyan3]; | ||
| 437 | "140469597098864" -> "140469587009888" [color = cyan3]; | ||
| 438 | "140469597098864" -> "140469587103520" [color = cyan3]; | ||
| 439 | "140469597098864" -> "140469583334672" [color = cyan3]; | ||
| 440 | "140469597098864" -> "140469597123088" [color = cyan3]; | ||
| 441 | "140469597098864" -> "140469597183776" [color = cyan3]; | ||
| 442 | "140469597098864" -> "140469587681632" [color = cyan3]; | ||
| 443 | "140469597098864" -> "140469583852752" [color = cyan3]; | ||
| 444 | "140469597098864" -> "140469597219936" [color = cyan3]; | ||
| 445 | "140469597098864" -> "140469587619616" [color = cyan3]; | ||
| 446 | "140469597098864" -> "140469583879440" [color = cyan3]; | ||
| 447 | "140469597098864" -> "140469595822144" [color = cyan3]; | ||
| 448 | "140469597098864" -> "140469582591184" [color = cyan3]; | ||
| 449 | "140469583333616" [label = "itstool@2.0.7", shape = box, fontname = sans]; | ||
| 450 | "140469587780992" [label = "bc@1.07.1", shape = box, fontname = sans]; | ||
| 451 | "140469587102112" [label = "dblatex@0.3.12", shape = box, fontname = sans]; | ||
| 452 | "140469583852752" [label = "python-anytree@2.8.0", shape = box, fontname = sans]; | ||
| 453 | "140469597219936" [label = "python-lxml@4.9.1", shape = box, fontname = sans]; | ||
| 454 | "140469587619616" [label = "python-parameterized@0.8.1", shape = box, fontname = sans]; | ||
| 455 | "140469583879440" [label = "python-pygments@2.12.0", shape = box, fontname = sans]; | ||
| 456 | "140469595822144" [label = "source-highlight@3.1.9", shape = box, fontname = sans]; | ||
| 457 | "140469583333792" [label = "intltool@0.51.0", shape = box, fontname = sans]; | ||
| 458 | "140469583333792" -> "140469800726304" [color = red]; | ||
| 459 | "140469583333792" -> "140469587101232" [color = red]; | ||
| 460 | "140469583333792" -> "140469597182896" [color = red]; | ||
| 461 | "140469583333792" -> "140469588041728" [color = red]; | ||
| 462 | "140469597182896" [label = "perl-xml-parser@2.46", shape = box, fontname = sans]; | ||
| 463 | "140469582552688" [label = "json-glib@1.6.2", shape = box, fontname = sans]; | ||
| 464 | "140469582552688" -> "140469587009888" [color = cyan3]; | ||
| 465 | "140469582552688" -> "140469587103520" [color = cyan3]; | ||
| 466 | "140469582552688" -> "140469583334144" [color = cyan3]; | ||
| 467 | "140469582552688" -> "140469597098864" [color = cyan3]; | ||
| 468 | "140469582552688" -> "140469597183776" [color = cyan3]; | ||
| 469 | "140469582552688" -> "140469587101232" [color = cyan3]; | ||
| 470 | "140469582552688" -> "140469583334672" [color = cyan3]; | ||
| 471 | "140469582552688" -> "140469949282192" [color = cyan3]; | ||
| 472 | "140469582552688" -> "140469588043664" [color = cyan3]; | ||
| 473 | "140469582552688" -> "140469583334672" [color = cyan3]; | ||
| 474 | "140469587706560" [label = "libtool@2.4.7", shape = box, fontname = sans]; | ||
| 475 | "140469587706560" -> "140469949283072" [color = darkviolet]; | ||
| 476 | "140469587706560" -> "140469588041728" [color = darkviolet]; | ||
| 477 | "140469587706560" -> "140469587706208" [color = darkviolet]; | ||
| 478 | "140469587706560" -> "140469587242432" [color = darkviolet]; | ||
| 479 | "140469587706560" -> "140469587706736" [color = darkviolet]; | ||
| 480 | "140469587706560" -> "140469587707264" [color = darkviolet]; | ||
| 481 | "140469587706560" -> "140469949283072" [color = darkviolet]; | ||
| 482 | "140469587706208" [label = "libltdl@2.4.7", shape = box, fontname = sans]; | ||
| 483 | "140469587242432" [label = "help2man@1.49.2", shape = box, fontname = sans]; | ||
| 484 | "140469588746944" [label = "which@2.21", shape = box, fontname = sans]; | ||
| 485 | "140469582517280" [label = "vala@0.56.3", shape = box, fontname = sans]; | ||
| 486 | "140469582517280" -> "140469587241728" [color = dimgrey]; | ||
| 487 | "140469582517280" -> "140469583245312" [color = dimgrey]; | ||
| 488 | "140469582517280" -> "140469587010064" [color = dimgrey]; | ||
| 489 | "140469582517280" -> "140469587103520" [color = dimgrey]; | ||
| 490 | "140469582517280" -> "140469587241904" [color = dimgrey]; | ||
| 491 | "140469582517280" -> "140469583334144" [color = dimgrey]; | ||
| 492 | "140469582517280" -> "140469587242432" [color = dimgrey]; | ||
| 493 | "140469582517280" -> "140469588041728" [color = dimgrey]; | ||
| 494 | "140469582517280" -> "140469949282192" [color = dimgrey]; | ||
| 495 | "140469582517280" -> "140469597183776" [color = dimgrey]; | ||
| 496 | "140469582517280" -> "140469583334672" [color = dimgrey]; | ||
| 497 | "140469582517280" -> "140469582714416" [color = dimgrey]; | ||
| 498 | "140469587241728" [label = "bison@3.8.2", shape = box, fontname = sans]; | ||
| 499 | "140469587241904" [label = "flex@2.6.4", shape = box, fontname = sans]; | ||
| 500 | "140469597079088" [label = "gtk+@2.24.33", shape = box, fontname = sans]; | ||
| 501 | "140469597079088" -> "140469587101232" [color = darkgoldenrod]; | ||
| 502 | "140469597079088" -> "140469583334672" [color = darkgoldenrod]; | ||
| 503 | "140469597079088" -> "140469583334144" [color = darkgoldenrod]; | ||
| 504 | "140469597079088" -> "140469583333792" [color = darkgoldenrod]; | ||
| 505 | "140469597079088" -> "140469588041728" [color = darkgoldenrod]; | ||
| 506 | "140469597079088" -> "140469949282192" [color = darkgoldenrod]; | ||
| 507 | "140469597079088" -> "140469587709552" [color = darkgoldenrod]; | ||
| 508 | "140469597079088" -> "140469595745200" [color = darkgoldenrod]; | ||
| 509 | "140469597079088" -> "140469597961664" [color = darkgoldenrod]; | ||
| 510 | "140469597079088" -> "140469595744496" [color = darkgoldenrod]; | ||
| 511 | "140469597079088" -> "140469595633552" [color = darkgoldenrod]; | ||
| 512 | "140469597079088" -> "140469595744144" [color = darkgoldenrod]; | ||
| 513 | "140469597079088" -> "140469595724368" [color = darkgoldenrod]; | ||
| 514 | "140469597079088" -> "140469595724544" [color = darkgoldenrod]; | ||
| 515 | "140469597079088" -> "140469595722080" [color = darkgoldenrod]; | ||
| 516 | "140469597079088" -> "140469595724192" [color = darkgoldenrod]; | ||
| 517 | "140469597079088" -> "140469617434224" [color = darkgoldenrod]; | ||
| 518 | "140469597079088" -> "140469595721904" [color = darkgoldenrod]; | ||
| 519 | "140469597079088" -> "140469595723840" [color = darkgoldenrod]; | ||
| 520 | "140469597079088" -> "140469595634960" [color = darkgoldenrod]; | ||
| 521 | "140469597079088" -> "140469597079792" [color = darkgoldenrod]; | ||
| 522 | "140469597079088" -> "140469597029760" [color = darkgoldenrod]; | ||
| 523 | "140469597079088" -> "140469583334672" [color = darkgoldenrod]; | ||
| 524 | "140469597079088" -> "140469582492528" [color = darkgoldenrod]; | ||
| 525 | "140469597079088" -> "140469597028704" [color = darkgoldenrod]; | ||
| 526 | "140469595671472" [label = "libevdev@1.11.0", shape = box, fontname = sans]; | ||
| 527 | "140469595671472" -> "140469587681632" [color = darkviolet]; | ||
| 528 | "140469598182848" [label = "libinput-minimal@1.22.1", shape = box, fontname = sans]; | ||
| 529 | "140469598182848" -> "140469587518320" [color = peachpuff4]; | ||
| 530 | "140469598182848" -> "140469949282192" [color = peachpuff4]; | ||
| 531 | "140469598182848" -> "140469595671472" [color = peachpuff4]; | ||
| 532 | "140469598182848" -> "140469617432992" [color = peachpuff4]; | ||
| 533 | "140469598182848" -> "140469585253584" [color = peachpuff4]; | ||
| 534 | "140469587518320" [label = "check@0.15.2", shape = box, fontname = sans]; | ||
| 535 | "140469617432992" [label = "mtdev@1.1.6", shape = box, fontname = sans]; | ||
| 536 | "140469651766896" [label = "libmpdclient@2.20", shape = box, fontname = sans]; | ||
| 537 | "140469651766896" -> "140469949282192" [color = darkviolet]; | ||
| 538 | "140469651766896" -> "140469582785984" [color = darkviolet]; | ||
| 539 | "140469651766896" -> "140469587518320" [color = darkviolet]; | ||
| 540 | "140469585233104" [label = "libnl@3.5.0", shape = box, fontname = sans]; | ||
| 541 | "140469585233104" -> "140469587241728" [color = cyan3]; | ||
| 542 | "140469585233104" -> "140469587241904" [color = cyan3]; | ||
| 543 | "140469585233104" -> "140469949282192" [color = cyan3]; | ||
| 544 | "140469585233104" -> "140469586916912" [color = cyan3]; | ||
| 545 | "140469586916912" [label = "swig@4.0.2", shape = box, fontname = sans]; | ||
| 546 | "140469586916912" -> "140469586918496" [color = cyan3]; | ||
| 547 | "140469586916912" -> "140469978866720" [color = cyan3]; | ||
| 548 | "140469586916912" -> "140469584737136" [color = cyan3]; | ||
| 549 | "140469586916912" -> "140469588041728" [color = cyan3]; | ||
| 550 | "140469586916912" -> "140469978866720" [color = cyan3]; | ||
| 551 | "140469584737136" [label = "guile@3.0.9", shape = box, fontname = sans]; | ||
| 552 | "140469585350656" [label = "pipewire@0.3.77", shape = box, fontname = sans]; | ||
| 553 | "140469585350656" -> "140469583334672" [color = darkgoldenrod]; | ||
| 554 | "140469585350656" -> "140469949282192" [color = darkgoldenrod]; | ||
| 555 | "140469585350656" -> "140469583851872" [color = darkgoldenrod]; | ||
| 556 | "140469585350656" -> "140469585235040" [color = darkgoldenrod]; | ||
| 557 | "140469585350656" -> "140469583358368" [color = darkgoldenrod]; | ||
| 558 | "140469585350656" -> "140469585295952" [color = darkgoldenrod]; | ||
| 559 | "140469585350656" -> "140469583245312" [color = darkgoldenrod]; | ||
| 560 | "140469585350656" -> "140469585253584" [color = darkgoldenrod]; | ||
| 561 | "140469585350656" -> "140469617922224" [color = darkgoldenrod]; | ||
| 562 | "140469585350656" -> "140469596122208" [color = darkgoldenrod]; | ||
| 563 | "140469585350656" -> "140469596122384" [color = darkgoldenrod]; | ||
| 564 | "140469585350656" -> "140469582226112" [color = darkgoldenrod]; | ||
| 565 | "140469585350656" -> "140469582287728" [color = darkgoldenrod]; | ||
| 566 | "140469585350656" -> "140469596128816" [color = darkgoldenrod]; | ||
| 567 | "140469585350656" -> "140469582310848" [color = darkgoldenrod]; | ||
| 568 | "140469585350656" -> "140469582310672" [color = darkgoldenrod]; | ||
| 569 | "140469585350656" -> "140469651957824" [color = darkgoldenrod]; | ||
| 570 | "140469585350656" -> "140469611677584" [color = darkgoldenrod]; | ||
| 571 | "140469585350656" -> "140469594632896" [color = darkgoldenrod]; | ||
| 572 | "140469585350656" -> "140469617922576" [color = darkgoldenrod]; | ||
| 573 | "140469585350656" -> "140469651957472" [color = darkgoldenrod]; | ||
| 574 | "140469585350656" -> "140469978867424" [color = darkgoldenrod]; | ||
| 575 | "140469585350656" -> "140469585296128" [color = darkgoldenrod]; | ||
| 576 | "140469585350656" -> "140469654979264" [color = darkgoldenrod]; | ||
| 577 | "140469585350656" -> "140469654979088" [color = darkgoldenrod]; | ||
| 578 | "140469585350656" -> "140469582124768" [color = darkgoldenrod]; | ||
| 579 | "140469583851872" [label = "python-docutils@0.19", shape = box, fontname = sans]; | ||
| 580 | "140469585235040" [label = "alsa-lib@1.2.4", shape = box, fontname = sans]; | ||
| 581 | "140469585235040" -> "140469585235392" [color = darkgoldenrod]; | ||
| 582 | "140469585235040" -> "140469585235216" [color = darkgoldenrod]; | ||
| 583 | "140469585235392" [label = "alsa-ucm-conf@1.2.4", shape = box, fontname = sans]; | ||
| 584 | "140469585235216" [label = "alsa-topology-conf@1.2.4", shape = box, fontname = sans]; | ||
| 585 | "140469583358368" [label = "avahi@0.8", shape = box, fontname = sans]; | ||
| 586 | "140469583358368" -> "140469587101232" [color = dimgrey]; | ||
| 587 | "140469583358368" -> "140469583334672" [color = dimgrey]; | ||
| 588 | "140469583358368" -> "140469949282192" [color = dimgrey]; | ||
| 589 | "140469583358368" -> "140469588043664" [color = dimgrey]; | ||
| 590 | "140469583358368" -> "140469583245312" [color = dimgrey]; | ||
| 591 | "140469583358368" -> "140469597123440" [color = dimgrey]; | ||
| 592 | "140469583358368" -> "140469949282368" [color = dimgrey]; | ||
| 593 | "140469583358368" -> "140469583334672" [color = dimgrey]; | ||
| 594 | "140469583358368" -> "140469585233456" [color = dimgrey]; | ||
| 595 | "140469583358368" -> "140469583358544" [color = dimgrey]; | ||
| 596 | "140469583358368" -> "140469597292256" [color = dimgrey]; | ||
| 597 | "140469585233456" [label = "libcap@2.64", shape = box, fontname = sans]; | ||
| 598 | "140469583358544" [label = "libdaemon@0.14", shape = box, fontname = sans]; | ||
| 599 | "140469597292256" [label = "libevent@2.1.12", shape = box, fontname = sans]; | ||
| 600 | "140469585295952" [label = "bluez@5.66", shape = box, fontname = sans]; | ||
| 601 | "140469585295952" -> "140469587101232" [color = dimgrey]; | ||
| 602 | "140469585295952" -> "140469949282192" [color = dimgrey]; | ||
| 603 | "140469585295952" -> "140469583851872" [color = dimgrey]; | ||
| 604 | "140469585295952" -> "140469583334672" [color = dimgrey]; | ||
| 605 | "140469585295952" -> "140469583245312" [color = dimgrey]; | ||
| 606 | "140469585295952" -> "140469585253584" [color = dimgrey]; | ||
| 607 | "140469585295952" -> "140469583013952" [color = dimgrey]; | ||
| 608 | "140469585295952" -> "140469978867424" [color = dimgrey]; | ||
| 609 | "140469583013952" [label = "libical@3.0.16", shape = box, fontname = sans]; | ||
| 610 | "140469617922224" [label = "ffmpeg@6.0", shape = box, fontname = sans]; | ||
| 611 | "140469617922224" -> "140469587780992" [color = peachpuff4]; | ||
| 612 | "140469617922224" -> "140469588041728" [color = peachpuff4]; | ||
| 613 | "140469617922224" -> "140469949282192" [color = peachpuff4]; | ||
| 614 | "140469617922224" -> "140469587100352" [color = peachpuff4]; | ||
| 615 | "140469617922224" -> "140469616840304" [color = peachpuff4]; | ||
| 616 | "140469617922224" -> "140469587936112" [color = peachpuff4]; | ||
| 617 | "140469617922224" -> "140469618018368" [color = peachpuff4]; | ||
| 618 | "140469617922224" -> "140469618019776" [color = peachpuff4]; | ||
| 619 | "140469617922224" -> "140469587309248" [color = peachpuff4]; | ||
| 620 | "140469617922224" -> "140469587241376" [color = peachpuff4]; | ||
| 621 | "140469617922224" -> "140469617992736" [color = peachpuff4]; | ||
| 622 | "140469617922224" -> "140469594633952" [color = peachpuff4]; | ||
| 623 | "140469617922224" -> "140469616839248" [color = peachpuff4]; | ||
| 624 | "140469617922224" -> "140469582225408" [color = peachpuff4]; | ||
| 625 | "140469617922224" -> "140469611679344" [color = peachpuff4]; | ||
| 626 | "140469617922224" -> "140469617924864" [color = peachpuff4]; | ||
| 627 | "140469617922224" -> "140469617923632" [color = peachpuff4]; | ||
| 628 | "140469617922224" -> "140469617955168" [color = peachpuff4]; | ||
| 629 | "140469617922224" -> "140469617923456" [color = peachpuff4]; | ||
| 630 | "140469617922224" -> "140469582324944" [color = peachpuff4]; | ||
| 631 | "140469617922224" -> "140469617433168" [color = peachpuff4]; | ||
| 632 | "140469617922224" -> "140469616840480" [color = peachpuff4]; | ||
| 633 | "140469617922224" -> "140469617922576" [color = peachpuff4]; | ||
| 634 | "140469617922224" -> "140469617972256" [color = peachpuff4]; | ||
| 635 | "140469617922224" -> "140469651955712" [color = peachpuff4]; | ||
| 636 | "140469617922224" -> "140469617956576" [color = peachpuff4]; | ||
| 637 | "140469617922224" -> "140469584961536" [color = peachpuff4]; | ||
| 638 | "140469617922224" -> "140469595744496" [color = peachpuff4]; | ||
| 639 | "140469617922224" -> "140469617924512" [color = peachpuff4]; | ||
| 640 | "140469617922224" -> "140469596004352" [color = peachpuff4]; | ||
| 641 | "140469617922224" -> "140469582242672" [color = peachpuff4]; | ||
| 642 | "140469617922224" -> "140469651957472" [color = peachpuff4]; | ||
| 643 | "140469617922224" -> "140469654833040" [color = peachpuff4]; | ||
| 644 | "140469617922224" -> "140469582266544" [color = peachpuff4]; | ||
| 645 | "140469617922224" -> "140469616840304" [color = peachpuff4]; | ||
| 646 | "140469617922224" -> "140469596127936" [color = peachpuff4]; | ||
| 647 | "140469617922224" -> "140469582266368" [color = peachpuff4]; | ||
| 648 | "140469617922224" -> "140469617991856" [color = peachpuff4]; | ||
| 649 | "140469617922224" -> "140469617923808" [color = peachpuff4]; | ||
| 650 | "140469617922224" -> "140469617974192" [color = peachpuff4]; | ||
| 651 | "140469617922224" -> "140469587966544" [color = peachpuff4]; | ||
| 652 | "140469587100352" [label = "texinfo@6.8", shape = box, fontname = sans]; | ||
| 653 | "140469616840304" [label = "speex@1.2.1", shape = box, fontname = sans]; | ||
| 654 | "140469587936112" [label = "yasm@1.3.0", shape = box, fontname = sans]; | ||
| 655 | "140469618018368" [label = "rav1e@0.6.3", shape = box, fontname = sans]; | ||
| 656 | "140469618019776" [label = "dav1d@1.0.0", shape = box, fontname = sans]; | ||
| 657 | "140469617992736" [label = "frei0r-plugins@1.7.0", shape = box, fontname = sans]; | ||
| 658 | "140469594633952" [label = "gnutls@3.7.7", shape = box, fontname = sans]; | ||
| 659 | "140469616839248" [label = "opus@1.3.1", shape = box, fontname = sans]; | ||
| 660 | "140469582225408" [label = "ladspa@1.13", shape = box, fontname = sans]; | ||
| 661 | "140469611679344" [label = "lame@3.100", shape = box, fontname = sans]; | ||
| 662 | "140469617924864" [label = "libaom@3.5.0", shape = box, fontname = sans]; | ||
| 663 | "140469617923632" [label = "libass@0.15.1", shape = box, fontname = sans]; | ||
| 664 | "140469617955168" [label = "libbluray@1.0.2", shape = box, fontname = sans]; | ||
| 665 | "140469617923456" [label = "libcaca@0.99.beta19", shape = box, fontname = sans]; | ||
| 666 | "140469582324944" [label = "libcdio-paranoia@10.2+2.0.1", shape = box, fontname = sans]; | ||
| 667 | "140469617433168" [label = "libdrm@2.4.114", shape = box, fontname = sans]; | ||
| 668 | "140469616840480" [label = "libtheora@1.1.1", shape = box, fontname = sans]; | ||
| 669 | "140469617922576" [label = "libva@2.19.0", shape = box, fontname = sans]; | ||
| 670 | "140469617972256" [label = "libvdpau@1.5", shape = box, fontname = sans]; | ||
| 671 | "140469651955712" [label = "libvorbis@1.3.7", shape = box, fontname = sans]; | ||
| 672 | "140469617956576" [label = "libvpx@1.12.0", shape = box, fontname = sans]; | ||
| 673 | "140469584961536" [label = "libwebp@1.2.4", shape = box, fontname = sans]; | ||
| 674 | "140469617924512" [label = "libx264@164-0.b093bbe", shape = box, fontname = sans]; | ||
| 675 | "140469582242672" [label = "openal@1.22.2", shape = box, fontname = sans]; | ||
| 676 | "140469651957472" [label = "pulseaudio@16.1", shape = box, fontname = sans]; | ||
| 677 | "140469654833040" [label = "sdl2@2.26.2", shape = box, fontname = sans]; | ||
| 678 | "140469582266544" [label = "soxr@0.1.3", shape = box, fontname = sans]; | ||
| 679 | "140469596127936" [label = "srt@1.4.4", shape = box, fontname = sans]; | ||
| 680 | "140469582266368" [label = "twolame@0.4.0", shape = box, fontname = sans]; | ||
| 681 | "140469617991856" [label = "vidstab@1.1.0-0.aeabc8d", shape = box, fontname = sans]; | ||
| 682 | "140469617923808" [label = "x265@3.5", shape = box, fontname = sans]; | ||
| 683 | "140469617974192" [label = "xvid@1.3.7", shape = box, fontname = sans]; | ||
| 684 | "140469596122208" [label = "gst-plugins-base@1.22.2", shape = box, fontname = sans]; | ||
| 685 | "140469596122208" -> "140469949282192" [color = peachpuff4]; | ||
| 686 | "140469596122208" -> "140469583334672" [color = peachpuff4]; | ||
| 687 | "140469596122208" -> "140469583334144" [color = peachpuff4]; | ||
| 688 | "140469596122208" -> "140469587709552" [color = peachpuff4]; | ||
| 689 | "140469596122208" -> "140469587101232" [color = peachpuff4]; | ||
| 690 | "140469596122208" -> "140469595745200" [color = peachpuff4]; | ||
| 691 | "140469596122208" -> "140469585235040" [color = peachpuff4]; | ||
| 692 | "140469596122208" -> "140469582324592" [color = peachpuff4]; | ||
| 693 | "140469596122208" -> "140469597126256" [color = peachpuff4]; | ||
| 694 | "140469596122208" -> "140469803228784" [color = peachpuff4]; | ||
| 695 | "140469596122208" -> "140469584988048" [color = peachpuff4]; | ||
| 696 | "140469596122208" -> "140469651955888" [color = peachpuff4]; | ||
| 697 | "140469596122208" -> "140469584868032" [color = peachpuff4]; | ||
| 698 | "140469596122208" -> "140469616840480" [color = peachpuff4]; | ||
| 699 | "140469596122208" -> "140469596082352" [color = peachpuff4]; | ||
| 700 | "140469596122208" -> "140469651955712" [color = peachpuff4]; | ||
| 701 | "140469596122208" -> "140469595744496" [color = peachpuff4]; | ||
| 702 | "140469596122208" -> "140469595724368" [color = peachpuff4]; | ||
| 703 | "140469596122208" -> "140469595723488" [color = peachpuff4]; | ||
| 704 | "140469596122208" -> "140469596004352" [color = peachpuff4]; | ||
| 705 | "140469596122208" -> "140469616839248" [color = peachpuff4]; | ||
| 706 | "140469596122208" -> "140469597028704" [color = peachpuff4]; | ||
| 707 | "140469596122208" -> "140469598181088" [color = peachpuff4]; | ||
| 708 | "140469596122208" -> "140469587966544" [color = peachpuff4]; | ||
| 709 | "140469596122208" -> "140469583334672" [color = peachpuff4]; | ||
| 710 | "140469596122208" -> "140469596122384" [color = peachpuff4]; | ||
| 711 | "140469596122208" -> "140469582592944" [color = peachpuff4]; | ||
| 712 | "140469596122208" -> "140469598181264" [color = peachpuff4]; | ||
| 713 | "140469596122208" -> "140469596122736" [color = peachpuff4]; | ||
| 714 | "140469582324592" [label = "cdparanoia@10.2", shape = box, fontname = sans]; | ||
| 715 | "140469584988048" [label = "libjpeg-turbo@2.1.4", shape = box, fontname = sans]; | ||
| 716 | "140469651955888" [label = "libogg@1.3.5", shape = box, fontname = sans]; | ||
| 717 | "140469584868032" [label = "libpng@1.6.37", shape = box, fontname = sans]; | ||
| 718 | "140469596082352" [label = "libvisual@0.4.0", shape = box, fontname = sans]; | ||
| 719 | "140469596122384" [label = "gstreamer@1.22.2", shape = box, fontname = sans]; | ||
| 720 | "140469582592944" [label = "libgudev@236", shape = box, fontname = sans]; | ||
| 721 | "140469596122736" [label = "orc@0.4.32", shape = box, fontname = sans]; | ||
| 722 | "140469582226112" [label = "jack2@1.9.21", shape = box, fontname = sans]; | ||
| 723 | "140469582226112" -> "140469949282192" [color = red]; | ||
| 724 | "140469582226112" -> "140469585235040" [color = red]; | ||
| 725 | "140469582226112" -> "140469583245312" [color = red]; | ||
| 726 | "140469582226112" -> "140469597123440" [color = red]; | ||
| 727 | "140469582226112" -> "140469651957648" [color = red]; | ||
| 728 | "140469582226112" -> "140469616839248" [color = red]; | ||
| 729 | "140469582226112" -> "140469584014256" [color = red]; | ||
| 730 | "140469582226112" -> "140469978867424" [color = red]; | ||
| 731 | "140469582226112" -> "140469585209584" [color = red]; | ||
| 732 | "140469582226112" -> "140469949282544" [color = red]; | ||
| 733 | "140469651957648" [label = "libsamplerate@0.1.9", shape = box, fontname = sans]; | ||
| 734 | "140469584014256" [label = "python-dbus@1.2.18", shape = box, fontname = sans]; | ||
| 735 | "140469949282544" [label = "bdb@6.2.32", shape = box, fontname = sans]; | ||
| 736 | "140469582287728" [label = "ldacbt@2.0.2.3", shape = box, fontname = sans]; | ||
| 737 | "140469596128816" [label = "libcamera@0.1.0", shape = box, fontname = sans]; | ||
| 738 | "140469596128816" -> "140469587595968" [color = darkseagreen]; | ||
| 739 | "140469596128816" -> "140469582714416" [color = darkseagreen]; | ||
| 740 | "140469596128816" -> "140469582785984" [color = darkseagreen]; | ||
| 741 | "140469596128816" -> "140469949282192" [color = darkseagreen]; | ||
| 742 | "140469596128816" -> "140469587709552" [color = darkseagreen]; | ||
| 743 | "140469596128816" -> "140469582076320" [color = darkseagreen]; | ||
| 744 | "140469596128816" -> "140469583827296" [color = darkseagreen]; | ||
| 745 | "140469596128816" -> "140469586918496" [color = darkseagreen]; | ||
| 746 | "140469596128816" -> "140469585253584" [color = darkseagreen]; | ||
| 747 | "140469596128816" -> "140469583334672" [color = darkseagreen]; | ||
| 748 | "140469596128816" -> "140469596122208" [color = darkseagreen]; | ||
| 749 | "140469596128816" -> "140469594633952" [color = darkseagreen]; | ||
| 750 | "140469596128816" -> "140469584964352" [color = darkseagreen]; | ||
| 751 | "140469596128816" -> "140469594550800" [color = darkseagreen]; | ||
| 752 | "140469596128816" -> "140469594632896" [color = darkseagreen]; | ||
| 753 | "140469596128816" -> "140469583853984" [color = darkseagreen]; | ||
| 754 | "140469596128816" -> "140469584256096" [color = darkseagreen]; | ||
| 755 | "140469596128816" -> "140469801413904" [color = darkseagreen]; | ||
| 756 | "140469587595968" [label = "googletest@1.12.1", shape = box, fontname = sans]; | ||
| 757 | "140469582076320" [label = "python-sphinx@5.1.1", shape = box, fontname = sans]; | ||
| 758 | "140469583827296" [label = "python-pyyaml@6.0", shape = box, fontname = sans]; | ||
| 759 | "140469584964352" [label = "libtiff@4.4.0", shape = box, fontname = sans]; | ||
| 760 | "140469594550800" [label = "libyaml@0.2.5", shape = box, fontname = sans]; | ||
| 761 | "140469583853984" [label = "python-jinja2@3.1.1", shape = box, fontname = sans]; | ||
| 762 | "140469584256096" [label = "python-ply@3.11", shape = box, fontname = sans]; | ||
| 763 | "140469801413904" [label = "qtbase@5.15.10", shape = box, fontname = sans]; | ||
| 764 | "140469582310848" [label = "libfdk@2.0.1", shape = box, fontname = sans]; | ||
| 765 | "140469582310848" -> "140469587708144" [color = darkseagreen]; | ||
| 766 | "140469582310848" -> "140469587706736" [color = darkseagreen]; | ||
| 767 | "140469582310848" -> "140469587706560" [color = darkseagreen]; | ||
| 768 | "140469582310672" [label = "libfreeaptx@0.1.1", shape = box, fontname = sans]; | ||
| 769 | "140469651957824" [label = "libsndfile@1.2.0", shape = box, fontname = sans]; | ||
| 770 | "140469651957824" -> "140469587708144" [color = peachpuff4]; | ||
| 771 | "140469651957824" -> "140469584803552" [color = peachpuff4]; | ||
| 772 | "140469651957824" -> "140469587706736" [color = peachpuff4]; | ||
| 773 | "140469651957824" -> "140469587706560" [color = peachpuff4]; | ||
| 774 | "140469651957824" -> "140469949282192" [color = peachpuff4]; | ||
| 775 | "140469651957824" -> "140469587681632" [color = peachpuff4]; | ||
| 776 | "140469651957824" -> "140469616839776" [color = peachpuff4]; | ||
| 777 | "140469651957824" -> "140469651955888" [color = peachpuff4]; | ||
| 778 | "140469651957824" -> "140469651955712" [color = peachpuff4]; | ||
| 779 | "140469651957824" -> "140469616839248" [color = peachpuff4]; | ||
| 780 | "140469584803552" [label = "autogen@5.18.16", shape = box, fontname = sans]; | ||
| 781 | "140469616839776" [label = "flac@1.3.4", shape = box, fontname = sans]; | ||
| 782 | "140469611677584" [label = "libusb@1.0.25", shape = box, fontname = sans]; | ||
| 783 | "140469585296128" [label = "sbc@1.5", shape = box, fontname = sans]; | ||
| 784 | "140469585296128" -> "140469949282192" [color = darkviolet]; | ||
| 785 | "140469585296128" -> "140469651957824" [color = darkviolet]; | ||
| 786 | "140469654979264" [label = "vulkan-headers@sdk-1.3.231.1", shape = box, fontname = sans]; | ||
| 787 | "140469654979088" [label = "vulkan-loader@sdk-1.3.232", shape = box, fontname = sans]; | ||
| 788 | "140469654979088" -> "140469587595968" [color = darkseagreen]; | ||
| 789 | "140469654979088" -> "140469595721904" [color = darkseagreen]; | ||
| 790 | "140469654979088" -> "140469949282192" [color = darkseagreen]; | ||
| 791 | "140469654979088" -> "140469587681632" [color = darkseagreen]; | ||
| 792 | "140469654979088" -> "140469598181264" [color = darkseagreen]; | ||
| 793 | "140469654979088" -> "140469654979264" [color = darkseagreen]; | ||
| 794 | "140469582124768" [label = "webrtc-audio-processing@0.3.1", shape = box, fontname = sans]; | ||
| 795 | "140469618253600" [label = "playerctl@2.4.1", shape = box, fontname = sans]; | ||
| 796 | "140469618253600" -> "140469583334672" [color = peachpuff4]; | ||
| 797 | "140469618253600" -> "140469949282192" [color = peachpuff4]; | ||
| 798 | "140469618253600" -> "140469583334144" [color = peachpuff4]; | ||
| 799 | "140469651030896" [label = "spdlog@1.12.0", shape = box, fontname = sans]; | ||
| 800 | "140469651030896" -> "140469587598080" [color = darkseagreen]; | ||
| 801 | "140469587598080" [label = "catch2@3.4.0", shape = box, fontname = sans]; | ||
| 802 | "140469587598080" -> "140469587709552" [color = dimgrey]; | ||
| 803 | "140469585375008" [label = "wireplumber@0.4.14", shape = box, fontname = sans]; | ||
| 804 | "140469585375008" -> "140469583334672" [color = magenta]; | ||
| 805 | "140469585375008" -> "140469949282192" [color = magenta]; | ||
| 806 | "140469585375008" -> "140469583245312" [color = magenta]; | ||
| 807 | "140469585375008" -> "140469598182496" [color = magenta]; | ||
| 808 | "140469585375008" -> "140469583334672" [color = magenta]; | ||
| 809 | "140469585375008" -> "140469595821792" [color = magenta]; | ||
| 810 | "140469585375008" -> "140469585350656" [color = magenta]; | ||
| 811 | "140469598182496" [label = "elogind@252.9", shape = box, fontname = sans]; | ||
| 812 | "140469598182496" -> "140469587010240" [color = dimgrey]; | ||
| 813 | "140469598182496" -> "140469587009712" [color = dimgrey]; | ||
| 814 | "140469598182496" -> "140469587103520" [color = dimgrey]; | ||
| 815 | "140469598182496" -> "140469587101232" [color = dimgrey]; | ||
| 816 | "140469598182496" -> "140469950593440" [color = dimgrey]; | ||
| 817 | "140469598182496" -> "140469597123088" [color = dimgrey]; | ||
| 818 | "140469598182496" -> "140469949283072" [color = dimgrey]; | ||
| 819 | "140469598182496" -> "140469949282192" [color = dimgrey]; | ||
| 820 | "140469598182496" -> "140469587681632" [color = dimgrey]; | ||
| 821 | "140469598182496" -> "140469583853984" [color = dimgrey]; | ||
| 822 | "140469598182496" -> "140469597183776" [color = dimgrey]; | ||
| 823 | "140469598182496" -> "140469585374656" [color = dimgrey]; | ||
| 824 | "140469598182496" -> "140469585210816" [color = dimgrey]; | ||
| 825 | "140469598182496" -> "140469585233456" [color = dimgrey]; | ||
| 826 | "140469598182496" -> "140469585209584" [color = dimgrey]; | ||
| 827 | "140469598182496" -> "140469587832832" [color = dimgrey]; | ||
| 828 | "140469598182496" -> "140469587836000" [color = dimgrey]; | ||
| 829 | "140469598182496" -> "140469583245312" [color = dimgrey]; | ||
| 830 | "140469598182496" -> "140469585253584" [color = dimgrey]; | ||
| 831 | "140469598182496" -> "140469588631152" [color = dimgrey]; | ||
| 832 | "140469950593440" [label = "gperf@3.1", shape = box, fontname = sans]; | ||
| 833 | "140469585374656" [label = "kexec-tools@2.0.23", shape = box, fontname = sans]; | ||
| 834 | "140469585210816" [label = "linux-pam@1.5.2", shape = box, fontname = sans]; | ||
| 835 | "140469587832832" [label = "shadow@4.13", shape = box, fontname = sans]; | ||
| 836 | "140469587836000" [label = "shepherd@0.9.3", shape = box, fontname = sans]; | ||
| 837 | "140469588631152" [label = "acl@2.3.1", shape = box, fontname = sans]; | ||
| 838 | "140469595821792" [label = "lua@5.3.5", shape = box, fontname = sans]; | ||
| 839 | "140469595821792" -> "140469978867424" [color = cyan3]; | ||
| 840 | |||
| 841 | } | ||
diff --git a/modules/ryan-packages/tmp2.txt b/modules/ryan-packages/tmp2.txt deleted file mode 100644 index b64a915..0000000 --- a/modules/ryan-packages/tmp2.txt +++ /dev/null | |||
| @@ -1,801 +0,0 @@ | |||
| 1 | digraph "Guix package" { | ||
| 2 | "139863263074016" [label = "waybar-new@0.9.22", shape = box, fontname = sans]; | ||
| 3 | "139863263074016" -> "139863261465872" [color = red]; | ||
| 4 | "139863263074016" -> "139863551252368" [color = red]; | ||
| 5 | "139863263074016" -> "139863275614736" [color = red]; | ||
| 6 | "139863263074016" -> "139863277045472" [color = red]; | ||
| 7 | "139863263074016" -> "139863263074368" [color = red]; | ||
| 8 | "139863263074016" -> "139863261137136" [color = red]; | ||
| 9 | "139863263074016" -> "139863274650544" [color = red]; | ||
| 10 | "139863263074016" -> "139863275968928" [color = red]; | ||
| 11 | "139863263074016" -> "139863273406064" [color = red]; | ||
| 12 | "139863263074016" -> "139863275969104" [color = red]; | ||
| 13 | "139863263074016" -> "139863274498992" [color = red]; | ||
| 14 | "139863263074016" -> "139863277047232" [color = red]; | ||
| 15 | "139863263074016" -> "139863364648560" [color = red]; | ||
| 16 | "139863263074016" -> "139863263380688" [color = red]; | ||
| 17 | "139863263074016" -> "139863275966992" [color = red]; | ||
| 18 | "139863263074016" -> "139863263506432" [color = red]; | ||
| 19 | "139863263074016" -> "139863366568880" [color = red]; | ||
| 20 | "139863263074016" -> "139863269852896" [color = red]; | ||
| 21 | "139863263074016" -> "139863363912560" [color = red]; | ||
| 22 | "139863263074016" -> "139863277045648" [color = red]; | ||
| 23 | "139863263074016" -> "139863263534880" [color = red]; | ||
| 24 | "139863261465872" [label = "glib@2.72.3", shape = box, fontname = sans]; | ||
| 25 | "139863261465872" -> "139863261376512" [color = magenta]; | ||
| 26 | "139863261465872" -> "139863265281584" [color = magenta]; | ||
| 27 | "139863261465872" -> "139863551253248" [color = magenta]; | ||
| 28 | "139863261465872" -> "139863366320128" [color = magenta]; | ||
| 29 | "139863261465872" -> "139863551252368" [color = magenta]; | ||
| 30 | "139863261465872" -> "139863585014112" [color = magenta]; | ||
| 31 | "139863261465872" -> "139863585046128" [color = magenta]; | ||
| 32 | "139863261465872" -> "139863273877680" [color = magenta]; | ||
| 33 | "139863261465872" -> "139863366322064" [color = magenta]; | ||
| 34 | "139863261465872" -> "139863585014112" [color = magenta]; | ||
| 35 | "139863261465872" -> "139863585046128" [color = magenta]; | ||
| 36 | "139863261465872" -> "139863262882384" [color = magenta]; | ||
| 37 | "139863261465872" -> "139863553025056" [color = magenta]; | ||
| 38 | "139863261465872" -> "139863263357168" [color = magenta]; | ||
| 39 | "139863261465872" -> "139863433939536" [color = magenta]; | ||
| 40 | "139863261376512" [label = "dbus@1.14.0", shape = box, fontname = sans]; | ||
| 41 | "139863261376512" -> "139863551252368" [color = cyan3]; | ||
| 42 | "139863261376512" -> "139863265194512" [color = cyan3]; | ||
| 43 | "139863261376512" -> "139863265283872" [color = cyan3]; | ||
| 44 | "139863261376512" -> "139863260908992" [color = cyan3]; | ||
| 45 | "139863261376512" -> "139863276059744" [color = cyan3]; | ||
| 46 | "139863261376512" -> "139863275966992" [color = cyan3]; | ||
| 47 | "139863261376512" -> "139863276039968" [color = cyan3]; | ||
| 48 | "139863261376512" -> "139863260722384" [color = cyan3]; | ||
| 49 | "139863261376512" -> "139863275967344" [color = cyan3]; | ||
| 50 | "139863261376512" -> "139863274567920" [color = cyan3]; | ||
| 51 | "139863551252368" [label = "pkg-config@0.29.2", shape = box, fontname = sans]; | ||
| 52 | "139863265194512" [label = "docbook-xml@4.4", shape = box, fontname = sans]; | ||
| 53 | "139863265283872" [label = "docbook-xsl@1.79.2-0.fe16c90", shape = box, fontname = sans]; | ||
| 54 | "139863260908992" [label = "doxygen@1.9.5", shape = box, fontname = sans]; | ||
| 55 | "139863276059744" [label = "xmlto@0.0.28", shape = box, fontname = sans]; | ||
| 56 | "139863275966992" [label = "libxml2@2.9.14", shape = box, fontname = sans]; | ||
| 57 | "139863276039968" [label = "libxslt@1.1.37", shape = box, fontname = sans]; | ||
| 58 | "139863260722384" [label = "yelp-tools@3.32.2", shape = box, fontname = sans]; | ||
| 59 | "139863275967344" [label = "expat@2.5.0", shape = box, fontname = sans]; | ||
| 60 | "139863274567920" [label = "libx11@1.8.1", shape = box, fontname = sans]; | ||
| 61 | "139863265281584" [label = "gettext-minimal@0.21", shape = box, fontname = sans]; | ||
| 62 | "139863265281584" -> "139863553024704" [color = magenta]; | ||
| 63 | "139863265281584" -> "139863275966992" [color = magenta]; | ||
| 64 | "139863265281584" -> "139863265096912" [color = magenta]; | ||
| 65 | "139863553024704" [label = "libunistring@1.0", shape = box, fontname = sans]; | ||
| 66 | "139863265096912" [label = "ncurses@6.2.20210619", shape = box, fontname = sans]; | ||
| 67 | "139863551253248" [label = "m4@1.4.19", shape = box, fontname = sans]; | ||
| 68 | "139863366320128" [label = "perl@5.36.0", shape = box, fontname = sans]; | ||
| 69 | "139863585014112" [label = "python@3.10.7", shape = box, fontname = sans]; | ||
| 70 | "139863585014112" -> "139863273877680" [color = red]; | ||
| 71 | "139863585014112" -> "139863366172672" [color = red]; | ||
| 72 | "139863585014112" -> "139863366172848" [color = red]; | ||
| 73 | "139863585014112" -> "139863551252368" [color = red]; | ||
| 74 | "139863585014112" -> "139863433938656" [color = red]; | ||
| 75 | "139863585014112" -> "139863275967344" [color = red]; | ||
| 76 | "139863585014112" -> "139863551252544" [color = red]; | ||
| 77 | "139863585014112" -> "139863262882384" [color = red]; | ||
| 78 | "139863585014112" -> "139863434090384" [color = red]; | ||
| 79 | "139863585014112" -> "139863273456320" [color = red]; | ||
| 80 | "139863585014112" -> "139863553025760" [color = red]; | ||
| 81 | "139863585014112" -> "139863433939536" [color = red]; | ||
| 82 | "139863585014112" -> "139863263147920" [color = red]; | ||
| 83 | "139863585014112" -> "139863263147392" [color = red]; | ||
| 84 | "139863273877680" [label = "tzdata@2022a", shape = box, fontname = sans]; | ||
| 85 | "139863366172672" [label = "unzip@6.0", shape = box, fontname = sans]; | ||
| 86 | "139863366172848" [label = "zip@3.0", shape = box, fontname = sans]; | ||
| 87 | "139863433938656" [label = "bzip2@1.0.8", shape = box, fontname = sans]; | ||
| 88 | "139863551252544" [label = "gdbm@1.23", shape = box, fontname = sans]; | ||
| 89 | "139863262882384" [label = "libffi@3.4.4", shape = box, fontname = sans]; | ||
| 90 | "139863434090384" [label = "sqlite@3.39.3", shape = box, fontname = sans]; | ||
| 91 | "139863273456320" [label = "openssl@3.0.8", shape = box, fontname = sans]; | ||
| 92 | "139863553025760" [label = "readline@8.1.2", shape = box, fontname = sans]; | ||
| 93 | "139863433939536" [label = "zlib@1.2.13", shape = box, fontname = sans]; | ||
| 94 | "139863263147920" [label = "tcl@8.6.12", shape = box, fontname = sans]; | ||
| 95 | "139863263147392" [label = "tk@8.6.12", shape = box, fontname = sans]; | ||
| 96 | "139863585046128" [label = "python-wrapper@3.10.7", shape = box, fontname = sans]; | ||
| 97 | "139863585046128" -> "139863273877680" [color = magenta]; | ||
| 98 | "139863585046128" -> "139863366172672" [color = magenta]; | ||
| 99 | "139863585046128" -> "139863366172848" [color = magenta]; | ||
| 100 | "139863585046128" -> "139863551252368" [color = magenta]; | ||
| 101 | "139863585046128" -> "139863366322240" [color = magenta]; | ||
| 102 | "139863585046128" -> "139863585014112" [color = magenta]; | ||
| 103 | "139863366322240" [label = "bash@5.1.16", shape = box, fontname = sans]; | ||
| 104 | "139863366322064" [label = "bash-minimal@5.1.16", shape = box, fontname = sans]; | ||
| 105 | "139863553025056" [label = "pcre@8.45", shape = box, fontname = sans]; | ||
| 106 | "139863553025056" -> "139863433938656" [color = darkgoldenrod]; | ||
| 107 | "139863553025056" -> "139863553025760" [color = darkgoldenrod]; | ||
| 108 | "139863553025056" -> "139863433939536" [color = darkgoldenrod]; | ||
| 109 | "139863263357168" [label = "util-linux@2.37.4", shape = box, fontname = sans]; | ||
| 110 | "139863263357168" -> "139863585205872" [color = peachpuff4]; | ||
| 111 | "139863263357168" -> "139863366320128" [color = peachpuff4]; | ||
| 112 | "139863263357168" -> "139863433047840" [color = peachpuff4]; | ||
| 113 | "139863263357168" -> "139863265096912" [color = peachpuff4]; | ||
| 114 | "139863263357168" -> "139863433939536" [color = peachpuff4]; | ||
| 115 | "139863585205872" [label = "net-base@5.3", shape = box, fontname = sans]; | ||
| 116 | "139863433047840" [label = "file@5.44", shape = box, fontname = sans]; | ||
| 117 | "139863275614736" [label = "scdoc@1.11.2", shape = box, fontname = sans]; | ||
| 118 | "139863277045472" [label = "wayland-protocols@1.32", shape = box, fontname = sans]; | ||
| 119 | "139863277045472" -> "139863551252368" [color = darkviolet]; | ||
| 120 | "139863277045472" -> "139863585014112" [color = darkviolet]; | ||
| 121 | "139863277045472" -> "139863277045648" [color = darkviolet]; | ||
| 122 | "139863277045648" [label = "wayland@1.22.0", shape = box, fontname = sans]; | ||
| 123 | "139863277045648" -> "139863265194160" [color = dimgrey]; | ||
| 124 | "139863277045648" -> "139863265194688" [color = dimgrey]; | ||
| 125 | "139863277045648" -> "139863265283872" [color = dimgrey]; | ||
| 126 | "139863277045648" -> "139863260845616" [color = dimgrey]; | ||
| 127 | "139863277045648" -> "139863260908992" [color = dimgrey]; | ||
| 128 | "139863277045648" -> "139863551252368" [color = dimgrey]; | ||
| 129 | "139863277045648" -> "139863585014112" [color = dimgrey]; | ||
| 130 | "139863277045648" -> "139863276059744" [color = dimgrey]; | ||
| 131 | "139863277045648" -> "139863276039968" [color = dimgrey]; | ||
| 132 | "139863277045648" -> "139863275967344" [color = dimgrey]; | ||
| 133 | "139863277045648" -> "139863275966992" [color = dimgrey]; | ||
| 134 | "139863277045648" -> "139863262882384" [color = dimgrey]; | ||
| 135 | "139863265194160" [label = "docbook-xml@4.2", shape = box, fontname = sans]; | ||
| 136 | "139863265194688" [label = "docbook-xml@4.5", shape = box, fontname = sans]; | ||
| 137 | "139863260845616" [label = "graphviz@7.0.1", shape = box, fontname = sans]; | ||
| 138 | "139863263074368" [label = "gtkmm@3.24.6", shape = box, fontname = sans]; | ||
| 139 | "139863263074368" -> "139863260845616" [color = darkseagreen]; | ||
| 140 | "139863263074368" -> "139863260908992" [color = darkseagreen]; | ||
| 141 | "139863263074368" -> "139863261465872" [color = darkseagreen]; | ||
| 142 | "139863263074368" -> "139863551253248" [color = darkseagreen]; | ||
| 143 | "139863263074368" -> "139863260571888" [color = darkseagreen]; | ||
| 144 | "139863263074368" -> "139863366320128" [color = darkseagreen]; | ||
| 145 | "139863263074368" -> "139863551252368" [color = darkseagreen]; | ||
| 146 | "139863263074368" -> "139863585014112" [color = darkseagreen]; | ||
| 147 | "139863263074368" -> "139863276039968" [color = darkseagreen]; | ||
| 148 | "139863263074368" -> "139863274568624" [color = darkseagreen]; | ||
| 149 | "139863263074368" -> "139863263074720" [color = darkseagreen]; | ||
| 150 | "139863263074368" -> "139863263074544" [color = darkseagreen]; | ||
| 151 | "139863263074368" -> "139863261463936" [color = darkseagreen]; | ||
| 152 | "139863263074368" -> "139863275914624" [color = darkseagreen]; | ||
| 153 | "139863263074368" -> "139863263074896" [color = darkseagreen]; | ||
| 154 | "139863260571888" [label = "mm-common@1.0.3", shape = box, fontname = sans]; | ||
| 155 | "139863260571888" -> "139863297329216" [color = dimgrey]; | ||
| 156 | "139863260571888" -> "139863265281584" [color = dimgrey]; | ||
| 157 | "139863260571888" -> "139863551252368" [color = dimgrey]; | ||
| 158 | "139863260571888" -> "139863297330096" [color = dimgrey]; | ||
| 159 | "139863260571888" -> "139863585014112" [color = dimgrey]; | ||
| 160 | "139863297329216" [label = "coreutils@9.1", shape = box, fontname = sans]; | ||
| 161 | "139863297330096" [label = "sed@4.8", shape = box, fontname = sans]; | ||
| 162 | "139863274568624" [label = "xorg-server@21.1.1", shape = box, fontname = sans]; | ||
| 163 | "139863274568624" -> "139863585046128" [color = magenta]; | ||
| 164 | "139863274568624" -> "139863551252368" [color = magenta]; | ||
| 165 | "139863274568624" -> "139863263405264" [color = magenta]; | ||
| 166 | "139863274568624" -> "139863261376512" [color = magenta]; | ||
| 167 | "139863274568624" -> "139863274458560" [color = magenta]; | ||
| 168 | "139863274568624" -> "139863274908240" [color = magenta]; | ||
| 169 | "139863274568624" -> "139863276965312" [color = magenta]; | ||
| 170 | "139863274568624" -> "139863274542112" [color = magenta]; | ||
| 171 | "139863274568624" -> "139863274567216" [color = magenta]; | ||
| 172 | "139863274568624" -> "139863274456800" [color = magenta]; | ||
| 173 | "139863274568624" -> "139863274541936" [color = magenta]; | ||
| 174 | "139863274568624" -> "139863274541584" [color = magenta]; | ||
| 175 | "139863274568624" -> "139863274456448" [color = magenta]; | ||
| 176 | "139863274568624" -> "139863274543168" [color = magenta]; | ||
| 177 | "139863274568624" -> "139863274455920" [color = magenta]; | ||
| 178 | "139863274568624" -> "139863274458384" [color = magenta]; | ||
| 179 | "139863274568624" -> "139863274567392" [color = magenta]; | ||
| 180 | "139863274568624" -> "139863274542816" [color = magenta]; | ||
| 181 | "139863274568624" -> "139863274532288" [color = magenta]; | ||
| 182 | "139863274568624" -> "139863274531584" [color = magenta]; | ||
| 183 | "139863274568624" -> "139863274528768" [color = magenta]; | ||
| 184 | "139863274568624" -> "139863433939536" [color = magenta]; | ||
| 185 | "139863274568624" -> "139863274566864" [color = magenta]; | ||
| 186 | "139863274568624" -> "139863274566336" [color = magenta]; | ||
| 187 | "139863274568624" -> "139863274566160" [color = magenta]; | ||
| 188 | "139863274568624" -> "139863274565984" [color = magenta]; | ||
| 189 | "139863274568624" -> "139863274565808" [color = magenta]; | ||
| 190 | "139863274568624" -> "139863274457856" [color = magenta]; | ||
| 191 | "139863274568624" -> "139863274569152" [color = magenta]; | ||
| 192 | "139863274568624" -> "139863274831872" [color = magenta]; | ||
| 193 | "139863274568624" -> "139863304993536" [color = magenta]; | ||
| 194 | "139863274568624" -> "139863274411392" [color = magenta]; | ||
| 195 | "139863263405264" [label = "eudev@3.2.11", shape = box, fontname = sans]; | ||
| 196 | "139863274458560" [label = "libdmx@1.1.4", shape = box, fontname = sans]; | ||
| 197 | "139863274908240" [label = "libepoxy@1.5.10", shape = box, fontname = sans]; | ||
| 198 | "139863276965312" [label = "libgcrypt@1.10.1", shape = box, fontname = sans]; | ||
| 199 | "139863274542112" [label = "libxau@1.0.10", shape = box, fontname = sans]; | ||
| 200 | "139863274567216" [label = "libxaw@1.0.14", shape = box, fontname = sans]; | ||
| 201 | "139863274456800" [label = "libxdmcp@1.1.3", shape = box, fontname = sans]; | ||
| 202 | "139863274541936" [label = "libxfixes@6.0.0", shape = box, fontname = sans]; | ||
| 203 | "139863274541584" [label = "libxfont@2.0.4", shape = box, fontname = sans]; | ||
| 204 | "139863274456448" [label = "libxkbfile@1.1.0", shape = box, fontname = sans]; | ||
| 205 | "139863274543168" [label = "libxrender@0.9.10", shape = box, fontname = sans]; | ||
| 206 | "139863274455920" [label = "libxres@1.2.1", shape = box, fontname = sans]; | ||
| 207 | "139863274458384" [label = "libxshmfence@1.3", shape = box, fontname = sans]; | ||
| 208 | "139863274567392" [label = "libxt@1.2.1", shape = box, fontname = sans]; | ||
| 209 | "139863274542816" [label = "libxv@1.0.12", shape = box, fontname = sans]; | ||
| 210 | "139863274532288" [label = "xkbcomp@1.4.5", shape = box, fontname = sans]; | ||
| 211 | "139863274531584" [label = "xkeyboard-config@2.38", shape = box, fontname = sans]; | ||
| 212 | "139863274528768" [label = "xtrans@1.4.0", shape = box, fontname = sans]; | ||
| 213 | "139863274566864" [label = "xcb-util@0.4.0", shape = box, fontname = sans]; | ||
| 214 | "139863274566336" [label = "xcb-util-image@0.4.0", shape = box, fontname = sans]; | ||
| 215 | "139863274566160" [label = "xcb-util-keysyms@0.4.0", shape = box, fontname = sans]; | ||
| 216 | "139863274565984" [label = "xcb-util-renderutil@0.3.9", shape = box, fontname = sans]; | ||
| 217 | "139863274565808" [label = "xcb-util-wm@0.4.1", shape = box, fontname = sans]; | ||
| 218 | "139863274457856" [label = "libpciaccess@0.16", shape = box, fontname = sans]; | ||
| 219 | "139863274569152" [label = "libxcvt@0.1.1", shape = box, fontname = sans]; | ||
| 220 | "139863274831872" [label = "mesa@23.1.4", shape = box, fontname = sans]; | ||
| 221 | "139863304993536" [label = "pixman@0.40.0", shape = box, fontname = sans]; | ||
| 222 | "139863274411392" [label = "xorgproto@2022.2", shape = box, fontname = sans]; | ||
| 223 | "139863263074720" [label = "atkmm@2.28.1", shape = box, fontname = sans]; | ||
| 224 | "139863263074720" -> "139863260845616" [color = darkgoldenrod]; | ||
| 225 | "139863263074720" -> "139863260908992" [color = darkgoldenrod]; | ||
| 226 | "139863263074720" -> "139863551253248" [color = darkgoldenrod]; | ||
| 227 | "139863263074720" -> "139863260571888" [color = darkgoldenrod]; | ||
| 228 | "139863263074720" -> "139863366320128" [color = darkgoldenrod]; | ||
| 229 | "139863263074720" -> "139863551252368" [color = darkgoldenrod]; | ||
| 230 | "139863263074720" -> "139863585014112" [color = darkgoldenrod]; | ||
| 231 | "139863263074720" -> "139863276039968" [color = darkgoldenrod]; | ||
| 232 | "139863263074720" -> "139863261463584" [color = darkgoldenrod]; | ||
| 233 | "139863263074720" -> "139863275915504" [color = darkgoldenrod]; | ||
| 234 | "139863261463584" [label = "glibmm@2.64.5", shape = box, fontname = sans]; | ||
| 235 | "139863275915504" [label = "at-spi2-core@2.45.90", shape = box, fontname = sans]; | ||
| 236 | "139863263074544" [label = "cairomm@1.14.2", shape = box, fontname = sans]; | ||
| 237 | "139863263074544" -> "139863265098848" [color = cyan3]; | ||
| 238 | "139863263074544" -> "139863260908992" [color = cyan3]; | ||
| 239 | "139863263074544" -> "139863260845616" [color = cyan3]; | ||
| 240 | "139863263074544" -> "139863260571888" [color = cyan3]; | ||
| 241 | "139863263074544" -> "139863366320128" [color = cyan3]; | ||
| 242 | "139863263074544" -> "139863551252368" [color = cyan3]; | ||
| 243 | "139863263074544" -> "139863276039968" [color = cyan3]; | ||
| 244 | "139863263074544" -> "139863264024816" [color = cyan3]; | ||
| 245 | "139863263074544" -> "139863261464112" [color = cyan3]; | ||
| 246 | "139863263074544" -> "139863261464288" [color = cyan3]; | ||
| 247 | "139863263074544" -> "139863275881856" [color = cyan3]; | ||
| 248 | "139863265098848" [label = "boost@1.80.0", shape = box, fontname = sans]; | ||
| 249 | "139863264024816" [label = "fontconfig-minimal@2.14.0", shape = box, fontname = sans]; | ||
| 250 | "139863261464112" [label = "libsigc++@2.9.3", shape = box, fontname = sans]; | ||
| 251 | "139863261464288" [label = "libsigc++@3.0.6", shape = box, fontname = sans]; | ||
| 252 | "139863275881856" [label = "cairo@1.16.0", shape = box, fontname = sans]; | ||
| 253 | "139863261463936" [label = "glibmm@2.72.1", shape = box, fontname = sans]; | ||
| 254 | "139863261463936" -> "139863260845616" [color = peachpuff4]; | ||
| 255 | "139863261463936" -> "139863260908992" [color = peachpuff4]; | ||
| 256 | "139863261463936" -> "139863261465872" [color = peachpuff4]; | ||
| 257 | "139863261463936" -> "139863551253248" [color = peachpuff4]; | ||
| 258 | "139863261463936" -> "139863260571888" [color = peachpuff4]; | ||
| 259 | "139863261463936" -> "139863366320128" [color = peachpuff4]; | ||
| 260 | "139863261463936" -> "139863551252368" [color = peachpuff4]; | ||
| 261 | "139863261463936" -> "139863276039968" [color = peachpuff4]; | ||
| 262 | "139863261463936" -> "139863261464288" [color = peachpuff4]; | ||
| 263 | "139863261463936" -> "139863261465872" [color = peachpuff4]; | ||
| 264 | "139863275914624" [label = "gtk+@3.24.37", shape = box, fontname = sans]; | ||
| 265 | "139863275914624" -> "139863265194336" [color = dimgrey]; | ||
| 266 | "139863275914624" -> "139863265283872" [color = dimgrey]; | ||
| 267 | "139863275914624" -> "139863265281584" [color = dimgrey]; | ||
| 268 | "139863275914624" -> "139863261465872" [color = dimgrey]; | ||
| 269 | "139863275914624" -> "139863261465344" [color = dimgrey]; | ||
| 270 | "139863275914624" -> "139863260613024" [color = dimgrey]; | ||
| 271 | "139863275914624" -> "139863551252368" [color = dimgrey]; | ||
| 272 | "139863275914624" -> "139863585046128" [color = dimgrey]; | ||
| 273 | "139863275914624" -> "139863269702752" [color = dimgrey]; | ||
| 274 | "139863275914624" -> "139863274568624" [color = dimgrey]; | ||
| 275 | "139863275914624" -> "139863276039968" [color = dimgrey]; | ||
| 276 | "139863275914624" -> "139863260676448" [color = dimgrey]; | ||
| 277 | "139863275914624" -> "139863276830144" [color = dimgrey]; | ||
| 278 | "139863275914624" -> "139863275970160" [color = dimgrey]; | ||
| 279 | "139863275914624" -> "139863275881328" [color = dimgrey]; | ||
| 280 | "139863275914624" -> "139863363317360" [color = dimgrey]; | ||
| 281 | "139863275914624" -> "139863260679968" [color = dimgrey]; | ||
| 282 | "139863275914624" -> "139863275966992" [color = dimgrey]; | ||
| 283 | "139863275914624" -> "139863260679088" [color = dimgrey]; | ||
| 284 | "139863275914624" -> "139863275915504" [color = dimgrey]; | ||
| 285 | "139863275914624" -> "139863275881856" [color = dimgrey]; | ||
| 286 | "139863275914624" -> "139863553026112" [color = dimgrey]; | ||
| 287 | "139863275914624" -> "139863264024816" [color = dimgrey]; | ||
| 288 | "139863275914624" -> "139863275632000" [color = dimgrey]; | ||
| 289 | "139863275914624" -> "139863260611440" [color = dimgrey]; | ||
| 290 | "139863275914624" -> "139863261465872" [color = dimgrey]; | ||
| 291 | "139863275914624" -> "139863260484816" [color = dimgrey]; | ||
| 292 | "139863275914624" -> "139863274908240" [color = dimgrey]; | ||
| 293 | "139863275914624" -> "139863274567920" [color = dimgrey]; | ||
| 294 | "139863275914624" -> "139863274456976" [color = dimgrey]; | ||
| 295 | "139863275914624" -> "139863274567568" [color = dimgrey]; | ||
| 296 | "139863275914624" -> "139863274543872" [color = dimgrey]; | ||
| 297 | "139863275914624" -> "139863274543696" [color = dimgrey]; | ||
| 298 | "139863275914624" -> "139863274541936" [color = dimgrey]; | ||
| 299 | "139863275914624" -> "139863274541408" [color = dimgrey]; | ||
| 300 | "139863275914624" -> "139863274543520" [color = dimgrey]; | ||
| 301 | "139863275914624" -> "139863304994416" [color = dimgrey]; | ||
| 302 | "139863275914624" -> "139863274541232" [color = dimgrey]; | ||
| 303 | "139863275914624" -> "139863274543168" [color = dimgrey]; | ||
| 304 | "139863275914624" -> "139863274831872" [color = dimgrey]; | ||
| 305 | "139863275914624" -> "139863275880800" [color = dimgrey]; | ||
| 306 | "139863275914624" -> "139863277045648" [color = dimgrey]; | ||
| 307 | "139863275914624" -> "139863277045472" [color = dimgrey]; | ||
| 308 | "139863265194336" [label = "docbook-xml@4.3", shape = box, fontname = sans]; | ||
| 309 | "139863261465344" [label = "gobject-introspection@1.72.0", shape = box, fontname = sans]; | ||
| 310 | "139863260613024" [label = "hicolor-icon-theme@0.17", shape = box, fontname = sans]; | ||
| 311 | "139863269702752" [label = "sassc@3.6.2", shape = box, fontname = sans]; | ||
| 312 | "139863260676448" [label = "colord-minimal@1.4.6", shape = box, fontname = sans]; | ||
| 313 | "139863276830144" [label = "cups@2.4.2", shape = box, fontname = sans]; | ||
| 314 | "139863275970160" [label = "graphene@1.10.6", shape = box, fontname = sans]; | ||
| 315 | "139863275881328" [label = "harfbuzz@5.3.1", shape = box, fontname = sans]; | ||
| 316 | "139863363317360" [label = "iso-codes@4.5.0", shape = box, fontname = sans]; | ||
| 317 | "139863260679968" [label = "json-glib-minimal@1.6.2", shape = box, fontname = sans]; | ||
| 318 | "139863260679088" [label = "rest@0.8.1", shape = box, fontname = sans]; | ||
| 319 | "139863553026112" [label = "fribidi@1.0.12", shape = box, fontname = sans]; | ||
| 320 | "139863275632000" [label = "freetype@2.13.0", shape = box, fontname = sans]; | ||
| 321 | "139863260611440" [label = "librsvg@2.54.5", shape = box, fontname = sans]; | ||
| 322 | "139863260484816" [label = "libcloudproviders-minimal@0.3.1", shape = box, fontname = sans]; | ||
| 323 | "139863274456976" [label = "libxcomposite@0.4.5", shape = box, fontname = sans]; | ||
| 324 | "139863274567568" [label = "libxcursor@1.2.1", shape = box, fontname = sans]; | ||
| 325 | "139863274543872" [label = "libxdamage@1.1.5", shape = box, fontname = sans]; | ||
| 326 | "139863274543696" [label = "libxext@1.3.4", shape = box, fontname = sans]; | ||
| 327 | "139863274541408" [label = "libxi@1.7.10", shape = box, fontname = sans]; | ||
| 328 | "139863274543520" [label = "libxinerama@1.1.4", shape = box, fontname = sans]; | ||
| 329 | "139863304994416" [label = "libxkbcommon@1.4.1", shape = box, fontname = sans]; | ||
| 330 | "139863274541232" [label = "libxrandr@1.5.2", shape = box, fontname = sans]; | ||
| 331 | "139863275880800" [label = "pango@1.50.10", shape = box, fontname = sans]; | ||
| 332 | "139863263074896" [label = "pangomm@2.46.2", shape = box, fontname = sans]; | ||
| 333 | "139863263074896" -> "139863260845616" [color = peachpuff4]; | ||
| 334 | "139863263074896" -> "139863260908992" [color = peachpuff4]; | ||
| 335 | "139863263074896" -> "139863551253248" [color = peachpuff4]; | ||
| 336 | "139863263074896" -> "139863260571888" [color = peachpuff4]; | ||
| 337 | "139863263074896" -> "139863366320128" [color = peachpuff4]; | ||
| 338 | "139863263074896" -> "139863551252368" [color = peachpuff4]; | ||
| 339 | "139863263074896" -> "139863585014112" [color = peachpuff4]; | ||
| 340 | "139863263074896" -> "139863276039968" [color = peachpuff4]; | ||
| 341 | "139863263074896" -> "139863275945584" [color = peachpuff4]; | ||
| 342 | "139863263074896" -> "139863261463584" [color = peachpuff4]; | ||
| 343 | "139863263074896" -> "139863275880800" [color = peachpuff4]; | ||
| 344 | "139863275945584" [label = "cairomm@1.14.2", shape = box, fontname = sans]; | ||
| 345 | "139863261137136" [label = "date@2.4.1-9a0ee254", shape = box, fontname = sans]; | ||
| 346 | "139863261137136" -> "139863273877680" [color = darkseagreen]; | ||
| 347 | "139863274650544" [label = "fmt@9.1.0", shape = box, fontname = sans]; | ||
| 348 | "139863274650544" -> "139863366172672" [color = red]; | ||
| 349 | "139863275968928" [label = "gtk-layer-shell@0.6.0", shape = box, fontname = sans]; | ||
| 350 | "139863275968928" -> "139863551252368" [color = darkviolet]; | ||
| 351 | "139863275968928" -> "139863261465344" [color = darkviolet]; | ||
| 352 | "139863275968928" -> "139863277045648" [color = darkviolet]; | ||
| 353 | "139863275968928" -> "139863275914624" [color = darkviolet]; | ||
| 354 | "139863273406064" [label = "jsoncpp@1.9.5", shape = box, fontname = sans]; | ||
| 355 | "139863275969104" [label = "libdbusmenu@16.04.0-496", shape = box, fontname = sans]; | ||
| 356 | "139863275969104" -> "139863585044720" [color = cyan3]; | ||
| 357 | "139863275969104" -> "139863585043312" [color = cyan3]; | ||
| 358 | "139863275969104" -> "139863261465872" [color = cyan3]; | ||
| 359 | "139863275969104" -> "139863261465344" [color = cyan3]; | ||
| 360 | "139863275969104" -> "139863260588096" [color = cyan3]; | ||
| 361 | "139863275969104" -> "139863275942768" [color = cyan3]; | ||
| 362 | "139863275969104" -> "139863261464992" [color = cyan3]; | ||
| 363 | "139863275969104" -> "139863260679792" [color = cyan3]; | ||
| 364 | "139863275969104" -> "139863585043136" [color = cyan3]; | ||
| 365 | "139863275969104" -> "139863276039968" [color = cyan3]; | ||
| 366 | "139863275969104" -> "139863551252368" [color = cyan3]; | ||
| 367 | "139863275969104" -> "139863585046128" [color = cyan3]; | ||
| 368 | "139863275969104" -> "139863273878208" [color = cyan3]; | ||
| 369 | "139863275969104" -> "139863260640288" [color = cyan3]; | ||
| 370 | "139863275969104" -> "139863261465872" [color = cyan3]; | ||
| 371 | "139863275969104" -> "139863275914624" [color = cyan3]; | ||
| 372 | "139863275969104" -> "139863275914800" [color = cyan3]; | ||
| 373 | "139863585044720" [label = "autoconf@2.69", shape = box, fontname = sans]; | ||
| 374 | "139863585044720" -> "139863366320128" [color = magenta]; | ||
| 375 | "139863585044720" -> "139863551253248" [color = magenta]; | ||
| 376 | "139863585044720" -> "139863366322064" [color = magenta]; | ||
| 377 | "139863585044720" -> "139863551253248" [color = magenta]; | ||
| 378 | "139863585044720" -> "139863366320128" [color = magenta]; | ||
| 379 | "139863585043312" [label = "automake@1.16.5", shape = box, fontname = sans]; | ||
| 380 | "139863585043312" -> "139863585043840" [color = peachpuff4]; | ||
| 381 | "139863585043312" -> "139863366320128" [color = peachpuff4]; | ||
| 382 | "139863585043312" -> "139863585043840" [color = peachpuff4]; | ||
| 383 | "139863585043312" -> "139863366322064" [color = peachpuff4]; | ||
| 384 | "139863585043312" -> "139863366320128" [color = peachpuff4]; | ||
| 385 | "139863585043840" [label = "autoconf-wrapper@2.69", shape = box, fontname = sans]; | ||
| 386 | "139863260588096" [label = "gnome-common@3.18.0", shape = box, fontname = sans]; | ||
| 387 | "139863275942768" [label = "gtk-doc@1.33.2", shape = box, fontname = sans]; | ||
| 388 | "139863275942768" -> "139863265281584" [color = peachpuff4]; | ||
| 389 | "139863275942768" -> "139863261465872" [color = peachpuff4]; | ||
| 390 | "139863275942768" -> "139863261465344" [color = peachpuff4]; | ||
| 391 | "139863275942768" -> "139863261464816" [color = peachpuff4]; | ||
| 392 | "139863275942768" -> "139863366320128" [color = peachpuff4]; | ||
| 393 | "139863275942768" -> "139863551252368" [color = peachpuff4]; | ||
| 394 | "139863275942768" -> "139863585046128" [color = peachpuff4]; | ||
| 395 | "139863275942768" -> "139863585052032" [color = peachpuff4]; | ||
| 396 | "139863275942768" -> "139863265282464" [color = peachpuff4]; | ||
| 397 | "139863275942768" -> "139863265194336" [color = peachpuff4]; | ||
| 398 | "139863275942768" -> "139863265283872" [color = peachpuff4]; | ||
| 399 | "139863275942768" -> "139863261465872" [color = peachpuff4]; | ||
| 400 | "139863275942768" -> "139863275966992" [color = peachpuff4]; | ||
| 401 | "139863275942768" -> "139863276039968" [color = peachpuff4]; | ||
| 402 | "139863275942768" -> "139863585014112" [color = peachpuff4]; | ||
| 403 | "139863275942768" -> "139863261979856" [color = peachpuff4]; | ||
| 404 | "139863275942768" -> "139863276076128" [color = peachpuff4]; | ||
| 405 | "139863275942768" -> "139863584837408" [color = peachpuff4]; | ||
| 406 | "139863275942768" -> "139863262010640" [color = peachpuff4]; | ||
| 407 | "139863275942768" -> "139863274649664" [color = peachpuff4]; | ||
| 408 | "139863275942768" -> "139863260722384" [color = peachpuff4]; | ||
| 409 | "139863261464816" [label = "itstool@2.0.7", shape = box, fontname = sans]; | ||
| 410 | "139863585052032" [label = "bc@1.07.1", shape = box, fontname = sans]; | ||
| 411 | "139863265282464" [label = "dblatex@0.3.12", shape = box, fontname = sans]; | ||
| 412 | "139863261979856" [label = "python-anytree@2.8.0", shape = box, fontname = sans]; | ||
| 413 | "139863276076128" [label = "python-lxml@4.9.1", shape = box, fontname = sans]; | ||
| 414 | "139863584837408" [label = "python-parameterized@0.8.1", shape = box, fontname = sans]; | ||
| 415 | "139863262010640" [label = "python-pygments@2.12.0", shape = box, fontname = sans]; | ||
| 416 | "139863274649664" [label = "source-highlight@3.1.9", shape = box, fontname = sans]; | ||
| 417 | "139863261464992" [label = "intltool@0.51.0", shape = box, fontname = sans]; | ||
| 418 | "139863261464992" -> "139863433047840" [color = darkviolet]; | ||
| 419 | "139863261464992" -> "139863265281584" [color = darkviolet]; | ||
| 420 | "139863261464992" -> "139863276039088" [color = darkviolet]; | ||
| 421 | "139863261464992" -> "139863366320128" [color = darkviolet]; | ||
| 422 | "139863276039088" [label = "perl-xml-parser@2.46", shape = box, fontname = sans]; | ||
| 423 | "139863260679792" [label = "json-glib@1.6.2", shape = box, fontname = sans]; | ||
| 424 | "139863260679792" -> "139863265194336" [color = blue]; | ||
| 425 | "139863260679792" -> "139863265283872" [color = blue]; | ||
| 426 | "139863260679792" -> "139863261465344" [color = blue]; | ||
| 427 | "139863260679792" -> "139863275942768" [color = blue]; | ||
| 428 | "139863260679792" -> "139863276039968" [color = blue]; | ||
| 429 | "139863260679792" -> "139863265281584" [color = blue]; | ||
| 430 | "139863260679792" -> "139863261465872" [color = blue]; | ||
| 431 | "139863260679792" -> "139863551252368" [color = blue]; | ||
| 432 | "139863260679792" -> "139863366322064" [color = blue]; | ||
| 433 | "139863260679792" -> "139863261465872" [color = blue]; | ||
| 434 | "139863585043136" [label = "libtool@2.4.7", shape = box, fontname = sans]; | ||
| 435 | "139863585043136" -> "139863551253248" [color = cyan3]; | ||
| 436 | "139863585043136" -> "139863366320128" [color = cyan3]; | ||
| 437 | "139863585043136" -> "139863585042784" [color = cyan3]; | ||
| 438 | "139863585043136" -> "139863275614912" [color = cyan3]; | ||
| 439 | "139863585043136" -> "139863585043312" [color = cyan3]; | ||
| 440 | "139863585043136" -> "139863585043840" [color = cyan3]; | ||
| 441 | "139863585043136" -> "139863551253248" [color = cyan3]; | ||
| 442 | "139863585042784" [label = "libltdl@2.4.7", shape = box, fontname = sans]; | ||
| 443 | "139863275614912" [label = "help2man@1.49.2", shape = box, fontname = sans]; | ||
| 444 | "139863273878208" [label = "which@2.21", shape = box, fontname = sans]; | ||
| 445 | "139863260640288" [label = "vala@0.56.3", shape = box, fontname = sans]; | ||
| 446 | "139863260640288" -> "139863275614208" [color = darkgoldenrod]; | ||
| 447 | "139863260640288" -> "139863261376512" [color = darkgoldenrod]; | ||
| 448 | "139863260640288" -> "139863265194512" [color = darkgoldenrod]; | ||
| 449 | "139863260640288" -> "139863265283872" [color = darkgoldenrod]; | ||
| 450 | "139863260640288" -> "139863275614384" [color = darkgoldenrod]; | ||
| 451 | "139863260640288" -> "139863261465344" [color = darkgoldenrod]; | ||
| 452 | "139863260640288" -> "139863275614912" [color = darkgoldenrod]; | ||
| 453 | "139863260640288" -> "139863366320128" [color = darkgoldenrod]; | ||
| 454 | "139863260640288" -> "139863551252368" [color = darkgoldenrod]; | ||
| 455 | "139863260640288" -> "139863276039968" [color = darkgoldenrod]; | ||
| 456 | "139863260640288" -> "139863261465872" [color = darkgoldenrod]; | ||
| 457 | "139863260640288" -> "139863260845616" [color = darkgoldenrod]; | ||
| 458 | "139863275614208" [label = "bison@3.8.2", shape = box, fontname = sans]; | ||
| 459 | "139863275614384" [label = "flex@2.6.4", shape = box, fontname = sans]; | ||
| 460 | "139863275914800" [label = "gtk+@2.24.33", shape = box, fontname = sans]; | ||
| 461 | "139863275914800" -> "139863265281584" [color = blue]; | ||
| 462 | "139863275914800" -> "139863261465872" [color = blue]; | ||
| 463 | "139863275914800" -> "139863261465344" [color = blue]; | ||
| 464 | "139863275914800" -> "139863261464992" [color = blue]; | ||
| 465 | "139863275914800" -> "139863366320128" [color = blue]; | ||
| 466 | "139863275914800" -> "139863551252368" [color = blue]; | ||
| 467 | "139863275914800" -> "139863585046128" [color = blue]; | ||
| 468 | "139863275914800" -> "139863274568624" [color = blue]; | ||
| 469 | "139863275914800" -> "139863276830144" [color = blue]; | ||
| 470 | "139863275914800" -> "139863274567920" [color = blue]; | ||
| 471 | "139863275914800" -> "139863274456976" [color = blue]; | ||
| 472 | "139863275914800" -> "139863274567568" [color = blue]; | ||
| 473 | "139863275914800" -> "139863274543696" [color = blue]; | ||
| 474 | "139863275914800" -> "139863274543872" [color = blue]; | ||
| 475 | "139863275914800" -> "139863274541408" [color = blue]; | ||
| 476 | "139863275914800" -> "139863274543520" [color = blue]; | ||
| 477 | "139863275914800" -> "139863304994416" [color = blue]; | ||
| 478 | "139863275914800" -> "139863274541232" [color = blue]; | ||
| 479 | "139863275914800" -> "139863274543168" [color = blue]; | ||
| 480 | "139863275914800" -> "139863274458384" [color = blue]; | ||
| 481 | "139863275914800" -> "139863275915504" [color = blue]; | ||
| 482 | "139863275914800" -> "139863275881856" [color = blue]; | ||
| 483 | "139863275914800" -> "139863261465872" [color = blue]; | ||
| 484 | "139863275914800" -> "139863260611440" [color = blue]; | ||
| 485 | "139863275914800" -> "139863275880800" [color = blue]; | ||
| 486 | "139863274498992" [label = "libevdev@1.11.0", shape = box, fontname = sans]; | ||
| 487 | "139863274498992" -> "139863585014112" [color = peachpuff4]; | ||
| 488 | "139863277047232" [label = "libinput-minimal@1.22.1", shape = box, fontname = sans]; | ||
| 489 | "139863277047232" -> "139863265161392" [color = magenta]; | ||
| 490 | "139863277047232" -> "139863551252368" [color = magenta]; | ||
| 491 | "139863277047232" -> "139863274498992" [color = magenta]; | ||
| 492 | "139863277047232" -> "139863304993184" [color = magenta]; | ||
| 493 | "139863277047232" -> "139863263405264" [color = magenta]; | ||
| 494 | "139863265161392" [label = "check@0.15.2", shape = box, fontname = sans]; | ||
| 495 | "139863304993184" [label = "mtdev@1.1.6", shape = box, fontname = sans]; | ||
| 496 | "139863364648560" [label = "libmpdclient@2.20", shape = box, fontname = sans]; | ||
| 497 | "139863364648560" -> "139863551252368" [color = darkseagreen]; | ||
| 498 | "139863364648560" -> "139863260908992" [color = darkseagreen]; | ||
| 499 | "139863364648560" -> "139863265161392" [color = darkseagreen]; | ||
| 500 | "139863263380688" [label = "libnl@3.5.0", shape = box, fontname = sans]; | ||
| 501 | "139863263380688" -> "139863275614208" [color = cyan3]; | ||
| 502 | "139863263380688" -> "139863275614384" [color = cyan3]; | ||
| 503 | "139863263380688" -> "139863551252368" [color = cyan3]; | ||
| 504 | "139863263380688" -> "139863265097264" [color = cyan3]; | ||
| 505 | "139863265097264" [label = "swig@4.0.2", shape = box, fontname = sans]; | ||
| 506 | "139863265097264" -> "139863265098848" [color = darkgoldenrod]; | ||
| 507 | "139863265097264" -> "139863553025056" [color = darkgoldenrod]; | ||
| 508 | "139863265097264" -> "139863262880624" [color = darkgoldenrod]; | ||
| 509 | "139863265097264" -> "139863366320128" [color = darkgoldenrod]; | ||
| 510 | "139863265097264" -> "139863553025056" [color = darkgoldenrod]; | ||
| 511 | "139863262880624" [label = "guile@3.0.9", shape = box, fontname = sans]; | ||
| 512 | "139863263506432" [label = "pipewire@0.3.77", shape = box, fontname = sans]; | ||
| 513 | "139863263506432" -> "139863261465872" [color = cyan3]; | ||
| 514 | "139863263506432" -> "139863551252368" [color = cyan3]; | ||
| 515 | "139863263506432" -> "139863261978976" [color = cyan3]; | ||
| 516 | "139863263506432" -> "139863263382624" [color = cyan3]; | ||
| 517 | "139863263506432" -> "139863261485472" [color = cyan3]; | ||
| 518 | "139863263506432" -> "139863263447632" [color = cyan3]; | ||
| 519 | "139863263506432" -> "139863261376512" [color = cyan3]; | ||
| 520 | "139863263506432" -> "139863263405264" [color = cyan3]; | ||
| 521 | "139863263506432" -> "139863432527120" [color = cyan3]; | ||
| 522 | "139863263506432" -> "139863274937440" [color = cyan3]; | ||
| 523 | "139863263506432" -> "139863274937616" [color = cyan3]; | ||
| 524 | "139863263506432" -> "139863260349120" [color = cyan3]; | ||
| 525 | "139863263506432" -> "139863260414832" [color = cyan3]; | ||
| 526 | "139863263506432" -> "139863274952240" [color = cyan3]; | ||
| 527 | "139863263506432" -> "139863260442048" [color = cyan3]; | ||
| 528 | "139863263506432" -> "139863260441872" [color = cyan3]; | ||
| 529 | "139863263506432" -> "139863269853248" [color = cyan3]; | ||
| 530 | "139863263506432" -> "139863269926800" [color = cyan3]; | ||
| 531 | "139863263506432" -> "139863273456320" [color = cyan3]; | ||
| 532 | "139863263506432" -> "139863432527472" [color = cyan3]; | ||
| 533 | "139863263506432" -> "139863269852896" [color = cyan3]; | ||
| 534 | "139863263506432" -> "139863553025760" [color = cyan3]; | ||
| 535 | "139863263506432" -> "139863263447808" [color = cyan3]; | ||
| 536 | "139863263506432" -> "139863367856832" [color = cyan3]; | ||
| 537 | "139863263506432" -> "139863367856656" [color = cyan3]; | ||
| 538 | "139863263506432" -> "139863260251872" [color = cyan3]; | ||
| 539 | "139863261978976" [label = "python-docutils@0.19", shape = box, fontname = sans]; | ||
| 540 | "139863263382624" [label = "alsa-lib@1.2.4", shape = box, fontname = sans]; | ||
| 541 | "139863263382624" -> "139863263382976" [color = red]; | ||
| 542 | "139863263382624" -> "139863263382800" [color = red]; | ||
| 543 | "139863263382976" [label = "alsa-ucm-conf@1.2.4", shape = box, fontname = sans]; | ||
| 544 | "139863263382800" [label = "alsa-topology-conf@1.2.4", shape = box, fontname = sans]; | ||
| 545 | "139863261485472" [label = "avahi@0.8", shape = box, fontname = sans]; | ||
| 546 | "139863261485472" -> "139863265281584" [color = magenta]; | ||
| 547 | "139863261485472" -> "139863261465872" [color = magenta]; | ||
| 548 | "139863261485472" -> "139863551252368" [color = magenta]; | ||
| 549 | "139863261485472" -> "139863366322064" [color = magenta]; | ||
| 550 | "139863261485472" -> "139863261376512" [color = magenta]; | ||
| 551 | "139863261485472" -> "139863275967344" [color = magenta]; | ||
| 552 | "139863261485472" -> "139863551252544" [color = magenta]; | ||
| 553 | "139863261485472" -> "139863261465872" [color = magenta]; | ||
| 554 | "139863261485472" -> "139863263381040" [color = magenta]; | ||
| 555 | "139863261485472" -> "139863261485648" [color = magenta]; | ||
| 556 | "139863261485472" -> "139863276152544" [color = magenta]; | ||
| 557 | "139863263381040" [label = "libcap@2.64", shape = box, fontname = sans]; | ||
| 558 | "139863261485648" [label = "libdaemon@0.14", shape = box, fontname = sans]; | ||
| 559 | "139863276152544" [label = "libevent@2.1.12", shape = box, fontname = sans]; | ||
| 560 | "139863263447632" [label = "bluez@5.66", shape = box, fontname = sans]; | ||
| 561 | "139863263447632" -> "139863265281584" [color = darkseagreen]; | ||
| 562 | "139863263447632" -> "139863551252368" [color = darkseagreen]; | ||
| 563 | "139863263447632" -> "139863261978976" [color = darkseagreen]; | ||
| 564 | "139863263447632" -> "139863261465872" [color = darkseagreen]; | ||
| 565 | "139863263447632" -> "139863261376512" [color = darkseagreen]; | ||
| 566 | "139863263447632" -> "139863263405264" [color = darkseagreen]; | ||
| 567 | "139863263447632" -> "139863261136960" [color = darkseagreen]; | ||
| 568 | "139863263447632" -> "139863553025760" [color = darkseagreen]; | ||
| 569 | "139863261136960" [label = "libical@3.0.16", shape = box, fontname = sans]; | ||
| 570 | "139863432527120" [label = "ffmpeg@6.0", shape = box, fontname = sans]; | ||
| 571 | "139863432527120" -> "139863585052032" [color = blue]; | ||
| 572 | "139863432527120" -> "139863366320128" [color = blue]; | ||
| 573 | "139863432527120" -> "139863551252368" [color = blue]; | ||
| 574 | "139863432527120" -> "139863265280704" [color = blue]; | ||
| 575 | "139863432527120" -> "139863269899888" [color = blue]; | ||
| 576 | "139863432527120" -> "139863433511792" [color = blue]; | ||
| 577 | "139863432527120" -> "139863432709328" [color = blue]; | ||
| 578 | "139863432527120" -> "139863432710736" [color = blue]; | ||
| 579 | "139863432527120" -> "139863264024816" [color = blue]; | ||
| 580 | "139863432527120" -> "139863275632000" [color = blue]; | ||
| 581 | "139863432527120" -> "139863432646832" [color = blue]; | ||
| 582 | "139863432527120" -> "139863273457376" [color = blue]; | ||
| 583 | "139863432527120" -> "139863269898832" [color = blue]; | ||
| 584 | "139863432527120" -> "139863260348416" [color = blue]; | ||
| 585 | "139863432527120" -> "139863269928560" [color = blue]; | ||
| 586 | "139863432527120" -> "139863433779088" [color = blue]; | ||
| 587 | "139863432527120" -> "139863433777856" [color = blue]; | ||
| 588 | "139863432527120" -> "139863432605120" [color = blue]; | ||
| 589 | "139863432527120" -> "139863433777680" [color = blue]; | ||
| 590 | "139863432527120" -> "139863260452048" [color = blue]; | ||
| 591 | "139863432527120" -> "139863304993360" [color = blue]; | ||
| 592 | "139863432527120" -> "139863269900064" [color = blue]; | ||
| 593 | "139863432527120" -> "139863432527472" [color = blue]; | ||
| 594 | "139863432527120" -> "139863432601776" [color = blue]; | ||
| 595 | "139863432527120" -> "139863269851136" [color = blue]; | ||
| 596 | "139863432527120" -> "139863432524656" [color = blue]; | ||
| 597 | "139863432527120" -> "139863263109120" [color = blue]; | ||
| 598 | "139863432527120" -> "139863274567920" [color = blue]; | ||
| 599 | "139863432527120" -> "139863433778736" [color = blue]; | ||
| 600 | "139863432527120" -> "139863274831872" [color = blue]; | ||
| 601 | "139863432527120" -> "139863260377968" [color = blue]; | ||
| 602 | "139863432527120" -> "139863269852896" [color = blue]; | ||
| 603 | "139863432527120" -> "139863367706512" [color = blue]; | ||
| 604 | "139863432527120" -> "139863260393648" [color = blue]; | ||
| 605 | "139863432527120" -> "139863269899888" [color = blue]; | ||
| 606 | "139863432527120" -> "139863274951360" [color = blue]; | ||
| 607 | "139863432527120" -> "139863260393472" [color = blue]; | ||
| 608 | "139863432527120" -> "139863432711440" [color = blue]; | ||
| 609 | "139863432527120" -> "139863433778032" [color = blue]; | ||
| 610 | "139863432527120" -> "139863432603712" [color = blue]; | ||
| 611 | "139863432527120" -> "139863433939536" [color = blue]; | ||
| 612 | "139863265280704" [label = "texinfo@6.8", shape = box, fontname = sans]; | ||
| 613 | "139863269899888" [label = "speex@1.2.1", shape = box, fontname = sans]; | ||
| 614 | "139863433511792" [label = "yasm@1.3.0", shape = box, fontname = sans]; | ||
| 615 | "139863432709328" [label = "rav1e@0.6.3", shape = box, fontname = sans]; | ||
| 616 | "139863432710736" [label = "dav1d@1.0.0", shape = box, fontname = sans]; | ||
| 617 | "139863432646832" [label = "frei0r-plugins@1.7.0", shape = box, fontname = sans]; | ||
| 618 | "139863273457376" [label = "gnutls@3.7.7", shape = box, fontname = sans]; | ||
| 619 | "139863269898832" [label = "opus@1.3.1", shape = box, fontname = sans]; | ||
| 620 | "139863260348416" [label = "ladspa@1.13", shape = box, fontname = sans]; | ||
| 621 | "139863269928560" [label = "lame@3.100", shape = box, fontname = sans]; | ||
| 622 | "139863433779088" [label = "libaom@3.5.0", shape = box, fontname = sans]; | ||
| 623 | "139863433777856" [label = "libass@0.15.1", shape = box, fontname = sans]; | ||
| 624 | "139863432605120" [label = "libbluray@1.0.2", shape = box, fontname = sans]; | ||
| 625 | "139863433777680" [label = "libcaca@0.99.beta19", shape = box, fontname = sans]; | ||
| 626 | "139863260452048" [label = "libcdio-paranoia@10.2+2.0.1", shape = box, fontname = sans]; | ||
| 627 | "139863304993360" [label = "libdrm@2.4.114", shape = box, fontname = sans]; | ||
| 628 | "139863269900064" [label = "libtheora@1.1.1", shape = box, fontname = sans]; | ||
| 629 | "139863432527472" [label = "libva@2.19.0", shape = box, fontname = sans]; | ||
| 630 | "139863432601776" [label = "libvdpau@1.5", shape = box, fontname = sans]; | ||
| 631 | "139863269851136" [label = "libvorbis@1.3.7", shape = box, fontname = sans]; | ||
| 632 | "139863432524656" [label = "libvpx@1.12.0", shape = box, fontname = sans]; | ||
| 633 | "139863263109120" [label = "libwebp@1.2.4", shape = box, fontname = sans]; | ||
| 634 | "139863433778736" [label = "libx264@164-0.b093bbe", shape = box, fontname = sans]; | ||
| 635 | "139863260377968" [label = "openal@1.22.2", shape = box, fontname = sans]; | ||
| 636 | "139863269852896" [label = "pulseaudio@16.1", shape = box, fontname = sans]; | ||
| 637 | "139863367706512" [label = "sdl2@2.26.2", shape = box, fontname = sans]; | ||
| 638 | "139863260393648" [label = "soxr@0.1.3", shape = box, fontname = sans]; | ||
| 639 | "139863274951360" [label = "srt@1.4.4", shape = box, fontname = sans]; | ||
| 640 | "139863260393472" [label = "twolame@0.4.0", shape = box, fontname = sans]; | ||
| 641 | "139863432711440" [label = "vidstab@1.1.0-0.aeabc8d", shape = box, fontname = sans]; | ||
| 642 | "139863433778032" [label = "x265@3.5", shape = box, fontname = sans]; | ||
| 643 | "139863432603712" [label = "xvid@1.3.7", shape = box, fontname = sans]; | ||
| 644 | "139863274937440" [label = "gst-plugins-base@1.22.2", shape = box, fontname = sans]; | ||
| 645 | "139863274937440" -> "139863551252368" [color = dimgrey]; | ||
| 646 | "139863274937440" -> "139863261465872" [color = dimgrey]; | ||
| 647 | "139863274937440" -> "139863261465344" [color = dimgrey]; | ||
| 648 | "139863274937440" -> "139863585046128" [color = dimgrey]; | ||
| 649 | "139863274937440" -> "139863265281584" [color = dimgrey]; | ||
| 650 | "139863274937440" -> "139863274568624" [color = dimgrey]; | ||
| 651 | "139863274937440" -> "139863263382624" [color = dimgrey]; | ||
| 652 | "139863274937440" -> "139863260451696" [color = dimgrey]; | ||
| 653 | "139863274937440" -> "139863275970160" [color = dimgrey]; | ||
| 654 | "139863274937440" -> "139863363317360" [color = dimgrey]; | ||
| 655 | "139863274937440" -> "139863263131536" [color = dimgrey]; | ||
| 656 | "139863274937440" -> "139863269851312" [color = dimgrey]; | ||
| 657 | "139863274937440" -> "139863263015616" [color = dimgrey]; | ||
| 658 | "139863274937440" -> "139863269900064" [color = dimgrey]; | ||
| 659 | "139863274937440" -> "139863274905776" [color = dimgrey]; | ||
| 660 | "139863274937440" -> "139863269851136" [color = dimgrey]; | ||
| 661 | "139863274937440" -> "139863274567920" [color = dimgrey]; | ||
| 662 | "139863274937440" -> "139863274543696" [color = dimgrey]; | ||
| 663 | "139863274937440" -> "139863274542816" [color = dimgrey]; | ||
| 664 | "139863274937440" -> "139863274831872" [color = dimgrey]; | ||
| 665 | "139863274937440" -> "139863269898832" [color = dimgrey]; | ||
| 666 | "139863274937440" -> "139863275880800" [color = dimgrey]; | ||
| 667 | "139863274937440" -> "139863277045472" [color = dimgrey]; | ||
| 668 | "139863274937440" -> "139863433939536" [color = dimgrey]; | ||
| 669 | "139863274937440" -> "139863261465872" [color = dimgrey]; | ||
| 670 | "139863274937440" -> "139863274937616" [color = dimgrey]; | ||
| 671 | "139863274937440" -> "139863260724144" [color = dimgrey]; | ||
| 672 | "139863274937440" -> "139863277045648" [color = dimgrey]; | ||
| 673 | "139863274937440" -> "139863274937968" [color = dimgrey]; | ||
| 674 | "139863260451696" [label = "cdparanoia@10.2", shape = box, fontname = sans]; | ||
| 675 | "139863263131536" [label = "libjpeg-turbo@2.1.4", shape = box, fontname = sans]; | ||
| 676 | "139863269851312" [label = "libogg@1.3.5", shape = box, fontname = sans]; | ||
| 677 | "139863263015616" [label = "libpng@1.6.37", shape = box, fontname = sans]; | ||
| 678 | "139863274905776" [label = "libvisual@0.4.0", shape = box, fontname = sans]; | ||
| 679 | "139863274937616" [label = "gstreamer@1.22.2", shape = box, fontname = sans]; | ||
| 680 | "139863260724144" [label = "libgudev@236", shape = box, fontname = sans]; | ||
| 681 | "139863274937968" [label = "orc@0.4.32", shape = box, fontname = sans]; | ||
| 682 | "139863260349120" [label = "jack2@1.9.21", shape = box, fontname = sans]; | ||
| 683 | "139863260349120" -> "139863551252368" [color = magenta]; | ||
| 684 | "139863260349120" -> "139863263382624" [color = magenta]; | ||
| 685 | "139863260349120" -> "139863261376512" [color = magenta]; | ||
| 686 | "139863260349120" -> "139863275967344" [color = magenta]; | ||
| 687 | "139863260349120" -> "139863269853072" [color = magenta]; | ||
| 688 | "139863260349120" -> "139863269898832" [color = magenta]; | ||
| 689 | "139863260349120" -> "139863262153648" [color = magenta]; | ||
| 690 | "139863260349120" -> "139863553025760" [color = magenta]; | ||
| 691 | "139863260349120" -> "139863263357168" [color = magenta]; | ||
| 692 | "139863260349120" -> "139863551252720" [color = magenta]; | ||
| 693 | "139863269853072" [label = "libsamplerate@0.1.9", shape = box, fontname = sans]; | ||
| 694 | "139863262153648" [label = "python-dbus@1.2.18", shape = box, fontname = sans]; | ||
| 695 | "139863551252720" [label = "bdb@6.2.32", shape = box, fontname = sans]; | ||
| 696 | "139863260414832" [label = "ldacbt@2.0.2.3", shape = box, fontname = sans]; | ||
| 697 | "139863274952240" [label = "libcamera@0.1.0", shape = box, fontname = sans]; | ||
| 698 | "139863274952240" -> "139863584826048" [color = darkviolet]; | ||
| 699 | "139863274952240" -> "139863260845616" [color = darkviolet]; | ||
| 700 | "139863274952240" -> "139863260908992" [color = darkviolet]; | ||
| 701 | "139863274952240" -> "139863551252368" [color = darkviolet]; | ||
| 702 | "139863274952240" -> "139863585046128" [color = darkviolet]; | ||
| 703 | "139863274952240" -> "139863260211616" [color = darkviolet]; | ||
| 704 | "139863274952240" -> "139863261962592" [color = darkviolet]; | ||
| 705 | "139863274952240" -> "139863265098848" [color = darkviolet]; | ||
| 706 | "139863274952240" -> "139863263405264" [color = darkviolet]; | ||
| 707 | "139863274952240" -> "139863261465872" [color = darkviolet]; | ||
| 708 | "139863274952240" -> "139863274937440" [color = darkviolet]; | ||
| 709 | "139863274952240" -> "139863273457376" [color = darkviolet]; | ||
| 710 | "139863274952240" -> "139863263111936" [color = darkviolet]; | ||
| 711 | "139863274952240" -> "139863273378320" [color = darkviolet]; | ||
| 712 | "139863274952240" -> "139863273456320" [color = darkviolet]; | ||
| 713 | "139863274952240" -> "139863261981088" [color = darkviolet]; | ||
| 714 | "139863274952240" -> "139863262399584" [color = darkviolet]; | ||
| 715 | "139863274952240" -> "139863269420304" [color = darkviolet]; | ||
| 716 | "139863584826048" [label = "googletest@1.12.1", shape = box, fontname = sans]; | ||
| 717 | "139863260211616" [label = "python-sphinx@5.1.1", shape = box, fontname = sans]; | ||
| 718 | "139863261962592" [label = "python-pyyaml@6.0", shape = box, fontname = sans]; | ||
| 719 | "139863263111936" [label = "libtiff@4.4.0", shape = box, fontname = sans]; | ||
| 720 | "139863273378320" [label = "libyaml@0.2.5", shape = box, fontname = sans]; | ||
| 721 | "139863261981088" [label = "python-jinja2@3.1.1", shape = box, fontname = sans]; | ||
| 722 | "139863262399584" [label = "python-ply@3.11", shape = box, fontname = sans]; | ||
| 723 | "139863269420304" [label = "qtbase@5.15.10", shape = box, fontname = sans]; | ||
| 724 | "139863260442048" [label = "libfdk@2.0.1", shape = box, fontname = sans]; | ||
| 725 | "139863260442048" -> "139863585044720" [color = darkseagreen]; | ||
| 726 | "139863260442048" -> "139863585043312" [color = darkseagreen]; | ||
| 727 | "139863260442048" -> "139863585043136" [color = darkseagreen]; | ||
| 728 | "139863260441872" [label = "libfreeaptx@0.1.1", shape = box, fontname = sans]; | ||
| 729 | "139863269853248" [label = "libsndfile@1.2.0", shape = box, fontname = sans]; | ||
| 730 | "139863269853248" -> "139863585044720" [color = red]; | ||
| 731 | "139863269853248" -> "139863262942944" [color = red]; | ||
| 732 | "139863269853248" -> "139863585043312" [color = red]; | ||
| 733 | "139863269853248" -> "139863585043136" [color = red]; | ||
| 734 | "139863269853248" -> "139863551252368" [color = red]; | ||
| 735 | "139863269853248" -> "139863585014112" [color = red]; | ||
| 736 | "139863269853248" -> "139863269899360" [color = red]; | ||
| 737 | "139863269853248" -> "139863269851312" [color = red]; | ||
| 738 | "139863269853248" -> "139863269851136" [color = red]; | ||
| 739 | "139863269853248" -> "139863269898832" [color = red]; | ||
| 740 | "139863262942944" [label = "autogen@5.18.16", shape = box, fontname = sans]; | ||
| 741 | "139863269899360" [label = "flac@1.3.4", shape = box, fontname = sans]; | ||
| 742 | "139863269926800" [label = "libusb@1.0.25", shape = box, fontname = sans]; | ||
| 743 | "139863263447808" [label = "sbc@1.5", shape = box, fontname = sans]; | ||
| 744 | "139863263447808" -> "139863551252368" [color = darkviolet]; | ||
| 745 | "139863263447808" -> "139863269853248" [color = darkviolet]; | ||
| 746 | "139863367856832" [label = "vulkan-headers@sdk-1.3.231.1", shape = box, fontname = sans]; | ||
| 747 | "139863367856656" [label = "vulkan-loader@sdk-1.3.232", shape = box, fontname = sans]; | ||
| 748 | "139863367856656" -> "139863584826048" [color = magenta]; | ||
| 749 | "139863367856656" -> "139863274541232" [color = magenta]; | ||
| 750 | "139863367856656" -> "139863551252368" [color = magenta]; | ||
| 751 | "139863367856656" -> "139863585014112" [color = magenta]; | ||
| 752 | "139863367856656" -> "139863277045648" [color = magenta]; | ||
| 753 | "139863367856656" -> "139863367856832" [color = magenta]; | ||
| 754 | "139863260251872" [label = "webrtc-audio-processing@0.3.1", shape = box, fontname = sans]; | ||
| 755 | "139863366568880" [label = "playerctl@2.4.1", shape = box, fontname = sans]; | ||
| 756 | "139863366568880" -> "139863261465872" [color = red]; | ||
| 757 | "139863366568880" -> "139863551252368" [color = red]; | ||
| 758 | "139863366568880" -> "139863261465344" [color = red]; | ||
| 759 | "139863363912560" [label = "spdlog@1.12.0", shape = box, fontname = sans]; | ||
| 760 | "139863363912560" -> "139863584828160" [color = blue]; | ||
| 761 | "139863584828160" [label = "catch2@3.4.0", shape = box, fontname = sans]; | ||
| 762 | "139863584828160" -> "139863585046128" [color = red]; | ||
| 763 | "139863263534880" [label = "wireplumber@0.4.14", shape = box, fontname = sans]; | ||
| 764 | "139863263534880" -> "139863261465872" [color = magenta]; | ||
| 765 | "139863263534880" -> "139863551252368" [color = magenta]; | ||
| 766 | "139863263534880" -> "139863261376512" [color = magenta]; | ||
| 767 | "139863263534880" -> "139863277046880" [color = magenta]; | ||
| 768 | "139863263534880" -> "139863261465872" [color = magenta]; | ||
| 769 | "139863263534880" -> "139863274649312" [color = magenta]; | ||
| 770 | "139863263534880" -> "139863263506432" [color = magenta]; | ||
| 771 | "139863277046880" [label = "elogind@252.9", shape = box, fontname = sans]; | ||
| 772 | "139863277046880" -> "139863265194688" [color = darkseagreen]; | ||
| 773 | "139863277046880" -> "139863265194160" [color = darkseagreen]; | ||
| 774 | "139863277046880" -> "139863265283872" [color = darkseagreen]; | ||
| 775 | "139863277046880" -> "139863265281584" [color = darkseagreen]; | ||
| 776 | "139863277046880" -> "139863552555424" [color = darkseagreen]; | ||
| 777 | "139863277046880" -> "139863275966992" [color = darkseagreen]; | ||
| 778 | "139863277046880" -> "139863551253248" [color = darkseagreen]; | ||
| 779 | "139863277046880" -> "139863551252368" [color = darkseagreen]; | ||
| 780 | "139863277046880" -> "139863585014112" [color = darkseagreen]; | ||
| 781 | "139863277046880" -> "139863261981088" [color = darkseagreen]; | ||
| 782 | "139863277046880" -> "139863276039968" [color = darkseagreen]; | ||
| 783 | "139863277046880" -> "139863263534528" [color = darkseagreen]; | ||
| 784 | "139863277046880" -> "139863263358400" [color = darkseagreen]; | ||
| 785 | "139863277046880" -> "139863263381040" [color = darkseagreen]; | ||
| 786 | "139863277046880" -> "139863263357168" [color = darkseagreen]; | ||
| 787 | "139863277046880" -> "139863585112064" [color = darkseagreen]; | ||
| 788 | "139863277046880" -> "139863585115232" [color = darkseagreen]; | ||
| 789 | "139863277046880" -> "139863261376512" [color = darkseagreen]; | ||
| 790 | "139863277046880" -> "139863263405264" [color = darkseagreen]; | ||
| 791 | "139863277046880" -> "139863297330800" [color = darkseagreen]; | ||
| 792 | "139863552555424" [label = "gperf@3.1", shape = box, fontname = sans]; | ||
| 793 | "139863263534528" [label = "kexec-tools@2.0.23", shape = box, fontname = sans]; | ||
| 794 | "139863263358400" [label = "linux-pam@1.5.2", shape = box, fontname = sans]; | ||
| 795 | "139863585112064" [label = "shadow@4.13", shape = box, fontname = sans]; | ||
| 796 | "139863585115232" [label = "shepherd@0.9.3", shape = box, fontname = sans]; | ||
| 797 | "139863297330800" [label = "acl@2.3.1", shape = box, fontname = sans]; | ||
| 798 | "139863274649312" [label = "lua@5.3.5", shape = box, fontname = sans]; | ||
| 799 | "139863274649312" -> "139863553025760" [color = darkviolet]; | ||
| 800 | |||
| 801 | } | ||
