-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSharp-MX-4101N-ps.ppd
More file actions
executable file
·1916 lines (1777 loc) · 78.8 KB
/
Sharp-MX-4101N-ps.ppd
File metadata and controls
executable file
·1916 lines (1777 loc) · 78.8 KB
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
*PPD-Adobe: "4.3"
*% PPD file for SHARP MX-4101N PS with CUPS.
*% Created by the CUPS PPD Compiler v1.0rc1.
*% Modified by TT 2008/10/04.
*% Copyright 2008 Sharp Corporation
*%
*% This software is free software; you can redistribute it and/or
*% modify it under the terms of the GNU General Public License as
*% published by the Free Software Foundation; either version 2 of
*% the License, or (at your option) any later version.
*%
*% This software is distributed in the hope that it will be useful,
*% but WITHOUT ANY WARRANTY; without even the implied warranty of
*% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
*% GNU General Public License for more details.
*%
*% You should have received a copy of the GNU General Public
*% License along with this software; if not, write to the Free
*% Software Foundation, Inc., 59 Temple Place, Suite 330, Boston,
*% MA 02111 USA
*%
*FormatVersion: "4.3"
*FileVersion: "1.0"
*LanguageVersion: English
*LanguageEncoding: ISOLatin1
*PCFileName: "SHMX411N.PPD"
*Product: "(Sharp MX-4101N)"
*Manufacturer: "Sharp"
*ModelName: "Sharp MX-4101N PS"
*ShortNickName: "Sharp MX-4101N PS"
*NickName: "Sharp MX-4101N PS, 1.0"
*PSVersion: "(3015 ) 99"
*LanguageLevel: "3"
*ColorDevice: True
*DefaultColorSpace: CMYK
*FileSystem: False
*Throughput: "41"
*LandscapeOrientation: Plus90
*TTRasterizer: Type42
*% Driver-defined attributes...
*1284Modes Parallel: Compat Nibble
*AccurateScreensSupport: False
*CenterRegistered: False
*DefaultHalftoneType: 9
*DefaultScreenProc: Dot
*DefaultTransfer: Null
*ExitServer: "
count 0 eq
{ false } { true exch startjob } ifelse
not
{ (WARNING: Cannot modify initial VM.) =
(Missing or invalid password.) =
(Please contact the author of this software.) = flush quit
} if"
*End
*FreeVM: "32767000"
*HWMargins: "12 12 12 12"
*JCLBegin: "<1B>%-12345X@PJL JOB<0A>"
*JCLEnd: "<1B>%-12345X@PJL EOJ<0A><1B>%-12345X"
*JCLToPSInterpreter: "@PJL ENTER LANGUAGE = POSTSCRIPT <0A>"
*Password: "(0)"
*Protocols: PJL
*RequiresPageRegion All: True
*Reset: "
count 0 eq
{ false } { true exch startjob } ifelse
not
{ (WARNING: Cannot reset printer.) =
(Missing or invalid password.) =
(Please contact the author of this software.) = flush quit
} if
systemdict /quit get exec
(WARNING : Printer Reset Failed.) = flush"
*End
*ScreenAngle: "45.0"
*ScreenFreq: "80.0"
*ScreenProc Dot: "{180 mul cos exch 180 mul cos add 2 div} bind"
*SuggestedJobTimeout: "0"
*SuggestedManualFeedTimeout: "60"
*SuggestedWaitTimeout: "300"
*Transfer Null: "{ }"
*Transfer Null.Inverse: "{ 1 exch sub } bind"
*VMOption None/Standard: "32767000"
*% === Constraints =============================================================
*% **** InstallableOption <---> InstallableOption ******************************
*% ---- Input Tray Options -----------------------------------------------------
*% ---- Output Tray Options ----------------------------------------------------
*UIConstraints: *Option1 NotInstalled *Option9 Installed
*% **** InstallableOption <---> Option *****************************************
*% ---- Input Tray Options -----------------------------------------------------
*% ---- None
*UIConstraints: *Option5 NotInstalled *InputSlot Tray3
*UIConstraints: *Option5 NotInstalled *InputSlot Tray4
*% ---- 1 Tray Desk
*UIConstraints: *Option5 1TrayDrawer *InputSlot Tray4
*% ---- Large Capacity Tray ----------------------------------------------------
*UIConstraints: *Option6 NotInstalled *InputSlot LCT
*% ---- Output Tray Options ----------------------------------------------------
*% ---- None
*UIConstraints: *Option1 NotInstalled *OutputBin Output2
*UIConstraints: *Option1 NotInstalled *OutputBin Output3
*UIConstraints: *Option1 NotInstalled *OutputBin Output4
*UIConstraints: *Option1 NotInstalled *OutputBin Output5
*UIConstraints: *Option1 NotInstalled *OutputBin OutputSS
*UIConstraints: *Option1 NotInstalled *ARFold FoldInside
*UIConstraints: *Option1 NotInstalled *ARFold FoldOutside
*% ---- Finisher
*UIConstraints: *Option1 Finisher *OutputBin Output0
*UIConstraints: *Option1 Finisher *OutputBin Output3
*UIConstraints: *Option1 Finisher *OutputBin Output4
*UIConstraints: *Option1 Finisher *OutputBin Output5
*UIConstraints: *Option1 Finisher *OutputBin OutputSS
*UIConstraints: *Option1 Finisher *ARFold FoldInside
*UIConstraints: *Option1 Finisher *ARFold FoldOutside
*% ---- Finisher(Large Stacker)
*UIConstraints: *Option1 LSFinisher *OutputBin Output0
*UIConstraints: *Option1 LSFinisher *OutputBin Output2
*UIConstraints: *Option1 LSFinisher *OutputBin Output3
*UIConstraints: *Option1 LSFinisher *OutputBin OutputSS
*UIConstraints: *Option1 LSFinisher *ARFold FoldInside
*UIConstraints: *Option1 LSFinisher *ARFold FoldOutside
*% ---- Saddle Stitch Finisher
*UIConstraints: *Option1 SSFinisher *OutputBin Output0
*UIConstraints: *Option1 SSFinisher *OutputBin Output2
*UIConstraints: *Option1 SSFinisher *OutputBin Output4
*UIConstraints: *Option1 SSFinisher *OutputBin Output5
*% ---- Punch Module -----------------------------------------------------------
*UIConstraints: *Option9 NotInstalled *ARPunch True
*% ---- Right Tray -------------------------------------------------------------
*UIConstraints: *Option2 NotInstalled *OutputBin Output1
*% **** Option <---> Option ****************************************************
*% ---- InputSlot <---> PageSize -----------------------------------------------
*% ---- Auto -> All
*% ---- Bypass Tray -> All
*% ---- Tray 1
*UIConstraints: *InputSlot Tray1 *PageSize A3W
*UIConstraints: *InputSlot Tray1 *PageSize ARCHB
*UIConstraints: *InputSlot Tray1 *PageSize EnvDL
*UIConstraints: *InputSlot Tray1 *PageSize EnvC5
*UIConstraints: *InputSlot Tray1 *PageSize Env10
*UIConstraints: *InputSlot Tray1 *PageSize EnvMonarch
*UIConstraints: *InputSlot Tray1 *PageSize Postcard
*UIConstraints: *InputSlot Tray1 *PageSize EnvKaku2
*UIConstraints: *InputSlot Tray1 *PageSize Chokei3
*UIConstraints: *InputSlot Tray1 *PageSize Yokei2
*UIConstraints: *InputSlot Tray1 *PageSize Yokei4
*% ---- Tray 2
*UIConstraints: *InputSlot Tray2 *PageSize A3W
*UIConstraints: *InputSlot Tray2 *PageSize ARCHB
*UIConstraints: *InputSlot Tray2 *PageSize EnvDL
*UIConstraints: *InputSlot Tray2 *PageSize EnvC5
*UIConstraints: *InputSlot Tray2 *PageSize Env10
*UIConstraints: *InputSlot Tray2 *PageSize EnvMonarch
*UIConstraints: *InputSlot Tray2 *PageSize Postcard
*UIConstraints: *InputSlot Tray2 *PageSize EnvKaku2
*UIConstraints: *InputSlot Tray2 *PageSize Chokei3
*UIConstraints: *InputSlot Tray2 *PageSize Yokei2
*UIConstraints: *InputSlot Tray2 *PageSize Yokei4
*% ---- Tray 3
*UIConstraints: *InputSlot Tray3 *PageSize A3W
*UIConstraints: *InputSlot Tray3 *PageSize A5
*UIConstraints: *InputSlot Tray3 *PageSize ARCHB
*UIConstraints: *InputSlot Tray3 *PageSize Statement
*UIConstraints: *InputSlot Tray3 *PageSize EnvDL
*UIConstraints: *InputSlot Tray3 *PageSize EnvC5
*UIConstraints: *InputSlot Tray3 *PageSize Env10
*UIConstraints: *InputSlot Tray3 *PageSize EnvMonarch
*UIConstraints: *InputSlot Tray3 *PageSize Postcard
*UIConstraints: *InputSlot Tray3 *PageSize EnvKaku2
*UIConstraints: *InputSlot Tray3 *PageSize Chokei3
*UIConstraints: *InputSlot Tray3 *PageSize Yokei2
*UIConstraints: *InputSlot Tray3 *PageSize Yokei4
*% ---- Tray 4
*UIConstraints: *InputSlot Tray4 *PageSize A3W
*UIConstraints: *InputSlot Tray4 *PageSize A5
*UIConstraints: *InputSlot Tray4 *PageSize ARCHB
*UIConstraints: *InputSlot Tray4 *PageSize Statement
*UIConstraints: *InputSlot Tray4 *PageSize EnvDL
*UIConstraints: *InputSlot Tray4 *PageSize EnvC5
*UIConstraints: *InputSlot Tray4 *PageSize Env10
*UIConstraints: *InputSlot Tray4 *PageSize EnvMonarch
*UIConstraints: *InputSlot Tray4 *PageSize Postcard
*UIConstraints: *InputSlot Tray4 *PageSize EnvKaku2
*UIConstraints: *InputSlot Tray4 *PageSize Chokei3
*UIConstraints: *InputSlot Tray4 *PageSize Yokei2
*UIConstraints: *InputSlot Tray4 *PageSize Yokei4
*% ---- LCT
*UIConstraints: *InputSlot LCT *PageSize A3W
*UIConstraints: *InputSlot LCT *PageSize A3
*UIConstraints: *InputSlot LCT *PageSize A5
*UIConstraints: *InputSlot LCT *PageSize B4
*UIConstraints: *InputSlot LCT *PageSize ARCHB
*UIConstraints: *InputSlot LCT *PageSize Ledger
*UIConstraints: *InputSlot LCT *PageSize AsLegal
*UIConstraints: *InputSlot LCT *PageSize MxLegal
*UIConstraints: *InputSlot LCT *PageSize Legal
*UIConstraints: *InputSlot LCT *PageSize Executive
*UIConstraints: *InputSlot LCT *PageSize Statement
*UIConstraints: *InputSlot LCT *PageSize Foolscap
*UIConstraints: *InputSlot LCT *PageSize 8K
*UIConstraints: *InputSlot LCT *PageSize 16K
*UIConstraints: *InputSlot LCT *PageSize EnvDL
*UIConstraints: *InputSlot LCT *PageSize EnvC5
*UIConstraints: *InputSlot LCT *PageSize Env10
*UIConstraints: *InputSlot LCT *PageSize EnvMonarch
*UIConstraints: *InputSlot LCT *PageSize Postcard
*UIConstraints: *InputSlot LCT *PageSize EnvKaku2
*UIConstraints: *InputSlot LCT *PageSize Chokei3
*UIConstraints: *InputSlot LCT *PageSize Yokei2
*UIConstraints: *InputSlot LCT *PageSize Yokei4
*% ---- InputSlot <---> MediaType ----------------------------------------------
*% ---- Auto -> All
*% ---- Bypass Tray
*UIConstraints: *InputSlot Bypass *MediaType Auto
*% ---- Tray 1
*UIConstraints: *InputSlot Tray1 *MediaType Plain
*UIConstraints: *InputSlot Tray1 *MediaType Letterhead
*UIConstraints: *InputSlot Tray1 *MediaType Preprinted
*UIConstraints: *InputSlot Tray1 *MediaType Prepunched
*UIConstraints: *InputSlot Tray1 *MediaType Recycled
*UIConstraints: *InputSlot Tray1 *MediaType Color
*UIConstraints: *InputSlot Tray1 *MediaType Labels
*UIConstraints: *InputSlot Tray1 *MediaType Bond
*UIConstraints: *InputSlot Tray1 *MediaType Transparency
*UIConstraints: *InputSlot Tray1 *MediaType Thin
*UIConstraints: *InputSlot Tray1 *MediaType Envelope
*UIConstraints: *InputSlot Tray1 *MediaType Postcard
*UIConstraints: *InputSlot Tray1 *MediaType Tab
*UIConstraints: *InputSlot Tray1 *MediaType UserSet1
*UIConstraints: *InputSlot Tray1 *MediaType UserSet2
*UIConstraints: *InputSlot Tray1 *MediaType UserSet3
*UIConstraints: *InputSlot Tray1 *MediaType UserSet4
*UIConstraints: *InputSlot Tray1 *MediaType UserSet5
*UIConstraints: *InputSlot Tray1 *MediaType UserSet6
*UIConstraints: *InputSlot Tray1 *MediaType UserSet7
*% ---- Tray 2
*UIConstraints: *InputSlot Tray2 *MediaType Plain
*UIConstraints: *InputSlot Tray2 *MediaType Letterhead
*UIConstraints: *InputSlot Tray2 *MediaType Preprinted
*UIConstraints: *InputSlot Tray2 *MediaType Prepunched
*UIConstraints: *InputSlot Tray2 *MediaType Recycled
*UIConstraints: *InputSlot Tray2 *MediaType Color
*UIConstraints: *InputSlot Tray2 *MediaType Labels
*UIConstraints: *InputSlot Tray2 *MediaType Bond
*UIConstraints: *InputSlot Tray2 *MediaType Transparency
*UIConstraints: *InputSlot Tray2 *MediaType Thin
*UIConstraints: *InputSlot Tray2 *MediaType Envelope
*UIConstraints: *InputSlot Tray2 *MediaType Postcard
*UIConstraints: *InputSlot Tray2 *MediaType Tab
*UIConstraints: *InputSlot Tray2 *MediaType UserSet1
*UIConstraints: *InputSlot Tray2 *MediaType UserSet2
*UIConstraints: *InputSlot Tray2 *MediaType UserSet3
*UIConstraints: *InputSlot Tray2 *MediaType UserSet4
*UIConstraints: *InputSlot Tray2 *MediaType UserSet5
*UIConstraints: *InputSlot Tray2 *MediaType UserSet6
*UIConstraints: *InputSlot Tray2 *MediaType UserSet7
*% ---- Tray 3
*UIConstraints: *InputSlot Tray3 *MediaType Plain
*UIConstraints: *InputSlot Tray3 *MediaType Letterhead
*UIConstraints: *InputSlot Tray3 *MediaType Preprinted
*UIConstraints: *InputSlot Tray3 *MediaType Prepunched
*UIConstraints: *InputSlot Tray3 *MediaType Recycled
*UIConstraints: *InputSlot Tray3 *MediaType Color
*UIConstraints: *InputSlot Tray3 *MediaType Labels
*UIConstraints: *InputSlot Tray3 *MediaType Bond
*UIConstraints: *InputSlot Tray3 *MediaType Transparency
*UIConstraints: *InputSlot Tray3 *MediaType Thin
*UIConstraints: *InputSlot Tray3 *MediaType Envelope
*UIConstraints: *InputSlot Tray3 *MediaType Postcard
*UIConstraints: *InputSlot Tray3 *MediaType Tab
*UIConstraints: *InputSlot Tray3 *MediaType UserSet1
*UIConstraints: *InputSlot Tray3 *MediaType UserSet2
*UIConstraints: *InputSlot Tray3 *MediaType UserSet3
*UIConstraints: *InputSlot Tray3 *MediaType UserSet4
*UIConstraints: *InputSlot Tray3 *MediaType UserSet5
*UIConstraints: *InputSlot Tray3 *MediaType UserSet6
*UIConstraints: *InputSlot Tray3 *MediaType UserSet7
*% ---- Tray 4
*UIConstraints: *InputSlot Tray4 *MediaType Plain
*UIConstraints: *InputSlot Tray4 *MediaType Letterhead
*UIConstraints: *InputSlot Tray4 *MediaType Preprinted
*UIConstraints: *InputSlot Tray4 *MediaType Prepunched
*UIConstraints: *InputSlot Tray4 *MediaType Recycled
*UIConstraints: *InputSlot Tray4 *MediaType Color
*UIConstraints: *InputSlot Tray4 *MediaType Labels
*UIConstraints: *InputSlot Tray4 *MediaType Bond
*UIConstraints: *InputSlot Tray4 *MediaType Transparency
*UIConstraints: *InputSlot Tray4 *MediaType Thin
*UIConstraints: *InputSlot Tray4 *MediaType Envelope
*UIConstraints: *InputSlot Tray4 *MediaType Postcard
*UIConstraints: *InputSlot Tray4 *MediaType Tab
*UIConstraints: *InputSlot Tray4 *MediaType UserSet1
*UIConstraints: *InputSlot Tray4 *MediaType UserSet2
*UIConstraints: *InputSlot Tray4 *MediaType UserSet3
*UIConstraints: *InputSlot Tray4 *MediaType UserSet4
*UIConstraints: *InputSlot Tray4 *MediaType UserSet5
*UIConstraints: *InputSlot Tray4 *MediaType UserSet6
*UIConstraints: *InputSlot Tray4 *MediaType UserSet7
*% ---- LCT
*UIConstraints: *InputSlot LCT *MediaType Plain
*UIConstraints: *InputSlot LCT *MediaType Letterhead
*UIConstraints: *InputSlot LCT *MediaType Preprinted
*UIConstraints: *InputSlot LCT *MediaType Prepunched
*UIConstraints: *InputSlot LCT *MediaType Recycled
*UIConstraints: *InputSlot LCT *MediaType Color
*UIConstraints: *InputSlot LCT *MediaType Labels
*UIConstraints: *InputSlot LCT *MediaType Bond
*UIConstraints: *InputSlot LCT *MediaType Transparency
*UIConstraints: *InputSlot LCT *MediaType Thin
*UIConstraints: *InputSlot LCT *MediaType Envelope
*UIConstraints: *InputSlot LCT *MediaType Postcard
*UIConstraints: *InputSlot LCT *MediaType Tab
*UIConstraints: *InputSlot LCT *MediaType UserSet1
*UIConstraints: *InputSlot LCT *MediaType UserSet2
*UIConstraints: *InputSlot LCT *MediaType UserSet3
*UIConstraints: *InputSlot LCT *MediaType UserSet4
*UIConstraints: *InputSlot LCT *MediaType UserSet5
*UIConstraints: *InputSlot LCT *MediaType UserSet6
*UIConstraints: *InputSlot LCT *MediaType UserSet7
*% ---- OutputBin <---> PageSize -----------------------------------------------
*% ---- Center Tray -> All
*% ---- Right Tray
*UIConstraints: *OutputBin Output1 *PageSize EnvDL
*UIConstraints: *OutputBin Output1 *PageSize EnvC5
*UIConstraints: *OutputBin Output1 *PageSize Env10
*UIConstraints: *OutputBin Output1 *PageSize EnvMonarch
*UIConstraints: *OutputBin Output1 *PageSize EnvKaku2
*UIConstraints: *OutputBin Output1 *PageSize Chokei3
*UIConstraints: *OutputBin Output1 *PageSize Yokei2
*UIConstraints: *OutputBin Output1 *PageSize Yokei4
*% ---- Offset Tray / Finisher -> All
*% ---- Offset Tray / Saddle Stitch Finisher -> All
*% ---- Saddle Stitch Tray
*UIConstraints: *OutputBin OutputSS *PageSize A3W
*UIConstraints: *OutputBin OutputSS *PageSize ARCHB
*UIConstraints: *OutputBin OutputSS *PageSize AsLegal
*UIConstraints: *OutputBin OutputSS *PageSize MxLegal
*UIConstraints: *OutputBin OutputSS *PageSize Legal
*UIConstraints: *OutputBin OutputSS *PageSize Executive
*UIConstraints: *OutputBin OutputSS *PageSize Foolscap
*UIConstraints: *OutputBin OutputSS *PageSize EnvDL
*UIConstraints: *OutputBin OutputSS *PageSize EnvC5
*UIConstraints: *OutputBin OutputSS *PageSize Env10
*UIConstraints: *OutputBin OutputSS *PageSize EnvMonarch
*UIConstraints: *OutputBin OutputSS *PageSize Postcard
*UIConstraints: *OutputBin OutputSS *PageSize EnvKaku2
*UIConstraints: *OutputBin OutputSS *PageSize Chokei3
*UIConstraints: *OutputBin OutputSS *PageSize Yokei2
*UIConstraints: *OutputBin OutputSS *PageSize Yokei4
*% ---- OutputBin <---> MediaType ----------------------------------------------
*% ---- Center Tray -> All
*% ---- Right Tray
*UIConstraints: *OutputBin Output1 *MediaType Envelope
*UIConstraints: *OutputBin Output1 *MediaType Tab
*% ---- Offset Tray / Finisher -> All
*% ---- Offset Tray / Saddle Stitch Finisher -> All
*% ---- Saddle Stitch Tray
*UIConstraints: *OutputBin OutputSS *MediaType Envelope
*% ---- OutputBin <---> Duplex -------------------------------------------------
*UIConstraints: *OutputBin OutputSS *Duplex DuplexTumble
*UIConstraints: *OutputBin OutputSS *Duplex DuplexNoTumble
*% ---- OutputBin <---> Staple -------------------------------------------------
*UIConstraints: *OutputBin Output0 *ARStaple Staple5
*UIConstraints: *OutputBin Output0 *ARStaple Staple6
*UIConstraints: *OutputBin Output0 *ARStaple Staple7
*UIConstraints: *OutputBin Output1 *ARStaple Staple5
*UIConstraints: *OutputBin Output1 *ARStaple Staple6
*UIConstraints: *OutputBin Output1 *ARStaple Staple7
*UIConstraints: *OutputBin Output2 *ARStaple Staple7
*UIConstraints: *OutputBin Output3 *ARStaple Staple7
*%*UIConstraints: *OutputBin OutputSS *ARStaple Staple0
*UIConstraints: *OutputBin OutputSS *ARStaple Staple5
*UIConstraints: *OutputBin OutputSS *ARStaple Staple6
*% ---- OutputBin <---> Punch --------------------------------------------------
*UIConstraints: *OutputBin Output0 *ARPunch True
*UIConstraints: *OutputBin Output1 *ARPunch True
*UIConstraints: *OutputBin OutputSS *ARPunch True
*% ---- OutputBin <---> Pamphlet -----------------------------------------------
*% ---- OutputBin <---> Fold ---------------------------------------------------
*UIConstraints: *OutputBin Output0 *ARFold FoldInside
*UIConstraints: *OutputBin Output0 *ARFold FoldOutside
*UIConstraints: *OutputBin Output1 *ARFold FoldInside
*UIConstraints: *OutputBin Output1 *ARFold FoldOutside
*UIConstraints: *OutputBin Output2 *ARFold FoldInside
*UIConstraints: *OutputBin Output2 *ARFold FoldOutside
*UIConstraints: *OutputBin Output3 *ARFold FoldInside
*UIConstraints: *OutputBin Output3 *ARFold FoldOutside
*UIConstraints: *OutputBin Output4 *ARFold FoldInside
*UIConstraints: *OutputBin Output4 *ARFold FoldOutside
*UIConstraints: *OutputBin Output5 *ARFold FoldInside
*UIConstraints: *OutputBin Output5 *ARFold FoldOutside
*% ---- Duplex <---> PageSize --------------------------------------------------
*UIConstraints: *Duplex DuplexNoTumble *PageSize A3W
*UIConstraints: *Duplex DuplexNoTumble *PageSize ARCHB
*UIConstraints: *Duplex DuplexNoTumble *PageSize Executive
*UIConstraints: *Duplex DuplexNoTumble *PageSize EnvDL
*UIConstraints: *Duplex DuplexNoTumble *PageSize EnvC5
*UIConstraints: *Duplex DuplexNoTumble *PageSize Env10
*UIConstraints: *Duplex DuplexNoTumble *PageSize EnvMonarch
*UIConstraints: *Duplex DuplexNoTumble *PageSize Postcard
*UIConstraints: *Duplex DuplexNoTumble *PageSize EnvKaku2
*UIConstraints: *Duplex DuplexNoTumble *PageSize Chokei3
*UIConstraints: *Duplex DuplexNoTumble *PageSize Yokei2
*UIConstraints: *Duplex DuplexNoTumble *PageSize Yokei4
*UIConstraints: *Duplex DuplexTumble *PageSize A3W
*UIConstraints: *Duplex DuplexTumble *PageSize ARCHB
*UIConstraints: *Duplex DuplexTumble *PageSize Executive
*UIConstraints: *Duplex DuplexTumble *PageSize EnvDL
*UIConstraints: *Duplex DuplexTumble *PageSize EnvC5
*UIConstraints: *Duplex DuplexTumble *PageSize Env10
*UIConstraints: *Duplex DuplexTumble *PageSize EnvMonarch
*UIConstraints: *Duplex DuplexTumble *PageSize Postcard
*UIConstraints: *Duplex DuplexTumble *PageSize EnvKaku2
*UIConstraints: *Duplex DuplexTumble *PageSize Chokei3
*UIConstraints: *Duplex DuplexTumble *PageSize Yokei2
*UIConstraints: *Duplex DuplexTumble *PageSize Yokei4
*% ---- Duplex <---> MediaType -------------------------------------------------
*UIConstraints: *Duplex DuplexNoTumble *MediaType Labels
*%*UIConstraints: *Duplex DuplexNoTumble *MediaType Bond
*UIConstraints: *Duplex DuplexNoTumble *MediaType Thin
*UIConstraints: *Duplex DuplexNoTumble *MediaType Transparency
*UIConstraints: *Duplex DuplexNoTumble *MediaType Envelope
*UIConstraints: *Duplex DuplexNoTumble *MediaType Postcard
*UIConstraints: *Duplex DuplexNoTumble *MediaType Tab
*UIConstraints: *Duplex DuplexTumble *MediaType Labels
*%*UIConstraints: *Duplex DuplexTumble *MediaType Bond
*UIConstraints: *Duplex DuplexTumble *MediaType Thin
*UIConstraints: *Duplex DuplexTumble *MediaType Transparency
*UIConstraints: *Duplex DuplexTumble *MediaType Envelope
*UIConstraints: *Duplex DuplexTumble *MediaType Postcard
*UIConstraints: *Duplex DuplexTumble *MediaType Tab
*% ---- Duplex <---> Staple ----------------------------------------------------
*UIConstraints: *Duplex DuplexNoTumble *ARStaple Staple7
*UIConstraints: *Duplex DuplexTumble *ARStaple Staple7
*% ---- Staple <---> PageSize --------------------------------------------------
*%*UIConstraints: *ARStaple Staple5 *PageSize A3W
*%*UIConstraints: *ARStaple Staple5 *PageSize A5
*%*UIConstraints: *ARStaple Staple5 *PageSize ARCHB
*%*UIConstraints: *ARStaple Staple5 *PageSize Executive
*%*UIConstraints: *ARStaple Staple5 *PageSize Statement
*%*UIConstraints: *ARStaple Staple5 *PageSize EnvDL
*%*UIConstraints: *ARStaple Staple5 *PageSize EnvC5
*%*UIConstraints: *ARStaple Staple5 *PageSize Env10
*%*UIConstraints: *ARStaple Staple5 *PageSize EnvMonarch
*%*UIConstraints: *ARStaple Staple5 *PageSize Postcard
*%*UIConstraints: *ARStaple Staple5 *PageSize EnvKaku2
*%*UIConstraints: *ARStaple Staple5 *PageSize Chokei3
*%*UIConstraints: *ARStaple Staple5 *PageSize Yokei2
*%*UIConstraints: *ARStaple Staple5 *PageSize Yokei4
*%*UIConstraints: *ARStaple Staple6 *PageSize A3W
*%*UIConstraints: *ARStaple Staple6 *PageSize A5
*%*UIConstraints: *ARStaple Staple6 *PageSize ARCHB
*%*UIConstraints: *ARStaple Staple6 *PageSize Executive
*%*UIConstraints: *ARStaple Staple6 *PageSize Statement
*%*UIConstraints: *ARStaple Staple6 *PageSize EnvDL
*%*UIConstraints: *ARStaple Staple6 *PageSize EnvC5
*%*UIConstraints: *ARStaple Staple6 *PageSize Env10
*%*UIConstraints: *ARStaple Staple6 *PageSize EnvMonarch
*%*UIConstraints: *ARStaple Staple6 *PageSize Postcard
*%*UIConstraints: *ARStaple Staple6 *PageSize EnvKaku2
*%*UIConstraints: *ARStaple Staple6 *PageSize Chokei3
*%*UIConstraints: *ARStaple Staple6 *PageSize Yokei2
*%*UIConstraints: *ARStaple Staple6 *PageSize Yokei4
*% ---- Staple <---> MediaType -------------------------------------------------
*%*UIConstraints: *ARStaple Staple5 *MediaType Labels
*%*UIConstraints: *ARStaple Staple5 *MediaType Transparency
*%*UIConstraints: *ARStaple Staple5 *MediaType Envelope
*%*UIConstraints: *ARStaple Staple5 *MediaType Postcard
*%*UIConstraints: *ARStaple Staple5 *MediaType Tab
*%*UIConstraints: *ARStaple Staple6 *MediaType Labels
*%*UIConstraints: *ARStaple Staple6 *MediaType Transparency
*%*UIConstraints: *ARStaple Staple6 *MediaType Envelope
*%*UIConstraints: *ARStaple Staple6 *MediaType Postcard
*%*UIConstraints: *ARStaple Staple6 *MediaType Tab
*%*UIConstraints: *ARStaple Staple7 *MediaType Labels
*%*UIConstraints: *ARStaple Staple7 *MediaType Transparency
*%*UIConstraints: *ARStaple Staple7 *MediaType Envelope
*%*UIConstraints: *ARStaple Staple7 *MediaType Postcard
*%*UIConstraints: *ARStaple Staple7 *MediaType Tab
*% ---- Staple <---> Pamphlet --------------------------------------------------
*UIConstraints: *ARStaple Staple5 *ARBooklet True
*UIConstraints: *ARStaple Staple6 *ARBooklet True
*% ---- Punch <---> PageSize ---------------------------------------------------
*%*UIConstraints: *ARPunch True *PageSize A3W
*%*UIConstraints: *ARPunch True *PageSize A5
*%*UIConstraints: *ARPunch True *PageSize ARCHB
*%*UIConstraints: *ARPunch True *PageSize Executive
*%*UIConstraints: *ARPunch True *PageSize Statement
*%*UIConstraints: *ARPunch True *PageSize EnvDL
*%*UIConstraints: *ARPunch True *PageSize EnvC5
*%*UIConstraints: *ARPunch True *PageSize Env10
*%*UIConstraints: *ARPunch True *PageSize EnvMonarch
*%*UIConstraints: *ARPunch True *PageSize Postcard
*%*UIConstraints: *ARPunch True *PageSize EnvKaku2
*%*UIConstraints: *ARPunch True *PageSize Chokei3
*%*UIConstraints: *ARPunch True *PageSize Yokei2
*%*UIConstraints: *ARPunch True *PageSize Yokei4
*% ---- Punch <---> MediaType --------------------------------------------------
*%*UIConstraints: *ARPunch True *MediaType Labels
*%*UIConstraints: *ARPunch True *MediaType Transparency
*%*UIConstraints: *ARPunch True *MediaType Envelope
*%*UIConstraints: *ARPunch True *MediaType Postcard
*%*UIConstraints: *ARPunch True *MediaType Tab
*% ---- Punch <---> Pamphlet ---------------------------------------------------
*UIConstraints: *ARPunch True *ARBooklet True
*% ---- Pamphlet <---> PageSize ------------------------------------------------
*UIConstraints: *ARBooklet True *PageSize A3W
*UIConstraints: *ARBooklet True *PageSize A3
*UIConstraints: *ARBooklet True *PageSize B4
*UIConstraints: *ARBooklet True *PageSize ARCHB
*UIConstraints: *ARBooklet True *PageSize AsLegal
*UIConstraints: *ARBooklet True *PageSize MxLegal
*UIConstraints: *ARBooklet True *PageSize Ledger
*UIConstraints: *ARBooklet True *PageSize Legal
*UIConstraints: *ARBooklet True *PageSize Executive
*UIConstraints: *ARBooklet True *PageSize Foolscap
*UIConstraints: *ARBooklet True *PageSize 8K
*UIConstraints: *ARBooklet True *PageSize EnvDL
*UIConstraints: *ARBooklet True *PageSize EnvC5
*UIConstraints: *ARBooklet True *PageSize Env10
*UIConstraints: *ARBooklet True *PageSize EnvMonarch
*UIConstraints: *ARBooklet True *PageSize Postcard
*UIConstraints: *ARBooklet True *PageSize EnvKaku2
*UIConstraints: *ARBooklet True *PageSize Chokei3
*UIConstraints: *ARBooklet True *PageSize Yokei2
*UIConstraints: *ARBooklet True *PageSize Yokei4
*% ---- Pamphlet <---> MediaType -----------------------------------------------
*UIConstraints: *ARBooklet True *MediaType Labels
*%*UIConstraints: *ARBooklet True *MediaType Bond
*UIConstraints: *ARBooklet True *MediaType Thin
*UIConstraints: *ARBooklet True *MediaType Transparency
*UIConstraints: *ARBooklet True *MediaType Envelope
*UIConstraints: *ARBooklet True *MediaType Postcard
*UIConstraints: *ARBooklet True *MediaType Tab
*% ---- Pamphlet <---> Margin Shift --------------------------------------------
*UIConstraints: *ARBooklet True *MarginShift Small
*UIConstraints: *ARBooklet True *MarginShift Medium
*UIConstraints: *ARBooklet True *MarginShift Large
*% ---- PageSize <---> MediaType -----------------------------------------------
*% ---- Plain -> All
*% ---- Letter Head -> All
*% ---- Pre-Printed -> All
*% ---- Pre-Punched -> All
*% ---- Recycled -> All
*% ---- Color -> All
*% ---- Labels -> All
*% ---- Heavy Paper -> All
*% ---- Thin Paper -> All
*% ---- Transparency -> All
*% ---- Envelope
*UIConstraints: *PageSize A3W *MediaType Envelope
*UIConstraints: *PageSize A3 *MediaType Envelope
*UIConstraints: *PageSize A4 *MediaType Envelope
*UIConstraints: *PageSize A5 *MediaType Envelope
*UIConstraints: *PageSize B4 *MediaType Envelope
*UIConstraints: *PageSize B5 *MediaType Envelope
*UIConstraints: *PageSize ARCHB *MediaType Envelope
*UIConstraints: *PageSize AsLegal *MediaType Envelope
*UIConstraints: *PageSize MxLegal *MediaType Envelope
*UIConstraints: *PageSize Ledger *MediaType Envelope
*UIConstraints: *PageSize Letter *MediaType Envelope
*UIConstraints: *PageSize Legal *MediaType Envelope
*UIConstraints: *PageSize Executive *MediaType Envelope
*UIConstraints: *PageSize Statement *MediaType Envelope
*UIConstraints: *PageSize Foolscap *MediaType Envelope
*UIConstraints: *PageSize 8K *MediaType Envelope
*UIConstraints: *PageSize 16K *MediaType Envelope
*UIConstraints: *PageSize Postcard *MediaType Envelope
*% ---- Japanese Post Card
*UIConstraints: *PageSize A3W *MediaType Postcard
*UIConstraints: *PageSize A3 *MediaType Postcard
*UIConstraints: *PageSize A4 *MediaType Postcard
*UIConstraints: *PageSize A5 *MediaType Postcard
*UIConstraints: *PageSize B4 *MediaType Postcard
*UIConstraints: *PageSize B5 *MediaType Postcard
*UIConstraints: *PageSize ARCHB *MediaType Postcard
*UIConstraints: *PageSize AsLegal *MediaType Postcard
*UIConstraints: *PageSize MxLegal *MediaType Postcard
*UIConstraints: *PageSize Ledger *MediaType Postcard
*UIConstraints: *PageSize Letter *MediaType Postcard
*UIConstraints: *PageSize Legal *MediaType Postcard
*UIConstraints: *PageSize Executive *MediaType Postcard
*UIConstraints: *PageSize Statement *MediaType Postcard
*UIConstraints: *PageSize Foolscap *MediaType Postcard
*UIConstraints: *PageSize 8K *MediaType Postcard
*UIConstraints: *PageSize 16K *MediaType Postcard
*UIConstraints: *PageSize EnvDL *MediaType Postcard
*UIConstraints: *PageSize EnvC5 *MediaType Postcard
*UIConstraints: *PageSize Env10 *MediaType Postcard
*UIConstraints: *PageSize EnvMonarch *MediaType Postcard
*UIConstraints: *PageSize EnvKaku2 *MediaType Postcard
*UIConstraints: *PageSize Chokei3 *MediaType Postcard
*UIConstraints: *PageSize Yokei2 *MediaType Postcard
*UIConstraints: *PageSize Yokei4 *MediaType Postcard
*% ---- Tab Paper
*UIConstraints: *PageSize A3W *MediaType Tab
*UIConstraints: *PageSize A3 *MediaType Tab
*UIConstraints: *PageSize A5 *MediaType Tab
*UIConstraints: *PageSize B4 *MediaType Tab
*UIConstraints: *PageSize B5 *MediaType Tab
*UIConstraints: *PageSize ARCHB *MediaType Tab
*UIConstraints: *PageSize Ledger *MediaType Tab
*UIConstraints: *PageSize Legal *MediaType Tab
*UIConstraints: *PageSize Executive *MediaType Tab
*UIConstraints: *PageSize Statement *MediaType Tab
*UIConstraints: *PageSize Foolscap *MediaType Tab
*UIConstraints: *PageSize 8K *MediaType Tab
*UIConstraints: *PageSize 16K *MediaType Tab
*UIConstraints: *PageSize EnvDL *MediaType Tab
*UIConstraints: *PageSize EnvC5 *MediaType Tab
*UIConstraints: *PageSize Env10 *MediaType Tab
*UIConstraints: *PageSize EnvMonarch *MediaType Tab
*UIConstraints: *PageSize Postcard *MediaType Tab
*UIConstraints: *PageSize EnvKaku2 *MediaType Tab
*UIConstraints: *PageSize Chokei3 *MediaType Tab
*UIConstraints: *PageSize Yokei2 *MediaType Tab
*UIConstraints: *PageSize Yokei4 *MediaType Tab
*% ---- USER TYPE1 - 7 -> All
*% ---- Color Mode <---> Print Priority ----------------------------------------
*%*UIConstraints: *ARCMode CMBW *ARCPPriority Quality
*% ---- Color Mode <---> Image Type --------------------------------------------
*UIConstraints: *ARCMode CMBW *ARCOType COTGraphics
*UIConstraints: *ARCMode CMBW *ARCOType COTPhoto
*UIConstraints: *ARCMode CMBW *ARCOType COTCAD
*UIConstraints: *ARCMode CMBW *ARCOType COTScan
*UIConstraints: *ARCMode CMBW *ARCOType COTCustom
*% ---- Image Type <---> Source Profile ----------------------------------------
*UIConstraints: *ARCOType COTStandard *ARCSProfile SPNone
*UIConstraints: *ARCOType COTGraphics *ARCSProfile SPNone
*UIConstraints: *ARCOType COTPhoto *ARCSProfile SPNone
*UIConstraints: *ARCOType COTCAD *ARCSProfile SPNone
*UIConstraints: *ARCOType COTScan *ARCSProfile SPNone
*% ---- Image Type <---> Rendering Intent --------------------------------------
*UIConstraints: *ARCOType COTCustom *ARCIntent IDefault
*% ---- Image Type <---> CMYK Simulation ---------------------------------------
*UIConstraints: *ARCOType COTStandard *ARCCMYKS True
*UIConstraints: *ARCOType COTGraphics *ARCCMYKS True
*UIConstraints: *ARCOType COTPhoto *ARCCMYKS True
*UIConstraints: *ARCOType COTCAD *ARCCMYKS True
*UIConstraints: *ARCOType COTScan *ARCCMYKS True
*% ---- Image Type <---> Screening ---------------------------------------------
*UIConstraints: *ARCOType COTStandard *ARCScreen STPhoto
*UIConstraints: *ARCOType COTStandard *ARCScreen SText
*UIConstraints: *ARCOType COTStandard *ARCScreen SPhoto
*UIConstraints: *ARCOType COTGraphics *ARCScreen STPhoto
*UIConstraints: *ARCOType COTGraphics *ARCScreen SText
*UIConstraints: *ARCOType COTGraphics *ARCScreen SPhoto
*UIConstraints: *ARCOType COTPhoto *ARCScreen STPhoto
*UIConstraints: *ARCOType COTPhoto *ARCScreen SText
*UIConstraints: *ARCOType COTPhoto *ARCScreen SPhoto
*UIConstraints: *ARCOType COTCAD *ARCScreen STPhoto
*UIConstraints: *ARCOType COTCAD *ARCScreen SText
*UIConstraints: *ARCOType COTCAD *ARCScreen SPhoto
*UIConstraints: *ARCOType COTScan *ARCScreen STPhoto
*UIConstraints: *ARCOType COTScan *ARCScreen SText
*UIConstraints: *ARCOType COTScan *ARCScreen SPhoto
*% ---- Toner Save <---> Image Type --------------------------------------------
*UIConstraints: *ARSaveToner True *ARCOType COTGraphics
*UIConstraints: *ARSaveToner True *ARCOType COTPhoto
*UIConstraints: *ARSaveToner True *ARCOType COTCAD
*UIConstraints: *ARSaveToner True *ARCOType COTScan
*UIConstraints: *ARSaveToner True *ARCOType COTCustom
*% ---- Toner Save <---> Color Settings ----------------------------------------
*UIConstraints: *ARSaveToner True *ARCPPriority HQuality
*UIConstraints: *ARSaveToner True *ARCPPriority Fine
*UIConstraints: *ARSaveToner True *ARCSProfile SPNone
*% ---- Neutral Gray <---> Pure Black Print ------------------------------------
*UIConstraints: *ARCNGray NGBOnly *ARCPureB False
*% =============================================================================
*OpenUI *PageSize: PickOne
*OrderDependency: 10 AnySetup *PageSize
*DefaultPageSize: Letter
*PageSize Letter/Letter: "
3 dict
dup /PageSize [612 792] put
dup /ImagingBBox null put
dup /InputAttributes 1 dict dup /Priority [0 1 2 3] put put setpagedevice"
*End
*PageSize Legal/Legal: "
3 dict
dup /PageSize [612 1008] put
dup /ImagingBBox null put
dup /InputAttributes 1 dict dup /Priority [0 1 2 3] put put setpagedevice"
*End
*PageSize Ledger/Ledger: "
3 dict
dup /PageSize [792 1224] put
dup /ImagingBBox null put
dup /InputAttributes 1 dict dup /Priority [0 1 2 3] put put setpagedevice"
*End
*PageSize Executive/Executive: "
3 dict
dup /PageSize [522 756] put
dup /ImagingBBox null put
dup /InputAttributes 1 dict dup /Priority [0 1 2 3] put put setpagedevice"
*End
*PageSize Statement/Invoice: "
3 dict
dup /PageSize [396 612] put
dup /ImagingBBox null put
dup /InputAttributes 1 dict dup /Priority [0 1 2 3] put put setpagedevice"
*End
*PageSize ARCHB/12 x 18: "
3 dict
dup /PageSize [864 1297] put
dup /ImagingBBox null put
dup /InputAttributes 1 dict dup /Priority [0 1 2 3] put put setpagedevice"
*End
*PageSize A3W/A3 Wide: "
3 dict
dup /PageSize [864 1296] put
dup /ImagingBBox null put
dup /InputAttributes 1 dict dup /Priority [0 1 2 3] put put setpagedevice"
*End
*PageSize A3/A3: "
3 dict
dup /PageSize [842 1191] put
dup /ImagingBBox null put
dup /InputAttributes 1 dict dup /Priority [0 1 2 3] put put setpagedevice"
*End
*PageSize A4/A4: "
3 dict
dup /PageSize [595 842] put
dup /ImagingBBox null put
dup /InputAttributes 1 dict dup /Priority [0 1 2 3] put put setpagedevice"
*End
*PageSize A5/A5: "
3 dict
dup /PageSize [420 595] put
dup /ImagingBBox null put
dup /InputAttributes 1 dict dup /Priority [0 1 2 3] put put setpagedevice"
*End
*PageSize B4/B4: "
3 dict
dup /PageSize [729 1032] put
dup /ImagingBBox null put
dup /InputAttributes 1 dict dup /Priority [0 1 2 3] put put setpagedevice"
*End
*PageSize B5/B5: "
3 dict
dup /PageSize [516 729] put
dup /ImagingBBox null put
dup /InputAttributes 1 dict dup /Priority [0 1 2 3] put put setpagedevice"
*End
*PageSize Foolscap/Foolscap: "
3 dict
dup /PageSize [612 936] put
dup /ImagingBBox null put
dup /InputAttributes 1 dict dup /Priority [0 1 2 3] put put setpagedevice"
*End
*PageSize 8K/8K: "
3 dict
dup /PageSize [765 1105] put
dup /ImagingBBox null put
dup /InputAttributes 1 dict dup /Priority [0 1 2 3] put put setpagedevice"
*End
*PageSize 16K/16K: "
3 dict
dup /PageSize [552 765] put
dup /ImagingBBox null put
dup /InputAttributes 1 dict dup /Priority [0 1 2 3] put put setpagedevice"
*End
*PageSize EnvDL/DL: "
3 dict
dup /PageSize [312 624] put
dup /ImagingBBox null put
dup /InputAttributes 1 dict dup /Priority [0 1 2 3] put put setpagedevice"
*End
*PageSize EnvC5/C5: "
3 dict
dup /PageSize [459 649] put
dup /ImagingBBox null put
dup /InputAttributes 1 dict dup /Priority [0 1 2 3] put put setpagedevice"
*End
*PageSize Env10/COM10: "
3 dict
dup /PageSize [297 684] put
dup /ImagingBBox null put
dup /InputAttributes 1 dict dup /Priority [0 1 2 3] put put setpagedevice"
*End
*PageSize EnvMonarch/Monarch: "
3 dict
dup /PageSize [279 540] put
dup /ImagingBBox null put
dup /InputAttributes 1 dict dup /Priority [0 1 2 3] put put setpagedevice"
*End
*PageSize AsLegal/216 x 343: "
3 dict
dup /PageSize [612 970] put
dup /ImagingBBox null put
dup /InputAttributes 1 dict dup /Priority [0 1 2 3] put put setpagedevice"
*End
*PageSize MxLegal/8.5 x 13.4: "
3 dict
dup /PageSize [612 963] put
dup /ImagingBBox null put
dup /InputAttributes 1 dict dup /Priority [0 1 2 3] put put setpagedevice"
*End
*PageSize Chokei3/Japanese Chokei 3: "
3 dict
dup /PageSize [340 666] put
dup /ImagingBBox null put
dup /InputAttributes 1 dict dup /Priority [0 1 2 3] put put setpagedevice"
*End
*PageSize Yokei2/Japanese Yokei 2: "
3 dict
dup /PageSize [323 459] put
dup /ImagingBBox null put
dup /InputAttributes 1 dict dup /Priority [0 1 2 3] put put setpagedevice"
*End
*PageSize Yokei4/Japanese Yokei 4: "
3 dict
dup /PageSize [298 666] put
dup /ImagingBBox null put
dup /InputAttributes 1 dict dup /Priority [0 1 2 3] put put setpagedevice"
*End
*PageSize EnvKaku2/Japanese kakugata 2: "
3 dict
dup /PageSize [680 941] put
dup /ImagingBBox null put
dup /InputAttributes 1 dict dup /Priority [0 1 2 3] put put setpagedevice"
*End
*PageSize Postcard/Japanese Post Card: "
3 dict
dup /PageSize [284 420] put
dup /ImagingBBox null put
dup /InputAttributes 1 dict dup /Priority [0 1 2 3] put put setpagedevice"
*End
*?PageSize: "
save
currentpagedevice /PageSize get aload pop
2 copy gt {exch} if (Unknown)
26 dict
dup [612 792] (Letter) put
dup [612 1008] (Legal) put
dup [792 1224] (Ledger) put
dup [522 756] (Executive) put
dup [396 612] (Statement) put
dup [864 1297] (ARCHB) put
dup [864 1296] (A3W) put
dup [842 1191] (A3) put
dup [595 842] (A4) put
dup [420 595] (A5) put
dup [729 1032] (B4) put
dup [516 729] (B5) put
dup [612 936] (Foolscap) put
dup [765 1105] (8K) put
dup [552 765] (16K) put
dup [312 624] (EnvDL) put
dup [459 649] (EnvC5) put
dup [297 684] (Env10) put
dup [279 540] (EnvMonarch) put
dup [612 970] (AsLegal) put
dup [612 963] (MxLegal) put
dup [340 666] (Chokei3) put
dup [323 459] (Yokei2) put
dup [298 666] (Yokei4) put
dup [680 941] (EnvKaku2) put
dup [284 420] (Postcard) put
{exch aload pop 4 index sub abs 5 le exch
5 index sub abs 5 le and
{exch pop exit} {pop} ifelse
} bind forall = flush pop pop
restore"
*End
*CloseUI: *PageSize
*OpenUI *PageRegion: PickOne
*OrderDependency: 10 AnySetup *PageRegion
*DefaultPageRegion: Letter
*PageRegion Letter/Letter: "<</PageSize [612 792] /ImagingBBox null>> setpagedevice"
*PageRegion Legal/Legal: "<</PageSize [612 1008] /ImagingBBox null>> setpagedevice"
*PageRegion Ledger/Ledger: "<</PageSize [792 1224] /ImagingBBox null>> setpagedevice"
*PageRegion Executive/Executive: "<</PageSize [522 756] /ImagingBBox null>> setpagedevice"
*PageRegion Statement/Invoice: "<</PageSize [396 612] /ImagingBBox null>> setpagedevice"
*PageRegion ARCHB/12 x 18: "<</PageSize [864 1297] /ImagingBBox null>> setpagedevice"
*PageRegion A3W/A3 Wide: "<</PageSize [864 1296] /ImagingBBox null>> setpagedevice"
*PageRegion A3/A3: "<</PageSize [842 1191] /ImagingBBox null>> setpagedevice"
*PageRegion A4/A4: "<</PageSize [595 842] /ImagingBBox null>> setpagedevice"
*PageRegion A5/A5: "<</PageSize [420 595] /ImagingBBox null>> setpagedevice"
*PageRegion B4/B4: "<</PageSize [729 1032] /ImagingBBox null>> setpagedevice"
*PageRegion B5/B5: "<</PageSize [516 729] /ImagingBBox null>> setpagedevice"
*PageRegion Foolscap/Foolscap: "<</PageSize [612 936] /ImagingBBox null>> setpagedevice"
*PageRegion 8K/8K: "<</PageSize [765 1105] /ImagingBBox null>> setpagedevice"
*PageRegion 16K/16K: "<</PageSize [552 765] /ImagingBBox null>> setpagedevice"
*PageRegion EnvDL/DL: "<</PageSize [312 624] /ImagingBBox null>> setpagedevice"
*PageRegion EnvC5/C5: "<</PageSize [459 649] /ImagingBBox null>> setpagedevice"
*PageRegion Env10/COM10: "<</PageSize [297 684] /ImagingBBox null>> setpagedevice"
*PageRegion EnvMonarch/Monarch: "<</PageSize [279 540] /ImagingBBox null>> setpagedevice"
*PageRegion AsLegal/216 x 343: "<</PageSize [612 970] /ImagingBBox null>> setpagedevice"
*PageRegion MxLegal/8.5 x 13.4: "<</PageSize [612 963] /ImagingBBox null>> setpagedevice"
*PageRegion Chokei3/Japanese Chokei 3: "<</PageSize [340 666] /ImagingBBox null>> setpagedevice"
*PageRegion Yokei2/Japanese Yokei 2: "<</PageSize [323 459] /ImagingBBox null>> setpagedevice"
*PageRegion Yokei4/Japanese Yokei 4: "<</PageSize [298 666] /ImagingBBox null>> setpagedevice"
*PageRegion EnvKaku2/Japanese kakugata 2: "<</PageSize [680 941] /ImagingBBox null>> setpagedevice"
*PageRegion Postcard/Japanese Post Card: "<</PageSize [284 420] /ImagingBBox null>> setpagedevice"
*CloseUI: *PageRegion
*DefaultImageableArea: Letter
*ImageableArea Letter/Letter: "12.00 12.00 600.00 780.00"
*ImageableArea Legal/Legal: "12.00 12.00 600.00 996.00"
*ImageableArea Ledger/Ledger: "12.00 12.00 780.00 1212.00"
*ImageableArea Executive/Executive: "12.00 12.00 510.00 744.00"
*ImageableArea Statement/Invoice: "12.00 12.00 384.00 600.00"
*ImageableArea ARCHB/12 x 18: "12.00 12.00 852.00 1285.00"
*ImageableArea A3W/A3 Wide: "9.00 12.00 855.00 1284.00"
*ImageableArea A3/A3: "12.00 12.00 830.00 1179.00"
*ImageableArea A4/A4: "12.00 12.00 583.00 830.00"
*ImageableArea A5/A5: "12.00 12.00 408.00 583.00"
*ImageableArea B4/B4: "12.00 12.00 717.00 1020.00"
*ImageableArea B5/B5: "12.00 12.00 504.00 717.00"
*ImageableArea Foolscap/Foolscap: "12.00 12.00 600.00 924.00"
*ImageableArea 8K/8K: "12.00 12.00 753.00 1093.00"
*ImageableArea 16K/16K: "12.00 12.00 540.00 753.00"
*ImageableArea EnvDL/DL: "12.00 12.00 300.00 612.00"
*ImageableArea EnvC5/C5: "12.00 12.00 447.00 637.00"
*ImageableArea Env10/COM10: "12.00 12.00 285.00 672.00"
*ImageableArea EnvMonarch/Monarch: "12.00 12.00 267.00 528.00"
*ImageableArea AsLegal/216 x 343: "12.00 12.00 600.00 958.00"
*ImageableArea MxLegal/8.5 x 13.4: "12.00 12.00 600.00 951.00"
*ImageableArea Chokei3/Japanese Chokei 3: "12.00 12.00 328.00 654.00"
*ImageableArea Yokei2/Japanese Yokei 2: "12.00 12.00 311.00 447.00"
*ImageableArea Yokei4/Japanese Yokei 4: "12.00 12.00 286.00 654.00"
*ImageableArea EnvKaku2/Japanese kakugata 2: "12.00 12.00 668.00 929.00"
*ImageableArea Postcard/Japanese Post Card: "12.00 12.00 272.00 408.00"
*?ImageableArea: "
save
/cvp { ( ) cvs print ( ) print } bind def
/upperright {10000 mul floor 10000 div} bind def
/lowerleft {10000 mul ceiling 10000 div} bind def
newpath clippath pathbbox
4 -2 roll exch 2 {lowerleft cvp} repeat
exch 2 {upperright cvp} repeat flush
restore"
*End
*DefaultPaperDimension: Letter
*PaperDimension Letter/Letter: "612.00 792.00"
*PaperDimension Legal/Legal: "612.00 1008.00"
*PaperDimension Ledger/Ledger: "792.00 1224.00"
*PaperDimension Executive/Executive: "522.00 756.00"
*PaperDimension Statement/Invoice: "396.00 612.00"