1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501
|
*PPD-Adobe: "4.3"
*%=============================================================================
*%
*% PPD for Kyocera Mita KM-6330 (Italian)
*% Linux Version
*%
*% Copyright (C) 2000 KYOCERA CORPORATION
*% Copyright (C) 2005 Revised Edition KYOCERA MITA CORPORATION
*%
*% Permission is hereby granted, free of charge, to any person obtaining
*% a copy of this software and associated documentation files (the
*% "Software"), to deal in the Software without restriction, including
*% without limitation the rights to use, copy, modify, merge, publish,
*% distribute, sublicense, and/or sell copies of the Software, and to
*% permit persons to whom the Software is furnished to do so, subject to
*% the following conditions:
*%
*% The above copyright notice and this permission notice shall be
*% included in all copies or substantial portions of the Software.
*%
*% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
*% EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
*% MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
*% NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
*% LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
*% OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
*% WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*%
*% [this is the MIT open source license -- see www.opensource.org]
*%
*%=============================================================================
*FileVersion: "8.2"
*FormatVersion: "4.3"
*LanguageEncoding: ISOLatin1
*PCFileName: "KM6330IT.PPD"
*LanguageVersion: Italian
*Product: "(KM-6330)"
*PSVersion: "(3010.106) 1"
*Manufacturer: "Kyocera Mita"
*ModelName: "Kyocera Mita KM-6330"
*ShortNickName: "Kyocera Mita KM-6330"
*NickName: "Kyocera Mita KM-6330"
*% Basic Device Capabilities
*LanguageLevel: "3"
*ColorDevice: False
*DefaultColorSpace: Gray
*TTRasterizer: Type42
*?TTRasterizer: "
save
42 /FontType resourcestatus
{ pop pop (Type42) }{ pop pop (None) } ifelse = flush
restore"
*End
*Throughput: "63"
*% System Management
*SuggestedJobTimeout: "0"
*SuggestedManualFeedTimeout: "0"
*SuggestedWaitTimeout: "120"
*PrintPSErrors: True
*Password: "0"
*ExitServer: " count 0 eq { true }
{ dup statusdict /checkpassword get exec not } ifelse
{ (WARNING : Cannot perform the exitserver command.) =
(Password supplied is not valid.) =
(Please contact the author of this software.) = flush quit } if
serverdict /exitserver get exec"
*End
*Reset: " count 0 eq { true }
{ dup statusdict /checkpassword get exec not } ifelse
{ (WARNING : Cannot perform the exitserver command.) =
(Password supplied is not valid.) =
(Please contact the author of this software.) = flush quit } if
serverdict /exitserver get exec
systemdict /quit get exec
(WARNING : Printer Reset Failed.) = flush"
*End
*% Protocols
*Protocols: BCP PJL TBCP
*%1284Modes Parallel: Compat Nibble ECP
*%1284DeviceID: "MFG:Kyocera Mita;MODEL:KM-6330;COMMAND SET: POSTSCRIPT,PJL,PCL"
*% JCL Information
*JCLBegin: "<1B>%-12345X@PJL JOB<0A>"
*JCLToPSInterpreter: "@PJL ENTER LANGUAGE=POSTSCRIPT<0A>"
*JCLEnd: "<1B>%-12345X@PJL EOJ<0A><1B>%-12345X"
*% Installable Options
*OpenGroup: InstallableOptions/Opzioni Installate
*% Option Feeder
*OpenUI *Opt01/Cassetto optionals: PickOne
*DefaultOpt01: None
*Opt01 None/Non Installato: ""
*Opt01 OF1/Cassettone laterale: ""
*?Opt01: "
save
(None) currentpagedevice dup /InputAttributes known {
/InputAttributes get
dup 5 known {dup 5 get null ne {exch pop (OF1) exch} if} if
} if pop
= flush restore"
*End
*CloseUI: *Opt01
*% Output Device Options
*OpenUI *Opt02/Finisher: PickOne
*DefaultOpt02: None
*Opt02 None/Non Installato: ""
*Opt02 OD1/Installato: ""
*?Opt02: "
save
currentpagedevice dup /OutputAttributes known {
/OutputAttributes get
dup 1 known {
1 get dup null ne {
/OutputType get
dup (STAPLER) eq { (OD1) } {
(None)
} ifelse
}{(None)} ifelse
}{(None)} ifelse
exch pop
}{
pop (None)
} ifelse
= flush restore"
*End
*CloseUI: *Opt02
*% Multi Tray
*OpenUI *Opt04/Multi Tray: PickOne
*DefaultOpt04: None
*Opt04 None/Non Installato: ""
*Opt04 MB1/Installato: ""
*?Opt04: "
save
currentpagedevice dup /OutputAttributes known {
/OutputAttributes get
dup 3 known {
3 get dup null ne {
/OutputType get
dup (MULTITRAY) eq { (MB1) } {
(None)
} ifelse
}{(None)} ifelse
}{(None)} ifelse
exch pop
}{
pop (None)
} ifelse
= flush restore"
*End
*CloseUI: *Opt04
*% Punch Unit
*OpenUI *Opt05/Unit<E0> punzonatura: PickOne
*DefaultOpt05: None
*Opt05 None/Non Installato: ""
*Opt05 2&3hole/2,3 Buchi: ""
*Opt05 2&4hole/2,4 Buchi: ""
*CloseUI: *Opt05
*% Booklet Folder
*OpenUI *Opt06/Folding Unit: PickOne
*DefaultOpt06: None
*Opt06 None/Non Installato: ""
*Opt06 BF1/Installato: ""
*?Opt06: "
save
currentpagedevice /Fold known {(BF1)}{(None)} ifelse
= flush restore"
*End
*CloseUI: *Opt06
*%Tandem Unit
*OpenUI *Opt07/Unit<E0> Tandem: PickOne
*DefaultOpt07: None
*Opt07 None/Non Installato: ""
*Opt07 TU1/Installato: ""
*CloseUI: *Opt07
*% Disk Drive=====
*OpenUI *Opt18/Disco Opzionale: PickOne
*DefaultOpt18: None
*Opt18 None/Non Installato: ""
*Opt18 HardDisk/Disco rigido: ""
*?Opt18: " save
false
(%disk?%)
{ currentdevparams dup /Writeable known
{ dup /Writeable get
{ exch pop /LogicalSize get dup 0 gt exch 102400 lt eq true }{ pop pop false } ifelse }
{ pop pop } ifelse
} 100 string /IODevice resourceforall
{ {(RAMDisk)}{(HardDisk)} ifelse }{(None)} ifelse = flush
restore"
*End
*CloseUI: *Opt18
*% Installed Memory
*OpenUI *InstalledMemory/Memoria: PickOne
*DefaultInstalledMemory: 32MB
*InstalledMemory 32MB/Standard: ""
*InstalledMemory 48MB/16MB Espansione: ""
*InstalledMemory 64MB/32MB Espansione: ""
*InstalledMemory 80MB/48MB Espansione: ""
*InstalledMemory 96MB/64MB Espansione: ""
*InstalledMemory 112MB/80MB Espansione: ""
*InstalledMemory 128MB/96MB Espansione: ""
*InstalledMemory 160MB/128MB Espansione: ""
*InstalledMemory 176MB/144MB Espansione: ""
*InstalledMemory 192MB/160MB Espansione: ""
*InstalledMemory 224MB/192MB Espansione: ""
*InstalledMemory 256MB/224MB Espansione: ""
*?InstalledMemory: "
save
currentsystemparams /RamSize get
524288 div ceiling cvi 2 div cvi
/vmsize 20 string def
vmsize cvs print (MB) print (\n) print flush
restore"
*End
*CloseUI: *InstalledMemory
*CloseGroup: InstallableOptions
*% Virtual Memory
*FreeVM: "16000000"
*VMOption 32MB: "16000000"
*VMOption 48MB: "30000000"
*VMOption 64MB: "32000000"
*VMOption 80MB: "32000000"
*VMOption 96MB: "32000000"
*VMOption 112MB: "32000000"
*VMOption 128MB: "32000000"
*VMOption 160MB: "32000000"
*VMOption 176MB: "32000000"
*VMOption 192MB: "32000000"
*VMOption 224MB: "32000000"
*VMOption 288MB: "32000000"
*% Option Device Constraints=====
*UIConstraints: *Opt02 None *Opt04 MB1
*UIConstraints: *Opt02 None *Opt05 2&3hole
*UIConstraints: *Opt02 None *Opt05 2&4hole
*UIConstraints: *Opt02 None *Opt06 BF1
*UIConstraints: *Opt04 MB1 *Opt02 None
*UIConstraints: *Opt05 2&3hole *Opt02 None
*UIConstraints: *Opt05 2&4hole *Opt02 None
*UIConstraints: *Opt06 BF1 *Opt02 None
*UIConstraints: *Opt01 None *InputSlot SideTray
*% Option Device - Finishing Constraints===========
*UIConstraints: *Opt02 None *KmOutput MainFD
*UIConstraints: *Opt02 None *KmOutput MainFU
*UIConstraints: *Opt02 None *KmOutput SubFD
*UIConstraints: *Opt02 None *KmOutput SubFU
*UIConstraints: *Opt02 None *KmStaple UPL
*UIConstraints: *Opt02 None *KmStaple UPR
*UIConstraints: *Opt02 None *KmStaple CL
*UIConstraints: *Opt02 None *KmStaple CR
*UIConstraints: *Opt02 None *KmStaple CU
*UIConstraints: *Opt02 None *Fold ON
*UIConstraints: *Opt02 None *Jog EndOfSet
*UIConstraints: *Opt02 OD1 *KmOutput Facedown
*UIConstraints: *Opt02 OD1 *KmOutput Faceup
*% Multi Tray Option - Multi Tray Constraints=======
*UIConstraints: *Opt04 None *KmOutput MT1Dn
*UIConstraints: *Opt04 None *KmOutput MT2Dn
*UIConstraints: *Opt04 None *KmOutput MT3Dn
*UIConstraints: *Opt04 None *KmOutput MT4Dn
*UIConstraints: *Opt04 None *KmOutput MT5Dn
*UIConstraints: *Opt04 None *KmOutput MT1Up
*UIConstraints: *Opt04 None *KmOutput MT2Up
*UIConstraints: *Opt04 None *KmOutput MT3Up
*UIConstraints: *Opt04 None *KmOutput MT4Up
*UIConstraints: *Opt04 None *KmOutput MT5Up
*UIConstraints: *Opt04 MB1 *KmOutput SubFD
*UIConstraints: *Opt04 MB1 *KmOutput SubFU
*% Punch Unit - Punch Constraints=================
*UIConstraints: *Opt05 None *KmPunch 2holesUSL
*UIConstraints: *Opt05 None *KmPunch 2holesUSR
*UIConstraints: *Opt05 None *KmPunch 2holesUSU
*UIConstraints: *Opt05 None *KmPunch 2holesEURL
*UIConstraints: *Opt05 None *KmPunch 2holesEURR
*UIConstraints: *Opt05 None *KmPunch 2holesEURU
*UIConstraints: *Opt05 None *KmPunch 3holesL
*UIConstraints: *Opt05 None *KmPunch 3holesR
*UIConstraints: *Opt05 None *KmPunch 3holesU
*UIConstraints: *Opt05 None *KmPunch 4holesL
*UIConstraints: *Opt05 None *KmPunch 4holesR
*UIConstraints: *Opt05 None *KmPunch 4holesU
*UIConstraints: *Opt05 2&3hole *KmPunch 4holesL
*UIConstraints: *Opt05 2&3hole *KmPunch 4holesR
*UIConstraints: *Opt05 2&3hole *KmPunch 4holesU
*UIConstraints: *Opt05 2&3hole *KmPunch 2holesEURL
*UIConstraints: *Opt05 2&3hole *KmPunch 2holesEURR
*UIConstraints: *Opt05 2&3hole *KmPunch 2holesEURU
*UIConstraints: *Opt05 2&4hole *KmPunch 3holesL
*UIConstraints: *Opt05 2&4hole *KmPunch 3holesR
*UIConstraints: *Opt05 2&4hole *KmPunch 3holesU
*UIConstraints: *Opt05 2&4hole *KmPunch 2holesUSL
*UIConstraints: *Opt05 2&4hole *KmPunch 2holesUSR
*UIConstraints: *Opt05 2&4hole *KmPunch 2holesUSU
*%UIConstraints: *Opt06 None *Fold ON
*% Tandem Unit Constraints========================
*UIConstraints: *Opt07 None *KmTandem on
*UIConstraints: *KmTandem on *Opt07 None
*% Optinal Disk Constraints=========================
*UIConstraints: *Opt18 None *KMCollate Temp
*UIConstraints: *Opt18 None *KMCollate Perm
*UIConstraints: *Opt18 None *KMCollate VMBAdmin
*UIConstraints: *Opt18 None *KMCollate VMBUser01
*UIConstraints: *Opt18 None *KMCollate VMBUser02
*UIConstraints: *Opt18 None *KMCollate VMBUser03
*UIConstraints: *Opt18 None *KMCollate VMBUser04
*UIConstraints: *Opt18 None *KMCollate VMBUser05
*UIConstraints: *Opt18 None *KMCollate VMBUser06
*UIConstraints: *Opt18 None *KMCollate VMBUser07
*UIConstraints: *Opt18 None *KMCollate VMBUser08
*UIConstraints: *Opt18 None *KMCollate VMBUser09
*UIConstraints: *Opt18 None *KMCollate VMBUser10
*UIConstraints: *Opt18 None *KMBarcodeMode First
*UIConstraints: *Opt18 None *KMBarcodeMode All
*%InputSlot-PageSize Constraints=====
*UIConstraints: *InputSlot Tray1 *PageSize A3
*UIConstraints: *InputSlot Tray1 *PageSize A5
*UIConstraints: *InputSlot Tray1 *PageSize A6
*UIConstraints: *InputSlot Tray1 *PageSize B4
*UIConstraints: *InputSlot Tray1 *PageSize B5
*UIConstraints: *InputSlot Tray1 *PageSize B6
*UIConstraints: *InputSlot Tray1 *PageSize Folio
*UIConstraints: *InputSlot Tray1 *PageSize Oficio2
*UIConstraints: *InputSlot Tray1 *PageSize Legal
*UIConstraints: *InputSlot Tray1 *PageSize Tabloid
*UIConstraints: *InputSlot Tray1 *PageSize Executive
*UIConstraints: *InputSlot Tray1 *PageSize Env10
*UIConstraints: *InputSlot Tray1 *PageSize EnvDL
*UIConstraints: *InputSlot Tray1 *PageSize EnvC5
*UIConstraints: *InputSlot Tray1 *PageSize Statement
*UIConstraints: *InputSlot Tray2 *PageSize A6
*UIConstraints: *InputSlot Tray2 *PageSize B6
*UIConstraints: *InputSlot Tray2 *PageSize Executive
*UIConstraints: *InputSlot Tray2 *PageSize Env10
*UIConstraints: *InputSlot Tray2 *PageSize EnvDL
*UIConstraints: *InputSlot Tray2 *PageSize EnvC5
*UIConstraints: *InputSlot Tray3 *PageSize A6
*UIConstraints: *InputSlot Tray3 *PageSize B6
*UIConstraints: *InputSlot Tray3 *PageSize Executive
*UIConstraints: *InputSlot Tray3 *PageSize Env10
*UIConstraints: *InputSlot Tray3 *PageSize EnvDL
*UIConstraints: *InputSlot Tray3 *PageSize EnvC5
*UIConstraints: *InputSlot SideTray *PageSize A3
*UIConstraints: *InputSlot SideTray *PageSize A5
*UIConstraints: *InputSlot SideTray *PageSize A6
*UIConstraints: *InputSlot SideTray *PageSize B4
*UIConstraints: *InputSlot SideTray *PageSize B6
*UIConstraints: *InputSlot SideTray *PageSize Folio
*UIConstraints: *InputSlot SideTray *PageSize Oficio2
*UIConstraints: *InputSlot SideTray *PageSize Legal
*UIConstraints: *InputSlot SideTray *PageSize Tabloid
*UIConstraints: *InputSlot SideTray *PageSize Executive
*UIConstraints: *InputSlot SideTray *PageSize Statement
*UIConstraints: *InputSlot SideTray *PageSize Env10
*UIConstraints: *InputSlot SideTray *PageSize EnvDL
*UIConstraints: *InputSlot SideTray *PageSize EnvC5
*UIConstraints: *PageSize A3 *InputSlot Tray1
*UIConstraints: *PageSize A5 *InputSlot Tray1
*UIConstraints: *PageSize A6 *InputSlot Tray1
*UIConstraints: *PageSize B4 *InputSlot Tray1
*UIConstraints: *PageSize B5 *InputSlot Tray1
*UIConstraints: *PageSize B6 *InputSlot Tray1
*UIConstraints: *PageSize Env10 *InputSlot Tray1
*UIConstraints: *PageSize EnvDL *InputSlot Tray1
*UIConstraints: *PageSize EnvC5 *InputSlot Tray1
*UIConstraints: *PageSize Folio *InputSlot Tray1
*UIConstraints: *PageSize Oficio2 *InputSlot Tray1
*UIConstraints: *PageSize Legal *InputSlot Tray1
*UIConstraints: *PageSize Tabloid *InputSlot Tray1
*UIConstraints: *PageSize Executive *InputSlot Tray1
*UIConstraints: *PageSize Statement *InputSlot Tray1
*UIConstraints: *PageSize A6 *InputSlot Tray2
*UIConstraints: *PageSize B6 *InputSlot Tray2
*UIConstraints: *PageSize Executive *InputSlot Tray2
*UIConstraints: *PageSize Env10 *InputSlot Tray2
*UIConstraints: *PageSize EnvDL *InputSlot Tray2
*UIConstraints: *PageSize EnvC5 *InputSlot Tray2
*UIConstraints: *PageSize A6 *InputSlot Tray3
*UIConstraints: *PageSize B6 *InputSlot Tray3
*UIConstraints: *PageSize Executive *InputSlot Tray3
*UIConstraints: *PageSize Env10 *InputSlot Tray3
*UIConstraints: *PageSize EnvDL *InputSlot Tray3
*UIConstraints: *PageSize EnvC5 *InputSlot Tray3
*UIConstraints: *PageSize A3 *InputSlot SideTray
*UIConstraints: *PageSize A5 *InputSlot SideTray
*UIConstraints: *PageSize A6 *InputSlot SideTray
*UIConstraints: *PageSize B4 *InputSlot SideTray
*UIConstraints: *PageSize B6 *InputSlot SideTray
*UIConstraints: *PageSize Folio *InputSlot SideTray
*UIConstraints: *PageSize Oficio2 *InputSlot SideTray
*UIConstraints: *PageSize Legal *InputSlot SideTray
*UIConstraints: *PageSize Tabloid *InputSlot SideTray
*UIConstraints: *PageSize Executive *InputSlot SideTray
*UIConstraints: *PageSize Statement *InputSlot SideTray
*UIConstraints: *PageSize Env10 *InputSlot SideTray
*UIConstraints: *PageSize EnvDL *InputSlot SideTray
*UIConstraints: *PageSize EnvC5 *InputSlot SideTray
*% Duplex-PageSize Constraints==============================
*UIConstraints: *PageSize A6 *Duplex DuplexTumble
*UIConstraints: *PageSize B6 *Duplex DuplexTumble
*UIConstraints: *PageSize Env10 *Duplex DuplexTumble
*UIConstraints: *PageSize EnvDL *Duplex DuplexTumble
*UIConstraints: *PageSize EnvC5 *Duplex DuplexTumble
*UIConstraints: *PageSize A6 *Duplex DuplexNoTumble
*UIConstraints: *PageSize B6 *Duplex DuplexNoTumble
*UIConstraints: *PageSize Env10 *Duplex DuplexNoTumble
*UIConstraints: *PageSize EnvDL *Duplex DuplexNoTumble
*UIConstraints: *PageSize EnvC5 *Duplex DuplexNoTumble
*UIConstraints: *Duplex *PageSize A6
*UIConstraints: *Duplex *PageSize B6
*UIConstraints: *Duplex *PageSize Env10
*UIConstraints: *Duplex *PageSize EnvDL
*UIConstraints: *Duplex *PageSize EnvC5
*% Booklet-PageSize Constraints==============================
*UIConstraints: *PageSize A3 *Booklet LeftOpen
*UIConstraints: *PageSize A5 *Booklet LeftOpen
*UIConstraints: *PageSize A6 *Booklet LeftOpen
*UIConstraints: *PageSize B4 *Booklet LeftOpen
*UIConstraints: *PageSize B6 *Booklet LeftOpen
*UIConstraints: *PageSize Folio *Booklet LeftOpen
*UIConstraints: *PageSize Oficio2 *Booklet LeftOpen
*UIConstraints: *PageSize Tabloid *Booklet LeftOpen
*UIConstraints: *PageSize Legal *Booklet LeftOpen
*UIConstraints: *PageSize Executive *Booklet LeftOpen
*UIConstraints: *PageSize Statement *Booklet LeftOpen
*UIConstraints: *PageSize Env10 *Booklet LeftOpen
*UIConstraints: *PageSize EnvDL *Booklet LeftOpen
*UIConstraints: *PageSize EnvC5 *Booklet LeftOpen
*UIConstraints: *PageSize A3 *Booklet RightOpen
*UIConstraints: *PageSize A5 *Booklet RightOpen
*UIConstraints: *PageSize A6 *Booklet RightOpen
*UIConstraints: *PageSize B4 *Booklet RightOpen
*UIConstraints: *PageSize B6 *Booklet RightOpen
*UIConstraints: *PageSize Folio *Booklet RightOpen
*UIConstraints: *PageSize Oficio2 *Booklet RightOpen
*UIConstraints: *PageSize Tabloid *Booklet RightOpen
*UIConstraints: *PageSize Legal *Booklet RightOpen
*UIConstraints: *PageSize Executive *Booklet RightOpen
*UIConstraints: *PageSize Statement *Booklet RightOpen
*UIConstraints: *PageSize Env10 *Booklet RightOpen
*UIConstraints: *PageSize EnvDL *Booklet RightOpen
*UIConstraints: *PageSize EnvC5 *Booklet RightOpen
*UIConstraints: *Booklet LeftOpen *PageSize A3
*UIConstraints: *Booklet LeftOpen *PageSize A5
*UIConstraints: *Booklet LeftOpen *PageSize A6
*UIConstraints: *Booklet LeftOpen *PageSize B4
*UIConstraints: *Booklet LeftOpen *PageSize B6
*UIConstraints: *Booklet LeftOpen *PageSize Folio
*UIConstraints: *Booklet LeftOpen *PageSize Oficio2
*UIConstraints: *Booklet LeftOpen *PageSize Tabloid
*UIConstraints: *Booklet LeftOpen *PageSize Legal
*UIConstraints: *Booklet LeftOpen *PageSize Executive
*UIConstraints: *Booklet LeftOpen *PageSize Statement
*UIConstraints: *Booklet LeftOpen *PageSize Env10
*UIConstraints: *Booklet LeftOpen *PageSize EnvDL
*UIConstraints: *Booklet LeftOpen *PageSize EnvC5
*UIConstraints: *Booklet RightOpen *PageSize A3
*UIConstraints: *Booklet RightOpen *PageSize A5
*UIConstraints: *Booklet RightOpen *PageSize A6
*UIConstraints: *Booklet RightOpen *PageSize B4
*UIConstraints: *Booklet RightOpen *PageSize B6
*UIConstraints: *Booklet RightOpen *PageSize Folio
*UIConstraints: *Booklet RightOpen *PageSize Oficio2
*UIConstraints: *Booklet RightOpen *PageSize Tabloid
*UIConstraints: *Booklet RightOpen *PageSize Legal
*UIConstraints: *Booklet RightOpen *PageSize Executive
*UIConstraints: *Booklet RightOpen *PageSize Statement
*UIConstraints: *Booklet RightOpen *PageSize Env10
*UIConstraints: *Booklet RightOpen *PageSize EnvDL
*UIConstraints: *Booklet RightOpen *PageSize EnvC5
*%Finish - PageSize Constraints=====
*UIConstraints: *PageSize A6 *KmOutput Facedown
*UIConstraints: *PageSize A6 *KmOutput MainFD
*UIConstraints: *PageSize A6 *KmOutput SubFD
*UIConstraints: *PageSize A6 *KmOutput SubFU
*UIConstraints: *PageSize A6 *KmOutput MT1Dn
*UIConstraints: *PageSize A6 *KmOutput MT2Dn
*UIConstraints: *PageSize A6 *KmOutput MT3Dn
*UIConstraints: *PageSize A6 *KmOutput MT4Dn
*UIConstraints: *PageSize A6 *KmOutput MT5Dn
*UIConstraints: *PageSize B6 *KmOutput Facedown
*UIConstraints: *PageSize B6 *KmOutput MainFD
*UIConstraints: *PageSize B6 *KmOutput SubFD
*UIConstraints: *PageSize B6 *KmOutput SubFU
*UIConstraints: *PageSize B6 *KmOutput MT1Dn
*UIConstraints: *PageSize B6 *KmOutput MT2Dn
*UIConstraints: *PageSize B6 *KmOutput MT3Dn
*UIConstraints: *PageSize B6 *KmOutput MT4Dn
*UIConstraints: *PageSize B6 *KmOutput MT5Dn
*UIConstraints: *PageSize Executive *KmOutput SubFD
*UIConstraints: *PageSize Executive *KmOutput SubFU
*UIConstraints: *PageSize Env10 *KmOutput MainFD
*UIConstraints: *PageSize Env10 *KmOutput SubFD
*UIConstraints: *PageSize Env10 *KmOutput SubFU
*UIConstraints: *PageSize Env10 *KmOutput MT1Dn
*UIConstraints: *PageSize Env10 *KmOutput MT2Dn
*UIConstraints: *PageSize Env10 *KmOutput MT3Dn
*UIConstraints: *PageSize Env10 *KmOutput MT4Dn
*UIConstraints: *PageSize Env10 *KmOutput MT5Dn
*UIConstraints: *PageSize Env10 *KmOutput Facedown
*UIConstraints: *PageSize EnvDL *KmOutput MainFD
*UIConstraints: *PageSize EnvDL *KmOutput SubFD
*UIConstraints: *PageSize EnvDL *KmOutput SubFU
*UIConstraints: *PageSize EnvDL *KmOutput MT1Dn
*UIConstraints: *PageSize EnvDL *KmOutput MT2Dn
*UIConstraints: *PageSize EnvDL *KmOutput MT3Dn
*UIConstraints: *PageSize EnvDL *KmOutput MT4Dn
*UIConstraints: *PageSize EnvDL *KmOutput MT5Dn
*UIConstraints: *PageSize EnvDL *KmOutput Facedown
*UIConstraints: *PageSize EnvC5 *KmOutput MainFD
*UIConstraints: *PageSize EnvC5 *KmOutput SubFD
*UIConstraints: *PageSize EnvC5 *KmOutput SubFU
*UIConstraints: *PageSize EnvC5 *KmOutput MT1Dn
*UIConstraints: *PageSize EnvC5 *KmOutput MT2Dn
*UIConstraints: *PageSize EnvC5 *KmOutput MT3Dn
*UIConstraints: *PageSize EnvC5 *KmOutput MT4Dn
*UIConstraints: *PageSize EnvC5 *KmOutput MT5Dn
*%Punch - PageSize==
*UIConstraints: *KmPunch 2holesEURL *PageSize A6
*UIConstraints: *KmPunch 2holesEURL *PageSize B6
*UIConstraints: *KmPunch 2holesEURL *PageSize Oficio2
*UIConstraints: *KmPunch 2holesEURL *PageSize Tabloid
*UIConstraints: *KmPunch 2holesEURL *PageSize Executive
*UIConstraints: *KmPunch 2holesEURL *PageSize Statement
*UIConstraints: *KmPunch 2holesEURL *PageSize Env10
*UIConstraints: *KmPunch 2holesEURL *PageSize EnvDL
*UIConstraints: *KmPunch 2holesEURL *PageSize EnvC5
*UIConstraints: *KmPunch 2holesEURR *PageSize A6
*UIConstraints: *KmPunch 2holesEURR *PageSize B6
*UIConstraints: *KmPunch 2holesEURR *PageSize Oficio2
*UIConstraints: *KmPunch 2holesEURR *PageSize Tabloid
*UIConstraints: *KmPunch 2holesEURR *PageSize Executive
*UIConstraints: *KmPunch 2holesEURR *PageSize Statement
*UIConstraints: *KmPunch 2holesEURR *PageSize Env10
*UIConstraints: *KmPunch 2holesEURR *PageSize EnvDL
*UIConstraints: *KmPunch 2holesEURR *PageSize EnvC5
*UIConstraints: *KmPunch 2holesEURU *PageSize A6
*UIConstraints: *KmPunch 2holesEURU *PageSize B6
*UIConstraints: *KmPunch 2holesEURU *PageSize Oficio2
*UIConstraints: *KmPunch 2holesEURU *PageSize Tabloid
*UIConstraints: *KmPunch 2holesEURU *PageSize Executive
*UIConstraints: *KmPunch 2holesEURU *PageSize Statement
*UIConstraints: *KmPunch 2holesEURR *PageSize Env10
*UIConstraints: *KmPunch 2holesEURR *PageSize EnvDL
*UIConstraints: *KmPunch 2holesEURR *PageSize EnvC5
*UIConstraints: *KmPunch 2holesUSL *PageSize A6
*UIConstraints: *KmPunch 2holesUSL *PageSize B6
*UIConstraints: *KmPunch 2holesUSL *PageSize Oficio2
*UIConstraints: *KmPunch 2holesUSL *PageSize Tabloid
*UIConstraints: *KmPunch 2holesUSL *PageSize Executive
*UIConstraints: *KmPunch 2holesUSL *PageSize Statement
*UIConstraints: *KmPunch 2holesUSL *PageSize Env10
*UIConstraints: *KmPunch 2holesUSL *PageSize EnvDL
*UIConstraints: *KmPunch 2holesUSL *PageSize EnvC5
*UIConstraints: *KmPunch 2holesUSR *PageSize A6
*UIConstraints: *KmPunch 2holesUSR *PageSize B6
*UIConstraints: *KmPunch 2holesUSR *PageSize Oficio2
*UIConstraints: *KmPunch 2holesUSR *PageSize Tabloid
*UIConstraints: *KmPunch 2holesUSR *PageSize Executive
*UIConstraints: *KmPunch 2holesUSR *PageSize Statement
*UIConstraints: *KmPunch 2holesUSR *PageSize Env10
*UIConstraints: *KmPunch 2holesUSR *PageSize EnvDL
*UIConstraints: *KmPunch 2holesUSR *PageSize EnvC5
*UIConstraints: *KmPunch 2holesUSU *PageSize A6
*UIConstraints: *KmPunch 2holesUSU *PageSize B6
*UIConstraints: *KmPunch 2holesUSU *PageSize Oficio2
*UIConstraints: *KmPunch 2holesUSU *PageSize Tabloid
*UIConstraints: *KmPunch 2holesUSU *PageSize Executive
*UIConstraints: *KmPunch 2holesUSU *PageSize Statement
*UIConstraints: *KmPunch 2holesUSU *PageSize Env10
*UIConstraints: *KmPunch 2holesUSU *PageSize EnvDL
*UIConstraints: *KmPunch 2holesUSU *PageSize EnvC5
*UIConstraints: *KmPunch 3holesL *PageSize A3
*UIConstraints: *KmPunch 3holesL *PageSize A4
*UIConstraints: *KmPunch 3holesL *PageSize A5
*UIConstraints: *KmPunch 3holesL *PageSize A6
*UIConstraints: *KmPunch 3holesL *PageSize B4
*UIConstraints: *KmPunch 3holesL *PageSize B5
*UIConstraints: *KmPunch 3holesL *PageSize B6
*UIConstraints: *KmPunch 3holesL *PageSize Folio
*UIConstraints: *KmPunch 3holesL *PageSize Oficio2
*UIConstraints: *KmPunch 3holesL *PageSize Legal
*UIConstraints: *KmPunch 3holesL *PageSize Executive
*UIConstraints: *KmPunch 3holesL *PageSize Statement
*UIConstraints: *KmPunch 3holesL *PageSize Env10
*UIConstraints: *KmPunch 3holesL *PageSize EnvDL
*UIConstraints: *KmPunch 3holesL *PageSize EnvC5
*UIConstraints: *KmPunch 3holesR *PageSize A3
*UIConstraints: *KmPunch 3holesR *PageSize A4
*UIConstraints: *KmPunch 3holesR *PageSize A5
*UIConstraints: *KmPunch 3holesR *PageSize A6
*UIConstraints: *KmPunch 3holesR *PageSize B4
*UIConstraints: *KmPunch 3holesR *PageSize B5
*UIConstraints: *KmPunch 3holesR *PageSize B6
*UIConstraints: *KmPunch 3holesR *PageSize Folio
*UIConstraints: *KmPunch 3holesR *PageSize Oficio2
*UIConstraints: *KmPunch 3holesR *PageSize Legal
*UIConstraints: *KmPunch 3holesR *PageSize Executive
*UIConstraints: *KmPunch 3holesR *PageSize Statement
*UIConstraints: *KmPunch 3holesR *PageSize Env10
*UIConstraints: *KmPunch 3holesR *PageSize EnvDL
*UIConstraints: *KmPunch 3holesR *PageSize EnvC5
*UIConstraints: *KmPunch 3holesU *PageSize A3
*UIConstraints: *KmPunch 3holesU *PageSize A4
*UIConstraints: *KmPunch 3holesU *PageSize A5
*UIConstraints: *KmPunch 3holesU *PageSize A6
*UIConstraints: *KmPunch 3holesU *PageSize B4
*UIConstraints: *KmPunch 3holesU *PageSize B5
*UIConstraints: *KmPunch 3holesU *PageSize B6
*UIConstraints: *KmPunch 3holesU *PageSize Folio
*UIConstraints: *KmPunch 3holesU *PageSize Oficio2
*UIConstraints: *KmPunch 3holesU *PageSize Legal
*UIConstraints: *KmPunch 3holesU *PageSize Executive
*UIConstraints: *KmPunch 3holesU *PageSize Statement
*UIConstraints: *KmPunch 3holesU *PageSize Env10
*UIConstraints: *KmPunch 3holesU *PageSize EnvDL
*UIConstraints: *KmPunch 3holesU *PageSize EnvC5
*UIConstraints: *KmPunch 4holesL *PageSize A5
*UIConstraints: *KmPunch 4holesL *PageSize A6
*UIConstraints: *KmPunch 4holesL *PageSize B4
*UIConstraints: *KmPunch 4holesL *PageSize B5
*UIConstraints: *KmPunch 4holesL *PageSize B6
*UIConstraints: *KmPunch 4holesL *PageSize Folio
*UIConstraints: *KmPunch 4holesL *PageSize Oficio2
*UIConstraints: *KmPunch 4holesL *PageSize Tabloid
*UIConstraints: *KmPunch 4holesL *PageSize Legal
*UIConstraints: *KmPunch 4holesL *PageSize Letter
*UIConstraints: *KmPunch 4holesL *PageSize Executive
*UIConstraints: *KmPunch 4holesL *PageSize Statement
*UIConstraints: *KmPunch 4holesL *PageSize Env10
*UIConstraints: *KmPunch 4holesL *PageSize EnvDL
*UIConstraints: *KmPunch 4holesL *PageSize EnvC5
*UIConstraints: *KmPunch 4holesR *PageSize A5
*UIConstraints: *KmPunch 4holesR *PageSize A6
*UIConstraints: *KmPunch 4holesR *PageSize B4
*UIConstraints: *KmPunch 4holesR *PageSize B5
*UIConstraints: *KmPunch 4holesR *PageSize B6
*UIConstraints: *KmPunch 4holesR *PageSize Folio
*UIConstraints: *KmPunch 4holesR *PageSize Oficio2
*UIConstraints: *KmPunch 4holesR *PageSize Tabloid
*UIConstraints: *KmPunch 4holesR *PageSize Legal
*UIConstraints: *KmPunch 4holesR *PageSize Letter
*UIConstraints: *KmPunch 4holesR *PageSize Executive
*UIConstraints: *KmPunch 4holesR *PageSize Statement
*UIConstraints: *KmPunch 4holesR *PageSize Env10
*UIConstraints: *KmPunch 4holesR *PageSize EnvDL
*UIConstraints: *KmPunch 4holesR *PageSize EnvC5
*UIConstraints: *KmPunch 4holesU *PageSize A5
*UIConstraints: *KmPunch 4holesU *PageSize A6
*UIConstraints: *KmPunch 4holesU *PageSize B4
*UIConstraints: *KmPunch 4holesU *PageSize B5
*UIConstraints: *KmPunch 4holesU *PageSize B6
*UIConstraints: *KmPunch 4holesU *PageSize Folio
*UIConstraints: *KmPunch 4holesU *PageSize Oficio2
*UIConstraints: *KmPunch 4holesU *PageSize Tabloid
*UIConstraints: *KmPunch 4holesU *PageSize Legal
*UIConstraints: *KmPunch 4holesU *PageSize Letter
*UIConstraints: *KmPunch 4holesU *PageSize Executive
*UIConstraints: *KmPunch 4holesU *PageSize Statement
*UIConstraints: *KmPunch 4holesU *PageSize Env10
*UIConstraints: *KmPunch 4holesU *PageSize EnvDL
*UIConstraints: *KmPunch 4holesU *PageSize EnvC5
*UIConstraints: *PageSize A6 *KmPunch 2holesEURL
*UIConstraints: *PageSize B6 *KmPunch 2holesEURL
*UIConstraints: *PageSize Oficio2 *KmPunch 2holesEURL
*UIConstraints: *PageSize Tabloid *KmPunch 2holesEURL
*UIConstraints: *PageSize Executive *KmPunch 2holesEURL
*UIConstraints: *PageSize Statement *KmPunch 2holesEURL
*UIConstraints: *PageSize Env10 *KmPunch 2holesEURL
*UIConstraints: *PageSize EnvDL *KmPunch 2holesEURL
*UIConstraints: *PageSize EnvC5 *KmPunch 2holesEURL
*UIConstraints: *PageSize A6 *KmPunch 2holesEURR
*UIConstraints: *PageSize B6 *KmPunch 2holesEURR
*UIConstraints: *PageSize Oficio2 *KmPunch 2holesEURR
*UIConstraints: *PageSize Tabloid *KmPunch 2holesEURR
*UIConstraints: *PageSize Executive *KmPunch 2holesEURR
*UIConstraints: *PageSize Statement *KmPunch 2holesEURR
*UIConstraints: *PageSize Env10 *KmPunch 2holesEURR
*UIConstraints: *PageSize EnvDL *KmPunch 2holesEURR
*UIConstraints: *PageSize EnvC5 *KmPunch 2holesEURR
*UIConstraints: *PageSize A6 *KmPunch 2holesEURU
*UIConstraints: *PageSize B6 *KmPunch 2holesEURU
*UIConstraints: *PageSize Oficio2 *KmPunch 2holesEURU
*UIConstraints: *PageSize Tabloid *KmPunch 2holesEURU
*UIConstraints: *PageSize Executive *KmPunch 2holesEURU
*UIConstraints: *PageSize Statement *KmPunch 2holesEURU
*UIConstraints: *PageSize Env10 *KmPunch 2holesEURU
*UIConstraints: *PageSize EnvDL *KmPunch 2holesEURU
*UIConstraints: *PageSize EnvC5 *KmPunch 2holesEURU
*UIConstraints: *PageSize A6 *KmPunch 2holesUSL
*UIConstraints: *PageSize B6 *KmPunch 2holesUSL
*UIConstraints: *PageSize Oficio2 *KmPunch 2holesUSL
*UIConstraints: *PageSize Tabloid *KmPunch 2holesUSL
*UIConstraints: *PageSize Executive *KmPunch 2holesUSL
*UIConstraints: *PageSize Statement *KmPunch 2holesUSL
*UIConstraints: *PageSize Env10 *KmPunch 2holesUSL
*UIConstraints: *PageSize EnvDL *KmPunch 2holesUSL
*UIConstraints: *PageSize EnvC5 *KmPunch 2holesUSL
*UIConstraints: *PageSize A6 *KmPunch 2holesUSR
*UIConstraints: *PageSize B6 *KmPunch 2holesUSR
*UIConstraints: *PageSize Oficio2 *KmPunch 2holesUSR
*UIConstraints: *PageSize Tabloid *KmPunch 2holesUSR
*UIConstraints: *PageSize Executive *KmPunch 2holesUSR
*UIConstraints: *PageSize Statement *KmPunch 2holesUSR
*UIConstraints: *PageSize Env10 *KmPunch 2holesUSR
*UIConstraints: *PageSize EnvDL *KmPunch 2holesUSR
*UIConstraints: *PageSize EnvC5 *KmPunch 2holesUSR
*UIConstraints: *PageSize A6 *KmPunch 2holesUSU
*UIConstraints: *PageSize B6 *KmPunch 2holesUSU
*UIConstraints: *PageSize Oficio2 *KmPunch 2holesUSU
*UIConstraints: *PageSize Tabloid *KmPunch 2holesUSU
*UIConstraints: *PageSize Executive *KmPunch 2holesUSU
*UIConstraints: *PageSize Statement *KmPunch 2holesUSU
*UIConstraints: *PageSize Env10 *KmPunch 2holesUSU
*UIConstraints: *PageSize EnvDL *KmPunch 2holesUSU
*UIConstraints: *PageSize EnvC5 *KmPunch 2holesUSU
*UIConstraints: *PageSize A3 *KmPunch 3holesL
*UIConstraints: *PageSize A4 *KmPunch 3holesL
*UIConstraints: *PageSize A5 *KmPunch 3holesL
*UIConstraints: *PageSize A6 *KmPunch 3holesL
*UIConstraints: *PageSize B4 *KmPunch 3holesL
*UIConstraints: *PageSize B5 *KmPunch 3holesL
*UIConstraints: *PageSize B6 *KmPunch 3holesL
*UIConstraints: *PageSize Folio *KmPunch 3holesL
*UIConstraints: *PageSize Oficio2 *KmPunch 3holesL
*UIConstraints: *PageSize Legal *KmPunch 3holesL
*UIConstraints: *PageSize Executive *KmPunch 3holesL
*UIConstraints: *PageSize Statement *KmPunch 3holesL
*UIConstraints: *PageSize Env10 *KmPunch 3holesL
*UIConstraints: *PageSize EnvDL *KmPunch 3holesL
*UIConstraints: *PageSize EnvC5 *KmPunch 3holesL
*UIConstraints: *PageSize A3 *KmPunch 3holesR
*UIConstraints: *PageSize A4 *KmPunch 3holesR
*UIConstraints: *PageSize A5 *KmPunch 3holesR
*UIConstraints: *PageSize A6 *KmPunch 3holesR
*UIConstraints: *PageSize B4 *KmPunch 3holesR
*UIConstraints: *PageSize B5 *KmPunch 3holesR
*UIConstraints: *PageSize B6 *KmPunch 3holesR
*UIConstraints: *PageSize Folio *KmPunch 3holesR
*UIConstraints: *PageSize Oficio2 *KmPunch 3holesR
*UIConstraints: *PageSize Legal *KmPunch 3holesR
*UIConstraints: *PageSize Executive *KmPunch 3holesR
*UIConstraints: *PageSize Statement *KmPunch 3holesR
*UIConstraints: *PageSize Env10 *KmPunch 3holesR
*UIConstraints: *PageSize EnvDL *KmPunch 3holesR
*UIConstraints: *PageSize EnvC5 *KmPunch 3holesR
*UIConstraints: *PageSize A3 *KmPunch 3holesU
*UIConstraints: *PageSize A4 *KmPunch 3holesU
*UIConstraints: *PageSize A5 *KmPunch 3holesU
*UIConstraints: *PageSize A6 *KmPunch 3holesU
*UIConstraints: *PageSize B4 *KmPunch 3holesU
*UIConstraints: *PageSize B5 *KmPunch 3holesU
*UIConstraints: *PageSize B6 *KmPunch 3holesU
*UIConstraints: *PageSize Folio *KmPunch 3holesU
*UIConstraints: *PageSize Oficio2 *KmPunch 3holesU
*UIConstraints: *PageSize Legal *KmPunch 3holesU
*UIConstraints: *PageSize Executive *KmPunch 3holesU
*UIConstraints: *PageSize Statement *KmPunch 3holesU
*UIConstraints: *PageSize Env10 *KmPunch 3holesU
*UIConstraints: *PageSize EnvDL *KmPunch 3holesU
*UIConstraints: *PageSize EnvC5 *KmPunch 3holesU
*UIConstraints: *PageSize A5 *KmPunch 4holesL
*UIConstraints: *PageSize A6 *KmPunch 4holesL
*UIConstraints: *PageSize B4 *KmPunch 4holesL
*UIConstraints: *PageSize B5 *KmPunch 4holesL
*UIConstraints: *PageSize B6 *KmPunch 4holesL
*UIConstraints: *PageSize Folio *KmPunch 4holesL
*UIConstraints: *PageSize Oficio2 *KmPunch 4holesL
*UIConstraints: *PageSize Tabloid *KmPunch 4holesL
*UIConstraints: *PageSize Legal *KmPunch 4holesL
*UIConstraints: *PageSize Letter *KmPunch 4holesL
*UIConstraints: *PageSize Executive *KmPunch 4holesL
*UIConstraints: *PageSize Statement *KmPunch 4holesL
*UIConstraints: *PageSize Env10 *KmPunch 4holesL
*UIConstraints: *PageSize EnvDL *KmPunch 4holesL
*UIConstraints: *PageSize EnvC5 *KmPunch 4holesL
*UIConstraints: *PageSize A5 *KmPunch 4holesR
*UIConstraints: *PageSize A6 *KmPunch 4holesR
*UIConstraints: *PageSize B4 *KmPunch 4holesR
*UIConstraints: *PageSize B5 *KmPunch 4holesR
*UIConstraints: *PageSize B6 *KmPunch 4holesR
*UIConstraints: *PageSize Folio *KmPunch 4holesR
*UIConstraints: *PageSize Oficio2 *KmPunch 4holesR
*UIConstraints: *PageSize Tabloid *KmPunch 4holesR
*UIConstraints: *PageSize Legal *KmPunch 4holesR
*UIConstraints: *PageSize Letter *KmPunch 4holesR
*UIConstraints: *PageSize Executive *KmPunch 4holesR
*UIConstraints: *PageSize Statement *KmPunch 4holesR
*UIConstraints: *PageSize Env10 *KmPunch 4holesR
*UIConstraints: *PageSize EnvDL *KmPunch 4holesR
*UIConstraints: *PageSize EnvC5 *KmPunch 4holesR
*UIConstraints: *PageSize A5 *KmPunch 4holesU
*UIConstraints: *PageSize A6 *KmPunch 4holesU
*UIConstraints: *PageSize B4 *KmPunch 4holesU
*UIConstraints: *PageSize B5 *KmPunch 4holesU
*UIConstraints: *PageSize B6 *KmPunch 4holesU
*UIConstraints: *PageSize Folio *KmPunch 4holesU
*UIConstraints: *PageSize Oficio2 *KmPunch 4holesU
*UIConstraints: *PageSize Tabloid *KmPunch 4holesU
*UIConstraints: *PageSize Legal *KmPunch 4holesU
*UIConstraints: *PageSize Letter *KmPunch 4holesU
*UIConstraints: *PageSize Executive *KmPunch 4holesU
*UIConstraints: *PageSize Statement *KmPunch 4holesU
*UIConstraints: *PageSize Env10 *KmPunch 4holesU
*UIConstraints: *PageSize EnvDL *KmPunch 4holesU
*UIConstraints: *PageSize EnvC5 *KmPunch 4holesU
*%Staple - PageSize==
*UIConstraints: *KmStaple UPL *PageSize A5
*UIConstraints: *KmStaple UPL *PageSize A6
*UIConstraints: *KmStaple UPL *PageSize B6
*UIConstraints: *KmStaple UPL *PageSize Folio
*UIConstraints: *KmStaple UPL *PageSize Oficio2
*UIConstraints: *KmStaple UPL *PageSize Statement
*UIConstraints: *KmStaple UPL *PageSize Executive
*UIConstraints: *KmStaple UPL *PageSize Env10
*UIConstraints: *KmStaple UPL *PageSize EnvDL
*UIConstraints: *KmStaple UPL *PageSize EnvC5
*UIConstraints: *KmStaple UPR *PageSize A5
*UIConstraints: *KmStaple UPR *PageSize A6
*UIConstraints: *KmStaple UPR *PageSize B6
*UIConstraints: *KmStaple UPR *PageSize Folio
*UIConstraints: *KmStaple UPR *PageSize Oficio2
*UIConstraints: *KmStaple UPR *PageSize Statement
*UIConstraints: *KmStaple UPR *PageSize Executive
*UIConstraints: *KmStaple UPR *PageSize Env10
*UIConstraints: *KmStaple UPR *PageSize EnvDL
*UIConstraints: *KmStaple UPR *PageSize EnvC5
*UIConstraints: *KmStaple CL *PageSize A5
*UIConstraints: *KmStaple CL *PageSize A6
*UIConstraints: *KmStaple CL *PageSize B6
*UIConstraints: *KmStaple CL *PageSize Folio
*UIConstraints: *KmStaple CL *PageSize Oficio2
*UIConstraints: *KmStaple CL *PageSize Statement
*UIConstraints: *KmStaple CL *PageSize Executive
*UIConstraints: *KmStaple CL *PageSize Env10
*UIConstraints: *KmStaple CL *PageSize EnvDL
*UIConstraints: *KmStaple CL *PageSize EnvC5
*UIConstraints: *KmStaple CR *PageSize A5
*UIConstraints: *KmStaple CR *PageSize A6
*UIConstraints: *KmStaple CR *PageSize B6
*UIConstraints: *KmStaple CR *PageSize Folio
*UIConstraints: *KmStaple CR *PageSize Oficio2
*UIConstraints: *KmStaple CR *PageSize Statement
*UIConstraints: *KmStaple CR *PageSize Executive
*UIConstraints: *KmStaple CR *PageSize Env10
*UIConstraints: *KmStaple CR *PageSize EnvDL
*UIConstraints: *KmStaple CR *PageSize EnvC5
*UIConstraints: *KmStaple CU *PageSize A5
*UIConstraints: *KmStaple CU *PageSize A6
*UIConstraints: *KmStaple CU *PageSize B6
*UIConstraints: *KmStaple CU *PageSize Folio
*UIConstraints: *KmStaple CU *PageSize Oficio2
*UIConstraints: *KmStaple CU *PageSize Statement
*UIConstraints: *KmStaple CU *PageSize Executive
*UIConstraints: *KmStaple CU *PageSize Env10
*UIConstraints: *KmStaple CU *PageSize EnvDL
*UIConstraints: *KmStaple CU *PageSize EnvC5
*UIConstraints: *PageSize A5 *KmStaple UPL
*UIConstraints: *PageSize A6 *KmStaple UPL
*UIConstraints: *PageSize B6 *KmStaple UPL
*UIConstraints: *PageSize Folio *KmStaple UPL
*UIConstraints: *PageSize Oficio2 *KmStaple UPL
*UIConstraints: *PageSize Statement *KmStaple UPL
*UIConstraints: *PageSize Executive *KmStaple UPL
*UIConstraints: *PageSize Env10 *KmStaple UPL
*UIConstraints: *PageSize EnvDL *KmStaple UPL
*UIConstraints: *PageSize EnvC5 *KmStaple UPL
*UIConstraints: *PageSize A5 *KmStaple UPR
*UIConstraints: *PageSize A6 *KmStaple UPR
*UIConstraints: *PageSize B6 *KmStaple UPR
*UIConstraints: *PageSize Folio *KmStaple UPR
*UIConstraints: *PageSize Oficio2 *KmStaple UPR
*UIConstraints: *PageSize Statement *KmStaple UPR
*UIConstraints: *PageSize Executive *KmStaple UPR
*UIConstraints: *PageSize Env10 *KmStaple UPR
*UIConstraints: *PageSize EnvDL *KmStaple UPR
*UIConstraints: *PageSize EnvC5 *KmStaple UPR
*UIConstraints: *PageSize A5 *KmStaple CL
*UIConstraints: *PageSize A6 *KmStaple CL
*UIConstraints: *PageSize B6 *KmStaple CL
*UIConstraints: *PageSize Folio *KmStaple CL
*UIConstraints: *PageSize Oficio2 *KmStaple CL
*UIConstraints: *PageSize Statement *KmStaple CL
*UIConstraints: *PageSize Executive *KmStaple CL
*UIConstraints: *PageSize Env10 *KmStaple CL
*UIConstraints: *PageSize EnvDL *KmStaple CL
*UIConstraints: *PageSize EnvC5 *KmStaple CL
*UIConstraints: *PageSize A5 *KmStaple CR
*UIConstraints: *PageSize A6 *KmStaple CR
*UIConstraints: *PageSize B6 *KmStaple CR
*UIConstraints: *PageSize Folio *KmStaple CR
*UIConstraints: *PageSize Oficio2 *KmStaple CR
*UIConstraints: *PageSize Statement *KmStaple CR
*UIConstraints: *PageSize Executive *KmStaple CR
*UIConstraints: *PageSize Env10 *KmStaple CR
*UIConstraints: *PageSize EnvDL *KmStaple CR
*UIConstraints: *PageSize EnvC5 *KmStaple CR
*UIConstraints: *PageSize A5 *KmStaple CU
*UIConstraints: *PageSize A6 *KmStaple CU
*UIConstraints: *PageSize B6 *KmStaple CU
*UIConstraints: *PageSize Folio *KmStaple CU
*UIConstraints: *PageSize Oficio2 *KmStaple CU
*UIConstraints: *PageSize Statement *KmStaple CU
*UIConstraints: *PageSize Executive *KmStaple CU
*UIConstraints: *PageSize Env10 *KmStaple CU
*UIConstraints: *PageSize EnvDL *KmStaple CU
*UIConstraints: *PageSize EnvC5 *KmStaple CU
*%Fold - PageSize==
*UIConstraints: *Fold ON *PageSize A3
*UIConstraints: *Fold ON *PageSize A5
*UIConstraints: *Fold ON *PageSize A6
*UIConstraints: *Fold ON *PageSize B4
*UIConstraints: *Fold ON *PageSize B6
*UIConstraints: *Fold ON *PageSize Folio
*UIConstraints: *Fold ON *PageSize Oficio2
*UIConstraints: *Fold ON *PageSize Tabloid
*UIConstraints: *Fold ON *PageSize Legal
*UIConstraints: *Fold ON *PageSize Executive
*UIConstraints: *Fold ON *PageSize Statement
*UIConstraints: *Fold ON *PageSize Env10
*UIConstraints: *Fold ON *PageSize EnvDL
*UIConstraints: *Fold ON *PageSize EnvC5
*UIConstraints: *PageSize A3 *Fold ON
*UIConstraints: *PageSize A5 *Fold ON
*UIConstraints: *PageSize A6 *Fold ON
*UIConstraints: *PageSize B4 *Fold ON
*UIConstraints: *PageSize B6 *Fold ON
*UIConstraints: *PageSize Folio *Fold ON
*UIConstraints: *PageSize Oficio2 *Fold ON
*UIConstraints: *PageSize Tabloid *Fold ON
*UIConstraints: *PageSize Legal *Fold ON
*UIConstraints: *PageSize Executive *Fold ON
*UIConstraints: *PageSize Statement *Fold ON
*UIConstraints: *PageSize Env10 *Fold ON
*UIConstraints: *PageSize EnvDL *Fold ON
*UIConstraints: *PageSize EnvC5 *Fold ON
*%InputSlot-Media Type Constraints=====
*%MediaType-Duplex Constraints=====
*%MediaType - Destination==
*%MediaType - Staple=====
*%MediaType - Punch=====
*%Function Constraints=====
*%Paper Source & Output Constraints==
*UIConstraints: *InputSlot MF1 *KmOutput SubFD
*UIConstraints: *InputSlot MF1 *KmOutput SubFU
*UIConstraints: *KmOutput SubFD *InputSlot MF1
*UIConstraints: *KmOutput SubFU *InputSlot MF1
*%Output - Staple & Shift Mode Constraints==
*UIConstraints: *KmOutput Facedown *Jog EndOfSet
*UIConstraints: *KmOutput Facedown *Jog EndOfSet
*UIConstraints: *KmOutput Facedown *KmStaple UPL
*UIConstraints: *KmOutput Facedown *KmStaple UPR
*UIConstraints: *KmOutput Facedown *KmStaple CL
*UIConstraints: *KmOutput Facedown *KmStaple CR
*UIConstraints: *KmOutput Facedown *KmStaple CU
*UIConstraints: *KmOutput Faceup *Jog EndOfSet
*UIConstraints: *KmOutput Faceup *Jog EndOfSet
*UIConstraints: *KmOutput Faceup *KmStaple UPL
*UIConstraints: *KmOutput Faceup *KmStaple UPR
*UIConstraints: *KmOutput Faceup *KmStaple CL
*UIConstraints: *KmOutput Faceup *KmStaple CR
*UIConstraints: *KmOutput Faceup *KmStaple CU
*UIConstraints: *KmOutput MainFU *Jog EndOfSet
*UIConstraints: *KmOutput MainFU *KmStaple UPL
*UIConstraints: *KmOutput MainFU *KmStaple UPR
*UIConstraints: *KmOutput MainFU *KmStaple CL
*UIConstraints: *KmOutput MainFU *KmStaple CR
*UIConstraints: *KmOutput MainFU *KmStaple CU
*UIConstraints: *KmOutput SubFD *Jog EndOfSet
*UIConstraints: *KmOutput SubFD *KmStaple UPL
*UIConstraints: *KmOutput SubFD *KmStaple UPR
*UIConstraints: *KmOutput SubFD *KmStaple CL
*UIConstraints: *KmOutput SubFD *KmStaple CR
*UIConstraints: *KmOutput SubFD *KmStaple CU
*UIConstraints: *KmOutput SubFU *Jog EndOfSet
*UIConstraints: *KmOutput SubFU *KmStaple UPL
*UIConstraints: *KmOutput SubFU *KmStaple UPR
*UIConstraints: *KmOutput SubFU *KmStaple CL
*UIConstraints: *KmOutput SubFU *KmStaple CR
*UIConstraints: *KmOutput SubFU *KmStaple CU
*UIConstraints: *KmOutput MT1Up *Jog EndOfSet
*UIConstraints: *KmOutput MT1Up *KmStaple UPL
*UIConstraints: *KmOutput MT1Up *KmStaple UPR
*UIConstraints: *KmOutput MT1Up *KmStaple CL
*UIConstraints: *KmOutput MT1Up *KmStaple CR
*UIConstraints: *KmOutput MT1Up *KmStaple CU
*UIConstraints: *KmOutput MT2Up *Jog EndOfSet
*UIConstraints: *KmOutput MT2Up *KmStaple UPL
*UIConstraints: *KmOutput MT2Up *KmStaple UPR
*UIConstraints: *KmOutput MT2Up *KmStaple CL
*UIConstraints: *KmOutput MT2Up *KmStaple CR
*UIConstraints: *KmOutput MT2Up *KmStaple CU
*UIConstraints: *KmOutput MT3Up *Jog EndOfSet
*UIConstraints: *KmOutput MT3Up *KmStaple UPL
*UIConstraints: *KmOutput MT3Up *KmStaple UPR
*UIConstraints: *KmOutput MT3Up *KmStaple CL
*UIConstraints: *KmOutput MT3Up *KmStaple CR
*UIConstraints: *KmOutput MT3Up *KmStaple CU
*UIConstraints: *KmOutput MT4Up *Jog EndOfSet
*UIConstraints: *KmOutput MT4Up *KmStaple UPL
*UIConstraints: *KmOutput MT4Up *KmStaple UPR
*UIConstraints: *KmOutput MT4Up *KmStaple CL
*UIConstraints: *KmOutput MT4Up *KmStaple CR
*UIConstraints: *KmOutput MT4Up *KmStaple CU
*UIConstraints: *KmOutput MT5Up *Jog EndOfSet
*UIConstraints: *KmOutput MT5Up *KmStaple UPL
*UIConstraints: *KmOutput MT5Up *KmStaple UPR
*UIConstraints: *KmOutput MT5Up *KmStaple CL
*UIConstraints: *KmOutput MT5Up *KmStaple CR
*UIConstraints: *KmOutput MT5Up *KmStaple CU
*UIConstraints: *Jog EndOfSet *KmOutput Facedown
*UIConstraints: *KmStaple UPL *KmOutput Facedown
*UIConstraints: *KmStaple UPR *KmOutput Facedown
*UIConstraints: *KmStaple CL *KmOutput Facedown
*UIConstraints: *KmStaple CR *KmOutput Facedown
*UIConstraints: *KmStaple CU *KmOutput Facedown
*UIConstraints: *Jog EndOfSet *KmOutput Faceup
*UIConstraints: *KmStaple UPL *KmOutput Faceup
*UIConstraints: *KmStaple UPR *KmOutput Faceup
*UIConstraints: *KmStaple CL *KmOutput Faceup
*UIConstraints: *KmStaple CR *KmOutput Faceup
*UIConstraints: *KmStaple CU *KmOutput Faceup
*UIConstraints: *Jog EndOfSet *KmOutput MainFU
*UIConstraints: *KmStaple UPL *KmOutput MainFU
*UIConstraints: *KmStaple UPR *KmOutput MainFU
*UIConstraints: *KmStaple CL *KmOutput MainFU
*UIConstraints: *KmStaple CR *KmOutput MainFU
*UIConstraints: *KmStaple CU *KmOutput MainFU
*UIConstraints: *Jog EndOfSet *KmOutput SubFD
*UIConstraints: *KmStaple UPL *KmOutput SubFD
*UIConstraints: *KmStaple UPR *KmOutput SubFD
*UIConstraints: *KmStaple CL *KmOutput SubFD
*UIConstraints: *KmStaple CR *KmOutput SubFD
*UIConstraints: *KmStaple CU *KmOutput SubFD
*UIConstraints: *Jog EndOfSet *KmOutput SubFU
*UIConstraints: *KmStaple UPL *KmOutput SubFU
*UIConstraints: *KmStaple UPR *KmOutput SubFU
*UIConstraints: *KmStaple CL *KmOutput SubFU
*UIConstraints: *KmStaple CR *KmOutput SubFU
*UIConstraints: *KmStaple CU *KmOutput SubFU
*UIConstraints: *Jog EndOfSet *KmOutput MT1Up
*UIConstraints: *KmStaple UPL *KmOutput MT1Up
*UIConstraints: *KmStaple UPR *KmOutput MT1Up
*UIConstraints: *KmStaple CL *KmOutput MT1Up
*UIConstraints: *KmStaple CR *KmOutput MT1Up
*UIConstraints: *KmStaple CU *KmOutput MT1Up
*UIConstraints: *Jog EndOfSet *KmOutput MT2Up
*UIConstraints: *KmStaple UPL *KmOutput MT2Up
*UIConstraints: *KmStaple UPR *KmOutput MT2Up
*UIConstraints: *KmStaple CL *KmOutput MT2Up
*UIConstraints: *KmStaple CR *KmOutput MT2Up
*UIConstraints: *KmStaple CU *KmOutput MT2Up
*UIConstraints: *Jog EndOfSet *KmOutput MT3Up
*UIConstraints: *KmStaple UPL *KmOutput MT3Up
*UIConstraints: *KmStaple UPR *KmOutput MT3Up
*UIConstraints: *KmStaple CL *KmOutput MT3Up
*UIConstraints: *KmStaple CR *KmOutput MT3Up
*UIConstraints: *KmStaple CU *KmOutput MT3Up
*UIConstraints: *Jog EndOfSet *KmOutput MT4Up
*UIConstraints: *KmStaple UPL *KmOutput MT4Up
*UIConstraints: *KmStaple UPR *KmOutput MT4Up
*UIConstraints: *KmStaple CL *KmOutput MT4Up
*UIConstraints: *KmStaple CR *KmOutput MT4Up
*UIConstraints: *KmStaple CU *KmOutput MT4Up
*UIConstraints: *Jog EndOfSet *KmOutput MT5Up
*UIConstraints: *KmStaple UPL *KmOutput MT5Up
*UIConstraints: *KmStaple UPR *KmOutput MT5Up
*UIConstraints: *KmStaple CL *KmOutput MT5Up
*UIConstraints: *KmStaple CR *KmOutput MT5Up
*UIConstraints: *KmStaple CU *KmOutput MT5Up
*%Collate - Staple&Shift Mode Constraints==
*UIConstraints: *KMCollate None *Jog EndOfSet
*UIConstraints: *KMCollate None *KmStaple UPL
*UIConstraints: *KMCollate None *KmStaple UPR
*UIConstraints: *KMCollate None *KmStaple CL
*UIConstraints: *KMCollate None *KmStaple CR
*UIConstraints: *KMCollate None *KmStaple CU
*UIConstraints: *KMCollate None *Booklet RightOpen
*UIConstraints: *KMCollate None *Booklet LeftOpen
*UIConstraints: *Jog EndOfSet *KMCollate None
*UIConstraints: *KmStaple UPL *KMCollate None
*UIConstraints: *KmStaple UPR *KMCollate None
*UIConstraints: *KmStaple CL *KMCollate None
*UIConstraints: *KmStaple CR *KMCollate None
*UIConstraints: *KmStaple CU *KMCollate None
*UIConstraints: *Booklet RightOpen *KMCollate None
*UIConstraints: *Booklet LeftOpen *KMCollate None
*%Booklet Constraints==
*UIConstraints: *Booklet OFF *Fold ON
*UIConstraints: *Fold ON *Booklet OFF
*%Staple - Shift Mode Constraints==
*UIConstraints: *KmStaple UPL *Jog EndOfSet
*UIConstraints: *KmStaple UPR *Jog EndOfSet
*UIConstraints: *KmStaple CL *Jog EndOfSet
*UIConstraints: *KmStaple CR *Jog EndOfSet
*UIConstraints: *KmStaple CU *Jog EndOfSet
*UIConstraints: *Jog EndOfSet *KmStaple UPL
*UIConstraints: *Jog EndOfSet *KmStaple UPR
*UIConstraints: *Jog EndOfSet *KmStaple CL
*UIConstraints: *Jog EndOfSet *KmStaple CR
*UIConstraints: *Jog EndOfSet *KmStaple CU
*% Fold ON-PUNCH Constraints=======
*UIConstraints: *Fold ON *KmPunch 2holesUSL
*UIConstraints: *Fold ON *KmPunch 2holesUSR
*UIConstraints: *Fold ON *KmPunch 2holesUSU
*UIConstraints: *Fold ON *KmPunch 2holesEURL
*UIConstraints: *Fold ON *KmPunch 2holesEURR
*UIConstraints: *Fold ON *KmPunch 2holesEURU
*UIConstraints: *Fold ON *KmPunch 3holesL
*UIConstraints: *Fold ON *KmPunch 3holesR
*UIConstraints: *Fold ON *KmPunch 3holesU
*UIConstraints: *Fold ON *KmPunch 4holesL
*UIConstraints: *Fold ON *KmPunch 4holesR
*UIConstraints: *Fold ON *KmPunch 4holesU
*UIConstraints: *Fold ON *KmStaple UPL
*UIConstraints: *Fold ON *KmStaple UPR
*UIConstraints: *Fold ON *KmStaple CL
*UIConstraints: *Fold ON *KmStaple CR
*UIConstraints: *Fold ON *KmStaple CU
*UIConstraints: *KmPunch 2holesUSL *Fold ON
*UIConstraints: *KmPunch 2holesUSR *Fold ON
*UIConstraints: *KmPunch 2holesUSU *Fold ON
*UIConstraints: *KmPunch 2holesEURL *Fold ON
*UIConstraints: *KmPunch 2holesEURR *Fold ON
*UIConstraints: *KmPunch 2holesEURU *Fold ON
*UIConstraints: *KmPunch 3holesL *Fold ON
*UIConstraints: *KmPunch 3holesR *Fold ON
*UIConstraints: *KmPunch 3holesU *Fold ON
*UIConstraints: *KmPunch 4holesL *Fold ON
*UIConstraints: *KmPunch 4holesR *Fold ON
*UIConstraints: *KmPunch 4holesU *Fold ON
*UIConstraints: *KmStaple UPL *Fold ON
*UIConstraints: *KmStaple UPR *Fold ON
*UIConstraints: *KmStaple CL *Fold ON
*UIConstraints: *KmStaple CR *Fold ON
*UIConstraints: *KmStaple CU *Fold ON
*%Policy-PaperSource Constraints===
*% Job spooling - Cover Mode constraints
*UIConstraints: *KMCollate None *KmCover FBBO
*UIConstraints: *KMCollate None *KmCover FFBO
*UIConstraints: *KMCollate None *KmCover FPBO
*UIConstraints: *KMCollate None *KmCover FDBO
*UIConstraints: *KmCover FBBO *KMCollate None
*UIConstraints: *KmCover FFBO *KMCollate None
*UIConstraints: *KmCover FPBO *KMCollate None
*UIConstraints: *KmCover FDBO *KMCollate None
*% Cover Mode - Duplex constraints
*UIConstraints: *KmCover FPBO *Duplex None
*UIConstraints: *KmCover FDBO *Duplex None
*UIConstraints: *Duplex None *KmCover FPBO
*UIConstraints: *Duplex None *KmCover FDBO
*% Job spooling - Barcode print constraints
*UIConstraints: *KMCollate None *KMBarcodeMode First
*UIConstraints: *KMCollate None *KMBarcodeMode All
*UIConstraints: *KMCollate VMBAdmin *KMBarcodeMode First
*UIConstraints: *KMCollate VMBAdmin *KMBarcodeMode All
*UIConstraints: *KMCollate VMBUser01 *KMBarcodeMode First
*UIConstraints: *KMCollate VMBUser01 *KMBarcodeMode All
*UIConstraints: *KMCollate VMBUser02 *KMBarcodeMode First
*UIConstraints: *KMCollate VMBUser02 *KMBarcodeMode All
*UIConstraints: *KMCollate VMBUser03 *KMBarcodeMode First
*UIConstraints: *KMCollate VMBUser03 *KMBarcodeMode All
*UIConstraints: *KMCollate VMBUser04 *KMBarcodeMode First
*UIConstraints: *KMCollate VMBUser04 *KMBarcodeMode All
*UIConstraints: *KMCollate VMBUser05 *KMBarcodeMode First
*UIConstraints: *KMCollate VMBUser05 *KMBarcodeMode All
*UIConstraints: *KMCollate VMBUser06 *KMBarcodeMode First
*UIConstraints: *KMCollate VMBUser06 *KMBarcodeMode All
*UIConstraints: *KMCollate VMBUser07 *KMBarcodeMode First
*UIConstraints: *KMCollate VMBUser07 *KMBarcodeMode All
*UIConstraints: *KMCollate VMBUser08 *KMBarcodeMode First
*UIConstraints: *KMCollate VMBUser08 *KMBarcodeMode All
*UIConstraints: *KMCollate VMBUser09 *KMBarcodeMode First
*UIConstraints: *KMCollate VMBUser09 *KMBarcodeMode All
*UIConstraints: *KMCollate VMBUser10 *KMBarcodeMode First
*UIConstraints: *KMCollate VMBUser10 *KMBarcodeMode All
*UIConstraints: *KMBarcodeMode First *KMCollate None
*UIConstraints: *KMBarcodeMode First *KMCollate VMBAdmin
*UIConstraints: *KMBarcodeMode First *KMCollate VMBUser01
*UIConstraints: *KMBarcodeMode First *KMCollate VMBUser02
*UIConstraints: *KMBarcodeMode First *KMCollate VMBUser03
*UIConstraints: *KMBarcodeMode First *KMCollate VMBUser04
*UIConstraints: *KMBarcodeMode First *KMCollate VMBUser05
*UIConstraints: *KMBarcodeMode First *KMCollate VMBUser06
*UIConstraints: *KMBarcodeMode First *KMCollate VMBUser07
*UIConstraints: *KMBarcodeMode First *KMCollate VMBUser08
*UIConstraints: *KMBarcodeMode First *KMCollate VMBUser09
*UIConstraints: *KMBarcodeMode First *KMCollate VMBUser10
*UIConstraints: *KMBarcodeMode All *KMCollate None
*UIConstraints: *KMBarcodeMode All *KMCollate VMBAdmin
*UIConstraints: *KMBarcodeMode All *KMCollate VMBUser01
*UIConstraints: *KMBarcodeMode All *KMCollate VMBUser02
*UIConstraints: *KMBarcodeMode All *KMCollate VMBUser03
*UIConstraints: *KMBarcodeMode All *KMCollate VMBUser04
*UIConstraints: *KMBarcodeMode All *KMCollate VMBUser05
*UIConstraints: *KMBarcodeMode All *KMCollate VMBUser06
*UIConstraints: *KMBarcodeMode All *KMCollate VMBUser07
*UIConstraints: *KMBarcodeMode All *KMCollate VMBUser08
*UIConstraints: *KMBarcodeMode All *KMCollate VMBUser09
*UIConstraints: *KMBarcodeMode All *KMCollate VMBUser10
*% Job spooling - Barcode print constraints
*UIConstraints: *KMCollate None *KmTandem on
*%==============================================
*% Resolution
*%==============================================
*OpenUI *Resolution/Risoluzione: PickOne
*OrderDependency: 10 AnySetup *Resolution
*DefaultResolution: 1200dpi
*Resolution 1200dpi/Veloce 1200: "<< /HWResolution [600 600] /PreRenderingEnhance true >> setpagedevice"
*Resolution 600dpi/600 dpi: "<< /HWResolution [600 600] /PreRenderingEnhance false >> setpagedevice"
*Resolution 300dpi/300 dpi: "<< /HWResolution [300 300] /PreRenderingEnhance false >> setpagedevice"
*?Resolution: "
save
currentpagedevice /HWResolution get
0 get ( ) cvs print (dpi) = flush
restore
"
*End
*CloseUI: *Resolution
*%==============================================
*% Eco Print Mode
*%==============================================
*OpenUI *EcoPrint/EcoPrint(Modalit<E0> bozza): PickOne
*OrderDependency: 10 AnySetup *EcoPrint
*DefaultEcoPrint: false
*EcoPrint false/Off: "<< /EconoMode false >> setpagedevice"
*EcoPrint true/On: "<< /EconoMode true >> setpagedevice"
*CloseUI: *EcoPrint
*%==============================================
*% Image Refinement
*%==============================================
*OpenUI *Smoothing/Edge Smoothing: PickOne
*OrderDependency: 10 AnySetup *Smoothing
*DefaultSmoothing: False
*Smoothing False/Off: "0 statusdict /setdoret get exec"
*Smoothing True/On: "1 statusdict /setdoret get exec"
*?Smoothing: "
save
[(False)(True)(True)(True)]
statusdict /doret get exec { get } stopped
{ pop pop (Unknown) } if
= flush
restore
"
*End
*CloseUI: *Smoothing
*%==============================================
*% Halftone Information
*%==============================================
*DefaultHalftoneType: 1
*ScreenFreq: "60.0"
*ScreenAngle: "45.0"
*ResScreenFreq 600dpi: "60.0"
*ResScreenAngle 600dpi: "45.0"
*ResScreenFreq 300dpi: "53.0"
*ResScreenAngle 300dpi: "45.0"
*DefaultScreenProc: Ellipse
*ScreenProwc Dot: "
{abs exch abs 2 copy add 1 gt
{1 sub dup mul exch 1 sub dup mul add 1 sub}
{dup mul exch dup mul add 1 exch sub} ifelse}"
*End
*ScreenProc Line: "
{pop}"
*End
*ScreenProc Ellipse: "
{dup 5 mul 8 div mul exch dup mul exch add sqrt 1 exch sub}"
*End
*DefaultTransfer: Null
*Transfer Null: "{}"
*Transfer Null.Inverse: "{1 exch sub}"
*%==============================================
*% Page Policy Definitions
*%==============================================
*OpenUI *PagePolicy/Alimentazione Carta: PickOne
*OrderDependency: 11 AnySetup *PagePolicy
*DefaultPagePolicy: On
*PagePolicy On/Selezione Automatica Formato: "<< /DeferredMediaSelection true >> setpagedevice"
*CloseUI: *PagePolicy
*%==============================================
*%Paper Handling
*%==============================================
*OpenUI *PageSize: PickOne
*OrderDependency: 20 AnySetup *PageSize
*DefaultPageSize: A4
*PageSize Tabloid/Tabloid: "
<< /Policies << /PageSize 7 >> /PageSize [792 1224] /ImagingBBox null >> setpagedevice"
*End
*PageSize Legal/Legal: "
<< /Policies << /PageSize 7 >> /PageSize [612 1008] /ImagingBBox null >> setpagedevice"
*End
*PageSize Letter/Letter: "
<< /Policies << /PageSize 7 >> /PageSize [612 792] /ImagingBBox null >> setpagedevice"
*End
*PageSize Executive/Executive: "
<< /Policies << /PageSize 7>> /PageSize [522 756] /ImagingBBox null >> setpagedevice"
*End
*PageSize Statement/Statement: "
<< /Policies << /PageSize 7 >> /PageSize [396 612] /ImagingBBox null >> setpagedevice"
*End
*PageSize A3/A3: "
<< /Policies << /PageSize 7 >> /PageSize [842 1191] /ImagingBBox null >> setpagedevice"
*End
*PageSize A4/A4: "
<< /Policies << /PageSize 7 >> /PageSize [595 842] /ImagingBBox null >> setpagedevice"
*End
*PageSize A5/A5: "
<< /Policies << /PageSize 7 >> /PageSize [421 595] /ImagingBBox null >> setpagedevice"
*End
*PageSize A6/A6: "
<< /Policies << /PageSize 7 >> /PageSize [297 421] /ImagingBBox null >> setpagedevice"
*End
*PageSize B4/B4-JIS: "
<< /Policies << /PageSize 7 >> /PageSize [728 1032] /ImagingBBox null >> setpagedevice"
*End
*PageSize B5/B5-JIS: "
<< /Policies << /PageSize 7 >> /PageSize [516 729] /ImagingBBox null >> setpagedevice"
*End
*PageSize B6/B6-JIS: "
<< /Policies << /PageSize 7 >> /PageSize [364 516] /ImagingBBox null >> setpagedevice"
*End
*PageSize Folio/Folio.: "
<< /Policies << /PageSize 7 >> /PageSize [595 935] /ImagingBBox null >> setpagedevice"
*End
*PageSize Oficio2/Oficio II: "
<< /Policies << /PageSize 7 >> /PageSize [612 936] /ImagingBBox null >> setpagedevice"
*End
*PageSize Env10/Envelope #10: "
<< /Policies << /PageSize 7 >> /PageSize [297 684] /ImagingBBox null >> setpagedevice"
*End
*PageSize EnvDL/Envelope DL: "
<< /Policies << /PageSize 7 >> /PageSize [312 624] /ImagingBBox null >> setpagedevice"
*End
*PageSize EnvC5/Envelope C5: "
<< /Policies << /PageSize 7 >> /PageSize [459 649] /ImagingBBox null >> setpagedevice"
*End
*?PageSize: "
save
currentpagedevice /PageSize get aload pop
2 copy gt {exch} if
(Unknown)
17 dict
dup [792 1224] (Tabloid) put
dup [612 1008] (Legal) put
dup [612 792] (Letter) put
dup [522 756] (Executive) put
dup [396 612] (Statement) put
dup [842 1191] (A3) put
dup [595 842] (A4) put
dup [421 595] (A5) put
dup [297 421] (A6) put
dup [728 1032] (B4) put
dup [516 729] (B5) put
dup [364 516] (B6) put
dup [595 935] (Folio) put
dup [612 936] (Oficio2) put
dup [297 684] (Env10) put
dup [312 624] (EnvDL) put
dup [459 649] (EnvC5) put
{ exch aload pop 4 index sub abs 5 le exch
5 index sub abs 5 le and
{exch pop exit} {pop} ifelse
} bind forall
= flush pop pop
restore
"
*End
*CloseUI: *PageSize
*%Page Region Definitions for Frame Buffer
*OpenUI *PageRegion: PickOne
*OrderDependency: 20 AnySetup *PageRegion
*DefaultPageRegion: A4
*PageRegion Tabloid/Tabloid: "
<< /Policies << /PageSize 7 >> /PageSize [792 1224] /ImagingBBox null >> setpagedevice"
*End
*PageRegion Legal/Legal: "
<< /Policies << /PageSize 7 >> /PageSize [612 1008] /ImagingBBox null >> setpagedevice"
*End
*PageRegion Letter/Letter: "
<< /Policies << /PageSize 7 >> /PageSize [612 792] /ImagingBBox null >> setpagedevice"
*End
*PageRegion Executive/Executive: "
<< /Policies << /PageSize 7 >> /PageSize [522 756] /ImagingBBox null >> setpagedevice"
*End
*PageRegion Statement/Statement: "
<< /Policies << /PageSize 7 >> /PageSize [396 612] /ImagingBBox null >> setpagedevice"
*End
*PageRegion A3/A3: "
<< /Policies << /PageSize 7 >> /PageSize [842 1191] /ImagingBBox null >> setpagedevice"
*End
*PageRegion A4/A4: "
<< /Policies << /PageSize 7 >> /PageSize [595 842] /ImagingBBox null >> setpagedevice"
*End
*PageRegion A5/A5: "
<< /Policies << /PageSize 7 >> /PageSize [421 595] /ImagingBBox null >> setpagedevice"
*End
*PageRegion A6/A6: "
<< /Policies << /PageSize 7 >> /PageSize [297 421] /ImagingBBox null >> setpagedevice"
*End
*PageRegion B4/B4-JIS: "
<< /Policies << /PageSize 7 >> /PageSize [728 1032] /ImagingBBox null >> setpagedevice"
*End
*PageRegion B5/B5-JIS: "
<< /Policies << /PageSize 7 >> /PageSize [516 729] /ImagingBBox null >> setpagedevice"
*End
*PageRegion B6/B6-JIS: "
<< /Policies << /PageSize 7 >> /PageSize [364 516] /ImagingBBox null >> setpagedevice"
*End
*PageRegion Folio/Folio.: "
<< /Policies << /PageSize 7 >> /PageSize [595 935] /ImagingBBox null >> setpagedevice"
*End
*PageRegion Oficio2/Oficio II: "
<< /Policies << /PageSize 7 >> /PageSize [612 936] /ImagingBBox null >> setpagedevice"
*End
*PageRegion Env10/Envelope #10: "
<< /Policies << /PageSize 7 >> /PageSize [297 684] /ImagingBBox null >> setpagedevice"
*End
*PageRegion EnvDL/Envelope DL: "
<< /Policies << /PageSize 7 >> /PageSize [312 624] /ImagingBBox null >> setpagedevice"
*End
*PageRegion EnvC5/Envelope C5: "
<< /Policies << /PageSize 7 >> /PageSize [459 649] /ImagingBBox null >> setpagedevice"
*End
*CloseUI: *PageRegion
*% Imageable Area Definitions
*DefaultImageableArea: A4
*ImageableArea Tabloid/Tabloid: "12 12 780 1212"
*ImageableArea Legal/Legal: "12 12 600 996"
*ImageableArea Letter/Letter: "12 12 600 780"
*ImageableArea Executive/Executive: "12 12 510 744"
*ImageableArea Statement/Statement: "12 12 384 600"
*ImageableArea A3/A3: "12 12 830 1179"
*ImageableArea A4/A4: "12 12 583 830"
*ImageableArea A5/A5: "12 12 409 583"
*ImageableArea A6/A6: "12 12 285 409"
*ImageableArea B4/B4-JIS: "12 12 716 1020"
*ImageableArea B5/B5-JIS: "21 12 495 717"
*ImageableArea B6/B6-JIS: "12 12 352 504"
*ImageableArea Folio/Folio.: "12 12 583 923"
*ImageableArea Oficio2/Oficio II: "12 12 600 924"
*ImageableArea Env10/Envelope #10: "12 12 285 672"
*ImageableArea EnvDL/Envelope DL: "12 12 300 612"
*ImageableArea EnvC5/Envelope C5: "12 12 447 637"
*?ImageableArea: " save
/cvp { cvi ( ) cvs
print ( ) print } bind def
newpath clippath pathbbox
4 -2 roll exch 2 {ceiling cvp} repeat
exch 2 {floor cvp} repeat ( )
= flush
restore
"
*End
*% Physical Dimensions of Media
*DefaultPaperDimension: A4
*PaperDimension Tabloid/Tabloid: "792 1224"
*PaperDimension Legal/Legal: "612 1008"
*PaperDimension Letter/Letter: "612 792"
*PaperDimension Executive/Executive: "522 756"
*PaperDimension Statement/Statement: "396 612"
*PaperDimension A3/A3: "842 1191"
*PaperDimension A4/A4: "595 842"
*PaperDimension A5/A5: "421 595"
*PaperDimension A6/A6: "297 421"
*PaperDimension B4/B4 (JIS): "728 1032"
*PaperDimension B5/B5 (JIS): "516 729"
*PaperDimension B6/B6: "364 516"
*PaperDimension Folio/Folio.: "595 935"
*PaperDimension Oficio2/Oficio II: "612 936"
*PaperDimension Env10/Envelope #10: "297 684"
*PaperDimension EnvDL/Envelope DL: "312 624"
*PaperDimension EnvC5/Envelope C5: "459 649"
*%==============================================
*% Input Slot Definitions
*%==============================================
*OpenUI *InputSlot: PickOne
*OrderDependency: 15 AnySetup *InputSlot
*DefaultInputSlot: Tray1
*InputSlot Tray1/Cassett. ampia cap.: "
<< /ManualFeed false /DeferredMediaSelection false >> setpagedevice
statusdict begin 0 setpapertray end"
*End
*InputSlot Tray2/Cassetto 2: "
<< /ManualFeed false /DeferredMediaSelection false >> setpagedevice
statusdict begin 1 setpapertray end"
*End
*InputSlot Tray3/Cassetto 3: "
<< /ManualFeed false /DeferredMediaSelection false >> setpagedevice
statusdict begin 4 setpapertray end"
*End
*InputSlot SideTray/Cassettone laterale: "
<< /ManualFeed false /DeferredMediaSelection false >> setpagedevice
statusdict begin 5 setpapertray end"
*End
*InputSlot MF1/Vassoio Bypass: "
<< /ManualFeed false /DeferredMediaSelection false >> setpagedevice
statusdict begin 3 setpapertray end"
*End
*CloseUI: *InputSlot
*% MediaType Definitions
*OpenUI *MediaType/Supporti di stampa: PickOne
*OrderDependency: 20 AnySetup *MediaType
*DefaultMediaType: PrnDef
*MediaType PrnDef/Valori predefiniti stampante: ""
*MediaType Plain/Normale: "
<< /ManualFeed false /MediaType (Plain) /DeferredMediaSelection true >> setpagedevice"
*End
*MediaType Transparency/Luido: "
<< /ManualFeed false /MediaType (Transparency) /DeferredMediaSelection true >> setpagedevice"
*End
*MediaType Preprinted/Prestampato: "
<< /ManualFeed false /MediaType (Preprinted) /DeferredMediaSelection true >> setpagedevice"
*End
*MediaType Labels/Etichette: "
<< /ManualFeed false /MediaType (Labels) /DeferredMediaSelection true >> setpagedevice"
*End
*MediaType Bond/Bond: "
<< /ManualFeed false /MediaType (Bond) /DeferredMediaSelection true >> setpagedevice"
*End
*MediaType Recycled/Riciclate: "
<< /ManualFeed false /MediaType (Recycled) /DeferredMediaSelection true >> setpagedevice"
*End
*MediaType Vellum/Vellum: "
<< /ManualFeed false /MediaType (Vellum) /DeferredMediaSelection true >> setpagedevice"
*End
*MediaType Rough/Ruvida: "
<< /ManualFeed false /MediaType (Rough) /DeferredMediaSelection true >> setpagedevice"
*End
*MediaType Letterhead/Intestata: "
<< /ManualFeed false /MediaType (Letterhead) /DeferredMediaSelection true >> setpagedevice"
*End
*MediaType Color/Colorata: "
<< /ManualFeed false /MediaType (Color) /DeferredMediaSelection true >> setpagedevice"
*End
*MediaType Prepunched/Pre-perforato: "
<< /ManualFeed false /MediaType (Prepunched) /DeferredMediaSelection true >> setpagedevice"
*End
*MediaType Envelope/Busta: "
<< /ManualFeed false /MediaType (Envelope) /DeferredMediaSelection true >> setpagedevice"
*End
*MediaType Cardstock/Cartoncino: "
<< /ManualFeed false /MediaType (Card Stock) /DeferredMediaSelection true >> setpagedevice"
*End
*MediaType Custom1/Personalizzato 1: "
<< /ManualFeed false /MediaType (Custom Type1) /DeferredMediaSelection true >> setpagedevice"
*End
*MediaType Custom2/Personalizzato 2: "
<< /ManualFeed false /MediaType (Custom Type2) /DeferredMediaSelection true >> setpagedevice"
*End
*MediaType Custom3/Personalizzato 3: "
<< /ManualFeed false /MediaType (Custom Type3) /DeferredMediaSelection true >> setpagedevice"
*End
*MediaType Custom4/Personalizzato 4: "
<< /ManualFeed false /MediaType (Custom Type4) /DeferredMediaSelection true >> setpagedevice"
*End
*MediaType Custom5/Personalizzato 5: "
<< /ManualFeed false /MediaType (Custom Type5) /DeferredMediaSelection true >> setpagedevice"
*End
*MediaType Custom6/Personalizzato 6: "
<< /ManualFeed false /MediaType (Custom Type6) /DeferredMediaSelection true >> setpagedevice"
*End
*MediaType Custom7/Personalizzato 7: "
<< /ManualFeed false /MediaType (Custom Type7) /DeferredMediaSelection true >> setpagedevice"
*End
*MediaType Custom8/Personalizzato 8: "
<< /ManualFeed false /MediaType (Custom Type8) /DeferredMediaSelection true >> setpagedevice"
*End
*?MediaType: "
save
currentpagedevice /MediaType {get} stopped
{pop pop (Unknown)} {dup null eq {pop (Unknown)} if} ifelse = flush
restore"
*End
*CloseUI: *MediaType
*RequiresPageRegion All: True
*%==============================================
*% Duplex Definitions
*%==============================================
*OpenUI *Duplex/Stampa duplex: PickOne
*OrderDependency: 35 AnySetup *Duplex
*DefaultDuplex: None
*Duplex None/No: "statusdict begin false setduplexmode false settumble end"
*Duplex DuplexTumble/Flip bordo corto: "statusdict begin true setduplexmode true settumble end"
*Duplex DuplexNoTumble/Flip bordo lungo: "statusdict begin true setduplexmode false settumble end"
*?Duplex: " save
statusdict begin
duplexmode
{tumble {(DuplexTumble)} {(DuplexNoTumble)} ifelse}
{(None)} ifelse = flush end restore"
*End
*CloseUI: *Duplex
*%==============================================
*% Copia KPDL Output Mode Definitions
*%==============================================
*OpenUI *KmOutput/Destinazione carta: PickOne
*OrderDependency: 25 AnySetup *KmOutput
*DefaultKmOutput:PrnDef
*KmOutput PrnDef/Valori predefiniti stampante: ""
*KmOutput Facedown/Cassetto laterale (Facciata gi<FA>): "0 statusdict /setoutputtray get exec
<< /OutputFaceUp false >> setpagedevice"
*End
*KmOutput Faceup/Cassetto laterale (Facciata su): "1 statusdict /setoutputtray get exec
<< /OutputFaceUp true >> setpagedevice"
*End
*KmOutput MainFD/Vassoio A(Facciata gi<FA>): "2 statusdict /setoutputtray get exec
<< /OutputFaceUp false >> setpagedevice"
*End
*KmOutput MainFU/Vassoio A(Facciata su): "1 statusdict /setoutputtray get exec
<< /OutputFaceUp true >> setpagedevice"
*End
*KmOutput SubFD/Vassoio B(Facciata gi<FA>): "3 statusdict /setoutputtray get exec
<< /OutputFaceUp false >> setpagedevice"
*End
*KmOutput SubFU/Vassoio B(Facciata su): "3 statusdict /setoutputtray get exec
<< /OutputFaceUp true >> setpagedevice"
*End
*KmOutput MT1Dn/Vassoio 1(Facciata gi<FA>): "4 statusdict /setoutputtray get exec
[1] statusdict /setmailboxstacker get exec
<< /OutputFaceUp false >> setpagedevice"
*End
*KmOutput MT2Dn/Vassoio 2(Facciata gi<FA>): "4 statusdict /setoutputtray get exec
[2] statusdict /setmailboxstacker get exec
<< /OutputFaceUp false >> setpagedevice"
*End
*KmOutput MT3Dn/Vassoio 3(Facciata gi<FA>): "4 statusdict /setoutputtray get exec
[3] statusdict /setmailboxstacker get exec
<< /OutputFaceUp false >> setpagedevice"
*End
*KmOutput MT4Dn/Vassoio 4(Facciata gi<FA>): "4 statusdict /setoutputtray get exec
[4] statusdict /setmailboxstacker get exec
<< /OutputFaceUp false >> setpagedevice"
*End
*KmOutput MT5Dn/Vassoio 5(Facciata gi<FA>): "4 statusdict /setoutputtray get exec
[5] statusdict /setmailboxstacker get exec
<< /OutputFaceUp false >> setpagedevice"
*End
*KmOutput MT1Up/Vassoio 1(Facciata su): "4 statusdict /setoutputtray get exec
[1] statusdict /setmailboxstacker get exec
<< /OutputFaceUp true >> setpagedevice"
*End
*KmOutput MT2Up/Vassoio 2(Facciata su): "4 statusdict /setoutputtray get exec
[2] statusdict /setmailboxstacker get exec
<< /OutputFaceUp true >> setpagedevice"
*End
*KmOutput MT3Up/Vassoio 3(Facciata su): "4 statusdict /setoutputtray get exec
[3] statusdict /setmailboxstacker get exec
<< /OutputFaceUp true >> setpagedevice"
*End
*KmOutput MT4Up/Vassoio 4(Facciata su): "4 statusdict /setoutputtray get exec
[4] statusdict /setmailboxstacker get exec
<< /OutputFaceUp true >> setpagedevice"
*End
*KmOutput MT5Up/Vassoio 5(Facciata su): "4 statusdict /setoutputtray get exec
[5] statusdict /setmailboxstacker get exec
<< /OutputFaceUp true >> setpagedevice"
*End
*?KmOutput:"
"
*End
*CloseUI: *KmOutput
*%==============================================
*% Paper Orientation
*%==============================================
*OpenUI *KmOrientate/Orientamento: PickOne
*OrderDependency: 30 AnySetup *KmOrientate
*DefaultKmOrientate: off
*KmOrientate off/Off: "<< /Morientation false >> setpagedevice"
*KmOrientate port/Verticale: "<< /Morientation true /MorientationDetails << /MorientationMode 0 >> >> setpagedevice"
*KmOrientate land/Orizzontale: "<< /Morientation true /MorientationDetails << /MorientationMode 1 >> >> setpagedevice"
*End
*CloseUI: *KmOrientate
*%==============================================
*% Copia KPDL Staple Mode Definitions
*%==============================================
*OpenUI *KmStaple/Pinzatura: PickOne
*OrderDependency: 30 AnySetup *KmStaple
*DefaultKmStaple: None
*KmStaple None/Off: "<< /Staple 0 >> setpagedevice"
*End
*KmStaple UPL/Sinist in alto: "
userdict /UIStapleDetails known not { userdict /UIStapleDetails 10 dict put } if
userdict /UIStapleDetails get /StaplePosition 50 put
<< /Staple 3 /StapleDetails UIStapleDetails >> setpagedevice"
*End
*KmStaple UPR/Destra in alto: "
userdict /UIStapleDetails known not { userdict /UIStapleDetails 10 dict put } if
userdict /UIStapleDetails get /StaplePosition 51 put
<< /Staple 3 /StapleDetails UIStapleDetails >> setpagedevice"
*End
*KmStaple CL/2 Pinza -Sinist: "
userdict /UIStapleDetails known not { userdict /UIStapleDetails 10 dict put } if
userdict /UIStapleDetails get /StaplePosition 52 put
<< /Staple 3 /StapleDetails UIStapleDetails >> setpagedevice"
*End
*KmStaple CR/2 Pinza -Destra: "
userdict /UIStapleDetails known not { userdict /UIStapleDetails 10 dict put } if
userdict /UIStapleDetails get /StaplePosition 53 put
<< /Staple 3 /StapleDetails UIStapleDetails >> setpagedevice"
*End
*KmStaple CU/2 Pinza -Alto: "
userdict /UIStapleDetails known not { userdict /UIStapleDetails 10 dict put } if
userdict /UIStapleDetails get /StaplePosition 54 put
<< /Staple 3 /StapleDetails UIStapleDetails >> setpagedevice"
*End
*?KmStaple:"
save
currentpagedevice /Staple known
dup { currentpagedevice /Staple get 0 ne and } if
{ currentpagedevice /StapleDetails get
/StaplePosition get [(Upper Left)(Upper Right)(Left 2 Staples)(Right 2 Staples)(Upper 2 Staples)] exch get }
{ (None) } ifelse = flush restore"
*End
*CloseUI: *KmStaple
*%==============================================
*% Copia KPDL Punch Mode Definitions
*%==============================================
*OpenUI *KmPunch/Bucatura: PickOne
*OrderDependency: 30 AnySetup *KmPunch
*DefaultKmPunch: None
*KmPunch None/Off: "<< /Punch 0 >> setpagedevice"
*End
*KmPunch 2holesUSL/2 Buchi -Sinist (US): "
<< /Punch 3 /PunchDetails << /PunchMode 2 /PunchPosition 1 >> >> setpagedevice"
*End
*KmPunch 2holesUSR/2 Buchi -Destra (US): "
<< /Punch 3 /PunchDetails << /PunchMode 2 /PunchPosition 2 >> >> setpagedevice"
*End
*KmPunch 2holesUSU/2 Buchi -Alto (US): "
<< /Punch 3 /PunchDetails << /PunchMode 2 /PunchPosition 3 >> >> setpagedevice"
*End
*KmPunch 2holesEURL/2 Buchi -Sinist (EUR): "
<< /Punch 3 /PunchDetails << /PunchMode 1 /PunchPosition 1 >> >> setpagedevice"
*End
*KmPunch 2holesEURR/2 Buchi -Destra (EUR): "
<< /Punch 3 /PunchDetails << /PunchMode 1 /PunchPosition 2 >> >> setpagedevice"
*End
*KmPunch 2holesEURU/2 Buchi -Alto (EUR): "
<< /Punch 3 /PunchDetails << /PunchMode 1 /PunchPosition 3 >> >> setpagedevice"
*End
*KmPunch 3holesL/3 Buchi -Sinist: "
<< /Punch 3 /PunchDetails << /PunchMode 1 /PunchPosition 1 >> >> setpagedevice"
*End
*KmPunch 3holesR/3 Buchi -Destra: "
<< /Punch 3 /PunchDetails << /PunchMode 1 /PunchPosition 2 >> >> setpagedevice"
*End
*KmPunch 3holesU/3 Buchi -Alto: "
<< /Punch 3 /PunchDetails << /PunchMode 1 /PunchPosition 3 >> >> setpagedevice"
*End
*KmPunch 4holesL/4 Buchi -Sinist: "
<< /Punch 3 /PunchDetails << /PunchMode 2 /PunchPosition 1 >> >> setpagedevice"
*End
*KmPunch 4holesR/4 Buchi -Destra: "
<< /Punch 3 /PunchDetails << /PunchMode 2 /PunchPosition 2 >> >> setpagedevice"
*End
*KmPunch 4holesU/4 Buchi -Alto: "
<< /Punch 3 /PunchDetails << /PunchMode 2 /PunchPosition 3 >> >> setpagedevice"
*End
*?KmPunch:"
save
currentpagedevice /Punch known
dup { currentpagedevice /Punch get 0 ne and } if
{ currentpagedevice /Mode get
/Mode get [(2or3holes)(4or2holes)] exch get }
{ (None) } ifelse = flush restore"
*End
*CloseUI: *KmPunch
*%==============================================
*% Booklet Mode
*%==============================================
*OpenUI *Booklet/Libretto: PickOne
*DefaultBooklet: OFF
*OrderDependency: 40 AnySetup *Booklet
*Booklet OFF/Off: "0 statusdict /setkcbooklet get exec"
*Booklet LeftOpen/Sin. Aperto: "statusdict begin true setduplexmode true settumble end 1 statusdict /setkcbooklet get exec"
*Booklet RightOpen/Des. Aperto: "statusdict begin true setduplexmode true settumble end 2 statusdict /setkcbooklet get exec"
*CloseUI: *Booklet
*%==============================================
*% Fold
*%==============================================
*OpenUI *Fold/Cuc. Libretto: PickOne
*DefaultFold: OFF
*OrderDependency: 40 AnySetup *Fold
*Fold OFF/Off: "<< /Fold 0 >> setpagedevice"
*Fold ON/On: "<< /Fold 3 /FoldDetails << /FoldMode 1 >> >> setpagedevice"
*CloseUI: *Fold
*%==============================================
*% Copia KPDL Shift Mode Definitions
*%==============================================
*OpenUI *Jog/Deviazione: PickOne
*OrderDependency: 45 AnySetup *Jog
*DefaultJog: None
*Jog EndOfSet/On: "<< /Jog 3 >> setpagedevice"
*Jog None/Off: "<< /Jog 0 >> setpagedevice"
*?Jog: "
save
currentpagedevice dup /Jog known {
/Jog get dup 0 gt
{(False)}{(True)} ifelse
}{(Unknown)} ifelse
exch pop
= flush restore"
*End
*CloseUI: *Jog
*%==============================================
*% Job Spooling Definitions
*%==============================================
*OpenUI *KMCollate/Memor. Lavoro: PickOne
*OrderDependency: 50 AnySetup *KMCollate
*DefaultKMCollate: Def
*KMCollate Def/Valori predefiniti stampante: ""
*KMCollate None/No: "<< /Collate false >> setpagedevice"
*KMCollate Temp/Temporaneo: "
userdict /UICollateDetails known not
{ userdict /UICollateDetails 10 dict put } if
userdict /UICollateDetails get /Mode 1 put
<< /Collate true /CollateDetails UICollateDetails >>
setpagedevice"
*End
*KMCollate Perm/Permanente: "
userdict /UICollateDetails known not
{ userdict /UICollateDetails 10 dict put } if
userdict /UICollateDetails get /Mode 2 put
<< /Collate true /CollateDetails UICollateDetails >>
setpagedevice"
*End
*KMCollate VMBAdmin/Virtual MailBox (Amministratore): "
userdict /UICollateDetails known not
{userdict /UICollateDetails 10 dict put} if
userdict /UICollateDetails get dup /Mode 8 put
/Destination [(Administrator)] put
<</Collate true /CollateDetails UICollateDetails>>
setpagedevice"
*End
*KMCollate VMBUser01/Virtual MailBox (Utente 1): "
userdict /UICollateDetails known not
{ userdict /UICollateDetails 10 dict put } if
userdict /UICollateDetails get dup /Mode 8 put
/Destination [(User 1)] put
<< /Collate true /CollateDetails UICollateDetails >>
setpagedevice"
*End
*KMCollate VMBUser02/Virtual MailBox (Utente 2): "
userdict /UICollateDetails known not
{ userdict /UICollateDetails 10 dict put } if
userdict /UICollateDetails get dup /Mode 8 put
/Destination [(User 2)] put
<< /Collate true /CollateDetails UICollateDetails >>
setpagedevice"
*End
*KMCollate VMBUser03/Virtual MailBox (Utente 3): "
userdict /UICollateDetails known not
{ userdict /UICollateDetails 10 dict put } if
userdict /UICollateDetails get dup /Mode 8 put
/Destination [(User 3)] put
<< /Collate true /CollateDetails UICollateDetails >>
setpagedevice"
*End
*KMCollate VMBUser04/Virtual MailBox (Utente 4): "
userdict /UICollateDetails known not
{ userdict /UICollateDetails 10 dict put } if
userdict /UICollateDetails get dup /Mode 8 put
/Destination [(User 4)] put
<< /Collate true /CollateDetails UICollateDetails >>
setpagedevice"
*End
*KMCollate VMBUser05/Virtual MailBox (Utente 5): "
userdict /UICollateDetails known not
{ userdict /UICollateDetails 10 dict put } if
userdict /UICollateDetails get dup /Mode 8 put
/Destination [(User 5)] put
<< /Collate true /CollateDetails UICollateDetails >>
setpagedevice"
*End
*KMCollate VMBUser06/Virtual MailBox (Utente 6): "
userdict /UICollateDetails known not
{ userdict /UICollateDetails 10 dict put } if
userdict /UICollateDetails get dup /Mode 8 put
/Destination [(User 6)] put
<< /Collate true /CollateDetails UICollateDetails >>
setpagedevice"
*End
*KMCollate VMBUser07/Virtual MailBox (Utente 7): "
userdict /UICollateDetails known not
{ userdict /UICollateDetails 10 dict put } if
userdict /UICollateDetails get dup /Mode 8 put
/Destination [(User 7)] put
<< /Collate true /CollateDetails UICollateDetails >>
setpagedevice"
*End
*KMCollate VMBUser08/Virtual MailBox (Utente 8): "
userdict /UICollateDetails known not
{ userdict /UICollateDetails 10 dict put } if
userdict /UICollateDetails get dup /Mode 8 put
/Destination [(User 8)] put
<< /Collate true /CollateDetails UICollateDetails >>
setpagedevice"
*End
*KMCollate VMBUser09/Virtual MailBox (Utente 9): "
userdict /UICollateDetails known not
{ userdict /UICollateDetails 10 dict put } if
userdict /UICollateDetails get dup /Mode 8 put
/Destination [(User 9)] put
<< /Collate true /CollateDetails UICollateDetails >>
setpagedevice"
*End
*KMCollate VMBUser10/Virtual MailBox (Utente 10): "
userdict /UICollateDetails known not
{ userdict /UICollateDetails 10 dict put } if
userdict /UICollateDetails get dup /Mode 8 put
/Destination [(User 10)] put
<< /Collate true /CollateDetails UICollateDetails >>
setpagedevice"
*End
*KMCollate QuickCopy/Copia rapida: "
userdict /UICollateDetails known not {userdict /UICollateDetails 10 dict put} if
userdict /UICollateDetails get dup /Mode 0 put dup /Type 8 put /Hold 1 put <</Collate true /CollateDetails UICollateDetails>> setpagedevice"
*End
*KMCollate ProofHold/Controlla e mantieni: "
userdict /UICollateDetails known not {userdict /UICollateDetails 10 dict put} if
userdict /UICollateDetails get dup /Mode 0 put dup /Type 8 put /Hold 3 put <</Collate true /CollateDetails UICollateDetails>> setpagedevice"
*End
*KMCollate JobStorage/Stampa privata: "
userdict /UICollateDetails known not {userdict /UICollateDetails 10 dict put} if
userdict /UICollateDetails get dup /Mode 0 put dup /Type 8 put /Hold 2 put <</Collate true /CollateDetails UICollateDetails>> setpagedevice"
*End
*?KMCollate: "
save
currentpagedevice dup /Collate known {
dup /CollateDetails known {
/Collate get
dup /Mode known {
/Mode get
1 {
dup 1 eq { pop (Temp) exit } if
dup 2 eq { pop (Perm) exit } if
dup 8 eq { pop (VMB) exit } if
pop (Unknown)
} repeat
}{ pop (Unknown) } ifelse
}{ pop (Unknown) } ifelse
}{ pop (Unknown) } ifelse
= flush restore"
*End
*CloseUI: *KMCollate
*%==============================================
*% Management Code
*%==============================================
*OpenUI *KmManagment/Codice gest.: PickOne
*OrderDependency: 60 AnySetup *KmManagment
*DefaultKmManagment: Default
*KmManagment Default/Off: ""
*KmManagment MG0000/0000: "(0000) statusdict /setmanagementnumber get exec"
*KmManagment MG0001/0001: "(0001) statusdict /setmanagementnumber get exec"
*KmManagment MG0002/0002: "(0002) statusdict /setmanagementnumber get exec"
*KmManagment MG0003/0003: "(0003) statusdict /setmanagementnumber get exec"
*KmManagment MG0004/0004: "(0004) statusdict /setmanagementnumber get exec"
*KmManagment MG0005/0005: "(0005) statusdict /setmanagementnumber get exec"
*KmManagment MG0006/0006: "(0006) statusdict /setmanagementnumber get exec"
*KmManagment MG0007/0007: "(0007) statusdict /setmanagementnumber get exec"
*KmManagment MG0008/0008: "(0008) statusdict /setmanagementnumber get exec"
*KmManagment MG0009/0009: "(0009) statusdict /setmanagementnumber get exec"
*KmManagment MG0010/0010: "(0010) statusdict /setmanagementnumber get exec"
*KmManagment MG0011/0011: "(0011) statusdict /setmanagementnumber get exec"
*KmManagment MG0012/0012: "(0012) statusdict /setmanagementnumber get exec"
*KmManagment MG0013/0013: "(0013) statusdict /setmanagementnumber get exec"
*KmManagment MG0014/0014: "(0014) statusdict /setmanagementnumber get exec"
*KmManagment MG0015/0015: "(0015) statusdict /setmanagementnumber get exec"
*KmManagment MG0016/0016: "(0016) statusdict /setmanagementnumber get exec"
*KmManagment MG0017/0017: "(0017) statusdict /setmanagementnumber get exec"
*KmManagment MG0018/0018: "(0018) statusdict /setmanagementnumber get exec"
*KmManagment MG0019/0019: "(0019) statusdict /setmanagementnumber get exec"
*KmManagment MG0020/0020: "(0020) statusdict /setmanagementnumber get exec"
*KmManagment MG0021/0021: "(0021) statusdict /setmanagementnumber get exec"
*KmManagment MG0022/0022: "(0022) statusdict /setmanagementnumber get exec"
*KmManagment MG0023/0023: "(0023) statusdict /setmanagementnumber get exec"
*KmManagment MG0024/0024: "(0024) statusdict /setmanagementnumber get exec"
*KmManagment MG0025/0025: "(0025) statusdict /setmanagementnumber get exec"
*KmManagment MG0026/0026: "(0026) statusdict /setmanagementnumber get exec"
*KmManagment MG0027/0027: "(0027) statusdict /setmanagementnumber get exec"
*KmManagment MG0028/0028: "(0028) statusdict /setmanagementnumber get exec"
*KmManagment MG0029/0029: "(0029) statusdict /setmanagementnumber get exec"
*KmManagment MG0030/0030: "(0030) statusdict /setmanagementnumber get exec"
*KmManagment MG0000000/0000000: "(0000000) statusdict /setmanagementnumber get exec"
*KmManagment MG0000001/0000001: "(0000001) statusdict /setmanagementnumber get exec"
*KmManagment MG0000002/0000002: "(0000002) statusdict /setmanagementnumber get exec"
*KmManagment MG0000003/0000003: "(0000003) statusdict /setmanagementnumber get exec"
*KmManagment MG0000004/0000004: "(0000004) statusdict /setmanagementnumber get exec"
*KmManagment MG0000005/0000005: "(0000005) statusdict /setmanagementnumber get exec"
*KmManagment MG0000006/0000006: "(0000006) statusdict /setmanagementnumber get exec"
*KmManagment MG0000007/0000007: "(0000007) statusdict /setmanagementnumber get exec"
*KmManagment MG0000008/0000008: "(0000008) statusdict /setmanagementnumber get exec"
*KmManagment MG0000009/0000009: "(0000009) statusdict /setmanagementnumber get exec"
*KmManagment MG0000010/0000010: "(0000010) statusdict /setmanagementnumber get exec"
*KmManagment MG0000011/0000011: "(0000011) statusdict /setmanagementnumber get exec"
*KmManagment MG0000012/0000012: "(0000012) statusdict /setmanagementnumber get exec"
*KmManagment MG0000013/0000013: "(0000013) statusdict /setmanagementnumber get exec"
*KmManagment MG0000014/0000014: "(0000014) statusdict /setmanagementnumber get exec"
*KmManagment MG0000015/0000015: "(0000015) statusdict /setmanagementnumber get exec"
*KmManagment MG0000016/0000016: "(0000016) statusdict /setmanagementnumber get exec"
*KmManagment MG0000017/0000017: "(0000017) statusdict /setmanagementnumber get exec"
*KmManagment MG0000018/0000018: "(0000018) statusdict /setmanagementnumber get exec"
*KmManagment MG0000019/0000019: "(0000019) statusdict /setmanagementnumber get exec"
*KmManagment MG0000020/0000020: "(0000020) statusdict /setmanagementnumber get exec"
*KmManagment MG0000021/0000021: "(0000021) statusdict /setmanagementnumber get exec"
*KmManagment MG0000022/0000022: "(0000022) statusdict /setmanagementnumber get exec"
*KmManagment MG0000023/0000023: "(0000023) statusdict /setmanagementnumber get exec"
*KmManagment MG0000024/0000024: "(0000024) statusdict /setmanagementnumber get exec"
*KmManagment MG0000025/0000025: "(0000025) statusdict /setmanagementnumber get exec"
*KmManagment MG0000026/0000026: "(0000026) statusdict /setmanagementnumber get exec"
*KmManagment MG0000027/0000027: "(0000027) statusdict /setmanagementnumber get exec"
*KmManagment MG0000028/0000028: "(0000028) statusdict /setmanagementnumber get exec"
*KmManagment MG0000029/0000029: "(0000029) statusdict /setmanagementnumber get exec"
*KmManagment MG0000030/0000030: "(0000030) statusdict /setmanagementnumber get exec"
*?KmManagment: " "
*End
*CloseUI: *KmManagment
*%==============================================
*% 180 Rotate Setting
*%==============================================
*OpenUI *Rotate/180 Ruotato: Boolean
*OrderDependency: 25 AnySetup *Rotate
*DefaultRotate: False
*Rotate True/On: "1 dict begin currentpagedevice /Install get aload
/aaa exch def { currentpagedevice /PageSize get aload pop translate 180 rotate } bind aload
length /aaa load length add array astore cvx /Install exch def currentdict end setpagedevice"
*Rotate False/Off: ""
*?Rotate: "
(False) ="
*End
*CloseUI: *Rotate
*%==============================================
*% Cover Mode
*%==============================================
*OpenUI *KmCover/Modo copertina: PickOne
*DefaultKmCover: Off
*OrderDependency: 25 AnySetup *KmCover
*KmCover Off/Off: "<< /Mcover false >> setpagedevice"
*KmCover FBBO/Fronte Bianco: "<< /Mcover true /McoverDetails << /Frontcover 1 /Backcover 0 /Coverpapersource 0>> >> setpagedevice"
*KmCover FFBO/Stampa Frontale: "<< /Mcover true /McoverDetails << /Frontcover 2 /Backcover 0 /Coverpapersource 0>> >> setpagedevice"
*KmCover FPBO/Front Cover Back Print: "<< /Mcover true /McoverDetails << /Frontcover 3 /Backcover 0 /Coverpapersource 0>> >> setpagedevice"
*KmCover FDBO/Fronte2Facce: "<< /Mcover true /McoverDetails << /Frontcover 4 /Backcover 0 /Coverpapersource 0>> >> setpagedevice"
*CloseUI: *KmCover
*%==============================================
*% OHP
*%==============================================
*OpenUI *KmOHP/Interlacciamento lucidi: PickOne
*DefaultKmOHP: Off
*OrderDependency: 25 AnySetup *KmOHP
*KmOHP Off/Off: "<< /SlipSheet 0 >> setpagedevice"
*KmOHP kmBlank/Blank Sheet: "<< /SlipSheet 3 /SlipSheetDetails << /CopyMode 1 >> >> setpagedevice"
*KmOHP kmCopy/Stampa su Foglio Retro: "<< /SlipSheet 3 /SlipSheetDetails << /CopyMode 2 >> >> setpagedevice"
*CloseUI: *KmOHP
*%==============================================
*% Barcode Mode Definitions
*%==============================================
*OpenUI *KMBarcodeMode/Codice a barre: PickOne
*OrderDependency: 45 AnySetup *KMBarcodeMode
*DefaultKMBarcodeMode: None
*KMBarcodeMode None/No: "
userdict /UICollateDetails known not {userdict /UICollateDetails 10 dict put} if
userdict /UICollateDetails get /Barcode 2 put <</CollateDetails UICollateDetails>> setpagedevice
"
*End
*KMBarcodeMode First/Solo Prima Pagina: "
userdict /UICollateDetails known not {userdict /UICollateDetails 10 dict put} if
userdict /UICollateDetails get /Barcode 0 put <</CollateDetails UICollateDetails>> setpagedevice
"
*End
*KMBarcodeMode All/Tutte Pagine: "
userdict /UICollateDetails known not {userdict /UICollateDetails 10 dict put} if
userdict /UICollateDetails get /Barcode 1 put <</CollateDetails UICollateDetails>> setpagedevice
"
*End
*?KMBarcodeMode: "
save
currentpagedevice dup /CollateDetails known {
/CollateDetails get /Barcode get
1 {
dup 2 eq {pop (None) exit} if
dup 0 eq {pop (First) exit} if
dup 1 eq {pop (All) exit} if
pop (Unknown)
} repeat
}{(Unknown)} ifelse
exch pop
= flush restore"
*End
*CloseUI: *KMBarcodeMode
*% Barcode ID Definitions
*OpenUI *KMBarcodeID/Stampa ID codice a barre: Boolean
*OrderDependency: 45 AnySetup *KMBarcodeID
*DefaultKMBarcodeID: False
*KMBarcodeID True/On: "
userdict /UICollateDetails known not {userdict /UICollateDetails 10 dict put} if
userdict /UICollateDetails get /BarcodePosition 2 copy known {2 copy get}
{currentpagedevice /CollateDetails get /BarcodePosition get} ifelse 128
or put <</CollateDetails UICollateDetails>> setpagedevice
"
*End
*KMBarcodeID False/Off: "
userdict /UICollateDetails known not {userdict /UICollateDetails 10 dict put} if
userdict /UICollateDetails get /BarcodePosition 2 copy known {2 copy get}
{currentpagedevice /CollateDetails get /BarcodePosition get} ifelse 128
not put <</CollateDetails UICollateDetails>> setpagedevice
"
*End
*?KMBarcodeID: "
save
currentpagedevice dup /CollateDetails known {
/CollateDetails get /BarcodePosition get 128 gt
{(False)}{(True)} ifelse
}{(Unknown)} ifelse
exch pop
= flush restore"
*End
*CloseUI: *KMBarcodeID
*% Barcode Position Definitions
*OpenUI *KMBarcodePos/Posizione codice a barre: PickOne
*OrderDependency: 45 AnySetup *KMBarcodePos
*DefaultKMBarcodePos: ULB
*KMBarcodePos ULB/Sinistro in basso: "
userdict /UICollateDetails known not {userdict /UICollateDetails 10 dict put} if
userdict /UICollateDetails get /BarcodePosition 2 copy known {2 copy get}
{currentpagedevice /CollateDetails get /BarcodePosition get} ifelse 128
and 4 or put <</CollateDetails UICollateDetails>> setpagedevice
"
*End
*KMBarcodePos URB/Destra in alto: "
userdict /UICollateDetails known not {userdict /UICollateDetails 10 dict put} if
userdict /UICollateDetails get /BarcodePosition 2 copy known {2 copy get}
{currentpagedevice /CollateDetails get /BarcodePosition get} ifelse 128
and 3 or put <</CollateDetails UICollateDetails>> setpagedevice
"
*End
*KMBarcodePos LLB/Sinistro in basso: "
userdict /UICollateDetails known not {userdict /UICollateDetails 10 dict put} if
userdict /UICollateDetails get /BarcodePosition 2 copy known {2 copy get}
{currentpagedevice /CollateDetails get /BarcodePosition get} ifelse 128
and 7 or put <</CollateDetails UICollateDetails>> setpagedevice
"
*End
*KMBarcodePos LRB/Destro in basso: "
userdict /UICollateDetails known not {userdict /UICollateDetails 10 dict put} if
userdict /UICollateDetails get /BarcodePosition 2 copy known {2 copy get}
{currentpagedevice /CollateDetails get /BarcodePosition get} ifelse 128
and put <</CollateDetails UICollateDetails>> setpagedevice
"
*End
*KMBarcodePos ULVB/Sinist in alto(Verticale): "
userdict /UICollateDetails known not {userdict /UICollateDetails 10 dict put} if
userdict /UICollateDetails get /BarcodePosition 2 copy known {2 copy get}
{currentpagedevice /CollateDetails get /BarcodePosition get} ifelse 128
and 5 or put <</CollateDetails UICollateDetails>> setpagedevice
"
*End
*KMBarcodePos URVB/Destra in alto(Verticale): "
userdict /UICollateDetails known not {userdict /UICollateDetails 10 dict put} if
userdict /UICollateDetails get /BarcodePosition 2 copy known {2 copy get}
{currentpagedevice /CollateDetails get /BarcodePosition get} ifelse 128
and 2 or put <</CollateDetails UICollateDetails>> setpagedevice
"
*End
*KMBarcodePos LLVB/Sinistro in basso(Verticale): "
userdict /UICollateDetails known not {userdict /UICollateDetails 10 dict put} if
userdict /UICollateDetails get /BarcodePosition 2 copy known {2 copy get}
{currentpagedevice /CollateDetails get /BarcodePosition get} ifelse 128
and 6 or put <</CollateDetails UICollateDetails>> setpagedevice
"
*End
*KMBarcodePos LRVB/Destro in basso(Verticale): "
userdict /UICollateDetails known not {userdict /UICollateDetails 10 dict put} if
userdict /UICollateDetails get /BarcodePosition 2 copy known {2 copy get}
{currentpagedevice /CollateDetails get /BarcodePosition get} ifelse 128
and 1 or put <</CollateDetails UICollateDetails>> setpagedevice
"
*End
*?KMBarcodePos: "
save
currentpagedevice dup /CollateDetails known {
/CollateDetails get /BarcodePosition get
1 {
dup 4 eq {pop (ULB) exit} if
dup 3 eq {pop (URB) exit} if
dup 7 eq {pop (LLB) exit} if
dup 0 eq {pop (LRB) exit} if
dup 5 eq {pop (ULVB) exit} if
dup 2 eq {pop (URVB) exit} if
dup 6 eq {pop (LLVB) exit} if
dup 1 eq {pop (LRVB) exit} if
pop (Unknown)
} repeat
}{(Unknown)} ifelse
exch pop
= flush restore"
*End
*CloseUI: *KMBarcodePos
*% KCSuperWatermark
*OpenUI *KCSuperWatermark/Super Watermark: PickOne
*OrderDependency: 10 AnySetup *KCSuperWatermark
*DefaultKCSuperWatermark: None
*KCSuperWatermark None/No: ""
*KCSuperWatermark UFA/Use Form-A: "<</BeginPage {pop mark {(%disk0%Form-A) kcloadpageimage} stopped cleartomark}>> setpagedevice"
*KCSuperWatermark UFB/Use Form-B: "<</BeginPage {pop mark {(%disk0%Form-B) kcloadpageimage} stopped cleartomark}>> setpagedevice"
*KCSuperWatermark UFC/Use Form-C: "<</BeginPage {pop mark {(%disk0%Form-C) kcloadpageimage} stopped cleartomark}>> setpagedevice"
*KCSuperWatermark SFA/Save Form-A: "<</EndPage {exch pop 2 ne dup mark exch {{(%disk0%Form-A) kcsavepageimage} stopped} if cleartomark}>> setpagedevice"
*KCSuperWatermark SFB/Save Form-B: "<</EndPage {exch pop 2 ne dup mark exch {{(%disk0%Form-B) kcsavepageimage} stopped} if cleartomark}>> setpagedevice"
*KCSuperWatermark SFC/Save Form-C: "<</EndPage {exch pop 2 ne dup mark exch {{(%disk0%Form-C) kcsavepageimage} stopped} if cleartomark}>> setpagedevice"
*CloseUI: *KCSuperWatermark
*%==============================================
*% Tandem
*%==============================================
*OpenUI *KmTandem/Tandem: PickOne
*OrderDependency: 65 AnySetup *KmTandem
*DefaultKmTandem: off
*KmTandem off/Off: "<< /Mtandem false >> setpagedevice"
*KmTandem on/On: "<< /Mtandem true >> setpagedevice"
*CloseUI: *KmTandem
*%==============================================
*% PPD Version Info
*%==============================================
*OpenUI *KMVersion/PPD Versione: PickOne
*OrderDependency: 70 AnySetup *KMVersion
*DefaultKMVersion: Default
*KMVersion Default/8.2.0111 [01-11-2005]: ""
*CloseUI: *KMVersion
*%Font Information
*DefaultFont: Courier
*Font AntiqueOlive-Bold: Standard "(001.000)" Standard ROM
*Font AntiqueOlive-Compact: Standard "(001.000)" Standard ROM
*Font AntiqueOlive-Italic: Standard "(001.000)" Standard ROM
*Font AntiqueOlive-Roman: Standard "(001.000)" Standard ROM
*Font Apple-Chancery: Standard "(001.000)" Standard ROM
*Font Arial-BoldItalicMT: Standard "(001.000)" Standard ROM
*Font Arial-BoldMT: Standard "(001.000)" Standard ROM
*Font Arial-ItalicMT: Standard "(001.000)" Standard ROM
*Font ArialMT: Standard "(001.000)" Standard ROM
*Font AvantGarde-Book: Standard "(001.000)" Standard ROM
*Font AvantGarde-BookOblique: Standard "(001.000)" Standard ROM
*Font AvantGarde-Demi: Standard "(001.000)" Standard ROM
*Font AvantGarde-DemiOblique: Standard "(001.000)" Standard ROM
*Font Bodoni-Bold: Standard "(001.000)" Standard ROM
*Font Bodoni-BoldItalic: Standard "(001.000)" Standard ROM
*Font Bodoni-Italic: Standard "(001.000)" Standard ROM
*Font Bodoni-Poster: Standard "(001.000)" Standard ROM
*Font Bodoni-PosterCompressed: Standard "(001.000)" Standard ROM
*Font Bodoni: Standard "(001.000)" Standard ROM
*Font Bookman-Demi: Standard "(001.000)" Standard ROM
*Font Bookman-DemiItalic: Standard "(001.000)" Standard ROM
*Font Bookman-Light: Standard "(001.000)" Standard ROM
*Font Bookman-LightItalic: Standard "(001.000)" Standard ROM
*Font Carta: Special "(001.000)" Standard ROM
*Font Chicago: Standard "(001.000)" Standard ROM
*Font Clarendon-Bold: Standard "(001.000)" Standard ROM
*Font Clarendon-Light: Standard "(001.000)" Standard ROM
*Font Clarendon: Standard "(001.000)" Standard ROM
*Font CooperBlack-Italic: Standard "(001.000)" Standard ROM
*Font CooperBlack: Standard "(001.000)" Standard ROM
*Font Copperplate-ThirtyThreeBC: Standard "(001.000)" Standard ROM
*Font Copperplate-ThirtyTwoBC: Standard "(001.000)" Standard ROM
*Font Coronet-Regular: Standard "(001.000)" Standard ROM
*Font Courier-Bold: Standard "(001.000)" Standard ROM
*Font Courier-BoldOblique: Standard "(001.000)" Standard ROM
*Font Courier-Oblique: Standard "(001.000)" Standard ROM
*Font Courier: Standard "(001.000)" Standard ROM
*Font Eurostile-Bold: Standard "(001.000)" Standard ROM
*Font Eurostile-BoldExtendedTwo: Standard "(001.000)" Standard ROM
*Font Eurostile-ExtendedTwo: Standard "(001.000)" Standard ROM
*Font Eurostile: Standard "(001.000)" Standard ROM
*Font Geneva: Standard "(001.000)" Standard ROM
*Font GillSans-Bold: Standard "(001.000)" Standard ROM
*Font GillSans-BoldCondensed: Standard "(001.000)" Standard ROM
*Font GillSans-BoldItalic: Standard "(001.000)" Standard ROM
*Font GillSans-Condensed: Standard "(001.000)" Standard ROM
*Font GillSans-ExtraBold: Standard "(001.000)" Standard ROM
*Font GillSans-Italic: Standard "(001.000)" Standard ROM
*Font GillSans-Light: Standard "(001.000)" Standard ROM
*Font GillSans-LightItalic: Standard "(001.000)" Standard ROM
*Font GillSans: Standard "(001.000)" Standard ROM
*Font Goudy-Bold: Standard "(001.000)" Standard ROM
*Font Goudy-BoldItalic: Standard "(001.000)" Standard ROM
*Font Goudy-ExtraBold: Standard "(001.000)" Standard ROM
*Font Goudy-Italic: Standard "(001.000)" Standard ROM
*Font Goudy: Standard "(001.000)" Standard ROM
*Font Helvetica-Bold: Standard "(001.000)" Standard ROM
*Font Helvetica-BoldOblique: Standard "(001.000)" Standard ROM
*Font Helvetica-Condensed-Bold: Standard "(001.000)" Standard ROM
*Font Helvetica-Condensed-BoldObl: Standard "(001.000)" Standard ROM
*Font Helvetica-Condensed-Oblique: Standard "(001.000)" Standard ROM
*Font Helvetica-Condensed: Standard "(001.000)" Standard ROM
*Font Helvetica-Narrow-Bold: Standard "(001.000)" Standard ROM
*Font Helvetica-Narrow-BoldOblique: Standard "(001.000)" Standard ROM
*Font Helvetica-Narrow-Oblique: Standard "(001.000)" Standard ROM
*Font Helvetica-Narrow: Standard "(001.000)" Standard ROM
*Font Helvetica-Oblique: Standard "(001.000)" Standard ROM
*Font Helvetica: Standard "(001.000)" Standard ROM
*Font HoeflerText-Black: Standard "(001.000)" Standard ROM
*Font HoeflerText-BlackItalic: Standard "(001.000)" Standard ROM
*Font HoeflerText-Italic: Standard "(001.000)" Standard ROM
*Font HoeflerText-Ornaments: Special "(001.000)" Standard ROM
*Font HoeflerText-Regular: Standard "(001.000)" Standard ROM
*Font JoannaMT-Bold: Standard "(001.000)" Standard ROM
*Font JoannaMT-BoldItalic: Standard "(001.000)" Standard ROM
*Font JoannaMT-Italic: Standard "(001.000)" Standard ROM
*Font JoannaMT: Standard "(001.000)" Standard ROM
*Font LetterGothic-Bold: Standard "(001.000)" Standard ROM
*Font LetterGothic-BoldSlanted: Standard "(001.000)" Standard ROM
*Font LetterGothic-Slanted: Standard "(001.000)" Standard ROM
*Font LetterGothic: Standard "(001.000)" Standard ROM
*Font LubalinGraph-Book: Standard "(001.000)" Standard ROM
*Font LubalinGraph-BookOblique: Standard "(001.000)" Standard ROM
*Font LubalinGraph-Demi: Standard "(001.000)" Standard ROM
*Font LubalinGraph-DemiOblique: Standard "(001.000)" Standard ROM
*Font Marigold: Standard "(001.000)" Standard ROM
*Font MonaLisa-Recut: Standard "(001.000)" Standard ROM
*Font Monaco: Standard "(001.000)" Standard ROM
*Font NewCenturySchlbk-Bold: Standard "(001.000)" Standard ROM
*Font NewCenturySchlbk-BoldItalic: Standard "(001.000)" Standard ROM
*Font NewCenturySchlbk-Italic: Standard "(001.000)" Standard ROM
*Font NewCenturySchlbk-Roman: Standard "(001.000)" Standard ROM
*Font NewYork: Standard "(001.000)" Standard ROM
*Font Optima-Bold: Standard "(001.000)" Standard ROM
*Font Optima-BoldItalic: Standard "(001.000)" Standard ROM
*Font Optima-Italic: Standard "(001.000)" Standard ROM
*Font Optima: Standard "(001.000)" Standard ROM
*Font Oxford: Standard "(001.000)" Standard ROM
*Font Palatino-Bold: Standard "(001.000)" Standard ROM
*Font Palatino-BoldItalic: Standard "(001.000)" Standard ROM
*Font Palatino-Italic: Standard "(001.000)" Standard ROM
*Font Palatino-Roman: Standard "(001.000)" Standard ROM
*Font StempelGaramond-Bold: Standard "(001.000)" Standard ROM
*Font StempelGaramond-BoldItalic: Standard "(001.000)" Standard ROM
*Font StempelGaramond-Italic: Standard "(001.000)" Standard ROM
*Font StempelGaramond-Roman: Standard "(001.000)" Standard ROM
*Font Symbol: Special "(001.000)" Standard ROM
*Font Tekton: Standard "(001.000)" Standard ROM
*Font Times-Bold: Standard "(001.000)" Standard ROM
*Font Times-BoldItalic: Standard "(001.000)" Standard ROM
*Font Times-Italic: Standard "(001.000)" Standard ROM
*Font Times-Roman: Standard "(001.000)" Standard ROM
*Font TimesNewRomanPS-BoldItalicMT: Standard "(001.000)" Standard ROM
*Font TimesNewRomanPS-BoldMT: Standard "(001.000)" Standard ROM
*Font TimesNewRomanPS-ItalicMT: Standard "(001.000)" Standard ROM
*Font TimesNewRomanPSMT: Standard "(001.000)" Standard ROM
*Font Univers-Bold: Standard "(001.000)" Standard ROM
*Font Univers-BoldExt: Standard "(001.000)" Standard ROM
*Font Univers-BoldExtObl: Standard "(001.000)" Standard ROM
*Font Univers-BoldOblique: Standard "(001.000)" Standard ROM
*Font Univers-Condensed: Standard "(001.000)" Standard ROM
*Font Univers-CondensedBold: Standard "(001.000)" Standard ROM
*Font Univers-CondensedBoldOblique: Standard "(001.000)" Standard ROM
*Font Univers-CondensedOblique: Standard "(001.000)" Standard ROM
*Font Univers-Extended: Standard "(001.000)" Standard ROM
*Font Univers-ExtendedObl: Standard "(001.000)" Standard ROM
*Font Univers-Light: Standard "(001.000)" Standard ROM
*Font Univers-LightOblique: Standard "(001.000)" Standard ROM
*Font Univers-Oblique: Standard "(001.000)" Standard ROM
*Font Univers: Standard "(001.000)" Standard ROM
*Font Wingdings-Regular: Special "(001.000)" Standard ROM
*Font ZapfChancery-MediumItalic: Standard "(001.000)" Standard ROM
*Font ZapfDingbats: Special "(001.000)" Standard ROM
*?FontQuery: "
save
/str 100 string dup 0 (fonts/) putinterval def
{ count 1 gt
{ exch dup str 6 94 getinterval cvs
(/) print print (:) print
FontDirectory exch known
{ (Yes) } { (No) } ifelse =
} { exit } ifelse
} bind loop
(*) = flush
restore"
*End
*?FontList: "
save
FontDirectory { pop == } bind forall flush (*) = flush
restore"
*End
*%Printer Messages
*Message: "%%[ exitserver: permanent state may be changed ]%%"
*Message: "%%[ Flushing: rest of job (to end-of-file) will be ignored ]%%"
*Message: "\FontName\ not found, using Courier"
*%Status (format: %%[ status: <one of these> ]%% )
*Status: "warming up"/warming up
*Status: "idle"/idle
*Status: "busy"/busy
*Status: "waiting"/waiting
*Status: "printing"/printing
*Status: "initializing"/initializing
*Status: "printing test page"/printing test page
*%Printer Error (format: %%[ PrinterError: <one of these> ]%% )
*PrinterError: "paper entry misfeed"
*PrinterError: "cover open"
*PrinterError: "no paper tray"
*PrinterError: "out of paper"
*PrinterError: "toner low (halt)"
*PrinterError: "warming up"
*PrinterError: "other reason"
*PrinterError: "video interface mode"
*PrinterError: "offline"
*PrinterError: "toner low (warning)"
*%Input Sources (format: %%[ status: <stat>;source:<one of these> ]%% )
*Source: "serial 25"
*Source: "parallel"
*Source: "AppleTalk"
*Source: "option"
*% End of PPD file for Kyocera Mita KM-6330
|