1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380
|
*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: "30000.0000"
*Manufacturer: "KONICA MINOLTA"
*ModelName: "KONICA MINOLTA 750/600 PS/P"
*ShortNickName: "KONICA MINOLTA 750/600 PS(P)"
*NickName: "KONICA MINOLTA 750/600 PS(P)"
*PCFileName: "KO750UX.ppd"
*Product: "(750/600)"
*PSVersion: "(3011.045) 1"
*% === Device Capabilities ============
*LanguageLevel: "3"
*ColorDevice: False
*DefaultColorSpace: Gray
*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: "75"
*%
*% === 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 LU401/LU-401: ""
*PaperSources LU402/LU-402: ""
*CloseUI: *PaperSources
*OpenUI *Finisher/Finisher: PickOne
*OrderDependency: 1 AnySetup *Finisher
*DefaultFinisher: None
*Finisher None/None: ""
*Finisher FS504/FS-504: ""
*Finisher FS505/FS-505: ""
*Finisher FS602/FS-602: ""
*Finisher SF601/SF-601(ShiftTray): ""
*CloseUI: *Finisher
*OpenUI *CoverSheetFeeder/Cover Sheet Feeder: PickOne
*OrderDependency: 1 AnySetup *CoverSheetFeeder
*DefaultCoverSheetFeeder: None
*CoverSheetFeeder None/None: ""
*CoverSheetFeeder PI501/PI-501: ""
*CloseUI: *CoverSheetFeeder
*OpenUI *ZfoldUnit/Punch Z-fold Unit: PickOne
*OrderDependency: 1 AnySetup *ZfoldUnit
*DefaultZfoldUnit: None
*ZfoldUnit None/None: ""
*ZfoldUnit ZU601(4H)/ZU-601(4 Holes): ""
*ZfoldUnit ZU602(2H)/ZU-602(2 Holes): ""
*ZfoldUnit ZU602(2-3H)/ZU-602(2/3 Holes): ""
*ZfoldUnit ZU602(2-4H)/ZU-602(2/4 Holes): ""
*ZfoldUnit PK502(2H)/PK-502(2 Holes): ""
*ZfoldUnit PK503(2H)/PK-503(2 Holes): ""
*ZfoldUnit PK504(4H)/PK-504(4 Holes): ""
*ZfoldUnit PK505(2-3H)/PK-505(2/3 Holes): ""
*ZfoldUnit PK505(2-4H)/PK-505(2/4 Holes): ""
*ZfoldUnit ZU601+PK504(4H)/ZU-601+PK-504(4 Holes): ""
*ZfoldUnit ZU602+PK502(2H)/ZU-602+PK-502(2 Holes): ""
*ZfoldUnit ZU602+PK503(2H)/ZU-602+PK-503(2 Holes): ""
*ZfoldUnit ZU602+PK505(2-3H)/ZU-602+PK-505(2/3 Holes): ""
*ZfoldUnit ZU602+PK505(2-4H)/ZU-602+PK-505(2/4 Holes): ""
*CloseUI: *ZfoldUnit
*OpenUI *PrinterHDD/Printer HDD: Boolean
*OrderDependency: 1 AnySetup *PrinterHDD
*DefaultPrinterHDD: None
*PrinterHDD None/None: ""
*PrinterHDD HD503/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_LaPlata/LCT: "<< /ManualFeed false /MediaPosition 4 /TraySwitch false >> setpagedevice"
*InputSlot ManualFeed/Manual Feed: "<< /ManualFeed true /TraySwitch false >> 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) >>
/KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*MediaType Recycled/Recycled: "<< /KMMediaType (Recycled) /KMMediaColor (None) /KMMediaWeight (Normal) /MediaTabType (None) >>
/KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*MediaType Fine/Fine: "<< /KMMediaType (Bond) /KMMediaColor (None) /KMMediaWeight (Normal) /MediaTabType (None) >>
/KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*MediaType Transparency/Transparency: "<< /KMMediaType (Transparency) /KMMediaColor (None) /KMMediaWeight (Normal) /MediaTabType (None) >>
/KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*MediaType Label/Label: "<< /KMMediaType (Labels) /KMMediaColor (None) /KMMediaWeight (Normal) /MediaTabType (None) >>
/KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*MediaType Trace/Trace: "<< /KMMediaType (Secondmaster) /KMMediaColor (None) /KMMediaWeight (Normal) /MediaTabType (None) >>
/KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*MediaType User1/User 1: "<< /KMMediaType (CustomType) /KMMediaColor (None) /KMMediaWeight (Normal) /MediaTabType (None) >>
/KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*MediaType User2/User 2: "<< /KMMediaType (CustomType2) /KMMediaColor (None) /KMMediaWeight (Normal) /MediaTabType (None) >>
/KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*MediaType User3/User 3: "<< /KMMediaType (CustomType3) /KMMediaColor (None) /KMMediaWeight (Normal) /MediaTabType (None) >>
/KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*MediaType TAB/TAB: "<< /KMMediaType (Tab) /KMMediaColor (None) /KMMediaWeight (Normal) /MediaTabType (None) >>
/KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*MediaType Letterhead/Letterhead: "<< /KMMediaType (Letterhead) /KMMediaColor (None) /KMMediaWeight (Normal) /MediaTabType (None) >>
/KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*MediaType Special/Special: "<< /KMMediaType (Special) /KMMediaColor (None) /KMMediaWeight (Normal) /MediaTabType (None) >>
/KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*MediaType Thin/Thin: "<< /KMMediaType (Plain) /KMMediaColor (None) /KMMediaWeight (Thin) /MediaTabType (None) >>
/KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*MediaType Thick/Thick: "<< /KMMediaType (Plain) /KMMediaColor (None) /KMMediaWeight (Thick) /MediaTabType (None) >>
/KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*MediaType Color/Color: "<< /KMMediaType (Plain) /KMMediaColor (Other) /KMMediaWeight (Normal) /MediaTabType (None) >>
/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 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 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 JapanesePostCard/Japanese Postcard: "<< /PageSize [284 419] /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
*PageSize LetterTab-F/8 1/2x11Tab: "<< /PageSize [647 792] /ImagingBBox null >> setpagedevice
<< /WideMode false /FullBleed true >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageSize A4Tab-F/A4Tab: "<< /PageSize [631 841] /ImagingBBox null >> setpagedevice
<< /WideMode false /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 *PrintPosition/Print Position: PickOne
*OrderDependency: 10 AnySetup *PrintPosition
*DefaultPrintPosition: None
*PrintPosition None/Off: ""
*PrintPosition Left/Left: "<< /PrintPosition 0 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*PrintPosition Middle/Center: "<< /PrintPosition 2 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*PrintPosition Right/Right: "<< /PrintPosition 1 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*CloseUI: *PrintPosition
*OpenUI *OutputBin/Output Tray: PickOne
*OrderDependency: 40 AnySetup *OutputBin
*DefaultOutputBin: Default
*OutputBin Default/Default: "<< /OutputType (Default) >> setpagedevice"
*OutputBin MainTray/Main Tray: "<< /OutputType (Bin1) >> setpagedevice"
*OutputBin SubTray/Sub Tray: "<< /OutputType (Bin2) >> setpagedevice"
*CloseUI: *OutputBin
*OpenUI *OutputFaceup/Output Order: PickOne
*OrderDependency: 41 AnySetup *OutputFaceup
*DefaultOutputFaceup: FaceDown
*OutputFaceup FaceDown/Face Down: "<< /KMFaceUp false >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*OutputFaceup FaceUp/Face Up: "<< /KMFaceUp true >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*CloseUI: *OutputFaceup
*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: "<< /Layout 1 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*Combination 2in1/2 in 1: "<< /Layout 2 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*Combination 2repeat/2 repeat: "<< /Layout 3 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*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 ZFold1/Z-Fold(A3,B4,11x17,8K): "<< /FoldType (ZFold) /FeedDirection (LEF) >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*Fold ZFold2/Z-Fold(8 1/2x14): "<< /FoldType (ZFold) /FeedDirection (SEF) >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*Fold Stitch/Center Staple and Fold: "<< /FoldType (CenterFoldIn) /StitchType true >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*Fold HalfFold/Half Fold: "<< /FoldType (CenterFoldIn) /StitchType false >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*Fold TriFold/Tri-Fold: "<< /FoldType (LetterFoldIn) /StitchType false >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*CloseUI: *Fold
*OpenUI *ImageShift/Image Shift: Boolean
*OrderDependency: 22 AnySetup *ImageShift
*DefaultImageShift: False
*ImageShift False/Off: "<< /KMImageShift 0 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*ImageShift True/On: "<< /KMImageShift 1 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*CloseUI: *ImageShift
*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: "<< /FrontCover 2 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*FrontCoverPage Blank/Blank: "<< /FrontCover 1 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*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_LaPlata/LCT: "<< /FrontCoverTray 4 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*FrontCoverTray ManualFeed/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: "<< /BackCover 2 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*BackCoverPage Blank/Blank: "<< /BackCover 1 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*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_LaPlata/LCT: "<< /BackCoverTray 4 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*BackCoverTray ManualFeed/Bypass Tray: "<< /BackCoverTray 40 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*CloseUI: *BackCoverTray
*OpenUI *PIFrontCover/PI Front Cover: PickOne
*OrderDependency: 34 AnySetup *PIFrontCover
*DefaultPIFrontCover: None
*PIFrontCover None/Off: "<< /PIFrontTray 0 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*PIFrontCover PITray1/PI Tray1: "<< /Collate true >> setpagedevice
<< /PIFrontTray 1 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PIFrontCover PITray2/PI Tray2: "<< /Collate true >> setpagedevice
<< /PIFrontTray 2 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*CloseUI: *PIFrontCover
*OpenUI *PIBackCover/PI Back Cover: PickOne
*OrderDependency: 34 AnySetup *PIBackCover
*DefaultPIBackCover: None
*PIBackCover None/Off: "<< /PIBackTray 0 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*PIBackCover PITray1/PI Tray1: "<< /Collate true >> setpagedevice
<< /PIBackTray 1 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PIBackCover PITray2/PI Tray2: "<< /Collate true >> setpagedevice
<< /PIBackTray 2 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*CloseUI: *PIBackCover
*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 Auto/Auto: "<< /OHPOpTray 41 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*OHPOpTray Tray1/Tray 1: "<< /OHPOpTray 0 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*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_LaPlata/LCT: "<< /OHPOpTray 4 >> /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: "<< /WaitMode 2 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*CloseUI: *WaitMode
*OpenUI *Resolution/Resolution: PickOne
*OrderDependency: 10 AnySetup *Resolution
*DefaultResolution: 600dpi
*Resolution 600dpi/600dpi: "<< /HWResolution [600 600] >> setpagedevice"
*CloseUI: *Resolution
*OpenUI *Smoothing/Smoothing: PickOne
*OrderDependency: 35 AnySetup *Smoothing
*DefaultSmoothing: None
*Smoothing None/Off: "<< /Smoothing 0 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*Smoothing Type1/Type 1: "<< /Smoothing 1 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*Smoothing Type2/Type 2: "<< /Smoothing 2 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*Smoothing Type3/Type 3: "<< /Smoothing 3 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*CloseUI: *Smoothing
*OpenUI *PrintDensity/Print Density: PickOne
*OrderDependency: 36 AnySetup *PrintDensity
*DefaultPrintDensity: Normal
*PrintDensity Normal/Normal: "<< /LowDensity 6 /TonerSave 0 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*PrintDensity TonerSave1/Toner Save: "<< /LowDensity 6 /TonerSave 1 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*PrintDensity TonerSave2/Draft Print: "<< /LowDensity 6 /TonerSave 2 >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*CloseUI: *PrintDensity
*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 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 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 JapanesePostCard/Japanese Postcard: "<< /PageSize [284 419] /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
*PageRegion LetterTab-F/8 1/2x11Tab: "<< /PageSize [647 792] /ImagingBBox null >> setpagedevice
<< /WideMode false /FullBleed true >> /KMOptions /ProcSet findresource /setKMoptions get exec"
*End
*PageRegion A4Tab-F/A4Tab: "<< /PageSize [631 841] /ImagingBBox null >> setpagedevice
<< /WideMode false /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 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 8K/8K: "765 1105"
*PaperDimension 16K/16K: "553 765"
*PaperDimension JapanesePostCard/Japanese Postcard: "284 419"
*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"
*PaperDimension LetterTab-F/8 1/2x11Tab: "647 792"
*PaperDimension A4Tab-F/A4Tab: "631 841"
*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 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 8K/8K: "12 12 753 1093"
*ImageableArea 16K/16K: "12 12 541 753"
*ImageableArea JapanesePostCard/Japanese Postcard: "12 12 272 407"
*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"
*ImageableArea LetterTab-F/8 1/2x11Tab: "0 0 647 792"
*ImageableArea A4Tab-F/A4Tab: "0 0 630 841"
*%
*% === Begin Constraints Section ============
*%
*UIConstraints: *Offset True *PageSize JapanesePostCard
*UIConstraints: *Offset True *OutputBin SubTray
*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 *Fold HalfFold
*UIConstraints: *Offset True *Fold TriFold
*UIConstraints: *Offset True *TransparencyInterleave Blank
*UIConstraints: *PrintPosition None *PageSize A3Extra
*UIConstraints: *PrintPosition None *PageSize A4Extra
*UIConstraints: *PrintPosition None *PageSize A5Extra
*UIConstraints: *PrintPosition None *PageSize B4Extra
*UIConstraints: *PrintPosition None *PageSize B5Extra
*UIConstraints: *PrintPosition None *PageSize TabloidExtra
*UIConstraints: *PrintPosition None *PageSize LetterExtra
*UIConstraints: *PrintPosition None *PageSize StatementExtra
*UIConstraints: *PrintPosition Left *PageSize A3
*UIConstraints: *PrintPosition Left *PageSize A4
*UIConstraints: *PrintPosition Left *PageSize A5
*UIConstraints: *PrintPosition Left *PageSize A6
*UIConstraints: *PrintPosition Left *PageSize B4
*UIConstraints: *PrintPosition Left *PageSize B5
*UIConstraints: *PrintPosition Left *PageSize B6
*UIConstraints: *PrintPosition Left *PageSize Tabloid
*UIConstraints: *PrintPosition Left *PageSize Legal
*UIConstraints: *PrintPosition Left *PageSize Letter
*UIConstraints: *PrintPosition Left *PageSize Statement
*UIConstraints: *PrintPosition Left *PageSize 8x13
*UIConstraints: *PrintPosition Left *PageSize 8.5x13
*UIConstraints: *PrintPosition Left *PageSize 8.25x13
*UIConstraints: *PrintPosition Left *PageSize 8.125x13.25
*UIConstraints: *PrintPosition Left *PageSize 8K
*UIConstraints: *PrintPosition Left *PageSize 16K
*UIConstraints: *PrintPosition Left *PageSize JapanesePostCard
*UIConstraints: *PrintPosition Left *PageSize LetterTab-F
*UIConstraints: *PrintPosition Left *PageSize A4Tab-F
*UIConstraints: *PrintPosition Middle *PageSize A3
*UIConstraints: *PrintPosition Middle *PageSize A4
*UIConstraints: *PrintPosition Middle *PageSize A5
*UIConstraints: *PrintPosition Middle *PageSize A6
*UIConstraints: *PrintPosition Middle *PageSize B4
*UIConstraints: *PrintPosition Middle *PageSize B5
*UIConstraints: *PrintPosition Middle *PageSize B6
*UIConstraints: *PrintPosition Middle *PageSize Tabloid
*UIConstraints: *PrintPosition Middle *PageSize Legal
*UIConstraints: *PrintPosition Middle *PageSize Letter
*UIConstraints: *PrintPosition Middle *PageSize Statement
*UIConstraints: *PrintPosition Middle *PageSize 8x13
*UIConstraints: *PrintPosition Middle *PageSize 8.5x13
*UIConstraints: *PrintPosition Middle *PageSize 8.25x13
*UIConstraints: *PrintPosition Middle *PageSize 8.125x13.25
*UIConstraints: *PrintPosition Middle *PageSize 8K
*UIConstraints: *PrintPosition Middle *PageSize 16K
*UIConstraints: *PrintPosition Middle *PageSize JapanesePostCard
*UIConstraints: *PrintPosition Middle *PageSize LetterTab-F
*UIConstraints: *PrintPosition Middle *PageSize A4Tab-F
*UIConstraints: *PrintPosition Right *PageSize A3
*UIConstraints: *PrintPosition Right *PageSize A4
*UIConstraints: *PrintPosition Right *PageSize A5
*UIConstraints: *PrintPosition Right *PageSize A6
*UIConstraints: *PrintPosition Right *PageSize B4
*UIConstraints: *PrintPosition Right *PageSize B5
*UIConstraints: *PrintPosition Right *PageSize B6
*UIConstraints: *PrintPosition Right *PageSize Tabloid
*UIConstraints: *PrintPosition Right *PageSize Legal
*UIConstraints: *PrintPosition Right *PageSize Letter
*UIConstraints: *PrintPosition Right *PageSize Statement
*UIConstraints: *PrintPosition Right *PageSize 8x13
*UIConstraints: *PrintPosition Right *PageSize 8.5x13
*UIConstraints: *PrintPosition Right *PageSize 8.25x13
*UIConstraints: *PrintPosition Right *PageSize 8.125x13.25
*UIConstraints: *PrintPosition Right *PageSize 8K
*UIConstraints: *PrintPosition Right *PageSize 16K
*UIConstraints: *PrintPosition Right *PageSize JapanesePostCard
*UIConstraints: *PrintPosition Right *PageSize LetterTab-F
*UIConstraints: *PrintPosition Right *PageSize A4Tab-F
*UIConstraints: *InputSlot Tray1 *MediaType Transparency
*UIConstraints: *InputSlot Tray1 *MediaType Label
*UIConstraints: *InputSlot Tray1 *MediaType Trace
*UIConstraints: *InputSlot Tray1 *MediaType TAB
*UIConstraints: *InputSlot Tray1 *PageSize A3
*UIConstraints: *InputSlot Tray1 *PageSize B4
*UIConstraints: *InputSlot Tray1 *PageSize Tabloid
*UIConstraints: *InputSlot Tray1 *PageSize Legal
*UIConstraints: *InputSlot Tray1 *PageSize 8x13
*UIConstraints: *InputSlot Tray1 *PageSize 8.5x13
*UIConstraints: *InputSlot Tray1 *PageSize 8.25x13
*UIConstraints: *InputSlot Tray1 *PageSize 8.125x13.25
*UIConstraints: *InputSlot Tray1 *PageSize 8K
*UIConstraints: *InputSlot Tray1 *PageSize A3Extra
*UIConstraints: *InputSlot Tray1 *PageSize A4Extra
*UIConstraints: *InputSlot Tray1 *PageSize A5Extra
*UIConstraints: *InputSlot Tray1 *PageSize B4Extra
*UIConstraints: *InputSlot Tray1 *PageSize B5Extra
*UIConstraints: *InputSlot Tray1 *PageSize TabloidExtra
*UIConstraints: *InputSlot Tray1 *PageSize LetterExtra
*UIConstraints: *InputSlot Tray1 *PageSize StatementExtra
*UIConstraints: *InputSlot Tray1 *PageSize LetterTab-F
*UIConstraints: *InputSlot Tray1 *PageSize A4Tab-F
*UIConstraints: *InputSlot Tray2 *MediaType Transparency
*UIConstraints: *InputSlot Tray2 *MediaType Label
*UIConstraints: *InputSlot Tray2 *MediaType Trace
*UIConstraints: *InputSlot Tray2 *MediaType TAB
*UIConstraints: *InputSlot Tray2 *PageSize A3
*UIConstraints: *InputSlot Tray2 *PageSize B4
*UIConstraints: *InputSlot Tray2 *PageSize Tabloid
*UIConstraints: *InputSlot Tray2 *PageSize Legal
*UIConstraints: *InputSlot Tray2 *PageSize 8x13
*UIConstraints: *InputSlot Tray2 *PageSize 8.5x13
*UIConstraints: *InputSlot Tray2 *PageSize 8.25x13
*UIConstraints: *InputSlot Tray2 *PageSize 8.125x13.25
*UIConstraints: *InputSlot Tray2 *PageSize 8K
*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 *PageSize LetterTab-F
*UIConstraints: *InputSlot Tray2 *PageSize A4Tab-F
*UIConstraints: *InputSlot Tray3 *MediaType Transparency
*UIConstraints: *InputSlot Tray3 *MediaType Label
*UIConstraints: *InputSlot Tray3 *MediaType Trace
*UIConstraints: *InputSlot Tray4 *MediaType Transparency
*UIConstraints: *InputSlot Tray4 *MediaType Label
*UIConstraints: *InputSlot Tray4 *MediaType Trace
*UIConstraints: *InputSlot LCT_LaPlata *MediaType Transparency
*UIConstraints: *InputSlot LCT_LaPlata *MediaType Label
*UIConstraints: *InputSlot LCT_LaPlata *MediaType Trace
*UIConstraints: *InputSlot LCT_LaPlata *PageSize A6
*UIConstraints: *InputSlot LCT_LaPlata *PageSize JapanesePostCard
*UIConstraints: *InputSlot LCT_LaPlata *PaperSources None
*UIConstraints: *MediaType Plain *PageSize LetterTab-F
*UIConstraints: *MediaType Plain *PageSize A4Tab-F
*UIConstraints: *MediaType Plain *TransparencyInterleave Blank
*UIConstraints: *MediaType Recycled *PageSize LetterTab-F
*UIConstraints: *MediaType Recycled *PageSize A4Tab-F
*UIConstraints: *MediaType Recycled *TransparencyInterleave Blank
*UIConstraints: *MediaType Fine *PageSize LetterTab-F
*UIConstraints: *MediaType Fine *PageSize A4Tab-F
*UIConstraints: *MediaType Fine *TransparencyInterleave Blank
*UIConstraints: *MediaType Transparency *InputSlot Tray1
*UIConstraints: *MediaType Transparency *InputSlot Tray2
*UIConstraints: *MediaType Transparency *InputSlot Tray3
*UIConstraints: *MediaType Transparency *InputSlot Tray4
*UIConstraints: *MediaType Transparency *InputSlot LCT_LaPlata
*UIConstraints: *MediaType Transparency *PageSize LetterTab-F
*UIConstraints: *MediaType Transparency *PageSize A4Tab-F
*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 ZFold1
*UIConstraints: *MediaType Transparency *Fold ZFold2
*UIConstraints: *MediaType Transparency *Fold Stitch
*UIConstraints: *MediaType Transparency *Fold HalfFold
*UIConstraints: *MediaType Transparency *Fold TriFold
*UIConstraints: *MediaType Transparency *PIFrontCover PITray1
*UIConstraints: *MediaType Transparency *PIFrontCover PITray2
*UIConstraints: *MediaType Transparency *PIBackCover PITray1
*UIConstraints: *MediaType Transparency *PIBackCover PITray2
*UIConstraints: *MediaType Label *InputSlot Tray1
*UIConstraints: *MediaType Label *InputSlot Tray2
*UIConstraints: *MediaType Label *InputSlot Tray3
*UIConstraints: *MediaType Label *InputSlot Tray4
*UIConstraints: *MediaType Label *InputSlot LCT_LaPlata
*UIConstraints: *MediaType Label *PageSize LetterTab-F
*UIConstraints: *MediaType Label *PageSize A4Tab-F
*UIConstraints: *MediaType Label *KMDuplex True
*UIConstraints: *MediaType Label *Combination Booklet
*UIConstraints: *MediaType Label *Staple 1Staple(Left)
*UIConstraints: *MediaType Label *Staple 1Staple(Right)
*UIConstraints: *MediaType Label *Staple 2Staples
*UIConstraints: *MediaType Label *Punch 2holes
*UIConstraints: *MediaType Label *Punch 3holes
*UIConstraints: *MediaType Label *Punch 4holes
*UIConstraints: *MediaType Label *Fold ZFold1
*UIConstraints: *MediaType Label *Fold ZFold2
*UIConstraints: *MediaType Label *Fold Stitch
*UIConstraints: *MediaType Label *Fold HalfFold
*UIConstraints: *MediaType Label *Fold TriFold
*UIConstraints: *MediaType Label *PIFrontCover PITray1
*UIConstraints: *MediaType Label *PIFrontCover PITray2
*UIConstraints: *MediaType Label *PIBackCover PITray1
*UIConstraints: *MediaType Label *PIBackCover PITray2
*UIConstraints: *MediaType Label *TransparencyInterleave Blank
*UIConstraints: *MediaType Trace *InputSlot Tray1
*UIConstraints: *MediaType Trace *InputSlot Tray2
*UIConstraints: *MediaType Trace *InputSlot Tray3
*UIConstraints: *MediaType Trace *InputSlot Tray4
*UIConstraints: *MediaType Trace *InputSlot LCT_LaPlata
*UIConstraints: *MediaType Trace *PageSize LetterTab-F
*UIConstraints: *MediaType Trace *PageSize A4Tab-F
*UIConstraints: *MediaType Trace *KMDuplex True
*UIConstraints: *MediaType Trace *Combination Booklet
*UIConstraints: *MediaType Trace *Staple 1Staple(Left)
*UIConstraints: *MediaType Trace *Staple 1Staple(Right)
*UIConstraints: *MediaType Trace *Staple 2Staples
*UIConstraints: *MediaType Trace *Punch 2holes
*UIConstraints: *MediaType Trace *Punch 3holes
*UIConstraints: *MediaType Trace *Punch 4holes
*UIConstraints: *MediaType Trace *Fold ZFold1
*UIConstraints: *MediaType Trace *Fold ZFold2
*UIConstraints: *MediaType Trace *Fold Stitch
*UIConstraints: *MediaType Trace *Fold HalfFold
*UIConstraints: *MediaType Trace *Fold TriFold
*UIConstraints: *MediaType Trace *PIFrontCover PITray1
*UIConstraints: *MediaType Trace *PIFrontCover PITray2
*UIConstraints: *MediaType Trace *PIBackCover PITray1
*UIConstraints: *MediaType Trace *PIBackCover PITray2
*UIConstraints: *MediaType Trace *TransparencyInterleave Blank
*UIConstraints: *MediaType User1 *PageSize LetterTab-F
*UIConstraints: *MediaType User1 *PageSize A4Tab-F
*UIConstraints: *MediaType User1 *PIFrontCover PITray1
*UIConstraints: *MediaType User1 *PIFrontCover PITray2
*UIConstraints: *MediaType User1 *PIBackCover PITray1
*UIConstraints: *MediaType User1 *PIBackCover PITray2
*UIConstraints: *MediaType User1 *TransparencyInterleave Blank
*UIConstraints: *MediaType User2 *PageSize LetterTab-F
*UIConstraints: *MediaType User2 *PageSize A4Tab-F
*UIConstraints: *MediaType User2 *PIFrontCover PITray1
*UIConstraints: *MediaType User2 *PIFrontCover PITray2
*UIConstraints: *MediaType User2 *PIBackCover PITray1
*UIConstraints: *MediaType User2 *PIBackCover PITray2
*UIConstraints: *MediaType User2 *TransparencyInterleave Blank
*UIConstraints: *MediaType User3 *PageSize LetterTab-F
*UIConstraints: *MediaType User3 *PageSize A4Tab-F
*UIConstraints: *MediaType User3 *PIFrontCover PITray1
*UIConstraints: *MediaType User3 *PIFrontCover PITray2
*UIConstraints: *MediaType User3 *PIBackCover PITray1
*UIConstraints: *MediaType User3 *PIBackCover PITray2
*UIConstraints: *MediaType User3 *TransparencyInterleave Blank
*UIConstraints: *MediaType TAB *InputSlot Tray1
*UIConstraints: *MediaType TAB *InputSlot Tray2
*UIConstraints: *MediaType TAB *PageSize A3
*UIConstraints: *MediaType TAB *PageSize A6
*UIConstraints: *MediaType TAB *PageSize B4
*UIConstraints: *MediaType TAB *PageSize B5
*UIConstraints: *MediaType TAB *PageSize B6
*UIConstraints: *MediaType TAB *PageSize Tabloid
*UIConstraints: *MediaType TAB *PageSize Legal
*UIConstraints: *MediaType TAB *PageSize 8x13
*UIConstraints: *MediaType TAB *PageSize 8.5x13
*UIConstraints: *MediaType TAB *PageSize 8.25x13
*UIConstraints: *MediaType TAB *PageSize 8.125x13.25
*UIConstraints: *MediaType TAB *PageSize 8K
*UIConstraints: *MediaType TAB *PageSize 16K
*UIConstraints: *MediaType TAB *PageSize JapanesePostCard
*UIConstraints: *MediaType TAB *PageSize A3Extra
*UIConstraints: *MediaType TAB *PageSize A4Extra
*UIConstraints: *MediaType TAB *PageSize A5Extra
*UIConstraints: *MediaType TAB *PageSize B4Extra
*UIConstraints: *MediaType TAB *PageSize B5Extra
*UIConstraints: *MediaType TAB *PageSize TabloidExtra
*UIConstraints: *MediaType TAB *PageSize LetterExtra
*UIConstraints: *MediaType TAB *PageSize StatementExtra
*UIConstraints: *MediaType TAB *KMDuplex True
*UIConstraints: *MediaType TAB *Combination Booklet
*UIConstraints: *MediaType TAB *Staple 1Staple(Left)
*UIConstraints: *MediaType TAB *Staple 1Staple(Right)
*UIConstraints: *MediaType TAB *Staple 2Staples
*UIConstraints: *MediaType TAB *Punch 2holes
*UIConstraints: *MediaType TAB *Punch 3holes
*UIConstraints: *MediaType TAB *Punch 4holes
*UIConstraints: *MediaType TAB *Fold ZFold1
*UIConstraints: *MediaType TAB *Fold ZFold2
*UIConstraints: *MediaType TAB *Fold Stitch
*UIConstraints: *MediaType TAB *Fold HalfFold
*UIConstraints: *MediaType TAB *Fold TriFold
*UIConstraints: *MediaType TAB *PIFrontCover PITray1
*UIConstraints: *MediaType TAB *PIFrontCover PITray2
*UIConstraints: *MediaType TAB *PIBackCover PITray1
*UIConstraints: *MediaType TAB *PIBackCover PITray2
*UIConstraints: *MediaType TAB *TransparencyInterleave Blank
*UIConstraints: *MediaType Letterhead *PageSize LetterTab-F
*UIConstraints: *MediaType Letterhead *PageSize A4Tab-F
*UIConstraints: *MediaType Letterhead *TransparencyInterleave Blank
*UIConstraints: *MediaType Special *PageSize LetterTab-F
*UIConstraints: *MediaType Special *PageSize A4Tab-F
*UIConstraints: *MediaType Special *PIFrontCover PITray1
*UIConstraints: *MediaType Special *PIFrontCover PITray2
*UIConstraints: *MediaType Special *PIBackCover PITray1
*UIConstraints: *MediaType Special *PIBackCover PITray2
*UIConstraints: *MediaType Special *TransparencyInterleave Blank
*UIConstraints: *MediaType Thin *PageSize LetterTab-F
*UIConstraints: *MediaType Thin *PageSize A4Tab-F
*UIConstraints: *MediaType Thin *PIFrontCover PITray1
*UIConstraints: *MediaType Thin *PIFrontCover PITray2
*UIConstraints: *MediaType Thin *PIBackCover PITray1
*UIConstraints: *MediaType Thin *PIBackCover PITray2
*UIConstraints: *MediaType Thin *TransparencyInterleave Blank
*UIConstraints: *MediaType Thick *PageSize LetterTab-F
*UIConstraints: *MediaType Thick *PageSize A4Tab-F
*UIConstraints: *MediaType Thick *Punch 2holes
*UIConstraints: *MediaType Thick *Punch 3holes
*UIConstraints: *MediaType Thick *Punch 4holes
*UIConstraints: *MediaType Thick *Fold ZFold1
*UIConstraints: *MediaType Thick *Fold ZFold2
*UIConstraints: *MediaType Thick *Fold TriFold
*UIConstraints: *MediaType Thick *PIFrontCover PITray1
*UIConstraints: *MediaType Thick *PIFrontCover PITray2
*UIConstraints: *MediaType Thick *PIBackCover PITray1
*UIConstraints: *MediaType Thick *PIBackCover PITray2
*UIConstraints: *MediaType Thick *TransparencyInterleave Blank
*UIConstraints: *MediaType Color *PageSize LetterTab-F
*UIConstraints: *MediaType Color *PageSize A4Tab-F
*UIConstraints: *MediaType Color *PIFrontCover PITray1
*UIConstraints: *MediaType Color *PIFrontCover PITray2
*UIConstraints: *MediaType Color *PIBackCover PITray1
*UIConstraints: *MediaType Color *PIBackCover PITray2
*UIConstraints: *MediaType Color *TransparencyInterleave Blank
*UIConstraints: *PageSize A3 *PrintPosition Left
*UIConstraints: *PageSize A3 *PrintPosition Middle
*UIConstraints: *PageSize A3 *PrintPosition Right
*UIConstraints: *PageSize A3 *InputSlot Tray1
*UIConstraints: *PageSize A3 *InputSlot Tray2
*UIConstraints: *PageSize A3 *MediaType TAB
*UIConstraints: *PageSize A3 *Combination 2in1
*UIConstraints: *PageSize A3 *Combination 2repeat
*UIConstraints: *PageSize A3 *Fold TriFold
*UIConstraints: *PageSize A3 *OHPOpTray Tray1
*UIConstraints: *PageSize A3 *OHPOpTray Tray2
*UIConstraints: *PageSize A4 *PrintPosition Left
*UIConstraints: *PageSize A4 *PrintPosition Middle
*UIConstraints: *PageSize A4 *PrintPosition Right
*UIConstraints: *PageSize A5 *PrintPosition Left
*UIConstraints: *PageSize A5 *PrintPosition Middle
*UIConstraints: *PageSize A5 *PrintPosition Right
*UIConstraints: *PageSize A5 *OHPOpTray LCT_LaPlata
*UIConstraints: *PageSize A6 *PrintPosition Left
*UIConstraints: *PageSize A6 *PrintPosition Middle
*UIConstraints: *PageSize A6 *PrintPosition Right
*UIConstraints: *PageSize A6 *InputSlot LCT_LaPlata
*UIConstraints: *PageSize A6 *MediaType TAB
*UIConstraints: *PageSize A6 *Punch 3holes
*UIConstraints: *PageSize A6 *Punch 4holes
*UIConstraints: *PageSize A6 *Fold ZFold1
*UIConstraints: *PageSize A6 *Fold ZFold2
*UIConstraints: *PageSize A6 *Fold Stitch
*UIConstraints: *PageSize A6 *Fold HalfFold
*UIConstraints: *PageSize A6 *Fold TriFold
*UIConstraints: *PageSize A6 *OHPOpTray Tray1
*UIConstraints: *PageSize A6 *OHPOpTray Tray2
*UIConstraints: *PageSize A6 *OHPOpTray Tray3
*UIConstraints: *PageSize A6 *OHPOpTray Tray4
*UIConstraints: *PageSize A6 *OHPOpTray LCT_LaPlata
*UIConstraints: *PageSize B4 *PrintPosition Left
*UIConstraints: *PageSize B4 *PrintPosition Middle
*UIConstraints: *PageSize B4 *PrintPosition Right
*UIConstraints: *PageSize B4 *InputSlot Tray1
*UIConstraints: *PageSize B4 *InputSlot Tray2
*UIConstraints: *PageSize B4 *MediaType TAB
*UIConstraints: *PageSize B4 *Combination 2in1
*UIConstraints: *PageSize B4 *Combination 2repeat
*UIConstraints: *PageSize B4 *Fold TriFold
*UIConstraints: *PageSize B4 *OHPOpTray Tray1
*UIConstraints: *PageSize B4 *OHPOpTray Tray2
*UIConstraints: *PageSize B5 *PrintPosition Left
*UIConstraints: *PageSize B5 *PrintPosition Middle
*UIConstraints: *PageSize B5 *PrintPosition Right
*UIConstraints: *PageSize B5 *MediaType TAB
*UIConstraints: *PageSize B5 *Fold TriFold
*UIConstraints: *PageSize B6 *PrintPosition Left
*UIConstraints: *PageSize B6 *PrintPosition Middle
*UIConstraints: *PageSize B6 *PrintPosition Right
*UIConstraints: *PageSize B6 *MediaType TAB
*UIConstraints: *PageSize B6 *Fold Stitch
*UIConstraints: *PageSize B6 *Fold HalfFold
*UIConstraints: *PageSize B6 *Fold TriFold
*UIConstraints: *PageSize B6 *OHPOpTray Tray1
*UIConstraints: *PageSize B6 *OHPOpTray Tray2
*UIConstraints: *PageSize B6 *OHPOpTray Tray3
*UIConstraints: *PageSize B6 *OHPOpTray Tray4
*UIConstraints: *PageSize B6 *OHPOpTray LCT_LaPlata
*UIConstraints: *PageSize Tabloid *PrintPosition Left
*UIConstraints: *PageSize Tabloid *PrintPosition Middle
*UIConstraints: *PageSize Tabloid *PrintPosition Right
*UIConstraints: *PageSize Tabloid *InputSlot Tray1
*UIConstraints: *PageSize Tabloid *InputSlot Tray2
*UIConstraints: *PageSize Tabloid *MediaType TAB
*UIConstraints: *PageSize Tabloid *Combination 2in1
*UIConstraints: *PageSize Tabloid *Combination 2repeat
*UIConstraints: *PageSize Tabloid *Fold TriFold
*UIConstraints: *PageSize Tabloid *OHPOpTray Tray1
*UIConstraints: *PageSize Tabloid *OHPOpTray Tray2
*UIConstraints: *PageSize Legal *PrintPosition Left
*UIConstraints: *PageSize Legal *PrintPosition Middle
*UIConstraints: *PageSize Legal *PrintPosition Right
*UIConstraints: *PageSize Legal *InputSlot Tray1
*UIConstraints: *PageSize Legal *InputSlot Tray2
*UIConstraints: *PageSize Legal *MediaType TAB
*UIConstraints: *PageSize Legal *Combination 2in1
*UIConstraints: *PageSize Legal *Combination 2repeat
*UIConstraints: *PageSize Legal *Punch 3holes
*UIConstraints: *PageSize Legal *Punch 4holes
*UIConstraints: *PageSize Legal *Fold TriFold
*UIConstraints: *PageSize Legal *OHPOpTray Tray1
*UIConstraints: *PageSize Legal *OHPOpTray Tray2
*UIConstraints: *PageSize Letter *PrintPosition Left
*UIConstraints: *PageSize Letter *PrintPosition Middle
*UIConstraints: *PageSize Letter *PrintPosition Right
*UIConstraints: *PageSize Statement *PrintPosition Left
*UIConstraints: *PageSize Statement *PrintPosition Middle
*UIConstraints: *PageSize Statement *PrintPosition Right
*UIConstraints: *PageSize Statement *OHPOpTray LCT_LaPlata
*UIConstraints: *PageSize 8x13 *PrintPosition Left
*UIConstraints: *PageSize 8x13 *PrintPosition Middle
*UIConstraints: *PageSize 8x13 *PrintPosition Right
*UIConstraints: *PageSize 8x13 *InputSlot Tray1
*UIConstraints: *PageSize 8x13 *InputSlot Tray2
*UIConstraints: *PageSize 8x13 *MediaType TAB
*UIConstraints: *PageSize 8x13 *Combination 2in1
*UIConstraints: *PageSize 8x13 *Combination 2repeat
*UIConstraints: *PageSize 8x13 *Punch 3holes
*UIConstraints: *PageSize 8x13 *Punch 4holes
*UIConstraints: *PageSize 8x13 *Fold ZFold1
*UIConstraints: *PageSize 8x13 *Fold ZFold2
*UIConstraints: *PageSize 8x13 *Fold Stitch
*UIConstraints: *PageSize 8x13 *Fold HalfFold
*UIConstraints: *PageSize 8x13 *Fold TriFold
*UIConstraints: *PageSize 8x13 *OHPOpTray Tray1
*UIConstraints: *PageSize 8x13 *OHPOpTray Tray2
*UIConstraints: *PageSize 8.5x13 *PrintPosition Left
*UIConstraints: *PageSize 8.5x13 *PrintPosition Middle
*UIConstraints: *PageSize 8.5x13 *PrintPosition Right
*UIConstraints: *PageSize 8.5x13 *InputSlot Tray1
*UIConstraints: *PageSize 8.5x13 *InputSlot Tray2
*UIConstraints: *PageSize 8.5x13 *MediaType TAB
*UIConstraints: *PageSize 8.5x13 *Combination 2in1
*UIConstraints: *PageSize 8.5x13 *Combination 2repeat
*UIConstraints: *PageSize 8.5x13 *Punch 3holes
*UIConstraints: *PageSize 8.5x13 *Punch 4holes
*UIConstraints: *PageSize 8.5x13 *Fold ZFold1
*UIConstraints: *PageSize 8.5x13 *Fold ZFold2
*UIConstraints: *PageSize 8.5x13 *Fold HalfFold
*UIConstraints: *PageSize 8.5x13 *Fold TriFold
*UIConstraints: *PageSize 8.5x13 *OHPOpTray Tray1
*UIConstraints: *PageSize 8.5x13 *OHPOpTray Tray2
*UIConstraints: *PageSize 8.25x13 *PrintPosition Left
*UIConstraints: *PageSize 8.25x13 *PrintPosition Middle
*UIConstraints: *PageSize 8.25x13 *PrintPosition Right
*UIConstraints: *PageSize 8.25x13 *InputSlot Tray1
*UIConstraints: *PageSize 8.25x13 *InputSlot Tray2
*UIConstraints: *PageSize 8.25x13 *MediaType TAB
*UIConstraints: *PageSize 8.25x13 *Combination 2in1
*UIConstraints: *PageSize 8.25x13 *Combination 2repeat
*UIConstraints: *PageSize 8.25x13 *Punch 3holes
*UIConstraints: *PageSize 8.25x13 *Punch 4holes
*UIConstraints: *PageSize 8.25x13 *Fold ZFold1
*UIConstraints: *PageSize 8.25x13 *Fold ZFold2
*UIConstraints: *PageSize 8.25x13 *Fold Stitch
*UIConstraints: *PageSize 8.25x13 *Fold HalfFold
*UIConstraints: *PageSize 8.25x13 *Fold TriFold
*UIConstraints: *PageSize 8.25x13 *OHPOpTray Tray1
*UIConstraints: *PageSize 8.25x13 *OHPOpTray Tray2
*UIConstraints: *PageSize 8.125x13.25 *PrintPosition Left
*UIConstraints: *PageSize 8.125x13.25 *PrintPosition Middle
*UIConstraints: *PageSize 8.125x13.25 *PrintPosition Right
*UIConstraints: *PageSize 8.125x13.25 *InputSlot Tray1
*UIConstraints: *PageSize 8.125x13.25 *InputSlot Tray2
*UIConstraints: *PageSize 8.125x13.25 *MediaType TAB
*UIConstraints: *PageSize 8.125x13.25 *Combination 2in1
*UIConstraints: *PageSize 8.125x13.25 *Combination 2repeat
*UIConstraints: *PageSize 8.125x13.25 *Punch 3holes
*UIConstraints: *PageSize 8.125x13.25 *Punch 4holes
*UIConstraints: *PageSize 8.125x13.25 *Fold ZFold1
*UIConstraints: *PageSize 8.125x13.25 *Fold ZFold2
*UIConstraints: *PageSize 8.125x13.25 *Fold Stitch
*UIConstraints: *PageSize 8.125x13.25 *Fold HalfFold
*UIConstraints: *PageSize 8.125x13.25 *Fold TriFold
*UIConstraints: *PageSize 8.125x13.25 *OHPOpTray Tray1
*UIConstraints: *PageSize 8.125x13.25 *OHPOpTray Tray2
*UIConstraints: *PageSize 8K *PrintPosition Left
*UIConstraints: *PageSize 8K *PrintPosition Middle
*UIConstraints: *PageSize 8K *PrintPosition Right
*UIConstraints: *PageSize 8K *InputSlot Tray1
*UIConstraints: *PageSize 8K *InputSlot Tray2
*UIConstraints: *PageSize 8K *MediaType TAB
*UIConstraints: *PageSize 8K *Combination 2in1
*UIConstraints: *PageSize 8K *Combination 2repeat
*UIConstraints: *PageSize 8K *Fold TriFold
*UIConstraints: *PageSize 8K *OHPOpTray Tray1
*UIConstraints: *PageSize 8K *OHPOpTray Tray2
*UIConstraints: *PageSize 16K *PrintPosition Left
*UIConstraints: *PageSize 16K *PrintPosition Middle
*UIConstraints: *PageSize 16K *PrintPosition Right
*UIConstraints: *PageSize 16K *MediaType TAB
*UIConstraints: *PageSize JapanesePostCard *Offset True
*UIConstraints: *PageSize JapanesePostCard *PrintPosition Left
*UIConstraints: *PageSize JapanesePostCard *PrintPosition Middle
*UIConstraints: *PageSize JapanesePostCard *PrintPosition Right
*UIConstraints: *PageSize JapanesePostCard *InputSlot LCT_LaPlata
*UIConstraints: *PageSize JapanesePostCard *MediaType TAB
*UIConstraints: *PageSize JapanesePostCard *Combination Booklet
*UIConstraints: *PageSize JapanesePostCard *Combination 2in1
*UIConstraints: *PageSize JapanesePostCard *Combination 2repeat
*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 ZFold1
*UIConstraints: *PageSize JapanesePostCard *Fold ZFold2
*UIConstraints: *PageSize JapanesePostCard *Fold Stitch
*UIConstraints: *PageSize JapanesePostCard *Fold HalfFold
*UIConstraints: *PageSize JapanesePostCard *Fold TriFold
*UIConstraints: *PageSize JapanesePostCard *PIFrontCover PITray1
*UIConstraints: *PageSize JapanesePostCard *PIFrontCover PITray2
*UIConstraints: *PageSize JapanesePostCard *PIBackCover PITray1
*UIConstraints: *PageSize JapanesePostCard *PIBackCover PITray2
*UIConstraints: *PageSize JapanesePostCard *OHPOpTray LCT_LaPlata
*UIConstraints: *PageSize A3Extra *PrintPosition None
*UIConstraints: *PageSize A3Extra *InputSlot Tray1
*UIConstraints: *PageSize A3Extra *InputSlot Tray2
*UIConstraints: *PageSize A3Extra *MediaType TAB
*UIConstraints: *PageSize A3Extra *Combination 2in1
*UIConstraints: *PageSize A3Extra *Combination 2repeat
*UIConstraints: *PageSize A3Extra *Punch 2holes
*UIConstraints: *PageSize A3Extra *Punch 3holes
*UIConstraints: *PageSize A3Extra *Punch 4holes
*UIConstraints: *PageSize A3Extra *Fold ZFold1
*UIConstraints: *PageSize A3Extra *Fold ZFold2
*UIConstraints: *PageSize A3Extra *Fold TriFold
*UIConstraints: *PageSize A3Extra *OHPOpTray Tray1
*UIConstraints: *PageSize A3Extra *OHPOpTray Tray2
*UIConstraints: *PageSize A4Extra *PrintPosition None
*UIConstraints: *PageSize A4Extra *InputSlot Tray1
*UIConstraints: *PageSize A4Extra *InputSlot Tray2
*UIConstraints: *PageSize A4Extra *MediaType TAB
*UIConstraints: *PageSize A4Extra *Punch 2holes
*UIConstraints: *PageSize A4Extra *Punch 3holes
*UIConstraints: *PageSize A4Extra *Punch 4holes
*UIConstraints: *PageSize A4Extra *Fold ZFold1
*UIConstraints: *PageSize A4Extra *Fold ZFold2
*UIConstraints: *PageSize A4Extra *Fold TriFold
*UIConstraints: *PageSize A4Extra *OHPOpTray Tray1
*UIConstraints: *PageSize A4Extra *OHPOpTray Tray2
*UIConstraints: *PageSize A5Extra *PrintPosition None
*UIConstraints: *PageSize A5Extra *InputSlot Tray1
*UIConstraints: *PageSize A5Extra *InputSlot Tray2
*UIConstraints: *PageSize A5Extra *MediaType TAB
*UIConstraints: *PageSize A5Extra *Punch 2holes
*UIConstraints: *PageSize A5Extra *Punch 3holes
*UIConstraints: *PageSize A5Extra *Punch 4holes
*UIConstraints: *PageSize A5Extra *Fold ZFold1
*UIConstraints: *PageSize A5Extra *Fold ZFold2
*UIConstraints: *PageSize A5Extra *Fold TriFold
*UIConstraints: *PageSize A5Extra *OHPOpTray Tray1
*UIConstraints: *PageSize A5Extra *OHPOpTray Tray2
*UIConstraints: *PageSize A5Extra *OHPOpTray LCT_LaPlata
*UIConstraints: *PageSize B4Extra *PrintPosition None
*UIConstraints: *PageSize B4Extra *InputSlot Tray1
*UIConstraints: *PageSize B4Extra *InputSlot Tray2
*UIConstraints: *PageSize B4Extra *MediaType TAB
*UIConstraints: *PageSize B4Extra *Combination 2in1
*UIConstraints: *PageSize B4Extra *Combination 2repeat
*UIConstraints: *PageSize B4Extra *Punch 2holes
*UIConstraints: *PageSize B4Extra *Punch 3holes
*UIConstraints: *PageSize B4Extra *Punch 4holes
*UIConstraints: *PageSize B4Extra *Fold ZFold1
*UIConstraints: *PageSize B4Extra *Fold ZFold2
*UIConstraints: *PageSize B4Extra *Fold TriFold
*UIConstraints: *PageSize B4Extra *OHPOpTray Tray1
*UIConstraints: *PageSize B4Extra *OHPOpTray Tray2
*UIConstraints: *PageSize B5Extra *PrintPosition None
*UIConstraints: *PageSize B5Extra *InputSlot Tray1
*UIConstraints: *PageSize B5Extra *InputSlot Tray2
*UIConstraints: *PageSize B5Extra *MediaType TAB
*UIConstraints: *PageSize B5Extra *Punch 2holes
*UIConstraints: *PageSize B5Extra *Punch 3holes
*UIConstraints: *PageSize B5Extra *Punch 4holes
*UIConstraints: *PageSize B5Extra *Fold ZFold1
*UIConstraints: *PageSize B5Extra *Fold ZFold2
*UIConstraints: *PageSize B5Extra *Fold TriFold
*UIConstraints: *PageSize B5Extra *OHPOpTray Tray1
*UIConstraints: *PageSize B5Extra *OHPOpTray Tray2
*UIConstraints: *PageSize TabloidExtra *PrintPosition None
*UIConstraints: *PageSize TabloidExtra *InputSlot Tray1
*UIConstraints: *PageSize TabloidExtra *InputSlot Tray2
*UIConstraints: *PageSize TabloidExtra *MediaType TAB
*UIConstraints: *PageSize TabloidExtra *Combination 2in1
*UIConstraints: *PageSize TabloidExtra *Combination 2repeat
*UIConstraints: *PageSize TabloidExtra *Punch 2holes
*UIConstraints: *PageSize TabloidExtra *Punch 3holes
*UIConstraints: *PageSize TabloidExtra *Punch 4holes
*UIConstraints: *PageSize TabloidExtra *Fold ZFold1
*UIConstraints: *PageSize TabloidExtra *Fold ZFold2
*UIConstraints: *PageSize TabloidExtra *Fold TriFold
*UIConstraints: *PageSize TabloidExtra *OHPOpTray Tray1
*UIConstraints: *PageSize TabloidExtra *OHPOpTray Tray2
*UIConstraints: *PageSize LetterExtra *PrintPosition None
*UIConstraints: *PageSize LetterExtra *InputSlot Tray1
*UIConstraints: *PageSize LetterExtra *InputSlot Tray2
*UIConstraints: *PageSize LetterExtra *MediaType TAB
*UIConstraints: *PageSize LetterExtra *Punch 2holes
*UIConstraints: *PageSize LetterExtra *Punch 3holes
*UIConstraints: *PageSize LetterExtra *Punch 4holes
*UIConstraints: *PageSize LetterExtra *Fold ZFold1
*UIConstraints: *PageSize LetterExtra *Fold ZFold2
*UIConstraints: *PageSize LetterExtra *Fold TriFold
*UIConstraints: *PageSize LetterExtra *OHPOpTray Tray1
*UIConstraints: *PageSize LetterExtra *OHPOpTray Tray2
*UIConstraints: *PageSize StatementExtra *PrintPosition None
*UIConstraints: *PageSize StatementExtra *InputSlot Tray1
*UIConstraints: *PageSize StatementExtra *InputSlot Tray2
*UIConstraints: *PageSize StatementExtra *MediaType TAB
*UIConstraints: *PageSize StatementExtra *Punch 2holes
*UIConstraints: *PageSize StatementExtra *Punch 3holes
*UIConstraints: *PageSize StatementExtra *Punch 4holes
*UIConstraints: *PageSize StatementExtra *Fold ZFold1
*UIConstraints: *PageSize StatementExtra *Fold ZFold2
*UIConstraints: *PageSize StatementExtra *Fold TriFold
*UIConstraints: *PageSize StatementExtra *OHPOpTray Tray1
*UIConstraints: *PageSize StatementExtra *OHPOpTray Tray2
*UIConstraints: *PageSize StatementExtra *OHPOpTray LCT_LaPlata
*UIConstraints: *PageSize LetterTab-F *PrintPosition Left
*UIConstraints: *PageSize LetterTab-F *PrintPosition Middle
*UIConstraints: *PageSize LetterTab-F *PrintPosition Right
*UIConstraints: *PageSize LetterTab-F *InputSlot Tray1
*UIConstraints: *PageSize LetterTab-F *InputSlot Tray2
*UIConstraints: *PageSize LetterTab-F *MediaType Plain
*UIConstraints: *PageSize LetterTab-F *MediaType Recycled
*UIConstraints: *PageSize LetterTab-F *MediaType Fine
*UIConstraints: *PageSize LetterTab-F *MediaType Transparency
*UIConstraints: *PageSize LetterTab-F *MediaType Label
*UIConstraints: *PageSize LetterTab-F *MediaType Trace
*UIConstraints: *PageSize LetterTab-F *MediaType User1
*UIConstraints: *PageSize LetterTab-F *MediaType User2
*UIConstraints: *PageSize LetterTab-F *MediaType User3
*UIConstraints: *PageSize LetterTab-F *MediaType Letterhead
*UIConstraints: *PageSize LetterTab-F *MediaType Special
*UIConstraints: *PageSize LetterTab-F *MediaType Thin
*UIConstraints: *PageSize LetterTab-F *MediaType Thick
*UIConstraints: *PageSize LetterTab-F *MediaType Color
*UIConstraints: *PageSize LetterTab-F *Combination Booklet
*UIConstraints: *PageSize LetterTab-F *Punch 2holes
*UIConstraints: *PageSize LetterTab-F *Punch 3holes
*UIConstraints: *PageSize LetterTab-F *Punch 4holes
*UIConstraints: *PageSize LetterTab-F *Fold ZFold1
*UIConstraints: *PageSize LetterTab-F *Fold ZFold2
*UIConstraints: *PageSize LetterTab-F *Fold Stitch
*UIConstraints: *PageSize LetterTab-F *Fold HalfFold
*UIConstraints: *PageSize LetterTab-F *Fold TriFold
*UIConstraints: *PageSize LetterTab-F *TransparencyInterleave Blank
*UIConstraints: *PageSize LetterTab-F *OHPOpTray Tray1
*UIConstraints: *PageSize LetterTab-F *OHPOpTray Tray2
*UIConstraints: *PageSize A4Tab-F *PrintPosition Left
*UIConstraints: *PageSize A4Tab-F *PrintPosition Middle
*UIConstraints: *PageSize A4Tab-F *PrintPosition Right
*UIConstraints: *PageSize A4Tab-F *InputSlot Tray1
*UIConstraints: *PageSize A4Tab-F *InputSlot Tray2
*UIConstraints: *PageSize A4Tab-F *MediaType Plain
*UIConstraints: *PageSize A4Tab-F *MediaType Recycled
*UIConstraints: *PageSize A4Tab-F *MediaType Fine
*UIConstraints: *PageSize A4Tab-F *MediaType Transparency
*UIConstraints: *PageSize A4Tab-F *MediaType Label
*UIConstraints: *PageSize A4Tab-F *MediaType Trace
*UIConstraints: *PageSize A4Tab-F *MediaType User1
*UIConstraints: *PageSize A4Tab-F *MediaType User2
*UIConstraints: *PageSize A4Tab-F *MediaType User3
*UIConstraints: *PageSize A4Tab-F *MediaType Letterhead
*UIConstraints: *PageSize A4Tab-F *MediaType Special
*UIConstraints: *PageSize A4Tab-F *MediaType Thin
*UIConstraints: *PageSize A4Tab-F *MediaType Thick
*UIConstraints: *PageSize A4Tab-F *MediaType Color
*UIConstraints: *PageSize A4Tab-F *Combination Booklet
*UIConstraints: *PageSize A4Tab-F *Punch 2holes
*UIConstraints: *PageSize A4Tab-F *Punch 3holes
*UIConstraints: *PageSize A4Tab-F *Punch 4holes
*UIConstraints: *PageSize A4Tab-F *Fold ZFold1
*UIConstraints: *PageSize A4Tab-F *Fold ZFold2
*UIConstraints: *PageSize A4Tab-F *Fold Stitch
*UIConstraints: *PageSize A4Tab-F *Fold HalfFold
*UIConstraints: *PageSize A4Tab-F *Fold TriFold
*UIConstraints: *PageSize A4Tab-F *TransparencyInterleave Blank
*UIConstraints: *PageSize A4Tab-F *OHPOpTray Tray1
*UIConstraints: *PageSize A4Tab-F *OHPOpTray Tray2
*UIConstraints: *OutputBin MainTray *Fold Stitch
*UIConstraints: *OutputBin MainTray *Fold HalfFold
*UIConstraints: *OutputBin MainTray *Fold TriFold
*UIConstraints: *OutputBin SubTray *Offset True
*UIConstraints: *OutputBin SubTray *Staple 1Staple(Left)
*UIConstraints: *OutputBin SubTray *Staple 1Staple(Right)
*UIConstraints: *OutputBin SubTray *Staple 2Staples
*UIConstraints: *OutputBin SubTray *Punch 2holes
*UIConstraints: *OutputBin SubTray *Punch 3holes
*UIConstraints: *OutputBin SubTray *Punch 4holes
*UIConstraints: *OutputBin SubTray *Fold ZFold1
*UIConstraints: *OutputBin SubTray *Fold ZFold2
*UIConstraints: *OutputBin SubTray *Fold Stitch
*UIConstraints: *OutputBin SubTray *Fold HalfFold
*UIConstraints: *OutputBin SubTray *Fold TriFold
*UIConstraints: *OutputBin SubTray *PIFrontCover PITray1
*UIConstraints: *OutputBin SubTray *PIFrontCover PITray2
*UIConstraints: *OutputBin SubTray *PIBackCover PITray1
*UIConstraints: *OutputBin SubTray *PIBackCover PITray2
*UIConstraints: *OutputBin SubTray *Finisher None
*UIConstraints: *OutputBin SubTray *Finisher SF601
*UIConstraints: *OutputFaceup FaceUp *KMDuplex True
*UIConstraints: *OutputFaceup FaceUp *Combination Booklet
*UIConstraints: *OutputFaceup FaceUp *Staple 1Staple(Left)
*UIConstraints: *OutputFaceup FaceUp *Staple 1Staple(Right)
*UIConstraints: *OutputFaceup FaceUp *Staple 2Staples
*UIConstraints: *OutputFaceup FaceUp *Punch 2holes
*UIConstraints: *OutputFaceup FaceUp *Punch 3holes
*UIConstraints: *OutputFaceup FaceUp *Punch 4holes
*UIConstraints: *OutputFaceup FaceUp *Fold ZFold1
*UIConstraints: *OutputFaceup FaceUp *Fold ZFold2
*UIConstraints: *OutputFaceup FaceUp *Fold Stitch
*UIConstraints: *OutputFaceup FaceUp *Fold HalfFold
*UIConstraints: *OutputFaceup FaceUp *Fold TriFold
*UIConstraints: *Binding LeftBinding *Staple 1Staple(Right)
*UIConstraints: *Binding RightBinding *Staple 1Staple(Left)
*UIConstraints: *KMDuplex True *MediaType Transparency
*UIConstraints: *KMDuplex True *MediaType Label
*UIConstraints: *KMDuplex True *MediaType Trace
*UIConstraints: *KMDuplex True *MediaType TAB
*UIConstraints: *KMDuplex True *OutputFaceup FaceUp
*UIConstraints: *KMDuplex True *Combination Booklet
*UIConstraints: *KMDuplex True *TransparencyInterleave Blank
*UIConstraints: *Combination Booklet *MediaType Transparency
*UIConstraints: *Combination Booklet *MediaType Label
*UIConstraints: *Combination Booklet *MediaType Trace
*UIConstraints: *Combination Booklet *MediaType TAB
*UIConstraints: *Combination Booklet *PageSize JapanesePostCard
*UIConstraints: *Combination Booklet *PageSize LetterTab-F
*UIConstraints: *Combination Booklet *PageSize A4Tab-F
*UIConstraints: *Combination Booklet *OutputFaceup FaceUp
*UIConstraints: *Combination Booklet *KMDuplex True
*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 *Fold ZFold1
*UIConstraints: *Combination Booklet *Fold ZFold2
*UIConstraints: *Combination Booklet *Fold TriFold
*UIConstraints: *Combination Booklet *BackCoverPage Printed
*UIConstraints: *Combination Booklet *BackCoverPage Blank
*UIConstraints: *Combination Booklet *PIBackCover PITray1
*UIConstraints: *Combination Booklet *PIBackCover PITray2
*UIConstraints: *Combination Booklet *TransparencyInterleave Blank
*UIConstraints: *Combination 2in1 *PageSize A3
*UIConstraints: *Combination 2in1 *PageSize B4
*UIConstraints: *Combination 2in1 *PageSize Tabloid
*UIConstraints: *Combination 2in1 *PageSize Legal
*UIConstraints: *Combination 2in1 *PageSize 8x13
*UIConstraints: *Combination 2in1 *PageSize 8.5x13
*UIConstraints: *Combination 2in1 *PageSize 8.25x13
*UIConstraints: *Combination 2in1 *PageSize 8.125x13.25
*UIConstraints: *Combination 2in1 *PageSize 8K
*UIConstraints: *Combination 2in1 *PageSize JapanesePostCard
*UIConstraints: *Combination 2in1 *PageSize A3Extra
*UIConstraints: *Combination 2in1 *PageSize B4Extra
*UIConstraints: *Combination 2in1 *PageSize TabloidExtra
*UIConstraints: *Combination 2in1 *Fold Stitch
*UIConstraints: *Combination 2in1 *Fold HalfFold
*UIConstraints: *Combination 2in1 *Fold TriFold
*UIConstraints: *Combination 2in1 *FrontCoverPage Printed
*UIConstraints: *Combination 2in1 *FrontCoverPage Blank
*UIConstraints: *Combination 2in1 *BackCoverPage Printed
*UIConstraints: *Combination 2in1 *BackCoverPage Blank
*UIConstraints: *Combination 2in1 *PIFrontCover PITray1
*UIConstraints: *Combination 2in1 *PIFrontCover PITray2
*UIConstraints: *Combination 2in1 *PIBackCover PITray1
*UIConstraints: *Combination 2in1 *PIBackCover PITray2
*UIConstraints: *Combination 2in1 *TransparencyInterleave Blank
*UIConstraints: *Combination 2repeat *PageSize A3
*UIConstraints: *Combination 2repeat *PageSize B4
*UIConstraints: *Combination 2repeat *PageSize Tabloid
*UIConstraints: *Combination 2repeat *PageSize Legal
*UIConstraints: *Combination 2repeat *PageSize 8x13
*UIConstraints: *Combination 2repeat *PageSize 8.5x13
*UIConstraints: *Combination 2repeat *PageSize 8.25x13
*UIConstraints: *Combination 2repeat *PageSize 8.125x13.25
*UIConstraints: *Combination 2repeat *PageSize 8K
*UIConstraints: *Combination 2repeat *PageSize JapanesePostCard
*UIConstraints: *Combination 2repeat *PageSize A3Extra
*UIConstraints: *Combination 2repeat *PageSize B4Extra
*UIConstraints: *Combination 2repeat *PageSize TabloidExtra
*UIConstraints: *Combination 2repeat *Staple 1Staple(Left)
*UIConstraints: *Combination 2repeat *Staple 1Staple(Right)
*UIConstraints: *Combination 2repeat *Staple 2Staples
*UIConstraints: *Combination 2repeat *Punch 2holes
*UIConstraints: *Combination 2repeat *Punch 3holes
*UIConstraints: *Combination 2repeat *Punch 4holes
*UIConstraints: *Combination 2repeat *Fold Stitch
*UIConstraints: *Combination 2repeat *Fold HalfFold
*UIConstraints: *Combination 2repeat *Fold TriFold
*UIConstraints: *Combination 2repeat *FrontCoverPage Printed
*UIConstraints: *Combination 2repeat *FrontCoverPage Blank
*UIConstraints: *Combination 2repeat *BackCoverPage Printed
*UIConstraints: *Combination 2repeat *BackCoverPage Blank
*UIConstraints: *Combination 2repeat *PIFrontCover PITray1
*UIConstraints: *Combination 2repeat *PIFrontCover PITray2
*UIConstraints: *Combination 2repeat *PIBackCover PITray1
*UIConstraints: *Combination 2repeat *PIBackCover PITray2
*UIConstraints: *Combination 2repeat *TransparencyInterleave Blank
*UIConstraints: *Staple 1Staple(Left) *Offset True
*UIConstraints: *Staple 1Staple(Left) *MediaType Transparency
*UIConstraints: *Staple 1Staple(Left) *MediaType Label
*UIConstraints: *Staple 1Staple(Left) *MediaType Trace
*UIConstraints: *Staple 1Staple(Left) *MediaType TAB
*UIConstraints: *Staple 1Staple(Left) *PageSize JapanesePostCard
*UIConstraints: *Staple 1Staple(Left) *OutputBin SubTray
*UIConstraints: *Staple 1Staple(Left) *OutputFaceup FaceUp
*UIConstraints: *Staple 1Staple(Left) *Binding RightBinding
*UIConstraints: *Staple 1Staple(Left) *Combination Booklet
*UIConstraints: *Staple 1Staple(Left) *Combination 2repeat
*UIConstraints: *Staple 1Staple(Left) *Fold Stitch
*UIConstraints: *Staple 1Staple(Left) *Fold HalfFold
*UIConstraints: *Staple 1Staple(Left) *Fold TriFold
*UIConstraints: *Staple 1Staple(Left) *TransparencyInterleave Blank
*UIConstraints: *Staple 1Staple(Left) *Finisher None
*UIConstraints: *Staple 1Staple(Left) *Finisher SF601
*UIConstraints: *Staple 1Staple(Right) *Offset True
*UIConstraints: *Staple 1Staple(Right) *MediaType Transparency
*UIConstraints: *Staple 1Staple(Right) *MediaType Label
*UIConstraints: *Staple 1Staple(Right) *MediaType Trace
*UIConstraints: *Staple 1Staple(Right) *MediaType TAB
*UIConstraints: *Staple 1Staple(Right) *PageSize JapanesePostCard
*UIConstraints: *Staple 1Staple(Right) *OutputBin SubTray
*UIConstraints: *Staple 1Staple(Right) *OutputFaceup FaceUp
*UIConstraints: *Staple 1Staple(Right) *Binding LeftBinding
*UIConstraints: *Staple 1Staple(Right) *Combination Booklet
*UIConstraints: *Staple 1Staple(Right) *Combination 2repeat
*UIConstraints: *Staple 1Staple(Right) *Fold Stitch
*UIConstraints: *Staple 1Staple(Right) *Fold HalfFold
*UIConstraints: *Staple 1Staple(Right) *Fold TriFold
*UIConstraints: *Staple 1Staple(Right) *TransparencyInterleave Blank
*UIConstraints: *Staple 1Staple(Right) *Finisher None
*UIConstraints: *Staple 1Staple(Right) *Finisher SF601
*UIConstraints: *Staple 2Staples *Offset True
*UIConstraints: *Staple 2Staples *MediaType Transparency
*UIConstraints: *Staple 2Staples *MediaType Label
*UIConstraints: *Staple 2Staples *MediaType Trace
*UIConstraints: *Staple 2Staples *MediaType TAB
*UIConstraints: *Staple 2Staples *PageSize JapanesePostCard
*UIConstraints: *Staple 2Staples *OutputBin SubTray
*UIConstraints: *Staple 2Staples *OutputFaceup FaceUp
*UIConstraints: *Staple 2Staples *Combination Booklet
*UIConstraints: *Staple 2Staples *Combination 2repeat
*UIConstraints: *Staple 2Staples *Fold Stitch
*UIConstraints: *Staple 2Staples *Fold HalfFold
*UIConstraints: *Staple 2Staples *Fold TriFold
*UIConstraints: *Staple 2Staples *TransparencyInterleave Blank
*UIConstraints: *Staple 2Staples *Finisher None
*UIConstraints: *Staple 2Staples *Finisher SF601
*UIConstraints: *Punch 2holes *MediaType Transparency
*UIConstraints: *Punch 2holes *MediaType Label
*UIConstraints: *Punch 2holes *MediaType Trace
*UIConstraints: *Punch 2holes *MediaType TAB
*UIConstraints: *Punch 2holes *MediaType Thick
*UIConstraints: *Punch 2holes *PageSize JapanesePostCard
*UIConstraints: *Punch 2holes *PageSize A3Extra
*UIConstraints: *Punch 2holes *PageSize A4Extra
*UIConstraints: *Punch 2holes *PageSize A5Extra
*UIConstraints: *Punch 2holes *PageSize B4Extra
*UIConstraints: *Punch 2holes *PageSize B5Extra
*UIConstraints: *Punch 2holes *PageSize TabloidExtra
*UIConstraints: *Punch 2holes *PageSize LetterExtra
*UIConstraints: *Punch 2holes *PageSize StatementExtra
*UIConstraints: *Punch 2holes *PageSize LetterTab-F
*UIConstraints: *Punch 2holes *PageSize A4Tab-F
*UIConstraints: *Punch 2holes *OutputBin SubTray
*UIConstraints: *Punch 2holes *OutputFaceup FaceUp
*UIConstraints: *Punch 2holes *Combination Booklet
*UIConstraints: *Punch 2holes *Combination 2repeat
*UIConstraints: *Punch 2holes *Fold Stitch
*UIConstraints: *Punch 2holes *Fold HalfFold
*UIConstraints: *Punch 2holes *Fold TriFold
*UIConstraints: *Punch 2holes *TransparencyInterleave Blank
*UIConstraints: *Punch 2holes *Finisher None
*UIConstraints: *Punch 2holes *Finisher SF601
*UIConstraints: *Punch 2holes *ZfoldUnit ZU601(4H)
*UIConstraints: *Punch 2holes *ZfoldUnit PK504(4H)
*UIConstraints: *Punch 2holes *ZfoldUnit ZU601+PK504(4H)
*UIConstraints: *Punch 3holes *MediaType Transparency
*UIConstraints: *Punch 3holes *MediaType Label
*UIConstraints: *Punch 3holes *MediaType Trace
*UIConstraints: *Punch 3holes *MediaType TAB
*UIConstraints: *Punch 3holes *MediaType Thick
*UIConstraints: *Punch 3holes *PageSize A6
*UIConstraints: *Punch 3holes *PageSize Legal
*UIConstraints: *Punch 3holes *PageSize 8x13
*UIConstraints: *Punch 3holes *PageSize 8.5x13
*UIConstraints: *Punch 3holes *PageSize 8.25x13
*UIConstraints: *Punch 3holes *PageSize 8.125x13.25
*UIConstraints: *Punch 3holes *PageSize JapanesePostCard
*UIConstraints: *Punch 3holes *PageSize A3Extra
*UIConstraints: *Punch 3holes *PageSize A4Extra
*UIConstraints: *Punch 3holes *PageSize A5Extra
*UIConstraints: *Punch 3holes *PageSize B4Extra
*UIConstraints: *Punch 3holes *PageSize B5Extra
*UIConstraints: *Punch 3holes *PageSize TabloidExtra
*UIConstraints: *Punch 3holes *PageSize LetterExtra
*UIConstraints: *Punch 3holes *PageSize StatementExtra
*UIConstraints: *Punch 3holes *PageSize LetterTab-F
*UIConstraints: *Punch 3holes *PageSize A4Tab-F
*UIConstraints: *Punch 3holes *OutputBin SubTray
*UIConstraints: *Punch 3holes *OutputFaceup FaceUp
*UIConstraints: *Punch 3holes *Combination Booklet
*UIConstraints: *Punch 3holes *Combination 2repeat
*UIConstraints: *Punch 3holes *Fold Stitch
*UIConstraints: *Punch 3holes *Fold HalfFold
*UIConstraints: *Punch 3holes *Fold TriFold
*UIConstraints: *Punch 3holes *TransparencyInterleave Blank
*UIConstraints: *Punch 3holes *Finisher None
*UIConstraints: *Punch 3holes *Finisher SF601
*UIConstraints: *Punch 3holes *ZfoldUnit ZU601(4H)
*UIConstraints: *Punch 3holes *ZfoldUnit ZU602(2H)
*UIConstraints: *Punch 3holes *ZfoldUnit ZU602(2-4H)
*UIConstraints: *Punch 3holes *ZfoldUnit PK502(2H)
*UIConstraints: *Punch 3holes *ZfoldUnit PK503(2H)
*UIConstraints: *Punch 3holes *ZfoldUnit PK504(4H)
*UIConstraints: *Punch 3holes *ZfoldUnit PK505(2-4H)
*UIConstraints: *Punch 3holes *ZfoldUnit ZU601+PK504(4H)
*UIConstraints: *Punch 3holes *ZfoldUnit ZU602+PK502(2H)
*UIConstraints: *Punch 3holes *ZfoldUnit ZU602+PK503(2H)
*UIConstraints: *Punch 3holes *ZfoldUnit ZU602+PK505(2-4H)
*UIConstraints: *Punch 4holes *MediaType Transparency
*UIConstraints: *Punch 4holes *MediaType Label
*UIConstraints: *Punch 4holes *MediaType Trace
*UIConstraints: *Punch 4holes *MediaType TAB
*UIConstraints: *Punch 4holes *MediaType Thick
*UIConstraints: *Punch 4holes *PageSize A6
*UIConstraints: *Punch 4holes *PageSize Legal
*UIConstraints: *Punch 4holes *PageSize 8x13
*UIConstraints: *Punch 4holes *PageSize 8.5x13
*UIConstraints: *Punch 4holes *PageSize 8.25x13
*UIConstraints: *Punch 4holes *PageSize 8.125x13.25
*UIConstraints: *Punch 4holes *PageSize JapanesePostCard
*UIConstraints: *Punch 4holes *PageSize A3Extra
*UIConstraints: *Punch 4holes *PageSize A4Extra
*UIConstraints: *Punch 4holes *PageSize A5Extra
*UIConstraints: *Punch 4holes *PageSize B4Extra
*UIConstraints: *Punch 4holes *PageSize B5Extra
*UIConstraints: *Punch 4holes *PageSize TabloidExtra
*UIConstraints: *Punch 4holes *PageSize LetterExtra
*UIConstraints: *Punch 4holes *PageSize StatementExtra
*UIConstraints: *Punch 4holes *PageSize LetterTab-F
*UIConstraints: *Punch 4holes *PageSize A4Tab-F
*UIConstraints: *Punch 4holes *OutputBin SubTray
*UIConstraints: *Punch 4holes *OutputFaceup FaceUp
*UIConstraints: *Punch 4holes *Combination Booklet
*UIConstraints: *Punch 4holes *Combination 2repeat
*UIConstraints: *Punch 4holes *Fold Stitch
*UIConstraints: *Punch 4holes *Fold HalfFold
*UIConstraints: *Punch 4holes *Fold TriFold
*UIConstraints: *Punch 4holes *TransparencyInterleave Blank
*UIConstraints: *Punch 4holes *Finisher None
*UIConstraints: *Punch 4holes *Finisher SF601
*UIConstraints: *Punch 4holes *ZfoldUnit ZU602(2H)
*UIConstraints: *Punch 4holes *ZfoldUnit ZU602(2-3H)
*UIConstraints: *Punch 4holes *ZfoldUnit PK502(2H)
*UIConstraints: *Punch 4holes *ZfoldUnit PK503(2H)
*UIConstraints: *Punch 4holes *ZfoldUnit PK505(2-3H)
*UIConstraints: *Punch 4holes *ZfoldUnit ZU602+PK502(2H)
*UIConstraints: *Punch 4holes *ZfoldUnit ZU602+PK503(2H)
*UIConstraints: *Punch 4holes *ZfoldUnit ZU602+PK505(2-3H)
*UIConstraints: *Fold ZFold1 *MediaType Transparency
*UIConstraints: *Fold ZFold1 *MediaType Label
*UIConstraints: *Fold ZFold1 *MediaType Trace
*UIConstraints: *Fold ZFold1 *MediaType TAB
*UIConstraints: *Fold ZFold1 *MediaType Thick
*UIConstraints: *Fold ZFold1 *PageSize A6
*UIConstraints: *Fold ZFold1 *PageSize 8x13
*UIConstraints: *Fold ZFold1 *PageSize 8.5x13
*UIConstraints: *Fold ZFold1 *PageSize 8.25x13
*UIConstraints: *Fold ZFold1 *PageSize 8.125x13.25
*UIConstraints: *Fold ZFold1 *PageSize JapanesePostCard
*UIConstraints: *Fold ZFold1 *PageSize A3Extra
*UIConstraints: *Fold ZFold1 *PageSize A4Extra
*UIConstraints: *Fold ZFold1 *PageSize A5Extra
*UIConstraints: *Fold ZFold1 *PageSize B4Extra
*UIConstraints: *Fold ZFold1 *PageSize B5Extra
*UIConstraints: *Fold ZFold1 *PageSize TabloidExtra
*UIConstraints: *Fold ZFold1 *PageSize LetterExtra
*UIConstraints: *Fold ZFold1 *PageSize StatementExtra
*UIConstraints: *Fold ZFold1 *PageSize LetterTab-F
*UIConstraints: *Fold ZFold1 *PageSize A4Tab-F
*UIConstraints: *Fold ZFold1 *OutputBin SubTray
*UIConstraints: *Fold ZFold1 *OutputFaceup FaceUp
*UIConstraints: *Fold ZFold1 *Combination Booklet
*UIConstraints: *Fold ZFold1 *TransparencyInterleave Blank
*UIConstraints: *Fold ZFold1 *Finisher None
*UIConstraints: *Fold ZFold1 *Finisher SF601
*UIConstraints: *Fold ZFold1 *ZfoldUnit None
*UIConstraints: *Fold ZFold1 *ZfoldUnit PK502(2H)
*UIConstraints: *Fold ZFold1 *ZfoldUnit PK503(2H)
*UIConstraints: *Fold ZFold1 *ZfoldUnit PK504(4H)
*UIConstraints: *Fold ZFold1 *ZfoldUnit PK505(2-3H)
*UIConstraints: *Fold ZFold1 *ZfoldUnit PK505(2-4H)
*UIConstraints: *Fold ZFold2 *MediaType Transparency
*UIConstraints: *Fold ZFold2 *MediaType Label
*UIConstraints: *Fold ZFold2 *MediaType Trace
*UIConstraints: *Fold ZFold2 *MediaType TAB
*UIConstraints: *Fold ZFold2 *MediaType Thick
*UIConstraints: *Fold ZFold2 *PageSize A6
*UIConstraints: *Fold ZFold2 *PageSize 8x13
*UIConstraints: *Fold ZFold2 *PageSize 8.5x13
*UIConstraints: *Fold ZFold2 *PageSize 8.25x13
*UIConstraints: *Fold ZFold2 *PageSize 8.125x13.25
*UIConstraints: *Fold ZFold2 *PageSize JapanesePostCard
*UIConstraints: *Fold ZFold2 *PageSize A3Extra
*UIConstraints: *Fold ZFold2 *PageSize A4Extra
*UIConstraints: *Fold ZFold2 *PageSize A5Extra
*UIConstraints: *Fold ZFold2 *PageSize B4Extra
*UIConstraints: *Fold ZFold2 *PageSize B5Extra
*UIConstraints: *Fold ZFold2 *PageSize TabloidExtra
*UIConstraints: *Fold ZFold2 *PageSize LetterExtra
*UIConstraints: *Fold ZFold2 *PageSize StatementExtra
*UIConstraints: *Fold ZFold2 *PageSize LetterTab-F
*UIConstraints: *Fold ZFold2 *PageSize A4Tab-F
*UIConstraints: *Fold ZFold2 *OutputBin SubTray
*UIConstraints: *Fold ZFold2 *OutputFaceup FaceUp
*UIConstraints: *Fold ZFold2 *Combination Booklet
*UIConstraints: *Fold ZFold2 *TransparencyInterleave Blank
*UIConstraints: *Fold ZFold2 *Finisher None
*UIConstraints: *Fold ZFold2 *Finisher SF601
*UIConstraints: *Fold ZFold2 *ZfoldUnit None
*UIConstraints: *Fold ZFold2 *ZfoldUnit PK502(2H)
*UIConstraints: *Fold ZFold2 *ZfoldUnit PK503(2H)
*UIConstraints: *Fold ZFold2 *ZfoldUnit PK504(4H)
*UIConstraints: *Fold ZFold2 *ZfoldUnit PK505(2-3H)
*UIConstraints: *Fold ZFold2 *ZfoldUnit PK505(2-4H)
*UIConstraints: *Fold Stitch *Offset True
*UIConstraints: *Fold Stitch *MediaType Transparency
*UIConstraints: *Fold Stitch *MediaType Label
*UIConstraints: *Fold Stitch *MediaType Trace
*UIConstraints: *Fold Stitch *MediaType TAB
*UIConstraints: *Fold Stitch *PageSize A6
*UIConstraints: *Fold Stitch *PageSize B6
*UIConstraints: *Fold Stitch *PageSize 8x13
*UIConstraints: *Fold Stitch *PageSize 8.25x13
*UIConstraints: *Fold Stitch *PageSize 8.125x13.25
*UIConstraints: *Fold Stitch *PageSize JapanesePostCard
*UIConstraints: *Fold Stitch *PageSize LetterTab-F
*UIConstraints: *Fold Stitch *PageSize A4Tab-F
*UIConstraints: *Fold Stitch *OutputBin MainTray
*UIConstraints: *Fold Stitch *OutputBin SubTray
*UIConstraints: *Fold Stitch *OutputFaceup FaceUp
*UIConstraints: *Fold Stitch *Combination 2in1
*UIConstraints: *Fold Stitch *Combination 2repeat
*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 *BackCoverPage Printed
*UIConstraints: *Fold Stitch *BackCoverPage Blank
*UIConstraints: *Fold Stitch *PIBackCover PITray1
*UIConstraints: *Fold Stitch *PIBackCover PITray2
*UIConstraints: *Fold Stitch *TransparencyInterleave Blank
*UIConstraints: *Fold Stitch *Finisher None
*UIConstraints: *Fold Stitch *Finisher FS504
*UIConstraints: *Fold Stitch *Finisher FS505
*UIConstraints: *Fold Stitch *Finisher SF601
*UIConstraints: *Fold HalfFold *Offset True
*UIConstraints: *Fold HalfFold *MediaType Transparency
*UIConstraints: *Fold HalfFold *MediaType Label
*UIConstraints: *Fold HalfFold *MediaType Trace
*UIConstraints: *Fold HalfFold *MediaType TAB
*UIConstraints: *Fold HalfFold *PageSize A6
*UIConstraints: *Fold HalfFold *PageSize B6
*UIConstraints: *Fold HalfFold *PageSize 8x13
*UIConstraints: *Fold HalfFold *PageSize 8.5x13
*UIConstraints: *Fold HalfFold *PageSize 8.25x13
*UIConstraints: *Fold HalfFold *PageSize 8.125x13.25
*UIConstraints: *Fold HalfFold *PageSize JapanesePostCard
*UIConstraints: *Fold HalfFold *PageSize LetterTab-F
*UIConstraints: *Fold HalfFold *PageSize A4Tab-F
*UIConstraints: *Fold HalfFold *OutputBin MainTray
*UIConstraints: *Fold HalfFold *OutputBin SubTray
*UIConstraints: *Fold HalfFold *OutputFaceup FaceUp
*UIConstraints: *Fold HalfFold *Combination 2in1
*UIConstraints: *Fold HalfFold *Combination 2repeat
*UIConstraints: *Fold HalfFold *Staple 1Staple(Left)
*UIConstraints: *Fold HalfFold *Staple 1Staple(Right)
*UIConstraints: *Fold HalfFold *Staple 2Staples
*UIConstraints: *Fold HalfFold *Punch 2holes
*UIConstraints: *Fold HalfFold *Punch 3holes
*UIConstraints: *Fold HalfFold *Punch 4holes
*UIConstraints: *Fold HalfFold *BackCoverPage Printed
*UIConstraints: *Fold HalfFold *BackCoverPage Blank
*UIConstraints: *Fold HalfFold *PIBackCover PITray1
*UIConstraints: *Fold HalfFold *PIBackCover PITray2
*UIConstraints: *Fold HalfFold *TransparencyInterleave Blank
*UIConstraints: *Fold HalfFold *Finisher None
*UIConstraints: *Fold HalfFold *Finisher FS504
*UIConstraints: *Fold HalfFold *Finisher FS505
*UIConstraints: *Fold HalfFold *Finisher SF601
*UIConstraints: *Fold TriFold *Offset True
*UIConstraints: *Fold TriFold *MediaType Transparency
*UIConstraints: *Fold TriFold *MediaType Label
*UIConstraints: *Fold TriFold *MediaType Trace
*UIConstraints: *Fold TriFold *MediaType TAB
*UIConstraints: *Fold TriFold *MediaType Thick
*UIConstraints: *Fold TriFold *PageSize A3
*UIConstraints: *Fold TriFold *PageSize A6
*UIConstraints: *Fold TriFold *PageSize B4
*UIConstraints: *Fold TriFold *PageSize B5
*UIConstraints: *Fold TriFold *PageSize B6
*UIConstraints: *Fold TriFold *PageSize Tabloid
*UIConstraints: *Fold TriFold *PageSize Legal
*UIConstraints: *Fold TriFold *PageSize 8x13
*UIConstraints: *Fold TriFold *PageSize 8.5x13
*UIConstraints: *Fold TriFold *PageSize 8.25x13
*UIConstraints: *Fold TriFold *PageSize 8.125x13.25
*UIConstraints: *Fold TriFold *PageSize 8K
*UIConstraints: *Fold TriFold *PageSize JapanesePostCard
*UIConstraints: *Fold TriFold *PageSize A3Extra
*UIConstraints: *Fold TriFold *PageSize A4Extra
*UIConstraints: *Fold TriFold *PageSize A5Extra
*UIConstraints: *Fold TriFold *PageSize B4Extra
*UIConstraints: *Fold TriFold *PageSize B5Extra
*UIConstraints: *Fold TriFold *PageSize TabloidExtra
*UIConstraints: *Fold TriFold *PageSize LetterExtra
*UIConstraints: *Fold TriFold *PageSize StatementExtra
*UIConstraints: *Fold TriFold *PageSize LetterTab-F
*UIConstraints: *Fold TriFold *PageSize A4Tab-F
*UIConstraints: *Fold TriFold *OutputBin MainTray
*UIConstraints: *Fold TriFold *OutputBin SubTray
*UIConstraints: *Fold TriFold *OutputFaceup FaceUp
*UIConstraints: *Fold TriFold *Combination Booklet
*UIConstraints: *Fold TriFold *Combination 2in1
*UIConstraints: *Fold TriFold *Combination 2repeat
*UIConstraints: *Fold TriFold *Staple 1Staple(Left)
*UIConstraints: *Fold TriFold *Staple 1Staple(Right)
*UIConstraints: *Fold TriFold *Staple 2Staples
*UIConstraints: *Fold TriFold *Punch 2holes
*UIConstraints: *Fold TriFold *Punch 3holes
*UIConstraints: *Fold TriFold *Punch 4holes
*UIConstraints: *Fold TriFold *BackCoverPage Printed
*UIConstraints: *Fold TriFold *BackCoverPage Blank
*UIConstraints: *Fold TriFold *PIFrontCover PITray1
*UIConstraints: *Fold TriFold *PIFrontCover PITray2
*UIConstraints: *Fold TriFold *PIBackCover PITray1
*UIConstraints: *Fold TriFold *PIBackCover PITray2
*UIConstraints: *Fold TriFold *TransparencyInterleave Blank
*UIConstraints: *Fold TriFold *Finisher None
*UIConstraints: *Fold TriFold *Finisher FS504
*UIConstraints: *Fold TriFold *Finisher FS505
*UIConstraints: *Fold TriFold *Finisher SF601
*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_LaPlata
*UIConstraints: *FrontCoverPage None *FrontCoverTray ManualFeed
*UIConstraints: *FrontCoverPage Printed *Combination 2in1
*UIConstraints: *FrontCoverPage Printed *Combination 2repeat
*UIConstraints: *FrontCoverPage Printed *TransparencyInterleave Blank
*UIConstraints: *FrontCoverPage Blank *Combination 2in1
*UIConstraints: *FrontCoverPage Blank *Combination 2repeat
*UIConstraints: *FrontCoverPage Blank *TransparencyInterleave Blank
*UIConstraints: *FrontCoverTray Tray1 *FrontCoverPage None
*UIConstraints: *FrontCoverTray Tray2 *FrontCoverPage None
*UIConstraints: *FrontCoverTray Tray3 *FrontCoverPage None
*UIConstraints: *FrontCoverTray Tray4 *FrontCoverPage None
*UIConstraints: *FrontCoverTray LCT_LaPlata *FrontCoverPage None
*UIConstraints: *FrontCoverTray LCT_LaPlata *PaperSources None
*UIConstraints: *FrontCoverTray ManualFeed *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_LaPlata
*UIConstraints: *BackCoverPage None *BackCoverTray ManualFeed
*UIConstraints: *BackCoverPage Printed *Combination Booklet
*UIConstraints: *BackCoverPage Printed *Combination 2in1
*UIConstraints: *BackCoverPage Printed *Combination 2repeat
*UIConstraints: *BackCoverPage Printed *Fold Stitch
*UIConstraints: *BackCoverPage Printed *Fold HalfFold
*UIConstraints: *BackCoverPage Printed *Fold TriFold
*UIConstraints: *BackCoverPage Printed *TransparencyInterleave Blank
*UIConstraints: *BackCoverPage Blank *Combination Booklet
*UIConstraints: *BackCoverPage Blank *Combination 2in1
*UIConstraints: *BackCoverPage Blank *Combination 2repeat
*UIConstraints: *BackCoverPage Blank *Fold Stitch
*UIConstraints: *BackCoverPage Blank *Fold HalfFold
*UIConstraints: *BackCoverPage Blank *Fold TriFold
*UIConstraints: *BackCoverPage Blank *TransparencyInterleave Blank
*UIConstraints: *BackCoverTray Tray1 *BackCoverPage None
*UIConstraints: *BackCoverTray Tray2 *BackCoverPage None
*UIConstraints: *BackCoverTray Tray3 *BackCoverPage None
*UIConstraints: *BackCoverTray Tray4 *BackCoverPage None
*UIConstraints: *BackCoverTray LCT_LaPlata *BackCoverPage None
*UIConstraints: *BackCoverTray LCT_LaPlata *PaperSources None
*UIConstraints: *BackCoverTray ManualFeed *BackCoverPage None
*UIConstraints: *PIFrontCover PITray1 *MediaType Transparency
*UIConstraints: *PIFrontCover PITray1 *MediaType Label
*UIConstraints: *PIFrontCover PITray1 *MediaType Trace
*UIConstraints: *PIFrontCover PITray1 *MediaType User1
*UIConstraints: *PIFrontCover PITray1 *MediaType User2
*UIConstraints: *PIFrontCover PITray1 *MediaType User3
*UIConstraints: *PIFrontCover PITray1 *MediaType TAB
*UIConstraints: *PIFrontCover PITray1 *MediaType Special
*UIConstraints: *PIFrontCover PITray1 *MediaType Thin
*UIConstraints: *PIFrontCover PITray1 *MediaType Thick
*UIConstraints: *PIFrontCover PITray1 *MediaType Color
*UIConstraints: *PIFrontCover PITray1 *PageSize JapanesePostCard
*UIConstraints: *PIFrontCover PITray1 *OutputBin SubTray
*UIConstraints: *PIFrontCover PITray1 *Combination 2in1
*UIConstraints: *PIFrontCover PITray1 *Combination 2repeat
*UIConstraints: *PIFrontCover PITray1 *Fold TriFold
*UIConstraints: *PIFrontCover PITray1 *TransparencyInterleave Blank
*UIConstraints: *PIFrontCover PITray1 *CoverSheetFeeder None
*UIConstraints: *PIFrontCover PITray2 *MediaType Transparency
*UIConstraints: *PIFrontCover PITray2 *MediaType Label
*UIConstraints: *PIFrontCover PITray2 *MediaType Trace
*UIConstraints: *PIFrontCover PITray2 *MediaType User1
*UIConstraints: *PIFrontCover PITray2 *MediaType User2
*UIConstraints: *PIFrontCover PITray2 *MediaType User3
*UIConstraints: *PIFrontCover PITray2 *MediaType TAB
*UIConstraints: *PIFrontCover PITray2 *MediaType Special
*UIConstraints: *PIFrontCover PITray2 *MediaType Thin
*UIConstraints: *PIFrontCover PITray2 *MediaType Thick
*UIConstraints: *PIFrontCover PITray2 *MediaType Color
*UIConstraints: *PIFrontCover PITray2 *PageSize JapanesePostCard
*UIConstraints: *PIFrontCover PITray2 *OutputBin SubTray
*UIConstraints: *PIFrontCover PITray2 *Combination 2in1
*UIConstraints: *PIFrontCover PITray2 *Combination 2repeat
*UIConstraints: *PIFrontCover PITray2 *Fold TriFold
*UIConstraints: *PIFrontCover PITray2 *TransparencyInterleave Blank
*UIConstraints: *PIFrontCover PITray2 *CoverSheetFeeder None
*UIConstraints: *PIBackCover PITray1 *MediaType Transparency
*UIConstraints: *PIBackCover PITray1 *MediaType Label
*UIConstraints: *PIBackCover PITray1 *MediaType Trace
*UIConstraints: *PIBackCover PITray1 *MediaType User1
*UIConstraints: *PIBackCover PITray1 *MediaType User2
*UIConstraints: *PIBackCover PITray1 *MediaType User3
*UIConstraints: *PIBackCover PITray1 *MediaType TAB
*UIConstraints: *PIBackCover PITray1 *MediaType Special
*UIConstraints: *PIBackCover PITray1 *MediaType Thin
*UIConstraints: *PIBackCover PITray1 *MediaType Thick
*UIConstraints: *PIBackCover PITray1 *MediaType Color
*UIConstraints: *PIBackCover PITray1 *PageSize JapanesePostCard
*UIConstraints: *PIBackCover PITray1 *OutputBin SubTray
*UIConstraints: *PIBackCover PITray1 *Combination Booklet
*UIConstraints: *PIBackCover PITray1 *Combination 2in1
*UIConstraints: *PIBackCover PITray1 *Combination 2repeat
*UIConstraints: *PIBackCover PITray1 *Fold Stitch
*UIConstraints: *PIBackCover PITray1 *Fold HalfFold
*UIConstraints: *PIBackCover PITray1 *Fold TriFold
*UIConstraints: *PIBackCover PITray1 *TransparencyInterleave Blank
*UIConstraints: *PIBackCover PITray1 *CoverSheetFeeder None
*UIConstraints: *PIBackCover PITray2 *MediaType Transparency
*UIConstraints: *PIBackCover PITray2 *MediaType Label
*UIConstraints: *PIBackCover PITray2 *MediaType Trace
*UIConstraints: *PIBackCover PITray2 *MediaType User1
*UIConstraints: *PIBackCover PITray2 *MediaType User2
*UIConstraints: *PIBackCover PITray2 *MediaType User3
*UIConstraints: *PIBackCover PITray2 *MediaType TAB
*UIConstraints: *PIBackCover PITray2 *MediaType Special
*UIConstraints: *PIBackCover PITray2 *MediaType Thin
*UIConstraints: *PIBackCover PITray2 *MediaType Thick
*UIConstraints: *PIBackCover PITray2 *MediaType Color
*UIConstraints: *PIBackCover PITray2 *PageSize JapanesePostCard
*UIConstraints: *PIBackCover PITray2 *OutputBin SubTray
*UIConstraints: *PIBackCover PITray2 *Combination Booklet
*UIConstraints: *PIBackCover PITray2 *Combination 2in1
*UIConstraints: *PIBackCover PITray2 *Combination 2repeat
*UIConstraints: *PIBackCover PITray2 *Fold Stitch
*UIConstraints: *PIBackCover PITray2 *Fold HalfFold
*UIConstraints: *PIBackCover PITray2 *Fold TriFold
*UIConstraints: *PIBackCover PITray2 *TransparencyInterleave Blank
*UIConstraints: *PIBackCover PITray2 *CoverSheetFeeder None
*UIConstraints: *TransparencyInterleave None *OHPOpTray Auto
*UIConstraints: *TransparencyInterleave None *OHPOpTray Tray1
*UIConstraints: *TransparencyInterleave None *OHPOpTray Tray2
*UIConstraints: *TransparencyInterleave None *OHPOpTray Tray3
*UIConstraints: *TransparencyInterleave None *OHPOpTray Tray4
*UIConstraints: *TransparencyInterleave None *OHPOpTray LCT_LaPlata
*UIConstraints: *TransparencyInterleave Blank *Offset True
*UIConstraints: *TransparencyInterleave Blank *MediaType Plain
*UIConstraints: *TransparencyInterleave Blank *MediaType Recycled
*UIConstraints: *TransparencyInterleave Blank *MediaType Fine
*UIConstraints: *TransparencyInterleave Blank *MediaType Label
*UIConstraints: *TransparencyInterleave Blank *MediaType Trace
*UIConstraints: *TransparencyInterleave Blank *MediaType User1
*UIConstraints: *TransparencyInterleave Blank *MediaType User2
*UIConstraints: *TransparencyInterleave Blank *MediaType User3
*UIConstraints: *TransparencyInterleave Blank *MediaType TAB
*UIConstraints: *TransparencyInterleave Blank *MediaType Letterhead
*UIConstraints: *TransparencyInterleave Blank *MediaType Special
*UIConstraints: *TransparencyInterleave Blank *MediaType Thin
*UIConstraints: *TransparencyInterleave Blank *MediaType Thick
*UIConstraints: *TransparencyInterleave Blank *MediaType Color
*UIConstraints: *TransparencyInterleave Blank *PageSize LetterTab-F
*UIConstraints: *TransparencyInterleave Blank *PageSize A4Tab-F
*UIConstraints: *TransparencyInterleave Blank *KMDuplex True
*UIConstraints: *TransparencyInterleave Blank *Combination Booklet
*UIConstraints: *TransparencyInterleave Blank *Combination 2in1
*UIConstraints: *TransparencyInterleave Blank *Combination 2repeat
*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 ZFold1
*UIConstraints: *TransparencyInterleave Blank *Fold ZFold2
*UIConstraints: *TransparencyInterleave Blank *Fold Stitch
*UIConstraints: *TransparencyInterleave Blank *Fold HalfFold
*UIConstraints: *TransparencyInterleave Blank *Fold TriFold
*UIConstraints: *TransparencyInterleave Blank *FrontCoverPage Printed
*UIConstraints: *TransparencyInterleave Blank *FrontCoverPage Blank
*UIConstraints: *TransparencyInterleave Blank *BackCoverPage Printed
*UIConstraints: *TransparencyInterleave Blank *BackCoverPage Blank
*UIConstraints: *TransparencyInterleave Blank *PIFrontCover PITray1
*UIConstraints: *TransparencyInterleave Blank *PIFrontCover PITray2
*UIConstraints: *TransparencyInterleave Blank *PIBackCover PITray1
*UIConstraints: *TransparencyInterleave Blank *PIBackCover PITray2
*UIConstraints: *TransparencyInterleave Blank *WaitMode ProofMode
*UIConstraints: *OHPOpTray Auto *TransparencyInterleave None
*UIConstraints: *OHPOpTray Tray1 *PageSize A3
*UIConstraints: *OHPOpTray Tray1 *PageSize A6
*UIConstraints: *OHPOpTray Tray1 *PageSize B4
*UIConstraints: *OHPOpTray Tray1 *PageSize B6
*UIConstraints: *OHPOpTray Tray1 *PageSize Tabloid
*UIConstraints: *OHPOpTray Tray1 *PageSize Legal
*UIConstraints: *OHPOpTray Tray1 *PageSize 8x13
*UIConstraints: *OHPOpTray Tray1 *PageSize 8.5x13
*UIConstraints: *OHPOpTray Tray1 *PageSize 8.25x13
*UIConstraints: *OHPOpTray Tray1 *PageSize 8.125x13.25
*UIConstraints: *OHPOpTray Tray1 *PageSize 8K
*UIConstraints: *OHPOpTray Tray1 *PageSize A3Extra
*UIConstraints: *OHPOpTray Tray1 *PageSize A4Extra
*UIConstraints: *OHPOpTray Tray1 *PageSize A5Extra
*UIConstraints: *OHPOpTray Tray1 *PageSize B4Extra
*UIConstraints: *OHPOpTray Tray1 *PageSize B5Extra
*UIConstraints: *OHPOpTray Tray1 *PageSize TabloidExtra
*UIConstraints: *OHPOpTray Tray1 *PageSize LetterExtra
*UIConstraints: *OHPOpTray Tray1 *PageSize StatementExtra
*UIConstraints: *OHPOpTray Tray1 *PageSize LetterTab-F
*UIConstraints: *OHPOpTray Tray1 *PageSize A4Tab-F
*UIConstraints: *OHPOpTray Tray1 *TransparencyInterleave None
*UIConstraints: *OHPOpTray Tray2 *PageSize A3
*UIConstraints: *OHPOpTray Tray2 *PageSize A6
*UIConstraints: *OHPOpTray Tray2 *PageSize B4
*UIConstraints: *OHPOpTray Tray2 *PageSize B6
*UIConstraints: *OHPOpTray Tray2 *PageSize Tabloid
*UIConstraints: *OHPOpTray Tray2 *PageSize Legal
*UIConstraints: *OHPOpTray Tray2 *PageSize 8x13
*UIConstraints: *OHPOpTray Tray2 *PageSize 8.5x13
*UIConstraints: *OHPOpTray Tray2 *PageSize 8.25x13
*UIConstraints: *OHPOpTray Tray2 *PageSize 8.125x13.25
*UIConstraints: *OHPOpTray Tray2 *PageSize 8K
*UIConstraints: *OHPOpTray Tray2 *PageSize A3Extra
*UIConstraints: *OHPOpTray Tray2 *PageSize A4Extra
*UIConstraints: *OHPOpTray Tray2 *PageSize A5Extra
*UIConstraints: *OHPOpTray Tray2 *PageSize B4Extra
*UIConstraints: *OHPOpTray Tray2 *PageSize B5Extra
*UIConstraints: *OHPOpTray Tray2 *PageSize TabloidExtra
*UIConstraints: *OHPOpTray Tray2 *PageSize LetterExtra
*UIConstraints: *OHPOpTray Tray2 *PageSize StatementExtra
*UIConstraints: *OHPOpTray Tray2 *PageSize LetterTab-F
*UIConstraints: *OHPOpTray Tray2 *PageSize A4Tab-F
*UIConstraints: *OHPOpTray Tray2 *TransparencyInterleave None
*UIConstraints: *OHPOpTray Tray3 *PageSize A6
*UIConstraints: *OHPOpTray Tray3 *PageSize B6
*UIConstraints: *OHPOpTray Tray3 *TransparencyInterleave None
*UIConstraints: *OHPOpTray Tray4 *PageSize A6
*UIConstraints: *OHPOpTray Tray4 *PageSize B6
*UIConstraints: *OHPOpTray Tray4 *TransparencyInterleave None
*UIConstraints: *OHPOpTray LCT_LaPlata *PageSize A5
*UIConstraints: *OHPOpTray LCT_LaPlata *PageSize A6
*UIConstraints: *OHPOpTray LCT_LaPlata *PageSize B6
*UIConstraints: *OHPOpTray LCT_LaPlata *PageSize Statement
*UIConstraints: *OHPOpTray LCT_LaPlata *PageSize JapanesePostCard
*UIConstraints: *OHPOpTray LCT_LaPlata *PageSize A5Extra
*UIConstraints: *OHPOpTray LCT_LaPlata *PageSize StatementExtra
*UIConstraints: *OHPOpTray LCT_LaPlata *TransparencyInterleave None
*UIConstraints: *OHPOpTray LCT_LaPlata *PaperSources None
*UIConstraints: *WaitMode ProofMode *TransparencyInterleave Blank
*UIConstraints: *PaperSources None *InputSlot LCT_LaPlata
*UIConstraints: *PaperSources None *FrontCoverTray LCT_LaPlata
*UIConstraints: *PaperSources None *BackCoverTray LCT_LaPlata
*UIConstraints: *PaperSources None *OHPOpTray LCT_LaPlata
*UIConstraints: *Finisher None *OutputBin SubTray
*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 ZFold1
*UIConstraints: *Finisher None *Fold ZFold2
*UIConstraints: *Finisher None *Fold Stitch
*UIConstraints: *Finisher None *Fold HalfFold
*UIConstraints: *Finisher None *Fold TriFold
*UIConstraints: *Finisher None *CoverSheetFeeder PI501
*UIConstraints: *Finisher None *ZfoldUnit ZU601(4H)
*UIConstraints: *Finisher None *ZfoldUnit ZU602(2H)
*UIConstraints: *Finisher None *ZfoldUnit ZU602(2-3H)
*UIConstraints: *Finisher None *ZfoldUnit ZU602(2-4H)
*UIConstraints: *Finisher None *ZfoldUnit PK502(2H)
*UIConstraints: *Finisher None *ZfoldUnit PK503(2H)
*UIConstraints: *Finisher None *ZfoldUnit PK504(4H)
*UIConstraints: *Finisher None *ZfoldUnit PK505(2-3H)
*UIConstraints: *Finisher None *ZfoldUnit PK505(2-4H)
*UIConstraints: *Finisher None *ZfoldUnit ZU601+PK504(4H)
*UIConstraints: *Finisher None *ZfoldUnit ZU602+PK502(2H)
*UIConstraints: *Finisher None *ZfoldUnit ZU602+PK503(2H)
*UIConstraints: *Finisher None *ZfoldUnit ZU602+PK505(2-3H)
*UIConstraints: *Finisher None *ZfoldUnit ZU602+PK505(2-4H)
*UIConstraints: *Finisher FS504 *Fold Stitch
*UIConstraints: *Finisher FS504 *Fold HalfFold
*UIConstraints: *Finisher FS504 *Fold TriFold
*UIConstraints: *Finisher FS505 *Fold Stitch
*UIConstraints: *Finisher FS505 *Fold HalfFold
*UIConstraints: *Finisher FS505 *Fold TriFold
*UIConstraints: *Finisher SF601 *OutputBin SubTray
*UIConstraints: *Finisher SF601 *Staple 1Staple(Left)
*UIConstraints: *Finisher SF601 *Staple 1Staple(Right)
*UIConstraints: *Finisher SF601 *Staple 2Staples
*UIConstraints: *Finisher SF601 *Punch 2holes
*UIConstraints: *Finisher SF601 *Punch 3holes
*UIConstraints: *Finisher SF601 *Punch 4holes
*UIConstraints: *Finisher SF601 *Fold ZFold1
*UIConstraints: *Finisher SF601 *Fold ZFold2
*UIConstraints: *Finisher SF601 *Fold Stitch
*UIConstraints: *Finisher SF601 *Fold HalfFold
*UIConstraints: *Finisher SF601 *Fold TriFold
*UIConstraints: *Finisher SF601 *CoverSheetFeeder PI501
*UIConstraints: *Finisher SF601 *ZfoldUnit ZU601(4H)
*UIConstraints: *Finisher SF601 *ZfoldUnit ZU602(2H)
*UIConstraints: *Finisher SF601 *ZfoldUnit ZU602(2-3H)
*UIConstraints: *Finisher SF601 *ZfoldUnit ZU602(2-4H)
*UIConstraints: *Finisher SF601 *ZfoldUnit PK502(2H)
*UIConstraints: *Finisher SF601 *ZfoldUnit PK503(2H)
*UIConstraints: *Finisher SF601 *ZfoldUnit PK504(4H)
*UIConstraints: *Finisher SF601 *ZfoldUnit PK505(2-3H)
*UIConstraints: *Finisher SF601 *ZfoldUnit PK505(2-4H)
*UIConstraints: *Finisher SF601 *ZfoldUnit ZU601+PK504(4H)
*UIConstraints: *Finisher SF601 *ZfoldUnit ZU602+PK502(2H)
*UIConstraints: *Finisher SF601 *ZfoldUnit ZU602+PK503(2H)
*UIConstraints: *Finisher SF601 *ZfoldUnit ZU602+PK505(2-3H)
*UIConstraints: *Finisher SF601 *ZfoldUnit ZU602+PK505(2-4H)
*UIConstraints: *CoverSheetFeeder None *PIFrontCover PITray1
*UIConstraints: *CoverSheetFeeder None *PIFrontCover PITray2
*UIConstraints: *CoverSheetFeeder None *PIBackCover PITray1
*UIConstraints: *CoverSheetFeeder None *PIBackCover PITray2
*UIConstraints: *CoverSheetFeeder PI501 *Finisher None
*UIConstraints: *CoverSheetFeeder PI501 *Finisher SF601
*UIConstraints: *ZfoldUnit None *Fold ZFold1
*UIConstraints: *ZfoldUnit None *Fold ZFold2
*UIConstraints: *ZfoldUnit ZU601(4H) *Punch 2holes
*UIConstraints: *ZfoldUnit ZU601(4H) *Punch 3holes
*UIConstraints: *ZfoldUnit ZU601(4H) *Finisher None
*UIConstraints: *ZfoldUnit ZU601(4H) *Finisher SF601
*UIConstraints: *ZfoldUnit ZU602(2H) *Punch 3holes
*UIConstraints: *ZfoldUnit ZU602(2H) *Punch 4holes
*UIConstraints: *ZfoldUnit ZU602(2H) *Finisher None
*UIConstraints: *ZfoldUnit ZU602(2H) *Finisher SF601
*UIConstraints: *ZfoldUnit ZU602(2-3H) *Punch 4holes
*UIConstraints: *ZfoldUnit ZU602(2-3H) *Finisher None
*UIConstraints: *ZfoldUnit ZU602(2-3H) *Finisher SF601
*UIConstraints: *ZfoldUnit ZU602(2-4H) *Punch 3holes
*UIConstraints: *ZfoldUnit ZU602(2-4H) *Finisher None
*UIConstraints: *ZfoldUnit ZU602(2-4H) *Finisher SF601
*UIConstraints: *ZfoldUnit PK502(2H) *Punch 3holes
*UIConstraints: *ZfoldUnit PK502(2H) *Punch 4holes
*UIConstraints: *ZfoldUnit PK502(2H) *Fold ZFold1
*UIConstraints: *ZfoldUnit PK502(2H) *Fold ZFold2
*UIConstraints: *ZfoldUnit PK502(2H) *Finisher None
*UIConstraints: *ZfoldUnit PK502(2H) *Finisher SF601
*UIConstraints: *ZfoldUnit PK503(2H) *Punch 3holes
*UIConstraints: *ZfoldUnit PK503(2H) *Punch 4holes
*UIConstraints: *ZfoldUnit PK503(2H) *Fold ZFold1
*UIConstraints: *ZfoldUnit PK503(2H) *Fold ZFold2
*UIConstraints: *ZfoldUnit PK503(2H) *Finisher None
*UIConstraints: *ZfoldUnit PK503(2H) *Finisher SF601
*UIConstraints: *ZfoldUnit PK504(4H) *Punch 2holes
*UIConstraints: *ZfoldUnit PK504(4H) *Punch 3holes
*UIConstraints: *ZfoldUnit PK504(4H) *Fold ZFold1
*UIConstraints: *ZfoldUnit PK504(4H) *Fold ZFold2
*UIConstraints: *ZfoldUnit PK504(4H) *Finisher None
*UIConstraints: *ZfoldUnit PK504(4H) *Finisher SF601
*UIConstraints: *ZfoldUnit PK505(2-3H) *Punch 4holes
*UIConstraints: *ZfoldUnit PK505(2-3H) *Fold ZFold1
*UIConstraints: *ZfoldUnit PK505(2-3H) *Fold ZFold2
*UIConstraints: *ZfoldUnit PK505(2-3H) *Finisher None
*UIConstraints: *ZfoldUnit PK505(2-3H) *Finisher SF601
*UIConstraints: *ZfoldUnit PK505(2-4H) *Punch 3holes
*UIConstraints: *ZfoldUnit PK505(2-4H) *Fold ZFold1
*UIConstraints: *ZfoldUnit PK505(2-4H) *Fold ZFold2
*UIConstraints: *ZfoldUnit PK505(2-4H) *Finisher None
*UIConstraints: *ZfoldUnit PK505(2-4H) *Finisher SF601
*UIConstraints: *ZfoldUnit ZU601+PK504(4H) *Punch 2holes
*UIConstraints: *ZfoldUnit ZU601+PK504(4H) *Punch 3holes
*UIConstraints: *ZfoldUnit ZU601+PK504(4H) *Finisher None
*UIConstraints: *ZfoldUnit ZU601+PK504(4H) *Finisher SF601
*UIConstraints: *ZfoldUnit ZU602+PK502(2H) *Punch 3holes
*UIConstraints: *ZfoldUnit ZU602+PK502(2H) *Punch 4holes
*UIConstraints: *ZfoldUnit ZU602+PK502(2H) *Finisher None
*UIConstraints: *ZfoldUnit ZU602+PK502(2H) *Finisher SF601
*UIConstraints: *ZfoldUnit ZU602+PK503(2H) *Punch 3holes
*UIConstraints: *ZfoldUnit ZU602+PK503(2H) *Punch 4holes
*UIConstraints: *ZfoldUnit ZU602+PK503(2H) *Finisher None
*UIConstraints: *ZfoldUnit ZU602+PK503(2H) *Finisher SF601
*UIConstraints: *ZfoldUnit ZU602+PK505(2-3H) *Punch 4holes
*UIConstraints: *ZfoldUnit ZU602+PK505(2-3H) *Finisher None
*UIConstraints: *ZfoldUnit ZU602+PK505(2-3H) *Finisher SF601
*UIConstraints: *ZfoldUnit ZU602+PK505(2-4H) *Punch 3holes
*UIConstraints: *ZfoldUnit ZU602+PK505(2-4H) *Finisher None
*UIConstraints: *ZfoldUnit ZU602+PK505(2-4H) *Finisher SF601
*UIConstraints: *Finisher SF601 *ZfoldUnit ZU602+PK505(2-4H)
*%
*% === 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 : 30000.0000 Phase3 Release
|