1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Generated by graphviz version 2.40.1 (20161225.0304)
-->
<!-- Title: Guix package Pages: 1 -->
<svg width="720pt" height="503pt"
viewBox="0.00 0.00 720.00 502.79" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(.0915 .0915) rotate(0) translate(4 5489.9)">
<title>Guix package</title>
<polygon fill="#ffffff" stroke="transparent" points="-4,4 -4,-5489.9 7863.3571,-5489.9 7863.3571,4 -4,4"/>
<!-- 54306304 -->
<g id="node1" class="node">
<title>54306304</title>
<polygon fill="none" stroke="#000000" points="2329.3571,-5398.5 1854.3571,-5398.5 1854.3571,-5337.5 2329.3571,-5337.5 2329.3571,-5398.5"/>
<text text-anchor="middle" x="2091.8571" y="-5356.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">gemma-dev-env-0.98</text>
</g>
<!-- 53759360 -->
<g id="node2" class="node">
<title>53759360</title>
<polygon fill="none" stroke="#000000" points="7859.3571,-4648.5 7644.3571,-4648.5 7644.3571,-4587.5 7859.3571,-4587.5 7859.3571,-4648.5"/>
<text text-anchor="middle" x="7751.8571" y="-4606.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">unzip-6.0</text>
</g>
<!-- 54306304->53759360 -->
<g id="edge1" class="edge">
<title>54306304->53759360</title>
<path fill="none" stroke="#8b7765" d="M2329.4202,-5340.0884C2722.2855,-5290.2369 3485.9532,-5176.6005 3706.8571,-5023.5 3733.3047,-5005.1702 3718.279,-4979.0802 3745.8571,-4962.5 4487.987,-4516.3241 6775.3833,-4788.8714 7629.8571,-4648.5 7631.3382,-4648.2567 7632.8278,-4648.0044 7634.3243,-4647.7439"/>
<polygon fill="#8b7765" stroke="#8b7765" points="7635.0836,-4651.1631 7644.2852,-4645.9113 7633.817,-4644.2786 7635.0836,-4651.1631"/>
</g>
<!-- 49357952 -->
<g id="node3" class="node">
<title>49357952</title>
<polygon fill="none" stroke="#000000" points="4017.3571,-5023.5 3754.3571,-5023.5 3754.3571,-4962.5 4017.3571,-4962.5 4017.3571,-5023.5"/>
<text text-anchor="middle" x="3885.8571" y="-4981.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">sassc-3.4.5</text>
</g>
<!-- 54306304->49357952 -->
<g id="edge2" class="edge">
<title>54306304->49357952</title>
<path fill="none" stroke="#8b7765" d="M2237.907,-5337.4712C2576.1225,-5266.774 3409.6716,-5092.5371 3743.8753,-5022.6785"/>
<polygon fill="#8b7765" stroke="#8b7765" points="3745.0283,-5026.0132 3754.1006,-5020.5411 3743.596,-5019.1613 3745.0283,-5026.0132"/>
</g>
<!-- 53772672 -->
<g id="node4" class="node">
<title>53772672</title>
<polygon fill="none" stroke="#000000" points="4352.3571,-5023.5 4035.3571,-5023.5 4035.3571,-4962.5 4352.3571,-4962.5 4352.3571,-5023.5"/>
<text text-anchor="middle" x="4193.8571" y="-4981.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">binutils-2.28.1</text>
</g>
<!-- 54306304->53772672 -->
<g id="edge3" class="edge">
<title>54306304->53772672</title>
<path fill="none" stroke="#8b7765" d="M2264.7006,-5337.4938C2601.3375,-5278.0199 3368.7368,-5142.1558 4025.0564,-5023.823"/>
<polygon fill="#8b7765" stroke="#8b7765" points="4025.974,-5027.2141 4035.1942,-5021.995 4024.7318,-5020.3252 4025.974,-5027.2141"/>
</g>
<!-- 54308608 -->
<g id="node5" class="node">
<title>54308608</title>
<polygon fill="none" stroke="#000000" points="1526.3571,-4273.5 1049.3571,-4273.5 1049.3571,-4212.5 1526.3571,-4212.5 1526.3571,-4273.5"/>
<text text-anchor="middle" x="1287.8571" y="-4231.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">gemma-wrapper-0.97</text>
</g>
<!-- 54306304->54308608 -->
<g id="edge4" class="edge">
<title>54306304->54308608</title>
<path fill="none" stroke="#8b7765" d="M2019.7249,-5337.3258C1909.7948,-5287.13 1700.321,-5177.3981 1578.8571,-5023.5 1389.2908,-4783.3141 1314.2951,-4406.9966 1293.9778,-4283.6425"/>
<polygon fill="#8b7765" stroke="#8b7765" points="1297.391,-4282.824 1292.3392,-4273.5111 1290.4808,-4283.9417 1297.391,-4282.824"/>
</g>
<!-- 49435776 -->
<g id="node6" class="node">
<title>49435776</title>
<polygon fill="none" stroke="#000000" points="473.3571,-2023.5 258.3571,-2023.5 258.3571,-1962.5 473.3571,-1962.5 473.3571,-2023.5"/>
<text text-anchor="middle" x="365.8571" y="-1981.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">gcc-7.3.0</text>
</g>
<!-- 54306304->49435776 -->
<g id="edge5" class="edge">
<title>54306304->49435776</title>
<path fill="none" stroke="#8b7765" d="M1898.1521,-5337.4519C1556.7117,-5281.0094 864.3956,-5154.1711 658.8571,-5023.5 464.1821,-4899.7353 334.8571,-4848.686 334.8571,-4618 334.8571,-4618 334.8571,-4618 334.8571,-2743 334.8571,-2472.2001 355.282,-2146.8697 362.9738,-2033.9555"/>
<polygon fill="#8b7765" stroke="#8b7765" points="366.4846,-2033.9166 363.6773,-2023.7004 359.501,-2033.4374 366.4846,-2033.9166"/>
</g>
<!-- 43195776 -->
<g id="node7" class="node">
<title>43195776</title>
<polygon fill="none" stroke="#000000" points="3697.3571,-5023.5 3516.3571,-5023.5 3516.3571,-4962.5 3697.3571,-4962.5 3697.3571,-5023.5"/>
<text text-anchor="middle" x="3606.8571" y="-4981.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">gdb-8.1</text>
</g>
<!-- 54306304->43195776 -->
<g id="edge6" class="edge">
<title>54306304->43195776</title>
<path fill="none" stroke="#8b7765" d="M2225.0183,-5337.4825C2475.7512,-5279.5734 3034.7428,-5148.3449 3501.8571,-5023.5 3503.3185,-5023.1094 3504.7907,-5022.7136 3506.2715,-5022.3132"/>
<polygon fill="#8b7765" stroke="#8b7765" points="3507.4258,-5025.6262 3516.1486,-5019.6126 3505.5796,-5018.874 3507.4258,-5025.6262"/>
</g>
<!-- 49434816 -->
<g id="node8" class="node">
<title>49434816</title>
<polygon fill="none" stroke="#000000" points="1164.3571,-2023.5 857.3571,-2023.5 857.3571,-1962.5 1164.3571,-1962.5 1164.3571,-2023.5"/>
<text text-anchor="middle" x="1010.8571" y="-1981.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">gfortran-5.5.0</text>
</g>
<!-- 54306304->49434816 -->
<g id="edge7" class="edge">
<title>54306304->49434816</title>
<path fill="none" stroke="#8b7765" d="M1854.2956,-5343.758C1579.6293,-5307.4301 1121.3231,-5220.7079 777.8571,-5023.5 556.9634,-4896.6694 372.8571,-4872.7156 372.8571,-4618 372.8571,-4618 372.8571,-4618 372.8571,-2743 372.8571,-2392.5599 781.9726,-2122.4347 944.9815,-2028.7141"/>
<polygon fill="#8b7765" stroke="#8b7765" points="947.0098,-2031.5864 953.9584,-2023.5884 943.5388,-2025.5075 947.0098,-2031.5864"/>
</g>
<!-- 53772480 -->
<g id="node9" class="node">
<title>53772480</title>
<polygon fill="none" stroke="#000000" points="3223.8571,-2023.5 2593.8571,-2023.5 2593.8571,-1962.5 3223.8571,-1962.5 3223.8571,-2023.5"/>
<text text-anchor="middle" x="2908.8571" y="-1981.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">glibc-2.26.105-g0890d5379c</text>
</g>
<!-- 54306304->53772480 -->
<g id="edge8" class="edge">
<title>54306304->53772480</title>
<path fill="none" stroke="#8b7765" d="M2153.2095,-5337.3046C2248.6493,-5286.157 2431.2081,-5174.0559 2522.8571,-5023.5 2618.4191,-4866.5161 2603.8571,-4801.7826 2603.8571,-4618 2603.8571,-4618 2603.8571,-4618 2603.8571,-2743 2603.8571,-2451.1522 2804.4837,-2139.3631 2880.3029,-2031.9544"/>
<polygon fill="#8b7765" stroke="#8b7765" points="2883.2418,-2033.861 2886.1817,-2023.6822 2877.5359,-2029.806 2883.2418,-2033.861"/>
</g>
<!-- 48762240 -->
<g id="node10" class="node">
<title>48762240</title>
<polygon fill="none" stroke="#000000" points="562.3571,-3148.5 401.3571,-3148.5 401.3571,-3087.5 562.3571,-3087.5 562.3571,-3148.5"/>
<text text-anchor="middle" x="481.8571" y="-3106.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">gsl-2.4</text>
</g>
<!-- 54306304->48762240 -->
<g id="edge9" class="edge">
<title>54306304->48762240</title>
<path fill="none" stroke="#8b7765" d="M1854.278,-5352.54C1440.4099,-5311.3442 630.8571,-5161.3218 630.8571,-4618 630.8571,-4618 630.8571,-4618 630.8571,-3868 630.8571,-3591.9094 532.5192,-3269.4187 495.6219,-3158.1343"/>
<polygon fill="#8b7765" stroke="#8b7765" points="498.9398,-3157.0197 492.4534,-3148.6425 492.2999,-3159.2362 498.9398,-3157.0197"/>
</g>
<!-- 38296000 -->
<g id="node11" class="node">
<title>38296000</title>
<polygon fill="none" stroke="#000000" points="839.3571,-3148.5 580.3571,-3148.5 580.3571,-3087.5 839.3571,-3087.5 839.3571,-3148.5"/>
<text text-anchor="middle" x="709.8571" y="-3106.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">eigen-3.3.4</text>
</g>
<!-- 54306304->38296000 -->
<g id="edge10" class="edge">
<title>54306304->38296000</title>
<path fill="none" stroke="#8b7765" d="M1854.2333,-5341.7088C1472.4507,-5284.8348 764.8571,-5112.6963 764.8571,-4618 764.8571,-4618 764.8571,-4618 764.8571,-3868 764.8571,-3596.7046 728.6194,-3271.6831 714.9728,-3158.9028"/>
<polygon fill="#8b7765" stroke="#8b7765" points="718.4086,-3158.1633 713.7246,-3148.6601 711.46,-3159.0101 718.4086,-3158.1633"/>
</g>
<!-- 53597120 -->
<g id="node12" class="node">
<title>53597120</title>
<polygon fill="none" stroke="#000000" points="2819.3571,-1648.5 2256.3571,-1648.5 2256.3571,-1587.5 2819.3571,-1587.5 2819.3571,-1648.5"/>
<text text-anchor="middle" x="2537.8571" y="-1606.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">linux-libre-headers-4.9.59</text>
</g>
<!-- 54306304->53597120 -->
<g id="edge11" class="edge">
<title>54306304->53597120</title>
<path fill="none" stroke="#8b7765" d="M2109.2892,-5337.4781C2194.8051,-5184.7816 2565.8571,-4486.5929 2565.8571,-3868 2565.8571,-3868 2565.8571,-3868 2565.8571,-2368 2565.8571,-2097.2427 2547.4088,-1771.8857 2540.4614,-1658.9601"/>
<polygon fill="#8b7765" stroke="#8b7765" points="2543.9378,-1658.4683 2539.826,-1648.7039 2536.9512,-1658.9012 2543.9378,-1658.4683"/>
</g>
<!-- 62341504 -->
<g id="node13" class="node">
<title>62341504</title>
<polygon fill="none" stroke="#000000" points="2461.8571,-3148.5 1759.8571,-3148.5 1759.8571,-3087.5 2461.8571,-3087.5 2461.8571,-3148.5"/>
<text text-anchor="middle" x="2110.8571" y="-3106.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">openblas-git-0.2.20-git-893bd14</text>
</g>
<!-- 54306304->62341504 -->
<g id="edge12" class="edge">
<title>54306304->62341504</title>
<path fill="none" stroke="#8b7765" d="M2060.9579,-5337.1861C1967.4461,-5240.495 1693.8571,-4930.87 1693.8571,-4618 1693.8571,-4618 1693.8571,-4618 1693.8571,-3868 1693.8571,-3559.1989 1967.2276,-3258.7779 2071.2891,-3155.6059"/>
<polygon fill="#8b7765" stroke="#8b7765" points="2073.814,-3158.0317 2078.4828,-3148.521 2068.9021,-3153.0443 2073.814,-3158.0317"/>
</g>
<!-- 54306496 -->
<g id="node14" class="node">
<title>54306496</title>
<polygon fill="none" stroke="#000000" points="1703.3571,-3148.5 1202.3571,-3148.5 1202.3571,-3087.5 1703.3571,-3087.5 1703.3571,-3148.5"/>
<text text-anchor="middle" x="1452.8571" y="-3106.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">shunit2-2.0.4-60dd60b</text>
</g>
<!-- 54306304->54306496 -->
<g id="edge13" class="edge">
<title>54306304->54306496</title>
<path fill="none" stroke="#8b7765" d="M2051.0219,-5337.2137C1931.8461,-5243.5155 1592.8571,-4947.9928 1592.8571,-4618 1592.8571,-4618 1592.8571,-4618 1592.8571,-3868 1592.8571,-3592.8013 1500.6449,-3270.299 1465.8953,-3158.5362"/>
<polygon fill="#8b7765" stroke="#8b7765" points="1469.1415,-3157.1903 1462.8133,-3148.693 1462.4613,-3159.282 1469.1415,-3157.1903"/>
</g>
<!-- 53716096 -->
<g id="node15" class="node">
<title>53716096</title>
<polygon fill="none" stroke="#000000" points="4316.3571,-898.5 4077.3571,-898.5 4077.3571,-837.5 4316.3571,-837.5 4316.3571,-898.5"/>
<text text-anchor="middle" x="4196.8571" y="-856.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">zlib-1.2.11</text>
</g>
<!-- 54306304->53716096 -->
<g id="edge14" class="edge">
<title>54306304->53716096</title>
<path fill="none" stroke="#8b7765" d="M2329.4602,-5347.5276C2727.9606,-5298.7604 3487.8571,-5137.6401 3487.8571,-4618 3487.8571,-4618 3487.8571,-4618 3487.8571,-3868 3487.8571,-2879.3944 3602.1726,-2636.5652 3634.8571,-1648.5 3640.3806,-1481.5246 3615.7562,-1440.4243 3608.8571,-1273.5 3607.7376,-1246.412 3595.3765,-1236.022 3608.8571,-1212.5 3707.2685,-1040.7844 3928.1361,-946.3843 4069.4033,-901.5775"/>
<polygon fill="#8b7765" stroke="#8b7765" points="4070.5161,-904.8967 4079.0124,-898.5672 4068.4234,-898.2168 4070.5161,-904.8967"/>
</g>
<!-- 53715136 -->
<g id="node16" class="node">
<title>53715136</title>
<polygon fill="none" stroke="#000000" points="7549.8571,-3898.5 7293.8571,-3898.5 7293.8571,-3837.5 7549.8571,-3837.5 7549.8571,-3898.5"/>
<text text-anchor="middle" x="7421.8571" y="-3856.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">bzip2-1.0.6</text>
</g>
<!-- 53759360->53715136 -->
<g id="edge15" class="edge">
<title>53759360->53715136</title>
<path fill="none" stroke="#ff0000" d="M7738.3055,-4587.2009C7686.1251,-4468.609 7498.1937,-4041.4923 7439.4992,-3908.0955"/>
<polygon fill="#ff0000" stroke="#ff0000" points="7442.5707,-3906.3856 7435.3396,-3898.642 7436.1634,-3909.2048 7442.5707,-3906.3856"/>
</g>
<!-- 58008896 -->
<g id="node17" class="node">
<title>58008896</title>
<polygon fill="none" stroke="#000000" points="1500.3571,-3523.5 847.3571,-3523.5 847.3571,-3462.5 1500.3571,-3462.5 1500.3571,-3523.5"/>
<text text-anchor="middle" x="1173.8571" y="-3481.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">gemma-gn2-git-0.97-c760aa0</text>
</g>
<!-- 54308608->58008896 -->
<g id="edge16" class="edge">
<title>54308608->58008896</title>
<path fill="none" stroke="#8b7765" d="M1283.1757,-4212.2009C1265.1858,-4093.8464 1200.4877,-3668.2013 1180.074,-3533.9002"/>
<polygon fill="#8b7765" stroke="#8b7765" points="1183.4778,-3533.0025 1178.5147,-3523.642 1176.5573,-3534.0544 1183.4778,-3533.0025"/>
</g>
<!-- 49435776->53716096 -->
<g id="edge96" class="edge">
<title>49435776->53716096</title>
<path fill="none" stroke="#ff00ff" d="M473.614,-1983.4899C809.8036,-1952.0145 1832.5811,-1842.0639 2094.8571,-1648.5 2119.6583,-1630.1963 2104.9474,-1608.122 2127.8571,-1587.5 2452.9805,-1294.8434 2625.445,-1358.3402 3037.8571,-1212.5 3407.6996,-1081.7136 3855.195,-958.2934 4069.887,-901.1793"/>
<polygon fill="#ff00ff" stroke="#ff00ff" points="4070.8541,-904.5438 4079.6199,-898.593 4069.0564,-897.7786 4070.8541,-904.5438"/>
</g>
<!-- 53777344 -->
<g id="node18" class="node">
<title>53777344</title>
<polygon fill="none" stroke="#000000" points="2143.8571,-523.5 1895.8571,-523.5 1895.8571,-462.5 2143.8571,-462.5 2143.8571,-523.5"/>
<text text-anchor="middle" x="2019.8571" y="-481.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">perl-5.26.1</text>
</g>
<!-- 49435776->53777344 -->
<g id="edge89" class="edge">
<title>49435776->53777344</title>
<path fill="none" stroke="#ff00ff" d="M374.3477,-1962.3992C394.5201,-1892.5473 449.6318,-1717.3696 528.8571,-1587.5 586.2483,-1493.4218 1088.3533,-901.7925 1177.8571,-837.5 1402.2699,-676.2996 1713.1779,-574.5387 1887.5653,-526.2586"/>
<polygon fill="#ff00ff" stroke="#ff00ff" points="1888.595,-529.6054 1897.308,-523.5776 1886.7378,-522.8563 1888.595,-529.6054"/>
</g>
<!-- 53717632 -->
<g id="node20" class="node">
<title>53717632</title>
<polygon fill="none" stroke="#000000" points="3117.8571,-1648.5 2875.8571,-1648.5 2875.8571,-1587.5 3117.8571,-1587.5 3117.8571,-1648.5"/>
<text text-anchor="middle" x="2996.8571" y="-1606.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">texinfo-6.5</text>
</g>
<!-- 49435776->53717632 -->
<g id="edge90" class="edge">
<title>49435776->53717632</title>
<path fill="none" stroke="#ff00ff" d="M473.5211,-1979.529C817.4492,-1936.157 1920.3026,-1794.451 2828.8571,-1648.5 2840.8662,-1646.5708 2853.3415,-1644.4766 2865.825,-1642.3197"/>
<polygon fill="#ff00ff" stroke="#ff00ff" points="2866.5779,-1645.7414 2875.8296,-1640.5784 2865.3775,-1638.845 2866.5779,-1645.7414"/>
</g>
<!-- 49841280 -->
<g id="node21" class="node">
<title>49841280</title>
<polygon fill="none" stroke="#000000" points="193.8571,-1648.5 21.8571,-1648.5 21.8571,-1587.5 193.8571,-1587.5 193.8571,-1648.5"/>
<text text-anchor="middle" x="107.8571" y="-1606.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">isl-0.18</text>
</g>
<!-- 49435776->49841280 -->
<g id="edge91" class="edge">
<title>49435776->49841280</title>
<path fill="none" stroke="#ff00ff" d="M344.7439,-1962.3122C298.0436,-1894.4339 186.0609,-1731.6682 134.5761,-1656.8357"/>
<polygon fill="#ff00ff" stroke="#ff00ff" points="137.4518,-1654.8406 128.9002,-1648.5859 131.6849,-1658.8083 137.4518,-1654.8406"/>
</g>
<!-- 49840512 -->
<g id="node22" class="node">
<title>49840512</title>
<polygon fill="none" stroke="#000000" points="875.8571,-898.5 641.8571,-898.5 641.8571,-837.5 875.8571,-837.5 875.8571,-898.5"/>
<text text-anchor="middle" x="758.8571" y="-856.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">gmp-6.1.2</text>
</g>
<!-- 49435776->49840512 -->
<g id="edge92" class="edge">
<title>49435776->49840512</title>
<path fill="none" stroke="#ff00ff" d="M301.3118,-1962.4929C181.2823,-1901.0954 -57.9467,-1754.1579 12.8571,-1587.5 156.0863,-1250.3672 543.2469,-994.4421 695.8242,-903.7536"/>
<polygon fill="#ff00ff" stroke="#ff00ff" points="697.8317,-906.6328 704.6593,-898.5313 694.2698,-900.6067 697.8317,-906.6328"/>
</g>
<!-- 49840128 -->
<g id="node23" class="node">
<title>49840128</title>
<polygon fill="none" stroke="#000000" points="761.8571,-1273.5 525.8571,-1273.5 525.8571,-1212.5 761.8571,-1212.5 761.8571,-1273.5"/>
<text text-anchor="middle" x="643.8571" y="-1231.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">mpfr-3.1.6</text>
</g>
<!-- 49435776->49840128 -->
<g id="edge93" class="edge">
<title>49435776->49840128</title>
<path fill="none" stroke="#ff00ff" d="M341.6789,-1962.4877C290.1772,-1893.5421 179.2026,-1721.3162 240.8571,-1587.5 309.2341,-1439.0933 476.5712,-1330.851 572.7398,-1278.4339"/>
<polygon fill="#ff00ff" stroke="#ff00ff" points="574.6793,-1281.3645 581.8185,-1273.5361 571.3557,-1275.2038 574.6793,-1281.3645"/>
</g>
<!-- 49852160 -->
<g id="node24" class="node">
<title>49852160</title>
<polygon fill="none" stroke="#000000" points="481.3571,-1648.5 250.3571,-1648.5 250.3571,-1587.5 481.3571,-1587.5 481.3571,-1648.5"/>
<text text-anchor="middle" x="365.8571" y="-1606.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">mpc-1.0.3</text>
</g>
<!-- 49435776->49852160 -->
<g id="edge94" class="edge">
<title>49435776->49852160</title>
<path fill="none" stroke="#ff00ff" d="M365.8571,-1962.3122C365.8571,-1894.9846 365.8571,-1734.3032 365.8571,-1658.6744"/>
<polygon fill="#ff00ff" stroke="#ff00ff" points="369.3572,-1658.5859 365.8571,-1648.5859 362.3572,-1658.586 369.3572,-1658.5859"/>
</g>
<!-- 43227776 -->
<g id="node25" class="node">
<title>43227776</title>
<polygon fill="none" stroke="#000000" points="803.8571,-1648.5 537.8571,-1648.5 537.8571,-1587.5 803.8571,-1587.5 803.8571,-1648.5"/>
<text text-anchor="middle" x="670.8571" y="-1606.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">libelf-0.8.13</text>
</g>
<!-- 49435776->43227776 -->
<g id="edge95" class="edge">
<title>49435776->43227776</title>
<path fill="none" stroke="#ff00ff" d="M390.8166,-1962.3122C446.1362,-1894.2962 578.9443,-1731.0075 639.6403,-1656.3814"/>
<polygon fill="#ff00ff" stroke="#ff00ff" points="642.386,-1658.5524 645.9806,-1648.5859 636.9554,-1654.1355 642.386,-1658.5524"/>
</g>
<!-- 43195776->53717632 -->
<g id="edge97" class="edge">
<title>43195776->53717632</title>
<path fill="none" stroke="#ff0000" d="M3609.5869,-4962.4704C3625.0308,-4782.369 3696.6374,-3840.8121 3577.8571,-3087.5 3496.4009,-2570.8996 3459.909,-2433.6248 3232.8571,-1962.5 3175.1734,-1842.8082 3079.1272,-1717.9294 3029.2103,-1656.6347"/>
<polygon fill="#ff0000" stroke="#ff0000" points="3031.8154,-1654.2915 3022.7734,-1648.7694 3026.3983,-1658.7249 3031.8154,-1654.2915"/>
</g>
<!-- 43195776->49840512 -->
<g id="edge101" class="edge">
<title>43195776->49840512</title>
<path fill="none" stroke="#ff0000" d="M3536.8923,-4962.3817C3297.7916,-4852.4989 2527.8571,-4453.2276 2527.8571,-3868 2527.8571,-3868 2527.8571,-3868 2527.8571,-3493 2527.8571,-3311.006 2580.1443,-3233.0271 2470.8571,-3087.5 2266.3439,-2815.1696 2033.3947,-2991.6458 1771.8571,-2773.5 1655.3408,-2676.3149 1063.8376,-1785.1293 997.8571,-1648.5 931.1971,-1510.4635 806.5234,-1048.3463 769.4906,-908.4619"/>
<polygon fill="#ff0000" stroke="#ff0000" points="772.8167,-907.3491 766.8773,-898.5756 766.0491,-909.1381 772.8167,-907.3491"/>
</g>
<!-- 43195776->49840128 -->
<g id="edge100" class="edge">
<title>43195776->49840128</title>
<path fill="none" stroke="#ff0000" d="M3516.1054,-4977.3628C3141.0899,-4910.2252 1731.8571,-4632.0527 1731.8571,-4243 1731.8571,-4243 1731.8571,-4243 1731.8571,-3493 1731.8571,-3312.5801 1777.165,-3256.07 1712.8571,-3087.5 1712.8571,-3087.5 848.8571,-2023.5 848.8571,-2023.5 776.3396,-1843.092 864.5748,-1774.933 812.8571,-1587.5 780.4304,-1469.9805 708.0045,-1344.4371 669.3358,-1282.3941"/>
<polygon fill="#ff0000" stroke="#ff0000" points="672.1653,-1280.3184 663.8844,-1273.7095 666.2366,-1284.04 672.1653,-1280.3184"/>
</g>
<!-- 38442880 -->
<g id="node26" class="node">
<title>38442880</title>
<polygon fill="none" stroke="#000000" points="7523.8571,-523.5 7023.8571,-523.5 7023.8571,-462.5 7523.8571,-462.5 7523.8571,-523.5"/>
<text text-anchor="middle" x="7273.8571" y="-481.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">ncurses-6.0-20170930</text>
</g>
<!-- 43195776->38442880 -->
<g id="edge103" class="edge">
<title>43195776->38442880</title>
<path fill="none" stroke="#ff0000" d="M3697.4354,-4963.7252C3699.2541,-4963.299 3701.0628,-4962.8898 3702.8571,-4962.5 4839.8452,-4715.4868 5163.8543,-4890.7953 6301.8571,-4648.5 6899.6341,-4521.2257 7615.8571,-4854.176 7615.8571,-4243 7615.8571,-4243 7615.8571,-4243 7615.8571,-3118 7615.8571,-2103.0188 7806.1249,-1803.5742 7494.8571,-837.5 7455.1279,-714.1935 7359.8995,-591.7928 7308.371,-531.5463"/>
<polygon fill="#ff0000" stroke="#ff0000" points="7310.8842,-529.1013 7301.7036,-523.8129 7305.5826,-533.6722 7310.8842,-529.1013"/>
</g>
<!-- 40131392 -->
<g id="node27" class="node">
<title>40131392</title>
<polygon fill="none" stroke="#000000" points="5882.8571,-148.5 5492.8571,-148.5 5492.8571,-87.5 5882.8571,-87.5 5882.8571,-148.5"/>
<text text-anchor="middle" x="5687.8571" y="-106.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">pkg-config-0.29.2</text>
</g>
<!-- 43195776->40131392 -->
<g id="edge98" class="edge">
<title>43195776->40131392</title>
<path fill="none" stroke="#ff0000" d="M3618.6624,-4962.4612C3656.5865,-4861.5136 3772.8571,-4528.7228 3772.8571,-4243 3772.8571,-4243 3772.8571,-4243 3772.8571,-2368 3772.8571,-1997.4737 3805.6473,-1851.2813 4065.8571,-1587.5 4334.9703,-1314.6932 4637.5014,-1578.9832 4868.8571,-1273.5 4978.1926,-1129.1329 4844.1572,-610.2634 4948.8571,-462.5 5077.8715,-280.4216 5328.2273,-191.9533 5501.5572,-150.8507"/>
<polygon fill="#ff0000" stroke="#ff0000" points="5502.3644,-154.2565 5511.3039,-148.57 5500.7694,-147.4406 5502.3644,-154.2565"/>
</g>
<!-- 50930432 -->
<g id="node34" class="node">
<title>50930432</title>
<polygon fill="none" stroke="#000000" points="3600.3571,-148.5 3341.3571,-148.5 3341.3571,-87.5 3600.3571,-87.5 3600.3571,-148.5"/>
<text text-anchor="middle" x="3470.8571" y="-106.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">expat-2.2.5</text>
</g>
<!-- 43195776->50930432 -->
<g id="edge99" class="edge">
<title>43195776->50930432</title>
<path fill="none" stroke="#ff0000" d="M3603.8334,-4962.3169C3594.0457,-4860.2475 3563.8571,-4522.7555 3563.8571,-4243 3563.8571,-4243 3563.8571,-4243 3563.8571,-2743 3563.8571,-2423.2173 3566.9682,-2343.2815 3567.8571,-2023.5 3568.3958,-1829.7148 3571.6165,-1781.1305 3563.8571,-1587.5 3544.8765,-1113.849 3517.3967,-996.7305 3489.8571,-523.5 3482.0911,-390.0516 3475.403,-231.7529 3472.4586,-158.6826"/>
<polygon fill="#ff0000" stroke="#ff0000" points="3475.9496,-158.385 3472.0517,-148.5333 3468.9552,-158.6655 3475.9496,-158.385"/>
</g>
<!-- 38416128 -->
<g id="node40" class="node">
<title>38416128</title>
<polygon fill="none" stroke="#000000" points="2818.3571,-1273.5 2549.3571,-1273.5 2549.3571,-1212.5 2818.3571,-1212.5 2818.3571,-1273.5"/>
<text text-anchor="middle" x="2683.8571" y="-1231.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">guile-2.0.14</text>
</g>
<!-- 43195776->38416128 -->
<g id="edge104" class="edge">
<title>43195776->38416128</title>
<path fill="none" stroke="#ff0000" d="M3600.6585,-4962.2701C3588.7983,-4902.2422 3562.9146,-4765.0749 3549.8571,-4648.5 3529.7609,-4469.0844 3525.8571,-4423.5376 3525.8571,-4243 3525.8571,-4243 3525.8571,-4243 3525.8571,-2743 3525.8571,-2678.7959 3581.8597,-1640.6599 3545.8571,-1587.5 3384.5552,-1349.3288 3029.1526,-1275.8062 2828.7188,-1253.1184"/>
<polygon fill="#ff0000" stroke="#ff0000" points="2829.0257,-1249.6311 2818.7019,-1252.0122 2828.2573,-1256.5888 2829.0257,-1249.6311"/>
</g>
<!-- 40131200 -->
<g id="node48" class="node">
<title>40131200</title>
<polygon fill="none" stroke="#000000" points="7485.8571,-898.5 7173.8571,-898.5 7173.8571,-837.5 7485.8571,-837.5 7485.8571,-898.5"/>
<text text-anchor="middle" x="7329.8571" y="-856.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">readline-7.0.3</text>
</g>
<!-- 43195776->40131200 -->
<g id="edge102" class="edge">
<title>43195776->40131200</title>
<path fill="none" stroke="#ff0000" d="M3697.4399,-4963.7461C3699.2573,-4963.3135 3701.0644,-4962.8974 3702.8571,-4962.5 4764.7377,-4727.1126 5068.8777,-4887.9166 6129.8571,-4648.5 6654.2698,-4530.163 6843.3128,-4587.2537 7279.8571,-4273.5 7448.5433,-4152.2616 7493.5452,-4095.7007 7558.8571,-3898.5 7567.3809,-3872.7637 7559.3629,-3864.6064 7558.8571,-3837.5 7537.032,-2667.8878 7477.926,-2376.9353 7365.8571,-1212.5 7355.2976,-1102.7825 7341.4037,-973.5706 7334.3637,-909.0275"/>
<polygon fill="#ff0000" stroke="#ff0000" points="7337.8187,-908.4247 7333.2534,-898.8639 7330.8601,-909.1849 7337.8187,-908.4247"/>
</g>
<!-- 50454720 -->
<g id="node50" class="node">
<title>50454720</title>
<polygon fill="none" stroke="#000000" points="5657.8571,-4273.5 5371.8571,-4273.5 5371.8571,-4212.5 5657.8571,-4212.5 5657.8571,-4273.5"/>
<text text-anchor="middle" x="5514.8571" y="-4231.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">python-3.6.3</text>
</g>
<!-- 43195776->50454720 -->
<g id="edge105" class="edge">
<title>43195776->50454720</title>
<path fill="none" stroke="#ff0000" d="M3684.6121,-4962.4359C3989.8902,-4842.4367 5105.4081,-4403.9469 5427.3351,-4277.4033"/>
<polygon fill="#ff0000" stroke="#ff0000" points="5429.057,-4280.4872 5437.0834,-4273.5714 5426.4961,-4273.9725 5429.057,-4280.4872"/>
</g>
<!-- 51494272 -->
<g id="node51" class="node">
<title>51494272</title>
<polygon fill="none" stroke="#000000" points="6120.8571,-4648.5 5644.8571,-4648.5 5644.8571,-4587.5 6120.8571,-4587.5 6120.8571,-4648.5"/>
<text text-anchor="middle" x="5882.8571" y="-4606.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">python-wrapper-3.6.3</text>
</g>
<!-- 43195776->51494272 -->
<g id="edge106" class="edge">
<title>43195776->51494272</title>
<path fill="none" stroke="#ff0000" d="M3697.4503,-4965.9171C3702.3087,-4964.7052 3707.1333,-4963.5565 3711.8571,-4962.5 4401.356,-4808.2904 5229.027,-4696.9508 5634.4042,-4647.1277"/>
<polygon fill="#ff0000" stroke="#ff0000" points="5634.9952,-4650.5815 5644.4945,-4645.8896 5634.1426,-4643.6336 5634.9952,-4650.5815"/>
</g>
<!-- 49436928 -->
<g id="node52" class="node">
<title>49436928</title>
<polygon fill="none" stroke="#000000" points="4134.3571,-4648.5 3821.3571,-4648.5 3821.3571,-4587.5 4134.3571,-4587.5 4134.3571,-4648.5"/>
<text text-anchor="middle" x="3977.8571" y="-4606.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">dejagnu-1.6.1</text>
</g>
<!-- 43195776->49436928 -->
<g id="edge107" class="edge">
<title>43195776->49436928</title>
<path fill="none" stroke="#ff0000" d="M3637.2176,-4962.3122C3704.6443,-4894.1585 3866.7094,-4730.3461 3940.3324,-4655.9293"/>
<polygon fill="#ff0000" stroke="#ff0000" points="3943.0525,-4658.1564 3947.5974,-4648.5859 3938.0762,-4653.2333 3943.0525,-4658.1564"/>
</g>
<!-- 50930048 -->
<g id="node53" class="node">
<title>50930048</title>
<polygon fill="none" stroke="#000000" points="3907.8571,-1273.5 3617.8571,-1273.5 3617.8571,-1212.5 3907.8571,-1212.5 3907.8571,-1273.5"/>
<text text-anchor="middle" x="3762.8571" y="-1231.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">libxml2-2.9.7</text>
</g>
<!-- 43195776->50930048 -->
<g id="edge108" class="edge">
<title>43195776->50930048</title>
<path fill="none" stroke="#ff0000" d="M3608.1358,-4962.2634C3622.0545,-4627.6776 3745.2303,-1666.7205 3761.1621,-1283.7462"/>
<polygon fill="#ff0000" stroke="#ff0000" points="3764.6625,-1283.8067 3761.5813,-1273.6699 3757.6685,-1283.5157 3764.6625,-1283.8067"/>
</g>
<!-- 49434816->53716096 -->
<g id="edge32" class="edge">
<title>49434816->53716096</title>
<path fill="none" stroke="#b8860b" d="M1133.893,-1962.4507C1342.2268,-1909.0961 1776.105,-1790.9254 2127.8571,-1648.5 2183.3123,-1626.046 2193.0341,-1611.4562 2247.8571,-1587.5 2937.6085,-1286.0972 3798.006,-997.9549 4092.4477,-901.7525"/>
<polygon fill="#b8860b" stroke="#b8860b" points="4093.8403,-904.9797 4102.2604,-898.549 4091.6679,-898.3253 4093.8403,-904.9797"/>
</g>
<!-- 49434816->53777344 -->
<g id="edge25" class="edge">
<title>49434816->53777344</title>
<path fill="none" stroke="#b8860b" d="M1053.4888,-1962.3779C1128.2883,-1906.8983 1284.5416,-1782.9783 1382.8571,-1648.5 1491.516,-1499.8738 1499.5861,-1447.8085 1558.8571,-1273.5 1622.7348,-1085.6439 1557.0415,-1010.1337 1654.8571,-837.5 1732.3601,-700.7158 1881.9219,-585.6171 1963.4723,-529.5809"/>
<polygon fill="#b8860b" stroke="#b8860b" points="1965.8182,-532.2176 1972.109,-523.6925 1961.875,-526.4339 1965.8182,-532.2176"/>
</g>
<!-- 49434816->53717632 -->
<g id="edge26" class="edge">
<title>49434816->53717632</title>
<path fill="none" stroke="#b8860b" d="M1164.6307,-1963.9642C1542.7648,-1892.5643 2512.7722,-1709.4058 2865.836,-1642.7396"/>
<polygon fill="#b8860b" stroke="#b8860b" points="2866.669,-1646.1443 2875.8459,-1640.8495 2865.3701,-1639.2658 2866.669,-1646.1443"/>
</g>
<!-- 49434816->49841280 -->
<g id="edge27" class="edge">
<title>49434816->49841280</title>
<path fill="none" stroke="#b8860b" d="M937.3437,-1962.4712C770.9263,-1893.3609 366.2532,-1725.3073 191.0255,-1652.5384"/>
<polygon fill="#b8860b" stroke="#b8860b" points="192.1672,-1649.2227 181.5895,-1648.6198 189.4825,-1655.6874 192.1672,-1649.2227"/>
</g>
<!-- 49434816->49840512 -->
<g id="edge28" class="edge">
<title>49434816->49840512</title>
<path fill="none" stroke="#b8860b" d="M1003.7001,-1962.1363C989.744,-1901.8768 957.9739,-1764.3265 931.8571,-1648.5 867.9952,-1365.276 792.9871,-1023.7692 767.69,-908.3408"/>
<polygon fill="#b8860b" stroke="#b8860b" points="771.0964,-907.5342 765.537,-898.5151 764.2586,-909.0326 771.0964,-907.5342"/>
</g>
<!-- 49434816->49840128 -->
<g id="edge29" class="edge">
<title>49434816->49840128</title>
<path fill="none" stroke="#b8860b" d="M1000.0981,-1962.3331C975.6787,-1893.7821 912.9529,-1723.4755 845.8571,-1587.5 789.3052,-1472.8926 709.4643,-1344.7206 669.192,-1281.937"/>
<polygon fill="#b8860b" stroke="#b8860b" points="672.1318,-1280.0374 663.7786,-1273.5201 666.2443,-1283.8241 672.1318,-1280.0374"/>
</g>
<!-- 49434816->49852160 -->
<g id="edge30" class="edge">
<title>49434816->49852160</title>
<path fill="none" stroke="#b8860b" d="M958.3475,-1962.4712C840.1281,-1893.739 553.5828,-1727.1428 427.3317,-1653.741"/>
<polygon fill="#b8860b" stroke="#b8860b" points="428.9274,-1650.6202 418.5231,-1648.6198 425.409,-1656.6718 428.9274,-1650.6202"/>
</g>
<!-- 49434816->43227776 -->
<g id="edge31" class="edge">
<title>49434816->43227776</title>
<path fill="none" stroke="#b8860b" d="M983.0335,-1962.3122C921.3657,-1894.2962 773.3173,-1731.0075 705.6563,-1656.3814"/>
<polygon fill="#b8860b" stroke="#b8860b" points="707.8982,-1653.6434 698.5884,-1648.5859 702.7124,-1658.3452 707.8982,-1653.6434"/>
</g>
<!-- 53772480->53597120 -->
<g id="edge203" class="edge">
<title>53772480->53597120</title>
<path fill="none" stroke="#696969" d="M2878.4966,-1962.3122C2811.07,-1894.1585 2649.0048,-1730.3461 2575.3818,-1655.9293"/>
<polygon fill="#696969" stroke="#696969" points="2577.638,-1653.2333 2568.1168,-1648.5859 2572.6618,-1658.1564 2577.638,-1653.2333"/>
</g>
<!-- 53772480->53777344 -->
<g id="edge200" class="edge">
<title>53772480->53777344</title>
<path fill="none" stroke="#696969" d="M2909.1532,-1962.301C2908.5451,-1891.501 2899.5372,-1713.2245 2828.8571,-1587.5 2727.5753,-1407.3416 2616.3935,-1433.7352 2485.8571,-1273.5 2343.3579,-1098.5803 2341.5296,-1031.208 2225.8571,-837.5 2159.8295,-726.9285 2081.777,-596.4662 2043.4713,-532.4556"/>
<polygon fill="#696969" stroke="#696969" points="2046.4739,-530.657 2038.3354,-523.8734 2040.4673,-534.2516 2046.4739,-530.657"/>
</g>
<!-- 53772480->53717632 -->
<g id="edge199" class="edge">
<title>53772480->53717632</title>
<path fill="none" stroke="#696969" d="M2916.0585,-1962.3122C2931.8581,-1894.9846 2969.5646,-1734.3032 2987.3122,-1658.6744"/>
<polygon fill="#696969" stroke="#696969" points="2990.8024,-1659.1211 2989.6796,-1648.5859 2983.9875,-1657.5218 2990.8024,-1659.1211"/>
</g>
<!-- 53775552 -->
<g id="node32" class="node">
<title>53775552</title>
<polygon fill="none" stroke="#000000" points="1596.8571,-523.5 1062.8571,-523.5 1062.8571,-462.5 1596.8571,-462.5 1596.8571,-523.5"/>
<text text-anchor="middle" x="1329.8571" y="-481.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">gettext-minimal-0.19.8.1</text>
</g>
<!-- 53772480->53775552 -->
<g id="edge201" class="edge">
<title>53772480->53775552</title>
<path fill="none" stroke="#696969" d="M2593.4298,-1978.4333C2120.7299,-1949.5937 1262.2075,-1867.749 1058.8571,-1648.5 992.6797,-1577.1486 1000.6757,-1308.2876 1017.8571,-1212.5 1049.239,-1037.5444 1085.9764,-1000.5036 1156.8571,-837.5 1205.9515,-724.5982 1273.8172,-596.0728 1308.1281,-532.6726"/>
<polygon fill="#696969" stroke="#696969" points="1311.249,-534.2595 1312.9406,-523.8006 1305.0959,-530.9218 1311.249,-534.2595"/>
</g>
<!-- 38441344 -->
<g id="node87" class="node">
<title>38441344</title>
<polygon fill="none" stroke="#000000" points="3536.3571,-1648.5 3135.3571,-1648.5 3135.3571,-1587.5 3536.3571,-1587.5 3536.3571,-1648.5"/>
<text text-anchor="middle" x="3335.8571" y="-1606.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">bash-static-4.4.12</text>
</g>
<!-- 53772480->38441344 -->
<g id="edge202" class="edge">
<title>53772480->38441344</title>
<path fill="none" stroke="#696969" d="M2943.8003,-1962.3122C3021.6398,-1893.952 3209.0639,-1729.3524 3293.4358,-1655.2552"/>
<polygon fill="#696969" stroke="#696969" points="3295.8257,-1657.8145 3301.0299,-1648.5859 3291.2066,-1652.5549 3295.8257,-1657.8145"/>
</g>
<!-- 53597120->53777344 -->
<g id="edge204" class="edge">
<title>53597120->53777344</title>
<path fill="none" stroke="#ff0000" d="M2501.2617,-1587.3226C2438.1318,-1531.991 2310.0422,-1408.6032 2252.8571,-1273.5 2176.868,-1093.9712 2262.6979,-1023.6703 2204.8571,-837.5 2168.0179,-718.9267 2089.3883,-593.9384 2047.4859,-532.2246"/>
<polygon fill="#ff0000" stroke="#ff0000" points="2050.358,-530.224 2041.8252,-523.9437 2044.5792,-534.1744 2050.358,-530.224"/>
</g>
<!-- 62341504->49434816 -->
<g id="edge56" class="edge">
<title>62341504->49434816</title>
<path fill="none" stroke="#9400d3" d="M2033.7779,-3087.3488C1912.6034,-3034.6837 1674.3088,-2918.5506 1505.8571,-2773.5 1245.828,-2549.5937 1069.9211,-2158.8276 1023.059,-2033.1513"/>
<polygon fill="#9400d3" stroke="#9400d3" points="1026.262,-2031.7193 1019.5366,-2023.5327 1019.6889,-2034.1265 1026.262,-2031.7193"/>
</g>
<!-- 62341504->49434816 -->
<g id="edge57" class="edge">
<title>62341504->49434816</title>
<path fill="none" stroke="#9400d3" d="M2044.874,-3087.3488C1930.6034,-3034.6837 1692.3088,-2918.5506 1523.8571,-2773.5 1263.5672,-2549.3692 1087.5683,-2158.0436 1030.5575,-2032.774"/>
<polygon fill="#9400d3" stroke="#9400d3" points="1033.6774,-2031.18 1026.3446,-2023.5327 1027.308,-2034.0837 1033.6774,-2031.18"/>
</g>
<!-- 62341504->53777344 -->
<g id="edge55" class="edge">
<title>62341504->53777344</title>
<path fill="none" stroke="#9400d3" d="M2116.3314,-3087.2379C2138.9823,-2958.1829 2225.4664,-2447.5112 2252.8571,-2023.5 2269.9175,-1759.4044 2203.0985,-1095.6578 2144.8571,-837.5 2119.1528,-723.5642 2066.0353,-595.8835 2038.038,-532.7593"/>
<polygon fill="#9400d3" stroke="#9400d3" points="2041.2037,-531.2644 2033.9321,-523.5589 2034.8113,-534.1172 2041.2037,-531.2644"/>
</g>
<!-- 53481024 -->
<g id="node35" class="node">
<title>53481024</title>
<polygon fill="none" stroke="#000000" points="2025.3571,-2773.5 1780.3571,-2773.5 1780.3571,-2712.5 2025.3571,-2712.5 2025.3571,-2773.5"/>
<text text-anchor="middle" x="1902.8571" y="-2731.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">cunit-2.1-3</text>
</g>
<!-- 62341504->53481024 -->
<g id="edge54" class="edge">
<title>62341504->53481024</title>
<path fill="none" stroke="#9400d3" d="M2093.8356,-3087.3122C2056.3385,-3019.7093 1966.6367,-2857.9873 1924.9055,-2782.7508"/>
<polygon fill="#9400d3" stroke="#9400d3" points="1927.7334,-2780.6331 1919.8221,-2773.5859 1921.6119,-2784.0285 1927.7334,-2780.6331"/>
</g>
<!-- 53773248 -->
<g id="node29" class="node">
<title>53773248</title>
<polygon fill="none" stroke="#000000" points="1373.8571,-1648.5 1067.8571,-1648.5 1067.8571,-1587.5 1373.8571,-1587.5 1373.8571,-1648.5"/>
<text text-anchor="middle" x="1220.8571" y="-1606.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">coreutils-8.28</text>
</g>
<!-- 54306496->53773248 -->
<g id="edge41" class="edge">
<title>54306496->53773248</title>
<path fill="none" stroke="#ff00ff" d="M1448.1177,-3087.3572C1418.6547,-2896.8635 1260.7198,-1875.7329 1227.1378,-1658.6077"/>
<polygon fill="#ff00ff" stroke="#ff00ff" points="1230.5765,-1657.9416 1225.589,-1648.5941 1223.6587,-1659.0116 1230.5765,-1657.9416"/>
</g>
<!-- 58008896->49434816 -->
<g id="edge19" class="edge">
<title>58008896->49434816</title>
<path fill="none" stroke="#696969" d="M1134.6732,-3462.3386C1068.4498,-3407.7192 936.7341,-3286.2934 886.8571,-3148.5 736.676,-2733.5998 933.588,-2184.2927 994.1606,-2033.0225"/>
<polygon fill="#696969" stroke="#696969" points="997.4503,-2034.2231 997.9481,-2023.6399 990.9593,-2031.6027 997.4503,-2034.2231"/>
</g>
<!-- 58008896->48762240 -->
<g id="edge20" class="edge">
<title>58008896->48762240</title>
<path fill="none" stroke="#696969" d="M1117.5213,-3462.4712C990.5606,-3393.6702 682.647,-3226.8096 547.4054,-3153.5211"/>
<polygon fill="#696969" stroke="#696969" points="548.8204,-3150.3071 538.3608,-3148.6198 545.4853,-3156.4615 548.8204,-3150.3071"/>
</g>
<!-- 58008896->38296000 -->
<g id="edge21" class="edge">
<title>58008896->38296000</title>
<path fill="none" stroke="#696969" d="M1135.8861,-3462.3122C1051.2166,-3393.8832 847.2268,-3229.0208 755.6776,-3155.0317"/>
<polygon fill="#696969" stroke="#696969" points="757.6797,-3152.1495 747.7021,-3148.5859 753.2796,-3157.5938 757.6797,-3152.1495"/>
</g>
<!-- 58008896->62341504 -->
<g id="edge23" class="edge">
<title>58008896->62341504</title>
<path fill="none" stroke="#696969" d="M1250.1385,-3462.4712C1422.9078,-3393.3266 1843.1496,-3225.1402 2024.8283,-3152.4299"/>
<polygon fill="#696969" stroke="#696969" points="2026.3649,-3155.5849 2034.3485,-3148.6198 2023.7639,-3149.086 2026.3649,-3155.5849"/>
</g>
<!-- 58008896->54306496 -->
<g id="edge22" class="edge">
<title>58008896->54306496</title>
<path fill="none" stroke="#696969" d="M1196.6889,-3462.3122C1247.1903,-3394.4339 1368.288,-3231.6682 1423.9634,-3156.8357"/>
<polygon fill="#696969" stroke="#696969" points="1426.9401,-3158.6982 1430.1012,-3148.5859 1421.3239,-3154.5198 1426.9401,-3158.6982"/>
</g>
<!-- 58008896->53716096 -->
<g id="edge24" class="edge">
<title>58008896->53716096</title>
<path fill="none" stroke="#696969" d="M1500.4584,-3465.5243C1778.3655,-3429.0082 2177.8934,-3344.3236 2470.8571,-3148.5 3168.1294,-2682.4273 3347.2672,-2443.0261 3615.8571,-1648.5 3678.1744,-1464.1568 3477.1227,-1380.1824 3575.8571,-1212.5 3635.9823,-1110.3883 3955.9468,-967.3876 4111.6343,-902.476"/>
<polygon fill="#696969" stroke="#696969" points="4113.3028,-905.5729 4121.1934,-898.5026 4110.6159,-899.1091 4113.3028,-905.5729"/>
</g>
<!-- 58008896->53777344 -->
<g id="edge17" class="edge">
<title>58008896->53777344</title>
<path fill="none" stroke="#696969" d="M1174.3332,-3462.4027C1175.6132,-3394.6861 1180.0271,-3227.0814 1193.8571,-3087.5 1260.662,-2413.2629 1224.3791,-2220.5458 1465.8571,-1587.5 1532.0931,-1413.8594 1567.3391,-1378.5211 1650.8571,-1212.5 1781.7345,-952.3357 1942.8143,-641.3376 1999.2004,-532.7415"/>
<polygon fill="#696969" stroke="#696969" points="2002.3577,-534.256 2003.8605,-523.7683 1996.1455,-531.0298 2002.3577,-534.256"/>
</g>
<!-- 53778880 -->
<g id="node19" class="node">
<title>53778880</title>
<polygon fill="none" stroke="#000000" points="1145.8571,-3148.5 895.8571,-3148.5 895.8571,-3087.5 1145.8571,-3087.5 1145.8571,-3148.5"/>
<text text-anchor="middle" x="1020.8571" y="-3106.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">which-2.21</text>
</g>
<!-- 58008896->53778880 -->
<g id="edge18" class="edge">
<title>58008896->53778880</title>
<path fill="none" stroke="#696969" d="M1161.3365,-3462.3122C1133.8107,-3394.8469 1068.0405,-3233.6456 1037.2634,-3158.2115"/>
<polygon fill="#696969" stroke="#696969" points="1040.3546,-3156.5227 1033.3362,-3148.5859 1033.8733,-3159.1671 1040.3546,-3156.5227"/>
</g>
<!-- 53717632->53777344 -->
<g id="edge34" class="edge">
<title>53717632->53777344</title>
<path fill="none" stroke="#ff00ff" d="M2943.7804,-1587.3947C2852.9204,-1533.0844 2665.355,-1412.4051 2540.8571,-1273.5 2390.2731,-1105.49 2406.9505,-1024.5919 2280.8571,-837.5 2203.3981,-722.5697 2101.8431,-594.147 2051.2867,-531.532"/>
<polygon fill="#ff00ff" stroke="#ff00ff" points="2053.8026,-529.077 2044.7923,-523.5033 2048.3602,-533.4794 2053.8026,-529.077"/>
</g>
<!-- 53717632->38442880 -->
<g id="edge33" class="edge">
<title>53717632->38442880</title>
<path fill="none" stroke="#ff00ff" d="M3117.9089,-1589.3814C3120.9197,-1588.7399 3123.9062,-1588.1117 3126.8571,-1587.5 3897.1809,-1427.8218 4105.856,-1465.1378 4868.8571,-1273.5 5788.789,-1042.4469 6869.1302,-645.4 7183.7364,-527.1723"/>
<polygon fill="#ff00ff" stroke="#ff00ff" points="7185.139,-530.3842 7193.2669,-523.588 7182.6749,-523.8322 7185.139,-530.3842"/>
</g>
<!-- 49841280->49840512 -->
<g id="edge36" class="edge">
<title>49841280->49840512</title>
<path fill="none" stroke="#ff0000" d="M134.5908,-1587.2009C237.9407,-1468.1342 611.2389,-1038.067 725.4328,-906.5073"/>
<polygon fill="#ff0000" stroke="#ff0000" points="728.3479,-908.4882 732.2599,-898.642 723.0616,-903.8997 728.3479,-908.4882"/>
</g>
<!-- 39433920 -->
<g id="node28" class="node">
<title>39433920</title>
<polygon fill="none" stroke="#000000" points="1029.8571,-523.5 795.8571,-523.5 795.8571,-462.5 1029.8571,-462.5 1029.8571,-523.5"/>
<text text-anchor="middle" x="912.8571" y="-481.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">m4-1.4.18</text>
</g>
<!-- 49840512->39433920 -->
<g id="edge37" class="edge">
<title>49840512->39433920</title>
<path fill="none" stroke="#ff00ff" d="M771.4596,-837.3122C799.1653,-769.8469 865.3653,-608.6456 896.3436,-533.2115"/>
<polygon fill="#ff00ff" stroke="#ff00ff" points="899.7353,-534.1659 900.2965,-523.5859 893.26,-531.5067 899.7353,-534.1659"/>
</g>
<!-- 49840128->49840512 -->
<g id="edge38" class="edge">
<title>49840128->49840512</title>
<path fill="none" stroke="#0000ff" d="M653.2681,-1212.3122C673.9574,-1144.8469 723.3925,-983.6456 746.5256,-908.2115"/>
<polygon fill="#0000ff" stroke="#0000ff" points="749.8917,-909.1727 749.4774,-898.5859 743.1993,-907.1203 749.8917,-909.1727"/>
</g>
<!-- 49852160->49840512 -->
<g id="edge39" class="edge">
<title>49852160->49840512</title>
<path fill="none" stroke="#0000ff" d="M374.3284,-1587.3644C394.0828,-1518.1663 446.8885,-1345.4572 516.8571,-1212.5 579.4028,-1093.6481 676.8393,-967.9277 726.8558,-906.4312"/>
<polygon fill="#0000ff" stroke="#0000ff" points="729.6836,-908.5019 733.2985,-898.5429 724.262,-904.074 729.6836,-908.5019"/>
</g>
<!-- 49852160->49840128 -->
<g id="edge40" class="edge">
<title>49852160->49840128</title>
<path fill="none" stroke="#0000ff" d="M388.607,-1587.3122C438.9275,-1519.4339 559.5911,-1356.6682 615.0669,-1281.8357"/>
<polygon fill="#0000ff" stroke="#0000ff" points="618.039,-1283.7036 621.1828,-1273.5859 612.4157,-1279.5349 618.039,-1283.7036"/>
</g>
<!-- 38442880->40131392 -->
<g id="edge35" class="edge">
<title>38442880->40131392</title>
<path fill="none" stroke="#8b7765" d="M7144.7405,-462.4712C6850.1788,-392.8239 6130.6231,-222.6893 5826.8295,-150.8592"/>
<polygon fill="#8b7765" stroke="#8b7765" points="5827.6182,-147.4492 5817.0811,-148.5542 5826.0074,-154.2614 5827.6182,-147.4492"/>
</g>
<!-- 53773248->53777344 -->
<g id="edge42" class="edge">
<title>53773248->53777344</title>
<path fill="none" stroke="#ff0000" d="M1262.5904,-1587.4463C1333.0079,-1533.2138 1473.8003,-1412.6486 1535.8571,-1273.5 1615.1667,-1095.6657 1484.997,-1008.1029 1578.8571,-837.5 1661.7068,-686.9101 1840.6527,-579.9332 1943.3132,-528.2069"/>
<polygon fill="#ff0000" stroke="#ff0000" points="1945.0103,-531.2717 1952.3952,-523.6747 1941.8846,-525.0082 1945.0103,-531.2717"/>
</g>
<!-- 53773248->49840512 -->
<g id="edge44" class="edge">
<title>53773248->49840512</title>
<path fill="none" stroke="#ff0000" d="M1201.8849,-1587.2009C1128.686,-1468.3716 864.6742,-1039.7809 783.0646,-907.2979"/>
<polygon fill="#ff0000" stroke="#ff0000" points="785.9574,-905.3206 777.7326,-898.642 779.9974,-908.992 785.9574,-905.3206"/>
</g>
<!-- 53774784 -->
<g id="node30" class="node">
<title>53774784</title>
<polygon fill="none" stroke="#000000" points="1255.3571,-1273.5 1026.3571,-1273.5 1026.3571,-1212.5 1255.3571,-1212.5 1255.3571,-1273.5"/>
<text text-anchor="middle" x="1140.8571" y="-1231.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">acl-2.2.52</text>
</g>
<!-- 53773248->53774784 -->
<g id="edge43" class="edge">
<title>53773248->53774784</title>
<path fill="none" stroke="#ff0000" d="M1214.3104,-1587.3122C1199.9472,-1519.9846 1165.6685,-1359.3032 1149.5343,-1283.6744"/>
<polygon fill="#ff0000" stroke="#ff0000" points="1152.8916,-1282.6356 1147.3821,-1273.5859 1146.0456,-1284.0961 1152.8916,-1282.6356"/>
</g>
<!-- 53668480 -->
<g id="node31" class="node">
<title>53668480</title>
<polygon fill="none" stroke="#000000" points="1526.3571,-1273.5 1273.3571,-1273.5 1273.3571,-1212.5 1526.3571,-1212.5 1526.3571,-1273.5"/>
<text text-anchor="middle" x="1399.8571" y="-1231.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">libcap-2.25</text>
</g>
<!-- 53773248->53668480 -->
<g id="edge45" class="edge">
<title>53773248->53668480</title>
<path fill="none" stroke="#ff0000" d="M1235.5054,-1587.3122C1267.7746,-1519.7093 1344.9699,-1357.9873 1380.8828,-1282.7508"/>
<polygon fill="#ff0000" stroke="#ff0000" points="1384.1083,-1284.1183 1385.2574,-1273.5859 1377.791,-1281.1028 1384.1083,-1284.1183"/>
</g>
<!-- 53774784->53777344 -->
<g id="edge47" class="edge">
<title>53774784->53777344</title>
<path fill="none" stroke="#9400d3" d="M1137.6613,-1212.371C1131.725,-1138.9855 1126.914,-950.801 1217.8571,-837.5 1385.6649,-628.4376 1704.5308,-543.8051 1885.5477,-511.4652"/>
<polygon fill="#9400d3" stroke="#9400d3" points="1886.4216,-514.8653 1895.6645,-509.6865 1885.2095,-507.971 1886.4216,-514.8653"/>
</g>
<!-- 53774784->53775552 -->
<g id="edge46" class="edge">
<title>53774784->53775552</title>
<path fill="none" stroke="#9400d3" d="M1139.6884,-1212.3939C1137.8465,-1143.9659 1137.5679,-973.892 1172.8571,-837.5 1202.9857,-721.0538 1270.2671,-595.0492 1306.1886,-532.656"/>
<polygon fill="#9400d3" stroke="#9400d3" points="1309.2652,-534.3274 1311.2528,-523.9207 1303.2093,-530.8165 1309.2652,-534.3274"/>
</g>
<!-- 53774976 -->
<g id="node33" class="node">
<title>53774976</title>
<polygon fill="none" stroke="#000000" points="1463.3571,-898.5 1226.3571,-898.5 1226.3571,-837.5 1463.3571,-837.5 1463.3571,-898.5"/>
<text text-anchor="middle" x="1344.8571" y="-856.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">attr-2.4.47</text>
</g>
<!-- 53774784->53774976 -->
<g id="edge48" class="edge">
<title>53774784->53774976</title>
<path fill="none" stroke="#9400d3" d="M1157.5513,-1212.3122C1194.3273,-1144.7093 1282.304,-982.9873 1323.2327,-907.7508"/>
<polygon fill="#9400d3" stroke="#9400d3" points="1326.5142,-909.0428 1328.2184,-898.5859 1320.3651,-905.6977 1326.5142,-909.0428"/>
</g>
<!-- 53668480->53777344 -->
<g id="edge52" class="edge">
<title>53668480->53777344</title>
<path fill="none" stroke="#ff0000" d="M1404.0553,-1212.3254C1415.175,-1140.4299 1450.9389,-958.0257 1540.8571,-837.5 1650.2598,-690.8575 1840.1689,-581.1438 1944.9924,-528.2109"/>
<polygon fill="#ff0000" stroke="#ff0000" points="1946.874,-531.1829 1954.2464,-523.5739 1943.738,-524.9246 1946.874,-531.1829"/>
</g>
<!-- 53668480->53774976 -->
<g id="edge53" class="edge">
<title>53668480->53774976</title>
<path fill="none" stroke="#ff0000" d="M1395.3562,-1212.3122C1385.4815,-1144.9846 1361.9149,-984.3032 1350.8227,-908.6744"/>
<polygon fill="#ff0000" stroke="#ff0000" points="1354.2572,-907.9721 1349.3431,-898.5859 1347.3313,-908.988 1354.2572,-907.9721"/>
</g>
<!-- 53775552->50930432 -->
<g id="edge49" class="edge">
<title>53775552->50930432</title>
<path fill="none" stroke="#8fbc8f" d="M1504.1564,-462.4712C1918.2711,-389.9382 2954.626,-208.4188 3331.256,-142.4514"/>
<polygon fill="#8fbc8f" stroke="#8fbc8f" points="3331.8721,-145.8968 3341.1183,-140.724 3330.6644,-139.0018 3331.8721,-145.8968"/>
</g>
<!-- 53774976->53777344 -->
<g id="edge51" class="edge">
<title>53774976->53777344</title>
<path fill="none" stroke="#9400d3" d="M1399.809,-837.4712C1523.6507,-768.6702 1823.9999,-601.8096 1955.9191,-528.5211"/>
<polygon fill="#9400d3" stroke="#9400d3" points="1957.6997,-531.5358 1964.7415,-523.6198 1954.3002,-525.4167 1957.6997,-531.5358"/>
</g>
<!-- 53774976->53775552 -->
<g id="edge50" class="edge">
<title>53774976->53775552</title>
<path fill="none" stroke="#9400d3" d="M1343.6296,-837.3122C1340.9365,-769.9846 1334.5093,-609.3032 1331.4841,-533.6744"/>
<polygon fill="#9400d3" stroke="#9400d3" points="1334.9775,-533.438 1331.0806,-523.5859 1327.9831,-533.7179 1334.9775,-533.438"/>
</g>
<!-- 54019584 -->
<g id="node36" class="node">
<title>54019584</title>
<polygon fill="none" stroke="#000000" points="2243.8571,-2023.5 1863.8571,-2023.5 1863.8571,-1962.5 2243.8571,-1962.5 2243.8571,-2023.5"/>
<text text-anchor="middle" x="2053.8571" y="-1981.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">automake-1.15.1</text>
</g>
<!-- 53481024->54019584 -->
<g id="edge58" class="edge">
<title>53481024->54019584</title>
<path fill="none" stroke="#9400d3" d="M1909.058,-2712.2009C1932.9106,-2593.7277 2018.7552,-2167.3471 2045.7037,-2033.497"/>
<polygon fill="#9400d3" stroke="#9400d3" points="2049.1452,-2034.1361 2047.6879,-2023.642 2042.2829,-2032.7545 2049.1452,-2034.1361"/>
</g>
<!-- 54020928 -->
<g id="node37" class="node">
<title>54020928</title>
<polygon fill="none" stroke="#000000" points="1972.3571,-1273.5 1659.3571,-1273.5 1659.3571,-1212.5 1972.3571,-1212.5 1972.3571,-1273.5"/>
<text text-anchor="middle" x="1815.8571" y="-1231.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">autoconf-2.69</text>
</g>
<!-- 53481024->54020928 -->
<g id="edge59" class="edge">
<title>53481024->54020928</title>
<path fill="none" stroke="#9400d3" d="M1868.753,-2712.1758C1769.4387,-2619.8047 1481.1375,-2332.4887 1380.8571,-2023.5 1335.0024,-1882.2103 1375.3109,-1805.6665 1501.8571,-1587.5 1575.8935,-1459.8608 1703.7595,-1339.277 1771.2146,-1280.4508"/>
<polygon fill="#9400d3" stroke="#9400d3" points="1773.8696,-1282.7814 1779.1336,-1273.5868 1769.2847,-1277.4918 1773.8696,-1282.7814"/>
</g>
<!-- 54019200 -->
<g id="node38" class="node">
<title>54019200</title>
<polygon fill="none" stroke="#000000" points="1930.8571,-2398.5 1664.8571,-2398.5 1664.8571,-2337.5 1930.8571,-2337.5 1930.8571,-2398.5"/>
<text text-anchor="middle" x="1797.8571" y="-2356.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">libtool-2.4.6</text>
</g>
<!-- 53481024->54019200 -->
<g id="edge60" class="edge">
<title>53481024->54019200</title>
<path fill="none" stroke="#9400d3" d="M1894.2645,-2712.3122C1875.4128,-2644.9846 1830.422,-2484.3032 1809.246,-2408.6744"/>
<polygon fill="#9400d3" stroke="#9400d3" points="1812.4879,-2407.2718 1806.4212,-2398.5859 1805.7472,-2409.1593 1812.4879,-2407.2718"/>
</g>
<!-- 54019584->53777344 -->
<g id="edge62" class="edge">
<title>54019584->53777344</title>
<path fill="none" stroke="#696969" d="M2060.6104,-1962.4372C2089.1929,-1828.5377 2195.6866,-1280.61 2127.8571,-837.5 2110.4821,-723.9943 2062.6666,-596.5194 2036.8763,-533.1966"/>
<polygon fill="#696969" stroke="#696969" points="2039.9705,-531.5175 2032.9343,-523.5964 2033.4952,-534.1764 2039.9705,-531.5175"/>
</g>
<!-- 54020160 -->
<g id="node39" class="node">
<title>54020160</title>
<polygon fill="none" stroke="#000000" points="2085.3571,-1648.5 1582.3571,-1648.5 1582.3571,-1587.5 2085.3571,-1587.5 2085.3571,-1648.5"/>
<text text-anchor="middle" x="1833.8571" y="-1606.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">autoconf-wrapper-2.69</text>
</g>
<!-- 54019584->54020160 -->
<g id="edge61" class="edge">
<title>54019584->54020160</title>
<path fill="none" stroke="#696969" d="M2035.8536,-1962.3122C1996.1124,-1894.5716 1900.9296,-1732.3282 1856.9085,-1657.2921"/>
<polygon fill="#696969" stroke="#696969" points="1859.8799,-1655.4401 1851.8009,-1648.5859 1853.8422,-1658.9823 1859.8799,-1655.4401"/>
</g>
<!-- 54020928->53777344 -->
<g id="edge77" class="edge">
<title>54020928->53777344</title>
<path fill="none" stroke="#8fbc8f" d="M1824.2345,-1212.2009C1856.4592,-1093.7277 1972.4347,-667.3471 2008.8419,-533.497"/>
<polygon fill="#8fbc8f" stroke="#8fbc8f" points="2012.2751,-534.2101 2011.5225,-523.642 2005.5205,-532.3728 2012.2751,-534.2101"/>
</g>
<!-- 54020928->39433920 -->
<g id="edge78" class="edge">
<title>54020928->39433920</title>
<path fill="none" stroke="#8fbc8f" d="M1795.18,-1212.4262C1745.6739,-1140.7469 1613.9203,-958.7737 1472.8571,-837.5 1314.7918,-701.6093 1097.2747,-584.29 985.5582,-528.1958"/>
<polygon fill="#8fbc8f" stroke="#8fbc8f" points="986.9003,-524.9538 976.3908,-523.6111 983.7692,-531.2145 986.9003,-524.9538"/>
</g>
<!-- 54019200->53777344 -->
<g id="edge83" class="edge">
<title>54019200->53777344</title>
<path fill="none" stroke="#00cdcd" d="M1801.779,-2337.2729C1809.4506,-2268.2458 1822.1514,-2096.4543 1778.8571,-1962.5 1720.4419,-1781.7608 1487.922,-1756.8935 1573.8571,-1587.5 1680.7565,-1376.7821 1889.8305,-1480.9958 2002.8571,-1273.5 2139.5623,-1022.5347 2062.6057,-655.4936 2031.2118,-533.8433"/>
<polygon fill="#00cdcd" stroke="#00cdcd" points="2034.5111,-532.6262 2028.5893,-523.8408 2027.7399,-534.4015 2034.5111,-532.6262"/>
</g>
<!-- 54019200->39433920 -->
<g id="edge82" class="edge">
<title>54019200->39433920</title>
<path fill="none" stroke="#00cdcd" d="M1737.6513,-2337.4253C1583.0449,-2252.0345 1173.6665,-1994.4021 1015.8571,-1648.5 832.8804,-1247.4336 880.813,-688.2045 904.2644,-533.8514"/>
<polygon fill="#00cdcd" stroke="#00cdcd" points="907.7395,-534.2827 905.839,-523.8598 900.8249,-533.193 907.7395,-534.2827"/>
</g>
<!-- 54019200->39433920 -->
<g id="edge87" class="edge">
<title>54019200->39433920</title>
<path fill="none" stroke="#00cdcd" d="M1746.0833,-2337.4253C1601.0449,-2252.0345 1191.6665,-1994.4021 1033.8571,-1648.5 850.8804,-1247.4336 898.813,-688.2045 911.0379,-533.8514"/>
<polygon fill="#00cdcd" stroke="#00cdcd" points="914.5288,-534.1026 911.8208,-523.8598 907.5502,-533.5558 914.5288,-534.1026"/>
</g>
<!-- 54019200->54019584 -->
<g id="edge85" class="edge">
<title>54019200->54019584</title>
<path fill="none" stroke="#00cdcd" d="M1818.8067,-2337.3122C1865.0509,-2269.5716 1975.8091,-2107.3282 2027.0337,-2032.2921"/>
<polygon fill="#00cdcd" stroke="#00cdcd" points="2030.2296,-2033.8183 2032.9771,-2023.5859 2024.4483,-2029.8716 2030.2296,-2033.8183"/>
</g>
<!-- 54019200->54020160 -->
<g id="edge86" class="edge">
<title>54019200->54020160</title>
<path fill="none" stroke="#00cdcd" d="M1799.3355,-2337.2009C1805.0165,-2218.8464 1825.4475,-1793.2013 1831.8939,-1658.9002"/>
<polygon fill="#00cdcd" stroke="#00cdcd" points="1835.4027,-1658.7984 1832.3863,-1648.642 1828.4108,-1658.4627 1835.4027,-1658.7984"/>
</g>
<!-- 38390592 -->
<g id="node49" class="node">
<title>38390592</title>
<polygon fill="none" stroke="#000000" points="1769.8571,-2023.5 1389.8571,-2023.5 1389.8571,-1962.5 1769.8571,-1962.5 1769.8571,-2023.5"/>
<text text-anchor="middle" x="1579.8571" y="-1981.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">help2man-1.47.5</text>
</g>
<!-- 54019200->38390592 -->
<g id="edge84" class="edge">
<title>54019200->38390592</title>
<path fill="none" stroke="#00cdcd" d="M1780.0173,-2337.3122C1740.6374,-2269.5716 1646.3199,-2107.3282 1602.699,-2032.2921"/>
<polygon fill="#00cdcd" stroke="#00cdcd" points="1605.6895,-2030.4722 1597.6377,-2023.5859 1599.6377,-2033.9903 1605.6895,-2030.4722"/>
</g>
<!-- 54020160->53777344 -->
<g id="edge63" class="edge">
<title>54020160->53777344</title>
<path fill="none" stroke="#00cdcd" d="M1868.3246,-1587.0648C1927.5227,-1531.3342 2046.4312,-1407.3484 2090.8571,-1273.5 2180.8164,-1002.4665 2075.5451,-651.2269 2034.6975,-533.4743"/>
<polygon fill="#00cdcd" stroke="#00cdcd" points="2037.9099,-532.0584 2031.2965,-523.7811 2031.3047,-534.376 2037.9099,-532.0584"/>
</g>
<!-- 54020160->39433920 -->
<g id="edge64" class="edge">
<title>54020160->39433920</title>
<path fill="none" stroke="#00cdcd" d="M1861.497,-1587.4363C1920.1003,-1518.7416 2046.3681,-1347.5825 1981.8571,-1212.5 1791.9154,-814.7723 1261.1731,-603.0769 1026.6954,-526.642"/>
<polygon fill="#00cdcd" stroke="#00cdcd" points="1027.7092,-523.2914 1017.1173,-523.5414 1025.5532,-529.9512 1027.7092,-523.2914"/>
</g>
<!-- 54020160->54020928 -->
<g id="edge66" class="edge">
<title>54020160->54020928</title>
<path fill="none" stroke="#00cdcd" d="M1832.3841,-1587.3122C1829.1524,-1519.9846 1821.4397,-1359.3032 1817.8095,-1283.6744"/>
<polygon fill="#00cdcd" stroke="#00cdcd" points="1821.3008,-1283.4066 1817.3252,-1273.5859 1814.3088,-1283.7423 1821.3008,-1283.4066"/>
</g>
<!-- 54020160->38416128 -->
<g id="edge65" class="edge">
<title>54020160->38416128</title>
<path fill="none" stroke="#00cdcd" d="M1903.0558,-1587.4712C2059.472,-1518.464 2439.4912,-1350.8085 2604.8305,-1277.8647"/>
<polygon fill="#00cdcd" stroke="#00cdcd" points="2606.7159,-1280.8584 2614.4523,-1273.6198 2603.8904,-1274.454 2606.7159,-1280.8584"/>
</g>
<!-- 38441920 -->
<g id="node41" class="node">
<title>38441920</title>
<polygon fill="none" stroke="#000000" points="7295.8571,-1273.5 7023.8571,-1273.5 7023.8571,-1212.5 7295.8571,-1212.5 7295.8571,-1273.5"/>
<text text-anchor="middle" x="7159.8571" y="-1231.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">bash-4.4.12</text>
</g>
<!-- 54020160->38441920 -->
<g id="edge67" class="edge">
<title>54020160->38441920</title>
<path fill="none" stroke="#00cdcd" d="M2085.6189,-1599.31C2139.1696,-1595.3745 2195.3817,-1591.2731 2247.8571,-1587.5 4130.2257,-1452.1526 6418.8653,-1294.0526 7013.2654,-1253.0919"/>
<polygon fill="#00cdcd" stroke="#00cdcd" points="7013.8628,-1256.5591 7023.5985,-1252.3799 7013.3815,-1249.5757 7013.8628,-1256.5591"/>
</g>
<!-- 38416128->49840512 -->
<g id="edge74" class="edge">
<title>38416128->49840512</title>
<path fill="none" stroke="#ff00ff" d="M2549.26,-1216.7798C2193.6923,-1147.5133 1232.9087,-960.3477 885.9836,-892.7649"/>
<polygon fill="#ff00ff" stroke="#ff00ff" points="886.6346,-889.326 876.1499,-890.8492 885.2961,-896.1969 886.6346,-889.326"/>
</g>
<!-- 38416128->40131392 -->
<g id="edge68" class="edge">
<title>38416128->40131392</title>
<path fill="none" stroke="#ff00ff" d="M2818.3971,-1213.3281C3077.0755,-1154.3104 3631.8566,-1017.609 3785.8571,-898.5 3811.1232,-878.9584 3799.2434,-857.8571 3823.8571,-837.5 4337.9495,-412.3146 5131.6439,-219.8977 5494.6757,-150.482"/>
<polygon fill="#ff00ff" stroke="#ff00ff" points="5495.5903,-153.8709 5504.7603,-148.5642 5494.2825,-146.9941 5495.5903,-153.8709"/>
</g>
<!-- 52759744 -->
<g id="node42" class="node">
<title>52759744</title>
<polygon fill="none" stroke="#000000" points="4058.8571,-898.5 3832.8571,-898.5 3832.8571,-837.5 4058.8571,-837.5 4058.8571,-898.5"/>
<text text-anchor="middle" x="3945.8571" y="-856.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">libffi-3.2.1</text>
</g>
<!-- 38416128->52759744 -->
<g id="edge69" class="edge">
<title>38416128->52759744</title>
<path fill="none" stroke="#ff00ff" d="M2786.5968,-1212.4712C3020.2166,-1143.0516 3589.801,-973.8011 3832.8926,-901.5671"/>
<polygon fill="#ff00ff" stroke="#ff00ff" points="3834.2226,-904.8232 3842.8114,-898.6198 3832.2287,-898.1132 3834.2226,-904.8232"/>
</g>
<!-- 38441728 -->
<g id="node43" class="node">
<title>38441728</title>
<polygon fill="none" stroke="#000000" points="3443.3571,-898.5 2990.3571,-898.5 2990.3571,-837.5 3443.3571,-837.5 3443.3571,-898.5"/>
<text text-anchor="middle" x="3216.8571" y="-856.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">bash-minimal-4.4.12</text>
</g>
<!-- 38416128->38441728 -->
<g id="edge70" class="edge">
<title>38416128->38441728</title>
<path fill="none" stroke="#ff00ff" d="M2727.4748,-1212.3122C2825.0287,-1143.6766 3060.4753,-978.0247 3165.1714,-904.3642"/>
<polygon fill="#ff00ff" stroke="#ff00ff" points="3167.2197,-907.2027 3173.3843,-898.5859 3163.1917,-901.4776 3167.2197,-907.2027"/>
</g>
<!-- 42141568 -->
<g id="node44" class="node">
<title>42141568</title>
<polygon fill="none" stroke="#000000" points="2704.3571,-898.5 2333.3571,-898.5 2333.3571,-837.5 2704.3571,-837.5 2704.3571,-898.5"/>
<text text-anchor="middle" x="2518.8571" y="-856.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">libunistring-0.9.8</text>
</g>
<!-- 38416128->42141568 -->
<g id="edge71" class="edge">
<title>38416128->42141568</title>
<path fill="none" stroke="#ff00ff" d="M2670.3545,-1212.3122C2640.6092,-1144.7093 2569.4515,-982.9873 2536.3475,-907.7508"/>
<polygon fill="#ff00ff" stroke="#ff00ff" points="2539.546,-906.3295 2532.3149,-898.5859 2533.1388,-909.1487 2539.546,-906.3295"/>
</g>
<!-- 54019008 -->
<g id="node45" class="node">
<title>54019008</title>
<polygon fill="none" stroke="#000000" points="2972.8571,-898.5 2722.8571,-898.5 2722.8571,-837.5 2972.8571,-837.5 2972.8571,-898.5"/>
<text text-anchor="middle" x="2847.8571" y="-856.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">libltdl-2.4.6</text>
</g>
<!-- 38416128->54019008 -->
<g id="edge72" class="edge">
<title>38416128->54019008</title>
<path fill="none" stroke="#ff00ff" d="M2697.2779,-1212.3122C2726.8429,-1144.7093 2797.5694,-982.9873 2830.4728,-907.7508"/>
<polygon fill="#ff00ff" stroke="#ff00ff" points="2833.6807,-909.1505 2834.4809,-898.5859 2827.2672,-906.3456 2833.6807,-909.1505"/>
</g>
<!-- 38388288 -->
<g id="node46" class="node">
<title>38388288</title>
<polygon fill="none" stroke="#000000" points="3776.3571,-898.5 3537.3571,-898.5 3537.3571,-837.5 3776.3571,-837.5 3776.3571,-898.5"/>
<text text-anchor="middle" x="3656.8571" y="-856.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">libgc-7.6.0</text>
</g>
<!-- 38416128->38388288 -->
<g id="edge73" class="edge">
<title>38416128->38388288</title>
<path fill="none" stroke="#ff00ff" d="M2763.0692,-1212.4712C2942.5656,-1143.2922 3379.298,-974.973 3567.8041,-902.3216"/>
<polygon fill="#ff00ff" stroke="#ff00ff" points="3569.3367,-905.4819 3577.409,-898.6198 3566.8193,-898.9502 3569.3367,-905.4819"/>
</g>
<!-- 38441920->38442880 -->
<g id="edge80" class="edge">
<title>38441920->38442880</title>
<path fill="none" stroke="#00cdcd" d="M7157.2031,-1212.4727C7151.9573,-1144.5515 7142.5933,-976.0033 7164.8571,-837.5 7183.0964,-724.0332 7231.0513,-596.5415 7256.851,-533.206"/>
<polygon fill="#00cdcd" stroke="#00cdcd" points="7260.233,-534.1839 7260.7935,-523.6039 7253.7575,-531.5251 7260.233,-534.1839"/>
</g>
<!-- 38441920->40131200 -->
<g id="edge79" class="edge">
<title>38441920->40131200</title>
<path fill="none" stroke="#00cdcd" d="M7173.7689,-1212.3122C7204.4156,-1144.7093 7277.7296,-982.9873 7311.8368,-907.7508"/>
<polygon fill="#00cdcd" stroke="#00cdcd" points="7315.0503,-909.1389 7315.9915,-898.5859 7308.6748,-906.2486 7315.0503,-909.1389"/>
</g>
<!-- 38388288->40131392 -->
<g id="edge75" class="edge">
<title>38388288->40131392</title>
<path fill="none" stroke="#b8860b" d="M3697.6976,-837.3079C3799.0278,-762.5416 4072.2864,-569.3028 4327.8571,-462.5 4721.1967,-298.1237 5212.3988,-197.482 5483.7889,-150.2602"/>
<polygon fill="#b8860b" stroke="#b8860b" points="5484.4937,-153.6903 5493.749,-148.5339 5483.2982,-146.7931 5484.4937,-153.6903"/>
</g>
<!-- 38387904 -->
<g id="node47" class="node">
<title>38387904</title>
<polygon fill="none" stroke="#000000" points="3922.8571,-523.5 3498.8571,-523.5 3498.8571,-462.5 3922.8571,-462.5 3922.8571,-523.5"/>
<text text-anchor="middle" x="3710.8571" y="-481.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">libatomic-ops-7.4.8</text>
</g>
<!-- 38388288->38387904 -->
<g id="edge76" class="edge">
<title>38388288->38387904</title>
<path fill="none" stroke="#b8860b" d="M3661.2762,-837.3122C3670.9713,-769.9846 3694.1095,-609.3032 3705,-533.6744"/>
<polygon fill="#b8860b" stroke="#b8860b" points="3708.4916,-533.9827 3706.4527,-523.5859 3701.5631,-532.9849 3708.4916,-533.9827"/>
</g>
<!-- 40131200->38442880 -->
<g id="edge81" class="edge">
<title>40131200->38442880</title>
<path fill="none" stroke="#8fbc8f" d="M7325.2744,-837.3122C7315.2202,-769.9846 7291.2251,-609.3032 7279.9312,-533.6744"/>
<polygon fill="#8fbc8f" stroke="#8fbc8f" points="7283.3633,-532.9593 7278.4246,-523.5859 7276.44,-533.9932 7283.3633,-532.9593"/>
</g>
<!-- 38390592->53777344 -->
<g id="edge88" class="edge">
<title>38390592->53777344</title>
<path fill="none" stroke="#ff00ff" d="M1566.0795,-1962.3871C1536.4892,-1891.7682 1474.6313,-1713.8464 1539.8571,-1587.5 1650.3958,-1373.38 1866.1434,-1484.8682 1981.8571,-1273.5 2017.4441,-1208.4952 2019.9654,-685.8425 2019.9406,-534.1399"/>
<polygon fill="#ff00ff" stroke="#ff00ff" points="2023.4406,-533.8678 2019.9348,-523.8698 2016.4406,-533.8718 2023.4406,-533.8678"/>
</g>
<!-- 50454720->53716096 -->
<g id="edge116" class="edge">
<title>50454720->53716096</title>
<path fill="none" stroke="#9400d3" d="M5431.9881,-4212.3884C5229.4867,-4133.0209 4707.7982,-3900.1519 4456.8571,-3523.5 3891.0808,-2674.2937 4088.6313,-2290.0497 3999.8571,-1273.5 3997.4985,-1246.4917 3992.8945,-1238.7018 3999.8571,-1212.5 4032.1348,-1091.0328 4118.4419,-967.7495 4165.3885,-906.9154"/>
<polygon fill="#9400d3" stroke="#9400d3" points="4168.3617,-908.7937 4171.742,-898.7526 4162.8378,-904.4942 4168.3617,-908.7937"/>
</g>
<!-- 50454720->53715136 -->
<g id="edge110" class="edge">
<title>50454720->53715136</title>
<path fill="none" stroke="#9400d3" d="M5658.1921,-4214.8141C6013.9209,-4144.8621 6933.6769,-3963.9977 7283.778,-3895.1524"/>
<polygon fill="#9400d3" stroke="#9400d3" points="7284.5789,-3898.562 7293.7156,-3893.1982 7283.2282,-3891.6936 7284.5789,-3898.562"/>
</g>
<!-- 50454720->40131392 -->
<g id="edge109" class="edge">
<title>50454720->40131392</title>
<path fill="none" stroke="#9400d3" d="M5658.2134,-4227.7947C5906.8635,-4196.6129 6428.4154,-4109.6973 6813.8571,-3898.5 7029.8498,-3780.1499 7109.649,-3742.7462 7221.8571,-3523.5 7451.6561,-3074.4904 7667.7288,-624.886 7532.8571,-462.5 7326.0971,-213.5601 6329.5246,-143.53 5893.1935,-124.6436"/>
<polygon fill="#9400d3" stroke="#9400d3" points="5893.1318,-121.1379 5882.9913,-124.207 5892.8324,-128.1315 5893.1318,-121.1379"/>
</g>
<!-- 50454720->52759744 -->
<g id="edge112" class="edge">
<title>50454720->52759744</title>
<path fill="none" stroke="#9400d3" d="M5371.7826,-4227.381C5033.763,-4187.9254 4198.2301,-4074.6713 3985.8571,-3898.5 3834.7819,-3773.1775 3810.8571,-3689.2892 3810.8571,-3493 3810.8571,-3493 3810.8571,-3493 3810.8571,-2368 3810.8571,-2107.3281 3510.4289,-1453.8747 3608.8571,-1212.5 3665.629,-1073.2788 3808.7543,-959.7611 3889.0251,-904.4624"/>
<polygon fill="#9400d3" stroke="#9400d3" points="3891.2544,-907.1784 3897.542,-898.651 3887.309,-901.3962 3891.2544,-907.1784"/>
</g>
<!-- 50454720->40131200 -->
<g id="edge115" class="edge">
<title>50454720->40131200</title>
<path fill="none" stroke="#9400d3" d="M5657.9221,-4229.2143C5990.0176,-4188.861 6813.5572,-4039.0257 7190.8571,-3523.5 7305.8571,-3366.3692 7212.9918,-3281.0967 7233.8571,-3087.5 7286.3381,-2600.5603 7361.8571,-2482.7597 7361.8571,-1993 7361.8571,-1993 7361.8571,-1993 7361.8571,-1618 7361.8571,-1347.185 7340.7734,-1021.864 7332.8335,-908.9539"/>
<polygon fill="#9400d3" stroke="#9400d3" points="7336.305,-908.427 7332.1073,-898.6992 7329.3225,-908.9215 7336.305,-908.427"/>
</g>
<!-- 38316096 -->
<g id="node54" class="node">
<title>38316096</title>
<polygon fill="none" stroke="#000000" points="5848.8571,-3898.5 5600.8571,-3898.5 5600.8571,-3837.5 5848.8571,-3837.5 5848.8571,-3898.5"/>
<text text-anchor="middle" x="5724.8571" y="-3856.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">gdbm-1.13</text>
</g>
<!-- 50454720->38316096 -->
<g id="edge111" class="edge">
<title>50454720->38316096</title>
<path fill="none" stroke="#9400d3" d="M5532.0423,-4212.3122C5569.8999,-4144.7093 5660.4642,-3982.9873 5702.5967,-3907.7508"/>
<polygon fill="#9400d3" stroke="#9400d3" points="5705.8967,-3909.0211 5707.729,-3898.5859 5699.7891,-3905.6009 5705.8967,-3909.0211"/>
</g>
<!-- 38345728 -->
<g id="node55" class="node">
<title>38345728</title>
<polygon fill="none" stroke="#000000" points="7181.8571,-3523.5 6901.8571,-3523.5 6901.8571,-3462.5 7181.8571,-3462.5 7181.8571,-3523.5"/>
<text text-anchor="middle" x="7041.8571" y="-3481.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">sqlite-3.21.0</text>
</g>
<!-- 50454720->38345728 -->
<g id="edge113" class="edge">
<title>50454720->38345728</title>
<path fill="none" stroke="#9400d3" d="M5516.4596,-4212.4895C5521.5411,-4127.6542 5540.1287,-3891.643 5591.8571,-3837.5 5637.4142,-3789.8164 6530.2889,-3599.5393 6891.8084,-3524.07"/>
<polygon fill="#9400d3" stroke="#9400d3" points="6892.7493,-3527.4491 6901.8235,-3521.9803 6891.3194,-3520.5967 6892.7493,-3527.4491"/>
</g>
<!-- 50028288 -->
<g id="node56" class="node">
<title>50028288</title>
<polygon fill="none" stroke="#000000" points="4667.8571,-898.5 4333.8571,-898.5 4333.8571,-837.5 4667.8571,-837.5 4667.8571,-898.5"/>
<text text-anchor="middle" x="4500.8571" y="-856.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">openssl-1.0.2n</text>
</g>
<!-- 50454720->50028288 -->
<g id="edge114" class="edge">
<title>50454720->50028288</title>
<path fill="none" stroke="#9400d3" d="M5371.7597,-4229.9075C5036.2986,-4196.1822 4213.7747,-4094.9007 4031.8571,-3898.5 3907.9659,-3764.7453 3969.8571,-3675.3166 3969.8571,-3493 3969.8571,-3493 3969.8571,-3493 3969.8571,-1993 3969.8571,-1645.0533 3861.5634,-1516.4845 4030.8571,-1212.5 4117.1902,-1057.48 4305.8346,-953.1716 4416.0786,-902.8513"/>
<polygon fill="#9400d3" stroke="#9400d3" points="4417.8414,-905.8956 4425.5138,-898.5891 4414.9596,-899.5163 4417.8414,-905.8956"/>
</g>
<!-- 49438464 -->
<g id="node57" class="node">
<title>49438464</title>
<polygon fill="none" stroke="#000000" points="4653.8571,-3523.5 4465.8571,-3523.5 4465.8571,-3462.5 4653.8571,-3462.5 4653.8571,-3523.5"/>
<text text-anchor="middle" x="4559.8571" y="-3481.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">tcl-8.6.7</text>
</g>
<!-- 50454720->49438464 -->
<g id="edge117" class="edge">
<title>50454720->49438464</title>
<path fill="none" stroke="#9400d3" d="M5475.9389,-4212.4359C5324.1628,-4093.2401 4772.2542,-3659.804 4606.9535,-3529.9867"/>
<polygon fill="#9400d3" stroke="#9400d3" points="4608.9425,-3527.0984 4598.9161,-3523.6746 4604.619,-3532.6037 4608.9425,-3527.0984"/>
</g>
<!-- 49438080 -->
<g id="node58" class="node">
<title>49438080</title>
<polygon fill="none" stroke="#000000" points="5544.8571,-3898.5 5366.8571,-3898.5 5366.8571,-3837.5 5544.8571,-3837.5 5544.8571,-3898.5"/>
<text text-anchor="middle" x="5455.8571" y="-3856.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">tk-8.6.7</text>
</g>
<!-- 50454720->49438080 -->
<g id="edge118" class="edge">
<title>50454720->49438080</title>
<path fill="none" stroke="#9400d3" d="M5510.0289,-4212.3122C5499.436,-4144.9846 5474.1555,-3984.3032 5462.2566,-3908.6744"/>
<polygon fill="#9400d3" stroke="#9400d3" points="5465.6811,-3907.9204 5460.6693,-3898.5859 5458.7661,-3909.0084 5465.6811,-3907.9204"/>
</g>
<!-- 51494272->40131392 -->
<g id="edge194" class="edge">
<title>51494272->40131392</title>
<path fill="none" stroke="#0000ff" d="M6033.4502,-4587.485C6234.461,-4541.9508 6596.1683,-4442.9125 6863.8571,-4273.5 7061.9651,-4148.1232 7109.6518,-4096.7164 7234.8571,-3898.5 7431.8313,-3586.6643 7516.8571,-3486.8365 7516.8571,-3118 7516.8571,-3118 7516.8571,-3118 7516.8571,-2743 7516.8571,-2075.5443 7589.8571,-1910.4557 7589.8571,-1243 7589.8571,-1243 7589.8571,-1243 7589.8571,-868 7589.8571,-687.2175 7678.9108,-596.7696 7557.8571,-462.5 7338.124,-218.7779 6331.8695,-145.8344 5893.2411,-125.4068"/>
<polygon fill="#0000ff" stroke="#0000ff" points="5893.1367,-121.8984 5882.9861,-124.934 5892.8142,-128.891 5893.1367,-121.8984"/>
</g>
<!-- 51494272->38441920 -->
<g id="edge195" class="edge">
<title>51494272->38441920</title>
<path fill="none" stroke="#0000ff" d="M6022.3779,-4587.4671C6300.3197,-4518.596 6920.6798,-4322.9296 7203.8571,-3898.5 7397.4416,-3608.3532 7285.8571,-3466.7981 7285.8571,-3118 7285.8571,-3118 7285.8571,-3118 7285.8571,-1993 7285.8571,-1718.683 7202.8661,-1395.6313 7171.5915,-1283.6301"/>
<polygon fill="#0000ff" stroke="#0000ff" points="7174.894,-1282.4448 7168.8177,-1273.7655 7168.1553,-1284.3396 7174.894,-1282.4448"/>
</g>
<!-- 51494272->50454720 -->
<g id="edge196" class="edge">
<title>51494272->50454720</title>
<path fill="none" stroke="#0000ff" d="M5852.7421,-4587.3122C5785.8607,-4519.1585 5625.1061,-4355.3461 5552.0784,-4280.9293"/>
<polygon fill="#0000ff" stroke="#0000ff" points="5554.3744,-4278.2719 5544.8721,-4273.5859 5549.3782,-4283.1748 5554.3744,-4278.2719"/>
</g>
<!-- 49438272 -->
<g id="node86" class="node">
<title>49438272</title>
<polygon fill="none" stroke="#000000" points="4147.8571,-4273.5 3837.8571,-4273.5 3837.8571,-4212.5 4147.8571,-4212.5 4147.8571,-4273.5"/>
<text text-anchor="middle" x="3992.8571" y="-4231.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">expect-5.45.4</text>
</g>
<!-- 49436928->49438272 -->
<g id="edge197" class="edge">
<title>49436928->49438272</title>
<path fill="none" stroke="#696969" d="M3979.0846,-4587.3122C3981.7777,-4519.9846 3988.205,-4359.3032 3991.2301,-4283.6744"/>
<polygon fill="#696969" stroke="#696969" points="3994.7311,-4283.7179 3991.6337,-4273.5859 3987.7367,-4283.438 3994.7311,-4283.7179"/>
</g>
<!-- 50930048->53716096 -->
<g id="edge166" class="edge">
<title>50930048->53716096</title>
<path fill="none" stroke="#9400d3" d="M3798.3732,-1212.3122C3877.4887,-1143.952 4067.9853,-979.3524 4153.7404,-905.2552"/>
<polygon fill="#9400d3" stroke="#9400d3" points="4156.1806,-907.7723 4161.459,-898.5859 4151.604,-902.4756 4156.1806,-907.7723"/>
</g>
<!-- 50930048->53777344 -->
<g id="edge165" class="edge">
<title>50930048->53777344</title>
<path fill="none" stroke="#9400d3" d="M3743.3923,-1212.43C3688.3524,-1126.8929 3530.56,-888.0768 3452.8571,-837.5 3235.9407,-696.3092 2466.9648,-563.1327 2153.9183,-513.4762"/>
<polygon fill="#9400d3" stroke="#9400d3" points="2154.3071,-509.9943 2143.8829,-511.8882 2153.213,-516.9083 2154.3071,-509.9943"/>
</g>
<!-- 38345728->40131200 -->
<g id="edge119" class="edge">
<title>38345728->40131200</title>
<path fill="none" stroke="#9400d3" d="M7053.4501,-3462.108C7075.4628,-3402.3592 7123.5474,-3266.4512 7150.8571,-3148.5 7180.1402,-3022.0259 7323.8571,-2122.8199 7323.8571,-1993 7323.8571,-1993 7323.8571,-1993 7323.8571,-1618 7323.8571,-1347.4225 7327.8103,-1021.9534 7329.2991,-908.9792"/>
<polygon fill="#9400d3" stroke="#9400d3" points="7332.8021,-908.7641 7329.4352,-898.7185 7325.8027,-908.6712 7332.8021,-908.7641"/>
</g>
<!-- 50028288->53777344 -->
<g id="edge120" class="edge">
<title>50028288->53777344</title>
<path fill="none" stroke="#696969" d="M4333.6793,-838.7728C4331.0537,-838.3433 4328.4449,-837.9187 4325.8571,-837.5 3501.8766,-704.1677 2509.1484,-562.1148 2154.1306,-511.8977"/>
<polygon fill="#696969" stroke="#696969" points="2154.4613,-508.4098 2144.0697,-510.4751 2153.4811,-515.3408 2154.4613,-508.4098"/>
</g>
<!-- 49438080->40131392 -->
<g id="edge121" class="edge">
<title>49438080->40131392</title>
<path fill="none" stroke="#9400d3" d="M5545.0745,-3840.7767C5850.5709,-3744.9242 6835.8571,-3412.9205 6835.8571,-3118 6835.8571,-3118 6835.8571,-3118 6835.8571,-2743 6835.8571,-2562.5587 6803.7051,-2510.2403 6855.8571,-2337.5 6902.8032,-2182.0031 6977.9279,-2172.3872 7042.8571,-2023.5 7122.7449,-1840.3119 7205.8874,-1780.1856 7152.8571,-1587.5 7109.7565,-1430.8937 7026.629,-1424.132 6965.8571,-1273.5 6822.9694,-919.3315 6967.3873,-716.1233 6681.8571,-462.5 6457.6069,-263.3089 6112.0103,-177.9102 5893.0427,-142.2801"/>
<polygon fill="#9400d3" stroke="#9400d3" points="5893.4658,-138.8032 5883.0372,-140.6723 5892.3552,-145.7146 5893.4658,-138.8032"/>
</g>
<!-- 49438080->49438464 -->
<g id="edge124" class="edge">
<title>49438080->49438464</title>
<path fill="none" stroke="#9400d3" d="M5382.9136,-3837.4712C5217.7862,-3768.3609 4816.2501,-3600.3073 4642.3808,-3527.5384"/>
<polygon fill="#9400d3" stroke="#9400d3" points="4643.5939,-3524.252 4633.018,-3523.6198 4640.8913,-3530.7092 4643.5939,-3524.252"/>
</g>
<!-- 46850816 -->
<g id="node59" class="node">
<title>46850816</title>
<polygon fill="none" stroke="#000000" points="5382.3571,-3523.5 5143.3571,-3523.5 5143.3571,-3462.5 5382.3571,-3462.5 5382.3571,-3523.5"/>
<text text-anchor="middle" x="5262.8571" y="-3481.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">libxft-2.3.2</text>
</g>
<!-- 49438080->46850816 -->
<g id="edge122" class="edge">
<title>49438080->46850816</title>
<path fill="none" stroke="#9400d3" d="M5440.0631,-3837.3122C5405.2702,-3769.7093 5322.0372,-3607.9873 5283.3155,-3532.7508"/>
<polygon fill="#9400d3" stroke="#9400d3" points="5286.2869,-3530.8758 5278.5987,-3523.5859 5280.0629,-3534.0791 5286.2869,-3530.8758"/>
</g>
<!-- 48859200 -->
<g id="node60" class="node">
<title>48859200</title>
<polygon fill="none" stroke="#000000" points="5011.3571,-2023.5 4634.3571,-2023.5 4634.3571,-1962.5 5011.3571,-1962.5 5011.3571,-2023.5"/>
<text text-anchor="middle" x="4822.8571" y="-1981.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">fontconfig-2.12.6</text>
</g>
<!-- 49438080->48859200 -->
<g id="edge123" class="edge">
<title>49438080->48859200</title>
<path fill="none" stroke="#9400d3" d="M5378.8134,-3837.4565C5183.0391,-3754.2081 4681.8571,-3503.4504 4681.8571,-3118 4681.8571,-3118 4681.8571,-3118 4681.8571,-2743 4681.8571,-2467.7348 4774.728,-2145.274 4809.7258,-2033.5291"/>
<polygon fill="#9400d3" stroke="#9400d3" points="4813.1598,-2034.2772 4812.8298,-2023.6875 4806.4839,-2032.1717 4813.1598,-2034.2772"/>
</g>
<!-- 48606784 -->
<g id="node61" class="node">
<title>48606784</title>
<polygon fill="none" stroke="#000000" points="5940.8571,-2773.5 5674.8571,-2773.5 5674.8571,-2712.5 5940.8571,-2712.5 5940.8571,-2773.5"/>
<text text-anchor="middle" x="5807.8571" y="-2731.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">libx11-1.6.5</text>
</g>
<!-- 49438080->48606784 -->
<g id="edge125" class="edge">
<title>49438080->48606784</title>
<path fill="none" stroke="#9400d3" d="M5465.4548,-3837.3255C5514.743,-3679.7995 5739.2608,-2962.2353 5795.2031,-2783.4424"/>
<polygon fill="#9400d3" stroke="#9400d3" points="5798.6221,-2784.2359 5798.268,-2773.647 5791.9415,-2782.1456 5798.6221,-2784.2359"/>
</g>
<!-- 48017408 -->
<g id="node62" class="node">
<title>48017408</title>
<polygon fill="none" stroke="#000000" points="7141.3571,-3148.5 6864.3571,-3148.5 6864.3571,-3087.5 7141.3571,-3087.5 7141.3571,-3148.5"/>
<text text-anchor="middle" x="7002.8571" y="-3106.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">libxext-1.3.3</text>
</g>
<!-- 49438080->48017408 -->
<g id="edge126" class="edge">
<title>49438080->48017408</title>
<path fill="none" stroke="#9400d3" d="M5545.0621,-3841.0335C5549.3823,-3839.8194 5553.6646,-3838.6354 5557.8571,-3837.5 6128.246,-3683.0221 6407.2299,-3915.0202 6849.8571,-3523.5 6906.6248,-3473.2869 6968.7918,-3251.005 6992.7087,-3158.5518"/>
<polygon fill="#9400d3" stroke="#9400d3" points="6996.1368,-3159.2739 6995.2349,-3148.7175 6989.3569,-3157.5323 6996.1368,-3159.2739"/>
</g>
<!-- 46850816->40131392 -->
<g id="edge127" class="edge">
<title>46850816->40131392</title>
<path fill="none" stroke="#00cdcd" d="M5239.6601,-3462.2051C5197.2881,-3404.2273 5107.7924,-3273.432 5064.8571,-3148.5 5010.1503,-2989.3152 5023.664,-2941.4084 5011.8571,-2773.5 4975.8237,-2261.059 5039.8571,-2131.7063 5039.8571,-1618 5039.8571,-1618 5039.8571,-1618 5039.8571,-868 5039.8571,-686.5195 4987.8395,-613.932 5087.8571,-462.5 5199.727,-293.1231 5425.3598,-197.2449 5565.811,-151.6374"/>
<polygon fill="#00cdcd" stroke="#00cdcd" points="5566.9039,-154.9626 5575.3551,-148.573 5564.7638,-148.2977 5566.9039,-154.9626"/>
</g>
<!-- 46850816->48859200 -->
<g id="edge132" class="edge">
<title>46850816->48859200</title>
<path fill="none" stroke="#00cdcd" d="M5220.9742,-3462.4594C5150.2838,-3408.2467 5008.8529,-3287.7105 4945.8571,-3148.5 4763.9383,-2746.4888 4803.0912,-2187.9294 4818.3502,-2033.7913"/>
<polygon fill="#00cdcd" stroke="#00cdcd" points="4821.8351,-2034.1157 4819.3612,-2023.8137 4814.8708,-2033.4099 4821.8351,-2034.1157"/>
</g>
<!-- 46850816->48606784 -->
<g id="edge128" class="edge">
<title>46850816->48606784</title>
<path fill="none" stroke="#00cdcd" d="M5286.39,-3462.3531C5332.2635,-3402.4688 5436.6176,-3265.539 5521.8571,-3148.5 5618.8407,-3015.3359 5730.5164,-2854.8535 5780.8202,-2782.1678"/>
<polygon fill="#00cdcd" stroke="#00cdcd" points="5783.8349,-2783.9619 5786.6455,-2773.7466 5778.078,-2779.9796 5783.8349,-2783.9619"/>
</g>
<!-- 48138880 -->
<g id="node63" class="node">
<title>48138880</title>
<polygon fill="none" stroke="#000000" points="5521.8571,-1648.5 5219.8571,-1648.5 5219.8571,-1587.5 5521.8571,-1587.5 5521.8571,-1648.5"/>
<text text-anchor="middle" x="5370.8571" y="-1606.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">xproto-7.0.31</text>
</g>
<!-- 46850816->48138880 -->
<g id="edge129" class="edge">
<title>46850816->48138880</title>
<path fill="none" stroke="#00cdcd" d="M5287.9937,-3462.2321C5333.1332,-3404.8115 5426.5106,-3275.6012 5461.8571,-3148.5 5558.431,-2801.2337 5488.6384,-2697.0215 5462.8571,-2337.5 5444.2274,-2077.708 5395.6485,-1768.0542 5377.6739,-1658.6837"/>
<polygon fill="#00cdcd" stroke="#00cdcd" points="5381.1135,-1658.0299 5376.032,-1648.7331 5374.2069,-1659.1695 5381.1135,-1658.0299"/>
</g>
<!-- 48139648 -->
<g id="node64" class="node">
<title>48139648</title>
<polygon fill="none" stroke="#000000" points="5452.3571,-3148.5 5073.3571,-3148.5 5073.3571,-3087.5 5452.3571,-3087.5 5452.3571,-3148.5"/>
<text text-anchor="middle" x="5262.8571" y="-3106.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">libxrender-0.9.10</text>
</g>
<!-- 46850816->48139648 -->
<g id="edge130" class="edge">
<title>46850816->48139648</title>
<path fill="none" stroke="#00cdcd" d="M5262.8571,-3462.3122C5262.8571,-3394.9846 5262.8571,-3234.3032 5262.8571,-3158.6744"/>
<polygon fill="#00cdcd" stroke="#00cdcd" points="5266.3572,-3158.5859 5262.8571,-3148.5859 5259.3572,-3158.586 5266.3572,-3158.5859"/>
</g>
<!-- 48860352 -->
<g id="node65" class="node">
<title>48860352</title>
<polygon fill="none" stroke="#000000" points="4389.3571,-1648.5 4074.3571,-1648.5 4074.3571,-1587.5 4389.3571,-1587.5 4389.3571,-1648.5"/>
<text text-anchor="middle" x="4231.8571" y="-1606.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">freetype-2.8.1</text>
</g>
<!-- 46850816->48860352 -->
<g id="edge131" class="edge">
<title>46850816->48860352</title>
<path fill="none" stroke="#00cdcd" d="M5224.4741,-3462.4222C5156.0267,-3406.2975 5011.5848,-3280.4414 4920.8571,-3148.5 4550.9949,-2610.6253 4300.8488,-1842.149 4244.1151,-1658.5158"/>
<polygon fill="#00cdcd" stroke="#00cdcd" points="4247.3913,-1657.262 4241.1053,-1648.7334 4240.7009,-1659.3205 4247.3913,-1657.262"/>
</g>
<!-- 48859200->40131392 -->
<g id="edge186" class="edge">
<title>48859200->40131392</title>
<path fill="none" stroke="#ff00ff" d="M4842.1954,-1962.227C4877.7591,-1903.7616 4952.661,-1771.4607 4982.8571,-1648.5 5025.8853,-1473.286 5001.8571,-1423.4199 5001.8571,-1243 5001.8571,-1243 5001.8571,-1243 5001.8571,-868 5001.8571,-687.4624 4927.668,-614.0016 5025.8571,-462.5 5140.7747,-285.1871 5377.9386,-193.979 5534.9565,-151.1291"/>
<polygon fill="#ff00ff" stroke="#ff00ff" points="5535.9665,-154.4818 5544.7117,-148.5008 5534.1455,-147.7228 5535.9665,-154.4818"/>
</g>
<!-- 48859200->50930432 -->
<g id="edge188" class="edge">
<title>48859200->50930432</title>
<path fill="none" stroke="#ff00ff" d="M4764.4632,-1962.371C4674.2642,-1911.3144 4504.4107,-1799.3359 4436.8571,-1648.5 4340.7825,-1433.9811 4625.6458,-1750.9486 4868.8571,-1273.5 4946.1311,-1121.8033 4942.1917,-1120.5862 4676.8571,-837.5 4339.6586,-477.7419 3782.5527,-237.3561 3563.4517,-152.2638"/>
<polygon fill="#ff00ff" stroke="#ff00ff" points="3564.4953,-148.9148 3553.906,-148.5719 3561.9702,-155.4435 3564.4953,-148.9148"/>
</g>
<!-- 48859200->48860352 -->
<g id="edge189" class="edge">
<title>48859200->48860352</title>
<path fill="none" stroke="#ff00ff" d="M4774.4931,-1962.3122C4666.215,-1893.6078 4404.7322,-1727.6923 4288.8183,-1654.1429"/>
<polygon fill="#ff00ff" stroke="#ff00ff" points="4290.3794,-1650.9883 4280.0605,-1648.5859 4286.629,-1656.8989 4290.3794,-1650.9883"/>
</g>
<!-- 42140992 -->
<g id="node84" class="node">
<title>42140992</title>
<polygon fill="none" stroke="#000000" points="4655.8571,-1648.5 4445.8571,-1648.5 4445.8571,-1587.5 4655.8571,-1587.5 4655.8571,-1648.5"/>
<text text-anchor="middle" x="4550.8571" y="-1606.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">gperf-3.1</text>
</g>
<!-- 48859200->42140992 -->
<g id="edge185" class="edge">
<title>48859200->42140992</title>
<path fill="none" stroke="#ff00ff" d="M4800.5982,-1962.3122C4751.3638,-1894.4339 4633.3045,-1731.6682 4579.0259,-1656.8357"/>
<polygon fill="#ff00ff" stroke="#ff00ff" points="4581.7468,-1654.6257 4573.0421,-1648.5859 4576.0804,-1658.7358 4581.7468,-1654.6257"/>
</g>
<!-- 45071168 -->
<g id="node85" class="node">
<title>45071168</title>
<polygon fill="none" stroke="#000000" points="4973.3571,-1648.5 4674.3571,-1648.5 4674.3571,-1587.5 4973.3571,-1587.5 4973.3571,-1648.5"/>
<text text-anchor="middle" x="4823.8571" y="-1606.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">gs-fonts-8.11</text>
</g>
<!-- 48859200->45071168 -->
<g id="edge187" class="edge">
<title>48859200->45071168</title>
<path fill="none" stroke="#ff00ff" d="M4822.939,-1962.3122C4823.1185,-1894.9846 4823.547,-1734.3032 4823.7487,-1658.6744"/>
<polygon fill="#ff00ff" stroke="#ff00ff" points="4827.2488,-1658.5953 4823.7756,-1648.5859 4820.2488,-1658.5765 4827.2488,-1658.5953"/>
</g>
<!-- 48606784->40131392 -->
<g id="edge133" class="edge">
<title>48606784->40131392</title>
<path fill="none" stroke="#8b7765" d="M5815.1435,-2712.4418C5830.1738,-2643.7583 5860.0682,-2472.6204 5820.8571,-2337.5 5774.8105,-2178.8246 5671.9049,-2180.9592 5621.8571,-2023.5 5571.3068,-1864.4599 5607.0807,-1815.327 5602.8571,-1648.5 5595.1863,-1345.512 5668.4588,-370.0328 5684.7065,-158.6494"/>
<polygon fill="#8b7765" stroke="#8b7765" points="5688.2018,-158.8432 5685.4799,-148.604 5681.2225,-158.3058 5688.2018,-158.8432"/>
</g>
<!-- 46853120 -->
<g id="node66" class="node">
<title>46853120</title>
<polygon fill="none" stroke="#000000" points="6223.8571,-2398.5 5867.8571,-2398.5 5867.8571,-2337.5 6223.8571,-2337.5 6223.8571,-2398.5"/>
<text text-anchor="middle" x="6045.8571" y="-2356.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">inputproto-2.3.2</text>
</g>
<!-- 48606784->46853120 -->
<g id="edge134" class="edge">
<title>48606784->46853120</title>
<path fill="none" stroke="#8b7765" d="M5827.3337,-2712.3122C5870.3264,-2644.5716 5973.2969,-2482.3282 6020.9197,-2407.2921"/>
<polygon fill="#8b7765" stroke="#8b7765" points="6024.0417,-2408.9045 6026.4453,-2398.5859 6018.1316,-2405.1535 6024.0417,-2408.9045"/>
</g>
<!-- 47212416 -->
<g id="node67" class="node">
<title>47212416</title>
<polygon fill="none" stroke="#000000" points="7203.3571,-2398.5 6864.3571,-2398.5 6864.3571,-2337.5 7203.3571,-2337.5 7203.3571,-2398.5"/>
<text text-anchor="middle" x="7033.8571" y="-2356.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">xextproto-7.3.0</text>
</g>
<!-- 48606784->47212416 -->
<g id="edge135" class="edge">
<title>48606784->47212416</title>
<path fill="none" stroke="#8b7765" d="M5907.666,-2712.4712C6134.6216,-2643.0516 6687.958,-2473.8011 6924.115,-2401.5671"/>
<polygon fill="#8b7765" stroke="#8b7765" points="6925.212,-2404.8917 6933.7509,-2398.6198 6923.1644,-2398.1979 6925.212,-2404.8917"/>
</g>
<!-- 48018944 -->
<g id="node68" class="node">
<title>48018944</title>
<polygon fill="none" stroke="#000000" points="5453.8571,-2398.5 5181.8571,-2398.5 5181.8571,-2337.5 5453.8571,-2337.5 5453.8571,-2398.5"/>
<text text-anchor="middle" x="5317.8571" y="-2356.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">xtrans-1.3.5</text>
</g>
<!-- 48606784->48018944 -->
<g id="edge136" class="edge">
<title>48606784->48018944</title>
<path fill="none" stroke="#8b7765" d="M5767.7584,-2712.3122C5678.2545,-2643.8143 5462.4907,-2478.6889 5365.9537,-2404.8086"/>
<polygon fill="#8b7765" stroke="#8b7765" points="5367.8912,-2401.884 5357.8227,-2398.5859 5363.6369,-2407.4429 5367.8912,-2401.884"/>
</g>
<!-- 46852928 -->
<g id="node69" class="node">
<title>46852928</title>
<polygon fill="none" stroke="#000000" points="5811.8571,-2398.5 5509.8571,-2398.5 5509.8571,-2337.5 5811.8571,-2337.5 5811.8571,-2398.5"/>
<text text-anchor="middle" x="5660.8571" y="-2356.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">kbproto-1.0.7</text>
</g>
<!-- 48606784->46852928 -->
<g id="edge137" class="edge">
<title>48606784->46852928</title>
<path fill="none" stroke="#8b7765" d="M5795.8275,-2712.3122C5769.3811,-2644.8469 5706.1902,-2483.6456 5676.62,-2408.2115"/>
<polygon fill="#8b7765" stroke="#8b7765" points="5679.7551,-2406.6188 5672.8468,-2398.5859 5673.2379,-2409.1735 5679.7551,-2406.6188"/>
</g>
<!-- 48136768 -->
<g id="node70" class="node">
<title>48136768</title>
<polygon fill="none" stroke="#000000" points="6529.8571,-2398.5 6279.8571,-2398.5 6279.8571,-2337.5 6529.8571,-2337.5 6529.8571,-2398.5"/>
<text text-anchor="middle" x="6404.8571" y="-2356.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">libxcb-1.12</text>
</g>
<!-- 48606784->48136768 -->
<g id="edge138" class="edge">
<title>48606784->48136768</title>
<path fill="none" stroke="#8b7765" d="M5856.459,-2712.4712C5965.7713,-2643.8077 6230.5714,-2477.4759 6347.6064,-2403.9615"/>
<polygon fill="#8b7765" stroke="#8b7765" points="6349.5041,-2406.9027 6356.1104,-2398.6198 6345.7807,-2400.9751 6349.5041,-2406.9027"/>
</g>
<!-- 48017408->40131392 -->
<g id="edge190" class="edge">
<title>48017408->40131392</title>
<path fill="none" stroke="#696969" d="M7015.1845,-3087.4895C7054.0225,-2989.5077 7173.5882,-2673.199 7212.8571,-2398.5 7220.829,-2342.7342 7294.7759,-1919.8745 7200.8571,-1587.5 7156.7508,-1431.4098 7062.7942,-1428.4567 7014.8571,-1273.5 6908.1045,-928.4218 7190.6614,-742.0061 6961.8571,-462.5 6827.1435,-297.9346 6217.8764,-190.8851 5893.1427,-144.4721"/>
<polygon fill="#696969" stroke="#696969" points="5893.5357,-140.9928 5883.1423,-143.0491 5892.5495,-147.923 5893.5357,-140.9928"/>
</g>
<!-- 48017408->48606784 -->
<g id="edge192" class="edge">
<title>48017408->48606784</title>
<path fill="none" stroke="#696969" d="M6905.5719,-3087.4712C6684.4645,-3018.086 6145.544,-2848.9687 5915.1664,-2776.6745"/>
<polygon fill="#696969" stroke="#696969" points="5916.0213,-2773.2745 5905.4321,-2773.6198 5913.9254,-2779.9534 5916.0213,-2773.2745"/>
</g>
<!-- 48017408->47212416 -->
<g id="edge193" class="edge">
<title>48017408->47212416</title>
<path fill="none" stroke="#696969" d="M7004.1302,-3087.2009C7009.0221,-2968.8464 7026.6155,-2543.2013 7032.1666,-2408.9002"/>
<polygon fill="#696969" stroke="#696969" points="7035.6745,-2408.7781 7032.5906,-2398.642 7028.6805,-2408.4889 7035.6745,-2408.7781"/>
</g>
<!-- 48138304 -->
<g id="node75" class="node">
<title>48138304</title>
<polygon fill="none" stroke="#000000" points="6225.8571,-2023.5 5959.8571,-2023.5 5959.8571,-1962.5 6225.8571,-1962.5 6225.8571,-2023.5"/>
<text text-anchor="middle" x="6092.8571" y="-1981.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">libxau-1.0.8</text>
</g>
<!-- 48017408->48138304 -->
<g id="edge191" class="edge">
<title>48017408->48138304</title>
<path fill="none" stroke="#696969" d="M6962.3181,-3087.4837C6842.335,-2995.4103 6484.0902,-2707.6384 6270.8571,-2398.5 6227.1501,-2335.1349 6142.9112,-2122.7979 6108.2902,-2033.3101"/>
<polygon fill="#696969" stroke="#696969" points="6111.4772,-2031.8469 6104.6106,-2023.7783 6104.9469,-2034.3678 6111.4772,-2031.8469"/>
</g>
<!-- 48138880->40131392 -->
<g id="edge170" class="edge">
<title>48138880->40131392</title>
<path fill="none" stroke="#0000ff" d="M5361.9155,-1587.4655C5315.238,-1425.6827 5105.6356,-668.2876 5210.8571,-462.5 5291.8248,-304.1471 5483.2896,-201.8422 5597.5031,-152.5927"/>
<polygon fill="#0000ff" stroke="#0000ff" points="5599.1227,-155.7071 5606.9483,-148.5649 5596.3768,-149.2681 5599.1227,-155.7071"/>
</g>
<!-- 47043520 -->
<g id="node80" class="node">
<title>47043520</title>
<polygon fill="none" stroke="#000000" points="5621.8571,-523.5 5219.8571,-523.5 5219.8571,-462.5 5621.8571,-462.5 5621.8571,-523.5"/>
<text text-anchor="middle" x="5420.8571" y="-481.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">util-macros-1.19.1</text>
</g>
<!-- 48138880->47043520 -->
<g id="edge171" class="edge">
<title>48138880->47043520</title>
<path fill="none" stroke="#0000ff" d="M5372.2204,-1587.3255C5379.2181,-1429.8779 5411.0816,-712.9496 5419.0478,-533.7098"/>
<polygon fill="#0000ff" stroke="#0000ff" points="5422.5475,-533.7926 5419.495,-523.647 5415.5544,-533.4817 5422.5475,-533.7926"/>
</g>
<!-- 48139648->40131392 -->
<g id="edge176" class="edge">
<title>48139648->40131392</title>
<path fill="none" stroke="#ff0000" d="M5230.2842,-3087.1868C5173.7282,-3031.1717 5059.3495,-2906.1272 5016.8571,-2773.5 5007.0502,-2742.8907 5077.8571,-1650.1419 5077.8571,-1618 5077.8571,-1618 5077.8571,-1618 5077.8571,-868 5077.8571,-686.5712 5027.1767,-615.3886 5124.8571,-462.5 5230.4126,-297.2855 5446.3506,-199.03 5577.978,-152.028"/>
<polygon fill="#ff0000" stroke="#ff0000" points="5579.4346,-155.2255 5587.6985,-148.5954 5577.1037,-148.625 5579.4346,-155.2255"/>
</g>
<!-- 48139648->48606784 -->
<g id="edge178" class="edge">
<title>48139648->48606784</title>
<path fill="none" stroke="#ff0000" d="M5307.4568,-3087.3122C5407.2071,-3018.6766 5647.9545,-2853.0247 5755.0078,-2779.3642"/>
<polygon fill="#ff0000" stroke="#ff0000" points="5757.1513,-2782.1378 5763.4056,-2773.5859 5753.1834,-2776.3711 5757.1513,-2782.1378"/>
</g>
<!-- 48139648->48138880 -->
<g id="edge177" class="edge">
<title>48139648->48138880</title>
<path fill="none" stroke="#ff0000" d="M5286.9668,-3087.0613C5330.2221,-3029.3631 5419.5084,-2899.7181 5451.8571,-2773.5 5503.4311,-2572.269 5246.6629,-2592.6816 5172.8571,-2398.5 5068.2988,-2123.4088 5269.5944,-1772.9567 5344.4249,-1657.1087"/>
<polygon fill="#ff0000" stroke="#ff0000" points="5347.4826,-1658.827 5350.0082,-1648.5376 5341.6173,-1655.0062 5347.4826,-1658.827"/>
</g>
<!-- 47044672 -->
<g id="node82" class="node">
<title>47044672</title>
<polygon fill="none" stroke="#000000" points="5442.3571,-2773.5 5025.3571,-2773.5 5025.3571,-2712.5 5442.3571,-2712.5 5442.3571,-2773.5"/>
<text text-anchor="middle" x="5233.8571" y="-2731.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">renderproto-0.11.1</text>
</g>
<!-- 48139648->47044672 -->
<g id="edge179" class="edge">
<title>48139648->47044672</title>
<path fill="none" stroke="#ff0000" d="M5260.4839,-3087.3122C5255.2773,-3019.9846 5242.8512,-2859.3032 5237.0026,-2783.6744"/>
<polygon fill="#ff0000" stroke="#ff0000" points="5240.4831,-2783.2863 5236.2224,-2773.5859 5233.504,-2783.826 5240.4831,-2783.2863"/>
</g>
<!-- 48860352->53716096 -->
<g id="edge183" class="edge">
<title>48860352->53716096</title>
<path fill="none" stroke="#b8860b" d="M4206.2398,-1587.3426C4160.2758,-1530.1016 4065.3794,-1401.1725 4030.8571,-1273.5 3993.0012,-1133.4988 4103.5994,-977.1224 4162.5296,-906.4102"/>
<polygon fill="#b8860b" stroke="#b8860b" points="4165.3272,-908.522 4169.1014,-898.6222 4159.9774,-904.0077 4165.3272,-908.522"/>
</g>
<!-- 48860352->40131392 -->
<g id="edge181" class="edge">
<title>48860352->40131392</title>
<path fill="none" stroke="#b8860b" d="M4373.3671,-1587.4649C4530.5161,-1545.5232 4778.2945,-1453.8174 4901.8571,-1273.5 5106.7473,-974.4998 4780.346,-759.6873 4987.8571,-462.5 5112.9252,-283.3835 5358.2551,-193.2197 5522.6663,-151.0208"/>
<polygon fill="#b8860b" stroke="#b8860b" points="5523.5599,-154.405 5532.3937,-148.5557 5521.8403,-147.6195 5523.5599,-154.405"/>
</g>
<!-- 45393792 -->
<g id="node83" class="node">
<title>45393792</title>
<polygon fill="none" stroke="#000000" points="4335.8571,-1273.5 4039.8571,-1273.5 4039.8571,-1212.5 4335.8571,-1212.5 4335.8571,-1273.5"/>
<text text-anchor="middle" x="4187.8571" y="-1231.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">libpng-1.6.34</text>
</g>
<!-- 48860352->45393792 -->
<g id="edge182" class="edge">
<title>48860352->45393792</title>
<path fill="none" stroke="#b8860b" d="M4228.2564,-1587.3122C4220.3567,-1519.9846 4201.5034,-1359.3032 4192.6296,-1283.6744"/>
<polygon fill="#b8860b" stroke="#b8860b" points="4196.0875,-1283.1099 4191.4459,-1273.5859 4189.1351,-1283.9257 4196.0875,-1283.1099"/>
</g>
<!-- 46853120->40131392 -->
<g id="edge139" class="edge">
<title>46853120->40131392</title>
<path fill="none" stroke="#9400d3" d="M5984.9181,-2337.4178C5891.7114,-2286.7986 5717.0696,-2175.8558 5645.8571,-2023.5 5569.5373,-1860.2171 5626.1246,-1392.5271 5634.8571,-1212.5 5649.7635,-905.1947 5686.9507,-830.8053 5701.8571,-523.5 5708.3304,-390.0497 5697.5263,-231.7519 5691.4932,-158.6823"/>
<polygon fill="#9400d3" stroke="#9400d3" points="5694.9655,-158.2048 5690.6403,-148.533 5687.9901,-158.791 5694.9655,-158.2048"/>
</g>
<!-- 47212416->40131392 -->
<g id="edge140" class="edge">
<title>47212416->40131392</title>
<path fill="none" stroke="#00cdcd" d="M7044.7849,-2337.0687C7065.5194,-2277.2527 7110.7376,-2141.2349 7135.8571,-2023.5 7170.9416,-1859.0595 7174.7216,-1816.2725 7185.8571,-1648.5 7187.6526,-1621.4484 7193.5596,-1613.4939 7185.8571,-1587.5 7138.5754,-1427.9361 7033.834,-1431.5968 6981.8571,-1273.5 6925.4716,-1101.9934 7047.3897,-602.8716 6933.8571,-462.5 6803.4852,-301.3082 6212.3798,-193.3552 5893.419,-145.7475"/>
<polygon fill="#00cdcd" stroke="#00cdcd" points="5893.5314,-142.2258 5883.1255,-144.218 5892.5025,-149.1498 5893.5314,-142.2258"/>
</g>
<!-- 48018944->40131392 -->
<g id="edge141" class="edge">
<title>48018944->40131392</title>
<path fill="none" stroke="#b8860b" d="M5311.8999,-2337.3048C5292.9517,-2238.1275 5233.9661,-1917.1304 5210.8571,-1648.5 5188.2639,-1385.8649 5065.2549,-695.8588 5187.8571,-462.5 5272.5878,-301.2252 5470.7837,-200.6976 5590.635,-152.3967"/>
<polygon fill="#b8860b" stroke="#b8860b" points="5592.2016,-155.5401 5600.1959,-148.5873 5589.6106,-149.0372 5592.2016,-155.5401"/>
</g>
<!-- 46852928->40131392 -->
<g id="edge142" class="edge">
<title>46852928->40131392</title>
<path fill="none" stroke="#0000ff" d="M5650.4696,-2337.1232C5630.961,-2277.4005 5589.4108,-2141.5351 5573.8571,-2023.5 5526.7635,-1666.1118 5542.3724,-1572.3951 5562.8571,-1212.5 5574.9396,-1000.2236 5660.3279,-331.0481 5682.5704,-158.7694"/>
<polygon fill="#0000ff" stroke="#0000ff" points="5686.0726,-158.9767 5683.8832,-148.6105 5679.1304,-158.0795 5686.0726,-158.9767"/>
</g>
<!-- 48136768->40131392 -->
<g id="edge143" class="edge">
<title>48136768->40131392</title>
<path fill="none" stroke="#8fbc8f" d="M6392.1013,-2337.4697C6336.7747,-2204.9756 6119.8942,-1684.8132 6109.8571,-1648.5 6057.6441,-1459.5977 6079.7208,-1405.1761 6043.8571,-1212.5 6012.6204,-1044.6821 6005.3612,-1002.2967 5960.8571,-837.5 5915.2341,-668.5599 5903.129,-626.0373 5840.8571,-462.5 5798.106,-350.2276 5737.9917,-221.8247 5707.4,-158.1587"/>
<polygon fill="#8fbc8f" stroke="#8fbc8f" points="5710.4218,-156.3667 5702.9285,-148.8766 5704.1154,-159.4048 5710.4218,-156.3667"/>
</g>
<!-- 51494080 -->
<g id="node71" class="node">
<title>51494080</title>
<polygon fill="none" stroke="#000000" points="6821.8571,-1648.5 6165.8571,-1648.5 6165.8571,-1587.5 6821.8571,-1587.5 6821.8571,-1648.5"/>
<text text-anchor="middle" x="6493.8571" y="-1606.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">python-minimal-wrapper-3.6.3</text>
</g>
<!-- 48136768->51494080 -->
<g id="edge144" class="edge">
<title>48136768->51494080</title>
<path fill="none" stroke="#8fbc8f" d="M6438.2082,-2337.3596C6496.1181,-2281.6153 6613.2478,-2156.9811 6656.8571,-2023.5 6701.894,-1885.6495 6588.8183,-1727.6016 6528.6237,-1656.3585"/>
<polygon fill="#8fbc8f" stroke="#8fbc8f" points="6531.0726,-1653.837 6521.9118,-1648.5144 6525.7539,-1658.3881 6531.0726,-1653.837"/>
</g>
<!-- 47213952 -->
<g id="node72" class="node">
<title>47213952</title>
<polygon fill="none" stroke="#000000" points="6647.8571,-2023.5 6319.8571,-2023.5 6319.8571,-1962.5 6647.8571,-1962.5 6647.8571,-2023.5"/>
<text text-anchor="middle" x="6483.8571" y="-1981.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">xcb-proto-1.12</text>
</g>
<!-- 48136768->47213952 -->
<g id="edge145" class="edge">
<title>48136768->47213952</title>
<path fill="none" stroke="#8fbc8f" d="M6411.322,-2337.3122C6425.5057,-2269.9846 6459.3559,-2109.3032 6475.2884,-2033.6744"/>
<polygon fill="#8fbc8f" stroke="#8fbc8f" points="6478.777,-2034.0927 6477.4137,-2023.5859 6471.9274,-2032.6496 6478.777,-2034.0927"/>
</g>
<!-- 50994752 -->
<g id="node73" class="node">
<title>50994752</title>
<polygon fill="none" stroke="#000000" points="5941.3571,-2023.5 5654.3571,-2023.5 5654.3571,-1962.5 5941.3571,-1962.5 5941.3571,-2023.5"/>
<text text-anchor="middle" x="5797.8571" y="-1981.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">libxslt-1.1.32</text>
</g>
<!-- 48136768->50994752 -->
<g id="edge146" class="edge">
<title>48136768->50994752</title>
<path fill="none" stroke="#8fbc8f" d="M6355.4411,-2337.4712C6244.2979,-2268.8077 5975.0622,-2102.4759 5856.0668,-2028.9615"/>
<polygon fill="#8fbc8f" stroke="#8fbc8f" points="5857.7673,-2025.898 5847.4203,-2023.6198 5854.0882,-2031.8532 5857.7673,-2025.898"/>
</g>
<!-- 46851776 -->
<g id="node74" class="node">
<title>46851776</title>
<polygon fill="none" stroke="#000000" points="6342.3571,-523.5 5899.3571,-523.5 5899.3571,-462.5 6342.3571,-462.5 6342.3571,-523.5"/>
<text text-anchor="middle" x="6120.8571" y="-481.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">libpthread-stubs-0.4</text>
</g>
<!-- 48136768->46851776 -->
<g id="edge147" class="edge">
<title>48136768->46851776</title>
<path fill="none" stroke="#8fbc8f" d="M6395.6985,-2337.3415C6375.0697,-2269.1569 6322.4864,-2100.1132 6267.8571,-1962.5 6211.2092,-1819.8018 6156.8059,-1798.4538 6123.8571,-1648.5 6075.763,-1429.6176 6109.3322,-712.6567 6118.6542,-533.7361"/>
<polygon fill="#8fbc8f" stroke="#8fbc8f" points="6122.1523,-533.8622 6119.1816,-523.6924 6115.162,-533.4951 6122.1523,-533.8622"/>
</g>
<!-- 48136768->48138304 -->
<g id="edge148" class="edge">
<title>48136768->48138304</title>
<path fill="none" stroke="#8fbc8f" d="M6379.3249,-2337.3122C6322.7356,-2269.2962 6186.8794,-2106.0075 6124.7904,-2031.3814"/>
<polygon fill="#8fbc8f" stroke="#8fbc8f" points="6127.391,-2029.0347 6118.3046,-2023.5859 6122.0099,-2033.5117 6127.391,-2029.0347"/>
</g>
<!-- 46851008 -->
<g id="node76" class="node">
<title>46851008</title>
<polygon fill="none" stroke="#000000" points="7033.8571,-2023.5 6703.8571,-2023.5 6703.8571,-1962.5 7033.8571,-1962.5 7033.8571,-2023.5"/>
<text text-anchor="middle" x="6868.8571" y="-1981.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">libxdmcp-1.1.2</text>
</g>
<!-- 48136768->46851008 -->
<g id="edge149" class="edge">
<title>48136768->46851008</title>
<path fill="none" stroke="#8fbc8f" d="M6442.8282,-2337.3122C6527.4977,-2268.8832 6731.4874,-2104.0208 6823.0366,-2030.0317"/>
<polygon fill="#8fbc8f" stroke="#8fbc8f" points="6825.4346,-2032.5938 6831.0121,-2023.5859 6821.0346,-2027.1495 6825.4346,-2032.5938"/>
</g>
<!-- 51494080->40131392 -->
<g id="edge150" class="edge">
<title>51494080->40131392</title>
<path fill="none" stroke="#9400d3" d="M6500.8605,-1587.2243C6531.5633,-1444.1841 6641.6487,-835.5239 6384.8571,-462.5 6261.5037,-283.3128 6017.2209,-193.2035 5853.1596,-151.0319"/>
<polygon fill="#9400d3" stroke="#9400d3" points="5854.006,-147.6358 5843.4523,-148.5684 5852.2841,-154.4207 5854.006,-147.6358"/>
</g>
<!-- 51494080->38441920 -->
<g id="edge151" class="edge">
<title>51494080->38441920</title>
<path fill="none" stroke="#9400d3" d="M6548.0763,-1587.4712C6670.1447,-1518.739 6966.0194,-1352.1428 7096.3811,-1278.741"/>
<polygon fill="#9400d3" stroke="#9400d3" points="7098.48,-1281.5759 7105.4764,-1273.6198 7095.0455,-1275.4764 7098.48,-1281.5759"/>
</g>
<!-- 51494656 -->
<g id="node77" class="node">
<title>51494656</title>
<polygon fill="none" stroke="#000000" points="4859.3571,-1273.5 4392.3571,-1273.5 4392.3571,-1212.5 4859.3571,-1212.5 4859.3571,-1273.5"/>
<text text-anchor="middle" x="4625.8571" y="-1231.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">python-minimal-3.6.3</text>
</g>
<!-- 51494080->51494656 -->
<g id="edge152" class="edge">
<title>51494080->51494656</title>
<path fill="none" stroke="#9400d3" d="M6341.7829,-1587.4712C5994.3326,-1517.7207 5144.8385,-1347.1852 4787.9534,-1275.5407"/>
<polygon fill="#9400d3" stroke="#9400d3" points="4788.5512,-1272.091 4778.0579,-1273.5542 4787.1734,-1278.9541 4788.5512,-1272.091"/>
</g>
<!-- 47213952->40131392 -->
<g id="edge157" class="edge">
<title>47213952->40131392</title>
<path fill="none" stroke="#696969" d="M6437.5475,-1962.4112C6361.7511,-1909.2111 6213.9313,-1791.5317 6156.8571,-1648.5 5958.8787,-1152.3531 6629.2928,-918.9939 6351.8571,-462.5 6243.0965,-283.5448 6007.9078,-193.3503 5848.7102,-151.0996"/>
<polygon fill="#696969" stroke="#696969" points="5849.373,-147.6552 5838.8126,-148.5084 5847.6001,-154.427 5849.373,-147.6552"/>
</g>
<!-- 47213952->51494080 -->
<g id="edge158" class="edge">
<title>47213952->51494080</title>
<path fill="none" stroke="#696969" d="M6484.6755,-1962.3122C6486.4709,-1894.9846 6490.7557,-1734.3032 6492.7725,-1658.6744"/>
<polygon fill="#696969" stroke="#696969" points="6496.2736,-1658.6757 6493.0415,-1648.5859 6489.2761,-1658.489 6496.2736,-1658.6757"/>
</g>
<!-- 50994752->53716096 -->
<g id="edge162" class="edge">
<title>50994752->53716096</title>
<path fill="none" stroke="#9400d3" d="M5736.5646,-1962.4962C5468.3965,-1828.9506 4410.5332,-1301.2262 4383.8571,-1273.5 4356.4779,-1245.043 4254.2226,-1005.0124 4213.624,-908.2211"/>
<polygon fill="#9400d3" stroke="#9400d3" points="4216.7568,-906.641 4209.6648,-898.7699 4210.3004,-909.3456 4216.7568,-906.641"/>
</g>
<!-- 50994752->50930048 -->
<g id="edge160" class="edge">
<title>50994752->50930048</title>
<path fill="none" stroke="#9400d3" d="M5654.0251,-1977.765C5288.2102,-1936.9386 4332.4641,-1816.6562 4065.8571,-1648.5 3919.459,-1556.1628 3818.9793,-1365.8925 3780.4154,-1283.0309"/>
<polygon fill="#9400d3" stroke="#9400d3" points="3783.4852,-1281.3291 3776.1269,-1273.7064 3777.1256,-1284.254 3783.4852,-1281.3291"/>
</g>
<!-- 50994752->51494080 -->
<g id="edge161" class="edge">
<title>50994752->51494080</title>
<path fill="none" stroke="#9400d3" d="M5854.5186,-1962.4712C5982.2132,-1893.6702 6291.9066,-1726.8096 6427.93,-1653.5211"/>
<polygon fill="#9400d3" stroke="#9400d3" points="6429.8835,-1656.4443 6437.0268,-1648.6198 6426.5632,-1650.2819 6429.8835,-1656.4443"/>
</g>
<!-- 48882816 -->
<g id="node78" class="node">
<title>48882816</title>
<polygon fill="none" stroke="#000000" points="5989.8571,-1648.5 5669.8571,-1648.5 5669.8571,-1587.5 5989.8571,-1587.5 5989.8571,-1648.5"/>
<text text-anchor="middle" x="5829.8571" y="-1606.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">libgcrypt-1.8.1</text>
</g>
<!-- 50994752->48882816 -->
<g id="edge159" class="edge">
<title>50994752->48882816</title>
<path fill="none" stroke="#9400d3" d="M5800.4758,-1962.3122C5806.2211,-1894.9846 5819.9326,-1734.3032 5826.3862,-1658.6744"/>
<polygon fill="#9400d3" stroke="#9400d3" points="5829.8841,-1658.8473 5827.2471,-1648.5859 5822.9095,-1658.2521 5829.8841,-1658.8473"/>
</g>
<!-- 46851776->40131392 -->
<g id="edge167" class="edge">
<title>46851776->40131392</title>
<path fill="none" stroke="#b8860b" d="M6085.4229,-462.3122C6006.4897,-393.952 5816.432,-229.3524 5730.8745,-155.2552"/>
<polygon fill="#b8860b" stroke="#b8860b" points="5733.0242,-152.4869 5723.1737,-148.5859 5728.4416,-157.7783 5733.0242,-152.4869"/>
</g>
<!-- 48138304->40131392 -->
<g id="edge168" class="edge">
<title>48138304->40131392</title>
<path fill="none" stroke="#696969" d="M6087.9991,-1962.2101C6078.6974,-1902.0786 6058.3649,-1764.7397 6047.8571,-1648.5 6030.3891,-1455.2636 6059.6328,-1403.5619 6025.8571,-1212.5 5950.9722,-788.8912 5761.3211,-299.7256 5704.3125,-158.2237"/>
<polygon fill="#696969" stroke="#696969" points="5707.4323,-156.6023 5700.4405,-148.642 5700.9422,-159.225 5707.4323,-156.6023"/>
</g>
<!-- 48138304->48138880 -->
<g id="edge169" class="edge">
<title>48138304->48138880</title>
<path fill="none" stroke="#696969" d="M6034.079,-1962.4712C5901.4819,-1893.6015 5579.7097,-1726.4761 5438.8247,-1653.3017"/>
<polygon fill="#696969" stroke="#696969" points="5440.298,-1650.1231 5429.8104,-1648.6198 5437.0715,-1656.3351 5440.298,-1650.1231"/>
</g>
<!-- 46851008->40131392 -->
<g id="edge173" class="edge">
<title>46851008->40131392</title>
<path fill="none" stroke="#ff00ff" d="M6867.5211,-1962.2878C6863.1963,-1860.1279 6849.8571,-1522.3865 6849.8571,-1243 6849.8571,-1243 6849.8571,-1243 6849.8571,-868 6849.8571,-411.2749 6208.3166,-219.1996 5878.6091,-150.6443"/>
<polygon fill="#ff00ff" stroke="#ff00ff" points="5878.9638,-147.1439 5868.4631,-148.5532 5877.5507,-153.9998 5878.9638,-147.1439"/>
</g>
<!-- 46851008->48138880 -->
<g id="edge175" class="edge">
<title>46851008->48138880</title>
<path fill="none" stroke="#ff00ff" d="M6746.9046,-1962.4712C6468.9615,-1892.8926 5790.3974,-1723.0251 5502.9695,-1651.0722"/>
<polygon fill="#ff00ff" stroke="#ff00ff" points="5503.4617,-1647.5875 5492.9111,-1648.5542 5501.7618,-1654.3779 5503.4617,-1647.5875"/>
</g>
<!-- 47382528 -->
<g id="node81" class="node">
<title>47382528</title>
<polygon fill="none" stroke="#000000" points="7143.8571,-1648.5 6877.8571,-1648.5 6877.8571,-1587.5 7143.8571,-1587.5 7143.8571,-1648.5"/>
<text text-anchor="middle" x="7010.8571" y="-1606.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">libbsd-0.8.3</text>
</g>
<!-- 46851008->47382528 -->
<g id="edge174" class="edge">
<title>46851008->47382528</title>
<path fill="none" stroke="#ff00ff" d="M6880.4776,-1962.3122C6906.0244,-1894.8469 6967.066,-1733.6456 6995.6304,-1658.2115"/>
<polygon fill="#ff00ff" stroke="#ff00ff" points="6999.0071,-1659.1774 6999.2753,-1648.5859 6992.4607,-1656.6984 6999.0071,-1659.1774"/>
</g>
<!-- 51494656->53716096 -->
<g id="edge156" class="edge">
<title>51494656->53716096</title>
<path fill="none" stroke="#00cdcd" d="M4590.7503,-1212.3122C4512.5462,-1143.952 4324.2442,-979.3524 4239.4771,-905.2552"/>
<polygon fill="#00cdcd" stroke="#00cdcd" points="4241.6799,-902.5321 4231.8474,-898.5859 4237.073,-907.8024 4241.6799,-902.5321"/>
</g>
<!-- 51494656->40131392 -->
<g id="edge153" class="edge">
<title>51494656->40131392</title>
<path fill="none" stroke="#00cdcd" d="M4632.0126,-1212.4076C4658.6321,-1082.6911 4767.3134,-579.4086 4873.8571,-462.5 5038.8717,-281.4322 5314.6312,-192.2235 5498.8409,-150.7207"/>
<polygon fill="#00cdcd" stroke="#00cdcd" points="5499.6397,-154.1286 5508.6398,-148.5385 5498.1181,-147.296 5499.6397,-154.1286"/>
</g>
<!-- 51494656->52759744 -->
<g id="edge154" class="edge">
<title>51494656->52759744</title>
<path fill="none" stroke="#00cdcd" d="M4570.4982,-1212.4712C4445.7392,-1143.6702 4143.1651,-976.8096 4010.2687,-903.5211"/>
<polygon fill="#00cdcd" stroke="#00cdcd" points="4011.8279,-900.384 4001.381,-898.6198 4008.4475,-906.5137 4011.8279,-900.384"/>
</g>
<!-- 51494656->50028288 -->
<g id="edge155" class="edge">
<title>51494656->50028288</title>
<path fill="none" stroke="#00cdcd" d="M4615.6278,-1212.3122C4593.1394,-1144.8469 4539.4057,-983.6456 4514.261,-908.2115"/>
<polygon fill="#00cdcd" stroke="#00cdcd" points="4517.5352,-906.9659 4511.0524,-898.5859 4510.8944,-909.1796 4517.5352,-906.9659"/>
</g>
<!-- 48883008 -->
<g id="node79" class="node">
<title>48883008</title>
<polygon fill="none" stroke="#000000" points="6016.3571,-1273.5 5643.3571,-1273.5 5643.3571,-1212.5 6016.3571,-1212.5 6016.3571,-1273.5"/>
<text text-anchor="middle" x="5829.8571" y="-1231.1" font-family="Helvetica,sans-Serif" font-size="48.00" fill="#000000">libgpg-error-1.27</text>
</g>
<!-- 48882816->48883008 -->
<g id="edge163" class="edge">
<title>48882816->48883008</title>
<path fill="none" stroke="#696969" d="M5825.9453,-1587.3122C5822.3293,-1519.9846 5822.1685,-1359.3032 5825.463,-1283.6744"/>
<polygon fill="#696969" stroke="#696969" points="5828.9637,-1283.7433 5825.9508,-1273.5859 5821.9718,-1283.4052 5828.9637,-1283.7433"/>
</g>
<!-- 48882816->48883008 -->
<g id="edge164" class="edge">
<title>48882816->48883008</title>
<path fill="none" stroke="#696969" d="M5833.7689,-1587.3122C5837.3849,-1519.9846 5837.5457,-1359.3032 5834.2513,-1283.6744"/>
<polygon fill="#696969" stroke="#696969" points="5837.7424,-1283.4052 5833.7635,-1273.5859 5830.7506,-1283.7433 5837.7424,-1283.4052"/>
</g>
<!-- 47043520->40131392 -->
<g id="edge172" class="edge">
<title>47043520->40131392</title>
<path fill="none" stroke="#ff00ff" d="M5442.7069,-462.3122C5491.0362,-394.4339 5606.9253,-231.6682 5660.2061,-156.8357"/>
<polygon fill="#ff00ff" stroke="#ff00ff" points="5663.131,-158.7621 5666.0799,-148.5859 5657.4287,-154.702 5663.131,-158.7621"/>
</g>
<!-- 47044672->40131392 -->
<g id="edge180" class="edge">
<title>47044672->40131392</title>
<path fill="none" stroke="#696969" d="M5224.849,-2712.4351C5207.6099,-2652.6927 5169.9709,-2515.9975 5150.8571,-2398.5 5121.8124,-2219.9547 5115.8571,-2173.8923 5115.8571,-1993 5115.8571,-1993 5115.8571,-1993 5115.8571,-868 5115.8571,-686.6714 5065.8977,-616.9758 5160.8571,-462.5 5259.9531,-301.2951 5466.0162,-200.578 5589.0622,-152.2582"/>
<polygon fill="#696969" stroke="#696969" points="5590.4533,-155.4727 5598.5066,-148.5883 5587.9179,-148.948 5590.4533,-155.4727"/>
</g>
<!-- 45393792->53716096 -->
<g id="edge184" class="edge">
<title>45393792->53716096</title>
<path fill="none" stroke="#b8860b" d="M4188.5936,-1212.3122C4190.2095,-1144.9846 4194.0658,-984.3032 4195.8809,-908.6744"/>
<polygon fill="#b8860b" stroke="#b8860b" points="4199.382,-908.6671 4196.1231,-898.5859 4192.384,-908.499 4199.382,-908.6671"/>
</g>
<!-- 49438272->49438464 -->
<g id="edge198" class="edge">
<title>49438272->49438464</title>
<path fill="none" stroke="#b8860b" d="M4016.1413,-4212.2009C4106.066,-4093.2529 4430.6384,-3663.9243 4530.4474,-3531.9017"/>
<polygon fill="#b8860b" stroke="#b8860b" points="4533.4531,-3533.7297 4536.6918,-3523.642 4527.8692,-3529.5083 4533.4531,-3533.7297"/>
</g>
</g>
</svg>
|