File size: 52,555 Bytes
d5aa346 |
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 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 |
./.names Path=./favicon.ico Type=X # Path=./academy Type=X # Path=./favicon.txt Type=X # Name=T H E . A S C I I . A R T . E M P O R I U M Path=FAKE Type=i Numb=1 # Name=About - What is this place? (read me first!) Path=./about.txt Numb=2 # Name=News - Recent changes and announcements. Path=./news.txt Numb=3 # Path=./ribbon.txt Name=Ribbon - The "Respect ASCII Artists" Campaign. Numb=4 # Name=BestOf - Some gems to get you started. Path=./bestof Numb=5 Type=1 # Name=Artists - Who's who in ASCII Art. Path=./academy/artists Numb=6 Type=1 # Name=FAQs - The alt.ascii-art FAQ and other revisions. Path=./academy/faqs Numb=7 Type=1 # Name=History - ASCII art through the ages. Path=./academy/history Numb=8 Type=1 # Name=Tutorials - So, you want to make text art? Path=./academy/tutorials Numb=9 Type=1 # Name=Mirrors - Public collections from www and more. Path=./mirrors Numb=10 # Name=Usenet - Historical usenet archives (1993-2012). Path=./usenet Numb=11 # Name=Textfiles - The /art section from www.textfiles.com. Path=./textfiles Numb=12 # Name=Search - Local search for ASCII art by keyword. Path=./search Numb=13 Type=X ./academy/artists/.names Name=Who's who in ASCII Art? Path=./vk_who_is_who.txt Numb=1 # Name=Who's who in ASCII Art? (alternate) Path=./andreas_who_is_who.txt Numb=2 # Name=Artist Gallery (self-portraits) Path=./artist_gallery.txt Numb=3 # Name=Artist Licenses Path=./license.txt Numb=4 # Name=Grue's Artist Directory Path=./grue_artists.txt Numb=5./academy/faqs/.names Name=Bob Allsison's Ascii Art FAQ (1996) Path=./faq_allison.txt # Name=Jorn Barger's Ascii Art FAQ (1993) Path=./faq_barger.txt # Name=ASCII Art FAQ by Matthew Thomas (1998) Path=./faq_thomas.txt # Name=FAQ for alt.ascii-art (2003) Path=./faq_randall.txt ./academy/history/.names Name=The History of ASCII (Text) Art by jgs [text/gemini] Path=./ascii_history_jgs.gmi # Name=The History of ASCII (Text) Art by jgs [images] Path=./ascii_history_jgs # Name=The demise of the $.01 sign (utf8 charset) Path=./centsign.txt # Name=History of the PC ASCII Scene (demo scene) Path=./pc_ascii.txt # Name=The three ASCII Art Styles of the Underground Art Scene [text/gemini] Path=./underground_text_art.gmi # Name=The three ASCII Art Styles of the Underground Art Scene [images] Path=./underground_text_art./academy/tutorials/.names Name=Making your own ASCII Art by Martin Atkins (1999) Path=./tut_atkins.txt # Name=ASCII Art tips and example by Daniel Au (1995) Path=./tut_au.txt # Name=ASCII Graphical Techniques by Rowan Crawford (1994) Path=./tut_crawford.txt # Name=How to make ASCII by Hayley Flump (1998) Path=./tut_flump.txt # Name=So, You Want To Make Text-Art?, part 1 by Jonathon Oglesbee Path=./tut_oglesbee.txt # Name=So, You Want To Make Text-Art?, part 2 by Jonathon Oglesbee Path=./tut_oglesbee2.txt # Name=Susie Oviatt's ASCII Art Tutorial Path=./tut_oviatt.txt # Name=Normand Veilleux's ASCII Art Tutorial (1994) Path=./tut_veilleux.txt # Name=Targon ASCII Art Tutorial Path=./tut_targon.txt # Name=Joan Stark's ASCII Art Tutorial Path=./tut_stark.txt # Name=ASCII Art by Joris Bellenger Path=./tut_bger.txt # Name=GIFSCII.EXE for DOS by Shawn Quinn Path=./tut_quinn.txt # Name=DiamonDie's ASCII art tutorial Path=./tut_haavisto.txt # Name="How to draw ASCII" by Christian 'CeeJay' Jensen Path=./tut_ceejay.txt./bestof/.names Name=The alt.ascii-art FAQ - everything you need to know about ASCII art Path=/academy/faqs/faq_randall.txt Type=0 Numb=2 # Name=DiamonDie's ASCII art tutorial - a more recent overview Path=/academy/tutorials/tut_haavisto.txt Type=0 Numb=3 # Name=Joan Stark's (jgs) Birds Path=/mirrors/jgs/data/birds.txt Type=0 Numb=4 # Name=Joris Bellenger's (b'ger) pictures of women Path=/mirrors/bger/line_art/women.txt Type=0 Numb=5 # Name=Veronica Karlsson's (VK) man in ancient greece Path=/mirrors/vk/files/asciim2/statue.txt Type=0 Numb=6 # Name=Rowan Crawford's (-Row) Ascii pictures Path=/mirrors/afn/artists/crawford.txt Type=0 Numb=7 # Name=An episode of the Funny Bone Newsletter - Sep. 13, 1998 Path=/mirrors/funnybone/1998/funnybone_1998-09-13.txt Type=0 Numb=8 # Name=Bob Allison's (scarecrow) collection of email signatures Path=/mirrors/incredibleart/files/scarecrow_sig_files.txt Type=0 Numb=9 # Name=Six Line Ascii Art Challenge Path=/mirrors/vk/files/junkyard/pics/six_line_challenge.txt Type=0 Numb=10 # Name=THE "SPYING AT THE WALL" DICTIONARY Path=/mirrors/bowdrie/spying.txt Type=0 Numb=11 # Name=Faux Pseudo's (:F_P:) collection of butterflies Path=/mirrors/asciipr0n/fp/ascii/butterflys Type=1 Numb=12 # Name=Huge 800k mthw scrollfile [nsfw] Path=/mirrors/asciipr0n/pr0n/morepr0n/pr0n91.txt Type=0 Numb=13 # Name=Anime ASCII Art collection - part 1 Path=/mirrors/otakuworld/data/anime001.txt Type=0 Numb=14 # Name=Flump's favorite stuff Path=/mirrors/flump/data/faves.txt Type=0 Numb=15 # Name=Seal's misc ascii art Path=/mirrors/seal/data/misc.txt Type=0 Numb=16./mirrors/.names Name=afn - Allen Mullen's ASCII Art Collection Path=./afn # Name=asciiarteu - ASCII Art Archive (asciiart.eu) Path=./asciiarteu # Name=asciiartfarts - ASCII Art Farts Path=./asciiartfarts # Name=bger - ASCII Art by Joris Bellenger (b'ger) Path=./bger # Name=chris - Christopher Johnson's ASCII Art Collection (chris.com) Path=./chris # Name=dictionary - ASCII Art Dictionary (ascii-art.de) Path=./dictionary # Name=eckman - Eric Eckman's ASCII Art Collection Path=./eckman # Name=ejm - ASCII Art by llizard Path=./ejm # Name=funnybone - The Funny Bone E-Zine Archive Path=./funnybone # Name=ggajic - Goran Gajic's ASCII Archive (plus the "cuddly collection") Path=./ggajic # Name=grue3 - ASCII-art collection by Timofei Shatrov Path=./grue3 # Name=hs - ASCII Art by Henry Segerman Path=./hs # Name=jgs - Joan Stark's Gallery of Original ASCII Art Path=./jgs # Name=lukasztyrala - ASCII Art by Lukasz Tryala Path=./lukasztyrala # Name=mewbies - The Scarecrow ASCII Art Gallery Path=./mewbies # Name=incredibleart - The Scarecrow ASCII Art Gallery Path=./incredibleart # Name=silentlamb - ASCII Art by Marcin Glinski Path=./silentlamb # Name=sunnyspot - Sunnyspot ASCII Art Collection Path=./sunnyspot # Name=vk - ASCII Art by Veronica Karlsson Path=./vk # Name=vyznev - ASCII Art by Ilmari Karonen Path=./vyznev # Name=ttskr - a minimalist ascii webcomic Path=./ttskr # Name=nerdboy - The Adventures of Nerd Boy Path=./nerdboy # Name=antofthy - Tower Floor ASCII Art Path=./antofthy # Name=rabbit - ASCII Bunny Art Path=./rabbit # Name=saha - Diganta's World ASCII Graphics Path=./saha # Name=ptomblin - The ORIGINAL Ascii Airplane Collection Path=./ptomblin # Name=fiikus - Maija's ASCII Art Path=./fiikus # Name=frogstuff - ASCII Art Froggies Path=./frogstuff # Name=otakuworld - Anime ASCii Art Path=./otakuworld # Name=munzner - ASCII Art: Dinosaurs! Path=./munzner # Name=meph - ASCII Art by Meph Path=./meph # Name=bowdrie - The "spying at the wall" dictionary Path=./bowdrie # Name=asciipr0n - Pr0n archive and artist collections Path=./asciipr0n # Name=asciiworld - ASCII World (asciiworld.com) Path=./asciiworld # Name=flump - Flump's Original Ascii Art collection! (hjw) Path=./flump # Name=seal - Seal's ASCII Art Path=./seal # Name=surfplaza - Collection of ASCII art emails from select artists Path=./surfplaza # Name=tranf - A personal ASCII art collection Path=./tranf # Name=wicked - :Wicked Ascii Art: collection Path=./wicked # Name=norgapd - Paul's Ascii Art Archive Path=./norgapd # Name=dutchdude - The Dutch Dude's ASCII-Art Path=./dutchdude # Name=valkyrie - Valkyrie's Ascii Page Path=./valkyrie # Name=flee - felix lee ascii art Path=./flee # Name=boomlin - mega ascii file Path=./boomlin # Name=aran - Cantra's Original Ascii-Art (ctr) Path=./aran # Name=shieldwolf - Shieldwolf Art Gallery (cjr) Path=./shieldwolf # Name=zeus - HOME OF ZEUS Path=./zeus # Name=morfi - Morfina!! Ascii Art (mrf) Path=./morfi # Name=shanaka - Shanaka's ASCII Art (snd) Path=./shanaka # Name=asciiartnet - ASCII Art by Sebastian Stocker (SSt) Path=./asciiartnet # Name=love - The Big Collection of Love ASCII Art Path=./love # Name=horroroso - Horroroso's ASCII Art (-hrr-) Path=./horroroso # Name=emailbox - CatStuff: Cat ASCII Art Path=./emailbox # Name=untergrund - M.U.D Gallery Path=./untergrund # Name=retrojunkie - The ASCII Art Universe Path=./retrojunkie # Name=dsier - Nowhere Man Ascii Art Path=./dsier # Name=shimrod - Shimrod's ASCII Art Page Path=./shimrod # Name=iltzu - Ilmari Karonen: Ascii art Path=./iltzu./mirrors/asciipr0n/.names Path=./ABOUT.txt Numb=1./search/.names Name=full text search - alt.ascii-art Path=./usenet-search.pyg|alt.ascii-art Type=7 # Name=full text search - alt.ascii-art.animation Path=./usenet-search.pyg|alt.ascii-art.animation Type=7 # Name=full text search - de.alt.rec.ascii-art Path=./usenet-search.pyg|de.alt.rec.ascii-art Type=7 # Name=full text search - pl.rec.ascii-art Path=./usenet-search.pyg|pl.rec.ascii-art Type=7 # Name=full text search - rec.arts.ascii Path=./usenet-search.pyg|rec.arts.ascii Type=7 # Path=./usenet-search.pyg Type=X./textfiles/.names Path=./index.html Numb=1 # Name=The ASCII PR0N Collection, Courtesy of ASCIIPR0N.COM Path=./ASCIIPR0N Numb=2 # Name=The DECUS Art Collection Path=./DECUS Numb=3 # Name=A Collection of ASCII Art Logos Path=./LOGOS Numb=4 # Name=A Collection of RTTY Art from RTTY.COM Path=./RTTY Numb=5 # Name=ASCII Title Page for SPIKED!, a Game Path=./13.asc Numb=38 # Name=Excellent IBM ASCII Art of The Pits BBS Path=./152614.txt Numb=39 # Name=ASCII Art of a 16 Ton Weight Path=./16ton Numb=40 # Name=FIGLET FONT: 3x5 Font by Richard Kirk and Daniel Cabez Gras Path=./3x5.flf Numb=41 # Name=ASCII Middle Finger (With Watch and Ring) Path=./afinger.txt Numb=42 # Name=FIGLET FONT: Alphabet by Wendell Hicken (November, 1993) Path=./alphabet.flf Numb=43 # Name=Some Genune Ascii Stereograms Path=./alt3dste.reo Numb=44 # Name=Pleasant ASCII Art Nude, "Angela" Path=./angela.art Numb=45 # Name=ASCII Art Nude: Angi Path=./angi.txt Numb=46 # Name=July 4th/American Flag Ascii Art Path=./art0 Numb=47 # Name=Don Dillon's Collection of ASCII Art Pictures Path=./ascii.pic Numb=48 # Name=Collection of ASCII Art, including Teddy Bears and Disney's Pocohantis (November 1999) Path=./asciiart.txt Numb=49 # Name=A Table of ASCII Codes, by Aaron Priven Path=./asciicod.txt Numb=50 # Name=VT100 ANIMATION: Bambi vs. Godzilla Path=./bambi.vt Numb=51 # Name=ASCII Image of Barney the Dinosaur with Satanic Subliminals Path=./barney.txt Numb=52 # Name=Cleo, another Bassett Hound Dawg Path=./bassett.art Numb=53 # Name=Batgirl, Naked, probably after Vargas Path=./batgirl.art Numb=54 # Name=Beavis of Beavis and Butthead, in ASCII Path=./beavis.asc Numb=55 # Name=VT100 ANIMATION: Time for a Beer Break, Folks! Path=./beer.vt Numb=56 # Name=Innocuous Nude, "Betty" Path=./betty.art Numb=57 # Name=FIGLET FONT: The Big Font Path=./big.flf Numb=58 # Name=FIGLET FONT: Block Letters Path=./block.flf Numb=59 # Name=Beavis and Butthead in ASCII Path=./bnbascii.txt Numb=60 # Name=Odd ASCII Picture of a Bob Path=./bob.pic Numb=61 # Name=ASCII art of J.R. "Bob" Dobbs Path=./bobface.txt Numb=62 # Name=VT100 ANIMATION: The Bomb Test Path=./bomb.vt Numb=63 # Name=Dr. Bones McCoy, Good Portrait Path=./bones.art Numb=64 # Name=FIGLET FONT: Bubble FOnt Path=./bubble.flf Numb=65 # Name=ANSI Art of Bugs Bunny Path=./bugs Numb=66 # Name=Cheezy Playboy Bunny (Woman, not Rabbit) Path=./bunny.art Numb=67 # Name=Call the Buy Sell BBS Today! (Ad, ANSI) Path=./buysell.5bs Numb=68 # Name=Odd 1985 Calandar with Nude Lady Path=./calgirl.art Numb=69 # Name=VT100 ANIMATION: Doing a Cartwheel Path=./cartwhee.vt Numb=70 # Name=Charlie Brown Path=./charlie.art Numb=71 # Name=Loinclothed, Topless Lady. "Clohe" Path=./clohe.art Numb=72 # Name=FIGLET FONT: The Contessa Font Path=./contessa.flf Numb=73 # Name=Bill the Cat and Opus in '88! Path=./county88.hum Numb=74 # Name=Cows, Cows, and more (ASCII) Cows Path=./cow.txt Numb=75 # Name=The Complete Guide to Cows, by Eric W. Tilenius Path=./cows.txt Numb=76 # Name=The Complete Guide to ASCII Cows Path=./cowz.txt Numb=77 # Name=Some Helpful ASCII Art of a Computer System Path=./cpu.txt Numb=78 # Name=CURSE YOU, RED BARON Path=./cursepic.art Numb=79 # Name=Michaelangelo's "David" Path=./david.art Numb=80 # Name="Deborah", sitting on a Stool Path=./deborah.art Numb=81 # Name=VT100 ANIMATION: A Small Delay Path=./delay.vt Numb=82 # Name=VT100 ANIMATION: Someone Having an Awful Amount of Fun Path=./dirty.vt Numb=83 # Name=VT100 ANIMATION: Fucking Dogs Path=./dogs.vt Numb=84 # Name=VT100 ANIMATION: George Custer's Last Stand: Don't Worry, be Happy Path=./dont-wor.vt Numb=85 # Name=Fun, Sleepy Cartoon Dragon Path=./dragon.art Numb=86 # Name=ASCII Art of a Winged Dragon Path=./dragon.txt Numb=87 # Name=ASCII Images from the Doctor Who TV Show Path=./drwho_pi Numb=88 # Name=Full-Stoked American Eagle Path=./eagle.art Numb=89 # Name=Side view, U.S.S. Enterprise Path=./enterp.art Numb=90 # Name=FIGLET FONT: Erusalem Font Path=./erusalem.flf Numb=91 # Name=Everyone got together and made a Ferrari! Path=./ferrari.art Numb=92 # Name=DOCUMENTATION: The Figlet Program Path=./figlet.man Numb=93 # Name=VT100 ANIMATION: Fireworks by Chen Lin Path=./firework.vt Numb=94 # Name=VT100 ANIMATION: Guy Setting Off Fireworks Path=./fireworks.vt Numb=95 # Name=VT100 ANIMATION: Shamus the Fish by David Rybolt (1994) Path=./fishy2.vt Numb=96 # Name=ASCII Art of the American Flag Path=./flag Numb=97 # Name=FIGLET FONT: Example Fonts Page Path=./fontpage.txt Numb=98 # Name=Playboy Jokes Chick, With Nice Subliminal Path=./fran.art Numb=99 # Name=ASCII Art of a Middle Finger Path=./fu.sig Numb=100 # Name=Nice, large, Profanic Middle Finger ASCII Art Path=./fuckyou.txt Numb=101 # Name=FIGLET FONT: Fuzzy Font Path=./fuzzy.flf Numb=102 # Name="George", nude male. Well, that's ONE.... Path=./george.art Numb=103 # Name=ASCII Artwork of a Nude Wearing a Bow Path=./girl1.pic Numb=104 # Name=ASCII of a Girl's Face Path=./girlface.txt Numb=105 # Name=VT100 ANIMATION: Filling Glass of Liquid Path=./glass.vt Numb=106 # Name=VT100 ANIMATION: ABSOLUTELY EXCELLENT Spinning Globe Path=./globe.vt Numb=107 # Name=FIGLET FONT: Gothic Font Path=./gothic.flf Numb=108 # Name=FIGLET FONT: Grafitti Font Path=./graffiti.flf Numb=109 # Name=Icon of Groucho Marx Path=./groucho.art Numb=110 # Name=Posed Nude, "Holly" Path=./holly.art Numb=111 # Name=Primus Illuminatus is Watching You Path=./illumin.hum Numb=112 # Name=Shy Nude, "Ingrid" Path=./ingrid.art Numb=113 # Name=FIGLET FONT: Jerusalem (Hebrew) Font Path=./jerusale.flf Numb=114 # Name=Posed sideways nude, "Jessie" Path=./jessie.art Numb=115 # Name=VT100 ANIMATION: Plan File in the Form of a Typewriter Path=./juanspla.vt Numb=116 # Name=VT100 ANIMATION: Jumbled Letters Form a Phrase Path=./jumble.vt Numb=117 # Name=Topless, Jeans-wearing nude, "Kathy" Path=./kathy.art Numb=118 # Name=Simplistic happy nude, "Kelly" Path=./kelly.art Numb=119 # Name=Portrait of John F. Kennedy Path=./kennedy.art Numb=120 # Name=Christ is Born! Path=./kings.art Numb=121 # Name=Portrait of James T. Kirk Path=./kirk.art Numb=122 # Name=The Koala Bear Collection v1.0 (ASCII Art) Path=./koala-gu.fun Numb=123 # Name=FIGLET FONT: The Larry 3D Font Path=./larry3d.flf Numb=124 # Name=FIGLET FONT: The Leaning Font Path=./lean.flf Numb=125 # Name=Stereoscopic image of Lincoln. Experiment results: Inconclusive Path=./lincoln.art Numb=126 # Name=Love is All You Need Path=./lovebox.art Numb=127 # Name=Merry Christas! (Madonna and Kid) Path=./madonna.art Numb=128 # Name=FIGLET FONT: The Madrid Font Path=./madrid.flf Numb=129 # Name=FIGLET FONT: The Max-Four Font Path=./maxfour.flf Numb=130 # Name=FIGLET FONT: The Mini-Font Path=./mini.flf Numb=131 # Name=Very large Mona Lisa Printout Path=./monalisa.art Numb=132 # Name=VT100 ANIMATION: The Monkey Gives You The Finger Path=./monkey.vt Numb=133 # Name=Knelling post nude "Morgana" Path=./morgana.pic Numb=134 # Name=FIGLET FONT: The Moscow Font Path=./moscow.flf Numb=135 # Name=VT100 ANIMATION: NASA: Keep Reaching for the Stars, by A.J.L. Path=./nasa.vt Numb=136 # Name=Happy New Years, with drunk schmuck Path=./newyears.art Numb=137 # Name=FIGLET FONT: The Tinker-Toy Font Path=./nker-toy.flf Numb=138 # Name=Shading ASCII: Using the Upper/Lower Case Design Thing, by Nootropic Path=./nt-ascf.ans Numb=139 # Name=Oliver from the strip "Bloom County" Path=./oliver.art Numb=140 # Name=FIGLET FONT: The Hollywood Font Path=./ollywood.flf Numb=141 # Name=VT100 Animation of Someone Taking a Drive Path=./outfile.jok Numb=142 # Name=A Small Collection of ASCII Owls Path=./owls.txt Numb=143 # Name=VT100 ANIMATION: A Bomb in Paradise by Gonad the Barbarian Path=./paradise.vt Numb=144 # Name=Peace on Earth, with accompanying Dove Path=./peace.art Numb=145 # Name=FIGLET FONT: The Pepper Font Path=./pepper.flf Numb=146 # Name=A Very Charming Middle Finger Path=./phonepig.hum Numb=147 # Name=Nude Pinup with interesting Shading Technique Path=./pinup2.txt Numb=148 # Name=ASCII drawing of an F-4 Phantom (War plane) Path=./plane.art Numb=149 # Name=VT100 ANIMATION: Klingon Bird of Prey Path=./prey.vt Numb=150 # Name=FIGLET FONT: THe Puffy Font Path=./puffy.flf Numb=151 # Name=Great-looking Siamese Cat Path=./pussycat.art Numb=152 # Name=FIGLET FONT: The Reverse Font Path=./rev.flf Numb=153 # Name=Smiling, somewhat clad nude, "Roxanne" Path=./roxanne.art Numb=154 # Name=Image of Morton's Salt Girl <I>No, she's not nude</I> Path=./saltgirl.art Numb=155 # Name=Merry Christmas! Sant and his Two Tiny Reindeer Path=./santa.art Numb=156 # Name=Pretty bizzaro picture of a Schlitz Beer Can Path=./schlitz.art Numb=157 # Name=FIGLET FONT: Script Font Path=./script.flf Numb=158 # Name=ANSI Screen: Seasons Greetings Path=./seasons.ans Numb=159 # Name=ANSI for the Marks Hotel HQ Path=./sect.ans Numb=160 # Name=Unbelievable ANSI Ad for the MARS Hotel Path=./sect1.ans Numb=161 # Name=FIGLET FONT: The Shadow Font Path=./shadow.flf Numb=162 # Name=FIGLET FONT: The Short Font Path=./short.flf Numb=163 # Name=ASCII Art of The Simpsons Path=./simpsons.txt Numb=164 # Name=FIGLET FONT: The Slant Font Path=./slant.flf Numb=165 # Name=FIGLET FONT: The Slscript Font Path=./slscript.flf Numb=166 # Name=FIGLET FONT: The Small Font Path=./small.flf Numb=167 # Name=Collection of ASCII Smileys Path=./smileys.txt Numb=168 # Name=FIGLET FONT: SMScript Path=./smscript.flf Numb=169 # Name=FIGLET FONT: Small Shadow Font Path=./smshadow.flf Numb=170 # Name=FIGLET FONT: The Small Slant Font Path=./smslant.flf Numb=171 # Name=ASCII ART: Curse you, Red Baron! Path=./snoopy.curse Numb=172 # Name=ASCII ART: Snoopy Looking Flustered Path=./snoopy.flustr Numb=173 # Name=A 1981 Snoopy Calendar Path=./snoopy.untab Numb=174 # Name=VT100 ANIMATION: Snowing Landscape, Merry Christmas Path=./snowing.vt Numb=175 # Name=Nicely-done portrait of Leonard Nimoy Path=./spock.art Numb=176 # Name=ASCII Art of Star Trek Characters Path=./st-char.asc Numb=177 # Name=FIGLET FONT: The Standard Figlet Font Path=./standard.flf Numb=178 # Name=VT100 ANIMATION: Star Trek Enterprise Blows up Politically Correct New Enterprise Path=./startrek.vt Numb=179 # Name=Huge Image of the Star Trek Enterprise Path=./startrk2.art Numb=180 # Name=So-So attempt at a Star Wars Image Path=./starwars.art Numb=181 # Name=ASCII Sun Microsystems Logo Path=./sunlogo.txt Numb=182 # Name=Posed tanline-visible Nude, "Susan" Path=./susan.art Numb=183 # Name=Wait, let me guess, another posed Nude! "Tanya" Path=./tanya.pic Numb=184 # Name=FIGLET FONT: THe Terminal Font Path=./term.flf Numb=185 # Name=VT100 ANIMATION: Tetris Game Path=./tetris.vt Numb=186 # Name=A History of Text and ASCII Art, by Joan G. Stark (2000) Path=./texthistory.txt Numb=187 # Name=FIGLET FONT: The Thick Font Path=./thick.flf Numb=188 # Name=FIGLET FONT: The Thin Font Path=./thin.flf Numb=189 # Name=Somewhat odd-looking tiger Path=./tiger.art Numb=190 # Name=VT100 FONT: The VT-100 Torture Test by Joe Smith (May 8, 1985) Path=./torturet.vt Numb=191 # Name=Merry Christmas Tree Path=./tree.art Numb=192 # Name=VT100 ANIMATION: The Enterprise Blows up an RCA Satellite Path=./trek.vt Numb=193 # Name=VT100 ANIMATION: Turkey Goes In for Thanksgiving Path=./turkey.vt Numb=194 # Name=VT100 ANIMATION: The Outer Limits Television Show Path=./tv.vt Numb=195 # Name=VT100 ANIMATION: The Twilight Zone Path=./twilight.vt Numb=196 # Name=A Collection of ASCII Art Logos, Welcome Screens, and User Information from the Unauthorised Access (UA) BBS of the UK (1995) Path=./ualogos.txt Numb=197 # Name=FIGLET FONT: The Universe Font Path=./univers.flf Numb=198 # Name=VT100 ANIMATION: Happy Valentine's Day, Beth and Dave Path=./valentin.vt Numb=199 # Name=Ms. Vicki, from Oui Magazine, February 1973 Path=./vicki.body Numb=200 # Name=Interesting Approach to a Cartoon ASCII Nude Path=./watch!me.nfo Numb=201 # Name=The Outer Limits in vt100 codes Path=./we.jok Numb=202 # Name=VT100 ANIMATION: Wine Glass Filling Path=./wineglas.vt Numb=203 # Name=VT100 ANIMATION: Merry Christmas Path=./xmas.vt Numb=204 # ./textfiles/ASCIIPR0N/.names Path=./index.html Numb=1 # Name=small astroboy (snd) Path=./anime00.txt Numb=40 # Name=converted astroboy (m1a) Path=./anime01.txt Numb=41 # Name=happy astrogirl (ch1). Path=./anime02.txt Numb=42 # Name=converted white-on-black m1a astroboy. Path=./anime03.txt Numb=43 # Name=ch1 evangelion ayanami rei Path=./anime04.txt Numb=44 # Name=m1a ayanami rei white-on-black Path=./anime05.txt Numb=45 # Name=Evangelion Katsauragi Misato, by m1a Path=./anime06.txt Numb=46 # Name=bunny ears Path=./anime07.txt Numb=47 # Name=m1a ffvii cloud white-on-black Path=./anime08.txt Numb=48 # Name=dareka Path=./anime09.txt Numb=49 # Name=unidentified benevolent fairy. Path=./anime10.txt Numb=50 # Name=smiling as if to say Path=./anime11.txt Numb=51 # Name=hello kitty. Path=./anime12.txt Numb=52 # Name=keroppi (hello kitty frog) Path=./anime13.txt Numb=53 # Name=printable michael ling lum (urusei yatsura). Path=./anime14.txt Numb=54 # Name=salior moon luna in human form Path=./anime15.txt Numb=55 # Name=namelessone atomic bomberman Path=./anime16.txt Numb=56 # Name=bon vampire princess miyu with fan Path=./anime17.txt Numb=57 # Name=nakoruru Path=./anime18.txt Numb=58 # Name=i choose you pikachu tim park. Path=./anime19.txt Numb=59 # Name=cartoon pantiless babe Path=./anime20.txt Numb=60 # Name=tim park sailor mercury. Path=./anime21.txt Numb=61 # Name=sailor saturn. Path=./anime22.txt Numb=62 # Name=sailor scouts special moves by valkyrie. Path=./anime23.txt Numb=63 # Name=dov sherman's anime ascii collection first edition Path=./anime24.txt Numb=64 # Name=dov sherman's anime ascii collection second edition. Path=./anime25.txt Numb=65 # Name=dov sherman's ranma 1/2 collection first edition Path=./anime26.txt Numb=66 # Name=dov sherman's ranma 1/2 collection second edition. Path=./anime27.txt Numb=67 # Name=dov sherman's ranma 1/2 collection third edition Path=./anime28.txt Numb=68 # Name=pikachu squirtle psyduck geodude jigglypuff ditto &c Path=./anime29.txt Numb=69 # Name=eric's sailor moon collection. Path=./anime30.txt Numb=70 # Name=GST maison ikkoku collection part one. Path=./anime31.txt Numb=71 # Name=GST maison ikkoku collection part two. Path=./anime32.txt Numb=72 # Name=GST anime including eva and 5 star stories Path=./anime33.txt Numb=73 # Name=tim park sailor moon parapara. Path=./anime34.txt Numb=74 # Name=tim park sailor neptune. Path=./anime35.txt Numb=75 # Name=tim park parapara's doll Path=./anime36.txt Numb=76 # Name=tim park tickle me usagi Path=./anime37.txt Numb=77 # Name=mk all-purpose catgirl nuku nuku Path=./anime38.txt Numb=78 # Name=mk one tit leela Path=./anime39.txt Numb=79 # Name=super catgirl 2. Path=./anime40.txt Numb=80 # Name=ac surprise. Path=./anime41.txt Numb=81 # Name=Priss from Bubblegum Crisis (?) Path=./anime42.txt Numb=82 # Name=girl with horns? Path=./anime43.txt Numb=83 # Name=chibi school girl. Path=./anime44.txt Numb=84 # Name=alildevil bulbasaur squirtle charmander evolutions Path=./anime45.txt Numb=85 # Name=amc pokemon logo and some monsters Path=./anime46.txt Numb=86 # Name=usagi t & a. Path=./anime47.txt Numb=87 # Name=mk ayanami bootscreen portrait Path=./anime48.txt Numb=88 # Name=m1a iwakura lain from serial experiments lain. Path=./anime49.txt Numb=89 # Name=Priss from Bubblegum Crisis Path=./anime50.txt Numb=90 # Name=Dragonball Z's Goku, by zi Path=./anime51.txt Numb=91 # Name=Running Chocobos, by zi and jgs Path=./anime52.txt Numb=92 # Name=The Black Mage from Final Fantasy, by zi Path=./anime53.txt Numb=93 # Name=Girl from Harem Blade, by zi Path=./anime54.txt Numb=94 # Name=Mokona from Magic Knight Rayearth, by zi Path=./anime55.txt Numb=95 # Name=Mononoke Hime Kodama, by zi Path=./anime56.txt Numb=96 # Name=Revolutionary Girl Utena, by zi Path=./anime57.txt Numb=97 # Name=Miki Kaoru from Utena, by zi Path=./anime58.txt Numb=98 # Name=Meltina from Valkyrie Profile, by zi Path=./anime59.txt Numb=99 # Name=Larva's Mask from Vampire Princess Miyu, by zi Path=./anime60.txt Numb=100 # Name=Pochacco! Path=./anime61.txt Numb=101 # Name=A Converted Skuld from Oh My Goddess, by junta Path=./anime62.txt Numb=102 # Name=oral close up! Path=./bj00.txt Numb=103 # Name=oral close up!! Path=./bj01.txt Numb=104 # Name=oral close up!!! Path=./bj02.txt Numb=105 # Name=oral close up!!!! Path=./bj03.txt Numb=106 # Name=oral close up!!!!! Path=./bj04.txt Numb=107 # Name=david of michel-ange Path=./hunky00.txt Numb=108 # Name=so fuckin h0t! Path=./hunky01.txt Numb=109 # Name="adam" erect Path=./hunky02.txt Numb=110 # Name=a happy hustler a real tease Path=./hunky03.txt Numb=111 # Name=buff ascii drawing Path=./hunky04.txt Numb=112 # Name=captain james t kirk in contemplation. Path=./hunky05.txt Numb=113 # Name=bon jeune homme assis sur la bord de la mer. Path=./hunky06.txt Numb=114 # Name=jgs nude buff shower Path=./hunky07.txt Numb=115 # Name=Naked Make holding Towel Path=./hunky08.txt Numb=116 # Name=meriday in the morning Path=./pinup00.txt Numb=117 # Name=meriday in the morning ripoff. Path=./pinup01.txt Numb=118 # Name=1964 playboy centrefold classic ascii. Path=./pinup02.txt Numb=119 # Name=kneeling draped blonde Path=./pinup03.txt Numb=120 # Name=hot pants (white on black) Path=./pinup04.txt Numb=121 # Name=tan lines, headband. Path=./pinup05.txt Numb=122 # Name=peek-a-boo tits. Path=./pinup06.txt Numb=123 # Name=wonky bikini babe. Path=./pinup07.txt Numb=124 # Name=sultry 80's. Path=./pinup08.txt Numb=125 # Name=nicer version of pinup07.txt Path=./pinup09.txt Numb=126 # Name=x-tra large boobies, kneeling. Path=./pinup10.txt Numb=127 # Name=sexy mature woman. Path=./pinup11.txt Numb=128 # Name=crouched happy babe. Path=./pinup12.txt Numb=129 # Name="bunny", classic playboy w/ears. Path=./pinup13.txt Numb=130 # Name="clohe", assertive loincloth Path=./pinup14.txt Numb=131 # Name="fran", playboy jokes cartoon girl made of sex Path=./pinup15.txt Numb=132 # Name=snatchgrab Path=./pinup16.txt Numb=133 # Name=nicely converted small babe. Path=./pinup17.txt Numb=134 # Name=science officer jadzia dax *IN UNIFORM!!*. Path=./pinup18.txt Numb=135 # Name=b'ger giantess Path=./pinup19.txt Numb=136 # Name="holly". Path=./pinup20.txt Numb=137 # Name="ingrid", x-tra wide mannerist nude. Path=./pinup21.txt Numb=138 # Name=smiley upside-down sideways supine nude. Path=./pinup22.txt Numb=139 # Name="kathy", come-hither topless bluejean farm hand. Path=./pinup23.txt Numb=140 # Name="kelly", happy seated ditzy babe Path=./pinup24.txt Numb=141 # Name="roxanne", *nice* bejewelled triangle-muff Path=./pinup25.txt Numb=142 # Name=posed model on stool Path=./pinup26.txt Numb=143 # Name=tits of the 80's (white on black). Path=./pinup27.txt Numb=144 # Name=large bashful topless bikini (MHT) Path=./pinup28.txt Numb=145 # Name=swedish simultaneous ass-titties Path=./pinup29.txt Numb=146 # Name=pregnant lady holding tits up. Path=./pinup30.txt Numb=147 # Name=Wavy Hair, by Kludgeonsmith Path=./pinup31.txt Numb=148 # Name=More Wavy Hair, by Kludgeonsmith Path=./pinup32.txt Numb=149 # Name=Languid Nude, by Stef99 Path=./pinup33.txt Numb=150 # Name=Dombitch, by Meph Path=./pinup34.txt Numb=151 # Name=Over the Shoulder Flyaway Coquette Path=./pinup35.txt Numb=152 # Name=Blonde Contraposto Path=./pinup36.txt Numb=153 # Name=Halter Honey Path=./pinup37.txt Numb=154 # Name=Codename Fly Bitch, by Meph Path=./pinup38.txt Numb=155 # Name=Smaller Version of Codename Fly Bitch, by Meph Path=./pinup39.txt Numb=156 # Name=Ventilated Bustier Path=./pinup40.txt Numb=157 # Name=Monster Bikini Face Path=./pinup41.txt Numb=158 # Name=Tribal Witch, by Meph (1998) Path=./pinup42.txt Numb=159 # Name=Handcopied from an Old Pre-1980's Printout, by Comet (2001) Path=./pinup43.txt Numb=160 # Name=Sexy Shinoby Hosokawa, Conversion by Brian Feldman Path=./pinup44.txt Numb=161 # Name=Kyokofukada, by m0f73 Path=./pinup45.txt Numb=162 # Name=Pregnant Pinup, ASCII Conversion Path=./pinup46.txt Numb=163 # Name=Thoughtful from Flash Mountain Path=./pinup47.txt Numb=164 # Name=Corsetry and Polyvinyl Path=./pinup48.txt Numb=165 # Name=the dutch dude classy boa Path=./pr0n00.txt Numb=166 # Name=just the facts Path=./pr0n01.txt Numb=167 # Name=naked couple on a horse Path=./pr0n02.txt Numb=168 # Name=converted female jerk-off Path=./pr0n03.txt Numb=169 # Name=krogg on all fours Path=./pr0n04.txt Numb=170 # Name=wide open beaver stockings Path=./pr0n05.txt Numb=171 # Name=krogg happy spread labia Path=./pr0n06.txt Numb=172 # Name=krogg on all fours two Path=./pr0n07.txt Numb=173 # Name=magical sorceress with acrylic nails Path=./pr0n08.txt Numb=174 # Name=lesbian action white-on-black Path=./pr0n09.txt Numb=175 # Name=m1a converted torso Path=./pr0n10.txt Numb=176 # Name=m1a converted nude Path=./pr0n11.txt Numb=177 # Name=super heroine Path=./pr0n12.txt Numb=178 # Name=white-on-black manet dejeuner Path=./pr0n13.txt Numb=179 # Name=the dutch dude tank top Path=./pr0n14.txt Numb=180 # Name=small converted pantless heels Path=./pr0n15.txt Numb=181 # Name=very perky silhouette Path=./pr0n16.txt Numb=182 # Name=vk phat figlet style nude Path=./pr0n17.txt Numb=183 # Name=reclining curvy babe Path=./pr0n18.txt Numb=184 # Name=small white-on black oldschool babe Path=./pr0n19.txt Numb=185 # Name=b'ger babes in stages of disarray Path=./pr0n20.txt Numb=186 # Name=b'ger bathing beauties Path=./pr0n21.txt Numb=187 # Name=jgs bikini woman Path=./pr0n22.txt Numb=188 # Name=pregnant Path=./pr0n23.txt Numb=189 # Name=jgs seated nude Path=./pr0n24.txt Numb=190 # Name=another on all fours Path=./pr0n25.txt Numb=191 # Name=jgs have a sexy birthday Path=./pr0n26.txt Numb=192 # Name=happy ch1x0r Path=./pr0n27.txt Numb=193 # Name=ejm man and woman Path=./pr0n28.txt Numb=194 # Name=b'ger naked eve Path=./pr0n29.txt Numb=195 # Name=fine asses fucka Path=./pr0n30.txt Numb=196 # Name=torso sig Path=./pr0n31.txt Numb=197 # Name=b'ger vanity Path=./pr0n32.txt Numb=198 # Name=beaver indignant nude Path=./pr0n33.txt Numb=199 # Name=cute little penorz Path=./pr0n34.txt Numb=200 # Name=modest small two toed nude Path=./pr0n35.txt Numb=201 # Name=lucy bares all at last Path=./pr0n36.txt Numb=202 # Name=jro satin sheets Path=./pr0n37.txt Numb=203 # Name=jro surprise bj Path=./pr0n38.txt Numb=204 # Name=stocking fabio ride Path=./pr0n39.txt Numb=205 # Name=wtf? Path=./pr0n40.txt Numb=206 # Name=unknown the gonad man Path=./pr0n41.txt Numb=207 # Name=unknown nude couple Path=./pr0n42.txt Numb=208 # Name=prs porno several positions! Path=./pr0n43.txt Numb=209 # Name=jro the exam Path=./pr0n44.txt Numb=210 # Name=jro observations Path=./pr0n45.txt Numb=211 # Name=krogg striptease Path=./pr0n46.txt Numb=212 # Name=krogg happy panties Path=./pr0n47.txt Numb=213 # Name=krogg garter belt Path=./pr0n48.txt Numb=214 # Name=The Costume, by JRO Path=./pr0n49.txt Numb=215 # Name=A Duchamp Ripoff, by ejm and rm Path=./pr0n50.txt Numb=216 # Name=Merry Fucking Christmas, from jro Path=./pr0n51.txt Numb=217 # Name=Something to Unwrap, by jro Path=./pr0n52.txt Numb=218 # Name=Christmas Reflections, by jro Path=./pr0n53.txt Numb=219 # Name=Pretty Warrior Girl, by krogg Path=./pr0n54.txt Numb=220 # Name=Naked on Top of a Cliff Path=./pr0n55.txt Numb=221 # Name=Converted Surfer Girl Path=./pr0n56.txt Numb=222 # Name=Some Novelty Tits Path=./pr0n57.txt Numb=223 # Name=SIG-Sized Nudies, by vk Path=./pr0n58.txt Numb=224 # Name=Some Smallish Series Nudes, by hjw Path=./pr0n59.txt Numb=225 # Name=Contortion Path=./pr0n60.txt Numb=226 # Name=Artful Odalisque, by m1a Path=./pr0n61.txt Numb=227 # Name=Kissing Girls Path=./pr0n62.txt Numb=228 # Name=Sodomy, by Krogg Path=./pr0n63.txt Numb=229 # Name=Small Valkyrie, by Krogg Path=./pr0n64.txt Numb=230 # Name=Goatsex Ass Wide Open Path=./pr0n65.txt Numb=231 # Name=Converted Portrait, by DarkOrchid Path=./pr0n66.txt Numb=232 # Name=Sapphic Couple, by sexii Path=./pr0n67.txt Numb=233 # Name=Sexii Whips ASCII into Line! by Sexii Path=./pr0n68.txt Numb=234 # Name=Deco Silhouette, by Sexii Path=./pr0n69.txt Numb=235 # Name=Wicked File: Collection of Miscellaneous ASCII Art Path=./pr0n70.txt Numb=236 # Name=Collection of Various Nudes Path=./pr0n71.txt Numb=237 # Name=To Bonnie, by mthw Path=./pr0n72.txt Numb=238 # Name=Upshit, by mthw Path=./pr0n73.txt Numb=239 # Name=Upscale Upskirt Two by Mthw Path=./pr0n74.txt Numb=240 # Name=Upskirt Three, by mthw Path=./pr0n75.txt Numb=241 # Name=We Want You! By Ojo Path=./pr0n76.txt Numb=242 # Name=Cybersquat, by nmf Path=./pr0n77.txt Numb=243 # Name=Consensual Spank-Off Path=./pr0n78.txt Numb=244 # Name=Triple-A Crew Collaboration (Nudes) Path=./pr0n79.txt Numb=245 # Name=Startled Nude Path=./pr0n80.txt Numb=246 # Name=A Coy Shave, by cjr Path=./pr0n81.txt Numb=247 # Name=Nude, by cjr Path=./pr0n82.txt Numb=248 # Name=Self-Exploration Path=./pr0n83.txt Numb=249 # Name=botticelli's venus facial. Path=./venus01.txt Numb=250 # Name=botticelli's venus full frontal. Path=./venus02.txt Numb=251 # ./textfiles/DECUS/.names Path=./index.html Numb=1 # Name=Compressed Archive of All Files in this Directory Path=./85d.zip Numb=30 # Name=PRINTER ART: Alfred E. Neuman Path=./alfred1.pic Numb=31 # Name=PRINTER ART: Alfred E. Neuman Path=./alfred2.txt Numb=32 # Name=PRINTER ART: Alfred E. Neuman Path=./alfred3.txt Numb=33 # Name=PRINTER ART: Schopenhaur's Alone (cat) Path=./alone_large.txt Numb=34 # Name=PRINTER ART: Schopenhaur's Alone (cat) Path=./alone_small.txt Numb=35 # Name=PRINTER ART: Little Annie Fannie (After Kurtzman) Path=./annie.pic Numb=36 # Name=PRINTER ART: Happy Anniversary Greeting Path=./anniversary.pic Numb=37 # Name=PRINTER ART: Armstrong on the Moon Path=./armstrong.txt Numb=38 # Name=PRINTER ART: Johann S. Bach Path=./bach.txt Numb=39 # Name=PRINTER ART: Ludwig Van Beethoven Path=./beethoven.txt Numb=40 # Name=PRINTER ART: Betty Boop Path=./betty_boop.pic Numb=41 # Name=PRINTER ART: Playboy Club Bunny Path=./bunny.pic Numb=42 # Name=PRINTER ART: Andy Capp Path=./capp1.pic Numb=43 # Name=PRINTER ART: Andy Capp Path=./capp2.pic Numb=44 # Name=PRINTER ART: Andy Capp Path=./capp3.pic Numb=45 # Name=PRINTER ART: Chaelie Chaplin Path=./chaplin.pic Numb=46 # Name=PRINTER ART: Charlie Brown "Good Grief" Path=./charlie1.pic Numb=47 # Name=PRINTER ART: Charlie Brown Path=./charlie2.pic Numb=48 # Name=PRINTER ART: Charlie Brown: Smiling Path=./charlie3.pic Numb=49 # Name=PRINTER ART: Charlie Brown: Concerned Path=./charlie4.pic Numb=50 # Name=PRINTER ART: Charlie Brown: Yo-Yo Path=./charlie5.txt Numb=51 # Name=PRINTER ART: Charlie Brown: Running Path=./charlie6.txt Numb=52 # Name=PRINTER ART: Merry Christans and a Happy New Year Path=./christmas_1.pic Numb=53 # Name=PRINTER ART: Madonna and Child Path=./christmas_10.pic Numb=54 # Name=PRINTER ART: Peace on Earth Path=./christmas_11.pic Numb=55 # Name=PRINTER ART: Joy to the World: The Lord Has Come Path=./christmas_12.pic Numb=56 # Name=PRINTER ART: Seasons Greetings - Sleigh Path=./christmas_13.pic Numb=57 # Name=PRINTER ART: MC-HNY Sleigh Path=./christmas_14.pic Numb=58 # Name=PRINTER ART: Santa - Seasons Greetings from the Computation Center Path=./christmas_15.pic Numb=59 # Name=PRINTER ART: Madonna and Child Path=./christmas_16.pic Numb=60 # Name=PRINTER ART: A Christmas Train Path=./christmas_17.pic Numb=61 # Name=PRINTER ART: Snowman: Merry Christmas and a Happy New Year Path=./christmas_18.pic Numb=62 # Name=PRINTER ART: Snoopy: A Hip Christmas Path=./christmas_19.pic Numb=63 # Name=PRINTER ART: Madonna and Child: Noel Path=./christmas_2.pic Numb=64 # Name=PRINTER ART: Merry Christmas: Santa and Reindeer Path=./christmas_3.pic Numb=65 # Name=PRINTER ART: Merry Christmas and Happy New Year: Santa with Gifts Path=./christmas_4.pic Numb=66 # Name=PRINTER ART: Merry Christmas: Sleigh Path=./christmas_5.pic Numb=67 # Name=PRINTER ART: Season's Greetings Path=./christmas_6.pic Numb=68 # Name=PRINTER ART: Seasons Greetings: Happy Winter Solstice Path=./christmas_7.pic Numb=69 # Name=PRINTER ART: Christmas Tree: Merry Christmas Path=./christmas_8.pic Numb=70 # Name=PRINTER ART: Three Wise Men Path=./christmas_9.pic Numb=71 # Name=PRINTER ART: Mountain Climber Path=./climber.txt Numb=72 # Name=PRINTER ART: Clipper Ship Path=./clipper_ship.pic Numb=73 # Name=PRINTER ART: Path=./col_128.txt Numb=74 # Name=PRINTER ART: Path=./col_256.txt Numb=75 # Name=PRINTER ART: Path=./col_32.txt Numb=76 # Name=PRINTER ART: Path=./col_64.txt Numb=77 # Name=PRINTER ART: Path=./col_neg128.txt Numb=78 # Name=PRINTER ART: Path=./col_neg64.txt Numb=79 # Name=PRINTER ART: Path=./col_nor128.txt Numb=80 # Name=PRINTER ART: Path=./col_nor256.txt Numb=81 # Name=PRINTER ART: Wile E. Coyote Path=./coyote.txt Numb=82 # Name=PRINTER ART: Wile E. Coyote Path=./coyote2.txt Numb=83 # Name=PRINTER ART: Statue of David: Playboy of the Year Path=./david.pic Numb=84 # Name=PRINTER ART: Dean and Nixon: Time Magazine Cover Path=./dean_nixon.txt Numb=85 # Name=PRINTER ART: Cartoon Portrait of Dog Path=./dog.pic Numb=86 # Name=PRINTER ART: Cartoon Portrait of Dog Path=./dog2.pic Numb=87 # Name=PRINTER ART: Dragon Path=./dragon.pic Numb=88 # Name=PRINTER ART: Space-Going Dog Path=./drapcia1.txt Numb=89 # Name=PRINTER ART: Space-Going Dog Path=./drapcia2.txt Numb=90 # Name=PRINTER ART: Ecology Flag: Love It Or Leave It Path=./ecology.pic Numb=91 # Name=PRINTER ART: Albert Einstein Path=./einstein.txt Numb=92 # Name=PRINTER ART: U.S.S. Enterprise Path=./enterprise.pic Numb=93 # Name=PRINTER ART: McDonnell Douglas F-4E Phanton II U.S.A.F. Attack Fighter Path=./f4_phantom.pic Numb=94 # Name=PRINTER ART: Farrah Fawcett Path=./farrah.txt Numb=95 # Name=PRINTER ART: Garbage In, Garbage Out Flowchart Path=./gigo.pic Numb=96 # Name=PRINTER ART: Image of Blonde Girl Path=./girlface.txt Numb=97 # Name=PRINTER ART: Bust of Young Girl Path=./girlface2.txt Numb=98 # Name=PRINTER ART: Boeing 727 Flying Over Golden Gate Path=./golden_gate.txt Numb=99 # Name=PRINTER ART: I Miss You, Love Gumdrop Path=./gumdrop.pic Numb=100 # Name=PRINTER ART: Hamms Beer Can Path=./hamms.pic Numb=101 # Name=PRINTER ART: Young Woman Path=./head.txt Numb=102 # Name=PRINTER ART: Holly Hobbie: The Time to be Happy is Now Path=./hollie_hobbie.pic Numb=103 # Name=PRINTER ART: Path=./jackie.txt Numb=104 # Name=PRINTER ART: Portrait of Johnny Cash Path=./johnny_cash.txt Numb=105 # Name=PRINTER ART: John F. Kennedy: Ask Not What your Country Can Do For You, Ask What You can Do For Your Country Path=./kennedy1.pic Numb=106 # Name=PRINTER ART: Image of John Kennedy Path=./kennedy2.pic Numb=107 # Name=PRINTER ART: Image of John Kennedy Path=./kennedy3.pic Numb=108 # Name=PRINTER ART: King Kong Path=./kingkong.txt Numb=109 # Name=PRINTER ART: Image of Captain Kirk Path=./kirk.pic Numb=110 # Name=PRINTER ART: Image of Klingon Ship Path=./klingon.pic Numb=111 # Name=PRINTER ART: Linus: Don't Bug Me Path=./linus1.pic Numb=112 # Name=PRINTER ART: Linus: Security is a Warm Blanket Path=./linus2.pic Numb=113 # Name=PRINTER ART: Linus: It Doesn't Matter What You Believe As Long as You're Sincere Path=./linus3.pic Numb=114 # Name=PRINTER ART: Linus: Love is Walking Hand In Hand Path=./linus4.pic Numb=115 # Name=PRINTER ART: Cartoon Lion Path=./lion.pic Numb=116 # Name=(Inaccurate) Listing of Files in this Directory, Including Lines Per Inch, With, and Other Metainformation (1985) Path=./listing.html Numb=117 # Name=PRINTER ART: Love Icon Path=./love.pic Numb=118 # Name=PRINTER ART: Lucy Reading a Book Path=./lucy1.pic Numb=119 # Name=PRINTER ART: LUST Icon Path=./lust.pic Numb=120 # Name=PRINTER ART: Image of Mertini Using the Words "Crystal" Path=./martini.pic Numb=121 # Name=PRINTER ART: Image of Mickey Mouse Path=./mickey_mouse.pic Numb=122 # Name=PRINTER ART: Image of Mona Lisa Path=./mona_lisa_1.txt Numb=123 # Name=PRINTER ART: Image of Mona Lisa Path=./mona_lisa_2.txt Numb=124 # Name=PRINTER ART: Photograph of Moon From Space Path=./moon.txt Numb=125 # Name=PRINTER ART: Image of Cartoon Mouse Path=./mouse.pic Numb=126 # Name=PRINTER ART: Nude Batgirl: Honeywell H-2200 Path=./nude_1.pic Numb=127 # Name=PRINTER ART: Claire Rambeau - Playboy Oct. 1971 Path=./nude_10.pic Numb=128 # Name=PRINTER ART: Gwen Wong - Playboy Apr. 1967 Path=./nude_11.pic Numb=129 # Name=PRINTER ART: Path=./nude_12.pic Numb=130 # Name=PRINTER ART: Paige Young - Playboy Nov. 1968 Path=./nude_13.pic Numb=131 # Name=PRINTER ART: Paige Young - Playboy Nov. 1968 Path=./nude_14.pic Numb=132 # Name=PRINTER ART: Ellen Michaels - Playboy Mar. 1972 Path=./nude_15.pic Numb=133 # Name=PRINTER ART: Jill Taylor - Playboy Jan. 1970 Path=./nude_16.pic Numb=134 # Name=PRINTER ART: Dru Hart - Playboy Sep. 1968 Path=./nude_17.pic Numb=135 # Name=PRINTER ART: Sorry, System 360 Can Not Do Everything Path=./nude_18.pic Numb=136 # Name=PRINTER ART: Rosemary Hillcrest - PB Oct. 1964 Path=./nude_19.pic Numb=137 # Name=PRINTER ART: China Lee - Playboy Aug. 1964 Path=./nude_2.pic Numb=138 # Name=PRINTER ART: Path=./nude_20.pic Numb=139 # Name=PRINTER ART: Miss Morgana Path=./nude_21.pic Numb=140 # Name=PRINTER ART: Reclining Nude Path=./nude_22.pic Numb=141 # Name=PRINTER ART: Nude Facing Away with Towel Path=./nude_23.pic Numb=142 # Name=PRINTER ART: Path=./nude_24.pic Numb=143 # Name=PRINTER ART: Ellen Michaels - Playboy Mar. 1972 Path=./nude_25.pic Numb=144 # Name=PRINTER ART: Path=./nude_26.txt Numb=145 # Name=PRINTER ART: Nancy Scott - Playboy Mar. 1964 Path=./nude_27.pic Numb=146 # Name=PRINTER ART: Jennifer Liano - Playboy May 1970 Path=./nude_28.pic Numb=147 # Name=PRINTER ART: Path=./nude_29.pic Numb=148 # Name=PRINTER ART: Path=./nude_3.pic Numb=149 # Name=PRINTER ART: Carol O'Neal - Playboy Jul. 1972 Path=./nude_30.pic Numb=150 # Name=PRINTER ART: Nancy Cameron - Playboy Jan. 1974 Path=./nude_31.pic Numb=151 # Name=PRINTER ART: Lori Winston - Playboy Jun. 1964 Path=./nude_32.pic Numb=152 # Name=PRINTER ART: Path=./nude_33.txt Numb=153 # Name=PRINTER ART: Path=./nude_34.pic Numb=154 # Name=PRINTER ART: Cindi Wood - Playboy Feb, 1973 Path=./nude_35.txt Numb=155 # Name=PRINTER ART: Patti Reynolds - Playboy Sept. 1965 Path=./nude_36.txt Numb=156 # Name=PRINTER ART: Patti Reynolds - Playboy Sept. 1965 Path=./nude_37.txt Numb=157 # Name=PRINTER ART: Path=./nude_4.pic Numb=158 # Name=PRINTER ART: Path=./nude_5.pic Numb=159 # Name=PRINTER ART: Kathy Douglas - Playboy Oct. 1960 Path=./nude_6.pic Numb=160 # Name=PRINTER ART: Majken Haugedal - Playboy Oct. 1968 Path=./nude_7.pic Numb=161 # Name=PRINTER ART: Path=./nude_8.pic Numb=162 # Name=PRINTER ART: Ellen Michaels - Playboy Mar. 1972 Path=./nude_9.pic Numb=163 # Name=PRINTER ART: Batgirl Nude (from pin-up) Path=./nude_batgirl.pic Numb=164 # Name=PRINTER ART: Playboy Jokes Character Path=./nude_femlin.pic Numb=165 # Name=PRINTER ART: Lucy Nude Path=./nude_lucy.pic Numb=166 # Name=PRINTER ART: Image of Oliver from Bloom County Path=./oliver.pic Numb=167 # Name=PRINTER ART: I Love Pac-Man Path=./pacman.pic Numb=168 # Name=PRINTER ART: Peace on Earth: Glory to God in the Highest and on Earth, Among Men Who He Loves Path=./peace.pic Numb=169 # Name=PRINTER ART: Pi Portrayed as Pie Path=./piece_of_pi.pic Numb=170 # Name=PRINTER ART: Pink Panther Path=./pink_panther_1.pic Numb=171 # Name=PRINTER ART: Pink Panther Path=./pink_panther_2.pic Numb=172 # Name=PRINTER ART: Playboy Logo Path=./playboy_logo_1.pic Numb=173 # Name=PRINTER ART: Playboy Logo Path=./playboy_logo_2.pic Numb=174 # Name=PRINTER ART: Playboy Logo Path=./playboy_logo_3.pic Numb=175 # Name=PRINTER ART: Playboy Logo Path=./playboy_logo_4.pic Numb=176 # Name=PRINTER ART: Pluto: 1979 RTTY Art Contest Entry by Chuck, New York Path=./pluto.pic Numb=177 # Name=PRINTER ART: Winnie the Pooh Path=./pooh.pic Numb=178 # Name=PRINTER ART: Pumpkin Path=./pumpkin.pic Numb=179 # Name=PRINTER ART: PussyCat Path=./puscat.pic Numb=180 # Name=PRINTER ART: Nude of Raquel Welch Path=./racquel_nude.pic Numb=181 # Name=PRINTER ART: Image of Racquel Welch Path=./racquel_welch.pic Numb=182 # Name=PRINTER ART: Arkansas Razorback Path=./razorback_1.pic Numb=183 # Name=PRINTER ART: Arkansas Razorback with Printable Rubouts Path=./razorback_2.pic Numb=184 # Name=PRINTER ART: The Red Baron Path=./red_baron.pic Numb=185 # Name=PRINTER ART: Road Runner: Beep Beep Path=./roadrunner.pic Numb=186 # Name=PRINTER ART: Sailing Ship Path=./sailship.pic Numb=187 # Name=PRINTER ART: Sailing Ship Path=./sailship2.txt Numb=188 # Name=PRINTER ART: Schlitz: The Beer That Made Milwaukee Famous Path=./schlitz.pic Numb=189 # Name=PRINTER ART: Schroeder Playing Piano Path=./schroder1.pic Numb=190 # Name=PRINTER ART: Schroeder Playing Piano Path=./schroder2.pic Numb=191 # Name=PRINTER ART: Sherlock Holmes Path=./sherlock.txt Numb=192 # Name=PRINTER ART: Space Shuttle Path=./shuttle.pic Numb=193 # Name=PRINTER ART: Snoopy: Curse You, Red Baron! Path=./snoopy1.pic Numb=194 # Name=PRINTER ART: Snoopy: Curse You, Red Baron! Path=./snoopy10.pic Numb=195 # Name=PRINTER ART: Snoopy: Life is Full of Rude Awakenings Path=./snoopy11.pic Numb=196 # Name=PRINTER ART: Snoopy: Dancing Path=./snoopy12.pic Numb=197 # Name=PRINTER ART: Snoopy: Thinking of You Path=./snoopy13.pic Numb=198 # Name=PRINTER ART: Snoopy: Walking Path=./snoopy14.pic Numb=199 # Name=PRINTER ART: Snoopy: Walking Path=./snoopy15.pic Numb=200 # Name=PRINTER ART: Snoopy: Blah Path=./snoopy16.pic Numb=201 # Name=PRINTER ART: Snoopy: With UALR Coffee Cup Path=./snoopy17.pic Numb=202 # Name=PRINTER ART: Snoopy: Hug a Warm puppy Path=./snoopy18.pic Numb=203 # Name=PRINTER ART: Snoopy: Punt Path=./snoopy19.pic Numb=204 # Name=PRINTER ART: Snoopy: Who Took My Plane Path=./snoopy2.pic Numb=205 # Name=PRINTER ART: Snoopy: Life is Full of Rude Awakenings Path=./snoopy20.pic Numb=206 # Name=PRINTER ART: Snoopy: Love is a Wet Puppy Dog Path=./snoopy21.pic Numb=207 # Name=PRINTER ART: Snoopy Path=./snoopy22.pic Numb=208 # Name=PRINTER ART: Snoopy: Older Version Path=./snoopy23.pic Numb=209 # Name=PRINTER ART: Snoopy: Fly Around This, Red Baron Path=./snoopy24.txt Numb=210 # Name=PRINTER ART: Snoopy: Curse You, IRS! Path=./snoopy3.pic Numb=211 # Name=PRINTER ART: Snoopy: The Doctor is In Path=./snoopy4.pic Numb=212 # Name=PRINTER ART: Snoopy: Happy Path=./snoopy5.pic Numb=213 # Name=PRINTER ART: Snoopy: Hang on Snoopy Path=./snoopy6.pic Numb=214 # Name=PRINTER ART: Snoopy: Curse You, Red Baron Path=./snoopy7.pic Numb=215 # Name=PRINTER ART: Snoopy: Curse You, Red Baron Path=./snoopy8.pic Numb=216 # Name=PRINTER ART: Snoopy: Happiness is a Bug Free Program Path=./snoopy9.pic Numb=217 # Name=PRINTER ART: Spiderman Path=./spiderman.txt Numb=218 # Name=PRINTER ART: Mr. Spock Path=./spock.txt Numb=219 # Name=PRINTER ART: Mr. Spock Path=./spock_2.pic Numb=220 # Name=PRINTER ART: Spook, from the Wizard of Id Path=./spook.pic Numb=221 # Name=PRINTER ART: Star Wars Movie Poster Path=./starwars.txt Numb=222 # Name=PRINTER ART: Jesus Christ Superstar Path=./superstar.txt Numb=223 # Name=PRINTER ART: Picasso Image Path=./sylvette.txt Numb=224 # Name=PRINTER ART: Thurkey Path=./turkey.pic Numb=225 # Name=PRINTER ART: Tweety Bird Path=./tweety.pic Numb=226 # Name=PRINTER ART: Happy Heart Day Path=./valentine.pic Numb=227 # Name=PRINTER ART: Classic Vargas Girl Path=./vargas.txt Numb=228 # Name=PRINTER ART: Woodstock: Sigh Path=./woodstock1.pic Numb=229 # Name=PRINTER ART: Woodstock Path=./woodstock2.pic Numb=230 # Name=PRINTER ART: Woodstock: Programming is For the Birds Path=./woodstock3.pic Numb=231 # Name=PRINTER ART: X-Wing Fighter from Star Wars Path=./xwing.txt Numb=232 # ./textfiles/LOGOS/.names Path=./index.html Numb=1 # Name=LOGO: AFL Path=./afl1.txt Numb=21 # Name=LOGO: Alcatraz Path=./alcatraz.txt Numb=22 # Name=LOGO: Anthrox Path=./anthrox1.txt Numb=23 # Name=LOGO: Crack Path=./crack1.txt Numb=24 # Name=LOGO: Crack Path=./crack2.txt Numb=25 # Name=LOGO: Crack Path=./crack3.txt Numb=26 # Name=LOGO: Crack Path=./crack4.txt Numb=27 # Name=LOGO: Crystal Path=./crystal1.txt Numb=28 # Name=LOGO: Crystal Path=./crystal2.txt Numb=29 # Name=LOGO: Crystal Path=./crystal3.txt Numb=30 # Name=LOGO: Dytec Path=./dytec1.txt Numb=31 # Name=LOGO: FLT Path=./flt1.txt Numb=32 # Name=LOGO: Fairlight Path=./flt2.txt Numb=33 # Name=LOGO: Fusion Path=./fusion1.txt Numb=34 # Name=LOGO: Fusion Path=./fusion2.txt Numb=35 # Name=LOGO: Fusion Path=./fusion3.txt Numb=36 # Name=LOGO: Majik 12 Path=./m12.txt Numb=37 # Name=LOGO: Nemesis Path=./nemesis1.txt Numb=38 # Name=LOGO: Palace Path=./palace1.txt Numb=39 # Name=LOGO: Paradise Path=./paradise.txt Numb=40 # Name=LOGO: Scoopex Path=./scoopex1.txt Numb=41 # Name=LOGO: Scoopex Path=./scoopex2.txt Numb=42 # Name=LOGO: Scoopex Path=./scoopex3.txt Numb=43 # Name=LOGO: Silents Path=./silents1.txt Numb=44 # Name=LOGO: Skid Row Path=./skid1.txt Numb=45 # Name=LOGO: Skid Row Path=./skid2.txt Numb=46 # Name=LOGO: Supplex Path=./supplex1.txt Numb=47 # Name=LOGO: TRSI Path=./trsi1.txt Numb=48 # ./textfiles/RTTY/.names Path=./index.html Numb=1 # Name=Picture of Adam and Eve (Actually Just Eve) Path=./adam$eve.pix Numb=43 # Name=Image of Andy Capp by Don (W8DIS) Path=./andycap.pix Numb=44 # Name=Picture of Batman's Face Path=./batman.pix Numb=45 # Name=Image of Brigitte Bardot by Anthony Mawby and Robert Connell Path=./bbardot.pix Numb=46 # Name=Image of Billy Carter by Kent (W9LZQ) Path=./bcarter.pox Numb=47 # Name=Image of Big Ben Path=./bigben.pox Numb=48 # Name=My Home is My Castle, by Klaus (DF7FB) (1980) Path=./castle.pix Numb=49 # Name=Image of Caveman on Unicycle Path=./caveman.pix Numb=50 # Name=Image of Woman in Champagne Glass, by K6EQV Path=./chamglas.pix Numb=51 # Name=Image of Cookie from Beetle Bailey by John (WB4GlJ) Path=./cookie.pix Numb=52 # Name=Image of Cougar from an Original Charcoal by Dennis Droz (K7OOW) Path=./cougar.pix Numb=53 # Name=Image of Cowboy: "Sudden Settlement" by Bill Skipper (K0ARG) Path=./cowboy.pix Numb=54 # Name=Image of Japanese Craine by N. Tsuruno Path=./crane.pox Numb=55 # Name=Image of Cy, the Iowa State University Mascot, by Doug (Wn0nRK) Path=./cy.pix Numb=56 # Name=Image of a Cylon Raider by Dick (K7WYNC) Path=./cylonrdr.pix Numb=57 # Name=Image of Greta, my German Shepherd, by Winky (AD4M) Path=./dog.pox Numb=58 # Name=Noli M Tangere (Don't Touch Me), by DL6US (1975) Path=./dtchme.pix Numb=59 # Name=Image of Thomas A Edison by Bill (W2LTJ) Path=./edison.pix Numb=60 # Name=Image of the Star Trek Enterprise "Space - The Final Frontier) Path=./entrpriz.pix Numb=61 # Name=Image of a F4E Phantom U.S. Airforce Attack Fighter by Neil (K9WRL) Path=./f4e.pix Numb=62 # Name=Image of a Girl's Face, b W0CQN (October, 1978) Path=./facegirl.pix Numb=63 # Name=Image of Siamese Pussy Cat by Don (WA6PIR) Path=./fang.pix Numb=64 # Name=The FCC Takes the Fun Out of Everything Path=./fccgirl.pix Numb=65 # Name=Image of Fred Flinstone Path=./ffstone.pix Numb=66 # Name=Image of French Nude, by F6DEG Path=./frnchnd.pix Numb=67 # Name=Image of Fishin' Frog by Bill (WD5HRB) Path=./fshnfrg.pix Numb=68 # Name=Image of Dave Garroway by Larsson of Teletype Corporation Path=./garroway.pix Numb=69 # Name=Image of General Halftrack from Beetle Bailey by Tom (WB3FJY) Path=./genhtrk.pix Numb=70 # Name=Image of George Washington by WA6PIR Path=./george.pix Numb=71 # Name=Image of "Getting Out" Recreational Vehicle, by Al (WA7LQP) (November 23, 1974) Path=./getinout.pox Numb=72 # Name=Image of Topless Girl with Bikini Shorts Path=./girl.pix Numb=73 # Name=Image of Girl's Face Path=./girlface.pix Numb=74 # ./usenet/.names Path=./ABOUT Numb=1 |