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
|
*PPD-Adobe: "4.3"
*%=============================================================================
*%
*% PPD for Kyocera Mita FS-9520DN (French)
*% Linux Version
*%
*% Copyright (C) 2000 KYOCERA CORPORATION
*% Copyright (C) 2005 Revised Edition KYOCERA MITA CORPORATION
*%
*% Permission is hereby granted, free of charge, to any person obtaining
*% a copy of this software and associated documentation files (the
*% "Software"), to deal in the Software without restriction, including
*% without limitation the rights to use, copy, modify, merge, publish,
*% distribute, sublicense, and/or sell copies of the Software, and to
*% permit persons to whom the Software is furnished to do so, subject to
*% the following conditions:
*%
*% The above copyright notice and this permission notice shall be
*% included in all copies or substantial portions of the Software.
*%
*% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
*% EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
*% MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
*% NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
*% LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
*% OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
*% WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*%
*% [this is the MIT open source license -- see www.opensource.org]
*%
*%=============================================================================
*FileVersion: "8.2"
*FormatVersion: "4.3"
*LanguageEncoding: ISOLatin1
*LanguageVersion: French
*Product: "(FS-9520DN)"
*PSVersion: "(3011.103) 2001"
*Manufacturer: "Kyocera Mita"
*ModelName: "Kyocera Mita FS-9520DN"
*ShortNickName: "Kyocera Mita FS-9520DN"
*NickName: "Kyocera Mita FS-9520DN"
*PCFileName: "KM9520FR.PPD"
*% Basic Device Capabilities
*LanguageLevel: "3"
*ColorDevice: False
*DefaultColorSpace: Gray
*TTRasterizer: Type42
*?TTRasterizer: "
save
42 /FontType resourcestatus
{ pop pop (Type42) }{ pop pop (None) } ifelse = flush
restore"
*End
*Throughput: "50"
*% System Management
*SuggestedJobTimeout: "0"
*SuggestedManualFeedTimeout: "0"
*SuggestedWaitTimeout: "120"
*PrintPSErrors: True
*Password: "0"
*ExitServer: " count 0 eq { true }
{ dup statusdict /checkpassword get exec not } ifelse
{ (WARNING : Cannot perform the exitserver command.) =
(Password supplied is not valid.) =
(Please contact the author of this software.) = flush quit } if
serverdict /exitserver get exec"
*End
*Reset: " count 0 eq { true }
{ dup statusdict /checkpassword get exec not } ifelse
{ (WARNING : Cannot perform the exitserver command.) =
(Password supplied is not valid.) =
(Please contact the author of this software.) = flush quit } if
serverdict /exitserver get exec
systemdict /quit get exec
(WARNING : Printer Reset Failed.) = flush"
*End
*% Protocols
*Protocols: BCP PJL TBCP
*%1284Modes Parallel: Compat Nibble ECP
*%1284DeviceID: "MFG:Kyocera Mita;MODEL:Kyocera Mita FS-9520DN;COMMAND SET: POSTSCRIPT,PJL,PCL"
*% JCL Information
*JCLBegin: "<1B>%-12345X@PJL JOB<0A>"
*JCLToPSInterpreter: "@PJL ENTER LANGUAGE=POSTSCRIPT<0A>"
*JCLEnd: "<1B>%-12345X@PJL EOJ<0A><1B>%-12345X"
*% Installable Options
*OpenGroup: InstallableOptions/Options Install<E9>e
*% Paper Feeder
*OpenUI *Option01/Tiroirs en option: PickOne
*DefaultOption01: NONE
*Option01 NONE/Non Install<E9>: ""
*Option01 OF1/Tiroir 3,4: ""
*Option01 OF2/Chargeur <E0> grande capacit<E9>: ""
*?Option01: "
save
(None) currentpagedevice dup /InputAttributes known {
/InputAttributes get
dup 4 known {dup 4 get null ne {exch pop (OF2) exch} if} if
dup 5 known {dup 5 get null ne {exch pop (OF1) exch} if} if
} if pop
= flush restore"
*End
*CloseUI: *Option01
*% Finisher
*OpenUI *Option17/Finisseur: PickOne
*DefaultOption17: None
*Option17 None/Non Install<E9>: ""
*Option17 DF70/3000 Finisseur: ""
*Option17 DF73/1000 Finisseur: ""
*Option17 DF75/Relieur broch: ""
*?Option17: "
save
currentpagedevice /OutputAttributes get
1 get
dup null ne {
/OutputType get
<< /STAPLER (DF70) /SIMPLE_FINISHER (DF73) >>
exch 2 copy known { get }{ pop pop (NO) } ifelse
dup (DF70) eq { currentpagedevice /Fold known { pop (DF75) }
if} if}{pop (NO)
} ifelse
= flush restore"
*End
*CloseUI: *Option17
*% Mailbin
*OpenUI *Option47/Bo<EE>te lettres: Boolean
*DefaultOption47: None
*Option47 None/Non Install<E9>: ""
*Option47 MB1/Install<E9>: ""
*?Option47: "
save
currentpagedevice dup /OutputAttributes known {
/OutputAttributes get
dup 7 known {
7 get dup null ne {
/OutputType get
dup (MULTI_TRAY5) eq { (MB1) } {
(None)
} ifelse
}{(None)} ifelse
}{(None)} ifelse
exch pop
}{
pop (None)
} ifelse
= flush restore"
*End
*CloseUI: *Option47
*% Punch Unit
*OpenUI *Option22/Perforeuse: Boolean
*DefaultOption22: None
*Option22 None/Non Install<E9>: ""
*Option22 PN1/Install<E9>: ""
*?Option22: "
save
currentpagedevice /Punch known {(PN1)}{(None)} ifelse
= flush restore"
*End
*CloseUI: *Option22
*% Disk Drive
*OpenUI *Option18/Disque optionnel: PickOne
*DefaultOption18: None
*Option18 None/Non Install<E9>: ""
*Option18 RAMDisk/Disque RAM: ""
*Option18 HardDisk/Disque dur: ""
*?Option18: "
save
false
(%disk?%)
{ currentdevparams dup /Writeable known
{ dup /Writeable get
{ exch pop /LogicalSize get dup 0 gt exch 102400 lt eq true }{ pop pop false } ifelse }
{ pop pop } ifelse
} 100 string /IODevice resourceforall
{ {(RAMDisk)}{(HardDisk)} ifelse }{(None)} ifelse = flush
restore"
*End
*CloseUI: *Option18
*% Installed Memory
*OpenUI *InstalledMemory/M<E9>moire: PickOne
*DefaultInstalledMemory: 64MB
*InstalledMemory 64MB/64MB(Standard): ""
*InstalledMemory 96MB/96MB(32MB Augmentation): ""
*InstalledMemory 128MB/128MB(64MB Augmentation): ""
*InstalledMemory 160MB/160MB(96MB Augmentation): ""
*InstalledMemory 192MB/192MB(128MB Augmentation): ""
*InstalledMemory 224MB/224MB(160MB Augmentation): ""
*InstalledMemory 256MB/256MB(192MB Augmentation): ""
*InstalledMemory 320MB/320MB(256MB Augmentation): ""
*InstalledMemory 352MB/352MB(288MB Augmentation): ""
*InstalledMemory 384MB/384MB(320MB Augmentation): ""
*InstalledMemory 448MB/448MB(384MB Augmentation): ""
*InstalledMemory 576MB/576MB(512MB Augmentation): ""
*?InstalledMemory: "
save
currentsystemparams /RamSize get
524288 div ceiling cvi 2 div cvi
/vmsize 20 string def
vmsize cvs print (MB) print (\n) print flush
restore"
*End
*CloseUI: *InstalledMemory
*CloseGroup: InstallableOptions
*% Virtual Memory
*FreeVM: "32000000"
*VMOption 64MB: "32000000"
*VMOption 96MB: "32000000"
*VMOption 128MB: "32000000"
*VMOption 160MB: "32000000"
*VMOption 192MB: "32000000"
*VMOption 224MB: "32000000"
*VMOption 256MB: "32000000"
*VMOption 320MB: "32000000"
*VMOption 352MB: "32000000"
*VMOption 384MB: "32000000"
*VMOption 448MB: "32000000"
*VMOption 576MB: "32000000"
*% Option Device Constraints=====
*UIConstraints: *Option17 None *Option47 MB1
*UIConstraints: *Option17 None *Option22 PN1
*UIConstraints: *Option17 DF73 *Option47 MB1
*UIConstraints: *Option17 DF73 *Option22 PN1
*UIConstraints: *Option17 DF75 *Option47 MB1
*UIConstraints: *Option47 MB1 *Option17 None
*UIConstraints: *Option47 MB1 *Option17 DF73
*UIConstraints: *Option47 MB1 *Option17 DF75
*UIConstraints: *Option22 PN1 *Option17 None
*UIConstraints: *Option22 PN1 *Option17 DF73
*UIConstraints: *Option01 NONE *InputSlot LCD
*UIConstraints: *Option01 NONE *InputSlot Tray3
*UIConstraints: *Option01 NONE *InputSlot Tray4
*UIConstraints: *Option01 OF2 *InputSlot Tray3
*UIConstraints: *Option01 OF2 *InputSlot Tray4
*UIConstraints: *Option01 OF1 *InputSlot LCD
*UIConstraints: *Option17 None *OutputBin Main
*UIConstraints: *Option17 None *OutputBin Sub
*UIConstraints: *Option17 None *OutputBin Internal
*UIConstraints: *Option17 None *KMStapleMode Front1
*UIConstraints: *Option17 None *KMStapleMode Front2
*UIConstraints: *Option17 None *KMStapleMode Center1
*UIConstraints: *Option17 None *KMStapleMode Rear1
*UIConstraints: *Option17 None *Fold ON
*UIConstraints: *Option17 DF70 *OutputBin Internal
*UIConstraints: *Option17 DF70 *Fold ON
*UIConstraints: *Option17 DF70 *KCPunch autoholes
*UIConstraints: *Option17 DF70 *KMStapleMode Front2
*UIConstraints: *Option17 DF73 *OutputBin Internal
*UIConstraints: *Option17 DF73 *KMStapleMode Front1
*UIConstraints: *Option17 DF73 *KMStapleMode Front2
*UIConstraints: *Option17 DF73 *KMStapleMode Center1
*UIConstraints: *Option17 DF73 *Fold ON
*UIConstraints: *Option17 DF75 *OutputBin Internal
*UIConstraints: *Option17 DF75 *KMStapleMode Front2
*UIConstraints: *Option17 DF75 *KCPunch 2holesUS
*UIConstraints: *Option17 DF75 *KCPunch 2holesEUR
*UIConstraints: *Option17 DF75 *KCPunch 3holes
*UIConstraints: *Option17 DF75 *KCPunch 4holes
*UIConstraints: *Option37 None *OutputBin Stacker
*UIConstraints: *Option47 None *OutputBin MB1Dn
*UIConstraints: *Option47 None *OutputBin MB2Dn
*UIConstraints: *Option47 None *OutputBin MB3Dn
*UIConstraints: *Option47 None *OutputBin MB4Dn
*UIConstraints: *Option47 None *OutputBin MB5Dn
*UIConstraints: *Option47 None *OutputBin MB6Dn
*UIConstraints: *Option47 None *OutputBin MB7Dn
*UIConstraints: *Option47 None *OutputBin MB1Up
*UIConstraints: *Option47 None *OutputBin MB2Up
*UIConstraints: *Option47 None *OutputBin MB3Up
*UIConstraints: *Option47 None *OutputBin MB4Up
*UIConstraints: *Option47 None *OutputBin MB5Up
*UIConstraints: *Option47 None *OutputBin MB6Up
*UIConstraints: *Option47 None *OutputBin MB7Up
*UIConstraints: *Option22 None *KCPunch 2holesUS
*UIConstraints: *Option22 None *KCPunch 2holesEUR
*UIConstraints: *Option22 None *KCPunch 3holes
*UIConstraints: *Option22 None *KCPunch 4holes
*UIConstraints: *Option22 None *KCPunch autoholes
*% Optinal Disk Constraints=====
*UIConstraints: *Option18 None *KCCollate Temp
*UIConstraints: *Option18 None *KCCollate Perm
*UIConstraints: *Option18 None *KCCollate VMBAdmin
*UIConstraints: *Option18 None *KCCollate VMBUser01
*UIConstraints: *Option18 None *KCCollate VMBUser02
*UIConstraints: *Option18 None *KCCollate VMBUser03
*UIConstraints: *Option18 None *KCCollate VMBUser04
*UIConstraints: *Option18 None *KCCollate VMBUser05
*UIConstraints: *Option18 None *KCCollate VMBUser06
*UIConstraints: *Option18 None *KCCollate VMBUser07
*UIConstraints: *Option18 None *KCCollate VMBUser08
*UIConstraints: *Option18 None *KCCollate VMBUser09
*UIConstraints: *Option18 None *KCCollate VMBUser10
*UIConstraints: *Option18 None *KCCollate QuickCopy
*UIConstraints: *Option18 None *KCCollate ProofHold
*UIConstraints: *Option18 None *KCCollate JobStorage
*UIConstraints: *Option18 None *KCBooklet LeftOpen
*UIConstraints: *Option18 None *KCBooklet RightOpen
*UIConstraints: *Option18 RAMDisk *KCCollate Temp
*UIConstraints: *Option18 RAMDisk *KCCollate Perm
*UIConstraints: *Option18 RAMDisk *KCCollate VMBAdmin
*UIConstraints: *Option18 RAMDisk *KCCollate VMBUser01
*UIConstraints: *Option18 RAMDisk *KCCollate VMBUser02
*UIConstraints: *Option18 RAMDisk *KCCollate VMBUser03
*UIConstraints: *Option18 RAMDisk *KCCollate VMBUser04
*UIConstraints: *Option18 RAMDisk *KCCollate VMBUser05
*UIConstraints: *Option18 RAMDisk *KCCollate VMBUser06
*UIConstraints: *Option18 RAMDisk *KCCollate VMBUser07
*UIConstraints: *Option18 RAMDisk *KCCollate VMBUser08
*UIConstraints: *Option18 RAMDisk *KCCollate VMBUser09
*UIConstraints: *Option18 RAMDisk *KCCollate VMBUser10
*UIConstraints: *Option18 RAMDisk *KCCollate QuickCopy
*%InputSlot-PageSize Constraints=====
*UIConstraints: *InputSlot Tray1 *PageSize A6
*UIConstraints: *InputSlot Tray1 *PageSize B6
*UIConstraints: *InputSlot Tray1 *PageSize Executive
*UIConstraints: *InputSlot Tray1 *PageSize EnvC4
*UIConstraints: *InputSlot Tray1 *PageSize EnvC5
*UIConstraints: *InputSlot Tray1 *PageSize EnvPersonal
*UIConstraints: *InputSlot Tray1 *PageSize ISOB5
*UIConstraints: *InputSlot Tray1 *PageSize P8K
*UIConstraints: *InputSlot Tray1 *PageSize P16K
*UIConstraints: *InputSlot Tray1 *CustomPageSize
*UIConstraints: *InputSlot Tray1 *PageSize Env9
*UIConstraints: *InputSlot Tray1 *PageSize Env10
*UIConstraints: *InputSlot Tray1 *PageSize EnvDL
*UIConstraints: *InputSlot Tray1 *PageSize EnvMonarch
*UIConstraints: *InputSlot Tray2 *PageSize A6
*UIConstraints: *InputSlot Tray2 *PageSize B6
*UIConstraints: *InputSlot Tray2 *PageSize Executive
*UIConstraints: *InputSlot Tray2 *PageSize EnvPersonal
*UIConstraints: *InputSlot Tray2 *PageSize ISOB5
*UIConstraints: *InputSlot Tray2 *PageSize P8K
*UIConstraints: *InputSlot Tray2 *PageSize P16K
*UIConstraints: *InputSlot Tray2 *CustomPageSize
*UIConstraints: *InputSlot Tray2 *PageSize Env9
*UIConstraints: *InputSlot Tray2 *PageSize Env10
*UIConstraints: *InputSlot Tray2 *PageSize EnvMonarch
*UIConstraints: *InputSlot Tray2 *PageSize EnvDL
*UIConstraints: *InputSlot Tray2 *PageSize EnvC4
*UIConstraints: *InputSlot Tray2 *PageSize EnvC5
*UIConstraints: *InputSlot Tray3 *PageSize A6
*UIConstraints: *InputSlot Tray3 *PageSize B6
*UIConstraints: *InputSlot Tray3 *PageSize Executive
*UIConstraints: *InputSlot Tray3 *PageSize EnvPersonal
*UIConstraints: *InputSlot Tray3 *PageSize ISOB5
*UIConstraints: *InputSlot Tray3 *PageSize P8K
*UIConstraints: *InputSlot Tray3 *PageSize P16K
*UIConstraints: *InputSlot Tray3 *CustomPageSize
*UIConstraints: *InputSlot Tray3 *PageSize Env9
*UIConstraints: *InputSlot Tray3 *PageSize Env10
*UIConstraints: *InputSlot Tray3 *PageSize EnvMonarch
*UIConstraints: *InputSlot Tray3 *PageSize EnvDL
*UIConstraints: *InputSlot Tray3 *PageSize EnvC4
*UIConstraints: *InputSlot Tray3 *PageSize EnvC5
*UIConstraints: *InputSlot Tray4 *PageSize A6
*UIConstraints: *InputSlot Tray4 *PageSize B6
*UIConstraints: *InputSlot Tray4 *PageSize Executive
*UIConstraints: *InputSlot Tray4 *PageSize EnvPersonal
*UIConstraints: *InputSlot Tray4 *PageSize ISOB5
*UIConstraints: *InputSlot Tray4 *PageSize P8K
*UIConstraints: *InputSlot Tray4 *PageSize P16K
*UIConstraints: *InputSlot Tray4 *CustomPageSize
*UIConstraints: *InputSlot Tray4 *PageSize Env9
*UIConstraints: *InputSlot Tray4 *PageSize Env10
*UIConstraints: *InputSlot Tray4 *PageSize EnvMonarch
*UIConstraints: *InputSlot Tray4 *PageSize EnvDL
*UIConstraints: *InputSlot Tray4 *PageSize EnvC4
*UIConstraints: *InputSlot Tray4 *PageSize EnvC5
*UIConstraints: *InputSlot LCD *PageSize A3
*UIConstraints: *InputSlot LCD *PageSize A5
*UIConstraints: *InputSlot LCD *PageSize A6
*UIConstraints: *InputSlot LCD *PageSize B4
*UIConstraints: *InputSlot LCD *PageSize B6
*UIConstraints: *InputSlot LCD *PageSize OficioII
*UIConstraints: *InputSlot LCD *PageSize Folio
*UIConstraints: *InputSlot LCD *PageSize Legal
*UIConstraints: *InputSlot LCD *PageSize Tabloid
*UIConstraints: *InputSlot LCD *PageSize Executive
*UIConstraints: *InputSlot LCD *PageSize Statement
*UIConstraints: *InputSlot LCD *PageSize EnvPersonal
*UIConstraints: *InputSlot LCD *PageSize ISOB5
*UIConstraints: *InputSlot LCD *PageSize P8K
*UIConstraints: *InputSlot LCD *PageSize P16K
*UIConstraints: *InputSlot LCD *CustomPageSize
*UIConstraints: *InputSlot LCD *PageSize Env9
*UIConstraints: *InputSlot LCD *PageSize Env10
*UIConstraints: *InputSlot LCD *PageSize EnvMonarch
*UIConstraints: *InputSlot LCD *PageSize EnvDL
*UIConstraints: *InputSlot LCD *PageSize EnvC4
*UIConstraints: *InputSlot LCD *PageSize EnvC5
*UIConstraints: *PageSize A6 *InputSlot Tray1
*UIConstraints: *PageSize B6 *InputSlot Tray1
*UIConstraints: *PageSize Executive *InputSlot Tray1
*UIConstraints: *PageSize EnvC4 *InputSlot Tray1
*UIConstraints: *PageSize EnvC5 *InputSlot Tray1
*UIConstraints: *PageSize EnvPersonal *InputSlot Tray1
*UIConstraints: *PageSize ISOB5 *InputSlot Tray1
*UIConstraints: *PageSize P8K *InputSlot Tray1
*UIConstraints: *PageSize P16K *InputSlot Tray1
*UIConstraints: *CustomPageSize *InputSlot Tray1
*UIConstraints: *PageSize Env9 *InputSlot Tray1
*UIConstraints: *PageSize Env10 *InputSlot Tray1
*UIConstraints: *PageSize EnvDL *InputSlot Tray1
*UIConstraints: *PageSize EnvMonarch *InputSlot Tray1
*UIConstraints: *PageSize A6 *InputSlot Tray2
*UIConstraints: *PageSize B6 *InputSlot Tray2
*UIConstraints: *PageSize Executive *InputSlot Tray2
*UIConstraints: *PageSize EnvC4 *InputSlot Tray2
*UIConstraints: *PageSize EnvC5 *InputSlot Tray2
*UIConstraints: *PageSize EnvPersonal *InputSlot Tray2
*UIConstraints: *PageSize ISOB5 *InputSlot Tray2
*UIConstraints: *PageSize P8K *InputSlot Tray2
*UIConstraints: *PageSize P16K *InputSlot Tray2
*UIConstraints: *CustomPageSize *InputSlot Tray2
*UIConstraints: *PageSize Env9 *InputSlot Tray2
*UIConstraints: *PageSize Env10 *InputSlot Tray2
*UIConstraints: *PageSize EnvDL *InputSlot Tray2
*UIConstraints: *PageSize EnvMonarch *InputSlot Tray2
*UIConstraints: *PageSize A6 *InputSlot Tray3
*UIConstraints: *PageSize B6 *InputSlot Tray3
*UIConstraints: *PageSize Executive *InputSlot Tray3
*UIConstraints: *PageSize EnvC4 *InputSlot Tray3
*UIConstraints: *PageSize EnvC5 *InputSlot Tray3
*UIConstraints: *PageSize EnvPersonal *InputSlot Tray3
*UIConstraints: *PageSize ISOB5 *InputSlot Tray3
*UIConstraints: *PageSize P8K *InputSlot Tray3
*UIConstraints: *PageSize P16K *InputSlot Tray3
*UIConstraints: *CustomPageSize *InputSlot Tray3
*UIConstraints: *PageSize Env9 *InputSlot Tray3
*UIConstraints: *PageSize Env10 *InputSlot Tray3
*UIConstraints: *PageSize EnvDL *InputSlot Tray3
*UIConstraints: *PageSize EnvMonarch *InputSlot Tray3
*UIConstraints: *PageSize A6 *InputSlot Tray4
*UIConstraints: *PageSize B6 *InputSlot Tray4
*UIConstraints: *PageSize Executive *InputSlot Tray4
*UIConstraints: *PageSize EnvC4 *InputSlot Tray4
*UIConstraints: *PageSize EnvC5 *InputSlot Tray4
*UIConstraints: *PageSize EnvPersonal *InputSlot Tray4
*UIConstraints: *PageSize ISOB5 *InputSlot Tray4
*UIConstraints: *PageSize P8K *InputSlot Tray4
*UIConstraints: *PageSize P16K *InputSlot Tray4
*UIConstraints: *CustomPageSize *InputSlot Tray4
*UIConstraints: *PageSize Env9 *InputSlot Tray4
*UIConstraints: *PageSize Env10 *InputSlot Tray4
*UIConstraints: *PageSize EnvDL *InputSlot Tray4
*UIConstraints: *PageSize EnvMonarch *InputSlot Tray4
*UIConstraints: *PageSize A3 *InputSlot LCD
*UIConstraints: *PageSize A5 *InputSlot LCD
*UIConstraints: *PageSize A6 *InputSlot LCD
*UIConstraints: *PageSize B4 *InputSlot LCD
*UIConstraints: *PageSize B6 *InputSlot LCD
*UIConstraints: *PageSize OficioII *InputSlot LCD
*UIConstraints: *PageSize Folio *InputSlot LCD
*UIConstraints: *PageSize Legal *InputSlot LCD
*UIConstraints: *PageSize Tabloid *InputSlot LCD
*UIConstraints: *PageSize Executive *InputSlot LCD
*UIConstraints: *PageSize Statement *InputSlot LCD
*UIConstraints: *PageSize EnvPersonal *InputSlot LCD
*UIConstraints: *PageSize ISOB5 *InputSlot LCD
*UIConstraints: *PageSize P8K *InputSlot LCD
*UIConstraints: *PageSize P16K *InputSlot LCD
*UIConstraints: *CustomPageSize *InputSlot LCD
*UIConstraints: *PageSize Env9 *InputSlot LCD
*UIConstraints: *PageSize Env10 *InputSlot LCD
*UIConstraints: *PageSize EnvMonarch *InputSlot LCD
*UIConstraints: *PageSize EnvDL *InputSlot LCD
*UIConstraints: *PageSize EnvC4 *InputSlot LCD
*UIConstraints: *PageSize EnvC5 *InputSlot LCD
*% Duplex-PageSize Constraints=====
*UIConstraints: *PageSize A6 *Duplex DuplexTumble
*UIConstraints: *PageSize B6 *Duplex DuplexTumble
*UIConstraints: *PageSize EnvPersonal *Duplex DuplexTumble
*UIConstraints: *PageSize P8K *Duplex DuplexTumble
*UIConstraints: *PageSize P16K *Duplex DuplexTumble
*UIConstraints: *CustomPageSize *Duplex DuplexTumble
*UIConstraints: *PageSize EnvC4 *Duplex DuplexTumble
*UIConstraints: *PageSize EnvC5 *Duplex DuplexTumble
*UIConstraints: *PageSize Env9 *Duplex DuplexTumble
*UIConstraints: *PageSize Env10 *Duplex DuplexTumble
*UIConstraints: *PageSize EnvDL *Duplex DuplexTumble
*UIConstraints: *PageSize EnvMonarch *Duplex DuplexTumble
*UIConstraints: *PageSize A6 *Duplex DuplexNoTumble
*UIConstraints: *PageSize B6 *Duplex DuplexNoTumble
*UIConstraints: *PageSize EnvPersonal *Duplex DuplexNoTumble
*UIConstraints: *PageSize P8K *Duplex DuplexNoTumble
*UIConstraints: *PageSize P16K *Duplex DuplexNoTumble
*UIConstraints: *CustomPageSize *Duplex DuplexNoTumble
*UIConstraints: *PageSize EnvC4 *Duplex DuplexNoTumble
*UIConstraints: *PageSize EnvC5 *Duplex DuplexNoTumble
*UIConstraints: *PageSize Env9 *Duplex DuplexNoTumble
*UIConstraints: *PageSize Env10 *Duplex DuplexNoTumble
*UIConstraints: *PageSize EnvDL *Duplex DuplexNoTumble
*UIConstraints: *PageSize EnvMonarch *Duplex DuplexNoTumble
*UIConstraints: *Duplex *PageSize A6
*UIConstraints: *Duplex *PageSize B6
*UIConstraints: *Duplex *PageSize EnvPersonal
*UIConstraints: *Duplex *PageSize P8K
*UIConstraints: *Duplex *PageSize P16K
*UIConstraints: *Duplex *CustomPageSize
*UIConstraints: *Duplex *PageSize EnvC4
*UIConstraints: *Duplex *PageSize EnvC5
*UIConstraints: *Duplex *PageSize Env9
*UIConstraints: *Duplex *PageSize Env10
*UIConstraints: *Duplex *PageSize EnvDL
*UIConstraints: *Duplex *PageSize EnvMonarch
*%Finish - PageSize Constraints=====
*UIConstraints: *PageSize A6 *OutputBin Main
*UIConstraints: *PageSize B6 *OutputBin Main
*UIConstraints: *PageSize Executive *OutputBin Main
*UIConstraints: *PageSize EnvC4 *OutputBin Main
*UIConstraints: *PageSize EnvPersonal *OutputBin Main
*UIConstraints: *PageSize EnvC5 *OutputBin Main
*UIConstraints: *PageSize ISOB5 *OutputBin Main
*UIConstraints: *PageSize P8K *OutputBin Main
*UIConstraints: *PageSize P16K *OutputBin Main
*UIConstraints: *CustomPageSize *OutputBin Main
*UIConstraints: *PageSize Env9 *OutputBin Main
*UIConstraints: *PageSize Env10 *OutputBin Main
*UIConstraints: *PageSize EnvDL *OutputBin Main
*UIConstraints: *PageSize EnvMonarch *OutputBin Main
*UIConstraints: *PageSize OficioII *OutputBin Main
*UIConstraints: *OutputBin Main *PageSize A6
*UIConstraints: *OutputBin Main *PageSize B6
*UIConstraints: *OutputBin Main *PageSize Executive
*UIConstraints: *OutputBin Main *PageSize ISOB5
*UIConstraints: *OutputBin Main *PageSize P8K
*UIConstraints: *OutputBin Main *PageSize P16K
*UIConstraints: *OutputBin Main *CustomPageSize
*UIConstraints: *OutputBin Main *PageSize Env9
*UIConstraints: *OutputBin Main *PageSize EnvC4
*UIConstraints: *OutputBin Main *PageSize EnvC5
*UIConstraints: *OutputBin Main *PageSize EnvPersonal
*UIConstraints: *OutputBin Main *PageSize Env10
*UIConstraints: *OutputBin Main *PageSize EnvDL
*UIConstraints: *OutputBin Main *PageSize EnvMonarch
*UIConstraints: *OutputBin Main *PageSize OficioII
*UIConstraints: *PageSize Executive *OutputBin Sub
*UIConstraints: *PageSize EnvC4 *OutputBin Sub
*UIConstraints: *PageSize EnvPersonal *OutputBin Sub
*UIConstraints: *PageSize EnvC5 *OutputBin Sub
*UIConstraints: *PageSize ISOB5 *OutputBin Sub
*UIConstraints: *PageSize P8K *OutputBin Sub
*UIConstraints: *PageSize P16K *OutputBin Sub
*UIConstraints: *CustomPageSize *OutputBin Sub
*UIConstraints: *PageSize Env9 *OutputBin Sub
*UIConstraints: *PageSize Env10 *OutputBin Sub
*UIConstraints: *PageSize EnvDL *OutputBin Sub
*UIConstraints: *PageSize EnvMonarch *OutputBin Sub
*UIConstraints: *PageSize OficioII *OutputBin Sub
*UIConstraints: *PageSize A6 *OutputBin Internal
*UIConstraints: *PageSize B6 *OutputBin Internal
*UIConstraints: *PageSize Executive *OutputBin Internal
*UIConstraints: *PageSize ISOB5 *OutputBin Internal
*UIConstraints: *PageSize P8K *OutputBin Internal
*UIConstraints: *PageSize P16K *OutputBin Internal
*UIConstraints: *CustomPageSize *OutputBin Internal
*UIConstraints: *PageSize Env9 *OutputBin Internal
*UIConstraints: *PageSize Env10 *OutputBin Internal
*UIConstraints: *PageSize EnvC4 *OutputBin Internal
*UIConstraints: *PageSize EnvPersonal *OutputBin Internal
*UIConstraints: *PageSize EnvC5 *OutputBin Internal
*UIConstraints: *PageSize EnvDL *OutputBin Internal
*UIConstraints: *PageSize EnvMonarch *OutputBin Internal
*UIConstraints: *PageSize OficioII *OutputBin Internal
*UIConstraints: *OutputBin Internal *PageSize A6
*UIConstraints: *OutputBin Internal *PageSize B6
*UIConstraints: *OutputBin Internal *PageSize Executive
*UIConstraints: *OutputBin Internal *PageSize ISOB5
*UIConstraints: *OutputBin Internal *PageSize P8K
*UIConstraints: *OutputBin Internal *PageSize P16K
*UIConstraints: *OutputBin Internal *CustomPageSize
*UIConstraints: *OutputBin Internal *PageSize Env9
*UIConstraints: *OutputBin Internal *PageSize EnvC4
*UIConstraints: *OutputBin Internal *PageSize EnvC5
*UIConstraints: *OutputBin Internal *PageSize EnvPersonal
*UIConstraints: *OutputBin Internal *PageSize Env10
*UIConstraints: *OutputBin Internal *PageSize EnvDL
*UIConstraints: *OutputBin Internal *PageSize EnvMonarch
*UIConstraints: *OutputBin Internal *PageSize OficioII
*UIConstraints: *PageSize A6 *OutputBin Stacker
*UIConstraints: *PageSize B6 *OutputBin Stacker
*UIConstraints: *PageSize Executive *OutputBin Stacker
*UIConstraints: *PageSize P8K *OutputBin Stacker
*UIConstraints: *PageSize P16K *OutputBin Stacker
*UIConstraints: *CustomPageSize *OutputBin Stacker
*UIConstraints: *PageSize Env9 *OutputBin Stacker
*UIConstraints: *PageSize EnvC4 *OutputBin Stacker
*UIConstraints: *PageSize EnvPersonal *OutputBin Stacker
*UIConstraints: *PageSize EnvC5 *OutputBin Stacker
*UIConstraints: *PageSize ISOB5 *OutputBin Stacker
*UIConstraints: *PageSize Env10 *OutputBin Stacker
*UIConstraints: *PageSize EnvDL *OutputBin Stacker
*UIConstraints: *PageSize EnvMonarch *OutputBin Stacker
*UIConstraints: *PageSize OficioII *OutputBin Stacker
*UIConstraints: *OutputBin Stacker *PageSize A6
*UIConstraints: *OutputBin Stacker *PageSize B6
*UIConstraints: *OutputBin Stacker *PageSize Executive
*UIConstraints: *OutputBin Stacker *PageSize ISOB5
*UIConstraints: *OutputBin Stacker *PageSize P8K
*UIConstraints: *OutputBin Stacker *PageSize P16K
*UIConstraints: *OutputBin Stacker *CustomPageSize
*UIConstraints: *OutputBin Stacker *PageSize Env9
*UIConstraints: *OutputBin Stacker *PageSize EnvC4
*UIConstraints: *OutputBin Stacker *PageSize EnvC5
*UIConstraints: *OutputBin Stacker *PageSize EnvPersonal
*UIConstraints: *OutputBin Stacker *PageSize Env10
*UIConstraints: *OutputBin Stacker *PageSize EnvDL
*UIConstraints: *OutputBin Stacker *PageSize EnvMonarch
*UIConstraints: *OutputBin Stacker *PageSize OficioII
*UIConstraints: *PageSize Executive *OutputBin MB1Dn
*UIConstraints: *PageSize EnvC4 *OutputBin MB1Dn
*UIConstraints: *PageSize EnvPersonal *OutputBin MB1Dn
*UIConstraints: *PageSize EnvC5 *OutputBin MB1Dn
*UIConstraints: *PageSize ISOB5 *OutputBin MB1Dn
*UIConstraints: *PageSize P8K *OutputBin MB1Dn
*UIConstraints: *PageSize P16K *OutputBin MB1Dn
*UIConstraints: *CustomPageSize *OutputBin MB1Dn
*UIConstraints: *PageSize Env9 *OutputBin MB1Dn
*UIConstraints: *PageSize Env10 *OutputBin MB1Dn
*UIConstraints: *PageSize EnvDL *OutputBin MB1Dn
*UIConstraints: *PageSize EnvMonarch *OutputBin MB1Dn
*UIConstraints: *PageSize OficioII *OutputBin MB1Dn
*UIConstraints: *PageSize Executive *OutputBin MB1Up
*UIConstraints: *PageSize EnvC4 *OutputBin MB1Up
*UIConstraints: *PageSize EnvPersonal *OutputBin MB1Up
*UIConstraints: *PageSize EnvC5 *OutputBin MB1Up
*UIConstraints: *PageSize ISOB5 *OutputBin MB1Up
*UIConstraints: *PageSize P8K *OutputBin MB1Up
*UIConstraints: *PageSize P16K *OutputBin MB1Up
*UIConstraints: *CustomPageSize *OutputBin MB1Up
*UIConstraints: *PageSize Env9 *OutputBin MB1Up
*UIConstraints: *PageSize Env10 *OutputBin MB1Up
*UIConstraints: *PageSize EnvDL *OutputBin MB1Up
*UIConstraints: *PageSize EnvMonarch *OutputBin MB1Up
*UIConstraints: *PageSize OficioII *OutputBin MB1Up
*UIConstraints: *PageSize Executive *OutputBin MB2Dn
*UIConstraints: *PageSize EnvC4 *OutputBin MB2Dn
*UIConstraints: *PageSize EnvPersonal *OutputBin MB2Dn
*UIConstraints: *PageSize EnvC5 *OutputBin MB2Dn
*UIConstraints: *PageSize ISOB5 *OutputBin MB2Dn
*UIConstraints: *PageSize P8K *OutputBin MB2Dn
*UIConstraints: *PageSize P16K *OutputBin MB2Dn
*UIConstraints: *CustomPageSize *OutputBin MB2Dn
*UIConstraints: *PageSize Env9 *OutputBin MB2Dn
*UIConstraints: *PageSize Env10 *OutputBin MB2Dn
*UIConstraints: *PageSize EnvDL *OutputBin MB2Dn
*UIConstraints: *PageSize EnvMonarch *OutputBin MB2Dn
*UIConstraints: *PageSize OficioII *OutputBin MB2Dn
*UIConstraints: *PageSize Executive *OutputBin MB2Up
*UIConstraints: *PageSize EnvC4 *OutputBin MB2Up
*UIConstraints: *PageSize EnvPersonal *OutputBin MB2Up
*UIConstraints: *PageSize EnvC5 *OutputBin MB2Up
*UIConstraints: *PageSize ISOB5 *OutputBin MB2Up
*UIConstraints: *PageSize P8K *OutputBin MB2Up
*UIConstraints: *PageSize P16K *OutputBin MB2Up
*UIConstraints: *CustomPageSize *OutputBin MB2Up
*UIConstraints: *PageSize Env9 *OutputBin MB2Up
*UIConstraints: *PageSize Env10 *OutputBin MB2Up
*UIConstraints: *PageSize EnvDL *OutputBin MB2Up
*UIConstraints: *PageSize EnvMonarch *OutputBin MB2Up
*UIConstraints: *PageSize OficioII *OutputBin MB2Up
*UIConstraints: *PageSize Executive *OutputBin MB3Dn
*UIConstraints: *PageSize EnvC4 *OutputBin MB3Dn
*UIConstraints: *PageSize EnvPersonal *OutputBin MB3Dn
*UIConstraints: *PageSize EnvC5 *OutputBin MB3Dn
*UIConstraints: *PageSize ISOB5 *OutputBin MB3Dn
*UIConstraints: *PageSize P8K *OutputBin MB3Dn
*UIConstraints: *PageSize P16K *OutputBin MB3Dn
*UIConstraints: *CustomPageSize *OutputBin MB3Dn
*UIConstraints: *PageSize Env9 *OutputBin MB3Dn
*UIConstraints: *PageSize Env10 *OutputBin MB3Dn
*UIConstraints: *PageSize EnvDL *OutputBin MB3Dn
*UIConstraints: *PageSize EnvMonarch *OutputBin MB3Dn
*UIConstraints: *PageSize OficioII *OutputBin MB3Dn
*UIConstraints: *PageSize Executive *OutputBin MB3Up
*UIConstraints: *PageSize EnvC4 *OutputBin MB3Up
*UIConstraints: *PageSize EnvPersonal *OutputBin MB3Up
*UIConstraints: *PageSize EnvC5 *OutputBin MB3Up
*UIConstraints: *PageSize ISOB5 *OutputBin MB3Up
*UIConstraints: *PageSize P8K *OutputBin MB3Up
*UIConstraints: *PageSize P16K *OutputBin MB3Up
*UIConstraints: *CustomPageSize *OutputBin MB3Up
*UIConstraints: *PageSize Env9 *OutputBin MB3Up
*UIConstraints: *PageSize Env10 *OutputBin MB3Up
*UIConstraints: *PageSize EnvDL *OutputBin MB3Up
*UIConstraints: *PageSize EnvMonarch *OutputBin MB3Up
*UIConstraints: *PageSize OficioII *OutputBin MB3Up
*UIConstraints: *PageSize Executive *OutputBin MB4Dn
*UIConstraints: *PageSize EnvC4 *OutputBin MB4Dn
*UIConstraints: *PageSize EnvPersonal *OutputBin MB4Dn
*UIConstraints: *PageSize EnvC5 *OutputBin MB4Dn
*UIConstraints: *PageSize ISOB5 *OutputBin MB4Dn
*UIConstraints: *PageSize P8K *OutputBin MB4Dn
*UIConstraints: *PageSize P16K *OutputBin MB4Dn
*UIConstraints: *CustomPageSize *OutputBin MB4Dn
*UIConstraints: *PageSize Env9 *OutputBin MB4Dn
*UIConstraints: *PageSize Env10 *OutputBin MB4Dn
*UIConstraints: *PageSize EnvDL *OutputBin MB4Dn
*UIConstraints: *PageSize EnvMonarch *OutputBin MB4Dn
*UIConstraints: *PageSize OficioII *OutputBin MB4Dn
*UIConstraints: *PageSize Executive *OutputBin MB4Up
*UIConstraints: *PageSize EnvC4 *OutputBin MB4Up
*UIConstraints: *PageSize EnvPersonal *OutputBin MB4Up
*UIConstraints: *PageSize EnvC5 *OutputBin MB4Up
*UIConstraints: *PageSize ISOB5 *OutputBin MB4Up
*UIConstraints: *PageSize P8K *OutputBin MB4Up
*UIConstraints: *PageSize P16K *OutputBin MB4Up
*UIConstraints: *CustomPageSize *OutputBin MB4Up
*UIConstraints: *PageSize Env9 *OutputBin MB4Up
*UIConstraints: *PageSize Env10 *OutputBin MB4Up
*UIConstraints: *PageSize EnvDL *OutputBin MB4Up
*UIConstraints: *PageSize EnvMonarch *OutputBin MB4Up
*UIConstraints: *PageSize OficioII *OutputBin MB4Up
*UIConstraints: *PageSize Executive *OutputBin MB5Dn
*UIConstraints: *PageSize EnvC4 *OutputBin MB5Dn
*UIConstraints: *PageSize EnvPersonal *OutputBin MB5Dn
*UIConstraints: *PageSize EnvC5 *OutputBin MB5Dn
*UIConstraints: *PageSize ISOB5 *OutputBin MB5Dn
*UIConstraints: *PageSize P8K *OutputBin MB5Dn
*UIConstraints: *PageSize P16K *OutputBin MB5Dn
*UIConstraints: *CustomPageSize *OutputBin MB5Dn
*UIConstraints: *PageSize Env9 *OutputBin MB5Dn
*UIConstraints: *PageSize Env10 *OutputBin MB5Dn
*UIConstraints: *PageSize EnvDL *OutputBin MB5Dn
*UIConstraints: *PageSize EnvMonarch *OutputBin MB5Dn
*UIConstraints: *PageSize OficioII *OutputBin MB5Dn
*UIConstraints: *PageSize Executive *OutputBin MB5Up
*UIConstraints: *PageSize EnvC4 *OutputBin MB5Up
*UIConstraints: *PageSize EnvPersonal *OutputBin MB5Up
*UIConstraints: *PageSize EnvC5 *OutputBin MB5Up
*UIConstraints: *PageSize ISOB5 *OutputBin MB5Up
*UIConstraints: *PageSize P8K *OutputBin MB5Up
*UIConstraints: *PageSize P16K *OutputBin MB5Up
*UIConstraints: *CustomPageSize *OutputBin MB5Up
*UIConstraints: *PageSize Env9 *OutputBin MB5Up
*UIConstraints: *PageSize Env10 *OutputBin MB5Up
*UIConstraints: *PageSize EnvDL *OutputBin MB5Up
*UIConstraints: *PageSize EnvMonarch *OutputBin MB5Up
*UIConstraints: *PageSize OficioII *OutputBin MB5Up
*UIConstraints: *PageSize Executive *OutputBin MB6Dn
*UIConstraints: *PageSize EnvC4 *OutputBin MB6Dn
*UIConstraints: *PageSize EnvPersonal *OutputBin MB6Dn
*UIConstraints: *PageSize EnvC5 *OutputBin MB6Dn
*UIConstraints: *PageSize ISOB5 *OutputBin MB6Dn
*UIConstraints: *PageSize P8K *OutputBin MB6Dn
*UIConstraints: *PageSize P16K *OutputBin MB6Dn
*UIConstraints: *CustomPageSize *OutputBin MB6Dn
*UIConstraints: *PageSize Env9 *OutputBin MB6Dn
*UIConstraints: *PageSize Env10 *OutputBin MB6Dn
*UIConstraints: *PageSize EnvDL *OutputBin MB6Dn
*UIConstraints: *PageSize EnvMonarch *OutputBin MB6Dn
*UIConstraints: *PageSize OficioII *OutputBin MB6Dn
*UIConstraints: *PageSize Executive *OutputBin MB6Up
*UIConstraints: *PageSize EnvC4 *OutputBin MB6Up
*UIConstraints: *PageSize EnvPersonal *OutputBin MB6Up
*UIConstraints: *PageSize EnvC5 *OutputBin MB6Up
*UIConstraints: *PageSize ISOB5 *OutputBin MB6Up
*UIConstraints: *PageSize P8K *OutputBin MB6Up
*UIConstraints: *PageSize P16K *OutputBin MB6Up
*UIConstraints: *CustomPageSize *OutputBin MB6Up
*UIConstraints: *PageSize Env9 *OutputBin MB6Up
*UIConstraints: *PageSize Env10 *OutputBin MB6Up
*UIConstraints: *PageSize EnvDL *OutputBin MB6Up
*UIConstraints: *PageSize EnvMonarch *OutputBin MB6Up
*UIConstraints: *PageSize OficioII *OutputBin MB6Up
*UIConstraints: *PageSize Executive *OutputBin MB7Dn
*UIConstraints: *PageSize EnvC4 *OutputBin MB7Dn
*UIConstraints: *PageSize EnvPersonal *OutputBin MB7Dn
*UIConstraints: *PageSize EnvC5 *OutputBin MB7Dn
*UIConstraints: *PageSize ISOB5 *OutputBin MB7Dn
*UIConstraints: *PageSize P8K *OutputBin MB7Dn
*UIConstraints: *PageSize P16K *OutputBin MB7Dn
*UIConstraints: *CustomPageSize *OutputBin MB7Dn
*UIConstraints: *PageSize Env9 *OutputBin MB7Dn
*UIConstraints: *PageSize Env10 *OutputBin MB7Dn
*UIConstraints: *PageSize EnvDL *OutputBin MB7Dn
*UIConstraints: *PageSize EnvMonarch *OutputBin MB7Dn
*UIConstraints: *PageSize OficioII *OutputBin MB7Dn
*UIConstraints: *PageSize Executive *OutputBin MB7Up
*UIConstraints: *PageSize EnvC4 *OutputBin MB7Up
*UIConstraints: *PageSize EnvPersonal *OutputBin MB7Up
*UIConstraints: *PageSize EnvC5 *OutputBin MB7Up
*UIConstraints: *PageSize ISOB5 *OutputBin MB7Up
*UIConstraints: *PageSize P8K *OutputBin MB7Up
*UIConstraints: *PageSize P16K *OutputBin MB7Up
*UIConstraints: *CustomPageSize *OutputBin MB7Up
*UIConstraints: *PageSize Env9 *OutputBin MB7Up
*UIConstraints: *PageSize Env10 *OutputBin MB7Up
*UIConstraints: *PageSize EnvDL *OutputBin MB7Up
*UIConstraints: *PageSize EnvMonarch *OutputBin MB7Up
*UIConstraints: *PageSize OficioII *OutputBin MB7Up
*UIConstraints: *OutputBin MB1Dn *PageSize Executive
*UIConstraints: *OutputBin MB1Dn *PageSize ISOB5
*UIConstraints: *OutputBin MB1Dn *PageSize P8K
*UIConstraints: *OutputBin MB1Dn *PageSize P16K
*UIConstraints: *OutputBin MB1Dn *CustomPageSize
*UIConstraints: *OutputBin MB1Dn *PageSize Env9
*UIConstraints: *OutputBin MB1Dn *PageSize EnvC4
*UIConstraints: *OutputBin MB1Dn *PageSize EnvC5
*UIConstraints: *OutputBin MB1Dn *PageSize EnvPersonal
*UIConstraints: *OutputBin MB1Dn *PageSize Env10
*UIConstraints: *OutputBin MB1Dn *PageSize EnvDL
*UIConstraints: *OutputBin MB1Dn *PageSize EnvMonarch
*UIConstraints: *OutputBin MB1Dn *PageSize OficioII
*UIConstraints: *OutputBin MB1Up *PageSize Executive
*UIConstraints: *OutputBin MB1Up *PageSize ISOB5
*UIConstraints: *OutputBin MB1Up *PageSize P8K
*UIConstraints: *OutputBin MB1Up *PageSize P16K
*UIConstraints: *OutputBin MB1Up *CustomPageSize
*UIConstraints: *OutputBin MB1Up *PageSize Env9
*UIConstraints: *OutputBin MB1Up *PageSize EnvC4
*UIConstraints: *OutputBin MB1Up *PageSize EnvC5
*UIConstraints: *OutputBin MB1Up *PageSize EnvPersonal
*UIConstraints: *OutputBin MB1Up *PageSize Env10
*UIConstraints: *OutputBin MB1Up *PageSize EnvDL
*UIConstraints: *OutputBin MB1Up *PageSize EnvMonarch
*UIConstraints: *OutputBin MB1Up *PageSize OficioII
*UIConstraints: *OutputBin MB2Dn *PageSize Executive
*UIConstraints: *OutputBin MB2Dn *PageSize ISOB5
*UIConstraints: *OutputBin MB2Dn *PageSize P8K
*UIConstraints: *OutputBin MB2Dn *PageSize P16K
*UIConstraints: *OutputBin MB2Dn *CustomPageSize
*UIConstraints: *OutputBin MB2Dn *PageSize Env9
*UIConstraints: *OutputBin MB2Dn *PageSize EnvC4
*UIConstraints: *OutputBin MB2Dn *PageSize EnvC5
*UIConstraints: *OutputBin MB2Dn *PageSize EnvPersonal
*UIConstraints: *OutputBin MB2Dn *PageSize Env10
*UIConstraints: *OutputBin MB2Dn *PageSize EnvDL
*UIConstraints: *OutputBin MB2Dn *PageSize EnvMonarch
*UIConstraints: *OutputBin MB2Dn *PageSize OficioII
*UIConstraints: *OutputBin MB2Up *PageSize Executive
*UIConstraints: *OutputBin MB2Up *PageSize ISOB5
*UIConstraints: *OutputBin MB2Up *PageSize P8K
*UIConstraints: *OutputBin MB2Up *PageSize P16K
*UIConstraints: *OutputBin MB2Up *CustomPageSize
*UIConstraints: *OutputBin MB2Up *PageSize Env9
*UIConstraints: *OutputBin MB2Up *PageSize EnvC4
*UIConstraints: *OutputBin MB2Up *PageSize EnvC5
*UIConstraints: *OutputBin MB2Up *PageSize EnvPersonal
*UIConstraints: *OutputBin MB2Up *PageSize Env10
*UIConstraints: *OutputBin MB2Up *PageSize EnvDL
*UIConstraints: *OutputBin MB2Up *PageSize EnvMonarch
*UIConstraints: *OutputBin MB2Up *PageSize OficioII
*UIConstraints: *OutputBin MB3Dn *PageSize Executive
*UIConstraints: *OutputBin MB3Dn *PageSize ISOB5
*UIConstraints: *OutputBin MB3Dn *PageSize P8K
*UIConstraints: *OutputBin MB3Dn *PageSize P16K
*UIConstraints: *OutputBin MB3Dn *CustomPageSize
*UIConstraints: *OutputBin MB3Dn *PageSize Env9
*UIConstraints: *OutputBin MB3Dn *PageSize EnvC4
*UIConstraints: *OutputBin MB3Dn *PageSize EnvC5
*UIConstraints: *OutputBin MB3Dn *PageSize EnvPersonal
*UIConstraints: *OutputBin MB3Dn *PageSize Env10
*UIConstraints: *OutputBin MB3Dn *PageSize EnvDL
*UIConstraints: *OutputBin MB3Dn *PageSize EnvMonarch
*UIConstraints: *OutputBin MB3Dn *PageSize OficioII
*UIConstraints: *OutputBin MB3Up *PageSize Executive
*UIConstraints: *OutputBin MB3Up *PageSize ISOB5
*UIConstraints: *OutputBin MB3Up *PageSize P8K
*UIConstraints: *OutputBin MB3Up *PageSize P16K
*UIConstraints: *OutputBin MB3Up *CustomPageSize
*UIConstraints: *OutputBin MB3Up *PageSize P8K
*UIConstraints: *OutputBin MB3Up *PageSize P16K
*UIConstraints: *OutputBin MB3Up *CustomPageSize
*UIConstraints: *OutputBin MB3Up *PageSize Env9
*UIConstraints: *OutputBin MB3Up *PageSize EnvC4
*UIConstraints: *OutputBin MB3Up *PageSize EnvC5
*UIConstraints: *OutputBin MB3Up *PageSize EnvPersonal
*UIConstraints: *OutputBin MB3Up *PageSize Env10
*UIConstraints: *OutputBin MB3Up *PageSize EnvDL
*UIConstraints: *OutputBin MB3Up *PageSize EnvMonarch
*UIConstraints: *OutputBin MB3Up *PageSize OficioII
*UIConstraints: *OutputBin MB4Dn *PageSize Executive
*UIConstraints: *OutputBin MB4Dn *PageSize ISOB5
*UIConstraints: *OutputBin MB4Dn *PageSize P8K
*UIConstraints: *OutputBin MB4Dn *PageSize P16K
*UIConstraints: *OutputBin MB4Dn *CustomPageSize
*UIConstraints: *OutputBin MB4Dn *PageSize Env9
*UIConstraints: *OutputBin MB4Dn *PageSize EnvC4
*UIConstraints: *OutputBin MB4Dn *PageSize EnvC5
*UIConstraints: *OutputBin MB4Dn *PageSize EnvPersonal
*UIConstraints: *OutputBin MB4Dn *PageSize Env10
*UIConstraints: *OutputBin MB4Dn *PageSize EnvDL
*UIConstraints: *OutputBin MB4Dn *PageSize EnvMonarch
*UIConstraints: *OutputBin MB4Dn *PageSize OficioII
*UIConstraints: *OutputBin MB4Up *PageSize Executive
*UIConstraints: *OutputBin MB4Up *PageSize ISOB5
*UIConstraints: *OutputBin MB4Up *PageSize P8K
*UIConstraints: *OutputBin MB4Up *PageSize P16K
*UIConstraints: *OutputBin MB4Up *CustomPageSize
*UIConstraints: *OutputBin MB4Up *PageSize Env9
*UIConstraints: *OutputBin MB4Up *PageSize EnvC4
*UIConstraints: *OutputBin MB4Up *PageSize EnvC5
*UIConstraints: *OutputBin MB4Up *PageSize EnvPersonal
*UIConstraints: *OutputBin MB4Up *PageSize Env10
*UIConstraints: *OutputBin MB4Up *PageSize EnvDL
*UIConstraints: *OutputBin MB4Up *PageSize EnvMonarch
*UIConstraints: *OutputBin MB4Up *PageSize OficioII
*UIConstraints: *OutputBin MB5Dn *PageSize Executive
*UIConstraints: *OutputBin MB5Dn *PageSize ISOB5
*UIConstraints: *OutputBin MB5Dn *PageSize P8K
*UIConstraints: *OutputBin MB5Dn *PageSize P16K
*UIConstraints: *OutputBin MB5Dn *CustomPageSize
*UIConstraints: *OutputBin MB5Dn *PageSize Env9
*UIConstraints: *OutputBin MB5Dn *PageSize EnvC4
*UIConstraints: *OutputBin MB5Dn *PageSize EnvC5
*UIConstraints: *OutputBin MB5Dn *PageSize EnvPersonal
*UIConstraints: *OutputBin MB5Dn *PageSize Env10
*UIConstraints: *OutputBin MB5Dn *PageSize EnvDL
*UIConstraints: *OutputBin MB5Dn *PageSize EnvMonarch
*UIConstraints: *OutputBin MB5Dn *PageSize OficioII
*UIConstraints: *OutputBin MB5Up *PageSize Executive
*UIConstraints: *OutputBin MB5Up *PageSize ISOB5
*UIConstraints: *OutputBin MB5Up *PageSize P8K
*UIConstraints: *OutputBin MB5Up *PageSize P16K
*UIConstraints: *OutputBin MB5Up *CustomPageSize
*UIConstraints: *OutputBin MB5Up *PageSize Env9
*UIConstraints: *OutputBin MB5Up *PageSize EnvC4
*UIConstraints: *OutputBin MB5Up *PageSize EnvC5
*UIConstraints: *OutputBin MB5Up *PageSize EnvPersonal
*UIConstraints: *OutputBin MB5Up *PageSize Env10
*UIConstraints: *OutputBin MB5Up *PageSize EnvDL
*UIConstraints: *OutputBin MB5Up *PageSize EnvMonarch
*UIConstraints: *OutputBin MB5Up *PageSize OficioII
*UIConstraints: *OutputBin MB6Dn *PageSize Executive
*UIConstraints: *OutputBin MB6Dn *PageSize ISOB5
*UIConstraints: *OutputBin MB6Dn *PageSize P8K
*UIConstraints: *OutputBin MB6Dn *PageSize P16K
*UIConstraints: *OutputBin MB6Dn *CustomPageSize
*UIConstraints: *OutputBin MB6Dn *PageSize Env9
*UIConstraints: *OutputBin MB6Dn *PageSize EnvC4
*UIConstraints: *OutputBin MB6Dn *PageSize EnvC5
*UIConstraints: *OutputBin MB6Dn *PageSize EnvPersonal
*UIConstraints: *OutputBin MB6Dn *PageSize Env10
*UIConstraints: *OutputBin MB6Dn *PageSize EnvDL
*UIConstraints: *OutputBin MB6Dn *PageSize EnvMonarch
*UIConstraints: *OutputBin MB6Dn *PageSize OficioII
*UIConstraints: *OutputBin MB6Up *PageSize Executive
*UIConstraints: *OutputBin MB6Up *PageSize ISOB5
*UIConstraints: *OutputBin MB6Up *PageSize P8K
*UIConstraints: *OutputBin MB6Up *PageSize P16K
*UIConstraints: *OutputBin MB6Up *CustomPageSize
*UIConstraints: *OutputBin MB6Up *PageSize Env9
*UIConstraints: *OutputBin MB6Up *PageSize EnvC4
*UIConstraints: *OutputBin MB6Up *PageSize EnvC5
*UIConstraints: *OutputBin MB6Up *PageSize EnvPersonal
*UIConstraints: *OutputBin MB6Up *PageSize Env10
*UIConstraints: *OutputBin MB6Up *PageSize EnvDL
*UIConstraints: *OutputBin MB6Up *PageSize EnvMonarch
*UIConstraints: *OutputBin MB6Up *PageSize OficioII
*UIConstraints: *OutputBin MB7Dn *PageSize Executive
*UIConstraints: *OutputBin MB7Dn *PageSize ISOB5
*UIConstraints: *OutputBin MB7Dn *PageSize P8K
*UIConstraints: *OutputBin MB7Dn *PageSize P16K
*UIConstraints: *OutputBin MB7Dn *CustomPageSize
*UIConstraints: *OutputBin MB7Dn *PageSize Env9
*UIConstraints: *OutputBin MB7Dn *PageSize EnvC4
*UIConstraints: *OutputBin MB7Dn *PageSize EnvC5
*UIConstraints: *OutputBin MB7Dn *PageSize EnvPersonal
*UIConstraints: *OutputBin MB7Dn *PageSize Env10
*UIConstraints: *OutputBin MB7Dn *PageSize EnvDL
*UIConstraints: *OutputBin MB7Dn *PageSize EnvMonarch
*UIConstraints: *OutputBin MB7Dn *PageSize OficioII
*UIConstraints: *OutputBin MB7Up *PageSize Executive
*UIConstraints: *OutputBin MB7Up *PageSize ISOB5
*UIConstraints: *OutputBin MB7Up *PageSize P8K
*UIConstraints: *OutputBin MB7Up *PageSize P16K
*UIConstraints: *OutputBin MB7Up *CustomPageSize
*UIConstraints: *OutputBin MB7Up *PageSize Env9
*UIConstraints: *OutputBin MB7Up *PageSize EnvC4
*UIConstraints: *OutputBin MB7Up *PageSize EnvC5
*UIConstraints: *OutputBin MB7Up *PageSize EnvPersonal
*UIConstraints: *OutputBin MB7Up *PageSize Env10
*UIConstraints: *OutputBin MB7Up *PageSize EnvDL
*UIConstraints: *OutputBin MB7Up *PageSize EnvMonarch
*UIConstraints: *OutputBin MB7Up *PageSize OficioII
*%Punch - PageSize==
*UIConstraints: *KCPunch 2holesEUR *PageSize A6
*UIConstraints: *KCPunch 2holesEUR *PageSize B6
*UIConstraints: *KCPunch 2holesEUR *PageSize Executive
*UIConstraints: *KCPunch 2holesEUR *PageSize Tabloid
*UIConstraints: *KCPunch 2holesEUR *PageSize ISOB5
*UIConstraints: *KCPunch 2holesEUR *PageSize P8K
*UIConstraints: *KCPunch 2holesEUR *PageSize P16K
*UIConstraints: *KCPunch 2holesEUR *CustomPageSize
*UIConstraints: *KCPunch 2holesEUR *PageSize Env9
*UIConstraints: *KCPunch 2holesEUR *PageSize EnvC4
*UIConstraints: *KCPunch 2holesEUR *PageSize EnvC5
*UIConstraints: *KCPunch 2holesEUR *PageSize EnvPersonal
*UIConstraints: *KCPunch 2holesEUR *PageSize Env10
*UIConstraints: *KCPunch 2holesEUR *PageSize EnvDL
*UIConstraints: *KCPunch 2holesEUR *PageSize EnvMonarch
*UIConstraints: *KCPunch 2holesEUR *PageSize OficioII
*UIConstraints: *KCPunch 2holesUS *PageSize A6
*UIConstraints: *KCPunch 2holesUS *PageSize B6
*UIConstraints: *KCPunch 2holesUS *PageSize Executive
*UIConstraints: *KCPunch 2holesUS *PageSize Tabloid
*UIConstraints: *KCPunch 2holesUS *PageSize ISOB5
*UIConstraints: *KCPunch 2holesUS *PageSize P8K
*UIConstraints: *KCPunch 2holesUS *PageSize P16K
*UIConstraints: *KCPunch 2holesUS *CustomPageSize
*UIConstraints: *KCPunch 2holesUS *PageSize Env9
*UIConstraints: *KCPunch 2holesUS *PageSize EnvC4
*UIConstraints: *KCPunch 2holesUS *PageSize EnvC5
*UIConstraints: *KCPunch 2holesUS *PageSize EnvPersonal
*UIConstraints: *KCPunch 2holesUS *PageSize Env10
*UIConstraints: *KCPunch 2holesUS *PageSize EnvDL
*UIConstraints: *KCPunch 2holesUS *PageSize EnvMonarch
*UIConstraints: *KCPunch 2holesUS *PageSize OficioII
*UIConstraints: *KCPunch 3holes *PageSize A3
*UIConstraints: *KCPunch 3holes *PageSize A4
*UIConstraints: *KCPunch 3holes *PageSize A5
*UIConstraints: *KCPunch 3holes *PageSize A6
*UIConstraints: *KCPunch 3holes *PageSize B4
*UIConstraints: *KCPunch 3holes *PageSize B6
*UIConstraints: *KCPunch 3holes *PageSize B5
*UIConstraints: *KCPunch 3holes *PageSize Folio
*UIConstraints: *KCPunch 3holes *PageSize Executive
*UIConstraints: *KCPunch 3holes *PageSize Statement
*UIConstraints: *KCPunch 3holes *PageSize Legal
*UIConstraints: *KCPunch 3holes *PageSize ISOB5
*UIConstraints: *KCPunch 3holes *PageSize P8K
*UIConstraints: *KCPunch 3holes *PageSize P16K
*UIConstraints: *KCPunch 3holes *CustomPageSize
*UIConstraints: *KCPunch 3holes *PageSize Env9
*UIConstraints: *KCPunch 3holes *PageSize EnvC4
*UIConstraints: *KCPunch 3holes *PageSize EnvC5
*UIConstraints: *KCPunch 3holes *PageSize EnvPersonal
*UIConstraints: *KCPunch 3holes *PageSize Env10
*UIConstraints: *KCPunch 3holes *PageSize EnvDL
*UIConstraints: *KCPunch 3holes *PageSize EnvMonarch
*UIConstraints: *KCPunch 3holes *PageSize OficioII
*UIConstraints: *KCPunch 4holes *PageSize A5
*UIConstraints: *KCPunch 4holes *PageSize A6
*UIConstraints: *KCPunch 4holes *PageSize B4
*UIConstraints: *KCPunch 4holes *PageSize B6
*UIConstraints: *KCPunch 4holes *PageSize B5
*UIConstraints: *KCPunch 4holes *PageSize Folio
*UIConstraints: *KCPunch 4holes *PageSize Tabloid
*UIConstraints: *KCPunch 4holes *PageSize Letter
*UIConstraints: *KCPunch 4holes *PageSize Legal
*UIConstraints: *KCPunch 4holes *PageSize Executive
*UIConstraints: *KCPunch 4holes *PageSize Statement
*UIConstraints: *KCPunch 4holes *PageSize ISOB5
*UIConstraints: *KCPunch 4holes *PageSize P8K
*UIConstraints: *KCPunch 4holes *PageSize P16K
*UIConstraints: *KCPunch 4holes *CustomPageSize
*UIConstraints: *KCPunch 4holes *PageSize Env9
*UIConstraints: *KCPunch 4holes *PageSize EnvC4
*UIConstraints: *KCPunch 4holes *PageSize EnvC5
*UIConstraints: *KCPunch 4holes *PageSize EnvPersonal
*UIConstraints: *KCPunch 4holes *PageSize Env10
*UIConstraints: *KCPunch 4holes *PageSize EnvDL
*UIConstraints: *KCPunch 4holes *PageSize EnvMonarch
*UIConstraints: *KCPunch 4holes *PageSize OficioII
*UIConstraints: *KCPunch autoholes *PageSize A5
*UIConstraints: *KCPunch autoholes *PageSize A6
*UIConstraints: *KCPunch autoholes *PageSize B6
*UIConstraints: *KCPunch autoholes *PageSize Statement
*UIConstraints: *KCPunch autoholes *PageSize Executive
*UIConstraints: *KCPunch autoholes *PageSize ISOB5
*UIConstraints: *KCPunch autoholes *PageSize P8K
*UIConstraints: *KCPunch autoholes *PageSize P16K
*UIConstraints: *KCPunch autoholes *CustomPageSize
*UIConstraints: *KCPunch autoholes *PageSize Env9
*UIConstraints: *KCPunch autoholes *PageSize EnvC4
*UIConstraints: *KCPunch autoholes *PageSize EnvC5
*UIConstraints: *KCPunch autoholes *PageSize EnvPersonal
*UIConstraints: *KCPunch autoholes *PageSize Env10
*UIConstraints: *KCPunch autoholes *PageSize EnvDL
*UIConstraints: *KCPunch autoholes *PageSize EnvMonarch
*UIConstraints: *KCPunch autoholes *PageSize OficioII
*UIConstraints: *PageSize A6 *KCPunch 2holesEUR
*UIConstraints: *PageSize B6 *KCPunch 2holesEUR
*UIConstraints: *PageSize Executive *KCPunch 2holesEUR
*UIConstraints: *PageSize Tabloid *KCPunch 2holesEUR
*UIConstraints: *PageSize ISOB5 *KCPunch 2holesEUR
*UIConstraints: *PageSize P8K *KCPunch 2holesEUR
*UIConstraints: *PageSize P16K *KCPunch 2holesEUR
*UIConstraints: *CustomPageSize *KCPunch 2holesEUR
*UIConstraints: *PageSize Env9 *KCPunch 2holesEUR
*UIConstraints: *PageSize EnvC4 *KCPunch 2holesEUR
*UIConstraints: *PageSize EnvC5 *KCPunch 2holesEUR
*UIConstraints: *PageSize EnvPersonal *KCPunch 2holesEUR
*UIConstraints: *PageSize Env10 *KCPunch 2holesEUR
*UIConstraints: *PageSize EnvDL *KCPunch 2holesEUR
*UIConstraints: *PageSize EnvMonarch *KCPunch 2holesEUR
*UIConstraints: *PageSize OficioII *KCPunch 2holesEUR
*UIConstraints: *PageSize A6 *KCPunch 2holesUS
*UIConstraints: *PageSize B6 *KCPunch 2holesUS
*UIConstraints: *PageSize Executive *KCPunch 2holesUS
*UIConstraints: *PageSize Tabloid *KCPunch 2holesUS
*UIConstraints: *PageSize ISOB5 *KCPunch 2holesUS
*UIConstraints: *PageSize P8K *KCPunch 2holesUS
*UIConstraints: *PageSize P16K *KCPunch 2holesUS
*UIConstraints: *CustomPageSize *KCPunch 2holesUS
*UIConstraints: *PageSize Env9 *KCPunch 2holesUS
*UIConstraints: *PageSize EnvC4 *KCPunch 2holesUS
*UIConstraints: *PageSize EnvC5 *KCPunch 2holesUS
*UIConstraints: *PageSize EnvPersonal *KCPunch 2holesUS
*UIConstraints: *PageSize Env10 *KCPunch 2holesUS
*UIConstraints: *PageSize EnvDL *KCPunch 2holesUS
*UIConstraints: *PageSize EnvMonarch *KCPunch 2holesUS
*UIConstraints: *PageSize OficioII *KCPunch 2holesUS
*UIConstraints: *PageSize A3 *KCPunch 3holes
*UIConstraints: *PageSize A4 *KCPunch 3holes
*UIConstraints: *PageSize A5 *KCPunch 3holes
*UIConstraints: *PageSize A6 *KCPunch 3holes
*UIConstraints: *PageSize B4 *KCPunch 3holes
*UIConstraints: *PageSize B6 *KCPunch 3holes
*UIConstraints: *PageSize B5 *KCPunch 3holes
*UIConstraints: *PageSize Folio *KCPunch 3holes
*UIConstraints: *PageSize Executive *KCPunch 3holes
*UIConstraints: *PageSize Statement *KCPunch 3holes
*UIConstraints: *PageSize Legal *KCPunch 3holes
*UIConstraints: *PageSize ISOB5 *KCPunch 3holes
*UIConstraints: *PageSize P8K *KCPunch 3holes
*UIConstraints: *PageSize P16K *KCPunch 3holes
*UIConstraints: *CustomPageSize *KCPunch 3holes
*UIConstraints: *PageSize Env9 *KCPunch 3holes
*UIConstraints: *PageSize EnvC4 *KCPunch 3holes
*UIConstraints: *PageSize EnvC5 *KCPunch 3holes
*UIConstraints: *PageSize EnvPersonal *KCPunch 3holes
*UIConstraints: *PageSize Env10 *KCPunch 3holes
*UIConstraints: *PageSize EnvDL *KCPunch 3holes
*UIConstraints: *PageSize EnvMonarch *KCPunch 3holes
*UIConstraints: *PageSize OficioII *KCPunch 3holes
*UIConstraints: *PageSize A5 *KCPunch 4holes
*UIConstraints: *PageSize A6 *KCPunch 4holes
*UIConstraints: *PageSize B4 *KCPunch 4holes
*UIConstraints: *PageSize B6 *KCPunch 4holes
*UIConstraints: *PageSize B5 *KCPunch 4holes
*UIConstraints: *PageSize Folio *KCPunch 4holes
*UIConstraints: *PageSize Tabloid *KCPunch 4holes
*UIConstraints: *PageSize Letter *KCPunch 4holes
*UIConstraints: *PageSize Legal *KCPunch 4holes
*UIConstraints: *PageSize Executive *KCPunch 4holes
*UIConstraints: *PageSize Statement *KCPunch 4holes
*UIConstraints: *PageSize ISOB5 *KCPunch 4holes
*UIConstraints: *PageSize P8K *KCPunch 4holes
*UIConstraints: *PageSize P16K *KCPunch 4holes
*UIConstraints: *CustomPageSize *KCPunch 4holes
*UIConstraints: *PageSize Env9 *KCPunch 4holes
*UIConstraints: *PageSize EnvC4 *KCPunch 4holes
*UIConstraints: *PageSize EnvC5 *KCPunch 4holes
*UIConstraints: *PageSize EnvPersonal *KCPunch 4holes
*UIConstraints: *PageSize Env10 *KCPunch 4holes
*UIConstraints: *PageSize EnvDL *KCPunch 4holes
*UIConstraints: *PageSize EnvMonarch *KCPunch 4holes
*UIConstraints: *PageSize OficioII *KCPunch 4holes
*UIConstraints: *PageSize A5 *KCPunch autoholes
*UIConstraints: *PageSize A6 *KCPunch autoholes
*UIConstraints: *PageSize B6 *KCPunch autoholes
*UIConstraints: *PageSize Statement *KCPunch autoholes
*UIConstraints: *PageSize Executive *KCPunch autoholes
*UIConstraints: *PageSize ISOB5 *KCPunch autoholes
*UIConstraints: *PageSize P8K *KCPunch autoholes
*UIConstraints: *PageSize P16K *KCPunch autoholes
*UIConstraints: *CustomPageSize *KCPunch autoholes
*UIConstraints: *PageSize Env9 *KCPunch autoholes
*UIConstraints: *PageSize EnvC4 *KCPunch autoholes
*UIConstraints: *PageSize EnvC5 *KCPunch autoholes
*UIConstraints: *PageSize EnvPersonal *KCPunch autoholes
*UIConstraints: *PageSize Env10 *KCPunch autoholes
*UIConstraints: *PageSize EnvDL *KCPunch autoholes
*UIConstraints: *PageSize EnvMonarch *KCPunch autoholes
*UIConstraints: *PageSize OficioII *KCPunch autoholes
*%Staple - PageSize==
*UIConstraints: *KMStapleMode Front1 *PageSize A5
*UIConstraints: *KMStapleMode Front1 *PageSize A6
*UIConstraints: *KMStapleMode Front1 *PageSize B6
*UIConstraints: *KMStapleMode Front1 *PageSize Statement
*UIConstraints: *KMStapleMode Front1 *PageSize Executive
*UIConstraints: *KMStapleMode Front1 *PageSize ISOB5
*UIConstraints: *KMStapleMode Front1 *PageSize P8K
*UIConstraints: *KMStapleMode Front1 *PageSize P16K
*UIConstraints: *KMStapleMode Front1 *CustomPageSize
*UIConstraints: *KMStapleMode Front1 *PageSize Env9
*UIConstraints: *KMStapleMode Front1 *PageSize EnvC4
*UIConstraints: *KMStapleMode Front1 *PageSize EnvC5
*UIConstraints: *KMStapleMode Front1 *PageSize EnvPersonal
*UIConstraints: *KMStapleMode Front1 *PageSize Env10
*UIConstraints: *KMStapleMode Front1 *PageSize EnvDL
*UIConstraints: *KMStapleMode Front1 *PageSize EnvMonarch
*UIConstraints: *KMStapleMode Front1 *PageSize OficioII
*UIConstraints: *KMStapleMode Front2 *PageSize A5
*UIConstraints: *KMStapleMode Front2 *PageSize A6
*UIConstraints: *KMStapleMode Front2 *PageSize B6
*UIConstraints: *KMStapleMode Front2 *PageSize Statement
*UIConstraints: *KMStapleMode Front2 *PageSize Executive
*UIConstraints: *KMStapleMode Front2 *PageSize ISOB5
*UIConstraints: *KMStapleMode Front2 *PageSize P8K
*UIConstraints: *KMStapleMode Front2 *PageSize P16K
*UIConstraints: *KMStapleMode Front2 *CustomPageSize
*UIConstraints: *KMStapleMode Front2 *PageSize Env9
*UIConstraints: *KMStapleMode Front2 *PageSize EnvC4
*UIConstraints: *KMStapleMode Front2 *PageSize EnvC5
*UIConstraints: *KMStapleMode Front2 *PageSize EnvPersonal
*UIConstraints: *KMStapleMode Front2 *PageSize Env10
*UIConstraints: *KMStapleMode Front2 *PageSize EnvDL
*UIConstraints: *KMStapleMode Front2 *PageSize EnvMonarch
*UIConstraints: *KMStapleMode Front2 *PageSize Folio
*UIConstraints: *KMStapleMode Front2 *PageSize OficioII
*UIConstraints: *KMStapleMode Rear1 *PageSize A5
*UIConstraints: *KMStapleMode Rear1 *PageSize A6
*UIConstraints: *KMStapleMode Rear1 *PageSize B6
*UIConstraints: *KMStapleMode Rear1 *PageSize Statement
*UIConstraints: *KMStapleMode Rear1 *PageSize Executive
*UIConstraints: *KMStapleMode Rear1 *PageSize ISOB5
*UIConstraints: *KMStapleMode Rear1 *PageSize P8K
*UIConstraints: *KMStapleMode Rear1 *PageSize P16K
*UIConstraints: *KMStapleMode Rear1 *CustomPageSize
*UIConstraints: *KMStapleMode Rear1 *PageSize Env9
*UIConstraints: *KMStapleMode Rear1 *PageSize EnvC4
*UIConstraints: *KMStapleMode Rear1 *PageSize EnvC5
*UIConstraints: *KMStapleMode Rear1 *PageSize EnvPersonal
*UIConstraints: *KMStapleMode Rear1 *PageSize Env10
*UIConstraints: *KMStapleMode Rear1 *PageSize EnvDL
*UIConstraints: *KMStapleMode Rear1 *PageSize EnvMonarch
*UIConstraints: *KMStapleMode Rear1 *PageSize OficioII
*UIConstraints: *KMStapleMode Center1 *PageSize A5
*UIConstraints: *KMStapleMode Center1 *PageSize A6
*UIConstraints: *KMStapleMode Center1 *PageSize B6
*UIConstraints: *KMStapleMode Center1 *PageSize Folio
*UIConstraints: *KMStapleMode Center1 *PageSize Statement
*UIConstraints: *KMStapleMode Center1 *PageSize Executive
*UIConstraints: *KMStapleMode Center1 *PageSize ISOB5
*UIConstraints: *KMStapleMode Center1 *PageSize P8K
*UIConstraints: *KMStapleMode Center1 *PageSize P16K
*UIConstraints: *KMStapleMode Center1 *CustomPageSize
*UIConstraints: *KMStapleMode Center1 *PageSize Env9
*UIConstraints: *KMStapleMode Center1 *PageSize EnvC4
*UIConstraints: *KMStapleMode Center1 *PageSize EnvC5
*UIConstraints: *KMStapleMode Center1 *PageSize EnvPersonal
*UIConstraints: *KMStapleMode Center1 *PageSize Env10
*UIConstraints: *KMStapleMode Center1 *PageSize EnvDL
*UIConstraints: *KMStapleMode Center1 *PageSize EnvMonarch
*UIConstraints: *KMStapleMode Center1 *PageSize OficioII
*UIConstraints: *Fold ON *PageSize A6
*UIConstraints: *Fold ON *PageSize B6
*UIConstraints: *Fold ON *PageSize Folio
*UIConstraints: *Fold ON *PageSize Legal
*UIConstraints: *Fold ON *PageSize Executive
*UIConstraints: *Fold ON *PageSize ISOB5
*UIConstraints: *Fold ON *PageSize P8K
*UIConstraints: *Fold ON *PageSize P16K
*UIConstraints: *Fold ON *CustomPageSize
*UIConstraints: *Fold ON *PageSize Env9
*UIConstraints: *Fold ON *PageSize EnvC4
*UIConstraints: *Fold ON *PageSize EnvC5
*UIConstraints: *Fold ON *PageSize EnvPersonal
*UIConstraints: *Fold ON *PageSize Env10
*UIConstraints: *Fold ON *PageSize EnvDL
*UIConstraints: *Fold ON *PageSize EnvMonarch
*UIConstraints: *Fold ON *PageSize OficioII
*UIConstraints: *PageSize A5 *KMStapleMode Front1
*UIConstraints: *PageSize A6 *KMStapleMode Front1
*UIConstraints: *PageSize B6 *KMStapleMode Front1
*UIConstraints: *PageSize Statement *KMStapleMode Front1
*UIConstraints: *PageSize Executive *KMStapleMode Front1
*UIConstraints: *PageSize ISOB5 *KMStapleMode Front1
*UIConstraints: *PageSize P8K *KMStapleMode Front1
*UIConstraints: *PageSize P16K *KMStapleMode Front1
*UIConstraints: *CustomPageSize *KMStapleMode Front1
*UIConstraints: *PageSize Env9 *KMStapleMode Front1
*UIConstraints: *PageSize EnvC4 *KMStapleMode Front1
*UIConstraints: *PageSize EnvC5 *KMStapleMode Front1
*UIConstraints: *PageSize EnvPersonal *KMStapleMode Front1
*UIConstraints: *PageSize Env10 *KMStapleMode Front1
*UIConstraints: *PageSize EnvDL *KMStapleMode Front1
*UIConstraints: *PageSize EnvMonarch *KMStapleMode Front1
*UIConstraints: *PageSize OficioII *KMStapleMode Front1
*UIConstraints: *PageSize A5 *KMStapleMode Front2
*UIConstraints: *PageSize A6 *KMStapleMode Front2
*UIConstraints: *PageSize B6 *KMStapleMode Front2
*UIConstraints: *PageSize Folio *KMStapleMode Front2
*UIConstraints: *PageSize Statement *KMStapleMode Front2
*UIConstraints: *PageSize Executive *KMStapleMode Front2
*UIConstraints: *PageSize ISOB5 *KMStapleMode Front2
*UIConstraints: *PageSize P8K *KMStapleMode Front2
*UIConstraints: *PageSize P16K *KMStapleMode Front2
*UIConstraints: *CustomPageSize *KMStapleMode Front2
*UIConstraints: *PageSize Env9 *KMStapleMode Front2
*UIConstraints: *PageSize EnvC4 *KMStapleMode Front2
*UIConstraints: *PageSize EnvC5 *KMStapleMode Front2
*UIConstraints: *PageSize EnvPersonal *KMStapleMode Front2
*UIConstraints: *PageSize Env10 *KMStapleMode Front2
*UIConstraints: *PageSize EnvDL *KMStapleMode Front2
*UIConstraints: *PageSize EnvMonarch *KMStapleMode Front2
*UIConstraints: *PageSize OficioII *KMStapleMode Front2
*UIConstraints: *PageSize A5 *KMStapleMode Rear1
*UIConstraints: *PageSize A6 *KMStapleMode Rear1
*UIConstraints: *PageSize B6 *KMStapleMode Rear1
*UIConstraints: *PageSize Statement *KMStapleMode Rear1
*UIConstraints: *PageSize Executive *KMStapleMode Rear1
*UIConstraints: *PageSize ISOB5 *KMStapleMode Rear1
*UIConstraints: *PageSize P8K *KMStapleMode Rear1
*UIConstraints: *PageSize P16K *KMStapleMode Rear1
*UIConstraints: *CustomPageSize *KMStapleMode Rear1
*UIConstraints: *PageSize Env9 *KMStapleMode Rear1
*UIConstraints: *PageSize EnvC4 *KMStapleMode Rear1
*UIConstraints: *PageSize EnvC5 *KMStapleMode Rear1
*UIConstraints: *PageSize EnvPersonal *KMStapleMode Rear1
*UIConstraints: *PageSize Env10 *KMStapleMode Rear1
*UIConstraints: *PageSize EnvDL *KMStapleMode Rear1
*UIConstraints: *PageSize EnvMonarch *KMStapleMode Rear1
*UIConstraints: *PageSize OficioII *KMStapleMode Rear1
*UIConstraints: *PageSize A5 *KMStapleMode Center1
*UIConstraints: *PageSize A6 *KMStapleMode Center1
*UIConstraints: *PageSize B6 *KMStapleMode Center1
*UIConstraints: *PageSize Folio *KMStapleMode Center1
*UIConstraints: *PageSize Statement *KMStapleMode Center1
*UIConstraints: *PageSize Executive *KMStapleMode Center1
*UIConstraints: *PageSize ISOB5 *KMStapleMode Center1
*UIConstraints: *PageSize P8K *KMStapleMode Center1
*UIConstraints: *PageSize P16K *KMStapleMode Center1
*UIConstraints: *CustomPageSize *KMStapleMode Center1
*UIConstraints: *PageSize Env9 *KMStapleMode Center1
*UIConstraints: *PageSize EnvC4 *KMStapleMode Center1
*UIConstraints: *PageSize EnvC5 *KMStapleMode Center1
*UIConstraints: *PageSize EnvPersonal *KMStapleMode Center1
*UIConstraints: *PageSize Env10 *KMStapleMode Center1
*UIConstraints: *PageSize EnvDL *KMStapleMode Center1
*UIConstraints: *PageSize EnvMonarch *KMStapleMode Center1
*UIConstraints: *PageSize OficioII *KMStapleMode Center1
*UIConstraints: *PageSize A6 *Fold ON
*UIConstraints: *PageSize B6 *Fold ON
*UIConstraints: *PageSize Folio *Fold ON
*UIConstraints: *PageSize Legal *Fold ON
*UIConstraints: *PageSize Executive *Fold ON
*UIConstraints: *PageSize ISOB5 *Fold ON
*UIConstraints: *PageSize P8K *Fold ON
*UIConstraints: *PageSize P16K *Fold ON
*UIConstraints: *CustomPageSize *Fold ON
*UIConstraints: *PageSize Env9 *Fold ON
*UIConstraints: *PageSize EnvC4 *Fold ON
*UIConstraints: *PageSize EnvC5 *Fold ON
*UIConstraints: *PageSize EnvPersonal *Fold ON
*UIConstraints: *PageSize Env10 *Fold ON
*UIConstraints: *PageSize EnvDL *Fold ON
*UIConstraints: *PageSize EnvMonarch *Fold ON
*UIConstraints: *PageSize OficioII *Fold ON
*%InputSlot-Media Type Constraints=====
*UIConstraints: *InputSlot Tray1 *MediaType Transparency
*UIConstraints: *InputSlot Tray1 *MediaType Labels
*UIConstraints: *InputSlot Tray1 *MediaType Envelope
*UIConstraints: *InputSlot Tray1 *MediaType Cardstock
*UIConstraints: *InputSlot Tray1 *MediaType Thick
*UIConstraints: *InputSlot Tray2 *MediaType Transparency
*UIConstraints: *InputSlot Tray2 *MediaType Labels
*UIConstraints: *InputSlot Tray2 *MediaType Envelope
*UIConstraints: *InputSlot Tray2 *MediaType Cardstock
*UIConstraints: *InputSlot Tray2 *MediaType Thick
*UIConstraints: *InputSlot Tray3 *MediaType Transparency
*UIConstraints: *InputSlot Tray3 *MediaType Labels
*UIConstraints: *InputSlot Tray3 *MediaType Envelope
*UIConstraints: *InputSlot Tray3 *MediaType Cardstock
*UIConstraints: *InputSlot Tray3 *MediaType Thick
*UIConstraints: *InputSlot Tray4 *MediaType Transparency
*UIConstraints: *InputSlot Tray4 *MediaType Labels
*UIConstraints: *InputSlot Tray4 *MediaType Envelope
*UIConstraints: *InputSlot Tray4 *MediaType Cardstock
*UIConstraints: *InputSlot Tray4 *MediaType Thick
*UIConstraints: *InputSlot LCD *MediaType Transparency
*UIConstraints: *InputSlot LCD *MediaType Labels
*UIConstraints: *InputSlot LCD *MediaType Envelope
*UIConstraints: *InputSlot LCD *MediaType Cardstock
*UIConstraints: *InputSlot LCD *MediaType Thick
*UIConstraints: *MediaType Transparency *InputSlot Tray1
*UIConstraints: *MediaType Labels *InputSlot Tray1
*UIConstraints: *MediaType Envelope *InputSlot Tray1
*UIConstraints: *MediaType Cardstock *InputSlot Tray1
*UIConstraints: *MediaType Thick *InputSlot Tray1
*UIConstraints: *MediaType Transparency *InputSlot Tray2
*UIConstraints: *MediaType Labels *InputSlot Tray2
*UIConstraints: *MediaType Envelope *InputSlot Tray2
*UIConstraints: *MediaType Cardstock *InputSlot Tray2
*UIConstraints: *MediaType Thick *InputSlot Tray2
*UIConstraints: *MediaType Transparency *InputSlot Tray3
*UIConstraints: *MediaType Labels *InputSlot Tray3
*UIConstraints: *MediaType Envelope *InputSlot Tray3
*UIConstraints: *MediaType Cardstock *InputSlot Tray3
*UIConstraints: *MediaType Thick *InputSlot Tray3
*UIConstraints: *MediaType Transparency *InputSlot Tray4
*UIConstraints: *MediaType Labels *InputSlot Tray4
*UIConstraints: *MediaType Envelope *InputSlot Tray4
*UIConstraints: *MediaType Cardstock *InputSlot Tray4
*UIConstraints: *MediaType Thick *InputSlot Tray4
*UIConstraints: *MediaType Transparency *InputSlot LCD
*UIConstraints: *MediaType Labels *InputSlot LCD
*UIConstraints: *MediaType Envelope *InputSlot LCD
*UIConstraints: *MediaType Cardstock *InputSlot LCD
*UIConstraints: *MediaType Thick *InputSlot LCD
*%MediaType-Duplex Constraints=====
*UIConstraints: *Duplex *MediaType Transparency
*UIConstraints: *Duplex *MediaType Labels
*UIConstraints: *Duplex *MediaType Vellum
*UIConstraints: *Duplex *MediaType Envelope
*UIConstraints: *Duplex *MediaType Cardstock
*UIConstraints: *Duplex *MediaType Thick
*UIConstraints: *MediaType Transparency *Duplex DuplexTumble
*UIConstraints: *MediaType Labels *Duplex DuplexTumble
*UIConstraints: *MediaType Vellum *Duplex DuplexTumble
*UIConstraints: *MediaType Envelope *Duplex DuplexTumble
*UIConstraints: *MediaType Cardstock *Duplex DuplexTumble
*UIConstraints: *MediaType Thick *Duplex DuplexTumble
*UIConstraints: *MediaType Transparency *Duplex DuplexNoTumble
*UIConstraints: *MediaType Labels *Duplex DuplexNoTumble
*UIConstraints: *MediaType Vellum *Duplex DuplexNoTumble
*UIConstraints: *MediaType Envelope *Duplex DuplexNoTumble
*UIConstraints: *MediaType Cardstock *Duplex DuplexNoTumble
*UIConstraints: *MediaType Thick *Duplex DuplexNoTumble
*%MediaType - Destination==
*UIConstraints: *OutputBin Main *MediaType Transparency
*UIConstraints: *OutputBin Main *MediaType Labels
*UIConstraints: *OutputBin Main *MediaType Vellum
*UIConstraints: *OutputBin Main *MediaType Envelope
*UIConstraints: *OutputBin Main *MediaType Cardstock
*UIConstraints: *OutputBin Main *MediaType Thick
*UIConstraints: *OutputBin Sub *MediaType Transparency
*UIConstraints: *OutputBin Sub *MediaType Labels
*UIConstraints: *OutputBin Sub *MediaType Vellum
*UIConstraints: *OutputBin Sub *MediaType Envelope
*UIConstraints: *OutputBin Sub *MediaType Cardstock
*UIConstraints: *OutputBin Sub *MediaType Thick
*UIConstraints: *OutputBin Internal *MediaType Transparency
*UIConstraints: *OutputBin Internal *MediaType Labels
*UIConstraints: *OutputBin Internal *MediaType Vellum
*UIConstraints: *OutputBin Internal *MediaType Envelope
*UIConstraints: *OutputBin Internal *MediaType Cardstock
*UIConstraints: *OutputBin Stacker *MediaType Transparency
*UIConstraints: *OutputBin Stacker *MediaType Labels
*UIConstraints: *OutputBin Stacker *MediaType Vellum
*UIConstraints: *OutputBin Stacker *MediaType Envelope
*UIConstraints: *OutputBin Stacker *MediaType Cardstock
*UIConstraints: *OutputBin MB1Dn *MediaType Transparency
*UIConstraints: *OutputBin MB1Dn *MediaType Labels
*UIConstraints: *OutputBin MB1Dn *MediaType Vellum
*UIConstraints: *OutputBin MB1Dn *MediaType Envelope
*UIConstraints: *OutputBin MB1Dn *MediaType Cardstock
*UIConstraints: *OutputBin MB1Dn *MediaType Thick
*UIConstraints: *OutputBin MB1Up *MediaType Transparency
*UIConstraints: *OutputBin MB1Up *MediaType Labels
*UIConstraints: *OutputBin MB1Up *MediaType Vellum
*UIConstraints: *OutputBin MB1Up *MediaType Envelope
*UIConstraints: *OutputBin MB1Up *MediaType Cardstock
*UIConstraints: *OutputBin MB1Up *MediaType Thick
*UIConstraints: *OutputBin MB2Dn *MediaType Transparency
*UIConstraints: *OutputBin MB2Dn *MediaType Labels
*UIConstraints: *OutputBin MB2Dn *MediaType Vellum
*UIConstraints: *OutputBin MB2Dn *MediaType Envelope
*UIConstraints: *OutputBin MB2Dn *MediaType Cardstock
*UIConstraints: *OutputBin MB2Dn *MediaType Thick
*UIConstraints: *OutputBin MB2Up *MediaType Transparency
*UIConstraints: *OutputBin MB2Up *MediaType Labels
*UIConstraints: *OutputBin MB2Up *MediaType Vellum
*UIConstraints: *OutputBin MB2Up *MediaType Envelope
*UIConstraints: *OutputBin MB2Up *MediaType Cardstock
*UIConstraints: *OutputBin MB2Up *MediaType Thick
*UIConstraints: *OutputBin MB3Dn *MediaType Transparency
*UIConstraints: *OutputBin MB3Dn *MediaType Labels
*UIConstraints: *OutputBin MB3Dn *MediaType Vellum
*UIConstraints: *OutputBin MB3Dn *MediaType Envelope
*UIConstraints: *OutputBin MB3Dn *MediaType Cardstock
*UIConstraints: *OutputBin MB3Dn *MediaType Thick
*UIConstraints: *OutputBin MB3Up *MediaType Transparency
*UIConstraints: *OutputBin MB3Up *MediaType Labels
*UIConstraints: *OutputBin MB3Up *MediaType Vellum
*UIConstraints: *OutputBin MB3Up *MediaType Envelope
*UIConstraints: *OutputBin MB3Up *MediaType Cardstock
*UIConstraints: *OutputBin MB3Up *MediaType Thick
*UIConstraints: *OutputBin MB4Dn *MediaType Transparency
*UIConstraints: *OutputBin MB4Dn *MediaType Labels
*UIConstraints: *OutputBin MB4Dn *MediaType Vellum
*UIConstraints: *OutputBin MB4Dn *MediaType Envelope
*UIConstraints: *OutputBin MB4Dn *MediaType Cardstock
*UIConstraints: *OutputBin MB4Dn *MediaType Thick
*UIConstraints: *OutputBin MB4Up *MediaType Transparency
*UIConstraints: *OutputBin MB4Up *MediaType Labels
*UIConstraints: *OutputBin MB4Up *MediaType Vellum
*UIConstraints: *OutputBin MB4Up *MediaType Envelope
*UIConstraints: *OutputBin MB4Up *MediaType Cardstock
*UIConstraints: *OutputBin MB4Up *MediaType Thick
*UIConstraints: *OutputBin MB5Dn *MediaType Transparency
*UIConstraints: *OutputBin MB5Dn *MediaType Labels
*UIConstraints: *OutputBin MB5Dn *MediaType Vellum
*UIConstraints: *OutputBin MB5Dn *MediaType Envelope
*UIConstraints: *OutputBin MB5Dn *MediaType Cardstock
*UIConstraints: *OutputBin MB5Dn *MediaType Thick
*UIConstraints: *OutputBin MB5Up *MediaType Transparency
*UIConstraints: *OutputBin MB5Up *MediaType Labels
*UIConstraints: *OutputBin MB5Up *MediaType Vellum
*UIConstraints: *OutputBin MB5Up *MediaType Envelope
*UIConstraints: *OutputBin MB5Up *MediaType Cardstock
*UIConstraints: *OutputBin MB5Up *MediaType Thick
*UIConstraints: *OutputBin MB6Dn *MediaType Transparency
*UIConstraints: *OutputBin MB6Dn *MediaType Labels
*UIConstraints: *OutputBin MB6Dn *MediaType Vellum
*UIConstraints: *OutputBin MB6Dn *MediaType Envelope
*UIConstraints: *OutputBin MB6Dn *MediaType Cardstock
*UIConstraints: *OutputBin MB6Dn *MediaType Thick
*UIConstraints: *OutputBin MB6Up *MediaType Transparency
*UIConstraints: *OutputBin MB6Up *MediaType Labels
*UIConstraints: *OutputBin MB6Up *MediaType Vellum
*UIConstraints: *OutputBin MB6Up *MediaType Envelope
*UIConstraints: *OutputBin MB6Up *MediaType Cardstock
*UIConstraints: *OutputBin MB6Up *MediaType Thick
*UIConstraints: *OutputBin MB7Dn *MediaType Transparency
*UIConstraints: *OutputBin MB7Dn *MediaType Labels
*UIConstraints: *OutputBin MB7Dn *MediaType Vellum
*UIConstraints: *OutputBin MB7Dn *MediaType Envelope
*UIConstraints: *OutputBin MB7Dn *MediaType Cardstock
*UIConstraints: *OutputBin MB7Dn *MediaType Thick
*UIConstraints: *OutputBin MB7Up *MediaType Transparency
*UIConstraints: *OutputBin MB7Up *MediaType Labels
*UIConstraints: *OutputBin MB7Up *MediaType Vellum
*UIConstraints: *OutputBin MB7Up *MediaType Envelope
*UIConstraints: *OutputBin MB7Up *MediaType Cardstock
*UIConstraints: *OutputBin MB7Up *MediaType Thick
*UIConstraints: *MediaType Transparency *OutputBin Main
*UIConstraints: *MediaType Labels *OutputBin Main
*UIConstraints: *MediaType Vellum *OutputBin Main
*UIConstraints: *MediaType Envelope *OutputBin Main
*UIConstraints: *MediaType Cardstock *OutputBin Main
*UIConstraints: *MediaType Transparency *OutputBin Sub
*UIConstraints: *MediaType Labels *OutputBin Sub
*UIConstraints: *MediaType Vellum *OutputBin Sub
*UIConstraints: *MediaType Envelope *OutputBin Sub
*UIConstraints: *MediaType Cardstock *OutputBin Sub
*UIConstraints: *MediaType Thick *OutputBin Sub
*UIConstraints: *MediaType Transparency *OutputBin Internal
*UIConstraints: *MediaType Labels *OutputBin Internal
*UIConstraints: *MediaType Vellum *OutputBin Internal
*UIConstraints: *MediaType Envelope *OutputBin Internal
*UIConstraints: *MediaType Cardstock *OutputBin Internal
*UIConstraints: *MediaType Transparency *OutputBin Stacker
*UIConstraints: *MediaType Labels *OutputBin Stacker
*UIConstraints: *MediaType Vellum *OutputBin Stacker
*UIConstraints: *MediaType Envelope *OutputBin Stacker
*UIConstraints: *MediaType Cardstock *OutputBin Stacker
*UIConstraints: *MediaType Transparency *OutputBin MB1Dn
*UIConstraints: *MediaType Labels *OutputBin MB1Dn
*UIConstraints: *MediaType Vellum *OutputBin MB1Dn
*UIConstraints: *MediaType Envelope *OutputBin MB1Dn
*UIConstraints: *MediaType Cardstock *OutputBin MB1Dn
*UIConstraints: *MediaType Thick *OutputBin MB1Dn
*UIConstraints: *MediaType Transparency *OutputBin MB1Up
*UIConstraints: *MediaType Labels *OutputBin MB1Up
*UIConstraints: *MediaType Vellum *OutputBin MB1Up
*UIConstraints: *MediaType Envelope *OutputBin MB1Up
*UIConstraints: *MediaType Cardstock *OutputBin MB1Up
*UIConstraints: *MediaType Thick *OutputBin MB1Up
*UIConstraints: *MediaType Transparency *OutputBin MB2Dn
*UIConstraints: *MediaType Labels *OutputBin MB2Dn
*UIConstraints: *MediaType Vellum *OutputBin MB2Dn
*UIConstraints: *MediaType Envelope *OutputBin MB2Dn
*UIConstraints: *MediaType Cardstock *OutputBin MB2Dn
*UIConstraints: *MediaType Thick *OutputBin MB2Dn
*UIConstraints: *MediaType Transparency *OutputBin MB2Up
*UIConstraints: *MediaType Labels *OutputBin MB2Up
*UIConstraints: *MediaType Vellum *OutputBin MB2Up
*UIConstraints: *MediaType Envelope *OutputBin MB2Up
*UIConstraints: *MediaType Cardstock *OutputBin MB2Up
*UIConstraints: *MediaType Thick *OutputBin MB2Up
*UIConstraints: *MediaType Transparency *OutputBin MB3Dn
*UIConstraints: *MediaType Labels *OutputBin MB3Dn
*UIConstraints: *MediaType Vellum *OutputBin MB3Dn
*UIConstraints: *MediaType Envelope *OutputBin MB3Dn
*UIConstraints: *MediaType Cardstock *OutputBin MB3Dn
*UIConstraints: *MediaType Thick *OutputBin MB3Dn
*UIConstraints: *MediaType Transparency *OutputBin MB3Up
*UIConstraints: *MediaType Labels *OutputBin MB3Up
*UIConstraints: *MediaType Vellum *OutputBin MB3Up
*UIConstraints: *MediaType Envelope *OutputBin MB3Up
*UIConstraints: *MediaType Cardstock *OutputBin MB3Up
*UIConstraints: *MediaType Thick *OutputBin MB3Up
*UIConstraints: *MediaType Transparency *OutputBin MB4Dn
*UIConstraints: *MediaType Labels *OutputBin MB4Dn
*UIConstraints: *MediaType Vellum *OutputBin MB4Dn
*UIConstraints: *MediaType Envelope *OutputBin MB4Dn
*UIConstraints: *MediaType Cardstock *OutputBin MB4Dn
*UIConstraints: *MediaType Thick *OutputBin MB4Dn
*UIConstraints: *MediaType Transparency *OutputBin MB4Up
*UIConstraints: *MediaType Labels *OutputBin MB4Up
*UIConstraints: *MediaType Vellum *OutputBin MB4Up
*UIConstraints: *MediaType Envelope *OutputBin MB4Up
*UIConstraints: *MediaType Cardstock *OutputBin MB4Up
*UIConstraints: *MediaType Thick *OutputBin MB4Up
*UIConstraints: *MediaType Transparency *OutputBin MB5Dn
*UIConstraints: *MediaType Labels *OutputBin MB5Dn
*UIConstraints: *MediaType Vellum *OutputBin MB5Dn
*UIConstraints: *MediaType Envelope *OutputBin MB5Dn
*UIConstraints: *MediaType Cardstock *OutputBin MB5Dn
*UIConstraints: *MediaType Thick *OutputBin MB5Dn
*UIConstraints: *MediaType Transparency *OutputBin MB5Up
*UIConstraints: *MediaType Labels *OutputBin MB5Up
*UIConstraints: *MediaType Vellum *OutputBin MB5Up
*UIConstraints: *MediaType Envelope *OutputBin MB5Up
*UIConstraints: *MediaType Cardstock *OutputBin MB5Up
*UIConstraints: *MediaType Thick *OutputBin MB5Up
*UIConstraints: *MediaType Transparency *OutputBin MB6Dn
*UIConstraints: *MediaType Labels *OutputBin MB6Dn
*UIConstraints: *MediaType Vellum *OutputBin MB6Dn
*UIConstraints: *MediaType Envelope *OutputBin MB6Dn
*UIConstraints: *MediaType Cardstock *OutputBin MB6Dn
*UIConstraints: *MediaType Thick *OutputBin MB6Dn
*UIConstraints: *MediaType Transparency *OutputBin MB6Up
*UIConstraints: *MediaType Labels *OutputBin MB6Up
*UIConstraints: *MediaType Vellum *OutputBin MB6Up
*UIConstraints: *MediaType Envelope *OutputBin MB6Up
*UIConstraints: *MediaType Cardstock *OutputBin MB6Up
*UIConstraints: *MediaType Thick *OutputBin MB6Up
*UIConstraints: *MediaType Transparency *OutputBin MB7Dn
*UIConstraints: *MediaType Labels *OutputBin MB7Dn
*UIConstraints: *MediaType Vellum *OutputBin MB7Dn
*UIConstraints: *MediaType Envelope *OutputBin MB7Dn
*UIConstraints: *MediaType Cardstock *OutputBin MB7Dn
*UIConstraints: *MediaType Thick *OutputBin MB7Dn
*UIConstraints: *MediaType Transparency *OutputBin MB7Up
*UIConstraints: *MediaType Labels *OutputBin MB7Up
*UIConstraints: *MediaType Vellum *OutputBin MB7Up
*UIConstraints: *MediaType Envelope *OutputBin MB7Up
*UIConstraints: *MediaType Cardstock *OutputBin MB7Up
*UIConstraints: *MediaType Thick *OutputBin MB7Up
*%MediaType - Staple=====
*UIConstraints: *KMStapleMode Front1 *MediaType Transparency
*UIConstraints: *KMStapleMode Front1 *MediaType Labels
*UIConstraints: *KMStapleMode Front1 *MediaType Vellum
*UIConstraints: *KMStapleMode Front1 *MediaType Envelope
*UIConstraints: *KMStapleMode Front1 *MediaType Cardstock
*UIConstraints: *KMStapleMode Front1 *MediaType Thick
*UIConstraints: *KMStapleMode Front2 *MediaType Transparency
*UIConstraints: *KMStapleMode Front2 *MediaType Labels
*UIConstraints: *KMStapleMode Front2 *MediaType Vellum
*UIConstraints: *KMStapleMode Front2 *MediaType Envelope
*UIConstraints: *KMStapleMode Front2 *MediaType Cardstock
*UIConstraints: *KMStapleMode Front2 *MediaType Thick
*UIConstraints: *KMStapleMode Rear1 *MediaType Transparency
*UIConstraints: *KMStapleMode Rear1 *MediaType Labels
*UIConstraints: *KMStapleMode Rear1 *MediaType Vellum
*UIConstraints: *KMStapleMode Rear1 *MediaType Envelope
*UIConstraints: *KMStapleMode Rear1 *MediaType Cardstock
*UIConstraints: *KMStapleMode Rear1 *MediaType Thick
*UIConstraints: *KMStapleMode Center1 *MediaType Transparency
*UIConstraints: *KMStapleMode Center1 *MediaType Labels
*UIConstraints: *KMStapleMode Center1 *MediaType Vellum
*UIConstraints: *KMStapleMode Center1 *MediaType Envelope
*UIConstraints: *KMStapleMode Center1 *MediaType Cardstock
*UIConstraints: *KMStapleMode Center1 *MediaType Thick
*UIConstraints: *Fold ON *MediaType Transparency
*UIConstraints: *Fold ON *MediaType Labels
*UIConstraints: *Fold ON *MediaType Vellum
*UIConstraints: *Fold ON *MediaType Envelope
*UIConstraints: *Fold ON *MediaType Cardstock
*UIConstraints: *Fold ON *MediaType Thick
*UIConstraints: *MediaType Transparency *KMStapleMode Front1
*UIConstraints: *MediaType Labels *KMStapleMode Front1
*UIConstraints: *MediaType Vellum *KMStapleMode Front1
*UIConstraints: *MediaType Envelope *KMStapleMode Front1
*UIConstraints: *MediaType Cardstock *KMStapleMode Front1
*UIConstraints: *MediaType Thick *KMStapleMode Front1
*UIConstraints: *MediaType Transparency *KMStapleMode Front2
*UIConstraints: *MediaType Labels *KMStapleMode Front2
*UIConstraints: *MediaType Vellum *KMStapleMode Front2
*UIConstraints: *MediaType Envelope *KMStapleMode Front2
*UIConstraints: *MediaType Cardstock *KMStapleMode Front2
*UIConstraints: *MediaType Thick *KMStapleMode Front2
*UIConstraints: *MediaType Transparency *KMStapleMode Rear1
*UIConstraints: *MediaType Labels *KMStapleMode Rear1
*UIConstraints: *MediaType Vellum *KMStapleMode Rear1
*UIConstraints: *MediaType Envelope *KMStapleMode Rear1
*UIConstraints: *MediaType Cardstock *KMStapleMode Rear1
*UIConstraints: *MediaType Thick *KMStapleMode Rear1
*UIConstraints: *MediaType Transparency *KMStapleMode Center1
*UIConstraints: *MediaType Labels *KMStapleMode Center1
*UIConstraints: *MediaType Vellum *KMStapleMode Center1
*UIConstraints: *MediaType Envelope *KMStapleMode Center1
*UIConstraints: *MediaType Cardstock *KMStapleMode Center1
*UIConstraints: *MediaType Thick *KMStapleMode Center1
*UIConstraints: *MediaType Transparency *Fold ON
*UIConstraints: *MediaType Labels *Fold ON
*UIConstraints: *MediaType Vellum *Fold ON
*UIConstraints: *MediaType Envelope *Fold ON
*UIConstraints: *MediaType Cardstock *Fold ON
*UIConstraints: *MediaType Thick *Fold ON
*%MediaType - Punch=====
*UIConstraints: *KCPunch 2holesUS *MediaType Transparency
*UIConstraints: *KCPunch 2holesUS *MediaType Labels
*UIConstraints: *KCPunch 2holesUS *MediaType Vellum
*UIConstraints: *KCPunch 2holesUS *MediaType Envelope
*UIConstraints: *KCPunch 2holesUS *MediaType Cardstock
*UIConstraints: *KCPunch 2holesUS *MediaType Thick
*UIConstraints: *KCPunch 2holesEUR *MediaType Transparency
*UIConstraints: *KCPunch 2holesEUR *MediaType Labels
*UIConstraints: *KCPunch 2holesEUR *MediaType Vellum
*UIConstraints: *KCPunch 2holesEUR *MediaType Envelope
*UIConstraints: *KCPunch 2holesEUR *MediaType Cardstock
*UIConstraints: *KCPunch 2holesEUR *MediaType Thick
*UIConstraints: *KCPunch 3holes *MediaType Transparency
*UIConstraints: *KCPunch 3holes *MediaType Labels
*UIConstraints: *KCPunch 3holes *MediaType Vellum
*UIConstraints: *KCPunch 3holes *MediaType Envelope
*UIConstraints: *KCPunch 3holes *MediaType Cardstock
*UIConstraints: *KCPunch 3holes *MediaType Thick
*UIConstraints: *KCPunch 4holes *MediaType Transparency
*UIConstraints: *KCPunch 4holes *MediaType Labels
*UIConstraints: *KCPunch 4holes *MediaType Vellum
*UIConstraints: *KCPunch 4holes *MediaType Envelope
*UIConstraints: *KCPunch 4holes *MediaType Cardstock
*UIConstraints: *KCPunch 4holes *MediaType Thick
*UIConstraints: *KCPunch autoholes *MediaType Transparency
*UIConstraints: *KCPunch autoholes *MediaType Labels
*UIConstraints: *KCPunch autoholes *MediaType Vellum
*UIConstraints: *KCPunch autoholes *MediaType Envelope
*UIConstraints: *KCPunch autoholes *MediaType Cardstock
*UIConstraints: *KCPunch autoholes *MediaType Thick
*UIConstraints: *MediaType Transparency *KCPunch 2holesUS
*UIConstraints: *MediaType Labels *KCPunch 2holesUS
*UIConstraints: *MediaType Vellum *KCPunch 2holesUS
*UIConstraints: *MediaType Envelope *KCPunch 2holesUS
*UIConstraints: *MediaType Cardstock *KCPunch 2holesUS
*UIConstraints: *MediaType Thick *KCPunch 2holesUS
*UIConstraints: *MediaType Transparency *KCPunch 2holesEUR
*UIConstraints: *MediaType Labels *KCPunch 2holesEUR
*UIConstraints: *MediaType Vellum *KCPunch 2holesEUR
*UIConstraints: *MediaType Envelope *KCPunch 2holesEUR
*UIConstraints: *MediaType Cardstock *KCPunch 2holesEUR
*UIConstraints: *MediaType Thick *KCPunch 2holesEUR
*UIConstraints: *MediaType Transparency *KCPunch 3holes
*UIConstraints: *MediaType Labels *KCPunch 3holes
*UIConstraints: *MediaType Vellum *KCPunch 3holes
*UIConstraints: *MediaType Envelope *KCPunch 3holes
*UIConstraints: *MediaType Cardstock *KCPunch 3holes
*UIConstraints: *MediaType Thick *KCPunch 3holes
*UIConstraints: *MediaType Transparency *KCPunch 4holes
*UIConstraints: *MediaType Labels *KCPunch 4holes
*UIConstraints: *MediaType Vellum *KCPunch 4holes
*UIConstraints: *MediaType Envelope *KCPunch 4holes
*UIConstraints: *MediaType Cardstock *KCPunch 4holes
*UIConstraints: *MediaType Thick *KCPunch 4holes
*UIConstraints: *MediaType Transparency *KCPunch autoholes
*UIConstraints: *MediaType Labels *KCPunch autoholes
*UIConstraints: *MediaType Vellum *KCPunch autoholes
*UIConstraints: *MediaType Envelope *KCPunch autoholes
*UIConstraints: *MediaType Cardstock *KCPunch autoholes
*UIConstraints: *MediaType Thick *KCPunch autoholes
*UIConstraints: *OutputBin Facedown *KMStapleMode Front1
*UIConstraints: *OutputBin Facedown *KMStapleMode Front2
*UIConstraints: *OutputBin Facedown *KMStapleMode Rear1
*UIConstraints: *OutputBin Facedown *KMStapleMode Center1
*UIConstraints: *OutputBin Facedown *Fold ON
*UIConstraints: *OutputBin Facedown *KCPunch 2holesUS
*UIConstraints: *OutputBin Facedown *KCPunch 2holesEUR
*UIConstraints: *OutputBin Facedown *KCPunch 3holes
*UIConstraints: *OutputBin Facedown *KCPunch 4holes
*UIConstraints: *OutputBin Facedown *KCPunch autoholes
*UIConstraints: *OutputBin Sub *KMStapleMode Front1
*UIConstraints: *OutputBin Sub *KMStapleMode Front2
*UIConstraints: *OutputBin Sub *KMStapleMode Rear1
*UIConstraints: *OutputBin Sub *KMStapleMode Center1
*UIConstraints: *OutputBin Sub *Fold ON
*UIConstraints: *OutputBin Stacker *KMStapleMode Front1
*UIConstraints: *OutputBin Stacker *KMStapleMode Front2
*UIConstraints: *OutputBin Stacker *KMStapleMode Rear1
*UIConstraints: *OutputBin Stacker *KMStapleMode Center1
*UIConstraints: *OutputBin Stacker *Fold ON
*UIConstraints: *OutputBin Stacker *KCPunch 2holesUS
*UIConstraints: *OutputBin Stacker *KCPunch 2holesEUR
*UIConstraints: *OutputBin Stacker *KCPunch 3holes
*UIConstraints: *OutputBin Stacker *KCPunch 4holes
*UIConstraints: *OutputBin Stacker *KCPunch autoholes
*UIConstraints: *OutputBin MB1Dn *KMStapleMode Front1
*UIConstraints: *OutputBin MB1Dn *KMStapleMode Front2
*UIConstraints: *OutputBin MB1Dn *KMStapleMode Rear1
*UIConstraints: *OutputBin MB1Dn *KMStapleMode Center1
*UIConstraints: *OutputBin MB1Dn *Fold ON
*UIConstraints: *OutputBin MB1Dn *KCPunch 2holesUS
*UIConstraints: *OutputBin MB1Dn *KCPunch 2holesEUR
*UIConstraints: *OutputBin MB1Dn *KCPunch 3holes
*UIConstraints: *OutputBin MB1Dn *KCPunch 4holes
*UIConstraints: *OutputBin MB2Dn *KMStapleMode Front1
*UIConstraints: *OutputBin MB2Dn *KMStapleMode Front2
*UIConstraints: *OutputBin MB2Dn *KMStapleMode Rear1
*UIConstraints: *OutputBin MB2Dn *KMStapleMode Center1
*UIConstraints: *OutputBin MB2Dn *Fold ON
*UIConstraints: *OutputBin MB2Dn *KCPunch 2holesUS
*UIConstraints: *OutputBin MB2Dn *KCPunch 2holesEUR
*UIConstraints: *OutputBin MB2Dn *KCPunch 3holes
*UIConstraints: *OutputBin MB2Dn *KCPunch 4holes
*UIConstraints: *OutputBin MB3Dn *KMStapleMode Front1
*UIConstraints: *OutputBin MB3Dn *KMStapleMode Front2
*UIConstraints: *OutputBin MB3Dn *KMStapleMode Rear1
*UIConstraints: *OutputBin MB3Dn *KMStapleMode Center1
*UIConstraints: *OutputBin MB3Dn *Fold ON
*UIConstraints: *OutputBin MB3Dn *KCPunch 2holesUS
*UIConstraints: *OutputBin MB3Dn *KCPunch 2holesEUR
*UIConstraints: *OutputBin MB3Dn *KCPunch 3holes
*UIConstraints: *OutputBin MB3Dn *KCPunch 4holes
*UIConstraints: *OutputBin MB4Dn *KMStapleMode Front1
*UIConstraints: *OutputBin MB4Dn *KMStapleMode Front2
*UIConstraints: *OutputBin MB4Dn *KMStapleMode Rear1
*UIConstraints: *OutputBin MB4Dn *KMStapleMode Center1
*UIConstraints: *OutputBin MB4Dn *Fold ON
*UIConstraints: *OutputBin MB4Dn *KCPunch 2holesUS
*UIConstraints: *OutputBin MB4Dn *KCPunch 2holesEUR
*UIConstraints: *OutputBin MB4Dn *KCPunch 3holes
*UIConstraints: *OutputBin MB4Dn *KCPunch 4holes
*UIConstraints: *OutputBin MB5Dn *KMStapleMode Front1
*UIConstraints: *OutputBin MB5Dn *KMStapleMode Front2
*UIConstraints: *OutputBin MB5Dn *KMStapleMode Rear1
*UIConstraints: *OutputBin MB5Dn *KMStapleMode Center1
*UIConstraints: *OutputBin MB5Dn *Fold ON
*UIConstraints: *OutputBin MB5Dn *KCPunch 2holesUS
*UIConstraints: *OutputBin MB5Dn *KCPunch 2holesEUR
*UIConstraints: *OutputBin MB5Dn *KCPunch 3holes
*UIConstraints: *OutputBin MB5Dn *KCPunch 4holes
*UIConstraints: *OutputBin MB6Dn *KMStapleMode Front1
*UIConstraints: *OutputBin MB6Dn *KMStapleMode Front2
*UIConstraints: *OutputBin MB6Dn *KMStapleMode Rear1
*UIConstraints: *OutputBin MB6Dn *KMStapleMode Center1
*UIConstraints: *OutputBin MB6Dn *Fold ON
*UIConstraints: *OutputBin MB6Dn *KCPunch 2holesUS
*UIConstraints: *OutputBin MB6Dn *KCPunch 2holesEUR
*UIConstraints: *OutputBin MB6Dn *KCPunch 3holes
*UIConstraints: *OutputBin MB6Dn *KCPunch 4holes
*UIConstraints: *OutputBin MB7Dn *KMStapleMode Front1
*UIConstraints: *OutputBin MB7Dn *KMStapleMode Front2
*UIConstraints: *OutputBin MB7Dn *KMStapleMode Rear1
*UIConstraints: *OutputBin MB7Dn *KMStapleMode Center1
*UIConstraints: *OutputBin MB7Dn *Fold ON
*UIConstraints: *OutputBin MB7Dn *KCPunch 2holesUS
*UIConstraints: *OutputBin MB7Dn *KCPunch 2holesEUR
*UIConstraints: *OutputBin MB7Dn *KCPunch 3holes
*UIConstraints: *OutputBin MB7Dn *KCPunch 4holes
*UIConstraints: *OutputBin MB1Up *KMStapleMode Front1
*UIConstraints: *OutputBin MB1Up *KMStapleMode Front2
*UIConstraints: *OutputBin MB1Up *KMStapleMode Rear1
*UIConstraints: *OutputBin MB1Up *KMStapleMode Center1
*UIConstraints: *OutputBin MB1Up *Fold ON
*UIConstraints: *OutputBin MB1Up *KCPunch 2holesUS
*UIConstraints: *OutputBin MB1Up *KCPunch 2holesEUR
*UIConstraints: *OutputBin MB1Up *KCPunch 3holes
*UIConstraints: *OutputBin MB1Up *KCPunch 4holes
*UIConstraints: *OutputBin MB2Up *KMStapleMode Front1
*UIConstraints: *OutputBin MB2Up *KMStapleMode Front2
*UIConstraints: *OutputBin MB2Up *KMStapleMode Rear1
*UIConstraints: *OutputBin MB2Up *KMStapleMode Center1
*UIConstraints: *OutputBin MB2Up *Fold ON
*UIConstraints: *OutputBin MB2Up *KCPunch 2holesUS
*UIConstraints: *OutputBin MB2Up *KCPunch 2holesEUR
*UIConstraints: *OutputBin MB2Up *KCPunch 3holes
*UIConstraints: *OutputBin MB2Up *KCPunch 4holes
*UIConstraints: *OutputBin MB3Up *KMStapleMode Front1
*UIConstraints: *OutputBin MB3Up *KMStapleMode Front2
*UIConstraints: *OutputBin MB3Up *KMStapleMode Rear1
*UIConstraints: *OutputBin MB3Up *KMStapleMode Center1
*UIConstraints: *OutputBin MB3Up *Fold ON
*UIConstraints: *OutputBin MB3Up *KCPunch 2holesUS
*UIConstraints: *OutputBin MB3Up *KCPunch 2holesEUR
*UIConstraints: *OutputBin MB3Up *KCPunch 3holes
*UIConstraints: *OutputBin MB3Up *KCPunch 4holes
*UIConstraints: *OutputBin MB4Up *KMStapleMode Front1
*UIConstraints: *OutputBin MB4Up *KMStapleMode Front2
*UIConstraints: *OutputBin MB4Up *KMStapleMode Rear1
*UIConstraints: *OutputBin MB4Up *KMStapleMode Center1
*UIConstraints: *OutputBin MB4Up *Fold ON
*UIConstraints: *OutputBin MB4Up *KCPunch 2holesUS
*UIConstraints: *OutputBin MB4Up *KCPunch 2holesEUR
*UIConstraints: *OutputBin MB4Up *KCPunch 3holes
*UIConstraints: *OutputBin MB4Up *KCPunch 4holes
*UIConstraints: *OutputBin MB5Up *KMStapleMode Front1
*UIConstraints: *OutputBin MB5Up *KMStapleMode Front2
*UIConstraints: *OutputBin MB5Up *KMStapleMode Rear1
*UIConstraints: *OutputBin MB5Up *KMStapleMode Center1
*UIConstraints: *OutputBin MB5Up *Fold ON
*UIConstraints: *OutputBin MB5Up *KCPunch 2holesUS
*UIConstraints: *OutputBin MB5Up *KCPunch 2holesEUR
*UIConstraints: *OutputBin MB5Up *KCPunch 3holes
*UIConstraints: *OutputBin MB5Up *KCPunch 4holes
*UIConstraints: *OutputBin MB6Up *KMStapleMode Front1
*UIConstraints: *OutputBin MB6Up *KMStapleMode Front2
*UIConstraints: *OutputBin MB6Up *KMStapleMode Rear1
*UIConstraints: *OutputBin MB6Up *KMStapleMode Center1
*UIConstraints: *OutputBin MB6Up *Fold ON
*UIConstraints: *OutputBin MB6Up *KCPunch 2holesUS
*UIConstraints: *OutputBin MB6Up *KCPunch 2holesEUR
*UIConstraints: *OutputBin MB6Up *KCPunch 3holes
*UIConstraints: *OutputBin MB6Up *KCPunch 4holes
*UIConstraints: *OutputBin MB7Up *KMStapleMode Front1
*UIConstraints: *OutputBin MB7Up *KMStapleMode Front2
*UIConstraints: *OutputBin MB7Up *KMStapleMode Rear1
*UIConstraints: *OutputBin MB7Up *KMStapleMode Center1
*UIConstraints: *OutputBin MB7Up *Fold ON
*UIConstraints: *OutputBin MB7Up *KCPunch 2holesUS
*UIConstraints: *OutputBin MB7Up *KCPunch 2holesEUR
*UIConstraints: *OutputBin MB7Up *KCPunch 3holes
*UIConstraints: *OutputBin MB7Up *KCPunch 4holes
*UIConstraints: *KMStapleMode Front1 *OutputBin Facedown
*UIConstraints: *KMStapleMode Front2 *OutputBin Facedown
*UIConstraints: *KMStapleMode Rear1 *OutputBin Facedown
*UIConstraints: *KMStapleMode Center1 *OutputBin Facedown
*UIConstraints: *Fold ON *OutputBin Facedown
*UIConstraints: *KCPunch 2holesUS *OutputBin Facedown
*UIConstraints: *KCPunch 2holesEUR *OutputBin Facedown
*UIConstraints: *KCPunch 3holes *OutputBin Facedown
*UIConstraints: *KCPunch 4holes *OutputBin Facedown
*UIConstraints: *KCPunch autoholes *OutputBin Facedown
*UIConstraints: *KMStapleMode Front1 *OutputBin Sub
*UIConstraints: *KMStapleMode Front2 *OutputBin Sub
*UIConstraints: *KMStapleMode Rear1 *OutputBin Sub
*UIConstraints: *KMStapleMode Center1 *OutputBin Sub
*UIConstraints: *Fold ON *OutputBin Sub
*UIConstraints: *KMStapleMode Front1 *OutputBin Stacker
*UIConstraints: *KMStapleMode Front2 *OutputBin Stacker
*UIConstraints: *KMStapleMode Rear1 *OutputBin Stacker
*UIConstraints: *KMStapleMode Center1 *OutputBin Stacker
*UIConstraints: *Fold ON *OutputBin Stacker
*UIConstraints: *KCPunch 2holesUS *OutputBin Stacker
*UIConstraints: *KCPunch 2holesEUR *OutputBin Stacker
*UIConstraints: *KCPunch 3holes *OutputBin Stacker
*UIConstraints: *KCPunch 4holes *OutputBin Stacker
*UIConstraints: *KCPunch autoholes *OutputBin Stacker
*UIConstraints: *KMStapleMode Front1 *OutputBin MB1Dn
*UIConstraints: *KMStapleMode Front2 *OutputBin MB1Dn
*UIConstraints: *KMStapleMode Rear1 *OutputBin MB1Dn
*UIConstraints: *KMStapleMode Center1 *OutputBin MB1Dn
*UIConstraints: *Fold ON *OutputBin MB1Dn
*UIConstraints: *KCPunch 2holesUS *OutputBin MB1Dn
*UIConstraints: *KCPunch 2holesEUR *OutputBin MB1Dn
*UIConstraints: *KCPunch 3holes *OutputBin MB1Dn
*UIConstraints: *KCPunch 4holes *OutputBin MB1Dn
*UIConstraints: *KMStapleMode Front1 *OutputBin MB2Dn
*UIConstraints: *KMStapleMode Front2 *OutputBin MB2Dn
*UIConstraints: *KMStapleMode Rear1 *OutputBin MB2Dn
*UIConstraints: *KMStapleMode Center1 *OutputBin MB2Dn
*UIConstraints: *Fold ON *OutputBin MB2Dn
*UIConstraints: *KCPunch 2holesUS *OutputBin MB2Dn
*UIConstraints: *KCPunch 2holesEUR *OutputBin MB2Dn
*UIConstraints: *KCPunch 3holes *OutputBin MB2Dn
*UIConstraints: *KCPunch 4holes *OutputBin MB2Dn
*UIConstraints: *KMStapleMode Front1 *OutputBin MB3Dn
*UIConstraints: *KMStapleMode Front2 *OutputBin MB3Dn
*UIConstraints: *KMStapleMode Rear1 *OutputBin MB3Dn
*UIConstraints: *KMStapleMode Center1 *OutputBin MB3Dn
*UIConstraints: *Fold ON *OutputBin MB3Dn
*UIConstraints: *KCPunch 2holesUS *OutputBin MB3Dn
*UIConstraints: *KCPunch 2holesEUR *OutputBin MB3Dn
*UIConstraints: *KCPunch 3holes *OutputBin MB3Dn
*UIConstraints: *KCPunch 4holes *OutputBin MB3Dn
*UIConstraints: *KMStapleMode Front1 *OutputBin MB4Dn
*UIConstraints: *KMStapleMode Front2 *OutputBin MB4Dn
*UIConstraints: *KMStapleMode Rear1 *OutputBin MB4Dn
*UIConstraints: *KMStapleMode Center1 *OutputBin MB4Dn
*UIConstraints: *Fold ON *OutputBin MB4Dn
*UIConstraints: *KCPunch 2holesUS *OutputBin MB4Dn
*UIConstraints: *KCPunch 2holesEUR *OutputBin MB4Dn
*UIConstraints: *KCPunch 3holes *OutputBin MB4Dn
*UIConstraints: *KCPunch 4holes *OutputBin MB4Dn
*UIConstraints: *KMStapleMode Front1 *OutputBin MB5Dn
*UIConstraints: *KMStapleMode Front2 *OutputBin MB5Dn
*UIConstraints: *KMStapleMode Rear1 *OutputBin MB5Dn
*UIConstraints: *KMStapleMode Center1 *OutputBin MB5Dn
*UIConstraints: *Fold ON *OutputBin MB5Dn
*UIConstraints: *KCPunch 2holesUS *OutputBin MB5Dn
*UIConstraints: *KCPunch 2holesEUR *OutputBin MB5Dn
*UIConstraints: *KCPunch 3holes *OutputBin MB5Dn
*UIConstraints: *KCPunch 4holes *OutputBin MB5Dn
*UIConstraints: *KMStapleMode Front1 *OutputBin MB6Dn
*UIConstraints: *KMStapleMode Front2 *OutputBin MB6Dn
*UIConstraints: *KMStapleMode Rear1 *OutputBin MB6Dn
*UIConstraints: *KMStapleMode Center1 *OutputBin MB6Dn
*UIConstraints: *Fold ON *OutputBin MB6Dn
*UIConstraints: *KCPunch 2holesUS *OutputBin MB6Dn
*UIConstraints: *KCPunch 2holesEUR *OutputBin MB6Dn
*UIConstraints: *KCPunch 3holes *OutputBin MB6Dn
*UIConstraints: *OutputBin MB6Dn *KCPunch 4holes
*UIConstraints: *KMStapleMode Front1 *OutputBin MB7Dn
*UIConstraints: *KMStapleMode Front2 *OutputBin MB7Dn
*UIConstraints: *KMStapleMode Rear1 *OutputBin MB7Dn
*UIConstraints: *KMStapleMode Center1 *OutputBin MB7Dn
*UIConstraints: *Fold ON *OutputBin MB7Dn
*UIConstraints: *KCPunch 2holesUS *OutputBin MB7Dn
*UIConstraints: *KCPunch 2holesEUR *OutputBin MB7Dn
*UIConstraints: *KCPunch 3holes *OutputBin MB7Dn
*UIConstraints: *KCPunch 4holes *OutputBin MB7Dn
*UIConstraints: *KMStapleMode Front1 *OutputBin MB1Up
*UIConstraints: *KMStapleMode Front2 *OutputBin MB1Up
*UIConstraints: *KMStapleMode Rear1 *OutputBin MB1Up
*UIConstraints: *KMStapleMode Center1 *OutputBin MB1Up
*UIConstraints: *Fold ON *OutputBin MB1Up
*UIConstraints: *KCPunch 2holesUS *OutputBin MB1Up
*UIConstraints: *KCPunch 2holesEUR *OutputBin MB1Up
*UIConstraints: *KCPunch 3holes *OutputBin MB1Up
*UIConstraints: *KCPunch 4holes *OutputBin MB1Up
*UIConstraints: *KMStapleMode Front1 *OutputBin MB2Up
*UIConstraints: *KMStapleMode Front2 *OutputBin MB2Up
*UIConstraints: *KMStapleMode Rear1 *OutputBin MB2Up
*UIConstraints: *KMStapleMode Center1 *OutputBin MB2Up
*UIConstraints: *Fold ON *OutputBin MB2Up
*UIConstraints: *KCPunch 2holesUS *OutputBin MB2Up
*UIConstraints: *KCPunch 2holesEUR *OutputBin MB2Up
*UIConstraints: *KCPunch 3holes *OutputBin MB2Up
*UIConstraints: *KCPunch 4holes *OutputBin MB2Up
*UIConstraints: *KMStapleMode Front1 *OutputBin MB3Up
*UIConstraints: *KMStapleMode Front2 *OutputBin MB3Up
*UIConstraints: *KMStapleMode Rear1 *OutputBin MB3Up
*UIConstraints: *KMStapleMode Center1 *OutputBin MB3Up
*UIConstraints: *Fold ON *OutputBin MB3Up
*UIConstraints: *KCPunch 2holesUS *OutputBin MB3Up
*UIConstraints: *KCPunch 2holesEUR *OutputBin MB3Up
*UIConstraints: *KCPunch 3holes *OutputBin MB3Up
*UIConstraints: *KCPunch 4holes *OutputBin MB3Up
*UIConstraints: *KMStapleMode Front1 *OutputBin MB4Up
*UIConstraints: *KMStapleMode Front2 *OutputBin MB4Up
*UIConstraints: *KMStapleMode Rear1 *OutputBin MB4Up
*UIConstraints: *KMStapleMode Center1 *OutputBin MB4Up
*UIConstraints: *Fold ON *OutputBin MB4Up
*UIConstraints: *KCPunch 2holesUS *OutputBin MB4Up
*UIConstraints: *KCPunch 2holesEUR *OutputBin MB4Up
*UIConstraints: *KCPunch 3holes *OutputBin MB4Up
*UIConstraints: *KCPunch 4holes *OutputBin MB4Up
*UIConstraints: *KMStapleMode Front1 *OutputBin MB5Up
*UIConstraints: *KMStapleMode Front2 *OutputBin MB5Up
*UIConstraints: *KMStapleMode Rear1 *OutputBin MB5Up
*UIConstraints: *KMStapleMode Center1 *OutputBin MB5Up
*UIConstraints: *Fold ON *OutputBin MB5Up
*UIConstraints: *KCPunch 2holesUS *OutputBin MB5Up
*UIConstraints: *KCPunch 2holesEUR *OutputBin MB5Up
*UIConstraints: *KCPunch 3holes *OutputBin MB5Up
*UIConstraints: *KCPunch 4holes *OutputBin MB5Up
*UIConstraints: *KMStapleMode Front1 *OutputBin MB6Up
*UIConstraints: *KMStapleMode Front2 *OutputBin MB6Up
*UIConstraints: *KMStapleMode Rear1 *OutputBin MB6Up
*UIConstraints: *KMStapleMode Center1 *OutputBin MB6Up
*UIConstraints: *Fold ON *OutputBin MB6Up
*UIConstraints: *KCPunch 2holesUS *OutputBin MB6Up
*UIConstraints: *KCPunch 2holesEUR *OutputBin MB6Up
*UIConstraints: *KCPunch 3holes *OutputBin MB6Up
*UIConstraints: *KCPunch 4holes *OutputBin MB6Up
*UIConstraints: *KMStapleMode Front1 *OutputBin MB7Up
*UIConstraints: *KMStapleMode Front2 *OutputBin MB7Up
*UIConstraints: *KMStapleMode Rear1 *OutputBin MB7Up
*UIConstraints: *KMStapleMode Center1 *OutputBin MB7Up
*UIConstraints: *Fold ON *OutputBin MB7Up
*UIConstraints: *KCPunch 2holesUS *OutputBin MB7Up
*UIConstraints: *KCPunch 2holesEUR *OutputBin MB7Up
*UIConstraints: *KCPunch 3holes *OutputBin MB7Up
*UIConstraints: *KCPunch 4holes *OutputBin MB7Up
*UIConstraints: *KCCollate None *KMStapleMode Front1
*UIConstraints: *KCCollate None *KMStapleMode Front2
*UIConstraints: *KCCollate None *KMStapleMode Rear1
*UIConstraints: *KCCollate None *KMStapleMode Center1
*UIConstraints: *KCCollate None *Fold ON
*UIConstraints: *KMStapleMode Front1 *KCCollate None
*UIConstraints: *KMStapleMode Front2 *KCCollate None
*UIConstraints: *KMStapleMode Rear1 *KCCollate None
*UIConstraints: *KMStapleMode Center1 *KCCollate None
*UIConstraints: *Fold ON *KCCollate None
*%Booklet Constraints==
*UIConstraints: *KCBooklet OFF *Fold ON
*UIConstraints: *Fold ON *KCBooklet OFF
*UIConstraints: *Fold ON *KCPunch autoholes
*UIConstraints: *Fold ON *KMStapleMode Front1
*UIConstraints: *Fold ON *KMStapleMode Rear1
*UIConstraints: *Fold ON *KMStapleMode Center1
*UIConstraints: *KCPunch autoholes *Fold ON
*UIConstraints: *KMStapleMode Front1 *Fold ON
*UIConstraints: *KMStapleMode Rear1 *Fold ON
*UIConstraints: *KMStapleMode Center1 *Fold ON
*% Transparency Separate Mode - Staple/Fold
*% Job spooling - Barcode print constraints
*%==============================================
*% Resolution
*%==============================================
*OpenUI *Resolution/R<E9>solution: PickOne
*OrderDependency: 10 AnySetup *Resolution
*DefaultResolution: 1200dpi
*Resolution 600dpi/600 ppp: "<< /HWResolution [600 600] /PreRenderingEnhance false >> setpagedevice"
*Resolution 300dpi/300 ppp: "<< /HWResolution [300 300] /PreRenderingEnhance false >> setpagedevice"
*Resolution 1200dpi/1200 rapide: "<< /HWResolution [600 600] /PreRenderingEnhance true >> setpagedevice"
*?Resolution: "
save
currentpagedevice /HWResolution get
0 get ( ) cvs print (dpi) = flush
restore
"
*End
*CloseUI: *Resolution
*%==============================================
*% Eco Print Mode
*%==============================================
*OpenUI *EcoPrint/EcoPrint (Mode brouillon): PickOne
*OrderDependency: 10 AnySetup *EcoPrint
*DefaultEcoPrint: false
*EcoPrint false/Arret: "<< /EconoMode false >> setpagedevice"
*EcoPrint true/Marche: "<< /EconoMode true >> setpagedevice"
*CloseUI: *EcoPrint
*%==============================================
*% Image Refinement
*%==============================================
*OpenUI *Smoothing/Lissage des rebords: PickOne
*OrderDependency: 50 AnySetup *Smoothing
*DefaultSmoothing: False
*Smoothing True/Arret: "1 statusdict /setdoret get exec"
*Smoothing False/Marche: "0 statusdict /setdoret get exec"
*?Smoothing: "
save
[(False)(True)(True)(True)]
statusdict /doret get exec {get} stopped
{pop pop (Unknown)} if
= flush restore"
*End
*CloseUI: *Smoothing
*%==============================================
*% Halftone Information
*%==============================================
*DefaultHalftoneType: 1
*ScreenFreq: "60.0"
*ScreenAngle: "45.0"
*ResScreenFreq 600dpi: "60.0"
*ResScreenAngle 600dpi: "45.0"
*ResScreenFreq 300dpi: "53.0"
*ResScreenAngle 300dpi: "45.0"
*DefaultScreenProc: Ellipse
*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}"
*%==============================================
*% Page Policy Definitions
*%==============================================
*OpenUI *PagePolicy/Choix de la source papier: PickOne
*OrderDependency: 11 AnySetup *PagePolicy
*DefaultPagePolicy: On
*PagePolicy On/S<E9>lect. le format papier auto.: "<< /DeferredMediaSelection true >> setpagedevice"
*CloseUI: *PagePolicy
*% Paper Handling
*%==============================================
*% Page Size Definitions
*%==============================================
*OpenUI *PageSize: PickOne
*OrderDependency: 20 AnySetup *PageSize
*DefaultPageSize: A4
*PageSize A3/A3: "
<< /Policies << /PageSize 2 >> /PageSize [842 1191] /ImagingBBox null >> setpagedevice"
*End
*PageSize A4/A4: "
<< /Policies << /PageSize 2 >> /PageSize [595 842] /ImagingBBox null >> setpagedevice"
*End
*PageSize A5/A5: "
<< /Policies << /PageSize 2 >> /PageSize [420 595] /ImagingBBox null >> setpagedevice"
*End
*PageSize A6/A6: "
<< /Policies << /PageSize 2 >> /PageSize [297 420] /ImagingBBox null >> setpagedevice"
*End
*PageSize B4/B4: "
<< /Policies << /PageSize 2 >> /PageSize [729 1032] /ImagingBBox null >> setpagedevice"
*End
*PageSize B5/B5 (JIS): "
<< /Policies << /PageSize 2 >> /PageSize [516 729] /ImagingBBox null >> setpagedevice"
*End
*PageSize ISOB5/B5 (ISO): "
<< /Policies << /PageSize 2 >> /PageSize [499 709] /ImagingBBox null >> setpagedevice"
*End
*PageSize B6/B6: "
<< /Policies << /PageSize 2 >> /PageSize [363 516] /ImagingBBox null >> setpagedevice"
*End
*PageSize OficioII/Oficio II: "
<< /Policies << /PageSize 2 >> /PageSize [612 936] /ImagingBBox null >> setpagedevice"
*End
*PageSize Folio/Folio.: "
<< /Policies << /PageSize 2 >> /PageSize [595 935] /ImagingBBox null >> setpagedevice"
*End
*PageSize Statement/Statement: "
<< /Policies << /PageSize 2 >> /PageSize [396 612] /ImagingBBox null >> setpagedevice"
*End
*PageSize P8K/8K: "
<< /Policies << /PageSize 2 >> /PageSize [774 1116] /ImagingBBox null >> setpagedevice"
*End
*PageSize P16K/16K: "
<< /Policies << /PageSize 2 >> /PageSize [558 774] /ImagingBBox null >> setpagedevice"
*End
*PageSize Letter/Letter: "
<< /Policies << /PageSize 2 >> /PageSize [612 792] /ImagingBBox null >> setpagedevice"
*End
*PageSize Legal/Legal: "
<< /Policies << /PageSize 2 >> /PageSize [612 1008] /ImagingBBox null >> setpagedevice"
*End
*PageSize Executive/Executive: "
<< /Policies << /PageSize 2 >> /PageSize [522 756] /ImagingBBox null >> setpagedevice"
*End
*PageSize Tabloid/Tabloid: "
<< /Policies << /PageSize 2 >> /PageSize [792 1224] /ImagingBBox null >> setpagedevice"
*End
*PageSize EnvPersonal/Envelope #6: "
<< /Policies << /PageSize 2 >> /PageSize [261 468] /ImagingBBox null >> setpagedevice"
*End
*PageSize Env9/Envelope #9: "
<< /Policies << /PageSize 2 >> /PageSize [279 639] /ImagingBBox null >> setpagedevice"
*End
*PageSize Env10/Envelope #10: "
<< /Policies << /PageSize 2 >> /PageSize [297 684] /ImagingBBox null >> setpagedevice"
*End
*PageSize EnvMonarch/Envelope Monarch: "
<< /Policies << /PageSize 2 >> /PageSize [279 540] /ImagingBBox null >> setpagedevice"
*End
*PageSize EnvDL/Envelope DL: "
<< /Policies << /PageSize 2 >> /PageSize [312 624] /ImagingBBox null >> setpagedevice"
*End
*PageSize EnvC5/Envelope C5: "
<< /Policies << /PageSize 2 >> /PageSize [459 649] /ImagingBBox null >> setpagedevice"
*End
*PageSize EnvC4/Envelope C4: "
<< /Policies << /PageSize 2 >> /PageSize [649 919] /ImagingBBox null >> setpagedevice"
*End
*?PageSize: "
save
currentpagedevice /PageSize get aload pop
2 copy gt {exch} if
(Unknown)
24 dict
dup [842 1191] (A3) put
dup [595 842] (A4) put
dup [420 595] (A5) put
dup [297 420] (A6) put
dup [729 1032] (B4) put
dup [516 729] (B5) put
dup [499 709] (ISOB5) put
dup [363 516] (B6) put
dup [612 936] (OficioII) put
dup [595 935] (Folio) put
dup [396 612] (Statement) put
dup [774 1116] (P8K) put
dup [558 774] (P16K) put
dup [612 792] (Letter) put
dup [612 1008] (Legal) put
dup [522 756] (Executive) put
dup [792 1224] (Tabloid) put
dup [261 468] (EnvPersonal) put
dup [279 639] (Env9) put
dup [297 684] (Env10) put
dup [279 540] (EnvMonarch) put
dup [312 624] (EnvDL) put
dup [459 649] (EnvC5) put
dup [649 919] (EnvC4) put
{exch aload pop 4 index sub abs 5 le exch
5 index sub abs 5 le and
{exch pop exit}{pop} ifelse
} bind forall
= flush pop pop restore "
*End
*CloseUI: *PageSize
*% Page Region Definitions for Frame Buffer
*OpenUI *PageRegion: PickOne
*OrderDependency: 20 AnySetup *PageRegion
*DefaultPageRegion: A4
*PageRegion A3/A3: " << /Policies << /PageSize 7 >> /PageSize [842 1191] /ImagingBBox null >> setpagedevice"
*End
*PageRegion A4/A4: " << /Policies << /PageSize 7 >> /PageSize [595 842] /ImagingBBox null >> setpagedevice"
*End
*PageRegion A5/A5: " << /Policies << /PageSize 7 >> /PageSize [420 595] /ImagingBBox null >> setpagedevice"
*End
*PageRegion A6/A6: " << /Policies << /PageSize 7 >> /PageSize [297 420] /ImagingBBox null >> setpagedevice"
*End
*PageRegion B4/B4: " << /Policies << /PageSize 7 >> /PageSize [729 1032] /ImagingBBox null >> setpagedevice"
*End
*PageRegion B5/B5 (JIS): " << /Policies << /PageSize 7 >> /PageSize [516 729] /ImagingBBox null >> setpagedevice"
*End
*PageRegion ISOB5/B5 (ISO): " << /Policies << /PageSize 7 >> /PageSize [499 709] /ImagingBBox null >> setpagedevice"
*End
*PageRegion B6/B6: " << /Policies << /PageSize 7 >> /PageSize [363 516] /ImagingBBox null >> setpagedevice"
*End
*PageRegion Letter/Letter: "
<< /Policies << /PageSize 7 >> /PageSize [612 792] /ImagingBBox null >> setpagedevice"
*End
*PageRegion Legal/Legal: "
<< /Policies << /PageSize 7 >> /PageSize [612 1008] /ImagingBBox null >> setpagedevice"
*End
*PageRegion Executive/Executive: "
<< /Policies << /PageSize 7 >> /PageSize [522 756] /ImagingBBox null >> setpagedevice"
*End
*PageRegion Tabloid/Tabloid: "
<< /Policies << /PageSize 7 >> /PageSize [792 1224] /ImagingBBox null >> setpagedevice"
*End
*PageRegion EnvPersonal/Envelope #6: "
<< /Policies << /PageSize 7 >> /PageSize [261 468] /ImagingBBox null >> setpagedevice"
*End
*PageRegion Env9/Envelope #9: "
<< /Policies << /PageSize 7 >> /PageSize [279 639] /ImagingBBox null >> setpagedevice"
*End
*PageRegion Env10/Envelope #10: "
<< /Policies << /PageSize 7 >> /PageSize [297 684] /ImagingBBox null >> setpagedevice"
*End
*PageRegion EnvMonarch/Envelope Monarch: "
<< /Policies << /PageSize 7 >> /PageSize [279 540] /ImagingBBox null >> setpagedevice"
*End
*PageRegion EnvDL/Envelope DL: "
<< /Policies << /PageSize 7 >> /PageSize [312 624] /ImagingBBox null >> setpagedevice"
*End
*PageRegion EnvC5/Envelope C5: "
<< /Policies << /PageSize 7 >> /PageSize [459 649] /ImagingBBox null >> setpagedevice"
*End
*PageRegion OficioII/Oficio II: "
<< /Policies << /PageSize 7 >> /PageSize [612 936] /ImagingBBox null >> setpagedevice"
*End
*PageRegion Folio/Folio.: "
<< /Policies << /PageSize 7 >> /PageSize [595 935] /ImagingBBox null >> setpagedevice"
*End
*PageRegion EnvC4/Envelope C4: "
<< /Policies << /PageSize 7 >> /PageSize [649 919] /ImagingBBox null >> setpagedevice"
*End
*PageRegion Statement/Statement: "
<< /Policies << /PageSize 7 >> /PageSize [396 612] /ImagingBBox null >> setpagedevice"
*End
*PageRegion P8K/8K: "
<< /Policies << /PageSize 7 >> /PageSize [774 1116] /ImagingBBox null >> setpagedevice"
*End
*PageRegion P16K/16K: "
<< /Policies << /PageSize 7 >> /PageSize [558 774] /ImagingBBox null >> setpagedevice"
*End
*CloseUI: *PageRegion
*% Imageable Area Definitions
*DefaultImageableArea: A4
*ImageableArea A3/A3: "12 10 830 1181"
*ImageableArea A4/A4: "12 10 583 832"
*ImageableArea A5/A5: "12 12 409 585"
*ImageableArea A6/A6: "12 10 285 411"
*ImageableArea B4/B4: "12 10 716 1022"
*ImageableArea B5/B5 (JIS): "21 10 495 719"
*ImageableArea ISOB5/B5 (ISO): "12 12 487 696"
*ImageableArea B6/B6: "12 10 352 506"
*ImageableArea OficioII/Oficio II: "12 12 600 924"
*ImageableArea Folio/Folio.: "12 12 571 911"
*ImageableArea Statement/Statement: "12 12 384 600"
*ImageableArea P8K/8K: "12 12 762 1104"
*ImageableArea P16K/16K: "12 12 546 762"
*ImageableArea Letter/Letter: "12 08 600 784"
*ImageableArea Legal/Legal: "12 08 600 1000"
*ImageableArea Executive/Executive: "12 08 510 748"
*ImageableArea Tabloid/Tabloid: "12 08 780 1216"
*ImageableArea EnvPersonal/Envelope #6: "12 08 237 452"
*ImageableArea Env9/Envelope #9: "12 08 255 623"
*ImageableArea Env10/Envelope #10: "12 08 273 668"
*ImageableArea EnvMonarch/Envelope Monarch: "12 08 255 524"
*ImageableArea EnvDL/Envelope DL: "12 10 288 604"
*ImageableArea EnvC5/Envelope C5: "12 10 435 629"
*ImageableArea EnvC4/Envelope C4: "12 10 625 898"
*?ImageableArea: "
save
/cvp {cvi ( ) cvs
print ( ) print} bind def
newpath clippath pathbbox
4 -2 roll exch 2 {ceiling cvp} repeat
exch 2 {floor cvp} repeat ( )
= flush restore"
*End
*% Physical Dimensions of Media
*DefaultPaperDimension: A4
*PaperDimension A3/A3: "842 1191"
*PaperDimension A4/A4: "595 842"
*PaperDimension A5/A5: "420 595"
*PaperDimension A6/A6: "297 420"
*PaperDimension B4/B4: "729 1032"
*PaperDimension B5/B5 (JIS): "516 729"
*PaperDimension ISOB5/B5 (ISO): "499 709"
*PaperDimension B6/B6: "363 516"
*PaperDimension OficioII/Oficio II: "612 936"
*PaperDimension Folio/Folio.: "595 935"
*PaperDimension Statement/Statement: "396 612"
*PaperDimension P8K/8K: "774 1116"
*PaperDimension P16K/16K: "558 774"
*PaperDimension Letter/Letter: "612 792"
*PaperDimension Legal/Legal: "612 1008"
*PaperDimension Executive/Executive: "522 756"
*PaperDimension Tabloid/Tabloid: "792 1224"
*PaperDimension EnvPersonal/Envelope #6: "261 468"
*PaperDimension Env9/Envelope #9: "279 639"
*PaperDimension Env10/Envelope #10: "297 684"
*PaperDimension EnvMonarch/Envelope Monarch: "279 540"
*PaperDimension EnvDL/Envelope DL: "312 624"
*PaperDimension EnvC5/Envelope C5: "459 649"
*PaperDimension EnvC4/Envelope C4: "649 919"
*% Custom Page Size Definitions
*% Smallest = A6, Largest = WideLetter
*VariablePaperSize: True
*LeadingEdge Short: ""
*DefaultLeadingEdge: Short
*HWMargins: 12 12 12 12
*MaxMediaWidth: "872"
*MaxMediaHeight: "1247"
*NonUIOrderDependency: 20 AnySetup *CustomPageSize
*CustomPageSize True: "
pop pop pop
<< /PageSize [ 5 -2 roll ] /ImagingBBox null
/DeferredMediaSelection true
>> setpagedevice"
*End
*ParamCustomPageSize Width: 1 points 227 872
*ParamCustomPageSize Height: 2 points 420 1247
*ParamCustomPageSize WidthOffset: 3 points 0 0
*ParamCustomPageSize HeightOffset: 4 points 0 0
*ParamCustomPageSize Orientation: 5 int 0 0
*%==============================================
*% Input Slot Definitions
*%==============================================
*OpenUI *InputSlot: PickOne
*OrderDependency: 15 AnySetup *InputSlot
*DefaultInputSlot: Tray1
*InputSlot Tray1/Tiroir 1: "
<< /ManualFeed false /DeferredMediaSelection false >> setpagedevice
statusdict begin 0 setpapertray end"
*End
*InputSlot Tray2/Tiroir 2: "
<< /ManualFeed false /DeferredMediaSelection false >> setpagedevice
statusdict begin 1 setpapertray end"
*End
*InputSlot Tray3/Tiroir 3: "
<< /ManualFeed false /DeferredMediaSelection false >> setpagedevice
statusdict begin 4 setpapertray end"
*End
*InputSlot Tray4/Tiroir 4: "
<< /ManualFeed false /DeferredMediaSelection false >> setpagedevice
statusdict begin 5 setpapertray end"
*End
*InputSlot LCD/Plateau gros volume: "
<< /ManualFeed false /DeferredMediaSelection false >> setpagedevice
statusdict begin 4 setpapertray end"
*End
*InputSlot MF1/Plateau Bypass: "
<< /ManualFeed false /DeferredMediaSelection false >> setpagedevice
statusdict begin 3 setpapertray end"
*End
*?InputSlot: ""
*CloseUI: *InputSlot
*%==============================================
*% MediaType Definitions
*%==============================================
*OpenUI *MediaType/Type de support: PickOne
*OrderDependency: 20 AnySetup *MediaType
*DefaultMediaType: PrnDef
*MediaType PrnDef/Imprimante par D<E9>faut: ""
*MediaType Plain/Normal: "
<< /ManualFeed false /MediaType (Plain) /DeferredMediaSelection true >> setpagedevice"
*End
*MediaType Transparency/Transparent: "
<< /ManualFeed false /MediaType (Transparency) /DeferredMediaSelection true >> setpagedevice"
*End
*MediaType Preprinted/Pr<E9>imprim<E9>: "
<< /ManualFeed false /MediaType (Preprinted) /DeferredMediaSelection true >> setpagedevice"
*End
*MediaType Labels/Etiquettes: "
<< /ManualFeed false /MediaType (Labels) /DeferredMediaSelection true >> setpagedevice"
*End
*MediaType Bond/Papier <E0> lettre: "
<< /ManualFeed false /MediaType (Bond) /DeferredMediaSelection true >> setpagedevice"
*End
*MediaType Recycled/Recycl<E9>: "
<< /ManualFeed false /MediaType (Recycled) /DeferredMediaSelection true >> setpagedevice"
*End
*MediaType Vellum/V<E9>lin: "
<< /ManualFeed false /MediaType (Vellum) /DeferredMediaSelection true >> setpagedevice"
*End
*MediaType Rough/Rugueux: "
<< /ManualFeed false /MediaType (Rough) /DeferredMediaSelection true >> setpagedevice"
*End
*MediaType Letterhead/En-t<EA>te: "
<< /ManualFeed false /MediaType (Letterhead) /DeferredMediaSelection true >> setpagedevice"
*End
*MediaType Color/Couleur: "
<< /ManualFeed false /MediaType (Color) /DeferredMediaSelection true >> setpagedevice"
*End
*MediaType Prepunched/Perfor<E9>: "
<< /ManualFeed false /MediaType (Prepunched) /DeferredMediaSelection true >> setpagedevice"
*End
*MediaType Envelope/Enveloppe: "
<< /ManualFeed false /MediaType (Envelope) /DeferredMediaSelection true >> setpagedevice"
*End
*MediaType Cardstock/Carte: "
<< /ManualFeed false /MediaType (Card Stock) /DeferredMediaSelection true >> setpagedevice"
*End
*MediaType Thick/<C9>pais: "
<< /ManualFeed false /MediaType (Thick) /DeferredMediaSelection true >> setpagedevice"
*End
*MediaType FinePaper/Haute qualit<E9>: "
<< /ManualFeed false /MediaType (Fine) /DeferredMediaSelection true >> setpagedevice"
*End
*MediaType User1/Personnalis<E9> 1: "
<< /ManualFeed false /MediaType (Custom Type1) /DeferredMediaSelection true >> setpagedevice"
*End
*MediaType User2/Personnalis<E9> 2: "
<< /ManualFeed false /MediaType (Custom Type2) /DeferredMediaSelection true >> setpagedevice"
*End
*MediaType User3/Personnalis<E9> 3: "
<< /ManualFeed false /MediaType (Custom Type3) /DeferredMediaSelection true >> setpagedevice"
*End
*MediaType User4/Personnalis<E9> 4: "
<< /ManualFeed false /MediaType (Custom Type4) /DeferredMediaSelection true >> setpagedevice"
*End
*MediaType User5/Personnalis<E9> 5: "
<< /ManualFeed false /MediaType (Custom Type5) /DeferredMediaSelection true >> setpagedevice"
*End
*MediaType User6/Personnalis<E9> 6: "
<< /ManualFeed false /MediaType (Custom Type6) /DeferredMediaSelection true >> setpagedevice"
*End
*MediaType User7/Personnalis<E9> 7: "
<< /ManualFeed false /MediaType (Custom Type7) /DeferredMediaSelection true >> setpagedevice"
*End
*MediaType User8/Personnalis<E9> 8: "
<< /ManualFeed false /MediaType (Custom Type8) /DeferredMediaSelection true >> setpagedevice"
*End
*?MediaType: "
save
currentpagedevice /MediaType {get} stopped
{pop pop (Unknown)} {dup null eq {pop (Unknown)} if} ifelse = flush
restore"
*End
*CloseUI: *MediaType
*RequiresPageRegion All: True
*%==============================================
*% Output Bin Definitions
*%==============================================
*OpenUI *OutputBin/Destination papier: PickOne
*OrderDependency: 25 AnySetup *OutputBin
*DefaultOutputBin:Facedown
*OutputBin Facedown/Bac sup<E9>rieur(Recto vers le bas): "0 statusdict /setoutputtray get exec
<< /OutputFaceUp false >> setpagedevice"
*End
*OutputBin Main/Finisseur (Recto vers le bas): "2 statusdict /setoutputtray get exec
<< /OutputFaceUp false >> setpagedevice"
*End
*OutputBin Sub/Finisseur (Recto vers le haut): "1 statusdict /setoutputtray get exec
<< /OutputFaceUp true >> setpagedevice"
*End
*OutputBin MB1Dn/Bo<EE>te lettres 1 (Recto vers le bas): "4 statusdict /setoutputtray get exec
<< /OutputFaceUp false >> setpagedevice"
*End
*OutputBin MB2Dn/Bo<EE>te lettres 2 (Recto vers le bas): "5 statusdict /setoutputtray get exec
<< /OutputFaceUp false >> setpagedevice"
*End
*OutputBin MB3Dn/Bo<EE>te lettres 3 (Recto vers le bas): "6 statusdict /setoutputtray get exec
<< /OutputFaceUp false >> setpagedevice"
*End
*OutputBin MB4Dn/Bo<EE>te lettres 4 (Recto vers le bas): "7 statusdict /setoutputtray get exec
<< /OutputFaceUp false >> setpagedevice"
*End
*OutputBin MB5Dn/Bo<EE>te lettres 5 (Recto vers le bas): "8 statusdict /setoutputtray get exec
<< /OutputFaceUp false >> setpagedevice"
*End
*OutputBin MB6Dn/Bo<EE>te lettres 6 (Recto vers le bas): "9 statusdict /setoutputtray get exec
<< /OutputFaceUp false >> setpagedevice"
*End
*OutputBin MB7Dn/Bo<EE>te lettres 7 (Recto vers le bas): "10 statusdict /setoutputtray get exec
<< /OutputFaceUp false >> setpagedevice"
*End
*OutputBin MB1Up/Bo<EE>te lettres 1 (Recto vers le haut): "4 statusdict /setoutputtray get exec
<< /OutputFaceUp true >> setpagedevice"
*End
*OutputBin MB2Up/Bo<EE>te lettres 2 (Recto vers le haut): "5 statusdict /setoutputtray get exec
<< /OutputFaceUp true >> setpagedevice"
*End
*OutputBin MB3Up/Bo<EE>te lettres 3 (Recto vers le haut): "6 statusdict /setoutputtray get exec
<< /OutputFaceUp true >> setpagedevice"
*End
*OutputBin MB4Up/Bo<EE>te lettres 4 (Recto vers le haut): "7 statusdict /setoutputtray get exec
<< /OutputFaceUp true >> setpagedevice"
*End
*OutputBin MB5Up/Bo<EE>te lettres 5 (Recto vers le haut): "8 statusdict /setoutputtray get exec
<< /OutputFaceUp true >> setpagedevice"
*End
*OutputBin MB6Up/Bo<EE>te lettres 6 (Recto vers le haut): "9 statusdict /setoutputtray get exec
<< /OutputFaceUp true >> setpagedevice"
*End
*OutputBin MB7Up/Bo<EE>te lettres 7 (Recto vers le haut): "10 statusdict /setoutputtray get exec
<< /OutputFaceUp true >> setpagedevice"
*End
*?OutputBin: ""
*CloseUI: *OutputBin
*% Page Stack Order
*%==============================================
*% Staple Mode Definitions
*%==============================================
*OpenUI *KMStapleMode/Agrafage: PickOne
*OrderDependency: 30 AnySetup *KMStapleMode
*DefaultKMStapleMode: None
*KMStapleMode None/Arret: "<< /Staple 0 >> setpagedevice"
*KMStapleMode Front1/Avant:"
userdict /UIStapleDetails known not { userdict /UIStapleDetails 10 dict put } if
userdict /UIStapleDetails get /StaplePosition 1 put
<< /Staple 3 /StapleDetails UIStapleDetails >> setpagedevice"
*End
*KMStapleMode Rear1/Arri<E8>re:"
userdict /UIStapleDetails known not { userdict /UIStapleDetails 10 dict put } if
userdict /UIStapleDetails get /StaplePosition 2 put
<< /Staple 3 /StapleDetails UIStapleDetails >> setpagedevice"
*End
*KMStapleMode Center1/Centre:"
userdict /UIStapleDetails known not { userdict /UIStapleDetails 10 dict put } if
userdict /UIStapleDetails get /StaplePosition 3 put
<< /Staple 3 /StapleDetails UIStapleDetails >> setpagedevice"
*End
*?KMStapleMode: "
save
currentpagedevice /Staple known
dup {currentpagedevice /Staple get 0 ne and} if
{currentpagedevice /StapleDetails get
/StaplePosition get [(Front)(Center)(Rear)] exch get }
{ (None) } ifelse = flush restore"
*End
*CloseUI: *KMStapleMode
*%==============================================
*% 1 Staple Method Definitions
*%==============================================
*OpenUI *StapleCount/Staple Method: PickOne
*OrderDependency: 30 AnySetup *StapleCount
*DefaultStapleCount: Auto
*StapleCount Auto/Non: ""
*StapleCount Each50/Agrafer Toutes les 50 Feuilles: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 50 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*StapleCount Each49/Agrafer Toutes les 49 Feuilles: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 49 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*StapleCount Each48/Agrafer Toutes les 48 Feuilles: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 48 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*StapleCount Each47/Agrafer Toutes les 47 Feuilles: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 47 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*StapleCount Each46/Agrafer Toutes les 46 Feuilles: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 46 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*StapleCount Each45/Agrafer Toutes les 45 Feuilles: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 45 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*StapleCount Each44/Agrafer Toutes les 44 Feuilles: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 44 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*StapleCount Each43/Agrafer Toutes les 43 Feuilles: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 43 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*StapleCount Each42/Agrafer Toutes les 42 Feuilles: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 42 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*StapleCount Each41/Agrafer Toutes les 41 Feuilles: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 41 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*StapleCount Each40/Agrafer Toutes les 40 Feuilles: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 40 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*StapleCount Each39/Agrafer Toutes les 39 Feuilles: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 39 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*StapleCount Each38/Agrafer Toutes les 38 Feuilles: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 38 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*StapleCount Each37/Agrafer Toutes les 37 Feuilles: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 37 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*StapleCount Each36/Agrafer Toutes les 36 Feuilles: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 36 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*StapleCount Each35/Agrafer Toutes les 35 Feuilles: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 35 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*StapleCount Each34/Agrafer Toutes les 34 Feuilles: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 34 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*StapleCount Each33/Agrafer Toutes les 33 Feuilles: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 33 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*StapleCount Each32/Agrafer Toutes les 32 Feuilles: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 32 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*StapleCount Each31/Agrafer Toutes les 31 Feuilles: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 31 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*StapleCount Each30/Agrafer Toutes les 30 Feuilles: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 30 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*StapleCount Each29/Agrafer Toutes les 29 Feuilles: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 29 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*StapleCount Each28/Agrafer Toutes les 28 Feuilles: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 28 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*StapleCount Each27/Agrafer Toutes les 27 Feuilles: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 27 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*StapleCount Each26/Agrafer Toutes les 26 Feuilles: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 26 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*StapleCount Each25/Agrafer Toutes les 25 Feuilles: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 25 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*StapleCount Each24/Agrafer Toutes les 24 Feuilles: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 24 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*StapleCount Each23/Agrafer Toutes les 23 Feuilles: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 23 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*StapleCount Each22/Agrafer Toutes les 22 Feuilles: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 22 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*StapleCount Each21/Agrafer Toutes les 21 Feuilles: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 21 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*StapleCount Each20/Agrafer Toutes les 20 Feuilles: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 20 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*StapleCount Each19/Agrafer Toutes les 19 Feuilles: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 19 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*StapleCount Each18/Agrafer Toutes les 18 Feuilles: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 18 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*StapleCount Each17/Agrafer Toutes les 17 Feuilles: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 17 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*StapleCount Each16/Agrafer Toutes les 16 Feuilles: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 16 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*StapleCount Each15/Agrafer Toutes les 15 Feuilles: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 15 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*StapleCount Each14/Agrafer Toutes les 14 Feuilles: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 14 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*StapleCount Each13/Agrafer Toutes les 13 Feuilles: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 13 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*StapleCount Each12/Agrafer Toutes les 12 Feuilles: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 12 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*StapleCount Each11/Agrafer Toutes les 11 Feuilles: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 11 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*StapleCount Each10/Agrafer Toutes les 10 Feuilles: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 10 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*StapleCount Each9/Agrafer Toutes les 9 Feuilles: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 9 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*StapleCount Each8/Agrafer Toutes les 8 Feuilles: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 8 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*StapleCount Each7/Agrafer Toutes les 7 Feuilles: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 7 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*StapleCount Each6/Agrafer Toutes les 6 Feuilles: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 6 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*StapleCount Each5/Agrafer Toutes les 5 Feuilles: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 5 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*StapleCount Each4/Agrafer Toutes les 4 Feuilles: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 4 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*StapleCount Each3/Agrafer Toutes les 3 Feuilles: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 3 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*StapleCount Each2/Agrafer Toutes les 2 Feuilles: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 2 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*?StapleCount: "save (Auto) = flush restore"
*CloseUI: *StapleCount
*%==============================================
*% Punch Method Definitions
*%==============================================
*OpenUI *KCPunch/Perforer: PickOne
*OrderDependency: 30 AnySetup *KCPunch
*DefaultKCPunch: None
*KCPunch None/Arret: "<< /Punch 0 >> setpagedevice"
*KCPunch autoholes/Perforer (Relieur broch): "
<< /Punch 3 /PunchDetails << /PunchMode 1 >> >> setpagedevice"
*End
*KCPunch 2holesUS/Perforations 2 (US): "
<< /Punch 3 /PunchDetails << /PunchMode 2 >> >> setpagedevice"
*End
*KCPunch 2holesEUR/Perforations 2 (EUR): "
<< /Punch 3 /PunchDetails << /PunchMode 1 >> >> setpagedevice"
*End
*KCPunch 3holes/Perforations 3: "
<< /Punch 3 /PunchDetails << /PunchMode 1 >> >> setpagedevice"
*End
*KCPunch 4holes/Perforations 4: "
<< /Punch 3 /PunchDetails << /PunchMode 2 >> >> setpagedevice"
*End
*?KCPunch: "
save
currentpagedevice /Punch known
dup { currentpagedevice /Punch get 0 ne and } if
{ currentpagedevice /Mode get
/Mode get [(2or3holes)(4or2holes)] exch get }
{ (None) } ifelse = flush restore"
*End
*CloseUI: *KCPunch
*%==============================================
*% Booklet Definitions
*%==============================================
*OpenUI *KCBooklet/Livret: PickOne
*OrderDependency: 40 AnySetup *KCBooklet
*DefaultKCBooklet: OFF
*KCBooklet OFF/Arret: "0 statusdict /setkcbooklet get exec"
*KCBooklet LeftOpen/Gauche ouvert: "statusdict begin true setduplexmode true settumble end 1 statusdict /setkcbooklet get exec"
*KCBooklet RightOpen/Droit ouvert: "statusdict begin true setduplexmode true settumble end 2 statusdict /setkcbooklet get exec"
*CloseUI: *KCBooklet
*%==============================================
*% Booklet Fold Definision
*%==============================================
*OpenUI *Fold/Reliure broch: PickOne
*DefaultFold: OFF
*OrderDependency: 40 AnySetup *Fold
*Fold OFF/Arret: "<< /Fold 0 >> setpagedevice"
*Fold ON/Marche: "<< /Fold 3 /FoldDetails << /FoldMode 1 >> >> setpagedevice"
*CloseUI: *Fold
*%==============================================
*% Job Offset Definitions
*%==============================================
*OpenUI *Jog/D<E9>calage: PickOne
*OrderDependency: 50 AnySetup *Jog
*DefaultJog: None
*Jog EndOfSet/Marche: "<< /Jog 3 >> setpagedevice"
*Jog None/Arret: "<< /Jog 0 >> setpagedevice"
*?Jog: "
save
currentpagedevice dup /Jog known {
/Jog get dup 0 gt
{(False)}{(True)} ifelse
}{(Unknown)} ifelse
exch pop
= flush restore"
*End
*CloseUI: *Jog
*%==============================================
*% Duplex Definitions
*%==============================================
*OpenUI *Duplex/Duplexing: PickOne
*OrderDependency: 35 AnySetup *Duplex
*DefaultDuplex: None
*Duplex None/None: "statusdict begin false setduplexmode false settumble end"
*Duplex DuplexTumble/Short Edge: "statusdict begin true setduplexmode true settumble end"
*Duplex DuplexNoTumble/Long Edge: "statusdict begin true setduplexmode false settumble end"
*?Duplex: "
save
statusdict begin
duplexmode
{tumble {(DuplexTumble)}{(DuplexNoTumble)} ifelse}
{(None)} ifelse
= flush end restore"
*End
*CloseUI: *Duplex
*%==============================================
*% Job Spooling Definitions
*%==============================================
*OpenUI *KCCollate/Rang't travail: PickOne
*OrderDependency: 50 AnySetup *KCCollate
*DefaultKCCollate: Def
*KCCollate Def/Imprimante par D<E9>faut: ""
*KCCollate None/Non: "<< /Collate false >> setpagedevice"
*KCCollate Temp/Temporaire: "
userdict /UICollateDetails known not {userdict /UICollateDetails 10 dict put} if
userdict /UICollateDetails get /Mode 1 put <</Collate true /CollateDetails UICollateDetails>> setpagedevice"
*End
*KCCollate Perm/Permanent: "
userdict /UICollateDetails known not {userdict /UICollateDetails 10 dict put} if
userdict /UICollateDetails get /Mode 2 put <</Collate true /CollateDetails UICollateDetails>> setpagedevice"
*End
*KCCollate VMBAdmin/Casier virtuel (Administrateur): "
userdict /UICollateDetails known not {userdict /UICollateDetails 10 dict put} if
userdict /UICollateDetails get dup /Mode 8 put /Destination [(Administrator)] put <</Collate true /CollateDetails UICollateDetails>> setpagedevice"
*End
*KCCollate VMBUser01/Casier virtuel (Utilisateur 1): "
userdict /UICollateDetails known not {userdict /UICollateDetails 10 dict put} if
userdict /UICollateDetails get dup /Mode 8 put /Destination [(User 1)] put <</Collate true /CollateDetails UICollateDetails>> setpagedevice"
*End
*KCCollate VMBUser02/Casier virtuel (Utilisateur 2): "
userdict /UICollateDetails known not {userdict /UICollateDetails 10 dict put} if
userdict /UICollateDetails get dup /Mode 8 put /Destination [(User 2)] put <</Collate true /CollateDetails UICollateDetails>> setpagedevice"
*End
*KCCollate VMBUser03/Casier virtuel (Utilisateur 3): "
userdict /UICollateDetails known not {userdict /UICollateDetails 10 dict put} if
userdict /UICollateDetails get dup /Mode 8 put /Destination [(User 3)] put <</Collate true /CollateDetails UICollateDetails>> setpagedevice"
*End
*KCCollate VMBUser04/Casier virtuel (Utilisateur 4): "
userdict /UICollateDetails known not {userdict /UICollateDetails 10 dict put} if
userdict /UICollateDetails get dup /Mode 8 put /Destination [(User 4)] put <</Collate true /CollateDetails UICollateDetails>> setpagedevice"
*End
*KCCollate VMBUser05/Casier virtuel (Utilisateur 5): "
userdict /UICollateDetails known not {userdict /UICollateDetails 10 dict put} if
userdict /UICollateDetails get dup /Mode 8 put /Destination [(User 5)] put <</Collate true /CollateDetails UICollateDetails>> setpagedevice"
*End
*KCCollate VMBUser06/Casier virtuel (Utilisateur 6): "
userdict /UICollateDetails known not {userdict /UICollateDetails 10 dict put} if
userdict /UICollateDetails get dup /Mode 8 put /Destination [(User 6)] put <</Collate true /CollateDetails UICollateDetails>> setpagedevice"
*End
*KCCollate VMBUser07/Casier virtuel (Utilisateur 7): "
userdict /UICollateDetails known not {userdict /UICollateDetails 10 dict put} if
userdict /UICollateDetails get dup /Mode 8 put /Destination [(User 7)] put <</Collate true /CollateDetails UICollateDetails>> setpagedevice"
*End
*KCCollate VMBUser08/Casier virtuel (Utilisateur 8): "
userdict /UICollateDetails known not {userdict /UICollateDetails 10 dict put} if
userdict /UICollateDetails get dup /Mode 8 put /Destination [(User 8)] put <</Collate true /CollateDetails UICollateDetails>> setpagedevice"
*End
*KCCollate VMBUser09/Casier virtuel (Utilisateur 9): "
userdict /UICollateDetails known not {userdict /UICollateDetails 10 dict put} if
userdict /UICollateDetails get dup /Mode 8 put /Destination [(User 9)] put <</Collate true /CollateDetails UICollateDetails>> setpagedevice"
*End
*KCCollate VMBUser10/Casier virtuel (Utilisateur 10): "
userdict /UICollateDetails known not {userdict /UICollateDetails 10 dict put} if
userdict /UICollateDetails get dup /Mode 8 put /Destination [(User 10)] put <</Collate true /CollateDetails UICollateDetails>> setpagedevice"
*End
*KCCollate QuickCopy/Exemplaire rapide: "
userdict /UICollateDetails known not {userdict /UICollateDetails 10 dict put} if
userdict /UICollateDetails get dup /Mode 0 put dup /Type 8 put /Hold 1 put <</Collate true /CollateDetails UICollateDetails>> setpagedevice"
*End
*KCCollate ProofHold/V<E9>rification avant impression: "
userdict /UICollateDetails known not {userdict /UICollateDetails 10 dict put} if
userdict /UICollateDetails get dup /Mode 0 put dup /Type 8 put /Hold 3 put <</Collate true /CollateDetails UICollateDetails>> setpagedevice"
*End
*KCCollate JobStorage/M<E9>moire de t<E2>ches: "
userdict /UICollateDetails known not {userdict /UICollateDetails 10 dict put} if
userdict /UICollateDetails get dup /Mode 0 put dup /Type 8 put /Hold 2 put <</Collate true /CollateDetails UICollateDetails>> setpagedevice"
*End
*?KCCollate: "
save
currentpagedevice dup /Collate known {
dup /CollateDetails known {
/CollateDetails get
dup /Mode known {
/Mode get
1 {
dup 1 eq {pop (Temp) exit} if
dup 2 eq {pop (Perm) exit} if
dup 8 eq {pop (VMB) exit} if
pop (Unknown)
} repeat
}{pop (Unknown)} ifelse
}{pop (Unknown)} ifelse
}{pop (Unknown)} ifelse
= flush restore"
*End
*CloseUI: *KCCollate
*%==============================================
*% Management Code Definitions
*%==============================================
*OpenUI *KmManagement/Code de gestion: PickOne
*OrderDependency: 60 AnySetup *KmManagement
*DefaultKmManagement: Default
*KmManagement Default/Arret: ""
*KmManagement MG0000/0000: "(0000) statusdict /setmanagementnumber get exec"
*KmManagement MG0001/0001: "(0001) statusdict /setmanagementnumber get exec"
*KmManagement MG0002/0002: "(0002) statusdict /setmanagementnumber get exec"
*KmManagement MG0003/0003: "(0003) statusdict /setmanagementnumber get exec"
*KmManagement MG0004/0004: "(0004) statusdict /setmanagementnumber get exec"
*KmManagement MG0005/0005: "(0005) statusdict /setmanagementnumber get exec"
*KmManagement MG0006/0006: "(0006) statusdict /setmanagementnumber get exec"
*KmManagement MG0007/0007: "(0007) statusdict /setmanagementnumber get exec"
*KmManagement MG0008/0008: "(0008) statusdict /setmanagementnumber get exec"
*KmManagement MG0009/0009: "(0009) statusdict /setmanagementnumber get exec"
*KmManagement MG0010/0010: "(0010) statusdict /setmanagementnumber get exec"
*KmManagement MG0011/0011: "(0011) statusdict /setmanagementnumber get exec"
*KmManagement MG0012/0012: "(0012) statusdict /setmanagementnumber get exec"
*KmManagement MG0013/0013: "(0013) statusdict /setmanagementnumber get exec"
*KmManagement MG0014/0014: "(0014) statusdict /setmanagementnumber get exec"
*KmManagement MG0015/0015: "(0015) statusdict /setmanagementnumber get exec"
*KmManagement MG0016/0016: "(0016) statusdict /setmanagementnumber get exec"
*KmManagement MG0017/0017: "(0017) statusdict /setmanagementnumber get exec"
*KmManagement MG0018/0018: "(0018) statusdict /setmanagementnumber get exec"
*KmManagement MG0019/0019: "(0019) statusdict /setmanagementnumber get exec"
*KmManagement MG0020/0020: "(0020) statusdict /setmanagementnumber get exec"
*KmManagement MG0021/0021: "(0021) statusdict /setmanagementnumber get exec"
*KmManagement MG0022/0022: "(0022) statusdict /setmanagementnumber get exec"
*KmManagement MG0023/0023: "(0023) statusdict /setmanagementnumber get exec"
*KmManagement MG0024/0024: "(0024) statusdict /setmanagementnumber get exec"
*KmManagement MG0025/0025: "(0025) statusdict /setmanagementnumber get exec"
*KmManagement MG0026/0026: "(0026) statusdict /setmanagementnumber get exec"
*KmManagement MG0027/0027: "(0027) statusdict /setmanagementnumber get exec"
*KmManagement MG0028/0028: "(0028) statusdict /setmanagementnumber get exec"
*KmManagement MG0029/0029: "(0029) statusdict /setmanagementnumber get exec"
*KmManagement MG0030/0030: "(0030) statusdict /setmanagementnumber get exec"
*KmManagement MG0000000/0000000: "(0000000) statusdict /setmanagementnumber get exec"
*KmManagement MG0000001/0000001: "(0000001) statusdict /setmanagementnumber get exec"
*KmManagement MG0000002/0000002: "(0000002) statusdict /setmanagementnumber get exec"
*KmManagement MG0000003/0000003: "(0000003) statusdict /setmanagementnumber get exec"
*KmManagement MG0000004/0000004: "(0000004) statusdict /setmanagementnumber get exec"
*KmManagement MG0000005/0000005: "(0000005) statusdict /setmanagementnumber get exec"
*KmManagement MG0000006/0000006: "(0000006) statusdict /setmanagementnumber get exec"
*KmManagement MG0000007/0000007: "(0000007) statusdict /setmanagementnumber get exec"
*KmManagement MG0000008/0000008: "(0000008) statusdict /setmanagementnumber get exec"
*KmManagement MG0000009/0000009: "(0000009) statusdict /setmanagementnumber get exec"
*KmManagement MG0000010/0000010: "(0000010) statusdict /setmanagementnumber get exec"
*KmManagement MG0000011/0000011: "(0000011) statusdict /setmanagementnumber get exec"
*KmManagement MG0000012/0000012: "(0000012) statusdict /setmanagementnumber get exec"
*KmManagement MG0000013/0000013: "(0000013) statusdict /setmanagementnumber get exec"
*KmManagement MG0000014/0000014: "(0000014) statusdict /setmanagementnumber get exec"
*KmManagement MG0000015/0000015: "(0000015) statusdict /setmanagementnumber get exec"
*KmManagement MG0000016/0000016: "(0000016) statusdict /setmanagementnumber get exec"
*KmManagement MG0000017/0000017: "(0000017) statusdict /setmanagementnumber get exec"
*KmManagement MG0000018/0000018: "(0000018) statusdict /setmanagementnumber get exec"
*KmManagement MG0000019/0000019: "(0000019) statusdict /setmanagementnumber get exec"
*KmManagement MG0000020/0000020: "(0000020) statusdict /setmanagementnumber get exec"
*KmManagement MG0000021/0000021: "(0000021) statusdict /setmanagementnumber get exec"
*KmManagement MG0000022/0000022: "(0000022) statusdict /setmanagementnumber get exec"
*KmManagement MG0000023/0000023: "(0000023) statusdict /setmanagementnumber get exec"
*KmManagement MG0000024/0000024: "(0000024) statusdict /setmanagementnumber get exec"
*KmManagement MG0000025/0000025: "(0000025) statusdict /setmanagementnumber get exec"
*KmManagement MG0000026/0000026: "(0000026) statusdict /setmanagementnumber get exec"
*KmManagement MG0000027/0000027: "(0000027) statusdict /setmanagementnumber get exec"
*KmManagement MG0000028/0000028: "(0000028) statusdict /setmanagementnumber get exec"
*KmManagement MG0000029/0000029: "(0000029) statusdict /setmanagementnumber get exec"
*KmManagement MG0000030/0000030: "(0000030) statusdict /setmanagementnumber get exec"
*?KmManagement: ""
*End
*CloseUI: *KmManagement
*%==============================================
*% 180 Rotate Setting
*%==============================================
*OpenUI *Rotate/180 Pivot<E9>: Boolean
*OrderDependency: 20 AnySetup *Rotate
*DefaultRotate: False
*Rotate True/Marche: "userdict /180rotdetail known not
{
userdict /180rotdetail true put
1 dict begin currentpagedevice /Install get aload
/aaa exch def { currentpagedevice /PageSize get aload pop translate 180 rotate } bind aload
length /aaa load length add array astore cvx /Install exch def currentdict end setpagedevice
} if"
*Rotate False/Arret: ""
*?Rotate: "
(False) ="
*End
*CloseUI: *Rotate
*%==============================================
*% KCSuperWatermark
*%==============================================
*OpenUI *KCSuperWatermark/Super Watermark: PickOne
*OrderDependency: 10 AnySetup *KCSuperWatermark
*DefaultKCSuperWatermark: None
*KCSuperWatermark None/Non: ""
*KCSuperWatermark UFA/Use Form-A: "<</BeginPage {pop mark {(%disk0%Form-A) kcloadpageimage} stopped cleartomark}>> setpagedevice"
*KCSuperWatermark UFB/Use Form-B: "<</BeginPage {pop mark {(%disk0%Form-B) kcloadpageimage} stopped cleartomark}>> setpagedevice"
*KCSuperWatermark UFC/Use Form-C: "<</BeginPage {pop mark {(%disk0%Form-C) kcloadpageimage} stopped cleartomark}>> setpagedevice"
*KCSuperWatermark SFA/Save Form-A: "<</EndPage {exch pop 2 ne dup mark exch {{(%disk0%Form-A) kcsavepageimage} stopped} if cleartomark}>> setpagedevice"
*KCSuperWatermark SFB/Save Form-B: "<</EndPage {exch pop 2 ne dup mark exch {{(%disk0%Form-B) kcsavepageimage} stopped} if cleartomark}>> setpagedevice"
*KCSuperWatermark SFC/Save Form-C: "<</EndPage {exch pop 2 ne dup mark exch {{(%disk0%Form-C) kcsavepageimage} stopped} if cleartomark}>> setpagedevice"
*CloseUI: *KCSuperWatermark
*%==============================================
*% Tray Switch Definitions
*%==============================================
*OpenUI *KCTraySwitch/Choix Automatique: PickOne
*OrderDependency: 25 AnySetup *KCTraySwitch
*DefaultKCTraySwitch: PrnDef
*KCTraySwitch PrnDef/Imprimante par D<E9>faut: ""
*KCTraySwitch True/Marche: "<< /TraySwitch true >> setpagedevice"
*KCTraySwitch False/Arret: "<< /TraySwitch false >> setpagedevice"
*?KCTraySwitch: "
save
currentpagedevice /TraySwitch get
{ (True) }{ (False) } ifelse
= flush restore"
*End
*CloseUI: *KCTraySwitch
*%==============================================
*% PPD Version Info
*%==============================================
*OpenUI *KMVersion/PPD Version: PickOne
*OrderDependency: 70 AnySetup *KMVersion
*DefaultKMVersion: Default
*KMVersion Default/8.2.0111 [01-11-2005]: ""
*CloseUI: *KMVersion
*% Font Information
*DefaultFont: Courier
*Font AvantGarde-Book: Standard "(001.006S)" Standard ROM
*Font AvantGarde-BookOblique: Standard "(001.006S)" Standard ROM
*Font AvantGarde-Demi: Standard "(001.007S)" Standard ROM
*Font AvantGarde-DemiOblique: Standard "(001.007S)" Standard ROM
*Font Bookman-Light: Standard "(001.004S)" Standard ROM
*Font Bookman-LightItalic: Standard "(001.004S)" Standard ROM
*Font Bookman-Demi: Standard "(001.004S)" Standard ROM
*Font Bookman-DemiItalic: Standard "(001.004S)" Standard ROM
*Font Courier: Standard "(002.004S)" Standard ROM
*Font Courier-Oblique: Standard "(002.004S)" Standard ROM
*Font Courier-Bold: Standard "(002.004S)" Standard ROM
*Font Courier-BoldOblique: Standard "(002.004S)" Standard ROM
*Font Helvetica: Standard "(001.006S)" Standard ROM
*Font Helvetica-Oblique: Standard "(001.006S)" Standard ROM
*Font Helvetica-Bold: Standard "(001.007S)" Standard ROM
*Font Helvetica-BoldOblique: Standard "(001.007S)" Standard ROM
*Font Helvetica-Narrow: Standard "(001.006S)" Standard ROM
*Font Helvetica-Narrow-Oblique: Standard "(001.006S)" Standard ROM
*Font Helvetica-Narrow-Bold: Standard "(001.007S)" Standard ROM
*Font Helvetica-Narrow-BoldOblique: Standard "(001.007S)" Standard ROM
*Font NewCenturySchlbk-Roman: Standard "(001.007S)" Standard ROM
*Font NewCenturySchlbk-Italic: Standard "(001.006S)" Standard ROM
*Font NewCenturySchlbk-Bold: Standard "(001.009S)" Standard ROM
*Font NewCenturySchlbk-BoldItalic: Standard "(001.007S)" Standard ROM
*Font Palatino-Roman: Standard "(001.005S)" Standard ROM
*Font Palatino-Italic: Standard "(001.005S)" Standard ROM
*Font Palatino-Bold: Standard "(001.005S)" Standard ROM
*Font Palatino-BoldItalic: Standard "(001.005S)" Standard ROM
*Font Symbol: Special "(001.007S)" Special ROM
*Font Times-Roman: Standard "(001.007S)" Standard ROM
*Font Times-Italic: Standard "(001.007S)" Standard ROM
*Font Times-Bold: Standard "(001.007S)" Standard ROM
*Font Times-BoldItalic: Standard "(001.009S)" Standard ROM
*Font ZapfChancery-MediumItalic: Standard "(001.007S)" Standard ROM
*Font ZapfDingbats: Special "(001.004S)" Special ROM
*?FontQuery: "
save
/str 100 string dup 0 (fonts/) putinterval def
{count 1 gt
{ exch dup str 6 94 getinterval cvs
(/) print print (:) print
FontDirectory exch known
{(Yes)}{(No)} ifelse =
}{exit} ifelse
} bind loop (*)
= flush restore"
*End
*?FontList: "save FontDirectory { pop == } bind forall flush (*) = flush restore"
*% 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: <one of these> ]%% )
*Status: "warming up"/warming up
*Status: "idle"/idle
*Status: "busy"/busy
*Status: "waiting"/waiting
*Status: "printing"/printing
*Status: "initializing"/initializing
*Status: "printing test page"/printing test page
*% Printer Error (format: %%[ PrinterError: <one of these> ]%% )
*PrinterError: "paper entry misfeed"
*PrinterError: "cover open"
*PrinterError: "no paper tray"
*PrinterError: "out of paper"
*PrinterError: "toner low (halt)"
*PrinterError: "warming up"
*PrinterError: "other reason"
*PrinterError: "video interface mode"
*PrinterError: "offline"
*PrinterError: "toner low (warning)"
*% Input Sources (format: %%[ status: <stat>;source:<one of these> ]%% )
*Source: "Serial"
*Source: "parallel"
*Source: "LocalTalk"
*Source: "option"
*% End of PPD file for Kyocera Mita FS-9520DN (French)
|