1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287
|
*PPD-Adobe: "4.3"
*%
*% Printer Description file
*% for "Infotec Pro 1107EX PS"
*%
*% CreationDate: 2008/04/10
*% Modified: 2016/04/22
*%
*% COPYRIGHT (C) 2008-2016 RICOH COMPANY, LTD.
*%
*% 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 -- please see www.opensource.org]
*%
*FileVersion: "1.1"
*FormatVersion: "4.3"
*LanguageEncoding: ISOLatin1
*LanguageVersion: English
*ModelName: "Infotec Pro 1107EX"
*PCFileName: "IF1442E3.PPD"
*Manufacturer: "Infotec"
*1284DeviceID: "MFG:infotec;MDL:Pro 1107EX;CMD:POSTSCRIPT;"
*Product: "(infotec Pro 1107EX PS3)"
*PSVersion: "(3017.104) 2"
*ShortNickName: "Infotec Pro 1107EX PS"
*NickName: "Infotec Pro 1107EX PS"
*%PNP_NAME: "Pro 1107EX"
*%LOADDLL_NAME32: "MFRICRES.dll"
*%RESDLL_NAME32: "Pr901dat.dll"
*%LOADDLL_VERSION32: "1,1,9,0"
*%LOADDLL_NAME64: "MFRICR64.dll"
*%RESDLL_NAME64: "Pr901d64.dll"
*%LOADDLL_VERSION64: "1,1,9,0"
*%HTMLHELPTYPE: "::/XPS_PS/"
*%Finisher.FinCOLUMBIA.BookletOpposite
*%BookletProcessor.Plockmatic.BookletOpposite
*%========== 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
*FileSystem: True
*?FileSystem: "
save
statusdict /diskonline get exec
{(True)}{(False)}ifelse = flush
restore
"
*End
*Throughput: "110"
*%========== Installable Options ==========
*%========== & System Management ==========
*OpenGroup: InstallableOptions/Installable Options
*OpenUI *LargeCapacityTray/Large Capacity Tray: PickOne
*DefaultLargeCapacityTray: NotInstalled
*LargeCapacityTray NotInstalled/Not Installed: ""
*LargeCapacityTray LCTALASKAD/Large Capacity Tray: ""
*LargeCapacityTray LCTSIBERIAC/Wide Large Capacity Tray: ""
*?LargeCapacityTray: "
save
mark
(NotInstalled)
userdict /86f6369627 known {
userdict /86f6369627 get
/perifdict get /inslot get dup type /arraytype eq {
{
dup 7 eq {(LCTALASKAD) exit} if
dup 13 eq {(LCTSIBERIAC) exit} if
pop
} forall
}{pop} ifelse
}if
= flush
cleartomark
restore
"
*End
*CloseUI: *LargeCapacityTray
*OpenUI *Tray7/Tray 7: PickOne
*DefaultTray7: NotInstalled
*Tray7 NotInstalled/Not Installed: ""
*Tray7 Installed/Installed: ""
*?Tray7: "
save
mark
(NotInstalled)
userdict /86f6369627 known {
userdict /86f6369627 get
/perifdict get /inslot get dup type /arraytype eq {
{
dup 0 eq {(Installed) exit} if
pop
} forall
}{pop} ifelse
}if
= flush
cleartomark
restore
"
*End
*CloseUI: *Tray7
*OpenUI *Finisher/Finisher: PickOne
*DefaultFinisher: NotInstalled
*Finisher NotInstalled/Not Installed: ""
*Finisher FinCOLUMBIA/Finisher SR5020: ""
*Finisher FinVICTORIAE/Finisher SR5000: ""
*?Finisher: "
save
mark
(NotInstalled)
userdict /86f6369627 known {
userdict /86f6369627 get
/perifdict get /outslot get dup type /arraytype eq {
{
dup 37 eq {(FinCOLUMBIA) exit} if
dup 15 eq {(FinVICTORIAE) exit} if
pop
} forall
}{pop} ifelse
} if
= flush
cleartomark
restore
"
*End
*CloseUI: *Finisher
*OpenUI *Stacker/Stacker: PickOne
*DefaultStacker: NotInstalled
*Stacker NotInstalled/Not Installed: ""
*Stacker StackerSingle/Stacker: ""
*Stacker StackerDouble/Second Stacker: ""
*?Stacker: "
save
mark
(NotInstalled)
userdict /86f6369627 known {
userdict /86f6369627 get
/perifdict get /outslot get dup type /arraytype eq {
{
dup 36 eq {(StackerDouble) exit} if
dup 35 eq {(StackerSingle)}{pop} ifelse
} forall
}{pop} ifelse
} if
= flush
cleartomark
restore
"
*End
*CloseUI: *Stacker
*OpenUI *TrimmerUnit/Trimmer: PickOne
*DefaultTrimmerUnit: NotInstalled
*TrimmerUnit NotInstalled/Not Installed: ""
*TrimmerUnit Installed/Installed: ""
*?TrimmerUnit: "
save
mark
(NotInstalled)
userdict /86f6369627 known {
userdict /86f6369627 get
/perifdict get /outslot get dup type /arraytype eq {
{
dup 34 eq {(Installed) exit} if
pop
} forall
}{pop} ifelse
} if
= flush
cleartomark
restore
"
*End
*CloseUI: *TrimmerUnit
*OpenUI *BookletProcessor/Booklet Processor: PickOne
*DefaultBookletProcessor: NotInstalled
*BookletProcessor NotInstalled/Not Installed: ""
*BookletProcessor Plockmatic/Installed: ""
*?BookletProcessor: "
save
mark
(NotInstalled)
userdict /86f6369627 known {
userdict /86f6369627 get
/perifdict get /outslot get dup type /arraytype eq {
{
dup 19 eq {(Plockmatic) exit} if
pop
} forall
}{pop} ifelse
} if
= flush
cleartomark
restore
"
*End
*CloseUI: *BookletProcessor
*OpenUI *MultiFold/Folding Unit: PickOne
*DefaultMultiFold: NotInstalled
*MultiFold NotInstalled/Not Installed: ""
*MultiFold Installed/Installed: ""
*?MultiFold: "
save
mark
(NotInstalled)
userdict /86f6369627 known {
userdict /86f6369627 get
/perifdict get /outslot get dup type /arraytype eq {
{
dup 33 eq {(Installed) exit} if
pop
} forall
}{pop} ifelse
} if
= flush
cleartomark
restore
"
*End
*CloseUI: *MultiFold
*OpenUI *MultiHolePunchUnit/Multi-hole Punch Unit: PickOne
*DefaultMultiHolePunchUnit: NotInstalled
*MultiHolePunchUnit NotInstalled/Not Installed: ""
*MultiHolePunchUnit Installed/Installed: ""
*?MultiHolePunchUnit: "
save
mark
(NotInstalled)
userdict /86f6369627 known {
userdict /86f6369627 get
/perifdict get /outslot get dup type /arraytype eq {
{
dup 26 eq {(Installed) exit} if
pop
} forall
}{pop} ifelse
} if
= flush
cleartomark
restore
"
*End
*CloseUI: *MultiHolePunchUnit
*OpenUI *OptionBind/Perfect/Ring Binder Unit: PickOne
*DefaultOptionBind: None
*OptionBind None/Not Installed: ""
*OptionBind FinISHIKARI/Ring Binder: ""
*OptionBind FinTENRYU/Perfect Binder: ""
*?OptionBind: "
save
mark
(None)
userdict /86f6369627 known {
userdict /86f6369627 get
/perifdict get /outslot get dup type /arraytype eq {
{
dup 30 eq {(FinISHIKARI) exit} if
dup 31 eq {(FinTENRYU) exit} if
pop
} forall
}{pop} ifelse
} if
= flush
cleartomark
restore
"
*End
*CloseUI: *OptionBind
*CloseGroup: InstallableOptions
*FreeVM: "2261000"
*Password: "0"
*ExitServer: "
count 0 eq
{false}{true exch startjob}ifelse
not {(WARNING: Cannot modify initial VM.) =
(Missing or invalid Password.) =
(Please contact the author.) = flush quit
}if
"
*End
*Reset: "
count 0 eq
{false}{true exch startjob}ifelse
not {(WARNING: Cannot reset printer.) =
(Missing or invalid Password.) =
(Please contact the author.) = flush quit
}if
systemdict /quit get exec
(WARNING: Printer Reset Failed.) = flush
"
*End
*SuggestedJobTimeout: "0"
*SuggestedWaitTimeout: "300"
*PrintPSErrors: True
*%DeviceAdjustMatrix: "[1 0 0 1 0 0]"
*%========== Media Selection ==========
*LandscapeOrientation: Minus90
*OpenUI *RIPaperPolicy/Fit to Paper: PickOne
*OrderDependency: 10 AnySetup *RIPaperPolicy
*DefaultRIPaperPolicy: PromptUser
*RIPaperPolicy PromptUser/Prompt User: "
<</DeferredMediaSelection true>> setpagedevice
<</Policies << /PageSize 2 /MediaType 2 >> >> setpagedevice"
*End
*RIPaperPolicy NearestSizeAdjust/Nearest Size and Scale: "
<</DeferredMediaSelection false>> setpagedevice
<</Policies << /PageSize 3 /MediaType 2 >> >> setpagedevice"
*End
*RIPaperPolicy NearestSizeNoAdjust/Nearest Size and Crop: "
<</DeferredMediaSelection false>> setpagedevice
<</Policies << /PageSize 5 /MediaType 2 >> >> setpagedevice"
*End
*CloseUI: *RIPaperPolicy
*OpenUI *PageSize: PickOne
*OrderDependency: 20 AnySetup *PageSize
*DefaultPageSize: Letter
*PageSize A3/A3: "<<
/PageSize [842 1191] /ImagingBBox null >> setpagedevice
false setedgetoedge"
*End
*PageSize A4/A4: "<<
/PageSize [595 842] /ImagingBBox null >> setpagedevice
false setedgetoedge"
*End
*PageSize A5/A5: "<<
/PageSize [420 595] /ImagingBBox null >> setpagedevice
false setedgetoedge"
*End
*PageSize A6/A6: "<<
/PageSize [297 420] /ImagingBBox null >> setpagedevice
false setedgetoedge"
*End
*PageSize B4/B4 (JIS): "<<
/PageSize [729 1032] /ImagingBBox null >> setpagedevice
false setedgetoedge"
*End
*PageSize B5/B5 (JIS): "<<
/PageSize [516 729] /ImagingBBox null >> setpagedevice
false setedgetoedge"
*End
*PageSize B6/B6 (JIS): "<<
/PageSize [363 516] /ImagingBBox null >> setpagedevice
false setedgetoedge"
*End
*PageSize Legal/Legal: "<<
/PageSize [612 1008] /ImagingBBox null >> setpagedevice
false setedgetoedge"
*End
*PageSize GovernmentLG/8.25x14: "<<
/PageSize [594 1008] /ImagingBBox null >> setpagedevice
false setedgetoedge"
*End
*PageSize EngQuatro/8x10: "<<
/PageSize [576 720] /ImagingBBox null >> setpagedevice
false setedgetoedge"
*End
*PageSize Letter/Letter: "<<
/PageSize [612 792] /ImagingBBox null >> setpagedevice
false setedgetoedge"
*End
*PageSize Statement/5.5x8.5: "<<
/PageSize [396 612] /ImagingBBox null >> setpagedevice
false setedgetoedge"
*End
*PageSize F/8x13: "<<
/PageSize [576 936] /ImagingBBox null>> setpagedevice
false setedgetoedge"
*End
*PageSize Folio/8.25x13: "<<
/PageSize [595 935] /ImagingBBox null>> setpagedevice
false setedgetoedge"
*End
*PageSize FanFoldGermanLegal/8.5x13: "<<
/PageSize [612 936] /ImagingBBox null>> setpagedevice
false setedgetoedge"
*End
*PageSize Tabloid/11x17: "<<
/PageSize [792 1224] /ImagingBBox null >> setpagedevice
false setedgetoedge"
*End
*PageSize 12x18/12x18: "<<
/PageSize [864 1296] /ImagingBBox null >> setpagedevice
false setedgetoedge"
*End
*PageSize 11x14/11x14: "<<
/PageSize [792 1008] /ImagingBBox null >> setpagedevice
false setedgetoedge"
*End
*PageSize 13x19.2/13x19.2: "<<
/PageSize [936 1382] /ImagingBBox null >> setpagedevice
false setedgetoedge"
*End
*PageSize 13x19/13x19: "<<
/PageSize [936 1368] /ImagingBBox null >> setpagedevice
false setedgetoedge"
*End
*PageSize 12.6x19.2/12.6x19.2: "<<
/PageSize [907 1382] /ImagingBBox null >> setpagedevice
false setedgetoedge"
*End
*PageSize 12.6x18.5/12.6x18.5: "<<
/PageSize [907 1332] /ImagingBBox null >> setpagedevice
false setedgetoedge"
*End
*PageSize 13x18/13x18: "<<
/PageSize [936 1296] /ImagingBBox null >> setpagedevice
false setedgetoedge"
*End
*PageSize SRA3/SRA3: "<<
/PageSize [907 1276] /ImagingBBox null >> setpagedevice
false setedgetoedge"
*End
*PageSize SRA4/SRA4: "<<
/PageSize [638 907] /ImagingBBox null >> setpagedevice
false setedgetoedge"
*End
*PageSize 226x310/226x310: "<<
/PageSize [641 879] /ImagingBBox null >> setpagedevice
false setedgetoedge"
*End
*PageSize 310x432/310x432: "<<
/PageSize [879 1225] /ImagingBBox null >> setpagedevice
false setedgetoedge"
*End
*PageSize Executive/Executive: "<<
/PageSize [522 756] /ImagingBBox null>> setpagedevice
false setedgetoedge"
*End
*PageSize 8Kai/8K: "<<
/PageSize [757 1106] /ImagingBBox null>> setpagedevice
false setedgetoedge"
*End
*PageSize 16Kai/16K: "<<
/PageSize [553 757] /ImagingBBox null>> setpagedevice
false setedgetoedge"
*End
*?PageSize: "
save
currentpagedevice /PageSize get aload pop
2 copy gt {exch}if (Unknown)
30 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 [363 516] (B6) put
dup [612 1008] (Legal) put
dup [594 1008] (GovernmentLG) put
dup [576 720] (EngQuatro) put
dup [612 792] (Letter) put
dup [396 612] (HalfLetter) put
dup [576 936] (F) put
dup [595 935] (Folio) put
dup [612 936] (FanFoldGermanLegal) put
dup [792 1224] (11x17) put
dup [864 1296] (12x18) put
dup [792 1008] (11x14) put
dup [936 1382] (13x19.2) put
dup [936 1368] (13x19) put
dup [907 1382] (12.6x19.2) put
dup [907 1332] (12.6x18.5) put
dup [936 1296] (13x18) put
dup [907 1276] (SRA3) put
dup [638 907] (SRA4) put
dup [641 879] (226x310) put
dup [879 1225] (310x432) put
dup [522 756] (Executive) put
dup [757 1106] (8Kai) put
dup [553 757] (16Kai) 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
*OpenUI *PageRegion: PickOne
*OrderDependency: 25 AnySetup *PageRegion
*DefaultPageRegion: Letter
*PageRegion A3/A3: "<<
/PageSize [842 1191] /ImagingBBox null >> setpagedevice
false setedgetoedge"
*End
*PageRegion A4/A4: "<<
/PageSize [595 842] /ImagingBBox null >> setpagedevice
false setedgetoedge"
*End
*PageRegion A5/A5: "<<
/PageSize [420 595] /ImagingBBox null >> setpagedevice
false setedgetoedge"
*End
*PageRegion A6/A6: "<<
/PageSize [297 420] /ImagingBBox null >> setpagedevice
false setedgetoedge"
*End
*PageRegion B4/B4 (JIS): "<<
/PageSize [729 1032] /ImagingBBox null >> setpagedevice
false setedgetoedge"
*End
*PageRegion B5/B5 (JIS): "<<
/PageSize [516 729] /ImagingBBox null >> setpagedevice
false setedgetoedge"
*End
*PageRegion B6/B6 (JIS): "<<
/PageSize [363 516] /ImagingBBox null >> setpagedevice
false setedgetoedge"
*End
*PageRegion Legal/Legal: "<<
/PageSize [612 1008] /ImagingBBox null >> setpagedevice
false setedgetoedge"
*End
*PageRegion GovernmentLG/8.25x14: "<<
/PageSize [594 1008] /ImagingBBox null >> setpagedevice
false setedgetoedge"
*End
*PageRegion EngQuatro/8x10: "<<
/PageSize [576 720] /ImagingBBox null >> setpagedevice
false setedgetoedge"
*End
*PageRegion Letter/Letter: "<<
/PageSize [612 792] /ImagingBBox null >> setpagedevice
false setedgetoedge"
*End
*PageRegion Statement/5.5x8.5: "<<
/PageSize [396 612] /ImagingBBox null >> setpagedevice
false setedgetoedge"
*End
*PageRegion F/8x13: "<<
/PageSize [576 936] /ImagingBBox null>> setpagedevice
false setedgetoedge"
*End
*PageRegion Folio/8.25x13: "<<
/PageSize [595 935] /ImagingBBox null>> setpagedevice
false setedgetoedge"
*End
*PageRegion FanFoldGermanLegal/8.5x13: "<<
/PageSize [612 936] /ImagingBBox null>> setpagedevice
false setedgetoedge"
*End
*PageRegion Tabloid/11x17: "<<
/PageSize [792 1224] /ImagingBBox null >> setpagedevice
false setedgetoedge"
*End
*PageRegion 12x18/12x18: "<<
/PageSize [864 1296] /ImagingBBox null >> setpagedevice
false setedgetoedge"
*End
*PageRegion 11x14/11x14: "<<
/PageSize [792 1008] /ImagingBBox null >> setpagedevice
false setedgetoedge"
*End
*PageRegion 13x19.2/13x19.2: "<<
/PageSize [936 1382] /ImagingBBox null >> setpagedevice
false setedgetoedge"
*End
*PageRegion 13x19/13x19: "<<
/PageSize [936 1368] /ImagingBBox null >> setpagedevice
false setedgetoedge"
*End
*PageRegion 12.6x19.2/12.6x19.2: "<<
/PageSize [907 1382] /ImagingBBox null >> setpagedevice
false setedgetoedge"
*End
*PageRegion 12.6x18.5/12.6x18.5: "<<
/PageSize [907 1332] /ImagingBBox null >> setpagedevice
false setedgetoedge"
*End
*PageRegion 13x18/13x18: "<<
/PageSize [936 1296] /ImagingBBox null >> setpagedevice
false setedgetoedge"
*End
*PageRegion SRA3/SRA3: "<<
/PageSize [907 1276] /ImagingBBox null >> setpagedevice
false setedgetoedge"
*End
*PageRegion SRA4/SRA4: "<<
/PageSize [638 907] /ImagingBBox null >> setpagedevice
false setedgetoedge"
*End
*PageRegion 226x310/226x310: "<<
/PageSize [641 879] /ImagingBBox null >> setpagedevice
false setedgetoedge"
*End
*PageRegion 310x432/310x432: "<<
/PageSize [879 1225] /ImagingBBox null >> setpagedevice
false setedgetoedge"
*End
*PageRegion Executive/Executive: "<<
/PageSize [522 756] /ImagingBBox null>> setpagedevice
false setedgetoedge"
*End
*PageRegion 8Kai/8K: "<<
/PageSize [757 1106] /ImagingBBox null>> setpagedevice
false setedgetoedge"
*End
*PageRegion 16Kai/16K: "<<
/PageSize [553 757] /ImagingBBox null>> setpagedevice
false setedgetoedge"
*End
*CloseUI: *PageRegion
*%========== Information About Media Sizes ==========
*DefaultImageableArea: A4
*ImageableArea A3/A3: "12 12 830 1179"
*ImageableArea A4/A4: "12 12 583 830"
*ImageableArea A5/A5: "12 12 408 583"
*ImageableArea A6/A6: "12 12 285 408"
*ImageableArea B4/B4 (JIS): "12 12 717 1020"
*ImageableArea B5/B5 (JIS): "12 12 504 717"
*ImageableArea B6/B6 (JIS): "12 12 351 504"
*ImageableArea Legal/Legal: "12 12 600 996"
*ImageableArea GovernmentLG/8.25x14: "12 12 582 996"
*ImageableArea EngQuatro/8x10: "12 12 564 708"
*ImageableArea Letter/Letter: "12 12 600 780"
*ImageableArea Statement/5.5x8.5: "12 12 384 600"
*ImageableArea F/8x13: "12 12 564 924"
*ImageableArea Folio/8.25x13: "12 12 583 923"
*ImageableArea FanFoldGermanLegal/8.5x13: "12 12 600 924"
*ImageableArea Tabloid/11x17: "12 12 780 1212"
*ImageableArea 12x18/12x18: "12 12 852 1284"
*ImageableArea 11x14/11x14: "12 12 780 996"
*ImageableArea 13x19.2/13x19.2: "12 12 924 1370"
*ImageableArea 13x19/13x19: "12 12 924 1356"
*ImageableArea 12.6x19.2/12.6x19.2: "12 12 895 1370"
*ImageableArea 12.6x18.5/12.6x18.5: "12 12 895 1320"
*ImageableArea 13x18/13x18: "12 12 924 1284"
*ImageableArea SRA3/SRA3: "12 12 895 1264"
*ImageableArea SRA4/SRA4: "12 12 626 895"
*ImageableArea 226x310/226x310: "12 12 629 867"
*ImageableArea 310x432/310x432: "12 12 867 1213"
*ImageableArea Executive/Executive: "12 12 510 744"
*ImageableArea 8Kai/8K: "12 12 745 1094"
*ImageableArea 16Kai/16K: "12 12 541 745"
*?ImageableArea: "
save
/cvp {( ) cvs print ( ) print}bind def
newpath clippath pathbbox 4 -2 roll exch
2 {10000 mul ceiling 10000 div cvp}repeat exch
2 {10000 mul floor 10000 div cvp}repeat flush
restore
"
*End
*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 (JIS): "729 1032"
*PaperDimension B5/B5 (JIS): "516 729"
*PaperDimension B6/B6 (JIS): "363 516"
*PaperDimension Legal/Legal: "612 1008"
*PaperDimension GovernmentLG/8.25x14: "594 1008"
*PaperDimension EngQuatro/8x10: "576 720"
*PaperDimension Letter/Letter: "612 792"
*PaperDimension Statement/5.5x8.5: "396 612"
*PaperDimension F/8x13: "576 936"
*PaperDimension Folio/8.25x13: "595 935"
*PaperDimension FanFoldGermanLegal/8.5x13: "612 936"
*PaperDimension Tabloid/11x17: "792 1224"
*PaperDimension 12x18/12x18: "864 1296"
*PaperDimension 11x14/11x14: "792 1008"
*PaperDimension 13x19.2/13x19.2: "936 1382"
*PaperDimension 13x19/13x19: "936 1368"
*PaperDimension 12.6x19.2/12.6x19.2: "907 1382"
*PaperDimension 12.6x18.5/12.6x18.5: "907 1332"
*PaperDimension 13x18/13x18: "936 1296"
*PaperDimension SRA3/SRA3: "907 1276"
*PaperDimension SRA4/SRA4: "638 907"
*PaperDimension 226x310/226x310: "641 879"
*PaperDimension 310x432/310x432: "879 1225"
*PaperDimension Executive/Executive: "522 756"
*PaperDimension 8Kai/8K: "757 1106"
*PaperDimension 16Kai/16K: "553 757"
*%========== Media Handling Features ==========
*OpenUI *InputSlot: PickOne
*OrderDependency: 30 AnySetup *InputSlot
*DefaultInputSlot: Auto
*InputSlot 1Tray/Tray 1: "<</MediaPosition 1>> setpagedevice
userdict /RPS_MPdict 1 dict put
userdict /RPS_MPdict get begin
/RPS_MP_MEDIAPOSITION 1 def end"
*End
*InputSlot 2Tray/Tray 2: "<</MediaPosition 2>> setpagedevice
userdict /RPS_MPdict 1 dict put
userdict /RPS_MPdict get begin
/RPS_MP_MEDIAPOSITION 2 def end"
*End
*InputSlot 3Tray/Tray 3: "<</MediaPosition 3>> setpagedevice
userdict /RPS_MPdict 1 dict put
userdict /RPS_MPdict get begin
/RPS_MP_MEDIAPOSITION 3 def end"
*End
*InputSlot 4Tray/Tray 4: "<</MediaPosition 4>> setpagedevice
userdict /RPS_MPdict 1 dict put
userdict /RPS_MPdict get begin
/RPS_MP_MEDIAPOSITION 4 def end"
*End
*InputSlot 5Tray/Tray 5: "<</MediaPosition 5>> setpagedevice
userdict /RPS_MPdict 1 dict put
userdict /RPS_MPdict get begin
/RPS_MP_MEDIAPOSITION 5 def end"
*End
*InputSlot 6Tray/Tray 6: "<</MediaPosition 6>> setpagedevice
userdict /RPS_MPdict 1 dict put
userdict /RPS_MPdict get begin
/RPS_MP_MEDIAPOSITION 6 def end"
*End
*InputSlot 7Tray/Tray 7: "<</MediaPosition 0>> setpagedevice
userdict /RPS_MPdict 1 dict put
userdict /RPS_MPdict get begin
/RPS_MP_MEDIAPOSITION 0 def end"
*End
*InputSlot Auto/Auto Select: ""
*?InputSlot: "
save
[(1Tray)(2Tray)(3Tray)(4Tray)(5Tray)(6Tray)(7Tray)]
statusdict /papertray get exec {get}stopped
{pop pop (Unknown)}if = flush
restore
"
*End
*CloseUI: *InputSlot
*%=== Custom Paper Support =================
*LeadingEdge Short: ""
*LeadingEdge Long: ""
*DefaultLeadingEdge: Short
*MaxMediaWidth: "936"
*MaxMediaHeight: "1383"
*HWMargins: 12 12 12 12
*CustomPageSize True: "pop pop pop
<< /PageSize [ 5 -2 roll ] /ImagingBBox null
/Policies <</PageSize 2 /MediaType 2>>
/DeferredMediaSelection true
>> setpagedevice"
*End
*ParamCustomPageSize Width: 1 points 283 936
*ParamCustomPageSize Height: 2 points 396 1383
*ParamCustomPageSize WidthOffset: 3 points 0 0
*ParamCustomPageSize HeightOffset: 4 points 0 0
*ParamCustomPageSize Orientation: 5 int 1 1
*NonUIOrderDependency: 21 AnySetup *CustomPageSize True
*RequiresPageRegion 1Tray: True
*RequiresPageRegion 2Tray: True
*RequiresPageRegion 3Tray: True
*RequiresPageRegion 4Tray: True
*RequiresPageRegion 5Tray: True
*RequiresPageRegion 6Tray: True
*RequiresPageRegion 7Tray: True
*OpenUI *Duplex/Duplex: PickOne
*OrderDependency: 50 AnySetup *Duplex
*DefaultDuplex: None
*Duplex None/Off: "<</Duplex false>>setpagedevice"
*Duplex DuplexNoTumble/Long Edge: "<</Duplex true /Tumble false>>setpagedevice"
*Duplex DuplexTumble/Short Edge: "<</Duplex true /Tumble true>>setpagedevice"
*?Duplex: "
save
currentpagedevice /Duplex get
{currentpagedevice /Tumble get
{(DuplexTumble)}{(DuplexNoTumble)}ifelse
}{(None)}ifelse = flush
restore
"
*End
*CloseUI: *Duplex
*%========== Resolution and Appearance Control ==========
*OpenUI *Resolution/Resolution: PickOne
*OrderDependency: 40 AnySetup *Resolution
*DefaultResolution: 600dpi
*Resolution 600dpi/600 dpi: "<</HWResolution[600 600]>>setpagedevice"
*End
*Resolution 1200dpi/1200 dpi: "<</HWResolution[1200 1200]>>setpagedevice"
*End
*?Resolution: "
save
currentpagedevice /HWResolution get 0 get
( ) cvs print (dpi) = flush
restore
"
*End
*CloseUI: *Resolution
*OpenUI *Collate/Collate: PickOne
*OrderDependency: 200 AnySetup *Collate
*DefaultCollate: False
*Collate False/Off: "<</Collate false>>setpagedevice"
*Collate True/On: "<</Collate true
/CollateDetails <</Type 6 /AlignSet false>>
>>setpagedevice"
*End
*?Collate: "
save
currentpagedevice /Collate get
{{(True)}{(False)}ifelse }stopped {(Unknown)}if = flush
restore
"
*End
*CloseUI: *Collate
*OpenUI *RIPrintMode/Print Mode: PickOne
*OrderDependency: 45 AnySetup *RIPrintMode
*DefaultRIPrintMode: 0rhit
*RIPrintMode 0rhit/Through: "<</PostRenderingEnhance false>> setpagedevice"
*RIPrintMode 1rhit/Edge Smoothing: "<</PostRenderingEnhance true
/PostRenderingEnhanceDetails << /Type 34 /OutputMode 0>> >> setpagedevice"
*End
*RIPrintMode 3rhit/Toner Saving: "<</PostRenderingEnhance true
/PostRenderingEnhanceDetails << /Type 34 /OutputMode 3>> >> setpagedevice"
*End
*?RIPrintMode: "
save
/UK (Unknown) def
{
currentpagedevice dup /PostRenderingEnhance 2 copy known not { UK exit } if
get dup false eq {pop (0rhit) exit }
{pop /PostRenderingEnhanceDetails get dup /OutputMode get
dup 0 eq {pop (1rhit) exit} if
dup 3 eq {pop (3rhit) exit} if
UK exit
} ifelse
} bind loop
mark count 1 sub 2 roll cleartomark
= flush
restore
"
*End
*CloseUI: *RIPrintMode
*OpenUI *RPSDitherType/Dithering: PickOne
*OrderDependency: 130 AnySetup *RPSDitherType
*DefaultRPSDitherType: Auto
*RPSDitherType Auto/Auto: "(auto) RCsethalftonetype"
*RPSDitherType Photo/Photographic: "(photo) RCsethalftonetype"
*RPSDitherType Letter/Text: "(text) RCsethalftonetype"
*RPSDitherType User/User Setting: "(user) RCsethalftonetype"
*CloseUI: *RPSDitherType
*OpenUI *Rimagesm/Image Smoothing: PickOne
*OrderDependency: 160 AnySetup *Rimagesm
*DefaultRimagesm: Off
*Rimagesm Off/Off: "(off) /RDeviceProcSet /ProcSet findresource /SetImageInterpolate get exec"
*Rimagesm On/On: "(on) /RDeviceProcSet /ProcSet findresource /SetImageInterpolate get exec"
*Rimagesm Auto/Auto: "(auto) /RDeviceProcSet /ProcSet findresource /SetImageInterpolate get exec"
*Rimagesm 90ppi/Less than 90 ppi: "90 /RDeviceProcSet /ProcSet findresource /SetImageInterpolate get exec"
*Rimagesm 150ppi/Less than 150 ppi: "150 /RDeviceProcSet /ProcSet findresource /SetImageInterpolate get exec"
*Rimagesm 200ppi/Less than 200 ppi: "200 /RDeviceProcSet /ProcSet findresource /SetImageInterpolate get exec"
*Rimagesm 300ppi/Less than 300 ppi: "300 /RDeviceProcSet /ProcSet findresource /SetImageInterpolate get exec"
*CloseUI: *Rimagesm
*OpenUI *MediaType/Paper Type: PickOne
*OrderDependency: 205 AnySetup *MediaType
*DefaultMediaType: Auto
*MediaType Auto/Plain/Recycled: "<< /MediaType (Auto) >> setpagedevice"
*MediaType Plain/Plain (52 - 105 g/m2): "<< /MediaType (Plain) >> setpagedevice"
*MediaType Recycled/Recycled: "<< /MediaType (Recycled) >> setpagedevice"
*MediaType Special/Special: "<< /MediaType (Special) >> setpagedevice"
*MediaType Colored1/Color 1: "<< /MediaType (Color1) >> setpagedevice"
*MediaType Colored2/Color 2: "<< /MediaType (Color2) >> setpagedevice"
*MediaType Letterhead/Letterhead: "<< /MediaType (Letterhead) >> setpagedevice"
*MediaType Preprinted/Preprinted: "<< /MediaType (Preprinted) >> setpagedevice"
*MediaType Prepunched/Prepunched: "<< /MediaType (Prepunched) >> setpagedevice"
*MediaType Labels/Labels: "<< /MediaType (Labels) >> setpagedevice"
*MediaType Coated/Coated: "<< /MediaType (Coated) >> setpagedevice"
*MediaType Bond/Bond: "<< /MediaType (Bond) >> setpagedevice"
*MediaType Cardstock/Cardstock: "<< /MediaType (Cardstock) >> setpagedevice"
*MediaType OHP/Transparency: "<< /MediaType (Transparency) >> setpagedevice"
*MediaType Thick/Thick 1 (164 - 216 g/m2): "<< /MediaType (Thick) >> setpagedevice"
*MediaType Thick2/Thick 2 (217 - 256 g/m2): "<< /MediaType (Thick2) >> setpagedevice"
*MediaType Thick3/Thick 3 (257 - 300 g/m2): "<< /MediaType (Thick3) >> setpagedevice"
*MediaType Thin/Thin (40 - 51 g/m2): "<< /MediaType (Thin) >> setpagedevice"
*MediaType Middlethick/Middle Thick (106 - 163 g/m2): "<< /MediaType (Middlethick) >> setpagedevice"
*MediaType Index/Tab Stock: "<< /MediaType (Index) >> setpagedevice"
*MediaType Translucent/Translucent: "<< /MediaType (Translucent) >> setpagedevice"
*MediaType Yellow/Yellow: "<< /MediaType (Yellow) >> setpagedevice"
*MediaType Green/Green: "<< /MediaType (Green) >> setpagedevice"
*MediaType Blue/Blue: "<< /MediaType (Blue) >> setpagedevice"
*MediaType Purple/Purple: "<< /MediaType (Purple) >> setpagedevice"
*MediaType Ivory/Ivory: "<< /MediaType (Ivory) >> setpagedevice"
*MediaType Orange/Orange: "<< /MediaType (Orange) >> setpagedevice"
*MediaType Pink/Pink: "<< /MediaType (Pink) >> setpagedevice"
*MediaType Red/Red: "<< /MediaType (Red) >> setpagedevice"
*MediaType Gray/Gray: "<< /MediaType (Gray) >> setpagedevice"
*MediaType None/None: "<< /MediaType (None) >> setpagedevice"
*?MediaType: "
save
/UK (Unknown) def
{
currentpagedevice /MediaType 2 copy known not { UK exit } if
get dup null eq 1 index (Plain) eq or { (Plain) exit } if
dup (Auto) eq { dup exit } if
dup (Recycled) eq { dup exit } if
dup (Special) eq { dup exit } if
dup (Color1) eq { dup exit } if
dup (Color2) eq { dup exit } if
dup (Letterhead) eq { dup exit } if
dup (Preprinted) eq { dup exit } if
dup (Prepunched) eq { dup exit } if
dup (Labels) eq { dup exit } if
dup (Coated) eq { dup exit } if
dup (Bond) eq { dup exit } if
dup (Cardstock) eq { dup exit } if
dup (Transparency) eq { dup exit } if
dup (Thick) eq { dup exit } if
dup (Thick2) eq { dup exit } if
dup (Thick3) eq { dup exit } if
dup (Thin) eq { dup exit } if
dup (Middlethick) eq { dup exit } if
dup (Index) eq { dup exit } if
dup (Translucent) eq { dup exit } if
dup (Yellow) eq { dup exit } if
dup (Green) eq { dup exit } if
dup (Blue) eq { dup exit } if
dup (Purple) eq { dup exit } if
dup (Ivory) eq { dup exit } if
dup (Orange) eq { dup exit } if
dup (Pink) eq { dup exit } if
dup (Red) eq { dup exit } if
dup (Gray) eq { dup exit } if
dup (None) eq { dup exit } if
UK exit
} bind loop
mark count 1 sub 2 roll cleartomark
= flush
restore
"
*End
*CloseUI: *MediaType
*OpenUI *OutputBin/Destination: PickOne
*OrderDependency: 210 AnySetup *OutputBin
*DefaultOutputBin: Default
*OutputBin Default/Printer Default: "<</OutputType null>>setpagedevice"
*OutputBin Proof/Proof Tray: "<</OutputType (FinProof)>>setpagedevice"
*OutputBin FinCOLUMShift/Finisher SR5020 Shift Tray: "<</OutputType (FinShift)>>setpagedevice"
*OutputBin FinCOLUMLower/Finisher SR5020 Booklet Tray: "<</OutputType (FinBooklet)>>setpagedevice"
*OutputBin FinVICTEShift/Finisher SR5000 Shift Tray: "<</OutputType (FinShift)>>setpagedevice"
*OutputBin FinISHIKARI/Ring Binder Tray: "<</OutputType (SubFinRing)>>setpagedevice"
*OutputBin FinTENRYU/Perfect Binder Lower Left Tray: "<</OutputType (SubFinPerf)>>setpagedevice"
*OutputBin FoldTray/Folding Unit Tray: "<</OutputType (FoldProof)>>setpagedevice"
*OutputBin StackTray1/Stacker Tray: "<</OutputType (Stacker)>>setpagedevice"
*OutputBin StackTray2/Second Stacker Tray: "<</OutputType (Stacker2)>>setpagedevice"
*OutputBin Trimmer/Trimmer Tray: "<</OutputType (FinBooklet)>>setpagedevice"
*OutputBin PlockmaticTray/Booklet Processor Tray: "<</OutputType (FinShift)>>setpagedevice"
*?OutputBin: "
save
currentpagedevice /OutputType get = flush
restore
"
*End
*CloseUI: *OutputBin
*OpenUI *StapleLocation/Staple: PickOne
*OrderDependency: 220 AnySetup *StapleLocation
*DefaultStapleLocation: None
*StapleLocation None/Off: "<< /Staple 0 >> setpagedevice"
*StapleLocation UpperLeft/Top left: "<<
/Collate true /CollateDetails << /Type 6 /AlignSet true >>
/Staple 2 /StapleDetails << /Type 14 /Angle 0 /Position 0 >>
>> setpagedevice"
*End
*StapleLocation UpperRight/Top right: "<<
/Collate true /CollateDetails << /Type 6 /AlignSet true >>
/Staple 2 /StapleDetails << /Type 14 /Angle 0 /Position 6 >>
>> setpagedevice"
*End
*StapleLocation LeftW/2 at left: "<<
/Collate true /CollateDetails << /Type 6 /AlignSet true >>
/Staple 2 /StapleDetails << /Type 14 /Angle 0 /Position 1 >>
>> setpagedevice"
*End
*StapleLocation RightW/2 at right: "<<
/Collate true /CollateDetails << /Type 6 /AlignSet true >>
/Staple 2 /StapleDetails << /Type 14 /Angle 0 /Position 5 >>
>> setpagedevice"
*End
*StapleLocation UpperW/2 at top: "<<
/Collate true /CollateDetails << /Type 6 /AlignSet true >>
/Staple 2 /StapleDetails << /Type 14 /Angle 0 /Position 7 >>
>> setpagedevice"
*End
*StapleLocation CenterW/2 at center: "<<
/Collate true /CollateDetails << /Type 6 /AlignSet true >>
/Staple 2 /StapleDetails << /Type 14 /Angle 0 /Position 8 >>
>> setpagedevice"
*End
*?StapleLocation: "
save
/UK (Unknown) def
{
currentpagedevice dup /Staple 2 copy known not { UK exit } if
get dup 0 eq {pop (None) exit }
{pop /StapleDetails get dup /Position get
dup 0 eq {pop (UpperLeft) exit} if
dup 6 eq {pop (UpperRight) exit} if
dup 1 eq {pop (LeftW) exit} if
dup 5 eq {pop (RightW) exit} if
dup 7 eq {pop (UpperW) exit} if
dup 8 eq {pop (CenterW) exit} if
UK exit
} ifelse
} bind loop
mark count 1 sub 2 roll cleartomark
= flush
restore
"
*End
*CloseUI: *StapleLocation
*OpenUI *RIPunch/Punch: PickOne
*OrderDependency: 230 AnySetup *RIPunch
*DefaultRIPunch: None
*RIPunch None/Off: "<< /Punch 0 >> setpagedevice"
*RIPunch Left2/2 at left: "<< /Punch 2
/PunchDetails << /Type 4 /Position 0 /NumHoles 2 >> >> setpagedevice"
*End
*RIPunch Left3/3 at left: "<< /Punch 2
/PunchDetails << /Type 4 /Position 0 /NumHoles 3 >> >> setpagedevice"
*End
*RIPunch Left4/4 at left: "<< /Punch 2
/PunchDetails << /Type 4 /Position 0 /NumHoles 4 >> >> setpagedevice"
*End
*RIPunch Right2/2 at right: "<< /Punch 2
/PunchDetails << /Type 4 /Position 2 /NumHoles 2 >> >> setpagedevice"
*End
*RIPunch Right3/3 at right: "<< /Punch 2
/PunchDetails << /Type 4 /Position 2 /NumHoles 3 >> >> setpagedevice"
*End
*RIPunch Right4/4 at right: "<< /Punch 2
/PunchDetails << /Type 4 /Position 2 /NumHoles 4 >> >> setpagedevice"
*End
*RIPunch Upper2/2 at top: "<< /Punch 2
/PunchDetails << /Type 4 /Position 3 /NumHoles 2 >> >> setpagedevice"
*End
*RIPunch Upper3/3 at top: "<< /Punch 2
/PunchDetails << /Type 4 /Position 3 /NumHoles 3 >> >> setpagedevice"
*End
*RIPunch Upper4/4 at top: "<< /Punch 2
/PunchDetails << /Type 4 /Position 3 /NumHoles 4 >> >> setpagedevice"
*End
*RIPunch GBCLeft/Multiple at left: "
<< /Punch 2 /PunchDetails << /Type 3 /Position 0>> >> setpagedevice"
*End
*RIPunch GBCRight/Multiple at right: "
<< /Punch 2 /PunchDetails << /Type 3 /Position 2>> >> setpagedevice"
*End
*RIPunch GBCTop/Multiple at top: "
<< /Punch 2 /PunchDetails << /Type 3 /Position 3>> >> setpagedevice"
*End
*?RIPunch: "
save
/UK (Unknown) def
{
currentpagedevice dup /Punch 2 copy known not { UK exit } if
get dup 0 eq {pop (None) exit }
{pop /PunchDetails get dup /Position get
dup 0 eq {pop (Left2) exit} if
dup 2 eq {pop (Right2) exit} if
dup 3 eq {pop (Upper2) exit} if
UK exit
} ifelse
} bind loop
mark count 1 sub 2 roll cleartomark
= flush
restore
"
*End
*CloseUI: *RIPunch
*OpenUI *RIFoldType/Fold Type: PickOne
*OrderDependency: 260 AnySetup *RIFoldType
*DefaultRIFoldType: None
*RIFoldType None/Off: ""
*RIFoldType Twofold/Half Fold: "userdict /RPS_MFdict 1 dict put
userdict /RPS_MFdict get begin /RPS_MF_FOLDTYPE 10 def end"
*End
*RIFoldType ThreefoldIn/Letter Fold-in: "userdict /RPS_MFdict 1 dict put
userdict /RPS_MFdict get begin /RPS_MF_FOLDTYPE 11 def end"
*End
*RIFoldType ThreefoldOut/Letter Fold-out: "userdict /RPS_MFdict 1 dict put
userdict /RPS_MFdict get begin /RPS_MF_FOLDTYPE 12 def end"
*End
*RIFoldType Quarto/Double Parallel Fold: "userdict /RPS_MFdict 1 dict put
userdict /RPS_MFdict get begin /RPS_MF_FOLDTYPE 13 def end"
*End
*RIFoldType Gatefold/Gate Fold: "userdict /RPS_MFdict 1 dict put
userdict /RPS_MFdict get begin /RPS_MF_FOLDTYPE 14 def end"
*End
*?RIFoldType: "
"
*End
*CloseUI: *RIFoldType
*OpenUI *OverlapFold/Multi-sheet Fold: PickOne
*OrderDependency: 262 AnySetup *OverlapFold
*DefaultOverlapFold: Off
*OverlapFold Off/Off: "userdict /RPS_MFdict known{
<< /Fold 1
/FoldDetails
<< /Type 11
/FoldType userdict /RPS_MFdict get /RPS_MF_FOLDTYPE get
/Stack false >>
>> setpagedevice
} if"
*End
*OverlapFold On/On: "userdict /RPS_MFdict known{
<< /Fold 1
/FoldDetails
<< /Type 11
/FoldType userdict /RPS_MFdict get /RPS_MF_FOLDTYPE get
/Stack true >>
>> setpagedevice
} if"
*End
*?OverlapFold: "
"
*End
*CloseUI: *OverlapFold
*OpenUI *RIZfold/Z-fold: PickOne
*OrderDependency: 250 AnySetup *RIZfold
*DefaultRIZfold: None
*RIZfold None/Off: "<< /Fold 0 >> setpagedevice"
*RIZfold Bottom/Bottom Fold: "<< /Fold 1
/FoldDetails << /Type 7 /FoldType 0 /ImageRotation 2 >> >> setpagedevice"
*End
*RIZfold Right/Right Fold: "<< /Fold 1
/FoldDetails << /Type 7 /FoldType 0 /ImageRotation 1 >> >> setpagedevice"
*End
*RIZfold Left/Left Fold: "<< /Fold 1
/FoldDetails << /Type 7 /FoldType 0 /ImageRotation 3 >> >> setpagedevice"
*End
*?RIZfold: "
"
*End
*CloseUI: *RIZfold
*OpenUI *RIRotateBy180/Rotate by 180 degrees: PickOne
*OrderDependency: 165 AnySetup *RIRotateBy180
*DefaultRIRotateBy180: Off
*RIRotateBy180 Off/Off: "
0 /RDeviceProcSet /ProcSet findresource /SetImageRotation get exec"
*End
*RIRotateBy180 On/On: "
1 /RDeviceProcSet /ProcSet findresource /SetImageRotation get exec"
*End
*CloseUI: *RIRotateBy180
*OpenUI *RIOrientOvr/Orientation Override: PickOne
*OrderDependency: 170 AnySetup *RIOrientOvr
*DefaultRIOrientOvr: Off
*RIOrientOvr Off/Off: ""
*RIOrientOvr Landscape/Landscape: "
1 /RDeviceProcSet /ProcSet findresource /SetOrientationOverride get exec"
*End
*RIOrientOvr Portrait/Portrait: "
0 /RDeviceProcSet /ProcSet findresource /SetOrientationOverride get exec"
*End
*CloseUI: *RIOrientOvr
*OpenUI *Faceup/Eject Face-up: PickOne
*OrderDependency: 167 AnySetup *Faceup
*DefaultFaceup: Off
*Faceup Off/Off: "<< /OutputFaceUp false >>setpagedevice"
*Faceup On/On: "<< /OutputFaceUp true >>setpagedevice"
*CloseUI: *Faceup
*OpenUI *RIBind/Perfect/Ring Binding: PickOne
*OrderDependency: 290 AnySetup *RIBind
*DefaultRIBind: None
*RIBind None/Off: "<< /Bind 0 >> setpagedevice"
*RIBind Perfect/Perfect Binding: "userdict /RPS_BDdict known{
<<
/Collate true /CollateDetails << /Type 6 /AlignSet true >>
/Bind 2
/BindDetails
<< /Type 6
/TransferPageSize [ currentpagedevice /PageSize get aload pop 2 copy lt {exch} if ]
userdict /RPS_MPdict known{
/TransferMediaPosition userdict /RPS_MPdict get /RPS_MP_MEDIAPOSITION get
}if
/CoverMediaPosition userdict /RPS_BDdict get /RPS_BD_INSERTERTRAY get
/Position userdict /RPS_BDdict get /RPS_BD_BINDPOSITION get
/AdjustImagePosition [userdict /RPS_BDdict get /RPS_BD_IMAGEPOSITIONLR get userdict
/RPS_BDdict get /RPS_BD_IMAGEPOSITIONUB get] /CoverPrint userdict /RPS_BDdict get /RPS_BD_COVERPRINT get
/AdjustCoverPrintPosition [ userdict /RPS_BDdict get /RPS_BD_COVERPRINTPOSITIONH get userdict
/RPS_BDdict get /RPS_BD_COVERPRINTPOSITIONV get ]
>>
>> setpagedevice
}if"
*End
*RIBind RingBind/Ring Binding: "userdict /RPS_RBDdict known{
<< /Collate true /CollateDetails << /Type 6 /AlignSet true >>
/Bind 2
/BindDetails
<< /Type 4 /BindType 1 /Position userdict /RPS_RBDdict get /RPS_RBD_PUNCHPOSITION get >>
>> setpagedevice
}if"
*End
*RIBind RingPunch/Punch Only for Ring Binding: "userdict /RPS_RBDdict known{
<< /Collate true /CollateDetails << /Type 6 /AlignSet true >>
/Bind 2
/BindDetails
<< /Type 4 /BindType 0 /Position userdict /RPS_RBDdict get /RPS_RBD_PUNCHPOSITION get >>
>> setpagedevice
}if"
*End
*CloseUI: *RIBind
*OpenUI *RIRingPunch/Ring Binding Position: PickOne
*OrderDependency: 288 AnySetup *RIRingPunch
*DefaultRIRingPunch: Left
*RIRingPunch Left/Left Bind: "userdict /RPS_RBDdict 1 dict put
userdict /RPS_RBDdict get begin
/RPS_RBD_PUNCHPOSITION 0 def end"
*End
*RIRingPunch Right/Right Bind: "userdict /RPS_RBDdict 1 dict put
userdict /RPS_RBDdict get begin
/RPS_RBD_PUNCHPOSITION 2 def end"
*End
*RIRingPunch Upper/Top Bind: "userdict /RPS_RBDdict 1 dict put
userdict /RPS_RBDdict get begin
/RPS_RBD_PUNCHPOSITION 3 def end"
*End
*CloseUI: *RIRingPunch
*OpenUI *RITrim/Perfect Binding Cutting Options: PickOne
*OrderDependency: 295 AnySetup *RITrim
*DefaultRITrim: None
*RITrim None/Do not Cut: "<< /Trim 0 >> setpagedevice"
*RITrim ForeEdgeSpecify/Cut Fore Edge (Specify Finishing Size): "userdict /RPS_BDdict known{
<< /Trim 2
/TrimDetails
<< /Type 1
/TrimType 0
/FinishedPageSize userdict /RPS_BDdict get /RPS_BD_CUTPAGESIZE get
>>
>> setpagedevice
}if"
*End
*RITrim ForeEdgeCut/Cut Fore Edge (Specify Margin): "userdict /RPS_BDdict known{
<< /Trim 2
/TrimDetails
<< /Type 1
/TrimType 1
/TrimSide userdict /RPS_BDdict get /RPS_BD_CUTPOSITIONF get
>>
>> setpagedevice
}if"
*End
*RITrim 3EdgeSpecify/Cut 3 Edges (Specify Finishing Size): "userdict /RPS_BDdict known{
<< /Trim 2
/TrimDetails
<< /Type 1
/TrimType 10
/FinishedPageSize userdict /RPS_BDdict get /RPS_BD_CUTPAGESIZE get
/AdjustFinishedSizePosition userdict /RPS_BDdict get /RPS_BD_FINISHPOSITION get
>>
>> setpagedevice
}if"
*End
*RITrim 3EdgeCut/Cut 3 Edges (Specify Margins): "userdict /RPS_BDdict known{
<< /Trim 2
/TrimDetails
<< /Type 1
/TrimType 11
/TrimTop userdict /RPS_BDdict get /RPS_BD_CUTPOSITIONT get
/TrimBottom userdict /RPS_BDdict get /RPS_BD_CUTPOSITIONB get
/TrimSide userdict /RPS_BDdict get /RPS_BD_CUTPOSITIONF get
>>
>> setpagedevice
}if"
*End
*CloseUI: *RITrim
*OpenUI *RIInserter/Perfect Binding Paper Source Tray: PickOne
*OrderDependency: 265 AnySetup *RIInserter
*DefaultRIInserter: Upper
*RIInserter 1Tray/Tray 1: "userdict /RPS_BDdict 12 dict put
userdict /RPS_BDdict get begin /RPS_BD_INSERTERTRAY 1 def end"
*End
*RIInserter 2Tray/Tray 2: "userdict /RPS_BDdict 12 dict put
userdict /RPS_BDdict get begin /RPS_BD_INSERTERTRAY 2 def end"
*End
*RIInserter 3Tray/Tray 3: "userdict /RPS_BDdict 12 dict put
userdict /RPS_BDdict get begin /RPS_BD_INSERTERTRAY 3 def end"
*End
*RIInserter 4Tray/Tray 4: "userdict /RPS_BDdict 12 dict put
userdict /RPS_BDdict get begin /RPS_BD_INSERTERTRAY 4 def end"
*End
*RIInserter 5Tray/Tray 5: "userdict /RPS_BDdict 12 dict put
userdict /RPS_BDdict get begin /RPS_BD_INSERTERTRAY 5 def end"
*End
*RIInserter 6Tray/Tray 6: "userdict /RPS_BDdict 12 dict put
userdict /RPS_BDdict get begin /RPS_BD_INSERTERTRAY 6 def end"
*End
*RIInserter 7Tray/Tray 7: "userdict /RPS_BDdict 12 dict put
userdict /RPS_BDdict get begin /RPS_BD_INSERTERTRAY 0 def end"
*End
*RIInserter Upper/Interposer Upper Tray: "userdict /RPS_BDdict 12 dict put
userdict /RPS_BDdict get begin
/RPS_BD_INSERTERTRAY 89 def end"
*End
*RIInserter Lower/Interposer Lower Tray: "userdict /RPS_BDdict 12 dict put
userdict /RPS_BDdict get begin
/RPS_BD_INSERTERTRAY 88 def end"
*End
*CloseUI: *RIInserter
*OpenUI *PositionRIBind/Perfect Binding Position: PickOne
*OrderDependency: 268 AnySetup *PositionRIBind
*DefaultPositionRIBind: Left
*PositionRIBind Left/Left Bind: "userdict /RPS_BDdict get begin
/RPS_BD_BINDPOSITION 0 def end"
*End
*PositionRIBind Right/Right Bind: "userdict /RPS_BDdict get begin
/RPS_BD_BINDPOSITION 2 def end"
*End
*PositionRIBind Upper/Top Bind: "userdict /RPS_BDdict get begin
/RPS_BD_BINDPOSITION 3 def end"
*End
*CloseUI: *PositionRIBind
*OpenUI *RIImagePositionUB/Adjust Image Position (Along Binding Edge): PickOne
*OrderDependency: 270 AnySetup *RIImagePositionUB
*DefaultRIImagePositionUB: None
*RIImagePositionUB 50mm/5.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_IMAGEPOSITIONUB 14.2 def end"
*End
*RIImagePositionUB 45mm/4.5 mm: "userdict /RPS_BDdict get begin
/RPS_BD_IMAGEPOSITIONUB 12.8 def end"
*End
*RIImagePositionUB 40mm/4.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_IMAGEPOSITIONUB 11.3 def end"
*End
*RIImagePositionUB 35mm/3.5 mm: "userdict /RPS_BDdict get begin
/RPS_BD_IMAGEPOSITIONUB 9.9 def end"
*End
*RIImagePositionUB 30mm/3.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_IMAGEPOSITIONUB 8.5 def end"
*End
*RIImagePositionUB 25mm/2.5 mm: "userdict /RPS_BDdict get begin
/RPS_BD_IMAGEPOSITIONUB 7.1 def end"
*End
*RIImagePositionUB 20mm/2.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_IMAGEPOSITIONUB 5.7 def end"
*End
*RIImagePositionUB 15mm/1.5 mm: "userdict /RPS_BDdict get begin
/RPS_BD_IMAGEPOSITIONUB 4.3 def end"
*End
*RIImagePositionUB 10mm/1.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_IMAGEPOSITIONUB 2.8 def end"
*End
*RIImagePositionUB 05mm/0.5 mm: "userdict /RPS_BDdict get begin
/RPS_BD_IMAGEPOSITIONUB 1.4 def end"
*End
*RIImagePositionUB None/0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_IMAGEPOSITIONUB 0 def end"
*End
*RIImagePositionUB M05mm/-0.5 mm: "userdict /RPS_BDdict get begin
/RPS_BD_IMAGEPOSITIONUB -1.4 def end"
*End
*RIImagePositionUB M10mm/-1.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_IMAGEPOSITIONUB -2.8 def end"
*End
*RIImagePositionUB M15mm/-1.5 mm: "userdict /RPS_BDdict get begin
/RPS_BD_IMAGEPOSITIONUB -4.3 def end"
*End
*RIImagePositionUB M20mm/-2.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_IMAGEPOSITIONUB -5.7 def end"
*End
*RIImagePositionUB M25mm/-2.5 mm: "userdict /RPS_BDdict get begin
/RPS_BD_IMAGEPOSITIONUB -7.1 def end"
*End
*RIImagePositionUB M30mm/-3.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_IMAGEPOSITIONUB -8.5 def end"
*End
*RIImagePositionUB M35mm/-3.5 mm: "userdict /RPS_BDdict get begin
/RPS_BD_IMAGEPOSITIONUB -9.9 def end"
*End
*RIImagePositionUB M40mm/-4.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_IMAGEPOSITIONUB -11.3 def end"
*End
*RIImagePositionUB M45mm/-4.5 mm: "userdict /RPS_BDdict get begin
/RPS_BD_IMAGEPOSITIONUB -12.8 def end"
*End
*RIImagePositionUB M50mm/-5.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_IMAGEPOSITIONUB -14.2 def end"
*End
*CloseUI: *RIImagePositionUB
*OpenUI *RIImagePositionLR/Adjust Image Position (Across Binding Edge): PickOne
*OrderDependency: 273 AnySetup *RIImagePositionLR
*DefaultRIImagePositionLR: None
*RIImagePositionLR 50mm/5.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_IMAGEPOSITIONLR 14.2 def end"
*End
*RIImagePositionLR 45mm/4.5 mm: "userdict /RPS_BDdict get begin
/RPS_BD_IMAGEPOSITIONLR 12.8 def end"
*End
*RIImagePositionLR 40mm/4.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_IMAGEPOSITIONLR 11.3 def end"
*End
*RIImagePositionLR 35mm/3.5 mm: "userdict /RPS_BDdict get begin
/RPS_BD_IMAGEPOSITIONLR 9.9 def end"
*End
*RIImagePositionLR 30mm/3.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_IMAGEPOSITIONLR 8.5 def end"
*End
*RIImagePositionLR 25mm/2.5 mm: "userdict /RPS_BDdict get begin
/RPS_BD_IMAGEPOSITIONLR 7.1 def end"
*End
*RIImagePositionLR 20mm/2.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_IMAGEPOSITIONLR 5.7 def end"
*End
*RIImagePositionLR 15mm/1.5 mm: "userdict /RPS_BDdict get begin
/RPS_BD_IMAGEPOSITIONLR 4.3 def end"
*End
*RIImagePositionLR 10mm/1.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_IMAGEPOSITIONLR 2.8 def end"
*End
*RIImagePositionLR 05mm/0.5 mm: "userdict /RPS_BDdict get begin
/RPS_BD_IMAGEPOSITIONLR 1.4 def end"
*End
*RIImagePositionLR None/0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_IMAGEPOSITIONLR 0 def end"
*End
*RIImagePositionLR M05mm/-0.5 mm: "userdict /RPS_BDdict get begin
/RPS_BD_IMAGEPOSITIONLR -1.4 def end"
*End
*RIImagePositionLR M10mm/-1.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_IMAGEPOSITIONLR -2.8 def end"
*End
*RIImagePositionLR M15mm/-1.5 mm: "userdict /RPS_BDdict get begin
/RPS_BD_IMAGEPOSITIONLR -4.3 def end"
*End
*RIImagePositionLR M20mm/-2.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_IMAGEPOSITIONLR -5.7 def end"
*End
*RIImagePositionLR M25mm/-2.5 mm: "userdict /RPS_BDdict get begin
/RPS_BD_IMAGEPOSITIONLR -7.1 def end"
*End
*RIImagePositionLR M30mm/-3.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_IMAGEPOSITIONLR -8.5 def end"
*End
*RIImagePositionLR M35mm/-3.5 mm: "userdict /RPS_BDdict get begin
/RPS_BD_IMAGEPOSITIONLR -9.9 def end"
*End
*RIImagePositionLR M40mm/-4.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_IMAGEPOSITIONLR -11.3 def end"
*End
*RIImagePositionLR M45mm/-4.5 mm: "userdict /RPS_BDdict get begin
/RPS_BD_IMAGEPOSITIONLR -12.8 def end"
*End
*RIImagePositionLR M50mm/-5.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_IMAGEPOSITIONLR -14.2 def end"
*End
*CloseUI: *RIImagePositionLR
*OpenUI *RICutSize/Perfect Binding Finishing Size: PickOne
*OrderDependency: 275 AnySetup *RICutSize
*DefaultRICutSize: None
*RICutSize None/Off: ""
*RICutSize A3/A3: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPAGESIZE [1191 842] def end"
*End
*RICutSize A4/A4: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPAGESIZE [842 595] def end"
*End
*RICutSize A5/A5: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPAGESIZE [595 420] def end"
*End
*RICutSize A6/A6: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPAGESIZE [420 297] def end"
*End
*RICutSize B4/B4 (JIS): "userdict /RPS_BDdict get begin
/RPS_BD_CUTPAGESIZE [1032 729] def end"
*End
*RICutSize B5/B5 (JIS): "userdict /RPS_BDdict get begin
/RPS_BD_CUTPAGESIZE [729 516] def end"
*End
*RICutSize B6/B6 (JIS): "userdict /RPS_BDdict get begin
/RPS_BD_CUTPAGESIZE [516 363] def end"
*End
*RICutSize Legal/Legal: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPAGESIZE [1008 612] def end"
*End
*RICutSize GovernmentLG/8.25x14: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPAGESIZE [1008 594] def end"
*End
*RICutSize EngQuatro/8x10: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPAGESIZE [720 576] def end"
*End
*RICutSize Letter/Letter: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPAGESIZE [792 612] def end"
*End
*RICutSize Statement/5.5x8.5: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPAGESIZE [612 396] def end"
*End
*RICutSize F/8x13: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPAGESIZE [936 576] def end"
*End
*RICutSize Folio/8.25x13: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPAGESIZE [935 595] def end"
*End
*RICutSize FanFoldGermanLegal/8.5x13: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPAGESIZE [936 612] def end"
*End
*RICutSize Tabloid/11x17: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPAGESIZE [1224 792] def end"
*End
*RICutSize 12x18/12x18: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPAGESIZE [1296 864] def end"
*End
*RICutSize 11x14/11x14: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPAGESIZE [1008 792] def end"
*End
*RICutSize 13x19.2/13x19.2: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPAGESIZE [1382 936] def end"
*End
*RICutSize 13x19/13x19: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPAGESIZE [1368 936] def end"
*End
*RICutSize 12.6x19.2/12.6x19.2: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPAGESIZE [1382 907] def end"
*End
*RICutSize 12.6x18.5/12.6x18.5: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPAGESIZE [1332 907] def end"
*End
*RICutSize 13x18/13x18: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPAGESIZE [1296 936] def end"
*End
*RICutSize SRA3/SRA3: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPAGESIZE [1276 907] def end"
*End
*RICutSize SRA4/SRA4: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPAGESIZE [907 638] def end"
*End
*RICutSize 226x310/226x310: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPAGESIZE [879 641] def end"
*End
*RICutSize 310x432/310x432: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPAGESIZE [1225 879] def end"
*End
*RICutSize Executive/Executive: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPAGESIZE [756 522] def end"
*End
*RICutSize 8Kai/8K: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPAGESIZE [1106 757] def end"
*End
*RICutSize 16Kai/16K: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPAGESIZE [757 553] def end"
*End
*CloseUI: *RICutSize
*OpenUI *RICutPositionTop/Cut Position Adjustment (Head Edge): PickOne
*OrderDependency: 278 AnySetup *RICutPositionTop
*DefaultRICutPositionTop: 60mm
*RICutPositionTop 60mm/6.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONT 17.0 def end"
*End
*RICutPositionTop 70mm/7.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONT 19.8 def end"
*End
*RICutPositionTop 80mm/8.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONT 22.7 def end"
*End
*RICutPositionTop 90mm/9.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONT 25.5 def end"
*End
*RICutPositionTop 100mm/10.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONT 28.3 def end"
*End
*RICutPositionTop 110mm/11.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONT 31.2 def end"
*End
*RICutPositionTop 120mm/12.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONT 34.0 def end"
*End
*RICutPositionTop 130mm/13.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONT 36.9 def end"
*End
*RICutPositionTop 140mm/14.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONT 39.7 def end"
*End
*RICutPositionTop 150mm/15.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONT 42.5 def end"
*End
*RICutPositionTop 160mm/16.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONT 45.4 def end"
*End
*RICutPositionTop 170mm/17.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONT 48.2 def end"
*End
*RICutPositionTop 180mm/18.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONT 51.0 def end"
*End
*RICutPositionTop 190mm/19.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONT 53.9 def end"
*End
*RICutPositionTop 200mm/20.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONT 56.7 def end"
*End
*RICutPositionTop 210mm/21.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONT 59.5 def end"
*End
*RICutPositionTop 220mm/22.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONT 62.4 def end"
*End
*RICutPositionTop 230mm/23.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONT 65.2 def end"
*End
*RICutPositionTop 240mm/24.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONT 68.0 def end"
*End
*RICutPositionTop 250mm/25.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONT 70.9 def end"
*End
*RICutPositionTop 260mm/26.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONT 73.7 def end"
*End
*RICutPositionTop 270mm/27.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONT 76.5 def end"
*End
*RICutPositionTop 280mm/28.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONT 79.4 def end"
*End
*CloseUI: *RICutPositionTop
*OpenUI *RICutPositionBottom/Cut Position Adjustment (Tail Edge): PickOne
*OrderDependency: 280 AnySetup *RICutPositionBottom
*DefaultRICutPositionBottom: 60mm
*RICutPositionBottom 60mm/6.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONB 17.0 def end"
*End
*RICutPositionBottom 70mm/7.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONB 19.8 def end"
*End
*RICutPositionBottom 80mm/8.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONB 22.7 def end"
*End
*RICutPositionBottom 90mm/9.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONB 25.5 def end"
*End
*RICutPositionBottom 100mm/10.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONB 28.3 def end"
*End
*RICutPositionBottom 110mm/11.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONB 31.2 def end"
*End
*RICutPositionBottom 120mm/12.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONB 34.0 def end"
*End
*RICutPositionBottom 130mm/13.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONB 36.9 def end"
*End
*RICutPositionBottom 140mm/14.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONB 39.7 def end"
*End
*RICutPositionBottom 150mm/15.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONB 42.5 def end"
*End
*RICutPositionBottom 160mm/16.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONB 45.4 def end"
*End
*RICutPositionBottom 170mm/17.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONB 48.2 def end"
*End
*RICutPositionBottom 180mm/18.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONB 51.0 def end"
*End
*RICutPositionBottom 190mm/19.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONB 53.9 def end"
*End
*RICutPositionBottom 200mm/20.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONB 56.7 def end"
*End
*RICutPositionBottom 210mm/21.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONB 59.5 def end"
*End
*RICutPositionBottom 220mm/22.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONB 62.4 def end"
*End
*RICutPositionBottom 230mm/23.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONB 65.2 def end"
*End
*RICutPositionBottom 240mm/24.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONB 68.0 def end"
*End
*RICutPositionBottom 250mm/25.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONB 70.9 def end"
*End
*RICutPositionBottom 260mm/26.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONB 73.7 def end"
*End
*RICutPositionBottom 270mm/27.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONB 76.5 def end"
*End
*RICutPositionBottom 280mm/28.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONB 79.4 def end"
*End
*CloseUI: *RICutPositionBottom
*OpenUI *RICutPositionFore/Cut Position Adjustment (Fore Edge): PickOne
*OrderDependency: 283 AnySetup *RICutPositionFore
*DefaultRICutPositionFore: 60mm
*RICutPositionFore 60mm/6.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONF 17.0 def end"
*End
*RICutPositionFore 70mm/7.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONF 19.8 def end"
*End
*RICutPositionFore 80mm/8.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONF 22.7 def end"
*End
*RICutPositionFore 90mm/9.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONF 25.5 def end"
*End
*RICutPositionFore 100mm/10.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONF 28.3 def end"
*End
*RICutPositionFore 110mm/11.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONF 31.2 def end"
*End
*RICutPositionFore 120mm/12.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONF 34.0 def end"
*End
*RICutPositionFore 130mm/13.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONF 36.9 def end"
*End
*RICutPositionFore 140mm/14.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONF 39.7 def end"
*End
*RICutPositionFore 150mm/15.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONF 42.5 def end"
*End
*RICutPositionFore 160mm/16.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONF 45.4 def end"
*End
*RICutPositionFore 170mm/17.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONF 48.2 def end"
*End
*RICutPositionFore 180mm/18.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONF 51.0 def end"
*End
*RICutPositionFore 190mm/19.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONF 53.9 def end"
*End
*RICutPositionFore 200mm/20.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONF 56.7 def end"
*End
*RICutPositionFore 210mm/21.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONF 59.5 def end"
*End
*RICutPositionFore 220mm/22.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONF 62.4 def end"
*End
*RICutPositionFore 230mm/23.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONF 65.2 def end"
*End
*RICutPositionFore 240mm/24.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONF 68.0 def end"
*End
*RICutPositionFore 250mm/25.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONF 70.9 def end"
*End
*RICutPositionFore 260mm/26.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONF 73.7 def end"
*End
*RICutPositionFore 270mm/27.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONF 76.5 def end"
*End
*RICutPositionFore 280mm/28.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONF 79.4 def end"
*End
*RICutPositionFore 290mm/29.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONF 82.2 def end"
*End
*RICutPositionFore 300mm/30.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONF 85.0 def end"
*End
*RICutPositionFore 310mm/31.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONF 87.9 def end"
*End
*RICutPositionFore 320mm/32.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONF 90.7 def end"
*End
*RICutPositionFore 330mm/33.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONF 93.5 def end"
*End
*RICutPositionFore 340mm/34.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONF 96.4 def end"
*End
*RICutPositionFore 350mm/35.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONF 99.2 def end"
*End
*RICutPositionFore 360mm/36.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONF 102.0 def end"
*End
*RICutPositionFore 370mm/37.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONF 104.9 def end"
*End
*RICutPositionFore 380mm/38.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONF 107.7 def end"
*End
*RICutPositionFore 390mm/39.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONF 110.6 def end"
*End
*RICutPositionFore 400mm/40.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONF 113.4 def end"
*End
*RICutPositionFore 410mm/41.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONF 116.2 def end"
*End
*RICutPositionFore 420mm/42.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONF 119.1 def end"
*End
*RICutPositionFore 430mm/43.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONF 121.9 def end"
*End
*RICutPositionFore 440mm/44.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONF 124.7 def end"
*End
*RICutPositionFore 450mm/45.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONF 127.6 def end"
*End
*RICutPositionFore 460mm/46.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONF 130.4 def end"
*End
*RICutPositionFore 470mm/47.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONF 133.2 def end"
*End
*RICutPositionFore 480mm/48.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONF 136.1 def end"
*End
*RICutPositionFore 490mm/49.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONF 138.9 def end"
*End
*RICutPositionFore 500mm/50.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_CUTPOSITIONF 141.7 def end"
*End
*CloseUI: *RICutPositionFore
*OpenUI *RIFinishPosition/Finishing Size (Along Binding Edge): PickOne
*OrderDependency: 285 AnySetup *RIFinishPosition
*DefaultRIFinishPosition: None
*RIFinishPosition 50mm/5.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_FINISHPOSITION 14.2 def end"
*End
*RIFinishPosition 45mm/4.5 mm: "userdict /RPS_BDdict get begin
/RPS_BD_FINISHPOSITION 12.8 def end"
*End
*RIFinishPosition 40mm/4.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_FINISHPOSITION 11.3 def end"
*End
*RIFinishPosition 35mm/3.5 mm: "userdict /RPS_BDdict get begin
/RPS_BD_FINISHPOSITION 9.9 def end"
*End
*RIFinishPosition 30mm/3.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_FINISHPOSITION 8.5 def end"
*End
*RIFinishPosition 25mm/2.5 mm: "userdict /RPS_BDdict get begin
/RPS_BD_FINISHPOSITION 7.1 def end"
*End
*RIFinishPosition 20mm/2.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_FINISHPOSITION 5.7 def end"
*End
*RIFinishPosition 15mm/1.5 mm: "userdict /RPS_BDdict get begin
/RPS_BD_FINISHPOSITION 4.3 def end"
*End
*RIFinishPosition 10mm/1.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_FINISHPOSITION 2.8 def end"
*End
*RIFinishPosition 05mm/0.5 mm: "userdict /RPS_BDdict get begin
/RPS_BD_FINISHPOSITION 1.4 def end"
*End
*RIFinishPosition None/0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_FINISHPOSITION 0 def end"
*End
*RIFinishPosition M05mm/-0.5 mm: "userdict /RPS_BDdict get begin
/RPS_BD_FINISHPOSITION -1.4 def end"
*End
*RIFinishPosition M10mm/-1.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_FINISHPOSITION -2.8 def end"
*End
*RIFinishPosition M15mm/-1.5 mm: "userdict /RPS_BDdict get begin
/RPS_BD_FINISHPOSITION -4.3 def end"
*End
*RIFinishPosition M20mm/-2.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_FINISHPOSITION -5.7 def end"
*End
*RIFinishPosition M25mm/-2.5 mm: "userdict /RPS_BDdict get begin
/RPS_BD_FINISHPOSITION -7.1 def end"
*End
*RIFinishPosition M30mm/-3.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_FINISHPOSITION -8.5 def end"
*End
*RIFinishPosition M35mm/-3.5 mm: "userdict /RPS_BDdict get begin
/RPS_BD_FINISHPOSITION -9.9 def end"
*End
*RIFinishPosition M40mm/-4.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_FINISHPOSITION -11.3 def end"
*End
*RIFinishPosition M45mm/-4.5 mm: "userdict /RPS_BDdict get begin
/RPS_BD_FINISHPOSITION -12.8 def end"
*End
*RIFinishPosition M50mm/-5.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_FINISHPOSITION -14.2 def end"
*End
*CloseUI: *RIFinishPosition
*OpenUI *RICoverPrint/Perfect Binding Cover Sheet Print: PickOne
*OrderDependency: 284 AnySetup *RICoverPrint
*DefaultRICoverPrint: None
*RICoverPrint None/Off: "userdict /RPS_BDdict get begin
/RPS_BD_COVERPRINT 0 def end"
*End
*RICoverPrint SingleInside/Back Cover (Inside): "userdict /RPS_BDdict get begin
/RPS_BD_COVERPRINT 1 def end"
*End
*RICoverPrint SingleOutside/Front Cover (Outside): "userdict /RPS_BDdict get begin
/RPS_BD_COVERPRINT 2 def end"
*End
*RICoverPrint Bothsides/Front (Outside) / Back (Inside): "userdict /RPS_BDdict get begin
/RPS_BD_COVERPRINT 3 def end"
*End
*CloseUI: *RICoverPrint
*OpenUI *RICoverPositionUB/Cover Sheet Image Position (Along Binding Edge): PickOne
*OrderDependency: 286 AnySetup *RICoverPositionUB
*DefaultRICoverPositionUB: None
*RICoverPositionUB 20mm/2.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_COVERPRINTPOSITIONH 5.7 def end"
*End
*RICoverPositionUB 15mm/1.5 mm: "userdict /RPS_BDdict get begin
/RPS_BD_COVERPRINTPOSITIONH 4.3 def end"
*End
*RICoverPositionUB 10mm/1.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_COVERPRINTPOSITIONH 2.8 def end"
*End
*RICoverPositionUB 5mm/0.5 mm: "userdict /RPS_BDdict get begin
/RPS_BD_COVERPRINTPOSITIONH 1.4 def end"
*End
*RICoverPositionUB None/0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_COVERPRINTPOSITIONH 0 def end"
*End
*RICoverPositionUB M5mm/-0.5 mm: "userdict /RPS_BDdict get begin
/RPS_BD_COVERPRINTPOSITIONH -1.4 def end"
*End
*RICoverPositionUB M10mm/-1.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_COVERPRINTPOSITIONH -2.8 def end"
*End
*RICoverPositionUB M15mm/-1.5 mm: "userdict /RPS_BDdict get begin
/RPS_BD_COVERPRINTPOSITIONH -4.3 def end"
*End
*RICoverPositionUB M20mm/-2.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_COVERPRINTPOSITIONH -5.7 def end"
*End
*CloseUI: *RICoverPositionUB
*OpenUI *RICoverPositionLR/Cover Sheet Image Position (Across Binding Edge): PickOne
*OrderDependency: 287 AnySetup *RICoverPositionLR
*DefaultRICoverPositionLR: None
*RICoverPositionLR 20mm/2.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_COVERPRINTPOSITIONV 5.7 def end"
*End
*RICoverPositionLR 15mm/1.5 mm: "userdict /RPS_BDdict get begin
/RPS_BD_COVERPRINTPOSITIONV 4.3 def end"
*End
*RICoverPositionLR 10mm/1.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_COVERPRINTPOSITIONV 2.8 def end"
*End
*RICoverPositionLR 5mm/0.5 mm: "userdict /RPS_BDdict get begin
/RPS_BD_COVERPRINTPOSITIONV 1.4 def end"
*End
*RICoverPositionLR None/0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_COVERPRINTPOSITIONV 0 def end"
*End
*RICoverPositionLR M5mm/-0.5 mm: "userdict /RPS_BDdict get begin
/RPS_BD_COVERPRINTPOSITIONV -1.4 def end"
*End
*RICoverPositionLR M10mm/-1.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_COVERPRINTPOSITIONV -2.8 def end"
*End
*RICoverPositionLR M15mm/-1.5 mm: "userdict /RPS_BDdict get begin
/RPS_BD_COVERPRINTPOSITIONV -4.3 def end"
*End
*RICoverPositionLR M20mm/-2.0 mm: "userdict /RPS_BDdict get begin
/RPS_BD_COVERPRINTPOSITIONV -5.7 def end"
*End
*CloseUI: *RICoverPositionLR
*OpenUI *TrimmerCutAndPosition/Adjust Fore Edge Cut Position: PickOne
*OrderDependency: 298 AnySetup *TrimmerCutAndPosition
*DefaultTrimmerCutAndPosition: None
*TrimmerCutAndPosition None/Do not Cut: "currentpagedevice
/Bind get 0 eq {<</Trim 0>> setpagedevice} if"
*End
*TrimmerCutAndPosition 20mm/2.0 mm: "<<
/Trim 2 /TrimDetails <</Type 1 /TrimType 1 /TrimSide 5.7>>
>> setpagedevice"
*End
*TrimmerCutAndPosition 30mm/3.0 mm: "<<
/Trim 2 /TrimDetails <</Type 1 /TrimType 1 /TrimSide 8.5>>
>> setpagedevice"
*End
*TrimmerCutAndPosition 40mm/4.0 mm: "<<
/Trim 2 /TrimDetails <</Type 1 /TrimType 1 /TrimSide 11.3>>
>> setpagedevice"
*End
*TrimmerCutAndPosition 50mm/5.0 mm: "<<
/Trim 2 /TrimDetails <</Type 1 /TrimType 1 /TrimSide 14.2>>
>> setpagedevice"
*End
*TrimmerCutAndPosition 60mm/6.0 mm: "<<
/Trim 2 /TrimDetails <</Type 1 /TrimType 1 /TrimSide 17.0>>
>> setpagedevice"
*End
*TrimmerCutAndPosition 70mm/7.0 mm: "<<
/Trim 2 /TrimDetails <</Type 1 /TrimType 1 /TrimSide 19.8>>
>> setpagedevice"
*End
*TrimmerCutAndPosition 80mm/8.0 mm: "<<
/Trim 2 /TrimDetails <</Type 1 /TrimType 1 /TrimSide 22.7>>
>> setpagedevice"
*End
*TrimmerCutAndPosition 90mm/9.0 mm: "<<
/Trim 2 /TrimDetails <</Type 1 /TrimType 1 /TrimSide 25.5>>
>> setpagedevice"
*End
*TrimmerCutAndPosition 100mm/10.0 mm: "<<
/Trim 2 /TrimDetails <</Type 1 /TrimType 1 /TrimSide 28.3>>
>> setpagedevice"
*End
*TrimmerCutAndPosition 110mm/11.0 mm: "<<
/Trim 2 /TrimDetails <</Type 1 /TrimType 1 /TrimSide 31.2>>
>> setpagedevice"
*End
*TrimmerCutAndPosition 120mm/12.0 mm: "<<
/Trim 2 /TrimDetails <</Type 1 /TrimType 1 /TrimSide 34.0>>
>> setpagedevice"
*End
*TrimmerCutAndPosition 130mm/13.0 mm: "<<
/Trim 2 /TrimDetails <</Type 1 /TrimType 1 /TrimSide 36.9>>
>> setpagedevice"
*End
*TrimmerCutAndPosition 140mm/14.0 mm: "<<
/Trim 2 /TrimDetails <</Type 1 /TrimType 1 /TrimSide 39.7>>
>> setpagedevice"
*End
*TrimmerCutAndPosition 150mm/15.0 mm: "<<
/Trim 2 /TrimDetails <</Type 1 /TrimType 1 /TrimSide 42.5>>
>> setpagedevice"
*End
*TrimmerCutAndPosition 160mm/16.0 mm: "<<
/Trim 2 /TrimDetails <</Type 1 /TrimType 1 /TrimSide 45.4>>
>> setpagedevice"
*End
*TrimmerCutAndPosition 170mm/17.0 mm: "<<
/Trim 2 /TrimDetails <</Type 1 /TrimType 1 /TrimSide 48.2>>
>> setpagedevice"
*End
*TrimmerCutAndPosition 180mm/18.0 mm: "<<
/Trim 2 /TrimDetails <</Type 1 /TrimType 1 /TrimSide 51.0>>
>> setpagedevice"
*End
*TrimmerCutAndPosition 190mm/19.0 mm: "<<
/Trim 2 /TrimDetails <</Type 1 /TrimType 1 /TrimSide 53.9>>
>> setpagedevice"
*End
*TrimmerCutAndPosition 200mm/20.0 mm: "<<
/Trim 2 /TrimDetails <</Type 1 /TrimType 1 /TrimSide 56.7>>
>> setpagedevice"
*End
*CloseUI: *TrimmerCutAndPosition
*%=== Watermark ========
*OpenUI *RIWatermark/Watermark: PickOne
*OrderDependency: 300 AnySetup *RIWatermark
*DefaultRIWatermark: Off
*RIWatermark Off/Off: ""
*RIWatermark On/On: "
userdict /RPS_WMdict 10 dict put
userdict /RPS_WMdict get begin
/RPS_WM true def
/RPS_WM_adjangle { 1.0 mul } bind def %% Portrait, Portrait(4up)
/RPS_WM_adjust 0.5 def
/RPS_WM_position { %% center
currentpagedevice /PageSize get
aload pop exch 2.0 div exch 2.0 div translate
RPS_WM_angle RPS_WM_adjangle rotate
RPS_WM_font findfont RPS_WM_size scalefont setfont
RPS_WM_str stringwidth pop 2.0 div neg RPS_WM_size 2.0 div moveto
} bind def
end
<<
/EndPage {
2 eq { pop false }{
userdict /RPS_WMdict 2 copy known {
get begin
RPS_WM {
gsave
initgraphics
RPS_WM_color
RPS_WM_Pattern
RPS_WM_position
RPS_WM_draw
grestore
} if
end
}{ pop pop } ifelse
pop true
} ifelse
} bind
>> setpagedevice"
*End
*CloseUI: *RIWatermark
*%=== Watermark Text ========
*OpenUI *RIWMText/Watermark Text: PickOne
*OrderDependency: 310 AnySetup *RIWMText
*DefaultRIWMText: Confidential
*RIWMText Confidential/CONFIDENTIAL: "userdict /RPS_WMdict get begin
/RPS_WM_str (CONFIDENTIAL) def end"
*End
*RIWMText Copy/COPY: "userdict /RPS_WMdict get begin
/RPS_WM_str (COPY) def end"
*End
*RIWMText Copyright/DRAFT: "userdict /RPS_WMdict get begin
/RPS_WM_str (DRAFT) def end"
*End
*RIWMText Final/FINAL: "userdict /RPS_WMdict get begin
/RPS_WM_str (FINAL) def end"
*End
*RIWMText FileCopy/FILE COPY: "userdict /RPS_WMdict get begin
/RPS_WM_str (FILE COPY) def end"
*End
*RIWMText Proof/PROOF: "userdict /RPS_WMdict get begin
/RPS_WM_str (PROOF) def end"
*End
*RIWMText TopSecret/TOP SECRET: "userdict /RPS_WMdict get begin
/RPS_WM_str (TOP SECRET) def end"
*End
*CloseUI: *RIWMText
*%=== WaterMark Font ========
*OpenUI *RIwmFont/Watermark Font: PickOne
*OrderDependency: 320 AnySetup *RIwmFont
*DefaultRIwmFont: HelveticaB
*RIwmFont CourierB/Courier Bold: "userdict /RPS_WMdict get begin
/RPS_WM_font /Courier-Bold def end"
*End
*RIwmFont TimesB/Times Bold: "userdict /RPS_WMdict get begin
/RPS_WM_font /Times-Bold def end"
*End
*RIwmFont HelveticaB/Helvetica Bold: "userdict /RPS_WMdict get begin
/RPS_WM_font /Helvetica-Bold def end"
*End
*CloseUI: *RIwmFont
*%=== WaterMark Font Size========
*OpenUI *RIwmSize/Watermark Size: PickOne
*OrderDependency: 330 AnySetup *RIwmSize
*DefaultRIwmSize: 36
*RIwmSize 24/24 Point: "userdict /RPS_WMdict get begin
/RPS_WM_size 24 def end"
*End
*RIwmSize 36/36 Point: "userdict /RPS_WMdict get begin
/RPS_WM_size 36 def end"
*End
*RIwmSize 48/48 Point: "userdict /RPS_WMdict get begin
/RPS_WM_size 48 def end"
*End
*RIwmSize 60/60 Point: "userdict /RPS_WMdict get begin
/RPS_WM_size 60 def end"
*End
*RIwmSize 72/72 Point: "userdict /RPS_WMdict get begin
/RPS_WM_size 72 def end"
*End
*CloseUI: *RIwmSize
*%=== WaterMark Angle ========
*OpenUI *RIwmAngle/Watermark Angle: PickOne
*OrderDependency: 340 AnySetup *RIwmAngle
*DefaultRIwmAngle: 45Deg
*RIwmAngle 180Deg/180 Degrees: "userdict /RPS_WMdict get begin
/RPS_WM_angle 180 def end"
*End
*RIwmAngle 135Deg/135 Degrees: "userdict /RPS_WMdict get begin
/RPS_WM_angle 135 def end"
*End
*RIwmAngle 90Deg/90 Degrees: "userdict /RPS_WMdict get begin
/RPS_WM_angle 90 def end"
*End
*RIwmAngle 45Deg/45 Degrees: "userdict /RPS_WMdict get begin
/RPS_WM_angle 45 def end"
*End
*RIwmAngle 0Deg/0 Degrees: "userdict /RPS_WMdict get begin
/RPS_WM_angle 0 def end"
*End
*RIwmAngle M45Deg/-45 Degrees: "userdict /RPS_WMdict get begin
/RPS_WM_angle -45 def end"
*End
*RIwmAngle M90Deg/-90 Degrees: "userdict /RPS_WMdict get begin
/RPS_WM_angle -90 def end"
*End
*RIwmAngle M135Deg/-135 Degrees: "userdict /RPS_WMdict get begin
/RPS_WM_angle -135 def end"
*End
*RIwmAngle M180Deg/-180 Degrees: "userdict /RPS_WMdict get begin
/RPS_WM_angle -180 def end"
*End
*CloseUI: *RIwmAngle
*%=== WaterMark Style ========
*OpenUI *RIwmTextStyle/Watermark Style: PickOne
*OrderDependency: 350 AnySetup *RIwmTextStyle
*DefaultRIwmTextStyle: Gray
*RIwmTextStyle Gray/Gray: "userdict /RPS_WMdict get begin
/RPS_WM_color { 0 setgray } bind def
/RPS_WM_Pattern {
<<
/PatternType 1
/PaintType 1
/TilingType 3
/BBox [ 0 0 1 1 ]
/XStep 1
/YStep 1
/PaintProc {
begin
RPS_WM_color
8 8 true [ 8 0 0 -8 0 8 ]
<88002200 88002200> imagemask
end
}
>> [ 1 0 0 -1 0 1 ] makepattern
setpattern }
bind def
/RPS_WM_draw { %% RPS_WM_mask
RPS_WM_str false charpath fill
} bind def end"
*End
*RIwmTextStyle Outline/Outlined: "userdict /RPS_WMdict get begin
/RPS_WM_color { 0 setgray } bind def
/RPS_WM_Pattern {} def
/RPS_WM_draw { %% RPS_WM_outline
0 setlinewidth RPS_WM_str false charpath stroke
} bind def end"
*End
*CloseUI: *RIwmTextStyle
*%========== Gray Levels and Halftoning ==========
*AccurateScreensSupport: True
*ScreenFreq: "85.0"
*ScreenAngle: "45.0"
*DefaultScreenProc: Dot
*ScreenProc Dot: "
{abs exch abs 2 copy add 1 gt
{1 sub dup mul exch 1 sub dup mul add 1 sub}
{dup mul exch dup mul add 1 exch sub}
ifelse}
"
*End
*ScreenProc Line: "{pop}"
*ScreenProc Ellipse: "
{dup 5 mul 8 div mul exch dup mul exch add sqrt 1 exch sub}
"
*End
*%========== Font ==========
*DefaultFont: Courier
*Font AlbertusMT: Standard "(001.000)" Standard ROM
*Font AlbertusMT-Italic: Standard "(001.000)" Standard ROM
*Font AlbertusMT-Light: Standard "(001.000)" Standard ROM
*Font AntiqueOlive-Bold: Standard "(501.009)" ExtendedRoman ROM
*Font AntiqueOlive-Compact: Standard "(501.008)" ExtendedRoman ROM
*Font AntiqueOlive-Italic: Standard "(501.010)" ExtendedRoman ROM
*Font AntiqueOlive-Roman: Standard "(501.008)" ExtendedRoman ROM
*Font Apple-Chancery: Standard "(001.001)" ExtendedRoman ROM
*Font ArialMT: Standard "(501.009)" ExtendedRoman ROM
*Font Arial-BoldMT: Standard "(501.009)" ExtendedRoman ROM
*Font Arial-BoldItalicMT: Standard "(501.009)" ExtendedRoman ROM
*Font Arial-ItalicMT: Standard "(501.012)" ExtendedRoman ROM
*Font AvantGarde-Book: Standard "(501.009)" ExtendedRoman ROM
*Font AvantGarde-BookOblique: Standard "(501.009)" ExtendedRoman ROM
*Font AvantGarde-Demi: Standard "(501.010)" ExtendedRoman ROM
*Font AvantGarde-DemiOblique: Standard "(501.010)" ExtendedRoman ROM
*Font Bodoni: Standard "(501.008)" ExtendedRoman ROM
*Font Bodoni-Bold: Standard "(501.006)" ExtendedRoman ROM
*Font Bodoni-BoldItalic: Standard "(501.007)" ExtendedRoman ROM
*Font Bodoni-Italic: Standard "(501.007)" ExtendedRoman ROM
*Font Bodoni-Poster: Standard "(501.009)" ExtendedRoman ROM
*Font Bodoni-PosterCompressed: Standard "(501.007)" ExtendedRoman ROM
*Font Bookman-Demi: Standard "(501.007)" ExtendedRoman ROM
*Font Bookman-DemiItalic: Standard "(501.008)" ExtendedRoman ROM
*Font Bookman-Light: Standard "(501.006)" ExtendedRoman ROM
*Font Bookman-LightItalic: Standard "(501.007)" ExtendedRoman ROM
*Font Carta: Special "(001.001)" Special ROM
*Font Chicago: Standard "(501.011)" ExtendedRoman ROM
*Font Clarendon-Bold: Standard "(501.008)" ExtendedRoman ROM
*Font Clarendon-Light: Standard "(501.009)" ExtendedRoman ROM
*Font Clarendon: Standard "(501.009)" ExtendedRoman ROM
*Font CooperBlack-Italic: Standard "(001.003)" Standard ROM
*Font CooperBlack: Standard "(001.003)" Standard ROM
*Font Copperplate-ThirtyThreeBC: Standard "(001.002)" Standard ROM
*Font Copperplate-ThirtyTwoBC: Standard "(001.002)" Standard ROM
*Font Coronet-Regular: Standard "(001.000)" ExtendedRoman ROM
*Font Courier-Bold: Standard "(501.010)" ExtendedRoman ROM
*Font Courier-BoldOblique: Standard "(501.010)" ExtendedRoman ROM
*Font Courier-Oblique: Standard "(501.010)" ExtendedRoman ROM
*Font Courier: Standard "(501.010)" ExtendedRoman ROM
*Font Eurostile-Bold: Standard "(501.008)" ExtendedRoman ROM
*Font Eurostile-BoldExtendedTwo: Standard "(501.008)" ExtendedRoman ROM
*Font Eurostile-ExtendedTwo: Standard "(501.010)" ExtendedRoman ROM
*Font Eurostile: Standard "(501.008)" ExtendedRoman ROM
*Font Geneva: Standard "(501.007)" ExtendedRoman ROM
*Font GillSans: Standard "(501.009)" ExtendedRoman ROM
*Font GillSans-Bold: Standard "(501.007)" ExtendedRoman ROM
*Font GillSans-BoldCondensed: Standard "(501.006)" ExtendedRoman ROM
*Font GillSans-BoldItalic: Standard "(501.008)" ExtendedRoman ROM
*Font GillSans-Condensed: Standard "(501.007)" ExtendedRoman ROM
*Font GillSans-ExtraBold: Standard "(501.008)" ExtendedRoman ROM
*Font GillSans-Italic: Standard "(501.008)" ExtendedRoman ROM
*Font GillSans-Light: Standard "(501.009)" ExtendedRoman ROM
*Font GillSans-LightItalic: Standard "(501.009)" ExtendedRoman ROM
*Font Goudy: Standard "(001.003)" Standard ROM
*Font Goudy-Bold: Standard "(001.002)" Standard ROM
*Font Goudy-BoldItalic: Standard "(001.002)" Standard ROM
*Font Goudy-ExtraBold: Standard "(001.001)" Standard ROM
*Font Goudy-Italic: Standard "(001.002)" Standard ROM
*Font Helvetica: Standard "(501.008)" ExtendedRoman ROM
*Font Helvetica-Bold: Standard "(501.010)" ExtendedRoman ROM
*Font Helvetica-BoldOblique: Standard "(501.010)" ExtendedRoman ROM
*Font Helvetica-Condensed-Bold: Standard "(501.009)" ExtendedRoman ROM
*Font Helvetica-Condensed-BoldObl: Standard "(501.009)" ExtendedRoman ROM
*Font Helvetica-Condensed-Oblique: Standard "(501.010)" ExtendedRoman ROM
*Font Helvetica-Condensed: Standard "(501.010)" ExtendedRoman ROM
*Font Helvetica-Narrow-Bold: Standard "(501.010)" ExtendedRoman ROM
*Font Helvetica-Narrow-BoldOblique: Standard "(501.010)" ExtendedRoman ROM
*Font Helvetica-Narrow-Oblique: Standard "(501.008)" ExtendedRoman ROM
*Font Helvetica-Narrow: Standard "(501.008)" ExtendedRoman ROM
*Font Helvetica-Oblique: Standard "(501.008)" ExtendedRoman ROM
*Font HoeflerText-Black: Standard "(501.008)" ExtendedRoman ROM
*Font HoeflerText-BlackItalic: Standard "(501.009)" ExtendedRoman ROM
*Font HoeflerText-Italic: Standard "(501.010)" ExtendedRoman ROM
*Font HoeflerText-Ornaments: Special "(001.001)" Special ROM
*Font HoeflerText-Regular: Standard "(501.009)" ExtendedRoman ROM
*Font JoannaMT: Standard "(501.009)" ExtendedRoman ROM
*Font JoannaMT-Bold: Standard "(501.008)" ExtendedRoman ROM
*Font JoannaMT-BoldItalic: Standard "(501.008)" ExtendedRoman ROM
*Font JoannaMT-Italic: Standard "(501.008)" ExtendedRoman ROM
*Font LetterGothic: Standard "(501.009)" ExtendedRoman ROM
*Font LetterGothic-Bold: Standard "(501.010)" ExtendedRoman ROM
*Font LetterGothic-BoldSlanted: Standard "(501.010)" ExtendedRoman ROM
*Font LetterGothic-Slanted: Standard "(501.010)" ExtendedRoman ROM
*Font LubalinGraph-Book: Standard "(501.009)" ExtendedRoman ROM
*Font LubalinGraph-BookOblique: Standard "(501.009)" ExtendedRoman ROM
*Font LubalinGraph-Demi: Standard "(501.009)" ExtendedRoman ROM
*Font LubalinGraph-DemiOblique: Standard "(501.009)" ExtendedRoman ROM
*Font Marigold: Standard "(001.000)" Standard ROM
*Font MonaLisa-Recut: Standard "(001.000)" Standard ROM
*Font Monaco: Standard "(501.012)" ExtendedRoman ROM
*Font NewCenturySchlbk-Bold: Standard "(501.008)" ExtendedRoman ROM
*Font NewCenturySchlbk-BoldItalic: Standard "(501.009)" ExtendedRoman ROM
*Font NewCenturySchlbk-Italic: Standard "(501.011)" ExtendedRoman ROM
*Font NewCenturySchlbk-Roman: Standard "(501.008)" ExtendedRoman ROM
*Font NewYork: Standard "(501.013)" ExtendedRoman ROM
*Font Optima-Bold: Standard "(501.008)" ExtendedRoman ROM
*Font Optima-BoldItalic: Standard "(501.009)" ExtendedRoman ROM
*Font Optima-Italic: Standard "(501.010)" ExtendedRoman ROM
*Font Optima: Standard "(501.010)" ExtendedRoman ROM
*Font Oxford: Standard "(001.000)" Standard ROM
*Font Palatino-Bold: Standard "(501.008)" ExtendedRoman ROM
*Font Palatino-BoldItalic: Standard "(501.007)" ExtendedRoman ROM
*Font Palatino-Italic: Standard "(501.008)" ExtendedRoman ROM
*Font Palatino-Roman: Standard "(501.006)" ExtendedRoman ROM
*Font StempelGaramond-Bold: Standard "(501.007)" ExtendedRoman ROM
*Font StempelGaramond-BoldItalic: Standard "(501.012)" ExtendedRoman ROM
*Font StempelGaramond-Italic: Standard "(501.009)" ExtendedRoman ROM
*Font StempelGaramond-Roman: Standard "(501.011)" ExtendedRoman ROM
*Font Symbol: Special "(001.008)" Special ROM
*Font Tekton: Standard "(001.001)" Standard ROM
*Font Times-Bold: Standard "(501.009)" ExtendedRoman ROM
*Font Times-BoldItalic: Standard "(501.009)" ExtendedRoman ROM
*Font Times-Italic: Standard "(501.010)" ExtendedRoman ROM
*Font Times-Roman: Standard "(501.010)" ExtendedRoman ROM
*Font TimesNewRomanPS-BoldItalicMT: Standard "(501.011)" ExtendedRoman ROM
*Font TimesNewRomanPS-BoldMT: Standard "(501.009)" ExtendedRoman ROM
*Font TimesNewRomanPS-ItalicMT: Standard "(501.011)" ExtendedRoman ROM
*Font TimesNewRomanPSMT: Standard "(501.010)" ExtendedRoman ROM
*Font Univers: Standard "(501.009)" ExtendedRoman ROM
*Font Univers-Bold: Standard "(501.008)" ExtendedRoman ROM
*Font Univers-BoldExt: Standard "(501.010)" ExtendedRoman ROM
*Font Univers-BoldExtObl: Standard "(501.010)" ExtendedRoman ROM
*Font Univers-BoldOblique: Standard "(501.008)" ExtendedRoman ROM
*Font Univers-Condensed: Standard "(501.011)" ExtendedRoman ROM
*Font Univers-CondensedBold: Standard "(501.009)" ExtendedRoman ROM
*Font Univers-CondensedBoldOblique: Standard "(501.009)" ExtendedRoman ROM
*Font Univers-CondensedOblique: Standard "(501.011)" ExtendedRoman ROM
*Font Univers-Extended: Standard "(501.009)" ExtendedRoman ROM
*Font Univers-ExtendedObl: Standard "(501.009)" ExtendedRoman ROM
*Font Univers-Light: Standard "(501.009)" ExtendedRoman ROM
*Font Univers-LightOblique: Standard "(501.009)" ExtendedRoman ROM
*Font Univers-Oblique: Standard "(501.009)" ExtendedRoman ROM
*Font Wingdings-Regular: Special "(001.001)" Special ROM
*Font ZapfChancery-MediumItalic: Standard "(002.000)" ExtendedRoman ROM
*Font ZapfDingbats: Special "(001.005S)" Special ROM
*?FontQuery: "
save
{count 1 gt {
exch dup 127 string cvs (/) print print (:) print
/Font resourcestatus {pop pop (Yes)}{(NO)}ifelse =
}{exit}ifelse
}bind loop (*) = flush
restore
"
*End
*?FontList: "
save
(*) {cvn ==} 128 string /Font resourceforall (*) = flush
restore
"
*End
*Status: "initializing"
*Status: "holding"
*Status: "idle"
*Status: "busy"
*Status: "waiting"
*Status: "printing"
*Status: "print test page"
*Source: "Parallel"
*Source: "TCP/IP"
*Source: "EtherTalk"
*Source: "SPX/IPX"
*Source: "NetBEUI"
*Source: "IEEE1394"
*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"
*%========== Color Separation ==========
*DefaultColorSep: ProcessBlack.106lpi.600dpi/106 lpi / 600 dpi
*%===== For 106 lpi & 600 dpi =====
*ColorSepScreenAngle ProcessBlack.106lpi.600dpi/106 lpi / 600 dpi: "45.0"
*ColorSepScreenAngle CustomColor.106lpi.600dpi/106 lpi / 600 dpi: "45.0"
*ColorSepScreenAngle ProcessCyan.106lpi.600dpi/106 lpi / 600 dpi: "45.0"
*ColorSepScreenAngle ProcessMagenta.106lpi.600dpi/106 lpi / 600 dpi: "45.0"
*ColorSepScreenAngle ProcessYellow.106lpi.600dpi/106 lpi / 600 dpi: "45.0"
*ColorSepScreenFreq ProcessBlack.106lpi.600dpi/106 lpi / 600 dpi: "106"
*ColorSepScreenFreq CustomColor.106lpi.600dpi/106 lpi / 600 dpi: "106"
*ColorSepScreenFreq ProcessCyan.106lpi.600dpi/106 lpi / 600 dpi: "106"
*ColorSepScreenFreq ProcessMagenta.106lpi.600dpi/106 lpi / 600 dpi: "106"
*ColorSepScreenFreq ProcessYellow.106lpi.600dpi/106 lpi / 600 dpi: "106"
*%===== For 140 lpi & 1200 dpi =====
*ColorSepScreenAngle ProcessBlack.140lpi.1200dpi/140 lpi / 1200 dpi: "45.0"
*ColorSepScreenAngle CustomColor.140lpi.1200dpi/140 lpi / 1200 dpi: "45.0"
*ColorSepScreenAngle ProcessCyan.140lpi.1200dpi/140 lpi / 1200 dpi: "45.0"
*ColorSepScreenAngle ProcessMagenta.140lpi.1200dpi/140 lpi / 1200 dpi: "45.0"
*ColorSepScreenAngle ProcessYellow.140lpi.1200dpi/140 lpi / 1200 dpi: "45.0"
*ColorSepScreenFreq ProcessBlack.140lpi.1200dpi/140 lpi / 1200 dpi: "140"
*ColorSepScreenFreq CustomColor.140lpi.1200dpi/140 lpi / 1200 dpi: "140"
*ColorSepScreenFreq ProcessCyan.140lpi.1200dpi/140 lpi / 1200 dpi: "140"
*ColorSepScreenFreq ProcessMagenta.140lpi.1200dpi/140 lpi / 1200 dpi: "140"
*ColorSepScreenFreq ProcessYellow.140lpi.1200dpi/140 lpi / 1200 dpi: "140"
*%========== Large Capacity Tray / Tray 7 ==========
*UIConstraints: *LargeCapacityTray NotInstalled *Tray7 Installed
*UIConstraints: *Tray7 Installed *LargeCapacityTray NotInstalled
*%========== Large Capacity Tray / InputSlot ==========
*UIConstraints: *LargeCapacityTray NotInstalled *InputSlot 4Tray
*UIConstraints: *LargeCapacityTray NotInstalled *InputSlot 5Tray
*UIConstraints: *LargeCapacityTray NotInstalled *InputSlot 6Tray
*UIConstraints: *LargeCapacityTray NotInstalled *InputSlot 7Tray
*UIConstraints: *InputSlot 4Tray *LargeCapacityTray NotInstalled
*UIConstraints: *InputSlot 5Tray *LargeCapacityTray NotInstalled
*UIConstraints: *InputSlot 6Tray *LargeCapacityTray NotInstalled
*UIConstraints: *InputSlot 7Tray *LargeCapacityTray NotInstalled
*%========== InputSlot / Tray 7 ==========
*UIConstraints: *InputSlot 7Tray *Tray7 NotInstalled
*UIConstraints: *Tray7 NotInstalled *InputSlot 7Tray
*%========== Finisher / Stacker ==========
*UIConstraints: *Finisher FinVICTORIAE *Stacker StackerDouble
*UIConstraints: *Stacker StackerDouble *Finisher FinVICTORIAE
*%========== Finisher / Trimmer ==========
*UIConstraints: *Finisher NotInstalled *TrimmerUnit Installed
*UIConstraints: *Finisher FinVICTORIAE *TrimmerUnit Installed
*UIConstraints: *TrimmerUnit Installed *Finisher NotInstalled
*UIConstraints: *TrimmerUnit Installed *Finisher FinVICTORIAE
*%========== Finisher / Booklet Processor ============
*UIConstraints: *Finisher NotInstalled *BookletProcessor Plockmatic
*UIConstraints: *Finisher FinCOLUMBIA *BookletProcessor Plockmatic
*UIConstraints: *BookletProcessor Plockmatic *Finisher NotInstalled
*UIConstraints: *BookletProcessor Plockmatic *Finisher FinCOLUMBIA
*%========== Finisher / Multi-Folding Finisher ============
*UIConstraints: *Finisher NotInstalled *MultiFold Installed
*UIConstraints: *MultiFold Installed *Finisher NotInstalled
*%========== Finisher / Destination ==========
*UIConstraints: *Finisher NotInstalled *OutputBin FinCOLUMShift
*UIConstraints: *Finisher NotInstalled *OutputBin FinCOLUMLower
*UIConstraints: *Finisher NotInstalled *OutputBin FinVICTEShift
*UIConstraints: *OutputBin FinCOLUMShift *Finisher NotInstalled
*UIConstraints: *OutputBin FinCOLUMLower *Finisher NotInstalled
*UIConstraints: *OutputBin FinVICTEShift *Finisher NotInstalled
*UIConstraints: *Finisher FinCOLUMBIA *OutputBin FinVICTEShift
*UIConstraints: *OutputBin FinVICTEShift *Finisher FinCOLUMBIA
*UIConstraints: *Finisher FinVICTORIAE *OutputBin FinCOLUMShift
*UIConstraints: *Finisher FinVICTORIAE *OutputBin FinCOLUMLower
*UIConstraints: *OutputBin FinCOLUMShift *Finisher FinVICTORIAE
*UIConstraints: *OutputBin FinCOLUMLower *Finisher FinVICTORIAE
*%========== Finisher / Staple ==========
*UIConstraints: *Finisher NotInstalled *StapleLocation UpperLeft
*UIConstraints: *Finisher NotInstalled *StapleLocation UpperRight
*UIConstraints: *Finisher NotInstalled *StapleLocation LeftW
*UIConstraints: *Finisher NotInstalled *StapleLocation RightW
*UIConstraints: *Finisher NotInstalled *StapleLocation UpperW
*UIConstraints: *StapleLocation UpperLeft *Finisher NotInstalled
*UIConstraints: *StapleLocation UpperRight *Finisher NotInstalled
*UIConstraints: *StapleLocation LeftW *Finisher NotInstalled
*UIConstraints: *StapleLocation RightW *Finisher NotInstalled
*UIConstraints: *StapleLocation UpperW *Finisher NotInstalled
*%========== Finisher / Punch ==========
*UIConstraints: *Finisher NotInstalled *RIPunch Left2
*UIConstraints: *Finisher NotInstalled *RIPunch Left3
*UIConstraints: *Finisher NotInstalled *RIPunch Left4
*UIConstraints: *Finisher NotInstalled *RIPunch Right2
*UIConstraints: *Finisher NotInstalled *RIPunch Right3
*UIConstraints: *Finisher NotInstalled *RIPunch Right4
*UIConstraints: *Finisher NotInstalled *RIPunch Upper2
*UIConstraints: *Finisher NotInstalled *RIPunch Upper3
*UIConstraints: *Finisher NotInstalled *RIPunch Upper4
*UIConstraints: *RIPunch Left2 *Finisher NotInstalled
*UIConstraints: *RIPunch Left3 *Finisher NotInstalled
*UIConstraints: *RIPunch Left4 *Finisher NotInstalled
*UIConstraints: *RIPunch Right2 *Finisher NotInstalled
*UIConstraints: *RIPunch Right3 *Finisher NotInstalled
*UIConstraints: *RIPunch Right4 *Finisher NotInstalled
*UIConstraints: *RIPunch Upper2 *Finisher NotInstalled
*UIConstraints: *RIPunch Upper3 *Finisher NotInstalled
*UIConstraints: *RIPunch Upper4 *Finisher NotInstalled
*%============ Stacker / Multi-Folding Finisher ============
*UIConstraints: *MultiFold Installed *Stacker StackerDouble
*UIConstraints: *Stacker StackerDouble *MultiFold Installed
*%============ Stacker / Perfect/Ring Binding Unit ============
*UIConstraints: *Stacker StackerDouble *OptionBind FinISHIKARI
*UIConstraints: *Stacker StackerDouble *OptionBind FinTENRYU
*UIConstraints: *OptionBind FinISHIKARI *Stacker StackerDouble
*UIConstraints: *OptionBind FinTENRYU *Stacker StackerDouble
*%============ Stacker / Destination ============
*UIConstraints: *Stacker NotInstalled *OutputBin StackTray1
*UIConstraints: *Stacker NotInstalled *OutputBin StackTray2
*UIConstraints: *Stacker StackerSingle *OutputBin StackTray2
*UIConstraints: *OutputBin StackTray1 *Stacker NotInstalled
*UIConstraints: *OutputBin StackTray2 *Stacker NotInstalled
*UIConstraints: *OutputBin StackTray2 *Stacker StackerSingle
*%============ Trimmer / Destination ============
*UIConstraints: *TrimmerUnit NotInstalled *OutputBin Trimmer
*UIConstraints: *OutputBin Trimmer *TrimmerUnit NotInstalled
*%============ Trimmer / Trimmer Cut And Position Adjustment ============
*UIConstraints: *TrimmerUnit NotInstalled *TrimmerCutAndPosition 20mm
*UIConstraints: *TrimmerUnit NotInstalled *TrimmerCutAndPosition 30mm
*UIConstraints: *TrimmerUnit NotInstalled *TrimmerCutAndPosition 40mm
*UIConstraints: *TrimmerUnit NotInstalled *TrimmerCutAndPosition 50mm
*UIConstraints: *TrimmerUnit NotInstalled *TrimmerCutAndPosition 60mm
*UIConstraints: *TrimmerUnit NotInstalled *TrimmerCutAndPosition 70mm
*UIConstraints: *TrimmerUnit NotInstalled *TrimmerCutAndPosition 80mm
*UIConstraints: *TrimmerUnit NotInstalled *TrimmerCutAndPosition 90mm
*UIConstraints: *TrimmerUnit NotInstalled *TrimmerCutAndPosition 100mm
*UIConstraints: *TrimmerUnit NotInstalled *TrimmerCutAndPosition 110mm
*UIConstraints: *TrimmerUnit NotInstalled *TrimmerCutAndPosition 120mm
*UIConstraints: *TrimmerUnit NotInstalled *TrimmerCutAndPosition 130mm
*UIConstraints: *TrimmerUnit NotInstalled *TrimmerCutAndPosition 140mm
*UIConstraints: *TrimmerUnit NotInstalled *TrimmerCutAndPosition 150mm
*UIConstraints: *TrimmerUnit NotInstalled *TrimmerCutAndPosition 160mm
*UIConstraints: *TrimmerUnit NotInstalled *TrimmerCutAndPosition 170mm
*UIConstraints: *TrimmerUnit NotInstalled *TrimmerCutAndPosition 180mm
*UIConstraints: *TrimmerUnit NotInstalled *TrimmerCutAndPosition 190mm
*UIConstraints: *TrimmerUnit NotInstalled *TrimmerCutAndPosition 200mm
*UIConstraints: *TrimmerCutAndPosition 20mm *TrimmerUnit NotInstalled
*UIConstraints: *TrimmerCutAndPosition 30mm *TrimmerUnit NotInstalled
*UIConstraints: *TrimmerCutAndPosition 40mm *TrimmerUnit NotInstalled
*UIConstraints: *TrimmerCutAndPosition 50mm *TrimmerUnit NotInstalled
*UIConstraints: *TrimmerCutAndPosition 60mm *TrimmerUnit NotInstalled
*UIConstraints: *TrimmerCutAndPosition 70mm *TrimmerUnit NotInstalled
*UIConstraints: *TrimmerCutAndPosition 80mm *TrimmerUnit NotInstalled
*UIConstraints: *TrimmerCutAndPosition 90mm *TrimmerUnit NotInstalled
*UIConstraints: *TrimmerCutAndPosition 100mm *TrimmerUnit NotInstalled
*UIConstraints: *TrimmerCutAndPosition 110mm *TrimmerUnit NotInstalled
*UIConstraints: *TrimmerCutAndPosition 120mm *TrimmerUnit NotInstalled
*UIConstraints: *TrimmerCutAndPosition 130mm *TrimmerUnit NotInstalled
*UIConstraints: *TrimmerCutAndPosition 140mm *TrimmerUnit NotInstalled
*UIConstraints: *TrimmerCutAndPosition 150mm *TrimmerUnit NotInstalled
*UIConstraints: *TrimmerCutAndPosition 160mm *TrimmerUnit NotInstalled
*UIConstraints: *TrimmerCutAndPosition 170mm *TrimmerUnit NotInstalled
*UIConstraints: *TrimmerCutAndPosition 180mm *TrimmerUnit NotInstalled
*UIConstraints: *TrimmerCutAndPosition 190mm *TrimmerUnit NotInstalled
*UIConstraints: *TrimmerCutAndPosition 200mm *TrimmerUnit NotInstalled
*%========== Destination / Booklet Processor ==========
*UIConstraints: *BookletProcessor NotInstalled *OutputBin PlockmaticTray
*UIConstraints: *OutputBin PlockmaticTray *BookletProcessor NotInstalled
*%========== Destination / Multi-Folding Finisher ==========
*UIConstraints: *MultiFold NotInstalled *OutputBin FoldTray
*UIConstraints: *OutputBin FoldTray *MultiFold NotInstalled
*%========== Multi-Folding Finisher / Fold Type ==========
*UIConstraints: *MultiFold NotInstalled *RIFoldType Twofold
*UIConstraints: *MultiFold NotInstalled *RIFoldType ThreefoldIn
*UIConstraints: *MultiFold NotInstalled *RIFoldType ThreefoldOut
*UIConstraints: *MultiFold NotInstalled *RIFoldType Quarto
*UIConstraints: *MultiFold NotInstalled *RIFoldType Gatefold
*UIConstraints: *RIFoldType Twofold *MultiFold NotInstalled
*UIConstraints: *RIFoldType ThreefoldIn *MultiFold NotInstalled
*UIConstraints: *RIFoldType ThreefoldOut *MultiFold NotInstalled
*UIConstraints: *RIFoldType Quarto *MultiFold NotInstalled
*UIConstraints: *RIFoldType Gatefold *MultiFold NotInstalled
*%========== Multi-Folding Finisher / Z-fold ==========
*UIConstraints: *MultiFold NotInstalled *RIZfold Bottom
*UIConstraints: *MultiFold NotInstalled *RIZfold Right
*UIConstraints: *MultiFold NotInstalled *RIZfold Left
*UIConstraints: *RIZfold Bottom *MultiFold NotInstalled
*UIConstraints: *RIZfold Right *MultiFold NotInstalled
*UIConstraints: *RIZfold Left *MultiFold NotInstalled
*%========== Multi-hole Punch Unit / Punch ==========
*UIConstraints: *MultiHolePunchUnit NotInstalled *RIPunch GBCLeft
*UIConstraints: *MultiHolePunchUnit NotInstalled *RIPunch GBCRight
*UIConstraints: *MultiHolePunchUnit NotInstalled *RIPunch GBCTop
*UIConstraints: *RIPunch GBCLeft *MultiHolePunchUnit NotInstalled
*UIConstraints: *RIPunch GBCRight *MultiHolePunchUnit NotInstalled
*UIConstraints: *RIPunch GBCTop *MultiHolePunchUnit NotInstalled
*%========== Perfect/Ring Binding Unit / Destination ==========
*UIConstraints: *OptionBind None *OutputBin FinISHIKARI
*UIConstraints: *OptionBind None *OutputBin FinTENRYU
*UIConstraints: *OptionBind FinISHIKARI *OutputBin FinTENRYU
*UIConstraints: *OptionBind FinTENRYU *OutputBin FinISHIKARI
*UIConstraints: *OutputBin FinISHIKARI *OptionBind None
*UIConstraints: *OutputBin FinTENRYU *OptionBind None
*UIConstraints: *OutputBin FinTENRYU *OptionBind FinISHIKARI
*UIConstraints: *OutputBin FinISHIKARI *OptionBind FinTENRYU
*%========== Perfect/Ring Binding Unit / Perfect/Ring Binding ==========
*UIConstraints: *OptionBind None *RIBind Perfect
*UIConstraints: *OptionBind None *RIBind RingBind
*UIConstraints: *OptionBind None *RIBind RingPunch
*UIConstraints: *OptionBind FinISHIKARI *RIBind Perfect
*UIConstraints: *OptionBind FinTENRYU *RIBind RingBind
*UIConstraints: *OptionBind FinTENRYU *RIBind RingPunch
*UIConstraints: *RIBind Perfect *OptionBind None
*UIConstraints: *RIBind RingBind *OptionBind None
*UIConstraints: *RIBind RingPunch *OptionBind None
*UIConstraints: *RIBind Perfect *OptionBind FinISHIKARI
*UIConstraints: *RIBind RingBind *OptionBind FinTENRYU
*UIConstraints: *RIBind RingPunch *OptionBind FinTENRYU
*%========== Paper Size / InputSlot ==========
*UIConstraints: *InputSlot 1Tray *PageSize A5
*UIConstraints: *InputSlot 1Tray *PageSize A6
*UIConstraints: *InputSlot 1Tray *PageSize B5
*UIConstraints: *InputSlot 1Tray *PageSize B6
*UIConstraints: *InputSlot 1Tray *PageSize GovernmentLG
*UIConstraints: *InputSlot 1Tray *PageSize EngQuatro
*UIConstraints: *InputSlot 1Tray *PageSize Statement
*UIConstraints: *InputSlot 1Tray *PageSize F
*UIConstraints: *InputSlot 1Tray *PageSize Folio
*UIConstraints: *InputSlot 1Tray *PageSize FanFoldGermanLegal
*UIConstraints: *InputSlot 1Tray *PageSize 12x18
*UIConstraints: *InputSlot 1Tray *PageSize Executive
*UIConstraints: *InputSlot 1Tray *PageSize 8Kai
*UIConstraints: *InputSlot 1Tray *PageSize 16Kai
*UIConstraints: *InputSlot 1Tray *PageSize 11x14
*UIConstraints: *InputSlot 1Tray *PageSize 13x19.2
*UIConstraints: *InputSlot 1Tray *PageSize 13x19
*UIConstraints: *InputSlot 1Tray *PageSize 12.6x19.2
*UIConstraints: *InputSlot 1Tray *PageSize 12.6x18.5
*UIConstraints: *InputSlot 1Tray *PageSize 13x18
*UIConstraints: *InputSlot 1Tray *PageSize SRA3
*UIConstraints: *InputSlot 1Tray *PageSize SRA4
*UIConstraints: *InputSlot 1Tray *PageSize 226x310
*UIConstraints: *InputSlot 1Tray *PageSize 310x432
*UIConstraints: *InputSlot 2Tray *PageSize A6
*UIConstraints: *InputSlot 2Tray *PageSize B6
*UIConstraints: *InputSlot 2Tray *PageSize 13x19.2
*UIConstraints: *InputSlot 2Tray *PageSize 13x19
*UIConstraints: *InputSlot 2Tray *PageSize 12.6x19.2
*UIConstraints: *InputSlot 2Tray *PageSize 12.6x18.5
*UIConstraints: *InputSlot 3Tray *PageSize A6
*UIConstraints: *InputSlot 3Tray *PageSize B6
*UIConstraints: *InputSlot 3Tray *PageSize 13x19.2
*UIConstraints: *InputSlot 3Tray *PageSize 13x19
*UIConstraints: *InputSlot 3Tray *PageSize 12.6x19.2
*UIConstraints: *InputSlot 3Tray *PageSize 12.6x18.5
*UIConstraints: *PageSize A5 *InputSlot 1Tray
*UIConstraints: *PageSize A6 *InputSlot 1Tray
*UIConstraints: *PageSize B5 *InputSlot 1Tray
*UIConstraints: *PageSize B6 *InputSlot 1Tray
*UIConstraints: *PageSize GovernmentLG *InputSlot 1Tray
*UIConstraints: *PageSize EngQuatro *InputSlot 1Tray
*UIConstraints: *PageSize Statement *InputSlot 1Tray
*UIConstraints: *PageSize F *InputSlot 1Tray
*UIConstraints: *PageSize Folio *InputSlot 1Tray
*UIConstraints: *PageSize FanFoldGermanLegal *InputSlot 1Tray
*UIConstraints: *PageSize 12x18 *InputSlot 1Tray
*UIConstraints: *PageSize Executive *InputSlot 1Tray
*UIConstraints: *PageSize 8Kai *InputSlot 1Tray
*UIConstraints: *PageSize 16Kai *InputSlot 1Tray
*UIConstraints: *PageSize 11x14 *InputSlot 1Tray
*UIConstraints: *PageSize 13x19.2 *InputSlot 1Tray
*UIConstraints: *PageSize 13x19 *InputSlot 1Tray
*UIConstraints: *PageSize 12.6x19.2 *InputSlot 1Tray
*UIConstraints: *PageSize 12.6x18.5 *InputSlot 1Tray
*UIConstraints: *PageSize 13x18 *InputSlot 1Tray
*UIConstraints: *PageSize SRA3 *InputSlot 1Tray
*UIConstraints: *PageSize SRA4 *InputSlot 1Tray
*UIConstraints: *PageSize 226x310 *InputSlot 1Tray
*UIConstraints: *PageSize 310x432 *InputSlot 1Tray
*UIConstraints: *PageSize A6 *InputSlot 2Tray
*UIConstraints: *PageSize B6 *InputSlot 2Tray
*UIConstraints: *PageSize 13x19.2 *InputSlot 2Tray
*UIConstraints: *PageSize 13x19 *InputSlot 2Tray
*UIConstraints: *PageSize 12.6x19.2 *InputSlot 2Tray
*UIConstraints: *PageSize 12.6x18.5 *InputSlot 2Tray
*UIConstraints: *PageSize A6 *InputSlot 3Tray
*UIConstraints: *PageSize B6 *InputSlot 3Tray
*UIConstraints: *PageSize 13x19.2 *InputSlot 3Tray
*UIConstraints: *PageSize 13x19 *InputSlot 3Tray
*UIConstraints: *PageSize 12.6x19.2 *InputSlot 3Tray
*UIConstraints: *PageSize 12.6x18.5 *InputSlot 3Tray
*%========== PageRegion / InputSlot ==========
*UIConstraints: *InputSlot 1Tray *PageRegion A5
*UIConstraints: *InputSlot 1Tray *PageRegion A6
*UIConstraints: *InputSlot 1Tray *PageRegion B5
*UIConstraints: *InputSlot 1Tray *PageRegion B6
*UIConstraints: *InputSlot 1Tray *PageRegion GovernmentLG
*UIConstraints: *InputSlot 1Tray *PageRegion EngQuatro
*UIConstraints: *InputSlot 1Tray *PageRegion Statement
*UIConstraints: *InputSlot 1Tray *PageRegion F
*UIConstraints: *InputSlot 1Tray *PageRegion Folio
*UIConstraints: *InputSlot 1Tray *PageRegion FanFoldGermanLegal
*UIConstraints: *InputSlot 1Tray *PageRegion 12x18
*UIConstraints: *InputSlot 1Tray *PageRegion Executive
*UIConstraints: *InputSlot 1Tray *PageRegion 8Kai
*UIConstraints: *InputSlot 1Tray *PageRegion 16Kai
*UIConstraints: *InputSlot 1Tray *PageRegion 11x14
*UIConstraints: *InputSlot 1Tray *PageRegion 13x19.2
*UIConstraints: *InputSlot 1Tray *PageRegion 13x19
*UIConstraints: *InputSlot 1Tray *PageRegion 12.6x19.2
*UIConstraints: *InputSlot 1Tray *PageRegion 12.6x18.5
*UIConstraints: *InputSlot 1Tray *PageRegion 13x18
*UIConstraints: *InputSlot 1Tray *PageRegion SRA3
*UIConstraints: *InputSlot 1Tray *PageRegion SRA4
*UIConstraints: *InputSlot 1Tray *PageRegion 226x310
*UIConstraints: *InputSlot 1Tray *PageRegion 310x432
*UIConstraints: *InputSlot 2Tray *PageRegion A6
*UIConstraints: *InputSlot 2Tray *PageRegion B6
*UIConstraints: *InputSlot 2Tray *PageRegion 13x19.2
*UIConstraints: *InputSlot 2Tray *PageRegion 13x19
*UIConstraints: *InputSlot 2Tray *PageRegion 12.6x19.2
*UIConstraints: *InputSlot 2Tray *PageRegion 12.6x18.5
*UIConstraints: *InputSlot 3Tray *PageRegion A6
*UIConstraints: *InputSlot 3Tray *PageRegion B6
*UIConstraints: *InputSlot 3Tray *PageRegion 13x19.2
*UIConstraints: *InputSlot 3Tray *PageRegion 13x19
*UIConstraints: *InputSlot 3Tray *PageRegion 12.6x19.2
*UIConstraints: *InputSlot 3Tray *PageRegion 12.6x18.5
*UIConstraints: *PageRegion A5 *InputSlot 1Tray
*UIConstraints: *PageRegion A6 *InputSlot 1Tray
*UIConstraints: *PageRegion B5 *InputSlot 1Tray
*UIConstraints: *PageRegion B6 *InputSlot 1Tray
*UIConstraints: *PageRegion GovernmentLG *InputSlot 1Tray
*UIConstraints: *PageRegion EngQuatro *InputSlot 1Tray
*UIConstraints: *PageRegion Statement *InputSlot 1Tray
*UIConstraints: *PageRegion F *InputSlot 1Tray
*UIConstraints: *PageRegion Folio *InputSlot 1Tray
*UIConstraints: *PageRegion FanFoldGermanLegal *InputSlot 1Tray
*UIConstraints: *PageRegion 12x18 *InputSlot 1Tray
*UIConstraints: *PageRegion Executive *InputSlot 1Tray
*UIConstraints: *PageRegion 8Kai *InputSlot 1Tray
*UIConstraints: *PageRegion 16Kai *InputSlot 1Tray
*UIConstraints: *PageRegion 11x14 *InputSlot 1Tray
*UIConstraints: *PageRegion 13x19.2 *InputSlot 1Tray
*UIConstraints: *PageRegion 13x19 *InputSlot 1Tray
*UIConstraints: *PageRegion 12.6x19.2 *InputSlot 1Tray
*UIConstraints: *PageRegion 12.6x18.5 *InputSlot 1Tray
*UIConstraints: *PageRegion 13x18 *InputSlot 1Tray
*UIConstraints: *PageRegion SRA3 *InputSlot 1Tray
*UIConstraints: *PageRegion SRA4 *InputSlot 1Tray
*UIConstraints: *PageRegion 226x310 *InputSlot 1Tray
*UIConstraints: *PageRegion 310x432 *InputSlot 1Tray
*UIConstraints: *PageRegion A6 *InputSlot 2Tray
*UIConstraints: *PageRegion B6 *InputSlot 2Tray
*UIConstraints: *PageRegion 13x19.2 *InputSlot 2Tray
*UIConstraints: *PageRegion 13x19 *InputSlot 2Tray
*UIConstraints: *PageRegion 12.6x19.2 *InputSlot 2Tray
*UIConstraints: *PageRegion 12.6x18.5 *InputSlot 2Tray
*UIConstraints: *PageRegion A6 *InputSlot 3Tray
*UIConstraints: *PageRegion B6 *InputSlot 3Tray
*UIConstraints: *PageRegion 13x19.2 *InputSlot 3Tray
*UIConstraints: *PageRegion 13x19 *InputSlot 3Tray
*UIConstraints: *PageRegion 12.6x19.2 *InputSlot 3Tray
*UIConstraints: *PageRegion 12.6x18.5 *InputSlot 3Tray
*%========== Fit to Paper / Paper Type ==========
*UIConstraints: *RIPaperPolicy PromptUser *MediaType None
*UIConstraints: *MediaType None *RIPaperPolicy PromptUser
*%========== InputSlot / Paper Type ==========
*UIConstraints: *InputSlot 1Tray *MediaType Labels
*UIConstraints: *InputSlot 1Tray *MediaType Coated
*UIConstraints: *InputSlot 1Tray *MediaType OHP
*UIConstraints: *InputSlot 1Tray *MediaType Thick2
*UIConstraints: *InputSlot 1Tray *MediaType Thick3
*UIConstraints: *InputSlot 1Tray *MediaType Thin
*UIConstraints: *InputSlot 1Tray *MediaType Index
*UIConstraints: *InputSlot 1Tray *MediaType Translucent
*UIConstraints: *InputSlot 2Tray *MediaType Labels
*UIConstraints: *InputSlot 2Tray *MediaType Coated
*UIConstraints: *InputSlot 2Tray *MediaType Thick2
*UIConstraints: *InputSlot 2Tray *MediaType Thick3
*UIConstraints: *InputSlot 2Tray *MediaType Thin
*UIConstraints: *InputSlot 2Tray *MediaType Index
*UIConstraints: *InputSlot 3Tray *MediaType Labels
*UIConstraints: *InputSlot 3Tray *MediaType Coated
*UIConstraints: *InputSlot 3Tray *MediaType Thick2
*UIConstraints: *InputSlot 3Tray *MediaType Thick3
*UIConstraints: *InputSlot 3Tray *MediaType Thin
*UIConstraints: *InputSlot 3Tray *MediaType Index
*UIConstraints: *InputSlot 4Tray *MediaType Labels
*UIConstraints: *InputSlot 4Tray *MediaType Thick3
*UIConstraints: *InputSlot 4Tray *MediaType Thin
*UIConstraints: *InputSlot 6Tray *MediaType Labels
*UIConstraints: *InputSlot 6Tray *MediaType Thick3
*UIConstraints: *InputSlot 6Tray *MediaType Thin
*UIConstraints: *InputSlot 7Tray *MediaType Labels
*UIConstraints: *InputSlot 7Tray *MediaType Coated
*UIConstraints: *InputSlot 7Tray *MediaType Thick3
*UIConstraints: *InputSlot 7Tray *MediaType Thin
*UIConstraints: *MediaType Labels *InputSlot 1Tray
*UIConstraints: *MediaType Coated *InputSlot 1Tray
*UIConstraints: *MediaType OHP *InputSlot 1Tray
*UIConstraints: *MediaType Thick2 *InputSlot 1Tray
*UIConstraints: *MediaType Thick3 *InputSlot 1Tray
*UIConstraints: *MediaType Thin *InputSlot 1Tray
*UIConstraints: *MediaType Index *InputSlot 1Tray
*UIConstraints: *MediaType Translucent *InputSlot 1Tray
*UIConstraints: *MediaType Labels *InputSlot 2Tray
*UIConstraints: *MediaType Coated *InputSlot 2Tray
*UIConstraints: *MediaType Thick2 *InputSlot 2Tray
*UIConstraints: *MediaType Thick3 *InputSlot 2Tray
*UIConstraints: *MediaType Thin *InputSlot 2Tray
*UIConstraints: *MediaType Index *InputSlot 2Tray
*UIConstraints: *MediaType Labels *InputSlot 3Tray
*UIConstraints: *MediaType Coated *InputSlot 3Tray
*UIConstraints: *MediaType Thick2 *InputSlot 3Tray
*UIConstraints: *MediaType Thick3 *InputSlot 3Tray
*UIConstraints: *MediaType Thin *InputSlot 3Tray
*UIConstraints: *MediaType Index *InputSlot 3Tray
*UIConstraints: *MediaType Labels *InputSlot 4Tray
*UIConstraints: *MediaType Thick3 *InputSlot 4Tray
*UIConstraints: *MediaType Thin *InputSlot 4Tray
*UIConstraints: *MediaType Labels *InputSlot 6Tray
*UIConstraints: *MediaType Thick3 *InputSlot 6Tray
*UIConstraints: *MediaType Thin *InputSlot 6Tray
*UIConstraints: *MediaType Labels *InputSlot 7Tray
*UIConstraints: *MediaType Coated *InputSlot 7Tray
*UIConstraints: *MediaType Thick3 *InputSlot 7Tray
*UIConstraints: *MediaType Thin *InputSlot 7Tray
*%========== Paper Type / Duplex ==========
*UIConstraints: *MediaType Labels *Duplex DuplexNoTumble
*UIConstraints: *MediaType Labels *Duplex DuplexTumble
*UIConstraints: *Duplex DuplexNoTumble *MediaType Labels
*UIConstraints: *Duplex DuplexTumble *MediaType Labels
*UIConstraints: *MediaType OHP *Duplex DuplexNoTumble
*UIConstraints: *MediaType OHP *Duplex DuplexTumble
*UIConstraints: *Duplex DuplexNoTumble *MediaType OHP
*UIConstraints: *Duplex DuplexTumble *MediaType OHP
*UIConstraints: *MediaType Thick3 *Duplex DuplexNoTumble
*UIConstraints: *MediaType Thick3 *Duplex DuplexTumble
*UIConstraints: *Duplex DuplexNoTumble *MediaType Thick3
*UIConstraints: *Duplex DuplexTumble *MediaType Thick3
*UIConstraints: *MediaType Thin *Duplex DuplexNoTumble
*UIConstraints: *MediaType Thin *Duplex DuplexTumble
*UIConstraints: *Duplex DuplexNoTumble *MediaType Thin
*UIConstraints: *Duplex DuplexTumble *MediaType Thin
*UIConstraints: *MediaType Index *Duplex DuplexNoTumble
*UIConstraints: *MediaType Index *Duplex DuplexTumble
*UIConstraints: *Duplex DuplexNoTumble *MediaType Index
*UIConstraints: *Duplex DuplexTumble *MediaType Index
*UIConstraints: *MediaType Translucent *Duplex DuplexNoTumble
*UIConstraints: *MediaType Translucent *Duplex DuplexTumble
*UIConstraints: *Duplex DuplexNoTumble *MediaType Translucent
*UIConstraints: *Duplex DuplexTumble *MediaType Translucent
*%========== Paper Type / Destination ==========
*UIConstraints: *OutputBin FinCOLUMShift *MediaType OHP
*UIConstraints: *OutputBin FinCOLUMShift *MediaType Translucent
*UIConstraints: *OutputBin FinCOLUMLower *MediaType Labels
*UIConstraints: *OutputBin FinCOLUMLower *MediaType OHP
*UIConstraints: *OutputBin FinCOLUMLower *MediaType Thick
*UIConstraints: *OutputBin FinCOLUMLower *MediaType Thick2
*UIConstraints: *OutputBin FinCOLUMLower *MediaType Thick3
*UIConstraints: *OutputBin FinCOLUMLower *MediaType Thin
*UIConstraints: *OutputBin FinCOLUMLower *MediaType Index
*UIConstraints: *OutputBin FinCOLUMLower *MediaType Translucent
*UIConstraints: *OutputBin FinVICTEShift *MediaType Labels
*UIConstraints: *OutputBin FinVICTEShift *MediaType OHP
*UIConstraints: *OutputBin FinVICTEShift *MediaType Translucent
*UIConstraints: *OutputBin FinISHIKARI *MediaType Preprinted
*UIConstraints: *OutputBin FinISHIKARI *MediaType Prepunched
*UIConstraints: *OutputBin FinISHIKARI *MediaType Labels
*UIConstraints: *OutputBin FinISHIKARI *MediaType Coated
*UIConstraints: *OutputBin FinISHIKARI *MediaType Bond
*UIConstraints: *OutputBin FinISHIKARI *MediaType Cardstock
*UIConstraints: *OutputBin FinISHIKARI *MediaType Thick3
*UIConstraints: *OutputBin FinISHIKARI *MediaType Translucent
*UIConstraints: *OutputBin FinTENRYU *MediaType Prepunched
*UIConstraints: *OutputBin FinTENRYU *MediaType Labels
*UIConstraints: *OutputBin FinTENRYU *MediaType Bond
*UIConstraints: *OutputBin FinTENRYU *MediaType Cardstock
*UIConstraints: *OutputBin FinTENRYU *MediaType OHP
*UIConstraints: *OutputBin FinTENRYU *MediaType Thick
*UIConstraints: *OutputBin FinTENRYU *MediaType Thick2
*UIConstraints: *OutputBin FinTENRYU *MediaType Thick3
*UIConstraints: *OutputBin FinTENRYU *MediaType Thin
*UIConstraints: *OutputBin FinTENRYU *MediaType Index
*UIConstraints: *OutputBin FinTENRYU *MediaType Translucent
*UIConstraints: *OutputBin StackTray1 *MediaType Index
*UIConstraints: *OutputBin StackTray2 *MediaType Index
*UIConstraints: *OutputBin Trimmer *MediaType Prepunched
*UIConstraints: *OutputBin Trimmer *MediaType Labels
*UIConstraints: *OutputBin Trimmer *MediaType OHP
*UIConstraints: *OutputBin Trimmer *MediaType Thick
*UIConstraints: *OutputBin Trimmer *MediaType Thick2
*UIConstraints: *OutputBin Trimmer *MediaType Thick3
*UIConstraints: *OutputBin Trimmer *MediaType Thin
*UIConstraints: *OutputBin Trimmer *MediaType Index
*UIConstraints: *OutputBin Trimmer *MediaType Translucent
*UIConstraints: *OutputBin PlockmaticTray *MediaType Prepunched
*UIConstraints: *OutputBin PlockmaticTray *MediaType Labels
*UIConstraints: *OutputBin PlockmaticTray *MediaType Coated
*UIConstraints: *OutputBin PlockmaticTray *MediaType OHP
*UIConstraints: *OutputBin PlockmaticTray *MediaType Thick2
*UIConstraints: *OutputBin PlockmaticTray *MediaType Thick3
*UIConstraints: *OutputBin PlockmaticTray *MediaType Index
*UIConstraints: *OutputBin PlockmaticTray *MediaType Translucent
*UIConstraints: *MediaType OHP *OutputBin FinCOLUMShift
*UIConstraints: *MediaType Translucent *OutputBin FinCOLUMShift
*UIConstraints: *MediaType Labels *OutputBin FinCOLUMLower
*UIConstraints: *MediaType OHP *OutputBin FinCOLUMLower
*UIConstraints: *MediaType Thick *OutputBin FinCOLUMLower
*UIConstraints: *MediaType Thick2 *OutputBin FinCOLUMLower
*UIConstraints: *MediaType Thick3 *OutputBin FinCOLUMLower
*UIConstraints: *MediaType Thin *OutputBin FinCOLUMLower
*UIConstraints: *MediaType Index *OutputBin FinCOLUMLower
*UIConstraints: *MediaType Translucent *OutputBin FinCOLUMLower
*UIConstraints: *MediaType Labels *OutputBin FinVICTEShift
*UIConstraints: *MediaType OHP *OutputBin FinVICTEShift
*UIConstraints: *MediaType Translucent *OutputBin FinVICTEShift
*UIConstraints: *MediaType Preprinted *OutputBin FinISHIKARI
*UIConstraints: *MediaType Prepunched *OutputBin FinISHIKARI
*UIConstraints: *MediaType Labels *OutputBin FinISHIKARI
*UIConstraints: *MediaType Coated *OutputBin FinISHIKARI
*UIConstraints: *MediaType Bond *OutputBin FinISHIKARI
*UIConstraints: *MediaType Cardstock *OutputBin FinISHIKARI
*UIConstraints: *MediaType Thick3 *OutputBin FinISHIKARI
*UIConstraints: *MediaType Translucent *OutputBin FinISHIKARI
*UIConstraints: *MediaType Prepunched *OutputBin FinTENRYU
*UIConstraints: *MediaType Labels *OutputBin FinTENRYU
*UIConstraints: *MediaType Bond *OutputBin FinTENRYU
*UIConstraints: *MediaType Cardstock *OutputBin FinTENRYU
*UIConstraints: *MediaType OHP *OutputBin FinTENRYU
*UIConstraints: *MediaType Thick *OutputBin FinTENRYU
*UIConstraints: *MediaType Thick2 *OutputBin FinTENRYU
*UIConstraints: *MediaType Thick3 *OutputBin FinTENRYU
*UIConstraints: *MediaType Thin *OutputBin FinTENRYU
*UIConstraints: *MediaType Index *OutputBin FinTENRYU
*UIConstraints: *MediaType Translucent *OutputBin FinTENRYU
*UIConstraints: *MediaType Index *OutputBin StackTray1
*UIConstraints: *MediaType Index *OutputBin StackTray2
*UIConstraints: *MediaType Prepunched *OutputBin Trimmer
*UIConstraints: *MediaType Labels *OutputBin Trimmer
*UIConstraints: *MediaType OHP *OutputBin Trimmer
*UIConstraints: *MediaType Thick *OutputBin Trimmer
*UIConstraints: *MediaType Thick2 *OutputBin Trimmer
*UIConstraints: *MediaType Thick3 *OutputBin Trimmer
*UIConstraints: *MediaType Thin *OutputBin Trimmer
*UIConstraints: *MediaType Index *OutputBin Trimmer
*UIConstraints: *MediaType Translucent *OutputBin Trimmer
*UIConstraints: *MediaType Prepunched *OutputBin PlockmaticTray
*UIConstraints: *MediaType Labels *OutputBin PlockmaticTray
*UIConstraints: *MediaType Coated *OutputBin PlockmaticTray
*UIConstraints: *MediaType OHP *OutputBin PlockmaticTray
*UIConstraints: *MediaType Thick2 *OutputBin PlockmaticTray
*UIConstraints: *MediaType Thick3 *OutputBin PlockmaticTray
*UIConstraints: *MediaType Index *OutputBin PlockmaticTray
*UIConstraints: *MediaType Translucent *OutputBin PlockmaticTray
*%========== Paper Type / Staple ==========
*UIConstraints: *StapleLocation UpperLeft *MediaType Labels
*UIConstraints: *StapleLocation UpperLeft *MediaType OHP
*UIConstraints: *StapleLocation UpperLeft *MediaType Thick2
*UIConstraints: *StapleLocation UpperLeft *MediaType Thick3
*UIConstraints: *StapleLocation UpperLeft *MediaType Thin
*UIConstraints: *StapleLocation UpperLeft *MediaType Translucent
*UIConstraints: *StapleLocation UpperRight *MediaType Labels
*UIConstraints: *StapleLocation UpperRight *MediaType OHP
*UIConstraints: *StapleLocation UpperRight *MediaType Thick2
*UIConstraints: *StapleLocation UpperRight *MediaType Thick3
*UIConstraints: *StapleLocation UpperRight *MediaType Thin
*UIConstraints: *StapleLocation UpperRight *MediaType Translucent
*UIConstraints: *StapleLocation LeftW *MediaType Labels
*UIConstraints: *StapleLocation LeftW *MediaType OHP
*UIConstraints: *StapleLocation LeftW *MediaType Thick2
*UIConstraints: *StapleLocation LeftW *MediaType Thick3
*UIConstraints: *StapleLocation LeftW *MediaType Thin
*UIConstraints: *StapleLocation LeftW *MediaType Translucent
*UIConstraints: *StapleLocation RightW *MediaType Labels
*UIConstraints: *StapleLocation RightW *MediaType OHP
*UIConstraints: *StapleLocation RightW *MediaType Thick2
*UIConstraints: *StapleLocation RightW *MediaType Thick3
*UIConstraints: *StapleLocation RightW *MediaType Thin
*UIConstraints: *StapleLocation RightW *MediaType Translucent
*UIConstraints: *StapleLocation UpperW *MediaType Labels
*UIConstraints: *StapleLocation UpperW *MediaType OHP
*UIConstraints: *StapleLocation UpperW *MediaType Thick2
*UIConstraints: *StapleLocation UpperW *MediaType Thick3
*UIConstraints: *StapleLocation UpperW *MediaType Thin
*UIConstraints: *StapleLocation UpperW *MediaType Translucent
*UIConstraints: *StapleLocation CenterW *MediaType Prepunched
*UIConstraints: *StapleLocation CenterW *MediaType Labels
*UIConstraints: *StapleLocation CenterW *MediaType OHP
*UIConstraints: *StapleLocation CenterW *MediaType Thick2
*UIConstraints: *StapleLocation CenterW *MediaType Thick3
*UIConstraints: *StapleLocation CenterW *MediaType Index
*UIConstraints: *StapleLocation CenterW *MediaType Translucent
*UIConstraints: *MediaType Labels *StapleLocation UpperLeft
*UIConstraints: *MediaType OHP *StapleLocation UpperLeft
*UIConstraints: *MediaType Thick2 *StapleLocation UpperLeft
*UIConstraints: *MediaType Thick3 *StapleLocation UpperLeft
*UIConstraints: *MediaType Thin *StapleLocation UpperLeft
*UIConstraints: *MediaType Translucent *StapleLocation UpperLeft
*UIConstraints: *MediaType Labels *StapleLocation UpperRight
*UIConstraints: *MediaType OHP *StapleLocation UpperRight
*UIConstraints: *MediaType Thick2 *StapleLocation UpperRight
*UIConstraints: *MediaType Thick3 *StapleLocation UpperRight
*UIConstraints: *MediaType Thin *StapleLocation UpperRight
*UIConstraints: *MediaType Translucent *StapleLocation UpperRight
*UIConstraints: *MediaType Labels *StapleLocation LeftW
*UIConstraints: *MediaType OHP *StapleLocation LeftW
*UIConstraints: *MediaType Thick2 *StapleLocation LeftW
*UIConstraints: *MediaType Thick3 *StapleLocation LeftW
*UIConstraints: *MediaType Thin *StapleLocation LeftW
*UIConstraints: *MediaType Translucent *StapleLocation LeftW
*UIConstraints: *MediaType Labels *StapleLocation RightW
*UIConstraints: *MediaType OHP *StapleLocation RightW
*UIConstraints: *MediaType Thick2 *StapleLocation RightW
*UIConstraints: *MediaType Thick3 *StapleLocation RightW
*UIConstraints: *MediaType Thin *StapleLocation RightW
*UIConstraints: *MediaType Translucent *StapleLocation RightW
*UIConstraints: *MediaType Labels *StapleLocation UpperW
*UIConstraints: *MediaType OHP *StapleLocation UpperW
*UIConstraints: *MediaType Thick2 *StapleLocation UpperW
*UIConstraints: *MediaType Thick3 *StapleLocation UpperW
*UIConstraints: *MediaType Thin *StapleLocation UpperW
*UIConstraints: *MediaType Translucent *StapleLocation UpperW
*UIConstraints: *MediaType Prepunched *StapleLocation CenterW
*UIConstraints: *MediaType Labels *StapleLocation CenterW
*UIConstraints: *MediaType OHP *StapleLocation CenterW
*UIConstraints: *MediaType Thick2 *StapleLocation CenterW
*UIConstraints: *MediaType Thick3 *StapleLocation CenterW
*UIConstraints: *MediaType Index *StapleLocation CenterW
*UIConstraints: *MediaType Translucent *StapleLocation CenterW
*%========== Paper Type / Punch ==========
*UIConstraints: *RIPunch Left2 *MediaType Prepunched
*UIConstraints: *RIPunch Left2 *MediaType Labels
*UIConstraints: *RIPunch Left2 *MediaType OHP
*UIConstraints: *RIPunch Left2 *MediaType Thick2
*UIConstraints: *RIPunch Left2 *MediaType Thick3
*UIConstraints: *RIPunch Left2 *MediaType Thin
*UIConstraints: *RIPunch Left2 *MediaType Translucent
*UIConstraints: *RIPunch Left3 *MediaType Prepunched
*UIConstraints: *RIPunch Left3 *MediaType Labels
*UIConstraints: *RIPunch Left3 *MediaType OHP
*UIConstraints: *RIPunch Left3 *MediaType Thick2
*UIConstraints: *RIPunch Left3 *MediaType Thick3
*UIConstraints: *RIPunch Left3 *MediaType Thin
*UIConstraints: *RIPunch Left3 *MediaType Translucent
*UIConstraints: *RIPunch Left4 *MediaType Prepunched
*UIConstraints: *RIPunch Left4 *MediaType Labels
*UIConstraints: *RIPunch Left4 *MediaType OHP
*UIConstraints: *RIPunch Left4 *MediaType Thick
*UIConstraints: *RIPunch Left4 *MediaType Thick2
*UIConstraints: *RIPunch Left4 *MediaType Thick3
*UIConstraints: *RIPunch Left4 *MediaType Thin
*UIConstraints: *RIPunch Left4 *MediaType Translucent
*UIConstraints: *RIPunch Right2 *MediaType Prepunched
*UIConstraints: *RIPunch Right2 *MediaType Labels
*UIConstraints: *RIPunch Right2 *MediaType OHP
*UIConstraints: *RIPunch Right2 *MediaType Thick2
*UIConstraints: *RIPunch Right2 *MediaType Thick3
*UIConstraints: *RIPunch Right2 *MediaType Thin
*UIConstraints: *RIPunch Right2 *MediaType Translucent
*UIConstraints: *RIPunch Right3 *MediaType Prepunched
*UIConstraints: *RIPunch Right3 *MediaType Labels
*UIConstraints: *RIPunch Right3 *MediaType OHP
*UIConstraints: *RIPunch Right3 *MediaType Thick2
*UIConstraints: *RIPunch Right3 *MediaType Thick3
*UIConstraints: *RIPunch Right3 *MediaType Thin
*UIConstraints: *RIPunch Right3 *MediaType Translucent
*UIConstraints: *RIPunch Right4 *MediaType Prepunched
*UIConstraints: *RIPunch Right4 *MediaType Labels
*UIConstraints: *RIPunch Right4 *MediaType OHP
*UIConstraints: *RIPunch Right4 *MediaType Thick
*UIConstraints: *RIPunch Right4 *MediaType Thick2
*UIConstraints: *RIPunch Right4 *MediaType Thick3
*UIConstraints: *RIPunch Right4 *MediaType Thin
*UIConstraints: *RIPunch Right4 *MediaType Translucent
*UIConstraints: *RIPunch Upper2 *MediaType Prepunched
*UIConstraints: *RIPunch Upper2 *MediaType Labels
*UIConstraints: *RIPunch Upper2 *MediaType OHP
*UIConstraints: *RIPunch Upper2 *MediaType Thick2
*UIConstraints: *RIPunch Upper2 *MediaType Thick3
*UIConstraints: *RIPunch Upper2 *MediaType Thin
*UIConstraints: *RIPunch Upper2 *MediaType Translucent
*UIConstraints: *RIPunch Upper3 *MediaType Prepunched
*UIConstraints: *RIPunch Upper3 *MediaType Labels
*UIConstraints: *RIPunch Upper3 *MediaType OHP
*UIConstraints: *RIPunch Upper3 *MediaType Thick2
*UIConstraints: *RIPunch Upper3 *MediaType Thick3
*UIConstraints: *RIPunch Upper3 *MediaType Thin
*UIConstraints: *RIPunch Upper3 *MediaType Translucent
*UIConstraints: *RIPunch Upper4 *MediaType Prepunched
*UIConstraints: *RIPunch Upper4 *MediaType Labels
*UIConstraints: *RIPunch Upper4 *MediaType OHP
*UIConstraints: *RIPunch Upper4 *MediaType Thick
*UIConstraints: *RIPunch Upper4 *MediaType Thick2
*UIConstraints: *RIPunch Upper4 *MediaType Thick3
*UIConstraints: *RIPunch Upper4 *MediaType Thin
*UIConstraints: *RIPunch Upper4 *MediaType Translucent
*UIConstraints: *MediaType Prepunched *RIPunch Left2
*UIConstraints: *MediaType Labels *RIPunch Left2
*UIConstraints: *MediaType OHP *RIPunch Left2
*UIConstraints: *MediaType Thick2 *RIPunch Left2
*UIConstraints: *MediaType Thick3 *RIPunch Left2
*UIConstraints: *MediaType Thin *RIPunch Left2
*UIConstraints: *MediaType Translucent *RIPunch Left2
*UIConstraints: *MediaType Prepunched *RIPunch Left3
*UIConstraints: *MediaType Labels *RIPunch Left3
*UIConstraints: *MediaType OHP *RIPunch Left3
*UIConstraints: *MediaType Thick2 *RIPunch Left3
*UIConstraints: *MediaType Thick3 *RIPunch Left3
*UIConstraints: *MediaType Thin *RIPunch Left3
*UIConstraints: *MediaType Translucent *RIPunch Left3
*UIConstraints: *MediaType Prepunched *RIPunch Left4
*UIConstraints: *MediaType Labels *RIPunch Left4
*UIConstraints: *MediaType OHP *RIPunch Left4
*UIConstraints: *MediaType Thick *RIPunch Left4
*UIConstraints: *MediaType Thick2 *RIPunch Left4
*UIConstraints: *MediaType Thick3 *RIPunch Left4
*UIConstraints: *MediaType Thin *RIPunch Left4
*UIConstraints: *MediaType Translucent *RIPunch Left4
*UIConstraints: *MediaType Prepunched *RIPunch Right2
*UIConstraints: *MediaType Labels *RIPunch Right2
*UIConstraints: *MediaType OHP *RIPunch Right2
*UIConstraints: *MediaType Thick2 *RIPunch Right2
*UIConstraints: *MediaType Thick3 *RIPunch Right2
*UIConstraints: *MediaType Thin *RIPunch Right2
*UIConstraints: *MediaType Translucent *RIPunch Right2
*UIConstraints: *MediaType Prepunched *RIPunch Right3
*UIConstraints: *MediaType Labels *RIPunch Right3
*UIConstraints: *MediaType OHP *RIPunch Right3
*UIConstraints: *MediaType Thick2 *RIPunch Right3
*UIConstraints: *MediaType Thick3 *RIPunch Right3
*UIConstraints: *MediaType Thin *RIPunch Right3
*UIConstraints: *MediaType Translucent *RIPunch Right3
*UIConstraints: *MediaType Prepunched *RIPunch Right4
*UIConstraints: *MediaType Labels *RIPunch Right4
*UIConstraints: *MediaType OHP *RIPunch Right4
*UIConstraints: *MediaType Thick *RIPunch Right4
*UIConstraints: *MediaType Thick2 *RIPunch Right4
*UIConstraints: *MediaType Thick3 *RIPunch Right4
*UIConstraints: *MediaType Thin *RIPunch Right4
*UIConstraints: *MediaType Translucent *RIPunch Right4
*UIConstraints: *MediaType Prepunched *RIPunch Upper2
*UIConstraints: *MediaType Labels *RIPunch Upper2
*UIConstraints: *MediaType OHP *RIPunch Upper2
*UIConstraints: *MediaType Thick2 *RIPunch Upper2
*UIConstraints: *MediaType Thick3 *RIPunch Upper2
*UIConstraints: *MediaType Thin *RIPunch Upper2
*UIConstraints: *MediaType Translucent *RIPunch Upper2
*UIConstraints: *MediaType Prepunched *RIPunch Upper3
*UIConstraints: *MediaType Labels *RIPunch Upper3
*UIConstraints: *MediaType OHP *RIPunch Upper3
*UIConstraints: *MediaType Thick2 *RIPunch Upper3
*UIConstraints: *MediaType Thick3 *RIPunch Upper3
*UIConstraints: *MediaType Thin *RIPunch Upper3
*UIConstraints: *MediaType Translucent *RIPunch Upper3
*UIConstraints: *MediaType Prepunched *RIPunch Upper4
*UIConstraints: *MediaType Labels *RIPunch Upper4
*UIConstraints: *MediaType OHP *RIPunch Upper4
*UIConstraints: *MediaType Thick *RIPunch Upper4
*UIConstraints: *MediaType Thick2 *RIPunch Upper4
*UIConstraints: *MediaType Thick3 *RIPunch Upper4
*UIConstraints: *MediaType Thin *RIPunch Upper4
*UIConstraints: *MediaType Translucent *RIPunch Upper4
*%========== Paper Type / Fold Type ==========
*UIConstraints: *RIFoldType Twofold *MediaType Letterhead
*UIConstraints: *RIFoldType Twofold *MediaType Labels
*UIConstraints: *RIFoldType Twofold *MediaType Cardstock
*UIConstraints: *RIFoldType Twofold *MediaType OHP
*UIConstraints: *RIFoldType Twofold *MediaType Thick
*UIConstraints: *RIFoldType Twofold *MediaType Thick2
*UIConstraints: *RIFoldType Twofold *MediaType Thick3
*UIConstraints: *RIFoldType Twofold *MediaType Thin
*UIConstraints: *RIFoldType Twofold *MediaType Middlethick
*UIConstraints: *RIFoldType Twofold *MediaType Index
*UIConstraints: *RIFoldType Twofold *MediaType Translucent
*UIConstraints: *RIFoldType ThreefoldIn *MediaType Letterhead
*UIConstraints: *RIFoldType ThreefoldIn *MediaType Labels
*UIConstraints: *RIFoldType ThreefoldIn *MediaType Cardstock
*UIConstraints: *RIFoldType ThreefoldIn *MediaType OHP
*UIConstraints: *RIFoldType ThreefoldIn *MediaType Thick
*UIConstraints: *RIFoldType ThreefoldIn *MediaType Thick2
*UIConstraints: *RIFoldType ThreefoldIn *MediaType Thick3
*UIConstraints: *RIFoldType ThreefoldIn *MediaType Thin
*UIConstraints: *RIFoldType ThreefoldIn *MediaType Middlethick
*UIConstraints: *RIFoldType ThreefoldIn *MediaType Index
*UIConstraints: *RIFoldType ThreefoldIn *MediaType Translucent
*UIConstraints: *RIFoldType ThreefoldOut *MediaType Letterhead
*UIConstraints: *RIFoldType ThreefoldOut *MediaType Labels
*UIConstraints: *RIFoldType ThreefoldOut *MediaType Cardstock
*UIConstraints: *RIFoldType ThreefoldOut *MediaType OHP
*UIConstraints: *RIFoldType ThreefoldOut *MediaType Thick
*UIConstraints: *RIFoldType ThreefoldOut *MediaType Thick2
*UIConstraints: *RIFoldType ThreefoldOut *MediaType Thick3
*UIConstraints: *RIFoldType ThreefoldOut *MediaType Thin
*UIConstraints: *RIFoldType ThreefoldOut *MediaType Middlethick
*UIConstraints: *RIFoldType ThreefoldOut *MediaType Index
*UIConstraints: *RIFoldType ThreefoldOut *MediaType Translucent
*UIConstraints: *RIFoldType Quarto *MediaType Letterhead
*UIConstraints: *RIFoldType Quarto *MediaType Labels
*UIConstraints: *RIFoldType Quarto *MediaType Cardstock
*UIConstraints: *RIFoldType Quarto *MediaType OHP
*UIConstraints: *RIFoldType Quarto *MediaType Thick
*UIConstraints: *RIFoldType Quarto *MediaType Thick2
*UIConstraints: *RIFoldType Quarto *MediaType Thick3
*UIConstraints: *RIFoldType Quarto *MediaType Thin
*UIConstraints: *RIFoldType Quarto *MediaType Middlethick
*UIConstraints: *RIFoldType Quarto *MediaType Index
*UIConstraints: *RIFoldType Quarto *MediaType Translucent
*UIConstraints: *RIFoldType Gatefold *MediaType Letterhead
*UIConstraints: *RIFoldType Gatefold *MediaType Labels
*UIConstraints: *RIFoldType Gatefold *MediaType Cardstock
*UIConstraints: *RIFoldType Gatefold *MediaType OHP
*UIConstraints: *RIFoldType Gatefold *MediaType Thick
*UIConstraints: *RIFoldType Gatefold *MediaType Thick2
*UIConstraints: *RIFoldType Gatefold *MediaType Thick3
*UIConstraints: *RIFoldType Gatefold *MediaType Thin
*UIConstraints: *RIFoldType Gatefold *MediaType Middlethick
*UIConstraints: *RIFoldType Gatefold *MediaType Index
*UIConstraints: *RIFoldType Gatefold *MediaType Translucent
*UIConstraints: *MediaType Letterhead *RIFoldType Twofold
*UIConstraints: *MediaType Labels *RIFoldType Twofold
*UIConstraints: *MediaType Cardstock *RIFoldType Twofold
*UIConstraints: *MediaType OHP *RIFoldType Twofold
*UIConstraints: *MediaType Thick *RIFoldType Twofold
*UIConstraints: *MediaType Thick2 *RIFoldType Twofold
*UIConstraints: *MediaType Thick3 *RIFoldType Twofold
*UIConstraints: *MediaType Thin *RIFoldType Twofold
*UIConstraints: *MediaType Middlethick *RIFoldType Twofold
*UIConstraints: *MediaType Index *RIFoldType Twofold
*UIConstraints: *MediaType Translucent *RIFoldType Twofold
*UIConstraints: *MediaType Letterhead *RIFoldType ThreefoldIn
*UIConstraints: *MediaType Labels *RIFoldType ThreefoldIn
*UIConstraints: *MediaType Cardstock *RIFoldType ThreefoldIn
*UIConstraints: *MediaType OHP *RIFoldType ThreefoldIn
*UIConstraints: *MediaType Thick *RIFoldType ThreefoldIn
*UIConstraints: *MediaType Thick2 *RIFoldType ThreefoldIn
*UIConstraints: *MediaType Thick3 *RIFoldType ThreefoldIn
*UIConstraints: *MediaType Thin *RIFoldType ThreefoldIn
*UIConstraints: *MediaType Middlethick *RIFoldType ThreefoldIn
*UIConstraints: *MediaType Index *RIFoldType ThreefoldIn
*UIConstraints: *MediaType Translucent *RIFoldType ThreefoldIn
*UIConstraints: *MediaType Letterhead *RIFoldType ThreefoldOut
*UIConstraints: *MediaType Labels *RIFoldType ThreefoldOut
*UIConstraints: *MediaType Cardstock *RIFoldType ThreefoldOut
*UIConstraints: *MediaType OHP *RIFoldType ThreefoldOut
*UIConstraints: *MediaType Thick *RIFoldType ThreefoldOut
*UIConstraints: *MediaType Thick2 *RIFoldType ThreefoldOut
*UIConstraints: *MediaType Thick3 *RIFoldType ThreefoldOut
*UIConstraints: *MediaType Thin *RIFoldType ThreefoldOut
*UIConstraints: *MediaType Middlethick *RIFoldType ThreefoldOut
*UIConstraints: *MediaType Index *RIFoldType ThreefoldOut
*UIConstraints: *MediaType Translucent *RIFoldType ThreefoldOut
*UIConstraints: *MediaType Letterhead *RIFoldType Quarto
*UIConstraints: *MediaType Labels *RIFoldType Quarto
*UIConstraints: *MediaType Cardstock *RIFoldType Quarto
*UIConstraints: *MediaType OHP *RIFoldType Quarto
*UIConstraints: *MediaType Thick *RIFoldType Quarto
*UIConstraints: *MediaType Thick2 *RIFoldType Quarto
*UIConstraints: *MediaType Thick3 *RIFoldType Quarto
*UIConstraints: *MediaType Thin *RIFoldType Quarto
*UIConstraints: *MediaType Middlethick *RIFoldType Quarto
*UIConstraints: *MediaType Index *RIFoldType Quarto
*UIConstraints: *MediaType Translucent *RIFoldType Quarto
*UIConstraints: *MediaType Letterhead *RIFoldType Gatefold
*UIConstraints: *MediaType Labels *RIFoldType Gatefold
*UIConstraints: *MediaType Cardstock *RIFoldType Gatefold
*UIConstraints: *MediaType OHP *RIFoldType Gatefold
*UIConstraints: *MediaType Thick *RIFoldType Gatefold
*UIConstraints: *MediaType Thick2 *RIFoldType Gatefold
*UIConstraints: *MediaType Thick3 *RIFoldType Gatefold
*UIConstraints: *MediaType Thin *RIFoldType Gatefold
*UIConstraints: *MediaType Middlethick *RIFoldType Gatefold
*UIConstraints: *MediaType Index *RIFoldType Gatefold
*UIConstraints: *MediaType Translucent *RIFoldType Gatefold
*%========== Paper Type / Z-fold ==========
*UIConstraints: *RIZfold Bottom *MediaType Letterhead
*UIConstraints: *RIZfold Bottom *MediaType Labels
*UIConstraints: *RIZfold Bottom *MediaType Cardstock
*UIConstraints: *RIZfold Bottom *MediaType OHP
*UIConstraints: *RIZfold Bottom *MediaType Thick
*UIConstraints: *RIZfold Bottom *MediaType Thick2
*UIConstraints: *RIZfold Bottom *MediaType Thick3
*UIConstraints: *RIZfold Bottom *MediaType Thin
*UIConstraints: *RIZfold Bottom *MediaType Middlethick
*UIConstraints: *RIZfold Bottom *MediaType Index
*UIConstraints: *RIZfold Bottom *MediaType Translucent
*UIConstraints: *RIZfold Right *MediaType Letterhead
*UIConstraints: *RIZfold Right *MediaType Labels
*UIConstraints: *RIZfold Right *MediaType Cardstock
*UIConstraints: *RIZfold Right *MediaType OHP
*UIConstraints: *RIZfold Right *MediaType Thick
*UIConstraints: *RIZfold Right *MediaType Thick2
*UIConstraints: *RIZfold Right *MediaType Thick3
*UIConstraints: *RIZfold Right *MediaType Thin
*UIConstraints: *RIZfold Right *MediaType Middlethick
*UIConstraints: *RIZfold Right *MediaType Index
*UIConstraints: *RIZfold Right *MediaType Translucent
*UIConstraints: *RIZfold Left *MediaType Letterhead
*UIConstraints: *RIZfold Left *MediaType Labels
*UIConstraints: *RIZfold Left *MediaType Cardstock
*UIConstraints: *RIZfold Left *MediaType OHP
*UIConstraints: *RIZfold Left *MediaType Thick
*UIConstraints: *RIZfold Left *MediaType Thick2
*UIConstraints: *RIZfold Left *MediaType Thick3
*UIConstraints: *RIZfold Left *MediaType Thin
*UIConstraints: *RIZfold Left *MediaType Middlethick
*UIConstraints: *RIZfold Left *MediaType Index
*UIConstraints: *RIZfold Left *MediaType Translucent
*UIConstraints: *MediaType Letterhead *RIZfold Bottom
*UIConstraints: *MediaType Labels *RIZfold Bottom
*UIConstraints: *MediaType Cardstock *RIZfold Bottom
*UIConstraints: *MediaType OHP *RIZfold Bottom
*UIConstraints: *MediaType Thick *RIZfold Bottom
*UIConstraints: *MediaType Thick2 *RIZfold Bottom
*UIConstraints: *MediaType Thick3 *RIZfold Bottom
*UIConstraints: *MediaType Thin *RIZfold Bottom
*UIConstraints: *MediaType Middlethick *RIZfold Bottom
*UIConstraints: *MediaType Index *RIZfold Bottom
*UIConstraints: *MediaType Translucent *RIZfold Bottom
*UIConstraints: *MediaType Letterhead *RIZfold Right
*UIConstraints: *MediaType Labels *RIZfold Right
*UIConstraints: *MediaType Cardstock *RIZfold Right
*UIConstraints: *MediaType OHP *RIZfold Right
*UIConstraints: *MediaType Thick *RIZfold Right
*UIConstraints: *MediaType Thick2 *RIZfold Right
*UIConstraints: *MediaType Thick3 *RIZfold Right
*UIConstraints: *MediaType Thin *RIZfold Right
*UIConstraints: *MediaType Middlethick *RIZfold Right
*UIConstraints: *MediaType Index *RIZfold Right
*UIConstraints: *MediaType Translucent *RIZfold Right
*UIConstraints: *MediaType Letterhead *RIZfold Left
*UIConstraints: *MediaType Labels *RIZfold Left
*UIConstraints: *MediaType Cardstock *RIZfold Left
*UIConstraints: *MediaType OHP *RIZfold Left
*UIConstraints: *MediaType Thick *RIZfold Left
*UIConstraints: *MediaType Thick2 *RIZfold Left
*UIConstraints: *MediaType Thick3 *RIZfold Left
*UIConstraints: *MediaType Thin *RIZfold Left
*UIConstraints: *MediaType Middlethick *RIZfold Left
*UIConstraints: *MediaType Index *RIZfold Left
*UIConstraints: *MediaType Translucent *RIZfold Left
*%========== Paper Type / Perfect/Ring Binding ==========
*UIConstraints: *RIBind Perfect *MediaType Prepunched
*UIConstraints: *RIBind Perfect *MediaType Labels
*UIConstraints: *RIBind Perfect *MediaType Bond
*UIConstraints: *RIBind Perfect *MediaType Cardstock
*UIConstraints: *RIBind Perfect *MediaType OHP
*UIConstraints: *RIBind Perfect *MediaType Thick
*UIConstraints: *RIBind Perfect *MediaType Thick2
*UIConstraints: *RIBind Perfect *MediaType Thick3
*UIConstraints: *RIBind Perfect *MediaType Thin
*UIConstraints: *RIBind Perfect *MediaType Index
*UIConstraints: *RIBind Perfect *MediaType Translucent
*UIConstraints: *RIBind RingBind *MediaType Preprinted
*UIConstraints: *RIBind RingBind *MediaType Prepunched
*UIConstraints: *RIBind RingBind *MediaType Labels
*UIConstraints: *RIBind RingBind *MediaType Coated
*UIConstraints: *RIBind RingBind *MediaType Bond
*UIConstraints: *RIBind RingBind *MediaType Cardstock
*UIConstraints: *RIBind RingBind *MediaType Thick3
*UIConstraints: *RIBind RingBind *MediaType Translucent
*UIConstraints: *RIBind RingPunch *MediaType Preprinted
*UIConstraints: *RIBind RingPunch *MediaType Prepunched
*UIConstraints: *RIBind RingPunch *MediaType Labels
*UIConstraints: *RIBind RingPunch *MediaType Coated
*UIConstraints: *RIBind RingPunch *MediaType Bond
*UIConstraints: *RIBind RingPunch *MediaType Cardstock
*UIConstraints: *RIBind RingPunch *MediaType Thick3
*UIConstraints: *RIBind RingPunch *MediaType Translucent
*UIConstraints: *MediaType Prepunched *RIBind Perfect
*UIConstraints: *MediaType Labels *RIBind Perfect
*UIConstraints: *MediaType Bond *RIBind Perfect
*UIConstraints: *MediaType Cardstock *RIBind Perfect
*UIConstraints: *MediaType OHP *RIBind Perfect
*UIConstraints: *MediaType Thick *RIBind Perfect
*UIConstraints: *MediaType Thick2 *RIBind Perfect
*UIConstraints: *MediaType Thick3 *RIBind Perfect
*UIConstraints: *MediaType Thin *RIBind Perfect
*UIConstraints: *MediaType Index *RIBind Perfect
*UIConstraints: *MediaType Translucent *RIBind Perfect
*UIConstraints: *MediaType Preprinted *RIBind RingBind
*UIConstraints: *MediaType Prepunched *RIBind RingBind
*UIConstraints: *MediaType Labels *RIBind RingBind
*UIConstraints: *MediaType Coated *RIBind RingBind
*UIConstraints: *MediaType Bond *RIBind RingBind
*UIConstraints: *MediaType Cardstock *RIBind RingBind
*UIConstraints: *MediaType Thick3 *RIBind RingBind
*UIConstraints: *MediaType Translucent *RIBind RingBind
*UIConstraints: *MediaType Preprinted *RIBind RingPunch
*UIConstraints: *MediaType Prepunched *RIBind RingPunch
*UIConstraints: *MediaType Labels *RIBind RingPunch
*UIConstraints: *MediaType Coated *RIBind RingPunch
*UIConstraints: *MediaType Bond *RIBind RingPunch
*UIConstraints: *MediaType Cardstock *RIBind RingPunch
*UIConstraints: *MediaType Thick3 *RIBind RingPunch
*UIConstraints: *MediaType Translucent *RIBind RingPunch
*%========== Paper Type / Trimmer Cut And Position Adjustment ==========
*UIConstraints: *TrimmerCutAndPosition 20mm *MediaType Prepunched
*UIConstraints: *TrimmerCutAndPosition 20mm *MediaType Labels
*UIConstraints: *TrimmerCutAndPosition 20mm *MediaType OHP
*UIConstraints: *TrimmerCutAndPosition 20mm *MediaType Thick
*UIConstraints: *TrimmerCutAndPosition 20mm *MediaType Thick2
*UIConstraints: *TrimmerCutAndPosition 20mm *MediaType Thick3
*UIConstraints: *TrimmerCutAndPosition 20mm *MediaType Thin
*UIConstraints: *TrimmerCutAndPosition 20mm *MediaType Index
*UIConstraints: *TrimmerCutAndPosition 20mm *MediaType Translucent
*UIConstraints: *TrimmerCutAndPosition 30mm *MediaType Prepunched
*UIConstraints: *TrimmerCutAndPosition 30mm *MediaType Labels
*UIConstraints: *TrimmerCutAndPosition 30mm *MediaType OHP
*UIConstraints: *TrimmerCutAndPosition 30mm *MediaType Thick
*UIConstraints: *TrimmerCutAndPosition 30mm *MediaType Thick2
*UIConstraints: *TrimmerCutAndPosition 30mm *MediaType Thick3
*UIConstraints: *TrimmerCutAndPosition 30mm *MediaType Thin
*UIConstraints: *TrimmerCutAndPosition 30mm *MediaType Index
*UIConstraints: *TrimmerCutAndPosition 30mm *MediaType Translucent
*UIConstraints: *TrimmerCutAndPosition 40mm *MediaType Prepunched
*UIConstraints: *TrimmerCutAndPosition 40mm *MediaType Labels
*UIConstraints: *TrimmerCutAndPosition 40mm *MediaType OHP
*UIConstraints: *TrimmerCutAndPosition 40mm *MediaType Thick
*UIConstraints: *TrimmerCutAndPosition 40mm *MediaType Thick2
*UIConstraints: *TrimmerCutAndPosition 40mm *MediaType Thick3
*UIConstraints: *TrimmerCutAndPosition 40mm *MediaType Thin
*UIConstraints: *TrimmerCutAndPosition 40mm *MediaType Index
*UIConstraints: *TrimmerCutAndPosition 40mm *MediaType Translucent
*UIConstraints: *TrimmerCutAndPosition 50mm *MediaType Prepunched
*UIConstraints: *TrimmerCutAndPosition 50mm *MediaType Labels
*UIConstraints: *TrimmerCutAndPosition 50mm *MediaType OHP
*UIConstraints: *TrimmerCutAndPosition 50mm *MediaType Thick
*UIConstraints: *TrimmerCutAndPosition 50mm *MediaType Thick2
*UIConstraints: *TrimmerCutAndPosition 50mm *MediaType Thick3
*UIConstraints: *TrimmerCutAndPosition 50mm *MediaType Thin
*UIConstraints: *TrimmerCutAndPosition 50mm *MediaType Index
*UIConstraints: *TrimmerCutAndPosition 50mm *MediaType Translucent
*UIConstraints: *TrimmerCutAndPosition 60mm *MediaType Prepunched
*UIConstraints: *TrimmerCutAndPosition 60mm *MediaType Labels
*UIConstraints: *TrimmerCutAndPosition 60mm *MediaType OHP
*UIConstraints: *TrimmerCutAndPosition 60mm *MediaType Thick
*UIConstraints: *TrimmerCutAndPosition 60mm *MediaType Thick2
*UIConstraints: *TrimmerCutAndPosition 60mm *MediaType Thick3
*UIConstraints: *TrimmerCutAndPosition 60mm *MediaType Thin
*UIConstraints: *TrimmerCutAndPosition 60mm *MediaType Index
*UIConstraints: *TrimmerCutAndPosition 60mm *MediaType Translucent
*UIConstraints: *TrimmerCutAndPosition 70mm *MediaType Prepunched
*UIConstraints: *TrimmerCutAndPosition 70mm *MediaType Labels
*UIConstraints: *TrimmerCutAndPosition 70mm *MediaType OHP
*UIConstraints: *TrimmerCutAndPosition 70mm *MediaType Thick
*UIConstraints: *TrimmerCutAndPosition 70mm *MediaType Thick2
*UIConstraints: *TrimmerCutAndPosition 70mm *MediaType Thick3
*UIConstraints: *TrimmerCutAndPosition 70mm *MediaType Thin
*UIConstraints: *TrimmerCutAndPosition 70mm *MediaType Index
*UIConstraints: *TrimmerCutAndPosition 70mm *MediaType Translucent
*UIConstraints: *TrimmerCutAndPosition 80mm *MediaType Prepunched
*UIConstraints: *TrimmerCutAndPosition 80mm *MediaType Labels
*UIConstraints: *TrimmerCutAndPosition 80mm *MediaType OHP
*UIConstraints: *TrimmerCutAndPosition 80mm *MediaType Thick
*UIConstraints: *TrimmerCutAndPosition 80mm *MediaType Thick2
*UIConstraints: *TrimmerCutAndPosition 80mm *MediaType Thick3
*UIConstraints: *TrimmerCutAndPosition 80mm *MediaType Thin
*UIConstraints: *TrimmerCutAndPosition 80mm *MediaType Index
*UIConstraints: *TrimmerCutAndPosition 80mm *MediaType Translucent
*UIConstraints: *TrimmerCutAndPosition 90mm *MediaType Prepunched
*UIConstraints: *TrimmerCutAndPosition 90mm *MediaType Labels
*UIConstraints: *TrimmerCutAndPosition 90mm *MediaType OHP
*UIConstraints: *TrimmerCutAndPosition 90mm *MediaType Thick
*UIConstraints: *TrimmerCutAndPosition 90mm *MediaType Thick2
*UIConstraints: *TrimmerCutAndPosition 90mm *MediaType Thick3
*UIConstraints: *TrimmerCutAndPosition 90mm *MediaType Thin
*UIConstraints: *TrimmerCutAndPosition 90mm *MediaType Index
*UIConstraints: *TrimmerCutAndPosition 90mm *MediaType Translucent
*UIConstraints: *TrimmerCutAndPosition 100mm *MediaType Prepunched
*UIConstraints: *TrimmerCutAndPosition 100mm *MediaType Labels
*UIConstraints: *TrimmerCutAndPosition 100mm *MediaType OHP
*UIConstraints: *TrimmerCutAndPosition 100mm *MediaType Thick
*UIConstraints: *TrimmerCutAndPosition 100mm *MediaType Thick2
*UIConstraints: *TrimmerCutAndPosition 100mm *MediaType Thick3
*UIConstraints: *TrimmerCutAndPosition 100mm *MediaType Thin
*UIConstraints: *TrimmerCutAndPosition 100mm *MediaType Index
*UIConstraints: *TrimmerCutAndPosition 100mm *MediaType Translucent
*UIConstraints: *TrimmerCutAndPosition 110mm *MediaType Prepunched
*UIConstraints: *TrimmerCutAndPosition 110mm *MediaType Labels
*UIConstraints: *TrimmerCutAndPosition 110mm *MediaType OHP
*UIConstraints: *TrimmerCutAndPosition 110mm *MediaType Thick
*UIConstraints: *TrimmerCutAndPosition 110mm *MediaType Thick2
*UIConstraints: *TrimmerCutAndPosition 110mm *MediaType Thick3
*UIConstraints: *TrimmerCutAndPosition 110mm *MediaType Thin
*UIConstraints: *TrimmerCutAndPosition 110mm *MediaType Index
*UIConstraints: *TrimmerCutAndPosition 110mm *MediaType Translucent
*UIConstraints: *TrimmerCutAndPosition 120mm *MediaType Prepunched
*UIConstraints: *TrimmerCutAndPosition 120mm *MediaType Labels
*UIConstraints: *TrimmerCutAndPosition 120mm *MediaType OHP
*UIConstraints: *TrimmerCutAndPosition 120mm *MediaType Thick
*UIConstraints: *TrimmerCutAndPosition 120mm *MediaType Thick2
*UIConstraints: *TrimmerCutAndPosition 120mm *MediaType Thick3
*UIConstraints: *TrimmerCutAndPosition 120mm *MediaType Thin
*UIConstraints: *TrimmerCutAndPosition 120mm *MediaType Index
*UIConstraints: *TrimmerCutAndPosition 120mm *MediaType Translucent
*UIConstraints: *TrimmerCutAndPosition 130mm *MediaType Prepunched
*UIConstraints: *TrimmerCutAndPosition 130mm *MediaType Labels
*UIConstraints: *TrimmerCutAndPosition 130mm *MediaType OHP
*UIConstraints: *TrimmerCutAndPosition 130mm *MediaType Thick
*UIConstraints: *TrimmerCutAndPosition 130mm *MediaType Thick2
*UIConstraints: *TrimmerCutAndPosition 130mm *MediaType Thick3
*UIConstraints: *TrimmerCutAndPosition 130mm *MediaType Thin
*UIConstraints: *TrimmerCutAndPosition 130mm *MediaType Index
*UIConstraints: *TrimmerCutAndPosition 130mm *MediaType Translucent
*UIConstraints: *TrimmerCutAndPosition 140mm *MediaType Prepunched
*UIConstraints: *TrimmerCutAndPosition 140mm *MediaType Labels
*UIConstraints: *TrimmerCutAndPosition 140mm *MediaType OHP
*UIConstraints: *TrimmerCutAndPosition 140mm *MediaType Thick
*UIConstraints: *TrimmerCutAndPosition 140mm *MediaType Thick2
*UIConstraints: *TrimmerCutAndPosition 140mm *MediaType Thick3
*UIConstraints: *TrimmerCutAndPosition 140mm *MediaType Thin
*UIConstraints: *TrimmerCutAndPosition 140mm *MediaType Index
*UIConstraints: *TrimmerCutAndPosition 140mm *MediaType Translucent
*UIConstraints: *TrimmerCutAndPosition 150mm *MediaType Prepunched
*UIConstraints: *TrimmerCutAndPosition 150mm *MediaType Labels
*UIConstraints: *TrimmerCutAndPosition 150mm *MediaType OHP
*UIConstraints: *TrimmerCutAndPosition 150mm *MediaType Thick
*UIConstraints: *TrimmerCutAndPosition 150mm *MediaType Thick2
*UIConstraints: *TrimmerCutAndPosition 150mm *MediaType Thick3
*UIConstraints: *TrimmerCutAndPosition 150mm *MediaType Thin
*UIConstraints: *TrimmerCutAndPosition 150mm *MediaType Index
*UIConstraints: *TrimmerCutAndPosition 150mm *MediaType Translucent
*UIConstraints: *TrimmerCutAndPosition 160mm *MediaType Prepunched
*UIConstraints: *TrimmerCutAndPosition 160mm *MediaType Labels
*UIConstraints: *TrimmerCutAndPosition 160mm *MediaType OHP
*UIConstraints: *TrimmerCutAndPosition 160mm *MediaType Thick
*UIConstraints: *TrimmerCutAndPosition 160mm *MediaType Thick2
*UIConstraints: *TrimmerCutAndPosition 160mm *MediaType Thick3
*UIConstraints: *TrimmerCutAndPosition 160mm *MediaType Thin
*UIConstraints: *TrimmerCutAndPosition 160mm *MediaType Index
*UIConstraints: *TrimmerCutAndPosition 160mm *MediaType Translucent
*UIConstraints: *TrimmerCutAndPosition 170mm *MediaType Prepunched
*UIConstraints: *TrimmerCutAndPosition 170mm *MediaType Labels
*UIConstraints: *TrimmerCutAndPosition 170mm *MediaType OHP
*UIConstraints: *TrimmerCutAndPosition 170mm *MediaType Thick
*UIConstraints: *TrimmerCutAndPosition 170mm *MediaType Thick2
*UIConstraints: *TrimmerCutAndPosition 170mm *MediaType Thick3
*UIConstraints: *TrimmerCutAndPosition 170mm *MediaType Thin
*UIConstraints: *TrimmerCutAndPosition 170mm *MediaType Index
*UIConstraints: *TrimmerCutAndPosition 170mm *MediaType Translucent
*UIConstraints: *TrimmerCutAndPosition 180mm *MediaType Prepunched
*UIConstraints: *TrimmerCutAndPosition 180mm *MediaType Labels
*UIConstraints: *TrimmerCutAndPosition 180mm *MediaType OHP
*UIConstraints: *TrimmerCutAndPosition 180mm *MediaType Thick
*UIConstraints: *TrimmerCutAndPosition 180mm *MediaType Thick2
*UIConstraints: *TrimmerCutAndPosition 180mm *MediaType Thick3
*UIConstraints: *TrimmerCutAndPosition 180mm *MediaType Thin
*UIConstraints: *TrimmerCutAndPosition 180mm *MediaType Index
*UIConstraints: *TrimmerCutAndPosition 180mm *MediaType Translucent
*UIConstraints: *TrimmerCutAndPosition 190mm *MediaType Prepunched
*UIConstraints: *TrimmerCutAndPosition 190mm *MediaType Labels
*UIConstraints: *TrimmerCutAndPosition 190mm *MediaType OHP
*UIConstraints: *TrimmerCutAndPosition 190mm *MediaType Thick
*UIConstraints: *TrimmerCutAndPosition 190mm *MediaType Thick2
*UIConstraints: *TrimmerCutAndPosition 190mm *MediaType Thick3
*UIConstraints: *TrimmerCutAndPosition 190mm *MediaType Thin
*UIConstraints: *TrimmerCutAndPosition 190mm *MediaType Index
*UIConstraints: *TrimmerCutAndPosition 190mm *MediaType Translucent
*UIConstraints: *TrimmerCutAndPosition 200mm *MediaType Prepunched
*UIConstraints: *TrimmerCutAndPosition 200mm *MediaType Labels
*UIConstraints: *TrimmerCutAndPosition 200mm *MediaType OHP
*UIConstraints: *TrimmerCutAndPosition 200mm *MediaType Thick
*UIConstraints: *TrimmerCutAndPosition 200mm *MediaType Thick2
*UIConstraints: *TrimmerCutAndPosition 200mm *MediaType Thick3
*UIConstraints: *TrimmerCutAndPosition 200mm *MediaType Thin
*UIConstraints: *TrimmerCutAndPosition 200mm *MediaType Index
*UIConstraints: *TrimmerCutAndPosition 200mm *MediaType Translucent
*UIConstraints: *MediaType Prepunched *TrimmerCutAndPosition 20mm
*UIConstraints: *MediaType Labels *TrimmerCutAndPosition 20mm
*UIConstraints: *MediaType OHP *TrimmerCutAndPosition 20mm
*UIConstraints: *MediaType Thick *TrimmerCutAndPosition 20mm
*UIConstraints: *MediaType Thick2 *TrimmerCutAndPosition 20mm
*UIConstraints: *MediaType Thick3 *TrimmerCutAndPosition 20mm
*UIConstraints: *MediaType Thin *TrimmerCutAndPosition 20mm
*UIConstraints: *MediaType Index *TrimmerCutAndPosition 20mm
*UIConstraints: *MediaType Translucent *TrimmerCutAndPosition 20mm
*UIConstraints: *MediaType Prepunched *TrimmerCutAndPosition 30mm
*UIConstraints: *MediaType Labels *TrimmerCutAndPosition 30mm
*UIConstraints: *MediaType OHP *TrimmerCutAndPosition 30mm
*UIConstraints: *MediaType Thick *TrimmerCutAndPosition 30mm
*UIConstraints: *MediaType Thick2 *TrimmerCutAndPosition 30mm
*UIConstraints: *MediaType Thick3 *TrimmerCutAndPosition 30mm
*UIConstraints: *MediaType Thin *TrimmerCutAndPosition 30mm
*UIConstraints: *MediaType Index *TrimmerCutAndPosition 30mm
*UIConstraints: *MediaType Translucent *TrimmerCutAndPosition 30mm
*UIConstraints: *MediaType Prepunched *TrimmerCutAndPosition 40mm
*UIConstraints: *MediaType Labels *TrimmerCutAndPosition 40mm
*UIConstraints: *MediaType OHP *TrimmerCutAndPosition 40mm
*UIConstraints: *MediaType Thick *TrimmerCutAndPosition 40mm
*UIConstraints: *MediaType Thick2 *TrimmerCutAndPosition 40mm
*UIConstraints: *MediaType Thick3 *TrimmerCutAndPosition 40mm
*UIConstraints: *MediaType Thin *TrimmerCutAndPosition 40mm
*UIConstraints: *MediaType Index *TrimmerCutAndPosition 40mm
*UIConstraints: *MediaType Translucent *TrimmerCutAndPosition 40mm
*UIConstraints: *MediaType Prepunched *TrimmerCutAndPosition 50mm
*UIConstraints: *MediaType Labels *TrimmerCutAndPosition 50mm
*UIConstraints: *MediaType OHP *TrimmerCutAndPosition 50mm
*UIConstraints: *MediaType Thick *TrimmerCutAndPosition 50mm
*UIConstraints: *MediaType Thick2 *TrimmerCutAndPosition 50mm
*UIConstraints: *MediaType Thick3 *TrimmerCutAndPosition 50mm
*UIConstraints: *MediaType Thin *TrimmerCutAndPosition 50mm
*UIConstraints: *MediaType Index *TrimmerCutAndPosition 50mm
*UIConstraints: *MediaType Translucent *TrimmerCutAndPosition 50mm
*UIConstraints: *MediaType Prepunched *TrimmerCutAndPosition 60mm
*UIConstraints: *MediaType Labels *TrimmerCutAndPosition 60mm
*UIConstraints: *MediaType OHP *TrimmerCutAndPosition 60mm
*UIConstraints: *MediaType Thick *TrimmerCutAndPosition 60mm
*UIConstraints: *MediaType Thick2 *TrimmerCutAndPosition 60mm
*UIConstraints: *MediaType Thick3 *TrimmerCutAndPosition 60mm
*UIConstraints: *MediaType Thin *TrimmerCutAndPosition 60mm
*UIConstraints: *MediaType Index *TrimmerCutAndPosition 60mm
*UIConstraints: *MediaType Translucent *TrimmerCutAndPosition 60mm
*UIConstraints: *MediaType Prepunched *TrimmerCutAndPosition 70mm
*UIConstraints: *MediaType Labels *TrimmerCutAndPosition 70mm
*UIConstraints: *MediaType OHP *TrimmerCutAndPosition 70mm
*UIConstraints: *MediaType Thick *TrimmerCutAndPosition 70mm
*UIConstraints: *MediaType Thick2 *TrimmerCutAndPosition 70mm
*UIConstraints: *MediaType Thick3 *TrimmerCutAndPosition 70mm
*UIConstraints: *MediaType Thin *TrimmerCutAndPosition 70mm
*UIConstraints: *MediaType Index *TrimmerCutAndPosition 70mm
*UIConstraints: *MediaType Translucent *TrimmerCutAndPosition 70mm
*UIConstraints: *MediaType Prepunched *TrimmerCutAndPosition 80mm
*UIConstraints: *MediaType Labels *TrimmerCutAndPosition 80mm
*UIConstraints: *MediaType OHP *TrimmerCutAndPosition 80mm
*UIConstraints: *MediaType Thick *TrimmerCutAndPosition 80mm
*UIConstraints: *MediaType Thick2 *TrimmerCutAndPosition 80mm
*UIConstraints: *MediaType Thick3 *TrimmerCutAndPosition 80mm
*UIConstraints: *MediaType Thin *TrimmerCutAndPosition 80mm
*UIConstraints: *MediaType Index *TrimmerCutAndPosition 80mm
*UIConstraints: *MediaType Translucent *TrimmerCutAndPosition 80mm
*UIConstraints: *MediaType Prepunched *TrimmerCutAndPosition 90mm
*UIConstraints: *MediaType Labels *TrimmerCutAndPosition 90mm
*UIConstraints: *MediaType OHP *TrimmerCutAndPosition 90mm
*UIConstraints: *MediaType Thick *TrimmerCutAndPosition 90mm
*UIConstraints: *MediaType Thick2 *TrimmerCutAndPosition 90mm
*UIConstraints: *MediaType Thick3 *TrimmerCutAndPosition 90mm
*UIConstraints: *MediaType Thin *TrimmerCutAndPosition 90mm
*UIConstraints: *MediaType Index *TrimmerCutAndPosition 90mm
*UIConstraints: *MediaType Translucent *TrimmerCutAndPosition 90mm
*UIConstraints: *MediaType Prepunched *TrimmerCutAndPosition 100mm
*UIConstraints: *MediaType Labels *TrimmerCutAndPosition 100mm
*UIConstraints: *MediaType OHP *TrimmerCutAndPosition 100mm
*UIConstraints: *MediaType Thick *TrimmerCutAndPosition 100mm
*UIConstraints: *MediaType Thick2 *TrimmerCutAndPosition 100mm
*UIConstraints: *MediaType Thick3 *TrimmerCutAndPosition 100mm
*UIConstraints: *MediaType Thin *TrimmerCutAndPosition 100mm
*UIConstraints: *MediaType Index *TrimmerCutAndPosition 100mm
*UIConstraints: *MediaType Translucent *TrimmerCutAndPosition 100mm
*UIConstraints: *MediaType Prepunched *TrimmerCutAndPosition 110mm
*UIConstraints: *MediaType Labels *TrimmerCutAndPosition 110mm
*UIConstraints: *MediaType OHP *TrimmerCutAndPosition 110mm
*UIConstraints: *MediaType Thick *TrimmerCutAndPosition 110mm
*UIConstraints: *MediaType Thick2 *TrimmerCutAndPosition 110mm
*UIConstraints: *MediaType Thick3 *TrimmerCutAndPosition 110mm
*UIConstraints: *MediaType Thin *TrimmerCutAndPosition 110mm
*UIConstraints: *MediaType Index *TrimmerCutAndPosition 110mm
*UIConstraints: *MediaType Translucent *TrimmerCutAndPosition 110mm
*UIConstraints: *MediaType Prepunched *TrimmerCutAndPosition 120mm
*UIConstraints: *MediaType Labels *TrimmerCutAndPosition 120mm
*UIConstraints: *MediaType OHP *TrimmerCutAndPosition 120mm
*UIConstraints: *MediaType Thick *TrimmerCutAndPosition 120mm
*UIConstraints: *MediaType Thick2 *TrimmerCutAndPosition 120mm
*UIConstraints: *MediaType Thick3 *TrimmerCutAndPosition 120mm
*UIConstraints: *MediaType Thin *TrimmerCutAndPosition 120mm
*UIConstraints: *MediaType Index *TrimmerCutAndPosition 120mm
*UIConstraints: *MediaType Translucent *TrimmerCutAndPosition 120mm
*UIConstraints: *MediaType Prepunched *TrimmerCutAndPosition 130mm
*UIConstraints: *MediaType Labels *TrimmerCutAndPosition 130mm
*UIConstraints: *MediaType OHP *TrimmerCutAndPosition 130mm
*UIConstraints: *MediaType Thick *TrimmerCutAndPosition 130mm
*UIConstraints: *MediaType Thick2 *TrimmerCutAndPosition 130mm
*UIConstraints: *MediaType Thick3 *TrimmerCutAndPosition 130mm
*UIConstraints: *MediaType Thin *TrimmerCutAndPosition 130mm
*UIConstraints: *MediaType Index *TrimmerCutAndPosition 130mm
*UIConstraints: *MediaType Translucent *TrimmerCutAndPosition 130mm
*UIConstraints: *MediaType Prepunched *TrimmerCutAndPosition 140mm
*UIConstraints: *MediaType Labels *TrimmerCutAndPosition 140mm
*UIConstraints: *MediaType OHP *TrimmerCutAndPosition 140mm
*UIConstraints: *MediaType Thick *TrimmerCutAndPosition 140mm
*UIConstraints: *MediaType Thick2 *TrimmerCutAndPosition 140mm
*UIConstraints: *MediaType Thick3 *TrimmerCutAndPosition 140mm
*UIConstraints: *MediaType Thin *TrimmerCutAndPosition 140mm
*UIConstraints: *MediaType Index *TrimmerCutAndPosition 140mm
*UIConstraints: *MediaType Translucent *TrimmerCutAndPosition 140mm
*UIConstraints: *MediaType Prepunched *TrimmerCutAndPosition 150mm
*UIConstraints: *MediaType Labels *TrimmerCutAndPosition 150mm
*UIConstraints: *MediaType OHP *TrimmerCutAndPosition 150mm
*UIConstraints: *MediaType Thick *TrimmerCutAndPosition 150mm
*UIConstraints: *MediaType Thick2 *TrimmerCutAndPosition 150mm
*UIConstraints: *MediaType Thick3 *TrimmerCutAndPosition 150mm
*UIConstraints: *MediaType Thin *TrimmerCutAndPosition 150mm
*UIConstraints: *MediaType Index *TrimmerCutAndPosition 150mm
*UIConstraints: *MediaType Translucent *TrimmerCutAndPosition 150mm
*UIConstraints: *MediaType Prepunched *TrimmerCutAndPosition 160mm
*UIConstraints: *MediaType Labels *TrimmerCutAndPosition 160mm
*UIConstraints: *MediaType OHP *TrimmerCutAndPosition 160mm
*UIConstraints: *MediaType Thick *TrimmerCutAndPosition 160mm
*UIConstraints: *MediaType Thick2 *TrimmerCutAndPosition 160mm
*UIConstraints: *MediaType Thick3 *TrimmerCutAndPosition 160mm
*UIConstraints: *MediaType Thin *TrimmerCutAndPosition 160mm
*UIConstraints: *MediaType Index *TrimmerCutAndPosition 160mm
*UIConstraints: *MediaType Translucent *TrimmerCutAndPosition 160mm
*UIConstraints: *MediaType Prepunched *TrimmerCutAndPosition 170mm
*UIConstraints: *MediaType Labels *TrimmerCutAndPosition 170mm
*UIConstraints: *MediaType OHP *TrimmerCutAndPosition 170mm
*UIConstraints: *MediaType Thick *TrimmerCutAndPosition 170mm
*UIConstraints: *MediaType Thick2 *TrimmerCutAndPosition 170mm
*UIConstraints: *MediaType Thick3 *TrimmerCutAndPosition 170mm
*UIConstraints: *MediaType Thin *TrimmerCutAndPosition 170mm
*UIConstraints: *MediaType Index *TrimmerCutAndPosition 170mm
*UIConstraints: *MediaType Translucent *TrimmerCutAndPosition 170mm
*UIConstraints: *MediaType Prepunched *TrimmerCutAndPosition 180mm
*UIConstraints: *MediaType Labels *TrimmerCutAndPosition 180mm
*UIConstraints: *MediaType OHP *TrimmerCutAndPosition 180mm
*UIConstraints: *MediaType Thick *TrimmerCutAndPosition 180mm
*UIConstraints: *MediaType Thick2 *TrimmerCutAndPosition 180mm
*UIConstraints: *MediaType Thick3 *TrimmerCutAndPosition 180mm
*UIConstraints: *MediaType Thin *TrimmerCutAndPosition 180mm
*UIConstraints: *MediaType Index *TrimmerCutAndPosition 180mm
*UIConstraints: *MediaType Translucent *TrimmerCutAndPosition 180mm
*UIConstraints: *MediaType Prepunched *TrimmerCutAndPosition 190mm
*UIConstraints: *MediaType Labels *TrimmerCutAndPosition 190mm
*UIConstraints: *MediaType OHP *TrimmerCutAndPosition 190mm
*UIConstraints: *MediaType Thick *TrimmerCutAndPosition 190mm
*UIConstraints: *MediaType Thick2 *TrimmerCutAndPosition 190mm
*UIConstraints: *MediaType Thick3 *TrimmerCutAndPosition 190mm
*UIConstraints: *MediaType Thin *TrimmerCutAndPosition 190mm
*UIConstraints: *MediaType Index *TrimmerCutAndPosition 190mm
*UIConstraints: *MediaType Translucent *TrimmerCutAndPosition 190mm
*UIConstraints: *MediaType Prepunched *TrimmerCutAndPosition 200mm
*UIConstraints: *MediaType Labels *TrimmerCutAndPosition 200mm
*UIConstraints: *MediaType OHP *TrimmerCutAndPosition 200mm
*UIConstraints: *MediaType Thick *TrimmerCutAndPosition 200mm
*UIConstraints: *MediaType Thick2 *TrimmerCutAndPosition 200mm
*UIConstraints: *MediaType Thick3 *TrimmerCutAndPosition 200mm
*UIConstraints: *MediaType Thin *TrimmerCutAndPosition 200mm
*UIConstraints: *MediaType Index *TrimmerCutAndPosition 200mm
*UIConstraints: *MediaType Translucent *TrimmerCutAndPosition 200mm
*%========== Paper Type / Face-up ==========
*UIConstraints: *MediaType Labels *Faceup On
*UIConstraints: *Faceup On *MediaType Labels
*%========== Destination / Staple ==========
*UIConstraints: *StapleLocation UpperLeft *OutputBin Proof
*UIConstraints: *StapleLocation UpperLeft *OutputBin FinCOLUMLower
*UIConstraints: *StapleLocation UpperLeft *OutputBin FinISHIKARI
*UIConstraints: *StapleLocation UpperLeft *OutputBin FinTENRYU
*UIConstraints: *StapleLocation UpperLeft *OutputBin FoldTray
*UIConstraints: *StapleLocation UpperLeft *OutputBin StackTray1
*UIConstraints: *StapleLocation UpperLeft *OutputBin StackTray2
*UIConstraints: *StapleLocation UpperLeft *OutputBin Trimmer
*UIConstraints: *StapleLocation UpperLeft *OutputBin PlockmaticTray
*UIConstraints: *StapleLocation UpperRight *OutputBin Proof
*UIConstraints: *StapleLocation UpperRight *OutputBin FinCOLUMLower
*UIConstraints: *StapleLocation UpperRight *OutputBin FinISHIKARI
*UIConstraints: *StapleLocation UpperRight *OutputBin FinTENRYU
*UIConstraints: *StapleLocation UpperRight *OutputBin FoldTray
*UIConstraints: *StapleLocation UpperRight *OutputBin StackTray1
*UIConstraints: *StapleLocation UpperRight *OutputBin StackTray2
*UIConstraints: *StapleLocation UpperRight *OutputBin Trimmer
*UIConstraints: *StapleLocation UpperRight *OutputBin PlockmaticTray
*UIConstraints: *StapleLocation LeftW *OutputBin Proof
*UIConstraints: *StapleLocation LeftW *OutputBin FinCOLUMLower
*UIConstraints: *StapleLocation LeftW *OutputBin FinISHIKARI
*UIConstraints: *StapleLocation LeftW *OutputBin FinTENRYU
*UIConstraints: *StapleLocation LeftW *OutputBin FoldTray
*UIConstraints: *StapleLocation LeftW *OutputBin StackTray1
*UIConstraints: *StapleLocation LeftW *OutputBin StackTray2
*UIConstraints: *StapleLocation LeftW *OutputBin Trimmer
*UIConstraints: *StapleLocation LeftW *OutputBin PlockmaticTray
*UIConstraints: *StapleLocation RightW *OutputBin Proof
*UIConstraints: *StapleLocation RightW *OutputBin FinCOLUMLower
*UIConstraints: *StapleLocation RightW *OutputBin FinISHIKARI
*UIConstraints: *StapleLocation RightW *OutputBin FinTENRYU
*UIConstraints: *StapleLocation RightW *OutputBin FoldTray
*UIConstraints: *StapleLocation RightW *OutputBin StackTray1
*UIConstraints: *StapleLocation RightW *OutputBin StackTray2
*UIConstraints: *StapleLocation RightW *OutputBin Trimmer
*UIConstraints: *StapleLocation RightW *OutputBin PlockmaticTray
*UIConstraints: *StapleLocation UpperW *OutputBin Proof
*UIConstraints: *StapleLocation UpperW *OutputBin FinCOLUMLower
*UIConstraints: *StapleLocation UpperW *OutputBin FinISHIKARI
*UIConstraints: *StapleLocation UpperW *OutputBin FinTENRYU
*UIConstraints: *StapleLocation UpperW *OutputBin FoldTray
*UIConstraints: *StapleLocation UpperW *OutputBin StackTray1
*UIConstraints: *StapleLocation UpperW *OutputBin StackTray2
*UIConstraints: *StapleLocation UpperW *OutputBin Trimmer
*UIConstraints: *StapleLocation UpperW *OutputBin PlockmaticTray
*UIConstraints: *StapleLocation CenterW *OutputBin Proof
*UIConstraints: *StapleLocation CenterW *OutputBin FinCOLUMShift
*UIConstraints: *StapleLocation CenterW *OutputBin FinVICTEShift
*UIConstraints: *StapleLocation CenterW *OutputBin FinISHIKARI
*UIConstraints: *StapleLocation CenterW *OutputBin FinTENRYU
*UIConstraints: *StapleLocation CenterW *OutputBin FoldTray
*UIConstraints: *StapleLocation CenterW *OutputBin StackTray1
*UIConstraints: *StapleLocation CenterW *OutputBin StackTray2
*UIConstraints: *OutputBin Proof *StapleLocation UpperLeft
*UIConstraints: *OutputBin FinCOLUMLower *StapleLocation UpperLeft
*UIConstraints: *OutputBin FinISHIKARI *StapleLocation UpperLeft
*UIConstraints: *OutputBin FinTENRYU *StapleLocation UpperLeft
*UIConstraints: *OutputBin FoldTray *StapleLocation UpperLeft
*UIConstraints: *OutputBin StackTray1 *StapleLocation UpperLeft
*UIConstraints: *OutputBin StackTray2 *StapleLocation UpperLeft
*UIConstraints: *OutputBin Trimmer *StapleLocation UpperLeft
*UIConstraints: *OutputBin PlockmaticTray *StapleLocation UpperLeft
*UIConstraints: *OutputBin Proof *StapleLocation UpperRight
*UIConstraints: *OutputBin FinCOLUMLower *StapleLocation UpperRight
*UIConstraints: *OutputBin FinISHIKARI *StapleLocation UpperRight
*UIConstraints: *OutputBin FinTENRYU *StapleLocation UpperRight
*UIConstraints: *OutputBin FoldTray *StapleLocation UpperRight
*UIConstraints: *OutputBin StackTray1 *StapleLocation UpperRight
*UIConstraints: *OutputBin StackTray2 *StapleLocation UpperRight
*UIConstraints: *OutputBin Trimmer *StapleLocation UpperRight
*UIConstraints: *OutputBin PlockmaticTray *StapleLocation UpperRight
*UIConstraints: *OutputBin Proof *StapleLocation LeftW
*UIConstraints: *OutputBin FinCOLUMLower *StapleLocation LeftW
*UIConstraints: *OutputBin FinISHIKARI *StapleLocation LeftW
*UIConstraints: *OutputBin FinTENRYU *StapleLocation LeftW
*UIConstraints: *OutputBin FoldTray *StapleLocation LeftW
*UIConstraints: *OutputBin StackTray1 *StapleLocation LeftW
*UIConstraints: *OutputBin StackTray2 *StapleLocation LeftW
*UIConstraints: *OutputBin Trimmer *StapleLocation LeftW
*UIConstraints: *OutputBin PlockmaticTray *StapleLocation LeftW
*UIConstraints: *OutputBin Proof *StapleLocation RightW
*UIConstraints: *OutputBin FinCOLUMLower *StapleLocation RightW
*UIConstraints: *OutputBin FinISHIKARI *StapleLocation RightW
*UIConstraints: *OutputBin FinTENRYU *StapleLocation RightW
*UIConstraints: *OutputBin FoldTray *StapleLocation RightW
*UIConstraints: *OutputBin StackTray1 *StapleLocation RightW
*UIConstraints: *OutputBin StackTray2 *StapleLocation RightW
*UIConstraints: *OutputBin Trimmer *StapleLocation RightW
*UIConstraints: *OutputBin PlockmaticTray *StapleLocation RightW
*UIConstraints: *OutputBin Proof *StapleLocation UpperW
*UIConstraints: *OutputBin FinCOLUMLower *StapleLocation UpperW
*UIConstraints: *OutputBin FinISHIKARI *StapleLocation UpperW
*UIConstraints: *OutputBin FinTENRYU *StapleLocation UpperW
*UIConstraints: *OutputBin FoldTray *StapleLocation UpperW
*UIConstraints: *OutputBin StackTray1 *StapleLocation UpperW
*UIConstraints: *OutputBin StackTray2 *StapleLocation UpperW
*UIConstraints: *OutputBin Trimmer *StapleLocation UpperW
*UIConstraints: *OutputBin PlockmaticTray *StapleLocation UpperW
*UIConstraints: *OutputBin Proof *StapleLocation CenterW
*UIConstraints: *OutputBin FinCOLUMShift *StapleLocation CenterW
*UIConstraints: *OutputBin FinVICTEShift *StapleLocation CenterW
*UIConstraints: *OutputBin FinISHIKARI *StapleLocation CenterW
*UIConstraints: *OutputBin FinTENRYU *StapleLocation CenterW
*UIConstraints: *OutputBin FoldTray *StapleLocation CenterW
*UIConstraints: *OutputBin StackTray1 *StapleLocation CenterW
*UIConstraints: *OutputBin StackTray2 *StapleLocation CenterW
*%========== Punch / Staple ==========
*UIConstraints: *RIPunch Left2 *StapleLocation CenterW
*UIConstraints: *RIPunch Left3 *StapleLocation CenterW
*UIConstraints: *RIPunch Left4 *StapleLocation CenterW
*UIConstraints: *RIPunch Right2 *StapleLocation CenterW
*UIConstraints: *RIPunch Right3 *StapleLocation CenterW
*UIConstraints: *RIPunch Right4 *StapleLocation CenterW
*UIConstraints: *RIPunch Upper2 *StapleLocation CenterW
*UIConstraints: *RIPunch Upper3 *StapleLocation CenterW
*UIConstraints: *RIPunch Upper4 *StapleLocation CenterW
*UIConstraints: *RIPunch GBCLeft *StapleLocation UpperLeft
*UIConstraints: *RIPunch GBCLeft *StapleLocation UpperRight
*UIConstraints: *RIPunch GBCLeft *StapleLocation LeftW
*UIConstraints: *RIPunch GBCLeft *StapleLocation RightW
*UIConstraints: *RIPunch GBCLeft *StapleLocation UpperW
*UIConstraints: *RIPunch GBCLeft *StapleLocation CenterW
*UIConstraints: *RIPunch GBCRight *StapleLocation UpperLeft
*UIConstraints: *RIPunch GBCRight *StapleLocation UpperRight
*UIConstraints: *RIPunch GBCRight *StapleLocation LeftW
*UIConstraints: *RIPunch GBCRight *StapleLocation RightW
*UIConstraints: *RIPunch GBCRight *StapleLocation UpperW
*UIConstraints: *RIPunch GBCRight *StapleLocation CenterW
*UIConstraints: *RIPunch GBCTop *StapleLocation UpperLeft
*UIConstraints: *RIPunch GBCTop *StapleLocation UpperRight
*UIConstraints: *RIPunch GBCTop *StapleLocation LeftW
*UIConstraints: *RIPunch GBCTop *StapleLocation RightW
*UIConstraints: *RIPunch GBCTop *StapleLocation UpperW
*UIConstraints: *RIPunch GBCTop *StapleLocation CenterW
*UIConstraints: *StapleLocation CenterW *RIPunch Left2
*UIConstraints: *StapleLocation CenterW *RIPunch Left3
*UIConstraints: *StapleLocation CenterW *RIPunch Left4
*UIConstraints: *StapleLocation CenterW *RIPunch Right2
*UIConstraints: *StapleLocation CenterW *RIPunch Right3
*UIConstraints: *StapleLocation CenterW *RIPunch Right4
*UIConstraints: *StapleLocation CenterW *RIPunch Upper2
*UIConstraints: *StapleLocation CenterW *RIPunch Upper3
*UIConstraints: *StapleLocation CenterW *RIPunch Upper4
*UIConstraints: *StapleLocation UpperLeft *RIPunch GBCLeft
*UIConstraints: *StapleLocation UpperRight *RIPunch GBCLeft
*UIConstraints: *StapleLocation LeftW *RIPunch GBCLeft
*UIConstraints: *StapleLocation RightW *RIPunch GBCLeft
*UIConstraints: *StapleLocation UpperW *RIPunch GBCLeft
*UIConstraints: *StapleLocation CenterW *RIPunch GBCLeft
*UIConstraints: *StapleLocation UpperLeft *RIPunch GBCRight
*UIConstraints: *StapleLocation UpperRight *RIPunch GBCRight
*UIConstraints: *StapleLocation LeftW *RIPunch GBCRight
*UIConstraints: *StapleLocation RightW *RIPunch GBCRight
*UIConstraints: *StapleLocation UpperW *RIPunch GBCRight
*UIConstraints: *StapleLocation CenterW *RIPunch GBCRight
*UIConstraints: *StapleLocation UpperLeft *RIPunch GBCTop
*UIConstraints: *StapleLocation UpperRight *RIPunch GBCTop
*UIConstraints: *StapleLocation LeftW *RIPunch GBCTop
*UIConstraints: *StapleLocation RightW *RIPunch GBCTop
*UIConstraints: *StapleLocation UpperW *RIPunch GBCTop
*UIConstraints: *StapleLocation CenterW *RIPunch GBCTop
*%========== Punch / Destination ==========
*UIConstraints: *OutputBin FinCOLUMLower *RIPunch Left2
*UIConstraints: *OutputBin FinCOLUMLower *RIPunch Left3
*UIConstraints: *OutputBin FinCOLUMLower *RIPunch Left4
*UIConstraints: *OutputBin FinCOLUMLower *RIPunch Right2
*UIConstraints: *OutputBin FinCOLUMLower *RIPunch Right3
*UIConstraints: *OutputBin FinCOLUMLower *RIPunch Right4
*UIConstraints: *OutputBin FinCOLUMLower *RIPunch Upper2
*UIConstraints: *OutputBin FinCOLUMLower *RIPunch Upper3
*UIConstraints: *OutputBin FinCOLUMLower *RIPunch Upper4
*UIConstraints: *OutputBin FinCOLUMLower *RIPunch GBCLeft
*UIConstraints: *OutputBin FinCOLUMLower *RIPunch GBCRight
*UIConstraints: *OutputBin FinCOLUMLower *RIPunch GBCTop
*UIConstraints: *OutputBin FinISHIKARI *RIPunch Left2
*UIConstraints: *OutputBin FinISHIKARI *RIPunch Left3
*UIConstraints: *OutputBin FinISHIKARI *RIPunch Left4
*UIConstraints: *OutputBin FinISHIKARI *RIPunch Right2
*UIConstraints: *OutputBin FinISHIKARI *RIPunch Right3
*UIConstraints: *OutputBin FinISHIKARI *RIPunch Right4
*UIConstraints: *OutputBin FinISHIKARI *RIPunch Upper2
*UIConstraints: *OutputBin FinISHIKARI *RIPunch Upper3
*UIConstraints: *OutputBin FinISHIKARI *RIPunch Upper4
*UIConstraints: *OutputBin FinISHIKARI *RIPunch GBCLeft
*UIConstraints: *OutputBin FinISHIKARI *RIPunch GBCRight
*UIConstraints: *OutputBin FinISHIKARI *RIPunch GBCTop
*UIConstraints: *OutputBin FinTENRYU *RIPunch Left2
*UIConstraints: *OutputBin FinTENRYU *RIPunch Left3
*UIConstraints: *OutputBin FinTENRYU *RIPunch Left4
*UIConstraints: *OutputBin FinTENRYU *RIPunch Right2
*UIConstraints: *OutputBin FinTENRYU *RIPunch Right3
*UIConstraints: *OutputBin FinTENRYU *RIPunch Right4
*UIConstraints: *OutputBin FinTENRYU *RIPunch Upper2
*UIConstraints: *OutputBin FinTENRYU *RIPunch Upper3
*UIConstraints: *OutputBin FinTENRYU *RIPunch Upper4
*UIConstraints: *OutputBin FinTENRYU *RIPunch GBCLeft
*UIConstraints: *OutputBin FinTENRYU *RIPunch GBCRight
*UIConstraints: *OutputBin FinTENRYU *RIPunch GBCTop
*UIConstraints: *OutputBin FoldTray *RIPunch Left2
*UIConstraints: *OutputBin FoldTray *RIPunch Left3
*UIConstraints: *OutputBin FoldTray *RIPunch Left4
*UIConstraints: *OutputBin FoldTray *RIPunch Right2
*UIConstraints: *OutputBin FoldTray *RIPunch Right3
*UIConstraints: *OutputBin FoldTray *RIPunch Right4
*UIConstraints: *OutputBin FoldTray *RIPunch Upper2
*UIConstraints: *OutputBin FoldTray *RIPunch Upper3
*UIConstraints: *OutputBin FoldTray *RIPunch Upper4
*UIConstraints: *OutputBin FoldTray *RIPunch GBCLeft
*UIConstraints: *OutputBin FoldTray *RIPunch GBCRight
*UIConstraints: *OutputBin FoldTray *RIPunch GBCTop
*UIConstraints: *OutputBin StackTray1 *RIPunch Left2
*UIConstraints: *OutputBin StackTray1 *RIPunch Left3
*UIConstraints: *OutputBin StackTray1 *RIPunch Left4
*UIConstraints: *OutputBin StackTray1 *RIPunch Right2
*UIConstraints: *OutputBin StackTray1 *RIPunch Right3
*UIConstraints: *OutputBin StackTray1 *RIPunch Right4
*UIConstraints: *OutputBin StackTray1 *RIPunch Upper2
*UIConstraints: *OutputBin StackTray1 *RIPunch Upper3
*UIConstraints: *OutputBin StackTray1 *RIPunch Upper4
*UIConstraints: *OutputBin StackTray2 *RIPunch Left2
*UIConstraints: *OutputBin StackTray2 *RIPunch Left3
*UIConstraints: *OutputBin StackTray2 *RIPunch Left4
*UIConstraints: *OutputBin StackTray2 *RIPunch Right2
*UIConstraints: *OutputBin StackTray2 *RIPunch Right3
*UIConstraints: *OutputBin StackTray2 *RIPunch Right4
*UIConstraints: *OutputBin StackTray2 *RIPunch Upper2
*UIConstraints: *OutputBin StackTray2 *RIPunch Upper3
*UIConstraints: *OutputBin StackTray2 *RIPunch Upper4
*UIConstraints: *OutputBin Trimmer *RIPunch Left2
*UIConstraints: *OutputBin Trimmer *RIPunch Left3
*UIConstraints: *OutputBin Trimmer *RIPunch Left4
*UIConstraints: *OutputBin Trimmer *RIPunch Right2
*UIConstraints: *OutputBin Trimmer *RIPunch Right3
*UIConstraints: *OutputBin Trimmer *RIPunch Right4
*UIConstraints: *OutputBin Trimmer *RIPunch Upper2
*UIConstraints: *OutputBin Trimmer *RIPunch Upper3
*UIConstraints: *OutputBin Trimmer *RIPunch Upper4
*UIConstraints: *OutputBin Trimmer *RIPunch GBCLeft
*UIConstraints: *OutputBin Trimmer *RIPunch GBCRight
*UIConstraints: *OutputBin Trimmer *RIPunch GBCTop
*UIConstraints: *OutputBin PlockmaticTray *RIPunch Left2
*UIConstraints: *OutputBin PlockmaticTray *RIPunch Left3
*UIConstraints: *OutputBin PlockmaticTray *RIPunch Left4
*UIConstraints: *OutputBin PlockmaticTray *RIPunch Right2
*UIConstraints: *OutputBin PlockmaticTray *RIPunch Right3
*UIConstraints: *OutputBin PlockmaticTray *RIPunch Right4
*UIConstraints: *OutputBin PlockmaticTray *RIPunch Upper2
*UIConstraints: *OutputBin PlockmaticTray *RIPunch Upper3
*UIConstraints: *OutputBin PlockmaticTray *RIPunch Upper4
*UIConstraints: *OutputBin PlockmaticTray *RIPunch GBCLeft
*UIConstraints: *OutputBin PlockmaticTray *RIPunch GBCRight
*UIConstraints: *OutputBin PlockmaticTray *RIPunch GBCTop
*UIConstraints: *RIPunch Left2 *OutputBin FinCOLUMLower
*UIConstraints: *RIPunch Left3 *OutputBin FinCOLUMLower
*UIConstraints: *RIPunch Left4 *OutputBin FinCOLUMLower
*UIConstraints: *RIPunch Right2 *OutputBin FinCOLUMLower
*UIConstraints: *RIPunch Right3 *OutputBin FinCOLUMLower
*UIConstraints: *RIPunch Right4 *OutputBin FinCOLUMLower
*UIConstraints: *RIPunch Upper2 *OutputBin FinCOLUMLower
*UIConstraints: *RIPunch Upper3 *OutputBin FinCOLUMLower
*UIConstraints: *RIPunch Upper4 *OutputBin FinCOLUMLower
*UIConstraints: *RIPunch GBCLeft *OutputBin FinCOLUMLower
*UIConstraints: *RIPunch GBCRight *OutputBin FinCOLUMLower
*UIConstraints: *RIPunch GBCTop *OutputBin FinCOLUMLower
*UIConstraints: *RIPunch Left2 *OutputBin FinISHIKARI
*UIConstraints: *RIPunch Left3 *OutputBin FinISHIKARI
*UIConstraints: *RIPunch Left4 *OutputBin FinISHIKARI
*UIConstraints: *RIPunch Right2 *OutputBin FinISHIKARI
*UIConstraints: *RIPunch Right3 *OutputBin FinISHIKARI
*UIConstraints: *RIPunch Right4 *OutputBin FinISHIKARI
*UIConstraints: *RIPunch Upper2 *OutputBin FinISHIKARI
*UIConstraints: *RIPunch Upper3 *OutputBin FinISHIKARI
*UIConstraints: *RIPunch Upper4 *OutputBin FinISHIKARI
*UIConstraints: *RIPunch GBCLeft *OutputBin FinISHIKARI
*UIConstraints: *RIPunch GBCRight *OutputBin FinISHIKARI
*UIConstraints: *RIPunch GBCTop *OutputBin FinISHIKARI
*UIConstraints: *RIPunch Left2 *OutputBin FinTENRYU
*UIConstraints: *RIPunch Left3 *OutputBin FinTENRYU
*UIConstraints: *RIPunch Left4 *OutputBin FinTENRYU
*UIConstraints: *RIPunch Right2 *OutputBin FinTENRYU
*UIConstraints: *RIPunch Right3 *OutputBin FinTENRYU
*UIConstraints: *RIPunch Right4 *OutputBin FinTENRYU
*UIConstraints: *RIPunch Upper2 *OutputBin FinTENRYU
*UIConstraints: *RIPunch Upper3 *OutputBin FinTENRYU
*UIConstraints: *RIPunch Upper4 *OutputBin FinTENRYU
*UIConstraints: *RIPunch GBCLeft *OutputBin FinTENRYU
*UIConstraints: *RIPunch GBCRight *OutputBin FinTENRYU
*UIConstraints: *RIPunch GBCTop *OutputBin FinTENRYU
*UIConstraints: *RIPunch Left2 *OutputBin FoldTray
*UIConstraints: *RIPunch Left3 *OutputBin FoldTray
*UIConstraints: *RIPunch Left4 *OutputBin FoldTray
*UIConstraints: *RIPunch Right2 *OutputBin FoldTray
*UIConstraints: *RIPunch Right3 *OutputBin FoldTray
*UIConstraints: *RIPunch Right4 *OutputBin FoldTray
*UIConstraints: *RIPunch Upper2 *OutputBin FoldTray
*UIConstraints: *RIPunch Upper3 *OutputBin FoldTray
*UIConstraints: *RIPunch Upper4 *OutputBin FoldTray
*UIConstraints: *RIPunch GBCLeft *OutputBin FoldTray
*UIConstraints: *RIPunch GBCRight *OutputBin FoldTray
*UIConstraints: *RIPunch GBCTop *OutputBin FoldTray
*UIConstraints: *RIPunch Left2 *OutputBin StackTray1
*UIConstraints: *RIPunch Left3 *OutputBin StackTray1
*UIConstraints: *RIPunch Left4 *OutputBin StackTray1
*UIConstraints: *RIPunch Right2 *OutputBin StackTray1
*UIConstraints: *RIPunch Right3 *OutputBin StackTray1
*UIConstraints: *RIPunch Right4 *OutputBin StackTray1
*UIConstraints: *RIPunch Upper2 *OutputBin StackTray1
*UIConstraints: *RIPunch Upper3 *OutputBin StackTray1
*UIConstraints: *RIPunch Upper4 *OutputBin StackTray1
*UIConstraints: *RIPunch Left2 *OutputBin StackTray2
*UIConstraints: *RIPunch Left3 *OutputBin StackTray2
*UIConstraints: *RIPunch Left4 *OutputBin StackTray2
*UIConstraints: *RIPunch Right2 *OutputBin StackTray2
*UIConstraints: *RIPunch Right3 *OutputBin StackTray2
*UIConstraints: *RIPunch Right4 *OutputBin StackTray2
*UIConstraints: *RIPunch Upper2 *OutputBin StackTray2
*UIConstraints: *RIPunch Upper3 *OutputBin StackTray2
*UIConstraints: *RIPunch Upper4 *OutputBin StackTray2
*UIConstraints: *RIPunch Left2 *OutputBin Trimmer
*UIConstraints: *RIPunch Left3 *OutputBin Trimmer
*UIConstraints: *RIPunch Left4 *OutputBin Trimmer
*UIConstraints: *RIPunch Right2 *OutputBin Trimmer
*UIConstraints: *RIPunch Right3 *OutputBin Trimmer
*UIConstraints: *RIPunch Right4 *OutputBin Trimmer
*UIConstraints: *RIPunch Upper2 *OutputBin Trimmer
*UIConstraints: *RIPunch Upper3 *OutputBin Trimmer
*UIConstraints: *RIPunch Upper4 *OutputBin Trimmer
*UIConstraints: *RIPunch GBCLeft *OutputBin Trimmer
*UIConstraints: *RIPunch GBCRight *OutputBin Trimmer
*UIConstraints: *RIPunch GBCTop *OutputBin Trimmer
*UIConstraints: *RIPunch Left2 *OutputBin PlockmaticTray
*UIConstraints: *RIPunch Left3 *OutputBin PlockmaticTray
*UIConstraints: *RIPunch Left4 *OutputBin PlockmaticTray
*UIConstraints: *RIPunch Right2 *OutputBin PlockmaticTray
*UIConstraints: *RIPunch Right3 *OutputBin PlockmaticTray
*UIConstraints: *RIPunch Right4 *OutputBin PlockmaticTray
*UIConstraints: *RIPunch Upper2 *OutputBin PlockmaticTray
*UIConstraints: *RIPunch Upper3 *OutputBin PlockmaticTray
*UIConstraints: *RIPunch Upper4 *OutputBin PlockmaticTray
*UIConstraints: *RIPunch GBCLeft *OutputBin PlockmaticTray
*UIConstraints: *RIPunch GBCRight *OutputBin PlockmaticTray
*UIConstraints: *RIPunch GBCTop *OutputBin PlockmaticTray
*%========== Fold Type / Destination ==========
*UIConstraints: *RIFoldType Twofold *OutputBin Proof
*UIConstraints: *RIFoldType Twofold *OutputBin FinCOLUMShift
*UIConstraints: *RIFoldType Twofold *OutputBin FinCOLUMLower
*UIConstraints: *RIFoldType Twofold *OutputBin FinVICTEShift
*UIConstraints: *RIFoldType Twofold *OutputBin FinISHIKARI
*UIConstraints: *RIFoldType Twofold *OutputBin FinTENRYU
*UIConstraints: *RIFoldType Twofold *OutputBin StackTray1
*UIConstraints: *RIFoldType Twofold *OutputBin StackTray2
*UIConstraints: *RIFoldType Twofold *OutputBin Trimmer
*UIConstraints: *RIFoldType Twofold *OutputBin PlockmaticTray
*UIConstraints: *RIFoldType ThreefoldIn *OutputBin Proof
*UIConstraints: *RIFoldType ThreefoldIn *OutputBin FinCOLUMShift
*UIConstraints: *RIFoldType ThreefoldIn *OutputBin FinCOLUMLower
*UIConstraints: *RIFoldType ThreefoldIn *OutputBin FinVICTEShift
*UIConstraints: *RIFoldType ThreefoldIn *OutputBin FinISHIKARI
*UIConstraints: *RIFoldType ThreefoldIn *OutputBin FinTENRYU
*UIConstraints: *RIFoldType ThreefoldIn *OutputBin StackTray1
*UIConstraints: *RIFoldType ThreefoldIn *OutputBin StackTray2
*UIConstraints: *RIFoldType ThreefoldIn *OutputBin Trimmer
*UIConstraints: *RIFoldType ThreefoldIn *OutputBin PlockmaticTray
*UIConstraints: *RIFoldType ThreefoldOut *OutputBin Proof
*UIConstraints: *RIFoldType ThreefoldOut *OutputBin FinCOLUMShift
*UIConstraints: *RIFoldType ThreefoldOut *OutputBin FinCOLUMLower
*UIConstraints: *RIFoldType ThreefoldOut *OutputBin FinVICTEShift
*UIConstraints: *RIFoldType ThreefoldOut *OutputBin FinISHIKARI
*UIConstraints: *RIFoldType ThreefoldOut *OutputBin FinTENRYU
*UIConstraints: *RIFoldType ThreefoldOut *OutputBin StackTray1
*UIConstraints: *RIFoldType ThreefoldOut *OutputBin StackTray2
*UIConstraints: *RIFoldType ThreefoldOut *OutputBin Trimmer
*UIConstraints: *RIFoldType ThreefoldOut *OutputBin PlockmaticTray
*UIConstraints: *RIFoldType Quarto *OutputBin Proof
*UIConstraints: *RIFoldType Quarto *OutputBin FinCOLUMShift
*UIConstraints: *RIFoldType Quarto *OutputBin FinCOLUMLower
*UIConstraints: *RIFoldType Quarto *OutputBin FinVICTEShift
*UIConstraints: *RIFoldType Quarto *OutputBin FinISHIKARI
*UIConstraints: *RIFoldType Quarto *OutputBin FinTENRYU
*UIConstraints: *RIFoldType Quarto *OutputBin StackTray1
*UIConstraints: *RIFoldType Quarto *OutputBin StackTray2
*UIConstraints: *RIFoldType Quarto *OutputBin Trimmer
*UIConstraints: *RIFoldType Quarto *OutputBin PlockmaticTray
*UIConstraints: *RIFoldType Gatefold *OutputBin Proof
*UIConstraints: *RIFoldType Gatefold *OutputBin FinCOLUMShift
*UIConstraints: *RIFoldType Gatefold *OutputBin FinCOLUMLower
*UIConstraints: *RIFoldType Gatefold *OutputBin FinVICTEShift
*UIConstraints: *RIFoldType Gatefold *OutputBin FinISHIKARI
*UIConstraints: *RIFoldType Gatefold *OutputBin FinTENRYU
*UIConstraints: *RIFoldType Gatefold *OutputBin StackTray1
*UIConstraints: *RIFoldType Gatefold *OutputBin StackTray2
*UIConstraints: *RIFoldType Gatefold *OutputBin Trimmer
*UIConstraints: *RIFoldType Gatefold *OutputBin PlockmaticTray
*UIConstraints: *OutputBin Proof *RIFoldType Twofold
*UIConstraints: *OutputBin FinCOLUMShift *RIFoldType Twofold
*UIConstraints: *OutputBin FinCOLUMLower *RIFoldType Twofold
*UIConstraints: *OutputBin FinVICTEShift *RIFoldType Twofold
*UIConstraints: *OutputBin FinISHIKARI *RIFoldType Twofold
*UIConstraints: *OutputBin FinTENRYU *RIFoldType Twofold
*UIConstraints: *OutputBin StackTray1 *RIFoldType Twofold
*UIConstraints: *OutputBin StackTray2 *RIFoldType Twofold
*UIConstraints: *OutputBin Trimmer *RIFoldType Twofold
*UIConstraints: *OutputBin PlockmaticTray *RIFoldType Twofold
*UIConstraints: *OutputBin Proof *RIFoldType ThreefoldIn
*UIConstraints: *OutputBin FinCOLUMShift *RIFoldType ThreefoldIn
*UIConstraints: *OutputBin FinCOLUMLower *RIFoldType ThreefoldIn
*UIConstraints: *OutputBin FinVICTEShift *RIFoldType ThreefoldIn
*UIConstraints: *OutputBin FinISHIKARI *RIFoldType ThreefoldIn
*UIConstraints: *OutputBin FinTENRYU *RIFoldType ThreefoldIn
*UIConstraints: *OutputBin StackTray1 *RIFoldType ThreefoldIn
*UIConstraints: *OutputBin StackTray2 *RIFoldType ThreefoldIn
*UIConstraints: *OutputBin Trimmer *RIFoldType ThreefoldIn
*UIConstraints: *OutputBin PlockmaticTray *RIFoldType ThreefoldIn
*UIConstraints: *OutputBin Proof *RIFoldType ThreefoldOut
*UIConstraints: *OutputBin FinCOLUMShift *RIFoldType ThreefoldOut
*UIConstraints: *OutputBin FinCOLUMLower *RIFoldType ThreefoldOut
*UIConstraints: *OutputBin FinVICTEShift *RIFoldType ThreefoldOut
*UIConstraints: *OutputBin FinISHIKARI *RIFoldType ThreefoldOut
*UIConstraints: *OutputBin FinTENRYU *RIFoldType ThreefoldOut
*UIConstraints: *OutputBin StackTray1 *RIFoldType ThreefoldOut
*UIConstraints: *OutputBin StackTray2 *RIFoldType ThreefoldOut
*UIConstraints: *OutputBin Trimmer *RIFoldType ThreefoldOut
*UIConstraints: *OutputBin PlockmaticTray *RIFoldType ThreefoldOut
*UIConstraints: *OutputBin Proof *RIFoldType Quarto
*UIConstraints: *OutputBin FinCOLUMShift *RIFoldType Quarto
*UIConstraints: *OutputBin FinCOLUMLower *RIFoldType Quarto
*UIConstraints: *OutputBin FinVICTEShift *RIFoldType Quarto
*UIConstraints: *OutputBin FinISHIKARI *RIFoldType Quarto
*UIConstraints: *OutputBin FinTENRYU *RIFoldType Quarto
*UIConstraints: *OutputBin StackTray1 *RIFoldType Quarto
*UIConstraints: *OutputBin StackTray2 *RIFoldType Quarto
*UIConstraints: *OutputBin Trimmer *RIFoldType Quarto
*UIConstraints: *OutputBin PlockmaticTray *RIFoldType Quarto
*UIConstraints: *OutputBin Proof *RIFoldType Gatefold
*UIConstraints: *OutputBin FinCOLUMShift *RIFoldType Gatefold
*UIConstraints: *OutputBin FinCOLUMLower *RIFoldType Gatefold
*UIConstraints: *OutputBin FinVICTEShift *RIFoldType Gatefold
*UIConstraints: *OutputBin FinISHIKARI *RIFoldType Gatefold
*UIConstraints: *OutputBin FinTENRYU *RIFoldType Gatefold
*UIConstraints: *OutputBin StackTray1 *RIFoldType Gatefold
*UIConstraints: *OutputBin StackTray2 *RIFoldType Gatefold
*UIConstraints: *OutputBin Trimmer *RIFoldType Gatefold
*UIConstraints: *OutputBin PlockmaticTray *RIFoldType Gatefold
*%========== Z-fold / Destination ==========
*UIConstraints: *RIZfold Bottom *OutputBin FinCOLUMLower
*UIConstraints: *RIZfold Bottom *OutputBin FinISHIKARI
*UIConstraints: *RIZfold Bottom *OutputBin FinTENRYU
*UIConstraints: *RIZfold Bottom *OutputBin StackTray1
*UIConstraints: *RIZfold Bottom *OutputBin StackTray2
*UIConstraints: *RIZfold Bottom *OutputBin Trimmer
*UIConstraints: *RIZfold Bottom *OutputBin PlockmaticTray
*UIConstraints: *RIZfold Right *OutputBin FinCOLUMLower
*UIConstraints: *RIZfold Right *OutputBin FinISHIKARI
*UIConstraints: *RIZfold Right *OutputBin FinTENRYU
*UIConstraints: *RIZfold Right *OutputBin StackTray1
*UIConstraints: *RIZfold Right *OutputBin StackTray2
*UIConstraints: *RIZfold Right *OutputBin Trimmer
*UIConstraints: *RIZfold Right *OutputBin PlockmaticTray
*UIConstraints: *RIZfold Left *OutputBin FinCOLUMLower
*UIConstraints: *RIZfold Left *OutputBin FinISHIKARI
*UIConstraints: *RIZfold Left *OutputBin FinTENRYU
*UIConstraints: *RIZfold Left *OutputBin StackTray1
*UIConstraints: *RIZfold Left *OutputBin StackTray2
*UIConstraints: *RIZfold Left *OutputBin Trimmer
*UIConstraints: *RIZfold Left *OutputBin PlockmaticTray
*UIConstraints: *OutputBin FinCOLUMLower *RIZfold Bottom
*UIConstraints: *OutputBin FinISHIKARI *RIZfold Bottom
*UIConstraints: *OutputBin FinTENRYU *RIZfold Bottom
*UIConstraints: *OutputBin StackTray1 *RIZfold Bottom
*UIConstraints: *OutputBin StackTray2 *RIZfold Bottom
*UIConstraints: *OutputBin Trimmer *RIZfold Bottom
*UIConstraints: *OutputBin PlockmaticTray *RIZfold Bottom
*UIConstraints: *OutputBin FinCOLUMLower *RIZfold Right
*UIConstraints: *OutputBin FinISHIKARI *RIZfold Right
*UIConstraints: *OutputBin FinTENRYU *RIZfold Right
*UIConstraints: *OutputBin StackTray1 *RIZfold Right
*UIConstraints: *OutputBin StackTray2 *RIZfold Right
*UIConstraints: *OutputBin Trimmer *RIZfold Right
*UIConstraints: *OutputBin PlockmaticTray *RIZfold Right
*UIConstraints: *OutputBin FinCOLUMLower *RIZfold Left
*UIConstraints: *OutputBin FinISHIKARI *RIZfold Left
*UIConstraints: *OutputBin FinTENRYU *RIZfold Left
*UIConstraints: *OutputBin StackTray1 *RIZfold Left
*UIConstraints: *OutputBin StackTray2 *RIZfold Left
*UIConstraints: *OutputBin Trimmer *RIZfold Left
*UIConstraints: *OutputBin PlockmaticTray *RIZfold Left
*%========== Perfect/Ring Binding / Destination ==========
*UIConstraints: *RIBind Perfect *OutputBin Proof
*UIConstraints: *RIBind Perfect *OutputBin FinCOLUMShift
*UIConstraints: *RIBind Perfect *OutputBin FinCOLUMLower
*UIConstraints: *RIBind Perfect *OutputBin FinVICTEShift
*UIConstraints: *RIBind Perfect *OutputBin FinISHIKARI
*UIConstraints: *RIBind Perfect *OutputBin FoldTray
*UIConstraints: *RIBind Perfect *OutputBin StackTray1
*UIConstraints: *RIBind Perfect *OutputBin StackTray2
*UIConstraints: *RIBind Perfect *OutputBin Trimmer
*UIConstraints: *RIBind Perfect *OutputBin PlockmaticTray
*UIConstraints: *RIBind RingBind *OutputBin Proof
*UIConstraints: *RIBind RingBind *OutputBin FinCOLUMShift
*UIConstraints: *RIBind RingBind *OutputBin FinCOLUMLower
*UIConstraints: *RIBind RingBind *OutputBin FinVICTEShift
*UIConstraints: *RIBind RingBind *OutputBin FinTENRYU
*UIConstraints: *RIBind RingBind *OutputBin FoldTray
*UIConstraints: *RIBind RingBind *OutputBin StackTray1
*UIConstraints: *RIBind RingBind *OutputBin StackTray2
*UIConstraints: *RIBind RingBind *OutputBin Trimmer
*UIConstraints: *RIBind RingBind *OutputBin PlockmaticTray
*UIConstraints: *RIBind RingPunch *OutputBin Proof
*UIConstraints: *RIBind RingPunch *OutputBin FinCOLUMShift
*UIConstraints: *RIBind RingPunch *OutputBin FinCOLUMLower
*UIConstraints: *RIBind RingPunch *OutputBin FinVICTEShift
*UIConstraints: *RIBind RingPunch *OutputBin FinTENRYU
*UIConstraints: *RIBind RingPunch *OutputBin FoldTray
*UIConstraints: *RIBind RingPunch *OutputBin StackTray1
*UIConstraints: *RIBind RingPunch *OutputBin StackTray2
*UIConstraints: *RIBind RingPunch *OutputBin Trimmer
*UIConstraints: *RIBind RingPunch *OutputBin PlockmaticTray
*UIConstraints: *OutputBin Proof *RIBind Perfect
*UIConstraints: *OutputBin FinCOLUMShift *RIBind Perfect
*UIConstraints: *OutputBin FinCOLUMLower *RIBind Perfect
*UIConstraints: *OutputBin FinVICTEShift *RIBind Perfect
*UIConstraints: *OutputBin FinISHIKARI *RIBind Perfect
*UIConstraints: *OutputBin FoldTray *RIBind Perfect
*UIConstraints: *OutputBin StackTray1 *RIBind Perfect
*UIConstraints: *OutputBin StackTray2 *RIBind Perfect
*UIConstraints: *OutputBin Trimmer *RIBind Perfect
*UIConstraints: *OutputBin PlockmaticTray *RIBind Perfect
*UIConstraints: *OutputBin Proof *RIBind RingBind
*UIConstraints: *OutputBin FinCOLUMShift *RIBind RingBind
*UIConstraints: *OutputBin FinCOLUMLower *RIBind RingBind
*UIConstraints: *OutputBin FinVICTEShift *RIBind RingBind
*UIConstraints: *OutputBin FinTENRYU *RIBind RingBind
*UIConstraints: *OutputBin FoldTray *RIBind RingBind
*UIConstraints: *OutputBin StackTray1 *RIBind RingBind
*UIConstraints: *OutputBin StackTray2 *RIBind RingBind
*UIConstraints: *OutputBin Trimmer *RIBind RingBind
*UIConstraints: *OutputBin PlockmaticTray *RIBind RingBind
*UIConstraints: *OutputBin Proof *RIBind RingPunch
*UIConstraints: *OutputBin FinCOLUMShift *RIBind RingPunch
*UIConstraints: *OutputBin FinCOLUMLower *RIBind RingPunch
*UIConstraints: *OutputBin FinVICTEShift *RIBind RingPunch
*UIConstraints: *OutputBin FinTENRYU *RIBind RingPunch
*UIConstraints: *OutputBin FoldTray *RIBind RingPunch
*UIConstraints: *OutputBin StackTray1 *RIBind RingPunch
*UIConstraints: *OutputBin StackTray2 *RIBind RingPunch
*UIConstraints: *OutputBin Trimmer *RIBind RingPunch
*UIConstraints: *OutputBin PlockmaticTray *RIBind RingPunch
*%========== Trimmer Cut And Position Adjustment / Destination ==========
*UIConstraints: *TrimmerCutAndPosition 20mm *OutputBin Proof
*UIConstraints: *TrimmerCutAndPosition 20mm *OutputBin FinCOLUMShift
*UIConstraints: *TrimmerCutAndPosition 20mm *OutputBin FinCOLUMLower
*UIConstraints: *TrimmerCutAndPosition 20mm *OutputBin FinVICTEShift
*UIConstraints: *TrimmerCutAndPosition 20mm *OutputBin FinISHIKARI
*UIConstraints: *TrimmerCutAndPosition 20mm *OutputBin FinTENRYU
*UIConstraints: *TrimmerCutAndPosition 20mm *OutputBin FoldTray
*UIConstraints: *TrimmerCutAndPosition 20mm *OutputBin StackTray1
*UIConstraints: *TrimmerCutAndPosition 20mm *OutputBin StackTray2
*UIConstraints: *TrimmerCutAndPosition 20mm *OutputBin PlockmaticTray
*UIConstraints: *TrimmerCutAndPosition 30mm *OutputBin Proof
*UIConstraints: *TrimmerCutAndPosition 30mm *OutputBin FinCOLUMShift
*UIConstraints: *TrimmerCutAndPosition 30mm *OutputBin FinCOLUMLower
*UIConstraints: *TrimmerCutAndPosition 30mm *OutputBin FinVICTEShift
*UIConstraints: *TrimmerCutAndPosition 30mm *OutputBin FinISHIKARI
*UIConstraints: *TrimmerCutAndPosition 30mm *OutputBin FinTENRYU
*UIConstraints: *TrimmerCutAndPosition 30mm *OutputBin FoldTray
*UIConstraints: *TrimmerCutAndPosition 30mm *OutputBin StackTray1
*UIConstraints: *TrimmerCutAndPosition 30mm *OutputBin StackTray2
*UIConstraints: *TrimmerCutAndPosition 30mm *OutputBin PlockmaticTray
*UIConstraints: *TrimmerCutAndPosition 40mm *OutputBin Proof
*UIConstraints: *TrimmerCutAndPosition 40mm *OutputBin FinCOLUMShift
*UIConstraints: *TrimmerCutAndPosition 40mm *OutputBin FinCOLUMLower
*UIConstraints: *TrimmerCutAndPosition 40mm *OutputBin FinVICTEShift
*UIConstraints: *TrimmerCutAndPosition 40mm *OutputBin FinISHIKARI
*UIConstraints: *TrimmerCutAndPosition 40mm *OutputBin FinTENRYU
*UIConstraints: *TrimmerCutAndPosition 40mm *OutputBin FoldTray
*UIConstraints: *TrimmerCutAndPosition 40mm *OutputBin StackTray1
*UIConstraints: *TrimmerCutAndPosition 40mm *OutputBin StackTray2
*UIConstraints: *TrimmerCutAndPosition 40mm *OutputBin PlockmaticTray
*UIConstraints: *TrimmerCutAndPosition 50mm *OutputBin Proof
*UIConstraints: *TrimmerCutAndPosition 50mm *OutputBin FinCOLUMShift
*UIConstraints: *TrimmerCutAndPosition 50mm *OutputBin FinCOLUMLower
*UIConstraints: *TrimmerCutAndPosition 50mm *OutputBin FinVICTEShift
*UIConstraints: *TrimmerCutAndPosition 50mm *OutputBin FinISHIKARI
*UIConstraints: *TrimmerCutAndPosition 50mm *OutputBin FinTENRYU
*UIConstraints: *TrimmerCutAndPosition 50mm *OutputBin FoldTray
*UIConstraints: *TrimmerCutAndPosition 50mm *OutputBin StackTray1
*UIConstraints: *TrimmerCutAndPosition 50mm *OutputBin StackTray2
*UIConstraints: *TrimmerCutAndPosition 50mm *OutputBin PlockmaticTray
*UIConstraints: *TrimmerCutAndPosition 60mm *OutputBin Proof
*UIConstraints: *TrimmerCutAndPosition 60mm *OutputBin FinCOLUMShift
*UIConstraints: *TrimmerCutAndPosition 60mm *OutputBin FinCOLUMLower
*UIConstraints: *TrimmerCutAndPosition 60mm *OutputBin FinVICTEShift
*UIConstraints: *TrimmerCutAndPosition 60mm *OutputBin FinISHIKARI
*UIConstraints: *TrimmerCutAndPosition 60mm *OutputBin FinTENRYU
*UIConstraints: *TrimmerCutAndPosition 60mm *OutputBin FoldTray
*UIConstraints: *TrimmerCutAndPosition 60mm *OutputBin StackTray1
*UIConstraints: *TrimmerCutAndPosition 60mm *OutputBin StackTray2
*UIConstraints: *TrimmerCutAndPosition 60mm *OutputBin PlockmaticTray
*UIConstraints: *TrimmerCutAndPosition 70mm *OutputBin Proof
*UIConstraints: *TrimmerCutAndPosition 70mm *OutputBin FinCOLUMShift
*UIConstraints: *TrimmerCutAndPosition 70mm *OutputBin FinCOLUMLower
*UIConstraints: *TrimmerCutAndPosition 70mm *OutputBin FinVICTEShift
*UIConstraints: *TrimmerCutAndPosition 70mm *OutputBin FinISHIKARI
*UIConstraints: *TrimmerCutAndPosition 70mm *OutputBin FinTENRYU
*UIConstraints: *TrimmerCutAndPosition 70mm *OutputBin FoldTray
*UIConstraints: *TrimmerCutAndPosition 70mm *OutputBin StackTray1
*UIConstraints: *TrimmerCutAndPosition 70mm *OutputBin StackTray2
*UIConstraints: *TrimmerCutAndPosition 70mm *OutputBin PlockmaticTray
*UIConstraints: *TrimmerCutAndPosition 80mm *OutputBin Proof
*UIConstraints: *TrimmerCutAndPosition 80mm *OutputBin FinCOLUMShift
*UIConstraints: *TrimmerCutAndPosition 80mm *OutputBin FinCOLUMLower
*UIConstraints: *TrimmerCutAndPosition 80mm *OutputBin FinVICTEShift
*UIConstraints: *TrimmerCutAndPosition 80mm *OutputBin FinISHIKARI
*UIConstraints: *TrimmerCutAndPosition 80mm *OutputBin FinTENRYU
*UIConstraints: *TrimmerCutAndPosition 80mm *OutputBin FoldTray
*UIConstraints: *TrimmerCutAndPosition 80mm *OutputBin StackTray1
*UIConstraints: *TrimmerCutAndPosition 80mm *OutputBin StackTray2
*UIConstraints: *TrimmerCutAndPosition 80mm *OutputBin PlockmaticTray
*UIConstraints: *TrimmerCutAndPosition 90mm *OutputBin Proof
*UIConstraints: *TrimmerCutAndPosition 90mm *OutputBin FinCOLUMShift
*UIConstraints: *TrimmerCutAndPosition 90mm *OutputBin FinCOLUMLower
*UIConstraints: *TrimmerCutAndPosition 90mm *OutputBin FinVICTEShift
*UIConstraints: *TrimmerCutAndPosition 90mm *OutputBin FinISHIKARI
*UIConstraints: *TrimmerCutAndPosition 90mm *OutputBin FinTENRYU
*UIConstraints: *TrimmerCutAndPosition 90mm *OutputBin FoldTray
*UIConstraints: *TrimmerCutAndPosition 90mm *OutputBin StackTray1
*UIConstraints: *TrimmerCutAndPosition 90mm *OutputBin StackTray2
*UIConstraints: *TrimmerCutAndPosition 90mm *OutputBin PlockmaticTray
*UIConstraints: *TrimmerCutAndPosition 100mm *OutputBin Proof
*UIConstraints: *TrimmerCutAndPosition 100mm *OutputBin FinCOLUMShift
*UIConstraints: *TrimmerCutAndPosition 100mm *OutputBin FinCOLUMLower
*UIConstraints: *TrimmerCutAndPosition 100mm *OutputBin FinVICTEShift
*UIConstraints: *TrimmerCutAndPosition 100mm *OutputBin FinISHIKARI
*UIConstraints: *TrimmerCutAndPosition 100mm *OutputBin FinTENRYU
*UIConstraints: *TrimmerCutAndPosition 100mm *OutputBin FoldTray
*UIConstraints: *TrimmerCutAndPosition 100mm *OutputBin StackTray1
*UIConstraints: *TrimmerCutAndPosition 100mm *OutputBin StackTray2
*UIConstraints: *TrimmerCutAndPosition 100mm *OutputBin PlockmaticTray
*UIConstraints: *TrimmerCutAndPosition 110mm *OutputBin Proof
*UIConstraints: *TrimmerCutAndPosition 110mm *OutputBin FinCOLUMShift
*UIConstraints: *TrimmerCutAndPosition 110mm *OutputBin FinCOLUMLower
*UIConstraints: *TrimmerCutAndPosition 110mm *OutputBin FinVICTEShift
*UIConstraints: *TrimmerCutAndPosition 110mm *OutputBin FinISHIKARI
*UIConstraints: *TrimmerCutAndPosition 110mm *OutputBin FinTENRYU
*UIConstraints: *TrimmerCutAndPosition 110mm *OutputBin FoldTray
*UIConstraints: *TrimmerCutAndPosition 110mm *OutputBin StackTray1
*UIConstraints: *TrimmerCutAndPosition 110mm *OutputBin StackTray2
*UIConstraints: *TrimmerCutAndPosition 110mm *OutputBin PlockmaticTray
*UIConstraints: *TrimmerCutAndPosition 120mm *OutputBin Proof
*UIConstraints: *TrimmerCutAndPosition 120mm *OutputBin FinCOLUMShift
*UIConstraints: *TrimmerCutAndPosition 120mm *OutputBin FinCOLUMLower
*UIConstraints: *TrimmerCutAndPosition 120mm *OutputBin FinVICTEShift
*UIConstraints: *TrimmerCutAndPosition 120mm *OutputBin FinISHIKARI
*UIConstraints: *TrimmerCutAndPosition 120mm *OutputBin FinTENRYU
*UIConstraints: *TrimmerCutAndPosition 120mm *OutputBin FoldTray
*UIConstraints: *TrimmerCutAndPosition 120mm *OutputBin StackTray1
*UIConstraints: *TrimmerCutAndPosition 120mm *OutputBin StackTray2
*UIConstraints: *TrimmerCutAndPosition 120mm *OutputBin PlockmaticTray
*UIConstraints: *TrimmerCutAndPosition 130mm *OutputBin Proof
*UIConstraints: *TrimmerCutAndPosition 130mm *OutputBin FinCOLUMShift
*UIConstraints: *TrimmerCutAndPosition 130mm *OutputBin FinCOLUMLower
*UIConstraints: *TrimmerCutAndPosition 130mm *OutputBin FinVICTEShift
*UIConstraints: *TrimmerCutAndPosition 130mm *OutputBin FinISHIKARI
*UIConstraints: *TrimmerCutAndPosition 130mm *OutputBin FinTENRYU
*UIConstraints: *TrimmerCutAndPosition 130mm *OutputBin FoldTray
*UIConstraints: *TrimmerCutAndPosition 130mm *OutputBin StackTray1
*UIConstraints: *TrimmerCutAndPosition 130mm *OutputBin StackTray2
*UIConstraints: *TrimmerCutAndPosition 130mm *OutputBin PlockmaticTray
*UIConstraints: *TrimmerCutAndPosition 140mm *OutputBin Proof
*UIConstraints: *TrimmerCutAndPosition 140mm *OutputBin FinCOLUMShift
*UIConstraints: *TrimmerCutAndPosition 140mm *OutputBin FinCOLUMLower
*UIConstraints: *TrimmerCutAndPosition 140mm *OutputBin FinVICTEShift
*UIConstraints: *TrimmerCutAndPosition 140mm *OutputBin FinISHIKARI
*UIConstraints: *TrimmerCutAndPosition 140mm *OutputBin FinTENRYU
*UIConstraints: *TrimmerCutAndPosition 140mm *OutputBin FoldTray
*UIConstraints: *TrimmerCutAndPosition 140mm *OutputBin StackTray1
*UIConstraints: *TrimmerCutAndPosition 140mm *OutputBin StackTray2
*UIConstraints: *TrimmerCutAndPosition 140mm *OutputBin PlockmaticTray
*UIConstraints: *TrimmerCutAndPosition 150mm *OutputBin Proof
*UIConstraints: *TrimmerCutAndPosition 150mm *OutputBin FinCOLUMShift
*UIConstraints: *TrimmerCutAndPosition 150mm *OutputBin FinCOLUMLower
*UIConstraints: *TrimmerCutAndPosition 150mm *OutputBin FinVICTEShift
*UIConstraints: *TrimmerCutAndPosition 150mm *OutputBin FinISHIKARI
*UIConstraints: *TrimmerCutAndPosition 150mm *OutputBin FinTENRYU
*UIConstraints: *TrimmerCutAndPosition 150mm *OutputBin FoldTray
*UIConstraints: *TrimmerCutAndPosition 150mm *OutputBin StackTray1
*UIConstraints: *TrimmerCutAndPosition 150mm *OutputBin StackTray2
*UIConstraints: *TrimmerCutAndPosition 150mm *OutputBin PlockmaticTray
*UIConstraints: *TrimmerCutAndPosition 160mm *OutputBin Proof
*UIConstraints: *TrimmerCutAndPosition 160mm *OutputBin FinCOLUMShift
*UIConstraints: *TrimmerCutAndPosition 160mm *OutputBin FinCOLUMLower
*UIConstraints: *TrimmerCutAndPosition 160mm *OutputBin FinVICTEShift
*UIConstraints: *TrimmerCutAndPosition 160mm *OutputBin FinISHIKARI
*UIConstraints: *TrimmerCutAndPosition 160mm *OutputBin FinTENRYU
*UIConstraints: *TrimmerCutAndPosition 160mm *OutputBin FoldTray
*UIConstraints: *TrimmerCutAndPosition 160mm *OutputBin StackTray1
*UIConstraints: *TrimmerCutAndPosition 160mm *OutputBin StackTray2
*UIConstraints: *TrimmerCutAndPosition 160mm *OutputBin PlockmaticTray
*UIConstraints: *TrimmerCutAndPosition 170mm *OutputBin Proof
*UIConstraints: *TrimmerCutAndPosition 170mm *OutputBin FinCOLUMShift
*UIConstraints: *TrimmerCutAndPosition 170mm *OutputBin FinCOLUMLower
*UIConstraints: *TrimmerCutAndPosition 170mm *OutputBin FinVICTEShift
*UIConstraints: *TrimmerCutAndPosition 170mm *OutputBin FinISHIKARI
*UIConstraints: *TrimmerCutAndPosition 170mm *OutputBin FinTENRYU
*UIConstraints: *TrimmerCutAndPosition 170mm *OutputBin FoldTray
*UIConstraints: *TrimmerCutAndPosition 170mm *OutputBin StackTray1
*UIConstraints: *TrimmerCutAndPosition 170mm *OutputBin StackTray2
*UIConstraints: *TrimmerCutAndPosition 170mm *OutputBin PlockmaticTray
*UIConstraints: *TrimmerCutAndPosition 180mm *OutputBin Proof
*UIConstraints: *TrimmerCutAndPosition 180mm *OutputBin FinCOLUMShift
*UIConstraints: *TrimmerCutAndPosition 180mm *OutputBin FinCOLUMLower
*UIConstraints: *TrimmerCutAndPosition 180mm *OutputBin FinVICTEShift
*UIConstraints: *TrimmerCutAndPosition 180mm *OutputBin FinISHIKARI
*UIConstraints: *TrimmerCutAndPosition 180mm *OutputBin FinTENRYU
*UIConstraints: *TrimmerCutAndPosition 180mm *OutputBin FoldTray
*UIConstraints: *TrimmerCutAndPosition 180mm *OutputBin StackTray1
*UIConstraints: *TrimmerCutAndPosition 180mm *OutputBin StackTray2
*UIConstraints: *TrimmerCutAndPosition 180mm *OutputBin PlockmaticTray
*UIConstraints: *TrimmerCutAndPosition 190mm *OutputBin Proof
*UIConstraints: *TrimmerCutAndPosition 190mm *OutputBin FinCOLUMShift
*UIConstraints: *TrimmerCutAndPosition 190mm *OutputBin FinCOLUMLower
*UIConstraints: *TrimmerCutAndPosition 190mm *OutputBin FinVICTEShift
*UIConstraints: *TrimmerCutAndPosition 190mm *OutputBin FinISHIKARI
*UIConstraints: *TrimmerCutAndPosition 190mm *OutputBin FinTENRYU
*UIConstraints: *TrimmerCutAndPosition 190mm *OutputBin FoldTray
*UIConstraints: *TrimmerCutAndPosition 190mm *OutputBin StackTray1
*UIConstraints: *TrimmerCutAndPosition 190mm *OutputBin StackTray2
*UIConstraints: *TrimmerCutAndPosition 190mm *OutputBin PlockmaticTray
*UIConstraints: *TrimmerCutAndPosition 200mm *OutputBin Proof
*UIConstraints: *TrimmerCutAndPosition 200mm *OutputBin FinCOLUMShift
*UIConstraints: *TrimmerCutAndPosition 200mm *OutputBin FinCOLUMLower
*UIConstraints: *TrimmerCutAndPosition 200mm *OutputBin FinVICTEShift
*UIConstraints: *TrimmerCutAndPosition 200mm *OutputBin FinISHIKARI
*UIConstraints: *TrimmerCutAndPosition 200mm *OutputBin FinTENRYU
*UIConstraints: *TrimmerCutAndPosition 200mm *OutputBin FoldTray
*UIConstraints: *TrimmerCutAndPosition 200mm *OutputBin StackTray1
*UIConstraints: *TrimmerCutAndPosition 200mm *OutputBin StackTray2
*UIConstraints: *TrimmerCutAndPosition 200mm *OutputBin PlockmaticTray
*UIConstraints: *OutputBin Proof *TrimmerCutAndPosition 20mm
*UIConstraints: *OutputBin FinCOLUMShift *TrimmerCutAndPosition 20mm
*UIConstraints: *OutputBin FinCOLUMLower *TrimmerCutAndPosition 20mm
*UIConstraints: *OutputBin FinVICTEShift *TrimmerCutAndPosition 20mm
*UIConstraints: *OutputBin FinISHIKARI *TrimmerCutAndPosition 20mm
*UIConstraints: *OutputBin FinTENRYU *TrimmerCutAndPosition 20mm
*UIConstraints: *OutputBin FoldTray *TrimmerCutAndPosition 20mm
*UIConstraints: *OutputBin StackTray1 *TrimmerCutAndPosition 20mm
*UIConstraints: *OutputBin StackTray2 *TrimmerCutAndPosition 20mm
*UIConstraints: *OutputBin PlockmaticTray *TrimmerCutAndPosition 20mm
*UIConstraints: *OutputBin Proof *TrimmerCutAndPosition 30mm
*UIConstraints: *OutputBin FinCOLUMShift *TrimmerCutAndPosition 30mm
*UIConstraints: *OutputBin FinCOLUMLower *TrimmerCutAndPosition 30mm
*UIConstraints: *OutputBin FinVICTEShift *TrimmerCutAndPosition 30mm
*UIConstraints: *OutputBin FinISHIKARI *TrimmerCutAndPosition 30mm
*UIConstraints: *OutputBin FinTENRYU *TrimmerCutAndPosition 30mm
*UIConstraints: *OutputBin FoldTray *TrimmerCutAndPosition 30mm
*UIConstraints: *OutputBin StackTray1 *TrimmerCutAndPosition 30mm
*UIConstraints: *OutputBin StackTray2 *TrimmerCutAndPosition 30mm
*UIConstraints: *OutputBin PlockmaticTray *TrimmerCutAndPosition 30mm
*UIConstraints: *OutputBin Proof *TrimmerCutAndPosition 40mm
*UIConstraints: *OutputBin FinCOLUMShift *TrimmerCutAndPosition 40mm
*UIConstraints: *OutputBin FinCOLUMLower *TrimmerCutAndPosition 40mm
*UIConstraints: *OutputBin FinVICTEShift *TrimmerCutAndPosition 40mm
*UIConstraints: *OutputBin FinISHIKARI *TrimmerCutAndPosition 40mm
*UIConstraints: *OutputBin FinTENRYU *TrimmerCutAndPosition 40mm
*UIConstraints: *OutputBin FoldTray *TrimmerCutAndPosition 40mm
*UIConstraints: *OutputBin StackTray1 *TrimmerCutAndPosition 40mm
*UIConstraints: *OutputBin StackTray2 *TrimmerCutAndPosition 40mm
*UIConstraints: *OutputBin PlockmaticTray *TrimmerCutAndPosition 40mm
*UIConstraints: *OutputBin Proof *TrimmerCutAndPosition 50mm
*UIConstraints: *OutputBin FinCOLUMShift *TrimmerCutAndPosition 50mm
*UIConstraints: *OutputBin FinCOLUMLower *TrimmerCutAndPosition 50mm
*UIConstraints: *OutputBin FinVICTEShift *TrimmerCutAndPosition 50mm
*UIConstraints: *OutputBin FinISHIKARI *TrimmerCutAndPosition 50mm
*UIConstraints: *OutputBin FinTENRYU *TrimmerCutAndPosition 50mm
*UIConstraints: *OutputBin FoldTray *TrimmerCutAndPosition 50mm
*UIConstraints: *OutputBin StackTray1 *TrimmerCutAndPosition 50mm
*UIConstraints: *OutputBin StackTray2 *TrimmerCutAndPosition 50mm
*UIConstraints: *OutputBin PlockmaticTray *TrimmerCutAndPosition 50mm
*UIConstraints: *OutputBin Proof *TrimmerCutAndPosition 60mm
*UIConstraints: *OutputBin FinCOLUMShift *TrimmerCutAndPosition 60mm
*UIConstraints: *OutputBin FinCOLUMLower *TrimmerCutAndPosition 60mm
*UIConstraints: *OutputBin FinVICTEShift *TrimmerCutAndPosition 60mm
*UIConstraints: *OutputBin FinISHIKARI *TrimmerCutAndPosition 60mm
*UIConstraints: *OutputBin FinTENRYU *TrimmerCutAndPosition 60mm
*UIConstraints: *OutputBin FoldTray *TrimmerCutAndPosition 60mm
*UIConstraints: *OutputBin StackTray1 *TrimmerCutAndPosition 60mm
*UIConstraints: *OutputBin StackTray2 *TrimmerCutAndPosition 60mm
*UIConstraints: *OutputBin PlockmaticTray *TrimmerCutAndPosition 60mm
*UIConstraints: *OutputBin Proof *TrimmerCutAndPosition 70mm
*UIConstraints: *OutputBin FinCOLUMShift *TrimmerCutAndPosition 70mm
*UIConstraints: *OutputBin FinCOLUMLower *TrimmerCutAndPosition 70mm
*UIConstraints: *OutputBin FinVICTEShift *TrimmerCutAndPosition 70mm
*UIConstraints: *OutputBin FinISHIKARI *TrimmerCutAndPosition 70mm
*UIConstraints: *OutputBin FinTENRYU *TrimmerCutAndPosition 70mm
*UIConstraints: *OutputBin FoldTray *TrimmerCutAndPosition 70mm
*UIConstraints: *OutputBin StackTray1 *TrimmerCutAndPosition 70mm
*UIConstraints: *OutputBin StackTray2 *TrimmerCutAndPosition 70mm
*UIConstraints: *OutputBin PlockmaticTray *TrimmerCutAndPosition 70mm
*UIConstraints: *OutputBin Proof *TrimmerCutAndPosition 80mm
*UIConstraints: *OutputBin FinCOLUMShift *TrimmerCutAndPosition 80mm
*UIConstraints: *OutputBin FinCOLUMLower *TrimmerCutAndPosition 80mm
*UIConstraints: *OutputBin FinVICTEShift *TrimmerCutAndPosition 80mm
*UIConstraints: *OutputBin FinISHIKARI *TrimmerCutAndPosition 80mm
*UIConstraints: *OutputBin FinTENRYU *TrimmerCutAndPosition 80mm
*UIConstraints: *OutputBin FoldTray *TrimmerCutAndPosition 80mm
*UIConstraints: *OutputBin StackTray1 *TrimmerCutAndPosition 80mm
*UIConstraints: *OutputBin StackTray2 *TrimmerCutAndPosition 80mm
*UIConstraints: *OutputBin PlockmaticTray *TrimmerCutAndPosition 80mm
*UIConstraints: *OutputBin Proof *TrimmerCutAndPosition 90mm
*UIConstraints: *OutputBin FinCOLUMShift *TrimmerCutAndPosition 90mm
*UIConstraints: *OutputBin FinCOLUMLower *TrimmerCutAndPosition 90mm
*UIConstraints: *OutputBin FinVICTEShift *TrimmerCutAndPosition 90mm
*UIConstraints: *OutputBin FinISHIKARI *TrimmerCutAndPosition 90mm
*UIConstraints: *OutputBin FinTENRYU *TrimmerCutAndPosition 90mm
*UIConstraints: *OutputBin FoldTray *TrimmerCutAndPosition 90mm
*UIConstraints: *OutputBin StackTray1 *TrimmerCutAndPosition 90mm
*UIConstraints: *OutputBin StackTray2 *TrimmerCutAndPosition 90mm
*UIConstraints: *OutputBin PlockmaticTray *TrimmerCutAndPosition 90mm
*UIConstraints: *OutputBin Proof *TrimmerCutAndPosition 100mm
*UIConstraints: *OutputBin FinCOLUMShift *TrimmerCutAndPosition 100mm
*UIConstraints: *OutputBin FinCOLUMLower *TrimmerCutAndPosition 100mm
*UIConstraints: *OutputBin FinVICTEShift *TrimmerCutAndPosition 100mm
*UIConstraints: *OutputBin FinISHIKARI *TrimmerCutAndPosition 100mm
*UIConstraints: *OutputBin FinTENRYU *TrimmerCutAndPosition 100mm
*UIConstraints: *OutputBin FoldTray *TrimmerCutAndPosition 100mm
*UIConstraints: *OutputBin StackTray1 *TrimmerCutAndPosition 100mm
*UIConstraints: *OutputBin StackTray2 *TrimmerCutAndPosition 100mm
*UIConstraints: *OutputBin PlockmaticTray *TrimmerCutAndPosition 100mm
*UIConstraints: *OutputBin Proof *TrimmerCutAndPosition 110mm
*UIConstraints: *OutputBin FinCOLUMShift *TrimmerCutAndPosition 110mm
*UIConstraints: *OutputBin FinCOLUMLower *TrimmerCutAndPosition 110mm
*UIConstraints: *OutputBin FinVICTEShift *TrimmerCutAndPosition 110mm
*UIConstraints: *OutputBin FinISHIKARI *TrimmerCutAndPosition 110mm
*UIConstraints: *OutputBin FinTENRYU *TrimmerCutAndPosition 110mm
*UIConstraints: *OutputBin FoldTray *TrimmerCutAndPosition 110mm
*UIConstraints: *OutputBin StackTray1 *TrimmerCutAndPosition 110mm
*UIConstraints: *OutputBin StackTray2 *TrimmerCutAndPosition 110mm
*UIConstraints: *OutputBin PlockmaticTray *TrimmerCutAndPosition 110mm
*UIConstraints: *OutputBin Proof *TrimmerCutAndPosition 120mm
*UIConstraints: *OutputBin FinCOLUMShift *TrimmerCutAndPosition 120mm
*UIConstraints: *OutputBin FinCOLUMLower *TrimmerCutAndPosition 120mm
*UIConstraints: *OutputBin FinVICTEShift *TrimmerCutAndPosition 120mm
*UIConstraints: *OutputBin FinISHIKARI *TrimmerCutAndPosition 120mm
*UIConstraints: *OutputBin FinTENRYU *TrimmerCutAndPosition 120mm
*UIConstraints: *OutputBin FoldTray *TrimmerCutAndPosition 120mm
*UIConstraints: *OutputBin StackTray1 *TrimmerCutAndPosition 120mm
*UIConstraints: *OutputBin StackTray2 *TrimmerCutAndPosition 120mm
*UIConstraints: *OutputBin PlockmaticTray *TrimmerCutAndPosition 120mm
*UIConstraints: *OutputBin Proof *TrimmerCutAndPosition 130mm
*UIConstraints: *OutputBin FinCOLUMShift *TrimmerCutAndPosition 130mm
*UIConstraints: *OutputBin FinCOLUMLower *TrimmerCutAndPosition 130mm
*UIConstraints: *OutputBin FinVICTEShift *TrimmerCutAndPosition 130mm
*UIConstraints: *OutputBin FinISHIKARI *TrimmerCutAndPosition 130mm
*UIConstraints: *OutputBin FinTENRYU *TrimmerCutAndPosition 130mm
*UIConstraints: *OutputBin FoldTray *TrimmerCutAndPosition 130mm
*UIConstraints: *OutputBin StackTray1 *TrimmerCutAndPosition 130mm
*UIConstraints: *OutputBin StackTray2 *TrimmerCutAndPosition 130mm
*UIConstraints: *OutputBin PlockmaticTray *TrimmerCutAndPosition 130mm
*UIConstraints: *OutputBin Proof *TrimmerCutAndPosition 140mm
*UIConstraints: *OutputBin FinCOLUMShift *TrimmerCutAndPosition 140mm
*UIConstraints: *OutputBin FinCOLUMLower *TrimmerCutAndPosition 140mm
*UIConstraints: *OutputBin FinVICTEShift *TrimmerCutAndPosition 140mm
*UIConstraints: *OutputBin FinISHIKARI *TrimmerCutAndPosition 140mm
*UIConstraints: *OutputBin FinTENRYU *TrimmerCutAndPosition 140mm
*UIConstraints: *OutputBin FoldTray *TrimmerCutAndPosition 140mm
*UIConstraints: *OutputBin StackTray1 *TrimmerCutAndPosition 140mm
*UIConstraints: *OutputBin StackTray2 *TrimmerCutAndPosition 140mm
*UIConstraints: *OutputBin PlockmaticTray *TrimmerCutAndPosition 140mm
*UIConstraints: *OutputBin Proof *TrimmerCutAndPosition 150mm
*UIConstraints: *OutputBin FinCOLUMShift *TrimmerCutAndPosition 150mm
*UIConstraints: *OutputBin FinCOLUMLower *TrimmerCutAndPosition 150mm
*UIConstraints: *OutputBin FinVICTEShift *TrimmerCutAndPosition 150mm
*UIConstraints: *OutputBin FinISHIKARI *TrimmerCutAndPosition 150mm
*UIConstraints: *OutputBin FinTENRYU *TrimmerCutAndPosition 150mm
*UIConstraints: *OutputBin FoldTray *TrimmerCutAndPosition 150mm
*UIConstraints: *OutputBin StackTray1 *TrimmerCutAndPosition 150mm
*UIConstraints: *OutputBin StackTray2 *TrimmerCutAndPosition 150mm
*UIConstraints: *OutputBin PlockmaticTray *TrimmerCutAndPosition 150mm
*UIConstraints: *OutputBin Proof *TrimmerCutAndPosition 160mm
*UIConstraints: *OutputBin FinCOLUMShift *TrimmerCutAndPosition 160mm
*UIConstraints: *OutputBin FinCOLUMLower *TrimmerCutAndPosition 160mm
*UIConstraints: *OutputBin FinVICTEShift *TrimmerCutAndPosition 160mm
*UIConstraints: *OutputBin FinISHIKARI *TrimmerCutAndPosition 160mm
*UIConstraints: *OutputBin FinTENRYU *TrimmerCutAndPosition 160mm
*UIConstraints: *OutputBin FoldTray *TrimmerCutAndPosition 160mm
*UIConstraints: *OutputBin StackTray1 *TrimmerCutAndPosition 160mm
*UIConstraints: *OutputBin StackTray2 *TrimmerCutAndPosition 160mm
*UIConstraints: *OutputBin PlockmaticTray *TrimmerCutAndPosition 160mm
*UIConstraints: *OutputBin Proof *TrimmerCutAndPosition 170mm
*UIConstraints: *OutputBin FinCOLUMShift *TrimmerCutAndPosition 170mm
*UIConstraints: *OutputBin FinCOLUMLower *TrimmerCutAndPosition 170mm
*UIConstraints: *OutputBin FinVICTEShift *TrimmerCutAndPosition 170mm
*UIConstraints: *OutputBin FinISHIKARI *TrimmerCutAndPosition 170mm
*UIConstraints: *OutputBin FinTENRYU *TrimmerCutAndPosition 170mm
*UIConstraints: *OutputBin FoldTray *TrimmerCutAndPosition 170mm
*UIConstraints: *OutputBin StackTray1 *TrimmerCutAndPosition 170mm
*UIConstraints: *OutputBin StackTray2 *TrimmerCutAndPosition 170mm
*UIConstraints: *OutputBin PlockmaticTray *TrimmerCutAndPosition 170mm
*UIConstraints: *OutputBin Proof *TrimmerCutAndPosition 180mm
*UIConstraints: *OutputBin FinCOLUMShift *TrimmerCutAndPosition 180mm
*UIConstraints: *OutputBin FinCOLUMLower *TrimmerCutAndPosition 180mm
*UIConstraints: *OutputBin FinVICTEShift *TrimmerCutAndPosition 180mm
*UIConstraints: *OutputBin FinISHIKARI *TrimmerCutAndPosition 180mm
*UIConstraints: *OutputBin FinTENRYU *TrimmerCutAndPosition 180mm
*UIConstraints: *OutputBin FoldTray *TrimmerCutAndPosition 180mm
*UIConstraints: *OutputBin StackTray1 *TrimmerCutAndPosition 180mm
*UIConstraints: *OutputBin StackTray2 *TrimmerCutAndPosition 180mm
*UIConstraints: *OutputBin PlockmaticTray *TrimmerCutAndPosition 180mm
*UIConstraints: *OutputBin Proof *TrimmerCutAndPosition 190mm
*UIConstraints: *OutputBin FinCOLUMShift *TrimmerCutAndPosition 190mm
*UIConstraints: *OutputBin FinCOLUMLower *TrimmerCutAndPosition 190mm
*UIConstraints: *OutputBin FinVICTEShift *TrimmerCutAndPosition 190mm
*UIConstraints: *OutputBin FinISHIKARI *TrimmerCutAndPosition 190mm
*UIConstraints: *OutputBin FinTENRYU *TrimmerCutAndPosition 190mm
*UIConstraints: *OutputBin FoldTray *TrimmerCutAndPosition 190mm
*UIConstraints: *OutputBin StackTray1 *TrimmerCutAndPosition 190mm
*UIConstraints: *OutputBin StackTray2 *TrimmerCutAndPosition 190mm
*UIConstraints: *OutputBin PlockmaticTray *TrimmerCutAndPosition 190mm
*UIConstraints: *OutputBin Proof *TrimmerCutAndPosition 200mm
*UIConstraints: *OutputBin FinCOLUMShift *TrimmerCutAndPosition 200mm
*UIConstraints: *OutputBin FinCOLUMLower *TrimmerCutAndPosition 200mm
*UIConstraints: *OutputBin FinVICTEShift *TrimmerCutAndPosition 200mm
*UIConstraints: *OutputBin FinISHIKARI *TrimmerCutAndPosition 200mm
*UIConstraints: *OutputBin FinTENRYU *TrimmerCutAndPosition 200mm
*UIConstraints: *OutputBin FoldTray *TrimmerCutAndPosition 200mm
*UIConstraints: *OutputBin StackTray1 *TrimmerCutAndPosition 200mm
*UIConstraints: *OutputBin StackTray2 *TrimmerCutAndPosition 200mm
*UIConstraints: *OutputBin PlockmaticTray *TrimmerCutAndPosition 200mm
*%========== Fold Type / Staple ==========
*UIConstraints: *RIFoldType Twofold *StapleLocation UpperLeft
*UIConstraints: *RIFoldType Twofold *StapleLocation UpperRight
*UIConstraints: *RIFoldType Twofold *StapleLocation LeftW
*UIConstraints: *RIFoldType Twofold *StapleLocation RightW
*UIConstraints: *RIFoldType Twofold *StapleLocation UpperW
*UIConstraints: *RIFoldType Twofold *StapleLocation CenterW
*UIConstraints: *RIFoldType ThreefoldIn *StapleLocation UpperLeft
*UIConstraints: *RIFoldType ThreefoldIn *StapleLocation UpperRight
*UIConstraints: *RIFoldType ThreefoldIn *StapleLocation LeftW
*UIConstraints: *RIFoldType ThreefoldIn *StapleLocation RightW
*UIConstraints: *RIFoldType ThreefoldIn *StapleLocation UpperW
*UIConstraints: *RIFoldType ThreefoldIn *StapleLocation CenterW
*UIConstraints: *RIFoldType ThreefoldOut *StapleLocation UpperLeft
*UIConstraints: *RIFoldType ThreefoldOut *StapleLocation UpperRight
*UIConstraints: *RIFoldType ThreefoldOut *StapleLocation LeftW
*UIConstraints: *RIFoldType ThreefoldOut *StapleLocation RightW
*UIConstraints: *RIFoldType ThreefoldOut *StapleLocation UpperW
*UIConstraints: *RIFoldType ThreefoldOut *StapleLocation CenterW
*UIConstraints: *RIFoldType Quarto *StapleLocation UpperLeft
*UIConstraints: *RIFoldType Quarto *StapleLocation UpperRight
*UIConstraints: *RIFoldType Quarto *StapleLocation LeftW
*UIConstraints: *RIFoldType Quarto *StapleLocation RightW
*UIConstraints: *RIFoldType Quarto *StapleLocation UpperW
*UIConstraints: *RIFoldType Quarto *StapleLocation CenterW
*UIConstraints: *RIFoldType Gatefold *StapleLocation UpperLeft
*UIConstraints: *RIFoldType Gatefold *StapleLocation UpperRight
*UIConstraints: *RIFoldType Gatefold *StapleLocation LeftW
*UIConstraints: *RIFoldType Gatefold *StapleLocation RightW
*UIConstraints: *RIFoldType Gatefold *StapleLocation UpperW
*UIConstraints: *RIFoldType Gatefold *StapleLocation CenterW
*UIConstraints: *StapleLocation UpperLeft *RIFoldType Twofold
*UIConstraints: *StapleLocation UpperRight *RIFoldType Twofold
*UIConstraints: *StapleLocation LeftW *RIFoldType Twofold
*UIConstraints: *StapleLocation RightW *RIFoldType Twofold
*UIConstraints: *StapleLocation UpperW *RIFoldType Twofold
*UIConstraints: *StapleLocation CenterW *RIFoldType Twofold
*UIConstraints: *StapleLocation UpperLeft *RIFoldType ThreefoldIn
*UIConstraints: *StapleLocation UpperRight *RIFoldType ThreefoldIn
*UIConstraints: *StapleLocation LeftW *RIFoldType ThreefoldIn
*UIConstraints: *StapleLocation RightW *RIFoldType ThreefoldIn
*UIConstraints: *StapleLocation UpperW *RIFoldType ThreefoldIn
*UIConstraints: *StapleLocation CenterW *RIFoldType ThreefoldIn
*UIConstraints: *StapleLocation UpperLeft *RIFoldType ThreefoldOut
*UIConstraints: *StapleLocation UpperRight *RIFoldType ThreefoldOut
*UIConstraints: *StapleLocation LeftW *RIFoldType ThreefoldOut
*UIConstraints: *StapleLocation RightW *RIFoldType ThreefoldOut
*UIConstraints: *StapleLocation UpperW *RIFoldType ThreefoldOut
*UIConstraints: *StapleLocation CenterW *RIFoldType ThreefoldOut
*UIConstraints: *StapleLocation UpperLeft *RIFoldType Quarto
*UIConstraints: *StapleLocation UpperRight *RIFoldType Quarto
*UIConstraints: *StapleLocation LeftW *RIFoldType Quarto
*UIConstraints: *StapleLocation RightW *RIFoldType Quarto
*UIConstraints: *StapleLocation UpperW *RIFoldType Quarto
*UIConstraints: *StapleLocation CenterW *RIFoldType Quarto
*UIConstraints: *StapleLocation UpperLeft *RIFoldType Gatefold
*UIConstraints: *StapleLocation UpperRight *RIFoldType Gatefold
*UIConstraints: *StapleLocation LeftW *RIFoldType Gatefold
*UIConstraints: *StapleLocation RightW *RIFoldType Gatefold
*UIConstraints: *StapleLocation UpperW *RIFoldType Gatefold
*UIConstraints: *StapleLocation CenterW *RIFoldType Gatefold
*%========== Z-fold / Staple ==========
*UIConstraints: *RIZfold Bottom *StapleLocation CenterW
*UIConstraints: *RIZfold Right *StapleLocation CenterW
*UIConstraints: *RIZfold Left *StapleLocation CenterW
*UIConstraints: *StapleLocation CenterW *RIZfold Bottom
*UIConstraints: *StapleLocation CenterW *RIZfold Right
*UIConstraints: *StapleLocation CenterW *RIZfold Left
*%========== Perfect/Ring Binding / Staple ==========
*UIConstraints: *RIBind Perfect *StapleLocation UpperLeft
*UIConstraints: *RIBind Perfect *StapleLocation UpperRight
*UIConstraints: *RIBind Perfect *StapleLocation LeftW
*UIConstraints: *RIBind Perfect *StapleLocation RightW
*UIConstraints: *RIBind Perfect *StapleLocation UpperW
*UIConstraints: *RIBind Perfect *StapleLocation CenterW
*UIConstraints: *RIBind RingBind *StapleLocation UpperLeft
*UIConstraints: *RIBind RingBind *StapleLocation UpperRight
*UIConstraints: *RIBind RingBind *StapleLocation LeftW
*UIConstraints: *RIBind RingBind *StapleLocation RightW
*UIConstraints: *RIBind RingBind *StapleLocation UpperW
*UIConstraints: *RIBind RingBind *StapleLocation CenterW
*UIConstraints: *RIBind RingPunch *StapleLocation UpperLeft
*UIConstraints: *RIBind RingPunch *StapleLocation UpperRight
*UIConstraints: *RIBind RingPunch *StapleLocation LeftW
*UIConstraints: *RIBind RingPunch *StapleLocation RightW
*UIConstraints: *RIBind RingPunch *StapleLocation UpperW
*UIConstraints: *RIBind RingPunch *StapleLocation CenterW
*UIConstraints: *StapleLocation UpperLeft *RIBind Perfect
*UIConstraints: *StapleLocation UpperRight *RIBind Perfect
*UIConstraints: *StapleLocation LeftW *RIBind Perfect
*UIConstraints: *StapleLocation RightW *RIBind Perfect
*UIConstraints: *StapleLocation UpperW *RIBind Perfect
*UIConstraints: *StapleLocation CenterW *RIBind Perfect
*UIConstraints: *StapleLocation UpperLeft *RIBind RingBind
*UIConstraints: *StapleLocation UpperRight *RIBind RingBind
*UIConstraints: *StapleLocation LeftW *RIBind RingBind
*UIConstraints: *StapleLocation RightW *RIBind RingBind
*UIConstraints: *StapleLocation UpperW *RIBind RingBind
*UIConstraints: *StapleLocation CenterW *RIBind RingBind
*UIConstraints: *StapleLocation UpperLeft *RIBind RingPunch
*UIConstraints: *StapleLocation UpperRight *RIBind RingPunch
*UIConstraints: *StapleLocation LeftW *RIBind RingPunch
*UIConstraints: *StapleLocation RightW *RIBind RingPunch
*UIConstraints: *StapleLocation UpperW *RIBind RingPunch
*UIConstraints: *StapleLocation CenterW *RIBind RingPunch
*%========== Trimmer Cut And Position Adjustment / Staple ==========
*UIConstraints: *TrimmerCutAndPosition 20mm *StapleLocation None
*UIConstraints: *TrimmerCutAndPosition 20mm *StapleLocation UpperLeft
*UIConstraints: *TrimmerCutAndPosition 20mm *StapleLocation UpperRight
*UIConstraints: *TrimmerCutAndPosition 20mm *StapleLocation LeftW
*UIConstraints: *TrimmerCutAndPosition 20mm *StapleLocation RightW
*UIConstraints: *TrimmerCutAndPosition 20mm *StapleLocation UpperW
*UIConstraints: *TrimmerCutAndPosition 30mm *StapleLocation None
*UIConstraints: *TrimmerCutAndPosition 30mm *StapleLocation UpperLeft
*UIConstraints: *TrimmerCutAndPosition 30mm *StapleLocation UpperRight
*UIConstraints: *TrimmerCutAndPosition 30mm *StapleLocation LeftW
*UIConstraints: *TrimmerCutAndPosition 30mm *StapleLocation RightW
*UIConstraints: *TrimmerCutAndPosition 30mm *StapleLocation UpperW
*UIConstraints: *TrimmerCutAndPosition 40mm *StapleLocation None
*UIConstraints: *TrimmerCutAndPosition 40mm *StapleLocation UpperLeft
*UIConstraints: *TrimmerCutAndPosition 40mm *StapleLocation UpperRight
*UIConstraints: *TrimmerCutAndPosition 40mm *StapleLocation LeftW
*UIConstraints: *TrimmerCutAndPosition 40mm *StapleLocation RightW
*UIConstraints: *TrimmerCutAndPosition 40mm *StapleLocation UpperW
*UIConstraints: *TrimmerCutAndPosition 50mm *StapleLocation None
*UIConstraints: *TrimmerCutAndPosition 50mm *StapleLocation UpperLeft
*UIConstraints: *TrimmerCutAndPosition 50mm *StapleLocation UpperRight
*UIConstraints: *TrimmerCutAndPosition 50mm *StapleLocation LeftW
*UIConstraints: *TrimmerCutAndPosition 50mm *StapleLocation RightW
*UIConstraints: *TrimmerCutAndPosition 50mm *StapleLocation UpperW
*UIConstraints: *TrimmerCutAndPosition 60mm *StapleLocation None
*UIConstraints: *TrimmerCutAndPosition 60mm *StapleLocation UpperLeft
*UIConstraints: *TrimmerCutAndPosition 60mm *StapleLocation UpperRight
*UIConstraints: *TrimmerCutAndPosition 60mm *StapleLocation LeftW
*UIConstraints: *TrimmerCutAndPosition 60mm *StapleLocation RightW
*UIConstraints: *TrimmerCutAndPosition 60mm *StapleLocation UpperW
*UIConstraints: *TrimmerCutAndPosition 70mm *StapleLocation None
*UIConstraints: *TrimmerCutAndPosition 70mm *StapleLocation UpperLeft
*UIConstraints: *TrimmerCutAndPosition 70mm *StapleLocation UpperRight
*UIConstraints: *TrimmerCutAndPosition 70mm *StapleLocation LeftW
*UIConstraints: *TrimmerCutAndPosition 70mm *StapleLocation RightW
*UIConstraints: *TrimmerCutAndPosition 70mm *StapleLocation UpperW
*UIConstraints: *TrimmerCutAndPosition 80mm *StapleLocation None
*UIConstraints: *TrimmerCutAndPosition 80mm *StapleLocation UpperLeft
*UIConstraints: *TrimmerCutAndPosition 80mm *StapleLocation UpperRight
*UIConstraints: *TrimmerCutAndPosition 80mm *StapleLocation LeftW
*UIConstraints: *TrimmerCutAndPosition 80mm *StapleLocation RightW
*UIConstraints: *TrimmerCutAndPosition 80mm *StapleLocation UpperW
*UIConstraints: *TrimmerCutAndPosition 90mm *StapleLocation None
*UIConstraints: *TrimmerCutAndPosition 90mm *StapleLocation UpperLeft
*UIConstraints: *TrimmerCutAndPosition 90mm *StapleLocation UpperRight
*UIConstraints: *TrimmerCutAndPosition 90mm *StapleLocation LeftW
*UIConstraints: *TrimmerCutAndPosition 90mm *StapleLocation RightW
*UIConstraints: *TrimmerCutAndPosition 90mm *StapleLocation UpperW
*UIConstraints: *TrimmerCutAndPosition 100mm *StapleLocation None
*UIConstraints: *TrimmerCutAndPosition 100mm *StapleLocation UpperLeft
*UIConstraints: *TrimmerCutAndPosition 100mm *StapleLocation UpperRight
*UIConstraints: *TrimmerCutAndPosition 100mm *StapleLocation LeftW
*UIConstraints: *TrimmerCutAndPosition 100mm *StapleLocation RightW
*UIConstraints: *TrimmerCutAndPosition 100mm *StapleLocation UpperW
*UIConstraints: *TrimmerCutAndPosition 110mm *StapleLocation None
*UIConstraints: *TrimmerCutAndPosition 110mm *StapleLocation UpperLeft
*UIConstraints: *TrimmerCutAndPosition 110mm *StapleLocation UpperRight
*UIConstraints: *TrimmerCutAndPosition 110mm *StapleLocation LeftW
*UIConstraints: *TrimmerCutAndPosition 110mm *StapleLocation RightW
*UIConstraints: *TrimmerCutAndPosition 110mm *StapleLocation UpperW
*UIConstraints: *TrimmerCutAndPosition 120mm *StapleLocation None
*UIConstraints: *TrimmerCutAndPosition 120mm *StapleLocation UpperLeft
*UIConstraints: *TrimmerCutAndPosition 120mm *StapleLocation UpperRight
*UIConstraints: *TrimmerCutAndPosition 120mm *StapleLocation LeftW
*UIConstraints: *TrimmerCutAndPosition 120mm *StapleLocation RightW
*UIConstraints: *TrimmerCutAndPosition 120mm *StapleLocation UpperW
*UIConstraints: *TrimmerCutAndPosition 130mm *StapleLocation None
*UIConstraints: *TrimmerCutAndPosition 130mm *StapleLocation UpperLeft
*UIConstraints: *TrimmerCutAndPosition 130mm *StapleLocation UpperRight
*UIConstraints: *TrimmerCutAndPosition 130mm *StapleLocation LeftW
*UIConstraints: *TrimmerCutAndPosition 130mm *StapleLocation RightW
*UIConstraints: *TrimmerCutAndPosition 130mm *StapleLocation UpperW
*UIConstraints: *TrimmerCutAndPosition 140mm *StapleLocation None
*UIConstraints: *TrimmerCutAndPosition 140mm *StapleLocation UpperLeft
*UIConstraints: *TrimmerCutAndPosition 140mm *StapleLocation UpperRight
*UIConstraints: *TrimmerCutAndPosition 140mm *StapleLocation LeftW
*UIConstraints: *TrimmerCutAndPosition 140mm *StapleLocation RightW
*UIConstraints: *TrimmerCutAndPosition 140mm *StapleLocation UpperW
*UIConstraints: *TrimmerCutAndPosition 150mm *StapleLocation None
*UIConstraints: *TrimmerCutAndPosition 150mm *StapleLocation UpperLeft
*UIConstraints: *TrimmerCutAndPosition 150mm *StapleLocation UpperRight
*UIConstraints: *TrimmerCutAndPosition 150mm *StapleLocation LeftW
*UIConstraints: *TrimmerCutAndPosition 150mm *StapleLocation RightW
*UIConstraints: *TrimmerCutAndPosition 150mm *StapleLocation UpperW
*UIConstraints: *TrimmerCutAndPosition 160mm *StapleLocation None
*UIConstraints: *TrimmerCutAndPosition 160mm *StapleLocation UpperLeft
*UIConstraints: *TrimmerCutAndPosition 160mm *StapleLocation UpperRight
*UIConstraints: *TrimmerCutAndPosition 160mm *StapleLocation LeftW
*UIConstraints: *TrimmerCutAndPosition 160mm *StapleLocation RightW
*UIConstraints: *TrimmerCutAndPosition 160mm *StapleLocation UpperW
*UIConstraints: *TrimmerCutAndPosition 170mm *StapleLocation None
*UIConstraints: *TrimmerCutAndPosition 170mm *StapleLocation UpperLeft
*UIConstraints: *TrimmerCutAndPosition 170mm *StapleLocation UpperRight
*UIConstraints: *TrimmerCutAndPosition 170mm *StapleLocation LeftW
*UIConstraints: *TrimmerCutAndPosition 170mm *StapleLocation RightW
*UIConstraints: *TrimmerCutAndPosition 170mm *StapleLocation UpperW
*UIConstraints: *TrimmerCutAndPosition 180mm *StapleLocation None
*UIConstraints: *TrimmerCutAndPosition 180mm *StapleLocation UpperLeft
*UIConstraints: *TrimmerCutAndPosition 180mm *StapleLocation UpperRight
*UIConstraints: *TrimmerCutAndPosition 180mm *StapleLocation LeftW
*UIConstraints: *TrimmerCutAndPosition 180mm *StapleLocation RightW
*UIConstraints: *TrimmerCutAndPosition 180mm *StapleLocation UpperW
*UIConstraints: *TrimmerCutAndPosition 190mm *StapleLocation None
*UIConstraints: *TrimmerCutAndPosition 190mm *StapleLocation UpperLeft
*UIConstraints: *TrimmerCutAndPosition 190mm *StapleLocation UpperRight
*UIConstraints: *TrimmerCutAndPosition 190mm *StapleLocation LeftW
*UIConstraints: *TrimmerCutAndPosition 190mm *StapleLocation RightW
*UIConstraints: *TrimmerCutAndPosition 190mm *StapleLocation UpperW
*UIConstraints: *TrimmerCutAndPosition 200mm *StapleLocation None
*UIConstraints: *TrimmerCutAndPosition 200mm *StapleLocation UpperLeft
*UIConstraints: *TrimmerCutAndPosition 200mm *StapleLocation UpperRight
*UIConstraints: *TrimmerCutAndPosition 200mm *StapleLocation LeftW
*UIConstraints: *TrimmerCutAndPosition 200mm *StapleLocation RightW
*UIConstraints: *TrimmerCutAndPosition 200mm *StapleLocation UpperW
*UIConstraints: *StapleLocation None *TrimmerCutAndPosition 20mm
*UIConstraints: *StapleLocation UpperLeft *TrimmerCutAndPosition 20mm
*UIConstraints: *StapleLocation UpperRight *TrimmerCutAndPosition 20mm
*UIConstraints: *StapleLocation LeftW *TrimmerCutAndPosition 20mm
*UIConstraints: *StapleLocation RightW *TrimmerCutAndPosition 20mm
*UIConstraints: *StapleLocation UpperW *TrimmerCutAndPosition 20mm
*UIConstraints: *StapleLocation None *TrimmerCutAndPosition 30mm
*UIConstraints: *StapleLocation UpperLeft *TrimmerCutAndPosition 30mm
*UIConstraints: *StapleLocation UpperRight *TrimmerCutAndPosition 30mm
*UIConstraints: *StapleLocation LeftW *TrimmerCutAndPosition 30mm
*UIConstraints: *StapleLocation RightW *TrimmerCutAndPosition 30mm
*UIConstraints: *StapleLocation UpperW *TrimmerCutAndPosition 30mm
*UIConstraints: *StapleLocation None *TrimmerCutAndPosition 40mm
*UIConstraints: *StapleLocation UpperLeft *TrimmerCutAndPosition 40mm
*UIConstraints: *StapleLocation UpperRight *TrimmerCutAndPosition 40mm
*UIConstraints: *StapleLocation LeftW *TrimmerCutAndPosition 40mm
*UIConstraints: *StapleLocation RightW *TrimmerCutAndPosition 40mm
*UIConstraints: *StapleLocation UpperW *TrimmerCutAndPosition 40mm
*UIConstraints: *StapleLocation None *TrimmerCutAndPosition 50mm
*UIConstraints: *StapleLocation UpperLeft *TrimmerCutAndPosition 50mm
*UIConstraints: *StapleLocation UpperRight *TrimmerCutAndPosition 50mm
*UIConstraints: *StapleLocation LeftW *TrimmerCutAndPosition 50mm
*UIConstraints: *StapleLocation RightW *TrimmerCutAndPosition 50mm
*UIConstraints: *StapleLocation UpperW *TrimmerCutAndPosition 50mm
*UIConstraints: *StapleLocation None *TrimmerCutAndPosition 60mm
*UIConstraints: *StapleLocation UpperLeft *TrimmerCutAndPosition 60mm
*UIConstraints: *StapleLocation UpperRight *TrimmerCutAndPosition 60mm
*UIConstraints: *StapleLocation LeftW *TrimmerCutAndPosition 60mm
*UIConstraints: *StapleLocation RightW *TrimmerCutAndPosition 60mm
*UIConstraints: *StapleLocation UpperW *TrimmerCutAndPosition 60mm
*UIConstraints: *StapleLocation None *TrimmerCutAndPosition 70mm
*UIConstraints: *StapleLocation UpperLeft *TrimmerCutAndPosition 70mm
*UIConstraints: *StapleLocation UpperRight *TrimmerCutAndPosition 70mm
*UIConstraints: *StapleLocation LeftW *TrimmerCutAndPosition 70mm
*UIConstraints: *StapleLocation RightW *TrimmerCutAndPosition 70mm
*UIConstraints: *StapleLocation UpperW *TrimmerCutAndPosition 70mm
*UIConstraints: *StapleLocation None *TrimmerCutAndPosition 80mm
*UIConstraints: *StapleLocation UpperLeft *TrimmerCutAndPosition 80mm
*UIConstraints: *StapleLocation UpperRight *TrimmerCutAndPosition 80mm
*UIConstraints: *StapleLocation LeftW *TrimmerCutAndPosition 80mm
*UIConstraints: *StapleLocation RightW *TrimmerCutAndPosition 80mm
*UIConstraints: *StapleLocation UpperW *TrimmerCutAndPosition 80mm
*UIConstraints: *StapleLocation None *TrimmerCutAndPosition 90mm
*UIConstraints: *StapleLocation UpperLeft *TrimmerCutAndPosition 90mm
*UIConstraints: *StapleLocation UpperRight *TrimmerCutAndPosition 90mm
*UIConstraints: *StapleLocation LeftW *TrimmerCutAndPosition 90mm
*UIConstraints: *StapleLocation RightW *TrimmerCutAndPosition 90mm
*UIConstraints: *StapleLocation UpperW *TrimmerCutAndPosition 90mm
*UIConstraints: *StapleLocation None *TrimmerCutAndPosition 100mm
*UIConstraints: *StapleLocation UpperLeft *TrimmerCutAndPosition 100mm
*UIConstraints: *StapleLocation UpperRight *TrimmerCutAndPosition 100mm
*UIConstraints: *StapleLocation LeftW *TrimmerCutAndPosition 100mm
*UIConstraints: *StapleLocation RightW *TrimmerCutAndPosition 100mm
*UIConstraints: *StapleLocation UpperW *TrimmerCutAndPosition 100mm
*UIConstraints: *StapleLocation None *TrimmerCutAndPosition 110mm
*UIConstraints: *StapleLocation UpperLeft *TrimmerCutAndPosition 110mm
*UIConstraints: *StapleLocation UpperRight *TrimmerCutAndPosition 110mm
*UIConstraints: *StapleLocation LeftW *TrimmerCutAndPosition 110mm
*UIConstraints: *StapleLocation RightW *TrimmerCutAndPosition 110mm
*UIConstraints: *StapleLocation UpperW *TrimmerCutAndPosition 110mm
*UIConstraints: *StapleLocation None *TrimmerCutAndPosition 120mm
*UIConstraints: *StapleLocation UpperLeft *TrimmerCutAndPosition 120mm
*UIConstraints: *StapleLocation UpperRight *TrimmerCutAndPosition 120mm
*UIConstraints: *StapleLocation LeftW *TrimmerCutAndPosition 120mm
*UIConstraints: *StapleLocation RightW *TrimmerCutAndPosition 120mm
*UIConstraints: *StapleLocation UpperW *TrimmerCutAndPosition 120mm
*UIConstraints: *StapleLocation None *TrimmerCutAndPosition 130mm
*UIConstraints: *StapleLocation UpperLeft *TrimmerCutAndPosition 130mm
*UIConstraints: *StapleLocation UpperRight *TrimmerCutAndPosition 130mm
*UIConstraints: *StapleLocation LeftW *TrimmerCutAndPosition 130mm
*UIConstraints: *StapleLocation RightW *TrimmerCutAndPosition 130mm
*UIConstraints: *StapleLocation UpperW *TrimmerCutAndPosition 130mm
*UIConstraints: *StapleLocation None *TrimmerCutAndPosition 140mm
*UIConstraints: *StapleLocation UpperLeft *TrimmerCutAndPosition 140mm
*UIConstraints: *StapleLocation UpperRight *TrimmerCutAndPosition 140mm
*UIConstraints: *StapleLocation LeftW *TrimmerCutAndPosition 140mm
*UIConstraints: *StapleLocation RightW *TrimmerCutAndPosition 140mm
*UIConstraints: *StapleLocation UpperW *TrimmerCutAndPosition 140mm
*UIConstraints: *StapleLocation None *TrimmerCutAndPosition 150mm
*UIConstraints: *StapleLocation UpperLeft *TrimmerCutAndPosition 150mm
*UIConstraints: *StapleLocation UpperRight *TrimmerCutAndPosition 150mm
*UIConstraints: *StapleLocation LeftW *TrimmerCutAndPosition 150mm
*UIConstraints: *StapleLocation RightW *TrimmerCutAndPosition 150mm
*UIConstraints: *StapleLocation UpperW *TrimmerCutAndPosition 150mm
*UIConstraints: *StapleLocation None *TrimmerCutAndPosition 160mm
*UIConstraints: *StapleLocation UpperLeft *TrimmerCutAndPosition 160mm
*UIConstraints: *StapleLocation UpperRight *TrimmerCutAndPosition 160mm
*UIConstraints: *StapleLocation LeftW *TrimmerCutAndPosition 160mm
*UIConstraints: *StapleLocation RightW *TrimmerCutAndPosition 160mm
*UIConstraints: *StapleLocation UpperW *TrimmerCutAndPosition 160mm
*UIConstraints: *StapleLocation None *TrimmerCutAndPosition 170mm
*UIConstraints: *StapleLocation UpperLeft *TrimmerCutAndPosition 170mm
*UIConstraints: *StapleLocation UpperRight *TrimmerCutAndPosition 170mm
*UIConstraints: *StapleLocation LeftW *TrimmerCutAndPosition 170mm
*UIConstraints: *StapleLocation RightW *TrimmerCutAndPosition 170mm
*UIConstraints: *StapleLocation UpperW *TrimmerCutAndPosition 170mm
*UIConstraints: *StapleLocation None *TrimmerCutAndPosition 180mm
*UIConstraints: *StapleLocation UpperLeft *TrimmerCutAndPosition 180mm
*UIConstraints: *StapleLocation UpperRight *TrimmerCutAndPosition 180mm
*UIConstraints: *StapleLocation LeftW *TrimmerCutAndPosition 180mm
*UIConstraints: *StapleLocation RightW *TrimmerCutAndPosition 180mm
*UIConstraints: *StapleLocation UpperW *TrimmerCutAndPosition 180mm
*UIConstraints: *StapleLocation None *TrimmerCutAndPosition 190mm
*UIConstraints: *StapleLocation UpperLeft *TrimmerCutAndPosition 190mm
*UIConstraints: *StapleLocation UpperRight *TrimmerCutAndPosition 190mm
*UIConstraints: *StapleLocation LeftW *TrimmerCutAndPosition 190mm
*UIConstraints: *StapleLocation RightW *TrimmerCutAndPosition 190mm
*UIConstraints: *StapleLocation UpperW *TrimmerCutAndPosition 190mm
*UIConstraints: *StapleLocation None *TrimmerCutAndPosition 200mm
*UIConstraints: *StapleLocation UpperLeft *TrimmerCutAndPosition 200mm
*UIConstraints: *StapleLocation UpperRight *TrimmerCutAndPosition 200mm
*UIConstraints: *StapleLocation LeftW *TrimmerCutAndPosition 200mm
*UIConstraints: *StapleLocation RightW *TrimmerCutAndPosition 200mm
*UIConstraints: *StapleLocation UpperW *TrimmerCutAndPosition 200mm
*%========== Face-up / Staple ==========
*UIConstraints: *Faceup On *StapleLocation UpperLeft
*UIConstraints: *Faceup On *StapleLocation UpperRight
*UIConstraints: *Faceup On *StapleLocation LeftW
*UIConstraints: *Faceup On *StapleLocation RightW
*UIConstraints: *Faceup On *StapleLocation UpperW
*UIConstraints: *Faceup On *StapleLocation CenterW
*UIConstraints: *StapleLocation UpperLeft *Faceup On
*UIConstraints: *StapleLocation UpperRight *Faceup On
*UIConstraints: *StapleLocation LeftW *Faceup On
*UIConstraints: *StapleLocation RightW *Faceup On
*UIConstraints: *StapleLocation UpperW *Faceup On
*UIConstraints: *StapleLocation CenterW *Faceup On
*%========== Fold Type / Punch ==========
*UIConstraints: *RIFoldType Twofold *RIPunch Left2
*UIConstraints: *RIFoldType Twofold *RIPunch Left3
*UIConstraints: *RIFoldType Twofold *RIPunch Left4
*UIConstraints: *RIFoldType Twofold *RIPunch Right2
*UIConstraints: *RIFoldType Twofold *RIPunch Right3
*UIConstraints: *RIFoldType Twofold *RIPunch Right4
*UIConstraints: *RIFoldType Twofold *RIPunch Upper2
*UIConstraints: *RIFoldType Twofold *RIPunch Upper3
*UIConstraints: *RIFoldType Twofold *RIPunch Upper4
*UIConstraints: *RIFoldType Twofold *RIPunch GBCLeft
*UIConstraints: *RIFoldType Twofold *RIPunch GBCRight
*UIConstraints: *RIFoldType Twofold *RIPunch GBCTop
*UIConstraints: *RIFoldType ThreefoldIn *RIPunch Left2
*UIConstraints: *RIFoldType ThreefoldIn *RIPunch Left3
*UIConstraints: *RIFoldType ThreefoldIn *RIPunch Left4
*UIConstraints: *RIFoldType ThreefoldIn *RIPunch Right2
*UIConstraints: *RIFoldType ThreefoldIn *RIPunch Right3
*UIConstraints: *RIFoldType ThreefoldIn *RIPunch Right4
*UIConstraints: *RIFoldType ThreefoldIn *RIPunch Upper2
*UIConstraints: *RIFoldType ThreefoldIn *RIPunch Upper3
*UIConstraints: *RIFoldType ThreefoldIn *RIPunch Upper4
*UIConstraints: *RIFoldType ThreefoldIn *RIPunch GBCLeft
*UIConstraints: *RIFoldType ThreefoldIn *RIPunch GBCRight
*UIConstraints: *RIFoldType ThreefoldIn *RIPunch GBCTop
*UIConstraints: *RIFoldType ThreefoldOut *RIPunch Left2
*UIConstraints: *RIFoldType ThreefoldOut *RIPunch Left3
*UIConstraints: *RIFoldType ThreefoldOut *RIPunch Left4
*UIConstraints: *RIFoldType ThreefoldOut *RIPunch Right2
*UIConstraints: *RIFoldType ThreefoldOut *RIPunch Right3
*UIConstraints: *RIFoldType ThreefoldOut *RIPunch Right4
*UIConstraints: *RIFoldType ThreefoldOut *RIPunch Upper2
*UIConstraints: *RIFoldType ThreefoldOut *RIPunch Upper3
*UIConstraints: *RIFoldType ThreefoldOut *RIPunch Upper4
*UIConstraints: *RIFoldType ThreefoldOut *RIPunch GBCLeft
*UIConstraints: *RIFoldType ThreefoldOut *RIPunch GBCRight
*UIConstraints: *RIFoldType ThreefoldOut *RIPunch GBCTop
*UIConstraints: *RIFoldType Quarto *RIPunch Left2
*UIConstraints: *RIFoldType Quarto *RIPunch Left3
*UIConstraints: *RIFoldType Quarto *RIPunch Left4
*UIConstraints: *RIFoldType Quarto *RIPunch Right2
*UIConstraints: *RIFoldType Quarto *RIPunch Right3
*UIConstraints: *RIFoldType Quarto *RIPunch Right4
*UIConstraints: *RIFoldType Quarto *RIPunch Upper2
*UIConstraints: *RIFoldType Quarto *RIPunch Upper3
*UIConstraints: *RIFoldType Quarto *RIPunch Upper4
*UIConstraints: *RIFoldType Quarto *RIPunch GBCLeft
*UIConstraints: *RIFoldType Quarto *RIPunch GBCRight
*UIConstraints: *RIFoldType Quarto *RIPunch GBCTop
*UIConstraints: *RIFoldType Gatefold *RIPunch Left2
*UIConstraints: *RIFoldType Gatefold *RIPunch Left3
*UIConstraints: *RIFoldType Gatefold *RIPunch Left4
*UIConstraints: *RIFoldType Gatefold *RIPunch Right2
*UIConstraints: *RIFoldType Gatefold *RIPunch Right3
*UIConstraints: *RIFoldType Gatefold *RIPunch Right4
*UIConstraints: *RIFoldType Gatefold *RIPunch Upper2
*UIConstraints: *RIFoldType Gatefold *RIPunch Upper3
*UIConstraints: *RIFoldType Gatefold *RIPunch Upper4
*UIConstraints: *RIFoldType Gatefold *RIPunch GBCLeft
*UIConstraints: *RIFoldType Gatefold *RIPunch GBCRight
*UIConstraints: *RIFoldType Gatefold *RIPunch GBCTop
*UIConstraints: *RIPunch Left2 *RIFoldType Twofold
*UIConstraints: *RIPunch Left3 *RIFoldType Twofold
*UIConstraints: *RIPunch Left4 *RIFoldType Twofold
*UIConstraints: *RIPunch Right2 *RIFoldType Twofold
*UIConstraints: *RIPunch Right3 *RIFoldType Twofold
*UIConstraints: *RIPunch Right4 *RIFoldType Twofold
*UIConstraints: *RIPunch Upper2 *RIFoldType Twofold
*UIConstraints: *RIPunch Upper3 *RIFoldType Twofold
*UIConstraints: *RIPunch Upper4 *RIFoldType Twofold
*UIConstraints: *RIPunch GBCLeft *RIFoldType Twofold
*UIConstraints: *RIPunch GBCRight *RIFoldType Twofold
*UIConstraints: *RIPunch GBCTop *RIFoldType Twofold
*UIConstraints: *RIPunch Left2 *RIFoldType ThreefoldIn
*UIConstraints: *RIPunch Left3 *RIFoldType ThreefoldIn
*UIConstraints: *RIPunch Left4 *RIFoldType ThreefoldIn
*UIConstraints: *RIPunch Right2 *RIFoldType ThreefoldIn
*UIConstraints: *RIPunch Right3 *RIFoldType ThreefoldIn
*UIConstraints: *RIPunch Right4 *RIFoldType ThreefoldIn
*UIConstraints: *RIPunch Upper2 *RIFoldType ThreefoldIn
*UIConstraints: *RIPunch Upper3 *RIFoldType ThreefoldIn
*UIConstraints: *RIPunch Upper4 *RIFoldType ThreefoldIn
*UIConstraints: *RIPunch GBCLeft *RIFoldType ThreefoldIn
*UIConstraints: *RIPunch GBCRight *RIFoldType ThreefoldIn
*UIConstraints: *RIPunch GBCTop *RIFoldType ThreefoldIn
*UIConstraints: *RIPunch Left2 *RIFoldType ThreefoldOut
*UIConstraints: *RIPunch Left3 *RIFoldType ThreefoldOut
*UIConstraints: *RIPunch Left4 *RIFoldType ThreefoldOut
*UIConstraints: *RIPunch Right2 *RIFoldType ThreefoldOut
*UIConstraints: *RIPunch Right3 *RIFoldType ThreefoldOut
*UIConstraints: *RIPunch Right4 *RIFoldType ThreefoldOut
*UIConstraints: *RIPunch Upper2 *RIFoldType ThreefoldOut
*UIConstraints: *RIPunch Upper3 *RIFoldType ThreefoldOut
*UIConstraints: *RIPunch Upper4 *RIFoldType ThreefoldOut
*UIConstraints: *RIPunch GBCLeft *RIFoldType ThreefoldOut
*UIConstraints: *RIPunch GBCRight *RIFoldType ThreefoldOut
*UIConstraints: *RIPunch GBCTop *RIFoldType ThreefoldOut
*UIConstraints: *RIPunch Left2 *RIFoldType Quarto
*UIConstraints: *RIPunch Left3 *RIFoldType Quarto
*UIConstraints: *RIPunch Left4 *RIFoldType Quarto
*UIConstraints: *RIPunch Right2 *RIFoldType Quarto
*UIConstraints: *RIPunch Right3 *RIFoldType Quarto
*UIConstraints: *RIPunch Right4 *RIFoldType Quarto
*UIConstraints: *RIPunch Upper2 *RIFoldType Quarto
*UIConstraints: *RIPunch Upper3 *RIFoldType Quarto
*UIConstraints: *RIPunch Upper4 *RIFoldType Quarto
*UIConstraints: *RIPunch GBCLeft *RIFoldType Quarto
*UIConstraints: *RIPunch GBCRight *RIFoldType Quarto
*UIConstraints: *RIPunch GBCTop *RIFoldType Quarto
*UIConstraints: *RIPunch Left2 *RIFoldType Gatefold
*UIConstraints: *RIPunch Left3 *RIFoldType Gatefold
*UIConstraints: *RIPunch Left4 *RIFoldType Gatefold
*UIConstraints: *RIPunch Right2 *RIFoldType Gatefold
*UIConstraints: *RIPunch Right3 *RIFoldType Gatefold
*UIConstraints: *RIPunch Right4 *RIFoldType Gatefold
*UIConstraints: *RIPunch Upper2 *RIFoldType Gatefold
*UIConstraints: *RIPunch Upper3 *RIFoldType Gatefold
*UIConstraints: *RIPunch Upper4 *RIFoldType Gatefold
*UIConstraints: *RIPunch GBCLeft *RIFoldType Gatefold
*UIConstraints: *RIPunch GBCRight *RIFoldType Gatefold
*UIConstraints: *RIPunch GBCTop *RIFoldType Gatefold
*%========== Z-fold / Punch ==========
*UIConstraints: *RIZfold Bottom *RIPunch Left2
*UIConstraints: *RIZfold Bottom *RIPunch Left3
*UIConstraints: *RIZfold Bottom *RIPunch Left4
*UIConstraints: *RIZfold Bottom *RIPunch Right2
*UIConstraints: *RIZfold Bottom *RIPunch Right3
*UIConstraints: *RIZfold Bottom *RIPunch Right4
*UIConstraints: *RIZfold Bottom *RIPunch Upper2
*UIConstraints: *RIZfold Bottom *RIPunch Upper3
*UIConstraints: *RIZfold Bottom *RIPunch Upper4
*UIConstraints: *RIZfold Bottom *RIPunch GBCLeft
*UIConstraints: *RIZfold Bottom *RIPunch GBCRight
*UIConstraints: *RIZfold Bottom *RIPunch GBCTop
*UIConstraints: *RIZfold Right *RIPunch Left2
*UIConstraints: *RIZfold Right *RIPunch Left3
*UIConstraints: *RIZfold Right *RIPunch Left4
*UIConstraints: *RIZfold Right *RIPunch Right2
*UIConstraints: *RIZfold Right *RIPunch Right3
*UIConstraints: *RIZfold Right *RIPunch Right4
*UIConstraints: *RIZfold Right *RIPunch Upper2
*UIConstraints: *RIZfold Right *RIPunch Upper3
*UIConstraints: *RIZfold Right *RIPunch Upper4
*UIConstraints: *RIZfold Right *RIPunch GBCLeft
*UIConstraints: *RIZfold Right *RIPunch GBCRight
*UIConstraints: *RIZfold Right *RIPunch GBCTop
*UIConstraints: *RIZfold Left *RIPunch Left2
*UIConstraints: *RIZfold Left *RIPunch Left3
*UIConstraints: *RIZfold Left *RIPunch Left4
*UIConstraints: *RIZfold Left *RIPunch Right2
*UIConstraints: *RIZfold Left *RIPunch Right3
*UIConstraints: *RIZfold Left *RIPunch Right4
*UIConstraints: *RIZfold Left *RIPunch Upper2
*UIConstraints: *RIZfold Left *RIPunch Upper3
*UIConstraints: *RIZfold Left *RIPunch Upper4
*UIConstraints: *RIZfold Left *RIPunch GBCLeft
*UIConstraints: *RIZfold Left *RIPunch GBCRight
*UIConstraints: *RIZfold Left *RIPunch GBCTop
*UIConstraints: *RIPunch Left2 *RIZfold Bottom
*UIConstraints: *RIPunch Left3 *RIZfold Bottom
*UIConstraints: *RIPunch Left4 *RIZfold Bottom
*UIConstraints: *RIPunch Right2 *RIZfold Bottom
*UIConstraints: *RIPunch Right3 *RIZfold Bottom
*UIConstraints: *RIPunch Right4 *RIZfold Bottom
*UIConstraints: *RIPunch Upper2 *RIZfold Bottom
*UIConstraints: *RIPunch Upper3 *RIZfold Bottom
*UIConstraints: *RIPunch Upper4 *RIZfold Bottom
*UIConstraints: *RIPunch GBCLeft *RIZfold Bottom
*UIConstraints: *RIPunch GBCRight *RIZfold Bottom
*UIConstraints: *RIPunch GBCTop *RIZfold Bottom
*UIConstraints: *RIPunch Left2 *RIZfold Right
*UIConstraints: *RIPunch Left3 *RIZfold Right
*UIConstraints: *RIPunch Left4 *RIZfold Right
*UIConstraints: *RIPunch Right2 *RIZfold Right
*UIConstraints: *RIPunch Right3 *RIZfold Right
*UIConstraints: *RIPunch Right4 *RIZfold Right
*UIConstraints: *RIPunch Upper2 *RIZfold Right
*UIConstraints: *RIPunch Upper3 *RIZfold Right
*UIConstraints: *RIPunch Upper4 *RIZfold Right
*UIConstraints: *RIPunch GBCLeft *RIZfold Right
*UIConstraints: *RIPunch GBCRight *RIZfold Right
*UIConstraints: *RIPunch GBCTop *RIZfold Right
*UIConstraints: *RIPunch Left2 *RIZfold Left
*UIConstraints: *RIPunch Left3 *RIZfold Left
*UIConstraints: *RIPunch Left4 *RIZfold Left
*UIConstraints: *RIPunch Right2 *RIZfold Left
*UIConstraints: *RIPunch Right3 *RIZfold Left
*UIConstraints: *RIPunch Right4 *RIZfold Left
*UIConstraints: *RIPunch Upper2 *RIZfold Left
*UIConstraints: *RIPunch Upper3 *RIZfold Left
*UIConstraints: *RIPunch Upper4 *RIZfold Left
*UIConstraints: *RIPunch GBCLeft *RIZfold Left
*UIConstraints: *RIPunch GBCRight *RIZfold Left
*UIConstraints: *RIPunch GBCTop *RIZfold Left
*%========== Perfect/Ring Binding / Punch ==========
*UIConstraints: *RIBind Perfect *RIPunch Left2
*UIConstraints: *RIBind Perfect *RIPunch Left3
*UIConstraints: *RIBind Perfect *RIPunch Left4
*UIConstraints: *RIBind Perfect *RIPunch Right2
*UIConstraints: *RIBind Perfect *RIPunch Right3
*UIConstraints: *RIBind Perfect *RIPunch Right4
*UIConstraints: *RIBind Perfect *RIPunch Upper2
*UIConstraints: *RIBind Perfect *RIPunch Upper3
*UIConstraints: *RIBind Perfect *RIPunch Upper4
*UIConstraints: *RIBind Perfect *RIPunch GBCLeft
*UIConstraints: *RIBind Perfect *RIPunch GBCRight
*UIConstraints: *RIBind Perfect *RIPunch GBCTop
*UIConstraints: *RIBind RingBind *RIPunch Left2
*UIConstraints: *RIBind RingBind *RIPunch Left3
*UIConstraints: *RIBind RingBind *RIPunch Left4
*UIConstraints: *RIBind RingBind *RIPunch Right2
*UIConstraints: *RIBind RingBind *RIPunch Right3
*UIConstraints: *RIBind RingBind *RIPunch Right4
*UIConstraints: *RIBind RingBind *RIPunch Upper2
*UIConstraints: *RIBind RingBind *RIPunch Upper3
*UIConstraints: *RIBind RingBind *RIPunch Upper4
*UIConstraints: *RIBind RingBind *RIPunch GBCLeft
*UIConstraints: *RIBind RingBind *RIPunch GBCRight
*UIConstraints: *RIBind RingBind *RIPunch GBCTop
*UIConstraints: *RIBind RingPunch *RIPunch Left2
*UIConstraints: *RIBind RingPunch *RIPunch Left3
*UIConstraints: *RIBind RingPunch *RIPunch Left4
*UIConstraints: *RIBind RingPunch *RIPunch Right2
*UIConstraints: *RIBind RingPunch *RIPunch Right3
*UIConstraints: *RIBind RingPunch *RIPunch Right4
*UIConstraints: *RIBind RingPunch *RIPunch Upper2
*UIConstraints: *RIBind RingPunch *RIPunch Upper3
*UIConstraints: *RIBind RingPunch *RIPunch Upper4
*UIConstraints: *RIBind RingPunch *RIPunch GBCLeft
*UIConstraints: *RIBind RingPunch *RIPunch GBCRight
*UIConstraints: *RIBind RingPunch *RIPunch GBCTop
*UIConstraints: *RIPunch Left2 *RIBind Perfect
*UIConstraints: *RIPunch Left3 *RIBind Perfect
*UIConstraints: *RIPunch Left4 *RIBind Perfect
*UIConstraints: *RIPunch Right2 *RIBind Perfect
*UIConstraints: *RIPunch Right3 *RIBind Perfect
*UIConstraints: *RIPunch Right4 *RIBind Perfect
*UIConstraints: *RIPunch Upper2 *RIBind Perfect
*UIConstraints: *RIPunch Upper3 *RIBind Perfect
*UIConstraints: *RIPunch Upper4 *RIBind Perfect
*UIConstraints: *RIPunch GBCLeft *RIBind Perfect
*UIConstraints: *RIPunch GBCRight *RIBind Perfect
*UIConstraints: *RIPunch GBCTop *RIBind Perfect
*UIConstraints: *RIPunch Left2 *RIBind RingBind
*UIConstraints: *RIPunch Left3 *RIBind RingBind
*UIConstraints: *RIPunch Left4 *RIBind RingBind
*UIConstraints: *RIPunch Right2 *RIBind RingBind
*UIConstraints: *RIPunch Right3 *RIBind RingBind
*UIConstraints: *RIPunch Right4 *RIBind RingBind
*UIConstraints: *RIPunch Upper2 *RIBind RingBind
*UIConstraints: *RIPunch Upper3 *RIBind RingBind
*UIConstraints: *RIPunch Upper4 *RIBind RingBind
*UIConstraints: *RIPunch GBCLeft *RIBind RingBind
*UIConstraints: *RIPunch GBCRight *RIBind RingBind
*UIConstraints: *RIPunch GBCTop *RIBind RingBind
*UIConstraints: *RIPunch Left2 *RIBind RingPunch
*UIConstraints: *RIPunch Left3 *RIBind RingPunch
*UIConstraints: *RIPunch Left4 *RIBind RingPunch
*UIConstraints: *RIPunch Right2 *RIBind RingPunch
*UIConstraints: *RIPunch Right3 *RIBind RingPunch
*UIConstraints: *RIPunch Right4 *RIBind RingPunch
*UIConstraints: *RIPunch Upper2 *RIBind RingPunch
*UIConstraints: *RIPunch Upper3 *RIBind RingPunch
*UIConstraints: *RIPunch Upper4 *RIBind RingPunch
*UIConstraints: *RIPunch GBCLeft *RIBind RingPunch
*UIConstraints: *RIPunch GBCRight *RIBind RingPunch
*UIConstraints: *RIPunch GBCTop *RIBind RingPunch
*%========== Overlap Fold / Fold Type ==========
*UIConstraints: *OverlapFold On *RIFoldType None
*UIConstraints: *OverlapFold On *RIFoldType Quarto
*UIConstraints: *OverlapFold On *RIFoldType Gatefold
*UIConstraints: *RIFoldType None *OverlapFold On
*UIConstraints: *RIFoldType Quarto *OverlapFold On
*UIConstraints: *RIFoldType Gatefold *OverlapFold On
*%========== Z-fold / Fold Type ==========
*UIConstraints: *RIZfold Bottom *RIFoldType Twofold
*UIConstraints: *RIZfold Bottom *RIFoldType ThreefoldIn
*UIConstraints: *RIZfold Bottom *RIFoldType ThreefoldOut
*UIConstraints: *RIZfold Bottom *RIFoldType Quarto
*UIConstraints: *RIZfold Bottom *RIFoldType Gatefold
*UIConstraints: *RIZfold Right *RIFoldType Twofold
*UIConstraints: *RIZfold Right *RIFoldType ThreefoldIn
*UIConstraints: *RIZfold Right *RIFoldType ThreefoldOut
*UIConstraints: *RIZfold Right *RIFoldType Quarto
*UIConstraints: *RIZfold Right *RIFoldType Gatefold
*UIConstraints: *RIZfold Left *RIFoldType Twofold
*UIConstraints: *RIZfold Left *RIFoldType ThreefoldIn
*UIConstraints: *RIZfold Left *RIFoldType ThreefoldOut
*UIConstraints: *RIZfold Left *RIFoldType Quarto
*UIConstraints: *RIZfold Left *RIFoldType Gatefold
*UIConstraints: *RIFoldType Twofold *RIZfold Bottom
*UIConstraints: *RIFoldType ThreefoldIn *RIZfold Bottom
*UIConstraints: *RIFoldType ThreefoldOut *RIZfold Bottom
*UIConstraints: *RIFoldType Quarto *RIZfold Bottom
*UIConstraints: *RIFoldType Gatefold *RIZfold Bottom
*UIConstraints: *RIFoldType Twofold *RIZfold Right
*UIConstraints: *RIFoldType ThreefoldIn *RIZfold Right
*UIConstraints: *RIFoldType ThreefoldOut *RIZfold Right
*UIConstraints: *RIFoldType Quarto *RIZfold Right
*UIConstraints: *RIFoldType Gatefold *RIZfold Right
*UIConstraints: *RIFoldType Twofold *RIZfold Left
*UIConstraints: *RIFoldType ThreefoldIn *RIZfold Left
*UIConstraints: *RIFoldType ThreefoldOut *RIZfold Left
*UIConstraints: *RIFoldType Quarto *RIZfold Left
*UIConstraints: *RIFoldType Gatefold *RIZfold Left
*%========== Perfect/Ring Binding / Fold Type ==========
*UIConstraints: *RIBind Perfect *RIFoldType Twofold
*UIConstraints: *RIBind Perfect *RIFoldType ThreefoldIn
*UIConstraints: *RIBind Perfect *RIFoldType ThreefoldOut
*UIConstraints: *RIBind Perfect *RIFoldType Quarto
*UIConstraints: *RIBind Perfect *RIFoldType Gatefold
*UIConstraints: *RIBind RingBind *RIFoldType Twofold
*UIConstraints: *RIBind RingBind *RIFoldType ThreefoldIn
*UIConstraints: *RIBind RingBind *RIFoldType ThreefoldOut
*UIConstraints: *RIBind RingBind *RIFoldType Quarto
*UIConstraints: *RIBind RingBind *RIFoldType Gatefold
*UIConstraints: *RIBind RingPunch *RIFoldType Twofold
*UIConstraints: *RIBind RingPunch *RIFoldType ThreefoldIn
*UIConstraints: *RIBind RingPunch *RIFoldType ThreefoldOut
*UIConstraints: *RIBind RingPunch *RIFoldType Quarto
*UIConstraints: *RIBind RingPunch *RIFoldType Gatefold
*UIConstraints: *RIFoldType Twofold *RIBind Perfect
*UIConstraints: *RIFoldType ThreefoldIn *RIBind Perfect
*UIConstraints: *RIFoldType ThreefoldOut *RIBind Perfect
*UIConstraints: *RIFoldType Quarto *RIBind Perfect
*UIConstraints: *RIFoldType Gatefold *RIBind Perfect
*UIConstraints: *RIFoldType Twofold *RIBind RingBind
*UIConstraints: *RIFoldType ThreefoldIn *RIBind RingBind
*UIConstraints: *RIFoldType ThreefoldOut *RIBind RingBind
*UIConstraints: *RIFoldType Quarto *RIBind RingBind
*UIConstraints: *RIFoldType Gatefold *RIBind RingBind
*UIConstraints: *RIFoldType Twofold *RIBind RingPunch
*UIConstraints: *RIFoldType ThreefoldIn *RIBind RingPunch
*UIConstraints: *RIFoldType ThreefoldOut *RIBind RingPunch
*UIConstraints: *RIFoldType Quarto *RIBind RingPunch
*UIConstraints: *RIFoldType Gatefold *RIBind RingPunch
*%========== Perfect/Ring Binding / Z-fold ==========
*UIConstraints: *RIBind Perfect *RIZfold Bottom
*UIConstraints: *RIBind Perfect *RIZfold Right
*UIConstraints: *RIBind Perfect *RIZfold Left
*UIConstraints: *RIBind RingBind *RIZfold Bottom
*UIConstraints: *RIBind RingBind *RIZfold Right
*UIConstraints: *RIBind RingBind *RIZfold Left
*UIConstraints: *RIBind RingPunch *RIZfold Bottom
*UIConstraints: *RIBind RingPunch *RIZfold Right
*UIConstraints: *RIBind RingPunch *RIZfold Left
*UIConstraints: *RIZfold Bottom *RIBind Perfect
*UIConstraints: *RIZfold Right *RIBind Perfect
*UIConstraints: *RIZfold Left *RIBind Perfect
*UIConstraints: *RIZfold Bottom *RIBind RingBind
*UIConstraints: *RIZfold Right *RIBind RingBind
*UIConstraints: *RIZfold Left *RIBind RingBind
*UIConstraints: *RIZfold Bottom *RIBind RingPunch
*UIConstraints: *RIZfold Right *RIBind RingPunch
*UIConstraints: *RIZfold Left *RIBind RingPunch
*%========== Face-up / Z-fold ==========
*UIConstraints: *Faceup On *RIZfold Bottom
*UIConstraints: *Faceup On *RIZfold Right
*UIConstraints: *Faceup On *RIZfold Left
*UIConstraints: *RIZfold Bottom *Faceup On
*UIConstraints: *RIZfold Right *Faceup On
*UIConstraints: *RIZfold Left *Faceup On
*%========== Perfect Binding Cutting Options / Perfect/Ring Binding ==========
*UIConstraints: *RITrim ForeEdgeSpecify *RIBind None
*UIConstraints: *RITrim ForeEdgeSpecify *RIBind RingBind
*UIConstraints: *RITrim ForeEdgeSpecify *RIBind RingPunch
*UIConstraints: *RITrim ForeEdgeCut *RIBind None
*UIConstraints: *RITrim ForeEdgeCut *RIBind RingBind
*UIConstraints: *RITrim ForeEdgeCut *RIBind RingPunch
*UIConstraints: *RITrim 3EdgeSpecify *RIBind None
*UIConstraints: *RITrim 3EdgeSpecify *RIBind RingBind
*UIConstraints: *RITrim 3EdgeSpecify *RIBind RingPunch
*UIConstraints: *RITrim 3EdgeCut *RIBind None
*UIConstraints: *RITrim 3EdgeCut *RIBind RingBind
*UIConstraints: *RITrim 3EdgeCut *RIBind RingPunch
*UIConstraints: *RIBind None *RITrim ForeEdgeSpecify
*UIConstraints: *RIBind RingBind *RITrim ForeEdgeSpecify
*UIConstraints: *RIBind RingPunch *RITrim ForeEdgeSpecify
*UIConstraints: *RIBind None *RITrim ForeEdgeCut
*UIConstraints: *RIBind RingBind *RITrim ForeEdgeCut
*UIConstraints: *RIBind RingPunch *RITrim ForeEdgeCut
*UIConstraints: *RIBind None *RITrim 3EdgeSpecify
*UIConstraints: *RIBind RingBind *RITrim 3EdgeSpecify
*UIConstraints: *RIBind RingPunch *RITrim 3EdgeSpecify
*UIConstraints: *RIBind None *RITrim 3EdgeCut
*UIConstraints: *RIBind RingBind *RITrim 3EdgeCut
*UIConstraints: *RIBind RingPunch *RITrim 3EdgeCut
*%========== Adjust Image Position (Along Binding Edge) / Perfect/Ring Binding ==========
*UIConstraints: *RIImagePositionUB 50mm *RIBind None
*UIConstraints: *RIImagePositionUB 50mm *RIBind RingBind
*UIConstraints: *RIImagePositionUB 50mm *RIBind RingPunch
*UIConstraints: *RIImagePositionUB 45mm *RIBind None
*UIConstraints: *RIImagePositionUB 45mm *RIBind RingBind
*UIConstraints: *RIImagePositionUB 45mm *RIBind RingPunch
*UIConstraints: *RIImagePositionUB 40mm *RIBind None
*UIConstraints: *RIImagePositionUB 40mm *RIBind RingBind
*UIConstraints: *RIImagePositionUB 40mm *RIBind RingPunch
*UIConstraints: *RIImagePositionUB 35mm *RIBind None
*UIConstraints: *RIImagePositionUB 35mm *RIBind RingBind
*UIConstraints: *RIImagePositionUB 35mm *RIBind RingPunch
*UIConstraints: *RIImagePositionUB 30mm *RIBind None
*UIConstraints: *RIImagePositionUB 30mm *RIBind RingBind
*UIConstraints: *RIImagePositionUB 30mm *RIBind RingPunch
*UIConstraints: *RIImagePositionUB 25mm *RIBind None
*UIConstraints: *RIImagePositionUB 25mm *RIBind RingBind
*UIConstraints: *RIImagePositionUB 25mm *RIBind RingPunch
*UIConstraints: *RIImagePositionUB 20mm *RIBind None
*UIConstraints: *RIImagePositionUB 20mm *RIBind RingBind
*UIConstraints: *RIImagePositionUB 20mm *RIBind RingPunch
*UIConstraints: *RIImagePositionUB 15mm *RIBind None
*UIConstraints: *RIImagePositionUB 15mm *RIBind RingBind
*UIConstraints: *RIImagePositionUB 15mm *RIBind RingPunch
*UIConstraints: *RIImagePositionUB 10mm *RIBind None
*UIConstraints: *RIImagePositionUB 10mm *RIBind RingBind
*UIConstraints: *RIImagePositionUB 10mm *RIBind RingPunch
*UIConstraints: *RIImagePositionUB 05mm *RIBind None
*UIConstraints: *RIImagePositionUB 05mm *RIBind RingBind
*UIConstraints: *RIImagePositionUB 05mm *RIBind RingPunch
*UIConstraints: *RIImagePositionUB M05mm *RIBind None
*UIConstraints: *RIImagePositionUB M05mm *RIBind RingBind
*UIConstraints: *RIImagePositionUB M05mm *RIBind RingPunch
*UIConstraints: *RIImagePositionUB M10mm *RIBind None
*UIConstraints: *RIImagePositionUB M10mm *RIBind RingBind
*UIConstraints: *RIImagePositionUB M10mm *RIBind RingPunch
*UIConstraints: *RIImagePositionUB M15mm *RIBind None
*UIConstraints: *RIImagePositionUB M15mm *RIBind RingBind
*UIConstraints: *RIImagePositionUB M15mm *RIBind RingPunch
*UIConstraints: *RIImagePositionUB M20mm *RIBind None
*UIConstraints: *RIImagePositionUB M20mm *RIBind RingBind
*UIConstraints: *RIImagePositionUB M20mm *RIBind RingPunch
*UIConstraints: *RIImagePositionUB M25mm *RIBind None
*UIConstraints: *RIImagePositionUB M25mm *RIBind RingBind
*UIConstraints: *RIImagePositionUB M25mm *RIBind RingPunch
*UIConstraints: *RIImagePositionUB M30mm *RIBind None
*UIConstraints: *RIImagePositionUB M30mm *RIBind RingBind
*UIConstraints: *RIImagePositionUB M30mm *RIBind RingPunch
*UIConstraints: *RIImagePositionUB M35mm *RIBind None
*UIConstraints: *RIImagePositionUB M35mm *RIBind RingBind
*UIConstraints: *RIImagePositionUB M35mm *RIBind RingPunch
*UIConstraints: *RIImagePositionUB M40mm *RIBind None
*UIConstraints: *RIImagePositionUB M40mm *RIBind RingBind
*UIConstraints: *RIImagePositionUB M40mm *RIBind RingPunch
*UIConstraints: *RIImagePositionUB M45mm *RIBind None
*UIConstraints: *RIImagePositionUB M45mm *RIBind RingBind
*UIConstraints: *RIImagePositionUB M45mm *RIBind RingPunch
*UIConstraints: *RIImagePositionUB M50mm *RIBind None
*UIConstraints: *RIImagePositionUB M50mm *RIBind RingBind
*UIConstraints: *RIImagePositionUB M50mm *RIBind RingPunch
*UIConstraints: *RIBind None *RIImagePositionUB 50mm
*UIConstraints: *RIBind RingBind *RIImagePositionUB 50mm
*UIConstraints: *RIBind RingPunch *RIImagePositionUB 50mm
*UIConstraints: *RIBind None *RIImagePositionUB 45mm
*UIConstraints: *RIBind RingBind *RIImagePositionUB 45mm
*UIConstraints: *RIBind RingPunch *RIImagePositionUB 45mm
*UIConstraints: *RIBind None *RIImagePositionUB 40mm
*UIConstraints: *RIBind RingBind *RIImagePositionUB 40mm
*UIConstraints: *RIBind RingPunch *RIImagePositionUB 40mm
*UIConstraints: *RIBind None *RIImagePositionUB 35mm
*UIConstraints: *RIBind RingBind *RIImagePositionUB 35mm
*UIConstraints: *RIBind RingPunch *RIImagePositionUB 35mm
*UIConstraints: *RIBind None *RIImagePositionUB 30mm
*UIConstraints: *RIBind RingBind *RIImagePositionUB 30mm
*UIConstraints: *RIBind RingPunch *RIImagePositionUB 30mm
*UIConstraints: *RIBind None *RIImagePositionUB 25mm
*UIConstraints: *RIBind RingBind *RIImagePositionUB 25mm
*UIConstraints: *RIBind RingPunch *RIImagePositionUB 25mm
*UIConstraints: *RIBind None *RIImagePositionUB 20mm
*UIConstraints: *RIBind RingBind *RIImagePositionUB 20mm
*UIConstraints: *RIBind RingPunch *RIImagePositionUB 20mm
*UIConstraints: *RIBind None *RIImagePositionUB 15mm
*UIConstraints: *RIBind RingBind *RIImagePositionUB 15mm
*UIConstraints: *RIBind RingPunch *RIImagePositionUB 15mm
*UIConstraints: *RIBind None *RIImagePositionUB 10mm
*UIConstraints: *RIBind RingBind *RIImagePositionUB 10mm
*UIConstraints: *RIBind RingPunch *RIImagePositionUB 10mm
*UIConstraints: *RIBind None *RIImagePositionUB 05mm
*UIConstraints: *RIBind RingBind *RIImagePositionUB 05mm
*UIConstraints: *RIBind RingPunch *RIImagePositionUB 05mm
*UIConstraints: *RIBind None *RIImagePositionUB M05mm
*UIConstraints: *RIBind RingBind *RIImagePositionUB M05mm
*UIConstraints: *RIBind RingPunch *RIImagePositionUB M05mm
*UIConstraints: *RIBind None *RIImagePositionUB M10mm
*UIConstraints: *RIBind RingBind *RIImagePositionUB M10mm
*UIConstraints: *RIBind RingPunch *RIImagePositionUB M10mm
*UIConstraints: *RIBind None *RIImagePositionUB M15mm
*UIConstraints: *RIBind RingBind *RIImagePositionUB M15mm
*UIConstraints: *RIBind RingPunch *RIImagePositionUB M15mm
*UIConstraints: *RIBind None *RIImagePositionUB M20mm
*UIConstraints: *RIBind RingBind *RIImagePositionUB M20mm
*UIConstraints: *RIBind RingPunch *RIImagePositionUB M20mm
*UIConstraints: *RIBind None *RIImagePositionUB M25mm
*UIConstraints: *RIBind RingBind *RIImagePositionUB M25mm
*UIConstraints: *RIBind RingPunch *RIImagePositionUB M25mm
*UIConstraints: *RIBind None *RIImagePositionUB M30mm
*UIConstraints: *RIBind RingBind *RIImagePositionUB M30mm
*UIConstraints: *RIBind RingPunch *RIImagePositionUB M30mm
*UIConstraints: *RIBind None *RIImagePositionUB M35mm
*UIConstraints: *RIBind RingBind *RIImagePositionUB M35mm
*UIConstraints: *RIBind RingPunch *RIImagePositionUB M35mm
*UIConstraints: *RIBind None *RIImagePositionUB M40mm
*UIConstraints: *RIBind RingBind *RIImagePositionUB M40mm
*UIConstraints: *RIBind RingPunch *RIImagePositionUB M40mm
*UIConstraints: *RIBind None *RIImagePositionUB M45mm
*UIConstraints: *RIBind RingBind *RIImagePositionUB M45mm
*UIConstraints: *RIBind RingPunch *RIImagePositionUB M45mm
*UIConstraints: *RIBind None *RIImagePositionUB M50mm
*UIConstraints: *RIBind RingBind *RIImagePositionUB M50mm
*UIConstraints: *RIBind RingPunch *RIImagePositionUB M50mm
*%========== Adjust Image Position (Across Binding Edge) / Perfect/Ring Binding ==========
*UIConstraints: *RIImagePositionLR 50mm *RIBind None
*UIConstraints: *RIImagePositionLR 50mm *RIBind RingBind
*UIConstraints: *RIImagePositionLR 50mm *RIBind RingPunch
*UIConstraints: *RIImagePositionLR 45mm *RIBind None
*UIConstraints: *RIImagePositionLR 45mm *RIBind RingBind
*UIConstraints: *RIImagePositionLR 45mm *RIBind RingPunch
*UIConstraints: *RIImagePositionLR 40mm *RIBind None
*UIConstraints: *RIImagePositionLR 40mm *RIBind RingBind
*UIConstraints: *RIImagePositionLR 40mm *RIBind RingPunch
*UIConstraints: *RIImagePositionLR 35mm *RIBind None
*UIConstraints: *RIImagePositionLR 35mm *RIBind RingBind
*UIConstraints: *RIImagePositionLR 35mm *RIBind RingPunch
*UIConstraints: *RIImagePositionLR 30mm *RIBind None
*UIConstraints: *RIImagePositionLR 30mm *RIBind RingBind
*UIConstraints: *RIImagePositionLR 30mm *RIBind RingPunch
*UIConstraints: *RIImagePositionLR 25mm *RIBind None
*UIConstraints: *RIImagePositionLR 25mm *RIBind RingBind
*UIConstraints: *RIImagePositionLR 25mm *RIBind RingPunch
*UIConstraints: *RIImagePositionLR 20mm *RIBind None
*UIConstraints: *RIImagePositionLR 20mm *RIBind RingBind
*UIConstraints: *RIImagePositionLR 20mm *RIBind RingPunch
*UIConstraints: *RIImagePositionLR 15mm *RIBind None
*UIConstraints: *RIImagePositionLR 15mm *RIBind RingBind
*UIConstraints: *RIImagePositionLR 15mm *RIBind RingPunch
*UIConstraints: *RIImagePositionLR 10mm *RIBind None
*UIConstraints: *RIImagePositionLR 10mm *RIBind RingBind
*UIConstraints: *RIImagePositionLR 10mm *RIBind RingPunch
*UIConstraints: *RIImagePositionLR 05mm *RIBind None
*UIConstraints: *RIImagePositionLR 05mm *RIBind RingBind
*UIConstraints: *RIImagePositionLR 05mm *RIBind RingPunch
*UIConstraints: *RIImagePositionLR M05mm *RIBind None
*UIConstraints: *RIImagePositionLR M05mm *RIBind RingBind
*UIConstraints: *RIImagePositionLR M05mm *RIBind RingPunch
*UIConstraints: *RIImagePositionLR M10mm *RIBind None
*UIConstraints: *RIImagePositionLR M10mm *RIBind RingBind
*UIConstraints: *RIImagePositionLR M10mm *RIBind RingPunch
*UIConstraints: *RIImagePositionLR M15mm *RIBind None
*UIConstraints: *RIImagePositionLR M15mm *RIBind RingBind
*UIConstraints: *RIImagePositionLR M15mm *RIBind RingPunch
*UIConstraints: *RIImagePositionLR M20mm *RIBind None
*UIConstraints: *RIImagePositionLR M20mm *RIBind RingBind
*UIConstraints: *RIImagePositionLR M20mm *RIBind RingPunch
*UIConstraints: *RIImagePositionLR M25mm *RIBind None
*UIConstraints: *RIImagePositionLR M25mm *RIBind RingBind
*UIConstraints: *RIImagePositionLR M25mm *RIBind RingPunch
*UIConstraints: *RIImagePositionLR M30mm *RIBind None
*UIConstraints: *RIImagePositionLR M30mm *RIBind RingBind
*UIConstraints: *RIImagePositionLR M30mm *RIBind RingPunch
*UIConstraints: *RIImagePositionLR M35mm *RIBind None
*UIConstraints: *RIImagePositionLR M35mm *RIBind RingBind
*UIConstraints: *RIImagePositionLR M35mm *RIBind RingPunch
*UIConstraints: *RIImagePositionLR M40mm *RIBind None
*UIConstraints: *RIImagePositionLR M40mm *RIBind RingBind
*UIConstraints: *RIImagePositionLR M40mm *RIBind RingPunch
*UIConstraints: *RIImagePositionLR M45mm *RIBind None
*UIConstraints: *RIImagePositionLR M45mm *RIBind RingBind
*UIConstraints: *RIImagePositionLR M45mm *RIBind RingPunch
*UIConstraints: *RIImagePositionLR M50mm *RIBind None
*UIConstraints: *RIImagePositionLR M50mm *RIBind RingBind
*UIConstraints: *RIImagePositionLR M50mm *RIBind RingPunch
*UIConstraints: *RIBind None *RIImagePositionLR 50mm
*UIConstraints: *RIBind RingBind *RIImagePositionLR 50mm
*UIConstraints: *RIBind RingPunch *RIImagePositionLR 50mm
*UIConstraints: *RIBind None *RIImagePositionLR 45mm
*UIConstraints: *RIBind RingBind *RIImagePositionLR 45mm
*UIConstraints: *RIBind RingPunch *RIImagePositionLR 45mm
*UIConstraints: *RIBind None *RIImagePositionLR 40mm
*UIConstraints: *RIBind RingBind *RIImagePositionLR 40mm
*UIConstraints: *RIBind RingPunch *RIImagePositionLR 40mm
*UIConstraints: *RIBind None *RIImagePositionLR 35mm
*UIConstraints: *RIBind RingBind *RIImagePositionLR 35mm
*UIConstraints: *RIBind RingPunch *RIImagePositionLR 35mm
*UIConstraints: *RIBind None *RIImagePositionLR 30mm
*UIConstraints: *RIBind RingBind *RIImagePositionLR 30mm
*UIConstraints: *RIBind RingPunch *RIImagePositionLR 30mm
*UIConstraints: *RIBind None *RIImagePositionLR 25mm
*UIConstraints: *RIBind RingBind *RIImagePositionLR 25mm
*UIConstraints: *RIBind RingPunch *RIImagePositionLR 25mm
*UIConstraints: *RIBind None *RIImagePositionLR 20mm
*UIConstraints: *RIBind RingBind *RIImagePositionLR 20mm
*UIConstraints: *RIBind RingPunch *RIImagePositionLR 20mm
*UIConstraints: *RIBind None *RIImagePositionLR 15mm
*UIConstraints: *RIBind RingBind *RIImagePositionLR 15mm
*UIConstraints: *RIBind RingPunch *RIImagePositionLR 15mm
*UIConstraints: *RIBind None *RIImagePositionLR 10mm
*UIConstraints: *RIBind RingBind *RIImagePositionLR 10mm
*UIConstraints: *RIBind RingPunch *RIImagePositionLR 10mm
*UIConstraints: *RIBind None *RIImagePositionLR 05mm
*UIConstraints: *RIBind RingBind *RIImagePositionLR 05mm
*UIConstraints: *RIBind RingPunch *RIImagePositionLR 05mm
*UIConstraints: *RIBind None *RIImagePositionLR M05mm
*UIConstraints: *RIBind RingBind *RIImagePositionLR M05mm
*UIConstraints: *RIBind RingPunch *RIImagePositionLR M05mm
*UIConstraints: *RIBind None *RIImagePositionLR M10mm
*UIConstraints: *RIBind RingBind *RIImagePositionLR M10mm
*UIConstraints: *RIBind RingPunch *RIImagePositionLR M10mm
*UIConstraints: *RIBind None *RIImagePositionLR M15mm
*UIConstraints: *RIBind RingBind *RIImagePositionLR M15mm
*UIConstraints: *RIBind RingPunch *RIImagePositionLR M15mm
*UIConstraints: *RIBind None *RIImagePositionLR M20mm
*UIConstraints: *RIBind RingBind *RIImagePositionLR M20mm
*UIConstraints: *RIBind RingPunch *RIImagePositionLR M20mm
*UIConstraints: *RIBind None *RIImagePositionLR M25mm
*UIConstraints: *RIBind RingBind *RIImagePositionLR M25mm
*UIConstraints: *RIBind RingPunch *RIImagePositionLR M25mm
*UIConstraints: *RIBind None *RIImagePositionLR M30mm
*UIConstraints: *RIBind RingBind *RIImagePositionLR M30mm
*UIConstraints: *RIBind RingPunch *RIImagePositionLR M30mm
*UIConstraints: *RIBind None *RIImagePositionLR M35mm
*UIConstraints: *RIBind RingBind *RIImagePositionLR M35mm
*UIConstraints: *RIBind RingPunch *RIImagePositionLR M35mm
*UIConstraints: *RIBind None *RIImagePositionLR M40mm
*UIConstraints: *RIBind RingBind *RIImagePositionLR M40mm
*UIConstraints: *RIBind RingPunch *RIImagePositionLR M40mm
*UIConstraints: *RIBind None *RIImagePositionLR M45mm
*UIConstraints: *RIBind RingBind *RIImagePositionLR M45mm
*UIConstraints: *RIBind RingPunch *RIImagePositionLR M45mm
*UIConstraints: *RIBind None *RIImagePositionLR M50mm
*UIConstraints: *RIBind RingBind *RIImagePositionLR M50mm
*UIConstraints: *RIBind RingPunch *RIImagePositionLR M50mm
*%========== Perfect Binding Cover Print / Perfect/Ring Binding ==========
*UIConstraints: *RICoverPrint SingleInside *RIBind None
*UIConstraints: *RICoverPrint SingleInside *RIBind RingBind
*UIConstraints: *RICoverPrint SingleInside *RIBind RingPunch
*UIConstraints: *RICoverPrint SingleOutside *RIBind None
*UIConstraints: *RICoverPrint SingleOutside *RIBind RingBind
*UIConstraints: *RICoverPrint SingleOutside *RIBind RingPunch
*UIConstraints: *RICoverPrint Bothsides *RIBind None
*UIConstraints: *RICoverPrint Bothsides *RIBind RingBind
*UIConstraints: *RICoverPrint Bothsides *RIBind RingPunch
*UIConstraints: *RIBind None *RICoverPrint SingleInside
*UIConstraints: *RIBind RingBind *RICoverPrint SingleInside
*UIConstraints: *RIBind RingPunch *RICoverPrint SingleInside
*UIConstraints: *RIBind None *RICoverPrint SingleOutside
*UIConstraints: *RIBind RingBind *RICoverPrint SingleOutside
*UIConstraints: *RIBind RingPunch *RICoverPrint SingleOutside
*UIConstraints: *RIBind None *RICoverPrint Bothsides
*UIConstraints: *RIBind RingBind *RICoverPrint Bothsides
*UIConstraints: *RIBind RingPunch *RICoverPrint Bothsides
*%========== Perfect Binding Finishing Size / Perfect Binding Cutting Options ==========
*UIConstraints: *RICutSize A3 *RITrim None
*UIConstraints: *RICutSize A3 *RITrim ForeEdgeCut
*UIConstraints: *RICutSize A3 *RITrim 3EdgeCut
*UIConstraints: *RICutSize A4 *RITrim None
*UIConstraints: *RICutSize A4 *RITrim ForeEdgeCut
*UIConstraints: *RICutSize A4 *RITrim 3EdgeCut
*UIConstraints: *RICutSize A5 *RITrim None
*UIConstraints: *RICutSize A5 *RITrim ForeEdgeCut
*UIConstraints: *RICutSize A5 *RITrim 3EdgeCut
*UIConstraints: *RICutSize A6 *RITrim None
*UIConstraints: *RICutSize A6 *RITrim ForeEdgeCut
*UIConstraints: *RICutSize A6 *RITrim 3EdgeCut
*UIConstraints: *RICutSize B4 *RITrim None
*UIConstraints: *RICutSize B4 *RITrim ForeEdgeCut
*UIConstraints: *RICutSize B4 *RITrim 3EdgeCut
*UIConstraints: *RICutSize B5 *RITrim None
*UIConstraints: *RICutSize B5 *RITrim ForeEdgeCut
*UIConstraints: *RICutSize B5 *RITrim 3EdgeCut
*UIConstraints: *RICutSize B6 *RITrim None
*UIConstraints: *RICutSize B6 *RITrim ForeEdgeCut
*UIConstraints: *RICutSize B6 *RITrim 3EdgeCut
*UIConstraints: *RICutSize Legal *RITrim None
*UIConstraints: *RICutSize Legal *RITrim ForeEdgeCut
*UIConstraints: *RICutSize Legal *RITrim 3EdgeCut
*UIConstraints: *RICutSize GovernmentLG *RITrim None
*UIConstraints: *RICutSize GovernmentLG *RITrim ForeEdgeCut
*UIConstraints: *RICutSize GovernmentLG *RITrim 3EdgeCut
*UIConstraints: *RICutSize EngQuatro *RITrim None
*UIConstraints: *RICutSize EngQuatro *RITrim ForeEdgeCut
*UIConstraints: *RICutSize EngQuatro *RITrim 3EdgeCut
*UIConstraints: *RICutSize Letter *RITrim None
*UIConstraints: *RICutSize Letter *RITrim ForeEdgeCut
*UIConstraints: *RICutSize Letter *RITrim 3EdgeCut
*UIConstraints: *RICutSize Statement *RITrim None
*UIConstraints: *RICutSize Statement *RITrim ForeEdgeCut
*UIConstraints: *RICutSize Statement *RITrim 3EdgeCut
*UIConstraints: *RICutSize F *RITrim None
*UIConstraints: *RICutSize F *RITrim ForeEdgeCut
*UIConstraints: *RICutSize F *RITrim 3EdgeCut
*UIConstraints: *RICutSize Folio *RITrim None
*UIConstraints: *RICutSize Folio *RITrim ForeEdgeCut
*UIConstraints: *RICutSize Folio *RITrim 3EdgeCut
*UIConstraints: *RICutSize FanFoldGermanLegal *RITrim None
*UIConstraints: *RICutSize FanFoldGermanLegal *RITrim ForeEdgeCut
*UIConstraints: *RICutSize FanFoldGermanLegal *RITrim 3EdgeCut
*UIConstraints: *RICutSize Tabloid *RITrim None
*UIConstraints: *RICutSize Tabloid *RITrim ForeEdgeCut
*UIConstraints: *RICutSize Tabloid *RITrim 3EdgeCut
*UIConstraints: *RICutSize 12x18 *RITrim None
*UIConstraints: *RICutSize 12x18 *RITrim ForeEdgeCut
*UIConstraints: *RICutSize 12x18 *RITrim 3EdgeCut
*UIConstraints: *RICutSize 11x14 *RITrim None
*UIConstraints: *RICutSize 11x14 *RITrim ForeEdgeCut
*UIConstraints: *RICutSize 11x14 *RITrim 3EdgeCut
*UIConstraints: *RICutSize 13x19.2 *RITrim None
*UIConstraints: *RICutSize 13x19.2 *RITrim ForeEdgeCut
*UIConstraints: *RICutSize 13x19.2 *RITrim 3EdgeCut
*UIConstraints: *RICutSize 13x19 *RITrim None
*UIConstraints: *RICutSize 13x19 *RITrim ForeEdgeCut
*UIConstraints: *RICutSize 13x19 *RITrim 3EdgeCut
*UIConstraints: *RICutSize 12.6x19.2 *RITrim None
*UIConstraints: *RICutSize 12.6x19.2 *RITrim ForeEdgeCut
*UIConstraints: *RICutSize 12.6x19.2 *RITrim 3EdgeCut
*UIConstraints: *RICutSize 12.6x18.5 *RITrim None
*UIConstraints: *RICutSize 12.6x18.5 *RITrim ForeEdgeCut
*UIConstraints: *RICutSize 12.6x18.5 *RITrim 3EdgeCut
*UIConstraints: *RICutSize 13x18 *RITrim None
*UIConstraints: *RICutSize 13x18 *RITrim ForeEdgeCut
*UIConstraints: *RICutSize 13x18 *RITrim 3EdgeCut
*UIConstraints: *RICutSize SRA3 *RITrim None
*UIConstraints: *RICutSize SRA3 *RITrim ForeEdgeCut
*UIConstraints: *RICutSize SRA3 *RITrim 3EdgeCut
*UIConstraints: *RICutSize SRA4 *RITrim None
*UIConstraints: *RICutSize SRA4 *RITrim ForeEdgeCut
*UIConstraints: *RICutSize SRA4 *RITrim 3EdgeCut
*UIConstraints: *RICutSize 226x310 *RITrim None
*UIConstraints: *RICutSize 226x310 *RITrim ForeEdgeCut
*UIConstraints: *RICutSize 226x310 *RITrim 3EdgeCut
*UIConstraints: *RICutSize 310x432 *RITrim None
*UIConstraints: *RICutSize 310x432 *RITrim ForeEdgeCut
*UIConstraints: *RICutSize 310x432 *RITrim 3EdgeCut
*UIConstraints: *RICutSize Executive *RITrim None
*UIConstraints: *RICutSize Executive *RITrim ForeEdgeCut
*UIConstraints: *RICutSize Executive *RITrim 3EdgeCut
*UIConstraints: *RICutSize 8Kai *RITrim None
*UIConstraints: *RICutSize 8Kai *RITrim ForeEdgeCut
*UIConstraints: *RICutSize 8Kai *RITrim 3EdgeCut
*UIConstraints: *RICutSize 16Kai *RITrim None
*UIConstraints: *RICutSize 16Kai *RITrim ForeEdgeCut
*UIConstraints: *RICutSize 16Kai *RITrim 3EdgeCut
*UIConstraints: *RITrim None *RICutSize A3
*UIConstraints: *RITrim ForeEdgeCut *RICutSize A3
*UIConstraints: *RITrim 3EdgeCut *RICutSize A3
*UIConstraints: *RITrim None *RICutSize A4
*UIConstraints: *RITrim ForeEdgeCut *RICutSize A4
*UIConstraints: *RITrim 3EdgeCut *RICutSize A4
*UIConstraints: *RITrim None *RICutSize A5
*UIConstraints: *RITrim ForeEdgeCut *RICutSize A5
*UIConstraints: *RITrim 3EdgeCut *RICutSize A5
*UIConstraints: *RITrim None *RICutSize A6
*UIConstraints: *RITrim ForeEdgeCut *RICutSize A6
*UIConstraints: *RITrim 3EdgeCut *RICutSize A6
*UIConstraints: *RITrim None *RICutSize B4
*UIConstraints: *RITrim ForeEdgeCut *RICutSize B4
*UIConstraints: *RITrim 3EdgeCut *RICutSize B4
*UIConstraints: *RITrim None *RICutSize B5
*UIConstraints: *RITrim ForeEdgeCut *RICutSize B5
*UIConstraints: *RITrim 3EdgeCut *RICutSize B5
*UIConstraints: *RITrim None *RICutSize B6
*UIConstraints: *RITrim ForeEdgeCut *RICutSize B6
*UIConstraints: *RITrim 3EdgeCut *RICutSize B6
*UIConstraints: *RITrim None *RICutSize Legal
*UIConstraints: *RITrim ForeEdgeCut *RICutSize Legal
*UIConstraints: *RITrim 3EdgeCut *RICutSize Legal
*UIConstraints: *RITrim None *RICutSize GovernmentLG
*UIConstraints: *RITrim ForeEdgeCut *RICutSize GovernmentLG
*UIConstraints: *RITrim 3EdgeCut *RICutSize GovernmentLG
*UIConstraints: *RITrim None *RICutSize EngQuatro
*UIConstraints: *RITrim ForeEdgeCut *RICutSize EngQuatro
*UIConstraints: *RITrim 3EdgeCut *RICutSize EngQuatro
*UIConstraints: *RITrim None *RICutSize Letter
*UIConstraints: *RITrim ForeEdgeCut *RICutSize Letter
*UIConstraints: *RITrim 3EdgeCut *RICutSize Letter
*UIConstraints: *RITrim None *RICutSize Statement
*UIConstraints: *RITrim ForeEdgeCut *RICutSize Statement
*UIConstraints: *RITrim 3EdgeCut *RICutSize Statement
*UIConstraints: *RITrim None *RICutSize F
*UIConstraints: *RITrim ForeEdgeCut *RICutSize F
*UIConstraints: *RITrim 3EdgeCut *RICutSize F
*UIConstraints: *RITrim None *RICutSize Folio
*UIConstraints: *RITrim ForeEdgeCut *RICutSize Folio
*UIConstraints: *RITrim 3EdgeCut *RICutSize Folio
*UIConstraints: *RITrim None *RICutSize FanFoldGermanLegal
*UIConstraints: *RITrim ForeEdgeCut *RICutSize FanFoldGermanLegal
*UIConstraints: *RITrim 3EdgeCut *RICutSize FanFoldGermanLegal
*UIConstraints: *RITrim None *RICutSize Tabloid
*UIConstraints: *RITrim ForeEdgeCut *RICutSize Tabloid
*UIConstraints: *RITrim 3EdgeCut *RICutSize Tabloid
*UIConstraints: *RITrim None *RICutSize 12x18
*UIConstraints: *RITrim ForeEdgeCut *RICutSize 12x18
*UIConstraints: *RITrim 3EdgeCut *RICutSize 12x18
*UIConstraints: *RITrim None *RICutSize 11x14
*UIConstraints: *RITrim ForeEdgeCut *RICutSize 11x14
*UIConstraints: *RITrim 3EdgeCut *RICutSize 11x14
*UIConstraints: *RITrim None *RICutSize 13x19.2
*UIConstraints: *RITrim ForeEdgeCut *RICutSize 13x19.2
*UIConstraints: *RITrim 3EdgeCut *RICutSize 13x19.2
*UIConstraints: *RITrim None *RICutSize 13x19
*UIConstraints: *RITrim ForeEdgeCut *RICutSize 13x19
*UIConstraints: *RITrim 3EdgeCut *RICutSize 13x19
*UIConstraints: *RITrim None *RICutSize 12.6x19.2
*UIConstraints: *RITrim ForeEdgeCut *RICutSize 12.6x19.2
*UIConstraints: *RITrim 3EdgeCut *RICutSize 12.6x19.2
*UIConstraints: *RITrim None *RICutSize 12.6x18.5
*UIConstraints: *RITrim ForeEdgeCut *RICutSize 12.6x18.5
*UIConstraints: *RITrim 3EdgeCut *RICutSize 12.6x18.5
*UIConstraints: *RITrim None *RICutSize 13x18
*UIConstraints: *RITrim ForeEdgeCut *RICutSize 13x18
*UIConstraints: *RITrim 3EdgeCut *RICutSize 13x18
*UIConstraints: *RITrim None *RICutSize SRA3
*UIConstraints: *RITrim ForeEdgeCut *RICutSize SRA3
*UIConstraints: *RITrim 3EdgeCut *RICutSize SRA3
*UIConstraints: *RITrim None *RICutSize SRA4
*UIConstraints: *RITrim ForeEdgeCut *RICutSize SRA4
*UIConstraints: *RITrim 3EdgeCut *RICutSize SRA4
*UIConstraints: *RITrim None *RICutSize 226x310
*UIConstraints: *RITrim ForeEdgeCut *RICutSize 226x310
*UIConstraints: *RITrim 3EdgeCut *RICutSize 226x310
*UIConstraints: *RITrim None *RICutSize 310x432
*UIConstraints: *RITrim ForeEdgeCut *RICutSize 310x432
*UIConstraints: *RITrim 3EdgeCut *RICutSize 310x432
*UIConstraints: *RITrim None *RICutSize Executive
*UIConstraints: *RITrim ForeEdgeCut *RICutSize Executive
*UIConstraints: *RITrim 3EdgeCut *RICutSize Executive
*UIConstraints: *RITrim None *RICutSize 8Kai
*UIConstraints: *RITrim ForeEdgeCut *RICutSize 8Kai
*UIConstraints: *RITrim 3EdgeCut *RICutSize 8Kai
*UIConstraints: *RITrim None *RICutSize 16Kai
*UIConstraints: *RITrim ForeEdgeCut *RICutSize 16Kai
*UIConstraints: *RITrim 3EdgeCut *RICutSize 16Kai
*%========== Perfect Binding Finishing Size (Along Binding Edge) / Perfect Binding Cutting Options ==========
*UIConstraints: *RIFinishPosition 50mm *RITrim None
*UIConstraints: *RIFinishPosition 50mm *RITrim ForeEdgeSpecify
*UIConstraints: *RIFinishPosition 50mm *RITrim ForeEdgeCut
*UIConstraints: *RIFinishPosition 50mm *RITrim 3EdgeCut
*UIConstraints: *RIFinishPosition 45mm *RITrim None
*UIConstraints: *RIFinishPosition 45mm *RITrim ForeEdgeSpecify
*UIConstraints: *RIFinishPosition 45mm *RITrim ForeEdgeCut
*UIConstraints: *RIFinishPosition 45mm *RITrim 3EdgeCut
*UIConstraints: *RIFinishPosition 40mm *RITrim None
*UIConstraints: *RIFinishPosition 40mm *RITrim ForeEdgeSpecify
*UIConstraints: *RIFinishPosition 40mm *RITrim ForeEdgeCut
*UIConstraints: *RIFinishPosition 40mm *RITrim 3EdgeCut
*UIConstraints: *RIFinishPosition 35mm *RITrim None
*UIConstraints: *RIFinishPosition 35mm *RITrim ForeEdgeSpecify
*UIConstraints: *RIFinishPosition 35mm *RITrim ForeEdgeCut
*UIConstraints: *RIFinishPosition 35mm *RITrim 3EdgeCut
*UIConstraints: *RIFinishPosition 30mm *RITrim None
*UIConstraints: *RIFinishPosition 30mm *RITrim ForeEdgeSpecify
*UIConstraints: *RIFinishPosition 30mm *RITrim ForeEdgeCut
*UIConstraints: *RIFinishPosition 30mm *RITrim 3EdgeCut
*UIConstraints: *RIFinishPosition 25mm *RITrim None
*UIConstraints: *RIFinishPosition 25mm *RITrim ForeEdgeSpecify
*UIConstraints: *RIFinishPosition 25mm *RITrim ForeEdgeCut
*UIConstraints: *RIFinishPosition 25mm *RITrim 3EdgeCut
*UIConstraints: *RIFinishPosition 20mm *RITrim None
*UIConstraints: *RIFinishPosition 20mm *RITrim ForeEdgeSpecify
*UIConstraints: *RIFinishPosition 20mm *RITrim ForeEdgeCut
*UIConstraints: *RIFinishPosition 20mm *RITrim 3EdgeCut
*UIConstraints: *RIFinishPosition 15mm *RITrim None
*UIConstraints: *RIFinishPosition 15mm *RITrim ForeEdgeSpecify
*UIConstraints: *RIFinishPosition 15mm *RITrim ForeEdgeCut
*UIConstraints: *RIFinishPosition 15mm *RITrim 3EdgeCut
*UIConstraints: *RIFinishPosition 10mm *RITrim None
*UIConstraints: *RIFinishPosition 10mm *RITrim ForeEdgeSpecify
*UIConstraints: *RIFinishPosition 10mm *RITrim ForeEdgeCut
*UIConstraints: *RIFinishPosition 10mm *RITrim 3EdgeCut
*UIConstraints: *RIFinishPosition 05mm *RITrim None
*UIConstraints: *RIFinishPosition 05mm *RITrim ForeEdgeSpecify
*UIConstraints: *RIFinishPosition 05mm *RITrim ForeEdgeCut
*UIConstraints: *RIFinishPosition 05mm *RITrim 3EdgeCut
*UIConstraints: *RIFinishPosition M05mm *RITrim None
*UIConstraints: *RIFinishPosition M05mm *RITrim ForeEdgeSpecify
*UIConstraints: *RIFinishPosition M05mm *RITrim ForeEdgeCut
*UIConstraints: *RIFinishPosition M05mm *RITrim 3EdgeCut
*UIConstraints: *RIFinishPosition M10mm *RITrim None
*UIConstraints: *RIFinishPosition M10mm *RITrim ForeEdgeSpecify
*UIConstraints: *RIFinishPosition M10mm *RITrim ForeEdgeCut
*UIConstraints: *RIFinishPosition M10mm *RITrim 3EdgeCut
*UIConstraints: *RIFinishPosition M15mm *RITrim None
*UIConstraints: *RIFinishPosition M15mm *RITrim ForeEdgeSpecify
*UIConstraints: *RIFinishPosition M15mm *RITrim ForeEdgeCut
*UIConstraints: *RIFinishPosition M15mm *RITrim 3EdgeCut
*UIConstraints: *RIFinishPosition M20mm *RITrim None
*UIConstraints: *RIFinishPosition M20mm *RITrim ForeEdgeSpecify
*UIConstraints: *RIFinishPosition M20mm *RITrim ForeEdgeCut
*UIConstraints: *RIFinishPosition M20mm *RITrim 3EdgeCut
*UIConstraints: *RIFinishPosition M25mm *RITrim None
*UIConstraints: *RIFinishPosition M25mm *RITrim ForeEdgeSpecify
*UIConstraints: *RIFinishPosition M25mm *RITrim ForeEdgeCut
*UIConstraints: *RIFinishPosition M25mm *RITrim 3EdgeCut
*UIConstraints: *RIFinishPosition M30mm *RITrim None
*UIConstraints: *RIFinishPosition M30mm *RITrim ForeEdgeSpecify
*UIConstraints: *RIFinishPosition M30mm *RITrim ForeEdgeCut
*UIConstraints: *RIFinishPosition M30mm *RITrim 3EdgeCut
*UIConstraints: *RIFinishPosition M35mm *RITrim None
*UIConstraints: *RIFinishPosition M35mm *RITrim ForeEdgeSpecify
*UIConstraints: *RIFinishPosition M35mm *RITrim ForeEdgeCut
*UIConstraints: *RIFinishPosition M35mm *RITrim 3EdgeCut
*UIConstraints: *RIFinishPosition M40mm *RITrim None
*UIConstraints: *RIFinishPosition M40mm *RITrim ForeEdgeSpecify
*UIConstraints: *RIFinishPosition M40mm *RITrim ForeEdgeCut
*UIConstraints: *RIFinishPosition M40mm *RITrim 3EdgeCut
*UIConstraints: *RIFinishPosition M45mm *RITrim None
*UIConstraints: *RIFinishPosition M45mm *RITrim ForeEdgeSpecify
*UIConstraints: *RIFinishPosition M45mm *RITrim ForeEdgeCut
*UIConstraints: *RIFinishPosition M45mm *RITrim 3EdgeCut
*UIConstraints: *RIFinishPosition M50mm *RITrim None
*UIConstraints: *RIFinishPosition M50mm *RITrim ForeEdgeSpecify
*UIConstraints: *RIFinishPosition M50mm *RITrim ForeEdgeCut
*UIConstraints: *RIFinishPosition M50mm *RITrim 3EdgeCut
*UIConstraints: *RITrim None *RIFinishPosition 50mm
*UIConstraints: *RITrim ForeEdgeSpecify *RIFinishPosition 50mm
*UIConstraints: *RITrim ForeEdgeCut *RIFinishPosition 50mm
*UIConstraints: *RITrim 3EdgeCut *RIFinishPosition 50mm
*UIConstraints: *RITrim None *RIFinishPosition 45mm
*UIConstraints: *RITrim ForeEdgeSpecify *RIFinishPosition 45mm
*UIConstraints: *RITrim ForeEdgeCut *RIFinishPosition 45mm
*UIConstraints: *RITrim 3EdgeCut *RIFinishPosition 45mm
*UIConstraints: *RITrim None *RIFinishPosition 40mm
*UIConstraints: *RITrim ForeEdgeSpecify *RIFinishPosition 40mm
*UIConstraints: *RITrim ForeEdgeCut *RIFinishPosition 40mm
*UIConstraints: *RITrim 3EdgeCut *RIFinishPosition 40mm
*UIConstraints: *RITrim None *RIFinishPosition 35mm
*UIConstraints: *RITrim ForeEdgeSpecify *RIFinishPosition 35mm
*UIConstraints: *RITrim ForeEdgeCut *RIFinishPosition 35mm
*UIConstraints: *RITrim 3EdgeCut *RIFinishPosition 35mm
*UIConstraints: *RITrim None *RIFinishPosition 30mm
*UIConstraints: *RITrim ForeEdgeSpecify *RIFinishPosition 30mm
*UIConstraints: *RITrim ForeEdgeCut *RIFinishPosition 30mm
*UIConstraints: *RITrim 3EdgeCut *RIFinishPosition 30mm
*UIConstraints: *RITrim None *RIFinishPosition 25mm
*UIConstraints: *RITrim ForeEdgeSpecify *RIFinishPosition 25mm
*UIConstraints: *RITrim ForeEdgeCut *RIFinishPosition 25mm
*UIConstraints: *RITrim 3EdgeCut *RIFinishPosition 25mm
*UIConstraints: *RITrim None *RIFinishPosition 20mm
*UIConstraints: *RITrim ForeEdgeSpecify *RIFinishPosition 20mm
*UIConstraints: *RITrim ForeEdgeCut *RIFinishPosition 20mm
*UIConstraints: *RITrim 3EdgeCut *RIFinishPosition 20mm
*UIConstraints: *RITrim None *RIFinishPosition 15mm
*UIConstraints: *RITrim ForeEdgeSpecify *RIFinishPosition 15mm
*UIConstraints: *RITrim ForeEdgeCut *RIFinishPosition 15mm
*UIConstraints: *RITrim 3EdgeCut *RIFinishPosition 15mm
*UIConstraints: *RITrim None *RIFinishPosition 10mm
*UIConstraints: *RITrim ForeEdgeSpecify *RIFinishPosition 10mm
*UIConstraints: *RITrim ForeEdgeCut *RIFinishPosition 10mm
*UIConstraints: *RITrim 3EdgeCut *RIFinishPosition 10mm
*UIConstraints: *RITrim None *RIFinishPosition 05mm
*UIConstraints: *RITrim ForeEdgeSpecify *RIFinishPosition 05mm
*UIConstraints: *RITrim ForeEdgeCut *RIFinishPosition 05mm
*UIConstraints: *RITrim 3EdgeCut *RIFinishPosition 05mm
*UIConstraints: *RITrim None *RIFinishPosition M05mm
*UIConstraints: *RITrim ForeEdgeSpecify *RIFinishPosition M05mm
*UIConstraints: *RITrim ForeEdgeCut *RIFinishPosition M05mm
*UIConstraints: *RITrim 3EdgeCut *RIFinishPosition M05mm
*UIConstraints: *RITrim None *RIFinishPosition M10mm
*UIConstraints: *RITrim ForeEdgeSpecify *RIFinishPosition M10mm
*UIConstraints: *RITrim ForeEdgeCut *RIFinishPosition M10mm
*UIConstraints: *RITrim 3EdgeCut *RIFinishPosition M10mm
*UIConstraints: *RITrim None *RIFinishPosition M15mm
*UIConstraints: *RITrim ForeEdgeSpecify *RIFinishPosition M15mm
*UIConstraints: *RITrim ForeEdgeCut *RIFinishPosition M15mm
*UIConstraints: *RITrim 3EdgeCut *RIFinishPosition M15mm
*UIConstraints: *RITrim None *RIFinishPosition M20mm
*UIConstraints: *RITrim ForeEdgeSpecify *RIFinishPosition M20mm
*UIConstraints: *RITrim ForeEdgeCut *RIFinishPosition M20mm
*UIConstraints: *RITrim 3EdgeCut *RIFinishPosition M20mm
*UIConstraints: *RITrim None *RIFinishPosition M25mm
*UIConstraints: *RITrim ForeEdgeSpecify *RIFinishPosition M25mm
*UIConstraints: *RITrim ForeEdgeCut *RIFinishPosition M25mm
*UIConstraints: *RITrim 3EdgeCut *RIFinishPosition M25mm
*UIConstraints: *RITrim None *RIFinishPosition M30mm
*UIConstraints: *RITrim ForeEdgeSpecify *RIFinishPosition M30mm
*UIConstraints: *RITrim ForeEdgeCut *RIFinishPosition M30mm
*UIConstraints: *RITrim 3EdgeCut *RIFinishPosition M30mm
*UIConstraints: *RITrim None *RIFinishPosition M35mm
*UIConstraints: *RITrim ForeEdgeSpecify *RIFinishPosition M35mm
*UIConstraints: *RITrim ForeEdgeCut *RIFinishPosition M35mm
*UIConstraints: *RITrim 3EdgeCut *RIFinishPosition M35mm
*UIConstraints: *RITrim None *RIFinishPosition M40mm
*UIConstraints: *RITrim ForeEdgeSpecify *RIFinishPosition M40mm
*UIConstraints: *RITrim ForeEdgeCut *RIFinishPosition M40mm
*UIConstraints: *RITrim 3EdgeCut *RIFinishPosition M40mm
*UIConstraints: *RITrim None *RIFinishPosition M45mm
*UIConstraints: *RITrim ForeEdgeSpecify *RIFinishPosition M45mm
*UIConstraints: *RITrim ForeEdgeCut *RIFinishPosition M45mm
*UIConstraints: *RITrim 3EdgeCut *RIFinishPosition M45mm
*UIConstraints: *RITrim None *RIFinishPosition M50mm
*UIConstraints: *RITrim ForeEdgeSpecify *RIFinishPosition M50mm
*UIConstraints: *RITrim ForeEdgeCut *RIFinishPosition M50mm
*UIConstraints: *RITrim 3EdgeCut *RIFinishPosition M50mm
*%========== Enable Ricoh JobLog Feature==========
*cupsFilter: "application/vnd.cups-postscript 0 foomatic-rip"
*FoomaticRIPCommandLine: "printf "%%!PS-Adobe-3.0\n%%%% %%&&
%%\n%A%B%C%D"%%%%; cat;"
*End
*FoomaticRIPUserEntityMaxLength: 8
*OpenGroup: JobLog/Job Log
*OpenUI *JobType/JobType: PickOne
*FoomaticRIPOption JobType: enum CmdLine A
*OrderDependency: 110 AnySetup *JobType
*DefaultJobType: Normal
*JobType Normal/Normal: "%% FoomaticRIPOptionSetting: JobType=Normal"
*FoomaticRIPOptionSetting JobType=Normal: "mark\n&&
/usrcode where{pop}{/usrcode()def}ifelse\n&&
(&user;) usrcode (20`date +%y%m%d%R | sed 's/://'`) {setuserinfo} stopped\n&&
cleartomark\n"
*End
*JobType SamplePrint/Sample Print: "%% FoomaticRIPOptionSetting: JobType=SamplePrint"
*FoomaticRIPOptionSetting JobType=SamplePrint: "mark\n&&
/usrcode where{pop}{/usrcode()def}ifelse\n&&
(&user;) usrcode (20`date +%y%m%d%R | sed 's/://'`) {setuserinfo} stopped\n&&
cleartomark\n&&
mark\n&&
(&user;) (20`date +%y%m%d%R | sed 's/://'`) {proofprint} stopped\n&&
cleartomark\n"
*End
*JobType LockedPrint/Locked Print: "%% FoomaticRIPOptionSetting: JobType=LockedPrint"
*FoomaticRIPOptionSetting JobType=LockedPrint: "mark\n&&
/usrcode where{pop}{/usrcode()def}ifelse\n&&
/lppswd where{pop}{/lppswd()def}ifelse\n&&
(&user;) usrcode (20`date +%y%m%d%R | sed 's/://'`) {setuserinfo} stopped\n&&
cleartomark\n&&
mark\n&&
(&user;) (20`date +%y%m%d%R | sed 's/://'`) lppswd {secureprint} stopped\n&&
cleartomark\n"
*End
*JobType DocServer/Document Server: "%% FoomaticRIPOptionSetting: JobType=DocServer"
*FoomaticRIPOptionSetting JobType=DocServer: "mark\n&&
/usrcode where{pop}{/usrcode()def}ifelse\n&&
/dspswd where{pop}{/dspswd()def}ifelse\n&&
(&user;) usrcode (20`date +%y%m%d%R | sed 's/://'`) {setuserinfo} stopped\n&&
cleartomark\n&&
mark\n&&
(&user;) (20`date +%y%m%d%R | sed 's/://'`) dspswd (&title;) {storedprint} stopped\n&&
cleartomark\n"
*End
*CloseUI: *JobType
*OpenUI *LockedPrintPassword/Locked Print Password (4-8 digits): PickOne
*FoomaticRIPOption LockedPrintPassword: password CmdLine A
*FoomaticRIPOptionMaxLength LockedPrintPassword:8
*FoomaticRIPOptionAllowedChars LockedPrintPassword: "0-9"
*OrderDependency: 100 AnySetup *LockedPrintPassword
*FoomaticRIPOptionPrototype LockedPrintPassword: "/lppswd(%s)def\n"
*DefaultLockedPrintPassword: None
*LockedPrintPassword None/None: "/lppswd()def\n"
*LockedPrintPassword 4001/4001: "/lppswd(4001)def\n"
*LockedPrintPassword 4002/4002: "/lppswd(4002)def\n"
*LockedPrintPassword 4003/4003: "/lppswd(4003)def\n"
*CloseUI: *LockedPrintPassword
*CustomLockedPrintPassword True/Custom Password: ""
*ParamCustomLockedPrintPassword Password: 1 password 4 8
*NonUIOrderDependency: 101 AnySetup *CustomLockedPrintPassword True
*OpenUI *DocServerPassword/Document Server Password (4-8 digits): PickOne
*FoomaticRIPOption DocServerPassword: password CmdLine A
*FoomaticRIPOptionMaxLength DocServerPassword:8
*FoomaticRIPOptionAllowedChars DocServerPassword: "0-9"
*OrderDependency: 102 AnySetup *DocServerPassword
*FoomaticRIPOptionPrototype DocServerPassword: "/dspswd(%s)def\n"
*DefaultDocServerPassword: None
*DocServerPassword None/None: "/dspswd()def\n"
*DocServerPassword 3001/3001: "/dspswd(3001)def\n"
*DocServerPassword 3002/3002: "/dspswd(3002)def\n"
*DocServerPassword 3003/3003: "/dspswd(3003)def\n"
*CloseUI: *DocServerPassword
*CustomDocServerPassword True/Custom Document Server Password: ""
*ParamCustomDocServerPassword Password: 1 password 4 8
*NonUIOrderDependency: 103 AnySetup *CustomDocServerPassword True
*OpenUI *UserCode/User Code (up to 8 digits): PickOne
*FoomaticRIPOption UserCode: string CmdLine A
*FoomaticRIPOptionMaxLength UserCode:8
*FoomaticRIPOptionAllowedChars UserCode: "0-9"
*OrderDependency: 104 AnySetup *UserCode
*FoomaticRIPOptionPrototype UserCode: "/usrcode(%s)def\n"
*DefaultUserCode: None
*UserCode None/None: "/usrcode()def\n"
*UserCode 1001/1001: "/usrcode(1001)def\n"
*UserCode 1002/1002: "/usrcode(1002)def\n"
*UserCode 1003/1003: "/usrcode(1003)def\n"
*CloseUI: *UserCode
*CustomUserCode True/Custom UserCode: ""
*ParamCustomUserCode UserCode: 1 passcode 1 8
*NonUIOrderDependency: 105 AnySetup *CustomUserCode True
*CloseGroup: JobLog/Job Log
*% end of Printer Description file
|