view log » | |
install | view log » |
build | view log » |
push | view log » |
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 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 |
This is a big file! Only the last 128KiB is shown. Click here to download the full log. Get:305 http://deb.debian.org/debian sid/main amd64 node-is-typedarray all 1.0.0-4 [3292 B] Get:306 http://deb.debian.org/debian sid/main amd64 node-typedarray-to-buffer all 4.0.0-2 [3380 B] Get:307 http://deb.debian.org/debian sid/main amd64 node-write-file-atomic all 4.0.2+~4.0.0-2 [9308 B] Get:308 http://deb.debian.org/debian sid/main amd64 node-slice-ansi all 5.0.0+~cs9.0.0-5 [8788 B] Get:309 http://deb.debian.org/debian sid/main amd64 node-ansi-regex all 5.0.1-1 [4912 B] Get:310 http://deb.debian.org/debian sid/main amd64 node-strip-ansi all 6.0.1-2 [4120 B] Get:311 http://deb.debian.org/debian sid/main amd64 node-clone all 2.1.2+~2.1.2-1 [9140 B] Get:312 http://deb.debian.org/debian sid/main amd64 node-defaults all 1.0.4+~1.0.3-1 [4400 B] Get:313 http://deb.debian.org/debian sid/main amd64 node-wcwidth.js all 1.0.2-2 [7088 B] Get:314 http://deb.debian.org/debian sid/main amd64 node-string-width all 4.2.3+~cs13.2.3-1 [10.7 kB] Get:315 http://deb.debian.org/debian sid/main amd64 node-wrap-ansi all 8.0.1+~8.0.1-3 [11.8 kB] Get:316 http://deb.debian.org/debian sid/main amd64 node-cliui all 7.0.4+repack+~cs3.1.0-4 [11.5 kB] Get:317 http://deb.debian.org/debian sid/main amd64 node-get-caller-file all 2.0.5+~cs1.1.1-4 [5728 B] Get:318 http://deb.debian.org/debian sid/main amd64 node-require-directory all 2.1.1+~2.1.2-1 [7092 B] Get:319 http://deb.debian.org/debian sid/main amd64 node-y18n all 5.0.8+~5.0.0-3 [10.2 kB] Get:320 http://deb.debian.org/debian sid/main amd64 node-camelcase all 7.0.0-3 [6032 B] Get:321 http://deb.debian.org/debian sid/main amd64 node-yargs-parser all 21.1.1+~21.0.0-4 [28.4 kB] Get:322 http://deb.debian.org/debian sid/main amd64 node-yargs all 16.2.0+~16.0.4-7 [128 kB] Get:323 http://deb.debian.org/debian sid/main amd64 node-istanbul all 0.4.5+repack10+~cs98.25.59-2 [211 kB] Get:324 http://deb.debian.org/debian sid/main amd64 node-through all 2.3.8+~cs0.0.30-1 [5452 B] Get:325 http://deb.debian.org/debian sid/main amd64 node-resumer all 0.0.0-6 [4144 B] Get:326 http://deb.debian.org/debian sid/main amd64 node-tape all 5.6.1+~cs8.20.19-1 [70.9 kB] Get:327 http://deb.debian.org/debian sid/main amd64 node-deep-equal all 2.1.0+~cs31.12.80-1 [34.5 kB] Get:328 http://deb.debian.org/debian sid/main amd64 libjs-util all 0.12.5+~1.0.10-1 [16.0 kB] Get:329 http://deb.debian.org/debian sid/main amd64 libmd4c0 amd64 0.4.8-1 [44.2 kB] Get:330 http://deb.debian.org/debian sid/main amd64 libssl-dev amd64 3.0.10-1 [2424 kB] Get:331 http://deb.debian.org/debian sid/main amd64 libuv1-dev amd64 1.44.2-1 [176 kB] Get:332 http://deb.debian.org/debian sid/main amd64 libnode-dev amd64 18.13.0+dfsg1-1 [498 kB] Get:333 http://deb.debian.org/debian sid/main amd64 libpcre2-16-0 amd64 10.42-4 [245 kB] Get:334 http://deb.debian.org/debian sid/main amd64 libpkgconf3 amd64 1.8.1-1 [36.1 kB] Get:335 http://deb.debian.org/debian sid/main amd64 shared-mime-info amd64 2.2-1 [729 kB] Get:336 http://deb.debian.org/debian sid/main amd64 libqt5core5a amd64 5.15.10+dfsg-3 [1831 kB] Get:337 http://deb.debian.org/debian sid/main amd64 libqt5dbus5 amd64 5.15.10+dfsg-3 [213 kB] Get:338 http://deb.debian.org/debian sid/main amd64 libegl1 amd64 1.6.0-1 [33.7 kB] Get:339 http://deb.debian.org/debian sid/main amd64 libqt5network5 amd64 5.15.10+dfsg-3 [675 kB] Get:340 http://deb.debian.org/debian sid/main amd64 libsm6 amd64 2:1.2.3-1 [35.1 kB] Get:341 http://deb.debian.org/debian sid/main amd64 libxcb-icccm4 amd64 0.4.1-1.1 [27.4 kB] Get:342 http://deb.debian.org/debian sid/main amd64 libxcb-util1 amd64 0.4.0-1+b1 [23.2 kB] Get:343 http://deb.debian.org/debian sid/main amd64 libxcb-image0 amd64 0.4.0-2 [22.9 kB] Get:344 http://deb.debian.org/debian sid/main amd64 libxcb-keysyms1 amd64 0.4.0-1+b2 [16.4 kB] Get:345 http://deb.debian.org/debian sid/main amd64 libxcb-render0 amd64 1.15-1 [115 kB] Get:346 http://deb.debian.org/debian sid/main amd64 libxcb-render-util0 amd64 0.3.9-1+b1 [18.3 kB] Get:347 http://deb.debian.org/debian sid/main amd64 libxcb-shape0 amd64 1.15-1 [106 kB] Get:348 http://deb.debian.org/debian sid/main amd64 libxcb-xinerama0 amd64 1.15-1 [105 kB] Get:349 http://deb.debian.org/debian sid/main amd64 libxcb-xinput0 amd64 1.15-1 [130 kB] Get:350 http://deb.debian.org/debian sid/main amd64 libxcb-xkb1 amd64 1.15-1 [129 kB] Get:351 http://deb.debian.org/debian sid/main amd64 xkb-data all 2.38-2 [782 kB] Get:352 http://deb.debian.org/debian sid/main amd64 libxkbcommon0 amd64 1.5.0-1 [106 kB] Get:353 http://deb.debian.org/debian sid/main amd64 libxkbcommon-x11-0 amd64 1.5.0-1 [15.6 kB] Get:354 http://deb.debian.org/debian sid/main amd64 libxrender1 amd64 1:0.9.10-1.1 [33.2 kB] Get:355 http://deb.debian.org/debian sid/main amd64 libqt5gui5 amd64 5.15.10+dfsg-3 [3437 kB] Get:356 http://deb.debian.org/debian sid/main amd64 libxcomposite1 amd64 1:0.4.5-1 [16.6 kB] Get:357 http://deb.debian.org/debian sid/main amd64 node-agent-base all 6.0.2+~cs5.4.2-2 [17.3 kB] Get:358 http://deb.debian.org/debian sid/main amd64 node-ajv-keywords all 3.5.2-2 [20.3 kB] Get:359 http://deb.debian.org/debian sid/main amd64 node-ansi-escapes all 5.0.0+really.4.3.1-1 [8896 B] Get:360 http://deb.debian.org/debian sid/main amd64 node-aproba all 2.0.0-3 [5844 B] Get:361 http://deb.debian.org/debian sid/main amd64 node-delegates all 1.0.0-3 [4528 B] Get:362 http://deb.debian.org/debian sid/main amd64 node-are-we-there-yet all 3.0.1+~1.1.0-1 [10.0 kB] Get:363 http://deb.debian.org/debian sid/main amd64 node-async-each all 1.0.3-3 [4292 B] Get:364 http://deb.debian.org/debian sid/main amd64 node-babel-plugin-lodash all 3.3.4+~cs2.0.1-7 [11.0 kB] Get:365 http://deb.debian.org/debian sid/main amd64 node-base64-js all 1.5.1+dfsg+~1.3.0-2 [7140 B] Get:366 http://deb.debian.org/debian sid/main amd64 node-binary-extensions all 2.2.0-2 [4408 B] Get:367 http://deb.debian.org/debian sid/main amd64 node-builtins all 5.0.1-1 [4072 B] Get:368 http://deb.debian.org/debian sid/main amd64 node-chownr all 2.0.0-2 [4424 B] Get:369 http://deb.debian.org/debian sid/main amd64 node-iconv-lite all 0.6.3-3 [115 kB] Get:370 http://deb.debian.org/debian sid/main amd64 node-encoding all 0.1.13-2 [4400 B] Get:371 http://deb.debian.org/debian sid/main amd64 node-jsonparse all 1.3.1-10 [8020 B] Get:372 http://deb.debian.org/debian sid/main amd64 node-minipass all 3.3.6+~cs9.4.19-1 [43.0 kB] Get:373 http://deb.debian.org/debian sid/main amd64 node-iferr all 1.0.2+~1.0.2-1 [4588 B] Get:374 http://deb.debian.org/debian sid/main amd64 node-fs-write-stream-atomic all 1.0.10-6 [5316 B] Get:375 http://deb.debian.org/debian sid/main amd64 node-run-queue all 2.0.0-3 [5156 B] Get:376 http://deb.debian.org/debian sid/main amd64 node-copy-concurrently all 1.0.5-9 [7100 B] Get:377 http://deb.debian.org/debian sid/main amd64 node-move-concurrently all 1.0.1-5 [5152 B] Get:378 http://deb.debian.org/debian sid/main amd64 node-promise-inflight all 1.0.1+~1.0.0-1 [4864 B] Get:379 http://deb.debian.org/debian sid/main amd64 node-ssri all 9.0.1-2 [18.0 kB] Get:380 http://deb.debian.org/debian sid/main amd64 node-unique-filename all 1.1.1+ds-2 [4032 B] Get:381 http://deb.debian.org/debian sid/main amd64 node-cacache all 17.0.3+~cs10.3.7-1 [45.1 kB] Get:382 http://deb.debian.org/debian sid/main amd64 node-is-binary-path all 2.1.0-5 [3684 B] Get:383 http://deb.debian.org/debian sid/main amd64 node-path-is-absolute all 2.0.0-2 [4068 B] Get:384 http://deb.debian.org/debian sid/main amd64 node-set-immediate-shim all 2.0.0-2 [3740 B] Get:385 http://deb.debian.org/debian sid/main amd64 node-readdirp all 3.6.0-1 [11.5 kB] Get:386 http://deb.debian.org/debian sid/main amd64 node-chokidar all 3.5.3-2 [32.3 kB] Get:387 http://deb.debian.org/debian sid/main amd64 node-tslib all 2.4.1-1 [19.5 kB] Get:388 http://deb.debian.org/debian sid/main amd64 node-chrome-trace-event all 1.0.3-2 [6984 B] Get:389 http://deb.debian.org/debian sid/main amd64 node-ci-info all 3.6.1+~cs1.1.0-1 [11.7 kB] Get:390 http://deb.debian.org/debian sid/main amd64 node-colors all 1.4.0-4 [11.9 kB] Get:391 http://deb.debian.org/debian sid/main amd64 node-cli-table all 0.3.11+~cs0.13.4-3 [23.6 kB] Get:392 http://deb.debian.org/debian sid/main amd64 node-columnify all 1.6.0+~1.5.1-1 [12.4 kB] Get:393 http://deb.debian.org/debian sid/main amd64 node-console-control-strings all 1.1.0-3 [5564 B] Get:394 http://deb.debian.org/debian sid/main amd64 node-css-selector-tokenizer all 0.8.0+~cs4.8.3-1 [13.0 kB] Get:395 http://deb.debian.org/debian sid/main amd64 node-isobject all 4.0.0-2 [5332 B] Get:396 http://deb.debian.org/debian sid/main amd64 node-postcss all 8.4.20+~cs8.0.23-1 [180 kB] Get:397 http://deb.debian.org/debian sid/main amd64 node-icss-utils all 5.1.0+~5.1.0-1 [7564 B] Get:398 http://deb.debian.org/debian sid/main amd64 node-postcss-modules-extract-imports all 3.0.0-2 [6584 B] Get:399 http://deb.debian.org/debian sid/main amd64 node-postcss-modules-values all 4.0.0+~4.0.0-1 [7180 B] Get:400 http://deb.debian.org/debian sid/main amd64 node-postcss-value-parser all 4.2.0-1 [10.4 kB] Get:401 http://deb.debian.org/debian sid/main amd64 node-prr all 1.0.1-3 [4352 B] Get:402 http://deb.debian.org/debian sid/main amd64 node-errno all 1.0.0-3 [7736 B] Get:403 http://deb.debian.org/debian sid/main amd64 node-memory-fs all 0.5.0+~0.3.3-2 [7676 B] Get:404 http://deb.debian.org/debian sid/main amd64 node-tapable all 2.2.1-3 [13.5 kB] Get:405 http://deb.debian.org/debian sid/main amd64 node-enhanced-resolve all 5.10.0-1 [33.6 kB] Get:406 http://deb.debian.org/debian sid/main amd64 node-es-module-lexer all 1.1.0+dfsg-2 [19.7 kB] Get:407 http://deb.debian.org/debian sid/main amd64 node-events all 3.3.0+~3.0.0-3 [5888 B] Get:408 http://deb.debian.org/debian sid/main amd64 node-resolve-cwd all 3.0.0-2 [4212 B] Get:409 http://deb.debian.org/debian sid/main amd64 node-jest-debbundle all 29.6.2~ds1+~cs73.45.28-2 [134 kB] Get:410 http://deb.debian.org/debian sid/main amd64 node-interpret all 2.2.0-3 [7660 B] Get:411 http://deb.debian.org/debian sid/main amd64 node-merge-stream all 2.0.0+~1.1.2-2 [5124 B] Get:412 http://deb.debian.org/debian sid/main amd64 node-jest-worker all 29.6.2~ds1+~cs73.45.28-2 [116 kB] Get:413 http://deb.debian.org/debian sid/main amd64 node-loader-runner all 4.3.0-1 [7644 B] Get:414 http://deb.debian.org/debian sid/main amd64 node-mime all 3.0.0+dfsg+~cs6.97.2-1 [40.2 kB] Get:415 http://deb.debian.org/debian sid/main amd64 node-mime-types all 2.1.35-1 [9456 B] Get:416 http://deb.debian.org/debian sid/main amd64 node-rechoir all 0.8.0+~0.6.1-2 [6628 B] Get:417 http://deb.debian.org/debian sid/main amd64 node-schema-utils all 3.1.1~ds-2 [20.0 kB] Get:418 http://deb.debian.org/debian sid/main amd64 node-randombytes all 2.1.0+~2.0.0-2 [4852 B] Get:419 http://deb.debian.org/debian sid/main amd64 node-serialize-javascript all 6.0.1-1 [12.8 kB] Get:420 http://deb.debian.org/debian sid/main amd64 node-watchpack all 2.4.0+~cs2.8.1-1 [20.2 kB] Get:421 http://deb.debian.org/debian sid/main amd64 node-webassemblyjs all 1.11.4+dfsg+~cs10.11.17-2 [139 kB] Get:422 http://deb.debian.org/debian sid/main amd64 node-source-list-map all 2.0.1+dfsg+~0.1.2-1 [10.1 kB] Get:423 http://deb.debian.org/debian sid/main amd64 node-webpack-sources all 3.2.3+~3.2.0-2 [23.2 kB] Get:424 http://deb.debian.org/debian sid/main amd64 node-terser all 5.19.2-1 [208 kB] Get:425 http://deb.debian.org/debian sid/main amd64 terser all 5.19.2-1 [17.5 kB] Get:426 http://deb.debian.org/debian sid/main amd64 webpack all 5.76.1+dfsg1+~cs17.16.16-1 [757 kB] Get:427 http://deb.debian.org/debian sid/main amd64 node-css-loader all 6.7.2+~cs14.0.11-1 [73.0 kB] Get:428 http://deb.debian.org/debian sid/main amd64 node-data-uri-to-buffer all 4.0.0-4 [5748 B] Get:429 http://deb.debian.org/debian sid/main amd64 node-mimic-response all 3.1.0-8 [5404 B] Get:430 http://deb.debian.org/debian sid/main amd64 node-decompress-response all 6.0.0-2 [4620 B] Get:431 http://deb.debian.org/debian sid/main amd64 node-depd all 2.0.0-2 [11.2 kB] Get:432 http://deb.debian.org/debian sid/main amd64 node-diff all 5.0.0~dfsg+~5.0.1-4 [69.7 kB] Get:433 http://deb.debian.org/debian sid/main amd64 node-end-of-stream all 1.4.4+~1.4.1-1 [5292 B] Get:434 http://deb.debian.org/debian sid/main amd64 node-err-code all 2.0.3+dfsg-3 [4884 B] Get:435 http://deb.debian.org/debian sid/main amd64 node-time-stamp all 2.2.0-2 [6016 B] Get:436 http://deb.debian.org/debian sid/main amd64 node-fancy-log all 1.3.3+~cs1.3.1-2 [7940 B] Get:437 http://deb.debian.org/debian sid/main amd64 node-fetch all 3.3.0+~cs11.4.11-2 [212 kB] Get:438 http://deb.debian.org/debian sid/main amd64 node-has-unicode all 2.0.1-5 [3992 B] Get:439 http://deb.debian.org/debian sid/main amd64 node-wide-align all 1.1.3-4 [4244 B] Get:440 http://deb.debian.org/debian sid/main amd64 node-gauge all 4.0.4-2 [19.7 kB] Get:441 http://deb.debian.org/debian sid/main amd64 node-pump all 3.0.0-5 [5136 B] Get:442 http://deb.debian.org/debian sid/main amd64 node-get-stream all 6.0.1-1 [7208 B] Get:443 http://deb.debian.org/debian sid/main amd64 node-lowercase-keys all 2.0.0-2 [3768 B] Get:444 http://deb.debian.org/debian sid/main amd64 node-json-buffer all 3.0.1+~3.0.0-1 [4536 B] Get:445 http://deb.debian.org/debian sid/main amd64 node-p-cancelable all 2.1.1-1 [7272 B] Get:446 http://deb.debian.org/debian sid/main amd64 node-got all 11.8.5+~cs58.13.36-3 [121 kB] Get:447 http://deb.debian.org/debian sid/main amd64 node-https-proxy-agent all 5.0.1+~cs8.0.0-3 [16.1 kB] Get:448 http://deb.debian.org/debian sid/main amd64 node-set-blocking all 2.0.0-2 [4248 B] Get:449 http://deb.debian.org/debian sid/main amd64 node-npmlog all 7.0.1+~4.1.4-1 [11.4 kB] Get:450 http://deb.debian.org/debian sid/main amd64 node-osenv all 0.1.5+~0.1.1-1 [5884 B] Get:451 http://deb.debian.org/debian sid/main amd64 node-tar all 6.1.13+~cs7.0.5-1 [51.1 kB] Get:452 http://deb.debian.org/debian sid/main amd64 node-gyp all 9.3.0-2 [57.9 kB] Get:453 http://deb.debian.org/debian sid/main amd64 node-ieee754 all 1.2.1-3 [5268 B] Get:454 http://deb.debian.org/debian sid/main amd64 node-ini all 3.0.1-2 [6928 B] Get:455 http://deb.debian.org/debian sid/main amd64 node-ip all 2.0.0+~1.1.0-1 [8128 B] Get:456 http://deb.debian.org/debian sid/main amd64 node-ip-regex all 4.3.0+~4.1.1-1 [5188 B] Get:457 http://deb.debian.org/debian sid/main amd64 node-mute-stream all 0.0.8+~0.0.1-3 [6232 B] Get:458 http://deb.debian.org/debian sid/main amd64 node-negotiator all 0.6.3+~0.6.1-1 [10.8 kB] Get:459 http://deb.debian.org/debian sid/main amd64 node-read-package-json all 5.0.2+~2.0.0-1 [12.0 kB] Get:460 http://deb.debian.org/debian sid/main amd64 node-npm-bundled all 2.0.1-2 [6408 B] Get:461 http://deb.debian.org/debian sid/main amd64 node-validate-npm-package-name all 5.0.0+~4.0.0-1 [7444 B] Get:462 http://deb.debian.org/debian sid/main amd64 node-npm-package-arg all 10.0.0+~3.0.0-2 [11.4 kB] Get:463 http://deb.debian.org/debian sid/main amd64 node-retry all 0.13.1+~0.12.1-1 [11.2 kB] Get:464 http://deb.debian.org/debian sid/main amd64 node-promise-retry all 2.0.1-4 [5016 B] Get:465 http://deb.debian.org/debian sid/main amd64 node-read all 1.0.7-5 [5388 B] Get:466 http://deb.debian.org/debian sid/main amd64 node-promzard all 0.3.0-2 [6788 B] Get:467 http://deb.debian.org/debian sid/main amd64 node-text-table all 0.2.0-4 [4736 B] Get:468 http://deb.debian.org/debian sid/main amd64 npm all 9.2.0~ds1-1 [669 kB] Get:469 http://deb.debian.org/debian sid/main amd64 pkgconf-bin amd64 1.8.1-1 [29.5 kB] Get:470 http://deb.debian.org/debian sid/main amd64 pkgconf amd64 1.8.1-1 [25.9 kB] Get:471 http://deb.debian.org/debian sid/main amd64 pkg-config amd64 1.8.1-1 [13.7 kB] Preconfiguring packages ... Fetched 213 MB in 20s (10.5 MB/s) Selecting previously unselected package libsigsegv2:amd64. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 23751 files and directories currently installed.) Preparing to unpack .../libsigsegv2_2.14-1_amd64.deb ... Unpacking libsigsegv2:amd64 (2.14-1) ... Setting up libsigsegv2:amd64 (2.14-1) ... Selecting previously unselected package gawk. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 23760 files and directories currently installed.) Preparing to unpack .../000-gawk_1%3a5.2.1-2_amd64.deb ... Unpacking gawk (1:5.2.1-2) ... Selecting previously unselected package libhttp-parser2.9:amd64. Preparing to unpack .../001-libhttp-parser2.9_2.9.4-6_amd64.deb ... Unpacking libhttp-parser2.9:amd64 (2.9.4-6) ... Selecting previously unselected package libmbedcrypto7:amd64. Preparing to unpack .../002-libmbedcrypto7_2.28.3-1_amd64.deb ... Unpacking libmbedcrypto7:amd64 (2.28.3-1) ... Selecting previously unselected package libmbedx509-1:amd64. Preparing to unpack .../003-libmbedx509-1_2.28.3-1_amd64.deb ... Unpacking libmbedx509-1:amd64 (2.28.3-1) ... Selecting previously unselected package libmbedtls14:amd64. Preparing to unpack .../004-libmbedtls14_2.28.3-1_amd64.deb ... Unpacking libmbedtls14:amd64 (2.28.3-1) ... Selecting previously unselected package libgit2-1.5:amd64. Preparing to unpack .../005-libgit2-1.5_1.5.1+ds-1_amd64.deb ... Unpacking libgit2-1.5:amd64 (1.5.1+ds-1) ... Selecting previously unselected package libicu72:amd64. Preparing to unpack .../006-libicu72_72.1-3_amd64.deb ... Unpacking libicu72:amd64 (72.1-3) ... Selecting previously unselected package libxml2:amd64. Preparing to unpack .../007-libxml2_2.9.14+dfsg-1.3_amd64.deb ... Unpacking libxml2:amd64 (2.9.14+dfsg-1.3) ... Selecting previously unselected package libz3-4:amd64. Preparing to unpack .../008-libz3-4_4.8.12-3.1_amd64.deb ... Unpacking libz3-4:amd64 (4.8.12-3.1) ... Selecting previously unselected package libllvm15:amd64. Preparing to unpack .../009-libllvm15_1%3a15.0.7-10_amd64.deb ... Unpacking libllvm15:amd64 (1:15.0.7-10) ... Selecting previously unselected package libstd-rust-1.67:amd64. Preparing to unpack .../010-libstd-rust-1.67_1.67.1+dfsg1-1_amd64.deb ... Unpacking libstd-rust-1.67:amd64 (1.67.1+dfsg1-1) ... Selecting previously unselected package libstd-rust-dev:amd64. Preparing to unpack .../011-libstd-rust-dev_1.67.1+dfsg1-1_amd64.deb ... Unpacking libstd-rust-dev:amd64 (1.67.1+dfsg1-1) ... Selecting previously unselected package rustc. Preparing to unpack .../012-rustc_1.67.1+dfsg1-1_amd64.deb ... Unpacking rustc (1.67.1+dfsg1-1) ... Selecting previously unselected package libllvm14:amd64. Preparing to unpack .../013-libllvm14_1%3a14.0.6-16_amd64.deb ... Unpacking libllvm14:amd64 (1:14.0.6-16) ... Selecting previously unselected package libclang-cpp14. Preparing to unpack .../014-libclang-cpp14_1%3a14.0.6-16_amd64.deb ... Unpacking libclang-cpp14 (1:14.0.6-16) ... Selecting previously unselected package libgc1:amd64. Preparing to unpack .../015-libgc1_1%3a8.2.4-1_amd64.deb ... Unpacking libgc1:amd64 (1:8.2.4-1) ... Selecting previously unselected package libobjc4:amd64. Preparing to unpack .../016-libobjc4_13.2.0-3_amd64.deb ... Unpacking libobjc4:amd64 (13.2.0-3) ... Selecting previously unselected package libobjc-13-dev:amd64. Preparing to unpack .../017-libobjc-13-dev_13.2.0-3_amd64.deb ... Unpacking libobjc-13-dev:amd64 (13.2.0-3) ... Selecting previously unselected package libclang-common-14-dev. Preparing to unpack .../018-libclang-common-14-dev_1%3a14.0.6-16_all.deb ... Unpacking libclang-common-14-dev (1:14.0.6-16) ... Selecting previously unselected package llvm-14-linker-tools. Preparing to unpack .../019-llvm-14-linker-tools_1%3a14.0.6-16_amd64.deb ... Unpacking llvm-14-linker-tools (1:14.0.6-16) ... Selecting previously unselected package libclang1-14. Preparing to unpack .../020-libclang1-14_1%3a14.0.6-16_amd64.deb ... Unpacking libclang1-14 (1:14.0.6-16) ... Selecting previously unselected package clang-14. Preparing to unpack .../021-clang-14_1%3a14.0.6-16_amd64.deb ... Unpacking clang-14 (1:14.0.6-16) ... Selecting previously unselected package clang. Preparing to unpack .../022-clang_1%3a14.0-55.7_amd64.deb ... Unpacking clang (1:14.0-55.7) ... Selecting previously unselected package cargo. Preparing to unpack .../023-cargo_0.66.0+ds1-1_amd64.deb ... Unpacking cargo (0.66.0+ds1-1) ... Selecting previously unselected package node-fast-deep-equal. Preparing to unpack .../024-node-fast-deep-equal_3.1.3-3_all.deb ... Unpacking node-fast-deep-equal (3.1.3-3) ... Selecting previously unselected package node-json-schema-traverse. Preparing to unpack .../025-node-json-schema-traverse_1.0.0-3_all.deb ... Unpacking node-json-schema-traverse (1.0.0-3) ... Selecting previously unselected package node-jsonify. Preparing to unpack .../026-node-jsonify_0.0.1-1_all.deb ... Unpacking node-jsonify (0.0.1-1) ... Selecting previously unselected package node-json-stable-stringify. Preparing to unpack .../027-node-json-stable-stringify_1.0.2+repack1+~cs1.0.34-2_all.deb ... Unpacking node-json-stable-stringify (1.0.2+repack1+~cs1.0.34-2) ... Selecting previously unselected package node-punycode. Preparing to unpack .../028-node-punycode_2.2.3-2_all.deb ... Unpacking node-punycode (2.2.3-2) ... Selecting previously unselected package node-uri-js. Preparing to unpack .../029-node-uri-js_4.4.0+dfsg-8_all.deb ... Unpacking node-uri-js (4.4.0+dfsg-8) ... Selecting previously unselected package libc-ares2:amd64. Preparing to unpack .../030-libc-ares2_1.19.1-3_amd64.deb ... Unpacking libc-ares2:amd64 (1.19.1-3) ... Selecting previously unselected package libuv1:amd64. Preparing to unpack .../031-libuv1_1.44.2-1_amd64.deb ... Unpacking libuv1:amd64 (1.44.2-1) ... Selecting previously unselected package node-xtend. Preparing to unpack .../032-node-xtend_4.0.2-3_all.deb ... Unpacking node-xtend (4.0.2-3) ... Selecting previously unselected package node-acorn. Preparing to unpack .../033-node-acorn_8.8.1+ds+~cs25.17.7-2_all.deb ... Unpacking node-acorn (8.8.1+ds+~cs25.17.7-2) ... Selecting previously unselected package node-cjs-module-lexer. Preparing to unpack .../034-node-cjs-module-lexer_1.2.2+dfsg-5_all.deb ... Unpacking node-cjs-module-lexer (1.2.2+dfsg-5) ... Selecting previously unselected package node-busboy. Preparing to unpack .../035-node-busboy_1.6.0+~cs2.6.0-2_all.deb ... Unpacking node-busboy (1.6.0+~cs2.6.0-2) ... Selecting previously unselected package node-undici. Preparing to unpack .../036-node-undici_5.22.1+dfsg1+~cs20.10.10.2-1_all.deb ... Unpacking node-undici (5.22.1+dfsg1+~cs20.10.10.2-1) ... Selecting previously unselected package libnode108:amd64. Preparing to unpack .../037-libnode108_18.13.0+dfsg1-1_amd64.deb ... Unpacking libnode108:amd64 (18.13.0+dfsg1-1) ... Selecting previously unselected package nodejs. Preparing to unpack .../038-nodejs_18.13.0+dfsg1-1_amd64.deb ... Unpacking nodejs (18.13.0+dfsg1-1) ... Selecting previously unselected package node-ajv. Preparing to unpack .../039-node-ajv_6.12.6-3_all.deb ... Unpacking node-ajv (6.12.6-3) ... Selecting previously unselected package libjs-inherits. Preparing to unpack .../040-libjs-inherits_2.0.4-6_all.deb ... Unpacking libjs-inherits (2.0.4-6) ... Selecting previously unselected package node-inherits. Preparing to unpack .../041-node-inherits_2.0.4-6_all.deb ... Unpacking node-inherits (2.0.4-6) ... Selecting previously unselected package node-core-util-is. Preparing to unpack .../042-node-core-util-is_1.0.3-1_all.deb ... Unpacking node-core-util-is (1.0.3-1) ... Selecting previously unselected package node-safe-buffer. Preparing to unpack .../043-node-safe-buffer_5.2.1+~cs2.1.2-3_all.deb ... Unpacking node-safe-buffer (5.2.1+~cs2.1.2-3) ... Selecting previously unselected package node-string-decoder. Preparing to unpack .../044-node-string-decoder_1.3.0-6_all.deb ... Unpacking node-string-decoder (1.3.0-6) ... Selecting previously unselected package node-process-nextick-args. Preparing to unpack .../045-node-process-nextick-args_2.0.1-3_all.deb ... Unpacking node-process-nextick-args (2.0.1-3) ... Selecting previously unselected package node-util-deprecate. Preparing to unpack .../046-node-util-deprecate_1.0.2-3_all.deb ... Unpacking node-util-deprecate (1.0.2-3) ... Selecting previously unselected package node-isarray. Preparing to unpack .../047-node-isarray_2.0.5-4_all.deb ... Unpacking node-isarray (2.0.5-4) ... Selecting previously unselected package node-readable-stream. Preparing to unpack .../048-node-readable-stream_3.6.0+~cs3.0.0-4_all.deb ... Unpacking node-readable-stream (3.6.0+~cs3.0.0-4) ... Selecting previously unselected package node-typedarray. Preparing to unpack .../049-node-typedarray_0.0.7-1_all.deb ... Unpacking node-typedarray (0.0.7-1) ... Selecting previously unselected package node-concat-stream. Preparing to unpack .../050-node-concat-stream_2.0.0+~2.0.0-2_all.deb ... Unpacking node-concat-stream (2.0.0+~2.0.0-2) ... Selecting previously unselected package node-ms. Preparing to unpack .../051-node-ms_2.1.3+~cs0.7.31-3_all.deb ... Unpacking node-ms (2.1.3+~cs0.7.31-3) ... Selecting previously unselected package node-debug. Preparing to unpack .../052-node-debug_4.3.4+~cs4.1.7-1_all.deb ... Unpacking node-debug (4.3.4+~cs4.1.7-1) ... Selecting previously unselected package node-esutils. Preparing to unpack .../053-node-esutils_2.0.3+~2.0.0-1_all.deb ... Unpacking node-esutils (2.0.3+~2.0.0-1) ... Selecting previously unselected package node-doctrine. Preparing to unpack .../054-node-doctrine_3.0.0-4_all.deb ... Unpacking node-doctrine (3.0.0-4) ... Selecting previously unselected package node-eslint-visitor-keys. Preparing to unpack .../055-node-eslint-visitor-keys_3.3.0+~1.0.0-1_all.deb ... Unpacking node-eslint-visitor-keys (3.3.0+~1.0.0-1) ... Selecting previously unselected package node-estraverse. Preparing to unpack .../056-node-estraverse_5.3.0+ds+~5.1.1-1_all.deb ... Unpacking node-estraverse (5.3.0+ds+~5.1.1-1) ... Selecting previously unselected package node-object-assign. Preparing to unpack .../057-node-object-assign_4.1.1-7_all.deb ... Unpacking node-object-assign (4.1.1-7) ... Selecting previously unselected package node-esrecurse. Preparing to unpack .../058-node-esrecurse_4.3.0-2_all.deb ... Unpacking node-esrecurse (4.3.0-2) ... Selecting previously unselected package node-eslint-scope. Preparing to unpack .../059-node-eslint-scope_7.1.1+~3.7.4-1_all.deb ... Unpacking node-eslint-scope (7.1.1+~3.7.4-1) ... Selecting previously unselected package node-espree. Preparing to unpack .../060-node-espree_9.4.1~dfsg-2_all.deb ... Unpacking node-espree (9.4.1~dfsg-2) ... Selecting previously unselected package node-esquery. Preparing to unpack .../061-node-esquery_1.4.2~ds-1_all.deb ... Unpacking node-esquery (1.4.2~ds-1) ... Selecting previously unselected package node-eslint-utils. Preparing to unpack .../062-node-eslint-utils_3.0.0-3_all.deb ... Unpacking node-eslint-utils (3.0.0-3) ... Selecting previously unselected package node-flatted. Preparing to unpack .../063-node-flatted_3.2.7~ds-1_all.deb ... Unpacking node-flatted (3.2.7~ds-1) ... Selecting previously unselected package node-fs.realpath. Preparing to unpack .../064-node-fs.realpath_1.0.0-3_all.deb ... Unpacking node-fs.realpath (1.0.0-3) ... Selecting previously unselected package node-wrappy. Preparing to unpack .../065-node-wrappy_1.0.2-3_all.deb ... Unpacking node-wrappy (1.0.2-3) ... Selecting previously unselected package node-once. Preparing to unpack .../066-node-once_1.4.0-7_all.deb ... Unpacking node-once (1.4.0-7) ... Selecting previously unselected package node-inflight. Preparing to unpack .../067-node-inflight_1.0.6-2_all.deb ... Unpacking node-inflight (1.0.6-2) ... Selecting previously unselected package node-balanced-match. Preparing to unpack .../068-node-balanced-match_2.0.0-1_all.deb ... Unpacking node-balanced-match (2.0.0-1) ... Selecting previously unselected package node-brace-expansion. Preparing to unpack .../069-node-brace-expansion_2.0.1-2_all.deb ... Unpacking node-brace-expansion (2.0.1-2) ... Selecting previously unselected package node-minimatch. Preparing to unpack .../070-node-minimatch_5.1.1+~5.1.2-1_all.deb ... Unpacking node-minimatch (5.1.1+~5.1.2-1) ... Selecting previously unselected package node-glob. Preparing to unpack .../071-node-glob_8.0.3+~cs8.4.15-1_all.deb ... Unpacking node-glob (8.0.3+~cs8.4.15-1) ... Selecting previously unselected package node-rimraf. Preparing to unpack .../072-node-rimraf_3.0.2-2_all.deb ... Unpacking node-rimraf (3.0.2-2) ... Selecting previously unselected package node-write. Preparing to unpack .../073-node-write_2.0.0~6.0.1+~3.0.4+~2.0.0+~1.0.0+~2.0.1-1_all.deb ... Unpacking node-write (2.0.0~6.0.1+~3.0.4+~2.0.0+~1.0.0+~2.0.1-1) ... Selecting previously unselected package node-flat-cache. Preparing to unpack .../074-node-flat-cache_3.0.4~6.0.1+~3.0.4+~2.0.0+~1.0.0+~2.0.1-1_all.deb ... Unpacking node-flat-cache (3.0.4~6.0.1+~3.0.4+~2.0.0+~1.0.0+~2.0.1-1) ... Selecting previously unselected package node-file-entry-cache. Preparing to unpack .../075-node-file-entry-cache_6.0.1+~3.0.4+~2.0.0+~1.0.0+~2.0.1-1_all.deb ... Unpacking node-file-entry-cache (6.0.1+~3.0.4+~2.0.0+~1.0.0+~2.0.1-1) ... Selecting previously unselected package node-functional-red-black-tree. Preparing to unpack .../076-node-functional-red-black-tree_1.0.1+20181105-7_all.deb ... Unpacking node-functional-red-black-tree (1.0.1+20181105-7) ... Selecting previously unselected package node-is-extglob. Preparing to unpack .../077-node-is-extglob_2.1.1-5_all.deb ... Unpacking node-is-extglob (2.1.1-5) ... Selecting previously unselected package node-is-glob. Preparing to unpack .../078-node-is-glob_4.0.3-2_all.deb ... Unpacking node-is-glob (4.0.3-2) ... Selecting previously unselected package node-path-dirname. Preparing to unpack .../079-node-path-dirname_1.0.2-2_all.deb ... Unpacking node-path-dirname (1.0.2-2) ... Selecting previously unselected package node-glob-parent. Preparing to unpack .../080-node-glob-parent_6.0.2+~5.1.1-2_all.deb ... Unpacking node-glob-parent (6.0.2+~5.1.1-2) ... Selecting previously unselected package node-globals. Preparing to unpack .../081-node-globals_13.18.0-1_all.deb ... Unpacking node-globals (13.18.0-1) ... Selecting previously unselected package node-resolve-from. Preparing to unpack .../082-node-resolve-from_5.0.0+~3.1.0+~3.3.0+~2.0.0-1_all.deb ... Unpacking node-resolve-from (5.0.0+~3.1.0+~3.3.0+~2.0.0-1) ... Selecting previously unselected package node-imurmurhash. Preparing to unpack .../083-node-imurmurhash_0.1.4+dfsg+~0.1.1-2_all.deb ... Unpacking node-imurmurhash (0.1.4+dfsg+~0.1.1-2) ... Selecting previously unselected package node-ignore. Preparing to unpack .../084-node-ignore_5.2.1-1_all.deb ... Unpacking node-ignore (5.2.1-1) ... Selecting previously unselected package node-prelude-ls. Preparing to unpack .../085-node-prelude-ls_1.2.1+dfsg-3_all.deb ... Unpacking node-prelude-ls (1.2.1+dfsg-3) ... Selecting previously unselected package node-type-check. Preparing to unpack .../086-node-type-check_0.4.0+dfsg-3_all.deb ... Unpacking node-type-check (0.4.0+dfsg-3) ... Selecting previously unselected package node-levn. Preparing to unpack .../087-node-levn_0.4.1+dfsg-2_all.deb ... Unpacking node-levn (0.4.1+dfsg-2) ... Selecting previously unselected package node-lodash. Preparing to unpack .../088-node-lodash_4.17.21+dfsg+~cs8.31.198.20210220-9_all.deb ... Unpacking node-lodash (4.17.21+dfsg+~cs8.31.198.20210220-9) ... Selecting previously unselected package node-memfs. Preparing to unpack .../089-node-memfs_3.4.12+~cs1.0.3-1_all.deb ... Unpacking node-memfs (3.4.12+~cs1.0.3-1) ... Selecting previously unselected package node-mkdirp. Preparing to unpack .../090-node-mkdirp_1.0.4+~1.0.2-4_all.deb ... Unpacking node-mkdirp (1.0.4+~1.0.2-4) ... Selecting previously unselected package node-deep-is. Preparing to unpack .../091-node-deep-is_0.1.4-1_all.deb ... Unpacking node-deep-is (0.1.4-1) ... Selecting previously unselected package node-fast-levenshtein. Preparing to unpack .../092-node-fast-levenshtein_2.0.6+ds-3_all.deb ... Unpacking node-fast-levenshtein (2.0.6+ds-3) ... Selecting previously unselected package node-optionator. Preparing to unpack .../093-node-optionator_0.9.1+dfsg+~cs1.2.3-1_all.deb ... Unpacking node-optionator (0.9.1+dfsg+~cs1.2.3-1) ... Selecting previously unselected package node-progress. Preparing to unpack .../094-node-progress_2.0.3-2_all.deb ... Unpacking node-progress (2.0.3-2) ... Selecting previously unselected package libjs-regenerate. Preparing to unpack .../095-libjs-regenerate_1.4.2-3_all.deb ... Unpacking libjs-regenerate (1.4.2-3) ... Selecting previously unselected package node-regenerate. Preparing to unpack .../096-node-regenerate_1.4.2-3_all.deb ... Unpacking node-regenerate (1.4.2-3) ... Selecting previously unselected package node-regenerate-unicode-properties. Preparing to unpack .../097-node-regenerate-unicode-properties_10.1.0+ds-1_all.deb ... Unpacking node-regenerate-unicode-properties (10.1.0+ds-1) ... Selecting previously unselected package node-regexpp. Preparing to unpack .../098-node-regexpp_3.2.0-4_all.deb ... Unpacking node-regexpp (3.2.0-4) ... Selecting previously unselected package node-yallist. Preparing to unpack .../099-node-yallist_4.0.0+~4.0.1-1_all.deb ... Unpacking node-yallist (4.0.0+~4.0.1-1) ... Selecting previously unselected package node-lru-cache. Preparing to unpack .../100-node-lru-cache_7.14.1-1_all.deb ... Unpacking node-lru-cache (7.14.1-1) ... Selecting previously unselected package node-semver. Preparing to unpack .../101-node-semver_7.5.4+~7.5.0-2_all.deb ... Unpacking node-semver (7.5.4+~7.5.0-2) ... Selecting previously unselected package node-strip-json-comments. Preparing to unpack .../102-node-strip-json-comments_4.0.0-4_all.deb ... Unpacking node-strip-json-comments (4.0.0-4) ... Selecting previously unselected package node-json-schema. Preparing to unpack .../103-node-json-schema_0.4.0+~7.0.11-1_all.deb ... Unpacking node-json-schema (0.4.0+~7.0.11-1) ... Selecting previously unselected package node-v8-compile-cache. Preparing to unpack .../104-node-v8-compile-cache_2.3.0-3_all.deb ... Unpacking node-v8-compile-cache (2.3.0-3) ... Selecting previously unselected package eslint. Preparing to unpack .../105-eslint_6.4.0~dfsg+~6.1.9-7_all.deb ... Unpacking eslint (6.4.0~dfsg+~6.1.9-7) ... Selecting previously unselected package libpng16-16:amd64. Preparing to unpack .../106-libpng16-16_1.6.40-1_amd64.deb ... Unpacking libpng16-16:amd64 (1.6.40-1) ... Selecting previously unselected package libfreetype6:amd64. Preparing to unpack .../107-libfreetype6_2.13.2+dfsg-1_amd64.deb ... Unpacking libfreetype6:amd64 (2.13.2+dfsg-1) ... Selecting previously unselected package fonts-noto-mono. Preparing to unpack .../108-fonts-noto-mono_20201225-2_all.deb ... Unpacking fonts-noto-mono (20201225-2) ... Selecting previously unselected package fonts-noto-core. Preparing to unpack .../109-fonts-noto-core_20201225-2_all.deb ... Unpacking fonts-noto-core (20201225-2) ... Selecting previously unselected package fontconfig-config. Preparing to unpack .../110-fontconfig-config_2.14.2-5_amd64.deb ... Unpacking fontconfig-config (2.14.2-5) ... Selecting previously unselected package libfontconfig1:amd64. Preparing to unpack .../111-libfontconfig1_2.14.2-5_amd64.deb ... Unpacking libfontconfig1:amd64 (2.14.2-5) ... Selecting previously unselected package fontconfig. Preparing to unpack .../112-fontconfig_2.14.2-5_amd64.deb ... Unpacking fontconfig (2.14.2-5) ... Selecting previously unselected package python3-pkg-resources. Preparing to unpack .../113-python3-pkg-resources_68.1.2-1_all.deb ... Unpacking python3-pkg-resources (68.1.2-1) ... Selecting previously unselected package python3-six. Preparing to unpack .../114-python3-six_1.16.0-4_all.deb ... Unpacking python3-six (1.16.0-4) ... Selecting previously unselected package gyp. Preparing to unpack .../115-gyp_0.1+20220404git9ecf45e-2_all.deb ... Unpacking gyp (0.1+20220404git9ecf45e-2) ... Selecting previously unselected package node-neo-async. Preparing to unpack .../116-node-neo-async_2.6.2+~cs3.0.0-2_all.deb ... Unpacking node-neo-async (2.6.2+~cs3.0.0-2) ... Selecting previously unselected package node-arrify. Preparing to unpack .../117-node-arrify_2.0.1-3_all.deb ... Unpacking node-arrify (2.0.1-3) ... Selecting previously unselected package node-is-plain-obj. Preparing to unpack .../118-node-is-plain-obj_3.0.0-2_all.deb ... Unpacking node-is-plain-obj (3.0.0-2) ... Selecting previously unselected package node-is-buffer. Preparing to unpack .../119-node-is-buffer_2.0.5-2_all.deb ... Unpacking node-is-buffer (2.0.5-2) ... Selecting previously unselected package node-kind-of. Preparing to unpack .../120-node-kind-of_6.0.3+dfsg-2_all.deb ... Unpacking node-kind-of (6.0.3+dfsg-2) ... Selecting previously unselected package node-minimist. Preparing to unpack .../121-node-minimist_1.2.7+~cs5.3.2-2_all.deb ... Unpacking node-minimist (1.2.7+~cs5.3.2-2) ... Selecting previously unselected package node-wordwrap. Preparing to unpack .../122-node-wordwrap_1.0.0-4_all.deb ... Unpacking node-wordwrap (1.0.0-4) ... Selecting previously unselected package node-optimist. Preparing to unpack .../123-node-optimist_0.6.1+~0.0.30-2_all.deb ... Unpacking node-optimist (0.6.1+~0.0.30-2) ... Selecting previously unselected package libjs-source-map. Preparing to unpack .../124-libjs-source-map_0.7.0++dfsg2+really.0.6.1-15_all.deb ... Unpacking libjs-source-map (0.7.0++dfsg2+really.0.6.1-15) ... Selecting previously unselected package node-source-map. Preparing to unpack .../125-node-source-map_0.7.0++dfsg2+really.0.6.1-15_all.deb ... Unpacking node-source-map (0.7.0++dfsg2+really.0.6.1-15) ... Selecting previously unselected package handlebars. Preparing to unpack .../126-handlebars_3%3a4.7.7+~4.1.0-1_all.deb ... Unpacking handlebars (3:4.7.7+~4.1.0-1) ... Selecting previously unselected package libdouble-conversion3:amd64. Preparing to unpack .../127-libdouble-conversion3_3.3.0-1_amd64.deb ... Unpacking libdouble-conversion3:amd64 (3.3.0-1) ... Selecting previously unselected package libdrm-common. Preparing to unpack .../128-libdrm-common_2.4.115-1_all.deb ... Unpacking libdrm-common (2.4.115-1) ... Selecting previously unselected package libdrm2:amd64. Preparing to unpack .../129-libdrm2_2.4.115-1_amd64.deb ... Unpacking libdrm2:amd64 (2.4.115-1) ... Selecting previously unselected package libdrm-amdgpu1:amd64. Preparing to unpack .../130-libdrm-amdgpu1_2.4.115-1_amd64.deb ... Unpacking libdrm-amdgpu1:amd64 (2.4.115-1) ... Selecting previously unselected package libpciaccess0:amd64. Preparing to unpack .../131-libpciaccess0_0.17-2_amd64.deb ... Unpacking libpciaccess0:amd64 (0.17-2) ... Selecting previously unselected package libdrm-intel1:amd64. Preparing to unpack .../132-libdrm-intel1_2.4.115-1_amd64.deb ... Unpacking libdrm-intel1:amd64 (2.4.115-1) ... Selecting previously unselected package libdrm-nouveau2:amd64. Preparing to unpack .../133-libdrm-nouveau2_2.4.115-1_amd64.deb ... Unpacking libdrm-nouveau2:amd64 (2.4.115-1) ... Selecting previously unselected package libdrm-radeon1:amd64. Preparing to unpack .../134-libdrm-radeon1_2.4.115-1_amd64.deb ... Unpacking libdrm-radeon1:amd64 (2.4.115-1) ... Selecting previously unselected package libwayland-server0:amd64. Preparing to unpack .../135-libwayland-server0_1.22.0-2.1_amd64.deb ... Unpacking libwayland-server0:amd64 (1.22.0-2.1) ... Selecting previously unselected package libxau6:amd64. Preparing to unpack .../136-libxau6_1%3a1.0.9-1_amd64.deb ... Unpacking libxau6:amd64 (1:1.0.9-1) ... Selecting previously unselected package libxdmcp6:amd64. Preparing to unpack .../137-libxdmcp6_1%3a1.1.2-3_amd64.deb ... Unpacking libxdmcp6:amd64 (1:1.1.2-3) ... Selecting previously unselected package libxcb1:amd64. Preparing to unpack .../138-libxcb1_1.15-1_amd64.deb ... Unpacking libxcb1:amd64 (1.15-1) ... Selecting previously unselected package libxcb-randr0:amd64. Preparing to unpack .../139-libxcb-randr0_1.15-1_amd64.deb ... Unpacking libxcb-randr0:amd64 (1.15-1) ... Selecting previously unselected package libgbm1:amd64. Preparing to unpack .../140-libgbm1_23.1.7-1_amd64.deb ... Unpacking libgbm1:amd64 (23.1.7-1) ... Selecting previously unselected package libglapi-mesa:amd64. Preparing to unpack .../141-libglapi-mesa_23.1.7-1_amd64.deb ... Unpacking libglapi-mesa:amd64 (23.1.7-1) ... Selecting previously unselected package libwayland-client0:amd64. Preparing to unpack .../142-libwayland-client0_1.22.0-2.1_amd64.deb ... Unpacking libwayland-client0:amd64 (1.22.0-2.1) ... Selecting previously unselected package libx11-data. Preparing to unpack .../143-libx11-data_2%3a1.8.6-1_all.deb ... Unpacking libx11-data (2:1.8.6-1) ... Selecting previously unselected package libx11-6:amd64. Preparing to unpack .../144-libx11-6_2%3a1.8.6-1_amd64.deb ... Unpacking libx11-6:amd64 (2:1.8.6-1) ... Selecting previously unselected package libx11-xcb1:amd64. Preparing to unpack .../145-libx11-xcb1_2%3a1.8.6-1_amd64.deb ... Unpacking libx11-xcb1:amd64 (2:1.8.6-1) ... Selecting previously unselected package libxcb-dri2-0:amd64. Preparing to unpack .../146-libxcb-dri2-0_1.15-1_amd64.deb ... Unpacking libxcb-dri2-0:amd64 (1.15-1) ... Selecting previously unselected package libxcb-dri3-0:amd64. Preparing to unpack .../147-libxcb-dri3-0_1.15-1_amd64.deb ... Unpacking libxcb-dri3-0:amd64 (1.15-1) ... Selecting previously unselected package libxcb-present0:amd64. Preparing to unpack .../148-libxcb-present0_1.15-1_amd64.deb ... Unpacking libxcb-present0:amd64 (1.15-1) ... Selecting previously unselected package libxcb-sync1:amd64. Preparing to unpack .../149-libxcb-sync1_1.15-1_amd64.deb ... Unpacking libxcb-sync1:amd64 (1.15-1) ... Selecting previously unselected package libxcb-xfixes0:amd64. Preparing to unpack .../150-libxcb-xfixes0_1.15-1_amd64.deb ... Unpacking libxcb-xfixes0:amd64 (1.15-1) ... Selecting previously unselected package libxshmfence1:amd64. Preparing to unpack .../151-libxshmfence1_1.3-1_amd64.deb ... Unpacking libxshmfence1:amd64 (1.3-1) ... Selecting previously unselected package libegl-mesa0:amd64. Preparing to unpack .../152-libegl-mesa0_23.1.7-1_amd64.deb ... Unpacking libegl-mesa0:amd64 (23.1.7-1) ... Selecting previously unselected package libevdev2:amd64. Preparing to unpack .../153-libevdev2_1.13.1+dfsg-1_amd64.deb ... Unpacking libevdev2:amd64 (1.13.1+dfsg-1) ... Selecting previously unselected package libglvnd0:amd64. Preparing to unpack .../154-libglvnd0_1.6.0-1_amd64.deb ... Unpacking libglvnd0:amd64 (1.6.0-1) ... Selecting previously unselected package libxcb-glx0:amd64. Preparing to unpack .../155-libxcb-glx0_1.15-1_amd64.deb ... Unpacking libxcb-glx0:amd64 (1.15-1) ... Selecting previously unselected package libxcb-shm0:amd64. Preparing to unpack .../156-libxcb-shm0_1.15-1_amd64.deb ... Unpacking libxcb-shm0:amd64 (1.15-1) ... Selecting previously unselected package libxext6:amd64. Preparing to unpack .../157-libxext6_2%3a1.3.4-1+b1_amd64.deb ... Unpacking libxext6:amd64 (2:1.3.4-1+b1) ... Selecting previously unselected package libxfixes3:amd64. Preparing to unpack .../158-libxfixes3_1%3a6.0.0-2_amd64.deb ... Unpacking libxfixes3:amd64 (1:6.0.0-2) ... Selecting previously unselected package libxxf86vm1:amd64. Preparing to unpack .../159-libxxf86vm1_1%3a1.1.4-1+b2_amd64.deb ... Unpacking libxxf86vm1:amd64 (1:1.1.4-1+b2) ... Selecting previously unselected package libsensors-config. Preparing to unpack .../160-libsensors-config_1%3a3.6.0-8_all.deb ... Unpacking libsensors-config (1:3.6.0-8) ... Selecting previously unselected package libsensors5:amd64. Preparing to unpack .../161-libsensors5_1%3a3.6.0-8_amd64.deb ... Unpacking libsensors5:amd64 (1:3.6.0-8) ... Selecting previously unselected package libgl1-mesa-dri:amd64. Preparing to unpack .../162-libgl1-mesa-dri_23.1.7-1_amd64.deb ... Unpacking libgl1-mesa-dri:amd64 (23.1.7-1) ... Selecting previously unselected package libglx-mesa0:amd64. Preparing to unpack .../163-libglx-mesa0_23.1.7-1_amd64.deb ... Unpacking libglx-mesa0:amd64 (23.1.7-1) ... Selecting previously unselected package libglx0:amd64. Preparing to unpack .../164-libglx0_1.6.0-1_amd64.deb ... Unpacking libglx0:amd64 (1.6.0-1) ... Selecting previously unselected package libgl1:amd64. Preparing to unpack .../165-libgl1_1.6.0-1_amd64.deb ... Unpacking libgl1:amd64 (1.6.0-1) ... Selecting previously unselected package libglib2.0-0:amd64. Preparing to unpack .../166-libglib2.0-0_2.78.0-1_amd64.deb ... Unpacking libglib2.0-0:amd64 (2.78.0-1) ... Selecting previously unselected package libgraphite2-3:amd64. Preparing to unpack .../167-libgraphite2-3_1.3.14-1_amd64.deb ... Unpacking libgraphite2-3:amd64 (1.3.14-1) ... Selecting previously unselected package libgudev-1.0-0:amd64. Preparing to unpack .../168-libgudev-1.0-0_238-2_amd64.deb ... Unpacking libgudev-1.0-0:amd64 (238-2) ... Selecting previously unselected package libharfbuzz0b:amd64. Preparing to unpack .../169-libharfbuzz0b_8.0.1-1_amd64.deb ... Unpacking libharfbuzz0b:amd64 (8.0.1-1) ... Selecting previously unselected package x11-common. Preparing to unpack .../170-x11-common_1%3a7.7+23_all.deb ... Unpacking x11-common (1:7.7+23) ... Selecting previously unselected package libice6:amd64. Preparing to unpack .../171-libice6_2%3a1.0.10-1_amd64.deb ... Unpacking libice6:amd64 (2:1.0.10-1) ... Selecting previously unselected package libwacom-common. Preparing to unpack .../172-libwacom-common_2.7.0-1_all.deb ... Unpacking libwacom-common (2.7.0-1) ... Selecting previously unselected package libwacom9:amd64. Preparing to unpack .../173-libwacom9_2.7.0-1_amd64.deb ... Unpacking libwacom9:amd64 (2.7.0-1) ... Selecting previously unselected package libinput-bin. Preparing to unpack .../174-libinput-bin_1.23.0-2_amd64.deb ... Unpacking libinput-bin (1.23.0-2) ... Selecting previously unselected package libmtdev1:amd64. Preparing to unpack .../175-libmtdev1_1.1.6-1_amd64.deb ... Unpacking libmtdev1:amd64 (1.1.6-1) ... Selecting previously unselected package libinput10:amd64. Preparing to unpack .../176-libinput10_1.23.0-2_amd64.deb ... Unpacking libinput10:amd64 (1.23.0-2) ... Selecting previously unselected package libjpeg62-turbo:amd64. Preparing to unpack .../177-libjpeg62-turbo_1%3a2.1.5-2_amd64.deb ... Unpacking libjpeg62-turbo:amd64 (1:2.1.5-2) ... Selecting previously unselected package libjs-async. Preparing to unpack .../178-libjs-async_0.8.0-6_all.deb ... Unpacking libjs-async (0.8.0-6) ... Selecting previously unselected package libjs-events. Preparing to unpack .../179-libjs-events_3.3.0+~3.0.0-3_all.deb ... Unpacking libjs-events (3.3.0+~3.0.0-3) ... Selecting previously unselected package libjs-is-typedarray. Preparing to unpack .../180-libjs-is-typedarray_1.0.0-4_all.deb ... Unpacking libjs-is-typedarray (1.0.0-4) ... Selecting previously unselected package libjs-prettify. Preparing to unpack .../181-libjs-prettify_2015.12.04+dfsg-1.1_all.deb ... Unpacking libjs-prettify (2015.12.04+dfsg-1.1) ... Selecting previously unselected package libjs-sprintf-js. Preparing to unpack .../182-libjs-sprintf-js_1.1.2+ds1+~1.1.2-1_all.deb ... Unpacking libjs-sprintf-js (1.1.2+ds1+~1.1.2-1) ... Selecting previously unselected package libjs-typedarray-to-buffer. Preparing to unpack .../183-libjs-typedarray-to-buffer_4.0.0-2_all.deb ... Unpacking libjs-typedarray-to-buffer (4.0.0-2) ... Selecting previously unselected package node-lodash-packages. Preparing to unpack .../184-node-lodash-packages_4.17.21+dfsg+~cs8.31.198.20210220-9_all.deb ... Unpacking node-lodash-packages (4.17.21+dfsg+~cs8.31.198.20210220-9) ... Selecting previously unselected package node-function-bind. Preparing to unpack .../185-node-function-bind_1.1.1+repacked+~1.0.3-2_all.deb ... Unpacking node-function-bind (1.1.1+repacked+~1.0.3-2) ... Selecting previously unselected package node-object-inspect. Preparing to unpack .../186-node-object-inspect_1.12.2+~cs1.8.1-1_all.deb ... Unpacking node-object-inspect (1.12.2+~cs1.8.1-1) ... Selecting previously unselected package node-es-abstract. Preparing to unpack .../187-node-es-abstract_1.20.4+~cs26.27.47-1_all.deb ... Unpacking node-es-abstract (1.20.4+~cs26.27.47-1) ... Selecting previously unselected package node-resolve. Preparing to unpack .../188-node-resolve_1.22.1+~cs5.31.10-1_all.deb ... Unpacking node-resolve (1.22.1+~cs5.31.10-1) ... Selecting previously unselected package node-define-properties. Preparing to unpack .../189-node-define-properties_1.1.4+~1.1.3-1_all.deb ... Unpacking node-define-properties (1.1.4+~1.1.3-1) ... Selecting previously unselected package node-debbundle-es-to-primitive. Preparing to unpack .../190-node-debbundle-es-to-primitive_1.2.1+~cs9.7.25-2_all.deb ... Unpacking node-debbundle-es-to-primitive (1.2.1+~cs9.7.25-2) ... Selecting previously unselected package node-defined. Preparing to unpack .../191-node-defined_1.0.1+~1.0.0-1_all.deb ... Unpacking node-defined (1.0.1+~1.0.0-1) ... Selecting previously unselected package node-abbrev. Preparing to unpack .../192-node-abbrev_1.1.1+~1.1.2-1_all.deb ... Unpacking node-abbrev (1.1.1+~1.1.2-1) ... Selecting previously unselected package node-archy. Preparing to unpack .../193-node-archy_1.0.0-6_all.deb ... Unpacking node-archy (1.0.0-6) ... Selecting previously unselected package node-async. Preparing to unpack .../194-node-async_0.8.0-6_all.deb ... Unpacking node-async (0.8.0-6) ... Selecting previously unselected package node-convert-source-map. Preparing to unpack .../195-node-convert-source-map_1.9.0+~1.5.2-1_all.deb ... Unpacking node-convert-source-map (1.9.0+~1.5.2-1) ... Selecting previously unselected package node-decamelize. Preparing to unpack .../196-node-decamelize_4.0.0-2_all.deb ... Unpacking node-decamelize (4.0.0-2) ... Selecting previously unselected package node-es6-error. Preparing to unpack .../197-node-es6-error_4.1.1-5_all.deb ... Unpacking node-es6-error (4.1.1-5) ... Selecting previously unselected package node-esprima. Preparing to unpack .../198-node-esprima_4.0.1+ds+~4.0.3-2_all.deb ... Unpacking node-esprima (4.0.1+ds+~4.0.3-2) ... Selecting previously unselected package node-escodegen. Preparing to unpack .../199-node-escodegen_2.0.0+dfsg+~0.0.7-2_all.deb ... Unpacking node-escodegen (2.0.0+dfsg+~0.0.7-2) ... Selecting previously unselected package node-commondir. Preparing to unpack .../200-node-commondir_1.0.1+~1.0.0-1_all.deb ... Unpacking node-commondir (1.0.1+~1.0.0-1) ... Selecting previously unselected package node-is-number. Preparing to unpack .../201-node-is-number_7.0.0-4_all.deb ... Unpacking node-is-number (7.0.0-4) ... Selecting previously unselected package node-repeat-string. Preparing to unpack .../202-node-repeat-string_1.6.1+repack-1_all.deb ... Unpacking node-repeat-string (1.6.1+repack-1) ... Selecting previously unselected package node-to-regex-range. Preparing to unpack .../203-node-to-regex-range_5.0.1-4_all.deb ... Unpacking node-to-regex-range (5.0.1-4) ... Selecting previously unselected package node-fill-range. Preparing to unpack .../204-node-fill-range_7.0.1+~7.0.0-1_all.deb ... Unpacking node-fill-range (7.0.1+~7.0.0-1) ... Selecting previously unselected package node-braces. Preparing to unpack .../205-node-braces_3.0.2+~3.0.1-1_all.deb ... Unpacking node-braces (3.0.2+~3.0.1-1) ... Selecting previously unselected package node-normalize-path. Preparing to unpack .../206-node-normalize-path_3.0.0+~3.0.0-1_all.deb ... Unpacking node-normalize-path (3.0.0+~3.0.0-1) ... Selecting previously unselected package node-anymatch. Preparing to unpack .../207-node-anymatch_3.1.3+~cs4.6.1-2_all.deb ... Unpacking node-anymatch (3.1.3+~cs4.6.1-2) ... Selecting previously unselected package node-micromatch. Preparing to unpack .../208-node-micromatch_4.0.5+~4.0.2-1_all.deb ... Unpacking node-micromatch (4.0.5+~4.0.2-1) ... Selecting previously unselected package node-pify. Preparing to unpack .../209-node-pify_5.0.0+~cs5.0.1-1_all.deb ... Unpacking node-pify (5.0.0+~cs5.0.1-1) ... Selecting previously unselected package node-path-type. Preparing to unpack .../210-node-path-type_4.0.0-3_all.deb ... Unpacking node-path-type (4.0.0-3) ... Selecting previously unselected package node-n3. Preparing to unpack .../211-node-n3_1.16.3+~1.2.3+~1.10.4-1_all.deb ... Unpacking node-n3 (1.16.3+~1.2.3+~1.10.4-1) ... Selecting previously unselected package node-slash. Preparing to unpack .../212-node-slash_4.0.0-3_all.deb ... Unpacking node-slash (4.0.0-3) ... Selecting previously unselected package node-globby. Preparing to unpack .../213-node-globby_13.1.3+~cs16.25.40-1_all.deb ... Unpacking node-globby (13.1.3+~cs16.25.40-1) ... Selecting previously unselected package node-graceful-fs. Preparing to unpack .../214-node-graceful-fs_4.2.10-1_all.deb ... Unpacking node-graceful-fs (4.2.10-1) ... Selecting previously unselected package node-is-path-cwd. Preparing to unpack .../215-node-is-path-cwd_2.2.0-2_all.deb ... Unpacking node-is-path-cwd (2.2.0-2) ... Selecting previously unselected package node-path-is-inside. Preparing to unpack .../216-node-path-is-inside_1.0.2+~1.0.0-1_all.deb ... Unpacking node-path-is-inside (1.0.2+~1.0.0-1) ... Selecting previously unselected package node-is-path-inside. Preparing to unpack .../217-node-is-path-inside_3.0.3-2_all.deb ... Unpacking node-is-path-inside (3.0.3-2) ... Selecting previously unselected package node-escape-string-regexp. Preparing to unpack .../218-node-escape-string-regexp_4.0.0-2_all.deb ... Unpacking node-escape-string-regexp (4.0.0-2) ... Selecting previously unselected package node-indent-string. Preparing to unpack .../219-node-indent-string_4.0.0-2_all.deb ... Unpacking node-indent-string (4.0.0-2) ... Selecting previously unselected package node-p-map. Preparing to unpack .../220-node-p-map_4.0.0+~3.1.0+~3.0.1-1_all.deb ... Unpacking node-p-map (4.0.0+~3.1.0+~3.0.1-1) ... Selecting previously unselected package node-del. Preparing to unpack .../221-node-del_7.0.0-5_all.deb ... Unpacking node-del (7.0.0-5) ... Selecting previously unselected package node-make-dir. Preparing to unpack .../222-node-make-dir_3.1.0-3_all.deb ... Unpacking node-make-dir (3.1.0-3) ... Selecting previously unselected package node-p-limit. Preparing to unpack .../223-node-p-limit_4.0.0+~cs4.0.0-5_all.deb ... Unpacking node-p-limit (4.0.0+~cs4.0.0-5) ... Selecting previously unselected package node-p-locate. Preparing to unpack .../224-node-p-locate_6.0.0-12_all.deb ... Unpacking node-p-locate (6.0.0-12) ... Selecting previously unselected package node-locate-path. Preparing to unpack .../225-node-locate-path_7.1.1-2_all.deb ... Unpacking node-locate-path (7.1.1-2) ... Selecting previously unselected package node-path-exists. Preparing to unpack .../226-node-path-exists_5.0.0-8_all.deb ... Unpacking node-path-exists (5.0.0-8) ... Selecting previously unselected package node-find-up. Preparing to unpack .../227-node-find-up_6.3.0-7_all.deb ... Unpacking node-find-up (6.3.0-7) ... Selecting previously unselected package node-pkg-dir. Preparing to unpack .../228-node-pkg-dir_5.0.0-2_all.deb ... Unpacking node-pkg-dir (5.0.0-2) ... Selecting previously unselected package node-find-cache-dir. Preparing to unpack .../229-node-find-cache-dir_3.3.2+~3.2.1-1_all.deb ... Unpacking node-find-cache-dir (3.3.2+~3.2.1-1) ... Selecting previously unselected package node-signal-exit. Preparing to unpack .../230-node-signal-exit_4.1.0-5_all.deb ... Unpacking node-signal-exit (4.1.0-5) ... Selecting previously unselected package node-foreground-child. Preparing to unpack .../231-node-foreground-child_3.1.1-2_all.deb ... Unpacking node-foreground-child (3.1.1-2) ... Selecting previously unselected package node-is-stream. Preparing to unpack .../232-node-is-stream_3.0.0-4_all.deb ... Unpacking node-is-stream (3.0.0-4) ... Selecting previously unselected package node-is-windows. Preparing to unpack .../233-node-is-windows_1.0.2+~cs1.0.0-1_all.deb ... Unpacking node-is-windows (1.0.2+~cs1.0.0-1) ... Selecting previously unselected package node-ampproject-remapping. Preparing to unpack .../234-node-ampproject-remapping_2.2.0+~cs5.15.37-1_all.deb ... Unpacking node-ampproject-remapping (2.2.0+~cs5.15.37-1) ... Selecting previously unselected package node-sprintf-js. Preparing to unpack .../235-node-sprintf-js_1.1.2+ds1+~1.1.2-1_all.deb ... Unpacking node-sprintf-js (1.1.2+ds1+~1.1.2-1) ... Selecting previously unselected package node-argparse. Preparing to unpack .../236-node-argparse_2.0.1-2_all.deb ... Unpacking node-argparse (2.0.1-2) ... Selecting previously unselected package node-js-yaml. Preparing to unpack .../237-node-js-yaml_4.1.0+dfsg+~4.0.5-7_all.deb ... Unpacking node-js-yaml (4.1.0+dfsg+~4.0.5-7) ... Selecting previously unselected package node-nopt. Preparing to unpack .../238-node-nopt_5.0.0-4_all.deb ... Unpacking node-nopt (5.0.0-4) ... Selecting previously unselected package node-npm-run-path. Preparing to unpack .../239-node-npm-run-path_5.1.0+~4.0.0-8_all.deb ... Unpacking node-npm-run-path (5.1.0+~4.0.0-8) ... Selecting previously unselected package node-shebang-regex. Preparing to unpack .../240-node-shebang-regex_3.0.0-2_all.deb ... Unpacking node-shebang-regex (3.0.0-2) ... Selecting previously unselected package node-shebang-command. Preparing to unpack .../241-node-shebang-command_2.0.0-1_all.deb ... Unpacking node-shebang-command (2.0.0-1) ... Selecting previously unselected package node-strip-bom. Preparing to unpack .../242-node-strip-bom_4.0.0-2_all.deb ... Unpacking node-strip-bom (4.0.0-2) ... Selecting previously unselected package node-has-flag. Preparing to unpack .../243-node-has-flag_4.0.0-3_all.deb ... Unpacking node-has-flag (4.0.0-3) ... Selecting previously unselected package node-supports-color. Preparing to unpack .../244-node-supports-color_8.1.1+~8.1.1-1_all.deb ... Unpacking node-supports-color (8.1.1+~8.1.1-1) ... Selecting previously unselected package node-util. Preparing to unpack .../245-node-util_0.12.5+~1.0.10-1_all.deb ... Unpacking node-util (0.12.5+~1.0.10-1) ... Selecting previously unselected package node-assert. Preparing to unpack .../246-node-assert_2.0.0+~cs3.9.8-2_all.deb ... Unpacking node-assert (2.0.0+~cs3.9.8-2) ... Selecting previously unselected package node-babel-plugin-add-module-exports. Preparing to unpack .../247-node-babel-plugin-add-module-exports_1.0.4+dfsg1~cs5.8.0-4_all.deb ... Unpacking node-babel-plugin-add-module-exports (1.0.4+dfsg1~cs5.8.0-4) ... Selecting previously unselected package node-regenerator-runtime. Preparing to unpack .../248-node-regenerator-runtime_0.15.1+~0.10.8-1_all.deb ... Unpacking node-regenerator-runtime (0.15.1+~0.10.8-1) ... Selecting previously unselected package node-babel7-runtime. Preparing to unpack .../249-node-babel7-runtime_7.20.15+ds1+~cs214.269.168-4_all.deb ... Unpacking node-babel7-runtime (7.20.15+ds1+~cs214.269.168-4) ... Selecting previously unselected package node-babel-helper-define-polyfill-provider. Preparing to unpack .../250-node-babel-helper-define-polyfill-provider_0.3.3~0~20220913+ds1-1_all.deb ... Unpacking node-babel-helper-define-polyfill-provider (0.3.3~0~20220913+ds1-1) ... Selecting previously unselected package node-babel-plugin-polyfill-corejs2. Preparing to unpack .../251-node-babel-plugin-polyfill-corejs2_0.3.3~0~20220913+ds1-1_all.deb ... Unpacking node-babel-plugin-polyfill-corejs2 (0.3.3~0~20220913+ds1-1) ... Selecting previously unselected package node-caniuse-lite. Preparing to unpack .../252-node-caniuse-lite_1.0.30001436+dfsg+~1.0.1-1_all.deb ... Unpacking node-caniuse-lite (1.0.30001436+dfsg+~1.0.1-1) ... Selecting previously unselected package node-electron-to-chromium. Preparing to unpack .../253-node-electron-to-chromium_1.4.284-1_all.deb ... Unpacking node-electron-to-chromium (1.4.284-1) ... Selecting previously unselected package node-picocolors. Preparing to unpack .../254-node-picocolors_1.0.0-4_all.deb ... Unpacking node-picocolors (1.0.0-4) ... Selecting previously unselected package node-browserslist. Preparing to unpack .../255-node-browserslist_4.21.4+~cs6.1.17-2_all.deb ... Unpacking node-browserslist (4.21.4+~cs6.1.17-2) ... Selecting previously unselected package node-core-js-compat. Preparing to unpack .../256-node-core-js-compat_3.26.1-3_all.deb ... Unpacking node-core-js-compat (3.26.1-3) ... Selecting previously unselected package node-babel-plugin-polyfill-corejs3. Preparing to unpack .../257-node-babel-plugin-polyfill-corejs3_0.6.0~0~20220913+ds1-1_all.deb ... Unpacking node-babel-plugin-polyfill-corejs3 (0.6.0~0~20220913+ds1-1) ... Selecting previously unselected package node-babel-plugin-polyfill-regenerator. Preparing to unpack .../258-node-babel-plugin-polyfill-regenerator_0.4.1~0~20220913+ds1-1_all.deb ... Unpacking node-babel-plugin-polyfill-regenerator (0.4.1~0~20220913+ds1-1) ... Selecting previously unselected package node-color-name. Preparing to unpack .../259-node-color-name_1.1.4+~1.1.1-2_all.deb ... Unpacking node-color-name (1.1.4+~1.1.1-2) ... Selecting previously unselected package node-color-convert. Preparing to unpack .../260-node-color-convert_2.0.1+~cs2.0.0-2_all.deb ... Unpacking node-color-convert (2.0.1+~cs2.0.0-2) ... Selecting previously unselected package node-ansi-styles. Preparing to unpack .../261-node-ansi-styles_6.2.1-2_all.deb ... Unpacking node-ansi-styles (6.2.1-2) ... Selecting previously unselected package node-chalk. Preparing to unpack .../262-node-chalk_5.2.0-1_all.deb ... Unpacking node-chalk (5.2.0-1) ... Selecting previously unselected package node-for-in. Preparing to unpack .../263-node-for-in_1.0.2-4_all.deb ... Unpacking node-for-in (1.0.2-4) ... Selecting previously unselected package node-for-own. Preparing to unpack .../264-node-for-own_1.0.0-3_all.deb ... Unpacking node-for-own (1.0.0-3) ... Selecting previously unselected package node-is-plain-object. Preparing to unpack .../265-node-is-plain-object_5.0.0-7_all.deb ... Unpacking node-is-plain-object (5.0.0-7) ... Selecting previously unselected package node-is-extendable. Preparing to unpack .../266-node-is-extendable_1.0.1-3_all.deb ... Unpacking node-is-extendable (1.0.1-3) ... Selecting previously unselected package node-clone-deep. Preparing to unpack .../267-node-clone-deep_4.0.1+~cs7.0.2-1_all.deb ... Unpacking node-clone-deep (4.0.1+~cs7.0.2-1) ... Selecting previously unselected package node-commander. Preparing to unpack .../268-node-commander_9.4.1-1_all.deb ... Unpacking node-commander (9.4.1-1) ... Selecting previously unselected package node-core-js. Preparing to unpack .../269-node-core-js_3.26.1-3_all.deb ... Unpacking node-core-js (3.26.1-3) ... Selecting previously unselected package node-core-js-pure. Preparing to unpack .../270-node-core-js-pure_3.26.1-3_all.deb ... Unpacking node-core-js-pure (3.26.1-3) ... Selecting previously unselected package node-fs-readdir-recursive. Preparing to unpack .../271-node-fs-readdir-recursive_1.1.0+~1.1.0-1_all.deb ... Unpacking node-fs-readdir-recursive (1.1.0+~1.1.0-1) ... Selecting previously unselected package node-js-tokens. Preparing to unpack .../272-node-js-tokens_8.0.0-2_all.deb ... Unpacking node-js-tokens (8.0.0-2) ... Selecting previously unselected package node-jsesc. Preparing to unpack .../273-node-jsesc_3.0.2+~3.0.1-1_all.deb ... Unpacking node-jsesc (3.0.2+~3.0.1-1) ... Selecting previously unselected package node-json5. Preparing to unpack .../274-node-json5_2.2.3+dfsg-1_all.deb ... Unpacking node-json5 (2.2.3+dfsg-1) ... Selecting previously unselected package node-quick-lru. Preparing to unpack .../275-node-quick-lru_6.1.1-4_all.deb ... Unpacking node-quick-lru (6.1.1-4) ... Selecting previously unselected package node-regenerator-transform. Preparing to unpack .../276-node-regenerator-transform_0.15.1+~0.10.8-1_all.deb ... Unpacking node-regenerator-transform (0.15.1+~0.10.8-1) ... Selecting previously unselected package node-regjsgen. Preparing to unpack .../277-node-regjsgen_0.7.1+ds-1_all.deb ... Unpacking node-regjsgen (0.7.1+ds-1) ... Selecting previously unselected package node-regjsparser. Preparing to unpack .../278-node-regjsparser_0.9.1+ds-2_all.deb ... Unpacking node-regjsparser (0.9.1+ds-2) ... Selecting previously unselected package node-unicode-canonical-property-names-ecmascript. Preparing to unpack .../279-node-unicode-canonical-property-names-ecmascript_2.0.0-2_all.deb ... Unpacking node-unicode-canonical-property-names-ecmascript (2.0.0-2) ... Selecting previously unselected package node-unicode-property-aliases-ecmascript. Preparing to unpack .../280-node-unicode-property-aliases-ecmascript_2.1.0+ds-1_all.deb ... Unpacking node-unicode-property-aliases-ecmascript (2.1.0+ds-1) ... Selecting previously unselected package node-unicode-match-property-ecmascript. Preparing to unpack .../281-node-unicode-match-property-ecmascript_2.0.0-2_all.deb ... Unpacking node-unicode-match-property-ecmascript (2.0.0-2) ... Selecting previously unselected package node-unicode-match-property-value-ecmascript. Preparing to unpack .../282-node-unicode-match-property-value-ecmascript_2.1.0+ds-1_all.deb ... Unpacking node-unicode-match-property-value-ecmascript (2.1.0+ds-1) ... Selecting previously unselected package node-regexpu-core. Preparing to unpack .../283-node-regexpu-core_5.2.2-3_all.deb ... Unpacking node-regexpu-core (5.2.2-3) ... Selecting previously unselected package node-source-map-support. Preparing to unpack .../284-node-source-map-support_0.5.21+ds+~0.5.4-1_all.deb ... Unpacking node-source-map-support (0.5.21+ds+~0.5.4-1) ... Selecting previously unselected package node-to-fast-properties. Preparing to unpack .../285-node-to-fast-properties_3.0.1-3_all.deb ... Unpacking node-to-fast-properties (3.0.1-3) ... Selecting previously unselected package node-v8flags. Preparing to unpack .../286-node-v8flags_3.2.0+~3.1.1-1_all.deb ... Unpacking node-v8flags (3.2.0+~3.1.1-1) ... Selecting previously unselected package node-babel7. Preparing to unpack .../287-node-babel7_7.20.15+ds1+~cs214.269.168-4_all.deb ... Unpacking node-babel7 (7.20.15+ds1+~cs214.269.168-4) ... Selecting previously unselected package node-is-arrayish. Preparing to unpack .../288-node-is-arrayish_0.3.2-3_all.deb ... Unpacking node-is-arrayish (0.3.2-3) ... Selecting previously unselected package node-error-ex. Preparing to unpack .../289-node-error-ex_1.3.2-4_all.deb ... Unpacking node-error-ex (1.3.2-4) ... Selecting previously unselected package node-json-parse-better-errors. Preparing to unpack .../290-node-json-parse-better-errors_1.0.2+~cs3.3.1-2_all.deb ... Unpacking node-json-parse-better-errors (1.0.2+~cs3.3.1-2) ... Selecting previously unselected package node-parse-json. Preparing to unpack .../291-node-parse-json_5.2.0+~cs5.1.7-1_all.deb ... Unpacking node-parse-json (5.2.0+~cs5.1.7-1) ... Selecting previously unselected package node-hosted-git-info. Preparing to unpack .../292-node-hosted-git-info_6.1.1-2_all.deb ... Unpacking node-hosted-git-info (6.1.1-2) ... Selecting previously unselected package node-spdx-license-ids. Preparing to unpack .../293-node-spdx-license-ids_3.0.12-1_all.deb ... Unpacking node-spdx-license-ids (3.0.12-1) ... Selecting previously unselected package node-spdx-exceptions. Preparing to unpack .../294-node-spdx-exceptions_2.3.0-2_all.deb ... Unpacking node-spdx-exceptions (2.3.0-2) ... Selecting previously unselected package node-spdx-expression-parse. Preparing to unpack .../295-node-spdx-expression-parse_3.0.1+~3.0.1-1_all.deb ... Unpacking node-spdx-expression-parse (3.0.1+~3.0.1-1) ... Selecting previously unselected package node-spdx-correct. Preparing to unpack .../296-node-spdx-correct_3.1.1-2_all.deb ... Unpacking node-spdx-correct (3.1.1-2) ... Selecting previously unselected package node-validate-npm-package-license. Preparing to unpack .../297-node-validate-npm-package-license_3.0.4-2_all.deb ... Unpacking node-validate-npm-package-license (3.0.4-2) ... Selecting previously unselected package node-normalize-package-data. Preparing to unpack .../298-node-normalize-package-data_4.0.1+~2.4.1-1_all.deb ... Unpacking node-normalize-package-data (4.0.1+~2.4.1-1) ... Selecting previously unselected package node-read-pkg. Preparing to unpack .../299-node-read-pkg_5.2.0-2_all.deb ... Unpacking node-read-pkg (5.2.0-2) ... Selecting previously unselected package node-uuid. Preparing to unpack .../300-node-uuid_8.3.2+~8.3.3-4_all.deb ... Unpacking node-uuid (8.3.2+~8.3.3-4) ... Selecting previously unselected package node-isexe. Preparing to unpack .../301-node-isexe_2.0.0+~2.0.1-5_all.deb ... Unpacking node-isexe (2.0.0+~2.0.1-5) ... Selecting previously unselected package node-which. Preparing to unpack .../302-node-which_2.0.2+~cs1.3.2-3_all.deb ... Unpacking node-which (2.0.2+~cs1.3.2-3) ... Selecting previously unselected package node-is-typedarray. Preparing to unpack .../303-node-is-typedarray_1.0.0-4_all.deb ... Unpacking node-is-typedarray (1.0.0-4) ... Selecting previously unselected package node-typedarray-to-buffer. Preparing to unpack .../304-node-typedarray-to-buffer_4.0.0-2_all.deb ... Unpacking node-typedarray-to-buffer (4.0.0-2) ... Selecting previously unselected package node-write-file-atomic. Preparing to unpack .../305-node-write-file-atomic_4.0.2+~4.0.0-2_all.deb ... Unpacking node-write-file-atomic (4.0.2+~4.0.0-2) ... Selecting previously unselected package node-slice-ansi. Preparing to unpack .../306-node-slice-ansi_5.0.0+~cs9.0.0-5_all.deb ... Unpacking node-slice-ansi (5.0.0+~cs9.0.0-5) ... Selecting previously unselected package node-ansi-regex. Preparing to unpack .../307-node-ansi-regex_5.0.1-1_all.deb ... Unpacking node-ansi-regex (5.0.1-1) ... Selecting previously unselected package node-strip-ansi. Preparing to unpack .../308-node-strip-ansi_6.0.1-2_all.deb ... Unpacking node-strip-ansi (6.0.1-2) ... Selecting previously unselected package node-clone. Preparing to unpack .../309-node-clone_2.1.2+~2.1.2-1_all.deb ... Unpacking node-clone (2.1.2+~2.1.2-1) ... Selecting previously unselected package node-defaults. Preparing to unpack .../310-node-defaults_1.0.4+~1.0.3-1_all.deb ... Unpacking node-defaults (1.0.4+~1.0.3-1) ... Selecting previously unselected package node-wcwidth.js. Preparing to unpack .../311-node-wcwidth.js_1.0.2-2_all.deb ... Unpacking node-wcwidth.js (1.0.2-2) ... Selecting previously unselected package node-string-width. Preparing to unpack .../312-node-string-width_4.2.3+~cs13.2.3-1_all.deb ... Unpacking node-string-width (4.2.3+~cs13.2.3-1) ... Selecting previously unselected package node-wrap-ansi. Preparing to unpack .../313-node-wrap-ansi_8.0.1+~8.0.1-3_all.deb ... Unpacking node-wrap-ansi (8.0.1+~8.0.1-3) ... Selecting previously unselected package node-cliui. Preparing to unpack .../314-node-cliui_7.0.4+repack+~cs3.1.0-4_all.deb ... Unpacking node-cliui (7.0.4+repack+~cs3.1.0-4) ... Selecting previously unselected package node-get-caller-file. Preparing to unpack .../315-node-get-caller-file_2.0.5+~cs1.1.1-4_all.deb ... Unpacking node-get-caller-file (2.0.5+~cs1.1.1-4) ... Selecting previously unselected package node-require-directory. Preparing to unpack .../316-node-require-directory_2.1.1+~2.1.2-1_all.deb ... Unpacking node-require-directory (2.1.1+~2.1.2-1) ... Selecting previously unselected package node-y18n. Preparing to unpack .../317-node-y18n_5.0.8+~5.0.0-3_all.deb ... Unpacking node-y18n (5.0.8+~5.0.0-3) ... Selecting previously unselected package node-camelcase. Preparing to unpack .../318-node-camelcase_7.0.0-3_all.deb ... Unpacking node-camelcase (7.0.0-3) ... Selecting previously unselected package node-yargs-parser. Preparing to unpack .../319-node-yargs-parser_21.1.1+~21.0.0-4_all.deb ... Unpacking node-yargs-parser (21.1.1+~21.0.0-4) ... Selecting previously unselected package node-yargs. Preparing to unpack .../320-node-yargs_16.2.0+~16.0.4-7_all.deb ... Unpacking node-yargs (16.2.0+~16.0.4-7) ... Selecting previously unselected package node-istanbul. Preparing to unpack .../321-node-istanbul_0.4.5+repack10+~cs98.25.59-2_all.deb ... Unpacking node-istanbul (0.4.5+repack10+~cs98.25.59-2) ... Selecting previously unselected package node-through. Preparing to unpack .../322-node-through_2.3.8+~cs0.0.30-1_all.deb ... Unpacking node-through (2.3.8+~cs0.0.30-1) ... Selecting previously unselected package node-resumer. Preparing to unpack .../323-node-resumer_0.0.0-6_all.deb ... Unpacking node-resumer (0.0.0-6) ... Selecting previously unselected package node-tape. Preparing to unpack .../324-node-tape_5.6.1+~cs8.20.19-1_all.deb ... Unpacking node-tape (5.6.1+~cs8.20.19-1) ... Selecting previously unselected package node-deep-equal. Preparing to unpack .../325-node-deep-equal_2.1.0+~cs31.12.80-1_all.deb ... Unpacking node-deep-equal (2.1.0+~cs31.12.80-1) ... Selecting previously unselected package libjs-util. Preparing to unpack .../326-libjs-util_0.12.5+~1.0.10-1_all.deb ... Unpacking libjs-util (0.12.5+~1.0.10-1) ... Selecting previously unselected package libmd4c0:amd64. Preparing to unpack .../327-libmd4c0_0.4.8-1_amd64.deb ... Unpacking libmd4c0:amd64 (0.4.8-1) ... Selecting previously unselected package libssl-dev:amd64. Preparing to unpack .../328-libssl-dev_3.0.10-1_amd64.deb ... Unpacking libssl-dev:amd64 (3.0.10-1) ... Selecting previously unselected package libuv1-dev:amd64. Preparing to unpack .../329-libuv1-dev_1.44.2-1_amd64.deb ... Unpacking libuv1-dev:amd64 (1.44.2-1) ... Selecting previously unselected package libnode-dev. Preparing to unpack .../330-libnode-dev_18.13.0+dfsg1-1_amd64.deb ... Unpacking libnode-dev (18.13.0+dfsg1-1) ... Selecting previously unselected package libpcre2-16-0:amd64. Preparing to unpack .../331-libpcre2-16-0_10.42-4_amd64.deb ... Unpacking libpcre2-16-0:amd64 (10.42-4) ... Selecting previously unselected package libpkgconf3:amd64. Preparing to unpack .../332-libpkgconf3_1.8.1-1_amd64.deb ... Unpacking libpkgconf3:amd64 (1.8.1-1) ... Selecting previously unselected package shared-mime-info. Preparing to unpack .../333-shared-mime-info_2.2-1_amd64.deb ... Unpacking shared-mime-info (2.2-1) ... Selecting previously unselected package libqt5core5a:amd64. Preparing to unpack .../334-libqt5core5a_5.15.10+dfsg-3_amd64.deb ... Unpacking libqt5core5a:amd64 (5.15.10+dfsg-3) ... Selecting previously unselected package libqt5dbus5:amd64. Preparing to unpack .../335-libqt5dbus5_5.15.10+dfsg-3_amd64.deb ... Unpacking libqt5dbus5:amd64 (5.15.10+dfsg-3) ... Selecting previously unselected package libegl1:amd64. Preparing to unpack .../336-libegl1_1.6.0-1_amd64.deb ... Unpacking libegl1:amd64 (1.6.0-1) ... Selecting previously unselected package libqt5network5:amd64. Preparing to unpack .../337-libqt5network5_5.15.10+dfsg-3_amd64.deb ... Unpacking libqt5network5:amd64 (5.15.10+dfsg-3) ... Selecting previously unselected package libsm6:amd64. Preparing to unpack .../338-libsm6_2%3a1.2.3-1_amd64.deb ... Unpacking libsm6:amd64 (2:1.2.3-1) ... Selecting previously unselected package libxcb-icccm4:amd64. Preparing to unpack .../339-libxcb-icccm4_0.4.1-1.1_amd64.deb ... Unpacking libxcb-icccm4:amd64 (0.4.1-1.1) ... Selecting previously unselected package libxcb-util1:amd64. Preparing to unpack .../340-libxcb-util1_0.4.0-1+b1_amd64.deb ... Unpacking libxcb-util1:amd64 (0.4.0-1+b1) ... Selecting previously unselected package libxcb-image0:amd64. Preparing to unpack .../341-libxcb-image0_0.4.0-2_amd64.deb ... Unpacking libxcb-image0:amd64 (0.4.0-2) ... Selecting previously unselected package libxcb-keysyms1:amd64. Preparing to unpack .../342-libxcb-keysyms1_0.4.0-1+b2_amd64.deb ... Unpacking libxcb-keysyms1:amd64 (0.4.0-1+b2) ... Selecting previously unselected package libxcb-render0:amd64. Preparing to unpack .../343-libxcb-render0_1.15-1_amd64.deb ... Unpacking libxcb-render0:amd64 (1.15-1) ... Selecting previously unselected package libxcb-render-util0:amd64. Preparing to unpack .../344-libxcb-render-util0_0.3.9-1+b1_amd64.deb ... Unpacking libxcb-render-util0:amd64 (0.3.9-1+b1) ... Selecting previously unselected package libxcb-shape0:amd64. Preparing to unpack .../345-libxcb-shape0_1.15-1_amd64.deb ... Unpacking libxcb-shape0:amd64 (1.15-1) ... Selecting previously unselected package libxcb-xinerama0:amd64. Preparing to unpack .../346-libxcb-xinerama0_1.15-1_amd64.deb ... Unpacking libxcb-xinerama0:amd64 (1.15-1) ... Selecting previously unselected package libxcb-xinput0:amd64. Preparing to unpack .../347-libxcb-xinput0_1.15-1_amd64.deb ... Unpacking libxcb-xinput0:amd64 (1.15-1) ... Selecting previously unselected package libxcb-xkb1:amd64. Preparing to unpack .../348-libxcb-xkb1_1.15-1_amd64.deb ... Unpacking libxcb-xkb1:amd64 (1.15-1) ... Selecting previously unselected package xkb-data. Preparing to unpack .../349-xkb-data_2.38-2_all.deb ... Unpacking xkb-data (2.38-2) ... Selecting previously unselected package libxkbcommon0:amd64. Preparing to unpack .../350-libxkbcommon0_1.5.0-1_amd64.deb ... Unpacking libxkbcommon0:amd64 (1.5.0-1) ... Selecting previously unselected package libxkbcommon-x11-0:amd64. Preparing to unpack .../351-libxkbcommon-x11-0_1.5.0-1_amd64.deb ... Unpacking libxkbcommon-x11-0:amd64 (1.5.0-1) ... Selecting previously unselected package libxrender1:amd64. Preparing to unpack .../352-libxrender1_1%3a0.9.10-1.1_amd64.deb ... Unpacking libxrender1:amd64 (1:0.9.10-1.1) ... Selecting previously unselected package libqt5gui5:amd64. Preparing to unpack .../353-libqt5gui5_5.15.10+dfsg-3_amd64.deb ... Unpacking libqt5gui5:amd64 (5.15.10+dfsg-3) ... Selecting previously unselected package libxcomposite1:amd64. Preparing to unpack .../354-libxcomposite1_1%3a0.4.5-1_amd64.deb ... Unpacking libxcomposite1:amd64 (1:0.4.5-1) ... Selecting previously unselected package node-agent-base. Preparing to unpack .../355-node-agent-base_6.0.2+~cs5.4.2-2_all.deb ... Unpacking node-agent-base (6.0.2+~cs5.4.2-2) ... Selecting previously unselected package node-ajv-keywords. Preparing to unpack .../356-node-ajv-keywords_3.5.2-2_all.deb ... Unpacking node-ajv-keywords (3.5.2-2) ... Selecting previously unselected package node-ansi-escapes. Preparing to unpack .../357-node-ansi-escapes_5.0.0+really.4.3.1-1_all.deb ... Unpacking node-ansi-escapes (5.0.0+really.4.3.1-1) ... Selecting previously unselected package node-aproba. Preparing to unpack .../358-node-aproba_2.0.0-3_all.deb ... Unpacking node-aproba (2.0.0-3) ... Selecting previously unselected package node-delegates. Preparing to unpack .../359-node-delegates_1.0.0-3_all.deb ... Unpacking node-delegates (1.0.0-3) ... Selecting previously unselected package node-are-we-there-yet. Preparing to unpack .../360-node-are-we-there-yet_3.0.1+~1.1.0-1_all.deb ... Unpacking node-are-we-there-yet (3.0.1+~1.1.0-1) ... Selecting previously unselected package node-async-each. Preparing to unpack .../361-node-async-each_1.0.3-3_all.deb ... Unpacking node-async-each (1.0.3-3) ... Selecting previously unselected package node-babel-plugin-lodash. Preparing to unpack .../362-node-babel-plugin-lodash_3.3.4+~cs2.0.1-7_all.deb ... Unpacking node-babel-plugin-lodash (3.3.4+~cs2.0.1-7) ... Selecting previously unselected package node-base64-js. Preparing to unpack .../363-node-base64-js_1.5.1+dfsg+~1.3.0-2_all.deb ... Unpacking node-base64-js (1.5.1+dfsg+~1.3.0-2) ... Selecting previously unselected package node-binary-extensions. Preparing to unpack .../364-node-binary-extensions_2.2.0-2_all.deb ... Unpacking node-binary-extensions (2.2.0-2) ... Selecting previously unselected package node-builtins. Preparing to unpack .../365-node-builtins_5.0.1-1_all.deb ... Unpacking node-builtins (5.0.1-1) ... Selecting previously unselected package node-chownr. Preparing to unpack .../366-node-chownr_2.0.0-2_all.deb ... Unpacking node-chownr (2.0.0-2) ... Selecting previously unselected package node-iconv-lite. Preparing to unpack .../367-node-iconv-lite_0.6.3-3_all.deb ... Unpacking node-iconv-lite (0.6.3-3) ... Selecting previously unselected package node-encoding. Preparing to unpack .../368-node-encoding_0.1.13-2_all.deb ... Unpacking node-encoding (0.1.13-2) ... Selecting previously unselected package node-jsonparse. Preparing to unpack .../369-node-jsonparse_1.3.1-10_all.deb ... Unpacking node-jsonparse (1.3.1-10) ... Selecting previously unselected package node-minipass. Preparing to unpack .../370-node-minipass_3.3.6+~cs9.4.19-1_all.deb ... Unpacking node-minipass (3.3.6+~cs9.4.19-1) ... Selecting previously unselected package node-iferr. Preparing to unpack .../371-node-iferr_1.0.2+~1.0.2-1_all.deb ... Unpacking node-iferr (1.0.2+~1.0.2-1) ... Selecting previously unselected package node-fs-write-stream-atomic. Preparing to unpack .../372-node-fs-write-stream-atomic_1.0.10-6_all.deb ... Unpacking node-fs-write-stream-atomic (1.0.10-6) ... Selecting previously unselected package node-run-queue. Preparing to unpack .../373-node-run-queue_2.0.0-3_all.deb ... Unpacking node-run-queue (2.0.0-3) ... Selecting previously unselected package node-copy-concurrently. Preparing to unpack .../374-node-copy-concurrently_1.0.5-9_all.deb ... Unpacking node-copy-concurrently (1.0.5-9) ... Selecting previously unselected package node-move-concurrently. Preparing to unpack .../375-node-move-concurrently_1.0.1-5_all.deb ... Unpacking node-move-concurrently (1.0.1-5) ... Selecting previously unselected package node-promise-inflight. Preparing to unpack .../376-node-promise-inflight_1.0.1+~1.0.0-1_all.deb ... Unpacking node-promise-inflight (1.0.1+~1.0.0-1) ... Selecting previously unselected package node-ssri. Preparing to unpack .../377-node-ssri_9.0.1-2_all.deb ... Unpacking node-ssri (9.0.1-2) ... Selecting previously unselected package node-unique-filename. Preparing to unpack .../378-node-unique-filename_1.1.1+ds-2_all.deb ... Unpacking node-unique-filename (1.1.1+ds-2) ... Selecting previously unselected package node-cacache. Preparing to unpack .../379-node-cacache_17.0.3+~cs10.3.7-1_all.deb ... Unpacking node-cacache (17.0.3+~cs10.3.7-1) ... Selecting previously unselected package node-is-binary-path. Preparing to unpack .../380-node-is-binary-path_2.1.0-5_all.deb ... Unpacking node-is-binary-path (2.1.0-5) ... Selecting previously unselected package node-path-is-absolute. Preparing to unpack .../381-node-path-is-absolute_2.0.0-2_all.deb ... Unpacking node-path-is-absolute (2.0.0-2) ... Selecting previously unselected package node-set-immediate-shim. Preparing to unpack .../382-node-set-immediate-shim_2.0.0-2_all.deb ... Unpacking node-set-immediate-shim (2.0.0-2) ... Selecting previously unselected package node-readdirp. Preparing to unpack .../383-node-readdirp_3.6.0-1_all.deb ... Unpacking node-readdirp (3.6.0-1) ... Selecting previously unselected package node-chokidar. Preparing to unpack .../384-node-chokidar_3.5.3-2_all.deb ... Unpacking node-chokidar (3.5.3-2) ... Selecting previously unselected package node-tslib. Preparing to unpack .../385-node-tslib_2.4.1-1_all.deb ... Unpacking node-tslib (2.4.1-1) ... Selecting previously unselected package node-chrome-trace-event. Preparing to unpack .../386-node-chrome-trace-event_1.0.3-2_all.deb ... Unpacking node-chrome-trace-event (1.0.3-2) ... Selecting previously unselected package node-ci-info. Preparing to unpack .../387-node-ci-info_3.6.1+~cs1.1.0-1_all.deb ... Unpacking node-ci-info (3.6.1+~cs1.1.0-1) ... Selecting previously unselected package node-colors. Preparing to unpack .../388-node-colors_1.4.0-4_all.deb ... Unpacking node-colors (1.4.0-4) ... Selecting previously unselected package node-cli-table. Preparing to unpack .../389-node-cli-table_0.3.11+~cs0.13.4-3_all.deb ... Unpacking node-cli-table (0.3.11+~cs0.13.4-3) ... Selecting previously unselected package node-columnify. Preparing to unpack .../390-node-columnify_1.6.0+~1.5.1-1_all.deb ... Unpacking node-columnify (1.6.0+~1.5.1-1) ... Selecting previously unselected package node-console-control-strings. Preparing to unpack .../391-node-console-control-strings_1.1.0-3_all.deb ... Unpacking node-console-control-strings (1.1.0-3) ... Selecting previously unselected package node-css-selector-tokenizer. Preparing to unpack .../392-node-css-selector-tokenizer_0.8.0+~cs4.8.3-1_all.deb ... Unpacking node-css-selector-tokenizer (0.8.0+~cs4.8.3-1) ... Selecting previously unselected package node-isobject. Preparing to unpack .../393-node-isobject_4.0.0-2_all.deb ... Unpacking node-isobject (4.0.0-2) ... Selecting previously unselected package node-postcss. Preparing to unpack .../394-node-postcss_8.4.20+~cs8.0.23-1_all.deb ... Unpacking node-postcss (8.4.20+~cs8.0.23-1) ... Selecting previously unselected package node-icss-utils. Preparing to unpack .../395-node-icss-utils_5.1.0+~5.1.0-1_all.deb ... Unpacking node-icss-utils (5.1.0+~5.1.0-1) ... Selecting previously unselected package node-postcss-modules-extract-imports. Preparing to unpack .../396-node-postcss-modules-extract-imports_3.0.0-2_all.deb ... Unpacking node-postcss-modules-extract-imports (3.0.0-2) ... Selecting previously unselected package node-postcss-modules-values. Preparing to unpack .../397-node-postcss-modules-values_4.0.0+~4.0.0-1_all.deb ... Unpacking node-postcss-modules-values (4.0.0+~4.0.0-1) ... Selecting previously unselected package node-postcss-value-parser. Preparing to unpack .../398-node-postcss-value-parser_4.2.0-1_all.deb ... Unpacking node-postcss-value-parser (4.2.0-1) ... Selecting previously unselected package node-prr. Preparing to unpack .../399-node-prr_1.0.1-3_all.deb ... Unpacking node-prr (1.0.1-3) ... Selecting previously unselected package node-errno. Preparing to unpack .../400-node-errno_1.0.0-3_all.deb ... Unpacking node-errno (1.0.0-3) ... Selecting previously unselected package node-memory-fs. Preparing to unpack .../401-node-memory-fs_0.5.0+~0.3.3-2_all.deb ... Unpacking node-memory-fs (0.5.0+~0.3.3-2) ... Selecting previously unselected package node-tapable. Preparing to unpack .../402-node-tapable_2.2.1-3_all.deb ... Unpacking node-tapable (2.2.1-3) ... Selecting previously unselected package node-enhanced-resolve. Preparing to unpack .../403-node-enhanced-resolve_5.10.0-1_all.deb ... Unpacking node-enhanced-resolve (5.10.0-1) ... Selecting previously unselected package node-es-module-lexer. Preparing to unpack .../404-node-es-module-lexer_1.1.0+dfsg-2_all.deb ... Unpacking node-es-module-lexer (1.1.0+dfsg-2) ... Selecting previously unselected package node-events. Preparing to unpack .../405-node-events_3.3.0+~3.0.0-3_all.deb ... Unpacking node-events (3.3.0+~3.0.0-3) ... Selecting previously unselected package node-resolve-cwd. Preparing to unpack .../406-node-resolve-cwd_3.0.0-2_all.deb ... Unpacking node-resolve-cwd (3.0.0-2) ... Selecting previously unselected package node-jest-debbundle. Preparing to unpack .../407-node-jest-debbundle_29.6.2~ds1+~cs73.45.28-2_all.deb ... Unpacking node-jest-debbundle (29.6.2~ds1+~cs73.45.28-2) ... Selecting previously unselected package node-interpret. Preparing to unpack .../408-node-interpret_2.2.0-3_all.deb ... Unpacking node-interpret (2.2.0-3) ... Selecting previously unselected package node-merge-stream. Preparing to unpack .../409-node-merge-stream_2.0.0+~1.1.2-2_all.deb ... Unpacking node-merge-stream (2.0.0+~1.1.2-2) ... Selecting previously unselected package node-jest-worker. Preparing to unpack .../410-node-jest-worker_29.6.2~ds1+~cs73.45.28-2_all.deb ... Unpacking node-jest-worker (29.6.2~ds1+~cs73.45.28-2) ... Selecting previously unselected package node-loader-runner. Preparing to unpack .../411-node-loader-runner_4.3.0-1_all.deb ... Unpacking node-loader-runner (4.3.0-1) ... Selecting previously unselected package node-mime. Preparing to unpack .../412-node-mime_3.0.0+dfsg+~cs6.97.2-1_all.deb ... Unpacking node-mime (3.0.0+dfsg+~cs6.97.2-1) ... Selecting previously unselected package node-mime-types. Preparing to unpack .../413-node-mime-types_2.1.35-1_all.deb ... Unpacking node-mime-types (2.1.35-1) ... Selecting previously unselected package node-rechoir. Preparing to unpack .../414-node-rechoir_0.8.0+~0.6.1-2_all.deb ... Unpacking node-rechoir (0.8.0+~0.6.1-2) ... Selecting previously unselected package node-schema-utils. Preparing to unpack .../415-node-schema-utils_3.1.1~ds-2_all.deb ... Unpacking node-schema-utils (3.1.1~ds-2) ... Selecting previously unselected package node-randombytes. Preparing to unpack .../416-node-randombytes_2.1.0+~2.0.0-2_all.deb ... Unpacking node-randombytes (2.1.0+~2.0.0-2) ... Selecting previously unselected package node-serialize-javascript. Preparing to unpack .../417-node-serialize-javascript_6.0.1-1_all.deb ... Unpacking node-serialize-javascript (6.0.1-1) ... Selecting previously unselected package node-watchpack. Preparing to unpack .../418-node-watchpack_2.4.0+~cs2.8.1-1_all.deb ... Unpacking node-watchpack (2.4.0+~cs2.8.1-1) ... Selecting previously unselected package node-webassemblyjs. Preparing to unpack .../419-node-webassemblyjs_1.11.4+dfsg+~cs10.11.17-2_all.deb ... Unpacking node-webassemblyjs (1.11.4+dfsg+~cs10.11.17-2) ... Selecting previously unselected package node-source-list-map. Preparing to unpack .../420-node-source-list-map_2.0.1+dfsg+~0.1.2-1_all.deb ... Unpacking node-source-list-map (2.0.1+dfsg+~0.1.2-1) ... Selecting previously unselected package node-webpack-sources. Preparing to unpack .../421-node-webpack-sources_3.2.3+~3.2.0-2_all.deb ... Unpacking node-webpack-sources (3.2.3+~3.2.0-2) ... Selecting previously unselected package node-terser. Preparing to unpack .../422-node-terser_5.19.2-1_all.deb ... Unpacking node-terser (5.19.2-1) ... Selecting previously unselected package terser. Preparing to unpack .../423-terser_5.19.2-1_all.deb ... Unpacking terser (5.19.2-1) ... Selecting previously unselected package webpack. Preparing to unpack .../424-webpack_5.76.1+dfsg1+~cs17.16.16-1_all.deb ... Unpacking webpack (5.76.1+dfsg1+~cs17.16.16-1) ... Selecting previously unselected package node-css-loader. Preparing to unpack .../425-node-css-loader_6.7.2+~cs14.0.11-1_all.deb ... Unpacking node-css-loader (6.7.2+~cs14.0.11-1) ... Selecting previously unselected package node-data-uri-to-buffer. Preparing to unpack .../426-node-data-uri-to-buffer_4.0.0-4_all.deb ... Unpacking node-data-uri-to-buffer (4.0.0-4) ... Selecting previously unselected package node-mimic-response. Preparing to unpack .../427-node-mimic-response_3.1.0-8_all.deb ... Unpacking node-mimic-response (3.1.0-8) ... Selecting previously unselected package node-decompress-response. Preparing to unpack .../428-node-decompress-response_6.0.0-2_all.deb ... Unpacking node-decompress-response (6.0.0-2) ... Selecting previously unselected package node-depd. Preparing to unpack .../429-node-depd_2.0.0-2_all.deb ... Unpacking node-depd (2.0.0-2) ... Selecting previously unselected package node-diff. Preparing to unpack .../430-node-diff_5.0.0~dfsg+~5.0.1-4_all.deb ... Unpacking node-diff (5.0.0~dfsg+~5.0.1-4) ... Selecting previously unselected package node-end-of-stream. Preparing to unpack .../431-node-end-of-stream_1.4.4+~1.4.1-1_all.deb ... Unpacking node-end-of-stream (1.4.4+~1.4.1-1) ... Selecting previously unselected package node-err-code. Preparing to unpack .../432-node-err-code_2.0.3+dfsg-3_all.deb ... Unpacking node-err-code (2.0.3+dfsg-3) ... Selecting previously unselected package node-time-stamp. Preparing to unpack .../433-node-time-stamp_2.2.0-2_all.deb ... Unpacking node-time-stamp (2.2.0-2) ... Selecting previously unselected package node-fancy-log. Preparing to unpack .../434-node-fancy-log_1.3.3+~cs1.3.1-2_all.deb ... Unpacking node-fancy-log (1.3.3+~cs1.3.1-2) ... Selecting previously unselected package node-fetch. Preparing to unpack .../435-node-fetch_3.3.0+~cs11.4.11-2_all.deb ... Unpacking node-fetch (3.3.0+~cs11.4.11-2) ... Selecting previously unselected package node-has-unicode. Preparing to unpack .../436-node-has-unicode_2.0.1-5_all.deb ... Unpacking node-has-unicode (2.0.1-5) ... Selecting previously unselected package node-wide-align. Preparing to unpack .../437-node-wide-align_1.1.3-4_all.deb ... Unpacking node-wide-align (1.1.3-4) ... Selecting previously unselected package node-gauge. Preparing to unpack .../438-node-gauge_4.0.4-2_all.deb ... Unpacking node-gauge (4.0.4-2) ... Selecting previously unselected package node-pump. Preparing to unpack .../439-node-pump_3.0.0-5_all.deb ... Unpacking node-pump (3.0.0-5) ... Selecting previously unselected package node-get-stream. Preparing to unpack .../440-node-get-stream_6.0.1-1_all.deb ... Unpacking node-get-stream (6.0.1-1) ... Selecting previously unselected package node-lowercase-keys. Preparing to unpack .../441-node-lowercase-keys_2.0.0-2_all.deb ... Unpacking node-lowercase-keys (2.0.0-2) ... Selecting previously unselected package node-json-buffer. Preparing to unpack .../442-node-json-buffer_3.0.1+~3.0.0-1_all.deb ... Unpacking node-json-buffer (3.0.1+~3.0.0-1) ... Selecting previously unselected package node-p-cancelable. Preparing to unpack .../443-node-p-cancelable_2.1.1-1_all.deb ... Unpacking node-p-cancelable (2.1.1-1) ... Selecting previously unselected package node-got. Preparing to unpack .../444-node-got_11.8.5+~cs58.13.36-3_all.deb ... Unpacking node-got (11.8.5+~cs58.13.36-3) ... Selecting previously unselected package node-https-proxy-agent. Preparing to unpack .../445-node-https-proxy-agent_5.0.1+~cs8.0.0-3_all.deb ... Unpacking node-https-proxy-agent (5.0.1+~cs8.0.0-3) ... Selecting previously unselected package node-set-blocking. Preparing to unpack .../446-node-set-blocking_2.0.0-2_all.deb ... Unpacking node-set-blocking (2.0.0-2) ... Selecting previously unselected package node-npmlog. Preparing to unpack .../447-node-npmlog_7.0.1+~4.1.4-1_all.deb ... Unpacking node-npmlog (7.0.1+~4.1.4-1) ... Selecting previously unselected package node-osenv. Preparing to unpack .../448-node-osenv_0.1.5+~0.1.1-1_all.deb ... Unpacking node-osenv (0.1.5+~0.1.1-1) ... Selecting previously unselected package node-tar. Preparing to unpack .../449-node-tar_6.1.13+~cs7.0.5-1_all.deb ... Unpacking node-tar (6.1.13+~cs7.0.5-1) ... Selecting previously unselected package node-gyp. Preparing to unpack .../450-node-gyp_9.3.0-2_all.deb ... Unpacking node-gyp (9.3.0-2) ... Selecting previously unselected package node-ieee754. Preparing to unpack .../451-node-ieee754_1.2.1-3_all.deb ... Unpacking node-ieee754 (1.2.1-3) ... Selecting previously unselected package node-ini. Preparing to unpack .../452-node-ini_3.0.1-2_all.deb ... Unpacking node-ini (3.0.1-2) ... Selecting previously unselected package node-ip. Preparing to unpack .../453-node-ip_2.0.0+~1.1.0-1_all.deb ... Unpacking node-ip (2.0.0+~1.1.0-1) ... Selecting previously unselected package node-ip-regex. Preparing to unpack .../454-node-ip-regex_4.3.0+~4.1.1-1_all.deb ... Unpacking node-ip-regex (4.3.0+~4.1.1-1) ... Selecting previously unselected package node-mute-stream. Preparing to unpack .../455-node-mute-stream_0.0.8+~0.0.1-3_all.deb ... Unpacking node-mute-stream (0.0.8+~0.0.1-3) ... Selecting previously unselected package node-negotiator. Preparing to unpack .../456-node-negotiator_0.6.3+~0.6.1-1_all.deb ... Unpacking node-negotiator (0.6.3+~0.6.1-1) ... Selecting previously unselected package node-read-package-json. Preparing to unpack .../457-node-read-package-json_5.0.2+~2.0.0-1_all.deb ... Unpacking node-read-package-json (5.0.2+~2.0.0-1) ... Selecting previously unselected package node-npm-bundled. Preparing to unpack .../458-node-npm-bundled_2.0.1-2_all.deb ... Unpacking node-npm-bundled (2.0.1-2) ... Selecting previously unselected package node-validate-npm-package-name. Preparing to unpack .../459-node-validate-npm-package-name_5.0.0+~4.0.0-1_all.deb ... Unpacking node-validate-npm-package-name (5.0.0+~4.0.0-1) ... Selecting previously unselected package node-npm-package-arg. Preparing to unpack .../460-node-npm-package-arg_10.0.0+~3.0.0-2_all.deb ... Unpacking node-npm-package-arg (10.0.0+~3.0.0-2) ... Selecting previously unselected package node-retry. Preparing to unpack .../461-node-retry_0.13.1+~0.12.1-1_all.deb ... Unpacking node-retry (0.13.1+~0.12.1-1) ... Selecting previously unselected package node-promise-retry. Preparing to unpack .../462-node-promise-retry_2.0.1-4_all.deb ... Unpacking node-promise-retry (2.0.1-4) ... Selecting previously unselected package node-read. Preparing to unpack .../463-node-read_1.0.7-5_all.deb ... Unpacking node-read (1.0.7-5) ... Selecting previously unselected package node-promzard. Preparing to unpack .../464-node-promzard_0.3.0-2_all.deb ... Unpacking node-promzard (0.3.0-2) ... Selecting previously unselected package node-text-table. Preparing to unpack .../465-node-text-table_0.2.0-4_all.deb ... Unpacking node-text-table (0.2.0-4) ... Selecting previously unselected package npm. Preparing to unpack .../466-npm_9.2.0~ds1-1_all.deb ... Unpacking npm (9.2.0~ds1-1) ... Selecting previously unselected package pkgconf-bin. Preparing to unpack .../467-pkgconf-bin_1.8.1-1_amd64.deb ... Unpacking pkgconf-bin (1.8.1-1) ... Selecting previously unselected package pkgconf:amd64. Preparing to unpack .../468-pkgconf_1.8.1-1_amd64.deb ... Unpacking pkgconf:amd64 (1.8.1-1) ... Selecting previously unselected package pkg-config:amd64. Preparing to unpack .../469-pkg-config_1.8.1-1_amd64.deb ... Unpacking pkg-config:amd64 (1.8.1-1) ... Setting up python3-pkg-resources (68.1.2-1) ... Setting up libgraphite2-3:amd64 (1.3.14-1) ... Setting up node-colors (1.4.0-4) ... Setting up node-fs.realpath (1.0.0-3) ... Setting up libwayland-server0:amd64 (1.22.0-2.1) ... Setting up node-ampproject-remapping (2.2.0+~cs5.15.37-1) ... Setting up node-diff (5.0.0~dfsg+~5.0.1-4) ... Setting up libpciaccess0:amd64 (0.17-2) ... Setting up libxau6:amd64 (1:1.0.9-1) ... Setting up libxdmcp6:amd64 (1:1.1.2-3) ... Setting up libdouble-conversion3:amd64 (3.3.0-1) ... Setting up node-abbrev (1.1.1+~1.1.2-1) ... Setting up libxcb1:amd64 (1.15-1) ... Setting up node-path-is-inside (1.0.2+~1.0.0-1) ... Setting up libjs-sprintf-js (1.1.2+ds1+~1.1.2-1) ... Setting up libicu72:amd64 (72.1-3) ... Setting up libxcb-xfixes0:amd64 (1.15-1) ... Setting up node-pify (5.0.0+~cs5.0.1-1) ... Setting up node-p-limit (4.0.0+~cs4.0.0-5) ... Setting up node-yallist (4.0.0+~4.0.1-1) ... Setting up libjs-inherits (2.0.4-6) ... Setting up fonts-noto-mono (20201225-2) ... Setting up node-p-cancelable (2.1.1-1) ... Setting up node-is-windows (1.0.2+~cs1.0.0-1) ... Setting up node-ansi-regex (5.0.1-1) ... Setting up node-loader-runner (4.3.0-1) ... Setting up libxcb-xinput0:amd64 (1.15-1) ... Setting up node-object-inspect (1.12.2+~cs1.8.1-1) ... Setting up node-slash (4.0.0-3) ... Setting up node-util-deprecate (1.0.2-3) ... Setting up node-ieee754 (1.2.1-3) ... Setting up node-fs-readdir-recursive (1.1.0+~1.1.0-1) ... Setting up node-v8flags (3.2.0+~3.1.1-1) ... Setting up node-retry (0.13.1+~0.12.1-1) ... Setting up node-get-caller-file (2.0.5+~cs1.1.1-4) ... Setting up node-arrify (2.0.1-3) ... Setting up gawk (1:5.2.1-2) ... Setting up libxcb-render0:amd64 (1.15-1) ... Setting up node-eslint-visitor-keys (3.3.0+~1.0.0-1) ... Setting up libglib2.0-0:amd64 (2.78.0-1) ... No schema files found: doing nothing. Setting up node-caniuse-lite (1.0.30001436+dfsg+~1.0.1-1) ... Setting up node-isobject (4.0.0-2) ... Setting up libglvnd0:amd64 (1.6.0-1) ... Setting up node-delegates (1.0.0-3) ... Setting up node-depd (2.0.0-2) ... Setting up libxcb-glx0:amd64 (1.15-1) ... Setting up node-isexe (2.0.0+~2.0.1-5) ... Setting up node-jsonparse (1.3.1-10) ... Setting up node-core-js-pure (3.26.1-3) ... Setting up node-es-module-lexer (1.1.0+dfsg-2) ... Setting up node-path-exists (5.0.0-8) ... Setting up node-unicode-match-property-value-ecmascript (2.1.0+ds-1) ... Setting up node-escape-string-regexp (4.0.0-2) ... Setting up node-through (2.3.8+~cs0.0.30-1) ... Setting up libxcb-keysyms1:amd64 (0.4.0-1+b2) ... Setting up libxcb-shape0:amd64 (1.15-1) ... Setting up libjs-source-map (0.7.0++dfsg2+really.0.6.1-15) ... Setting up x11-common (1:7.7+23) ... Setting up node-p-locate (6.0.0-12) ... Setting up libsensors-config (1:3.6.0-8) ... Setting up node-negotiator (0.6.3+~0.6.1-1) ... Setting up node-tslib (2.4.1-1) ... Setting up node-strip-bom (4.0.0-2) ... Setting up node-ci-info (3.6.1+~cs1.1.0-1) ... Setting up node-color-name (1.1.4+~1.1.1-2) ... Setting up libxcb-render-util0:amd64 (0.3.9-1+b1) ... Setting up node-chrome-trace-event (1.0.3-2) ... Setting up xkb-data (2.38-2) ... Setting up node-json-buffer (3.0.1+~3.0.0-1) ... Setting up node-electron-to-chromium (1.4.284-1) ... Setting up node-cjs-module-lexer (1.2.2+dfsg-5) ... Setting up node-console-control-strings (1.1.0-3) ... Setting up node-source-list-map (2.0.1+dfsg+~0.1.2-1) ... Setting up libxcb-shm0:amd64 (1.15-1) ... Setting up libxcb-icccm4:amd64 (0.4.1-1.1) ... Setting up node-camelcase (7.0.0-3) ... Setting up node-resumer (0.0.0-6) ... Setting up libc-ares2:amd64 (1.19.1-3) ... Setting up node-uuid (8.3.2+~8.3.3-4) ... Setting up node-terser (5.19.2-1) ... Setting up node-path-type (4.0.0-3) ... Setting up node-indent-string (4.0.0-2) ... Setting up libpcre2-16-0:amd64 (10.42-4) ... Setting up node-typedarray (0.0.7-1) ... Setting up libxcb-util1:amd64 (0.4.0-1+b1) ... Setting up node-function-bind (1.1.1+repacked+~1.0.3-2) ... Setting up node-clone (2.1.2+~2.1.2-1) ... Setting up node-p-map (4.0.0+~3.1.0+~3.0.1-1) ... Setting up libxcb-xkb1:amd64 (1.15-1) ... Setting up libxcb-image0:amd64 (0.4.0-2) ... Setting up node-iferr (1.0.2+~1.0.2-1) ... Setting up node-chownr (2.0.0-2) ... Setting up node-has-flag (4.0.0-3) ... Setting up node-estraverse (5.3.0+ds+~5.1.1-1) ... Setting up node-regjsgen (0.7.1+ds-1) ... Setting up libxcb-present0:amd64 (1.15-1) ... Setting up node-lodash-packages (4.17.21+dfsg+~cs8.31.198.20210220-9) ... Setting up python3-six (1.16.0-4) ... Setting up node-json-schema-traverse (1.0.0-3) ... Setting up node-inherits (2.0.4-6) ... Setting up node-path-is-absolute (2.0.0-2) ... Setting up node-locate-path (7.1.1-2) ... Setting up node-ini (3.0.1-2) ... Setting up node-postcss-value-parser (4.2.0-1) ... Setting up libz3-4:amd64 (4.8.12-3.1) ... Setting up node-safe-buffer (5.2.1+~cs2.1.2-3) ... Setting up node-promise-inflight (1.0.1+~1.0.0-1) ... Setting up libxcb-xinerama0:amd64 (1.15-1) ... Setting up libpkgconf3:amd64 (1.8.1-1) ... Setting up libuv1:amd64 (1.44.2-1) ... Setting up node-json-parse-better-errors (1.0.2+~cs3.3.1-2) ... Setting up libjpeg62-turbo:amd64 (1:2.1.5-2) ... Setting up node-unicode-canonical-property-names-ecmascript (2.0.0-2) ... Setting up node-sprintf-js (1.1.2+ds1+~1.1.2-1) ... Setting up node-flatted (3.2.7~ds-1) ... Setting up node-y18n (5.0.8+~5.0.0-3) ... Setting up node-fast-deep-equal (3.1.3-3) ... Setting up node-shebang-regex (3.0.0-2) ... Setting up node-err-code (2.0.3+dfsg-3) ... Setting up node-resolve-from (5.0.0+~3.1.0+~3.3.0+~2.0.0-1) ... Setting up libmbedcrypto7:amd64 (2.28.3-1) ... Setting up libx11-data (2:1.8.6-1) ... Setting up libxcb-sync1:amd64 (1.15-1) ... Setting up node-balanced-match (2.0.0-1) ... Setting up node-convert-source-map (1.9.0+~1.5.2-1) ... Setting up node-brace-expansion (2.0.1-2) ... Setting up node-is-stream (3.0.0-4) ... Setting up node-spdx-exceptions (2.3.0-2) ... Setting up node-js-tokens (8.0.0-2) ... Setting up node-core-js (3.26.1-3) ... Setting up node-interpret (2.2.0-3) ... Setting up node-set-blocking (2.0.0-2) ... Setting up node-prr (1.0.1-3) ... Setting up libssl-dev:amd64 (3.0.10-1) ... Setting up libpng16-16:amd64 (1.6.40-1) ... Setting up node-repeat-string (1.6.1+repack-1) ... Setting up node-globals (13.18.0-1) ... Setting up node-deep-is (0.1.4-1) ... Setting up node-signal-exit (4.1.0-5) ... Setting up node-randombytes (2.1.0+~2.0.0-2) ... Setting up pkgconf-bin (1.8.1-1) ... Setting up libsensors5:amd64 (1:3.6.0-8) ... Setting up node-source-map (0.7.0++dfsg2+really.0.6.1-15) ... Setting up libgc1:amd64 (1:8.2.4-1) ... Setting up node-wrappy (1.0.2-3) ... Setting up libglapi-mesa:amd64 (23.1.7-1) ... Setting up node-text-table (0.2.0-4) ... Setting up libmtdev1:amd64 (1.1.6-1) ... Setting up node-require-directory (2.1.1+~2.1.2-1) ... Setting up node-ip (2.0.0+~1.1.0-1) ... Setting up node-quick-lru (6.1.1-4) ... Setting up node-regenerator-runtime (0.15.1+~0.10.8-1) ... Setting up node-punycode (2.2.3-2) ... Setting up libxcb-dri2-0:amd64 (1.15-1) ... Setting up node-to-fast-properties (3.0.1-3) ... Setting up node-defaults (1.0.4+~1.0.3-1) ... Setting up node-mute-stream (0.0.8+~0.0.1-3) ... Setting up node-memfs (3.4.12+~cs1.0.3-1) ... Setting up node-mimic-response (3.1.0-8) ... Setting up node-commander (9.4.1-1) ... Setting up libjs-typedarray-to-buffer (4.0.0-2) ... Setting up node-graceful-fs (4.2.10-1) ... Setting up node-merge-stream (2.0.0+~1.1.2-2) ... Setting up node-is-path-cwd (2.2.0-2) ... Setting up libxshmfence1:amd64 (1.3-1) ... Setting up libxcb-randr0:amd64 (1.15-1) ... Setting up node-jsonify (0.0.1-1) ... Setting up node-json-stable-stringify (1.0.2+repack1+~cs1.0.34-2) ... Setting up node-fast-levenshtein (2.0.6+ds-3) ... Setting up libjs-regenerate (1.4.2-3) ... Setting up node-aproba (2.0.0-3) ... Setting up node-unicode-property-aliases-ecmascript (2.1.0+ds-1) ... Setting up node-binary-extensions (2.2.0-2) ... Setting up node-is-plain-object (5.0.0-7) ... Setting up node-eslint-utils (3.0.0-3) ... Setting up libmd4c0:amd64 (0.4.8-1) ... Setting up node-path-dirname (1.0.2-2) ... Setting up node-ip-regex (4.3.0+~4.1.1-1) ... Setting up libx11-6:amd64 (2:1.8.6-1) ... Setting up node-spdx-license-ids (3.0.12-1) ... Setting up node-string-decoder (1.3.0-6) ... Setting up node-esutils (2.0.3+~2.0.0-1) ... Setting up node-time-stamp (2.2.0-2) ... Setting up node-commondir (1.0.1+~1.0.0-1) ... Setting up libjs-prettify (2015.12.04+dfsg-1.1) ... Setting up libjs-events (3.3.0+~3.0.0-3) ... Setting up node-run-queue (2.0.0-3) ... Setting up node-core-util-is (1.0.3-1) ... Setting up node-json-schema (0.4.0+~7.0.11-1) ... Setting up node-uri-js (4.4.0+dfsg-8) ... Setting up node-prelude-ls (1.2.1+dfsg-3) ... Setting up node-minimatch (5.1.1+~5.1.2-1) ... Setting up libjs-async (0.8.0-6) ... Setting up node-imurmurhash (0.1.4+dfsg+~0.1.1-2) ... Setting up node-xtend (4.0.2-3) ... Setting up node-set-immediate-shim (2.0.0-2) ... Setting up node-foreground-child (3.1.1-2) ... Setting up node-wordwrap (1.0.0-4) ... Setting up node-read (1.0.7-5) ... Setting up node-regexpp (3.2.0-4) ... Setting up node-is-arrayish (0.3.2-3) ... Setting up libdrm-common (2.4.115-1) ... Setting up node-base64-js (1.5.1+dfsg+~1.3.0-2) ... Setting up libxcomposite1:amd64 (1:0.4.5-1) ... Setting up node-esquery (1.4.2~ds-1) ... Setting up node-npm-run-path (5.1.0+~4.0.0-8) ... Setting up libevdev2:amd64 (1.13.1+dfsg-1) ... Setting up libxml2:amd64 (2.9.14+dfsg-1.3) ... Setting up fonts-noto-core (20201225-2) ... Setting up node-is-buffer (2.0.5-2) ... Setting up node-color-convert (2.0.1+~cs2.0.0-2) ... Setting up node-data-uri-to-buffer (4.0.0-4) ... Setting up libgudev-1.0-0:amd64 (238-2) ... Setting up node-async-each (1.0.3-3) ... Setting up node-isarray (2.0.5-4) ... Setting up node-osenv (0.1.5+~0.1.1-1) ... Setting up libhttp-parser2.9:amd64 (2.9.4-6) ... Setting up node-is-plain-obj (3.0.0-2) ... Setting up node-is-extglob (2.1.1-5) ... Setting up node-tapable (2.2.1-3) ... Setting up node-shebang-command (2.0.0-1) ... Setting up libjs-is-typedarray (1.0.0-4) ... Setting up node-lowercase-keys (2.0.0-2) ... Setting up libwacom-common (2.7.0-1) ... Setting up node-babel-plugin-add-module-exports (1.0.4+dfsg1~cs5.8.0-4) ... Setting up node-decompress-response (6.0.0-2) ... Setting up libxkbcommon0:amd64 (1.5.0-1) ... Setting up node-process-nextick-args (2.0.1-3) ... Setting up node-has-unicode (2.0.1-5) ... Setting up node-busboy (1.6.0+~cs2.6.0-2) ... Setting up gyp (0.1+20220404git9ecf45e-2) ... Setting up libwayland-client0:amd64 (1.22.0-2.1) ... Setting up libuv1-dev:amd64 (1.44.2-1) ... Setting up libxcb-dri3-0:amd64 (1.15-1) ... Setting up node-readable-stream (3.6.0+~cs3.0.0-4) ... Setting up libx11-xcb1:amd64 (2:1.8.6-1) ... Setting up libice6:amd64 (2:1.0.10-1) ... Setting up node-lru-cache (7.14.1-1) ... Setting up node-promise-retry (2.0.1-4) ... Setting up node-supports-color (8.1.1+~8.1.1-1) ... Setting up libmbedx509-1:amd64 (2.28.3-1) ... Setting up node-error-ex (1.3.2-4) ... Setting up libmbedtls14:amd64 (2.28.3-1) ... Setting up node-once (1.4.0-7) ... Setting up node-webpack-sources (3.2.3+~3.2.0-2) ... Setting up libxrender1:amd64 (1:0.9.10-1.1) ... Setting up node-n3 (1.16.3+~1.2.3+~1.10.4-1) ... Setting up libwacom9:amd64 (2.7.0-1) ... Setting up fontconfig-config (2.14.2-5) ... Setting up node-serialize-javascript (6.0.1-1) ... Setting up node-resolve (1.22.1+~cs5.31.10-1) ... Setting up node-are-we-there-yet (3.0.1+~1.1.0-1) ... Setting up node-find-up (6.3.0-7) ... Setting up libxext6:amd64 (2:1.3.4-1+b1) ... Setting up node-kind-of (6.0.3+dfsg-2) ... Setting up libobjc4:amd64 (13.2.0-3) ... Setting up node-is-binary-path (2.1.0-5) ... Setting up node-events (3.3.0+~3.0.0-3) ... Setting up node-minimist (1.2.7+~cs5.3.2-2) ... Setting up node-fancy-log (1.3.3+~cs1.3.1-2) ... Setting up pkgconf:amd64 (1.8.1-1) ... Setting up libxxf86vm1:amd64 (1:1.1.4-1+b2) ... Setting up libinput-bin (1.23.0-2) ... Setting up node-promzard (0.3.0-2) ... Setting up node-wcwidth.js (1.0.2-2) ... Setting up node-resolve-cwd (3.0.0-2) ... Setting up node-fetch (3.3.0+~cs11.4.11-2) ... Setting up node-babel7-runtime (7.20.15+ds1+~cs214.269.168-4) ... Setting up node-iconv-lite (0.6.3-3) ... Setting up node-type-check (0.4.0+dfsg-3) ... Setting up node-rechoir (0.8.0+~0.6.1-2) ... Setting up libfreetype6:amd64 (2.13.2+dfsg-1) ... Setting up node-ansi-styles (6.2.1-2) ... Setting up libxfixes3:amd64 (1:6.0.0-2) ... Setting up node-pkg-dir (5.0.0-2) ... Setting up shared-mime-info (2.2-1) ... Setting up libxkbcommon-x11-0:amd64 (1.5.0-1) ... Setting up node-async (0.8.0-6) ... Setting up node-optimist (0.6.1+~0.0.30-2) ... Setting up pkg-config:amd64 (1.8.1-1) ... Setting up node-spdx-expression-parse (3.0.1+~3.0.1-1) ... Setting up libqt5core5a:amd64 (5.15.10+dfsg-3) ... Setting up node-concat-stream (2.0.0+~2.0.0-2) ... Setting up node-is-typedarray (1.0.0-4) ... Setting up libllvm14:amd64 (1:14.0.6-16) ... Setting up node-undici (5.22.1+dfsg1+~cs20.10.10.2-1) ... Setting up libdrm2:amd64 (2.4.115-1) ... Setting up node-inflight (1.0.6-2) ... Setting up libqt5dbus5:amd64 (5.15.10+dfsg-3) ... Setting up libllvm15:amd64 (1:15.0.7-10) ... Setting up node-hosted-git-info (6.1.1-2) ... Setting up libharfbuzz0b:amd64 (8.0.1-1) ... Setting up libfontconfig1:amd64 (2.14.2-5) ... Setting up libstd-rust-1.67:amd64 (1.67.1+dfsg1-1) ... Setting up node-encoding (0.1.13-2) ... Setting up llvm-14-linker-tools (1:14.0.6-16) ... Setting up libsm6:amd64 (2:1.2.3-1) ... Setting up libgit2-1.5:amd64 (1.5.1+ds-1) ... Setting up node-slice-ansi (5.0.0+~cs9.0.0-5) ... Setting up libobjc-13-dev:amd64 (13.2.0-3) ... Setting up libdrm-amdgpu1:amd64 (2.4.115-1) ... Setting up node-fs-write-stream-atomic (1.0.10-6) ... Setting up libinput10:amd64 (1.23.0-2) ... Setting up fontconfig (2.14.2-5) ... Regenerating fonts cache... done. Setting up libdrm-nouveau2:amd64 (2.4.115-1) ... Setting up node-end-of-stream (1.4.4+~1.4.1-1) ... Setting up node-pump (3.0.0-5) ... Setting up libgbm1:amd64 (23.1.7-1) ... Setting up node-regenerator-transform (0.15.1+~0.10.8-1) ... Setting up libdrm-radeon1:amd64 (2.4.115-1) ... Setting up libdrm-intel1:amd64 (2.4.115-1) ... Setting up libgl1-mesa-dri:amd64 (23.1.7-1) ... Setting up libclang1-14 (1:14.0.6-16) ... Setting up libqt5network5:amd64 (5.15.10+dfsg-3) ... Setting up node-levn (0.4.1+dfsg-2) ... Setting up libstd-rust-dev:amd64 (1.67.1+dfsg1-1) ... Setting up node-spdx-correct (3.1.1-2) ... Setting up libegl-mesa0:amd64 (23.1.7-1) ... Setting up node-glob (8.0.3+~cs8.4.15-1) ... Setting up node-get-stream (6.0.1-1) ... Setting up node-got (11.8.5+~cs58.13.36-3) ... Setting up libclang-common-14-dev (1:14.0.6-16) ... Setting up libclang-cpp14 (1:14.0.6-16) ... Setting up node-typedarray-to-buffer (4.0.0-2) ... Setting up rustc (1.67.1+dfsg1-1) ... Setting up node-minipass (3.3.6+~cs9.4.19-1) ... Setting up libegl1:amd64 (1.6.0-1) ... Setting up node-validate-npm-package-license (3.0.4-2) ... Setting up node-optionator (0.9.1+dfsg+~cs1.2.3-1) ... Setting up node-ssri (9.0.1-2) ... Setting up libglx-mesa0:amd64 (23.1.7-1) ... Setting up clang-14 (1:14.0.6-16) ... Setting up libglx0:amd64 (1.6.0-1) ... Setting up node-write-file-atomic (4.0.2+~4.0.0-2) ... Setting up cargo (0.66.0+ds1-1) ... Setting up libgl1:amd64 (1.6.0-1) ... Setting up clang (1:14.0-55.7) ... Setting up libqt5gui5:amd64 (5.15.10+dfsg-3) ... Setting up node-acorn (8.8.1+ds+~cs25.17.7-2) ... Setting up node-espree (9.4.1~dfsg-2) ... Setting up libnode108:amd64 (18.13.0+dfsg1-1) ... Setting up nodejs (18.13.0+dfsg1-1) ... update-alternatives: using /usr/bin/nodejs to provide /usr/bin/js (js) in auto mode Setting up node-argparse (2.0.1-2) ... Setting up terser (5.19.2-1) ... Setting up node-mime (3.0.0+dfsg+~cs6.97.2-1) ... Setting up node-source-map-support (0.5.21+ds+~0.5.4-1) ... Setting up node-unique-filename (1.1.1+ds-2) ... Setting up node-unicode-match-property-ecmascript (2.0.0-2) ... Setting up node-defined (1.0.1+~1.0.0-1) ... Setting up node-mime-types (2.1.35-1) ... Setting up node-ansi-escapes (5.0.0+really.4.3.1-1) ... Setting up node-strip-ansi (6.0.1-2) ... Setting up node-write (2.0.0~6.0.1+~3.0.4+~2.0.0+~1.0.0+~2.0.1-1) ... Setting up node-ignore (5.2.1-1) ... Setting up node-chalk (5.2.0-1) ... Setting up node-which (2.0.2+~cs1.3.2-3) ... Setting up node-css-selector-tokenizer (0.8.0+~cs4.8.3-1) ... Setting up node-esprima (4.0.1+ds+~4.0.3-2) ... Setting up node-is-path-inside (3.0.3-2) ... Setting up node-neo-async (2.6.2+~cs3.0.0-2) ... Setting up node-mkdirp (1.0.4+~1.0.2-4) ... Setting up node-es6-error (4.1.1-5) ... Setting up node-archy (1.0.0-6) ... Setting up node-js-yaml (4.1.0+dfsg+~4.0.5-7) ... Setting up node-nopt (5.0.0-4) ... Setting up node-lodash (4.17.21+dfsg+~cs8.31.198.20210220-9) ... Setting up node-progress (2.0.3-2) ... Setting up node-json5 (2.2.3+dfsg-1) ... Setting up node-ms (2.1.3+~cs0.7.31-3) ... Setting up node-rimraf (3.0.2-2) ... Setting up node-string-width (4.2.3+~cs13.2.3-1) ... Setting up node-regenerate (1.4.2-3) ... Setting up node-semver (7.5.4+~7.5.0-2) ... Setting up node-picocolors (1.0.0-4) ... Setting up node-es-abstract (1.20.4+~cs26.27.47-1) ... Setting up node-builtins (5.0.1-1) ... Setting up handlebars (3:4.7.7+~4.1.0-1) ... Setting up node-object-assign (4.1.1-7) ... Setting up node-is-glob (4.0.3-2) ... Setting up node-v8-compile-cache (2.3.0-3) ... Setting up node-flat-cache (3.0.4~6.0.1+~3.0.4+~2.0.0+~1.0.0+~2.0.1-1) ... Setting up node-is-number (7.0.0-4) ... Setting up node-for-in (1.0.2-4) ... Setting up node-webassemblyjs (1.11.4+dfsg+~cs10.11.17-2) ... Setting up node-define-properties (1.1.4+~1.1.3-1) ... Setting up node-strip-json-comments (4.0.0-4) ... Setting up libnode-dev (18.13.0+dfsg1-1) ... Setting up node-is-extendable (1.0.1-3) ... Setting up node-columnify (1.6.0+~1.5.1-1) ... Setting up node-doctrine (3.0.0-4) ... Setting up node-copy-concurrently (1.0.5-9) ... Setting up node-ajv (6.12.6-3) ... Setting up node-jsesc (3.0.2+~3.0.1-1) ... Setting up node-regjsparser (0.9.1+ds-2) ... Setting up node-errno (1.0.0-3) ... Setting up node-decamelize (4.0.0-2) ... Setting up node-move-concurrently (1.0.1-5) ... Setting up node-normalize-path (3.0.0+~3.0.0-1) ... Setting up node-functional-red-black-tree (1.0.1+20181105-7) ... Setting up node-debug (4.3.4+~cs4.1.7-1) ... Setting up node-agent-base (6.0.2+~cs5.4.2-2) ... Setting up node-browserslist (4.21.4+~cs6.1.17-2) ... Setting up node-yargs-parser (21.1.1+~21.0.0-4) ... Setting up node-make-dir (3.1.0-3) ... Setting up node-validate-npm-package-name (5.0.0+~4.0.0-1) ... Setting up node-esrecurse (4.3.0-2) ... Setting up node-file-entry-cache (6.0.1+~3.0.4+~2.0.0+~1.0.0+~2.0.1-1) ... Setting up node-wrap-ansi (8.0.1+~8.0.1-3) ... Setting up node-normalize-package-data (4.0.1+~2.4.1-1) ... Setting up node-for-own (1.0.0-3) ... Setting up node-eslint-scope (7.1.1+~3.7.4-1) ... Setting up node-escodegen (2.0.0+dfsg+~0.0.7-2) ... Setting up node-memory-fs (0.5.0+~0.3.3-2) ... Setting up node-babel-helper-define-polyfill-provider (0.3.3~0~20220913+ds1-1) ... Setting up node-cli-table (0.3.11+~cs0.13.4-3) ... Setting up node-tar (6.1.13+~cs7.0.5-1) ... Setting up node-regenerate-unicode-properties (10.1.0+ds-1) ... Setting up node-glob-parent (6.0.2+~5.1.1-2) ... Setting up node-enhanced-resolve (5.10.0-1) ... Setting up node-postcss (8.4.20+~cs8.0.23-1) ... Setting up node-wide-align (1.1.3-4) ... Setting up node-npm-package-arg (10.0.0+~3.0.0-2) ... Setting up node-anymatch (3.1.3+~cs4.6.1-2) ... Setting up node-postcss-modules-extract-imports (3.0.0-2) ... Setting up node-debbundle-es-to-primitive (1.2.1+~cs9.7.25-2) ... Setting up node-https-proxy-agent (5.0.1+~cs8.0.0-3) ... Setting up node-cliui (7.0.4+repack+~cs3.1.0-4) ... Setting up node-deep-equal (2.1.0+~cs31.12.80-1) ... Setting up node-regexpu-core (5.2.2-3) ... Setting up node-yargs (16.2.0+~16.0.4-7) ... Setting up node-to-regex-range (5.0.1-4) ... Setting up node-cacache (17.0.3+~cs10.3.7-1) ... Setting up node-babel-plugin-polyfill-corejs2 (0.3.3~0~20220913+ds1-1) ... Setting up node-ajv-keywords (3.5.2-2) ... Setting up node-read-package-json (5.0.2+~2.0.0-1) ... Setting up node-core-js-compat (3.26.1-3) ... Setting up node-clone-deep (4.0.1+~cs7.0.2-1) ... Setting up eslint (6.4.0~dfsg+~6.1.9-7) ... Setting up libjs-util (0.12.5+~1.0.10-1) ... Setting up node-babel-plugin-polyfill-regenerator (0.4.1~0~20220913+ds1-1) ... Setting up node-gauge (4.0.4-2) ... Setting up node-readdirp (3.6.0-1) ... Setting up node-icss-utils (5.1.0+~5.1.0-1) ... Setting up node-npm-bundled (2.0.1-2) ... Setting up node-schema-utils (3.1.1~ds-2) ... Setting up node-jest-worker (29.6.2~ds1+~cs73.45.28-2) ... Setting up node-npmlog (7.0.1+~4.1.4-1) ... Setting up node-babel-plugin-polyfill-corejs3 (0.6.0~0~20220913+ds1-1) ... Setting up node-postcss-modules-values (4.0.0+~4.0.0-1) ... Setting up node-fill-range (7.0.1+~7.0.0-1) ... Setting up node-util (0.12.5+~1.0.10-1) ... Setting up node-assert (2.0.0+~cs3.9.8-2) ... Setting up node-gyp (9.3.0-2) ... Setting up node-braces (3.0.2+~3.0.1-1) ... Setting up node-chokidar (3.5.3-2) ... Setting up node-watchpack (2.4.0+~cs2.8.1-1) ... Setting up node-micromatch (4.0.5+~4.0.2-1) ... Setting up node-globby (13.1.3+~cs16.25.40-1) ... Setting up node-del (7.0.0-5) ... Setting up node-find-cache-dir (3.3.2+~3.2.1-1) ... Setting up node-babel7 (7.20.15+ds1+~cs214.269.168-4) ... update-alternatives: using /usr/bin/babeljs-7 to provide /usr/bin/babeljs (babeljs) in auto mode update-alternatives: using /usr/bin/babeljs-7-external-helpers to provide /usr/bin/babeljs-external-helpers (babeljs-external-helpers) in auto mode update-alternatives: using /usr/bin/babeljs-7-node to provide /usr/bin/babeljs-node (babeljs-node) in auto mode update-alternatives: using /usr/bin/babeljs-7-parser to provide /usr/bin/babeljs-parser (babeljs-parser) in auto mode Setting up node-babel-plugin-lodash (3.3.4+~cs2.0.1-7) ... Setting up node-jest-debbundle (29.6.2~ds1+~cs73.45.28-2) ... Setting up node-parse-json (5.2.0+~cs5.1.7-1) ... Setting up node-read-pkg (5.2.0-2) ... Setting up node-istanbul (0.4.5+repack10+~cs98.25.59-2) ... Setting up node-tape (5.6.1+~cs8.20.19-1) ... Setting up webpack (5.76.1+dfsg1+~cs17.16.16-1) ... Setting up node-css-loader (6.7.2+~cs14.0.11-1) ... Setting up npm (9.2.0~ds1-1) ... Processing triggers for libc-bin (2.37-7) ... Processing triggers for udev (254.1-3) ... [#1055776] 2023/09/11 01:14:45 Cloning repositories Cloning into 'nabijaczleweli.github.io'... + cd nabijaczleweli.github.io + git checkout -q e2fc4227ab324eb605b6419866861bbd2beee018 + cd nabijaczleweli.github.io + git submodule update --init --recursive Submodule 'ext/octicons' (https://github.com/primer/octicons) registered for path 'ext/octicons' Submodule 'ext/prism' (https://github.com/PrismJS/prism) registered for path 'ext/prism' Cloning into '/home/build/nabijaczleweli.github.io/ext/octicons'... Cloning into '/home/build/nabijaczleweli.github.io/ext/prism'... Submodule path 'ext/octicons': checked out 'd5dffe2d5f2292fb8537784f222d1263b7ee0377' Submodule path 'ext/prism': checked out 'e6b2c6fc31eaaff734d5934aa187f0c20c6f0ce9' [#1055776] 2023/09/11 01:16:17 Running task install [#1055776] 2023/09/11 01:30:47 Running task build [#1055776] 2023/09/11 01:34:59 Running task push |
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 |
+ CALIBRE_VERSION=3.47.1 + cargo install gen-epub-book Updating crates.io index Downloading crates ... Downloaded gen-epub-book v2.3.2 Installing gen-epub-book v2.3.2 Downloading crates ... Downloaded memchr v2.6.3 Downloaded openssl-macros v0.1.1 Downloaded once_cell v1.18.0 Downloaded foreign-types-shared v0.1.1 Downloaded native-tls v0.2.11 Downloaded openssl v0.10.57 Downloaded http-body v0.1.0 Downloaded form_urlencoded v1.2.0 Downloaded vec_map v0.8.2 Downloaded indexmap v1.9.3 Downloaded unicode-xid v0.2.4 Downloaded either v1.9.0 Downloaded slab v0.4.9 Downloaded failure_derive v0.1.8 Downloaded rand_pcg v0.1.2 Downloaded tinyvec_macros v0.1.1 Downloaded tokio-executor v0.1.10 Downloaded scopeguard v1.2.0 Downloaded maybe-uninit v2.0.0 Downloaded lazy_static v1.4.0 Downloaded version_check v0.9.4 Downloaded matches v0.1.10 Downloaded autocfg v0.1.8 Downloaded memoffset v0.5.6 Downloaded try-lock v0.2.4 Downloaded crossbeam-queue v0.2.3 Downloaded phf v0.7.24 Downloaded cfg-if v1.0.0 Downloaded rand_xorshift v0.1.1 Downloaded rustc_version v0.2.3 Downloaded itoa v0.4.8 Downloaded semver-parser v0.7.0 Downloaded openssl-probe v0.1.5 Downloaded atty v0.2.14 Downloaded fnv v1.0.7 Downloaded strsim v0.8.0 Downloaded foreign-types v0.3.2 Downloaded adler v1.0.2 Downloaded rand_hc v0.1.0 Downloaded unicode-width v0.1.10 Downloaded rustc-demangle v0.1.23 Downloaded dtoa v0.4.8 Downloaded percent-encoding v2.3.0 Downloaded tokio-reactor v0.1.12 Downloaded num_cpus v1.16.0 Downloaded crossbeam-deque v0.7.4 Downloaded phf_codegen v0.7.24 Downloaded httparse v1.8.0 Downloaded mime v0.3.17 Downloaded mime_guess v2.0.4 Downloaded rand_isaac v0.1.1 Downloaded tokio-current-thread v0.1.7 Downloaded itoa v1.0.9 Downloaded textwrap v0.11.0 Downloaded synstructure v0.12.6 Downloaded cfg-if v0.1.10 Downloaded semver v0.9.0 Downloaded time v0.1.45 Downloaded crc32fast v1.3.2 Downloaded iana-time-zone v0.1.57 Downloaded failure v0.1.8 Downloaded bitflags v1.3.2 Downloaded proc-macro2 v1.0.66 Downloaded publicsuffix v1.5.6 Downloaded autocfg v1.1.0 Downloaded crossbeam-utils v0.7.2 Downloaded ryu v1.0.15 Downloaded rand_core v0.3.1 Downloaded unicase v2.7.0 Downloaded unicode-ident v1.0.11 Downloaded rand_os v0.1.3 Downloaded byteorder v1.4.3 Downloaded pkg-config v0.3.27 Downloaded unicode-bidi v0.3.13 Downloaded iovec v0.1.4 Downloaded ansi_term v0.12.1 Downloaded serde_derive v1.0.188 Downloaded flate2 v1.0.27 Downloaded quote v1.0.33 Downloaded addr2line v0.21.0 Downloaded bitflags v2.4.0 Downloaded url v2.4.1 Downloaded num-traits v0.2.16 Downloaded miniz_oxide v0.7.1 Downloaded serde v1.0.188 Downloaded bytes v0.4.12 Downloaded log v0.4.20 Downloaded unicase v1.4.2 Downloaded phf_shared v0.7.24 Downloaded version_check v0.1.5 Downloaded try_from v0.3.2 Downloaded string v0.2.1 Downloaded want v0.2.0 Downloaded phf_generator v0.7.24 Downloaded tokio-tcp v0.1.4 Downloaded siphasher v0.2.3 Downloaded percent-encoding v1.0.1 Downloaded mime v0.2.6 Downloaded tokio-buf v0.1.1 Downloaded cookie v0.12.0 Downloaded backtrace v0.3.69 Downloaded rand_jitter v0.1.4 Downloaded podio v0.1.7 Downloaded futures-cpupool v0.1.8 Downloaded bzip2 v0.3.3 Downloaded log v0.3.9 Downloaded lock_api v0.3.4 Downloaded serde_urlencoded v0.5.5 Downloaded hashbrown v0.12.3 Downloaded cc v1.0.83 Downloaded rand_chacha v0.1.1 Downloaded msdos_time v0.1.6 Downloaded hyper-tls v0.3.2 Downloaded mime_guess v1.8.8 Downloaded net2 v0.2.39 Downloaded rand_core v0.4.2 Downloaded mio v0.6.23 Downloaded base64 v0.10.1 Downloaded parking_lot_core v0.6.3 Downloaded uuid v0.7.4 Downloaded zip v0.4.2 Downloaded cookie_store v0.7.0 Downloaded openssl-sys v0.9.93 Downloaded tokio-timer v0.2.13 Downloaded tinyvec v1.6.0 Downloaded smallvec v0.6.14 Downloaded parking_lot v0.9.0 Downloaded unicode-normalization v0.1.22 Downloaded tokio-io v0.1.13 Downloaded tokio-sync v0.1.8 Downloaded aho-corasick v1.0.5 Downloaded crossbeam-epoch v0.8.2 Downloaded reqwest v0.9.24 Downloaded clap v2.34.0 Downloaded hyper v0.12.36 Downloaded chrono v0.4.30 Downloaded rand v0.6.5 Downloaded idna v0.2.3 Downloaded idna v0.4.0 Downloaded serde_json v1.0.106 Downloaded tokio-threadpool v0.1.18 Downloaded tokio v0.1.22 Downloaded url v1.7.2 Downloaded futures v0.1.31 Downloaded libc v0.2.147 Downloaded bzip2-sys v0.1.11+1.0.8 Downloaded syn v1.0.109 Downloaded http v0.1.21 Downloaded vcpkg v0.2.15 Downloaded regex v1.9.5 Downloaded gimli v0.28.0 Downloaded syn v2.0.32 Downloaded h2 v0.1.26 Downloaded object v0.32.1 Downloaded idna v0.1.5 Downloaded regex-syntax v0.7.5 Downloaded regex-automata v0.3.8 Downloaded encoding_rs v0.8.33 Compiling libc v0.2.147 Compiling autocfg v1.1.0 Compiling autocfg v0.1.8 Compiling cfg-if v0.1.10 Compiling cc v1.0.83 Compiling proc-macro2 v1.0.66 Compiling unicode-ident v1.0.11 Compiling futures v0.1.31 Compiling log v0.4.20 Compiling semver-parser v0.7.0 Compiling semver v0.9.0 Compiling quote v1.0.33 Compiling crossbeam-utils v0.7.2 Compiling maybe-uninit v2.0.0 Compiling rustc_version v0.2.3 Compiling iovec v0.1.4 Compiling pkg-config v0.3.27 Compiling lazy_static v1.4.0 Compiling rand_core v0.4.2 Compiling byteorder v1.4.3 Compiling version_check v0.1.5 Compiling unicase v1.4.2 Compiling rand_chacha v0.1.1 Compiling rand_pcg v0.1.2 Compiling either v1.9.0 Compiling slab v0.4.9 Compiling bytes v0.4.12 Compiling tinyvec_macros v0.1.1 Compiling tinyvec v1.6.0 Compiling rand v0.6.5 Compiling scopeguard v1.2.0 Compiling cfg-if v1.0.0 Compiling unicode-normalization v0.1.22 Compiling rand_core v0.3.1 Compiling syn v2.0.32 Compiling unicode-bidi v0.3.13 Compiling fnv v1.0.7 Compiling tokio-executor v0.1.10 Compiling parking_lot_core v0.6.3 Compiling memoffset v0.5.6 Compiling version_check v0.9.4 Compiling vcpkg v0.2.15 Compiling unicase v2.7.0 Compiling openssl-sys v0.9.93 Compiling smallvec v0.6.14 Compiling parking_lot v0.9.0 Compiling num_cpus v1.16.0 Compiling crossbeam-epoch v0.8.2 Compiling matches v0.1.10 Compiling memchr v2.6.3 Compiling lock_api v0.3.4 Compiling tokio-io v0.1.13 Compiling net2 v0.2.39 Compiling time v0.1.45 Compiling siphasher v0.2.3 Compiling itoa v0.4.8 Compiling adler v1.0.2 Compiling syn v1.0.109 Compiling miniz_oxide v0.7.1 Compiling phf_shared v0.7.24 Compiling mio v0.6.23 Compiling tokio-sync v0.1.8 Compiling rand_isaac v0.1.1 Compiling rand_hc v0.1.0 Compiling rand_xorshift v0.1.1 Compiling rand_jitter v0.1.4 Compiling rand_os v0.1.3 Compiling indexmap v1.9.3 Compiling serde v1.0.188 Compiling tokio-reactor v0.1.12 Compiling crossbeam-deque v0.7.4 Compiling http v0.1.21 Compiling idna v0.1.5 Compiling serde_derive v1.0.188 Compiling crossbeam-queue v0.2.3 Compiling backtrace v0.3.69 Compiling percent-encoding v2.3.0 Compiling hashbrown v0.12.3 Compiling foreign-types-shared v0.1.1 Compiling unicode-xid v0.2.4 Compiling openssl v0.10.57 Compiling httparse v1.8.0 Compiling percent-encoding v1.0.1 Compiling gimli v0.28.0 Compiling crc32fast v1.3.2 Compiling failure_derive v0.1.8 Compiling addr2line v0.21.0 Compiling url v1.7.2 Compiling synstructure v0.12.6 Compiling foreign-types v0.3.2 Compiling form_urlencoded v1.2.0 Compiling tokio-threadpool v0.1.18 Compiling phf_generator v0.7.24 Compiling tokio-tcp v0.1.4 Compiling object v0.32.1 Compiling openssl-macros v0.1.1 Compiling tokio-timer v0.2.13 Compiling tokio-current-thread v0.1.7 Compiling idna v0.4.0 Compiling string v0.2.1 Compiling tokio-buf v0.1.1 Compiling bzip2-sys v0.1.11+1.0.8 Compiling hyper v0.12.36 Compiling try-lock v0.2.4 Compiling serde_json v1.0.106 Compiling bitflags v2.4.0 Compiling rustc-demangle v0.1.23 Compiling native-tls v0.2.11 Compiling once_cell v1.18.0 Compiling want v0.2.0 Compiling http-body v0.1.0 Compiling h2 v0.1.26 Compiling url v2.4.1 Compiling tokio v0.1.22 Compiling phf_codegen v0.7.24 Compiling mime_guess v2.0.4 Compiling phf v0.7.24 Compiling idna v0.2.3 Compiling futures-cpupool v0.1.8 Compiling num-traits v0.2.16 Compiling itoa v1.0.9 Compiling openssl-probe v0.1.5 Compiling ryu v1.0.15 Compiling publicsuffix v1.5.6 Compiling mime_guess v1.8.8 Compiling flate2 v1.0.27 Compiling failure v0.1.8 Compiling cookie v0.12.0 Compiling aho-corasick v1.0.5 Compiling log v0.3.9 Compiling try_from v0.3.2 Compiling unicode-width v0.1.10 Compiling regex-syntax v0.7.5 Compiling dtoa v0.4.8 Compiling mime v0.3.17 Compiling serde_urlencoded v0.5.5 Compiling regex-automata v0.3.8 Compiling textwrap v0.11.0 Compiling cookie_store v0.7.0 Compiling mime v0.2.6 Compiling bzip2 v0.3.3 Compiling hyper-tls v0.3.2 Compiling uuid v0.7.4 Compiling msdos_time v0.1.6 Compiling encoding_rs v0.8.33 Compiling base64 v0.10.1 Compiling atty v0.2.14 Compiling ansi_term v0.12.1 Compiling strsim v0.8.0 Compiling iana-time-zone v0.1.57 Compiling vec_map v0.8.2 Compiling podio v0.1.7 Compiling bitflags v1.3.2 Compiling clap v2.34.0 Compiling zip v0.4.2 Compiling chrono v0.4.30 Compiling reqwest v0.9.24 Compiling regex v1.9.5 Compiling gen-epub-book v2.3.2 Finished release [optimized] target(s) in 6m 33s Installing /home/build/.cargo/bin/gen-epub-book Installed package `gen-epub-book v2.3.2` (executable `gen-epub-book`) warning: be sure to add `/home/build/.cargo/bin` to your PATH to be able to run the installed binaries + curl -SOL https://download.calibre-ebook.com/3.47.1/calibre-3.47.1-x86_64.txz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 59.5M 0 191k 0 0 238k 0 0:04:15 --:--:-- 0:04:15 238k 0 59.5M 0 415k 0 0 234k 0 0:04:20 0:00:01 0:04:19 233k 0 59.5M 0 591k 0 0 212k 0 0:04:47 0:00:02 0:04:45 212k 1 59.5M 1 767k 0 0 201k 0 0:05:01 0:00:03 0:04:58 201k 1 59.5M 1 879k 0 0 183k 0 0:05:33 0:00:04 0:05:29 183k 1 59.5M 1 975k 0 0 168k 0 0:06:02 0:00:05 0:05:57 157k 1 59.5M 1 1151k 0 0 169k 0 0:05:58 0:00:06 0:05:52 147k 2 59.5M 2 1327k 0 0 170k 0 0:05:57 0:00:07 0:05:50 147k 2 59.5M 2 1504k 0 0 170k 0 0:05:57 0:00:08 0:05:49 147k 2 59.5M 2 1711k 0 0 175k 0 0:05:48 0:00:09 0:05:39 167k 3 59.5M 3 1919k 0 0 177k 0 0:05:42 0:00:10 0:05:32 188k 3 59.5M 3 2063k 0 0 175k 0 0:05:47 0:00:11 0:05:36 182k 3 59.5M 3 2159k 0 0 168k 0 0:06:01 0:00:12 0:05:49 166k 3 59.5M 3 2255k 0 0 162k 0 0:06:14 0:00:13 0:06:01 149k 3 59.5M 3 2367k 0 0 160k 0 0:06:20 0:00:14 0:06:06 131k 4 59.5M 4 2479k 0 0 156k 0 0:06:28 0:00:15 0:06:13 111k 4 59.5M 4 2639k 0 0 157k 0 0:06:27 0:00:16 0:06:11 115k 4 59.5M 4 2767k 0 0 155k 0 0:06:31 0:00:17 0:06:14 121k 4 59.5M 4 2943k 0 0 156k 0 0:06:29 0:00:18 0:06:11 138k 5 59.5M 5 3087k 0 0 155k 0 0:06:31 0:00:19 0:06:12 143k 5 59.5M 5 3215k 0 0 154k 0 0:06:34 0:00:20 0:06:14 147k 5 59.5M 5 3343k 0 0 153k 0 0:06:37 0:00:21 0:06:16 139k 5 59.5M 5 3520k 0 0 154k 0 0:06:34 0:00:22 0:06:12 150k 6 59.5M 6 3679k 0 0 154k 0 0:06:34 0:00:23 0:06:11 147k 6 59.5M 6 3871k 0 0 156k 0 0:06:30 0:00:24 0:06:06 157k 6 59.5M 6 3983k 0 0 154k 0 0:06:34 0:00:25 0:06:09 153k 6 59.5M 6 4096k 0 0 152k 0 0:06:39 0:00:26 0:06:13 150k 6 59.5M 6 4239k 0 0 152k 0 0:06:39 0:00:27 0:06:12 143k 7 59.5M 7 4383k 0 0 152k 0 0:06:40 0:00:28 0:06:12 140k 7 59.5M 7 4527k 0 0 152k 0 0:06:41 0:00:29 0:06:12 131k 7 59.5M 7 4736k 0 0 153k 0 0:06:36 0:00:30 0:06:06 150k 8 59.5M 8 4928k 0 0 154k 0 0:06:33 0:00:31 0:06:02 166k 8 59.5M 8 5167k 0 0 157k 0 0:06:26 0:00:32 0:05:54 185k 8 59.5M 8 5407k 0 0 160k 0 0:06:21 0:00:33 0:05:48 205k 9 59.5M 9 5663k 0 0 162k 0 0:06:14 0:00:34 0:05:40 226k 9 59.5M 9 5855k 0 0 163k 0 0:06:12 0:00:35 0:05:37 224k 9 59.5M 9 5952k 0 0 161k 0 0:06:17 0:00:36 0:05:41 204k 9 59.5M 9 6031k 0 0 159k 0 0:06:22 0:00:37 0:05:45 171k 10 59.5M 10 6144k 0 0 158k 0 0:06:25 0:00:38 0:05:47 146k 10 59.5M 10 6255k 0 0 157k 0 0:06:27 0:00:39 0:05:48 118k 10 59.5M 10 6336k 0 0 155k 0 0:06:32 0:00:40 0:05:52 97919 10 59.5M 10 6511k 0 0 155k 0 0:06:31 0:00:41 0:05:50 112k 10 59.5M 10 6639k 0 0 155k 0 0:06:33 0:00:42 0:05:51 121k 11 59.5M 11 6752k 0 0 154k 0 0:06:35 0:00:43 0:05:52 122k 11 59.5M 11 6863k 0 0 153k 0 0:06:38 0:00:44 0:05:54 120k 11 59.5M 11 6975k 0 0 152k 0 0:06:41 0:00:45 0:05:56 126k 11 59.5M 11 7039k 0 0 150k 0 0:06:45 0:00:46 0:05:59 105k 11 59.5M 11 7167k 0 0 150k 0 0:06:46 0:00:47 0:05:59 106k 12 59.5M 12 7359k 0 0 150k 0 0:06:44 0:00:48 0:05:56 120k 12 59.5M 12 7631k 0 0 153k 0 0:06:37 0:00:49 0:05:48 154k 12 59.5M 12 7871k 0 0 154k 0 0:06:33 0:00:50 0:05:43 182k 13 59.5M 13 8079k 0 0 156k 0 0:06:30 0:00:51 0:05:39 208k 13 59.5M 13 8271k 0 0 156k 0 0:06:29 0:00:52 0:05:37 220k 13 59.5M 13 8480k 0 0 157k 0 0:06:26 0:00:53 0:05:33 223k 14 59.5M 14 8655k 0 0 157k 0 0:06:25 0:00:54 0:05:31 205k 14 59.5M 14 8783k 0 0 157k 0 0:06:27 0:00:55 0:05:32 182k 14 59.5M 14 8895k 0 0 156k 0 0:06:29 0:00:56 0:05:33 163k 14 59.5M 14 8992k 0 0 155k 0 0:06:31 0:00:57 0:05:34 143k 14 59.5M 14 9135k 0 0 155k 0 0:06:32 0:00:58 0:05:34 131k 15 59.5M 15 9407k 0 0 157k 0 0:06:27 0:00:59 0:05:28 149k 15 59.5M 15 9647k 0 0 158k 0 0:06:24 0:01:00 0:05:24 170k 16 59.5M 16 9791k 0 0 158k 0 0:06:24 0:01:01 0:05:23 178k 16 59.5M 16 9903k 0 0 157k 0 0:06:26 0:01:02 0:05:24 181k 16 59.5M 16 9.8M 0 0 157k 0 0:06:26 0:01:03 0:05:23 185k 16 59.5M 16 9.9M 0 0 157k 0 0:06:27 0:01:04 0:05:23 160k 16 59.5M 16 10.0M 0 0 157k 0 0:06:28 0:01:05 0:05:23 139k 17 59.5M 17 10.2M 0 0 156k 0 0:06:28 0:01:06 0:05:22 137k 17 59.5M 17 10.4M 0 0 157k 0 0:06:26 0:01:07 0:05:19 159k 17 59.5M 17 10.6M 0 0 158k 0 0:06:23 0:01:08 0:05:15 173k 18 59.5M 18 10.7M 0 0 158k 0 0:06:25 0:01:09 0:05:16 168k 18 59.5M 18 10.9M 0 0 158k 0 0:06:24 0:01:10 0:05:14 175k 18 59.5M 18 11.1M 0 0 158k 0 0:06:23 0:01:11 0:05:12 186k 19 59.5M 19 11.3M 0 0 159k 0 0:06:22 0:01:12 0:05:10 179k 19 59.5M 19 11.5M 0 0 160k 0 0:06:20 0:01:13 0:05:07 181k 19 59.5M 19 11.7M 0 0 160k 0 0:06:20 0:01:14 0:05:06 190k 19 59.5M 19 11.8M 0 0 160k 0 0:06:21 0:01:15 0:05:06 182k 20 59.5M 20 11.9M 0 0 159k 0 0:06:22 0:01:16 0:05:06 166k 20 59.5M 20 12.0M 0 0 158k 0 0:06:24 0:01:17 0:05:07 150k 20 59.5M 20 12.1M 0 0 158k 0 0:06:25 0:01:18 0:05:07 128k 20 59.5M 20 12.3M 0 0 158k 0 0:06:23 0:01:19 0:05:04 137k 21 59.5M 21 12.6M 0 0 160k 0 0:06:19 0:01:20 0:04:59 173k 21 59.5M 21 13.0M 0 0 163k 0 0:06:13 0:01:21 0:04:52 221k 22 59.5M 22 13.2M 0 0 164k 0 0:06:11 0:01:22 0:04:49 245k 22 59.5M 22 13.4M 0 0 164k 0 0:06:11 0:01:23 0:04:48 255k 22 59.5M 22 13.5M 0 0 163k 0 0:06:11 0:01:24 0:04:47 244k 23 59.5M 23 13.7M 0 0 164k 0 0:06:10 0:01:25 0:04:45 226k 23 59.5M 23 13.9M 0 0 165k 0 0:06:09 0:01:26 0:04:43 197k 23 59.5M 23 14.2M 0 0 165k 0 0:06:08 0:01:27 0:04:41 192k 24 59.5M 24 14.4M 0 0 166k 0 0:06:06 0:01:28 0:04:38 201k 24 59.5M 24 14.6M 0 0 167k 0 0:06:04 0:01:29 0:04:35 226k 25 59.5M 25 15.0M 0 0 169k 0 0:06:00 0:01:30 0:04:30 248k 25 59.5M 25 15.2M 0 0 169k 0 0:05:58 0:01:31 0:04:27 252k 25 59.5M 25 15.3M 0 0 169k 0 0:05:59 0:01:32 0:04:27 240k 26 59.5M 26 15.5M 0 0 169k 0 0:06:00 0:01:33 0:04:27 222k 26 59.5M 26 15.6M 0 0 168k 0 0:06:01 0:01:34 0:04:27 192k 26 59.5M 26 15.7M 0 0 168k 0 0:06:01 0:01:35 0:04:26 161k 26 59.5M 26 15.9M 0 0 168k 0 0:06:01 0:01:36 0:04:25 147k 26 59.5M 26 16.0M 0 0 168k 0 0:06:02 0:01:37 0:04:25 142k 27 59.5M 27 16.1M 0 0 167k 0 0:06:04 0:01:38 0:04:26 133k 27 59.5M 27 16.2M 0 0 166k 0 0:06:06 0:01:39 0:04:27 121k 27 59.5M 27 16.3M 0 0 165k 0 0:06:08 0:01:40 0:04:28 105k 27 59.5M 27 16.4M 0 0 165k 0 0:06:09 0:01:41 0:04:28 95190 27 59.5M 27 16.5M 0 0 164k 0 0:06:10 0:01:42 0:04:28 92471 27 59.5M 27 16.6M 0 0 164k 0 0:06:11 0:01:43 0:04:28 96158 28 59.5M 28 16.7M 0 0 163k 0 0:06:12 0:01:44 0:04:28 111k 28 59.5M 28 16.9M 0 0 163k 0 0:06:12 0:01:45 0:04:27 121k 28 59.5M 28 17.0M 0 0 163k 0 0:06:13 0:01:46 0:04:27 124k 28 59.5M 28 17.1M 0 0 162k 0 0:06:14 0:01:47 0:04:27 130k 28 59.5M 28 17.2M 0 0 162k 0 0:06:15 0:01:48 0:04:27 128k 29 59.5M 29 17.3M 0 0 161k 0 0:06:17 0:01:49 0:04:28 115k 29 59.5M 29 17.4M 0 0 160k 0 0:06:18 0:01:50 0:04:28 104k 29 59.5M 29 17.5M 0 0 160k 0 0:06:19 0:01:51 0:04:28 103k 29 59.5M 29 17.5M 0 0 159k 0 0:06:22 0:01:52 0:04:30 89291 29 59.5M 29 17.6M 0 0 158k 0 0:06:23 0:01:53 0:04:30 84705 29 59.5M 29 17.7M 0 0 158k 0 0:06:25 0:01:54 0:04:31 85453 29 59.5M 29 17.8M 0 0 157k 0 0:06:26 0:01:55 0:04:31 85970 30 59.5M 30 17.9M 0 0 156k 0 0:06:28 0:01:56 0:04:32 79476 30 59.5M 30 18.0M 0 0 156k 0 0:06:29 0:01:57 0:04:32 87897 30 59.5M 30 18.0M 0 0 155k 0 0:06:31 0:01:58 0:04:33 85408 30 59.5M 30 18.1M 0 0 155k 0 0:06:32 0:01:59 0:04:33 88124 30 59.5M 30 18.2M 0 0 154k 0 0:06:34 0:02:00 0:04:34 84362 30 59.5M 30 18.2M 0 0 153k 0 0:06:36 0:02:01 0:04:35 78158 30 59.5M 30 18.3M 0 0 153k 0 0:06:38 0:02:02 0:04:36 75840 30 59.5M 30 18.4M 0 0 152k 0 0:06:39 0:02:03 0:04:36 78800 31 59.5M 31 18.5M 0 0 151k 0 0:06:41 0:02:04 0:04:37 73892 31 59.5M 31 18.5M 0 0 151k 0 0:06:43 0:02:05 0:04:38 71581 31 59.5M 31 18.6M 0 0 150k 0 0:06:45 0:02:06 0:04:39 74388 31 59.5M 31 18.7M 0 0 150k 0 0:06:46 0:02:07 0:04:39 75370 31 59.5M 31 18.8M 0 0 149k 0 0:06:47 0:02:08 0:04:39 77849 31 59.5M 31 18.9M 0 0 149k 0 0:06:48 0:02:09 0:04:39 83947 31 59.5M 31 19.0M 0 0 148k 0 0:06:49 0:02:10 0:04:39 90007 32 59.5M 32 19.0M 0 0 148k 0 0:06:51 0:02:11 0:04:40 93910 32 59.5M 32 19.1M 0 0 147k 0 0:06:52 0:02:12 0:04:40 98193 32 59.5M 32 19.3M 0 0 147k 0 0:06:52 0:02:13 0:04:39 103k 32 59.5M 32 19.4M 0 0 147k 0 0:06:53 0:02:14 0:04:39 105k 32 59.5M 32 19.5M 0 0 147k 0 0:06:54 0:02:15 0:04:39 102k 32 59.5M 32 19.6M 0 0 146k 0 0:06:55 0:02:16 0:04:39 111k 33 59.5M 33 19.7M 0 0 146k 0 0:06:55 0:02:17 0:04:38 115k 33 59.5M 33 19.9M 0 0 146k 0 0:06:55 0:02:18 0:04:37 120k 33 59.5M 33 20.0M 0 0 146k 0 0:06:55 0:02:19 0:04:36 123k 33 59.5M 33 20.1M 0 0 146k 0 0:06:55 0:02:20 0:04:35 135k 33 59.5M 33 20.2M 0 0 146k 0 0:06:57 0:02:21 0:04:36 124k 34 59.5M 34 20.3M 0 0 145k 0 0:06:58 0:02:22 0:04:36 117k 34 59.5M 34 20.4M 0 0 145k 0 0:06:58 0:02:23 0:04:35 109k 34 59.5M 34 20.5M 0 0 145k 0 0:06:58 0:02:24 0:04:34 116k 35 59.5M 35 20.8M 0 0 146k 0 0:06:56 0:02:25 0:04:31 140k 35 59.5M 35 21.1M 0 0 147k 0 0:06:54 0:02:26 0:04:28 177k 35 59.5M 35 21.2M 0 0 147k 0 0:06:53 0:02:27 0:04:26 199k 36 59.5M 36 21.4M 0 0 147k 0 0:06:52 0:02:28 0:04:24 214k 36 59.5M 36 21.7M 0 0 148k 0 0:06:50 0:02:29 0:04:21 226k 36 59.5M 36 21.8M 0 0 148k 0 0:06:51 0:02:30 0:04:21 203k 36 59.5M 36 21.9M 0 0 148k 0 0:06:51 0:02:31 0:04:20 175k 37 59.5M 37 22.0M 0 0 147k 0 0:06:52 0:02:32 0:04:20 156k 37 59.5M 37 22.1M 0 0 147k 0 0:06:53 0:02:33 0:04:20 132k 37 59.5M 37 22.2M 0 0 146k 0 0:06:55 0:02:34 0:04:21 101k 37 59.5M 37 22.3M 0 0 146k 0 0:06:55 0:02:35 0:04:20 97540 37 59.5M 37 22.4M 0 0 146k 0 0:06:56 0:02:36 0:04:20 95209 37 59.5M 37 22.4M 0 0 145k 0 0:06:57 0:02:37 0:04:20 88957 37 59.5M 37 22.6M 0 0 145k 0 0:06:58 0:02:38 0:04:20 99244 38 59.5M 38 22.6M 0 0 145k 0 0:07:00 0:02:39 0:04:21 96232 38 59.5M 38 22.7M 0 0 144k 0 0:07:01 0:02:40 0:04:21 81250 38 59.5M 38 22.7M 0 0 144k 0 0:07:03 0:02:41 0:04:22 75085 38 59.5M 38 22.8M 0 0 143k 0 0:07:04 0:02:42 0:04:22 78236 38 59.5M 38 22.9M 0 0 143k 0 0:07:04 0:02:43 0:04:21 75703 38 59.5M 38 23.1M 0 0 143k 0 0:07:04 0:02:44 0:04:20 94901 39 59.5M 39 23.2M 0 0 143k 0 0:07:04 0:02:45 0:04:19 115k 39 59.5M 39 23.3M 0 0 143k 0 0:07:04 0:02:46 0:04:18 127k 39 59.5M 39 23.5M 0 0 143k 0 0:07:04 0:02:47 0:04:17 135k 39 59.5M 39 23.6M 0 0 143k 0 0:07:05 0:02:48 0:04:17 137k 40 59.5M 40 23.8M 0 0 143k 0 0:07:04 0:02:49 0:04:15 149k 40 59.5M 40 23.9M 0 0 143k 0 0:07:04 0:02:50 0:04:14 137k 40 59.5M 40 24.0M 0 0 143k 0 0:07:05 0:02:51 0:04:14 131k 40 59.5M 40 24.1M 0 0 143k 0 0:07:05 0:02:52 0:04:13 136k 40 59.5M 40 24.3M 0 0 143k 0 0:07:05 0:02:53 0:04:12 142k 41 59.5M 41 24.4M 0 0 143k 0 0:07:05 0:02:54 0:04:11 130k 41 59.5M 41 24.5M 0 0 143k 0 0:07:05 0:02:55 0:04:10 131k 41 59.5M 41 24.6M 0 0 142k 0 0:07:06 0:02:56 0:04:10 127k 41 59.5M 41 24.7M 0 0 142k 0 0:07:07 0:02:57 0:04:10 119k 41 59.5M 41 24.9M 0 0 142k 0 0:07:07 0:02:58 0:04:09 119k 42 59.5M 42 25.0M 0 0 142k 0 0:07:07 0:02:59 0:04:08 113k 42 59.5M 42 25.1M 0 0 142k 0 0:07:07 0:03:00 0:04:07 121k 42 59.5M 42 25.3M 0 0 142k 0 0:07:07 0:03:01 0:04:06 137k 42 59.5M 42 25.4M 0 0 142k 0 0:07:07 0:03:02 0:04:05 139k 42 59.5M 42 25.5M 0 0 142k 0 0:07:08 0:03:03 0:04:05 130k 43 59.5M 43 25.6M 0 0 142k 0 0:07:08 0:03:04 0:04:04 127k 43 59.5M 43 25.7M 0 0 142k 0 0:07:09 0:03:05 0:04:04 125k 43 59.5M 43 25.9M 0 0 142k 0 0:07:08 0:03:06 0:04:02 124k 43 59.5M 43 26.0M 0 0 142k 0 0:07:09 0:03:07 0:04:02 125k 43 59.5M 43 26.1M 0 0 141k 0 0:07:09 0:03:08 0:04:01 121k 44 59.5M 44 26.2M 0 0 141k 0 0:07:10 0:03:09 0:04:01 122k 44 59.5M 44 26.3M 0 0 141k 0 0:07:11 0:03:10 0:04:01 114k 44 59.5M 44 26.4M 0 0 141k 0 0:07:12 0:03:11 0:04:01 98k 44 59.5M 44 26.5M 0 0 140k 0 0:07:13 0:03:12 0:04:01 94045 44 59.5M 44 26.6M 0 0 140k 0 0:07:13 0:03:13 0:04:00 95386 44 59.5M 44 26.7M 0 0 140k 0 0:07:14 0:03:14 0:04:00 97k 45 59.5M 45 26.8M 0 0 140k 0 0:07:14 0:03:15 0:03:59 98449 45 59.5M 45 26.9M 0 0 139k 0 0:07:15 0:03:16 0:03:59 98k 45 59.5M 45 27.0M 0 0 139k 0 0:07:15 0:03:17 0:03:58 106k 45 59.5M 45 27.1M 0 0 140k 0 0:07:15 0:03:18 0:03:57 117k 45 59.5M 45 27.3M 0 0 140k 0 0:07:14 0:03:19 0:03:55 129k 46 59.5M 46 27.5M 0 0 140k 0 0:07:14 0:03:20 0:03:54 143k 46 59.5M 46 27.6M 0 0 140k 0 0:07:14 0:03:21 0:03:53 151k 46 59.5M 46 27.7M 0 0 140k 0 0:07:14 0:03:22 0:03:52 149k 46 59.5M 46 27.8M 0 0 140k 0 0:07:15 0:03:23 0:03:52 143k 47 59.5M 47 28.0M 0 0 140k 0 0:07:15 0:03:24 0:03:51 134k 47 59.5M 47 28.1M 0 0 139k 0 0:07:15 0:03:25 0:03:50 124k 47 59.5M 47 28.2M 0 0 139k 0 0:07:16 0:03:26 0:03:50 117k 47 59.5M 47 28.3M 0 0 139k 0 0:07:17 0:03:27 0:03:50 110k 47 59.5M 47 28.3M 0 0 139k 0 0:07:18 0:03:28 0:03:50 98k 47 59.5M 47 28.4M 0 0 138k 0 0:07:19 0:03:29 0:03:50 87465 47 59.5M 47 28.4M 0 0 138k 0 0:07:20 0:03:30 0:03:50 75863 47 59.5M 47 28.5M 0 0 137k 0 0:07:22 0:03:31 0:03:51 65386 48 59.5M 48 28.6M 0 0 137k 0 0:07:23 0:03:32 0:03:51 62707 48 59.5M 48 28.6M 0 0 137k 0 0:07:24 0:03:33 0:03:51 63409 48 59.5M 48 28.7M 0 0 137k 0 0:07:24 0:03:34 0:03:50 73068 48 59.5M 48 28.9M 0 0 137k 0 0:07:24 0:03:35 0:03:49 91239 48 59.5M 48 28.9M 0 0 136k 0 0:07:25 0:03:36 0:03:49 97885 48 59.5M 48 29.0M 0 0 136k 0 0:07:26 0:03:37 0:03:49 95944 48 59.5M 48 29.1M 0 0 136k 0 0:07:27 0:03:38 0:03:49 91185 48 59.5M 48 29.1M 0 0 135k 0 0:07:28 0:03:39 0:03:49 78690 49 59.5M 49 29.2M 0 0 135k 0 0:07:30 0:03:40 0:03:50 61366 49 59.5M 49 29.2M 0 0 135k 0 0:07:31 0:03:41 0:03:50 55993 49 59.5M 49 29.3M 0 0 134k 0 0:07:32 0:03:42 0:03:50 55579 49 59.5M 49 29.4M 0 0 134k 0 0:07:32 0:03:43 0:03:49 69210 49 59.5M 49 29.5M 0 0 134k 0 0:07:33 0:03:44 0:03:49 82278 49 59.5M 49 29.6M 0 0 134k 0 0:07:33 0:03:45 0:03:48 96588 50 59.5M 50 29.8M 0 0 134k 0 0:07:32 0:03:46 0:03:46 124k 50 59.5M 50 30.0M 0 0 134k 0 0:07:31 0:03:47 0:03:44 144k 50 59.5M 50 30.1M 0 0 135k 0 0:07:31 0:03:48 0:03:43 151k 50 59.5M 50 30.2M 0 0 134k 0 0:07:32 0:03:49 0:03:43 147k 50 59.5M 50 30.3M 0 0 134k 0 0:07:32 0:03:50 0:03:42 141k 51 59.5M 51 30.4M 0 0 134k 0 0:07:32 0:03:51 0:03:41 125k 51 59.5M 51 30.6M 0 0 134k 0 0:07:32 0:03:52 0:03:40 123k 51 59.5M 51 30.7M 0 0 134k 0 0:07:32 0:03:53 0:03:39 119k 51 59.5M 51 30.8M 0 0 134k 0 0:07:33 0:03:54 0:03:39 121k 52 59.5M 52 30.9M 0 0 134k 0 0:07:33 0:03:55 0:03:38 124k 52 59.5M 52 31.0M 0 0 134k 0 0:07:33 0:03:56 0:03:37 121k 52 59.5M 52 31.2M 0 0 134k 0 0:07:33 0:03:57 0:03:36 119k 52 59.5M 52 31.3M 0 0 134k 0 0:07:33 0:03:58 0:03:35 117k 52 59.5M 52 31.4M 0 0 134k 0 0:07:34 0:03:59 0:03:35 121k 52 59.5M 52 31.5M 0 0 134k 0 0:07:34 0:04:00 0:03:34 117k 53 59.5M 53 31.6M 0 0 133k 0 0:07:35 0:04:01 0:03:34 112k 53 59.5M 53 31.6M 0 0 133k 0 0:07:36 0:04:02 0:03:34 97788 53 59.5M 53 31.7M 0 0 133k 0 0:07:36 0:04:03 0:03:33 91330 53 59.5M 53 31.9M 0 0 133k 0 0:07:36 0:04:04 0:03:32 97686 53 59.5M 53 32.0M 0 0 133k 0 0:07:36 0:04:05 0:03:31 106k 54 59.5M 54 32.1M 0 0 133k 0 0:07:37 0:04:06 0:03:31 108k 54 59.5M 54 32.2M 0 0 133k 0 0:07:37 0:04:07 0:03:30 112k 54 59.5M 54 32.3M 0 0 132k 0 0:07:38 0:04:08 0:03:30 109k 54 59.5M 54 32.4M 0 0 133k 0 0:07:38 0:04:09 0:03:29 109k 54 59.5M 54 32.5M 0 0 133k 0 0:07:38 0:04:10 0:03:28 109k 55 59.5M 55 32.7M 0 0 133k 0 0:07:37 0:04:11 0:03:26 127k 55 59.5M 55 32.9M 0 0 133k 0 0:07:37 0:04:12 0:03:25 137k 55 59.5M 55 33.0M 0 0 133k 0 0:07:36 0:04:13 0:03:23 158k 55 59.5M 55 33.2M 0 0 133k 0 0:07:36 0:04:14 0:03:22 162k 56 59.5M 56 33.3M 0 0 133k 0 0:07:36 0:04:15 0:03:21 156k 56 59.5M 56 33.5M 0 0 133k 0 0:07:36 0:04:16 0:03:20 148k 56 59.5M 56 33.6M 0 0 133k 0 0:07:35 0:04:17 0:03:18 157k 56 59.5M 56 33.7M 0 0 133k 0 0:07:36 0:04:18 0:03:18 133k 56 59.5M 56 33.8M 0 0 133k 0 0:07:37 0:04:19 0:03:18 114k 56 59.5M 56 33.8M 0 0 132k 0 0:07:38 0:04:20 0:03:18 105k 56 59.5M 56 33.9M 0 0 132k 0 0:07:39 0:04:21 0:03:18 84647 57 59.5M 57 33.9M 0 0 132k 0 0:07:40 0:04:22 0:03:18 62237 57 59.5M 57 34.0M 0 0 132k 0 0:07:41 0:04:23 0:03:18 67492 57 59.5M 57 34.1M 0 0 131k 0 0:07:41 0:04:24 0:03:17 68344 57 59.5M 57 34.2M 0 0 131k 0 0:07:42 0:04:25 0:03:17 72532 57 59.5M 57 34.3M 0 0 131k 0 0:07:42 0:04:26 0:03:16 88654 57 59.5M 57 34.4M 0 0 131k 0 0:07:43 0:04:27 0:03:16 95023 57 59.5M 57 34.4M 0 0 131k 0 0:07:44 0:04:28 0:03:16 88177 58 59.5M 58 34.6M 0 0 131k 0 0:07:44 0:04:29 0:03:15 99788 58 59.5M 58 34.6M 0 0 131k 0 0:07:44 0:04:30 0:03:14 98370 58 59.5M 58 34.7M 0 0 130k 0 0:07:45 0:04:31 0:03:14 88601 58 59.5M 58 34.8M 0 0 130k 0 0:07:46 0:04:32 0:03:14 91585 58 59.5M 58 34.9M 0 0 130k 0 0:07:46 0:04:33 0:03:13 98095 58 59.5M 58 35.0M 0 0 130k 0 0:07:46 0:04:34 0:03:12 90880 59 59.5M 59 35.1M 0 0 130k 0 0:07:47 0:04:35 0:03:12 97944 59 59.5M 59 35.2M 0 0 130k 0 0:07:47 0:04:36 0:03:11 102k 59 59.5M 59 35.3M 0 0 130k 0 0:07:48 0:04:37 0:03:11 99k 59 59.5M 59 35.4M 0 0 130k 0 0:07:48 0:04:38 0:03:10 102k 59 59.5M 59 35.5M 0 0 130k 0 0:07:48 0:04:39 0:03:09 112k 60 59.5M 60 35.7M 0 0 130k 0 0:07:47 0:04:40 0:03:07 131k 60 59.5M 60 35.8M 0 0 130k 0 0:07:47 0:04:41 0:03:06 128k 60 59.5M 60 35.9M 0 0 130k 0 0:07:48 0:04:42 0:03:06 128k 60 59.5M 60 36.0M 0 0 130k 0 0:07:48 0:04:43 0:03:05 121k 60 59.5M 60 36.1M 0 0 129k 0 0:07:49 0:04:44 0:03:05 111k 60 59.5M 60 36.2M 0 0 129k 0 0:07:49 0:04:45 0:03:04 94947 61 59.5M 61 36.3M 0 0 129k 0 0:07:49 0:04:46 0:03:03 103k 61 59.5M 61 36.4M 0 0 129k 0 0:07:49 0:04:47 0:03:02 102k 61 59.5M 61 36.5M 0 0 129k 0 0:07:50 0:04:48 0:03:02 102k 61 59.5M 61 36.6M 0 0 129k 0 0:07:50 0:04:49 0:03:01 102k 61 59.5M 61 36.7M 0 0 129k 0 0:07:51 0:04:50 0:03:01 102k 61 59.5M 61 36.8M 0 0 129k 0 0:07:51 0:04:51 0:03:00 102k 62 59.5M 62 36.9M 0 0 129k 0 0:07:51 0:04:52 0:02:59 104k 62 59.5M 62 37.0M 0 0 129k 0 0:07:51 0:04:53 0:02:58 109k 62 59.5M 62 37.1M 0 0 129k 0 0:07:52 0:04:54 0:02:58 104k 62 59.5M 62 37.2M 0 0 128k 0 0:07:53 0:04:55 0:02:58 99k 62 59.5M 62 37.2M 0 0 128k 0 0:07:53 0:04:56 0:02:57 88265 62 59.5M 62 37.3M 0 0 128k 0 0:07:54 0:04:57 0:02:57 84985 62 59.5M 62 37.5M 0 0 128k 0 0:07:54 0:04:58 0:02:56 91166 63 59.5M 63 37.6M 0 0 128k 0 0:07:54 0:04:59 0:02:55 99k 63 59.5M 63 37.7M 0 0 128k 0 0:07:53 0:05:00 0:02:53 115k 63 59.5M 63 37.9M 0 0 128k 0 0:07:53 0:05:01 0:02:52 130k 63 59.5M 63 38.0M 0 0 128k 0 0:07:53 0:05:02 0:02:51 139k 64 59.5M 64 38.2M 0 0 128k 0 0:07:52 0:05:03 0:02:49 151k 64 59.5M 64 38.4M 0 0 129k 0 0:07:52 0:05:04 0:02:48 158k 64 59.5M 64 38.5M 0 0 129k 0 0:07:52 0:05:05 0:02:47 152k 64 59.5M 64 38.6M 0 0 128k 0 0:07:53 0:05:06 0:02:47 141k 65 59.5M 65 38.7M 0 0 128k 0 0:07:53 0:05:07 0:02:46 133k 65 59.5M 65 38.8M 0 0 128k 0 0:07:53 0:05:08 0:02:45 127k 65 59.5M 65 38.9M 0 0 128k 0 0:07:53 0:05:09 0:02:44 120k 65 59.5M 65 39.0M 0 0 128k 0 0:07:53 0:05:10 0:02:43 109k 65 59.5M 65 39.1M 0 0 128k 0 0:07:54 0:05:11 0:02:43 108k 65 59.5M 65 39.2M 0 0 128k 0 0:07:54 0:05:12 0:02:42 102k 65 59.5M 65 39.2M 0 0 128k 0 0:07:55 0:05:13 0:02:42 85735 66 59.5M 66 39.3M 0 0 127k 0 0:07:56 0:05:14 0:02:42 72854 66 59.5M 66 39.4M 0 0 127k 0 0:07:56 0:05:15 0:02:41 82005 66 59.5M 66 39.5M 0 0 127k 0 0:07:56 0:05:16 0:02:40 84874 66 59.5M 66 39.6M 0 0 127k 0 0:07:57 0:05:17 0:02:40 94997 66 59.5M 66 39.8M 0 0 127k 0 0:07:56 0:05:18 0:02:38 108k 67 59.5M 67 39.9M 0 0 127k 0 0:07:56 0:05:19 0:02:37 128k 67 59.5M 67 40.1M 0 0 128k 0 0:07:55 0:05:20 0:02:35 144k 67 59.5M 67 40.2M 0 0 128k 0 0:07:55 0:05:21 0:02:34 148k 67 59.5M 67 40.3M 0 0 127k 0 0:07:56 0:05:22 0:02:34 135k 67 59.5M 67 40.4M 0 0 127k 0 0:07:57 0:05:23 0:02:34 124k 68 59.5M 68 40.5M 0 0 127k 0 0:07:56 0:05:24 0:02:32 124k 68 59.5M 68 40.7M 0 0 127k 0 0:07:56 0:05:25 0:02:31 107k 68 59.5M 68 40.8M 0 0 128k 0 0:07:56 0:05:26 0:02:30 118k 68 59.5M 68 40.9M 0 0 128k 0 0:07:56 0:05:27 0:02:29 132k 69 59.5M 69 41.1M 0 0 128k 0 0:07:55 0:05:28 0:02:27 147k 69 59.5M 69 41.3M 0 0 128k 0 0:07:55 0:05:29 0:02:26 154k 69 59.5M 69 41.4M 0 0 128k 0 0:07:54 0:05:30 0:02:24 159k 69 59.5M 69 41.5M 0 0 128k 0 0:07:55 0:05:31 0:02:24 150k 69 59.5M 69 41.6M 0 0 128k 0 0:07:55 0:05:32 0:02:23 141k 70 59.5M 70 41.7M 0 0 128k 0 0:07:56 0:05:33 0:02:23 123k 70 59.5M 70 41.8M 0 0 128k 0 0:07:55 0:05:34 0:02:21 115k 70 59.5M 70 42.1M 0 0 128k 0 0:07:54 0:05:35 0:02:19 128k 71 59.5M 71 42.2M 0 0 128k 0 0:07:54 0:05:36 0:02:18 143k 71 59.5M 71 42.4M 0 0 128k 0 0:07:53 0:05:37 0:02:16 165k 71 59.5M 71 42.6M 0 0 128k 0 0:07:53 0:05:38 0:02:15 183k 71 59.5M 71 42.7M 0 0 128k 0 0:07:53 0:05:39 0:02:14 178k 71 59.5M 71 42.8M 0 0 128k 0 0:07:53 0:05:40 0:02:13 150k 72 59.5M 72 42.9M 0 0 128k 0 0:07:53 0:05:41 0:02:12 134k 72 59.5M 72 43.0M 0 0 128k 0 0:07:54 0:05:42 0:02:12 112k 72 59.5M 72 43.1M 0 0 128k 0 0:07:54 0:05:43 0:02:11 105k 72 59.5M 72 43.3M 0 0 128k 0 0:07:53 0:05:44 0:02:09 115k 73 59.5M 73 43.5M 0 0 128k 0 0:07:53 0:05:45 0:02:08 140k 73 59.5M 73 43.6M 0 0 128k 0 0:07:52 0:05:46 0:02:06 146k 73 59.5M 73 43.7M 0 0 128k 0 0:07:52 0:05:47 0:02:05 154k 73 59.5M 73 43.8M 0 0 128k 0 0:07:53 0:05:48 0:02:05 146k 73 59.5M 73 43.9M 0 0 128k 0 0:07:54 0:05:49 0:02:05 117k 73 59.5M 73 43.9M 0 0 128k 0 0:07:55 0:05:50 0:02:05 91823 74 59.5M 74 44.1M 0 0 128k 0 0:07:54 0:05:51 0:02:03 94985 74 59.5M 74 44.2M 0 0 128k 0 0:07:54 0:05:52 0:02:02 103k 74 59.5M 74 44.3M 0 0 128k 0 0:07:54 0:05:53 0:02:01 105k 74 59.5M 74 44.4M 0 0 128k 0 0:07:54 0:05:54 0:02:00 122k 74 59.5M 74 44.6M 0 0 128k 0 0:07:54 0:05:55 0:01:59 137k 75 59.5M 75 44.7M 0 0 128k 0 0:07:54 0:05:56 0:01:58 125k 75 59.5M 75 44.8M 0 0 128k 0 0:07:55 0:05:57 0:01:58 108k 75 59.5M 75 44.9M 0 0 128k 0 0:07:55 0:05:58 0:01:57 118k 75 59.5M 75 45.1M 0 0 128k 0 0:07:54 0:05:59 0:01:55 127k 76 59.5M 76 45.2M 0 0 128k 0 0:07:54 0:06:00 0:01:54 127k 76 59.5M 76 45.4M 0 0 128k 0 0:07:54 0:06:01 0:01:53 139k 76 59.5M 76 45.6M 0 0 128k 0 0:07:53 0:06:02 0:01:51 163k 76 59.5M 76 45.8M 0 0 128k 0 0:07:52 0:06:03 0:01:49 173k 77 59.5M 77 45.9M 0 0 129k 0 0:07:52 0:06:04 0:01:48 173k 77 59.5M 77 46.1M 0 0 129k 0 0:07:52 0:06:05 0:01:47 173k 77 59.5M 77 46.2M 0 0 129k 0 0:07:52 0:06:06 0:01:46 172k 77 59.5M 77 46.3M 0 0 129k 0 0:07:52 0:06:07 0:01:45 154k 78 59.5M 78 46.5M 0 0 129k 0 0:07:51 0:06:08 0:01:43 147k 78 59.5M 78 46.6M 0 0 129k 0 0:07:51 0:06:09 0:01:42 147k 78 59.5M 78 46.7M 0 0 129k 0 0:07:51 0:06:10 0:01:41 140k 78 59.5M 78 46.8M 0 0 129k 0 0:07:52 0:06:11 0:01:41 129k 78 59.5M 78 46.9M 0 0 129k 0 0:07:52 0:06:12 0:01:40 121k 79 59.5M 79 47.0M 0 0 128k 0 0:07:53 0:06:13 0:01:40 105k 79 59.5M 79 47.1M 0 0 128k 0 0:07:53 0:06:14 0:01:39 94475 79 59.5M 79 47.2M 0 0 128k 0 0:07:53 0:06:15 0:01:38 92359 79 59.5M 79 47.4M 0 0 128k 0 0:07:53 0:06:16 0:01:37 109k 79 59.5M 79 47.5M 0 0 128k 0 0:07:53 0:06:17 0:01:36 121k 80 59.5M 80 47.6M 0 0 128k 0 0:07:53 0:06:18 0:01:35 128k 80 59.5M 80 47.7M 0 0 128k 0 0:07:53 0:06:19 0:01:34 125k 80 59.5M 80 47.8M 0 0 128k 0 0:07:54 0:06:20 0:01:34 120k 80 59.5M 80 47.9M 0 0 128k 0 0:07:54 0:06:21 0:01:33 108k 80 59.5M 80 48.0M 0 0 128k 0 0:07:54 0:06:22 0:01:32 99k 80 59.5M 80 48.1M 0 0 128k 0 0:07:54 0:06:23 0:01:31 104k 81 59.5M 81 48.3M 0 0 128k 0 0:07:54 0:06:24 0:01:30 120k 81 59.5M 81 48.5M 0 0 128k 0 0:07:53 0:06:25 0:01:28 138k 81 59.5M 81 48.6M 0 0 128k 0 0:07:53 0:06:26 0:01:27 144k 81 59.5M 81 48.8M 0 0 128k 0 0:07:53 0:06:27 0:01:26 153k 82 59.5M 82 48.9M 0 0 128k 0 0:07:52 0:06:28 0:01:24 158k 82 59.5M 82 49.0M 0 0 128k 0 0:07:52 0:06:29 0:01:23 151k 82 59.5M 82 49.2M 0 0 128k 0 0:07:52 0:06:30 0:01:22 143k 82 59.5M 82 49.2M 0 0 128k 0 0:07:53 0:06:31 0:01:22 127k 82 59.5M 82 49.4M 0 0 128k 0 0:07:53 0:06:32 0:01:21 123k 83 59.5M 83 49.5M 0 0 128k 0 0:07:53 0:06:33 0:01:20 124k 83 59.5M 83 49.6M 0 0 128k 0 0:07:53 0:06:34 0:01:19 118k 83 59.5M 83 49.7M 0 0 128k 0 0:07:53 0:06:35 0:01:18 114k 83 59.5M 83 49.8M 0 0 128k 0 0:07:53 0:06:36 0:01:17 121k 83 59.5M 83 49.9M 0 0 128k 0 0:07:54 0:06:37 0:01:17 109k 84 59.5M 84 50.0M 0 0 128k 0 0:07:54 0:06:38 0:01:16 102k 84 59.5M 84 50.1M 0 0 128k 0 0:07:54 0:06:39 0:01:15 98k 84 59.5M 84 50.2M 0 0 128k 0 0:07:54 0:06:40 0:01:14 100k 84 59.5M 84 50.3M 0 0 128k 0 0:07:55 0:06:41 0:01:14 98929 84 59.5M 84 50.4M 0 0 128k 0 0:07:55 0:06:42 0:01:13 105k 85 59.5M 85 50.6M 0 0 128k 0 0:07:54 0:06:43 0:01:11 127k 85 59.5M 85 50.8M 0 0 128k 0 0:07:53 0:06:44 0:01:09 151k 85 59.5M 85 51.0M 0 0 128k 0 0:07:53 0:06:45 0:01:08 156k 85 59.5M 85 51.0M 0 0 128k 0 0:07:54 0:06:46 0:01:08 153k 86 59.5M 86 51.2M 0 0 128k 0 0:07:54 0:06:47 0:01:07 156k 86 59.5M 86 51.3M 0 0 128k 0 0:07:54 0:06:48 0:01:06 137k 86 59.5M 86 51.5M 0 0 128k 0 0:07:53 0:06:49 0:01:04 131k 86 59.5M 86 51.7M 0 0 128k 0 0:07:53 0:06:50 0:01:03 141k 87 59.5M 87 51.9M 0 0 129k 0 0:07:52 0:06:51 0:01:01 166k 87 59.5M 87 52.0M 0 0 129k 0 0:07:51 0:06:52 0:00:59 178k 87 59.5M 87 52.1M 0 0 129k 0 0:07:52 0:06:53 0:00:59 168k 87 59.5M 87 52.2M 0 0 128k 0 0:07:52 0:06:54 0:00:58 147k 87 59.5M 87 52.2M 0 0 128k 0 0:07:53 0:06:55 0:00:58 115k 87 59.5M 87 52.3M 0 0 128k 0 0:07:54 0:06:56 0:00:58 91713 88 59.5M 88 52.4M 0 0 128k 0 0:07:53 0:06:57 0:00:56 85121 88 59.5M 88 52.7M 0 0 128k 0 0:07:53 0:06:58 0:00:55 106k 88 59.5M 88 52.9M 0 0 129k 0 0:07:52 0:06:59 0:00:53 140k 89 59.5M 89 53.0M 0 0 129k 0 0:07:52 0:07:00 0:00:52 168k 89 59.5M 89 53.2M 0 0 129k 0 0:07:52 0:07:01 0:00:51 175k 89 59.5M 89 53.2M 0 0 129k 0 0:07:52 0:07:02 0:00:50 162k 89 59.5M 89 53.3M 0 0 129k 0 0:07:52 0:07:03 0:00:49 141k 89 59.5M 89 53.4M 0 0 128k 0 0:07:52 0:07:04 0:00:48 115k 90 59.5M 90 53.6M 0 0 129k 0 0:07:52 0:07:05 0:00:47 115k 90 59.5M 90 53.8M 0 0 129k 0 0:07:52 0:07:06 0:00:46 130k 90 59.5M 90 53.9M 0 0 129k 0 0:07:52 0:07:07 0:00:45 135k 90 59.5M 90 54.0M 0 0 129k 0 0:07:52 0:07:08 0:00:44 137k 90 59.5M 90 54.1M 0 0 128k 0 0:07:52 0:07:09 0:00:43 134k 91 59.5M 91 54.3M 0 0 129k 0 0:07:52 0:07:10 0:00:42 133k 91 59.5M 91 54.4M 0 0 129k 0 0:07:52 0:07:11 0:00:41 122k 91 59.5M 91 54.5M 0 0 129k 0 0:07:52 0:07:12 0:00:40 118k 91 59.5M 91 54.6M 0 0 129k 0 0:07:52 0:07:13 0:00:39 121k 92 59.5M 92 54.8M 0 0 129k 0 0:07:52 0:07:14 0:00:38 141k 92 59.5M 92 55.0M 0 0 129k 0 0:07:51 0:07:15 0:00:36 141k 92 59.5M 92 55.1M 0 0 129k 0 0:07:51 0:07:16 0:00:35 150k 92 59.5M 92 55.3M 0 0 129k 0 0:07:51 0:07:17 0:00:34 158k 93 59.5M 93 55.4M 0 0 129k 0 0:07:51 0:07:18 0:00:33 153k 93 59.5M 93 55.5M 0 0 129k 0 0:07:51 0:07:19 0:00:32 137k 93 59.5M 93 55.5M 0 0 129k 0 0:07:52 0:07:20 0:00:32 120k 93 59.5M 93 55.7M 0 0 129k 0 0:07:52 0:07:21 0:00:31 114k 93 59.5M 93 55.9M 0 0 129k 0 0:07:51 0:07:22 0:00:29 122k 94 59.5M 94 56.0M 0 0 129k 0 0:07:51 0:07:23 0:00:28 130k 94 59.5M 94 56.1M 0 0 129k 0 0:07:51 0:07:24 0:00:27 131k 94 59.5M 94 56.2M 0 0 129k 0 0:07:51 0:07:25 0:00:26 135k 94 59.5M 94 56.3M 0 0 129k 0 0:07:52 0:07:26 0:00:26 125k 94 59.5M 94 56.4M 0 0 129k 0 0:07:52 0:07:27 0:00:25 108k 94 59.5M 94 56.5M 0 0 128k 0 0:07:52 0:07:28 0:00:24 99004 95 59.5M 95 56.6M 0 0 128k 0 0:07:52 0:07:29 0:00:23 102k 95 59.5M 95 56.7M 0 0 128k 0 0:07:52 0:07:30 0:00:22 104k 95 59.5M 95 56.8M 0 0 128k 0 0:07:52 0:07:31 0:00:21 111k 95 59.5M 95 56.9M 0 0 128k 0 0:07:53 0:07:32 0:00:21 111k 95 59.5M 95 57.0M 0 0 128k 0 0:07:53 0:07:33 0:00:20 115k 96 59.5M 96 57.1M 0 0 128k 0 0:07:53 0:07:34 0:00:19 108k 96 59.5M 96 57.3M 0 0 128k 0 0:07:53 0:07:35 0:00:18 112k 96 59.5M 96 57.4M 0 0 128k 0 0:07:53 0:07:36 0:00:17 114k 96 59.5M 96 57.5M 0 0 128k 0 0:07:53 0:07:37 0:00:16 115k 96 59.5M 96 57.7M 0 0 128k 0 0:07:53 0:07:38 0:00:15 136k 97 59.5M 97 57.9M 0 0 128k 0 0:07:52 0:07:39 0:00:13 150k 97 59.5M 97 58.0M 0 0 129k 0 0:07:52 0:07:40 0:00:12 156k 97 59.5M 97 58.2M 0 0 129k 0 0:07:52 0:07:41 0:00:11 157k 98 59.5M 98 58.4M 0 0 129k 0 0:07:51 0:07:42 0:00:09 175k 98 59.5M 98 58.5M 0 0 129k 0 0:07:51 0:07:43 0:00:08 163k 98 59.5M 98 58.6M 0 0 129k 0 0:07:51 0:07:44 0:00:07 156k 98 59.5M 98 58.8M 0 0 129k 0 0:07:51 0:07:45 0:00:06 160k 99 59.5M 99 59.0M 0 0 129k 0 0:07:50 0:07:46 0:00:04 169k 99 59.5M 99 59.2M 0 0 129k 0 0:07:50 0:07:47 0:00:03 164k 99 59.5M 99 59.3M 0 0 129k 0 0:07:50 0:07:48 0:00:02 163k 99 59.5M 99 59.4M 0 0 129k 0 0:07:50 0:07:49 0:00:01 169k 100 59.5M 100 59.5M 0 0 129k 0 0:07:50 0:07:50 --:--:-- 162k + mkdir calibre + tar -xaf calibre-3.47.1-x86_64.txz -C calibre + echo 'PATH="$HOME/calibre:$HOME/.cargo/bin:$PATH"' + echo LANG=C.UTF-8 + echo 'export LANG' |
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 |
This is a big file! Only the last 128KiB is shown. Click here to download the full log. cd src/writing/ && clang -Wno-unicode-zero-width -Wno-unicode-homoglyph -E -x c index.html.pp -pipe -nostdinc -Wno-trigraphs -Wno-unicode-homoglyph -I/home/build/nabijaczleweli.github.io/build/highlit -CC -P -DDATE_TIME="11.09.2023 01:31:49 UTC" -DFILE_NAME="src/writing/index.html.pp" -DFILE_NAME_STUB="writing" -DJOB_URL | sed -re 's/\(U\+200B\)//g' -e "s;COLON_SLASH_SLASH;://;g" -e "s/<!--([[:space:]'\"]*<!--[[:space:]'\"]*)*-->//g" -e "s/FORCED_NEWLINE/\\n/g" -e "s;SLASH_ASTERIX;/*;g" -e "s;/\\*([[:space:]]*(/\\*)*[[:space:]]*)*\\*/;;g" -e "s/\(FORCED_SPACER\)//g" -e "s/HASH/#/g" -e "s/[[:space:]]+$//g" -e 's;"JOB_URL";"https://builds.sr.ht/~nabijaczleweli/job/1055776";' -e 's/\$101010\.pl/101010.pl/g' > /home/build/nabijaczleweli.github.io/../content/writing/index.html cd src/writing/każdy_koniec_to_nowy_początek/ && clang -Wno-unicode-zero-width -Wno-unicode-homoglyph -E -x c index.html.pp -pipe -nostdinc -Wno-trigraphs -Wno-unicode-homoglyph -I/home/build/nabijaczleweli.github.io/build/highlit -CC -P -DDATE_TIME="11.09.2023 01:31:49 UTC" -DFILE_NAME="src/writing/każdy_koniec_to_nowy_początek/index.html.pp" -DFILE_NAME_STUB="writing/każdy_koniec_to_nowy_początek" -DJOB_URL | sed -re 's/\(U\+200B\)//g' -e "s;COLON_SLASH_SLASH;://;g" -e "s/<!--([[:space:]'\"]*<!--[[:space:]'\"]*)*-->//g" -e "s/FORCED_NEWLINE/\\n/g" -e "s;SLASH_ASTERIX;/*;g" -e "s;/\\*([[:space:]]*(/\\*)*[[:space:]]*)*\\*/;;g" -e "s/\(FORCED_SPACER\)//g" -e "s/HASH/#/g" -e "s/[[:space:]]+$//g" -e 's;"JOB_URL";"https://builds.sr.ht/~nabijaczleweli/job/1055776";' -e 's/\$101010\.pl/101010.pl/g' > /home/build/nabijaczleweli.github.io/../content/writing/każdy_koniec_to_nowy_początek/index.html cd src/writing/moments/ && clang -Wno-unicode-zero-width -Wno-unicode-homoglyph -E -x c index.html.pp -pipe -nostdinc -Wno-trigraphs -Wno-unicode-homoglyph -I/home/build/nabijaczleweli.github.io/build/highlit -CC -P -DDATE_TIME="11.09.2023 01:31:49 UTC" -DFILE_NAME="src/writing/moments/index.html.pp" -DFILE_NAME_STUB="writing/moments" -DJOB_URL | sed -re 's/\(U\+200B\)//g' -e "s;COLON_SLASH_SLASH;://;g" -e "s/<!--([[:space:]'\"]*<!--[[:space:]'\"]*)*-->//g" -e "s/FORCED_NEWLINE/\\n/g" -e "s;SLASH_ASTERIX;/*;g" -e "s;/\\*([[:space:]]*(/\\*)*[[:space:]]*)*\\*/;;g" -e "s/\(FORCED_SPACER\)//g" -e "s/HASH/#/g" -e "s/[[:space:]]+$//g" -e 's;"JOB_URL";"https://builds.sr.ht/~nabijaczleweli/job/1055776";' -e 's/\$101010\.pl/101010.pl/g' > /home/build/nabijaczleweli.github.io/../content/writing/moments/index.html cd src/writing/nagan/ && clang -Wno-unicode-zero-width -Wno-unicode-homoglyph -E -x c index.html.pp -pipe -nostdinc -Wno-trigraphs -Wno-unicode-homoglyph -I/home/build/nabijaczleweli.github.io/build/highlit -CC -P -DDATE_TIME="11.09.2023 01:31:49 UTC" -DFILE_NAME="src/writing/nagan/index.html.pp" -DFILE_NAME_STUB="writing/nagan" -DJOB_URL | sed -re 's/\(U\+200B\)//g' -e "s;COLON_SLASH_SLASH;://;g" -e "s/<!--([[:space:]'\"]*<!--[[:space:]'\"]*)*-->//g" -e "s/FORCED_NEWLINE/\\n/g" -e "s;SLASH_ASTERIX;/*;g" -e "s;/\\*([[:space:]]*(/\\*)*[[:space:]]*)*\\*/;;g" -e "s/\(FORCED_SPACER\)//g" -e "s/HASH/#/g" -e "s/[[:space:]]+$//g" -e 's;"JOB_URL";"https://builds.sr.ht/~nabijaczleweli/job/1055776";' -e 's/\$101010\.pl/101010.pl/g' > /home/build/nabijaczleweli.github.io/../content/writing/nagan/index.html cd src/writing/poetry/ && clang -Wno-unicode-zero-width -Wno-unicode-homoglyph -E -x c index.html.pp -pipe -nostdinc -Wno-trigraphs -Wno-unicode-homoglyph -I/home/build/nabijaczleweli.github.io/build/highlit -CC -P -DDATE_TIME="11.09.2023 01:31:49 UTC" -DFILE_NAME="src/writing/poetry/index.html.pp" -DFILE_NAME_STUB="writing/poetry" -DJOB_URL | sed -re 's/\(U\+200B\)//g' -e "s;COLON_SLASH_SLASH;://;g" -e "s/<!--([[:space:]'\"]*<!--[[:space:]'\"]*)*-->//g" -e "s/FORCED_NEWLINE/\\n/g" -e "s;SLASH_ASTERIX;/*;g" -e "s;/\\*([[:space:]]*(/\\*)*[[:space:]]*)*\\*/;;g" -e "s/\(FORCED_SPACER\)//g" -e "s/HASH/#/g" -e "s/[[:space:]]+$//g" -e 's;"JOB_URL";"https://builds.sr.ht/~nabijaczleweli/job/1055776";' -e 's/\$101010\.pl/101010.pl/g' > /home/build/nabijaczleweli.github.io/../content/writing/poetry/index.html cd src/writing/poetry/the_east_wind/ && clang -Wno-unicode-zero-width -Wno-unicode-homoglyph -E -x c index.html.pp -pipe -nostdinc -Wno-trigraphs -Wno-unicode-homoglyph -I/home/build/nabijaczleweli.github.io/build/highlit -CC -P -DDATE_TIME="11.09.2023 01:31:49 UTC" -DFILE_NAME="src/writing/poetry/the_east_wind/index.html.pp" -DFILE_NAME_STUB="writing/poetry/the_east_wind" -DJOB_URL | sed -re 's/\(U\+200B\)//g' -e "s;COLON_SLASH_SLASH;://;g" -e "s/<!--([[:space:]'\"]*<!--[[:space:]'\"]*)*-->//g" -e "s/FORCED_NEWLINE/\\n/g" -e "s;SLASH_ASTERIX;/*;g" -e "s;/\\*([[:space:]]*(/\\*)*[[:space:]]*)*\\*/;;g" -e "s/\(FORCED_SPACER\)//g" -e "s/HASH/#/g" -e "s/[[:space:]]+$//g" -e 's;"JOB_URL";"https://builds.sr.ht/~nabijaczleweli/job/1055776";' -e 's/\$101010\.pl/101010.pl/g' > /home/build/nabijaczleweli.github.io/../content/writing/poetry/the_east_wind/index.html cd src/writing/poetry/ПИПА/ && clang -Wno-unicode-zero-width -Wno-unicode-homoglyph -E -x c index.html.pp -pipe -nostdinc -Wno-trigraphs -Wno-unicode-homoglyph -I/home/build/nabijaczleweli.github.io/build/highlit -CC -P -DDATE_TIME="11.09.2023 01:31:49 UTC" -DFILE_NAME="src/writing/poetry/ПИПА/index.html.pp" -DFILE_NAME_STUB="writing/poetry/ПИПА" -DJOB_URL | sed -re 's/\(U\+200B\)//g' -e "s;COLON_SLASH_SLASH;://;g" -e "s/<!--([[:space:]'\"]*<!--[[:space:]'\"]*)*-->//g" -e "s/FORCED_NEWLINE/\\n/g" -e "s;SLASH_ASTERIX;/*;g" -e "s;/\\*([[:space:]]*(/\\*)*[[:space:]]*)*\\*/;;g" -e "s/\(FORCED_SPACER\)//g" -e "s/HASH/#/g" -e "s/[[:space:]]+$//g" -e 's;"JOB_URL";"https://builds.sr.ht/~nabijaczleweli/job/1055776";' -e 's/\$101010\.pl/101010.pl/g' > /home/build/nabijaczleweli.github.io/../content/writing/poetry/ПИПА/index.html cd src/writing/the_taste_of_mi/ && clang -Wno-unicode-zero-width -Wno-unicode-homoglyph -E -x c index.html.pp -pipe -nostdinc -Wno-trigraphs -Wno-unicode-homoglyph -I/home/build/nabijaczleweli.github.io/build/highlit -CC -P -DDATE_TIME="11.09.2023 01:31:49 UTC" -DFILE_NAME="src/writing/the_taste_of_mi/index.html.pp" -DFILE_NAME_STUB="writing/the_taste_of_mi" -DJOB_URL | sed -re 's/\(U\+200B\)//g' -e "s;COLON_SLASH_SLASH;://;g" -e "s/<!--([[:space:]'\"]*<!--[[:space:]'\"]*)*-->//g" -e "s/FORCED_NEWLINE/\\n/g" -e "s;SLASH_ASTERIX;/*;g" -e "s;/\\*([[:space:]]*(/\\*)*[[:space:]]*)*\\*/;;g" -e "s/\(FORCED_SPACER\)//g" -e "s/HASH/#/g" -e "s/[[:space:]]+$//g" -e 's;"JOB_URL";"https://builds.sr.ht/~nabijaczleweli/job/1055776";' -e 's/\$101010\.pl/101010.pl/g' > /home/build/nabijaczleweli.github.io/../content/writing/the_taste_of_mi/index.html cd src/writing/translations/erotica/ && clang -Wno-unicode-zero-width -Wno-unicode-homoglyph -E -x c index.html.pp -pipe -nostdinc -Wno-trigraphs -Wno-unicode-homoglyph -I/home/build/nabijaczleweli.github.io/build/highlit -CC -P -DDATE_TIME="11.09.2023 01:31:49 UTC" -DFILE_NAME="src/writing/translations/erotica/index.html.pp" -DFILE_NAME_STUB="writing/translations/erotica" -DJOB_URL | sed -re 's/\(U\+200B\)//g' -e "s;COLON_SLASH_SLASH;://;g" -e "s/<!--([[:space:]'\"]*<!--[[:space:]'\"]*)*-->//g" -e "s/FORCED_NEWLINE/\\n/g" -e "s;SLASH_ASTERIX;/*;g" -e "s;/\\*([[:space:]]*(/\\*)*[[:space:]]*)*\\*/;;g" -e "s/\(FORCED_SPACER\)//g" -e "s/HASH/#/g" -e "s/[[:space:]]+$//g" -e 's;"JOB_URL";"https://builds.sr.ht/~nabijaczleweli/job/1055776";' -e 's/\$101010\.pl/101010.pl/g' > /home/build/nabijaczleweli.github.io/../content/writing/translations/erotica/index.html cd src/writing/translations/ && clang -Wno-unicode-zero-width -Wno-unicode-homoglyph -E -x c funeral_blues.html.pp -pipe -nostdinc -Wno-trigraphs -Wno-unicode-homoglyph -I/home/build/nabijaczleweli.github.io/build/highlit -CC -P -DDATE_TIME="11.09.2023 01:31:49 UTC" -DFILE_NAME="src/writing/translations/funeral_blues.html.pp" -DFILE_NAME_STUB="writing/translations" -DJOB_URL | sed -re 's/\(U\+200B\)//g' -e "s;COLON_SLASH_SLASH;://;g" -e "s/<!--([[:space:]'\"]*<!--[[:space:]'\"]*)*-->//g" -e "s/FORCED_NEWLINE/\\n/g" -e "s;SLASH_ASTERIX;/*;g" -e "s;/\\*([[:space:]]*(/\\*)*[[:space:]]*)*\\*/;;g" -e "s/\(FORCED_SPACER\)//g" -e "s/HASH/#/g" -e "s/[[:space:]]+$//g" -e 's;"JOB_URL";"https://builds.sr.ht/~nabijaczleweli/job/1055776";' -e 's/\$101010\.pl/101010.pl/g' > /home/build/nabijaczleweli.github.io/../content/writing/translations/funeral_blues.html cd src/writing/translations/ && clang -Wno-unicode-zero-width -Wno-unicode-homoglyph -E -x c index.html.pp -pipe -nostdinc -Wno-trigraphs -Wno-unicode-homoglyph -I/home/build/nabijaczleweli.github.io/build/highlit -CC -P -DDATE_TIME="11.09.2023 01:31:49 UTC" -DFILE_NAME="src/writing/translations/index.html.pp" -DFILE_NAME_STUB="writing/translations" -DJOB_URL | sed -re 's/\(U\+200B\)//g' -e "s;COLON_SLASH_SLASH;://;g" -e "s/<!--([[:space:]'\"]*<!--[[:space:]'\"]*)*-->//g" -e "s/FORCED_NEWLINE/\\n/g" -e "s;SLASH_ASTERIX;/*;g" -e "s;/\\*([[:space:]]*(/\\*)*[[:space:]]*)*\\*/;;g" -e "s/\(FORCED_SPACER\)//g" -e "s/HASH/#/g" -e "s/[[:space:]]+$//g" -e 's;"JOB_URL";"https://builds.sr.ht/~nabijaczleweli/job/1055776";' -e 's/\$101010\.pl/101010.pl/g' > /home/build/nabijaczleweli.github.io/../content/writing/translations/index.html cd src/writing/translations/sherlock_holmes_the_published_apocrypha/ && clang -Wno-unicode-zero-width -Wno-unicode-homoglyph -E -x c index.html.pp -pipe -nostdinc -Wno-trigraphs -Wno-unicode-homoglyph -I/home/build/nabijaczleweli.github.io/build/highlit -CC -P -DDATE_TIME="11.09.2023 01:31:49 UTC" -DFILE_NAME="src/writing/translations/sherlock_holmes_the_published_apocrypha/index.html.pp" -DFILE_NAME_STUB="writing/translations/sherlock_holmes_the_published_apocrypha" -DJOB_URL | sed -re 's/\(U\+200B\)//g' -e "s;COLON_SLASH_SLASH;://;g" -e "s/<!--([[:space:]'\"]*<!--[[:space:]'\"]*)*-->//g" -e "s/FORCED_NEWLINE/\\n/g" -e "s;SLASH_ASTERIX;/*;g" -e "s;/\\*([[:space:]]*(/\\*)*[[:space:]]*)*\\*/;;g" -e "s/\(FORCED_SPACER\)//g" -e "s/HASH/#/g" -e "s/[[:space:]]+$//g" -e 's;"JOB_URL";"https://builds.sr.ht/~nabijaczleweli/job/1055776";' -e 's/\$101010\.pl/101010.pl/g' > /home/build/nabijaczleweli.github.io/../content/writing/translations/sherlock_holmes_the_published_apocrypha/index.html cd src/writing/świat_to_kilka_takich_pokoi/ && clang -Wno-unicode-zero-width -Wno-unicode-homoglyph -E -x c index.html.pp -pipe -nostdinc -Wno-trigraphs -Wno-unicode-homoglyph -I/home/build/nabijaczleweli.github.io/build/highlit -CC -P -DDATE_TIME="11.09.2023 01:31:49 UTC" -DFILE_NAME="src/writing/świat_to_kilka_takich_pokoi/index.html.pp" -DFILE_NAME_STUB="writing/świat_to_kilka_takich_pokoi" -DJOB_URL | sed -re 's/\(U\+200B\)//g' -e "s;COLON_SLASH_SLASH;://;g" -e "s/<!--([[:space:]'\"]*<!--[[:space:]'\"]*)*-->//g" -e "s/FORCED_NEWLINE/\\n/g" -e "s;SLASH_ASTERIX;/*;g" -e "s;/\\*([[:space:]]*(/\\*)*[[:space:]]*)*\\*/;;g" -e "s/\(FORCED_SPACER\)//g" -e "s/HASH/#/g" -e "s/[[:space:]]+$//g" -e 's;"JOB_URL";"https://builds.sr.ht/~nabijaczleweli/job/1055776";' -e 's/\$101010\.pl/101010.pl/g' > /home/build/nabijaczleweli.github.io/../content/writing/świat_to_kilka_takich_pokoi/index.html cd src/writing/наган/ && clang -Wno-unicode-zero-width -Wno-unicode-homoglyph -E -x c index.html.pp -pipe -nostdinc -Wno-trigraphs -Wno-unicode-homoglyph -I/home/build/nabijaczleweli.github.io/build/highlit -CC -P -DDATE_TIME="11.09.2023 01:31:49 UTC" -DFILE_NAME="src/writing/наган/index.html.pp" -DFILE_NAME_STUB="writing/наган" -DJOB_URL | sed -re 's/\(U\+200B\)//g' -e "s;COLON_SLASH_SLASH;://;g" -e "s/<!--([[:space:]'\"]*<!--[[:space:]'\"]*)*-->//g" -e "s/FORCED_NEWLINE/\\n/g" -e "s;SLASH_ASTERIX;/*;g" -e "s;/\\*([[:space:]]*(/\\*)*[[:space:]]*)*\\*/;;g" -e "s/\(FORCED_SPACER\)//g" -e "s/HASH/#/g" -e "s/[[:space:]]+$//g" -e 's;"JOB_URL";"https://builds.sr.ht/~nabijaczleweli/job/1055776";' -e 's/\$101010\.pl/101010.pl/g' > /home/build/nabijaczleweli.github.io/../content/writing/наган/index.html cd src/writing_prompts/ && clang -Wno-unicode-zero-width -Wno-unicode-homoglyph -E -x c dead_santa.html.pp -pipe -nostdinc -Wno-trigraphs -Wno-unicode-homoglyph -I/home/build/nabijaczleweli.github.io/build/highlit -CC -P -DDATE_TIME="11.09.2023 01:31:49 UTC" -DFILE_NAME="src/writing_prompts/dead_santa.html.pp" -DFILE_NAME_STUB="writing_prompts" -DJOB_URL | sed -re 's/\(U\+200B\)//g' -e "s;COLON_SLASH_SLASH;://;g" -e "s/<!--([[:space:]'\"]*<!--[[:space:]'\"]*)*-->//g" -e "s/FORCED_NEWLINE/\\n/g" -e "s;SLASH_ASTERIX;/*;g" -e "s;/\\*([[:space:]]*(/\\*)*[[:space:]]*)*\\*/;;g" -e "s/\(FORCED_SPACER\)//g" -e "s/HASH/#/g" -e "s/[[:space:]]+$//g" -e 's;"JOB_URL";"https://builds.sr.ht/~nabijaczleweli/job/1055776";' -e 's/\$101010\.pl/101010.pl/g' > /home/build/nabijaczleweli.github.io/../content/writing_prompts/dead_santa.html cd src/writing_prompts/ && clang -Wno-unicode-zero-width -Wno-unicode-homoglyph -E -x c degenerate.html.pp -pipe -nostdinc -Wno-trigraphs -Wno-unicode-homoglyph -I/home/build/nabijaczleweli.github.io/build/highlit -CC -P -DDATE_TIME="11.09.2023 01:31:49 UTC" -DFILE_NAME="src/writing_prompts/degenerate.html.pp" -DFILE_NAME_STUB="writing_prompts" -DJOB_URL | sed -re 's/\(U\+200B\)//g' -e "s;COLON_SLASH_SLASH;://;g" -e "s/<!--([[:space:]'\"]*<!--[[:space:]'\"]*)*-->//g" -e "s/FORCED_NEWLINE/\\n/g" -e "s;SLASH_ASTERIX;/*;g" -e "s;/\\*([[:space:]]*(/\\*)*[[:space:]]*)*\\*/;;g" -e "s/\(FORCED_SPACER\)//g" -e "s/HASH/#/g" -e "s/[[:space:]]+$//g" -e 's;"JOB_URL";"https://builds.sr.ht/~nabijaczleweli/job/1055776";' -e 's/\$101010\.pl/101010.pl/g' > /home/build/nabijaczleweli.github.io/../content/writing_prompts/degenerate.html cd src/writing_prompts/ && clang -Wno-unicode-zero-width -Wno-unicode-homoglyph -E -x c eye_see.html.pp -pipe -nostdinc -Wno-trigraphs -Wno-unicode-homoglyph -I/home/build/nabijaczleweli.github.io/build/highlit -CC -P -DDATE_TIME="11.09.2023 01:31:49 UTC" -DFILE_NAME="src/writing_prompts/eye_see.html.pp" -DFILE_NAME_STUB="writing_prompts" -DJOB_URL | sed -re 's/\(U\+200B\)//g' -e "s;COLON_SLASH_SLASH;://;g" -e "s/<!--([[:space:]'\"]*<!--[[:space:]'\"]*)*-->//g" -e "s/FORCED_NEWLINE/\\n/g" -e "s;SLASH_ASTERIX;/*;g" -e "s;/\\*([[:space:]]*(/\\*)*[[:space:]]*)*\\*/;;g" -e "s/\(FORCED_SPACER\)//g" -e "s/HASH/#/g" -e "s/[[:space:]]+$//g" -e 's;"JOB_URL";"https://builds.sr.ht/~nabijaczleweli/job/1055776";' -e 's/\$101010\.pl/101010.pl/g' > /home/build/nabijaczleweli.github.io/../content/writing_prompts/eye_see.html cd src/writing_prompts/ && clang -Wno-unicode-zero-width -Wno-unicode-homoglyph -E -x c green_ass_dog.html.pp -pipe -nostdinc -Wno-trigraphs -Wno-unicode-homoglyph -I/home/build/nabijaczleweli.github.io/build/highlit -CC -P -DDATE_TIME="11.09.2023 01:31:49 UTC" -DFILE_NAME="src/writing_prompts/green_ass_dog.html.pp" -DFILE_NAME_STUB="writing_prompts" -DJOB_URL | sed -re 's/\(U\+200B\)//g' -e "s;COLON_SLASH_SLASH;://;g" -e "s/<!--([[:space:]'\"]*<!--[[:space:]'\"]*)*-->//g" -e "s/FORCED_NEWLINE/\\n/g" -e "s;SLASH_ASTERIX;/*;g" -e "s;/\\*([[:space:]]*(/\\*)*[[:space:]]*)*\\*/;;g" -e "s/\(FORCED_SPACER\)//g" -e "s/HASH/#/g" -e "s/[[:space:]]+$//g" -e 's;"JOB_URL";"https://builds.sr.ht/~nabijaczleweli/job/1055776";' -e 's/\$101010\.pl/101010.pl/g' > /home/build/nabijaczleweli.github.io/../content/writing_prompts/green_ass_dog.html cd src/writing_prompts/ && clang -Wno-unicode-zero-width -Wno-unicode-homoglyph -E -x c index.html.pp -pipe -nostdinc -Wno-trigraphs -Wno-unicode-homoglyph -I/home/build/nabijaczleweli.github.io/build/highlit -CC -P -DDATE_TIME="11.09.2023 01:31:49 UTC" -DFILE_NAME="src/writing_prompts/index.html.pp" -DFILE_NAME_STUB="writing_prompts" -DJOB_URL | sed -re 's/\(U\+200B\)//g' -e "s;COLON_SLASH_SLASH;://;g" -e "s/<!--([[:space:]'\"]*<!--[[:space:]'\"]*)*-->//g" -e "s/FORCED_NEWLINE/\\n/g" -e "s;SLASH_ASTERIX;/*;g" -e "s;/\\*([[:space:]]*(/\\*)*[[:space:]]*)*\\*/;;g" -e "s/\(FORCED_SPACER\)//g" -e "s/HASH/#/g" -e "s/[[:space:]]+$//g" -e 's;"JOB_URL";"https://builds.sr.ht/~nabijaczleweli/job/1055776";' -e 's/\$101010\.pl/101010.pl/g' > /home/build/nabijaczleweli.github.io/../content/writing_prompts/index.html cd src/writing_prompts/ && clang -Wno-unicode-zero-width -Wno-unicode-homoglyph -E -x c laser_cats.html.pp -pipe -nostdinc -Wno-trigraphs -Wno-unicode-homoglyph -I/home/build/nabijaczleweli.github.io/build/highlit -CC -P -DDATE_TIME="11.09.2023 01:31:49 UTC" -DFILE_NAME="src/writing_prompts/laser_cats.html.pp" -DFILE_NAME_STUB="writing_prompts" -DJOB_URL | sed -re 's/\(U\+200B\)//g' -e "s;COLON_SLASH_SLASH;://;g" -e "s/<!--([[:space:]'\"]*<!--[[:space:]'\"]*)*-->//g" -e "s/FORCED_NEWLINE/\\n/g" -e "s;SLASH_ASTERIX;/*;g" -e "s;/\\*([[:space:]]*(/\\*)*[[:space:]]*)*\\*/;;g" -e "s/\(FORCED_SPACER\)//g" -e "s/HASH/#/g" -e "s/[[:space:]]+$//g" -e 's;"JOB_URL";"https://builds.sr.ht/~nabijaczleweli/job/1055776";' -e 's/\$101010\.pl/101010.pl/g' > /home/build/nabijaczleweli.github.io/../content/writing_prompts/laser_cats.html cd src/writing_prompts/ && clang -Wno-unicode-zero-width -Wno-unicode-homoglyph -E -x c not_dead_yet.html.pp -pipe -nostdinc -Wno-trigraphs -Wno-unicode-homoglyph -I/home/build/nabijaczleweli.github.io/build/highlit -CC -P -DDATE_TIME="11.09.2023 01:31:50 UTC" -DFILE_NAME="src/writing_prompts/not_dead_yet.html.pp" -DFILE_NAME_STUB="writing_prompts" -DJOB_URL | sed -re 's/\(U\+200B\)//g' -e "s;COLON_SLASH_SLASH;://;g" -e "s/<!--([[:space:]'\"]*<!--[[:space:]'\"]*)*-->//g" -e "s/FORCED_NEWLINE/\\n/g" -e "s;SLASH_ASTERIX;/*;g" -e "s;/\\*([[:space:]]*(/\\*)*[[:space:]]*)*\\*/;;g" -e "s/\(FORCED_SPACER\)//g" -e "s/HASH/#/g" -e "s/[[:space:]]+$//g" -e 's;"JOB_URL";"https://builds.sr.ht/~nabijaczleweli/job/1055776";' -e 's/\$101010\.pl/101010.pl/g' > /home/build/nabijaczleweli.github.io/../content/writing_prompts/not_dead_yet.html cd src/writing_prompts/ && clang -Wno-unicode-zero-width -Wno-unicode-homoglyph -E -x c six_minutes.html.pp -pipe -nostdinc -Wno-trigraphs -Wno-unicode-homoglyph -I/home/build/nabijaczleweli.github.io/build/highlit -CC -P -DDATE_TIME="11.09.2023 01:31:50 UTC" -DFILE_NAME="src/writing_prompts/six_minutes.html.pp" -DFILE_NAME_STUB="writing_prompts" -DJOB_URL | sed -re 's/\(U\+200B\)//g' -e "s;COLON_SLASH_SLASH;://;g" -e "s/<!--([[:space:]'\"]*<!--[[:space:]'\"]*)*-->//g" -e "s/FORCED_NEWLINE/\\n/g" -e "s;SLASH_ASTERIX;/*;g" -e "s;/\\*([[:space:]]*(/\\*)*[[:space:]]*)*\\*/;;g" -e "s/\(FORCED_SPACER\)//g" -e "s/HASH/#/g" -e "s/[[:space:]]+$//g" -e 's;"JOB_URL";"https://builds.sr.ht/~nabijaczleweli/job/1055776";' -e 's/\$101010\.pl/101010.pl/g' > /home/build/nabijaczleweli.github.io/../content/writing_prompts/six_minutes.html cd src/writing_prompts/ && clang -Wno-unicode-zero-width -Wno-unicode-homoglyph -E -x c start_eq_end.html.pp -pipe -nostdinc -Wno-trigraphs -Wno-unicode-homoglyph -I/home/build/nabijaczleweli.github.io/build/highlit -CC -P -DDATE_TIME="11.09.2023 01:31:50 UTC" -DFILE_NAME="src/writing_prompts/start_eq_end.html.pp" -DFILE_NAME_STUB="writing_prompts" -DJOB_URL | sed -re 's/\(U\+200B\)//g' -e "s;COLON_SLASH_SLASH;://;g" -e "s/<!--([[:space:]'\"]*<!--[[:space:]'\"]*)*-->//g" -e "s/FORCED_NEWLINE/\\n/g" -e "s;SLASH_ASTERIX;/*;g" -e "s;/\\*([[:space:]]*(/\\*)*[[:space:]]*)*\\*/;;g" -e "s/\(FORCED_SPACER\)//g" -e "s/HASH/#/g" -e "s/[[:space:]]+$//g" -e 's;"JOB_URL";"https://builds.sr.ht/~nabijaczleweli/job/1055776";' -e 's/\$101010\.pl/101010.pl/g' > /home/build/nabijaczleweli.github.io/../content/writing_prompts/start_eq_end.html cd src/writing_prompts/ && clang -Wno-unicode-zero-width -Wno-unicode-homoglyph -E -x c the_pursuer.html.pp -pipe -nostdinc -Wno-trigraphs -Wno-unicode-homoglyph -I/home/build/nabijaczleweli.github.io/build/highlit -CC -P -DDATE_TIME="11.09.2023 01:31:50 UTC" -DFILE_NAME="src/writing_prompts/the_pursuer.html.pp" -DFILE_NAME_STUB="writing_prompts" -DJOB_URL | sed -re 's/\(U\+200B\)//g' -e "s;COLON_SLASH_SLASH;://;g" -e "s/<!--([[:space:]'\"]*<!--[[:space:]'\"]*)*-->//g" -e "s/FORCED_NEWLINE/\\n/g" -e "s;SLASH_ASTERIX;/*;g" -e "s;/\\*([[:space:]]*(/\\*)*[[:space:]]*)*\\*/;;g" -e "s/\(FORCED_SPACER\)//g" -e "s/HASH/#/g" -e "s/[[:space:]]+$//g" -e 's;"JOB_URL";"https://builds.sr.ht/~nabijaczleweli/job/1055776";' -e 's/\$101010\.pl/101010.pl/g' > /home/build/nabijaczleweli.github.io/../content/writing_prompts/the_pursuer.html cd src/writing_prompts/ && clang -Wno-unicode-zero-width -Wno-unicode-homoglyph -E -x c theless.html.pp -pipe -nostdinc -Wno-trigraphs -Wno-unicode-homoglyph -I/home/build/nabijaczleweli.github.io/build/highlit -CC -P -DDATE_TIME="11.09.2023 01:31:50 UTC" -DFILE_NAME="src/writing_prompts/theless.html.pp" -DFILE_NAME_STUB="writing_prompts" -DJOB_URL | sed -re 's/\(U\+200B\)//g' -e "s;COLON_SLASH_SLASH;://;g" -e "s/<!--([[:space:]'\"]*<!--[[:space:]'\"]*)*-->//g" -e "s/FORCED_NEWLINE/\\n/g" -e "s;SLASH_ASTERIX;/*;g" -e "s;/\\*([[:space:]]*(/\\*)*[[:space:]]*)*\\*/;;g" -e "s/\(FORCED_SPACER\)//g" -e "s/HASH/#/g" -e "s/[[:space:]]+$//g" -e 's;"JOB_URL";"https://builds.sr.ht/~nabijaczleweli/job/1055776";' -e 's/\$101010\.pl/101010.pl/g' > /home/build/nabijaczleweli.github.io/../content/writing_prompts/theless.html cd src/writing_prompts/ && clang -Wno-unicode-zero-width -Wno-unicode-homoglyph -E -x c trucks_a_cash.html.pp -pipe -nostdinc -Wno-trigraphs -Wno-unicode-homoglyph -I/home/build/nabijaczleweli.github.io/build/highlit -CC -P -DDATE_TIME="11.09.2023 01:31:50 UTC" -DFILE_NAME="src/writing_prompts/trucks_a_cash.html.pp" -DFILE_NAME_STUB="writing_prompts" -DJOB_URL | sed -re 's/\(U\+200B\)//g' -e "s;COLON_SLASH_SLASH;://;g" -e "s/<!--([[:space:]'\"]*<!--[[:space:]'\"]*)*-->//g" -e "s/FORCED_NEWLINE/\\n/g" -e "s;SLASH_ASTERIX;/*;g" -e "s;/\\*([[:space:]]*(/\\*)*[[:space:]]*)*\\*/;;g" -e "s/\(FORCED_SPACER\)//g" -e "s/HASH/#/g" -e "s/[[:space:]]+$//g" -e 's;"JOB_URL";"https://builds.sr.ht/~nabijaczleweli/job/1055776";' -e 's/\$101010\.pl/101010.pl/g' > /home/build/nabijaczleweli.github.io/../content/writing_prompts/trucks_a_cash.html cd src/writing/poetry/ПИПА/2018.11.02-Homoseksualizm/ && clang -Wno-unicode-zero-width -Wno-unicode-homoglyph -E -x c Bujak.html.eppe -pipe -nostdinc -Wno-trigraphs -Wno-unicode-homoglyph -I/home/build/nabijaczleweli.github.io/build/highlit -CC -P -DDATE_TIME="11.09.2023 01:31:50 UTC" -DFILE_NAME="src/writing/poetry/ПИПА/2018.11.02-Homoseksualizm/Bujak.html.eppe" -DFILE_NAME_STUB="writing/poetry/ПИПА/2018.11.02-Homoseksualizm" -DJOB_URL -DEBOOK | sed -re 's/\(U\+200B\)//g' -e "s;COLON_SLASH_SLASH;://;g" -e "s/<!--([[:space:]'\"]*<!--[[:space:]'\"]*)*-->//g" -e "s/FORCED_NEWLINE/\\n/g" -e "s;SLASH_ASTERIX;/*;g" -e "s;/\\*([[:space:]]*(/\\*)*[[:space:]]*)*\\*/;;g" -e "s/\(FORCED_SPACER\)//g" -e "s/HASH/#/g" -e "s/[[:space:]]+$//g" -e 's;"JOB_URL";"https://builds.sr.ht/~nabijaczleweli/job/1055776";' -e 's/\$101010\.pl/101010.pl/g' > /home/build/nabijaczleweli.github.io/build/out/writing/poetry/ПИПА/2018.11.02-Homoseksualizm/Bujak.html cd src/writing/poetry/ПИПА/2018.11.02-Homoseksualizm/ && clang -Wno-unicode-zero-width -Wno-unicode-homoglyph -E -x c Micherda.html.eppe -pipe -nostdinc -Wno-trigraphs -Wno-unicode-homoglyph -I/home/build/nabijaczleweli.github.io/build/highlit -CC -P -DDATE_TIME="11.09.2023 01:31:50 UTC" -DFILE_NAME="src/writing/poetry/ПИПА/2018.11.02-Homoseksualizm/Micherda.html.eppe" -DFILE_NAME_STUB="writing/poetry/ПИПА/2018.11.02-Homoseksualizm" -DJOB_URL -DEBOOK | sed -re 's/\(U\+200B\)//g' -e "s;COLON_SLASH_SLASH;://;g" -e "s/<!--([[:space:]'\"]*<!--[[:space:]'\"]*)*-->//g" -e "s/FORCED_NEWLINE/\\n/g" -e "s;SLASH_ASTERIX;/*;g" -e "s;/\\*([[:space:]]*(/\\*)*[[:space:]]*)*\\*/;;g" -e "s/\(FORCED_SPACER\)//g" -e "s/HASH/#/g" -e "s/[[:space:]]+$//g" -e 's;"JOB_URL";"https://builds.sr.ht/~nabijaczleweli/job/1055776";' -e 's/\$101010\.pl/101010.pl/g' > /home/build/nabijaczleweli.github.io/build/out/writing/poetry/ПИПА/2018.11.02-Homoseksualizm/Micherda.html cd src/writing/poetry/ПИПА/2018.11.02-Homoseksualizm/ && clang -Wno-unicode-zero-width -Wno-unicode-homoglyph -E -x c Zawadzka.html.eppe -pipe -nostdinc -Wno-trigraphs -Wno-unicode-homoglyph -I/home/build/nabijaczleweli.github.io/build/highlit -CC -P -DDATE_TIME="11.09.2023 01:31:50 UTC" -DFILE_NAME="src/writing/poetry/ПИПА/2018.11.02-Homoseksualizm/Zawadzka.html.eppe" -DFILE_NAME_STUB="writing/poetry/ПИПА/2018.11.02-Homoseksualizm" -DJOB_URL -DEBOOK | sed -re 's/\(U\+200B\)//g' -e "s;COLON_SLASH_SLASH;://;g" -e "s/<!--([[:space:]'\"]*<!--[[:space:]'\"]*)*-->//g" -e "s/FORCED_NEWLINE/\\n/g" -e "s;SLASH_ASTERIX;/*;g" -e "s;/\\*([[:space:]]*(/\\*)*[[:space:]]*)*\\*/;;g" -e "s/\(FORCED_SPACER\)//g" -e "s/HASH/#/g" -e "s/[[:space:]]+$//g" -e 's;"JOB_URL";"https://builds.sr.ht/~nabijaczleweli/job/1055776";' -e 's/\$101010\.pl/101010.pl/g' > /home/build/nabijaczleweli.github.io/build/out/writing/poetry/ПИПА/2018.11.02-Homoseksualizm/Zawadzka.html cd src/writing/poetry/ПИПА/2018.11.02-Homoseksualizm/ && clang -Wno-unicode-zero-width -Wno-unicode-homoglyph -E -x c index.html.eppe -pipe -nostdinc -Wno-trigraphs -Wno-unicode-homoglyph -I/home/build/nabijaczleweli.github.io/build/highlit -CC -P -DDATE_TIME="11.09.2023 01:31:50 UTC" -DFILE_NAME="src/writing/poetry/ПИПА/2018.11.02-Homoseksualizm/index.html.eppe" -DFILE_NAME_STUB="writing/poetry/ПИПА/2018.11.02-Homoseksualizm" -DJOB_URL -DEBOOK | sed -re 's/\(U\+200B\)//g' -e "s;COLON_SLASH_SLASH;://;g" -e "s/<!--([[:space:]'\"]*<!--[[:space:]'\"]*)*-->//g" -e "s/FORCED_NEWLINE/\\n/g" -e "s;SLASH_ASTERIX;/*;g" -e "s;/\\*([[:space:]]*(/\\*)*[[:space:]]*)*\\*/;;g" -e "s/\(FORCED_SPACER\)//g" -e "s/HASH/#/g" -e "s/[[:space:]]+$//g" -e 's;"JOB_URL";"https://builds.sr.ht/~nabijaczleweli/job/1055776";' -e 's/\$101010\.pl/101010.pl/g' > /home/build/nabijaczleweli.github.io/build/out/writing/poetry/ПИПА/2018.11.02-Homoseksualizm/index.html cd src/writing/poetry/ПИПА/2018.11.02-Homoseksualizm/ && clang -Wno-unicode-zero-width -Wno-unicode-homoglyph -E -x c nabijaczleweli.html.eppe -pipe -nostdinc -Wno-trigraphs -Wno-unicode-homoglyph -I/home/build/nabijaczleweli.github.io/build/highlit -CC -P -DDATE_TIME="11.09.2023 01:31:50 UTC" -DFILE_NAME="src/writing/poetry/ПИПА/2018.11.02-Homoseksualizm/nabijaczleweli.html.eppe" -DFILE_NAME_STUB="writing/poetry/ПИПА/2018.11.02-Homoseksualizm" -DJOB_URL -DEBOOK | sed -re 's/\(U\+200B\)//g' -e "s;COLON_SLASH_SLASH;://;g" -e "s/<!--([[:space:]'\"]*<!--[[:space:]'\"]*)*-->//g" -e "s/FORCED_NEWLINE/\\n/g" -e "s;SLASH_ASTERIX;/*;g" -e "s;/\\*([[:space:]]*(/\\*)*[[:space:]]*)*\\*/;;g" -e "s/\(FORCED_SPACER\)//g" -e "s/HASH/#/g" -e "s/[[:space:]]+$//g" -e 's;"JOB_URL";"https://builds.sr.ht/~nabijaczleweli/job/1055776";' -e 's/\$101010\.pl/101010.pl/g' > /home/build/nabijaczleweli.github.io/build/out/writing/poetry/ПИПА/2018.11.02-Homoseksualizm/nabijaczleweli.html cd src/writing/poetry/ПИПА/ && clang -Wno-unicode-zero-width -Wno-unicode-homoglyph -E -x c contents.html.eppe -pipe -nostdinc -Wno-trigraphs -Wno-unicode-homoglyph -I/home/build/nabijaczleweli.github.io/build/highlit -CC -P -DDATE_TIME="11.09.2023 01:31:50 UTC" -DFILE_NAME="src/writing/poetry/ПИПА/contents.html.eppe" -DFILE_NAME_STUB="writing/poetry/ПИПА" -DJOB_URL -DEBOOK | sed -re 's/\(U\+200B\)//g' -e "s;COLON_SLASH_SLASH;://;g" -e "s/<!--([[:space:]'\"]*<!--[[:space:]'\"]*)*-->//g" -e "s/FORCED_NEWLINE/\\n/g" -e "s;SLASH_ASTERIX;/*;g" -e "s;/\\*([[:space:]]*(/\\*)*[[:space:]]*)*\\*/;;g" -e "s/\(FORCED_SPACER\)//g" -e "s/HASH/#/g" -e "s/[[:space:]]+$//g" -e 's;"JOB_URL";"https://builds.sr.ht/~nabijaczleweli/job/1055776";' -e 's/\$101010\.pl/101010.pl/g' > /home/build/nabijaczleweli.github.io/build/out/writing/poetry/ПИПА/contents.html cd src/writing/poetry/ПИПА/ && clang -Wno-unicode-zero-width -Wno-unicode-homoglyph -E -x c introduction.html.eppe -pipe -nostdinc -Wno-trigraphs -Wno-unicode-homoglyph -I/home/build/nabijaczleweli.github.io/build/highlit -CC -P -DDATE_TIME="11.09.2023 01:31:50 UTC" -DFILE_NAME="src/writing/poetry/ПИПА/introduction.html.eppe" -DFILE_NAME_STUB="writing/poetry/ПИПА" -DJOB_URL -DEBOOK | sed -re 's/\(U\+200B\)//g' -e "s;COLON_SLASH_SLASH;://;g" -e "s/<!--([[:space:]'\"]*<!--[[:space:]'\"]*)*-->//g" -e "s/FORCED_NEWLINE/\\n/g" -e "s;SLASH_ASTERIX;/*;g" -e "s;/\\*([[:space:]]*(/\\*)*[[:space:]]*)*\\*/;;g" -e "s/\(FORCED_SPACER\)//g" -e "s/HASH/#/g" -e "s/[[:space:]]+$//g" -e 's;"JOB_URL";"https://builds.sr.ht/~nabijaczleweli/job/1055776";' -e 's/\$101010\.pl/101010.pl/g' > /home/build/nabijaczleweli.github.io/build/out/writing/poetry/ПИПА/introduction.html cd src/writing/the_taste_of_mi/ && clang -Wno-unicode-zero-width -Wno-unicode-homoglyph -E -x c book.html.eppe -pipe -nostdinc -Wno-trigraphs -Wno-unicode-homoglyph -I/home/build/nabijaczleweli.github.io/build/highlit -CC -P -DDATE_TIME="11.09.2023 01:31:50 UTC" -DFILE_NAME="src/writing/the_taste_of_mi/book.html.eppe" -DFILE_NAME_STUB="writing/the_taste_of_mi" -DJOB_URL -DEBOOK | sed -re 's/\(U\+200B\)//g' -e "s;COLON_SLASH_SLASH;://;g" -e "s/<!--([[:space:]'\"]*<!--[[:space:]'\"]*)*-->//g" -e "s/FORCED_NEWLINE/\\n/g" -e "s;SLASH_ASTERIX;/*;g" -e "s;/\\*([[:space:]]*(/\\*)*[[:space:]]*)*\\*/;;g" -e "s/\(FORCED_SPACER\)//g" -e "s/HASH/#/g" -e "s/[[:space:]]+$//g" -e 's;"JOB_URL";"https://builds.sr.ht/~nabijaczleweli/job/1055776";' -e 's/\$101010\.pl/101010.pl/g' > /home/build/nabijaczleweli.github.io/build/out/writing/the_taste_of_mi/book.html cd src/writing/the_taste_of_mi/ && clang -Wno-unicode-zero-width -Wno-unicode-homoglyph -E -x c effects.css.eppe -pipe -nostdinc -Wno-trigraphs -Wno-unicode-homoglyph -I/home/build/nabijaczleweli.github.io/build/highlit -CC -P -DDATE_TIME="11.09.2023 01:31:50 UTC" -DFILE_NAME="src/writing/the_taste_of_mi/effects.css.eppe" -DFILE_NAME_STUB="writing/the_taste_of_mi" -DJOB_URL -DEBOOK | sed -re 's/\(U\+200B\)//g' -e "s;COLON_SLASH_SLASH;://;g" -e "s/<!--([[:space:]'\"]*<!--[[:space:]'\"]*)*-->//g" -e "s/FORCED_NEWLINE/\\n/g" -e "s;SLASH_ASTERIX;/*;g" -e "s;/\\*([[:space:]]*(/\\*)*[[:space:]]*)*\\*/;;g" -e "s/\(FORCED_SPACER\)//g" -e "s/HASH/#/g" -e "s/[[:space:]]+$//g" -e 's;"JOB_URL";"https://builds.sr.ht/~nabijaczleweli/job/1055776";' -e 's/\$101010\.pl/101010.pl/g' > /home/build/nabijaczleweli.github.io/build/out/writing/the_taste_of_mi/effects.css cd src/writing/the_taste_of_mi/ && clang -Wno-unicode-zero-width -Wno-unicode-homoglyph -E -x c endnotes.html.eppe -pipe -nostdinc -Wno-trigraphs -Wno-unicode-homoglyph -I/home/build/nabijaczleweli.github.io/build/highlit -CC -P -DDATE_TIME="11.09.2023 01:31:50 UTC" -DFILE_NAME="src/writing/the_taste_of_mi/endnotes.html.eppe" -DFILE_NAME_STUB="writing/the_taste_of_mi" -DJOB_URL -DEBOOK | sed -re 's/\(U\+200B\)//g' -e "s;COLON_SLASH_SLASH;://;g" -e "s/<!--([[:space:]'\"]*<!--[[:space:]'\"]*)*-->//g" -e "s/FORCED_NEWLINE/\\n/g" -e "s;SLASH_ASTERIX;/*;g" -e "s;/\\*([[:space:]]*(/\\*)*[[:space:]]*)*\\*/;;g" -e "s/\(FORCED_SPACER\)//g" -e "s/HASH/#/g" -e "s/[[:space:]]+$//g" -e 's;"JOB_URL";"https://builds.sr.ht/~nabijaczleweli/job/1055776";' -e 's/\$101010\.pl/101010.pl/g' > /home/build/nabijaczleweli.github.io/build/out/writing/the_taste_of_mi/endnotes.html cd src/writing/translations/erotica/ && clang -Wno-unicode-zero-width -Wno-unicode-homoglyph -E -x c contents.html.eppe -pipe -nostdinc -Wno-trigraphs -Wno-unicode-homoglyph -I/home/build/nabijaczleweli.github.io/build/highlit -CC -P -DDATE_TIME="11.09.2023 01:31:50 UTC" -DFILE_NAME="src/writing/translations/erotica/contents.html.eppe" -DFILE_NAME_STUB="writing/translations/erotica" -DJOB_URL -DEBOOK | sed -re 's/\(U\+200B\)//g' -e "s;COLON_SLASH_SLASH;://;g" -e "s/<!--([[:space:]'\"]*<!--[[:space:]'\"]*)*-->//g" -e "s/FORCED_NEWLINE/\\n/g" -e "s;SLASH_ASTERIX;/*;g" -e "s;/\\*([[:space:]]*(/\\*)*[[:space:]]*)*\\*/;;g" -e "s/\(FORCED_SPACER\)//g" -e "s/HASH/#/g" -e "s/[[:space:]]+$//g" -e 's;"JOB_URL";"https://builds.sr.ht/~nabijaczleweli/job/1055776";' -e 's/\$101010\.pl/101010.pl/g' > /home/build/nabijaczleweli.github.io/build/out/writing/translations/erotica/contents.html cd src/writing/translations/erotica/danger/ && clang -Wno-unicode-zero-width -Wno-unicode-homoglyph -E -x c index.html.eppe -pipe -nostdinc -Wno-trigraphs -Wno-unicode-homoglyph -I/home/build/nabijaczleweli.github.io/build/highlit -CC -P -DDATE_TIME="11.09.2023 01:31:50 UTC" -DFILE_NAME="src/writing/translations/erotica/danger/index.html.eppe" -DFILE_NAME_STUB="writing/translations/erotica/danger" -DJOB_URL -DEBOOK | sed -re 's/\(U\+200B\)//g' -e "s;COLON_SLASH_SLASH;://;g" -e "s/<!--([[:space:]'\"]*<!--[[:space:]'\"]*)*-->//g" -e "s/FORCED_NEWLINE/\\n/g" -e "s;SLASH_ASTERIX;/*;g" -e "s;/\\*([[:space:]]*(/\\*)*[[:space:]]*)*\\*/;;g" -e "s/\(FORCED_SPACER\)//g" -e "s/HASH/#/g" -e "s/[[:space:]]+$//g" -e 's;"JOB_URL";"https://builds.sr.ht/~nabijaczleweli/job/1055776";' -e 's/\$101010\.pl/101010.pl/g' > /home/build/nabijaczleweli.github.io/build/out/writing/translations/erotica/danger/index.html cd src/writing/translations/erotica/danger/ && clang -Wno-unicode-zero-width -Wno-unicode-homoglyph -E -x c the-bloody-chamber.html.eppe -pipe -nostdinc -Wno-trigraphs -Wno-unicode-homoglyph -I/home/build/nabijaczleweli.github.io/build/highlit -CC -P -DDATE_TIME="11.09.2023 01:31:50 UTC" -DFILE_NAME="src/writing/translations/erotica/danger/the-bloody-chamber.html.eppe" -DFILE_NAME_STUB="writing/translations/erotica/danger" -DJOB_URL -DEBOOK | sed -re 's/\(U\+200B\)//g' -e "s;COLON_SLASH_SLASH;://;g" -e "s/<!--([[:space:]'\"]*<!--[[:space:]'\"]*)*-->//g" -e "s/FORCED_NEWLINE/\\n/g" -e "s;SLASH_ASTERIX;/*;g" -e "s;/\\*([[:space:]]*(/\\*)*[[:space:]]*)*\\*/;;g" -e "s/\(FORCED_SPACER\)//g" -e "s/HASH/#/g" -e "s/[[:space:]]+$//g" -e 's;"JOB_URL";"https://builds.sr.ht/~nabijaczleweli/job/1055776";' -e 's/\$101010\.pl/101010.pl/g' > /home/build/nabijaczleweli.github.io/build/out/writing/translations/erotica/danger/the-bloody-chamber.html cd src/writing/translations/sherlock_holmes_the_published_apocrypha/ && clang -Wno-unicode-zero-width -Wno-unicode-homoglyph -E -x c contents.html.eppe -pipe -nostdinc -Wno-trigraphs -Wno-unicode-homoglyph -I/home/build/nabijaczleweli.github.io/build/highlit -CC -P -DDATE_TIME="11.09.2023 01:31:50 UTC" -DFILE_NAME="src/writing/translations/sherlock_holmes_the_published_apocrypha/contents.html.eppe" -DFILE_NAME_STUB="writing/translations/sherlock_holmes_the_published_apocrypha" -DJOB_URL -DEBOOK | sed -re 's/\(U\+200B\)//g' -e "s;COLON_SLASH_SLASH;://;g" -e "s/<!--([[:space:]'\"]*<!--[[:space:]'\"]*)*-->//g" -e "s/FORCED_NEWLINE/\\n/g" -e "s;SLASH_ASTERIX;/*;g" -e "s;/\\*([[:space:]]*(/\\*)*[[:space:]]*)*\\*/;;g" -e "s/\(FORCED_SPACER\)//g" -e "s/HASH/#/g" -e "s/[[:space:]]+$//g" -e 's;"JOB_URL";"https://builds.sr.ht/~nabijaczleweli/job/1055776";' -e 's/\$101010\.pl/101010.pl/g' > /home/build/nabijaczleweli.github.io/build/out/writing/translations/sherlock_holmes_the_published_apocrypha/contents.html cd src/writing/translations/sherlock_holmes_the_published_apocrypha/ && clang -Wno-unicode-zero-width -Wno-unicode-homoglyph -E -x c introduction.html.eppe -pipe -nostdinc -Wno-trigraphs -Wno-unicode-homoglyph -I/home/build/nabijaczleweli.github.io/build/highlit -CC -P -DDATE_TIME="11.09.2023 01:31:50 UTC" -DFILE_NAME="src/writing/translations/sherlock_holmes_the_published_apocrypha/introduction.html.eppe" -DFILE_NAME_STUB="writing/translations/sherlock_holmes_the_published_apocrypha" -DJOB_URL -DEBOOK | sed -re 's/\(U\+200B\)//g' -e "s;COLON_SLASH_SLASH;://;g" -e "s/<!--([[:space:]'\"]*<!--[[:space:]'\"]*)*-->//g" -e "s/FORCED_NEWLINE/\\n/g" -e "s;SLASH_ASTERIX;/*;g" -e "s;/\\*([[:space:]]*(/\\*)*[[:space:]]*)*\\*/;;g" -e "s/\(FORCED_SPACER\)//g" -e "s/HASH/#/g" -e "s/[[:space:]]+$//g" -e 's;"JOB_URL";"https://builds.sr.ht/~nabijaczleweli/job/1055776";' -e 's/\$101010\.pl/101010.pl/g' > /home/build/nabijaczleweli.github.io/build/out/writing/translations/sherlock_holmes_the_published_apocrypha/introduction.html cd src/writing/translations/sherlock_holmes_the_published_apocrypha/the-parodies/ && clang -Wno-unicode-zero-width -Wno-unicode-homoglyph -E -x c how-watson-learned-the-trick.html.eppe -pipe -nostdinc -Wno-trigraphs -Wno-unicode-homoglyph -I/home/build/nabijaczleweli.github.io/build/highlit -CC -P -DDATE_TIME="11.09.2023 01:31:51 UTC" -DFILE_NAME="src/writing/translations/sherlock_holmes_the_published_apocrypha/the-parodies/how-watson-learned-the-trick.html.eppe" -DFILE_NAME_STUB="writing/translations/sherlock_holmes_the_published_apocrypha/the-parodies" -DJOB_URL -DEBOOK | sed -re 's/\(U\+200B\)//g' -e "s;COLON_SLASH_SLASH;://;g" -e "s/<!--([[:space:]'\"]*<!--[[:space:]'\"]*)*-->//g" -e "s/FORCED_NEWLINE/\\n/g" -e "s;SLASH_ASTERIX;/*;g" -e "s;/\\*([[:space:]]*(/\\*)*[[:space:]]*)*\\*/;;g" -e "s/\(FORCED_SPACER\)//g" -e "s/HASH/#/g" -e "s/[[:space:]]+$//g" -e 's;"JOB_URL";"https://builds.sr.ht/~nabijaczleweli/job/1055776";' -e 's/\$101010\.pl/101010.pl/g' > /home/build/nabijaczleweli.github.io/build/out/writing/translations/sherlock_holmes_the_published_apocrypha/the-parodies/how-watson-learned-the-trick.html cd src/writing/translations/sherlock_holmes_the_published_apocrypha/the-parodies/ && clang -Wno-unicode-zero-width -Wno-unicode-homoglyph -E -x c index.html.eppe -pipe -nostdinc -Wno-trigraphs -Wno-unicode-homoglyph -I/home/build/nabijaczleweli.github.io/build/highlit -CC -P -DDATE_TIME="11.09.2023 01:31:51 UTC" -DFILE_NAME="src/writing/translations/sherlock_holmes_the_published_apocrypha/the-parodies/index.html.eppe" -DFILE_NAME_STUB="writing/translations/sherlock_holmes_the_published_apocrypha/the-parodies" -DJOB_URL -DEBOOK | sed -re 's/\(U\+200B\)//g' -e "s;COLON_SLASH_SLASH;://;g" -e "s/<!--([[:space:]'\"]*<!--[[:space:]'\"]*)*-->//g" -e "s/FORCED_NEWLINE/\\n/g" -e "s;SLASH_ASTERIX;/*;g" -e "s;/\\*([[:space:]]*(/\\*)*[[:space:]]*)*\\*/;;g" -e "s/\(FORCED_SPACER\)//g" -e "s/HASH/#/g" -e "s/[[:space:]]+$//g" -e 's;"JOB_URL";"https://builds.sr.ht/~nabijaczleweli/job/1055776";' -e 's/\$101010\.pl/101010.pl/g' > /home/build/nabijaczleweli.github.io/build/out/writing/translations/sherlock_holmes_the_published_apocrypha/the-parodies/index.html cd src/writing/translations/sherlock_holmes_the_published_apocrypha/the-parodies/ && clang -Wno-unicode-zero-width -Wno-unicode-homoglyph -E -x c the-adventure-of-the-two-collaborators.html.eppe -pipe -nostdinc -Wno-trigraphs -Wno-unicode-homoglyph -I/home/build/nabijaczleweli.github.io/build/highlit -CC -P -DDATE_TIME="11.09.2023 01:31:51 UTC" -DFILE_NAME="src/writing/translations/sherlock_holmes_the_published_apocrypha/the-parodies/the-adventure-of-the-two-collaborators.html.eppe" -DFILE_NAME_STUB="writing/translations/sherlock_holmes_the_published_apocrypha/the-parodies" -DJOB_URL -DEBOOK | sed -re 's/\(U\+200B\)//g' -e "s;COLON_SLASH_SLASH;://;g" -e "s/<!--([[:space:]'\"]*<!--[[:space:]'\"]*)*-->//g" -e "s/FORCED_NEWLINE/\\n/g" -e "s;SLASH_ASTERIX;/*;g" -e "s;/\\*([[:space:]]*(/\\*)*[[:space:]]*)*\\*/;;g" -e "s/\(FORCED_SPACER\)//g" -e "s/HASH/#/g" -e "s/[[:space:]]+$//g" -e 's;"JOB_URL";"https://builds.sr.ht/~nabijaczleweli/job/1055776";' -e 's/\$101010\.pl/101010.pl/g' > /home/build/nabijaczleweli.github.io/build/out/writing/translations/sherlock_holmes_the_published_apocrypha/the-parodies/the-adventure-of-the-two-collaborators.html cd src/writing/translations/sherlock_holmes_the_published_apocrypha/the-parodies/ && clang -Wno-unicode-zero-width -Wno-unicode-homoglyph -E -x c the-field-bazaar.html.eppe -pipe -nostdinc -Wno-trigraphs -Wno-unicode-homoglyph -I/home/build/nabijaczleweli.github.io/build/highlit -CC -P -DDATE_TIME="11.09.2023 01:31:51 UTC" -DFILE_NAME="src/writing/translations/sherlock_holmes_the_published_apocrypha/the-parodies/the-field-bazaar.html.eppe" -DFILE_NAME_STUB="writing/translations/sherlock_holmes_the_published_apocrypha/the-parodies" -DJOB_URL -DEBOOK | sed -re 's/\(U\+200B\)//g' -e "s;COLON_SLASH_SLASH;://;g" -e "s/<!--([[:space:]'\"]*<!--[[:space:]'\"]*)*-->//g" -e "s/FORCED_NEWLINE/\\n/g" -e "s;SLASH_ASTERIX;/*;g" -e "s;/\\*([[:space:]]*(/\\*)*[[:space:]]*)*\\*/;;g" -e "s/\(FORCED_SPACER\)//g" -e "s/HASH/#/g" -e "s/[[:space:]]+$//g" -e 's;"JOB_URL";"https://builds.sr.ht/~nabijaczleweli/job/1055776";' -e 's/\$101010\.pl/101010.pl/g' > /home/build/nabijaczleweli.github.io/build/out/writing/translations/sherlock_holmes_the_published_apocrypha/the-parodies/the-field-bazaar.html cd src/writing/translations/sherlock_holmes_the_published_apocrypha/the-stories-of-mystery/ && clang -Wno-unicode-zero-width -Wno-unicode-homoglyph -E -x c index.html.eppe -pipe -nostdinc -Wno-trigraphs -Wno-unicode-homoglyph -I/home/build/nabijaczleweli.github.io/build/highlit -CC -P -DDATE_TIME="11.09.2023 01:31:51 UTC" -DFILE_NAME="src/writing/translations/sherlock_holmes_the_published_apocrypha/the-stories-of-mystery/index.html.eppe" -DFILE_NAME_STUB="writing/translations/sherlock_holmes_the_published_apocrypha/the-stories-of-mystery" -DJOB_URL -DEBOOK | sed -re 's/\(U\+200B\)//g' -e "s;COLON_SLASH_SLASH;://;g" -e "s/<!--([[:space:]'\"]*<!--[[:space:]'\"]*)*-->//g" -e "s/FORCED_NEWLINE/\\n/g" -e "s;SLASH_ASTERIX;/*;g" -e "s;/\\*([[:space:]]*(/\\*)*[[:space:]]*)*\\*/;;g" -e "s/\(FORCED_SPACER\)//g" -e "s/HASH/#/g" -e "s/[[:space:]]+$//g" -e 's;"JOB_URL";"https://builds.sr.ht/~nabijaczleweli/job/1055776";' -e 's/\$101010\.pl/101010.pl/g' > /home/build/nabijaczleweli.github.io/build/out/writing/translations/sherlock_holmes_the_published_apocrypha/the-stories-of-mystery/index.html cd src/writing/translations/sherlock_holmes_the_published_apocrypha/the-stories-of-mystery/ && clang -Wno-unicode-zero-width -Wno-unicode-homoglyph -E -x c the-man-with-the-watches.html.eppe -pipe -nostdinc -Wno-trigraphs -Wno-unicode-homoglyph -I/home/build/nabijaczleweli.github.io/build/highlit -CC -P -DDATE_TIME="11.09.2023 01:31:51 UTC" -DFILE_NAME="src/writing/translations/sherlock_holmes_the_published_apocrypha/the-stories-of-mystery/the-man-with-the-watches.html.eppe" -DFILE_NAME_STUB="writing/translations/sherlock_holmes_the_published_apocrypha/the-stories-of-mystery" -DJOB_URL -DEBOOK | sed -re 's/\(U\+200B\)//g' -e "s;COLON_SLASH_SLASH;://;g" -e "s/<!--([[:space:]'\"]*<!--[[:space:]'\"]*)*-->//g" -e "s/FORCED_NEWLINE/\\n/g" -e "s;SLASH_ASTERIX;/*;g" -e "s;/\\*([[:space:]]*(/\\*)*[[:space:]]*)*\\*/;;g" -e "s/\(FORCED_SPACER\)//g" -e "s/HASH/#/g" -e "s/[[:space:]]+$//g" -e 's;"JOB_URL";"https://builds.sr.ht/~nabijaczleweli/job/1055776";' -e 's/\$101010\.pl/101010.pl/g' > /home/build/nabijaczleweli.github.io/build/out/writing/translations/sherlock_holmes_the_published_apocrypha/the-stories-of-mystery/the-man-with-the-watches.html cd src/writing/ && clang -Wno-unicode-zero-width -Wno-unicode-homoglyph -E -x c Roboto-font.css.epp -pipe -nostdinc -Wno-trigraphs -Wno-unicode-homoglyph -I/home/build/nabijaczleweli.github.io/build/highlit -CC -P -DDATE_TIME="11.09.2023 01:31:51 UTC" -DFILE_NAME="src/writing/Roboto-font.css.epp" -DFILE_NAME_STUB="writing" -DJOB_URL | sed -re 's/\(U\+200B\)//g' -e "s;COLON_SLASH_SLASH;://;g" -e "s/<!--([[:space:]'\"]*<!--[[:space:]'\"]*)*-->//g" -e "s/FORCED_NEWLINE/\\n/g" -e "s;SLASH_ASTERIX;/*;g" -e "s;/\\*([[:space:]]*(/\\*)*[[:space:]]*)*\\*/;;g" -e "s/\(FORCED_SPACER\)//g" -e "s/HASH/#/g" -e "s/[[:space:]]+$//g" -e 's;"JOB_URL";"https://builds.sr.ht/~nabijaczleweli/job/1055776";' -e 's/\$101010\.pl/101010.pl/g' > /home/build/nabijaczleweli.github.io/../content/writing/Roboto-font.css cd src/writing/ && clang -Wno-unicode-zero-width -Wno-unicode-homoglyph -E -x c Roboto-font.css.epp -pipe -nostdinc -Wno-trigraphs -Wno-unicode-homoglyph -I/home/build/nabijaczleweli.github.io/build/highlit -CC -P -DDATE_TIME="11.09.2023 01:31:51 UTC" -DFILE_NAME="src/writing/Roboto-font.css.epp" -DFILE_NAME_STUB="writing" -DJOB_URL -DEBOOK | sed -re 's/\(U\+200B\)//g' -e "s;COLON_SLASH_SLASH;://;g" -e "s/<!--([[:space:]'\"]*<!--[[:space:]'\"]*)*-->//g" -e "s/FORCED_NEWLINE/\\n/g" -e "s;SLASH_ASTERIX;/*;g" -e "s;/\\*([[:space:]]*(/\\*)*[[:space:]]*)*\\*/;;g" -e "s/\(FORCED_SPACER\)//g" -e "s/HASH/#/g" -e "s/[[:space:]]+$//g" -e 's;"JOB_URL";"https://builds.sr.ht/~nabijaczleweli/job/1055776";' -e 's/\$101010\.pl/101010.pl/g' > /home/build/nabijaczleweli.github.io/build/out/writing/Roboto-font.css cd src/writing/the_taste_of_mi/ && clang -Wno-unicode-zero-width -Wno-unicode-homoglyph -E -x c MathJax-font.css.epp -pipe -nostdinc -Wno-trigraphs -Wno-unicode-homoglyph -I/home/build/nabijaczleweli.github.io/build/highlit -CC -P -DDATE_TIME="11.09.2023 01:31:51 UTC" -DFILE_NAME="src/writing/the_taste_of_mi/MathJax-font.css.epp" -DFILE_NAME_STUB="writing/the_taste_of_mi" -DJOB_URL | sed -re 's/\(U\+200B\)//g' -e "s;COLON_SLASH_SLASH;://;g" -e "s/<!--([[:space:]'\"]*<!--[[:space:]'\"]*)*-->//g" -e "s/FORCED_NEWLINE/\\n/g" -e "s;SLASH_ASTERIX;/*;g" -e "s;/\\*([[:space:]]*(/\\*)*[[:space:]]*)*\\*/;;g" -e "s/\(FORCED_SPACER\)//g" -e "s/HASH/#/g" -e "s/[[:space:]]+$//g" -e 's;"JOB_URL";"https://builds.sr.ht/~nabijaczleweli/job/1055776";' -e 's/\$101010\.pl/101010.pl/g' > /home/build/nabijaczleweli.github.io/../content/writing/the_taste_of_mi/MathJax-font.css cd src/writing/the_taste_of_mi/ && clang -Wno-unicode-zero-width -Wno-unicode-homoglyph -E -x c MathJax-font.css.epp -pipe -nostdinc -Wno-trigraphs -Wno-unicode-homoglyph -I/home/build/nabijaczleweli.github.io/build/highlit -CC -P -DDATE_TIME="11.09.2023 01:31:51 UTC" -DFILE_NAME="src/writing/the_taste_of_mi/MathJax-font.css.epp" -DFILE_NAME_STUB="writing/the_taste_of_mi" -DJOB_URL -DEBOOK | sed -re 's/\(U\+200B\)//g' -e "s;COLON_SLASH_SLASH;://;g" -e "s/<!--([[:space:]'\"]*<!--[[:space:]'\"]*)*-->//g" -e "s/FORCED_NEWLINE/\\n/g" -e "s;SLASH_ASTERIX;/*;g" -e "s;/\\*([[:space:]]*(/\\*)*[[:space:]]*)*\\*/;;g" -e "s/\(FORCED_SPACER\)//g" -e "s/HASH/#/g" -e "s/[[:space:]]+$//g" -e 's;"JOB_URL";"https://builds.sr.ht/~nabijaczleweli/job/1055776";' -e 's/\$101010\.pl/101010.pl/g' > /home/build/nabijaczleweli.github.io/build/out/writing/the_taste_of_mi/MathJax-font.css cd src/writing/the_taste_of_mi/ && clang -Wno-unicode-zero-width -Wno-unicode-homoglyph -E -x c Merriweather-font.css.epp -pipe -nostdinc -Wno-trigraphs -Wno-unicode-homoglyph -I/home/build/nabijaczleweli.github.io/build/highlit -CC -P -DDATE_TIME="11.09.2023 01:31:51 UTC" -DFILE_NAME="src/writing/the_taste_of_mi/Merriweather-font.css.epp" -DFILE_NAME_STUB="writing/the_taste_of_mi" -DJOB_URL | sed -re 's/\(U\+200B\)//g' -e "s;COLON_SLASH_SLASH;://;g" -e "s/<!--([[:space:]'\"]*<!--[[:space:]'\"]*)*-->//g" -e "s/FORCED_NEWLINE/\\n/g" -e "s;SLASH_ASTERIX;/*;g" -e "s;/\\*([[:space:]]*(/\\*)*[[:space:]]*)*\\*/;;g" -e "s/\(FORCED_SPACER\)//g" -e "s/HASH/#/g" -e "s/[[:space:]]+$//g" -e 's;"JOB_URL";"https://builds.sr.ht/~nabijaczleweli/job/1055776";' -e 's/\$101010\.pl/101010.pl/g' > /home/build/nabijaczleweli.github.io/../content/writing/the_taste_of_mi/Merriweather-font.css cd src/writing/the_taste_of_mi/ && clang -Wno-unicode-zero-width -Wno-unicode-homoglyph -E -x c Merriweather-font.css.epp -pipe -nostdinc -Wno-trigraphs -Wno-unicode-homoglyph -I/home/build/nabijaczleweli.github.io/build/highlit -CC -P -DDATE_TIME="11.09.2023 01:31:51 UTC" -DFILE_NAME="src/writing/the_taste_of_mi/Merriweather-font.css.epp" -DFILE_NAME_STUB="writing/the_taste_of_mi" -DJOB_URL -DEBOOK | sed -re 's/\(U\+200B\)//g' -e "s;COLON_SLASH_SLASH;://;g" -e "s/<!--([[:space:]'\"]*<!--[[:space:]'\"]*)*-->//g" -e "s/FORCED_NEWLINE/\\n/g" -e "s;SLASH_ASTERIX;/*;g" -e "s;/\\*([[:space:]]*(/\\*)*[[:space:]]*)*\\*/;;g" -e "s/\(FORCED_SPACER\)//g" -e "s/HASH/#/g" -e "s/[[:space:]]+$//g" -e 's;"JOB_URL";"https://builds.sr.ht/~nabijaczleweli/job/1055776";' -e 's/\$101010\.pl/101010.pl/g' > /home/build/nabijaczleweli.github.io/build/out/writing/the_taste_of_mi/Merriweather-font.css sleep 10; gen-epub-book -v "src/poetry.epupp" "../content/poetry.epub" -I. -Iout="build/out" Loaded descriptor file src/poetry.epupp with 6 entries. Normalised writing/poetry/the_east_wind/intro.html to src/writing/poetry/the_east_wind/intro.html for Content, Image or Include. Normalised writing/poetry/the_east_wind/east_wind.html to src/writing/poetry/the_east_wind/east_wind.html for Content, Image or Include. Found title "Introduction" for writing-poetry-the_east_wind-intro.html. Found title "The East Wind" for writing-poetry-the_east_wind-east_wind.html. ebook-convert "../content/poetry.epub" "../content/poetry.mobi" 1% Converting input to HTML... InputFormatPlugin: EPUB Input running on /home/build/content/poetry.epub Parsing all content... 34% Running transforms on e-book... Merging user specified metadata... Detecting structure... Flattening CSS and remapping font sizes... Source base font size is 12.00000pt Removing fake margins... Cleaning up manifest... Trimming unused files from manifest... Creating MOBI Output... 67% Running MOBI Output plugin Serializing resources... Creating MOBI 6 output Generating in-line TOC... Applying case-transforming CSS... Rasterizing SVG images... Converting XHTML to Mobipocket markup... Serializing markup content... Compressing markup content... Generating MOBI index for a book MOBI output written to /home/build/content/poetry.mobi Output saved to /home/build/content/poetry.mobi ebook-convert "../content/poetry.epub" "../content/poetry.azw3" 1% Converting input to HTML... InputFormatPlugin: EPUB Input running on /home/build/content/poetry.epub Parsing all content... 34% Running transforms on e-book... Merging user specified metadata... Detecting structure... Flattening CSS and remapping font sizes... Source base font size is 12.00000pt Removing fake margins... Cleaning up manifest... Trimming unused files from manifest... Creating AZW3 Output... 67% Running AZW3 Output plugin Serializing resources... Splitting markup on page breaks and flow limits, if any... Creating KF8 output Generating in-line ToC Generating KF8 markup... Compressing markup... Creating indices... AZW3 output written to /home/build/content/poetry.azw3 Output saved to /home/build/content/poetry.azw3 ebook-convert "../content/poetry.epub" "../content/poetry.pdf" 1% Converting input to HTML... InputFormatPlugin: EPUB Input running on /home/build/content/poetry.epub Parsing all content... 34% Running transforms on e-book... Merging user specified metadata... Detecting structure... Flattening CSS and remapping font sizes... Source base font size is 12.00000pt Removing fake margins... Cleaning up manifest... Trimming unused files from manifest... Creating PDF Output... 67% Running PDF Output plugin Splitting markup on page breaks and flow limits, if any... 83% Rendered writing-poetry-the_east_wind-intro.html 100% Rendered writing-poetry-the_east_wind-east_wind.html Rendered PDF in 0.124448 seconds: PDF output written to /home/build/content/poetry.pdf Output saved to /home/build/content/poetry.pdf sleep 10; gen-epub-book -v "src/writing/każdy_koniec_to_nowy_początek.epupp" "../content/writing/każdy_koniec_to_nowy_początek.epub" -I. -Iout="build/out" Loaded descriptor file src/writing/każdy_koniec_to_nowy_początek.epupp with 19 entries. Normalised preface.html to src/writing/preface.html for Content, Image or Include. Normalised każdy_koniec_to_nowy_początek/book.html to src/writing/każdy_koniec_to_nowy_początek/book.html for Content, Image or Include. Normalised ../indent.css to src/writing/../indent.css for Content, Image or Include. Normalised LICENSE-Roboto to .LICENSE-Roboto for Content, Image or Include. Normalised LICENSE-CREATIVE to .LICENSE-CREATIVE for Content, Image or Include. Normalised LICENSE-Merriweather to .LICENSE-Merriweather for Content, Image or Include. Normalised the_taste_of_mi/spacing.css to src/writing/the_taste_of_mi/spacing.css for Content, Image or Include. Normalised writing/Roboto-font.css to build/outwriting/Roboto-font.css for Content, Image or Include. Normalised writing/the_taste_of_mi/Merriweather-font.css to build/outwriting/the_taste_of_mi/Merriweather-font.css for Content, Image or Include. Found title "Preface" for preface.html. Found title "Każdy koniec to nowy początek" for każdy_koniec_to_nowy_początek-book.html. Downloading https://rawcdn.githack.com/google/fonts/97f2a0e2/apache/robotoslab/RobotoSlab-Regular.ttf to RobotoSlab-Regular.ttf. Downloading https://rawcdn.githack.com/google/fonts/97f2a0e2/apache/robotoslab/RobotoSlab-Bold.ttf to RobotoSlab-Bold.ttf. Downloading https://rawcdn.githack.com/google/fonts/97f2a0e2/apache/roboto/Roboto-Regular.ttf to Roboto-Regular.ttf. Downloading https://rawcdn.githack.com/google/fonts/97f2a0e2/apache/roboto/Roboto-Italic.ttf to Roboto-Italic.ttf. Downloading https://rawcdn.githack.com/google/fonts/97f2a0e2/ofl/merriweather/Merriweather-Regular.ttf to Merriweather-Regular.ttf. Downloading https://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Recycle_symbol_Taiwan.svg/2000px-Recycle_symbol_Taiwan.svg.png to 2000px-Recycle_symbol_Taiwan.svg.png. ebook-convert "../content/writing/każdy_koniec_to_nowy_początek.epub" "../content/writing/każdy_koniec_to_nowy_początek.mobi" 1% Converting input to HTML... InputFormatPlugin: EPUB Input running on /home/build/content/writing/każdy_koniec_to_nowy_początek.epub Parsing all content... 34% Running transforms on e-book... Merging user specified metadata... Detecting structure... Flattening CSS and remapping font sizes... Source base font size is 11.40000pt Removing fake margins... Cleaning up manifest... Trimming unused files from manifest... Trimming u'LICENSE-Merriweather' from manifest Trimming u'LICENSE-Roboto' from manifest Trimming u'LICENSE-CREATIVE' from manifest Creating MOBI Output... 67% Running MOBI Output plugin Serializing resources... Creating MOBI 6 output Generating in-line TOC... Applying case-transforming CSS... Rasterizing SVG images... Converting XHTML to Mobipocket markup... Serializing markup content... Compressing markup content... Generating MOBI index for a book MOBI output written to /home/build/content/writing/każdy_koniec_to_nowy_początek.mobi Output saved to /home/build/content/writing/każdy_koniec_to_nowy_początek.mobi ebook-convert "../content/writing/każdy_koniec_to_nowy_początek.epub" "../content/writing/każdy_koniec_to_nowy_początek.azw3" 1% Converting input to HTML... InputFormatPlugin: EPUB Input running on /home/build/content/writing/każdy_koniec_to_nowy_początek.epub Parsing all content... 34% Running transforms on e-book... Merging user specified metadata... Detecting structure... Flattening CSS and remapping font sizes... Source base font size is 11.40000pt Removing fake margins... Cleaning up manifest... Trimming unused files from manifest... Trimming u'LICENSE-Roboto' from manifest Trimming u'LICENSE-Merriweather' from manifest Trimming u'LICENSE-CREATIVE' from manifest Creating AZW3 Output... 67% Running AZW3 Output plugin Serializing resources... Splitting markup on page breaks and flow limits, if any... Creating KF8 output Generating in-line ToC Generating KF8 markup... Compressing markup... Creating indices... AZW3 output written to /home/build/content/writing/każdy_koniec_to_nowy_początek.azw3 Output saved to /home/build/content/writing/każdy_koniec_to_nowy_początek.azw3 ebook-convert "../content/writing/każdy_koniec_to_nowy_początek.epub" "../content/writing/każdy_koniec_to_nowy_początek.pdf" 1% Converting input to HTML... InputFormatPlugin: EPUB Input running on /home/build/content/writing/każdy_koniec_to_nowy_początek.epub Parsing all content... 34% Running transforms on e-book... Merging user specified metadata... Detecting structure... Flattening CSS and remapping font sizes... Source base font size is 11.40000pt Removing fake margins... Cleaning up manifest... Trimming unused files from manifest... Trimming u'LICENSE-CREATIVE' from manifest Trimming u'LICENSE-Roboto' from manifest Trimming u'LICENSE-Merriweather' from manifest Creating PDF Output... 67% Running PDF Output plugin Splitting markup on page breaks and flow limits, if any... This ebook does not have a raster cover, cannot generate cover for PDF. Cover type: <type 'lxml.etree._Element'> 83% Rendered preface.html 100% Rendered każdy_koniec_to_nowy_początek-book.html Rendered PDF in 0.192578 seconds: PDF output written to /home/build/content/writing/każdy_koniec_to_nowy_początek.pdf Output saved to /home/build/content/writing/każdy_koniec_to_nowy_początek.pdf sleep 10; gen-epub-book -v "src/writing/moments.epupp" "../content/writing/moments.epub" -I. -Iout="build/out" Loaded descriptor file src/writing/moments.epupp with 18 entries. Normalised moments/book.html to src/writing/moments/book.html for Content, Image or Include. Normalised moments/end.html to src/writing/moments/end.html for Content, Image or Include. Normalised ../indent.css to src/writing/../indent.css for Content, Image or Include. Normalised LICENSE-Roboto to .LICENSE-Roboto for Content, Image or Include. Normalised LICENSE-CREATIVE to .LICENSE-CREATIVE for Content, Image or Include. Normalised LICENSE-Merriweather to .LICENSE-Merriweather for Content, Image or Include. Normalised the_taste_of_mi/spacing.css to src/writing/the_taste_of_mi/spacing.css for Content, Image or Include. Normalised writing/Roboto-font.css to build/outwriting/Roboto-font.css for Content, Image or Include. Normalised writing/the_taste_of_mi/Merriweather-font.css to build/outwriting/the_taste_of_mi/Merriweather-font.css for Content, Image or Include. Found title "A Widow's Trace" for moments-book.html. Downloading https://rawcdn.githack.com/google/fonts/97f2a0e2/apache/robotoslab/RobotoSlab-Regular.ttf to RobotoSlab-Regular.ttf. Downloading https://rawcdn.githack.com/google/fonts/97f2a0e2/apache/robotoslab/RobotoSlab-Bold.ttf to RobotoSlab-Bold.ttf. Downloading https://rawcdn.githack.com/google/fonts/97f2a0e2/apache/roboto/Roboto-Regular.ttf to Roboto-Regular.ttf. Downloading https://rawcdn.githack.com/google/fonts/97f2a0e2/apache/roboto/Roboto-Italic.ttf to Roboto-Italic.ttf. Downloading https://rawcdn.githack.com/google/fonts/97f2a0e2/ofl/merriweather/Merriweather-Regular.ttf to Merriweather-Regular.ttf. ebook-convert "../content/writing/moments.epub" "../content/writing/moments.mobi" 1% Converting input to HTML... InputFormatPlugin: EPUB Input running on /home/build/content/writing/moments.epub Parsing all content... 34% Running transforms on e-book... Merging user specified metadata... Detecting structure... Flattening CSS and remapping font sizes... Source base font size is 11.40000pt Removing fake margins... Cleaning up manifest... Trimming unused files from manifest... Trimming u'LICENSE-CREATIVE' from manifest Trimming u'LICENSE-Merriweather' from manifest Trimming u'LICENSE-Roboto' from manifest Creating MOBI Output... 67% Running MOBI Output plugin Serializing resources... Creating MOBI 6 output Generating in-line TOC... Applying case-transforming CSS... Rasterizing SVG images... Converting XHTML to Mobipocket markup... Serializing markup content... Compressing markup content... Generating MOBI index for a book MOBI output written to /home/build/content/writing/moments.mobi Output saved to /home/build/content/writing/moments.mobi ebook-convert "../content/writing/moments.epub" "../content/writing/moments.azw3" 1% Converting input to HTML... InputFormatPlugin: EPUB Input running on /home/build/content/writing/moments.epub Parsing all content... 34% Running transforms on e-book... Merging user specified metadata... Detecting structure... Flattening CSS and remapping font sizes... Source base font size is 11.40000pt Removing fake margins... Cleaning up manifest... Trimming unused files from manifest... Trimming u'LICENSE-Merriweather' from manifest Trimming u'LICENSE-CREATIVE' from manifest Trimming u'LICENSE-Roboto' from manifest Creating AZW3 Output... 67% Running AZW3 Output plugin Serializing resources... Splitting markup on page breaks and flow limits, if any... Creating KF8 output Generating KF8 markup... Compressing markup... Creating indices... AZW3 output written to /home/build/content/writing/moments.azw3 Output saved to /home/build/content/writing/moments.azw3 ebook-convert "../content/writing/moments.epub" "../content/writing/moments.pdf" 1% Converting input to HTML... InputFormatPlugin: EPUB Input running on /home/build/content/writing/moments.epub Parsing all content... 34% Running transforms on e-book... Merging user specified metadata... Detecting structure... Flattening CSS and remapping font sizes... Source base font size is 11.40000pt Removing fake margins... Cleaning up manifest... Trimming unused files from manifest... Trimming u'LICENSE-Merriweather' from manifest Trimming u'LICENSE-CREATIVE' from manifest Trimming u'LICENSE-Roboto' from manifest Creating PDF Output... 67% Running PDF Output plugin Splitting markup on page breaks and flow limits, if any... 83% Rendered moments-book.html 100% Rendered moments-end.html Rendered PDF in 0.303964 seconds: PDF output written to /home/build/content/writing/moments.pdf Output saved to /home/build/content/writing/moments.pdf sleep 10; gen-epub-book -v "src/writing/poetry/ПИПА.epupp" "../content/writing/poetry/ПИПА.epub" -I. -Iout="build/out" Loaded descriptor file src/writing/poetry/ПИПА.epupp with 33 entries. Normalised ПИПА/title.html to src/writing/poetry/ПИПА/title.html for Content, Image or Include. Normalised writing/poetry/ПИПА/contents.html to build/outwriting/poetry/ПИПА/contents.html for Content, Image or Include. Normalised writing/poetry/ПИПА/introduction.html to build/outwriting/poetry/ПИПА/introduction.html for Content, Image or Include. Normalised writing/poetry/ПИПА/2018.11.02-Homoseksualizm/index.html to build/outwriting/poetry/ПИПА/2018.11.02-Homoseksualizm/index.html for Content, Image or Include. Normalised writing/poetry/ПИПА/2018.11.02-Homoseksualizm/Zawadzka.html to build/outwriting/poetry/ПИПА/2018.11.02-Homoseksualizm/Zawadzka.html for Content, Image or Include. Normalised writing/poetry/ПИПА/2018.11.02-Homoseksualizm/Micherda.html to build/outwriting/poetry/ПИПА/2018.11.02-Homoseksualizm/Micherda.html for Content, Image or Include. Normalised writing/poetry/ПИПА/2018.11.02-Homoseksualizm/Bujak.html to build/outwriting/poetry/ПИПА/2018.11.02-Homoseksualizm/Bujak.html for Content, Image or Include. Normalised writing/poetry/ПИПА/2018.11.02-Homoseksualizm/nabijaczleweli.html to build/outwriting/poetry/ПИПА/2018.11.02-Homoseksualizm/nabijaczleweli.html for Content, Image or Include. Normalised LICENSE-Roboto to .LICENSE-Roboto for Content, Image or Include. Normalised LICENSE-CREATIVE to .LICENSE-CREATIVE for Content, Image or Include. Normalised LICENSE-Merriweather to .LICENSE-Merriweather for Content, Image or Include. Normalised ../../indent.css to src/writing/poetry/../../indent.css for Content, Image or Include. Normalised writing/Roboto-font.css to build/outwriting/Roboto-font.css for Content, Image or Include. Normalised ../the_taste_of_mi/spacing.css to src/writing/poetry/../the_taste_of_mi/spacing.css for Content, Image or Include. Normalised writing/the_taste_of_mi/MathJax-font.css to build/outwriting/the_taste_of_mi/MathJax-font.css for Content, Image or Include. Normalised writing/the_taste_of_mi/Merriweather-font.css to build/outwriting/the_taste_of_mi/Merriweather-font.css for Content, Image or Include. Normalised ../translations/sherlock_holmes_the_published_apocrypha/headings.css to src/writing/poetry/../translations/sherlock_holmes_the_published_apocrypha/headings.css for Content, Image or Include. Normalised ../translations/sherlock_holmes_the_published_apocrypha/Roboto-additions.css to src/writing/poetry/../translations/sherlock_holmes_the_published_apocrypha/Roboto-additions.css for Content, Image or Include. Found title "Strona Tytułowa" for ПИПА-title.html. Found title "Spis Treści" for out/writing-poetry-ПИПА-contents.html. Found title "Wprowadzenie" for out/writing-poetry-ПИПА-introduction.html. Found title "2018.11.02 „Homoseksualizm”" for out/writing-poetry-ПИПА-2018.11.02-Homoseksualizm-index.html. Found title "2018.11.02 – Zawadzka" for out/writing-poetry-ПИПА-2018.11.02-Homoseksualizm-Zawadzka.html. Found title "2018.11.02 „HOMOsapiens” – Micherda" for out/writing-poetry-ПИПА-2018.11.02-Homoseksualizm-Micherda.html. Found title "2018.11.02 – Bujak" for out/writing-poetry-ПИПА-2018.11.02-Homoseksualizm-Bujak.html. Found title "2018.11.02 – наб" for out/writing-poetry-ПИПА-2018.11.02-Homoseksualizm-nabijaczleweli.html. Downloading https://rawcdn.githack.com/mathjax/MathJax/2.7.6/fonts/HTML-CSS/TeX/otf/MathJax_Main-Italic.otf to MathJax_Main-Italic.otf. Downloading https://rawcdn.githack.com/mathjax/MathJax/2.7.6/fonts/HTML-CSS/TeX/otf/MathJax_Math-Italic.otf to MathJax_Math-Italic.otf. Downloading https://rawcdn.githack.com/mathjax/MathJax/2.7.6/fonts/HTML-CSS/TeX/otf/MathJax_Main-Regular.otf to MathJax_Main-Regular.otf. Downloading https://rawcdn.githack.com/mathjax/MathJax/2.7.6/fonts/HTML-CSS/TeX/woff/MathJax_Main-Italic.woff to MathJax_Main-Italic.woff. Downloading https://rawcdn.githack.com/mathjax/MathJax/2.7.6/fonts/HTML-CSS/TeX/woff/MathJax_Math-Italic.woff to MathJax_Math-Italic.woff. Downloading https://rawcdn.githack.com/mathjax/MathJax/2.7.6/fonts/HTML-CSS/TeX/woff/MathJax_Main-Regular.woff to MathJax_Main-Regular.woff. Downloading https://rawcdn.githack.com/google/fonts/97f2a0e2/apache/robotoslab/RobotoSlab-Regular.ttf to RobotoSlab-Regular.ttf. Downloading https://rawcdn.githack.com/google/fonts/97f2a0e2/apache/robotoslab/RobotoSlab-Bold.ttf to RobotoSlab-Bold.ttf. Downloading https://rawcdn.githack.com/google/fonts/97f2a0e2/apache/roboto/Roboto-Regular.ttf to Roboto-Regular.ttf. Downloading https://rawcdn.githack.com/google/fonts/97f2a0e2/apache/roboto/Roboto-Italic.ttf to Roboto-Italic.ttf. Downloading https://rawcdn.githack.com/google/fonts/97f2a0e2/ofl/merriweather/Merriweather-Regular.ttf to Merriweather-Regular.ttf. ebook-convert "../content/writing/poetry/ПИПА.epub" "../content/writing/poetry/ПИПА.mobi" 1% Converting input to HTML... InputFormatPlugin: EPUB Input running on /home/build/content/writing/poetry/ПИПА.epub Parsing all content... 34% Running transforms on e-book... Merging user specified metadata... Detecting structure... Flattening CSS and remapping font sizes... Source base font size is 11.40000pt Removing fake margins... Cleaning up manifest... Trimming unused files from manifest... Trimming u'LICENSE-Roboto' from manifest Trimming u'LICENSE-CREATIVE' from manifest Trimming u'LICENSE-Merriweather' from manifest Creating MOBI Output... 67% Running MOBI Output plugin Serializing resources... Creating MOBI 6 output Generating in-line TOC... Applying case-transforming CSS... Rasterizing SVG images... Converting XHTML to Mobipocket markup... Serializing markup content... Compressing markup content... Generating MOBI index for a book MOBI output written to /home/build/content/writing/poetry/ПИПА.mobi Output saved to /home/build/content/writing/poetry/ПИПА.mobi ebook-convert "../content/writing/poetry/ПИПА.epub" "../content/writing/poetry/ПИПА.azw3" 1% Converting input to HTML... InputFormatPlugin: EPUB Input running on /home/build/content/writing/poetry/ПИПА.epub Parsing all content... 34% Running transforms on e-book... Merging user specified metadata... Detecting structure... Flattening CSS and remapping font sizes... Source base font size is 11.40000pt Removing fake margins... Cleaning up manifest... Trimming unused files from manifest... Trimming u'LICENSE-Roboto' from manifest Trimming u'LICENSE-CREATIVE' from manifest Trimming u'LICENSE-Merriweather' from manifest Creating AZW3 Output... 67% Running AZW3 Output plugin Serializing resources... Splitting markup on page breaks and flow limits, if any... Creating KF8 output Generating in-line ToC Generating KF8 markup... Compressing markup... Creating indices... AZW3 output written to /home/build/content/writing/poetry/ПИПА.azw3 Output saved to /home/build/content/writing/poetry/ПИПА.azw3 ebook-convert "../content/writing/poetry/ПИПА.epub" "../content/writing/poetry/ПИПА.pdf" 1% Converting input to HTML... InputFormatPlugin: EPUB Input running on /home/build/content/writing/poetry/ПИПА.epub Parsing all content... 34% Running transforms on e-book... Merging user specified metadata... Detecting structure... Flattening CSS and remapping font sizes... Source base font size is 11.40000pt Removing fake margins... Cleaning up manifest... Trimming unused files from manifest... Trimming u'LICENSE-Roboto' from manifest Trimming u'LICENSE-CREATIVE' from manifest Trimming u'LICENSE-Merriweather' from manifest Creating PDF Output... 67% Running PDF Output plugin Splitting markup on page breaks and flow limits, if any... 71% Rendered ПИПА-title.html 75% Rendered writing-poetry-ПИПА-contents.html 79% Rendered writing-poetry-ПИПА-introduction.html 83% Rendered writing-poetry-ПИПА-2018.11.02-Homoseksualizm-index.html 87% Rendered writing-poetry-ПИПА-2018.11.02-Homoseksualizm-Zawadzka.html 91% Rendered writing-poetry-ПИПА-2018.11.02-Homoseksualizm-Micherda.html 95% Rendered writing-poetry-ПИПА-2018.11.02-Homoseksualizm-Bujak.html 100% Rendered writing-poetry-ПИПА-2018.11.02-Homoseksualizm-nabijaczleweli.html Rendered PDF in 0.226193 seconds: PDF output written to /home/build/content/writing/poetry/ПИПА.pdf Output saved to /home/build/content/writing/poetry/ПИПА.pdf sleep 10; gen-epub-book -v "src/writing/the_taste_of_mi.epupp" "../content/writing/the_taste_of_mi.epub" -I. -Iout="build/out" Loaded descriptor file src/writing/the_taste_of_mi.epupp with 26 entries. Normalised the_taste_of_mi/disclaimer.html to src/writing/the_taste_of_mi/disclaimer.html for Content, Image or Include. Normalised writing/the_taste_of_mi/book.html to build/outwriting/the_taste_of_mi/book.html for Content, Image or Include. Normalised writing/the_taste_of_mi/endnotes.html to build/outwriting/the_taste_of_mi/endnotes.html for Content, Image or Include. Normalised the_taste_of_mi/end.html to src/writing/the_taste_of_mi/end.html for Content, Image or Include. Normalised ../indent.css to src/writing/../indent.css for Content, Image or Include. Normalised LICENSE-Roboto to .LICENSE-Roboto for Content, Image or Include. Normalised LICENSE-CREATIVE to .LICENSE-CREATIVE for Content, Image or Include. Normalised LICENSE-Merriweather to .LICENSE-Merriweather for Content, Image or Include. Normalised the_taste_of_mi/spacing.css to src/writing/the_taste_of_mi/spacing.css for Content, Image or Include. Normalised writing/Roboto-font.css to build/outwriting/Roboto-font.css for Content, Image or Include. Normalised writing/the_taste_of_mi/effects.css to build/outwriting/the_taste_of_mi/effects.css for Content, Image or Include. Normalised writing/the_taste_of_mi/MathJax-font.css to build/outwriting/the_taste_of_mi/MathJax-font.css for Content, Image or Include. Normalised writing/the_taste_of_mi/Merriweather-font.css to build/outwriting/the_taste_of_mi/Merriweather-font.css for Content, Image or Include. Found title "The Taste of MI" for out/writing-the_taste_of_mi-book.html. Found title "Przypisy" for out/writing-the_taste_of_mi-endnotes.html. Downloading https://rawcdn.githack.com/mathjax/MathJax/2.7.6/fonts/HTML-CSS/TeX/otf/MathJax_Math-Italic.otf to MathJax_Math-Italic.otf. Downloading https://rawcdn.githack.com/mathjax/MathJax/2.7.6/fonts/HTML-CSS/TeX/otf/MathJax_Main-Regular.otf to MathJax_Main-Regular.otf. Downloading https://rawcdn.githack.com/mathjax/MathJax/2.7.6/fonts/HTML-CSS/TeX/woff/MathJax_Math-Italic.woff to MathJax_Math-Italic.woff. Downloading https://rawcdn.githack.com/mathjax/MathJax/2.7.6/fonts/HTML-CSS/TeX/woff/MathJax_Main-Regular.woff to MathJax_Main-Regular.woff. Downloading https://rawcdn.githack.com/google/fonts/97f2a0e2/apache/robotoslab/RobotoSlab-Regular.ttf to RobotoSlab-Regular.ttf. Downloading https://rawcdn.githack.com/google/fonts/97f2a0e2/apache/robotoslab/RobotoSlab-Bold.ttf to RobotoSlab-Bold.ttf. Downloading https://rawcdn.githack.com/google/fonts/97f2a0e2/apache/roboto/Roboto-Regular.ttf to Roboto-Regular.ttf. Downloading https://rawcdn.githack.com/google/fonts/97f2a0e2/apache/roboto/Roboto-Italic.ttf to Roboto-Italic.ttf. Downloading https://rawcdn.githack.com/google/fonts/97f2a0e2/ofl/merriweather/Merriweather-Regular.ttf to Merriweather-Regular.ttf. ebook-convert "../content/writing/the_taste_of_mi.epub" "../content/writing/the_taste_of_mi.mobi" 1% Converting input to HTML... InputFormatPlugin: EPUB Input running on /home/build/content/writing/the_taste_of_mi.epub Parsing all content... Referenced file u'MathJax_Main-Italic.otf' not found Referenced file u'MathJax_Main-Italic.woff' not found 34% Running transforms on e-book... Merging user specified metadata... Detecting structure... Flattening CSS and remapping font sizes... Source base font size is 11.40000pt Removing fake margins... Cleaning up manifest... Trimming unused files from manifest... Trimming u'LICENSE-Merriweather' from manifest Trimming u'LICENSE-Roboto' from manifest Trimming u'LICENSE-CREATIVE' from manifest Creating MOBI Output... 67% Running MOBI Output plugin Serializing resources... Creating MOBI 6 output Generating in-line TOC... Applying case-transforming CSS... Rasterizing SVG images... Converting XHTML to Mobipocket markup... Serializing markup content... Compressing markup content... Generating MOBI index for a book MOBI output written to /home/build/content/writing/the_taste_of_mi.mobi Output saved to /home/build/content/writing/the_taste_of_mi.mobi ebook-convert "../content/writing/the_taste_of_mi.epub" "../content/writing/the_taste_of_mi.azw3" 1% Converting input to HTML... InputFormatPlugin: EPUB Input running on /home/build/content/writing/the_taste_of_mi.epub Parsing all content... Referenced file u'MathJax_Main-Italic.otf' not found Referenced file u'MathJax_Main-Italic.woff' not found 34% Running transforms on e-book... Merging user specified metadata... Detecting structure... Flattening CSS and remapping font sizes... Source base font size is 11.40000pt Removing fake margins... Cleaning up manifest... Trimming unused files from manifest... Trimming u'LICENSE-Roboto' from manifest Trimming u'LICENSE-CREATIVE' from manifest Trimming u'LICENSE-Merriweather' from manifest Creating AZW3 Output... 67% Running AZW3 Output plugin Serializing resources... Splitting markup on page breaks and flow limits, if any... Creating KF8 output Generating in-line ToC Generating KF8 markup... Compressing markup... Creating indices... AZW3 output written to /home/build/content/writing/the_taste_of_mi.azw3 Output saved to /home/build/content/writing/the_taste_of_mi.azw3 ebook-convert "../content/writing/the_taste_of_mi.epub" "../content/writing/the_taste_of_mi.pdf" 1% Converting input to HTML... InputFormatPlugin: EPUB Input running on /home/build/content/writing/the_taste_of_mi.epub Parsing all content... Referenced file u'MathJax_Main-Italic.otf' not found Referenced file u'MathJax_Main-Italic.woff' not found 34% Running transforms on e-book... Merging user specified metadata... Detecting structure... Flattening CSS and remapping font sizes... Source base font size is 11.40000pt Removing fake margins... Cleaning up manifest... Trimming unused files from manifest... Trimming u'LICENSE-Roboto' from manifest Trimming u'LICENSE-CREATIVE' from manifest Trimming u'LICENSE-Merriweather' from manifest Creating PDF Output... 67% Running PDF Output plugin Splitting markup on page breaks and flow limits, if any... 75% Rendered the_taste_of_mi-disclaimer.html 83% Rendered writing-the_taste_of_mi-book.html 91% Rendered writing-the_taste_of_mi-endnotes.html 100% Rendered the_taste_of_mi-end.html Rendered PDF in 0.456651 seconds: PDF output written to /home/build/content/writing/the_taste_of_mi.pdf Output saved to /home/build/content/writing/the_taste_of_mi.pdf sleep 10; gen-epub-book -v "src/writing/translations/erotica.epupp" "../content/writing/translations/erotica.epub" -I. -Iout="build/out" Loaded descriptor file src/writing/translations/erotica.epupp with 29 entries. Normalised erotica/title.html to src/writing/translations/erotica/title.html for Content, Image or Include. Normalised erotica/dedication.html to src/writing/translations/erotica/dedication.html for Content, Image or Include. Normalised writing/translations/erotica/contents.html to build/outwriting/translations/erotica/contents.html for Content, Image or Include. Normalised writing/translations/erotica/danger/index.html to build/outwriting/translations/erotica/danger/index.html for Content, Image or Include. Normalised writing/translations/erotica/danger/the-bloody-chamber.html to build/outwriting/translations/erotica/danger/the-bloody-chamber.html for Content, Image or Include. Normalised LICENSE-Roboto to .LICENSE-Roboto for Content, Image or Include. Normalised LICENSE-CREATIVE to .LICENSE-CREATIVE for Content, Image or Include. Normalised LICENSE-Merriweather to .LICENSE-Merriweather for Content, Image or Include. Normalised ../../indent.css to src/writing/translations/../../indent.css for Content, Image or Include. Normalised erotica/lettering.css to src/writing/translations/erotica/lettering.css for Content, Image or Include. Normalised writing/Roboto-font.css to build/outwriting/Roboto-font.css for Content, Image or Include. Normalised ../the_taste_of_mi/spacing.css to src/writing/translations/../the_taste_of_mi/spacing.css for Content, Image or Include. Normalised writing/the_taste_of_mi/MathJax-font.css to build/outwriting/the_taste_of_mi/MathJax-font.css for Content, Image or Include. Normalised writing/the_taste_of_mi/Merriweather-font.css to build/outwriting/the_taste_of_mi/Merriweather-font.css for Content, Image or Include. Normalised sherlock_holmes_the_published_apocrypha/headings.css to src/writing/translations/sherlock_holmes_the_published_apocrypha/headings.css for Content, Image or Include. Normalised sherlock_holmes_the_published_apocrypha/Roboto-additions.css to src/writing/translations/sherlock_holmes_the_published_apocrypha/Roboto-additions.css for Content, Image or Include. Found title "Strona Tytułowa" for erotica-title.html. Found title "Dedykacja" for erotica-dedication.html. Found title "Spis Treści" for out/writing-translations-erotica-contents.html. Found title "Niebezpieczeństwo" for out/writing-translations-erotica-danger-index.html. Found title "Angela Carter – Krwawa komnata (The Bloody Chamber)" for out/writing-translations-erotica-danger-the-bloody-chamber.html. Downloading https://rawcdn.githack.com/mathjax/MathJax/2.7.6/fonts/HTML-CSS/TeX/otf/MathJax_Math-Italic.otf to MathJax_Math-Italic.otf. Downloading https://rawcdn.githack.com/mathjax/MathJax/2.7.6/fonts/HTML-CSS/TeX/otf/MathJax_Main-Regular.otf to MathJax_Main-Regular.otf. Downloading https://rawcdn.githack.com/mathjax/MathJax/2.7.6/fonts/HTML-CSS/TeX/woff/MathJax_Math-Italic.woff to MathJax_Math-Italic.woff. Downloading https://rawcdn.githack.com/mathjax/MathJax/2.7.6/fonts/HTML-CSS/TeX/woff/MathJax_Main-Regular.woff to MathJax_Main-Regular.woff. Downloading https://rawcdn.githack.com/google/fonts/97f2a0e2/apache/robotoslab/RobotoSlab-Regular.ttf to RobotoSlab-Regular.ttf. Downloading https://rawcdn.githack.com/google/fonts/97f2a0e2/apache/robotoslab/RobotoSlab-Bold.ttf to RobotoSlab-Bold.ttf. Downloading https://rawcdn.githack.com/google/fonts/97f2a0e2/apache/roboto/Roboto-Regular.ttf to Roboto-Regular.ttf. Downloading https://rawcdn.githack.com/google/fonts/97f2a0e2/apache/roboto/Roboto-Italic.ttf to Roboto-Italic.ttf. Downloading https://rawcdn.githack.com/google/fonts/97f2a0e2/ofl/merriweather/Merriweather-Regular.ttf to Merriweather-Regular.ttf. ebook-convert "../content/writing/translations/erotica.epub" "../content/writing/translations/erotica.mobi" 1% Converting input to HTML... InputFormatPlugin: EPUB Input running on /home/build/content/writing/translations/erotica.epub Parsing all content... Referenced file u'MathJax_Main-Italic.otf' not found Referenced file u'MathJax_Main-Italic.woff' not found 34% Running transforms on e-book... Merging user specified metadata... Detecting structure... Flattening CSS and remapping font sizes... Source base font size is 11.40000pt Removing fake margins... Cleaning up manifest... Trimming unused files from manifest... Trimming u'LICENSE-CREATIVE' from manifest Trimming u'LICENSE-Roboto' from manifest Trimming u'LICENSE-Merriweather' from manifest Creating MOBI Output... 67% Running MOBI Output plugin Serializing resources... Creating MOBI 6 output Generating in-line TOC... Applying case-transforming CSS... Rasterizing SVG images... Converting XHTML to Mobipocket markup... Serializing markup content... Compressing markup content... Generating MOBI index for a book MOBI output written to /home/build/content/writing/translations/erotica.mobi Output saved to /home/build/content/writing/translations/erotica.mobi ebook-convert "../content/writing/translations/erotica.epub" "../content/writing/translations/erotica.azw3" 1% Converting input to HTML... InputFormatPlugin: EPUB Input running on /home/build/content/writing/translations/erotica.epub Parsing all content... Referenced file u'MathJax_Main-Italic.otf' not found Referenced file u'MathJax_Main-Italic.woff' not found 34% Running transforms on e-book... Merging user specified metadata... Detecting structure... Flattening CSS and remapping font sizes... Source base font size is 11.40000pt Removing fake margins... Cleaning up manifest... Trimming unused files from manifest... Trimming u'LICENSE-Merriweather' from manifest Trimming u'LICENSE-Roboto' from manifest Trimming u'LICENSE-CREATIVE' from manifest Creating AZW3 Output... 67% Running AZW3 Output plugin Serializing resources... Splitting markup on page breaks and flow limits, if any... Creating KF8 output Generating in-line ToC Generating KF8 markup... Compressing markup... Creating indices... AZW3 output written to /home/build/content/writing/translations/erotica.azw3 Output saved to /home/build/content/writing/translations/erotica.azw3 ebook-convert "../content/writing/translations/erotica.epub" "../content/writing/translations/erotica.pdf" 1% Converting input to HTML... InputFormatPlugin: EPUB Input running on /home/build/content/writing/translations/erotica.epub Parsing all content... Referenced file u'MathJax_Main-Italic.woff' not found Referenced file u'MathJax_Main-Italic.otf' not found 34% Running transforms on e-book... Merging user specified metadata... Detecting structure... Flattening CSS and remapping font sizes... Source base font size is 11.40000pt Removing fake margins... Cleaning up manifest... Trimming unused files from manifest... Trimming u'LICENSE-Roboto' from manifest Trimming u'LICENSE-Merriweather' from manifest Trimming u'LICENSE-CREATIVE' from manifest Creating PDF Output... 67% Running PDF Output plugin Splitting markup on page breaks and flow limits, if any... 73% Rendered erotica-title.html 80% Rendered erotica-dedication.html 86% Rendered writing-translations-erotica-contents.html 93% Rendered writing-translations-erotica-danger-index.html 100% Rendered writing-translations-erotica-danger-the-bloody-chamber.html Rendered PDF in 0.58977 seconds: PDF output written to /home/build/content/writing/translations/erotica.pdf Output saved to /home/build/content/writing/translations/erotica.pdf sleep 10; gen-epub-book -v "src/writing/translations/sherlock_holmes_the_published_apocrypha.epupp" "../content/writing/translations/sherlock_holmes_the_published_apocrypha.epub" -I. -Iout="build/out" Loaded descriptor file src/writing/translations/sherlock_holmes_the_published_apocrypha.epupp with 33 entries. Normalised sherlock_holmes_the_published_apocrypha/title.html to src/writing/translations/sherlock_holmes_the_published_apocrypha/title.html for Content, Image or Include. Normalised sherlock_holmes_the_published_apocrypha/dedication.html to src/writing/translations/sherlock_holmes_the_published_apocrypha/dedication.html for Content, Image or Include. Normalised writing/translations/sherlock_holmes_the_published_apocrypha/contents.html to build/outwriting/translations/sherlock_holmes_the_published_apocrypha/contents.html for Content, Image or Include. Normalised writing/translations/sherlock_holmes_the_published_apocrypha/introduction.html to build/outwriting/translations/sherlock_holmes_the_published_apocrypha/introduction.html for Content, Image or Include. Normalised writing/translations/sherlock_holmes_the_published_apocrypha/the-parodies/index.html to build/outwriting/translations/sherlock_holmes_the_published_apocrypha/the-parodies/index.html for Content, Image or Include. Normalised writing/translations/sherlock_holmes_the_published_apocrypha/the-parodies/the-field-bazaar.html to build/outwriting/translations/sherlock_holmes_the_published_apocrypha/the-parodies/the-field-bazaar.html for Content, Image or Include. Normalised writing/translations/sherlock_holmes_the_published_apocrypha/the-parodies/how-watson-learned-the-trick.html to build/outwriting/translations/sherlock_holmes_the_published_apocrypha/the-parodies/how-watson-learned-the-trick.html for Content, Image or Include. Normalised writing/translations/sherlock_holmes_the_published_apocrypha/the-parodies/the-adventure-of-the-two-collaborators.html to build/outwriting/translations/sherlock_holmes_the_published_apocrypha/the-parodies/the-adventure-of-the-two-collaborators.html for Content, Image or Include. Normalised writing/translations/sherlock_holmes_the_published_apocrypha/the-stories-of-mystery/index.html to build/outwriting/translations/sherlock_holmes_the_published_apocrypha/the-stories-of-mystery/index.html for Content, Image or Include. Normalised writing/translations/sherlock_holmes_the_published_apocrypha/the-stories-of-mystery/the-man-with-the-watches.html to build/outwriting/translations/sherlock_holmes_the_published_apocrypha/the-stories-of-mystery/the-man-with-the-watches.html for Content, Image or Include. Normalised LICENSE-Roboto to .LICENSE-Roboto for Content, Image or Include. Normalised LICENSE-CREATIVE to .LICENSE-CREATIVE for Content, Image or Include. Normalised LICENSE-Merriweather to .LICENSE-Merriweather for Content, Image or Include. Normalised ../../indent.css to src/writing/translations/../../indent.css for Content, Image or Include. Normalised writing/Roboto-font.css to build/outwriting/Roboto-font.css for Content, Image or Include. Normalised ../the_taste_of_mi/spacing.css to src/writing/translations/../the_taste_of_mi/spacing.css for Content, Image or Include. Normalised writing/the_taste_of_mi/MathJax-font.css to build/outwriting/the_taste_of_mi/MathJax-font.css for Content, Image or Include. Normalised writing/the_taste_of_mi/Merriweather-font.css to build/outwriting/the_taste_of_mi/Merriweather-font.css for Content, Image or Include. Normalised sherlock_holmes_the_published_apocrypha/headings.css to src/writing/translations/sherlock_holmes_the_published_apocrypha/headings.css for Content, Image or Include. Normalised sherlock_holmes_the_published_apocrypha/Roboto-additions.css to src/writing/translations/sherlock_holmes_the_published_apocrypha/Roboto-additions.css for Content, Image or Include. Found title "Strona Tytułowa" for sherlock_holmes_the_published_apocrypha-title.html. Found title "Dedykacja" for sherlock_holmes_the_published_apocrypha-dedication.html. Found title "Spis Treści" for out/writing-translations-sherlock_holmes_the_published_apocrypha-contents.html. Found title "Wprowadzenie" for out/writing-translations-sherlock_holmes_the_published_apocrypha-introduction.html. Found title "Parodie" for out/writing-translations-sherlock_holmes_the_published_apocrypha-the-parodies-index.html. Found title "Targi o pole (The Field Bazaar)" for out/writing-translations-sherlock_holmes_the_published_apocrypha-the-parodies-the-field-bazaar.html. Found title "Jak Watson nauczył się sztuczki (How Watson Learned the Trick)" for out/writing-translations-sherlock_holmes_the_published_apocrypha-the-parodies-how-watson-learned-the-trick.html. Found title "Przygoda dwóch współpracowników (The Adventure of the Two Collaborators)" for out/writing-translations-sherlock_holmes_the_published_apocrypha-the-parodies-the-adventure-of-the-two-collaborators.html. Found title "Historie Tajemnicy" for out/writing-translations-sherlock_holmes_the_published_apocrypha-the-stories-of-mystery-index.html. Found title "Człowiek z zegarkami (The Man with the Watches)" for out/writing-translations-sherlock_holmes_the_published_apocrypha-the-stories-of-mystery-the-man-with-the-watches.html. Downloading https://rawcdn.githack.com/mathjax/MathJax/2.7.6/fonts/HTML-CSS/TeX/otf/MathJax_Math-Italic.otf to MathJax_Math-Italic.otf. Downloading https://rawcdn.githack.com/mathjax/MathJax/2.7.6/fonts/HTML-CSS/TeX/otf/MathJax_Main-Regular.otf to MathJax_Main-Regular.otf. Downloading https://rawcdn.githack.com/mathjax/MathJax/2.7.6/fonts/HTML-CSS/TeX/woff/MathJax_Math-Italic.woff to MathJax_Math-Italic.woff. Downloading https://rawcdn.githack.com/mathjax/MathJax/2.7.6/fonts/HTML-CSS/TeX/woff/MathJax_Main-Regular.woff to MathJax_Main-Regular.woff. Downloading https://rawcdn.githack.com/google/fonts/97f2a0e2/apache/robotoslab/RobotoSlab-Regular.ttf to RobotoSlab-Regular.ttf. Downloading https://rawcdn.githack.com/google/fonts/97f2a0e2/apache/robotoslab/RobotoSlab-Bold.ttf to RobotoSlab-Bold.ttf. Downloading https://rawcdn.githack.com/google/fonts/97f2a0e2/apache/roboto/Roboto-Regular.ttf to Roboto-Regular.ttf. Downloading https://rawcdn.githack.com/google/fonts/97f2a0e2/apache/roboto/Roboto-Italic.ttf to Roboto-Italic.ttf. Downloading https://rawcdn.githack.com/google/fonts/97f2a0e2/ofl/merriweather/Merriweather-Regular.ttf to Merriweather-Regular.ttf. ebook-convert "../content/writing/translations/sherlock_holmes_the_published_apocrypha.epub" "../content/writing/translations/sherlock_holmes_the_published_apocrypha.mobi" 1% Converting input to HTML... InputFormatPlugin: EPUB Input running on /home/build/content/writing/translations/sherlock_holmes_the_published_apocrypha.epub Parsing all content... Referenced file u'out/writing-translations-sherlock_holmes_the_published_apocrypha-william-gillette-as-sherlock-holmes-the-painful-predicament-of-sherlock-holmes.html' not found Referenced file u'out/writing-translations-sherlock_holmes_the_published_apocrypha-the-stories-of-mystery-the-lost-special.html' not found Referenced file u'out/writing-translations-sherlock_holmes_the_published_apocrypha-conan-doyle-as-dramatist-index.html' not found Referenced file u'out/writing-translations-sherlock_holmes_the_published_apocrypha-conan-doyle-as-dramatist-the-speckled-band.html' not found Referenced file u'MathJax_Main-Italic.woff' not found Referenced file u'out/writing-translations-sherlock_holmes_the_published_apocrypha-william-gillette-as-sherlock-holmes-index.html' not found Referenced file u'out/writing-translations-sherlock_holmes_the_published_apocrypha-an-outline-plot-for-sherlock-holmes-story.html' not found Referenced file u'out/writing-translations-sherlock_holmes_the_published_apocrypha-an-outline-index.html' not found Referenced file u'out/writing-translations-sherlock_holmes_the_published_apocrypha-conan-doyle-as-dramatist-the-crown-diamond.html' not found Referenced file u'out/writing-translations-sherlock_holmes_the_published_apocrypha-william-gillette-as-sherlock-holmes-sherlock-holmes.html' not found Referenced file u'out/writing-translations-sherlock_holmes_the_published_apocrypha-the-discovery-index.html' not found Referenced file u'MathJax_Main-Italic.otf' not found Referenced file u'out/writing-translations-sherlock_holmes_the_published_apocrypha-the-discovery-the-case-of-the-man-who-was-wanted.html' not found 34% Running transforms on e-book... Merging user specified metadata... Detecting structure... Flattening CSS and remapping font sizes... Source base font size is 11.40000pt Removing fake margins... Cleaning up manifest... Trimming unused files from manifest... Trimming u'LICENSE-Merriweather' from manifest Trimming u'LICENSE-Roboto' from manifest Trimming u'LICENSE-CREATIVE' from manifest Creating MOBI Output... 67% Running MOBI Output plugin Serializing resources... Creating MOBI 6 output Generating in-line TOC... Applying case-transforming CSS... Rasterizing SVG images... Converting XHTML to Mobipocket markup... Serializing markup content... Compressing markup content... Generating MOBI index for a book MOBI output written to /home/build/content/writing/translations/sherlock_holmes_the_published_apocrypha.mobi Output saved to /home/build/content/writing/translations/sherlock_holmes_the_published_apocrypha.mobi ebook-convert "../content/writing/translations/sherlock_holmes_the_published_apocrypha.epub" "../content/writing/translations/sherlock_holmes_the_published_apocrypha.azw3" 1% Converting input to HTML... InputFormatPlugin: EPUB Input running on /home/build/content/writing/translations/sherlock_holmes_the_published_apocrypha.epub Parsing all content... Referenced file u'MathJax_Main-Italic.otf' not found Referenced file u'out/writing-translations-sherlock_holmes_the_published_apocrypha-william-gillette-as-sherlock-holmes-the-painful-predicament-of-sherlock-holmes.html' not found Referenced file u'out/writing-translations-sherlock_holmes_the_published_apocrypha-the-discovery-the-case-of-the-man-who-was-wanted.html' not found Referenced file u'MathJax_Main-Italic.woff' not found Referenced file u'out/writing-translations-sherlock_holmes_the_published_apocrypha-the-stories-of-mystery-the-lost-special.html' not found Referenced file u'out/writing-translations-sherlock_holmes_the_published_apocrypha-the-discovery-index.html' not found Referenced file u'out/writing-translations-sherlock_holmes_the_published_apocrypha-conan-doyle-as-dramatist-index.html' not found Referenced file u'out/writing-translations-sherlock_holmes_the_published_apocrypha-conan-doyle-as-dramatist-the-speckled-band.html' not found Referenced file u'out/writing-translations-sherlock_holmes_the_published_apocrypha-an-outline-index.html' not found Referenced file u'out/writing-translations-sherlock_holmes_the_published_apocrypha-an-outline-plot-for-sherlock-holmes-story.html' not found Referenced file u'out/writing-translations-sherlock_holmes_the_published_apocrypha-william-gillette-as-sherlock-holmes-index.html' not found Referenced file u'out/writing-translations-sherlock_holmes_the_published_apocrypha-conan-doyle-as-dramatist-the-crown-diamond.html' not found Referenced file u'out/writing-translations-sherlock_holmes_the_published_apocrypha-william-gillette-as-sherlock-holmes-sherlock-holmes.html' not found 34% Running transforms on e-book... Merging user specified metadata... Detecting structure... Flattening CSS and remapping font sizes... Source base font size is 11.40000pt Removing fake margins... Cleaning up manifest... Trimming unused files from manifest... Trimming u'LICENSE-Roboto' from manifest Trimming u'LICENSE-Merriweather' from manifest Trimming u'LICENSE-CREATIVE' from manifest Creating AZW3 Output... 67% Running AZW3 Output plugin Serializing resources... Splitting markup on page breaks and flow limits, if any... Creating KF8 output Generating in-line ToC Generating KF8 markup... Compressing markup... Creating indices... AZW3 output written to /home/build/content/writing/translations/sherlock_holmes_the_published_apocrypha.azw3 Output saved to /home/build/content/writing/translations/sherlock_holmes_the_published_apocrypha.azw3 ebook-convert "../content/writing/translations/sherlock_holmes_the_published_apocrypha.epub" "../content/writing/translations/sherlock_holmes_the_published_apocrypha.pdf" 1% Converting input to HTML... InputFormatPlugin: EPUB Input running on /home/build/content/writing/translations/sherlock_holmes_the_published_apocrypha.epub Parsing all content... Referenced file u'MathJax_Main-Italic.otf' not found Referenced file u'out/writing-translations-sherlock_holmes_the_published_apocrypha-conan-doyle-as-dramatist-the-speckled-band.html' not found Referenced file u'out/writing-translations-sherlock_holmes_the_published_apocrypha-an-outline-plot-for-sherlock-holmes-story.html' not found Referenced file u'out/writing-translations-sherlock_holmes_the_published_apocrypha-william-gillette-as-sherlock-holmes-sherlock-holmes.html' not found Referenced file u'out/writing-translations-sherlock_holmes_the_published_apocrypha-the-discovery-the-case-of-the-man-who-was-wanted.html' not found Referenced file u'out/writing-translations-sherlock_holmes_the_published_apocrypha-conan-doyle-as-dramatist-index.html' not found Referenced file u'out/writing-translations-sherlock_holmes_the_published_apocrypha-william-gillette-as-sherlock-holmes-the-painful-predicament-of-sherlock-holmes.html' not found Referenced file u'out/writing-translations-sherlock_holmes_the_published_apocrypha-an-outline-index.html' not found Referenced file u'out/writing-translations-sherlock_holmes_the_published_apocrypha-conan-doyle-as-dramatist-the-crown-diamond.html' not found Referenced file u'out/writing-translations-sherlock_holmes_the_published_apocrypha-the-discovery-index.html' not found Referenced file u'out/writing-translations-sherlock_holmes_the_published_apocrypha-the-stories-of-mystery-the-lost-special.html' not found Referenced file u'MathJax_Main-Italic.woff' not found Referenced file u'out/writing-translations-sherlock_holmes_the_published_apocrypha-william-gillette-as-sherlock-holmes-index.html' not found 34% Running transforms on e-book... Merging user specified metadata... Detecting structure... Flattening CSS and remapping font sizes... Source base font size is 11.40000pt Removing fake margins... Cleaning up manifest... Trimming unused files from manifest... Trimming u'LICENSE-Roboto' from manifest Trimming u'LICENSE-CREATIVE' from manifest Trimming u'LICENSE-Merriweather' from manifest Creating PDF Output... 67% Running PDF Output plugin Splitting markup on page breaks and flow limits, if any... 70% Rendered sherlock_holmes_the_published_apocrypha-title.html 73% Rendered sherlock_holmes_the_published_apocrypha-dedication.html 76% Rendered writing-translations-sherlock_holmes_the_published_apocrypha-contents.html 80% Rendered writing-translations-sherlock_holmes_the_published_apocrypha-introduction.html 83% Rendered writing-translations-sherlock_holmes_the_published_apocrypha-the-parodies-index.html 86% Rendered writing-translations-sherlock_holmes_the_published_apocrypha-the-parodies-the-field-bazaar.html 90% Rendered writing-translations-sherlock_holmes_the_published_apocrypha-the-parodies-how-watson-learned-the-trick.html 93% Rendered writing-translations-sherlock_holmes_the_published_apocrypha-the-parodies-the-adventure-of-the-two-collaborators.html 96% Rendered writing-translations-sherlock_holmes_the_published_apocrypha-the-stories-of-mystery-index.html 100% Rendered writing-translations-sherlock_holmes_the_published_apocrypha-the-stories-of-mystery-the-man-with-the-watches.html Rendered PDF in 0.688061 seconds: PDF output written to /home/build/content/writing/translations/sherlock_holmes_the_published_apocrypha.pdf Output saved to /home/build/content/writing/translations/sherlock_holmes_the_published_apocrypha.pdf sleep 10; gen-epub-book -v "src/writing/świat_to_kilka_takich_pokoi.epupp" "../content/writing/świat_to_kilka_takich_pokoi.epub" -I. -Iout="build/out" Loaded descriptor file src/writing/świat_to_kilka_takich_pokoi.epupp with 20 entries. Normalised preface.html to src/writing/preface.html for Content, Image or Include. Normalised świat_to_kilka_takich_pokoi/book.html to src/writing/świat_to_kilka_takich_pokoi/book.html for Content, Image or Include. Normalised świat_to_kilka_takich_pokoi/end.html to src/writing/świat_to_kilka_takich_pokoi/end.html for Content, Image or Include. Normalised ../indent.css to src/writing/../indent.css for Content, Image or Include. Normalised LICENSE-Roboto to .LICENSE-Roboto for Content, Image or Include. Normalised LICENSE-CREATIVE to .LICENSE-CREATIVE for Content, Image or Include. Normalised assets/common.css to .assets/common.css for Content, Image or Include. Normalised LICENSE-Merriweather to .LICENSE-Merriweather for Content, Image or Include. Normalised the_taste_of_mi/spacing.css to src/writing/the_taste_of_mi/spacing.css for Content, Image or Include. Normalised writing/Roboto-font.css to build/outwriting/Roboto-font.css for Content, Image or Include. Normalised writing/the_taste_of_mi/Merriweather-font.css to build/outwriting/the_taste_of_mi/Merriweather-font.css for Content, Image or Include. Found title "Preface" for preface.html. Found title "Świat to kilka takich pokoi" for świat_to_kilka_takich_pokoi-book.html. Downloading https://rawcdn.githack.com/google/fonts/97f2a0e2/apache/robotoslab/RobotoSlab-Regular.ttf to RobotoSlab-Regular.ttf. Downloading https://rawcdn.githack.com/google/fonts/97f2a0e2/apache/robotoslab/RobotoSlab-Bold.ttf to RobotoSlab-Bold.ttf. Downloading https://rawcdn.githack.com/google/fonts/97f2a0e2/apache/roboto/Roboto-Regular.ttf to Roboto-Regular.ttf. Downloading https://rawcdn.githack.com/google/fonts/97f2a0e2/apache/roboto/Roboto-Italic.ttf to Roboto-Italic.ttf. Downloading https://rawcdn.githack.com/google/fonts/97f2a0e2/ofl/merriweather/Merriweather-Regular.ttf to Merriweather-Regular.ttf. ebook-convert "../content/writing/świat_to_kilka_takich_pokoi.epub" "../content/writing/świat_to_kilka_takich_pokoi.mobi" 1% Converting input to HTML... InputFormatPlugin: EPUB Input running on /home/build/content/writing/świat_to_kilka_takich_pokoi.epub Parsing all content... 34% Running transforms on e-book... Merging user specified metadata... Detecting structure... Flattening CSS and remapping font sizes... Source base font size is 11.40000pt Removing fake margins... Cleaning up manifest... Trimming unused files from manifest... Trimming u'LICENSE-Merriweather' from manifest Trimming u'LICENSE-Roboto' from manifest Trimming u'LICENSE-CREATIVE' from manifest Creating MOBI Output... 67% Running MOBI Output plugin Serializing resources... Creating MOBI 6 output Generating in-line TOC... Applying case-transforming CSS... Rasterizing SVG images... Converting XHTML to Mobipocket markup... Serializing markup content... Compressing markup content... Generating MOBI index for a book MOBI output written to /home/build/content/writing/świat_to_kilka_takich_pokoi.mobi Output saved to /home/build/content/writing/świat_to_kilka_takich_pokoi.mobi ebook-convert "../content/writing/świat_to_kilka_takich_pokoi.epub" "../content/writing/świat_to_kilka_takich_pokoi.azw3" 1% Converting input to HTML... InputFormatPlugin: EPUB Input running on /home/build/content/writing/świat_to_kilka_takich_pokoi.epub Parsing all content... 34% Running transforms on e-book... Merging user specified metadata... Detecting structure... Flattening CSS and remapping font sizes... Source base font size is 11.40000pt Removing fake margins... Cleaning up manifest... Trimming unused files from manifest... Trimming u'LICENSE-Merriweather' from manifest Trimming u'LICENSE-Roboto' from manifest Trimming u'LICENSE-CREATIVE' from manifest Creating AZW3 Output... 67% Running AZW3 Output plugin Serializing resources... Splitting markup on page breaks and flow limits, if any... Creating KF8 output Generating in-line ToC Generating KF8 markup... Compressing markup... Creating indices... AZW3 output written to /home/build/content/writing/świat_to_kilka_takich_pokoi.azw3 Output saved to /home/build/content/writing/świat_to_kilka_takich_pokoi.azw3 ebook-convert "../content/writing/świat_to_kilka_takich_pokoi.epub" "../content/writing/świat_to_kilka_takich_pokoi.pdf" 1% Converting input to HTML... InputFormatPlugin: EPUB Input running on /home/build/content/writing/świat_to_kilka_takich_pokoi.epub Parsing all content... 34% Running transforms on e-book... Merging user specified metadata... Detecting structure... Flattening CSS and remapping font sizes... Source base font size is 11.40000pt Removing fake margins... Cleaning up manifest... Trimming unused files from manifest... Trimming u'LICENSE-CREATIVE' from manifest Trimming u'LICENSE-Roboto' from manifest Trimming u'LICENSE-Merriweather' from manifest Creating PDF Output... 67% Running PDF Output plugin Splitting markup on page breaks and flow limits, if any... 78% Rendered preface.html 89% Rendered świat_to_kilka_takich_pokoi-book.html 100% Rendered świat_to_kilka_takich_pokoi-end.html Rendered PDF in 0.19755 seconds: PDF output written to /home/build/content/writing/świat_to_kilka_takich_pokoi.pdf Output saved to /home/build/content/writing/świat_to_kilka_takich_pokoi.pdf sleep 10; gen-epub-book -v "src/writing/наган.epupp" "../content/writing/наган.epub" -I. -Iout="build/out" Loaded descriptor file src/writing/наган.epupp with 20 entries. Normalised preface.html to src/writing/preface.html for Content, Image or Include. Normalised наган/intro.html to src/writing/наган/intro.html for Content, Image or Include. Normalised наган/non-possumus.html to src/writing/наган/non-possumus.html for Content, Image or Include. Normalised ../indent.css to src/writing/../indent.css for Content, Image or Include. Normalised LICENSE-Roboto to .LICENSE-Roboto for Content, Image or Include. Normalised LICENSE-CREATIVE to .LICENSE-CREATIVE for Content, Image or Include. Normalised assets/common.css to .assets/common.css for Content, Image or Include. Normalised LICENSE-Merriweather to .LICENSE-Merriweather for Content, Image or Include. Normalised the_taste_of_mi/spacing.css to src/writing/the_taste_of_mi/spacing.css for Content, Image or Include. Normalised writing/Roboto-font.css to build/outwriting/Roboto-font.css for Content, Image or Include. Normalised writing/the_taste_of_mi/Merriweather-font.css to build/outwriting/the_taste_of_mi/Merriweather-font.css for Content, Image or Include. Found title "Preface" for preface.html. Found title "Наган" for наган-intro.html. Found title "Non Possumus" for наган-non-possumus.html. Downloading https://rawcdn.githack.com/google/fonts/97f2a0e2/apache/robotoslab/RobotoSlab-Regular.ttf to RobotoSlab-Regular.ttf. Downloading https://rawcdn.githack.com/google/fonts/97f2a0e2/apache/robotoslab/RobotoSlab-Bold.ttf to RobotoSlab-Bold.ttf. Downloading https://rawcdn.githack.com/google/fonts/97f2a0e2/apache/roboto/Roboto-Regular.ttf to Roboto-Regular.ttf. Downloading https://rawcdn.githack.com/google/fonts/97f2a0e2/apache/roboto/Roboto-Italic.ttf to Roboto-Italic.ttf. Downloading https://rawcdn.githack.com/google/fonts/97f2a0e2/ofl/merriweather/Merriweather-Regular.ttf to Merriweather-Regular.ttf. ebook-convert "../content/writing/наган.epub" "../content/writing/наган.mobi" 1% Converting input to HTML... InputFormatPlugin: EPUB Input running on /home/build/content/writing/наган.epub Parsing all content... 34% Running transforms on e-book... Merging user specified metadata... Detecting structure... Flattening CSS and remapping font sizes... Source base font size is 11.40000pt Removing fake margins... Cleaning up manifest... Trimming unused files from manifest... Trimming u'LICENSE-Roboto' from manifest Trimming u'LICENSE-Merriweather' from manifest Trimming u'LICENSE-CREATIVE' from manifest Creating MOBI Output... 67% Running MOBI Output plugin Serializing resources... Creating MOBI 6 output Generating in-line TOC... Applying case-transforming CSS... Rasterizing SVG images... Converting XHTML to Mobipocket markup... Serializing markup content... Compressing markup content... Generating MOBI index for a book MOBI output written to /home/build/content/writing/наган.mobi Output saved to /home/build/content/writing/наган.mobi ebook-convert "../content/writing/наган.epub" "../content/writing/наган.azw3" 1% Converting input to HTML... InputFormatPlugin: EPUB Input running on /home/build/content/writing/наган.epub Parsing all content... 34% Running transforms on e-book... Merging user specified metadata... Detecting structure... Flattening CSS and remapping font sizes... Source base font size is 11.40000pt Removing fake margins... Cleaning up manifest... Trimming unused files from manifest... Trimming u'LICENSE-Merriweather' from manifest Trimming u'LICENSE-Roboto' from manifest Trimming u'LICENSE-CREATIVE' from manifest Creating AZW3 Output... 67% Running AZW3 Output plugin Serializing resources... Splitting markup on page breaks and flow limits, if any... Creating KF8 output Generating in-line ToC Generating KF8 markup... Compressing markup... Creating indices... AZW3 output written to /home/build/content/writing/наган.azw3 Output saved to /home/build/content/writing/наган.azw3 ebook-convert "../content/writing/наган.epub" "../content/writing/наган.pdf" 1% Converting input to HTML... InputFormatPlugin: EPUB Input running on /home/build/content/writing/наган.epub Parsing all content... 34% Running transforms on e-book... Merging user specified metadata... Detecting structure... Flattening CSS and remapping font sizes... Source base font size is 11.40000pt Removing fake margins... Cleaning up manifest... Trimming unused files from manifest... Trimming u'LICENSE-CREATIVE' from manifest Trimming u'LICENSE-Merriweather' from manifest Trimming u'LICENSE-Roboto' from manifest Creating PDF Output... 67% Running PDF Output plugin Splitting markup on page breaks and flow limits, if any... 78% Rendered preface.html 89% Rendered наган-intro.html 100% Rendered наган-non-possumus.html Rendered PDF in 0.221636 seconds: PDF output written to /home/build/content/writing/наган.pdf Output saved to /home/build/content/writing/наган.pdf sleep 10; gen-epub-book -v "src/writing_prompts.epupp" "../content/writing_prompts.epub" -I. -Iout="build/out" Loaded descriptor file src/writing_prompts.epupp with 27 entries. Normalised writing_prompts/theless.html to src/writing_prompts/theless.html for Content, Image or Include. Normalised writing_prompts/start_eq_end.html to src/writing_prompts/start_eq_end.html for Content, Image or Include. Normalised writing_prompts/dead_santa.html to src/writing_prompts/dead_santa.html for Content, Image or Include. Normalised writing_prompts/six_minutes.html to src/writing_prompts/six_minutes.html for Content, Image or Include. Normalised writing_prompts/green_ass_dog.html to src/writing_prompts/green_ass_dog.html for Content, Image or Include. Normalised writing_prompts/not_dead_yet.html to src/writing_prompts/not_dead_yet.html for Content, Image or Include. Normalised writing_prompts/trucks_a_cash.html to src/writing_prompts/trucks_a_cash.html for Content, Image or Include. Normalised writing_prompts/degenerate.html to src/writing_prompts/degenerate.html for Content, Image or Include. Normalised writing_prompts/laser_cats.html to src/writing_prompts/laser_cats.html for Content, Image or Include. Normalised writing_prompts/eye_see.html to src/writing_prompts/eye_see.html for Content, Image or Include. Normalised writing_prompts/cover.png to src/writing_prompts/cover.png for Content, Image or Include. Normalised writing_prompts/no_the.png to src/writing_prompts/no_the.png for Content, Image or Include. Normalised writing_prompts/start_eq_end.png to src/writing_prompts/start_eq_end.png for Content, Image or Include. Normalised writing_prompts/slim_shady.png to src/writing_prompts/slim_shady.png for Content, Image or Include. Normalised writing_prompts/green_ass_dog.png to src/writing_prompts/green_ass_dog.png for Content, Image or Include. Normalised writing_prompts/not_dead_yet.png to src/writing_prompts/not_dead_yet.png for Content, Image or Include. Normalised writing_prompts/trucks_a_cash.png to src/writing_prompts/trucks_a_cash.png for Content, Image or Include. Normalised writing_prompts/degenerate.png to src/writing_prompts/degenerate.png for Content, Image or Include. Normalised writing_prompts/laser_cats.png to src/writing_prompts/laser_cats.png for Content, Image or Include. Normalised writing_prompts/eye_see.png to src/writing_prompts/eye_see.png for Content, Image or Include. Normalised indent.css to src/indent.css for Content, Image or Include. Normalised writing/the_taste_of_mi/spacing.css to src/writing/the_taste_of_mi/spacing.css for Content, Image or Include. Found title "The-less" for writing_prompts-theless.html. Found title "End = Start" for writing_prompts-start_eq_end.html. Found title "No gifts this year" for writing_prompts-dead_santa.html. Found title "Six Minutes" for writing_prompts-six_minutes.html. Found title "Cucumber Dog" for writing_prompts-green_ass_dog.html. Found title "Get up,soldier" for writing_prompts-not_dead_yet.html. Found title "Utopian Assassin" for writing_prompts-trucks_a_cash.html. Found title "Degenerate Watch" for writing_prompts-degenerate.html. Found title "Ghostly Lasers" for writing_prompts-laser_cats.html. Found title "The Last Eye" for writing_prompts-eye_see.html. Downloading https://i.imgur.com/gkevfag.jpg to gkevfag.jpg. ebook-convert "../content/writing_prompts.epub" "../content/writing_prompts.mobi" 1% Converting input to HTML... InputFormatPlugin: EPUB Input running on /home/build/content/writing_prompts.epub Parsing all content... 34% Running transforms on e-book... Merging user specified metadata... Detecting structure... Flattening CSS and remapping font sizes... Source base font size is 12.00000pt Removing fake margins... Cleaning up manifest... Trimming unused files from manifest... Creating MOBI Output... 67% Running MOBI Output plugin Serializing resources... libpng warning: iCCP: known incorrect sRGB profile libpng warning: iCCP: known incorrect sRGB profile libpng warning: iCCP: known incorrect sRGB profile libpng warning: iCCP: known incorrect sRGB profile libpng warning: iCCP: known incorrect sRGB profile libpng warning: iCCP: known incorrect sRGB profile libpng warning: iCCP: known incorrect sRGB profile libpng warning: iCCP: known incorrect sRGB profile libpng warning: iCCP: known incorrect sRGB profile libpng warning: iCCP: known incorrect sRGB profile Creating MOBI 6 output Generating in-line TOC... Applying case-transforming CSS... Rasterizing SVG images... Converting XHTML to Mobipocket markup... Serializing markup content... Compressing markup content... Generating MOBI index for a book MOBI output written to /home/build/content/writing_prompts.mobi Output saved to /home/build/content/writing_prompts.mobi ebook-convert "../content/writing_prompts.epub" "../content/writing_prompts.azw3" 1% Converting input to HTML... InputFormatPlugin: EPUB Input running on /home/build/content/writing_prompts.epub Parsing all content... 34% Running transforms on e-book... Merging user specified metadata... Detecting structure... Flattening CSS and remapping font sizes... Source base font size is 12.00000pt Removing fake margins... Cleaning up manifest... Trimming unused files from manifest... Creating AZW3 Output... 67% Running AZW3 Output plugin Serializing resources... Splitting markup on page breaks and flow limits, if any... Creating KF8 output Generating in-line ToC Generating KF8 markup... Compressing markup... Creating indices... AZW3 output written to /home/build/content/writing_prompts.azw3 Output saved to /home/build/content/writing_prompts.azw3 ebook-convert "../content/writing_prompts.epub" "../content/writing_prompts.pdf" 1% Converting input to HTML... InputFormatPlugin: EPUB Input running on /home/build/content/writing_prompts.epub Parsing all content... 34% Running transforms on e-book... Merging user specified metadata... Detecting structure... Flattening CSS and remapping font sizes... Source base font size is 12.00000pt Removing fake margins... Cleaning up manifest... Trimming unused files from manifest... Creating PDF Output... 67% Running PDF Output plugin Splitting markup on page breaks and flow limits, if any... This ebook does not have a raster cover, cannot generate cover for PDF. Cover type: <type 'lxml.etree._Element'> 68% Rendered image-data-2.html 70% Rendered writing_prompts-theless.html 71% Rendered image-data-4.html 73% Rendered writing_prompts-start_eq_end.html 75% Rendered network-image-data-6.html 76% Rendered writing_prompts-dead_santa.html 78% Rendered image-data-8.html 80% Rendered writing_prompts-six_minutes.html 81% Rendered image-data-10.html 83% Rendered writing_prompts-green_ass_dog.html 85% Rendered image-data-12.html 86% Rendered writing_prompts-not_dead_yet.html 88% Rendered image-data-14.html 90% Rendered writing_prompts-trucks_a_cash.html 91% Rendered image-data-16.html 93% Rendered writing_prompts-degenerate.html 95% Rendered image-data-18.html 96% Rendered writing_prompts-laser_cats.html 98% Rendered image-data-20.html 100% Rendered writing_prompts-eye_see.html Rendered PDF in 1.48359 seconds: PDF output written to /home/build/content/writing_prompts.pdf Output saved to /home/build/content/writing_prompts.pdf echo ../content/blogn_t/001-x32-in-2020.html ../content/blogn_t/002-ncurses-gpm-segfault.html ../content/blogn_t/003-maircl-poc.html ../content/blogn_t/004-cinque.html ../content/blogn_t/005-low-curse-zfs-on-root.html ../content/blogn_t/005a-zfs-on-root-single-disk-corollary.html ../content/blogn_t/006-UNIX-r-ATT.html ../content/blogn_t/007-groff-Tps-cyrillic-et-al.html ../content/blogn_t/008-amix-fonts.html ../content/blogn_t/009-XEROX-SIGMA-9-balls.html ../content/blogn_t/010-tme-Sun-2-SunOS3-2023.html ../content/blogn_t/011-linux-splice-exclusion.html ../content/blogn_t/index.html ../content/code/index.html ../content/extensive_list_of_rust_puns/index.html ../content/gen-epub-book/index.html ../content/gen-epub-book/programmer.html ../content/index.html ../content/maths/index.html ../content/maths/mandalas.html ../content/maths/wiggly-circle.html ../content/poetry/index.html ../content/recipes/index.html ../content/writing/index.html ../content/writing/każdy_koniec_to_nowy_początek/index.html ../content/writing/moments/index.html ../content/writing/nagan/index.html ../content/writing/poetry/index.html ../content/writing/poetry/the_east_wind/index.html ../content/writing/poetry/ПИПА/index.html ../content/writing/the_taste_of_mi/index.html ../content/writing/translations/erotica/index.html ../content/writing/translations/funeral_blues.html ../content/writing/translations/index.html ../content/writing/translations/sherlock_holmes_the_published_apocrypha/index.html ../content/writing/świat_to_kilka_takich_pokoi/index.html ../content/writing/наган/index.html ../content/writing_prompts/dead_santa.html ../content/writing_prompts/degenerate.html ../content/writing_prompts/eye_see.html ../content/writing_prompts/green_ass_dog.html ../content/writing_prompts/index.html ../content/writing_prompts/laser_cats.html ../content/writing_prompts/not_dead_yet.html ../content/writing_prompts/six_minutes.html ../content/writing_prompts/start_eq_end.html ../content/writing_prompts/the_pursuer.html ../content/writing_prompts/theless.html ../content/writing_prompts/trucks_a_cash.html | sed "s/ /\n/g" | awk -f gen-feed.awk -v awk="awk" > ../content/feed.xml |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
+ ssh-keyscan github.com # github.com:22 SSH-2.0-babeld-dc5ec9be # github.com:22 SSH-2.0-babeld-70f1bac9 # github.com:22 SSH-2.0-babeld-70f1bac9 # github.com:22 SSH-2.0-babeld-70f1bac9 # github.com:22 SSH-2.0-babeld-70f1bac9 + git clone -b master git@github.com:nabijaczleweli/nabijaczleweli.github.io.git nabijaczleweli.xyz Cloning into 'nabijaczleweli.xyz'... + cd nabijaczleweli.xyz + rm -rf content/ + mv ../content/ . + find '(' -name '*.azw3' -or -name '*.mobi' -or -name '*.pdf' -or -name '*.epub' ')' -exec git checkout '{}' + Updated 46 paths from the index + git add . + git config user.email nabijaczleweli/autouploader@nabijaczleweli.xyz + git config user.name 'наб autouploader' + git commit -m 'Website update by https://builds.sr.ht/~nabijaczleweli/job/1055776' [master b30e1baa] Website update by https://builds.sr.ht/~nabijaczleweli/job/1055776 48 files changed, 174 insertions(+), 104 deletions(-) + git push To github.com:nabijaczleweli/nabijaczleweli.github.io.git 92fff38a..b30e1baa master -> master |