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 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995
|
*PPD-Adobe: "4.3"
*% ==========================================================
*% Printer Description File for OKI C9500(PS)
*% Copyright 2003 Oki Data Corporation
*% Date: Jun 17, 2002 Edt: 16
*% Date: Jun 25, 2002 Edt: 16 ODA
*% ==========================================================
*% OEL Revision: 4.2 Source: /usr/cvs/esp/src/ppd/en/o/ok9500u1.ppd,v
*% ==========================================================
*% GPL $Revision$ $RCSfile$
*%
*% Note)
*% This PostScript Printer Description(PPD) file is free software; you
*% can redistribute it and/or modify it under the terms of the GNU
*% General Public License version 2 or later as published by the Free
*% Software Foundation.
*%
*% In addition to the permissions in the GNU General Public License,
*% Oki Data Corporation gives you unlimited permission to link the
*% PostScript code fragments herein into your PostScript documents to
*% form an excutable for enabling printer-specific features, and
*% distribute those combinations without any restrictions from the use
*% of this PPD file. (The General Public License restrictions do apply
*% in other respects; for example, they cover modification of the
*% file, and distribution when not merged into a PostScript document.)
*%
*% This PPD is distributed in the hope that it will be useful, but
*% WITHOUT ANY WARRANTY; without even the implied warranty of
*% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
*% General Public License for more details.
*%
*% You should have received a copy of the GNU General Public License
*% along with this PPD; see the file COPYING.
*%
*FormatVersion: "4.3"
*FileVersion: "1.6b"
*LanguageEncoding: ISOLatin1
*LanguageVersion: English
*PCFileName: "OK9500U1.PPD"
*Product: "(C9500)"
*PSVersion: "(3011.106) 33"
*Manufacturer: "Oki"
*ModelName: "OKI C9500"
*ShortNickName: "OKI C9500"
*NickName: "OKI C9500"
*% _____ Options and Constraints _____
*OpenGroup: InstallableOptions/Options Installed
*OpenUI *OKOptionTray/Available Tray: PickOne
*DefaultOKOptionTray: 0
*OKOptionTray 0/1 (Standard): ""
*OKOptionTray 1/2 (1 Optional Tray): ""
*OKOptionTray 2/3 (2 Optional Trays): ""
*OKOptionTray 3/4 (High Capacity Feeder): ""
*OKOptionTray 4/5 (High Capacity Feeder + 1 Optional Tray): ""
*?OKOptionTray: "
currentpagedevice /InputAttributes get begin
6 where {pop (4)}{ 5 where {pop (3)}{
2 where {pop (2)}{ 1 where {pop (1)}{
0 where {pop (0)}{(Unknown)}ifelse
}ifelse }ifelse
}ifelse }ifelse
end = flush"
*End
*CloseUI: *OKOptionTray
*OpenUI *OKOptionDuplex/Duplex: Boolean
*DefaultOKOptionDuplex: True
*OKOptionDuplex True/Installed: ""
*OKOptionDuplex False/Not Installed: ""
*?OKOptionDuplex: "
currentpagedevice /Duplex 2 copy known{
get (<<) cvx exec /Duplex true (>>) cvx exec setpagedevice
currentpagedevice /Duplex get {(True)}{(False)}ifelse exch
(<<) cvx exec /Duplex 3 -1 roll (>>) cvx exec setpagedevice
}{pop pop (False)}ifelse = flush"
*End
*CloseUI: *OKOptionDuplex
*% -----------------------------------
*% OKHDD: Hard Drive functions removed
*% -----------------------------------
*OpenUI *OKFinisher/Finisher: Boolean
*DefaultOKFinisher: False
*OKFinisher False/Not Installed: ""
*OKFinisher True/Installed: ""
*?OKFinisher: "
currentpagedevice /OutputAttributes 2 copy known
{
get 1 known not
}{pop pop false}ifelse
{(True)}{(False)}ifelse = flush"
*End
*CloseUI: *OKFinisher
*OpenUI *InstalledMemory/Memory Configuration: PickOne
*DefaultInstalledMemory: 192MB
*InstalledMemory 64MB/64 MB RAM: ""
*InstalledMemory 128MB/128 MB: ""
*InstalledMemory 192MB/192 MB: ""
*InstalledMemory 256MB/256 MB: ""
*InstalledMemory 320MB/320 MB: ""
*InstalledMemory 384MB/384 MB: ""
*InstalledMemory 448MB/448 MB: ""
*InstalledMemory 512MB/512 MB: ""
*InstalledMemory 576MB/576 MB: ""
*InstalledMemory 640MB/640 MB: ""
*InstalledMemory 704MB/704 MB: ""
*InstalledMemory 768MB/768 MB: ""
*InstalledMemory 832MB/832 MB: ""
*InstalledMemory 896MB/896 MB: ""
*InstalledMemory 1024MB/1024 MB: ""
*?InstalledMemory : "
currentsystemparams /InstalledRam get
1024 idiv 1024 idiv 20 string cvs print (MB) = flush"
*End
*CloseUI: *InstalledMemory
*CloseGroup: InstallableOptions
*%----PaperSize selections limit ...
*%----Tray selections-----
*UIConstraints: *OKOptionTray 0 *InputSlot Lower
*UIConstraints: *InputSlot Lower *OKOptionTray 0
*UIConstraints: *OKOptionTray 0 *InputSlot Tray3
*UIConstraints: *InputSlot Tray3 *OKOptionTray 0
*UIConstraints: *OKOptionTray 1 *InputSlot Tray3
*UIConstraints: *InputSlot Tray3 *OKOptionTray 1
*UIConstraints: *OKOptionTray 0 *InputSlot Tray4
*UIConstraints: *InputSlot Tray4 *OKOptionTray 0
*UIConstraints: *OKOptionTray 1 *InputSlot Tray4
*UIConstraints: *InputSlot Tray4 *OKOptionTray 1
*UIConstraints: *OKOptionTray 2 *InputSlot Tray4
*UIConstraints: *InputSlot Tray4 *OKOptionTray 2
*UIConstraints: *OKOptionTray 0 *InputSlot Tray5
*UIConstraints: *InputSlot Tray5 *OKOptionTray 0
*UIConstraints: *OKOptionTray 1 *InputSlot Tray5
*UIConstraints: *InputSlot Tray5 *OKOptionTray 1
*UIConstraints: *OKOptionTray 2 *InputSlot Tray5
*UIConstraints: *InputSlot Tray5 *OKOptionTray 2
*UIConstraints: *OKOptionTray 3 *InputSlot Tray5
*UIConstraints: *InputSlot Tray5 *OKOptionTray 3
*%----StandardTray selections-----
*UIConstraints: *PageSize Env9 *InputSlot Upper
*UIConstraints: *PageRegion Env9 *InputSlot Upper
*UIConstraints: *InputSlot Upper *PageSize Env9
*UIConstraints: *InputSlot Upper *PageRegion Env9
*UIConstraints: *PageSize Env10 *InputSlot Upper
*UIConstraints: *PageRegion Env10 *InputSlot Upper
*UIConstraints: *InputSlot Upper *PageSize Env10
*UIConstraints: *InputSlot Upper *PageRegion Env10
*UIConstraints: *PageSize EnvMonarch *InputSlot Upper
*UIConstraints: *PageRegion EnvMonarch *InputSlot Upper
*UIConstraints: *InputSlot Upper *PageSize EnvMonarch
*UIConstraints: *InputSlot Upper *PageRegion EnvMonarch
*UIConstraints: *PageSize EnvDL *InputSlot Upper
*UIConstraints: *PageRegion EnvDL *InputSlot Upper
*UIConstraints: *InputSlot Upper *PageSize EnvDL
*UIConstraints: *InputSlot Upper *PageRegion EnvDL
*UIConstraints: *PageSize EnvC5 *InputSlot Upper
*UIConstraints: *PageRegion EnvC5 *InputSlot Upper
*UIConstraints: *InputSlot Upper *PageSize EnvC5
*UIConstraints: *InputSlot Upper *PageRegion EnvC5
*UIConstraints: *PageSize EnvC4 *InputSlot Upper
*UIConstraints: *PageRegion EnvC4 *InputSlot Upper
*UIConstraints: *InputSlot Upper *PageSize EnvC4
*UIConstraints: *InputSlot Upper *PageRegion EnvC4
*%----2ndTray selections-----
*UIConstraints: *PageSize A6 *InputSlot Lower
*UIConstraints: *PageRegion A6 *InputSlot Lower
*UIConstraints: *InputSlot Lower *PageSize A6
*UIConstraints: *InputSlot Lower *PageRegion A6
*UIConstraints: *PageSize Env9 *InputSlot Lower
*UIConstraints: *PageRegion Env9 *InputSlot Lower
*UIConstraints: *InputSlot Lower *PageSize Env9
*UIConstraints: *InputSlot Lower *PageRegion Env9
*UIConstraints: *PageSize Env10 *InputSlot Lower
*UIConstraints: *PageRegion Env10 *InputSlot Lower
*UIConstraints: *InputSlot Lower *PageSize Env10
*UIConstraints: *InputSlot Lower *PageRegion Env10
*UIConstraints: *PageSize EnvMonarch *InputSlot Lower
*UIConstraints: *PageRegion EnvMonarch *InputSlot Lower
*UIConstraints: *InputSlot Lower *PageSize EnvMonarch
*UIConstraints: *InputSlot Lower *PageRegion EnvMonarch
*UIConstraints: *PageSize EnvDL *InputSlot Lower
*UIConstraints: *PageRegion EnvDL *InputSlot Lower
*UIConstraints: *InputSlot Lower *PageSize EnvDL
*UIConstraints: *InputSlot Lower *PageRegion EnvDL
*UIConstraints: *PageSize EnvC5 *InputSlot Lower
*UIConstraints: *PageRegion EnvC5 *InputSlot Lower
*UIConstraints: *InputSlot Lower *PageSize EnvC5
*UIConstraints: *InputSlot Lower *PageRegion EnvC5
*UIConstraints: *PageSize EnvC4 *InputSlot Lower
*UIConstraints: *PageRegion EnvC4 *InputSlot Lower
*UIConstraints: *InputSlot Lower *PageSize EnvC4
*UIConstraints: *InputSlot Lower *PageRegion EnvC4
*%----3rdTray selections-----
*UIConstraints: *PageSize A6 *InputSlot Tray3
*UIConstraints: *PageRegion A6 *InputSlot Tray3
*UIConstraints: *InputSlot Tray3 *PageSize A6
*UIConstraints: *InputSlot Tray3 *PageRegion A6
*UIConstraints: *PageSize Env9 *InputSlot Tray3
*UIConstraints: *PageRegion Env9 *InputSlot Tray3
*UIConstraints: *InputSlot Tray3 *PageSize Env9
*UIConstraints: *InputSlot Tray3 *PageRegion Env9
*UIConstraints: *PageSize Env10 *InputSlot Tray3
*UIConstraints: *PageRegion Env10 *InputSlot Tray3
*UIConstraints: *InputSlot Tray3 *PageSize Env10
*UIConstraints: *InputSlot Tray3 *PageRegion Env10
*UIConstraints: *PageSize EnvMonarch *InputSlot Tray3
*UIConstraints: *PageRegion EnvMonarch *InputSlot Tray3
*UIConstraints: *InputSlot Tray3 *PageSize EnvMonarch
*UIConstraints: *InputSlot Tray3 *PageRegion EnvMonarch
*UIConstraints: *PageSize EnvDL *InputSlot Tray3
*UIConstraints: *PageRegion EnvDL *InputSlot Tray3
*UIConstraints: *InputSlot Tray3 *PageSize EnvDL
*UIConstraints: *InputSlot Tray3 *PageRegion EnvDL
*UIConstraints: *PageSize EnvC5 *InputSlot Tray3
*UIConstraints: *PageRegion EnvC5 *InputSlot Tray3
*UIConstraints: *InputSlot Tray3 *PageSize EnvC5
*UIConstraints: *InputSlot Tray3 *PageRegion EnvC5
*UIConstraints: *PageSize EnvC4 *InputSlot Tray3
*UIConstraints: *PageRegion EnvC4 *InputSlot Tray3
*UIConstraints: *InputSlot Tray3 *PageSize EnvC4
*UIConstraints: *InputSlot Tray3 *PageRegion EnvC4
*%----4thTray selections-----
*UIConstraints: *PageSize A6 *InputSlot Tray4
*UIConstraints: *PageRegion A6 *InputSlot Tray4
*UIConstraints: *InputSlot Tray4 *PageSize A6
*UIConstraints: *InputSlot Tray4 *PageRegion A6
*UIConstraints: *PageSize Env9 *InputSlot Tray4
*UIConstraints: *PageRegion Env9 *InputSlot Tray4
*UIConstraints: *InputSlot Tray4 *PageSize Env9
*UIConstraints: *InputSlot Tray4 *PageRegion Env9
*UIConstraints: *PageSize Env10 *InputSlot Tray4
*UIConstraints: *PageRegion Env10 *InputSlot Tray4
*UIConstraints: *InputSlot Tray4 *PageSize Env10
*UIConstraints: *InputSlot Tray4 *PageRegion Env10
*UIConstraints: *PageSize EnvMonarch *InputSlot Tray4
*UIConstraints: *PageRegion EnvMonarch *InputSlot Tray4
*UIConstraints: *InputSlot Tray4 *PageSize EnvMonarch
*UIConstraints: *InputSlot Tray4 *PageRegion EnvMonarch
*UIConstraints: *PageSize EnvDL *InputSlot Tray4
*UIConstraints: *PageRegion EnvDL *InputSlot Tray4
*UIConstraints: *InputSlot Tray4 *PageSize EnvDL
*UIConstraints: *InputSlot Tray4 *PageRegion EnvDL
*UIConstraints: *PageSize EnvC5 *InputSlot Tray4
*UIConstraints: *PageRegion EnvC5 *InputSlot Tray4
*UIConstraints: *InputSlot Tray4 *PageSize EnvC5
*UIConstraints: *InputSlot Tray4 *PageRegion EnvC5
*UIConstraints: *PageSize EnvC4 *InputSlot Tray4
*UIConstraints: *PageRegion EnvC4 *InputSlot Tray4
*UIConstraints: *InputSlot Tray4 *PageSize EnvC4
*UIConstraints: *InputSlot Tray4 *PageRegion EnvC4
*%----5thTray selections-----
*UIConstraints: *PageSize A6 *InputSlot Tray5
*UIConstraints: *PageRegion A6 *InputSlot Tray5
*UIConstraints: *InputSlot Tray5 *PageSize A6
*UIConstraints: *InputSlot Tray5 *PageRegion A6
*UIConstraints: *PageSize Env9 *InputSlot Tray5
*UIConstraints: *PageRegion Env9 *InputSlot Tray5
*UIConstraints: *InputSlot Tray5 *PageSize Env9
*UIConstraints: *InputSlot Tray5 *PageRegion Env9
*UIConstraints: *PageSize Env10 *InputSlot Tray5
*UIConstraints: *PageRegion Env10 *InputSlot Tray5
*UIConstraints: *InputSlot Tray5 *PageSize Env10
*UIConstraints: *InputSlot Tray5 *PageRegion Env10
*UIConstraints: *PageSize EnvMonarch *InputSlot Tray5
*UIConstraints: *PageRegion EnvMonarch *InputSlot Tray5
*UIConstraints: *InputSlot Tray5 *PageSize EnvMonarch
*UIConstraints: *InputSlot Tray5 *PageRegion EnvMonarch
*UIConstraints: *PageSize EnvDL *InputSlot Tray5
*UIConstraints: *PageRegion EnvDL *InputSlot Tray5
*UIConstraints: *InputSlot Tray5 *PageSize EnvDL
*UIConstraints: *InputSlot Tray5 *PageRegion EnvDL
*UIConstraints: *PageSize EnvC5 *InputSlot Tray5
*UIConstraints: *PageRegion EnvC5 *InputSlot Tray5
*UIConstraints: *InputSlot Tray5 *PageSize EnvC5
*UIConstraints: *InputSlot Tray5 *PageRegion EnvC5
*UIConstraints: *PageSize EnvC4 *InputSlot Tray5
*UIConstraints: *PageRegion EnvC4 *InputSlot Tray5
*UIConstraints: *InputSlot Tray5 *PageSize EnvC4
*UIConstraints: *InputSlot Tray5 *PageRegion EnvC4
*%----Duplex selections-----
*UIConstraints: *PageSize A6 *Duplex DuplexNoTumble
*UIConstraints: *PageRegion A6 *Duplex DuplexNoTumble
*UIConstraints: *Duplex DuplexNoTumble *PageSize A6
*UIConstraints: *Duplex DuplexNoTumble *PageRegion A6
*UIConstraints: *PageSize Env9 *Duplex DuplexNoTumble
*UIConstraints: *PageRegion Env9 *Duplex DuplexNoTumble
*UIConstraints: *Duplex DuplexNoTumble *PageSize Env9
*UIConstraints: *Duplex DuplexNoTumble *PageRegion Env9
*UIConstraints: *PageSize Env10 *Duplex DuplexNoTumble
*UIConstraints: *PageRegion Env10 *Duplex DuplexNoTumble
*UIConstraints: *Duplex DuplexNoTumble *PageSize Env10
*UIConstraints: *Duplex DuplexNoTumble *PageRegion Env10
*UIConstraints: *PageSize EnvMonarch *Duplex DuplexNoTumble
*UIConstraints: *PageRegion EnvMonarch *Duplex DuplexNoTumble
*UIConstraints: *Duplex DuplexNoTumble *PageSize EnvMonarch
*UIConstraints: *Duplex DuplexNoTumble *PageRegion EnvMonarch
*UIConstraints: *PageSize EnvDL *Duplex DuplexNoTumble
*UIConstraints: *PageRegion EnvDL *Duplex DuplexNoTumble
*UIConstraints: *Duplex DuplexNoTumble *PageSize EnvDL
*UIConstraints: *Duplex DuplexNoTumble *PageRegion EnvDL
*UIConstraints: *PageSize EnvC5 *Duplex DuplexNoTumble
*UIConstraints: *PageRegion EnvC5 *Duplex DuplexNoTumble
*UIConstraints: *Duplex DuplexNoTumble *PageSize EnvC5
*UIConstraints: *Duplex DuplexNoTumble *PageRegion EnvC5
*UIConstraints: *PageSize EnvC4 *Duplex DuplexNoTumble
*UIConstraints: *PageRegion EnvC4 *Duplex DuplexNoTumble
*UIConstraints: *Duplex DuplexNoTumble *PageSize EnvC4
*UIConstraints: *Duplex DuplexNoTumble *PageRegion EnvC4
*UIConstraints: *PageSize A6 *Duplex DuplexTumble
*UIConstraints: *PageRegion A6 *Duplex DuplexTumble
*UIConstraints: *Duplex DuplexTumble *PageSize A6
*UIConstraints: *Duplex DuplexTumble *PageRegion A6
*UIConstraints: *PageSize Env9 *Duplex DuplexTumble
*UIConstraints: *PageRegion Env9 *Duplex DuplexTumble
*UIConstraints: *Duplex DuplexTumble *PageSize Env9
*UIConstraints: *Duplex DuplexTumble *PageRegion Env9
*UIConstraints: *PageSize Env10 *Duplex DuplexTumble
*UIConstraints: *PageRegion Env10 *Duplex DuplexTumble
*UIConstraints: *Duplex DuplexTumble *PageSize Env10
*UIConstraints: *Duplex DuplexTumble *PageRegion Env10
*UIConstraints: *PageSize EnvMonarch *Duplex DuplexTumble
*UIConstraints: *PageRegion EnvMonarch *Duplex DuplexTumble
*UIConstraints: *Duplex DuplexTumble *PageSize EnvMonarch
*UIConstraints: *Duplex DuplexTumble *PageRegion EnvMonarch
*UIConstraints: *PageSize EnvDL *Duplex DuplexTumble
*UIConstraints: *PageRegion EnvDL *Duplex DuplexTumble
*UIConstraints: *Duplex DuplexTumble *PageSize EnvDL
*UIConstraints: *Duplex DuplexTumble *PageRegion EnvDL
*UIConstraints: *PageSize EnvC5 *Duplex DuplexTumble
*UIConstraints: *PageRegion EnvC5 *Duplex DuplexTumble
*UIConstraints: *Duplex DuplexTumble *PageSize EnvC5
*UIConstraints: *Duplex DuplexTumble *PageRegion EnvC5
*UIConstraints: *PageSize EnvC4 *Duplex DuplexTumble
*UIConstraints: *PageRegion EnvC4 *Duplex DuplexTumble
*UIConstraints: *Duplex DuplexTumble *PageSize EnvC4
*UIConstraints: *Duplex DuplexTumble *PageRegion EnvC4
*UIConstraints: *InputSlot Transparency *Duplex DuplexTumble
*UIConstraints: *Duplex DuplexTumble *InputSlot Transparency
*UIConstraints: *InputSlot Transparency *Duplex DuplexNoTumble
*UIConstraints: *Duplex DuplexNoTumble *InputSlot Transparency
*UIConstraints: *InputSlot Labels *Duplex DuplexTumble
*UIConstraints: *Duplex DuplexTumble *InputSlot Labels
*UIConstraints: *InputSlot Labels *Duplex DuplexNoTumble
*UIConstraints: *Duplex DuplexNoTumble *InputSlot Labels
*UIConstraints: *InputSlot Glossy *Duplex DuplexTumble
*UIConstraints: *Duplex DuplexTumble *InputSlot Glossy
*UIConstraints: *InputSlot Glossy *Duplex DuplexNoTumble
*UIConstraints: *Duplex DuplexNoTumble *InputSlot Glossy
*UIConstraints: *OKMediaType GLOSSY *Duplex DuplexTumble
*UIConstraints: *Duplex DuplexTumble *OKMediaType GLOSSY
*UIConstraints: *OKMediaType GLOSSY *Duplex DuplexNoTumble
*UIConstraints: *Duplex DuplexNoTumble *OKMediaType GLOSSY
*%----Stacker(Face-Down) selections-----
*UIConstraints: *PageSize A6 *OutputBin Stacker
*UIConstraints: *PageRegion A6 *OutputBin Stacker
*UIConstraints: *OutputBin Stacker *PageSize A6
*UIConstraints: *OutputBin Stacker *PageRegion A6
*UIConstraints: *PageSize Env9 *OutputBin Stacker
*UIConstraints: *PageRegion Env9 *OutputBin Stacker
*UIConstraints: *OutputBin Stacker *PageSize Env9
*UIConstraints: *OutputBin Stacker *PageRegion Env9
*UIConstraints: *PageSize Env10 *OutputBin Stacker
*UIConstraints: *PageRegion Env10 *OutputBin Stacker
*UIConstraints: *OutputBin Stacker *PageSize Env10
*UIConstraints: *OutputBin Stacker *PageRegion Env10
*UIConstraints: *PageSize EnvMonarch *OutputBin Stacker
*UIConstraints: *PageRegion EnvMonarch *OutputBin Stacker
*UIConstraints: *OutputBin Stacker *PageSize EnvMonarch
*UIConstraints: *OutputBin Stacker *PageRegion EnvMonarch
*UIConstraints: *PageSize EnvDL *OutputBin Stacker
*UIConstraints: *PageRegion EnvDL *OutputBin Stacker
*UIConstraints: *OutputBin Stacker *PageSize EnvDL
*UIConstraints: *OutputBin Stacker *PageRegion EnvDL
*UIConstraints: *PageSize EnvC5 *OutputBin Stacker
*UIConstraints: *PageRegion EnvC5 *OutputBin Stacker
*UIConstraints: *OutputBin Stacker *PageSize EnvC5
*UIConstraints: *OutputBin Stacker *PageRegion EnvC5
*UIConstraints: *PageSize EnvC4 *OutputBin Stacker
*UIConstraints: *PageRegion EnvC4 *OutputBin Stacker
*UIConstraints: *OutputBin Stacker *PageSize EnvC4
*UIConstraints: *OutputBin Stacker *PageRegion EnvC4
*UIConstraints: *OKMediaType Labels1 *OutputBin Stacker
*UIConstraints: *OutputBin Stacker *OKMediaType Labels1
*UIConstraints: *OKMediaType Labels2 *OutputBin Stacker
*UIConstraints: *OutputBin Stacker *OKMediaType Labels2
*UIConstraints: *OKMediaType Transparency *OutputBin Stacker
*UIConstraints: *OutputBin Stacker *OKMediaType Transparency
*%----Mediatype selections limit ...
*%----Tray selections & duplex selections-----
*UIConstraints: *OKMediaType Labels1 *InputSlot Upper
*UIConstraints: *InputSlot Upper *OKMediaType Labels1
*UIConstraints: *OKMediaType Labels2 *InputSlot Upper
*UIConstraints: *InputSlot Upper *OKMediaType Labels2
*UIConstraints: *OKMediaType Labels1 *InputSlot Lower
*UIConstraints: *InputSlot Lower *OKMediaType Labels1
*UIConstraints: *OKMediaType Labels2 *InputSlot Lower
*UIConstraints: *InputSlot Lower *OKMediaType Labels2
*UIConstraints: *OKMediaType Transparency *InputSlot Lower
*UIConstraints: *InputSlot Lower *OKMediaType Transparency
*UIConstraints: *OKMediaType Labels1 *InputSlot Tray3
*UIConstraints: *InputSlot Tray3 *OKMediaType Labels1
*UIConstraints: *OKMediaType Labels2 *InputSlot Tray3
*UIConstraints: *InputSlot Tray3 *OKMediaType Labels2
*UIConstraints: *OKMediaType Transparency *InputSlot Tray3
*UIConstraints: *InputSlot Tray3 *OKMediaType Transparency
*UIConstraints: *OKMediaType Labels1 *InputSlot Tray4
*UIConstraints: *InputSlot Tray4 *OKMediaType Labels1
*UIConstraints: *OKMediaType Labels2 *InputSlot Tray4
*UIConstraints: *InputSlot Tray4 *OKMediaType Labels2
*UIConstraints: *OKMediaType Transparency *InputSlot Tray4
*UIConstraints: *InputSlot Tray4 *OKMediaType Transparency
*UIConstraints: *OKMediaType Labels1 *InputSlot Tray5
*UIConstraints: *InputSlot Tray5 *OKMediaType Labels1
*UIConstraints: *OKMediaType Labels2 *InputSlot Tray5
*UIConstraints: *InputSlot Tray5 *OKMediaType Labels2
*UIConstraints: *OKMediaType Transparency *InputSlot Tray5
*UIConstraints: *InputSlot Tray5 *OKMediaType Transparency
*UIConstraints: *OKMediaType Labels1 *Duplex DuplexNoTumble
*UIConstraints: *Duplex DuplexNoTumble *OKMediaType Labels1
*UIConstraints: *OKMediaType Labels2 *Duplex DuplexNoTumble
*UIConstraints: *Duplex DuplexNoTumble *OKMediaType Labels2
*UIConstraints: *OKMediaType Transparency *Duplex DuplexNoTumble
*UIConstraints: *Duplex DuplexNoTumble *OKMediaType Transparency
*UIConstraints: *OKMediaType Labels1 *Duplex DuplexTumble
*UIConstraints: *Duplex DuplexTumble *OKMediaType Labels1
*UIConstraints: *OKMediaType Labels2 *Duplex DuplexTumble
*UIConstraints: *Duplex DuplexTumble *OKMediaType Labels2
*UIConstraints: *OKMediaType Transparency *Duplex DuplexTumble
*UIConstraints: *Duplex DuplexTumble *OKMediaType Transparency
*%----MediaType and InputSlot(Type) selections limit
*UIConstraints: *InputSlot Plain *OKMediaType LIGHT
*UIConstraints: *OKMediaType LIGHT *InputSlot Plain
*UIConstraints: *InputSlot Plain *OKMediaType MEDIUMLIGHT
*UIConstraints: *OKMediaType MEDIUMLIGHT *InputSlot Plain
*UIConstraints: *InputSlot Plain *OKMediaType MEDIUM
*UIConstraints: *OKMediaType MEDIUM *InputSlot Plain
*UIConstraints: *InputSlot Plain *OKMediaType MEDIUMHEAVY
*UIConstraints: *OKMediaType MEDIUMHEAVY *InputSlot Plain
*UIConstraints: *InputSlot Plain *OKMediaType HEAVY
*UIConstraints: *OKMediaType HEAVY *InputSlot Plain
*UIConstraints: *InputSlot Plain *OKMediaType ULTRAHEAVY
*UIConstraints: *OKMediaType ULTRAHEAVY *InputSlot Plain
*UIConstraints: *InputSlot Plain *OKMediaType Labels1
*UIConstraints: *OKMediaType Labels1 *InputSlot Plain
*UIConstraints: *InputSlot Plain *OKMediaType Labels2
*UIConstraints: *OKMediaType Labels2 *InputSlot Plain
*UIConstraints: *InputSlot Plain *OKMediaType Transparency
*UIConstraints: *OKMediaType Transparency *InputSlot Plain
*UIConstraints: *InputSlot Plain *OKMediaType GLOSSY
*UIConstraints: *OKMediaType GLOSSY *InputSlot Plain
*UIConstraints: *InputSlot Letterhead *OKMediaType LIGHT
*UIConstraints: *OKMediaType LIGHT *InputSlot Letterhead
*UIConstraints: *InputSlot Letterhead *OKMediaType MEDIUMLIGHT
*UIConstraints: *OKMediaType MEDIUMLIGHT *InputSlot Letterhead
*UIConstraints: *InputSlot Letterhead *OKMediaType MEDIUM
*UIConstraints: *OKMediaType MEDIUM *InputSlot Letterhead
*UIConstraints: *InputSlot Letterhead *OKMediaType MEDIUMHEAVY
*UIConstraints: *OKMediaType MEDIUMHEAVY *InputSlot Letterhead
*UIConstraints: *InputSlot Letterhead *OKMediaType HEAVY
*UIConstraints: *OKMediaType HEAVY *InputSlot Letterhead
*UIConstraints: *InputSlot Letterhead *OKMediaType ULTRAHEAVY
*UIConstraints: *OKMediaType ULTRAHEAVY *InputSlot Letterhead
*UIConstraints: *InputSlot Letterhead *OKMediaType Labels1
*UIConstraints: *OKMediaType Labels1 *InputSlot Letterhead
*UIConstraints: *InputSlot Letterhead *OKMediaType Labels2
*UIConstraints: *OKMediaType Labels2 *InputSlot Letterhead
*UIConstraints: *InputSlot Letterhead *OKMediaType Transparency
*UIConstraints: *OKMediaType Transparency *InputSlot Letterhead
*UIConstraints: *InputSlot Letterhead *OKMediaType GLOSSY
*UIConstraints: *OKMediaType GLOSSY *InputSlot Letterhead
*UIConstraints: *InputSlot Transparency *OKMediaType LIGHT
*UIConstraints: *OKMediaType LIGHT *InputSlot Transparency
*UIConstraints: *InputSlot Transparency *OKMediaType MEDIUMLIGHT
*UIConstraints: *OKMediaType MEDIUMLIGHT *InputSlot Transparency
*UIConstraints: *InputSlot Transparency *OKMediaType MEDIUM
*UIConstraints: *OKMediaType MEDIUM *InputSlot Transparency
*UIConstraints: *InputSlot Transparency *OKMediaType MEDIUMHEAVY
*UIConstraints: *OKMediaType MEDIUMHEAVY *InputSlot Transparency
*UIConstraints: *InputSlot Transparency *OKMediaType HEAVY
*UIConstraints: *OKMediaType HEAVY *InputSlot Transparency
*UIConstraints: *InputSlot Transparency *OKMediaType ULTRAHEAVY
*UIConstraints: *OKMediaType ULTRAHEAVY *InputSlot Transparency
*UIConstraints: *InputSlot Transparency *OKMediaType Labels1
*UIConstraints: *OKMediaType Labels1 *InputSlot Transparency
*UIConstraints: *InputSlot Transparency *OKMediaType Labels2
*UIConstraints: *OKMediaType Labels2 *InputSlot Transparency
*UIConstraints: *InputSlot Transparency *OKMediaType Transparency
*UIConstraints: *OKMediaType Transparency *InputSlot Transparency
*UIConstraints: *InputSlot Transparency *OKMediaType GLOSSY
*UIConstraints: *OKMediaType GLOSSY *InputSlot Transparency
*UIConstraints: *InputSlot Labels *OKMediaType LIGHT
*UIConstraints: *OKMediaType LIGHT *InputSlot Labels
*UIConstraints: *InputSlot Labels *OKMediaType MEDIUMLIGHT
*UIConstraints: *OKMediaType MEDIUMLIGHT *InputSlot Labels
*UIConstraints: *InputSlot Labels *OKMediaType MEDIUM
*UIConstraints: *OKMediaType MEDIUM *InputSlot Labels
*UIConstraints: *InputSlot Labels *OKMediaType MEDIUMHEAVY
*UIConstraints: *OKMediaType MEDIUMHEAVY *InputSlot Labels
*UIConstraints: *InputSlot Labels *OKMediaType HEAVY
*UIConstraints: *OKMediaType HEAVY *InputSlot Labels
*UIConstraints: *InputSlot Labels *OKMediaType ULTRAHEAVY
*UIConstraints: *OKMediaType ULTRAHEAVY *InputSlot Labels
*UIConstraints: *InputSlot Labels *OKMediaType Labels1
*UIConstraints: *OKMediaType Labels1 *InputSlot Labels
*UIConstraints: *InputSlot Labels *OKMediaType Labels2
*UIConstraints: *OKMediaType Labels2 *InputSlot Labels
*UIConstraints: *InputSlot Labels *OKMediaType Transparency
*UIConstraints: *OKMediaType Transparency *InputSlot Labels
*UIConstraints: *InputSlot Labels *OKMediaType GLOSSY
*UIConstraints: *OKMediaType GLOSSY *InputSlot Labels
*UIConstraints: *InputSlot Bond *OKMediaType LIGHT
*UIConstraints: *OKMediaType LIGHT *InputSlot Bond
*UIConstraints: *InputSlot Bond *OKMediaType MEDIUMLIGHT
*UIConstraints: *OKMediaType MEDIUMLIGHT *InputSlot Bond
*UIConstraints: *InputSlot Bond *OKMediaType MEDIUM
*UIConstraints: *OKMediaType MEDIUM *InputSlot Bond
*UIConstraints: *InputSlot Bond *OKMediaType MEDIUMHEAVY
*UIConstraints: *OKMediaType MEDIUMHEAVY *InputSlot Bond
*UIConstraints: *InputSlot Bond *OKMediaType HEAVY
*UIConstraints: *OKMediaType HEAVY *InputSlot Bond
*UIConstraints: *InputSlot Bond *OKMediaType ULTRAHEAVY
*UIConstraints: *OKMediaType ULTRAHEAVY *InputSlot Bond
*UIConstraints: *InputSlot Bond *OKMediaType Labels1
*UIConstraints: *OKMediaType Labels1 *InputSlot Bond
*UIConstraints: *InputSlot Bond *OKMediaType Labels2
*UIConstraints: *OKMediaType Labels2 *InputSlot Bond
*UIConstraints: *InputSlot Bond *OKMediaType Transparency
*UIConstraints: *OKMediaType Transparency *InputSlot Bond
*UIConstraints: *InputSlot Bond *OKMediaType GLOSSY
*UIConstraints: *OKMediaType GLOSSY *InputSlot Bond
*UIConstraints: *InputSlot Recycled *OKMediaType LIGHT
*UIConstraints: *OKMediaType LIGHT *InputSlot Recycled
*UIConstraints: *InputSlot Recycled *OKMediaType MEDIUMLIGHT
*UIConstraints: *OKMediaType MEDIUMLIGHT *InputSlot Recycled
*UIConstraints: *InputSlot Recycled *OKMediaType MEDIUM
*UIConstraints: *OKMediaType MEDIUM *InputSlot Recycled
*UIConstraints: *InputSlot Recycled *OKMediaType MEDIUMHEAVY
*UIConstraints: *OKMediaType MEDIUMHEAVY *InputSlot Recycled
*UIConstraints: *InputSlot Recycled *OKMediaType HEAVY
*UIConstraints: *OKMediaType HEAVY *InputSlot Recycled
*UIConstraints: *InputSlot Recycled *OKMediaType ULTRAHEAVY
*UIConstraints: *OKMediaType ULTRAHEAVY *InputSlot Recycled
*UIConstraints: *InputSlot Recycled *OKMediaType Labels1
*UIConstraints: *OKMediaType Labels1 *InputSlot Recycled
*UIConstraints: *InputSlot Recycled *OKMediaType Labels2
*UIConstraints: *OKMediaType Labels2 *InputSlot Recycled
*UIConstraints: *InputSlot Recycled *OKMediaType Transparency
*UIConstraints: *OKMediaType Transparency *InputSlot Recycled
*UIConstraints: *InputSlot Recycled *OKMediaType GLOSSY
*UIConstraints: *OKMediaType GLOSSY *InputSlot Recycled
*UIConstraints: *InputSlot Cardstock *OKMediaType LIGHT
*UIConstraints: *OKMediaType LIGHT *InputSlot Cardstock
*UIConstraints: *InputSlot Cardstock *OKMediaType MEDIUMLIGHT
*UIConstraints: *OKMediaType MEDIUMLIGHT *InputSlot Cardstock
*UIConstraints: *InputSlot Cardstock *OKMediaType MEDIUM
*UIConstraints: *OKMediaType MEDIUM *InputSlot Cardstock
*UIConstraints: *InputSlot Cardstock *OKMediaType MEDIUMHEAVY
*UIConstraints: *OKMediaType MEDIUMHEAVY *InputSlot Cardstock
*UIConstraints: *InputSlot Cardstock *OKMediaType HEAVY
*UIConstraints: *OKMediaType HEAVY *InputSlot Cardstock
*UIConstraints: *InputSlot Cardstock *OKMediaType ULTRAHEAVY
*UIConstraints: *OKMediaType ULTRAHEAVY *InputSlot Cardstock
*UIConstraints: *InputSlot Cardstock *OKMediaType Labels1
*UIConstraints: *OKMediaType Labels1 *InputSlot Cardstock
*UIConstraints: *InputSlot Cardstock *OKMediaType Labels2
*UIConstraints: *OKMediaType Labels2 *InputSlot Cardstock
*UIConstraints: *InputSlot Cardstock *OKMediaType Transparency
*UIConstraints: *OKMediaType Transparency *InputSlot Cardstock
*UIConstraints: *InputSlot Cardstock *OKMediaType GLOSSY
*UIConstraints: *OKMediaType GLOSSY *InputSlot Cardstock
*UIConstraints: *InputSlot Rough *OKMediaType LIGHT
*UIConstraints: *OKMediaType LIGHT *InputSlot Rough
*UIConstraints: *InputSlot Rough *OKMediaType MEDIUMLIGHT
*UIConstraints: *OKMediaType MEDIUMLIGHT *InputSlot Rough
*UIConstraints: *InputSlot Rough *OKMediaType MEDIUM
*UIConstraints: *OKMediaType MEDIUM *InputSlot Rough
*UIConstraints: *InputSlot Rough *OKMediaType MEDIUMHEAVY
*UIConstraints: *OKMediaType MEDIUMHEAVY *InputSlot Rough
*UIConstraints: *InputSlot Rough *OKMediaType HEAVY
*UIConstraints: *OKMediaType HEAVY *InputSlot Rough
*UIConstraints: *InputSlot Rough *OKMediaType ULTRAHEAVY
*UIConstraints: *OKMediaType ULTRAHEAVY *InputSlot Rough
*UIConstraints: *InputSlot Rough *OKMediaType Labels1
*UIConstraints: *OKMediaType Labels1 *InputSlot Rough
*UIConstraints: *InputSlot Rough *OKMediaType Labels2
*UIConstraints: *OKMediaType Labels2 *InputSlot Rough
*UIConstraints: *InputSlot Rough *OKMediaType Transparency
*UIConstraints: *OKMediaType Transparency *InputSlot Rough
*UIConstraints: *InputSlot Rough *OKMediaType GLOSSY
*UIConstraints: *OKMediaType GLOSSY *InputSlot Rough
*UIConstraints: *InputSlot Glossy *OKMediaType LIGHT
*UIConstraints: *OKMediaType LIGHT *InputSlot Glossy
*UIConstraints: *InputSlot Glossy *OKMediaType MEDIUMLIGHT
*UIConstraints: *OKMediaType MEDIUMLIGHT *InputSlot Glossy
*UIConstraints: *InputSlot Glossy *OKMediaType MEDIUM
*UIConstraints: *OKMediaType MEDIUM *InputSlot Glossy
*UIConstraints: *InputSlot Glossy *OKMediaType MEDIUMHEAVY
*UIConstraints: *OKMediaType MEDIUMHEAVY *InputSlot Glossy
*UIConstraints: *InputSlot Glossy *OKMediaType HEAVY
*UIConstraints: *OKMediaType HEAVY *InputSlot Glossy
*UIConstraints: *InputSlot Glossy *OKMediaType ULTRAHEAVY
*UIConstraints: *OKMediaType ULTRAHEAVY *InputSlot Glossy
*UIConstraints: *InputSlot Glossy *OKMediaType Labels1
*UIConstraints: *OKMediaType Labels1 *InputSlot Glossy
*UIConstraints: *InputSlot Glossy *OKMediaType Labels2
*UIConstraints: *OKMediaType Labels2 *InputSlot Glossy
*UIConstraints: *InputSlot Glossy *OKMediaType Transparency
*UIConstraints: *OKMediaType Transparency *InputSlot Glossy
*UIConstraints: *InputSlot Glossy *OKMediaType GLOSSY
*UIConstraints: *OKMediaType GLOSSY *InputSlot Glossy
*UIConstraints: *PageSize Env9 *OKMediaType LIGHT
*UIConstraints: *PageRegion Env9 *OKMediaType LIGHT
*UIConstraints: *OKMediaType LIGHT *PageSize Env9
*UIConstraints: *OKMediaType LIGHT *PageRegion Env9
*UIConstraints: *PageSize Env9 *OKMediaType MEDIUMLIGHT
*UIConstraints: *PageRegion Env9 *OKMediaType MEDIUMLIGHT
*UIConstraints: *OKMediaType MEDIUMLIGHT *PageSize Env9
*UIConstraints: *OKMediaType MEDIUMLIGHT *PageRegion Env9
*UIConstraints: *PageSize Env9 *OKMediaType MEDIUM
*UIConstraints: *PageRegion Env9 *OKMediaType MEDIUM
*UIConstraints: *OKMediaType MEDIUM *PageSize Env9
*UIConstraints: *OKMediaType MEDIUM *PageRegion Env9
*UIConstraints: *PageSize Env9 *OKMediaType MEDIUMHEAVY
*UIConstraints: *PageRegion Env9 *OKMediaType MEDIUMHEAVY
*UIConstraints: *OKMediaType MEDIUMHEAVY *PageSize Env9
*UIConstraints: *OKMediaType MEDIUMHEAVY *PageRegion Env9
*UIConstraints: *PageSize Env9 *OKMediaType HEAVY
*UIConstraints: *PageRegion Env9 *OKMediaType HEAVY
*UIConstraints: *OKMediaType HEAVY *PageSize Env9
*UIConstraints: *OKMediaType HEAVY *PageRegion Env9
*UIConstraints: *PageSize Env9 *OKMediaType ULTRAHEAVY
*UIConstraints: *PageRegion Env9 *OKMediaType ULTRAHEAVY
*UIConstraints: *OKMediaType ULTRAHEAVY *PageSize Env9
*UIConstraints: *OKMediaType ULTRAHEAVY *PageRegion Env9
*UIConstraints: *PageSize Env9 *OKMediaType Labels1
*UIConstraints: *PageRegion Env9 *OKMediaType Labels1
*UIConstraints: *OKMediaType Labels1 *PageSize Env9
*UIConstraints: *OKMediaType Labels1 *PageRegion Env9
*UIConstraints: *PageSize Env9 *OKMediaType Labels2
*UIConstraints: *PageRegion Env9 *OKMediaType Labels2
*UIConstraints: *OKMediaType Labels2 *PageSize Env9
*UIConstraints: *OKMediaType Labels2 *PageRegion Env9
*UIConstraints: *PageSize Env9 *OKMediaType Transparency
*UIConstraints: *PageRegion Env9 *OKMediaType Transparency
*UIConstraints: *OKMediaType Transparency *PageSize Env9
*UIConstraints: *OKMediaType Transparency *PageRegion Env9
*UIConstraints: *PageSize Env9 *OKMediaType GLOSSY
*UIConstraints: *PageRegion Env9 *OKMediaType GLOSSY
*UIConstraints: *OKMediaType GLOSSY *PageSize Env9
*UIConstraints: *OKMediaType GLOSSY *PageRegion Env9
*UIConstraints: *PageSize Env9 *InputSlot Plain
*UIConstraints: *PageRegion Env9 *InputSlot Plain
*UIConstraints: *InputSlot Plain *PageSize Env9
*UIConstraints: *InputSlot Plain *PageRegion Env9
*UIConstraints: *PageSize Env9 *InputSlot Letterhead
*UIConstraints: *PageRegion Env9 *InputSlot Letterhead
*UIConstraints: *InputSlot Letterhead *PageSize Env9
*UIConstraints: *InputSlot Letterhead *PageRegion Env9
*UIConstraints: *PageSize Env9 *InputSlot Transparency
*UIConstraints: *PageRegion Env9 *InputSlot Transparency
*UIConstraints: *InputSlot Transparency *PageSize Env9
*UIConstraints: *InputSlot Transparency *PageRegion Env9
*UIConstraints: *PageSize Env9 *InputSlot Labels
*UIConstraints: *PageRegion Env9 *InputSlot Labels
*UIConstraints: *InputSlot Labels *PageSize Env9
*UIConstraints: *InputSlot Labels *PageRegion Env9
*UIConstraints: *PageSize Env9 *InputSlot Bond
*UIConstraints: *PageRegion Env9 *InputSlot Bond
*UIConstraints: *InputSlot Bond *PageSize Env9
*UIConstraints: *InputSlot Bond *PageRegion Env9
*UIConstraints: *PageSize Env9 *InputSlot Recycled
*UIConstraints: *PageRegion Env9 *InputSlot Recycled
*UIConstraints: *InputSlot Recycled *PageSize Env9
*UIConstraints: *InputSlot Recycled *PageRegion Env9
*UIConstraints: *PageSize Env9 *InputSlot Cardstock
*UIConstraints: *PageRegion Env9 *InputSlot Cardstock
*UIConstraints: *InputSlot Cardstock *PageSize Env9
*UIConstraints: *InputSlot Cardstock *PageRegion Env9
*UIConstraints: *PageSize Env9 *InputSlot Rough
*UIConstraints: *PageRegion Env9 *InputSlot Rough
*UIConstraints: *InputSlot Rough *PageSize Env9
*UIConstraints: *InputSlot Rough *PageRegion Env9
*UIConstraints: *PageSize Env9 *InputSlot Glossy
*UIConstraints: *PageRegion Env9 *InputSlot Glossy
*UIConstraints: *InputSlot Glossy *PageSize Env9
*UIConstraints: *InputSlot Glossy *PageRegion Env9
*UIConstraints: *PageSize Env10 *OKMediaType LIGHT
*UIConstraints: *PageRegion Env10 *OKMediaType LIGHT
*UIConstraints: *OKMediaType LIGHT *PageSize Env10
*UIConstraints: *OKMediaType LIGHT *PageRegion Env10
*UIConstraints: *PageSize Env10 *OKMediaType MEDIUMLIGHT
*UIConstraints: *PageRegion Env10 *OKMediaType MEDIUMLIGHT
*UIConstraints: *OKMediaType MEDIUMLIGHT *PageSize Env10
*UIConstraints: *OKMediaType MEDIUMLIGHT *PageRegion Env10
*UIConstraints: *PageSize Env10 *OKMediaType MEDIUM
*UIConstraints: *PageRegion Env10 *OKMediaType MEDIUM
*UIConstraints: *OKMediaType MEDIUM *PageSize Env10
*UIConstraints: *OKMediaType MEDIUM *PageRegion Env10
*UIConstraints: *PageSize Env10 *OKMediaType MEDIUMHEAVY
*UIConstraints: *PageRegion Env10 *OKMediaType MEDIUMHEAVY
*UIConstraints: *OKMediaType MEDIUMHEAVY *PageSize Env10
*UIConstraints: *OKMediaType MEDIUMHEAVY *PageRegion Env10
*UIConstraints: *PageSize Env10 *OKMediaType HEAVY
*UIConstraints: *PageRegion Env10 *OKMediaType HEAVY
*UIConstraints: *OKMediaType HEAVY *PageSize Env10
*UIConstraints: *OKMediaType HEAVY *PageRegion Env10
*UIConstraints: *PageSize Env10 *OKMediaType ULTRAHEAVY
*UIConstraints: *PageRegion Env10 *OKMediaType ULTRAHEAVY
*UIConstraints: *OKMediaType ULTRAHEAVY *PageSize Env10
*UIConstraints: *OKMediaType ULTRAHEAVY *PageRegion Env10
*UIConstraints: *PageSize Env10 *OKMediaType Labels1
*UIConstraints: *PageRegion Env10 *OKMediaType Labels1
*UIConstraints: *OKMediaType Labels1 *PageSize Env10
*UIConstraints: *OKMediaType Labels1 *PageRegion Env10
*UIConstraints: *PageSize Env10 *OKMediaType Labels2
*UIConstraints: *PageRegion Env10 *OKMediaType Labels2
*UIConstraints: *OKMediaType Labels2 *PageSize Env10
*UIConstraints: *OKMediaType Labels2 *PageRegion Env10
*UIConstraints: *PageSize Env10 *OKMediaType Transparency
*UIConstraints: *PageRegion Env10 *OKMediaType Transparency
*UIConstraints: *OKMediaType Transparency *PageSize Env10
*UIConstraints: *OKMediaType Transparency *PageRegion Env10
*UIConstraints: *PageSize Env10 *OKMediaType GLOSSY
*UIConstraints: *PageRegion Env10 *OKMediaType GLOSSY
*UIConstraints: *OKMediaType GLOSSY *PageSize Env10
*UIConstraints: *OKMediaType GLOSSY *PageRegion Env10
*UIConstraints: *PageSize Env10 *InputSlot Plain
*UIConstraints: *PageRegion Env10 *InputSlot Plain
*UIConstraints: *InputSlot Plain *PageSize Env10
*UIConstraints: *InputSlot Plain *PageRegion Env10
*UIConstraints: *PageSize Env10 *InputSlot Letterhead
*UIConstraints: *PageRegion Env10 *InputSlot Letterhead
*UIConstraints: *InputSlot Letterhead *PageSize Env10
*UIConstraints: *InputSlot Letterhead *PageRegion Env10
*UIConstraints: *PageSize Env10 *InputSlot Transparency
*UIConstraints: *PageRegion Env10 *InputSlot Transparency
*UIConstraints: *InputSlot Transparency *PageSize Env10
*UIConstraints: *InputSlot Transparency *PageRegion Env10
*UIConstraints: *PageSize Env10 *InputSlot Labels
*UIConstraints: *PageRegion Env10 *InputSlot Labels
*UIConstraints: *InputSlot Labels *PageSize Env10
*UIConstraints: *InputSlot Labels *PageRegion Env10
*UIConstraints: *PageSize Env10 *InputSlot Bond
*UIConstraints: *PageRegion Env10 *InputSlot Bond
*UIConstraints: *InputSlot Bond *PageSize Env10
*UIConstraints: *InputSlot Bond *PageRegion Env10
*UIConstraints: *PageSize Env10 *InputSlot Recycled
*UIConstraints: *PageRegion Env10 *InputSlot Recycled
*UIConstraints: *InputSlot Recycled *PageSize Env10
*UIConstraints: *InputSlot Recycled *PageRegion Env10
*UIConstraints: *PageSize Env10 *InputSlot Cardstock
*UIConstraints: *PageRegion Env10 *InputSlot Cardstock
*UIConstraints: *InputSlot Cardstock *PageSize Env10
*UIConstraints: *InputSlot Cardstock *PageRegion Env10
*UIConstraints: *PageSize Env10 *InputSlot Rough
*UIConstraints: *PageRegion Env10 *InputSlot Rough
*UIConstraints: *InputSlot Rough *PageSize Env10
*UIConstraints: *InputSlot Rough *PageRegion Env10
*UIConstraints: *PageSize Env10 *InputSlot Glossy
*UIConstraints: *PageRegion Env10 *InputSlot Glossy
*UIConstraints: *InputSlot Glossy *PageSize Env10
*UIConstraints: *InputSlot Glossy *PageRegion Env10
*UIConstraints: *PageSize EnvMonarch *OKMediaType LIGHT
*UIConstraints: *PageRegion EnvMonarch *OKMediaType LIGHT
*UIConstraints: *OKMediaType LIGHT *PageSize EnvMonarch
*UIConstraints: *OKMediaType LIGHT *PageRegion EnvMonarch
*UIConstraints: *PageSize EnvMonarch *OKMediaType MEDIUMLIGHT
*UIConstraints: *PageRegion EnvMonarch *OKMediaType MEDIUMLIGHT
*UIConstraints: *OKMediaType MEDIUMLIGHT *PageSize EnvMonarch
*UIConstraints: *OKMediaType MEDIUMLIGHT *PageRegion EnvMonarch
*UIConstraints: *PageSize EnvMonarch *OKMediaType MEDIUM
*UIConstraints: *PageRegion EnvMonarch *OKMediaType MEDIUM
*UIConstraints: *OKMediaType MEDIUM *PageSize EnvMonarch
*UIConstraints: *OKMediaType MEDIUM *PageRegion EnvMonarch
*UIConstraints: *PageSize EnvMonarch *OKMediaType MEDIUMHEAVY
*UIConstraints: *PageRegion EnvMonarch *OKMediaType MEDIUMHEAVY
*UIConstraints: *OKMediaType MEDIUMHEAVY *PageSize EnvMonarch
*UIConstraints: *OKMediaType MEDIUMHEAVY *PageRegion EnvMonarch
*UIConstraints: *PageSize EnvMonarch *OKMediaType HEAVY
*UIConstraints: *PageRegion EnvMonarch *OKMediaType HEAVY
*UIConstraints: *OKMediaType HEAVY *PageSize EnvMonarch
*UIConstraints: *OKMediaType HEAVY *PageRegion EnvMonarch
*UIConstraints: *PageSize EnvMonarch *OKMediaType ULTRAHEAVY
*UIConstraints: *PageRegion EnvMonarch *OKMediaType ULTRAHEAVY
*UIConstraints: *OKMediaType ULTRAHEAVY *PageSize EnvMonarch
*UIConstraints: *OKMediaType ULTRAHEAVY *PageRegion EnvMonarch
*UIConstraints: *PageSize EnvMonarch *OKMediaType Labels1
*UIConstraints: *PageRegion EnvMonarch *OKMediaType Labels1
*UIConstraints: *OKMediaType Labels1 *PageSize EnvMonarch
*UIConstraints: *OKMediaType Labels1 *PageRegion EnvMonarch
*UIConstraints: *PageSize EnvMonarch *OKMediaType Labels2
*UIConstraints: *PageRegion EnvMonarch *OKMediaType Labels2
*UIConstraints: *OKMediaType Labels2 *PageSize EnvMonarch
*UIConstraints: *OKMediaType Labels2 *PageRegion EnvMonarch
*UIConstraints: *PageSize EnvMonarch *OKMediaType Transparency
*UIConstraints: *PageRegion EnvMonarch *OKMediaType Transparency
*UIConstraints: *OKMediaType Transparency *PageSize EnvMonarch
*UIConstraints: *OKMediaType Transparency *PageRegion EnvMonarch
*UIConstraints: *PageSize EnvMonarch *OKMediaType GLOSSY
*UIConstraints: *PageRegion EnvMonarch *OKMediaType GLOSSY
*UIConstraints: *OKMediaType GLOSSY *PageSize EnvMonarch
*UIConstraints: *OKMediaType GLOSSY *PageRegion EnvMonarch
*UIConstraints: *PageSize EnvMonarch *InputSlot Plain
*UIConstraints: *PageRegion EnvMonarch *InputSlot Plain
*UIConstraints: *InputSlot Plain *PageSize EnvMonarch
*UIConstraints: *InputSlot Plain *PageRegion EnvMonarch
*UIConstraints: *PageSize EnvMonarch *InputSlot Letterhead
*UIConstraints: *PageRegion EnvMonarch *InputSlot Letterhead
*UIConstraints: *InputSlot Letterhead *PageSize EnvMonarch
*UIConstraints: *InputSlot Letterhead *PageRegion EnvMonarch
*UIConstraints: *PageSize EnvMonarch *InputSlot Transparency
*UIConstraints: *PageRegion EnvMonarch *InputSlot Transparency
*UIConstraints: *InputSlot Transparency *PageSize EnvMonarch
*UIConstraints: *InputSlot Transparency *PageRegion EnvMonarch
*UIConstraints: *PageSize EnvMonarch *InputSlot Labels
*UIConstraints: *PageRegion EnvMonarch *InputSlot Labels
*UIConstraints: *InputSlot Labels *PageSize EnvMonarch
*UIConstraints: *InputSlot Labels *PageRegion EnvMonarch
*UIConstraints: *PageSize EnvMonarch *InputSlot Bond
*UIConstraints: *PageRegion EnvMonarch *InputSlot Bond
*UIConstraints: *InputSlot Bond *PageSize EnvMonarch
*UIConstraints: *InputSlot Bond *PageRegion EnvMonarch
*UIConstraints: *PageSize EnvMonarch *InputSlot Recycled
*UIConstraints: *PageRegion EnvMonarch *InputSlot Recycled
*UIConstraints: *InputSlot Recycled *PageSize EnvMonarch
*UIConstraints: *InputSlot Recycled *PageRegion EnvMonarch
*UIConstraints: *PageSize EnvMonarch *InputSlot Cardstock
*UIConstraints: *PageRegion EnvMonarch *InputSlot Cardstock
*UIConstraints: *InputSlot Cardstock *PageSize EnvMonarch
*UIConstraints: *InputSlot Cardstock *PageRegion EnvMonarch
*UIConstraints: *PageSize EnvMonarch *InputSlot Rough
*UIConstraints: *PageRegion EnvMonarch *InputSlot Rough
*UIConstraints: *InputSlot Rough *PageSize EnvMonarch
*UIConstraints: *InputSlot Rough *PageRegion EnvMonarch
*UIConstraints: *PageSize EnvMonarch *InputSlot Glossy
*UIConstraints: *PageRegion EnvMonarch *InputSlot Glossy
*UIConstraints: *InputSlot Glossy *PageSize EnvMonarch
*UIConstraints: *InputSlot Glossy *PageRegion EnvMonarch
*UIConstraints: *PageSize EnvDL *OKMediaType LIGHT
*UIConstraints: *PageRegion EnvDL *OKMediaType LIGHT
*UIConstraints: *OKMediaType LIGHT *PageSize EnvDL
*UIConstraints: *OKMediaType LIGHT *PageRegion EnvDL
*UIConstraints: *PageSize EnvDL *OKMediaType MEDIUMLIGHT
*UIConstraints: *PageRegion EnvDL *OKMediaType MEDIUMLIGHT
*UIConstraints: *OKMediaType MEDIUMLIGHT *PageSize EnvDL
*UIConstraints: *OKMediaType MEDIUMLIGHT *PageRegion EnvDL
*UIConstraints: *PageSize EnvDL *OKMediaType MEDIUM
*UIConstraints: *PageRegion EnvDL *OKMediaType MEDIUM
*UIConstraints: *OKMediaType MEDIUM *PageSize EnvDL
*UIConstraints: *OKMediaType MEDIUM *PageRegion EnvDL
*UIConstraints: *PageSize EnvDL *OKMediaType MEDIUMHEAVY
*UIConstraints: *PageRegion EnvDL *OKMediaType MEDIUMHEAVY
*UIConstraints: *OKMediaType MEDIUMHEAVY *PageSize EnvDL
*UIConstraints: *OKMediaType MEDIUMHEAVY *PageRegion EnvDL
*UIConstraints: *PageSize EnvDL *OKMediaType HEAVY
*UIConstraints: *PageRegion EnvDL *OKMediaType HEAVY
*UIConstraints: *OKMediaType HEAVY *PageSize EnvDL
*UIConstraints: *OKMediaType HEAVY *PageRegion EnvDL
*UIConstraints: *PageSize EnvDL *OKMediaType ULTRAHEAVY
*UIConstraints: *PageRegion EnvDL *OKMediaType ULTRAHEAVY
*UIConstraints: *OKMediaType ULTRAHEAVY *PageSize EnvDL
*UIConstraints: *OKMediaType ULTRAHEAVY *PageRegion EnvDL
*UIConstraints: *PageSize EnvDL *OKMediaType Labels1
*UIConstraints: *PageRegion EnvDL *OKMediaType Labels1
*UIConstraints: *OKMediaType Labels1 *PageSize EnvDL
*UIConstraints: *OKMediaType Labels1 *PageRegion EnvDL
*UIConstraints: *PageSize EnvDL *OKMediaType Labels2
*UIConstraints: *PageRegion EnvDL *OKMediaType Labels2
*UIConstraints: *OKMediaType Labels2 *PageSize EnvDL
*UIConstraints: *OKMediaType Labels2 *PageRegion EnvDL
*UIConstraints: *PageSize EnvDL *OKMediaType Transparency
*UIConstraints: *PageRegion EnvDL *OKMediaType Transparency
*UIConstraints: *OKMediaType Transparency *PageSize EnvDL
*UIConstraints: *OKMediaType Transparency *PageRegion EnvDL
*UIConstraints: *PageSize EnvDL *OKMediaType GLOSSY
*UIConstraints: *PageRegion EnvDL *OKMediaType GLOSSY
*UIConstraints: *OKMediaType GLOSSY *PageSize EnvDL
*UIConstraints: *OKMediaType GLOSSY *PageRegion EnvDL
*UIConstraints: *PageSize EnvDL *InputSlot Plain
*UIConstraints: *PageRegion EnvDL *InputSlot Plain
*UIConstraints: *InputSlot Plain *PageSize EnvDL
*UIConstraints: *InputSlot Plain *PageRegion EnvDL
*UIConstraints: *PageSize EnvDL *InputSlot Letterhead
*UIConstraints: *PageRegion EnvDL *InputSlot Letterhead
*UIConstraints: *InputSlot Letterhead *PageSize EnvDL
*UIConstraints: *InputSlot Letterhead *PageRegion EnvDL
*UIConstraints: *PageSize EnvDL *InputSlot Transparency
*UIConstraints: *PageRegion EnvDL *InputSlot Transparency
*UIConstraints: *InputSlot Transparency *PageSize EnvDL
*UIConstraints: *InputSlot Transparency *PageRegion EnvDL
*UIConstraints: *PageSize EnvDL *InputSlot Labels
*UIConstraints: *PageRegion EnvDL *InputSlot Labels
*UIConstraints: *InputSlot Labels *PageSize EnvDL
*UIConstraints: *InputSlot Labels *PageRegion EnvDL
*UIConstraints: *PageSize EnvDL *InputSlot Bond
*UIConstraints: *PageRegion EnvDL *InputSlot Bond
*UIConstraints: *InputSlot Bond *PageSize EnvDL
*UIConstraints: *InputSlot Bond *PageRegion EnvDL
*UIConstraints: *PageSize EnvDL *InputSlot Recycled
*UIConstraints: *PageRegion EnvDL *InputSlot Recycled
*UIConstraints: *InputSlot Recycled *PageSize EnvDL
*UIConstraints: *InputSlot Recycled *PageRegion EnvDL
*UIConstraints: *PageSize EnvDL *InputSlot Cardstock
*UIConstraints: *PageRegion EnvDL *InputSlot Cardstock
*UIConstraints: *InputSlot Cardstock *PageSize EnvDL
*UIConstraints: *InputSlot Cardstock *PageRegion EnvDL
*UIConstraints: *PageSize EnvDL *InputSlot Rough
*UIConstraints: *PageRegion EnvDL *InputSlot Rough
*UIConstraints: *InputSlot Rough *PageSize EnvDL
*UIConstraints: *InputSlot Rough *PageRegion EnvDL
*UIConstraints: *PageSize EnvDL *InputSlot Glossy
*UIConstraints: *PageRegion EnvDL *InputSlot Glossy
*UIConstraints: *InputSlot Glossy *PageSize EnvDL
*UIConstraints: *InputSlot Glossy *PageRegion EnvDL
*UIConstraints: *PageSize EnvC5 *OKMediaType LIGHT
*UIConstraints: *PageRegion EnvC5 *OKMediaType LIGHT
*UIConstraints: *OKMediaType LIGHT *PageSize EnvC5
*UIConstraints: *OKMediaType LIGHT *PageRegion EnvC5
*UIConstraints: *PageSize EnvC5 *OKMediaType MEDIUMLIGHT
*UIConstraints: *PageRegion EnvC5 *OKMediaType MEDIUMLIGHT
*UIConstraints: *OKMediaType MEDIUMLIGHT *PageSize EnvC5
*UIConstraints: *OKMediaType MEDIUMLIGHT *PageRegion EnvC5
*UIConstraints: *PageSize EnvC5 *OKMediaType MEDIUM
*UIConstraints: *PageRegion EnvC5 *OKMediaType MEDIUM
*UIConstraints: *OKMediaType MEDIUM *PageSize EnvC5
*UIConstraints: *OKMediaType MEDIUM *PageRegion EnvC5
*UIConstraints: *PageSize EnvC5 *OKMediaType MEDIUMHEAVY
*UIConstraints: *PageRegion EnvC5 *OKMediaType MEDIUMHEAVY
*UIConstraints: *OKMediaType MEDIUMHEAVY *PageSize EnvC5
*UIConstraints: *OKMediaType MEDIUMHEAVY *PageRegion EnvC5
*UIConstraints: *PageSize EnvC5 *OKMediaType HEAVY
*UIConstraints: *PageRegion EnvC5 *OKMediaType HEAVY
*UIConstraints: *OKMediaType HEAVY *PageSize EnvC5
*UIConstraints: *OKMediaType HEAVY *PageRegion EnvC5
*UIConstraints: *PageSize EnvC5 *OKMediaType ULTRAHEAVY
*UIConstraints: *PageRegion EnvC5 *OKMediaType ULTRAHEAVY
*UIConstraints: *OKMediaType ULTRAHEAVY *PageSize EnvC5
*UIConstraints: *OKMediaType ULTRAHEAVY *PageRegion EnvC5
*UIConstraints: *PageSize EnvC5 *OKMediaType Labels1
*UIConstraints: *PageRegion EnvC5 *OKMediaType Labels1
*UIConstraints: *OKMediaType Labels1 *PageSize EnvC5
*UIConstraints: *OKMediaType Labels1 *PageRegion EnvC5
*UIConstraints: *PageSize EnvC5 *OKMediaType Labels2
*UIConstraints: *PageRegion EnvC5 *OKMediaType Labels2
*UIConstraints: *OKMediaType Labels2 *PageSize EnvC5
*UIConstraints: *OKMediaType Labels2 *PageRegion EnvC5
*UIConstraints: *PageSize EnvC5 *OKMediaType Transparency
*UIConstraints: *PageRegion EnvC5 *OKMediaType Transparency
*UIConstraints: *OKMediaType Transparency *PageSize EnvC5
*UIConstraints: *OKMediaType Transparency *PageRegion EnvC5
*UIConstraints: *PageSize EnvC5 *OKMediaType GLOSSY
*UIConstraints: *PageRegion EnvC5 *OKMediaType GLOSSY
*UIConstraints: *OKMediaType GLOSSY *PageSize EnvC5
*UIConstraints: *OKMediaType GLOSSY *PageRegion EnvC5
*UIConstraints: *PageSize EnvC5 *InputSlot Plain
*UIConstraints: *PageRegion EnvC5 *InputSlot Plain
*UIConstraints: *InputSlot Plain *PageSize EnvC5
*UIConstraints: *InputSlot Plain *PageRegion EnvC5
*UIConstraints: *PageSize EnvC5 *InputSlot Letterhead
*UIConstraints: *PageRegion EnvC5 *InputSlot Letterhead
*UIConstraints: *InputSlot Letterhead *PageSize EnvC5
*UIConstraints: *InputSlot Letterhead *PageRegion EnvC5
*UIConstraints: *PageSize EnvC5 *InputSlot Transparency
*UIConstraints: *PageRegion EnvC5 *InputSlot Transparency
*UIConstraints: *InputSlot Transparency *PageSize EnvC5
*UIConstraints: *InputSlot Transparency *PageRegion EnvC5
*UIConstraints: *PageSize EnvC5 *InputSlot Labels
*UIConstraints: *PageRegion EnvC5 *InputSlot Labels
*UIConstraints: *InputSlot Labels *PageSize EnvC5
*UIConstraints: *InputSlot Labels *PageRegion EnvC5
*UIConstraints: *PageSize EnvC5 *InputSlot Bond
*UIConstraints: *PageRegion EnvC5 *InputSlot Bond
*UIConstraints: *InputSlot Bond *PageSize EnvC5
*UIConstraints: *InputSlot Bond *PageRegion EnvC5
*UIConstraints: *PageSize EnvC5 *InputSlot Recycled
*UIConstraints: *PageRegion EnvC5 *InputSlot Recycled
*UIConstraints: *InputSlot Recycled *PageSize EnvC5
*UIConstraints: *InputSlot Recycled *PageRegion EnvC5
*UIConstraints: *PageSize EnvC5 *InputSlot Cardstock
*UIConstraints: *PageRegion EnvC5 *InputSlot Cardstock
*UIConstraints: *InputSlot Cardstock *PageSize EnvC5
*UIConstraints: *InputSlot Cardstock *PageRegion EnvC5
*UIConstraints: *PageSize EnvC5 *InputSlot Rough
*UIConstraints: *PageRegion EnvC5 *InputSlot Rough
*UIConstraints: *InputSlot Rough *PageSize EnvC5
*UIConstraints: *InputSlot Rough *PageRegion EnvC5
*UIConstraints: *PageSize EnvC5 *InputSlot Glossy
*UIConstraints: *PageRegion EnvC5 *InputSlot Glossy
*UIConstraints: *InputSlot Glossy *PageSize EnvC5
*UIConstraints: *InputSlot Glossy *PageRegion EnvC5
*UIConstraints: *PageSize EnvC4 *OKMediaType LIGHT
*UIConstraints: *PageRegion EnvC4 *OKMediaType LIGHT
*UIConstraints: *OKMediaType LIGHT *PageSize EnvC4
*UIConstraints: *OKMediaType LIGHT *PageRegion EnvC4
*UIConstraints: *PageSize EnvC4 *OKMediaType MEDIUMLIGHT
*UIConstraints: *PageRegion EnvC4 *OKMediaType MEDIUMLIGHT
*UIConstraints: *OKMediaType MEDIUMLIGHT *PageSize EnvC4
*UIConstraints: *OKMediaType MEDIUMLIGHT *PageRegion EnvC4
*UIConstraints: *PageSize EnvC4 *OKMediaType MEDIUM
*UIConstraints: *PageRegion EnvC4 *OKMediaType MEDIUM
*UIConstraints: *OKMediaType MEDIUM *PageSize EnvC4
*UIConstraints: *OKMediaType MEDIUM *PageRegion EnvC4
*UIConstraints: *PageSize EnvC4 *OKMediaType MEDIUMHEAVY
*UIConstraints: *PageRegion EnvC4 *OKMediaType MEDIUMHEAVY
*UIConstraints: *OKMediaType MEDIUMHEAVY *PageSize EnvC4
*UIConstraints: *OKMediaType MEDIUMHEAVY *PageRegion EnvC4
*UIConstraints: *PageSize EnvC4 *OKMediaType HEAVY
*UIConstraints: *PageRegion EnvC4 *OKMediaType HEAVY
*UIConstraints: *OKMediaType HEAVY *PageSize EnvC4
*UIConstraints: *OKMediaType HEAVY *PageRegion EnvC4
*UIConstraints: *PageSize EnvC4 *OKMediaType ULTRAHEAVY
*UIConstraints: *PageRegion EnvC4 *OKMediaType ULTRAHEAVY
*UIConstraints: *OKMediaType ULTRAHEAVY *PageSize EnvC4
*UIConstraints: *OKMediaType ULTRAHEAVY *PageRegion EnvC4
*UIConstraints: *PageSize EnvC4 *OKMediaType Labels1
*UIConstraints: *PageRegion EnvC4 *OKMediaType Labels1
*UIConstraints: *OKMediaType Labels1 *PageSize EnvC4
*UIConstraints: *OKMediaType Labels1 *PageRegion EnvC4
*UIConstraints: *PageSize EnvC4 *OKMediaType Labels2
*UIConstraints: *PageRegion EnvC4 *OKMediaType Labels2
*UIConstraints: *OKMediaType Labels2 *PageSize EnvC4
*UIConstraints: *OKMediaType Labels2 *PageRegion EnvC4
*UIConstraints: *PageSize EnvC4 *OKMediaType Transparency
*UIConstraints: *PageRegion EnvC4 *OKMediaType Transparency
*UIConstraints: *OKMediaType Transparency *PageSize EnvC4
*UIConstraints: *OKMediaType Transparency *PageRegion EnvC4
*UIConstraints: *PageSize EnvC4 *OKMediaType GLOSSY
*UIConstraints: *PageRegion EnvC4 *OKMediaType GLOSSY
*UIConstraints: *OKMediaType GLOSSY *PageSize EnvC4
*UIConstraints: *OKMediaType GLOSSY *PageRegion EnvC4
*UIConstraints: *PageSize EnvC4 *InputSlot Plain
*UIConstraints: *PageRegion EnvC4 *InputSlot Plain
*UIConstraints: *InputSlot Plain *PageSize EnvC4
*UIConstraints: *InputSlot Plain *PageRegion EnvC4
*UIConstraints: *PageSize EnvC4 *InputSlot Letterhead
*UIConstraints: *PageRegion EnvC4 *InputSlot Letterhead
*UIConstraints: *InputSlot Letterhead *PageSize EnvC4
*UIConstraints: *InputSlot Letterhead *PageRegion EnvC4
*UIConstraints: *PageSize EnvC4 *InputSlot Transparency
*UIConstraints: *PageRegion EnvC4 *InputSlot Transparency
*UIConstraints: *InputSlot Transparency *PageSize EnvC4
*UIConstraints: *InputSlot Transparency *PageRegion EnvC4
*UIConstraints: *PageSize EnvC4 *InputSlot Labels
*UIConstraints: *PageRegion EnvC4 *InputSlot Labels
*UIConstraints: *InputSlot Labels *PageSize EnvC4
*UIConstraints: *InputSlot Labels *PageRegion EnvC4
*UIConstraints: *PageSize EnvC4 *InputSlot Bond
*UIConstraints: *PageRegion EnvC4 *InputSlot Bond
*UIConstraints: *InputSlot Bond *PageSize EnvC4
*UIConstraints: *InputSlot Bond *PageRegion EnvC4
*UIConstraints: *PageSize EnvC4 *InputSlot Recycled
*UIConstraints: *PageRegion EnvC4 *InputSlot Recycled
*UIConstraints: *InputSlot Recycled *PageSize EnvC4
*UIConstraints: *InputSlot Recycled *PageRegion EnvC4
*UIConstraints: *PageSize EnvC4 *InputSlot Cardstock
*UIConstraints: *PageRegion EnvC4 *InputSlot Cardstock
*UIConstraints: *InputSlot Cardstock *PageSize EnvC4
*UIConstraints: *InputSlot Cardstock *PageRegion EnvC4
*UIConstraints: *PageSize EnvC4 *InputSlot Rough
*UIConstraints: *PageRegion EnvC4 *InputSlot Rough
*UIConstraints: *InputSlot Rough *PageSize EnvC4
*UIConstraints: *InputSlot Rough *PageRegion EnvC4
*UIConstraints: *PageSize EnvC4 *InputSlot Glossy
*UIConstraints: *PageRegion EnvC4 *InputSlot Glossy
*UIConstraints: *InputSlot Glossy *PageSize EnvC4
*UIConstraints: *InputSlot Glossy *PageRegion EnvC4
*%----Custom Paper selections limit
*NonUIConstraints: *CustomPageSize True *OutputBin Stacker
*NonUIConstraints: *OutputBin Stacker *CustomPageSize True
*NonUIConstraints: *CustomPageSize True *OutputBin OptionalOutBin2
*NonUIConstraints: *OutputBin OptionalOutBin2 *CustomPageSize True
*NonUIConstraints: *CustomPageSize True *Duplex DuplexNoTumble
*NonUIConstraints: *Duplex DuplexNoTumble *CustomPageSize True
*NonUIConstraints: *CustomPageSize True *Duplex DuplexTumble
*NonUIConstraints: *Duplex DuplexTumble *CustomPageSize True
*%----Color Setting Option ----
*UIConstraints: *OKOutputMode True *OKControl UseCRD
*UIConstraints: *OKControl UseCRD *OKOutputMode True
*UIConstraints: *OKOutputMode True *OKControl NOPRCM
*UIConstraints: *OKControl NOPRCM *OKOutputMode True
*UIConstraints: *OKOutputMode True *OKControl Gray
*UIConstraints: *OKControl Gray *OKOutputMode True
*%----Device Option ----
*UIConstraints: *OKOptionDuplex False *Duplex DuplexNoTumble
*UIConstraints: *OKOptionDuplex False *Duplex DuplexTumble
*UIConstraints: *Duplex DuplexNoTumble *OKOptionDuplex False
*UIConstraints: *Duplex DuplexTumble *OKOptionDuplex False
*%----Finisher and Finishing Selection ----
*UIConstraints: *OKFinisher False *OKStaple OnlyStaple
*UIConstraints: *OKStaple OnlyStaple *OKFinisher False
*UIConstraints: *OKFinisher False *OKStaple StaplePunch
*UIConstraints: *OKStaple StaplePunch *OKFinisher False
*UIConstraints: *OKFinisher False *OKStaple PunchL
*UIConstraints: *OKStaple PunchL *OKFinisher False
*UIConstraints: *OKFinisher False *OKStaple PunchP
*UIConstraints: *OKStaple PunchP *OKFinisher False
*%----Finisher and Paper Selection (remove?)----
*UIConstraints: *OKFinisher True *PageSize EnvMonarch
*UIConstraints: *OKFinisher True *PageRegion EnvMonarch
*UIConstraints: *PageSize EnvMonarch *OKFinisher True
*UIConstraints: *PageRegion EnvMonarch *OKFinisher True
*UIConstraints: *OKFinisher True *PageSize EnvDL
*UIConstraints: *OKFinisher True *PageRegion EnvDL
*UIConstraints: *PageSize EnvDL *OKFinisher True
*UIConstraints: *PageRegion EnvDL *OKFinisher True
*UIConstraints: *OKFinisher True *PageSize Env10
*UIConstraints: *OKFinisher True *PageRegion Env10
*UIConstraints: *PageSize Env10 *OKFinisher True
*UIConstraints: *PageRegion Env10 *OKFinisher True
*UIConstraints: *OKFinisher True *PageSize EnvC4
*UIConstraints: *OKFinisher True *PageRegion EnvC4
*UIConstraints: *PageSize EnvC4 *OKFinisher True
*UIConstraints: *PageRegion EnvC4 *OKFinisher True
*UIConstraints: *OKFinisher True *PageSize Env9
*UIConstraints: *OKFinisher True *PageRegion Env9
*UIConstraints: *PageSize Env9 *OKFinisher True
*UIConstraints: *PageRegion Env9 *OKFinisher True
*%----Finisher and Outputbin Selection ----
*UIConstraints: *OKFinisher True *OutputBin Rear
*UIConstraints: *OutputBin Rear *OKFinisher True
*UIConstraints: *OKFinisher False *OutputBin OptionalOutBin2
*UIConstraints: *OutputBin OptionalOutBin2 *OKFinisher False
*UIConstraints: *OKFinisher False *OutputBin OptionalOutBin1
*UIConstraints: *OutputBin OptionalOutBin1 *OKFinisher False
*%----Finisher Outputbin and Paper Selection ----
*UIConstraints: *OutputBin OptionalOutBin2 *PageSize Legal
*UIConstraints: *OutputBin OptionalOutBin2 *PageRegion Legal
*UIConstraints: *PageSize Legal *OutputBin OptionalOutBin2
*UIConstraints: *PageRegion Legal *OutputBin OptionalOutBin2
*UIConstraints: *OutputBin OptionalOutBin2 *PageSize FanFoldGermanLegal
*UIConstraints: *OutputBin OptionalOutBin2 *PageRegion FanFoldGermanLegal
*UIConstraints: *PageSize FanFoldGermanLegal *OutputBin OptionalOutBin2
*UIConstraints: *PageRegion FanFoldGermanLegal *OutputBin OptionalOutBin2
*UIConstraints: *OutputBin OptionalOutBin2 *PageSize B4
*UIConstraints: *OutputBin OptionalOutBin2 *PageRegion B4
*UIConstraints: *PageSize B4 *OutputBin OptionalOutBin2
*UIConstraints: *PageRegion B4 *OutputBin OptionalOutBin2
*UIConstraints: *OutputBin OptionalOutBin2 *PageSize A5
*UIConstraints: *OutputBin OptionalOutBin2 *PageRegion A5
*UIConstraints: *PageSize A5 *OutputBin OptionalOutBin2
*UIConstraints: *PageRegion A5 *OutputBin OptionalOutBin2
*UIConstraints: *OutputBin OptionalOutBin2 *PageSize B5
*UIConstraints: *OutputBin OptionalOutBin2 *PageRegion B5
*UIConstraints: *PageSize B5 *OutputBin OptionalOutBin2
*UIConstraints: *PageRegion B5 *OutputBin OptionalOutBin2
*UIConstraints: *OutputBin OptionalOutBin2 *PageSize A6
*UIConstraints: *OutputBin OptionalOutBin2 *PageRegion A6
*UIConstraints: *PageSize A6 *OutputBin OptionalOutBin2
*UIConstraints: *PageRegion A6 *OutputBin OptionalOutBin2
*UIConstraints: *OutputBin OptionalOutBin2 *PageSize EnvC5
*UIConstraints: *OutputBin OptionalOutBin2 *PageRegion EnvC5
*UIConstraints: *PageSize EnvC5 *OutputBin OptionalOutBin2
*UIConstraints: *PageRegion EnvC5 *OutputBin OptionalOutBin2
*UIConstraints: *OutputBin OptionalOutBin2 *PageSize Executive
*UIConstraints: *OutputBin OptionalOutBin2 *PageRegion Executive
*UIConstraints: *PageSize Executive *OutputBin OptionalOutBin2
*UIConstraints: *PageRegion Executive *OutputBin OptionalOutBin2
*UIConstraints: *OutputBin OptionalOutBin2 *PageSize A3
*UIConstraints: *OutputBin OptionalOutBin2 *PageRegion A3
*UIConstraints: *PageSize A3 *OutputBin OptionalOutBin2
*UIConstraints: *PageRegion A3 *OutputBin OptionalOutBin2
*UIConstraints: *OutputBin OptionalOutBin2 *PageSize A3nobi
*UIConstraints: *OutputBin OptionalOutBin2 *PageRegion A3nobi
*UIConstraints: *PageSize A3nobi *OutputBin OptionalOutBin2
*UIConstraints: *PageRegion A3nobi *OutputBin OptionalOutBin2
*UIConstraints: *OutputBin OptionalOutBin1 *PageSize A3nobi
*UIConstraints: *OutputBin OptionalOutBin1 *PageRegion A3nobi
*UIConstraints: *PageSize A3nobi *OutputBin OptionalOutBin1
*UIConstraints: *PageRegion A3nobi *OutputBin OptionalOutBin1
*UIConstraints: *OutputBin OptionalOutBin2 *PageSize OKLegal
*UIConstraints: *OutputBin OptionalOutBin2 *PageRegion OKLegal
*UIConstraints: *PageSize OKLegal *OutputBin OptionalOutBin2
*UIConstraints: *PageRegion OKLegal *OutputBin OptionalOutBin2
*UIConstraints: *OutputBin OptionalOutBin2 *PageSize Tabloid
*UIConstraints: *OutputBin OptionalOutBin2 *PageRegion Tabloid
*UIConstraints: *PageSize Tabloid *OutputBin OptionalOutBin2
*UIConstraints: *PageRegion Tabloid *OutputBin OptionalOutBin2
*UIConstraints: *OutputBin OptionalOutBin2 *PageSize A3wide
*UIConstraints: *OutputBin OptionalOutBin2 *PageRegion A3wide
*UIConstraints: *PageSize A3wide *OutputBin OptionalOutBin2
*UIConstraints: *PageRegion A3wide *OutputBin OptionalOutBin2
*UIConstraints: *OutputBin OptionalOutBin1 *PageSize A3wide
*UIConstraints: *OutputBin OptionalOutBin1 *PageRegion A3wide
*UIConstraints: *PageSize A3wide *OutputBin OptionalOutBin1
*UIConstraints: *PageRegion A3wide *OutputBin OptionalOutBin1
*UIConstraints: *OutputBin OptionalOutBin2 *PageSize TabloidExtra
*UIConstraints: *OutputBin OptionalOutBin2 *PageRegion TabloidExtra
*UIConstraints: *PageSize TabloidExtra *OutputBin OptionalOutBin2
*UIConstraints: *PageRegion TabloidExtra *OutputBin OptionalOutBin2
*UIConstraints: *OutputBin OptionalOutBin1 *PageSize TabloidExtra
*UIConstraints: *OutputBin OptionalOutBin1 *PageRegion TabloidExtra
*UIConstraints: *PageSize TabloidExtra *OutputBin OptionalOutBin1
*UIConstraints: *PageRegion TabloidExtra *OutputBin OptionalOutBin1
*%----Finisher Outputbin and Mediatype Selection ----
*UIConstraints: *OutputBin OptionalOutBin2 *OKMediaType HEAVY
*UIConstraints: *OKMediaType HEAVY *OutputBin OptionalOutBin2
*UIConstraints: *OutputBin OptionalOutBin2 *OKMediaType ULTRAHEAVY
*UIConstraints: *OKMediaType ULTRAHEAVY *OutputBin OptionalOutBin2
*UIConstraints: *OutputBin OptionalOutBin2 *OKMediaType Labels1
*UIConstraints: *OKMediaType Labels1 *OutputBin OptionalOutBin2
*UIConstraints: *OutputBin OptionalOutBin2 *OKMediaType Labels2
*UIConstraints: *OKMediaType Labels2 *OutputBin OptionalOutBin2
*UIConstraints: *OutputBin OptionalOutBin2 *OKMediaType Transparency
*UIConstraints: *OKMediaType Transparency *OutputBin OptionalOutBin2
*%----Outputbin and Finishing Option Selection ----
*UIConstraints: *OutputBin Stacker *OKStaple OnlyStaple
*UIConstraints: *OKStaple OnlyStaple *OutputBin Stacker
*UIConstraints: *OutputBin Stacker *OKStaple StaplePunch
*UIConstraints: *OKStaple StaplePunch *OutputBin Stacker
*UIConstraints: *OutputBin Stacker *OKStaple PunchL
*UIConstraints: *OKStaple PunchL *OutputBin Stacker
*UIConstraints: *OutputBin Stacker *OKStaple PunchP
*UIConstraints: *OKStaple PunchP *OutputBin Stacker
*UIConstraints: *OutputBin Rear *OKStaple OnlyStaple
*UIConstraints: *OKStaple OnlyStaple *OutputBin Rear
*UIConstraints: *OutputBin Rear *OKStaple StaplePunch
*UIConstraints: *OKStaple StaplePunch *OutputBin Rear
*UIConstraints: *OutputBin Rear *OKStaple PunchL
*UIConstraints: *OKStaple PunchL *OutputBin Rear
*UIConstraints: *OutputBin Rear *OKStaple PunchP
*UIConstraints: *OKStaple PunchP *OutputBin Rear
*UIConstraints: *OutputBin OptionalOutBin1 *OKStaple OnlyStaple
*UIConstraints: *OKStaple OnlyStaple *OutputBin OptionalOutBin1
*UIConstraints: *OutputBin OptionalOutBin1 *OKStaple StaplePunch
*UIConstraints: *OKStaple StaplePunch *OutputBin OptionalOutBin1
*UIConstraints: *OutputBin OptionalOutBin2 *OKStaple PunchP
*UIConstraints: *OKStaple PunchP *OutputBin OptionalOutBin2
*%----Finishing Option and Paper Selection ----
*UIConstraints: *OKStaple OnlyStaple *PageSize Legal
*UIConstraints: *OKStaple OnlyStaple *PageRegion Legal
*UIConstraints: *PageSize Legal *OKStaple OnlyStaple
*UIConstraints: *PageRegion Legal *OKStaple OnlyStaple
*UIConstraints: *OKStaple OnlyStaple *PageSize FanFoldGermanLegal
*UIConstraints: *OKStaple OnlyStaple *PageRegion FanFoldGermanLegal
*UIConstraints: *PageSize FanFoldGermanLegal *OKStaple OnlyStaple
*UIConstraints: *PageRegion FanFoldGermanLegal *OKStaple OnlyStaple
*UIConstraints: *OKStaple OnlyStaple *PageSize B4
*UIConstraints: *OKStaple OnlyStaple *PageRegion B4
*UIConstraints: *PageSize B4 *OKStaple OnlyStaple
*UIConstraints: *PageRegion B4 *OKStaple OnlyStaple
*UIConstraints: *OKStaple OnlyStaple *PageSize A5
*UIConstraints: *OKStaple OnlyStaple *PageRegion A5
*UIConstraints: *PageSize A5 *OKStaple OnlyStaple
*UIConstraints: *PageRegion A5 *OKStaple OnlyStaple
*UIConstraints: *OKStaple OnlyStaple *PageSize B5
*UIConstraints: *OKStaple OnlyStaple *PageRegion B5
*UIConstraints: *PageSize B5 *OKStaple OnlyStaple
*UIConstraints: *PageRegion B5 *OKStaple OnlyStaple
*UIConstraints: *OKStaple OnlyStaple *PageSize A6
*UIConstraints: *OKStaple OnlyStaple *PageRegion A6
*UIConstraints: *PageSize A6 *OKStaple OnlyStaple
*UIConstraints: *PageRegion A6 *OKStaple OnlyStaple
*UIConstraints: *OKStaple OnlyStaple *PageSize EnvC5
*UIConstraints: *OKStaple OnlyStaple *PageRegion EnvC5
*UIConstraints: *PageSize EnvC5 *OKStaple OnlyStaple
*UIConstraints: *PageRegion EnvC5 *OKStaple OnlyStaple
*UIConstraints: *OKStaple OnlyStaple *PageSize Executive
*UIConstraints: *OKStaple OnlyStaple *PageRegion Executive
*UIConstraints: *PageSize Executive *OKStaple OnlyStaple
*UIConstraints: *PageRegion Executive *OKStaple OnlyStaple
*UIConstraints: *OKStaple OnlyStaple *PageSize A3
*UIConstraints: *OKStaple OnlyStaple *PageRegion A3
*UIConstraints: *PageSize A3 *OKStaple OnlyStaple
*UIConstraints: *PageRegion A3 *OKStaple OnlyStaple
*UIConstraints: *OKStaple OnlyStaple *PageSize A3nobi
*UIConstraints: *OKStaple OnlyStaple *PageRegion A3nobi
*UIConstraints: *PageSize A3nobi *OKStaple OnlyStaple
*UIConstraints: *PageRegion A3nobi *OKStaple OnlyStaple
*UIConstraints: *OKStaple OnlyStaple *PageSize OKLegal
*UIConstraints: *OKStaple OnlyStaple *PageRegion OKLegal
*UIConstraints: *PageSize OKLegal *OKStaple OnlyStaple
*UIConstraints: *PageRegion OKLegal *OKStaple OnlyStaple
*UIConstraints: *OKStaple OnlyStaple *PageSize Tabloid
*UIConstraints: *OKStaple OnlyStaple *PageRegion Tabloid
*UIConstraints: *PageSize Tabloid *OKStaple OnlyStaple
*UIConstraints: *PageRegion Tabloid *OKStaple OnlyStaple
*UIConstraints: *OKStaple OnlyStaple *PageSize A3wide
*UIConstraints: *OKStaple OnlyStaple *PageRegion A3wide
*UIConstraints: *PageSize A3wide *OKStaple OnlyStaple
*UIConstraints: *PageRegion A3wide *OKStaple OnlyStaple
*UIConstraints: *OKStaple OnlyStaple *PageSize TabloidExtra
*UIConstraints: *OKStaple OnlyStaple *PageRegion TabloidExtra
*UIConstraints: *PageSize TabloidExtra *OKStaple OnlyStaple
*UIConstraints: *PageRegion TabloidExtra *OKStaple OnlyStaple
*UIConstraints: *OKStaple StaplePunch *PageSize Legal
*UIConstraints: *OKStaple StaplePunch *PageRegion Legal
*UIConstraints: *PageSize Legal *OKStaple StaplePunch
*UIConstraints: *PageRegion Legal *OKStaple StaplePunch
*UIConstraints: *OKStaple StaplePunch *PageSize FanFoldGermanLegal
*UIConstraints: *OKStaple StaplePunch *PageRegion FanFoldGermanLegal
*UIConstraints: *PageSize FanFoldGermanLegal *OKStaple StaplePunch
*UIConstraints: *PageRegion FanFoldGermanLegal *OKStaple StaplePunch
*UIConstraints: *OKStaple StaplePunch *PageSize B4
*UIConstraints: *OKStaple StaplePunch *PageRegion B4
*UIConstraints: *PageSize B4 *OKStaple StaplePunch
*UIConstraints: *PageRegion B4 *OKStaple StaplePunch
*UIConstraints: *OKStaple StaplePunch *PageSize A5
*UIConstraints: *OKStaple StaplePunch *PageRegion A5
*UIConstraints: *PageSize A5 *OKStaple StaplePunch
*UIConstraints: *PageRegion A5 *OKStaple StaplePunch
*UIConstraints: *OKStaple StaplePunch *PageSize B5
*UIConstraints: *OKStaple StaplePunch *PageRegion B5
*UIConstraints: *PageSize B5 *OKStaple StaplePunch
*UIConstraints: *PageRegion B5 *OKStaple StaplePunch
*UIConstraints: *OKStaple StaplePunch *PageSize A6
*UIConstraints: *OKStaple StaplePunch *PageRegion A6
*UIConstraints: *PageSize A6 *OKStaple StaplePunch
*UIConstraints: *PageRegion A6 *OKStaple StaplePunch
*UIConstraints: *OKStaple StaplePunch *PageSize EnvC5
*UIConstraints: *OKStaple StaplePunch *PageRegion EnvC5
*UIConstraints: *PageSize EnvC5 *OKStaple StaplePunch
*UIConstraints: *PageRegion EnvC5 *OKStaple StaplePunch
*UIConstraints: *OKStaple StaplePunch *PageSize Executive
*UIConstraints: *OKStaple StaplePunch *PageRegion Executive
*UIConstraints: *PageSize Executive *OKStaple StaplePunch
*UIConstraints: *PageRegion Executive *OKStaple StaplePunch
*UIConstraints: *OKStaple StaplePunch *PageSize A3
*UIConstraints: *OKStaple StaplePunch *PageRegion A3
*UIConstraints: *PageSize A3 *OKStaple StaplePunch
*UIConstraints: *PageRegion A3 *OKStaple StaplePunch
*UIConstraints: *OKStaple StaplePunch *PageSize A3nobi
*UIConstraints: *OKStaple StaplePunch *PageRegion A3nobi
*UIConstraints: *PageSize A3nobi *OKStaple StaplePunch
*UIConstraints: *PageRegion A3nobi *OKStaple StaplePunch
*UIConstraints: *OKStaple StaplePunch *PageSize OKLegal
*UIConstraints: *OKStaple StaplePunch *PageRegion OKLegal
*UIConstraints: *PageSize OKLegal *OKStaple StaplePunch
*UIConstraints: *PageRegion OKLegal *OKStaple StaplePunch
*UIConstraints: *OKStaple StaplePunch *PageSize Tabloid
*UIConstraints: *OKStaple StaplePunch *PageRegion Tabloid
*UIConstraints: *PageSize Tabloid *OKStaple StaplePunch
*UIConstraints: *PageRegion Tabloid *OKStaple StaplePunch
*UIConstraints: *OKStaple StaplePunch *PageSize A3wide
*UIConstraints: *OKStaple StaplePunch *PageRegion A3wide
*UIConstraints: *PageSize A3wide *OKStaple StaplePunch
*UIConstraints: *PageRegion A3wide *OKStaple StaplePunch
*UIConstraints: *OKStaple StaplePunch *PageSize TabloidExtra
*UIConstraints: *OKStaple StaplePunch *PageRegion TabloidExtra
*UIConstraints: *PageSize TabloidExtra *OKStaple StaplePunch
*UIConstraints: *PageRegion TabloidExtra *OKStaple StaplePunch
*UIConstraints: *OKStaple PunchL *PageSize Legal
*UIConstraints: *OKStaple PunchL *PageRegion Legal
*UIConstraints: *PageSize Legal *OKStaple PunchL
*UIConstraints: *PageRegion Legal *OKStaple PunchL
*UIConstraints: *OKStaple PunchL *PageSize FanFoldGermanLegal
*UIConstraints: *OKStaple PunchL *PageRegion FanFoldGermanLegal
*UIConstraints: *PageSize FanFoldGermanLegal *OKStaple PunchL
*UIConstraints: *PageRegion FanFoldGermanLegal *OKStaple PunchL
*UIConstraints: *OKStaple PunchL *PageSize B4
*UIConstraints: *OKStaple PunchL *PageRegion B4
*UIConstraints: *PageSize B4 *OKStaple PunchL
*UIConstraints: *PageRegion B4 *OKStaple PunchL
*UIConstraints: *OKStaple PunchL *PageSize A5
*UIConstraints: *OKStaple PunchL *PageRegion A5
*UIConstraints: *PageSize A5 *OKStaple PunchL
*UIConstraints: *PageRegion A5 *OKStaple PunchL
*UIConstraints: *OKStaple PunchL *PageSize A6
*UIConstraints: *OKStaple PunchL *PageRegion A6
*UIConstraints: *PageSize A6 *OKStaple PunchL
*UIConstraints: *PageRegion A6 *OKStaple PunchL
*UIConstraints: *OKStaple PunchL *PageSize EnvC5
*UIConstraints: *OKStaple PunchL *PageRegion EnvC5
*UIConstraints: *PageSize EnvC5 *OKStaple PunchL
*UIConstraints: *PageRegion EnvC5 *OKStaple PunchL
*UIConstraints: *OKStaple PunchL *PageSize Executive
*UIConstraints: *OKStaple PunchL *PageRegion Executive
*UIConstraints: *PageSize Executive *OKStaple PunchL
*UIConstraints: *PageRegion Executive *OKStaple PunchL
*UIConstraints: *OKStaple PunchL *PageSize A3
*UIConstraints: *OKStaple PunchL *PageRegion A3
*UIConstraints: *PageSize A3 *OKStaple PunchL
*UIConstraints: *PageRegion A3 *OKStaple PunchL
*UIConstraints: *OKStaple PunchL *PageSize A3nobi
*UIConstraints: *OKStaple PunchL *PageRegion A3nobi
*UIConstraints: *PageSize A3nobi *OKStaple PunchL
*UIConstraints: *PageRegion A3nobi *OKStaple PunchL
*UIConstraints: *OKStaple PunchL *PageSize OKLegal
*UIConstraints: *OKStaple PunchL *PageRegion OKLegal
*UIConstraints: *PageSize OKLegal *OKStaple PunchL
*UIConstraints: *PageRegion OKLegal *OKStaple PunchL
*UIConstraints: *OKStaple PunchL *PageSize Tabloid
*UIConstraints: *OKStaple PunchL *PageRegion Tabloid
*UIConstraints: *PageSize Tabloid *OKStaple PunchL
*UIConstraints: *PageRegion Tabloid *OKStaple PunchL
*UIConstraints: *OKStaple PunchL *PageSize A3wide
*UIConstraints: *OKStaple PunchL *PageRegion A3wide
*UIConstraints: *PageSize A3wide *OKStaple PunchL
*UIConstraints: *PageRegion A3wide *OKStaple PunchL
*UIConstraints: *OKStaple PunchL *PageSize TabloidExtra
*UIConstraints: *OKStaple PunchL *PageRegion TabloidExtra
*UIConstraints: *PageSize TabloidExtra *OKStaple PunchL
*UIConstraints: *PageRegion TabloidExtra *OKStaple PunchL
*UIConstraints: *OKStaple PunchP *PageSize EnvC5
*UIConstraints: *OKStaple PunchP *PageRegion EnvC5
*UIConstraints: *PageSize EnvC5 *OKStaple PunchP
*UIConstraints: *PageRegion EnvC5 *OKStaple PunchP
*UIConstraints: *OKStaple PunchP *PageSize A3nobi
*UIConstraints: *OKStaple PunchP *PageRegion A3nobi
*UIConstraints: *PageSize A3nobi *OKStaple PunchP
*UIConstraints: *PageRegion A3nobi *OKStaple PunchP
*UIConstraints: *OKStaple PunchP *PageSize A3wide
*UIConstraints: *OKStaple PunchP *PageRegion A3wide
*UIConstraints: *PageSize A3wide *OKStaple PunchP
*UIConstraints: *PageRegion A3wide *OKStaple PunchP
*UIConstraints: *OKStaple PunchP *PageSize TabloidExtra
*UIConstraints: *OKStaple PunchP *PageRegion TabloidExtra
*UIConstraints: *PageSize TabloidExtra *OKStaple PunchP
*UIConstraints: *PageRegion TabloidExtra *OKStaple PunchP
*%----Finishing Option and Paper Selection (For OEL and ODA only)----
*UIConstraints: *OKStaple PunchL *PageSize B5
*UIConstraints: *OKStaple PunchL *PageRegion B5
*UIConstraints: *PageSize B5 *OKStaple PunchL
*UIConstraints: *PageRegion B5 *OKStaple PunchL
*UIConstraints: *PageSize A4 *OKStaple PunchP
*UIConstraints: *PageRegion A4 *OKStaple PunchP
*UIConstraints: *OKStaple PunchP *PageSize A4
*UIConstraints: *OKStaple PunchP *PageRegion A4
*UIConstraints: *PageSize Letter *OKStaple PunchP
*UIConstraints: *PageRegion Letter *OKStaple PunchP
*UIConstraints: *OKStaple PunchP *PageSize Letter
*UIConstraints: *OKStaple PunchP *PageRegion Letter
*UIConstraints: *OKStaple PunchP *PageSize Legal
*UIConstraints: *OKStaple PunchP *PageRegion Legal
*UIConstraints: *PageSize Legal *OKStaple PunchP
*UIConstraints: *PageRegion Legal *OKStaple PunchP
*UIConstraints: *OKStaple PunchP *PageSize FanFoldGermanLegal
*UIConstraints: *OKStaple PunchP *PageRegion FanFoldGermanLegal
*UIConstraints: *PageSize FanFoldGermanLegal *OKStaple PunchP
*UIConstraints: *PageRegion FanFoldGermanLegal *OKStaple PunchP
*UIConstraints: *OKStaple PunchP *PageSize A5
*UIConstraints: *OKStaple PunchP *PageRegion A5
*UIConstraints: *PageSize A5 *OKStaple PunchP
*UIConstraints: *PageRegion A5 *OKStaple PunchP
*UIConstraints: *OKStaple PunchP *PageSize B5
*UIConstraints: *OKStaple PunchP *PageRegion B5
*UIConstraints: *PageSize B5 *OKStaple PunchP
*UIConstraints: *PageRegion B5 *OKStaple PunchP
*UIConstraints: *OKStaple PunchP *PageSize Executive
*UIConstraints: *OKStaple PunchP *PageRegion Executive
*UIConstraints: *PageSize Executive *OKStaple PunchP
*UIConstraints: *PageRegion Executive *OKStaple PunchP
*UIConstraints: *OKStaple PunchP *PageSize OKLegal
*UIConstraints: *OKStaple PunchP *PageRegion OKLegal
*UIConstraints: *PageSize OKLegal *OKStaple PunchP
*UIConstraints: *PageRegion OKLegal *OKStaple PunchP
*%----Finishing Option and Mediatype Selection ----
*UIConstraints: *OKStaple OnlyStaple *OKMediaType HEAVY
*UIConstraints: *OKMediaType HEAVY *OKStaple OnlyStaple
*UIConstraints: *OKStaple OnlyStaple *OKMediaType ULTRAHEAVY
*UIConstraints: *OKMediaType ULTRAHEAVY *OKStaple OnlyStaple
*UIConstraints: *OKStaple OnlyStaple *OKMediaType Labels1
*UIConstraints: *OKMediaType Labels1 *OKStaple OnlyStaple
*UIConstraints: *OKStaple OnlyStaple *OKMediaType Labels2
*UIConstraints: *OKMediaType Labels2 *OKStaple OnlyStaple
*UIConstraints: *OKStaple OnlyStaple *OKMediaType Transparency
*UIConstraints: *OKMediaType Transparency *OKStaple OnlyStaple
*UIConstraints: *OKStaple StaplePunch *OKMediaType HEAVY
*UIConstraints: *OKMediaType HEAVY *OKStaple StaplePunch
*UIConstraints: *OKStaple StaplePunch *OKMediaType ULTRAHEAVY
*UIConstraints: *OKMediaType ULTRAHEAVY *OKStaple StaplePunch
*UIConstraints: *OKStaple StaplePunch *OKMediaType Labels1
*UIConstraints: *OKMediaType Labels1 *OKStaple StaplePunch
*UIConstraints: *OKStaple StaplePunch *OKMediaType Labels2
*UIConstraints: *OKMediaType Labels2 *OKStaple StaplePunch
*UIConstraints: *OKStaple StaplePunch *OKMediaType Transparency
*UIConstraints: *OKMediaType Transparency *OKStaple StaplePunch
*UIConstraints: *OKStaple PunchL *OKMediaType HEAVY
*UIConstraints: *OKMediaType HEAVY *OKStaple PunchL
*UIConstraints: *OKStaple PunchL *OKMediaType ULTRAHEAVY
*UIConstraints: *OKMediaType ULTRAHEAVY *OKStaple PunchL
*UIConstraints: *OKStaple PunchL *OKMediaType Labels1
*UIConstraints: *OKMediaType Labels1 *OKStaple PunchL
*UIConstraints: *OKStaple PunchL *OKMediaType Labels2
*UIConstraints: *OKMediaType Labels2 *OKStaple PunchL
*UIConstraints: *OKStaple PunchL *OKMediaType Transparency
*UIConstraints: *OKMediaType Transparency *OKStaple PunchL
*UIConstraints: *OKStaple PunchP *OKMediaType HEAVY
*UIConstraints: *OKMediaType HEAVY *OKStaple PunchP
*UIConstraints: *OKStaple PunchP *OKMediaType ULTRAHEAVY
*UIConstraints: *OKMediaType ULTRAHEAVY *OKStaple PunchP
*UIConstraints: *OKStaple PunchP *OKMediaType Labels1
*UIConstraints: *OKMediaType Labels1 *OKStaple PunchP
*UIConstraints: *OKStaple PunchP *OKMediaType Labels2
*UIConstraints: *OKMediaType Labels2 *OKStaple PunchP
*UIConstraints: *OKStaple PunchP *OKMediaType Transparency
*UIConstraints: *OKMediaType Transparency *OKStaple PunchP
*%----Finishing Option and Duplex Selection ----
*UIConstraints: *OKStaple StaplePunch *Duplex DuplexTumble
*UIConstraints: *Duplex DuplexTumble *OKStaple StaplePunch
*UIConstraints: *OKStaple PunchL *Duplex DuplexTumble
*UIConstraints: *Duplex DuplexTumble *OKStaple PunchL
*UIConstraints: *OKStaple PunchP *Duplex DuplexNoTumble
*UIConstraints: *Duplex DuplexNoTumble *OKStaple PunchP
*%----Device Option ----
*% _____ Device Capabilities _____
*ColorDevice: True
*DefaultColorSpace: CMYK
*LanguageLevel: "3"
*Protocols: PJL TBCP
*ADDefaultProtocol: TBCP
*JCLBegin: "<1B>%-12345X"
*JCLToPSInterpreter: "@PJL ENTER LANGUAGE=POSTSCRIPT<0A>"
*JCLEnd: "<1B>%-12345X@PJL EOJ <0A>"
*Emulators: hplj
*StartEmulator_hplj: "<1B>%-12345X@PJL ENTER LANGUAGE=PCL<0A>"
*StopEmulator_hplj: "<1B>%-12345X"
*% _____ Memory Configuration(VM Size) _____
*FreeVM: "4991904"
*VMOption 64MB/Total RAM 64 MB: "4991904"
*VMOption 128MB/Total RAM 128 MB: "10439584"
*VMOption 192MB/Total RAM 192 MB: "16862112"
*VMOption 256MB/Total RAM 256 MB: "23432096"
*VMOption 320MB/Total RAM 320 MB: "29633440"
*VMOption 384MB/Total RAM 384 MB: "36252576"
*VMOption 448MB/Total RAM 448 MB: "42879904"
*VMOption 512MB/Total RAM 512 MB: "46885792"
*VMOption 576MB/Total RAM 576 MB: "53504928"
*VMOption 640MB/Total RAM 640 MB: "59296672"
*VMOption 704MB/Total RAM 704 MB: "65850272"
*VMOption 768MB/Total RAM 768 MB: "72485792"
*VMOption 832MB/Total RAM 832 MB: "79104928"
*VMOption 896MB/Total RAM 896 MB: "85732256"
*VMOption 1024MB/Total RAM 1024 MB: "98937760"
*% _____ Memory Configuration(FontCache Size) _____
*FCacheSize 64MB:1024355
*FCacheSize 128MB:1843185
*FCacheSize 192MB:2810490
*FCacheSize 256MB:3801405
*FCacheSize 320MB:4737255
*FCacheSize 384MB:5736030
*FCacheSize 448MB:6734790
*FCacheSize 512MB:7337400
*FCacheSize 576MB:8336160
*FCacheSize 640MB:9209100
*FCacheSize 704MB:10200015
*FCacheSize 768MB:11198775
*FCacheSize 832MB:12197550
*FCacheSize 896MB:13196310
*FCacheSize 1024MB:15185985
*TTRasterizer: Type42
*?TTRasterizer: "
42 /FontType resourcestatus
{pop pop (Type42)}{(No Type42)}ifelse
= flush"
*End
*Throughput: "30"
*Password: "()"
*ExitServer: "
count 0 eq {false}{true exch startjob}ifelse
not{
(WARNING: Cannot modify initial VM.) =
(Missing or invalid password.) =
(Please contact the author of this software.) = flush quit
} if"
*End
*Reset: "
count 0 eq {false}{true exch startjob true}ifelse
not{
(WARNING: Cannot reset printer.) =
(Missing or invalid password.) =
(Please contact the author of this software.) = flush
}{
systemdict /quit get exec
(WARNING : Printer Reset Failed.) = flush
}ifelse"
*End
*% _____ Job Patch File _____
*JobPatchFile 0: "
%%BeginProcSet: OKI_Default_Color_Setting 1.0 0
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource /initdriverops 2 copy known{get exec}{pop pop}ifelse
}{pop pop}ifelse
/version (3010.010) def
%%EndProcSet
"
*End
*% _____ Duplexer definitions _____
*OpenUI *Duplex/2-Sided Printing: PickOne
*OrderDependency: 95.0 DocumentSetup *Duplex
*DefaultDuplex: None
*Duplex None/Off: "
(<<) cvx exec
/Duplex false /Tumble false /Policies (<<) cvx exec /Duplex 2 (>>) cvx exec
(>>) cvx exec setpagedevice"
*End
*Duplex DuplexNoTumble/Long-Edge binding: "
(<<) cvx exec
/Duplex true /Tumble false /Policies (<<) cvx exec /Duplex 2 (>>) cvx exec
(>>) cvx exec setpagedevice"
*End
*Duplex DuplexTumble/Short-Edge binding: "
(<<) cvx exec
/Duplex true /Tumble true /Policies (<<) cvx exec /Duplex 2 (>>) cvx exec
(>>) cvx exec setpagedevice"
*End
*?Duplex: "
currentpagedevice dup /Duplex known{
dup /Duplex get{
/Tumble get{(DuplexTumble)}{(DuplexNoTumble)}ifelse
}{pop (None)}ifelse
}{pop (None)}ifelse = flush"
*End
*CloseUI: *Duplex
*% _____ InputSlot _____
*OpenUI *InputSlot/Paper Source: PickOne
*OrderDependency: 40.0 DocumentSetup *InputSlot
*DefaultInputSlot: Upper
*InputSlot Front/Multi-Purpose Tray: "
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource 4 exch /setinputslot get exec
}{pop pop}ifelse"
*End
*InputSlot Upper/Tray 1: "
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource 1 exch /setinputslot get exec
}{pop pop}ifelse"
*End
*InputSlot Lower/Tray 2: "
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource 2 exch /setinputslot get exec
}{pop pop}ifelse"
*End
*InputSlot Tray3/Tray 3: "
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource 3 exch /setinputslot get exec
}{pop pop}ifelse"
*End
*InputSlot Tray4/Tray 4: "
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource 6 exch /setinputslot get exec
}{pop pop}ifelse"
*End
*InputSlot Tray5/Tray 5: "
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource 7 exch /setinputslot get exec
}{pop pop}ifelse"
*End
*InputSlot Plain/Plain Paper: "
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource (Plain) exch /setinputslot get exec
}{pop pop}ifelse"
*End
*InputSlot Letterhead/Letterhead: "
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource (Letterhead) exch /setinputslot get exec
}{pop pop}ifelse"
*End
*InputSlot Transparency/Transparency: "
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource (Transparency) exch /setinputslot get exec
}{pop pop}ifelse"
*End
*InputSlot Labels/Labels: "
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource (Labels) exch /setinputslot get exec
}{pop pop}ifelse"
*End
*InputSlot Bond/Bond Paper: "
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource (Bond) exch /setinputslot get exec
}{pop pop}ifelse"
*End
*InputSlot Recycled/Recycled Paper: "
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource (Recycled) exch /setinputslot get exec
}{pop pop}ifelse"
*End
*InputSlot Cardstock/Card Stock: "
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource (Cardstock) exch /setinputslot get exec
}{pop pop}ifelse"
*End
*InputSlot Rough/Rough Paper: "
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource (Rough) exch /setinputslot get exec
}{pop pop}ifelse"
*End
*InputSlot Glossy/Glossy Paper: "
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource (Glossy) exch /setinputslot get exec
}{pop pop}ifelse"
*End
*?InputSlot: "
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource
[
(Unknown) (Upper) (Lower) (Tray3) (Front) (Unknown) (Tray4) (Tray5)
(Plain) (Letterhead) (Transparency) (Labels) (Bond) (Recycled) (Cardstock) (Rough) (Glossy)
] exch /qinputslot get exec
}{pop pop (Unknown)}ifelse = flush"
*End
*CloseUI: *InputSlot
*% _____ Paper Handling _____
*LandscapeOrientation: Plus90
*VariablePaperSize: True
*% Code in this section both selects a tray and sets up a frame buffer.
*OpenUI *PageSize: PickOne
*OrderDependency: 50.0 DocumentSetup *PageSize
*DefaultPageSize: A4
*PageSize A4: "
{
(<<) cvx exec
/PageSize [595 842] /Policies (<<) cvx exec /PageSize 0 (>>) cvx exec
(>>) cvx exec setpagedevice
}stopped
{
pop /DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource
[595 842] null dup dup true false 7 -1 roll /custsetpd get exec
}{pop pop}ifelse
}if"
*End
*PageSize Letter/Letter: "
{
(<<) cvx exec
/PageSize [612 792] /Policies (<<) cvx exec /PageSize 0 (>>) cvx exec
(>>) cvx exec setpagedevice
}stopped
{
pop /DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource
[612 792] null dup dup true false 7 -1 roll /custsetpd get exec
}{pop pop}ifelse
}if"
*End
*PageSize Legal/Legal: "
{
(<<) cvx exec
/PageSize [612 1008] /Policies (<<) cvx exec /PageSize 0 (>>) cvx exec
(>>) cvx exec setpagedevice
}stopped
{
pop /DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource
[612 1008] null 0 null true false 7 -1 roll /custsetpd get exec
}{pop pop}ifelse
}if"
*End
*PageSize FanFoldGermanLegal/Legal13: "
{
(<<) cvx exec
/PageSize [612 936] /Policies (<<) cvx exec /PageSize 0 (>>) cvx exec
(>>) cvx exec setpagedevice
}stopped
{
pop /DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource
[612 936] null 0 null true false 7 -1 roll /custsetpd get exec
}{pop pop}ifelse
}if"
*End
*PageSize B4: "
{
(<<) cvx exec
/PageSize [729 1032] /Policies (<<) cvx exec /PageSize 0 (>>) cvx exec
(>>) cvx exec setpagedevice
}stopped
{
pop /DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource
[729 1032] null 0 null true false 7 -1 roll /custsetpd get exec
}{pop pop}ifelse
}if"
*End
*PageSize A5: "
{
(<<) cvx exec
/PageSize [420 595] /Policies (<<) cvx exec /PageSize 0 (>>) cvx exec
(>>) cvx exec setpagedevice
}stopped
{
pop /DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource
[420 595] null 0 null true false 7 -1 roll /custsetpd get exec
}{pop pop}ifelse
}if"
*End
*PageSize B5: "
{
(<<) cvx exec
/PageSize [516 729] /Policies (<<) cvx exec /PageSize 0 (>>) cvx exec
(>>) cvx exec setpagedevice
}stopped
{
pop /DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource
[516 729] null dup dup true false 7 -1 roll /custsetpd get exec
}{pop pop}ifelse
}if"
*End
*PageSize A6: "
{
(<<) cvx exec
/PageSize [297 420] /Policies (<<) cvx exec /PageSize 0 (>>) cvx exec
(>>) cvx exec setpagedevice
}stopped
{
pop /DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource
[297 420] null 0 null true dup 7 -1 roll /custsetpd get exec
}{pop pop}ifelse
}if"
*End
*PageSize EnvMonarch/Monarch: "
{
(<<) cvx exec
/PageSize [279 540] /Policies (<<) cvx exec /PageSize 0 (>>) cvx exec
(>>) cvx exec setpagedevice
}stopped
{
pop /DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource
[279 540] null 3 null true dup 7 -1 roll /custsetpd get exec
}{pop pop}ifelse
}if"
*End
*PageSize EnvDL/DL: "
{
(<<) cvx exec
/PageSize [312 624] /Policies (<<) cvx exec /PageSize 0 (>>) cvx exec
(>>) cvx exec setpagedevice
}stopped
{
pop /DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource
[312 624] null 3 null true dup 7 -1 roll /custsetpd get exec
}{pop pop}ifelse
}if"
*End
*PageSize EnvC5/C5: "
{
(<<) cvx exec
/PageSize [459 649] /Policies (<<) cvx exec /PageSize 0 (>>) cvx exec
(>>) cvx exec setpagedevice
}stopped
{
pop /DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource
[459 649] null 3 null true dup 7 -1 roll /custsetpd get exec
}{pop pop}ifelse
}if"
*End
*PageSize Env10/Com-10: "
{
(<<) cvx exec
/PageSize [297 684] /Policies (<<) cvx exec /PageSize 0 (>>) cvx exec
(>>) cvx exec setpagedevice
}stopped
{
pop /DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource
[297 684] null 3 null true dup 7 -1 roll /custsetpd get exec
}{pop pop}ifelse
}if"
*End
*PageSize Executive/Executive: "
{
(<<) cvx exec
/PageSize [522 756] /Policies (<<) cvx exec /PageSize 0 (>>) cvx exec
(>>) cvx exec setpagedevice
}stopped
{
pop /DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource
[522 756] null 0 null true false 7 -1 roll /custsetpd get exec
}{pop pop}ifelse
}if"
*End
*PageSize A3: "
{
(<<) cvx exec
/PageSize [842 1191] /Policies (<<) cvx exec /PageSize 0 (>>) cvx exec
(>>) cvx exec setpagedevice
}stopped
{
pop /DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource
[842 1191] null 0 null true false 7 -1 roll /custsetpd get exec
}{pop pop}ifelse
}if"
*End
*PageSize A3nobi/A3Nobi: "
{
(<<) cvx exec
/PageSize [930 1284] /Policies (<<) cvx exec /PageSize 0 (>>) cvx exec
(>>) cvx exec setpagedevice
}stopped
{
pop /DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource
[930 1284] null 0 null true false 7 -1 roll /custsetpd get exec
}{pop pop}ifelse
}if"
*End
*PageSize EnvC4/C4: "
{
(<<) cvx exec
/PageSize [649 918] /Policies (<<) cvx exec /PageSize 0 (>>) cvx exec
(>>) cvx exec setpagedevice
}stopped
{
pop /DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource
[649 918] null 3 null true dup 7 -1 roll /custsetpd get exec
}{pop pop}ifelse
}if"
*End
*PageSize Env9/Com-9: "
{
(<<) cvx exec
/PageSize [279 639] /Policies (<<) cvx exec /PageSize 0 (>>) cvx exec
(>>) cvx exec setpagedevice
}stopped
{
pop /DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource
[279 639] null 3 null true dup 7 -1 roll /custsetpd get exec
}{pop pop}ifelse
}if"
*End
*PageSize OKLegal/Legal13.5: "
{
(<<) cvx exec
/PageSize [612 972] /Policies (<<) cvx exec /PageSize 0 (>>) cvx exec
(>>) cvx exec setpagedevice
}stopped
{
pop /DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource
[612 972] null 0 null true false 7 -1 roll /custsetpd get exec
}{pop pop}ifelse
}if"
*End
*PageSize Tabloid/Tabloid: "
{
(<<) cvx exec
/PageSize [792 1224] /Policies (<<) cvx exec /PageSize 0 (>>) cvx exec
(>>) cvx exec setpagedevice
}stopped
{
pop /DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource
[792 1224] null 0 null true false 7 -1 roll /custsetpd get exec
}{pop pop}ifelse
}if"
*End
*PageSize A3wide/A3Wide(SRA3): "
{
(<<) cvx exec
/PageSize [907 1276] /Policies (<<) cvx exec /PageSize 0 (>>) cvx exec
(>>) cvx exec setpagedevice
}stopped
{
pop /DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource
[907 1276] null 0 null true false 7 -1 roll /custsetpd get exec
}{pop pop}ifelse
}if"
*End
*PageSize TabloidExtra/Tabloid Extra: "
{
(<<) cvx exec
/PageSize [864 1296] /Policies (<<) cvx exec /PageSize 0 (>>) cvx exec
(>>) cvx exec setpagedevice
}stopped
{
pop /DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource
[864 1296] null 0 null true false 7 -1 roll /custsetpd get exec
}{pop pop}ifelse
}if"
*End
*?PageSize: "
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource /qpagesize get exec
}{pop pop (Unknown)}ifelse = flush"
*End
*CloseUI: *PageSize
*OpenUI *PageRegion: PickOne
*OrderDependency: 55.0 DocumentSetup *PageRegion
*DefaultPageRegion: A4
*PageRegion A4: "
globaldict /OK@MediaType known{
{
(<<) cvx exec
/PageSize [595 842] /Policies (<<) cvx exec /PageSize 0 (>>) cvx exec
/MediaType globaldict /OK@MediaType get
(>>) cvx exec setpagedevice
}stopped{pop true}{currentpagedevice /MediaType get globaldict /OK@MediaType get ne}ifelse
}{true}ifelse
{
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource
[595 842] globaldict /OK@MediaType 2 copy known{get}{pop pop null}ifelse
null dup true false 7 -1 roll /custsetpd get exec
}{pop pop}ifelse
}if"
*End
*PageRegion Letter/Letter: "
globaldict /OK@MediaType known{
{
(<<) cvx exec
/PageSize [612 792] /Policies (<<) cvx exec /PageSize 0 (>>) cvx exec
/MediaType globaldict /OK@MediaType get
(>>) cvx exec setpagedevice
}stopped{pop true}{currentpagedevice /MediaType get globaldict /OK@MediaType get ne}ifelse
}{true}ifelse
{
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource
[612 792] globaldict /OK@MediaType 2 copy known{get}{pop pop null}ifelse
null dup true false 7 -1 roll /custsetpd get exec
}{pop pop}ifelse
}if"
*End
*PageRegion Legal/Legal: "
globaldict /OK@MediaType known{
{
(<<) cvx exec
/PageSize [612 1008] /Policies (<<) cvx exec /PageSize 0 (>>) cvx exec
/MediaType globaldict /OK@MediaType get
(>>) cvx exec setpagedevice
}stopped{pop true}{currentpagedevice /MediaType get globaldict /OK@MediaType get ne}ifelse
}{true}ifelse
{
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource
[612 1008] globaldict /OK@MediaType 2 copy known{get}{pop pop null}ifelse
null dup true false 7 -1 roll /custsetpd get exec
}{pop pop}ifelse
}if"
*End
*PageRegion FanFoldGermanLegal/Legal13: "
globaldict /OK@MediaType known{
{
(<<) cvx exec
/PageSize [612 936] /Policies (<<) cvx exec /PageSize 0 (>>) cvx exec
/MediaType globaldict /OK@MediaType get
(>>) cvx exec setpagedevice
}stopped{pop true}{currentpagedevice /MediaType get globaldict /OK@MediaType get ne}ifelse
}{true}ifelse
{
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource
[612 936] globaldict /OK@MediaType 2 copy known{get}{pop pop null}ifelse
null dup true false 7 -1 roll /custsetpd get exec
}{pop pop}ifelse
}if"
*End
*PageRegion B4: "
globaldict /OK@MediaType known{
{
(<<) cvx exec
/PageSize [729 1032] /Policies (<<) cvx exec /PageSize 0 (>>) cvx exec
/MediaType globaldict /OK@MediaType get
(>>) cvx exec setpagedevice
}stopped{pop true}{currentpagedevice /MediaType get globaldict /OK@MediaType get ne}ifelse
}{true}ifelse
{
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource
[729 1032] globaldict /OK@MediaType 2 copy known{get}{pop pop null}ifelse
null dup true false 7 -1 roll /custsetpd get exec
}{pop pop}ifelse
}if"
*End
*PageRegion A5: "
globaldict /OK@MediaType known{
{
(<<) cvx exec
/PageSize [420 595] /Policies (<<) cvx exec /PageSize 0 (>>) cvx exec
/MediaType globaldict /OK@MediaType get
(>>) cvx exec setpagedevice
}stopped{pop true}{currentpagedevice /MediaType get globaldict /OK@MediaType get ne}ifelse
}{true}ifelse
{
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource
[420 595] globaldict /OK@MediaType 2 copy known{get}{pop pop null}ifelse
null dup true false 7 -1 roll /custsetpd get exec
}{pop pop}ifelse
}if"
*End
*PageRegion B5: "
globaldict /OK@MediaType known{
{
(<<) cvx exec
/PageSize [516 729] /Policies (<<) cvx exec /PageSize 0 (>>) cvx exec
/MediaType globaldict /OK@MediaType get
(>>) cvx exec setpagedevice
}stopped{pop true}{currentpagedevice /MediaType get globaldict /OK@MediaType get ne}ifelse
}{true}ifelse
{
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource
[516 729] globaldict /OK@MediaType 2 copy known{get}{pop pop null}ifelse
null dup true false 7 -1 roll /custsetpd get exec
}{pop pop}ifelse
}if"
*End
*PageRegion A6: "
globaldict /OK@MediaType known{
{
(<<) cvx exec
/PageSize [297 420] /Policies (<<) cvx exec /PageSize 0 (>>) cvx exec
/MediaType globaldict /OK@MediaType get
(>>) cvx exec setpagedevice
}stopped{pop true}{currentpagedevice /MediaType get globaldict /OK@MediaType get ne}ifelse
}{true}ifelse
{
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource
[297 420] globaldict /OK@MediaType 2 copy known{get}{pop pop null}ifelse
null dup true
statusdict /papertray 2 copy known{get exec dup 4 eq exch 1 eq or not}{pop pop false}ifelse
7 -1 roll /custsetpd get exec
}{pop pop}ifelse
}if"
*End
*PageRegion EnvMonarch/Monarch: "
globaldict /OK@MediaType known{
{
(<<) cvx exec
/PageSize [279 540] /Policies (<<) cvx exec /PageSize 0 (>>) cvx exec
/MediaType globaldict /OK@MediaType get
(>>) cvx exec setpagedevice
}stopped{pop true}{currentpagedevice /MediaType get globaldict /OK@MediaType get ne}ifelse
}{true}ifelse
{
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource
[279 540] globaldict /OK@MediaType 2 copy known{get}{pop pop null}ifelse
3 null true dup 7 -1 roll /custsetpd get exec
}{pop pop}ifelse
}if"
*End
*PageRegion EnvDL/DL: "
globaldict /OK@MediaType known{
{
(<<) cvx exec
/PageSize [312 624] /Policies (<<) cvx exec /PageSize 0 (>>) cvx exec
/MediaType globaldict /OK@MediaType get
(>>) cvx exec setpagedevice
}stopped{pop true}{currentpagedevice /MediaType get globaldict /OK@MediaType get ne}ifelse
}{true}ifelse
{
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource
[312 624] globaldict /OK@MediaType 2 copy known{get}{pop pop null}ifelse
3 null true dup 7 -1 roll /custsetpd get exec
}{pop pop}ifelse
}if"
*End
*PageRegion EnvC5/C5: "
globaldict /OK@MediaType known{
{
(<<) cvx exec
/PageSize [459 649] /Policies (<<) cvx exec /PageSize 0 (>>) cvx exec
/MediaType globaldict /OK@MediaType get
(>>) cvx exec setpagedevice
}stopped{pop true}{currentpagedevice /MediaType get globaldict /OK@MediaType get ne}ifelse
}{true}ifelse
{
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource
[459 649] globaldict /OK@MediaType 2 copy known{get}{pop pop null}ifelse
3 null true dup 7 -1 roll /custsetpd get exec
}{pop pop}ifelse
}if"
*End
*PageRegion Env10/Com-10: "
globaldict /OK@MediaType known{
{
(<<) cvx exec
/PageSize [297 684] /Policies (<<) cvx exec /PageSize 0 (>>) cvx exec
/MediaType globaldict /OK@MediaType get
(>>) cvx exec setpagedevice
}stopped{pop true}{currentpagedevice /MediaType get globaldict /OK@MediaType get ne}ifelse
}{true}ifelse
{
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource
[297 684] globaldict /OK@MediaType 2 copy known{get}{pop pop null}ifelse
3 null true dup 7 -1 roll /custsetpd get exec
}{pop pop}ifelse
}if"
*End
*PageRegion Executive/Executive: "
globaldict /OK@MediaType known{
{
(<<) cvx exec
/PageSize [522 756] /Policies (<<) cvx exec /PageSize 0 (>>) cvx exec
/MediaType globaldict /OK@MediaType get
(>>) cvx exec setpagedevice
}stopped{pop true}{currentpagedevice /MediaType get globaldict /OK@MediaType get ne}ifelse
}{true}ifelse
{
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource
[522 756] globaldict /OK@MediaType 2 copy known{get}{pop pop null}ifelse
null dup true false 7 -1 roll /custsetpd get exec
}{pop pop}ifelse
}if"
*End
*PageRegion A3: "
globaldict /OK@MediaType known{
{
(<<) cvx exec
/PageSize [842 1191] /Policies (<<) cvx exec /PageSize 0 (>>) cvx exec
/MediaType globaldict /OK@MediaType get
(>>) cvx exec setpagedevice
}stopped{pop true}{currentpagedevice /MediaType get globaldict /OK@MediaType get ne}ifelse
}{true}ifelse
{
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource
[842 1191] globaldict /OK@MediaType 2 copy known{get}{pop pop null}ifelse
null dup true false 7 -1 roll /custsetpd get exec
}{pop pop}ifelse
}if"
*End
*PageRegion A3nobi/A3Nobi: "
globaldict /OK@MediaType known{
{
(<<) cvx exec
/PageSize [930 1284] /Policies (<<) cvx exec /PageSize 0 (>>) cvx exec
/MediaType globaldict /OK@MediaType get
(>>) cvx exec setpagedevice
}stopped{pop true}{currentpagedevice /MediaType get globaldict /OK@MediaType get ne}ifelse
}{true}ifelse
{
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource
[930 1284] globaldict /OK@MediaType 2 copy known{get}{pop pop null}ifelse
null dup true false 7 -1 roll /custsetpd get exec
}{pop pop}ifelse
}if"
*End
*PageRegion EnvC4/C4: "
globaldict /OK@MediaType known{
{
(<<) cvx exec
/PageSize [649 918] /Policies (<<) cvx exec /PageSize 0 (>>) cvx exec
/MediaType globaldict /OK@MediaType get
(>>) cvx exec setpagedevice
}stopped{pop true}{currentpagedevice /MediaType get globaldict /OK@MediaType get ne}ifelse
}{true}ifelse
{
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource
[649 918] globaldict /OK@MediaType 2 copy known{get}{pop pop null}ifelse
3 null true dup 7 -1 roll /custsetpd get exec
}{pop pop}ifelse
}if"
*End
*PageRegion Env9/Com-9: "
globaldict /OK@MediaType known{
{
(<<) cvx exec
/PageSize [279 639] /Policies (<<) cvx exec /PageSize 0 (>>) cvx exec
/MediaType globaldict /OK@MediaType get
(>>) cvx exec setpagedevice
}stopped{pop true}{currentpagedevice /MediaType get globaldict /OK@MediaType get ne}ifelse
}{true}ifelse
{
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource
[279 639] globaldict /OK@MediaType 2 copy known{get}{pop pop null}ifelse
3 null true dup 7 -1 roll /custsetpd get exec
}{pop pop}ifelse
}if"
*End
*PageRegion OKLegal/Legal13.5: "
globaldict /OK@MediaType known{
{
(<<) cvx exec
/PageSize [612 972] /Policies (<<) cvx exec /PageSize 0 (>>) cvx exec
/MediaType globaldict /OK@MediaType get
(>>) cvx exec setpagedevice
}stopped{pop true}{currentpagedevice /MediaType get globaldict /OK@MediaType get ne}ifelse
}{true}ifelse
{
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource
[612 972] globaldict /OK@MediaType 2 copy known{get}{pop pop null}ifelse
null dup true false 7 -1 roll /custsetpd get exec
}{pop pop}ifelse
}if"
*End
*PageRegion Tabloid/Tabloid: "
globaldict /OK@MediaType known{
{
(<<) cvx exec
/PageSize [792 1224] /Policies (<<) cvx exec /PageSize 0 (>>) cvx exec
/MediaType globaldict /OK@MediaType get
(>>) cvx exec setpagedevice
}stopped{pop true}{currentpagedevice /MediaType get globaldict /OK@MediaType get ne}ifelse
}{true}ifelse
{
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource
[792 1224] globaldict /OK@MediaType 2 copy known{get}{pop pop null}ifelse
null dup true false 7 -1 roll /custsetpd get exec
}{pop pop}ifelse
}if"
*End
*PageRegion A3wide/A3Wide(SRA3): "
globaldict /OK@MediaType known{
{
(<<) cvx exec
/PageSize [907 1276] /Policies (<<) cvx exec /PageSize 0 (>>) cvx exec
/MediaType globaldict /OK@MediaType get
(>>) cvx exec setpagedevice
}stopped{pop true}{currentpagedevice /MediaType get globaldict /OK@MediaType get ne}ifelse
}{true}ifelse
{
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource
[907 1276] globaldict /OK@MediaType 2 copy known{get}{pop pop null}ifelse
null dup true false 7 -1 roll /custsetpd get exec
}{pop pop}ifelse
}if"
*End
*PageRegion TabloidExtra/Tabloid Extra: "
globaldict /OK@MediaType known{
{
(<<) cvx exec
/PageSize [864 1296] /Policies (<<) cvx exec /PageSize 0 (>>) cvx exec
/MediaType globaldict /OK@MediaType get
(>>) cvx exec setpagedevice
}stopped{pop true}{currentpagedevice /MediaType get globaldict /OK@MediaType get ne}ifelse
}{true}ifelse
{
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource
[864 1296] globaldict /OK@MediaType 2 copy known{get}{pop pop null}ifelse
null dup true false 7 -1 roll /custsetpd get exec
}{pop pop}ifelse
}if"
*End
*CloseUI: *PageRegion
*% The following entries provide information about specific paper keywords.
*DefaultImageableArea: A4
*ImageableArea A4: "13 13 582 829 "
*ImageableArea Letter/Letter: "13 13 599 779 "
*ImageableArea Legal/Legal: "13 13 599 995 "
*ImageableArea FanFoldGermanLegal/Legal13: "13 13 599 923 "
*ImageableArea B4: "13 13 716 1019 "
*ImageableArea A5: "13 13 407 582 "
*ImageableArea B5: "13 13 503 716 "
*ImageableArea A6: "13 13 285 407 "
*ImageableArea EnvMonarch/Monarch: "13 13 266 527 "
*ImageableArea EnvDL/DL: "13 13 299 611 "
*ImageableArea EnvC5/C5: "13 13 446 636 "
*ImageableArea Env10/Com-10: "13 13 284 670 "
*ImageableArea Executive/Executive: "13 13 509 743 "
*ImageableArea A3: "13 13 829 1178 "
*ImageableArea A3nobi/A3Nobi: "13 13 917 1271 "
*ImageableArea EnvC4/C4: "13 13 636 905 "
*ImageableArea Env9/Com-9: "13 13 266 626 "
*ImageableArea OKLegal/Legal13.5: "13 13 599 959 "
*ImageableArea Tabloid/Tabloid: "13 13 779 1211 "
*ImageableArea A3wide/A3Wide(SRA3): "13 13 894 1263 "
*ImageableArea TabloidExtra/Tabloid Extra: "13 13 851 1283 "
*?ImageableArea: "
/cvp {20 string cvs print ( ) print}bind def
/upperright {10000 mul floor 10000 div}bind def
/lowerleft {10000 mul ceiling 10000 div}bind def
newpath clippath pathbbox
4 -2 roll exch 2 {lowerleft cvp}repeat
exch 2 {upperright cvp}repeat flush"
*End
*% These provide the physical dimensions of the paper (by keyword)
*DefaultPaperDimension: A4
*PaperDimension A4: "595 842"
*PaperDimension Letter/Letter: "612 792"
*PaperDimension Legal/Legal: "612 1008"
*PaperDimension FanFoldGermanLegal/Legal13: "612 936"
*PaperDimension B4: "729 1032"
*PaperDimension A5: "420 595"
*PaperDimension B5: "516 729"
*PaperDimension A6: "297 420"
*PaperDimension EnvMonarch/Monarch: "279 540"
*PaperDimension EnvDL/DL: "312 624"
*PaperDimension EnvC5/C5: "459 649"
*PaperDimension Env10/Com-10: "297 684"
*PaperDimension Executive/Executive: "522 756"
*PaperDimension A3: "842 1191"
*PaperDimension A3nobi/A3Nobi: "930 1284"
*PaperDimension EnvC4/C4: "649 918"
*PaperDimension Env9/Com-9: "279 639"
*PaperDimension OKLegal/Legal13.5: "612 972"
*PaperDimension Tabloid/Tabloid: "792 1224"
*PaperDimension A3wide/A3Wide(SRA3): "907 1276"
*PaperDimension TabloidExtra/Tabloid Extra: "864 1296"
*%=== Custom Paper Support =================
*%Orientation and Margin (offsets) values are not utilized
*MaxMediaWidth: "929.764"
*MaxMediaHeight: "3401.575"
*CenterRegistered: False
*HWMargins: 13 13 13 13
*NonUIOrderDependency: 60.0 DocumentSetup *CustomPageSize
*CustomPageSize True: "
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource /setcustompage get exec
}{pop pop}ifelse"
*End
*LeadingEdge Short: ""
*LeadingEdge Long: ""
*DefaultLeadingEdge: Short
*ParamCustomPageSize Width: 1 points 216.000 929.764
*ParamCustomPageSize Height: 2 points 360.000 3401.575
*ParamCustomPageSize WidthOffset: 3 points 0 0
*ParamCustomPageSize HeightOffset: 4 points 0 0
*ParamCustomPageSize Orientation: 5 int 0 3
*RequiresPageRegion All: True
*% _____ Resolution ____________________________________
*OpenUI *Resolution/Quality: PickOne
*OrderDependency: 65.0 DocumentSetup *Resolution
*DefaultResolution: 1200x1200dpi
*Resolution 1200x1200dpi/Fine: "
(<<) cvx exec /HWResolution [1200 1200] (>>) cvx exec setpagedevice"
*End
*Resolution 600x600dpi/Normal: "
(<<) cvx exec /HWResolution [600 600] (>>) cvx exec setpagedevice"
*End
*Resolution 300x300dpi/Fast: "
(<<) cvx exec /HWResolution [600 600] (>>) cvx exec setpagedevice"
*End
*?Resolution: "
currentpagedevice /HWResolution get
dup 0 get cvi 20 string cvs print (x) print
1 get cvi 20 string cvs print (dpi) = flush"
*End
*CloseUI: *Resolution
*% _____ Collate: driver UI only _____
*OpenUI *OKCollate/Collate: Boolean
*OrderDependency: 35.0 DocumentSetup *OKCollate
*DefaultOKCollate: False
*OKCollate False/No: "
(<<) cvx exec
/Collate false
globaldict /OK@_Type 2 copy known{
get 1 eq{/NumCopies 1}if
}{pop pop}ifelse
(>>) cvx exec setpagedevice"
*End
*OKCollate True/Yes: "
(<<) cvx exec
/Collate false /NumCopies 1
(>>) cvx exec setpagedevice
globaldict /OK@_Copies known{
globaldict /OK@_Type 2 copy known{
get 1 ne{
(<<) cvx exec
/Collate true /NumCopies globaldict /OK@_Copies get
(>>) cvx exec setpagedevice
}if
}{pop pop}ifelse
}if"
*End
*?OKCollate: "
currentpagedevice /Collate 2 copy known{
get {(True)}{(False)}ifelse
}{pop pop (Unknown)}ifelse = flush"
*End
*CloseUI: *OKCollate
*% _____ Output Bin _____
*OpenUI *OutputBin/Output Bin: PickOne
*OrderDependency: 61.0 DocumentSetup *OutputBin
*DefaultOutputBin: Stacker
*OutputBin Stacker/Stacker (Face-down): "
(<<) cvx exec /OutputType (Upper) (>>) cvx exec setpagedevice"
*End
*OutputBin Rear/Stacker (Face-up): "
(<<) cvx exec /OutputType (Lower) (>>) cvx exec setpagedevice"
*End
*OutputBin OptionalOutBin1/Finisher (Face-up): "
(<<) cvx exec /OutputType (OptionalOutBin1) (>>) cvx exec setpagedevice"
*End
*OutputBin OptionalOutBin2/Finisher (Face-down): "
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource false 3 3 -1 roll /set_le get exec
}{pop pop}ifelse
(<<) cvx exec /OutputType (OptionalOutBin2) (>>) cvx exec setpagedevice"
*End
*?OutputBin:"
currentpagedevice /OutputAttributes 2 copy known{
get dup /Priority 2 copy known{
get 0 get get /OutputType 2 copy known{get %(OptionalOutBin1)(OptionalOutBin2)
dup (Upper) eq{pop (Stacker)}if dup (Lower) eq{pop (Rear)}if
}{pop pop (Stacker)}ifelse
}{pop pop pop (Stacker)}ifelse
}{pop pop (Stacker)}ifelse = flush"
*End
*CloseUI: *OutputBin
*% _____ Staple & Punch _____
*OpenUI *OKStaple/Staple: PickOne
*OrderDependency: 80.0 DocumentSetup *OKStaple
*DefaultOKStaple: None
*OKStaple None/None: "
(<<) cvx exec /Staple 0 /Punch 0 (>>) cvx exec setpagedevice"
*End
*OKStaple OnlyStaple/Staple: "
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource dup true 3 3 -1 roll /set_le get exec
false exch /win_nup get exec
}{pop pop}ifelse
(<<) cvx exec /Staple 3 /Punch 0 (>>) cvx exec setpagedevice"
*End
*OKStaple StaplePunch/Staple+Punch(Long-Edge): "
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource dup true 3 3 -1 roll /set_le get exec
false exch /win_nup get exec
}{pop pop}ifelse
(<<) cvx exec /Staple 3 /Punch 3 (>>) cvx exec setpagedevice"
*End
*OKStaple PunchL/Punch(Long-Edge): "
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource dup true 3 3 -1 roll /set_le get exec
false exch /win_nup get exec
}{pop pop}ifelse
(<<) cvx exec /Staple 0 /Punch 3 (>>) cvx exec setpagedevice"
*End
*OKStaple PunchP/Punch(Short-Edge): "
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource dup true 0 3 -1 roll /set_le get exec
true exch /win_nup get exec
}{pop pop}ifelse
(<<) cvx exec /Staple 0 /Punch 3 (>>) cvx exec setpagedevice"
*End
*?OKStaple:"
currentpagedevice dup /Staple known exch /Punch known and{
currentpagedevice /Staple get 0 eq{
currentpagedevice /Punch get 0 eq
{(None)}{currentpagedevice /LeadingEdge get 0 eq{(PunchP)}{(PunchL)}ifelse}ifelse
}{currentpagedevice /Punch get 0 eq{(OnlyStaple)}{(StaplePunch)}ifelse}ifelse
}{(Unknown)}ifelse = flush"
*End
*CloseUI: *OKStaple
*% _____ Media Type _____
*% This selection must be later than manual feed selection
*OpenUI *OKMediaType/Media Type: PickOne
*OrderDependency: 90.0 DocumentSetup *OKMediaType
*DefaultOKMediaType: PRINTERDEFAULT
*OKMediaType PRINTERDEFAULT/Printer Setting: "
"
*End
*OKMediaType LIGHT/Light(17lb): "
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource
null null null 62 false dup 7 -1 roll /custsetpd get exec
}{pop pop}ifelse"
*End
*OKMediaType MEDIUMLIGHT/Medium-Light(18-19lb): "
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource
null null null 73 false dup 7 -1 roll /custsetpd get exec
}{pop pop}ifelse"
*End
*OKMediaType MEDIUM/Medium(20-24lb):"
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource
null null null 92 false dup 7 -1 roll /custsetpd get exec
}{pop pop}ifelse"
*End
*OKMediaType MEDIUMHEAVY/Medium-Heavy(25-27lb): "
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource
null null null 103 false dup 7 -1 roll /custsetpd get exec
}{pop pop}ifelse"
*End
*OKMediaType HEAVY/Heavy(28-32lb):"
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource
null null null 122 false dup 7 -1 roll /custsetpd get exec
}{pop pop}ifelse"
*End
*OKMediaType ULTRAHEAVY/Ultra-Heavy(33-54lb): "
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource
null null null 203 false dup 7 -1 roll /custsetpd get exec
}{pop pop}ifelse"
*End
*OKMediaType Labels1/Labels1: "
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource
null (Labels) null 68 false true 7 -1 roll /custsetpd get exec
}{pop pop}ifelse"
*End
*OKMediaType Labels2/Labels2: "
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource
null (Labels) null 127 false true 7 -1 roll /custsetpd get exec
}{pop pop}ifelse"
*End
*OKMediaType Transparency/Transparency: "
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource
null (Transparency) null dup false
statusdict /papertray 2 copy known{get exec dup 4 eq exch 1 eq or not}{pop pop false}ifelse
7 -1 roll /custsetpd get exec
}{pop pop}ifelse"
*End
*OKMediaType GLOSSY/Glossy: "
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource
null (Glossy) null dup false dup 7 -1 roll /custsetpd get exec
}{pop pop}ifelse"
*End
*?OKMediaType: "
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource
[(LIGHT) (MEDIUMLIGHT) (MEDIUM) (MEDIUMHEAVY) (HEAVY) (ULTRAHEAVY)
(Labels1) (Labels2) (Transparency) (GLOSSY)] exch /qmediatype get exec
}{pop pop (Unknown)}ifelse = flush"
*End
*CloseUI: *OKMediaType
*% _____ InputSlot (Manual Feed)_____
*OpenUI *OKManualFeed/Multipurpose tray is handled as manual feed: PickOne
*OrderDependency: 91.0 DocumentSetup *OKManualFeed
*DefaultOKManualFeed: False
*OKManualFeed False/No: "
1 dict dup /ManualFeed false put setpagedevice"
*End
*OKManualFeed True/Yes: "
1 dict dup /ManualFeed
currentpagedevice /InputAttributes get /Priority get 0 get 3 eq
dup globaldict /OK@_ManualFeed 3 -1 roll put
put setpagedevice"
*End
*?OKManualFeed: "
globaldict /OK@_ManualFeed 2 copy known{get}{pop pop false}ifelse{(True)}{(False)}ifelse = flush"
*End
*CloseUI: *OKManualFeed
*% _____ Black Overprint _____
*OpenUI *OKOverPrint/Black Overprint: Boolean
*OrderDependency: 195.0 DocumentSetup *OKOverPrint
*DefaultOKOverPrint: False
*OKOverPrint False/Off: "
globaldict /OK@_K_OVP false put"
*End
*OKOverPrint True/On: "
globaldict /OK@_K_OVP true put"
*End
*?OKOverPrint: "
globaldict /OK@_K_OVP 2 copy known{get}{pop pop false}ifelse
{(True)}{(False)}ifelse = flush"
*End
*CloseUI: *OKOverPrint
*% _____ OKI Color Control _____
*OpenUI *OKControl/Color Control: PickOne
*OrderDependency: 105.0 DocumentSetup *OKControl
*DefaultOKControl: ASIC
*OKControl ASIC/OKI Color Matching: "
globaldict /OK@_Control 1 put
globaldict /OK@_Control get 1 eq{
globaldict /OK@_UseCRD false put
(<<) cvx exec /UseCIEColor false (>>) cvx exec setpagedevice
}if"
*End
*OKControl UseCRD/PostScript Color Matching: "
globaldict /OK@_Control 1 put
globaldict /OK@_Control get 1 eq{
globaldict /OK@_UseCRD true put
(<<) cvx exec
/UseCIEColor globaldict /OK@_UseCRD get
(>>) cvx exec setpagedevice
}if"
*End
*% ------------------------------------------------------
*% OKControl CustomICC/Using ICC Profile removed 08.26.02
*% ------------------------------------------------------
*OKControl NOPRCM/No Color Matching: "
globaldict /OK@_Control 4 put
(<<) cvx exec /ProcessColorModel /DeviceCMYK (>>) cvx exec setpagedevice
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource dup <</SelectBlackGeneration 0 /SelectColorMatching 0>>
exch /setdrinfo get exec /unloadscreenobo get exec
}{pop pop}ifelse"
*End
*OKControl Gray/Print in Grayscale: "
globaldict /OK@_Control 5 put
(<<) cvx exec /ProcessColorModel /DeviceGray (>>) cvx exec setpagedevice
/DefaultColorRendering /RelativeColorimetric systemdict /findcolorrendering get exec {
/ColorRendering findresource /ColorRendering defineresource setcolorrendering
}{pop pop}ifelse
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource /unloadscreenobo get exec
}{pop pop}ifelse"
*End
*?OKControl: "
globaldict /OK@_Control 2 copy known{
get dup 1 ne{
[(UnKnown) (PRCM) (ICM) (UnKnown) (NOPRCM) (Gray)] exch get
}{
pop currentpagedevice /UseCIEColor 2 copy known{get{(UseCRD)}{(ASIC)}ifelse}{(Unknown)}ifelse
}ifelse
}{pop pop (UnKnown)}ifelse = flush"
*End
*CloseUI: *OKControl
*% _____ Color Process Black _____
*OpenUI *OKBlackSubstitution/Black Finish: PickOne
*OrderDependency: 115.0 DocumentSetup *OKBlackSubstitution
*DefaultOKBlackSubstitution: Auto
*OKBlackSubstitution Auto/Auto: "
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource 0 exch /setdri_bk get exec
}{pop pop}ifelse"
*End
*OKBlackSubstitution Glossy/Glossy: "
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource 1 exch /setdri_bk get exec
}{pop pop}ifelse"
*End
*OKBlackSubstitution Matte/Matte: "
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource 2 exch /setdri_bk get exec
}{pop pop}ifelse"
*End
*?OKBlackSubstitution:"
currentpagedevice /DeviceRenderingInfo get /SelectBlackGeneration get
[(Auto) (Glossy) (Matte) (UnKnown)] exch get = flush"
*End
*CloseUI: *OKBlackSubstitution
*% _____ Color Rendering Style for ASIC _____
*% OKColorRenderStyle should be located at the last selection
*OpenUI *OKColorRenderStyle/Color Setting: PickOne
*OrderDependency: 150.0 DocumentSetup *OKColorRenderStyle
*DefaultOKColorRenderStyle: Auto
*OKColorRenderStyle Auto/Monitor(6500K) - Auto: "
currentpagedevice /UseCIEColor 2 copy known{get not{
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource dup 1 exch /setdri_cm get exec 0 exch /setcrd get exec
}{pop pop}ifelse
}if}{pop pop}ifelse"
*End
*OKColorRenderStyle Natural/Monitor(6500K) - Perceptual: "
currentpagedevice /UseCIEColor 2 copy known{get not{
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource dup 2 exch /setdri_cm get exec 1 exch /setcrd get exec
/ColorRendering /ProcSet 2 copy resourcestatus{
pop pop findresource dup
%ccmp_nt_tmp.asc
<0000000040E00000400CCCCD3F800000400CCCCD3F80000040
0CCCCD3F8000003F23D70A3EA8F5C33E99999A3F19999A3E19
999A3D75C28F3EA01A373EA872B032B1AC5700000000FE65F9
00EE650000000000000000000000000000000000000A140800
000000000000000000000000F50ADFFEF5FB000A001EEFF596
C75063467896C800C864C842783F7243434343434285858585
858543434343433C85859696968532000000285078A0060C0C
06FBF7F7FB0000000000000000000000003EB0FF973EB78D50
00000000000000000000000000000000000000000000000000
000000> exch /setccmparamnt get exec
%ccmp_nt_tmp.asc
<0000000040E00000400CCCCD3F800000400CCCCD3F80000040
0CCCCD3F8000003F23D70A3EA8F5C33E99999A3F19999A3E19
999A3D75C28F3EA01A373EA872B032B1AC5700000000FE65F9
00EE650000000000000000000000000000000000000A140800
000000000000000000000000F50ADFFEF5FB000A001EEFF596
C75063467896C800C864C842783F7243434343434285858585
858543434343433C85859696968532000000285078A0060C0C
06FBF7F7FB0000000000000000000000003EB0FF973EB78D50
00000000000000000000000000000000000000000000000000
000000> exch /setccmparamnv get exec
currentpagedevice setpagedevice
}{pop pop}ifelse
}{pop pop}ifelse
}if}{pop pop}ifelse"
*End
*OKColorRenderStyle Vivid/Monitor(6500K) - Vivid: "
currentpagedevice /UseCIEColor 2 copy known{get not{
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource dup 3 exch /setdri_cm get exec 2 exch /setcrd get exec
/ColorRendering /ProcSet 2 copy resourcestatus{
pop pop findresource dup
%ccmp_nv_tmp.asc
<0000000040E00000400CCCCD3F800000400CCCCD3F80000040
0CCCCD3F8000003F23D70A3EA8F5C33E99999A3F19999A3E19
999A3D75C28F3EA01A373EA872B032B1AC5700000000FA650C
12F0140000000000000000000000000000000005001916090A
000000000000000000000000F00500DCD2E41E28E200000764
50B4643C96C86432C8C83242783F7247364345343F8E89858A
687E4E455059594A9693A0B7B79C32000000285078A0060C0C
06FBF7F7FB0000000000000000000000003EB0FF973EB78D50
00000000000000000000000000000000000000000000000000
000000> exch /setccmparamnt get exec
%ccmp_nv_tmp.asc
<0000000040E00000400CCCCD3F800000400CCCCD3F80000040
0CCCCD3F8000003F23D70A3EA8F5C33E99999A3F19999A3E19
999A3D75C28F3EA01A373EA872B032B1AC5700000000FA650C
12F0140000000000000000000000000000000005001916090A
000000000000000000000000F00500DCD2E41E28E200000764
50B4643C96C86432C8C83242783F7247364345343F8E89858A
687E4E455059594A9693A0B7B79C32000000285078A0060C0C
06FBF7F7FB0000000000000000000000003EB0FF973EB78D50
00000000000000000000000000000000000000000000000000
000000> exch /setccmparamnv get exec
currentpagedevice setpagedevice
}{pop pop}ifelse
}{pop pop}ifelse
}if}{pop pop}ifelse"
*End
*OKColorRenderStyle HighBrightness/Monitor(9300K): "
currentpagedevice /UseCIEColor 2 copy known{get not{
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource dup 5 exch /setdri_cm get exec 3 exch /setcrd get exec
/ColorRendering /ProcSet 2 copy resourcestatus{
pop pop findresource dup
%ccmp_nl_tmp.asc
<0000000040E00000400CCCCD3F800000400CCCCD3F80000040
0CCCCD3F8000003F23D70A3EA8F5C33E99999A3F19999A3E19
999A3D75C28F3EA01A373EA872B032B1AC5700000000F96506
18DD65000000000000000000000000000000000A002328000A
0000000000000000000000000000143C2823BAD3D3E2C4DDB4
C7B4B42878C8C800C8C80043854385282854431E32A0A0AAA0
43A00A1432190A148C8C826443A032000000285078A0000000
00000000000000000000000000000000003EB0FF973EB78D50
00000000000000000000000000000000000000000000000000
000000> exch /setccmparamnt get exec
%ccmp_nl_tmp.asc
<0000000040E00000400CCCCD3F800000400CCCCD3F80000040
0CCCCD3F8000003F23D70A3EA8F5C33E99999A3F19999A3E19
999A3D75C28F3EA01A373EA872B032B1AC5700000000F96506
18DD65000000000000000000000000000000000A002328000A
0000000000000000000000000000143C2823BAD3D3E2C4DDB4
C7B4B42878C8C800C8C80043854385282854431E32A0A0AAA0
43A00A1432190A148C8C826443A032000000285078A0000000
00000000000000000000000000000000003EB0FF973EB78D50
00000000000000000000000000000000000000000000000000
000000> exch /setccmparamnv get exec
currentpagedevice setpagedevice
}{pop pop}ifelse
}{pop pop}ifelse
}if}{pop pop}ifelse"
*End
*OKColorRenderStyle DigCam/Digital Camera: "
currentpagedevice /UseCIEColor 2 copy known{get not{
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource dup 4 exch /setdri_cm get exec 4 exch /setcrd get exec
/ColorRendering /ProcSet 2 copy resourcestatus{
pop pop findresource dup
%ccmp_dc_tmp.asc
<0000000040E00000400CCCCD3F800000400CCCCD3F80000040
0CCCCD3F8000003F23D70A3EA8F5C33E99999A3F19999A3E19
999A3D75C28F3EA01A373EA872B032B1AC5700000000F965F9
00EE65000000000000000000000000000000000A002328000A
0000000000000000000000000000143C2823BAD3D3E2C4DDB4
C7B4B42878C8C800C8C80043854385282843431E32A0A084A0
43A00A1443190A148C8C846443A032000000285078A0000000
00000000000000000000000000000000003EB0FF973EB78D50
00000000000000000000000000000000000000000000000000
000000> exch /setccmparamnt get exec
%ccmp_nl_tmp.asc
<0000000040E00000400CCCCD3F800000400CCCCD3F80000040
0CCCCD3F8000003F23D70A3EA8F5C33E99999A3F19999A3E19
999A3D75C28F3EA01A373EA872B032B1AC5700000000F96506
18DD65000000000000000000000000000000000A002328000A
0000000000000000000000000000143C2823BAD3D3E2C4DDB4
C7B4B42878C8C800C8C80043854385282854431E32A0A0AAA0
43A00A1432190A148C8C826443A032000000285078A0000000
00000000000000000000000000000000003EB0FF973EB78D50
00000000000000000000000000000000000000000000000000
000000> exch /setccmparamnv get exec
currentpagedevice setpagedevice
}{pop pop}ifelse
}{pop pop}ifelse
}if}{pop pop}ifelse"
*End
*OKColorRenderStyle sRGB/sRGB: "
currentpagedevice /UseCIEColor 2 copy known{get not{
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource dup 6 exch /setdri_cm get exec 5 exch /setcrd get exec
/ColorRendering /ProcSet 2 copy resourcestatus{
pop pop findresource dup
%ccmp_sr_tmp.asc
<0000000040E00000400CCCCD3F800000400CCCCD3F80000040
0CCCCD3F8000003F23D70A3EA8F5C33E99999A3F19999A3E19
999A3D75C28F3EA01A373EA872B032B1AC5700000000000000
0000000000000000000000000000000000000000000A140800
00000000000000000000000000000000000000000000000096
C7506346784B64000032644285428550623C462D37A0C4788C
5A6E646464646464C8C8C8C8C8C832000000285078A0000000
00000000000000000000000000000000003EB0FF973EB78D50
00000000000000000000000000000000000000000000000000
000000> exch /setccmparamnt get exec
%ccmp_sr_tmp.asc
<0000000040E00000400CCCCD3F800000400CCCCD3F80000040
0CCCCD3F8000003F23D70A3EA8F5C33E99999A3F19999A3E19
999A3D75C28F3EA01A373EA872B032B1AC5700000000000000
0000000000000000000000000000000000000000000A140800
00000000000000000000000000000000000000000000000096
C7506346784B64000032644285428550623C462D37A0C4788C
5A6E646464646464C8C8C8C8C8C832000000285078A0000000
00000000000000000000000000000000003EB0FF973EB78D50
00000000000000000000000000000000000000000000000000
000000> exch /setccmparamnv get exec
currentpagedevice setpagedevice
}{pop pop}ifelse
}{pop pop}ifelse
}if}{pop pop}ifelse"
*End
*?OKColorRenderStyle: "
globaldict /OK@_CRD 2 copy known{get}{pop pop 6}ifelse
[(Auto) (Natural) (Vivid) (HighBrightness) (DigCam) (sRGB) (UnKnown)]
exch get = flush"
*End
*CloseUI: *OKColorRenderStyle
*% _____ Color Rendering Style for PS-CRD _____
*% OKColorRenderDict should be located at the last selection
*OpenUI *OKColorRenderDict/Rendering Intent: PickOne
*OrderDependency: 151.0 DocumentSetup *OKColorRenderDict
*DefaultOKColorRenderDict: Auto
*OKColorRenderDict Auto/Auto: "
currentpagedevice /UseCIEColor 2 copy known{get{
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource dup 1 exch /setdri_cm get exec 0 exch /setcrd get exec
}{pop pop}ifelse
}if}{pop pop}ifelse"
*End
*OKColorRenderDict Perceptual/Perceptual: "
currentpagedevice /UseCIEColor 2 copy known{get{
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource dup 2 exch /setdri_cm get exec 1 exch /setcrd get exec
}{pop pop}ifelse
}if}{pop pop}ifelse"
*End
*OKColorRenderDict Saturation/Saturation: "
currentpagedevice /UseCIEColor 2 copy known{get{
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource dup 3 exch /setdri_cm get exec 2 exch /setcrd get exec
}{pop pop}ifelse
}if}{pop pop}ifelse"
*End
*OKColorRenderDict RelativeColorimetric/Relative Colorimetric: "
currentpagedevice /UseCIEColor 2 copy known{get{
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource dup 4 exch /setdri_cm get exec 3 exch /setcrd get exec
}{pop pop}ifelse
}if}{pop pop}ifelse"
*End
*OKColorRenderDict AbsoluteColorimetric/Absolute Colorimetric: "
currentpagedevice /UseCIEColor 2 copy known{get{
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource dup 5 exch /setdri_cm get exec 4 exch /setcrd get exec
}{pop pop}ifelse
}if}{pop pop}ifelse"
*End
*?OKColorRenderDict: "
globaldict /OK@_CRD 2 copy known{get}{
pop pop currentpagedevice /DeviceRenderingInfo get /SelectColorMatching get
}ifelse [(None) (Auto) (Perceptual) (Saturation) (RelativeColorimetric)
(AbsoluteColorimetric) (UnKnown)] exch get = flush"
*End
*CloseUI: *OKColorRenderDict
*% _____ Used Printer Halftone _____
*OpenUI *OKAlwaysPrnHT/The Printer Halftone is always used: Boolean
*OrderDependency: 185.0 DocumentSetup *OKAlwaysPrnHT
*DefaultOKAlwaysPrnHT: True
*OKAlwaysPrnHT True/Printer's: "
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource /initalwayprnht get exec
globaldict /OK@_AlwaysPrHT true put
}{pop pop}ifelse"
*End
*OKAlwaysPrnHT False/Application's: "
globaldict /OK@_AlwaysPrHT false put"
*End
*?OKAlwaysPrnHT: "
globaldict /OK@_AlwaysPrHT 2 copy known
{get {(True)}{(False)}ifelse}{pop pop (False)}ifelse = flush"
*End
*CloseUI: *OKAlwaysPrnHT
*% _____ Ink Simulation _____
*OpenUI *OKTargetColor/Color Simulation: PickOne
*OrderDependency: 103.0 DocumentSetup *OKTargetColor
*DefaultOKTargetColor: None
*OKTargetColor None/None: ""
*OKTargetColor InkType1/SWOP: "
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource <</CMYKTransform 2>> exch /setdrinfo get exec
}{pop pop}ifelse"
*End
*OKTargetColor InkType2/Euroscale: "
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource <</CMYKTransform 3>> exch /setdrinfo get exec
}{pop pop}ifelse"
*End
*OKTargetColor InkType3/Japan: "
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource <</CMYKTransform 4>> exch /setdrinfo get exec
}{pop pop}ifelse"
*End
*?OKTargetColor:"
currentpagedevice /DeviceRenderingInfo get /CMYKTransform get
[(UnKnown) (None) (InkType1) (InkType2) (InkType3)
(InkType4) (InkType5) (InkType6)] exch get = flush"
*End
*CloseUI: *OKTargetColor
*% _____ Color Separation Order _____
*OpenUI *OKSeparationorder/Separations: PickOne
*OrderDependency: 102.0 DocumentSetup *OKSeparationorder
*DefaultOKSeparationorder: OFF
*OKSeparationorder OFF/Off: "
(<<) cvx exec /Separations false (>>) cvx exec setpagedevice"
*End
*OKSeparationorder CMYK/CMYK: "
(<<) cvx exec /Separations true (>>) cvx exec setpagedevice
(<<) cvx exec /SeparationOrder [/Cyan /Magenta /Yellow /Black] (>>) cvx exec setpagedevice"
*End
*OKSeparationorder CMY/CMY: "
(<<) cvx exec /Separations true (>>) cvx exec setpagedevice
(<<) cvx exec /SeparationOrder [/Cyan /Magenta /Yellow] (>>) cvx exec setpagedevice"
*End
*OKSeparationorder Cyan/OnlyCyan: "
(<<) cvx exec /Separations true (>>) cvx exec setpagedevice
(<<) cvx exec /SeparationOrder [/Cyan] (>>) cvx exec setpagedevice"
*End
*OKSeparationorder Magenta/OnlyMagenta: "
(<<) cvx exec /Separations true (>>) cvx exec setpagedevice
(<<) cvx exec /SeparationOrder [/Magenta] (>>) cvx exec setpagedevice"
*End
*OKSeparationorder Yellow/OnlyYellow: "
(<<) cvx exec /Separations true (>>) cvx exec setpagedevice
(<<) cvx exec /SeparationOrder [/Yellow] (>>) cvx exec setpagedevice"
*End
*OKSeparationorder Black/OnlyBlack: "
(<<) cvx exec /Separations true (>>) cvx exec setpagedevice
(<<) cvx exec /SeparationOrder [/Black] (>>) cvx exec setpagedevice"
*End
*?OKSeparationorder: "
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource
[(OFF) (CMYK) (CMY) (Cyan) (Magenta) (Yellow) (Black)] exch /qseparation get exec
}{pop pop (Unknown)}ifelse = flush"
*End
*CloseUI: *OKSeparationorder
*% _____ Auto Tray Switch _____
*OpenUI *TraySwitch/Tray Switch: Boolean
*OrderDependency: 25.0 DocumentSetup *TraySwitch
*DefaultTraySwitch: True
*TraySwitch True/On: "1 dict dup /TraySwitch globaldict /OK@_Custom known not put setpagedevice"
*TraySwitch False/Off: "1 dict dup /TraySwitch false put setpagedevice"
*?TraySwitch: "
currentpagedevice /TraySwitch get{(True)}{(False)}ifelse = flush"
*End
*CloseUI: *TraySwitch
*% _____ Page Size Check _____
*OpenUI *OKPageSizeCheck/Media Check: Boolean
*OrderDependency: 20.0 DocumentSetup *OKPageSizeCheck
*DefaultOKPageSizeCheck: True
*OKPageSizeCheck True/On: "
statusdict /setpapersizecheck 2 copy known{
get true exch {exec}stopped {pop}if
}{pop pop}ifelse"
*End
*OKPageSizeCheck False/Off: "
statusdict /setpapersizecheck 2 copy known{
get false exch {exec}stopped {pop}if
}{pop pop}ifelse"
*End
*?OKPageSizeCheck: "
statusdict /papersizecheck 2 copy known{
get {exec}stopped {pop (UnKnown)}{{(True)}{(False)}ifelse}ifelse
}{pop pop (UnKnown)}ifelse = flush"
*End
*CloseUI: *OKPageSizeCheck
*% _____ Toner Save _____
*OpenUI *OKOutputMode/Toner Saving: Boolean
*OrderDependency: 75.0 DocumentSetup *OKOutputMode
*DefaultOKOutputMode: False
*OKOutputMode False/Off: "
(<<) cvx exec /PostRenderingEnhance false (>>) cvx exec setpagedevice"
*End
*OKOutputMode True/On: "
(<<) cvx exec /PostRenderingEnhance true (>>) cvx exec setpagedevice"
*End
*?OKOutputMode: "
currentpagedevice /PostRenderingEnhance get{(True)}{(False)}ifelse = flush"
*End
*CloseUI: *OKOutputMode
*% _____ Page rotate _____
*OpenUI *OKEnvRotate/Page Rotate: Boolean
*OrderDependency: 190.0 PageSetup *OKEnvRotate
*DefaultOKEnvRotate: False
*OKEnvRotate False/Normal: "
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource /pagerotate get exec
}{pop pop}ifelse"
*End
*OKEnvRotate True/Rotate: "
globaldict /OK@_pagerotate true put
/DriverOps /ProcSet 2 copy resourcestatus{
pop pop findresource /pagerotate get exec
}{pop pop}ifelse"
*End
*?OKEnvRotate: "
globaldict /OK@_pagerotate 2 copy known{get}{pop pop false}ifelse
{(True)}{(False)}ifelse = flush"
*End
*CloseUI: *OKEnvRotate
*% -------------------------
*% Job Type removed 08.26.02
*% -------------------------
*% --------------------------
*% Job Spool removed 08.26.02
*% --------------------------
*% _____ Drum Cleaning: dummy UI _____
*OpenUI *OKDrumClean/Run maintenance cycle before printing: PickOne
*OrderDependency: 205.0 DocumentSetup *OKDrumClean
*DefaultOKDrumClean: OFF
*OKDrumClean OFF/Off: ""
*OKDrumClean ON/On: ""
*CloseUI: *OKDrumClean
*% -----------------------------
*% Form Overlay removed 08.26.02
*% -----------------------------
*% _____ Font Information _____
*% _____ PostScript Level3 Fonts Total 253 fonts listed here _____
*DefaultFont: Courier
*Font AlbertusMT-Italic: Standard "(001.000)" Standard ROM
*Font AlbertusMT-Light: Standard "(001.000)" Standard ROM
*Font AlbertusMT: Standard "(001.000)" Standard ROM
*Font AntiqueOlive-Roman: Standard "(501.008)" ExtendedRoman ROM
*Font AntiqueOlive-Bold: Standard "(501.009)" ExtendedRoman ROM
*Font AntiqueOlive-Compact: Standard "(501.008)" ExtendedRoman ROM
*Font AntiqueOlive-Italic: Standard "(501.010)" ExtendedRoman ROM
*Font AntiqueOliveCE-Bold: Win1250 "(501.009)" ExtendedRoman ROM
*Font AntiqueOliveCE-Compact: Win1250 "(501.008)" ExtendedRoman ROM
*Font AntiqueOliveCE-Italic: Win1250 "(501.010)" ExtendedRoman ROM
*Font AntiqueOliveCE-Roman: Win1250 "(501.008)" ExtendedRoman ROM
*Font Apple-Chancery: Standard "(001.001)" ExtendedRoman ROM
*Font Apple-ChanceryCE: Win1250 "(001.001)" ExtendedRoman ROM
*Font Arial-BoldItalicMT: Standard "(501.009)" ExtendedRoman ROM
*Font Arial-BoldMT: Standard "(501.009)" ExtendedRoman ROM
*Font Arial-ItalicMT: Standard "(501.012)" ExtendedRoman ROM
*Font ArialCE-Bold: Win1250 "(501.009)" ExtendedRoman ROM
*Font ArialCE-BoldItalic: Win1250 "(501.009)" ExtendedRoman ROM
*Font ArialCE-Italic: Win1250 "(501.012)" ExtendedRoman ROM
*Font ArialCE: Win1250 "(501.009)" ExtendedRoman ROM
*Font ArialMT: Standard "(501.009)" ExtendedRoman ROM
*Font AvantGarde-Book: Standard "(501.009)" ExtendedRoman ROM
*Font AvantGarde-BookOblique: Standard "(501.009)" ExtendedRoman ROM
*Font AvantGarde-Demi: Standard "(501.010)" ExtendedRoman ROM
*Font AvantGarde-DemiOblique: Standard "(501.010)" ExtendedRoman ROM
*Font AvantGardeCE-Book: Win1250 "(501.009)" ExtendedRoman ROM
*Font AvantGardeCE-BookOblique: Win1250 "(501.009)" ExtendedRoman ROM
*Font AvantGardeCE-Demi: Win1250 "(501.010)" ExtendedRoman ROM
*Font AvantGardeCE-DemiOblique: Win1250 "(501.010)" ExtendedRoman ROM
*Font Bodoni-Bold: Standard "(501.006)" ExtendedRoman ROM
*Font Bodoni-BoldItalic: Standard "(501.007)" ExtendedRoman ROM
*Font Bodoni-Italic: Standard "(501.007)" ExtendedRoman ROM
*Font Bodoni-Poster: Standard "(501.009)" ExtendedRoman ROM
*Font Bodoni-PosterCompressed: Standard "(501.007)" ExtendedRoman ROM
*Font Bodoni: Standard "(501.008)" ExtendedRoman ROM
*Font BodoniCE-Bold: Win1250 "(501.006)" ExtendedRoman ROM
*Font BodoniCE-BoldItalic: Win1250 "(501.007)" ExtendedRoman ROM
*Font BodoniCE-Italic: Win1250 "(501.007)" ExtendedRoman ROM
*Font BodoniCE-Poster: Win1250 "(501.009)" ExtendedRoman ROM
*Font BodoniCE-PosterCompressed: Win1250 "(501.007)" ExtendedRoman ROM
*Font BodoniCE: Win1250 "(501.008)" ExtendedRoman ROM
*Font Bookman-Demi: Standard "(501.007)" ExtendedRoman ROM
*Font Bookman-DemiItalic: Standard "(501.008)" ExtendedRoman ROM
*Font Bookman-Light: Standard "(501.006)" ExtendedRoman ROM
*Font Bookman-LightItalic: Standard "(501.007)" ExtendedRoman ROM
*Font BookmanCE-Demi: Win1250 "(501.007)" ExtendedRoman ROM
*Font BookmanCE-DemiItalic: Win1250 "(501.008)" ExtendedRoman ROM
*Font BookmanCE-Light: Win1250 "(501.006)" ExtendedRoman ROM
*Font BookmanCE-LightItalic: Win1250 "(501.007)" ExtendedRoman ROM
*Font Carta: Special "(001.001)" Special ROM
*Font Chicago: Standard "(501.011)" ExtendedRoman ROM
*Font ChicagoCE: Win1250 "(501.011)" ExtendedRoman ROM
*Font Clarendon-Bold: Standard "(501.008)" ExtendedRoman ROM
*Font Clarendon-Light: Standard "(501.009)" ExtendedRoman ROM
*Font Clarendon: Standard "(501.009)" ExtendedRoman ROM
*Font ClarendonCE-Bold: Win1250 "(501.008)" ExtendedRoman ROM
*Font ClarendonCE-Light: Win1250 "(501.009)" ExtendedRoman ROM
*Font ClarendonCE: Win1250 "(501.009)" ExtendedRoman ROM
*Font CooperBlack-Italic: Standard "(001.003)" Standard ROM
*Font CooperBlack: Standard "(001.003)" Standard ROM
*Font Copperplate-ThirtyThreeBC: Standard "(001.002)" Standard ROM
*Font Copperplate-ThirtyTwoBC: Standard "(001.002)" Standard ROM
*Font Coronet-Regular: Standard "(001.000)" ExtendedRoman ROM
*Font CoronetCE-Regular: Win1250 "(001.000)" ExtendedRoman ROM
*Font Courier-Bold: Standard "(501.010)" ExtendedRoman ROM
*Font Courier-BoldOblique: Standard "(501.010)" ExtendedRoman ROM
*Font Courier-Oblique: Standard "(501.010)" ExtendedRoman ROM
*Font Courier: Standard "(501.010)" ExtendedRoman ROM
*Font CourierCE-Bold: Win1250 "(501.010)" ExtendedRoman ROM
*Font CourierCE-BoldOblique: Win1250 "(501.010)" ExtendedRoman ROM
*Font CourierCE-Oblique: Win1250 "(501.010)" ExtendedRoman ROM
*Font CourierCE: Win1250 "(501.010)" ExtendedRoman ROM
*Font Eurostile-Bold: Standard "(501.008)" ExtendedRoman ROM
*Font Eurostile-BoldExtendedTwo: Standard "(501.008)" ExtendedRoman ROM
*Font Eurostile-ExtendedTwo: Standard "(501.010)" ExtendedRoman ROM
*Font Eurostile: Standard "(501.008)" ExtendedRoman ROM
*Font EurostileCE-Bold: Win1250 "(501.008)" ExtendedRoman ROM
*Font EurostileCE-BoldExtendedTwo: Win1250 "(501.008)" ExtendedRoman ROM
*Font EurostileCE-ExtendedTwo: Win1250 "(501.010)" ExtendedRoman ROM
*Font EurostileCE: Win1250 "(501.008)" ExtendedRoman ROM
*Font Geneva: Standard "(501.007)" ExtendedRoman ROM
*Font GenevaCE: Win1250 "(501.007)" ExtendedRoman ROM
*Font GillSans-Bold: Standard "(501.007)" ExtendedRoman ROM
*Font GillSans-BoldCondensed: Standard "(501.006)" ExtendedRoman ROM
*Font GillSans-BoldItalic: Standard "(501.008)" ExtendedRoman ROM
*Font GillSans-Condensed: Standard "(501.007)" ExtendedRoman ROM
*Font GillSans-ExtraBold: Standard "(501.008)" ExtendedRoman ROM
*Font GillSans-Italic: Standard "(501.008)" ExtendedRoman ROM
*Font GillSans-Light: Standard "(501.009)" ExtendedRoman ROM
*Font GillSans-LightItalic: Standard "(501.009)" ExtendedRoman ROM
*Font GillSans: Standard "(501.009)" ExtendedRoman ROM
*Font GillSansCE-Bold: Win1250 "(501.007)" ExtendedRoman ROM
*Font GillSansCE-BoldCondensed: Win1250 "(501.006)" ExtendedRoman ROM
*Font GillSansCE-BoldItalic: Win1250 "(501.008)" ExtendedRoman ROM
*Font GillSansCE-Condensed: Win1250 "(501.007)" ExtendedRoman ROM
*Font GillSansCE-ExtraBold: Win1250 "(501.008)" ExtendedRoman ROM
*Font GillSansCE-Italic: Win1250 "(501.008)" ExtendedRoman ROM
*Font GillSansCE-Light: Win1250 "(501.009)" ExtendedRoman ROM
*Font GillSansCE-LightItalic: Win1250 "(501.009)" ExtendedRoman ROM
*Font GillSansCE-Roman: Win1250 "(501.009)" ExtendedRoman ROM
*Font Goudy-Bold: Standard "(001.002)" Standard ROM
*Font Goudy-BoldItalic: Standard "(001.002)" Standard ROM
*Font Goudy-ExtraBold: Standard "(001.001)" Standard ROM
*Font Goudy-Italic: Standard "(001.002)" Standard ROM
*Font Goudy: Standard "(001.003)" Standard ROM
*Font Helvetica-Bold: Standard "(501.010)" ExtendedRoman ROM
*Font Helvetica-BoldOblique: Standard "(501.010)" ExtendedRoman ROM
*Font Helvetica-Condensed-Bold: Standard "(501.009)" ExtendedRoman ROM
*Font Helvetica-Condensed-BoldObl: Standard "(501.009)" ExtendedRoman ROM
*Font Helvetica-Condensed-Oblique: Standard "(501.010)" ExtendedRoman ROM
*Font Helvetica-Condensed: Standard "(501.010)" ExtendedRoman ROM
*Font Helvetica-Narrow-Bold: Standard "(501.010)" ExtendedRoman ROM
*Font Helvetica-Narrow-BoldOblique: Standard "(501.010)" ExtendedRoman ROM
*Font Helvetica-Narrow-Oblique: Standard "(501.008)" ExtendedRoman ROM
*Font Helvetica-Narrow: Standard "(501.008)" ExtendedRoman ROM
*Font Helvetica-Oblique: Standard "(501.008)" ExtendedRoman ROM
*Font Helvetica: Standard "(501.008)" ExtendedRoman ROM
*Font HelveticaCE-Bold: Win1250 "(501.010)" ExtendedRoman ROM
*Font HelveticaCE-BoldOblique: Win1250 "(501.010)" ExtendedRoman ROM
*Font HelveticaCE-Cond: Win1250 "(501.010)" ExtendedRoman ROM
*Font HelveticaCE-CondBold: Win1250 "(501.009)" ExtendedRoman ROM
*Font HelveticaCE-CondBoldObl: Win1250 "(501.009)" ExtendedRoman ROM
*Font HelveticaCE-CondObl: Win1250 "(501.010)" ExtendedRoman ROM
*Font HelveticaCE-Narrow: Win1250 "(501.008)" ExtendedRoman ROM
*Font HelveticaCE-NarrowBold: Win1250 "(501.010)" ExtendedRoman ROM
*Font HelveticaCE-NarrowBoldOblique: Win1250 "(501.010)" ExtendedRoman ROM
*Font HelveticaCE-NarrowOblique: Win1250 "(501.008)" ExtendedRoman ROM
*Font HelveticaCE-Oblique: Win1250 "(501.008)" ExtendedRoman ROM
*Font HelveticaCE: Win1250 "(501.008)" ExtendedRoman ROM
*Font HoeflerText-Black: Standard "(501.008)" ExtendedRoman ROM
*Font HoeflerText-BlackItalic: Standard "(501.009)" ExtendedRoman ROM
*Font HoeflerText-Italic: Standard "(501.010)" ExtendedRoman ROM
*Font HoeflerText-Ornaments: Special "(001.001)" Special ROM
*Font HoeflerText-Regular: Standard "(501.009)" ExtendedRoman ROM
*Font HoeflerTextCE-Black: Win1250 "(501.008)" ExtendedRoman ROM
*Font HoeflerTextCE-BlackItalic: Win1250 "(501.009)" ExtendedRoman ROM
*Font HoeflerTextCE-Italic: Win1250 "(501.010)" ExtendedRoman ROM
*Font HoeflerTextCE-Regular: Win1250 "(501.009)" ExtendedRoman ROM
*Font JoannaMT-Bold: Standard "(501.008)" ExtendedRoman ROM
*Font JoannaMT-BoldItalic: Standard "(501.008)" ExtendedRoman ROM
*Font JoannaMT-Italic: Standard "(501.008)" ExtendedRoman ROM
*Font JoannaMT: Standard "(501.009)" ExtendedRoman ROM
*Font JoannaMTCE-Bold: Win1250 "(501.008)" ExtendedRoman ROM
*Font JoannaMTCE-BoldItalic: Win1250 "(501.008)" ExtendedRoman ROM
*Font JoannaMTCE-Italic: Win1250 "(501.008)" ExtendedRoman ROM
*Font JoannaMTCE: Win1250 "(501.009)" ExtendedRoman ROM
*Font LetterGothic-Bold: Standard "(501.010)" ExtendedRoman ROM
*Font LetterGothic-BoldSlanted: Standard "(501.010)" ExtendedRoman ROM
*Font LetterGothic-Slanted: Standard "(501.010)" ExtendedRoman ROM
*Font LetterGothic: Standard "(501.009)" ExtendedRoman ROM
*Font LetterGothicCE-Bold: Win1250 "(501.010)" ExtendedRoman ROM
*Font LetterGothicCE-BoldSlanted: Win1250 "(501.010)" ExtendedRoman ROM
*Font LetterGothicCE-Slanted: Win1250 "(501.010)" ExtendedRoman ROM
*Font LetterGothicCE: Win1250 "(501.009)" ExtendedRoman ROM
*Font LubalinGraph-Book: Standard "(501.009)" ExtendedRoman ROM
*Font LubalinGraph-BookOblique: Standard "(501.009)" ExtendedRoman ROM
*Font LubalinGraph-Demi: Standard "(501.009)" ExtendedRoman ROM
*Font LubalinGraph-DemiOblique: Standard "(501.009)" ExtendedRoman ROM
*Font LubalinGraphCE-Book: Win1250 "(501.009)" ExtendedRoman ROM
*Font LubalinGraphCE-BookOblique: Win1250 "(501.009)" ExtendedRoman ROM
*Font LubalinGraphCE-Demi: Win1250 "(501.009)" ExtendedRoman ROM
*Font LubalinGraphCE-DemiOblique: Win1250 "(501.009)" ExtendedRoman ROM
*Font Marigold: Standard "(001.000)" Standard ROM
*Font MonaLisa-Recut: Standard "(001.000)" Standard ROM
*Font Monaco: Standard "(501.012)" ExtendedRoman ROM
*Font MonacoCE: Win1250 "(501.012)" ExtendedRoman ROM
*Font NewCenturySchlbk-Roman: Standard "(501.008)" ExtendedRoman ROM
*Font NewCenturySchlbk-Bold: Standard "(501.008)" ExtendedRoman ROM
*Font NewCenturySchlbk-BoldItalic: Standard "(501.009)" ExtendedRoman ROM
*Font NewCenturySchlbk-Italic: Standard "(501.011)" ExtendedRoman ROM
*Font NewCenturySchlbkCE-Bold: Win1250 "(501.008)" ExtendedRoman ROM
*Font NewCenturySchlbkCE-BoldItalic: Win1250 "(501.009)" ExtendedRoman ROM
*Font NewCenturySchlbkCE-Italic: Win1250 "(501.011)" ExtendedRoman ROM
*Font NewCenturySchlbkCE-Roman: Win1250 "(501.008)" ExtendedRoman ROM
*Font NewYork: Standard "(501.013)" ExtendedRoman ROM
*Font NewYorkCE: Win1250 "(501.013)" ExtendedRoman ROM
*Font Optima-Bold: Standard "(501.008)" ExtendedRoman ROM
*Font Optima-BoldItalic: Standard "(501.009)" ExtendedRoman ROM
*Font Optima-Italic: Standard "(501.010)" ExtendedRoman ROM
*Font Optima: Standard "(501.010)" ExtendedRoman ROM
*Font OptimaCE-Bold: Win1250 "(501.008)" ExtendedRoman ROM
*Font OptimaCE-BoldItalic: Win1250 "(501.009)" ExtendedRoman ROM
*Font OptimaCE-Italic: Win1250 "(501.010)" ExtendedRoman ROM
*Font OptimaCE-Roman: Win1250 "(501.010)" ExtendedRoman ROM
*Font Oxford: Standard "(001.000)" Standard ROM
*Font Palatino-Bold: Standard "(501.008)" ExtendedRoman ROM
*Font Palatino-BoldItalic: Standard "(501.007)" ExtendedRoman ROM
*Font Palatino-Italic: Standard "(501.008)" ExtendedRoman ROM
*Font Palatino-Roman: Standard "(501.006)" ExtendedRoman ROM
*Font PalatinoCE-Bold: Win1250 "(501.008)" ExtendedRoman ROM
*Font PalatinoCE-BoldItalic: Win1250 "(501.007)" ExtendedRoman ROM
*Font PalatinoCE-Italic: Win1250 "(501.008)" ExtendedRoman ROM
*Font PalatinoCE-Roman: Win1250 "(501.006)" ExtendedRoman ROM
*Font StempelGaramond-Bold: Standard "(501.007)" ExtendedRoman ROM
*Font StempelGaramond-BoldItalic: Standard "(501.012)" ExtendedRoman ROM
*Font StempelGaramond-Italic: Standard "(501.009)" ExtendedRoman ROM
*Font StempelGaramond-Roman: Standard "(501.011)" ExtendedRoman ROM
*Font StempelGaramondCE-Bold: Win1250 "(501.007)" ExtendedRoman ROM
*Font StempelGaramondCE-BoldItalic: Win1250 "(501.012)" ExtendedRoman ROM
*Font StempelGaramondCE-Italic: Win1250 "(501.009)" ExtendedRoman ROM
*Font StempelGaramondCE-Roman: Win1250 "(501.011)" ExtendedRoman ROM
*Font Symbol: Special "(001.008)" Special ROM
*Font Tekton: Standard "(001.001)" Standard ROM
*Font Times-Bold: Standard "(501.009)" ExtendedRoman ROM
*Font Times-BoldItalic: Standard "(501.009)" ExtendedRoman ROM
*Font Times-Italic: Standard "(501.010)" ExtendedRoman ROM
*Font Times-Roman: Standard "(501.010)" ExtendedRoman ROM
*Font TimesCE-Bold: Win1250 "(501.009)" ExtendedRoman ROM
*Font TimesCE-BoldItalic: Win1250 "(501.009)" ExtendedRoman ROM
*Font TimesCE-Italic: Win1250 "(501.010)" ExtendedRoman ROM
*Font TimesCE-Roman: Win1250 "(501.010)" ExtendedRoman ROM
*Font TimesNewRomanCE-Bold: Win1250 "(501.009)" ExtendedRoman ROM
*Font TimesNewRomanCE-BoldItalic: Win1250 "(501.011)" ExtendedRoman ROM
*Font TimesNewRomanCE-Italic: Win1250 "(501.011)" ExtendedRoman ROM
*Font TimesNewRomanCE: Win1250 "(501.010)" ExtendedRoman ROM
*Font TimesNewRomanPS-BoldItalicMT: Standard "(501.011)" ExtendedRoman ROM
*Font TimesNewRomanPS-BoldMT: Standard "(501.009)" ExtendedRoman ROM
*Font TimesNewRomanPS-ItalicMT: Standard "(501.011)" ExtendedRoman ROM
*Font TimesNewRomanPSMT: Standard "(501.010)" ExtendedRoman ROM
*Font Univers-Bold: Standard "(501.008)" ExtendedRoman ROM
*Font Univers-BoldExt: Standard "(501.010)" ExtendedRoman ROM
*Font Univers-BoldExtObl: Standard "(501.010)" ExtendedRoman ROM
*Font Univers-BoldOblique: Standard "(501.008)" ExtendedRoman ROM
*Font Univers-Condensed: Standard "(501.011)" ExtendedRoman ROM
*Font Univers-CondensedBold: Standard "(501.009)" ExtendedRoman ROM
*Font Univers-CondensedBoldOblique: Standard "(501.009)" ExtendedRoman ROM
*Font Univers-CondensedOblique: Standard "(501.011)" ExtendedRoman ROM
*Font Univers-Extended: Standard "(501.009)" ExtendedRoman ROM
*Font Univers-ExtendedObl: Standard "(501.009)" ExtendedRoman ROM
*Font Univers-Light: Standard "(501.009)" ExtendedRoman ROM
*Font Univers-LightOblique: Standard "(501.009)" ExtendedRoman ROM
*Font Univers-Oblique: Standard "(501.009)" ExtendedRoman ROM
*Font Univers: Standard "(501.009)" ExtendedRoman ROM
*Font UniversCE-Bold: Win1250 "(501.008)" ExtendedRoman ROM
*Font UniversCE-BoldExt: Win1250 "(501.010)" ExtendedRoman ROM
*Font UniversCE-BoldExtObl: Win1250 "(501.010)" ExtendedRoman ROM
*Font UniversCE-BoldOblique: Win1250 "(501.008)" ExtendedRoman ROM
*Font UniversCE-Condensed: Win1250 "(501.011)" ExtendedRoman ROM
*Font UniversCE-CondensedBold: Win1250 "(501.009)" ExtendedRoman ROM
*Font UniversCE-CondensedBoldOblique: Win1250 "(501.009)" ExtendedRoman ROM
*Font UniversCE-CondensedOblique: Win1250 "(501.011)" ExtendedRoman ROM
*Font UniversCE-Extended: Win1250 "(501.009)" ExtendedRoman ROM
*Font UniversCE-ExtendedObl: Win1250 "(501.009)" ExtendedRoman ROM
*Font UniversCE-Light: Win1250 "(501.009)" ExtendedRoman ROM
*Font UniversCE-LightOblique: Win1250 "(501.009)" ExtendedRoman ROM
*Font UniversCE-Medium: Win1250 "(501.009)" ExtendedRoman ROM
*Font UniversCE-Oblique: Win1250 "(501.009)" ExtendedRoman ROM
*Font Wingdings-Regular: Special "(001.001)" Special ROM
*Font ZapfChancery-MediumItalic: Standard "(002.000)" ExtendedRoman ROM
*Font ZapfChanceryCE-MediumItalic: Win1250 "(002.000)" ExtendedRoman ROM
*Font ZapfDingbats: Special "(001.005S)" Special ROM
*?FontQuery: "
save
{
count 1 gt{
exch dup 127 string cvs (/) print print (:) print
/Font resourcestatus {pop pop (Yes)}{(No)}ifelse =
}{exit}ifelse
}bind loop (*) = flush
restore"
*End
*?FontList: "
save
(*) {cvn ==} 128 string /Font resourceforall
(*) = flush
restore"
*End
*% Printer Messages _____
*Message: "%%[ exitserver: permanent state may be changed ]%%"
*Message: "%%[ Flushing: rest of job (to end-of-file) will be ignored ]%%"
*Message: "\FontName\ not found, using Courier"
*% Status (format: %%[ status: <Message from the list below> ] %%)
*Status: "idle"
*Status: "busy"
*Status: "waiting"
*Status: "PrinterError: toner low"
*Status: "PrinterError: toner sensor error"
*Status: "PrinterError: image drum life"
*Status: "PrinterError: fuser life"
*Status: "PrinterError: belt life"
*Status: "PrinterError: HDD trouble"
*Status: "PrinterError: file system full"
*Status: "PrinterError: disk full"
*Status: "PrinterError: memory overflow"
*Status: "PrinterError: waiting for manual feed"
*Status: "PrinterError: either paper empty, or no tray installed"
*Status: "PrinterError: stacker full error"
*Status: "PrinterError: cover open"
*Status: "PrinterError: toner empty error"
*Status: "PrinterError: paper size error"
*Status: "PrinterError: hopping error"
*Status: "PrinterError: paper feed jam"
*Status: "PrinterError: paper exit jam"
*Status: "PrinterError: paper duplex feed jam"
*Status: "PrinterError: paper duplex input jam"
*Status: "PrinterError: drum missing"
*Status: "PrinterError: belt unit not installed"
*Status: "PrinterError: fuser unit not installed"
*Status: "PrinterError: toner mixing mode"
*Status: "PrinterError: balance error"
*Status: "PrinterError: calibration error"
*Status: "PrinterError: density error"
*Status: "PrinterError: gammer error"
*Status: "PrinterError: process control off"
*Status: "PrinterError: printer engine life"
*Status: "PrinterError: oil roller not installed"
*Status: "PrinterError: oil roller life"
*Status: "PrinterError: waste toner full"
*Status: "PrinterError: waste toner near full"
*Status: "PrinterError: waste toner sensor full"
*% Input Sources (format: %%[ status: <stat>; source: <one of these> ]%% )
*Source: "Parallel"
*Source: "EtherTalk"
*Source: "HSP"
*Source: "USB"
*PrinterError: "toner low"
*PrinterError: "toner sensor error"
*PrinterError: "image drum life"
*PrinterError: "fuser life"
*PrinterError: "belt life"
*PrinterError: "HDD trouble"
*PrinterError: "file system full"
*PrinterError: "disk full"
*PrinterError: "memory overflow"
*PrinterError: "waiting for manual feed"
*PrinterError: "either paper empty, or no tray installed"
*PrinterError: "stacker full error"
*PrinterError: "cover open"
*PrinterError: "toner empty error"
*PrinterError: "paper size error"
*PrinterError: "hopping error"
*PrinterError: "paper feed jam"
*PrinterError: "paper exit jam"
*PrinterError: "paper duplex feed jam"
*PrinterError: "paper duplex input jam"
*PrinterError: "drum missing"
*PrinterError: "belt unit not installed"
*PrinterError: "fuser unit not installed"
*PrinterError: "toner mixing mode"
*PrinterError: "balance error"
*PrinterError: "calibration error"
*PrinterError: "density error"
*PrinterError: "gammer error"
*PrinterError: "process control off"
*PrinterError: "printer engine life"
*PrinterError: "oil roller not installed"
*PrinterError: "oil roller life"
*PrinterError: "waste toner full"
*PrinterError: "waste toner near full"
*PrinterError: "waste toner sensor full"
*% _____ Halftone Information _____
*DefaultHalftoneType: 5
*ScreenFreq: "121.0"
*ScreenAngle: "45.0"
*DefaultScreenProc: Dot
*ScreenProc Dot: "
{
abs exch abs 2 copy add 1 gt{
1 sub dup mul exch 1 sub dup mul add 1 sub
}{
dup mul exch dup mul add 1 exch sub
}ifelse
}"
*End
*ScreenProc Line: "{pop}"
*ScreenProc Ellipse: "{dup 5 mul 8 div mul exch dup mul exch add sqrt 1 exch sub}"
*DefaultTransfer: Null
*Transfer Null: "{ }"
*Transfer Null.Inverse: "{1 exch sub}"
*% _____ Color Separation Information _____
*DefaultColorSep: ProcessBlack.165lpi.1200dpi/165 lpi / 1200 dpi
*% For 170 lpi / 600 dpi ===============================
*ColorSepScreenAngle ProcessBlack.170lpi.600dpi/170 lpi / 600 dpi: "45"
*ColorSepScreenAngle CustomColor.170lpi.600dpi/170 lpi / 600 dpi: "45"
*ColorSepScreenAngle ProcessCyan.170lpi.600dpi/170 lpi / 600 dpi: "162"
*ColorSepScreenAngle ProcessMagenta.170lpi.600dpi/170 lpi / 600 dpi: "18"
*ColorSepScreenAngle ProcessYellow.170lpi.600dpi/170 lpi / 600 dpi: "45"
*ColorSepScreenFreq ProcessBlack.170lpi.600dpi/170 lpi / 600 dpi: "170"
*ColorSepScreenFreq CustomColor.170lpi.600dpi/170 lpi / 600 dpi: "170"
*ColorSepScreenFreq ProcessCyan.170lpi.600dpi/170 lpi / 600 dpi: "170"
*ColorSepScreenFreq ProcessMagenta.170lpi.600dpi/170 lpi / 600 dpi: "170"
*ColorSepScreenFreq ProcessYellow.170lpi.600dpi/170 lpi / 600 dpi: "212"
*% For 165 lpi / 1200 dpi ===============================
*ColorSepScreenAngle ProcessBlack.165lpi.1200dpi/165 lpi / 1200 dpi: "90"
*ColorSepScreenAngle CustomColor.165lpi.1200dpi/165 lpi / 1200 dpi: "45"
*ColorSepScreenAngle ProcessCyan.165lpi.1200dpi/165 lpi / 1200 dpi: "129"
*ColorSepScreenAngle ProcessMagenta.165lpi.1200dpi/165 lpi / 1200 dpi: "51"
*ColorSepScreenAngle ProcessYellow.165lpi.1200dpi/165 lpi / 1200 dpi: "27"
*ColorSepScreenFreq ProcessBlack.165lpi.1200dpi/165 lpi / 1200 dpi: "45"
*ColorSepScreenFreq CustomColor.165lpi.1200dpi/165 lpi / 1200 dpi: "45"
*ColorSepScreenFreq ProcessCyan.165lpi.1200dpi/165 lpi / 1200 dpi: "16"
*ColorSepScreenFreq ProcessMagenta.165lpi.1200dpi/165 lpi / 1200 dpi: "74"
*ColorSepScreenFreq ProcessYellow.165lpi.1200dpi/165 lpi / 1200 dpi: "45"
|