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
|
*PPD-Adobe: "4.3"
*% Linux Version
*%
*% This program is free software; you can redistribute it and/or modify it
*% under the terms of the GNU General Public License as published by the Free
*% Software Foundation; either version 2 of the License, or (at your option)
*% any later version.
*%
*% This program is distributed in the hope that it will be useful, but WITHOUT
*% ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
*% FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
*% more details.
*%
*% You should have received a copy of the GNU General Public License along with
*% this program; if not, write to the Free Software Foundation, Inc., 59 Temple
*% Place, Suite 330, Boston, MA 02111-1307 USA
*FormatVersion: "4.3"
*LanguageVersion: English
*LanguageEncoding: ISOLatin1
*FileVersion: "20005.0000"
*Manufacturer: "KONICA MINOLTA"
*ModelName: "KONICA MINOLTA C450 PS/P"
*ShortNickName: "KONICA MINOLTA C450 PS(P)"
*NickName: "KONICA MINOLTA C450 PS(P)"
*PCFileName: "KOC450UX.ppd"
*Product: "(C450)"
*PSVersion: "(3011.045) 1"
*% === Device Capabilities ============
*LanguageLevel: "3"
*ColorDevice: True
*DefaultColorSpace: CMYK
*Protocols: TBCP
*LandscapeOrientation: Plus90
*ScreenFreq: "70.0"
*ScreenAngle: "45.0"
*DefaultScreenProc: Dot
*ScreenProc Dot: "{180 mul cos exch 180 mul cos add 2 div}"
*ScreenProc Line: "{ pop }"
*ScreenProc Ellipse: "{ dup 5 mul 8 div mul exch dup mul exch add sqrt 1 exch sub}"
*Throughput: "45"
*%
*% === Begin Interpreter Header Common ============
*%
*SuggestedJobTimeout: "0"
*SuggestedWaitTimeout: "300"
*RequiresPageRegion All: True
*DefaultOutputOrder: Normal
*DefaultTransfer: Null
*Transfer Null: "{ }"
*Transfer Null.Inverse: "{ 1 exch sub }"
*%
*% === Begin Emepror Header Functions ============
*%
*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
*Password: "0"
*ExitServer: "
count 0 eq
{ false } { true exch startjob } ifelse
not {
(WARNING : Cannot perform the exitserver command.) =
(Password supplied is not valid.) =
(Please contact the author of this software.) = 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 of this software.) = flush quit
} if
systemdict /quit get exec
(WARNING : Printer Reset Failed.) = flush"
*End
*%
*% === Begin Custom Header Function ============
*%
*FreeVM: "10000000"
*%
*% === Begin Installable Options ============
*%
*OpenGroup: InstallableOptions/Options Installed
*OpenUI *PaperSources/Paper Sources: PickOne
*OrderDependency: 1 AnySetup *PaperSources
*DefaultPaperSources: None
*PaperSources None/None: ""
*PaperSources PC102/PC-102: ""
*PaperSources PC202/PC-202: ""
*PaperSources PC402/PC-402: ""
*CloseUI: *PaperSources
*OpenUI *Finisher/Finisher: PickOne
*OrderDependency: 1 AnySetup *Finisher
*DefaultFinisher: None
*Finisher None/None: ""
*Finisher FS507/FS-507: ""
*Finisher JS601/FS-507+JS-601: ""
*Finisher FS603/FS-603: ""
*CloseUI: *Finisher
*OpenUI *KOPunchUnit/Punch Unit: PickOne
*OrderDependency: 1 AnySetup *KOPunchUnit
*DefaultKOPunchUnit: None
*KOPunchUnit None/None: ""
*KOPunchUnit 2HolesType/2 Holes Type: ""
*KOPunchUnit 4HolesType/4 Holes Type: ""
*KOPunchUnit 2-3HolesType/2-3 Holes Type: ""
*CloseUI: *KOPunchUnit
*OpenUI *PrinterHDD/Printer HDD: Boolean
*OrderDependency: 1 AnySetup *PrinterHDD
*DefaultPrinterHDD: True
*PrinterHDD False/None: ""
*PrinterHDD True/Installed: ""
*CloseUI: *PrinterHDD
*CloseGroup: InstallableOptions
*%
*% === Begin Print Quality & Effects ============
*%
*OpenUI *Collate/Collated: Boolean
*OrderDependency: 1 AnySetup *Collate
*DefaultCollate: True
*Collate False/Off: "<< /Collate false >> setpagedevice"
*Collate True/On: "<< /Collate true >> setpagedevice"
*CloseUI: *Collate
*OpenUI *InputSlot/Paper Source: PickOne
*OrderDependency: 50 AnySetup *InputSlot
*DefaultInputSlot: Tray1
*InputSlot Tray1/Tray 1: "<< /ManualFeed false /MediaPosition 0 /TraySwitch false >> setpagedevice"
*InputSlot Tray2/Tray 2: "<< /ManualFeed false /MediaPosition 1 /TraySwitch false >> setpagedevice"
*InputSlot Tray3/Tray 3: "<< /ManualFeed false /MediaPosition 2 /TraySwitch false >> setpagedevice"
*InputSlot Tray4/Tray 4: "<< /ManualFeed false /MediaPosition 3 /TraySwitch false >> setpagedevice"
*InputSlot LCT_Rhein1/LCT: "<< /ManualFeed false /MediaPosition 2 /TraySwitch false >> setpagedevice"
*InputSlot ManualFeed/Manual Feed: "<< /ManualFeed true >> setpagedevice"
*CloseUI: *InputSlot
*OpenUI *MediaType/Media: PickOne
*OrderDependency: 65 AnySetup *MediaType
*DefaultMediaType: Plain
*MediaType Plain/Plain Paper: "<< /KMMediaType (Plain) /KMMediaColor (None) /KMMediaWeight (Normal) /MediaTabType (None) /MediaPreprinted false /MediaPrepunched false >>
/KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*MediaType Plain(2ndSide)/Plain Paper (2nd Side): "<< /KMMediaType (Plain) /KMMediaColor (None) /KMMediaWeight (Normal) /MediaTabType (None) /MediaPreprinted true /MediaPrepunched false >>
/KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*MediaType Special/Special: "<< /KMMediaType (Special) /KMMediaColor (None) /KMMediaWeight (Normal) /MediaTabType (None) /MediaPreprinted false /MediaPrepunched false >>
/KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*MediaType Envelope/Envelope: "<< /KMMediaType (Envelope) /KMMediaColor (None) /KMMediaWeight (Normal) /MediaTabType (None) /MediaPreprinted false /MediaPrepunched false >>
/KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*MediaType Transparency/Transparency: "<< /KMMediaType (Transparency) /KMMediaColor (None) /KMMediaWeight (Normal) /MediaTabType (None) /MediaPreprinted false /MediaPrepunched false >>
/KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*MediaType Letterhead/Letterhead: "<< /KMMediaType (Letterhead) /KMMediaColor (None) /KMMediaWeight (Normal) /MediaTabType (None) /MediaPreprinted false /MediaPrepunched false >>
/KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*MediaType SingleSidedOnly/Single-Sided Only: "<< /KMMediaType (SingleSidedOnly) /KMMediaColor (None) /KMMediaWeight (Normal) /MediaTabType (None) /MediaPreprinted false /MediaPrepunched false >>
/KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*MediaType Thick1/Thick 1: "<< /KMMediaType (Plain) /KMMediaColor (None) /KMMediaWeight (Thick) /MediaTabType (None) /MediaPreprinted false /MediaPrepunched false >>
/KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*MediaType Thick1(2ndSide)/Thick 1 (2nd Side): "<< /KMMediaType (Plain) /KMMediaColor (None) /KMMediaWeight (Thick) /MediaTabType (None) /MediaPreprinted true /MediaPrepunched false >>
/KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*MediaType Thick2/Thick 2: "<< /KMMediaType (Plain) /KMMediaColor (None) /KMMediaWeight (Thick2) /MediaTabType (None) /MediaPreprinted false /MediaPrepunched false >>
/KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*MediaType Thick2(2ndSide)/Thick 2 (2nd Side): "<< /KMMediaType (Plain) /KMMediaColor (None) /KMMediaWeight (Thick2) /MediaTabType (None) /MediaPreprinted true /MediaPrepunched false >>
/KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*MediaType Thick3/Thick 3: "<< /KMMediaType (Plain) /KMMediaColor (None) /KMMediaWeight (Thick3) /MediaTabType (None) /MediaPreprinted false /MediaPrepunched false >>
/KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*MediaType Thick3(2ndSide)/Thick 3 (2nd Side): "<< /KMMediaType (Plain) /KMMediaColor (None) /KMMediaWeight (Thick3) /MediaTabType (None) /MediaPreprinted true /MediaPrepunched false >>
/KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*MediaType Color/Color: "<< /KMMediaType (Plain) /KMMediaColor (Other) /KMMediaWeight (Normal) /MediaTabType (None) /MediaPreprinted false /MediaPrepunched false >>
/KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*CloseUI: *MediaType
*OpenUI *PageSize/Paper Size: PickOne
*OrderDependency: 60 AnySetup *PageSize
*DefaultPageSize: Letter
*PageSize A3/A3: "<< /PageSize [842 1191] /ImagingBBox null >> setpagedevice
<< /WideMode false /FullBleed false >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageSize A4/A4: "<< /PageSize [595 842] /ImagingBBox null >> setpagedevice
<< /WideMode false /FullBleed false >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageSize A5/A5: "<< /PageSize [420 595] /ImagingBBox null >> setpagedevice
<< /WideMode false /FullBleed false >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageSize A6/A6: "<< /PageSize [297 420] /ImagingBBox null >> setpagedevice
<< /WideMode false /FullBleed false >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageSize B4/B4: "<< /PageSize [729 1032] /ImagingBBox null >> setpagedevice
<< /WideMode false /FullBleed false >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageSize B5/B5: "<< /PageSize [516 729] /ImagingBBox null >> setpagedevice
<< /WideMode false /FullBleed false >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageSize B6/B6: "<< /PageSize [363 516] /ImagingBBox null >> setpagedevice
<< /WideMode false /FullBleed false >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageSize 220mmx330mm/220mmx330mm: "<< /PageSize [624 935] /ImagingBBox null >> setpagedevice
<< /WideMode false /FullBleed false >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageSize 12x18/12x18: "<< /PageSize [864 1296] /ImagingBBox null >> setpagedevice
<< /WideMode false /FullBleed false >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageSize Tabloid/Tabloid: "<< /PageSize [792 1224] /ImagingBBox null >> setpagedevice
<< /WideMode false /FullBleed false >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageSize Legal/Legal: "<< /PageSize [612 1008] /ImagingBBox null >> setpagedevice
<< /WideMode false /FullBleed false >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageSize Letter/Letter: "<< /PageSize [612 792] /ImagingBBox null >> setpagedevice
<< /WideMode false /FullBleed false >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageSize Statement/Statement: "<< /PageSize [396 612] /ImagingBBox null >> setpagedevice
<< /WideMode false /FullBleed false >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageSize 8x13/8x13: "<< /PageSize [576 936] /ImagingBBox null >> setpagedevice
<< /WideMode false /FullBleed false >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageSize 8.5x13/8 1/2x13: "<< /PageSize [612 936] /ImagingBBox null >> setpagedevice
<< /WideMode false /FullBleed false >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageSize 8.25x13/8 1/4x13: "<< /PageSize [594 936] /ImagingBBox null >> setpagedevice
<< /WideMode false /FullBleed false >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageSize 8.125x13.25/8 1/8x13 1/4: "<< /PageSize [585 954] /ImagingBBox null >> setpagedevice
<< /WideMode false /FullBleed false >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageSize Executive/Executive: "<< /PageSize [522 756] /ImagingBBox null >> setpagedevice
<< /WideMode false /FullBleed false >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageSize 8K/8K: "<< /PageSize [765 1105] /ImagingBBox null >> setpagedevice
<< /WideMode false /FullBleed false >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageSize 16K/16K: "<< /PageSize [553 765] /ImagingBBox null >> setpagedevice
<< /WideMode false /FullBleed false >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageSize EnvISOB5/Envelope B5: "<< /PageSize [499 709] /ImagingBBox null >> setpagedevice
<< /WideMode false /FullBleed false >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageSize EnvC5/Envelope C5: "<< /PageSize [459 649] /ImagingBBox null >> setpagedevice
<< /WideMode false /FullBleed false >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageSize EnvDL/Envelope DL: "<< /PageSize [312 624] /ImagingBBox null >> setpagedevice
<< /WideMode false /FullBleed false >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageSize EnvMonarch/Envelope Monarch: "<< /PageSize [279 540] /ImagingBBox null >> setpagedevice
<< /WideMode false /FullBleed false >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageSize Env10/Envelope Com10: "<< /PageSize [297 684] /ImagingBBox null >> setpagedevice
<< /WideMode false /FullBleed false >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageSize JapanesePostCard/Japanese Postcard: "<< /PageSize [284 419] /ImagingBBox null >> setpagedevice
<< /WideMode false /FullBleed false >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageSize 4x6_PostCard/4x6 Postcard: "<< /PageSize [288 432] /ImagingBBox null >> setpagedevice
<< /WideMode false /FullBleed false >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageSize A3Extra/A3W: "<< /PageSize [856 1205] /ImagingBBox null >> setpagedevice
<< /WideMode true /FullBleed true >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageSize A4Extra/A4W: "<< /PageSize [610 856] /ImagingBBox null >> setpagedevice
<< /WideMode true /FullBleed true >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageSize A5Extra/A5W: "<< /PageSize [434 610] /ImagingBBox null >> setpagedevice
<< /WideMode true /FullBleed true >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageSize B4Extra/B4W: "<< /PageSize [743 1046] /ImagingBBox null >> setpagedevice
<< /WideMode true /FullBleed true >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageSize B5Extra/B5W: "<< /PageSize [530 743] /ImagingBBox null >> setpagedevice
<< /WideMode true /FullBleed true >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageSize TabloidExtra/11x17W: "<< /PageSize [806 1238] /ImagingBBox null >> setpagedevice
<< /WideMode true /FullBleed true >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageSize LetterExtra/8 1/2x11W: "<< /PageSize [626 806] /ImagingBBox null >> setpagedevice
<< /WideMode true /FullBleed true >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageSize StatementExtra/5 1/2x8 1/2W: "<< /PageSize [410 626] /ImagingBBox null >> setpagedevice
<< /WideMode true /FullBleed true >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*CloseUI: *PageSize
*%
*% === Begin Functions Section ============
*%
*OpenGroup: Finishing/Finishing Options
*OpenUI *Offset/Offset: Boolean
*OrderDependency: 10 AnySetup *Offset
*DefaultOffset: False
*Offset False/Off: "<< /Jog 0 >> setpagedevice"
*Offset True/On: "<< /Jog 3 >> setpagedevice"
*CloseUI: *Offset
*OpenUI *OutputBin/Output Tray: PickOne
*OrderDependency: 40 AnySetup *OutputBin
*DefaultOutputBin: Auto
*OutputBin Auto/Auto: "<< /OutputType (DEFAULT) >> setpagedevice"
*OutputBin Tray1/Tray 1: "<< /OutputType (Bin2) >> setpagedevice"
*OutputBin Tray3/Tray 3: "<< /OutputType (Bin3) >> setpagedevice"
*OutputBin ElevateTray/Elevate Tray: "<< /OutputType (Bin1) >> setpagedevice"
*CloseUI: *OutputBin
*OpenUI *Binding/Binding Position: PickOne
*OrderDependency: 15 AnySetup *Binding
*DefaultBinding: LeftBinding
*Binding LeftBinding/Left Binding: "<< /Binding 0 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*Binding TopBinding/Top Binding: "<< /Binding 2 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*Binding RightBinding/Right Binding: "<< /Binding 1 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*CloseUI: *Binding
*OpenUI *KMDuplex/Duplex: Boolean
*OrderDependency: 15 AnySetup *KMDuplex
*DefaultKMDuplex: False
*KMDuplex False/Off: "<< /Duplex false >> setpagedevice"
*KMDuplex True/On: "<< /Duplex true >> setpagedevice"
*CloseUI: *KMDuplex
*OpenUI *Combination/Combination: PickOne
*OrderDependency: 30 AnySetup *Combination
*DefaultCombination: None
*Combination None/Off: "<< /Layout 0 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*Combination Booklet/Booklet: "<< /Collate true >> setpagedevice
<< /Layout 1 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*CloseUI: *Combination
*OpenUI *Staple/Staple: PickOne
*OrderDependency: 21 AnySetup *Staple
*DefaultStaple: None
*Staple None/Off: "<< /Finish 0 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*Staple 1Staple(Left)/1 Staple (Left): "<< /Finish 2 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*Staple 1Staple(Right)/1 Staple (Right): "<< /Finish 3 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*Staple 2Staples/2 Staples: "<< /Finish 4 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*CloseUI: *Staple
*OpenUI *Punch/Punch: PickOne
*OrderDependency: 1 AnySetup *Punch
*DefaultPunch: None
*Punch None/Off: "<< /PunchMode false >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*Punch 2holes/2 Holes: "<< /PunchMode true /PunchNum 2 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*Punch 3holes/3 Holes: "<< /PunchMode true /PunchNum 3 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*Punch 4holes/4 Holes: "<< /PunchMode true /PunchNum 4 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*CloseUI: *Punch
*OpenUI *Fold/Fold: PickOne
*OrderDependency: 1 AnySetup *Fold
*DefaultFold: None
*Fold None/Off: "<< /FoldType (Off) >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*Fold Stitch/Center Staple and Fold: "<< /Collate true >> setpagedevice
<< /FoldType (CenterFoldIn) /StitchType true >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*CloseUI: *Fold
*OpenUI *CenterErase/Center Erase: Boolean
*OrderDependency: 1 AnySetup *CenterErase
*DefaultCenterErase: True
*CenterErase False/Off: "<< /CenterErase false >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*CenterErase True/On: "<< /CenterErase true >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*CloseUI: *CenterErase
*OpenUI *FrontCoverPage/Front Cover Page: PickOne
*OrderDependency: 30 AnySetup *FrontCoverPage
*DefaultFrontCoverPage: None
*FrontCoverPage None/Off: "<< /FrontCover 0 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*FrontCoverPage Printed/Printed: "<< /Collate true >> setpagedevice
<< /FrontCover 2 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*FrontCoverPage Blank/Blank: "<< /Collate true >> setpagedevice
<< /FrontCover 1 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*CloseUI: *FrontCoverPage
*OpenUI *FrontCoverTray/Paper Tray (Front Cover Page): PickOne
*OrderDependency: 31 AnySetup *FrontCoverTray
*DefaultFrontCoverTray: None
*FrontCoverTray None/Off: ""
*FrontCoverTray Tray1/Tray 1: "<< /FrontCoverTray 0 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*FrontCoverTray Tray2/Tray 2: "<< /FrontCoverTray 1 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*FrontCoverTray Tray3/Tray 3: "<< /FrontCoverTray 2 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*FrontCoverTray Tray4/Tray 4: "<< /FrontCoverTray 3 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*FrontCoverTray LCT_Rhein1/LCT: "<< /FrontCoverTray 2 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*FrontCoverTray BypassTray/Bypass Tray: "<< /FrontCoverTray 40 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*CloseUI: *FrontCoverTray
*OpenUI *BackCoverPage/Back Cover Page: PickOne
*OrderDependency: 32 AnySetup *BackCoverPage
*DefaultBackCoverPage: None
*BackCoverPage None/Off: "<< /BackCover 0 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*BackCoverPage Printed/Printed: "<< /Collate true >> setpagedevice
<< /BackCover 2 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*BackCoverPage Blank/Blank: "<< /Collate true >> setpagedevice
<< /BackCover 1 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*CloseUI: *BackCoverPage
*OpenUI *BackCoverTray/Paper Tray (Back Cover Page): PickOne
*OrderDependency: 33 AnySetup *BackCoverTray
*DefaultBackCoverTray: None
*BackCoverTray None/Off: ""
*BackCoverTray Tray1/Tray 1: "<< /BackCoverTray 0 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*BackCoverTray Tray2/Tray 2: "<< /BackCoverTray 1 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*BackCoverTray Tray3/Tray 3: "<< /BackCoverTray 2 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*BackCoverTray Tray4/Tray 4: "<< /BackCoverTray 3 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*BackCoverTray LCT_Rhein1/LCT: "<< /BackCoverTray 2 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*BackCoverTray BypassTray/Bypass Tray: "<< /BackCoverTray 40 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*CloseUI: *BackCoverTray
*OpenUI *TransparencyInterleave/Transparency Interleave: PickOne
*OrderDependency: 66 AnySetup *TransparencyInterleave
*DefaultTransparencyInterleave: None
*TransparencyInterleave None/Off: "<< /OHPInterleave 0 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*TransparencyInterleave Blank/Blank: "<< /OHPInterleave 1 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*CloseUI: *TransparencyInterleave
*OpenUI *OHPOpTray/Paper Tray (Transparency Interleave): PickOne
*OrderDependency: 66 AnySetup *OHPOpTray
*DefaultOHPOpTray: None
*OHPOpTray None/Off: ""
*OHPOpTray Tray2/Tray 2: "<< /OHPOpTray 1 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*OHPOpTray Tray3/Tray 3: "<< /OHPOpTray 2 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*OHPOpTray Tray4/Tray 4: "<< /OHPOpTray 3 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*OHPOpTray LCT_Rhein1/LCT: "<< /OHPOpTray 2 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*CloseUI: *OHPOpTray
*OpenUI *WaitMode/Wait Mode: PickOne
*OrderDependency: 22 AnySetup *WaitMode
*DefaultWaitMode: None
*WaitMode None/Off: "<< /WaitMode 0 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*WaitMode ProofMode/Proof and Print: "<< /Collate true >> setpagedevice
<< /WaitMode 2 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*CloseUI: *WaitMode
*OpenUI *Resolution/Resolution: PickOne
*OrderDependency: 10 AnySetup *Resolution
*DefaultResolution: 600dpi
*Resolution 600dpi/600dpi: "<< /HWResolution [600 600] >> setpagedevice"
*CloseUI: *Resolution
*OpenUI *SelectColor/Select Color: PickOne
*OrderDependency: 10 AnySetup *SelectColor
*DefaultSelectColor: Color
*SelectColor Color/Color: "<</ProcessColorModel /DeviceCMYK>> setpagedevice"
*SelectColor Grayscale/Grayscale: "<</ProcessColorModel /DeviceGray>> setpagedevice"
*CloseUI: *SelectColor
*OpenUI *GlossyMode/Glossy Mode: Boolean
*OrderDependency: 10 AnySetup *GlossyMode
*DefaultGlossyMode: False
*GlossyMode False/Off: "<< /GlossyMode false >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*GlossyMode True/On: "<< /GlossyMode true >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*CloseUI: *GlossyMode
*OpenUI *OriginalImageType/Original Image Type: PickOne
*OrderDependency: 10 AnySetup *OriginalImageType
*DefaultOriginalImageType: Document
*OriginalImageType Document/Document: "<< /Exposure 1 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*OriginalImageType Photo/Photo: "<< /Exposure 2 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*OriginalImageType DTP/DTP: "<< /Exposure 3 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*OriginalImageType Web/Web: "<< /Exposure 4 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*OriginalImageType CAD/CAD: "<< /Exposure 5 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*CloseUI: *OriginalImageType
*OpenUI *TextColorMatching/Color Matching (Text): PickOne
*OrderDependency: 10 AnySetup *TextColorMatching
*DefaultTextColorMatching: Auto
*TextColorMatching Auto/Auto: "<< /QualityAdjustMode 1 /ColorMatching1 10 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*TextColorMatching Vivid/Vivid: "<< /QualityAdjustMode 1 /ColorMatching1 0 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*TextColorMatching Photo/Photo: "<< /QualityAdjustMode 1 /ColorMatching1 1 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*TextColorMatching Colorimetric/Colorimetric: "<< /QualityAdjustMode 1 /ColorMatching1 2 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*CloseUI: *TextColorMatching
*OpenUI *TextPureBlack/Pure Black (Text): PickOne
*OrderDependency: 10 AnySetup *TextPureBlack
*DefaultTextPureBlack: Auto
*TextPureBlack Auto/Auto: "<< /Neugray1 2 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*TextPureBlack False/Off: "<< /Neugray1 0 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*TextPureBlack True/On: "<< /Neugray1 1 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*CloseUI: *TextPureBlack
*OpenUI *TextScreen/Screen (Text): PickOne
*OrderDependency: 10 AnySetup *TextScreen
*DefaultTextScreen: Auto
*TextScreen Auto/Auto: "<< /Screen1 10 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*TextScreen Gradation/Gradation: "<< /Screen1 0 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*TextScreen Resolution/Resolution: "<< /Screen1 1 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*TextScreen HighResolution/High Resolution: "<< /Screen1 2 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*CloseUI: *TextScreen
*OpenUI *PhotoColorMatching/Color Matching (Photo): PickOne
*OrderDependency: 10 AnySetup *PhotoColorMatching
*DefaultPhotoColorMatching: Auto
*PhotoColorMatching Auto/Auto: "<< /ColorMatching2 10 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*PhotoColorMatching Vivid/Vivid: "<< /ColorMatching2 0 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*PhotoColorMatching Photo/Photo: "<< /ColorMatching2 1 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*PhotoColorMatching Colorimetric/Colorimetric: "<< /ColorMatching2 2 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*CloseUI: *PhotoColorMatching
*OpenUI *PhotoPureBlack/Pure Black (Photo): PickOne
*OrderDependency: 10 AnySetup *PhotoPureBlack
*DefaultPhotoPureBlack: Auto
*PhotoPureBlack Auto/Auto: "<< /Neugray2 2 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*PhotoPureBlack False/Off: "<< /Neugray2 0 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*PhotoPureBlack True/On: "<< /Neugray2 1 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*CloseUI: *PhotoPureBlack
*OpenUI *PhotoScreen/Screen (Photo): PickOne
*OrderDependency: 10 AnySetup *PhotoScreen
*DefaultPhotoScreen: Auto
*PhotoScreen Auto/Auto: "<< /Screen2 10 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*PhotoScreen Gradation/Gradation: "<< /Screen2 0 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*PhotoScreen Resolution/Resolution: "<< /Screen2 1 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*PhotoScreen HighResolution/High Resolution: "<< /Screen2 2 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*CloseUI: *PhotoScreen
*OpenUI *PhotoSmoothing/Smoothing (Photo): PickOne
*OrderDependency: 10 AnySetup *PhotoSmoothing
*DefaultPhotoSmoothing: Auto
*PhotoSmoothing Auto/Auto: "<< /Smoothing2 10 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*PhotoSmoothing None/Off: "<< /Smoothing2 0 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*PhotoSmoothing Dark/Dark: "<< /Smoothing2 1 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*PhotoSmoothing Medium/Medium: "<< /Smoothing2 2 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*PhotoSmoothing Light/Light: "<< /Smoothing2 3 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*CloseUI: *PhotoSmoothing
*OpenUI *GraphicColorSetting/Color Settings (Graphic): PickOne
*OrderDependency: 10 AnySetup *GraphicColorSetting
*DefaultGraphicColorSetting: Auto
*GraphicColorSetting Auto/Auto: "<< /CoGRP 0 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*GraphicColorSetting SettingsText/Same as Settings for Text: "<< /CoGRP 1 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*GraphicColorSetting SettingsPhoto/Same as Settings for Photo: "<< /CoGRP 2 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*CloseUI: *GraphicColorSetting
*OpenUI *GraphicSmoothing/Smoothing (Graphic): PickOne
*OrderDependency: 10 AnySetup *GraphicSmoothing
*DefaultGraphicSmoothing: Auto
*GraphicSmoothing Auto/Auto: "<< /SsGRP 0 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*GraphicSmoothing SettingsText/Same as Settings for Text: "<< /SsGRP 1 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*GraphicSmoothing SettingsPhoto/Same as Settings for Photo: "<< /SsGRP 2 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*CloseUI: *GraphicSmoothing
*CloseGroup: Finishing
*%
*% === Begin Page Section ============
*%
*OpenUI *PageRegion: PickOne
*OrderDependency: 60 AnySetup *PageRegion
*DefaultPageRegion: Letter
*PageRegion A3/A3: "<< /PageSize [842 1191] /ImagingBBox null >> setpagedevice
<< /WideMode false /FullBleed false >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageRegion A4/A4: "<< /PageSize [595 842] /ImagingBBox null >> setpagedevice
<< /WideMode false /FullBleed false >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageRegion A5/A5: "<< /PageSize [420 595] /ImagingBBox null >> setpagedevice
<< /WideMode false /FullBleed false >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageRegion A6/A6: "<< /PageSize [297 420] /ImagingBBox null >> setpagedevice
<< /WideMode false /FullBleed false >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageRegion B4/B4: "<< /PageSize [729 1032] /ImagingBBox null >> setpagedevice
<< /WideMode false /FullBleed false >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageRegion B5/B5: "<< /PageSize [516 729] /ImagingBBox null >> setpagedevice
<< /WideMode false /FullBleed false >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageRegion B6/B6: "<< /PageSize [363 516] /ImagingBBox null >> setpagedevice
<< /WideMode false /FullBleed false >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageRegion 220mmx330mm/220mmx330mm: "<< /PageSize [624 935] /ImagingBBox null >> setpagedevice
<< /WideMode false /FullBleed false >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageRegion 12x18/12x18: "<< /PageSize [864 1296] /ImagingBBox null >> setpagedevice
<< /WideMode false /FullBleed false >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageRegion Tabloid/Tabloid: "<< /PageSize [792 1224] /ImagingBBox null >> setpagedevice
<< /WideMode false /FullBleed false >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageRegion Legal/Legal: "<< /PageSize [612 1008] /ImagingBBox null >> setpagedevice
<< /WideMode false /FullBleed false >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageRegion Letter/Letter: "<< /PageSize [612 792] /ImagingBBox null >> setpagedevice
<< /WideMode false /FullBleed false >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageRegion Statement/Statement: "<< /PageSize [396 612] /ImagingBBox null >> setpagedevice
<< /WideMode false /FullBleed false >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageRegion 8x13/8x13: "<< /PageSize [576 936] /ImagingBBox null >> setpagedevice
<< /WideMode false /FullBleed false >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageRegion 8.5x13/8 1/2x13: "<< /PageSize [612 936] /ImagingBBox null >> setpagedevice
<< /WideMode false /FullBleed false >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageRegion 8.25x13/8 1/4x13: "<< /PageSize [594 936] /ImagingBBox null >> setpagedevice
<< /WideMode false /FullBleed false >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageRegion 8.125x13.25/8 1/8x13 1/4: "<< /PageSize [585 954] /ImagingBBox null >> setpagedevice
<< /WideMode false /FullBleed false >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageRegion Executive/Executive: "<< /PageSize [522 756] /ImagingBBox null >> setpagedevice
<< /WideMode false /FullBleed false >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageRegion 8K/8K: "<< /PageSize [765 1105] /ImagingBBox null >> setpagedevice
<< /WideMode false /FullBleed false >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageRegion 16K/16K: "<< /PageSize [553 765] /ImagingBBox null >> setpagedevice
<< /WideMode false /FullBleed false >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageRegion EnvISOB5/Envelope B5: "<< /PageSize [499 709] /ImagingBBox null >> setpagedevice
<< /WideMode false /FullBleed false >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageRegion EnvC5/Envelope C5: "<< /PageSize [459 649] /ImagingBBox null >> setpagedevice
<< /WideMode false /FullBleed false >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageRegion EnvDL/Envelope DL: "<< /PageSize [312 624] /ImagingBBox null >> setpagedevice
<< /WideMode false /FullBleed false >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageRegion EnvMonarch/Envelope Monarch: "<< /PageSize [279 540] /ImagingBBox null >> setpagedevice
<< /WideMode false /FullBleed false >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageRegion Env10/Envelope Com10: "<< /PageSize [297 684] /ImagingBBox null >> setpagedevice
<< /WideMode false /FullBleed false >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageRegion JapanesePostCard/Japanese Postcard: "<< /PageSize [284 419] /ImagingBBox null >> setpagedevice
<< /WideMode false /FullBleed false >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageRegion 4x6_PostCard/4x6 Postcard: "<< /PageSize [288 432] /ImagingBBox null >> setpagedevice
<< /WideMode false /FullBleed false >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageRegion A3Extra/A3W: "<< /PageSize [856 1205] /ImagingBBox null >> setpagedevice
<< /WideMode true /FullBleed true >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageRegion A4Extra/A4W: "<< /PageSize [610 856] /ImagingBBox null >> setpagedevice
<< /WideMode true /FullBleed true >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageRegion A5Extra/A5W: "<< /PageSize [434 610] /ImagingBBox null >> setpagedevice
<< /WideMode true /FullBleed true >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageRegion B4Extra/B4W: "<< /PageSize [743 1046] /ImagingBBox null >> setpagedevice
<< /WideMode true /FullBleed true >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageRegion B5Extra/B5W: "<< /PageSize [530 743] /ImagingBBox null >> setpagedevice
<< /WideMode true /FullBleed true >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageRegion TabloidExtra/11x17W: "<< /PageSize [806 1238] /ImagingBBox null >> setpagedevice
<< /WideMode true /FullBleed true >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageRegion LetterExtra/8 1/2x11W: "<< /PageSize [626 806] /ImagingBBox null >> setpagedevice
<< /WideMode true /FullBleed true >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageRegion StatementExtra/5 1/2x8 1/2W: "<< /PageSize [410 626] /ImagingBBox null >> setpagedevice
<< /WideMode true /FullBleed true >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*CloseUI: *PageRegion
*DefaultPaperDimension: Letter
*PaperDimension A3/A3: "842 1191"
*PaperDimension A4/A4: "595 842"
*PaperDimension A5/A5: "420 595"
*PaperDimension A6/A6: "297 420"
*PaperDimension B4/B4: "729 1032"
*PaperDimension B5/B5: "516 729"
*PaperDimension B6/B6: "363 516"
*PaperDimension 220mmx330mm/220mmx330mm: "624 935"
*PaperDimension 12x18/12x18: "864 1296"
*PaperDimension Tabloid/Tabloid: "792 1224"
*PaperDimension Legal/Legal: "612 1008"
*PaperDimension Letter/Letter: "612 792"
*PaperDimension Statement/Statement: "396 612"
*PaperDimension 8x13/8x13: "576 936"
*PaperDimension 8.5x13/8 1/2x13: "612 936"
*PaperDimension 8.25x13/8 1/4x13: "594 936"
*PaperDimension 8.125x13.25/8 1/8x13 1/4: "585 954"
*PaperDimension Executive/Executive: "522 756"
*PaperDimension 8K/8K: "765 1105"
*PaperDimension 16K/16K: "553 765"
*PaperDimension EnvISOB5/Envelope B5: "499 709"
*PaperDimension EnvC5/Envelope C5: "459 649"
*PaperDimension EnvDL/Envelope DL: "312 624"
*PaperDimension EnvMonarch/Envelope Monarch: "279 540"
*PaperDimension Env10/Envelope Com10: "297 684"
*PaperDimension JapanesePostCard/Japanese Postcard: "284 419"
*PaperDimension 4x6_PostCard/4x6 Postcard: "288 432"
*PaperDimension A3Extra/A3W: "856 1205"
*PaperDimension A4Extra/A4W: "610 856"
*PaperDimension A5Extra/A5W: "434 610"
*PaperDimension B4Extra/B4W: "743 1046"
*PaperDimension B5Extra/B5W: "530 743"
*PaperDimension TabloidExtra/11x17W: "806 1238"
*PaperDimension LetterExtra/8 1/2x11W: "626 806"
*PaperDimension StatementExtra/5 1/2x8 1/2W: "410 626"
*DefaultImageableArea: Letter
*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: "12 12 717 1020"
*ImageableArea B5/B5: "12 12 504 717"
*ImageableArea B6/B6: "12 12 351 504"
*ImageableArea 220mmx330mm/220mmx330mm: "12 12 612 923"
*ImageableArea 12x18/12x18: "12 12 852 1284"
*ImageableArea Tabloid/Tabloid: "12 12 780 1212"
*ImageableArea Legal/Legal: "12 12 600 996"
*ImageableArea Letter/Letter: "12 12 600 780"
*ImageableArea Statement/Statement: "12 12 384 600"
*ImageableArea 8x13/8x13: "12 12 564 924"
*ImageableArea 8.5x13/8 1/2x13: "12 12 600 924"
*ImageableArea 8.25x13/8 1/4x13: "12 12 582 924"
*ImageableArea 8.125x13.25/8 1/8x13 1/4: "12 12 573 942"
*ImageableArea Executive/Executive: "12 12 510 744"
*ImageableArea 8K/8K: "12 12 753 1093"
*ImageableArea 16K/16K: "12 12 541 753"
*ImageableArea EnvISOB5/Envelope B5: "12 12 487 697"
*ImageableArea EnvC5/Envelope C5: "12 12 447 637"
*ImageableArea EnvDL/Envelope DL: "12 12 300 612"
*ImageableArea EnvMonarch/Envelope Monarch: "12 12 267 528"
*ImageableArea Env10/Envelope Com10: "12 12 285 672"
*ImageableArea JapanesePostCard/Japanese Postcard: "12 12 272 407"
*ImageableArea 4x6_PostCard/4x6 Postcard: "12 12 276 420"
*ImageableArea A3Extra/A3W: "7 7 849 1198"
*ImageableArea A4Extra/A4W: "7 7 603 849"
*ImageableArea A5Extra/A5W: "7 7 427 603"
*ImageableArea B4Extra/B4W: "7 7 736 1039"
*ImageableArea B5Extra/B5W: "7 7 523 736"
*ImageableArea TabloidExtra/11x17W: "7 7 799 1231"
*ImageableArea LetterExtra/8 1/2x11W: "7 7 619 799"
*ImageableArea StatementExtra/5 1/2x8 1/2W: "7 7 403 619"
*%
*% === Begin Constraints Section ============
*%
*UIConstraints: *Offset True *MediaType Envelope
*UIConstraints: *Offset True *MediaType Transparency
*UIConstraints: *Offset True *MediaType Thick3
*UIConstraints: *Offset True *MediaType Thick3(2ndSide)
*UIConstraints: *Offset True *PageSize A6
*UIConstraints: *Offset True *PageSize B6
*UIConstraints: *Offset True *PageSize EnvISOB5
*UIConstraints: *Offset True *PageSize EnvC5
*UIConstraints: *Offset True *PageSize EnvDL
*UIConstraints: *Offset True *PageSize EnvMonarch
*UIConstraints: *Offset True *PageSize Env10
*UIConstraints: *Offset True *PageSize JapanesePostCard
*UIConstraints: *Offset True *PageSize 4x6_PostCard
*UIConstraints: *Offset True *OutputBin Tray1
*UIConstraints: *Offset True *OutputBin Tray3
*UIConstraints: *Offset True *Staple 1Staple(Left)
*UIConstraints: *Offset True *Staple 1Staple(Right)
*UIConstraints: *Offset True *Staple 2Staples
*UIConstraints: *Offset True *Fold Stitch
*UIConstraints: *Offset True *TransparencyInterleave Blank
*UIConstraints: *InputSlot Tray2 *MediaType Plain(2ndSide)
*UIConstraints: *InputSlot Tray2 *MediaType Envelope
*UIConstraints: *InputSlot Tray2 *MediaType Transparency
*UIConstraints: *InputSlot Tray2 *MediaType Thick1(2ndSide)
*UIConstraints: *InputSlot Tray2 *MediaType Thick2(2ndSide)
*UIConstraints: *InputSlot Tray2 *MediaType Thick3(2ndSide)
*UIConstraints: *InputSlot Tray2 *PageSize A6
*UIConstraints: *InputSlot Tray2 *PageSize B6
*UIConstraints: *InputSlot Tray2 *PageSize 12x18
*UIConstraints: *InputSlot Tray2 *PageSize Executive
*UIConstraints: *InputSlot Tray2 *PageSize EnvISOB5
*UIConstraints: *InputSlot Tray2 *PageSize EnvC5
*UIConstraints: *InputSlot Tray2 *PageSize EnvDL
*UIConstraints: *InputSlot Tray2 *PageSize EnvMonarch
*UIConstraints: *InputSlot Tray2 *PageSize Env10
*UIConstraints: *InputSlot Tray2 *PageSize JapanesePostCard
*UIConstraints: *InputSlot Tray2 *PageSize 4x6_PostCard
*UIConstraints: *InputSlot Tray2 *PageSize A3Extra
*UIConstraints: *InputSlot Tray2 *PageSize A4Extra
*UIConstraints: *InputSlot Tray2 *PageSize A5Extra
*UIConstraints: *InputSlot Tray2 *PageSize B4Extra
*UIConstraints: *InputSlot Tray2 *PageSize B5Extra
*UIConstraints: *InputSlot Tray2 *PageSize TabloidExtra
*UIConstraints: *InputSlot Tray2 *PageSize LetterExtra
*UIConstraints: *InputSlot Tray2 *PageSize StatementExtra
*UIConstraints: *InputSlot Tray2 *TransparencyInterleave Blank
*UIConstraints: *InputSlot Tray3 *MediaType Plain(2ndSide)
*UIConstraints: *InputSlot Tray3 *MediaType Envelope
*UIConstraints: *InputSlot Tray3 *MediaType Transparency
*UIConstraints: *InputSlot Tray3 *MediaType Thick1(2ndSide)
*UIConstraints: *InputSlot Tray3 *MediaType Thick2(2ndSide)
*UIConstraints: *InputSlot Tray3 *MediaType Thick3(2ndSide)
*UIConstraints: *InputSlot Tray3 *PageSize A6
*UIConstraints: *InputSlot Tray3 *PageSize B6
*UIConstraints: *InputSlot Tray3 *PageSize 12x18
*UIConstraints: *InputSlot Tray3 *PageSize Executive
*UIConstraints: *InputSlot Tray3 *PageSize EnvISOB5
*UIConstraints: *InputSlot Tray3 *PageSize EnvC5
*UIConstraints: *InputSlot Tray3 *PageSize EnvDL
*UIConstraints: *InputSlot Tray3 *PageSize EnvMonarch
*UIConstraints: *InputSlot Tray3 *PageSize Env10
*UIConstraints: *InputSlot Tray3 *PageSize JapanesePostCard
*UIConstraints: *InputSlot Tray3 *PageSize 4x6_PostCard
*UIConstraints: *InputSlot Tray3 *PageSize A3Extra
*UIConstraints: *InputSlot Tray3 *PageSize A4Extra
*UIConstraints: *InputSlot Tray3 *PageSize A5Extra
*UIConstraints: *InputSlot Tray3 *PageSize B4Extra
*UIConstraints: *InputSlot Tray3 *PageSize B5Extra
*UIConstraints: *InputSlot Tray3 *PageSize TabloidExtra
*UIConstraints: *InputSlot Tray3 *PageSize LetterExtra
*UIConstraints: *InputSlot Tray3 *PageSize StatementExtra
*UIConstraints: *InputSlot Tray3 *TransparencyInterleave Blank
*UIConstraints: *InputSlot Tray3 *PaperSources None
*UIConstraints: *InputSlot Tray3 *PaperSources PC402
*UIConstraints: *InputSlot Tray4 *MediaType Plain(2ndSide)
*UIConstraints: *InputSlot Tray4 *MediaType Envelope
*UIConstraints: *InputSlot Tray4 *MediaType Transparency
*UIConstraints: *InputSlot Tray4 *MediaType Thick1(2ndSide)
*UIConstraints: *InputSlot Tray4 *MediaType Thick2(2ndSide)
*UIConstraints: *InputSlot Tray4 *MediaType Thick3(2ndSide)
*UIConstraints: *InputSlot Tray4 *PageSize A6
*UIConstraints: *InputSlot Tray4 *PageSize B6
*UIConstraints: *InputSlot Tray4 *PageSize 12x18
*UIConstraints: *InputSlot Tray4 *PageSize Executive
*UIConstraints: *InputSlot Tray4 *PageSize EnvISOB5
*UIConstraints: *InputSlot Tray4 *PageSize EnvC5
*UIConstraints: *InputSlot Tray4 *PageSize EnvDL
*UIConstraints: *InputSlot Tray4 *PageSize EnvMonarch
*UIConstraints: *InputSlot Tray4 *PageSize Env10
*UIConstraints: *InputSlot Tray4 *PageSize JapanesePostCard
*UIConstraints: *InputSlot Tray4 *PageSize 4x6_PostCard
*UIConstraints: *InputSlot Tray4 *PageSize A3Extra
*UIConstraints: *InputSlot Tray4 *PageSize A4Extra
*UIConstraints: *InputSlot Tray4 *PageSize A5Extra
*UIConstraints: *InputSlot Tray4 *PageSize B4Extra
*UIConstraints: *InputSlot Tray4 *PageSize B5Extra
*UIConstraints: *InputSlot Tray4 *PageSize TabloidExtra
*UIConstraints: *InputSlot Tray4 *PageSize LetterExtra
*UIConstraints: *InputSlot Tray4 *PageSize StatementExtra
*UIConstraints: *InputSlot Tray4 *TransparencyInterleave Blank
*UIConstraints: *InputSlot Tray4 *PaperSources None
*UIConstraints: *InputSlot Tray4 *PaperSources PC102
*UIConstraints: *InputSlot Tray4 *PaperSources PC402
*UIConstraints: *InputSlot LCT_Rhein1 *MediaType Plain(2ndSide)
*UIConstraints: *InputSlot LCT_Rhein1 *MediaType Envelope
*UIConstraints: *InputSlot LCT_Rhein1 *MediaType Transparency
*UIConstraints: *InputSlot LCT_Rhein1 *MediaType Thick1(2ndSide)
*UIConstraints: *InputSlot LCT_Rhein1 *MediaType Thick2(2ndSide)
*UIConstraints: *InputSlot LCT_Rhein1 *MediaType Thick3(2ndSide)
*UIConstraints: *InputSlot LCT_Rhein1 *PageSize A3
*UIConstraints: *InputSlot LCT_Rhein1 *PageSize A5
*UIConstraints: *InputSlot LCT_Rhein1 *PageSize A6
*UIConstraints: *InputSlot LCT_Rhein1 *PageSize B4
*UIConstraints: *InputSlot LCT_Rhein1 *PageSize B5
*UIConstraints: *InputSlot LCT_Rhein1 *PageSize B6
*UIConstraints: *InputSlot LCT_Rhein1 *PageSize 220mmx330mm
*UIConstraints: *InputSlot LCT_Rhein1 *PageSize 12x18
*UIConstraints: *InputSlot LCT_Rhein1 *PageSize Tabloid
*UIConstraints: *InputSlot LCT_Rhein1 *PageSize Legal
*UIConstraints: *InputSlot LCT_Rhein1 *PageSize Statement
*UIConstraints: *InputSlot LCT_Rhein1 *PageSize 8x13
*UIConstraints: *InputSlot LCT_Rhein1 *PageSize 8.5x13
*UIConstraints: *InputSlot LCT_Rhein1 *PageSize 8.25x13
*UIConstraints: *InputSlot LCT_Rhein1 *PageSize 8.125x13.25
*UIConstraints: *InputSlot LCT_Rhein1 *PageSize Executive
*UIConstraints: *InputSlot LCT_Rhein1 *PageSize 8K
*UIConstraints: *InputSlot LCT_Rhein1 *PageSize 16K
*UIConstraints: *InputSlot LCT_Rhein1 *PageSize EnvISOB5
*UIConstraints: *InputSlot LCT_Rhein1 *PageSize EnvC5
*UIConstraints: *InputSlot LCT_Rhein1 *PageSize EnvDL
*UIConstraints: *InputSlot LCT_Rhein1 *PageSize EnvMonarch
*UIConstraints: *InputSlot LCT_Rhein1 *PageSize Env10
*UIConstraints: *InputSlot LCT_Rhein1 *PageSize JapanesePostCard
*UIConstraints: *InputSlot LCT_Rhein1 *PageSize 4x6_PostCard
*UIConstraints: *InputSlot LCT_Rhein1 *PageSize A3Extra
*UIConstraints: *InputSlot LCT_Rhein1 *PageSize A4Extra
*UIConstraints: *InputSlot LCT_Rhein1 *PageSize A5Extra
*UIConstraints: *InputSlot LCT_Rhein1 *PageSize B4Extra
*UIConstraints: *InputSlot LCT_Rhein1 *PageSize B5Extra
*UIConstraints: *InputSlot LCT_Rhein1 *PageSize TabloidExtra
*UIConstraints: *InputSlot LCT_Rhein1 *PageSize LetterExtra
*UIConstraints: *InputSlot LCT_Rhein1 *PageSize StatementExtra
*UIConstraints: *InputSlot LCT_Rhein1 *TransparencyInterleave Blank
*UIConstraints: *InputSlot LCT_Rhein1 *PaperSources None
*UIConstraints: *InputSlot LCT_Rhein1 *PaperSources PC102
*UIConstraints: *InputSlot LCT_Rhein1 *PaperSources PC202
*UIConstraints: *MediaType Plain *TransparencyInterleave Blank
*UIConstraints: *MediaType Plain(2ndSide) *InputSlot Tray2
*UIConstraints: *MediaType Plain(2ndSide) *InputSlot Tray3
*UIConstraints: *MediaType Plain(2ndSide) *InputSlot Tray4
*UIConstraints: *MediaType Plain(2ndSide) *InputSlot LCT_Rhein1
*UIConstraints: *MediaType Plain(2ndSide) *KMDuplex True
*UIConstraints: *MediaType Plain(2ndSide) *Combination Booklet
*UIConstraints: *MediaType Plain(2ndSide) *TransparencyInterleave Blank
*UIConstraints: *MediaType Special *TransparencyInterleave Blank
*UIConstraints: *MediaType Special *GlossyMode True
*UIConstraints: *MediaType Envelope *Offset True
*UIConstraints: *MediaType Envelope *InputSlot Tray2
*UIConstraints: *MediaType Envelope *InputSlot Tray3
*UIConstraints: *MediaType Envelope *InputSlot Tray4
*UIConstraints: *MediaType Envelope *InputSlot LCT_Rhein1
*UIConstraints: *MediaType Envelope *PageSize JapanesePostCard
*UIConstraints: *MediaType Envelope *PageSize 4x6_PostCard
*UIConstraints: *MediaType Envelope *PageSize A3Extra
*UIConstraints: *MediaType Envelope *PageSize A4Extra
*UIConstraints: *MediaType Envelope *PageSize A5Extra
*UIConstraints: *MediaType Envelope *PageSize B4Extra
*UIConstraints: *MediaType Envelope *PageSize B5Extra
*UIConstraints: *MediaType Envelope *PageSize TabloidExtra
*UIConstraints: *MediaType Envelope *PageSize LetterExtra
*UIConstraints: *MediaType Envelope *OutputBin Tray3
*UIConstraints: *MediaType Envelope *OutputBin ElevateTray
*UIConstraints: *MediaType Envelope *KMDuplex True
*UIConstraints: *MediaType Envelope *Combination Booklet
*UIConstraints: *MediaType Envelope *Staple 1Staple(Left)
*UIConstraints: *MediaType Envelope *Staple 1Staple(Right)
*UIConstraints: *MediaType Envelope *Staple 2Staples
*UIConstraints: *MediaType Envelope *Punch 2holes
*UIConstraints: *MediaType Envelope *Punch 3holes
*UIConstraints: *MediaType Envelope *Punch 4holes
*UIConstraints: *MediaType Envelope *Fold Stitch
*UIConstraints: *MediaType Envelope *TransparencyInterleave Blank
*UIConstraints: *MediaType Envelope *GlossyMode True
*UIConstraints: *MediaType Transparency *Offset True
*UIConstraints: *MediaType Transparency *InputSlot Tray2
*UIConstraints: *MediaType Transparency *InputSlot Tray3
*UIConstraints: *MediaType Transparency *InputSlot Tray4
*UIConstraints: *MediaType Transparency *InputSlot LCT_Rhein1
*UIConstraints: *MediaType Transparency *OutputBin Tray3
*UIConstraints: *MediaType Transparency *OutputBin ElevateTray
*UIConstraints: *MediaType Transparency *KMDuplex True
*UIConstraints: *MediaType Transparency *Combination Booklet
*UIConstraints: *MediaType Transparency *Staple 1Staple(Left)
*UIConstraints: *MediaType Transparency *Staple 1Staple(Right)
*UIConstraints: *MediaType Transparency *Staple 2Staples
*UIConstraints: *MediaType Transparency *Punch 2holes
*UIConstraints: *MediaType Transparency *Punch 3holes
*UIConstraints: *MediaType Transparency *Punch 4holes
*UIConstraints: *MediaType Transparency *Fold Stitch
*UIConstraints: *MediaType Transparency *GlossyMode True
*UIConstraints: *MediaType Letterhead *TransparencyInterleave Blank
*UIConstraints: *MediaType Letterhead *GlossyMode True
*UIConstraints: *MediaType SingleSidedOnly *KMDuplex True
*UIConstraints: *MediaType SingleSidedOnly *Combination Booklet
*UIConstraints: *MediaType SingleSidedOnly *TransparencyInterleave Blank
*UIConstraints: *MediaType Thick1 *OutputBin Tray3
*UIConstraints: *MediaType Thick1 *Fold Stitch
*UIConstraints: *MediaType Thick1 *TransparencyInterleave Blank
*UIConstraints: *MediaType Thick1 *GlossyMode True
*UIConstraints: *MediaType Thick1(2ndSide) *InputSlot Tray2
*UIConstraints: *MediaType Thick1(2ndSide) *InputSlot Tray3
*UIConstraints: *MediaType Thick1(2ndSide) *InputSlot Tray4
*UIConstraints: *MediaType Thick1(2ndSide) *InputSlot LCT_Rhein1
*UIConstraints: *MediaType Thick1(2ndSide) *OutputBin Tray3
*UIConstraints: *MediaType Thick1(2ndSide) *KMDuplex True
*UIConstraints: *MediaType Thick1(2ndSide) *Combination Booklet
*UIConstraints: *MediaType Thick1(2ndSide) *Fold Stitch
*UIConstraints: *MediaType Thick1(2ndSide) *TransparencyInterleave Blank
*UIConstraints: *MediaType Thick1(2ndSide) *GlossyMode True
*UIConstraints: *MediaType Thick2 *OutputBin Tray3
*UIConstraints: *MediaType Thick2 *Fold Stitch
*UIConstraints: *MediaType Thick2 *TransparencyInterleave Blank
*UIConstraints: *MediaType Thick2 *GlossyMode True
*UIConstraints: *MediaType Thick2(2ndSide) *InputSlot Tray2
*UIConstraints: *MediaType Thick2(2ndSide) *InputSlot Tray3
*UIConstraints: *MediaType Thick2(2ndSide) *InputSlot Tray4
*UIConstraints: *MediaType Thick2(2ndSide) *InputSlot LCT_Rhein1
*UIConstraints: *MediaType Thick2(2ndSide) *OutputBin Tray3
*UIConstraints: *MediaType Thick2(2ndSide) *KMDuplex True
*UIConstraints: *MediaType Thick2(2ndSide) *Combination Booklet
*UIConstraints: *MediaType Thick2(2ndSide) *Fold Stitch
*UIConstraints: *MediaType Thick2(2ndSide) *TransparencyInterleave Blank
*UIConstraints: *MediaType Thick2(2ndSide) *GlossyMode True
*UIConstraints: *MediaType Thick3 *Offset True
*UIConstraints: *MediaType Thick3 *OutputBin Tray3
*UIConstraints: *MediaType Thick3 *Staple 1Staple(Left)
*UIConstraints: *MediaType Thick3 *Staple 1Staple(Right)
*UIConstraints: *MediaType Thick3 *Staple 2Staples
*UIConstraints: *MediaType Thick3 *Punch 2holes
*UIConstraints: *MediaType Thick3 *Punch 3holes
*UIConstraints: *MediaType Thick3 *Punch 4holes
*UIConstraints: *MediaType Thick3 *Fold Stitch
*UIConstraints: *MediaType Thick3 *TransparencyInterleave Blank
*UIConstraints: *MediaType Thick3 *GlossyMode True
*UIConstraints: *MediaType Thick3(2ndSide) *Offset True
*UIConstraints: *MediaType Thick3(2ndSide) *InputSlot Tray2
*UIConstraints: *MediaType Thick3(2ndSide) *InputSlot Tray3
*UIConstraints: *MediaType Thick3(2ndSide) *InputSlot Tray4
*UIConstraints: *MediaType Thick3(2ndSide) *InputSlot LCT_Rhein1
*UIConstraints: *MediaType Thick3(2ndSide) *OutputBin Tray3
*UIConstraints: *MediaType Thick3(2ndSide) *KMDuplex True
*UIConstraints: *MediaType Thick3(2ndSide) *Combination Booklet
*UIConstraints: *MediaType Thick3(2ndSide) *Staple 1Staple(Left)
*UIConstraints: *MediaType Thick3(2ndSide) *Staple 1Staple(Right)
*UIConstraints: *MediaType Thick3(2ndSide) *Staple 2Staples
*UIConstraints: *MediaType Thick3(2ndSide) *Punch 2holes
*UIConstraints: *MediaType Thick3(2ndSide) *Punch 3holes
*UIConstraints: *MediaType Thick3(2ndSide) *Punch 4holes
*UIConstraints: *MediaType Thick3(2ndSide) *Fold Stitch
*UIConstraints: *MediaType Thick3(2ndSide) *TransparencyInterleave Blank
*UIConstraints: *MediaType Thick3(2ndSide) *GlossyMode True
*UIConstraints: *MediaType Color *TransparencyInterleave Blank
*UIConstraints: *MediaType Color *GlossyMode True
*UIConstraints: *PageSize A3 *InputSlot LCT_Rhein1
*UIConstraints: *PageSize A3 *Combination Booklet
*UIConstraints: *PageSize A3 *FrontCoverTray LCT_Rhein1
*UIConstraints: *PageSize A3 *BackCoverTray LCT_Rhein1
*UIConstraints: *PageSize A3 *OHPOpTray LCT_Rhein1
*UIConstraints: *PageSize A5 *InputSlot LCT_Rhein1
*UIConstraints: *PageSize A5 *OutputBin ElevateTray
*UIConstraints: *PageSize A5 *Staple 1Staple(Left)
*UIConstraints: *PageSize A5 *Staple 1Staple(Right)
*UIConstraints: *PageSize A5 *Staple 2Staples
*UIConstraints: *PageSize A5 *Punch 2holes
*UIConstraints: *PageSize A5 *Punch 3holes
*UIConstraints: *PageSize A5 *Punch 4holes
*UIConstraints: *PageSize A5 *FrontCoverTray LCT_Rhein1
*UIConstraints: *PageSize A5 *BackCoverTray LCT_Rhein1
*UIConstraints: *PageSize A5 *OHPOpTray LCT_Rhein1
*UIConstraints: *PageSize A6 *Offset True
*UIConstraints: *PageSize A6 *InputSlot Tray2
*UIConstraints: *PageSize A6 *InputSlot Tray3
*UIConstraints: *PageSize A6 *InputSlot Tray4
*UIConstraints: *PageSize A6 *InputSlot LCT_Rhein1
*UIConstraints: *PageSize A6 *OutputBin Tray3
*UIConstraints: *PageSize A6 *OutputBin ElevateTray
*UIConstraints: *PageSize A6 *KMDuplex True
*UIConstraints: *PageSize A6 *Staple 1Staple(Left)
*UIConstraints: *PageSize A6 *Staple 1Staple(Right)
*UIConstraints: *PageSize A6 *Staple 2Staples
*UIConstraints: *PageSize A6 *Punch 2holes
*UIConstraints: *PageSize A6 *Punch 3holes
*UIConstraints: *PageSize A6 *Punch 4holes
*UIConstraints: *PageSize A6 *Fold Stitch
*UIConstraints: *PageSize A6 *FrontCoverTray Tray2
*UIConstraints: *PageSize A6 *FrontCoverTray Tray3
*UIConstraints: *PageSize A6 *FrontCoverTray Tray4
*UIConstraints: *PageSize A6 *FrontCoverTray LCT_Rhein1
*UIConstraints: *PageSize A6 *BackCoverTray Tray2
*UIConstraints: *PageSize A6 *BackCoverTray Tray3
*UIConstraints: *PageSize A6 *BackCoverTray Tray4
*UIConstraints: *PageSize A6 *BackCoverTray LCT_Rhein1
*UIConstraints: *PageSize A6 *OHPOpTray Tray2
*UIConstraints: *PageSize A6 *OHPOpTray Tray3
*UIConstraints: *PageSize A6 *OHPOpTray Tray4
*UIConstraints: *PageSize A6 *OHPOpTray LCT_Rhein1
*UIConstraints: *PageSize B4 *InputSlot LCT_Rhein1
*UIConstraints: *PageSize B4 *Combination Booklet
*UIConstraints: *PageSize B4 *FrontCoverTray LCT_Rhein1
*UIConstraints: *PageSize B4 *BackCoverTray LCT_Rhein1
*UIConstraints: *PageSize B4 *OHPOpTray LCT_Rhein1
*UIConstraints: *PageSize B5 *InputSlot LCT_Rhein1
*UIConstraints: *PageSize B5 *FrontCoverTray LCT_Rhein1
*UIConstraints: *PageSize B5 *BackCoverTray LCT_Rhein1
*UIConstraints: *PageSize B5 *OHPOpTray LCT_Rhein1
*UIConstraints: *PageSize B6 *Offset True
*UIConstraints: *PageSize B6 *InputSlot Tray2
*UIConstraints: *PageSize B6 *InputSlot Tray3
*UIConstraints: *PageSize B6 *InputSlot Tray4
*UIConstraints: *PageSize B6 *InputSlot LCT_Rhein1
*UIConstraints: *PageSize B6 *OutputBin Tray3
*UIConstraints: *PageSize B6 *OutputBin ElevateTray
*UIConstraints: *PageSize B6 *KMDuplex True
*UIConstraints: *PageSize B6 *Staple 1Staple(Left)
*UIConstraints: *PageSize B6 *Staple 1Staple(Right)
*UIConstraints: *PageSize B6 *Staple 2Staples
*UIConstraints: *PageSize B6 *Punch 2holes
*UIConstraints: *PageSize B6 *Punch 3holes
*UIConstraints: *PageSize B6 *Punch 4holes
*UIConstraints: *PageSize B6 *Fold Stitch
*UIConstraints: *PageSize B6 *FrontCoverTray Tray2
*UIConstraints: *PageSize B6 *FrontCoverTray Tray3
*UIConstraints: *PageSize B6 *FrontCoverTray Tray4
*UIConstraints: *PageSize B6 *FrontCoverTray LCT_Rhein1
*UIConstraints: *PageSize B6 *BackCoverTray Tray2
*UIConstraints: *PageSize B6 *BackCoverTray Tray3
*UIConstraints: *PageSize B6 *BackCoverTray Tray4
*UIConstraints: *PageSize B6 *BackCoverTray LCT_Rhein1
*UIConstraints: *PageSize B6 *OHPOpTray Tray2
*UIConstraints: *PageSize B6 *OHPOpTray Tray3
*UIConstraints: *PageSize B6 *OHPOpTray Tray4
*UIConstraints: *PageSize B6 *OHPOpTray LCT_Rhein1
*UIConstraints: *PageSize 220mmx330mm *InputSlot LCT_Rhein1
*UIConstraints: *PageSize 220mmx330mm *Combination Booklet
*UIConstraints: *PageSize 220mmx330mm *Fold Stitch
*UIConstraints: *PageSize 220mmx330mm *FrontCoverTray LCT_Rhein1
*UIConstraints: *PageSize 220mmx330mm *BackCoverTray LCT_Rhein1
*UIConstraints: *PageSize 220mmx330mm *OHPOpTray LCT_Rhein1
*UIConstraints: *PageSize 12x18 *InputSlot Tray2
*UIConstraints: *PageSize 12x18 *InputSlot Tray3
*UIConstraints: *PageSize 12x18 *InputSlot Tray4
*UIConstraints: *PageSize 12x18 *InputSlot LCT_Rhein1
*UIConstraints: *PageSize 12x18 *Combination Booklet
*UIConstraints: *PageSize 12x18 *Staple 1Staple(Left)
*UIConstraints: *PageSize 12x18 *Staple 1Staple(Right)
*UIConstraints: *PageSize 12x18 *Staple 2Staples
*UIConstraints: *PageSize 12x18 *Punch 2holes
*UIConstraints: *PageSize 12x18 *Punch 3holes
*UIConstraints: *PageSize 12x18 *Punch 4holes
*UIConstraints: *PageSize 12x18 *Fold Stitch
*UIConstraints: *PageSize 12x18 *FrontCoverTray Tray2
*UIConstraints: *PageSize 12x18 *FrontCoverTray Tray3
*UIConstraints: *PageSize 12x18 *FrontCoverTray Tray4
*UIConstraints: *PageSize 12x18 *FrontCoverTray LCT_Rhein1
*UIConstraints: *PageSize 12x18 *BackCoverTray Tray2
*UIConstraints: *PageSize 12x18 *BackCoverTray Tray3
*UIConstraints: *PageSize 12x18 *BackCoverTray Tray4
*UIConstraints: *PageSize 12x18 *BackCoverTray LCT_Rhein1
*UIConstraints: *PageSize 12x18 *OHPOpTray Tray2
*UIConstraints: *PageSize 12x18 *OHPOpTray Tray3
*UIConstraints: *PageSize 12x18 *OHPOpTray Tray4
*UIConstraints: *PageSize 12x18 *OHPOpTray LCT_Rhein1
*UIConstraints: *PageSize Tabloid *InputSlot LCT_Rhein1
*UIConstraints: *PageSize Tabloid *Combination Booklet
*UIConstraints: *PageSize Tabloid *FrontCoverTray LCT_Rhein1
*UIConstraints: *PageSize Tabloid *BackCoverTray LCT_Rhein1
*UIConstraints: *PageSize Tabloid *OHPOpTray LCT_Rhein1
*UIConstraints: *PageSize Legal *InputSlot LCT_Rhein1
*UIConstraints: *PageSize Legal *Combination Booklet
*UIConstraints: *PageSize Legal *FrontCoverTray LCT_Rhein1
*UIConstraints: *PageSize Legal *BackCoverTray LCT_Rhein1
*UIConstraints: *PageSize Legal *OHPOpTray LCT_Rhein1
*UIConstraints: *PageSize Statement *InputSlot LCT_Rhein1
*UIConstraints: *PageSize Statement *OutputBin ElevateTray
*UIConstraints: *PageSize Statement *Staple 1Staple(Left)
*UIConstraints: *PageSize Statement *Staple 1Staple(Right)
*UIConstraints: *PageSize Statement *Staple 2Staples
*UIConstraints: *PageSize Statement *Punch 2holes
*UIConstraints: *PageSize Statement *Punch 3holes
*UIConstraints: *PageSize Statement *Punch 4holes
*UIConstraints: *PageSize Statement *FrontCoverTray LCT_Rhein1
*UIConstraints: *PageSize Statement *BackCoverTray LCT_Rhein1
*UIConstraints: *PageSize Statement *OHPOpTray LCT_Rhein1
*UIConstraints: *PageSize 8x13 *InputSlot LCT_Rhein1
*UIConstraints: *PageSize 8x13 *Combination Booklet
*UIConstraints: *PageSize 8x13 *Fold Stitch
*UIConstraints: *PageSize 8x13 *FrontCoverTray LCT_Rhein1
*UIConstraints: *PageSize 8x13 *BackCoverTray LCT_Rhein1
*UIConstraints: *PageSize 8x13 *OHPOpTray LCT_Rhein1
*UIConstraints: *PageSize 8.5x13 *InputSlot LCT_Rhein1
*UIConstraints: *PageSize 8.5x13 *Combination Booklet
*UIConstraints: *PageSize 8.5x13 *Fold Stitch
*UIConstraints: *PageSize 8.5x13 *FrontCoverTray LCT_Rhein1
*UIConstraints: *PageSize 8.5x13 *BackCoverTray LCT_Rhein1
*UIConstraints: *PageSize 8.5x13 *OHPOpTray LCT_Rhein1
*UIConstraints: *PageSize 8.25x13 *InputSlot LCT_Rhein1
*UIConstraints: *PageSize 8.25x13 *Combination Booklet
*UIConstraints: *PageSize 8.25x13 *Fold Stitch
*UIConstraints: *PageSize 8.25x13 *FrontCoverTray LCT_Rhein1
*UIConstraints: *PageSize 8.25x13 *BackCoverTray LCT_Rhein1
*UIConstraints: *PageSize 8.25x13 *OHPOpTray LCT_Rhein1
*UIConstraints: *PageSize 8.125x13.25 *InputSlot LCT_Rhein1
*UIConstraints: *PageSize 8.125x13.25 *Combination Booklet
*UIConstraints: *PageSize 8.125x13.25 *Fold Stitch
*UIConstraints: *PageSize 8.125x13.25 *FrontCoverTray LCT_Rhein1
*UIConstraints: *PageSize 8.125x13.25 *BackCoverTray LCT_Rhein1
*UIConstraints: *PageSize 8.125x13.25 *OHPOpTray LCT_Rhein1
*UIConstraints: *PageSize Executive *InputSlot Tray2
*UIConstraints: *PageSize Executive *InputSlot Tray3
*UIConstraints: *PageSize Executive *InputSlot Tray4
*UIConstraints: *PageSize Executive *InputSlot LCT_Rhein1
*UIConstraints: *PageSize Executive *Combination Booklet
*UIConstraints: *PageSize Executive *Fold Stitch
*UIConstraints: *PageSize Executive *FrontCoverTray Tray2
*UIConstraints: *PageSize Executive *FrontCoverTray Tray3
*UIConstraints: *PageSize Executive *FrontCoverTray Tray4
*UIConstraints: *PageSize Executive *FrontCoverTray LCT_Rhein1
*UIConstraints: *PageSize Executive *BackCoverTray Tray2
*UIConstraints: *PageSize Executive *BackCoverTray Tray3
*UIConstraints: *PageSize Executive *BackCoverTray Tray4
*UIConstraints: *PageSize Executive *BackCoverTray LCT_Rhein1
*UIConstraints: *PageSize Executive *OHPOpTray Tray2
*UIConstraints: *PageSize Executive *OHPOpTray Tray3
*UIConstraints: *PageSize Executive *OHPOpTray Tray4
*UIConstraints: *PageSize Executive *OHPOpTray LCT_Rhein1
*UIConstraints: *PageSize 8K *InputSlot LCT_Rhein1
*UIConstraints: *PageSize 8K *Combination Booklet
*UIConstraints: *PageSize 8K *Fold Stitch
*UIConstraints: *PageSize 8K *FrontCoverTray LCT_Rhein1
*UIConstraints: *PageSize 8K *BackCoverTray LCT_Rhein1
*UIConstraints: *PageSize 8K *OHPOpTray LCT_Rhein1
*UIConstraints: *PageSize 16K *InputSlot LCT_Rhein1
*UIConstraints: *PageSize 16K *Fold Stitch
*UIConstraints: *PageSize 16K *FrontCoverTray LCT_Rhein1
*UIConstraints: *PageSize 16K *BackCoverTray LCT_Rhein1
*UIConstraints: *PageSize 16K *OHPOpTray LCT_Rhein1
*UIConstraints: *PageSize EnvISOB5 *Offset True
*UIConstraints: *PageSize EnvISOB5 *InputSlot Tray2
*UIConstraints: *PageSize EnvISOB5 *InputSlot Tray3
*UIConstraints: *PageSize EnvISOB5 *InputSlot Tray4
*UIConstraints: *PageSize EnvISOB5 *InputSlot LCT_Rhein1
*UIConstraints: *PageSize EnvISOB5 *OutputBin Tray3
*UIConstraints: *PageSize EnvISOB5 *OutputBin ElevateTray
*UIConstraints: *PageSize EnvISOB5 *KMDuplex True
*UIConstraints: *PageSize EnvISOB5 *Combination Booklet
*UIConstraints: *PageSize EnvISOB5 *Staple 1Staple(Left)
*UIConstraints: *PageSize EnvISOB5 *Staple 1Staple(Right)
*UIConstraints: *PageSize EnvISOB5 *Staple 2Staples
*UIConstraints: *PageSize EnvISOB5 *Punch 2holes
*UIConstraints: *PageSize EnvISOB5 *Punch 3holes
*UIConstraints: *PageSize EnvISOB5 *Punch 4holes
*UIConstraints: *PageSize EnvISOB5 *Fold Stitch
*UIConstraints: *PageSize EnvISOB5 *FrontCoverPage Printed
*UIConstraints: *PageSize EnvISOB5 *FrontCoverPage Blank
*UIConstraints: *PageSize EnvISOB5 *BackCoverPage Printed
*UIConstraints: *PageSize EnvISOB5 *BackCoverPage Blank
*UIConstraints: *PageSize EnvISOB5 *TransparencyInterleave Blank
*UIConstraints: *PageSize EnvC5 *Offset True
*UIConstraints: *PageSize EnvC5 *InputSlot Tray2
*UIConstraints: *PageSize EnvC5 *InputSlot Tray3
*UIConstraints: *PageSize EnvC5 *InputSlot Tray4
*UIConstraints: *PageSize EnvC5 *InputSlot LCT_Rhein1
*UIConstraints: *PageSize EnvC5 *OutputBin Tray3
*UIConstraints: *PageSize EnvC5 *OutputBin ElevateTray
*UIConstraints: *PageSize EnvC5 *KMDuplex True
*UIConstraints: *PageSize EnvC5 *Combination Booklet
*UIConstraints: *PageSize EnvC5 *Staple 1Staple(Left)
*UIConstraints: *PageSize EnvC5 *Staple 1Staple(Right)
*UIConstraints: *PageSize EnvC5 *Staple 2Staples
*UIConstraints: *PageSize EnvC5 *Punch 2holes
*UIConstraints: *PageSize EnvC5 *Punch 3holes
*UIConstraints: *PageSize EnvC5 *Punch 4holes
*UIConstraints: *PageSize EnvC5 *Fold Stitch
*UIConstraints: *PageSize EnvC5 *FrontCoverPage Printed
*UIConstraints: *PageSize EnvC5 *FrontCoverPage Blank
*UIConstraints: *PageSize EnvC5 *BackCoverPage Printed
*UIConstraints: *PageSize EnvC5 *BackCoverPage Blank
*UIConstraints: *PageSize EnvC5 *TransparencyInterleave Blank
*UIConstraints: *PageSize EnvDL *Offset True
*UIConstraints: *PageSize EnvDL *InputSlot Tray2
*UIConstraints: *PageSize EnvDL *InputSlot Tray3
*UIConstraints: *PageSize EnvDL *InputSlot Tray4
*UIConstraints: *PageSize EnvDL *InputSlot LCT_Rhein1
*UIConstraints: *PageSize EnvDL *OutputBin Tray3
*UIConstraints: *PageSize EnvDL *OutputBin ElevateTray
*UIConstraints: *PageSize EnvDL *KMDuplex True
*UIConstraints: *PageSize EnvDL *Combination Booklet
*UIConstraints: *PageSize EnvDL *Staple 1Staple(Left)
*UIConstraints: *PageSize EnvDL *Staple 1Staple(Right)
*UIConstraints: *PageSize EnvDL *Staple 2Staples
*UIConstraints: *PageSize EnvDL *Punch 2holes
*UIConstraints: *PageSize EnvDL *Punch 3holes
*UIConstraints: *PageSize EnvDL *Punch 4holes
*UIConstraints: *PageSize EnvDL *Fold Stitch
*UIConstraints: *PageSize EnvDL *FrontCoverPage Printed
*UIConstraints: *PageSize EnvDL *FrontCoverPage Blank
*UIConstraints: *PageSize EnvDL *BackCoverPage Printed
*UIConstraints: *PageSize EnvDL *BackCoverPage Blank
*UIConstraints: *PageSize EnvDL *TransparencyInterleave Blank
*UIConstraints: *PageSize EnvMonarch *Offset True
*UIConstraints: *PageSize EnvMonarch *InputSlot Tray2
*UIConstraints: *PageSize EnvMonarch *InputSlot Tray3
*UIConstraints: *PageSize EnvMonarch *InputSlot Tray4
*UIConstraints: *PageSize EnvMonarch *InputSlot LCT_Rhein1
*UIConstraints: *PageSize EnvMonarch *OutputBin Tray3
*UIConstraints: *PageSize EnvMonarch *OutputBin ElevateTray
*UIConstraints: *PageSize EnvMonarch *KMDuplex True
*UIConstraints: *PageSize EnvMonarch *Combination Booklet
*UIConstraints: *PageSize EnvMonarch *Staple 1Staple(Left)
*UIConstraints: *PageSize EnvMonarch *Staple 1Staple(Right)
*UIConstraints: *PageSize EnvMonarch *Staple 2Staples
*UIConstraints: *PageSize EnvMonarch *Punch 2holes
*UIConstraints: *PageSize EnvMonarch *Punch 3holes
*UIConstraints: *PageSize EnvMonarch *Punch 4holes
*UIConstraints: *PageSize EnvMonarch *Fold Stitch
*UIConstraints: *PageSize EnvMonarch *FrontCoverPage Printed
*UIConstraints: *PageSize EnvMonarch *FrontCoverPage Blank
*UIConstraints: *PageSize EnvMonarch *BackCoverPage Printed
*UIConstraints: *PageSize EnvMonarch *BackCoverPage Blank
*UIConstraints: *PageSize EnvMonarch *TransparencyInterleave Blank
*UIConstraints: *PageSize Env10 *Offset True
*UIConstraints: *PageSize Env10 *InputSlot Tray2
*UIConstraints: *PageSize Env10 *InputSlot Tray3
*UIConstraints: *PageSize Env10 *InputSlot Tray4
*UIConstraints: *PageSize Env10 *InputSlot LCT_Rhein1
*UIConstraints: *PageSize Env10 *OutputBin Tray3
*UIConstraints: *PageSize Env10 *OutputBin ElevateTray
*UIConstraints: *PageSize Env10 *KMDuplex True
*UIConstraints: *PageSize Env10 *Combination Booklet
*UIConstraints: *PageSize Env10 *Staple 1Staple(Left)
*UIConstraints: *PageSize Env10 *Staple 1Staple(Right)
*UIConstraints: *PageSize Env10 *Staple 2Staples
*UIConstraints: *PageSize Env10 *Punch 2holes
*UIConstraints: *PageSize Env10 *Punch 3holes
*UIConstraints: *PageSize Env10 *Punch 4holes
*UIConstraints: *PageSize Env10 *Fold Stitch
*UIConstraints: *PageSize Env10 *FrontCoverPage Printed
*UIConstraints: *PageSize Env10 *FrontCoverPage Blank
*UIConstraints: *PageSize Env10 *BackCoverPage Printed
*UIConstraints: *PageSize Env10 *BackCoverPage Blank
*UIConstraints: *PageSize Env10 *TransparencyInterleave Blank
*UIConstraints: *PageSize JapanesePostCard *Offset True
*UIConstraints: *PageSize JapanesePostCard *InputSlot Tray2
*UIConstraints: *PageSize JapanesePostCard *InputSlot Tray3
*UIConstraints: *PageSize JapanesePostCard *InputSlot Tray4
*UIConstraints: *PageSize JapanesePostCard *InputSlot LCT_Rhein1
*UIConstraints: *PageSize JapanesePostCard *MediaType Envelope
*UIConstraints: *PageSize JapanesePostCard *OutputBin Tray3
*UIConstraints: *PageSize JapanesePostCard *OutputBin ElevateTray
*UIConstraints: *PageSize JapanesePostCard *KMDuplex True
*UIConstraints: *PageSize JapanesePostCard *Combination Booklet
*UIConstraints: *PageSize JapanesePostCard *Staple 1Staple(Left)
*UIConstraints: *PageSize JapanesePostCard *Staple 1Staple(Right)
*UIConstraints: *PageSize JapanesePostCard *Staple 2Staples
*UIConstraints: *PageSize JapanesePostCard *Punch 2holes
*UIConstraints: *PageSize JapanesePostCard *Punch 3holes
*UIConstraints: *PageSize JapanesePostCard *Punch 4holes
*UIConstraints: *PageSize JapanesePostCard *Fold Stitch
*UIConstraints: *PageSize JapanesePostCard *FrontCoverPage Printed
*UIConstraints: *PageSize JapanesePostCard *FrontCoverPage Blank
*UIConstraints: *PageSize JapanesePostCard *BackCoverPage Printed
*UIConstraints: *PageSize JapanesePostCard *BackCoverPage Blank
*UIConstraints: *PageSize JapanesePostCard *TransparencyInterleave Blank
*UIConstraints: *PageSize 4x6_PostCard *Offset True
*UIConstraints: *PageSize 4x6_PostCard *InputSlot Tray2
*UIConstraints: *PageSize 4x6_PostCard *InputSlot Tray3
*UIConstraints: *PageSize 4x6_PostCard *InputSlot Tray4
*UIConstraints: *PageSize 4x6_PostCard *InputSlot LCT_Rhein1
*UIConstraints: *PageSize 4x6_PostCard *MediaType Envelope
*UIConstraints: *PageSize 4x6_PostCard *OutputBin Tray3
*UIConstraints: *PageSize 4x6_PostCard *OutputBin ElevateTray
*UIConstraints: *PageSize 4x6_PostCard *KMDuplex True
*UIConstraints: *PageSize 4x6_PostCard *Combination Booklet
*UIConstraints: *PageSize 4x6_PostCard *Staple 1Staple(Left)
*UIConstraints: *PageSize 4x6_PostCard *Staple 1Staple(Right)
*UIConstraints: *PageSize 4x6_PostCard *Staple 2Staples
*UIConstraints: *PageSize 4x6_PostCard *Punch 2holes
*UIConstraints: *PageSize 4x6_PostCard *Punch 3holes
*UIConstraints: *PageSize 4x6_PostCard *Punch 4holes
*UIConstraints: *PageSize 4x6_PostCard *Fold Stitch
*UIConstraints: *PageSize 4x6_PostCard *FrontCoverPage Printed
*UIConstraints: *PageSize 4x6_PostCard *FrontCoverPage Blank
*UIConstraints: *PageSize 4x6_PostCard *BackCoverPage Printed
*UIConstraints: *PageSize 4x6_PostCard *BackCoverPage Blank
*UIConstraints: *PageSize 4x6_PostCard *TransparencyInterleave Blank
*UIConstraints: *PageSize A3Extra *InputSlot Tray2
*UIConstraints: *PageSize A3Extra *InputSlot Tray3
*UIConstraints: *PageSize A3Extra *InputSlot Tray4
*UIConstraints: *PageSize A3Extra *InputSlot LCT_Rhein1
*UIConstraints: *PageSize A3Extra *MediaType Envelope
*UIConstraints: *PageSize A3Extra *OutputBin Tray3
*UIConstraints: *PageSize A3Extra *Combination Booklet
*UIConstraints: *PageSize A3Extra *Fold Stitch
*UIConstraints: *PageSize A3Extra *FrontCoverPage Printed
*UIConstraints: *PageSize A3Extra *FrontCoverPage Blank
*UIConstraints: *PageSize A3Extra *BackCoverPage Printed
*UIConstraints: *PageSize A3Extra *BackCoverPage Blank
*UIConstraints: *PageSize A3Extra *TransparencyInterleave Blank
*UIConstraints: *PageSize A4Extra *InputSlot Tray2
*UIConstraints: *PageSize A4Extra *InputSlot Tray3
*UIConstraints: *PageSize A4Extra *InputSlot Tray4
*UIConstraints: *PageSize A4Extra *InputSlot LCT_Rhein1
*UIConstraints: *PageSize A4Extra *MediaType Envelope
*UIConstraints: *PageSize A4Extra *Fold Stitch
*UIConstraints: *PageSize A4Extra *FrontCoverPage Printed
*UIConstraints: *PageSize A4Extra *FrontCoverPage Blank
*UIConstraints: *PageSize A4Extra *BackCoverPage Printed
*UIConstraints: *PageSize A4Extra *BackCoverPage Blank
*UIConstraints: *PageSize A4Extra *TransparencyInterleave Blank
*UIConstraints: *PageSize A5Extra *InputSlot Tray2
*UIConstraints: *PageSize A5Extra *InputSlot Tray3
*UIConstraints: *PageSize A5Extra *InputSlot Tray4
*UIConstraints: *PageSize A5Extra *InputSlot LCT_Rhein1
*UIConstraints: *PageSize A5Extra *MediaType Envelope
*UIConstraints: *PageSize A5Extra *Fold Stitch
*UIConstraints: *PageSize A5Extra *FrontCoverPage Printed
*UIConstraints: *PageSize A5Extra *FrontCoverPage Blank
*UIConstraints: *PageSize A5Extra *BackCoverPage Printed
*UIConstraints: *PageSize A5Extra *BackCoverPage Blank
*UIConstraints: *PageSize A5Extra *TransparencyInterleave Blank
*UIConstraints: *PageSize B4Extra *InputSlot Tray2
*UIConstraints: *PageSize B4Extra *InputSlot Tray3
*UIConstraints: *PageSize B4Extra *InputSlot Tray4
*UIConstraints: *PageSize B4Extra *InputSlot LCT_Rhein1
*UIConstraints: *PageSize B4Extra *MediaType Envelope
*UIConstraints: *PageSize B4Extra *Combination Booklet
*UIConstraints: *PageSize B4Extra *Fold Stitch
*UIConstraints: *PageSize B4Extra *FrontCoverPage Printed
*UIConstraints: *PageSize B4Extra *FrontCoverPage Blank
*UIConstraints: *PageSize B4Extra *BackCoverPage Printed
*UIConstraints: *PageSize B4Extra *BackCoverPage Blank
*UIConstraints: *PageSize B4Extra *TransparencyInterleave Blank
*UIConstraints: *PageSize B5Extra *InputSlot Tray2
*UIConstraints: *PageSize B5Extra *InputSlot Tray3
*UIConstraints: *PageSize B5Extra *InputSlot Tray4
*UIConstraints: *PageSize B5Extra *InputSlot LCT_Rhein1
*UIConstraints: *PageSize B5Extra *MediaType Envelope
*UIConstraints: *PageSize B5Extra *Fold Stitch
*UIConstraints: *PageSize B5Extra *FrontCoverPage Printed
*UIConstraints: *PageSize B5Extra *FrontCoverPage Blank
*UIConstraints: *PageSize B5Extra *BackCoverPage Printed
*UIConstraints: *PageSize B5Extra *BackCoverPage Blank
*UIConstraints: *PageSize B5Extra *TransparencyInterleave Blank
*UIConstraints: *PageSize TabloidExtra *InputSlot Tray2
*UIConstraints: *PageSize TabloidExtra *InputSlot Tray3
*UIConstraints: *PageSize TabloidExtra *InputSlot Tray4
*UIConstraints: *PageSize TabloidExtra *InputSlot LCT_Rhein1
*UIConstraints: *PageSize TabloidExtra *MediaType Envelope
*UIConstraints: *PageSize TabloidExtra *Combination Booklet
*UIConstraints: *PageSize TabloidExtra *Fold Stitch
*UIConstraints: *PageSize TabloidExtra *FrontCoverPage Printed
*UIConstraints: *PageSize TabloidExtra *FrontCoverPage Blank
*UIConstraints: *PageSize TabloidExtra *BackCoverPage Printed
*UIConstraints: *PageSize TabloidExtra *BackCoverPage Blank
*UIConstraints: *PageSize TabloidExtra *TransparencyInterleave Blank
*UIConstraints: *PageSize LetterExtra *InputSlot Tray2
*UIConstraints: *PageSize LetterExtra *InputSlot Tray3
*UIConstraints: *PageSize LetterExtra *InputSlot Tray4
*UIConstraints: *PageSize LetterExtra *InputSlot LCT_Rhein1
*UIConstraints: *PageSize LetterExtra *MediaType Envelope
*UIConstraints: *PageSize LetterExtra *Fold Stitch
*UIConstraints: *PageSize LetterExtra *FrontCoverPage Printed
*UIConstraints: *PageSize LetterExtra *FrontCoverPage Blank
*UIConstraints: *PageSize LetterExtra *BackCoverPage Printed
*UIConstraints: *PageSize LetterExtra *BackCoverPage Blank
*UIConstraints: *PageSize LetterExtra *TransparencyInterleave Blank
*UIConstraints: *PageSize StatementExtra *InputSlot Tray2
*UIConstraints: *PageSize StatementExtra *InputSlot Tray3
*UIConstraints: *PageSize StatementExtra *InputSlot Tray4
*UIConstraints: *PageSize StatementExtra *InputSlot LCT_Rhein1
*UIConstraints: *PageSize StatementExtra *Fold Stitch
*UIConstraints: *PageSize StatementExtra *FrontCoverPage Printed
*UIConstraints: *PageSize StatementExtra *FrontCoverPage Blank
*UIConstraints: *PageSize StatementExtra *BackCoverPage Printed
*UIConstraints: *PageSize StatementExtra *BackCoverPage Blank
*UIConstraints: *PageSize StatementExtra *TransparencyInterleave Blank
*UIConstraints: *OutputBin Tray1 *Offset True
*UIConstraints: *OutputBin Tray1 *Staple 1Staple(Left)
*UIConstraints: *OutputBin Tray1 *Staple 1Staple(Right)
*UIConstraints: *OutputBin Tray1 *Staple 2Staples
*UIConstraints: *OutputBin Tray1 *Fold Stitch
*UIConstraints: *OutputBin Tray1 *Finisher None
*UIConstraints: *OutputBin Tray1 *Finisher FS603
*UIConstraints: *OutputBin Tray3 *Offset True
*UIConstraints: *OutputBin Tray3 *MediaType Envelope
*UIConstraints: *OutputBin Tray3 *MediaType Transparency
*UIConstraints: *OutputBin Tray3 *MediaType Thick1
*UIConstraints: *OutputBin Tray3 *MediaType Thick1(2ndSide)
*UIConstraints: *OutputBin Tray3 *MediaType Thick2
*UIConstraints: *OutputBin Tray3 *MediaType Thick2(2ndSide)
*UIConstraints: *OutputBin Tray3 *MediaType Thick3
*UIConstraints: *OutputBin Tray3 *MediaType Thick3(2ndSide)
*UIConstraints: *OutputBin Tray3 *PageSize A6
*UIConstraints: *OutputBin Tray3 *PageSize B6
*UIConstraints: *OutputBin Tray3 *PageSize EnvISOB5
*UIConstraints: *OutputBin Tray3 *PageSize EnvC5
*UIConstraints: *OutputBin Tray3 *PageSize EnvDL
*UIConstraints: *OutputBin Tray3 *PageSize EnvMonarch
*UIConstraints: *OutputBin Tray3 *PageSize Env10
*UIConstraints: *OutputBin Tray3 *PageSize JapanesePostCard
*UIConstraints: *OutputBin Tray3 *PageSize 4x6_PostCard
*UIConstraints: *OutputBin Tray3 *PageSize A3Extra
*UIConstraints: *OutputBin Tray3 *Staple 1Staple(Left)
*UIConstraints: *OutputBin Tray3 *Staple 1Staple(Right)
*UIConstraints: *OutputBin Tray3 *Staple 2Staples
*UIConstraints: *OutputBin Tray3 *Fold Stitch
*UIConstraints: *OutputBin Tray3 *TransparencyInterleave Blank
*UIConstraints: *OutputBin Tray3 *Finisher None
*UIConstraints: *OutputBin Tray3 *Finisher FS507
*UIConstraints: *OutputBin Tray3 *Finisher FS603
*UIConstraints: *OutputBin ElevateTray *MediaType Envelope
*UIConstraints: *OutputBin ElevateTray *MediaType Transparency
*UIConstraints: *OutputBin ElevateTray *PageSize A5
*UIConstraints: *OutputBin ElevateTray *PageSize A6
*UIConstraints: *OutputBin ElevateTray *PageSize B6
*UIConstraints: *OutputBin ElevateTray *PageSize Statement
*UIConstraints: *OutputBin ElevateTray *PageSize EnvISOB5
*UIConstraints: *OutputBin ElevateTray *PageSize EnvC5
*UIConstraints: *OutputBin ElevateTray *PageSize EnvDL
*UIConstraints: *OutputBin ElevateTray *PageSize EnvMonarch
*UIConstraints: *OutputBin ElevateTray *PageSize Env10
*UIConstraints: *OutputBin ElevateTray *PageSize JapanesePostCard
*UIConstraints: *OutputBin ElevateTray *PageSize 4x6_PostCard
*UIConstraints: *OutputBin ElevateTray *Fold Stitch
*UIConstraints: *OutputBin ElevateTray *TransparencyInterleave Blank
*UIConstraints: *OutputBin ElevateTray *Finisher None
*UIConstraints: *OutputBin ElevateTray *Finisher FS603
*UIConstraints: *Binding LeftBinding *Staple 1Staple(Right)
*UIConstraints: *Binding RightBinding *Staple 1Staple(Left)
*UIConstraints: *KMDuplex True *MediaType Plain(2ndSide)
*UIConstraints: *KMDuplex True *MediaType Envelope
*UIConstraints: *KMDuplex True *MediaType Transparency
*UIConstraints: *KMDuplex True *MediaType SingleSidedOnly
*UIConstraints: *KMDuplex True *MediaType Thick1(2ndSide)
*UIConstraints: *KMDuplex True *MediaType Thick2(2ndSide)
*UIConstraints: *KMDuplex True *MediaType Thick3(2ndSide)
*UIConstraints: *KMDuplex True *PageSize A6
*UIConstraints: *KMDuplex True *PageSize B6
*UIConstraints: *KMDuplex True *PageSize EnvISOB5
*UIConstraints: *KMDuplex True *PageSize EnvC5
*UIConstraints: *KMDuplex True *PageSize EnvDL
*UIConstraints: *KMDuplex True *PageSize EnvMonarch
*UIConstraints: *KMDuplex True *PageSize Env10
*UIConstraints: *KMDuplex True *PageSize JapanesePostCard
*UIConstraints: *KMDuplex True *PageSize 4x6_PostCard
*UIConstraints: *KMDuplex True *TransparencyInterleave Blank
*UIConstraints: *KMDuplex True *GlossyMode True
*UIConstraints: *Combination Booklet *MediaType Plain(2ndSide)
*UIConstraints: *Combination Booklet *MediaType Envelope
*UIConstraints: *Combination Booklet *MediaType Transparency
*UIConstraints: *Combination Booklet *MediaType SingleSidedOnly
*UIConstraints: *Combination Booklet *MediaType Thick1(2ndSide)
*UIConstraints: *Combination Booklet *MediaType Thick2(2ndSide)
*UIConstraints: *Combination Booklet *MediaType Thick3(2ndSide)
*UIConstraints: *Combination Booklet *PageSize A3
*UIConstraints: *Combination Booklet *PageSize B4
*UIConstraints: *Combination Booklet *PageSize 220mmx330mm
*UIConstraints: *Combination Booklet *PageSize 12x18
*UIConstraints: *Combination Booklet *PageSize Tabloid
*UIConstraints: *Combination Booklet *PageSize Legal
*UIConstraints: *Combination Booklet *PageSize 8x13
*UIConstraints: *Combination Booklet *PageSize 8.5x13
*UIConstraints: *Combination Booklet *PageSize 8.25x13
*UIConstraints: *Combination Booklet *PageSize 8.125x13.25
*UIConstraints: *Combination Booklet *PageSize Executive
*UIConstraints: *Combination Booklet *PageSize 8K
*UIConstraints: *Combination Booklet *PageSize EnvISOB5
*UIConstraints: *Combination Booklet *PageSize EnvC5
*UIConstraints: *Combination Booklet *PageSize EnvDL
*UIConstraints: *Combination Booklet *PageSize EnvMonarch
*UIConstraints: *Combination Booklet *PageSize Env10
*UIConstraints: *Combination Booklet *PageSize JapanesePostCard
*UIConstraints: *Combination Booklet *PageSize 4x6_PostCard
*UIConstraints: *Combination Booklet *PageSize A3Extra
*UIConstraints: *Combination Booklet *PageSize B4Extra
*UIConstraints: *Combination Booklet *PageSize TabloidExtra
*UIConstraints: *Combination Booklet *Staple 1Staple(Left)
*UIConstraints: *Combination Booklet *Staple 1Staple(Right)
*UIConstraints: *Combination Booklet *Staple 2Staples
*UIConstraints: *Combination Booklet *Punch 2holes
*UIConstraints: *Combination Booklet *Punch 3holes
*UIConstraints: *Combination Booklet *Punch 4holes
*UIConstraints: *Combination Booklet *TransparencyInterleave Blank
*UIConstraints: *Combination Booklet *GlossyMode True
*UIConstraints: *Staple 1Staple(Left) *Offset True
*UIConstraints: *Staple 1Staple(Left) *MediaType Envelope
*UIConstraints: *Staple 1Staple(Left) *MediaType Transparency
*UIConstraints: *Staple 1Staple(Left) *MediaType Thick3
*UIConstraints: *Staple 1Staple(Left) *MediaType Thick3(2ndSide)
*UIConstraints: *Staple 1Staple(Left) *PageSize A5
*UIConstraints: *Staple 1Staple(Left) *PageSize A6
*UIConstraints: *Staple 1Staple(Left) *PageSize B6
*UIConstraints: *Staple 1Staple(Left) *PageSize 12x18
*UIConstraints: *Staple 1Staple(Left) *PageSize Statement
*UIConstraints: *Staple 1Staple(Left) *PageSize EnvISOB5
*UIConstraints: *Staple 1Staple(Left) *PageSize EnvC5
*UIConstraints: *Staple 1Staple(Left) *PageSize EnvDL
*UIConstraints: *Staple 1Staple(Left) *PageSize EnvMonarch
*UIConstraints: *Staple 1Staple(Left) *PageSize Env10
*UIConstraints: *Staple 1Staple(Left) *PageSize JapanesePostCard
*UIConstraints: *Staple 1Staple(Left) *PageSize 4x6_PostCard
*UIConstraints: *Staple 1Staple(Left) *OutputBin Tray1
*UIConstraints: *Staple 1Staple(Left) *OutputBin Tray3
*UIConstraints: *Staple 1Staple(Left) *Binding RightBinding
*UIConstraints: *Staple 1Staple(Left) *Combination Booklet
*UIConstraints: *Staple 1Staple(Left) *Fold Stitch
*UIConstraints: *Staple 1Staple(Left) *TransparencyInterleave Blank
*UIConstraints: *Staple 1Staple(Left) *Finisher None
*UIConstraints: *Staple 1Staple(Right) *Offset True
*UIConstraints: *Staple 1Staple(Right) *MediaType Envelope
*UIConstraints: *Staple 1Staple(Right) *MediaType Transparency
*UIConstraints: *Staple 1Staple(Right) *MediaType Thick3
*UIConstraints: *Staple 1Staple(Right) *MediaType Thick3(2ndSide)
*UIConstraints: *Staple 1Staple(Right) *PageSize A5
*UIConstraints: *Staple 1Staple(Right) *PageSize A6
*UIConstraints: *Staple 1Staple(Right) *PageSize B6
*UIConstraints: *Staple 1Staple(Right) *PageSize 12x18
*UIConstraints: *Staple 1Staple(Right) *PageSize Statement
*UIConstraints: *Staple 1Staple(Right) *PageSize EnvISOB5
*UIConstraints: *Staple 1Staple(Right) *PageSize EnvC5
*UIConstraints: *Staple 1Staple(Right) *PageSize EnvDL
*UIConstraints: *Staple 1Staple(Right) *PageSize EnvMonarch
*UIConstraints: *Staple 1Staple(Right) *PageSize Env10
*UIConstraints: *Staple 1Staple(Right) *PageSize JapanesePostCard
*UIConstraints: *Staple 1Staple(Right) *PageSize 4x6_PostCard
*UIConstraints: *Staple 1Staple(Right) *OutputBin Tray1
*UIConstraints: *Staple 1Staple(Right) *OutputBin Tray3
*UIConstraints: *Staple 1Staple(Right) *Binding LeftBinding
*UIConstraints: *Staple 1Staple(Right) *Combination Booklet
*UIConstraints: *Staple 1Staple(Right) *Fold Stitch
*UIConstraints: *Staple 1Staple(Right) *TransparencyInterleave Blank
*UIConstraints: *Staple 1Staple(Right) *Finisher None
*UIConstraints: *Staple 2Staples *Offset True
*UIConstraints: *Staple 2Staples *MediaType Envelope
*UIConstraints: *Staple 2Staples *MediaType Transparency
*UIConstraints: *Staple 2Staples *MediaType Thick3
*UIConstraints: *Staple 2Staples *MediaType Thick3(2ndSide)
*UIConstraints: *Staple 2Staples *PageSize A5
*UIConstraints: *Staple 2Staples *PageSize A6
*UIConstraints: *Staple 2Staples *PageSize B6
*UIConstraints: *Staple 2Staples *PageSize 12x18
*UIConstraints: *Staple 2Staples *PageSize Statement
*UIConstraints: *Staple 2Staples *PageSize EnvISOB5
*UIConstraints: *Staple 2Staples *PageSize EnvC5
*UIConstraints: *Staple 2Staples *PageSize EnvDL
*UIConstraints: *Staple 2Staples *PageSize EnvMonarch
*UIConstraints: *Staple 2Staples *PageSize Env10
*UIConstraints: *Staple 2Staples *PageSize JapanesePostCard
*UIConstraints: *Staple 2Staples *PageSize 4x6_PostCard
*UIConstraints: *Staple 2Staples *OutputBin Tray1
*UIConstraints: *Staple 2Staples *OutputBin Tray3
*UIConstraints: *Staple 2Staples *Combination Booklet
*UIConstraints: *Staple 2Staples *Fold Stitch
*UIConstraints: *Staple 2Staples *TransparencyInterleave Blank
*UIConstraints: *Staple 2Staples *Finisher None
*UIConstraints: *Punch 2holes *MediaType Envelope
*UIConstraints: *Punch 2holes *MediaType Transparency
*UIConstraints: *Punch 2holes *MediaType Thick3
*UIConstraints: *Punch 2holes *MediaType Thick3(2ndSide)
*UIConstraints: *Punch 2holes *PageSize A5
*UIConstraints: *Punch 2holes *PageSize A6
*UIConstraints: *Punch 2holes *PageSize B6
*UIConstraints: *Punch 2holes *PageSize 12x18
*UIConstraints: *Punch 2holes *PageSize Statement
*UIConstraints: *Punch 2holes *PageSize EnvISOB5
*UIConstraints: *Punch 2holes *PageSize EnvC5
*UIConstraints: *Punch 2holes *PageSize EnvDL
*UIConstraints: *Punch 2holes *PageSize EnvMonarch
*UIConstraints: *Punch 2holes *PageSize Env10
*UIConstraints: *Punch 2holes *PageSize JapanesePostCard
*UIConstraints: *Punch 2holes *PageSize 4x6_PostCard
*UIConstraints: *Punch 2holes *Combination Booklet
*UIConstraints: *Punch 2holes *Fold Stitch
*UIConstraints: *Punch 2holes *TransparencyInterleave Blank
*UIConstraints: *Punch 2holes *Finisher None
*UIConstraints: *Punch 2holes *KOPunchUnit 4HolesType
*UIConstraints: *Punch 3holes *MediaType Envelope
*UIConstraints: *Punch 3holes *MediaType Transparency
*UIConstraints: *Punch 3holes *MediaType Thick3
*UIConstraints: *Punch 3holes *MediaType Thick3(2ndSide)
*UIConstraints: *Punch 3holes *PageSize A5
*UIConstraints: *Punch 3holes *PageSize A6
*UIConstraints: *Punch 3holes *PageSize B6
*UIConstraints: *Punch 3holes *PageSize 12x18
*UIConstraints: *Punch 3holes *PageSize Statement
*UIConstraints: *Punch 3holes *PageSize EnvISOB5
*UIConstraints: *Punch 3holes *PageSize EnvC5
*UIConstraints: *Punch 3holes *PageSize EnvDL
*UIConstraints: *Punch 3holes *PageSize EnvMonarch
*UIConstraints: *Punch 3holes *PageSize Env10
*UIConstraints: *Punch 3holes *PageSize JapanesePostCard
*UIConstraints: *Punch 3holes *PageSize 4x6_PostCard
*UIConstraints: *Punch 3holes *Combination Booklet
*UIConstraints: *Punch 3holes *Fold Stitch
*UIConstraints: *Punch 3holes *TransparencyInterleave Blank
*UIConstraints: *Punch 3holes *Finisher None
*UIConstraints: *Punch 3holes *KOPunchUnit 2HolesType
*UIConstraints: *Punch 3holes *KOPunchUnit 4HolesType
*UIConstraints: *Punch 4holes *MediaType Envelope
*UIConstraints: *Punch 4holes *MediaType Transparency
*UIConstraints: *Punch 4holes *MediaType Thick3
*UIConstraints: *Punch 4holes *MediaType Thick3(2ndSide)
*UIConstraints: *Punch 4holes *PageSize A5
*UIConstraints: *Punch 4holes *PageSize A6
*UIConstraints: *Punch 4holes *PageSize B6
*UIConstraints: *Punch 4holes *PageSize 12x18
*UIConstraints: *Punch 4holes *PageSize Statement
*UIConstraints: *Punch 4holes *PageSize EnvISOB5
*UIConstraints: *Punch 4holes *PageSize EnvC5
*UIConstraints: *Punch 4holes *PageSize EnvDL
*UIConstraints: *Punch 4holes *PageSize EnvMonarch
*UIConstraints: *Punch 4holes *PageSize Env10
*UIConstraints: *Punch 4holes *PageSize JapanesePostCard
*UIConstraints: *Punch 4holes *PageSize 4x6_PostCard
*UIConstraints: *Punch 4holes *Combination Booklet
*UIConstraints: *Punch 4holes *Fold Stitch
*UIConstraints: *Punch 4holes *TransparencyInterleave Blank
*UIConstraints: *Punch 4holes *Finisher None
*UIConstraints: *Punch 4holes *KOPunchUnit 2HolesType
*UIConstraints: *Punch 4holes *KOPunchUnit 2-3HolesType
*UIConstraints: *Fold Stitch *Offset True
*UIConstraints: *Fold Stitch *MediaType Envelope
*UIConstraints: *Fold Stitch *MediaType Transparency
*UIConstraints: *Fold Stitch *MediaType Thick1
*UIConstraints: *Fold Stitch *MediaType Thick1(2ndSide)
*UIConstraints: *Fold Stitch *MediaType Thick2
*UIConstraints: *Fold Stitch *MediaType Thick2(2ndSide)
*UIConstraints: *Fold Stitch *MediaType Thick3
*UIConstraints: *Fold Stitch *MediaType Thick3(2ndSide)
*UIConstraints: *Fold Stitch *PageSize A6
*UIConstraints: *Fold Stitch *PageSize B6
*UIConstraints: *Fold Stitch *PageSize 220mmx330mm
*UIConstraints: *Fold Stitch *PageSize 12x18
*UIConstraints: *Fold Stitch *PageSize 8x13
*UIConstraints: *Fold Stitch *PageSize 8.5x13
*UIConstraints: *Fold Stitch *PageSize 8.25x13
*UIConstraints: *Fold Stitch *PageSize 8.125x13.25
*UIConstraints: *Fold Stitch *PageSize Executive
*UIConstraints: *Fold Stitch *PageSize 8K
*UIConstraints: *Fold Stitch *PageSize 16K
*UIConstraints: *Fold Stitch *PageSize EnvISOB5
*UIConstraints: *Fold Stitch *PageSize EnvC5
*UIConstraints: *Fold Stitch *PageSize EnvDL
*UIConstraints: *Fold Stitch *PageSize EnvMonarch
*UIConstraints: *Fold Stitch *PageSize Env10
*UIConstraints: *Fold Stitch *PageSize JapanesePostCard
*UIConstraints: *Fold Stitch *PageSize 4x6_PostCard
*UIConstraints: *Fold Stitch *PageSize A3Extra
*UIConstraints: *Fold Stitch *PageSize A4Extra
*UIConstraints: *Fold Stitch *PageSize A5Extra
*UIConstraints: *Fold Stitch *PageSize B4Extra
*UIConstraints: *Fold Stitch *PageSize B5Extra
*UIConstraints: *Fold Stitch *PageSize TabloidExtra
*UIConstraints: *Fold Stitch *PageSize LetterExtra
*UIConstraints: *Fold Stitch *PageSize StatementExtra
*UIConstraints: *Fold Stitch *OutputBin Tray1
*UIConstraints: *Fold Stitch *OutputBin Tray3
*UIConstraints: *Fold Stitch *OutputBin ElevateTray
*UIConstraints: *Fold Stitch *Staple 1Staple(Left)
*UIConstraints: *Fold Stitch *Staple 1Staple(Right)
*UIConstraints: *Fold Stitch *Staple 2Staples
*UIConstraints: *Fold Stitch *Punch 2holes
*UIConstraints: *Fold Stitch *Punch 3holes
*UIConstraints: *Fold Stitch *Punch 4holes
*UIConstraints: *Fold Stitch *TransparencyInterleave Blank
*UIConstraints: *Fold Stitch *GlossyMode True
*UIConstraints: *Fold Stitch *Finisher None
*UIConstraints: *Fold Stitch *Finisher FS507
*UIConstraints: *Fold Stitch *Finisher JS601
*UIConstraints: *FrontCoverPage None *FrontCoverTray Tray1
*UIConstraints: *FrontCoverPage None *FrontCoverTray Tray2
*UIConstraints: *FrontCoverPage None *FrontCoverTray Tray3
*UIConstraints: *FrontCoverPage None *FrontCoverTray Tray4
*UIConstraints: *FrontCoverPage None *FrontCoverTray LCT_Rhein1
*UIConstraints: *FrontCoverPage None *FrontCoverTray BypassTray
*UIConstraints: *FrontCoverPage Printed *PageSize EnvISOB5
*UIConstraints: *FrontCoverPage Printed *PageSize EnvC5
*UIConstraints: *FrontCoverPage Printed *PageSize EnvDL
*UIConstraints: *FrontCoverPage Printed *PageSize EnvMonarch
*UIConstraints: *FrontCoverPage Printed *PageSize Env10
*UIConstraints: *FrontCoverPage Printed *PageSize JapanesePostCard
*UIConstraints: *FrontCoverPage Printed *PageSize 4x6_PostCard
*UIConstraints: *FrontCoverPage Printed *PageSize A3Extra
*UIConstraints: *FrontCoverPage Printed *PageSize A4Extra
*UIConstraints: *FrontCoverPage Printed *PageSize A5Extra
*UIConstraints: *FrontCoverPage Printed *PageSize B4Extra
*UIConstraints: *FrontCoverPage Printed *PageSize B5Extra
*UIConstraints: *FrontCoverPage Printed *PageSize TabloidExtra
*UIConstraints: *FrontCoverPage Printed *PageSize LetterExtra
*UIConstraints: *FrontCoverPage Printed *PageSize StatementExtra
*UIConstraints: *FrontCoverPage Printed *TransparencyInterleave Blank
*UIConstraints: *FrontCoverPage Blank *PageSize EnvISOB5
*UIConstraints: *FrontCoverPage Blank *PageSize EnvC5
*UIConstraints: *FrontCoverPage Blank *PageSize EnvDL
*UIConstraints: *FrontCoverPage Blank *PageSize EnvMonarch
*UIConstraints: *FrontCoverPage Blank *PageSize Env10
*UIConstraints: *FrontCoverPage Blank *PageSize JapanesePostCard
*UIConstraints: *FrontCoverPage Blank *PageSize 4x6_PostCard
*UIConstraints: *FrontCoverPage Blank *PageSize A3Extra
*UIConstraints: *FrontCoverPage Blank *PageSize A4Extra
*UIConstraints: *FrontCoverPage Blank *PageSize A5Extra
*UIConstraints: *FrontCoverPage Blank *PageSize B4Extra
*UIConstraints: *FrontCoverPage Blank *PageSize B5Extra
*UIConstraints: *FrontCoverPage Blank *PageSize TabloidExtra
*UIConstraints: *FrontCoverPage Blank *PageSize LetterExtra
*UIConstraints: *FrontCoverPage Blank *PageSize StatementExtra
*UIConstraints: *FrontCoverPage Blank *TransparencyInterleave Blank
*UIConstraints: *FrontCoverTray Tray1 *FrontCoverPage None
*UIConstraints: *FrontCoverTray Tray2 *PageSize A6
*UIConstraints: *FrontCoverTray Tray2 *PageSize B6
*UIConstraints: *FrontCoverTray Tray2 *PageSize 12x18
*UIConstraints: *FrontCoverTray Tray2 *PageSize Executive
*UIConstraints: *FrontCoverTray Tray2 *FrontCoverPage None
*UIConstraints: *FrontCoverTray Tray3 *PageSize A6
*UIConstraints: *FrontCoverTray Tray3 *PageSize B6
*UIConstraints: *FrontCoverTray Tray3 *PageSize 12x18
*UIConstraints: *FrontCoverTray Tray3 *PageSize Executive
*UIConstraints: *FrontCoverTray Tray3 *FrontCoverPage None
*UIConstraints: *FrontCoverTray Tray3 *PaperSources None
*UIConstraints: *FrontCoverTray Tray3 *PaperSources PC402
*UIConstraints: *FrontCoverTray Tray4 *PageSize A6
*UIConstraints: *FrontCoverTray Tray4 *PageSize B6
*UIConstraints: *FrontCoverTray Tray4 *PageSize 12x18
*UIConstraints: *FrontCoverTray Tray4 *PageSize Executive
*UIConstraints: *FrontCoverTray Tray4 *FrontCoverPage None
*UIConstraints: *FrontCoverTray Tray4 *PaperSources None
*UIConstraints: *FrontCoverTray Tray4 *PaperSources PC102
*UIConstraints: *FrontCoverTray Tray4 *PaperSources PC402
*UIConstraints: *FrontCoverTray LCT_Rhein1 *PageSize A3
*UIConstraints: *FrontCoverTray LCT_Rhein1 *PageSize A5
*UIConstraints: *FrontCoverTray LCT_Rhein1 *PageSize A6
*UIConstraints: *FrontCoverTray LCT_Rhein1 *PageSize B4
*UIConstraints: *FrontCoverTray LCT_Rhein1 *PageSize B5
*UIConstraints: *FrontCoverTray LCT_Rhein1 *PageSize B6
*UIConstraints: *FrontCoverTray LCT_Rhein1 *PageSize 220mmx330mm
*UIConstraints: *FrontCoverTray LCT_Rhein1 *PageSize 12x18
*UIConstraints: *FrontCoverTray LCT_Rhein1 *PageSize Tabloid
*UIConstraints: *FrontCoverTray LCT_Rhein1 *PageSize Legal
*UIConstraints: *FrontCoverTray LCT_Rhein1 *PageSize Statement
*UIConstraints: *FrontCoverTray LCT_Rhein1 *PageSize 8x13
*UIConstraints: *FrontCoverTray LCT_Rhein1 *PageSize 8.5x13
*UIConstraints: *FrontCoverTray LCT_Rhein1 *PageSize 8.25x13
*UIConstraints: *FrontCoverTray LCT_Rhein1 *PageSize 8.125x13.25
*UIConstraints: *FrontCoverTray LCT_Rhein1 *PageSize Executive
*UIConstraints: *FrontCoverTray LCT_Rhein1 *PageSize 8K
*UIConstraints: *FrontCoverTray LCT_Rhein1 *PageSize 16K
*UIConstraints: *FrontCoverTray LCT_Rhein1 *FrontCoverPage None
*UIConstraints: *FrontCoverTray LCT_Rhein1 *PaperSources None
*UIConstraints: *FrontCoverTray LCT_Rhein1 *PaperSources PC102
*UIConstraints: *FrontCoverTray LCT_Rhein1 *PaperSources PC202
*UIConstraints: *FrontCoverTray BypassTray *FrontCoverPage None
*UIConstraints: *BackCoverPage None *BackCoverTray Tray1
*UIConstraints: *BackCoverPage None *BackCoverTray Tray2
*UIConstraints: *BackCoverPage None *BackCoverTray Tray3
*UIConstraints: *BackCoverPage None *BackCoverTray Tray4
*UIConstraints: *BackCoverPage None *BackCoverTray LCT_Rhein1
*UIConstraints: *BackCoverPage None *BackCoverTray BypassTray
*UIConstraints: *BackCoverPage Printed *PageSize EnvISOB5
*UIConstraints: *BackCoverPage Printed *PageSize EnvC5
*UIConstraints: *BackCoverPage Printed *PageSize EnvDL
*UIConstraints: *BackCoverPage Printed *PageSize EnvMonarch
*UIConstraints: *BackCoverPage Printed *PageSize Env10
*UIConstraints: *BackCoverPage Printed *PageSize JapanesePostCard
*UIConstraints: *BackCoverPage Printed *PageSize 4x6_PostCard
*UIConstraints: *BackCoverPage Printed *PageSize A3Extra
*UIConstraints: *BackCoverPage Printed *PageSize A4Extra
*UIConstraints: *BackCoverPage Printed *PageSize A5Extra
*UIConstraints: *BackCoverPage Printed *PageSize B4Extra
*UIConstraints: *BackCoverPage Printed *PageSize B5Extra
*UIConstraints: *BackCoverPage Printed *PageSize TabloidExtra
*UIConstraints: *BackCoverPage Printed *PageSize LetterExtra
*UIConstraints: *BackCoverPage Printed *PageSize StatementExtra
*UIConstraints: *BackCoverPage Printed *TransparencyInterleave Blank
*UIConstraints: *BackCoverPage Blank *PageSize EnvISOB5
*UIConstraints: *BackCoverPage Blank *PageSize EnvC5
*UIConstraints: *BackCoverPage Blank *PageSize EnvDL
*UIConstraints: *BackCoverPage Blank *PageSize EnvMonarch
*UIConstraints: *BackCoverPage Blank *PageSize Env10
*UIConstraints: *BackCoverPage Blank *PageSize JapanesePostCard
*UIConstraints: *BackCoverPage Blank *PageSize 4x6_PostCard
*UIConstraints: *BackCoverPage Blank *PageSize A3Extra
*UIConstraints: *BackCoverPage Blank *PageSize A4Extra
*UIConstraints: *BackCoverPage Blank *PageSize A5Extra
*UIConstraints: *BackCoverPage Blank *PageSize B4Extra
*UIConstraints: *BackCoverPage Blank *PageSize B5Extra
*UIConstraints: *BackCoverPage Blank *PageSize TabloidExtra
*UIConstraints: *BackCoverPage Blank *PageSize LetterExtra
*UIConstraints: *BackCoverPage Blank *PageSize StatementExtra
*UIConstraints: *BackCoverPage Blank *TransparencyInterleave Blank
*UIConstraints: *BackCoverTray Tray1 *BackCoverPage None
*UIConstraints: *BackCoverTray Tray2 *PageSize A6
*UIConstraints: *BackCoverTray Tray2 *PageSize B6
*UIConstraints: *BackCoverTray Tray2 *PageSize 12x18
*UIConstraints: *BackCoverTray Tray2 *PageSize Executive
*UIConstraints: *BackCoverTray Tray2 *BackCoverPage None
*UIConstraints: *BackCoverTray Tray3 *PageSize A6
*UIConstraints: *BackCoverTray Tray3 *PageSize B6
*UIConstraints: *BackCoverTray Tray3 *PageSize 12x18
*UIConstraints: *BackCoverTray Tray3 *PageSize Executive
*UIConstraints: *BackCoverTray Tray3 *BackCoverPage None
*UIConstraints: *BackCoverTray Tray3 *PaperSources None
*UIConstraints: *BackCoverTray Tray3 *PaperSources PC402
*UIConstraints: *BackCoverTray Tray4 *PageSize A6
*UIConstraints: *BackCoverTray Tray4 *PageSize B6
*UIConstraints: *BackCoverTray Tray4 *PageSize 12x18
*UIConstraints: *BackCoverTray Tray4 *PageSize Executive
*UIConstraints: *BackCoverTray Tray4 *BackCoverPage None
*UIConstraints: *BackCoverTray Tray4 *PaperSources None
*UIConstraints: *BackCoverTray Tray4 *PaperSources PC102
*UIConstraints: *BackCoverTray Tray4 *PaperSources PC402
*UIConstraints: *BackCoverTray LCT_Rhein1 *PageSize A3
*UIConstraints: *BackCoverTray LCT_Rhein1 *PageSize A5
*UIConstraints: *BackCoverTray LCT_Rhein1 *PageSize A6
*UIConstraints: *BackCoverTray LCT_Rhein1 *PageSize B4
*UIConstraints: *BackCoverTray LCT_Rhein1 *PageSize B5
*UIConstraints: *BackCoverTray LCT_Rhein1 *PageSize B6
*UIConstraints: *BackCoverTray LCT_Rhein1 *PageSize 220mmx330mm
*UIConstraints: *BackCoverTray LCT_Rhein1 *PageSize 12x18
*UIConstraints: *BackCoverTray LCT_Rhein1 *PageSize Tabloid
*UIConstraints: *BackCoverTray LCT_Rhein1 *PageSize Legal
*UIConstraints: *BackCoverTray LCT_Rhein1 *PageSize Statement
*UIConstraints: *BackCoverTray LCT_Rhein1 *PageSize 8x13
*UIConstraints: *BackCoverTray LCT_Rhein1 *PageSize 8.5x13
*UIConstraints: *BackCoverTray LCT_Rhein1 *PageSize 8.25x13
*UIConstraints: *BackCoverTray LCT_Rhein1 *PageSize 8.125x13.25
*UIConstraints: *BackCoverTray LCT_Rhein1 *PageSize Executive
*UIConstraints: *BackCoverTray LCT_Rhein1 *PageSize 8K
*UIConstraints: *BackCoverTray LCT_Rhein1 *PageSize 16K
*UIConstraints: *BackCoverTray LCT_Rhein1 *BackCoverPage None
*UIConstraints: *BackCoverTray LCT_Rhein1 *PaperSources None
*UIConstraints: *BackCoverTray LCT_Rhein1 *PaperSources PC102
*UIConstraints: *BackCoverTray LCT_Rhein1 *PaperSources PC202
*UIConstraints: *BackCoverTray BypassTray *BackCoverPage None
*UIConstraints: *TransparencyInterleave None *OHPOpTray Tray2
*UIConstraints: *TransparencyInterleave None *OHPOpTray Tray3
*UIConstraints: *TransparencyInterleave None *OHPOpTray Tray4
*UIConstraints: *TransparencyInterleave None *OHPOpTray LCT_Rhein1
*UIConstraints: *TransparencyInterleave Blank *Offset True
*UIConstraints: *TransparencyInterleave Blank *InputSlot Tray2
*UIConstraints: *TransparencyInterleave Blank *InputSlot Tray3
*UIConstraints: *TransparencyInterleave Blank *InputSlot Tray4
*UIConstraints: *TransparencyInterleave Blank *InputSlot LCT_Rhein1
*UIConstraints: *TransparencyInterleave Blank *MediaType Plain
*UIConstraints: *TransparencyInterleave Blank *MediaType Plain(2ndSide)
*UIConstraints: *TransparencyInterleave Blank *MediaType Special
*UIConstraints: *TransparencyInterleave Blank *MediaType Envelope
*UIConstraints: *TransparencyInterleave Blank *MediaType Letterhead
*UIConstraints: *TransparencyInterleave Blank *MediaType SingleSidedOnly
*UIConstraints: *TransparencyInterleave Blank *MediaType Thick1
*UIConstraints: *TransparencyInterleave Blank *MediaType Thick1(2ndSide)
*UIConstraints: *TransparencyInterleave Blank *MediaType Thick2
*UIConstraints: *TransparencyInterleave Blank *MediaType Thick2(2ndSide)
*UIConstraints: *TransparencyInterleave Blank *MediaType Thick3
*UIConstraints: *TransparencyInterleave Blank *MediaType Thick3(2ndSide)
*UIConstraints: *TransparencyInterleave Blank *MediaType Color
*UIConstraints: *TransparencyInterleave Blank *PageSize EnvISOB5
*UIConstraints: *TransparencyInterleave Blank *PageSize EnvC5
*UIConstraints: *TransparencyInterleave Blank *PageSize EnvDL
*UIConstraints: *TransparencyInterleave Blank *PageSize EnvMonarch
*UIConstraints: *TransparencyInterleave Blank *PageSize Env10
*UIConstraints: *TransparencyInterleave Blank *PageSize JapanesePostCard
*UIConstraints: *TransparencyInterleave Blank *PageSize 4x6_PostCard
*UIConstraints: *TransparencyInterleave Blank *PageSize A3Extra
*UIConstraints: *TransparencyInterleave Blank *PageSize A4Extra
*UIConstraints: *TransparencyInterleave Blank *PageSize A5Extra
*UIConstraints: *TransparencyInterleave Blank *PageSize B4Extra
*UIConstraints: *TransparencyInterleave Blank *PageSize B5Extra
*UIConstraints: *TransparencyInterleave Blank *PageSize TabloidExtra
*UIConstraints: *TransparencyInterleave Blank *PageSize LetterExtra
*UIConstraints: *TransparencyInterleave Blank *PageSize StatementExtra
*UIConstraints: *TransparencyInterleave Blank *OutputBin Tray3
*UIConstraints: *TransparencyInterleave Blank *OutputBin ElevateTray
*UIConstraints: *TransparencyInterleave Blank *KMDuplex True
*UIConstraints: *TransparencyInterleave Blank *Combination Booklet
*UIConstraints: *TransparencyInterleave Blank *Staple 1Staple(Left)
*UIConstraints: *TransparencyInterleave Blank *Staple 1Staple(Right)
*UIConstraints: *TransparencyInterleave Blank *Staple 2Staples
*UIConstraints: *TransparencyInterleave Blank *Punch 2holes
*UIConstraints: *TransparencyInterleave Blank *Punch 3holes
*UIConstraints: *TransparencyInterleave Blank *Punch 4holes
*UIConstraints: *TransparencyInterleave Blank *Fold Stitch
*UIConstraints: *TransparencyInterleave Blank *FrontCoverPage Printed
*UIConstraints: *TransparencyInterleave Blank *FrontCoverPage Blank
*UIConstraints: *TransparencyInterleave Blank *BackCoverPage Printed
*UIConstraints: *TransparencyInterleave Blank *BackCoverPage Blank
*UIConstraints: *TransparencyInterleave Blank *GlossyMode True
*UIConstraints: *OHPOpTray Tray2 *PageSize A6
*UIConstraints: *OHPOpTray Tray2 *PageSize B6
*UIConstraints: *OHPOpTray Tray2 *PageSize 12x18
*UIConstraints: *OHPOpTray Tray2 *PageSize Executive
*UIConstraints: *OHPOpTray Tray2 *TransparencyInterleave None
*UIConstraints: *OHPOpTray Tray3 *PageSize A6
*UIConstraints: *OHPOpTray Tray3 *PageSize B6
*UIConstraints: *OHPOpTray Tray3 *PageSize 12x18
*UIConstraints: *OHPOpTray Tray3 *PageSize Executive
*UIConstraints: *OHPOpTray Tray3 *TransparencyInterleave None
*UIConstraints: *OHPOpTray Tray3 *PaperSources None
*UIConstraints: *OHPOpTray Tray3 *PaperSources PC402
*UIConstraints: *OHPOpTray Tray4 *PageSize A6
*UIConstraints: *OHPOpTray Tray4 *PageSize B6
*UIConstraints: *OHPOpTray Tray4 *PageSize 12x18
*UIConstraints: *OHPOpTray Tray4 *PageSize Executive
*UIConstraints: *OHPOpTray Tray4 *TransparencyInterleave None
*UIConstraints: *OHPOpTray Tray4 *PaperSources None
*UIConstraints: *OHPOpTray Tray4 *PaperSources PC102
*UIConstraints: *OHPOpTray Tray4 *PaperSources PC402
*UIConstraints: *OHPOpTray LCT_Rhein1 *PageSize A3
*UIConstraints: *OHPOpTray LCT_Rhein1 *PageSize A5
*UIConstraints: *OHPOpTray LCT_Rhein1 *PageSize A6
*UIConstraints: *OHPOpTray LCT_Rhein1 *PageSize B4
*UIConstraints: *OHPOpTray LCT_Rhein1 *PageSize B5
*UIConstraints: *OHPOpTray LCT_Rhein1 *PageSize B6
*UIConstraints: *OHPOpTray LCT_Rhein1 *PageSize 220mmx330mm
*UIConstraints: *OHPOpTray LCT_Rhein1 *PageSize 12x18
*UIConstraints: *OHPOpTray LCT_Rhein1 *PageSize Tabloid
*UIConstraints: *OHPOpTray LCT_Rhein1 *PageSize Legal
*UIConstraints: *OHPOpTray LCT_Rhein1 *PageSize Statement
*UIConstraints: *OHPOpTray LCT_Rhein1 *PageSize 8x13
*UIConstraints: *OHPOpTray LCT_Rhein1 *PageSize 8.5x13
*UIConstraints: *OHPOpTray LCT_Rhein1 *PageSize 8.25x13
*UIConstraints: *OHPOpTray LCT_Rhein1 *PageSize 8.125x13.25
*UIConstraints: *OHPOpTray LCT_Rhein1 *PageSize Executive
*UIConstraints: *OHPOpTray LCT_Rhein1 *PageSize 8K
*UIConstraints: *OHPOpTray LCT_Rhein1 *PageSize 16K
*UIConstraints: *OHPOpTray LCT_Rhein1 *TransparencyInterleave None
*UIConstraints: *OHPOpTray LCT_Rhein1 *PaperSources None
*UIConstraints: *OHPOpTray LCT_Rhein1 *PaperSources PC102
*UIConstraints: *OHPOpTray LCT_Rhein1 *PaperSources PC202
*UIConstraints: *SelectColor Grayscale *TextColorMatching Colorimetric
*UIConstraints: *SelectColor Grayscale *TextPureBlack Auto
*UIConstraints: *SelectColor Grayscale *TextPureBlack True
*UIConstraints: *SelectColor Grayscale *PhotoColorMatching Colorimetric
*UIConstraints: *SelectColor Grayscale *PhotoPureBlack Auto
*UIConstraints: *SelectColor Grayscale *PhotoPureBlack True
*UIConstraints: *GlossyMode True *MediaType Special
*UIConstraints: *GlossyMode True *MediaType Envelope
*UIConstraints: *GlossyMode True *MediaType Transparency
*UIConstraints: *GlossyMode True *MediaType Letterhead
*UIConstraints: *GlossyMode True *MediaType Thick1
*UIConstraints: *GlossyMode True *MediaType Thick1(2ndSide)
*UIConstraints: *GlossyMode True *MediaType Thick2
*UIConstraints: *GlossyMode True *MediaType Thick2(2ndSide)
*UIConstraints: *GlossyMode True *MediaType Thick3
*UIConstraints: *GlossyMode True *MediaType Thick3(2ndSide)
*UIConstraints: *GlossyMode True *MediaType Color
*UIConstraints: *GlossyMode True *KMDuplex True
*UIConstraints: *GlossyMode True *Combination Booklet
*UIConstraints: *GlossyMode True *Fold Stitch
*UIConstraints: *GlossyMode True *TransparencyInterleave Blank
*UIConstraints: *TextColorMatching Colorimetric *SelectColor Grayscale
*UIConstraints: *TextPureBlack Auto *SelectColor Grayscale
*UIConstraints: *TextPureBlack True *SelectColor Grayscale
*UIConstraints: *PhotoColorMatching Colorimetric *SelectColor Grayscale
*UIConstraints: *PhotoPureBlack Auto *SelectColor Grayscale
*UIConstraints: *PhotoPureBlack True *SelectColor Grayscale
*UIConstraints: *PaperSources None *InputSlot Tray3
*UIConstraints: *PaperSources None *InputSlot Tray4
*UIConstraints: *PaperSources None *InputSlot LCT_Rhein1
*UIConstraints: *PaperSources None *FrontCoverTray Tray3
*UIConstraints: *PaperSources None *FrontCoverTray Tray4
*UIConstraints: *PaperSources None *FrontCoverTray LCT_Rhein1
*UIConstraints: *PaperSources None *BackCoverTray Tray3
*UIConstraints: *PaperSources None *BackCoverTray Tray4
*UIConstraints: *PaperSources None *BackCoverTray LCT_Rhein1
*UIConstraints: *PaperSources None *OHPOpTray Tray3
*UIConstraints: *PaperSources None *OHPOpTray Tray4
*UIConstraints: *PaperSources None *OHPOpTray LCT_Rhein1
*UIConstraints: *PaperSources PC102 *InputSlot Tray4
*UIConstraints: *PaperSources PC102 *InputSlot LCT_Rhein1
*UIConstraints: *PaperSources PC102 *FrontCoverTray Tray4
*UIConstraints: *PaperSources PC102 *FrontCoverTray LCT_Rhein1
*UIConstraints: *PaperSources PC102 *BackCoverTray Tray4
*UIConstraints: *PaperSources PC102 *BackCoverTray LCT_Rhein1
*UIConstraints: *PaperSources PC102 *OHPOpTray Tray4
*UIConstraints: *PaperSources PC102 *OHPOpTray LCT_Rhein1
*UIConstraints: *PaperSources PC202 *InputSlot LCT_Rhein1
*UIConstraints: *PaperSources PC202 *FrontCoverTray LCT_Rhein1
*UIConstraints: *PaperSources PC202 *BackCoverTray LCT_Rhein1
*UIConstraints: *PaperSources PC202 *OHPOpTray LCT_Rhein1
*UIConstraints: *PaperSources PC402 *InputSlot Tray3
*UIConstraints: *PaperSources PC402 *InputSlot Tray4
*UIConstraints: *PaperSources PC402 *FrontCoverTray Tray3
*UIConstraints: *PaperSources PC402 *FrontCoverTray Tray4
*UIConstraints: *PaperSources PC402 *BackCoverTray Tray3
*UIConstraints: *PaperSources PC402 *BackCoverTray Tray4
*UIConstraints: *PaperSources PC402 *OHPOpTray Tray3
*UIConstraints: *PaperSources PC402 *OHPOpTray Tray4
*UIConstraints: *Finisher None *OutputBin Tray1
*UIConstraints: *Finisher None *OutputBin Tray3
*UIConstraints: *Finisher None *OutputBin ElevateTray
*UIConstraints: *Finisher None *Staple 1Staple(Left)
*UIConstraints: *Finisher None *Staple 1Staple(Right)
*UIConstraints: *Finisher None *Staple 2Staples
*UIConstraints: *Finisher None *Punch 2holes
*UIConstraints: *Finisher None *Punch 3holes
*UIConstraints: *Finisher None *Punch 4holes
*UIConstraints: *Finisher None *Fold Stitch
*UIConstraints: *Finisher None *KOPunchUnit 2HolesType
*UIConstraints: *Finisher None *KOPunchUnit 4HolesType
*UIConstraints: *Finisher None *KOPunchUnit 2-3HolesType
*UIConstraints: *Finisher FS507 *OutputBin Tray3
*UIConstraints: *Finisher FS507 *Fold Stitch
*UIConstraints: *Finisher JS601 *Fold Stitch
*UIConstraints: *Finisher FS603 *OutputBin Tray1
*UIConstraints: *Finisher FS603 *OutputBin Tray3
*UIConstraints: *Finisher FS603 *OutputBin ElevateTray
*UIConstraints: *KOPunchUnit 2HolesType *Punch 3holes
*UIConstraints: *KOPunchUnit 2HolesType *Punch 4holes
*UIConstraints: *KOPunchUnit 2HolesType *Finisher None
*UIConstraints: *KOPunchUnit 4HolesType *Punch 2holes
*UIConstraints: *KOPunchUnit 4HolesType *Punch 3holes
*UIConstraints: *KOPunchUnit 4HolesType *Finisher None
*UIConstraints: *KOPunchUnit 2-3HolesType *Punch 4holes
*UIConstraints: *KOPunchUnit 2-3HolesType *Finisher None
*UIConstraints: *Finisher None *KOPunchUnit 2-3HolesType
*%
*% === Font Information ============
*%
*DefaultFont: Courier
*Font AlbertusMT-Italic: Standard "(001.000)" Standard ROM
*Font AlbertusMT-Light: Standard "(001.000)" Standard ROM
*Font AlbertusMT: Standard "(001.000)" Standard ROM
*Font AntiqueOlive-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 Arial-BoldItalicMT: Standard "(501.009)" ExtendedRoman ROM
*Font Arial-BoldMT: Standard "(501.009)" ExtendedRoman ROM
*Font Arial-ItalicMT: Standard "(501.012)" ExtendedRoman ROM
*Font ArialMT: Standard "(501.009)" ExtendedRoman ROM
*Font AvantGarde-Book: Standard "(501.009)" ExtendedRoman ROM
*Font AvantGarde-BookOblique: Standard "(501.009)" ExtendedRoman ROM
*Font AvantGarde-Demi: Standard "(501.010)" ExtendedRoman ROM
*Font AvantGarde-DemiOblique: Standard "(501.010)" ExtendedRoman ROM
*Font Bodoni-Bold: Standard "(501.006)" ExtendedRoman ROM
*Font Bodoni-BoldItalic: Standard "(501.007)" ExtendedRoman ROM
*Font Bodoni-Italic: Standard "(501.007)" ExtendedRoman ROM
*Font Bodoni-Poster: Standard "(501.009)" ExtendedRoman ROM
*Font Bodoni-PosterCompressed: Standard "(501.007)" ExtendedRoman ROM
*Font Bodoni: Standard "(501.008)" ExtendedRoman ROM
*Font 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 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-Bold: Standard "(501.007)" ExtendedRoman ROM
*Font GillSans-BoldCondensed: Standard "(501.006)" ExtendedRoman ROM
*Font GillSans-BoldItalic: Standard "(501.008)" ExtendedRoman ROM
*Font GillSans-Condensed: Standard "(501.007)" ExtendedRoman ROM
*Font GillSans-ExtraBold: Standard "(501.008)" ExtendedRoman ROM
*Font GillSans-Italic: Standard "(501.008)" ExtendedRoman ROM
*Font GillSans-Light: Standard "(501.009)" ExtendedRoman ROM
*Font GillSans-LightItalic: Standard "(501.009)" ExtendedRoman ROM
*Font GillSans: Standard "(501.009)" ExtendedRoman ROM
*Font Goudy-Bold: Standard "(001.002)" Standard ROM
*Font Goudy-BoldItalic: Standard "(001.002)" Standard ROM
*Font Goudy-ExtraBold: Standard "(001.001)" Standard ROM
*Font Goudy-Italic: Standard "(001.002)" Standard ROM
*Font Goudy: Standard "(001.003)" Standard ROM
*Font Helvetica-Bold: Standard "(501.010)" ExtendedRoman ROM
*Font Helvetica-BoldOblique: Standard "(501.010)" ExtendedRoman ROM
*Font Helvetica-Condensed-Bold: Standard "(501.009)" ExtendedRoman ROM
*Font Helvetica-Condensed-BoldObl: Standard "(501.009)" ExtendedRoman ROM
*Font Helvetica-Condensed-Oblique: Standard "(501.010)" ExtendedRoman ROM
*Font Helvetica-Condensed: Standard "(501.010)" ExtendedRoman ROM
*Font Helvetica-Narrow-Bold: Standard "(501.010)" ExtendedRoman ROM
*Font Helvetica-Narrow-BoldOblique: Standard "(501.010)" ExtendedRoman ROM
*Font Helvetica-Narrow-Oblique: Standard "(501.008)" ExtendedRoman ROM
*Font Helvetica-Narrow: Standard "(501.008)" ExtendedRoman ROM
*Font Helvetica-Oblique: Standard "(501.008)" ExtendedRoman ROM
*Font Helvetica: Standard "(501.008)" ExtendedRoman ROM
*Font 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-Bold: Standard "(501.008)" ExtendedRoman ROM
*Font JoannaMT-BoldItalic: Standard "(501.008)" ExtendedRoman ROM
*Font JoannaMT-Italic: Standard "(501.008)" ExtendedRoman ROM
*Font JoannaMT: Standard "(501.009)" ExtendedRoman ROM
*Font LetterGothic-Bold: Standard "(501.010)" ExtendedRoman ROM
*Font LetterGothic-BoldSlanted: Standard "(501.010)" ExtendedRoman ROM
*Font LetterGothic-Slanted: Standard "(501.010)" ExtendedRoman ROM
*Font LetterGothic: Standard "(501.009)" ExtendedRoman ROM
*Font 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 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-Bold: Standard "(501.008)" ExtendedRoman ROM
*Font Univers-BoldExt: Standard "(501.010)" ExtendedRoman ROM
*Font Univers-BoldExtObl: Standard "(501.010)" ExtendedRoman ROM
*Font Univers-BoldOblique: Standard "(501.008)" ExtendedRoman ROM
*Font Univers-Condensed: Standard "(501.011)" ExtendedRoman ROM
*Font Univers-CondensedBold: Standard "(501.009)" ExtendedRoman ROM
*Font Univers-CondensedBoldOblique: Standard "(501.009)" ExtendedRoman ROM
*Font Univers-CondensedOblique: Standard "(501.011)" ExtendedRoman ROM
*Font Univers-Extended: Standard "(501.009)" ExtendedRoman ROM
*Font Univers-ExtendedObl: Standard "(501.009)" ExtendedRoman ROM
*Font Univers-Light: Standard "(501.009)" ExtendedRoman ROM
*Font Univers-LightOblique: Standard "(501.009)" ExtendedRoman ROM
*Font Univers-Oblique: Standard "(501.009)" ExtendedRoman ROM
*Font Univers: Standard "(501.009)" ExtendedRoman ROM
*Font Wingdings-Regular: Special "(001.001)" Special ROM
*Font ZapfChancery-MediumItalic: Standard "(002.000)" ExtendedRoman ROM
*Font ZapfDingbats: Special "(001.005S)" Special ROM
*%
*% === Begin Interpreter Footer Common ===========
*%
*?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
*%
*% === Begin Emepror Footer Functions ============
*%
*%
*% === Begin Custom Footer Function =============
*%
*% === Change Log =============================
*% Version : 20005.0000 Phase2.5 Release
|