summaryrefslogtreecommitdiff
path: root/psprint_config/configuration/ppds/APLWBGR1.PS
blob: ce4a20d5517fe06daf49e6dfc0ac892845e54a01 (plain)
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
*PPD-Adobe: "4.3"
*% Adobe Systems PostScript(R) Printer Description File
*% Copyright 1987-1995 Adobe Systems Incorporated. 
*% All Rights Reserved. 
*% Permission is granted for redistribution of this file as
*% long as this copyright notice is intact and the contents
*% of the file is not altered in any way from its original form.
*% End of Copyright statement
*FormatVersion: "4.3"
*FileVersion: "1.0"
*LanguageEncoding: ISOLatin1
*LanguageVersion: English
*PCFileName: "APLWBGR1.PPD"
*Manufacturer: "Apple"
*Product: "(LaserWriter 8500)"
*PSVersion: "(3010.103) 1"
*ModelName: "Apple LaserWriter 8500"
*ShortNickName: "Apple LaserWriter 8500"
*NickName: "Apple LaserWriter 8500 v3010.103"

*% === Options and Constraints =========
*OpenGroup: InstallableOptions/Options Installed
*OpenUI *InstalledMemory/Memory Configuration: PickOne
*DefaultInstalledMemory: 16Meg
*InstalledMemory 16Meg/Standard 16MB: ""
*InstalledMemory 20Meg/20MB: ""
*InstalledMemory 24Meg/24MB: ""
*InstalledMemory 32Meg/32MB: ""
*InstalledMemory 48Meg/48MB: ""
*?InstalledMemory: "
	save
	currentsystemparams /RamSize get
	1048576 div cvi 6 string cvs dup length dup 3 add string dup 0 4 index
	putinterval dup 2 index (Meg) putinterval exch pop exch pop = flush
	restore
"
*End
*CloseUI: *InstalledMemory

*OpenUI *APOptionalDuplexer/Duplex Printing Unit: Boolean
*DefaultAPOptionalDuplexer: False
*APOptionalDuplexer True/Installed: ""
*APOptionalDuplexer False/Not Installed: ""
*?APOptionalDuplexer: "
	save
	/DiagnosticProcs /ProcSet {findresource}stopped
	{pop pop false}
	{
	begin
	{duplex-unit-present}stopped {false}if
	end
	}ifelse
	{(True)}{(False)}ifelse = flush
	restore
"
*End
*CloseUI: *APOptionalDuplexer

*OpenUI *APOptionalCassette1/Cassette (Optional 1): PickOne
*OrderDependency: 10.0 AnySetup *APOptionalCassette1
*DefaultAPOptionalCassette1: False
*APOptionalCassette1 True/Installed: ""
*APOptionalCassette1 False/Not Installed: ""
*APOptionalCassette1 Preferred/Installed and Preferred: "
	1 dict dup /InputAttributes 1 dict dup /Priority [2 0 1 3] put put setpagedevice"
*End
*?APOptionalCassette1: "
	save
	currentpagedevice /InputAttributes get
	dup 2 known
	{dup 2 get null ne {
	/Priority 2 copy known {
	get 0 get 2 eq {(Preferred)}{(True)}ifelse
	} {
	pop pop (True)
	} ifelse
	}{
	pop (False)
	}ifelse}
	{pop (False)}ifelse = flush
	restore
"
*End
*CloseUI: *APOptionalCassette1

*OpenUI *APOptionalCassette2/Cassette (Optional 2): PickOne
*OrderDependency: 10.0 AnySetup *APOptionalCassette2
*DefaultAPOptionalCassette2: False
*APOptionalCassette2 True/Installed: ""
*APOptionalCassette2 False/Not Installed: ""
*APOptionalCassette2 Preferred/Installed and Preferred: "
	1 dict dup /InputAttributes 1 dict dup /Priority [3 0 1 2] put put setpagedevice"
*End
*?APOptionalCassette2: "
	save
	currentpagedevice /InputAttributes get
	dup 3 known
	{dup 3 get null ne {
	/Priority 2 copy known {
	get 0 get 3 eq {(Preferred)}{(True)}ifelse
	} {
	pop pop (True)
	} ifelse
	}{
	pop (False)
	}ifelse}
	{pop (False)}ifelse = flush
	restore
"
*End
*CloseUI: *APOptionalCassette2

*CloseGroup: InstallableOptions

*% ==== uninstalled options =======
*UIConstraints: *APOptionalCassette1 False *InputSlot OptionalCassette1
*UIConstraints: *APOptionalCassette2 False *InputSlot OptionalCassette2
*UIConstraints: *InputSlot OptionalCassette1 *APOptionalCassette1 False
*UIConstraints: *InputSlot OptionalCassette2 *APOptionalCassette2 False
*UIConstraints: *APOptionalDuplexer False *Duplex DuplexTumble
*UIConstraints: *APOptionalDuplexer False *Duplex DuplexNoTumble
*UIConstraints: *Duplex DuplexTumble *APOptionalDuplexer False
*UIConstraints: *Duplex DuplexNoTumble *APOptionalDuplexer False

*% ==== paper size/tray combos =======
*UIConstraints: *PageSize Enormous *InputSlot StandardCassette
*UIConstraints: *PageSize Enormous *InputSlot OptionalCassette1
*UIConstraints: *PageSize Enormous *InputSlot OptionalCassette2
*UIConstraints: *PageRegion Enormous *InputSlot StandardCassette
*UIConstraints: *PageRegion Enormous *InputSlot OptionalCassette1
*UIConstraints: *PageRegion Enormous *InputSlot OptionalCassette2
*UIConstraints: *InputSlot StandardCassette *PageSize Enormous
*UIConstraints: *InputSlot StandardCassette *PageRegion Enormous
*UIConstraints: *InputSlot OptionalCassette1 *PageSize Enormous
*UIConstraints: *InputSlot OptionalCassette1 *PageRegion Enormous
*UIConstraints: *InputSlot OptionalCassette2 *PageSize Enormous
*UIConstraints: *InputSlot OptionalCassette2 *PageRegion Enormous

*% ==== only one preferred tray =======
*UIConstraints: *APOptionalCassette1 Preferred *APOptionalCassette2 Preferred
*UIConstraints: *APOptionalCassette2 Preferred *APOptionalCassette1 Preferred

*% ==== Device Capabilities ===============
*LanguageLevel: "3"
*Protocols: TBCP
*Emulators: LaserJetIII
*StartEmulator_LaserJetIII: "currentfile /LaserJetIII statusdict /emulate get exec "
*StopEmulator_LaserJetIII: "<1B>E"
*TTRasterizer: Type42
*?TTRasterizer: "
	save
	42/FontType resourcestatus
	{pop pop (Type42)}{(None)}ifelse = flush
	restore
"
*End

*FreeVM: "2337744"
*VMOption 16Meg: "2337744"
*VMOption 20Meg: "2141136"
*VMOption 24Meg: "2247632"
*VMOption 32Meg: "5893072"
*VMOption 48Meg: "13863888"

*FCacheSize 16Meg: 1677721
*FCacheSize 20Meg: 2097152
*FCacheSize 24Meg: 2516582
*FCacheSize 32Meg: 3355443
*FCacheSize 48Meg: 5033164

*LandscapeOrientation: Minus90
*ColorDevice: False
*DefaultColorSpace: Gray
*FileSystem: True
*?FileSystem: "
	save false
	(%disk?%)
	{ currentdevparams dup /Writeable known
	{ /Writeable get {pop true} if }  { pop } ifelse
	} 10 string /IODevice resourceforall
	{(True)}{(False)} ifelse = flush
restore"
*End
*Throughput: "20"
*Password: "()"
*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
*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

*DefaultResolution: 600dpi
*?Resolution: "
	save
	currentpagedevice /HWResolution get
	0 get cvi
	(          ) cvs print
	(dpi)
	= flush
	restore
"
*End
*SuggestedJobTimeout: "0"
*SuggestedWaitTimeout: "300"
*PrintPSErrors: False

*% Halftone Information ===============
*DefaultHalftoneType: 1
*ScreenFreq: "106.0"
*ScreenAngle: "45.0"
*DefaultScreenProc: Dot
*ScreenProc Dot: "
{abs	exch   abs   2 copy   add   1 gt   {1 sub   dup   mul   exch
1 sub	dup   mul   add   1 sub  } {dup   mul   exch   dup   mul
add	1 exch   sub  } ifelse  }
"
*End
*ScreenProc Line: "{ pop }"
*ScreenProc Ellipse: "{ dup 5 mul 8 div mul exch dup mul exch add sqrt 1 exch sub }"
*DefaultTransfer: Null
*Transfer Null: "{ }"
*Transfer Null.Inverse: "{ 1 exch sub }"

*OpenUI *Duplex/Duplex: PickOne
*OrderDependency: 20.0 AnySetup *Duplex
*DefaultDuplex: None
*Duplex None/1-Sided: "1 dict dup /Duplex false put setpagedevice"
*Duplex DuplexNoTumble/2-Sided, Long-Edge Binding (No Tumble): "
	2 dict dup /Duplex true put dup /Tumble false put setpagedevice
"
*End
*Duplex DuplexTumble/2-Sided, Short-Edge Binding (Tumble): "
	2 dict dup /Duplex true put dup /Tumble true put setpagedevice
"
*End
*?Duplex: "
	save
	currentpagedevice /Duplex get
	{currentpagedevice /Tumble get {(DuplexTumble)}{(DuplexNoTumble)}ifelse}
	{(None)}ifelse
	= flush
	restore
"
*End
*CloseUI: *Duplex

*OpenUI *BitsPerPixel/PhotoGrade(TM): PickOne
*OrderDependency: 20.0 AnySetup *BitsPerPixel
*DefaultBitsPerPixel: None
*BitsPerPixel 4/On: "1 dict dup /PreRenderingEnhance true put setpagedevice"
*BitsPerPixel None/Off: "1 dict dup /PreRenderingEnhance false put setpagedevice"
*?BitsPerPixel: "
	save
	currentpagedevice /PreRenderingEnhanceDetails get
	/ActualPreRenderingEnhance get
	{(4)}{(None)}ifelse = flush
	restore"
*End
*CloseUI: *BitsPerPixel

*OpenUI *Smoothing/FinePrint(TM): Boolean
*OrderDependency: 20.0 AnySetup *Smoothing
*DefaultSmoothing: False
*Smoothing True/On: "1 dict dup /PostRenderingEnhance true put setpagedevice"
*Smoothing False/Off: "1 dict dup /PostRenderingEnhance false put setpagedevice"
*?Smoothing: "
	save
	currentpagedevice /PostRenderingEnhance get
	{(True)}{(False)}ifelse = flush
	restore"
*End
*CloseUI: *Smoothing

*% Paper Handling ===================

*% Code in this section both selects a tray and sets up a frame buffer.
*OpenUI *PageSize: PickOne
*OrderDependency: 20.0 AnySetup *PageSize
*DefaultPageSize: Letter
*PageSize Letter/US Letter: "
	2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
*End
*PageSize Legal/US Legal: "
	2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
*End
*PageSize Tabloid: "
	2 dict dup /PageSize [792 1224] put dup /ImagingBBox null put setpagedevice"
*End
*PageSize A3: "
	2 dict dup /PageSize [842 1191] put dup /ImagingBBox null put setpagedevice"
*End
*PageSize A4: "
	2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
*End
*PageSize A5: "
	2 dict dup /PageSize [420 595] put dup /ImagingBBox null put setpagedevice"
*End
*PageSize B4: "
	2 dict dup /PageSize [729 1032] put dup /ImagingBBox null put setpagedevice"
*End
*PageSize B5: "
	2 dict dup /PageSize [516 729] put dup /ImagingBBox null put setpagedevice"
*End
*PageSize Executive: "
	2 dict dup /PageSize [522 756] put dup /ImagingBBox null put setpagedevice"
*End
*PageSize Statement: "
	2 dict dup /PageSize [396 612] put dup /ImagingBBox null put setpagedevice"
*End
*PageSize ExtraBig/Large Format 13" x 18": "
	2 dict dup /PageSize [936 1296] put dup /ImagingBBox null put setpagedevice"
*End
*PageSize MajorBig/Large Format 13" x 18.50": "
	2 dict dup /PageSize [936 1332] put dup /ImagingBBox null put setpagedevice"
*End
*PageSize Enormous/Large Format 13" x 20": "
	2 dict dup /PageSize [936 1440] put dup /ImagingBBox null put setpagedevice"
*End
*PageSize Env10/Comm10 Envelope: "
	2 dict dup /PageSize [297 684] put dup /ImagingBBox null put setpagedevice"
*End
*PageSize EnvMonarch/Monarch Envelope: "
	2 dict dup /PageSize [279 540] put dup /ImagingBBox null put setpagedevice"
*End
*PageSize EnvC5/C5 Envelope: "
	2 dict dup /PageSize [459 649] put dup /ImagingBBox null put setpagedevice"
*End
*PageSize EnvDL/DL Envelope: "
	2 dict dup /PageSize [312 624] put dup /ImagingBBox null put setpagedevice"
*End
*PageSize Postcard: "
	2 dict dup /PageSize [284 419] put dup /ImagingBBox null put setpagedevice"
*End
*PageSize LetterSmall/US Letter Small: "
	2 dict dup /PageSize [612 792] put dup /ImagingBBox [25 25 587 767] put setpagedevice"
*End
*PageSize LegalSmall/US Legal Small: "
	2 dict dup /PageSize [612 1008] put dup /ImagingBBox [25 25 587 983] put setpagedevice"
*End
*PageSize A4Small/A4 Small: "
	2 dict dup /PageSize [595 842] put dup /ImagingBBox [25 25 570 817] put setpagedevice"
*End
*?PageSize: "
	save
	currentpagedevice /PageSize get aload pop
	2 copy gt {exch} if
	(Unknown)
	18 dict
	dup [612 792] (Letter) put
	dup [612 1008] (Legal) put
	dup [792 1224] (Tabloid) 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 [522 756] (Executive) put
	dup [396 612] (Statement) put
	dup [936 1296] (ExtraBig) put
	dup [936 1332] (MajorBig) put
	dup [936 1440] (Enormous) put
	dup [297 684] (Env10) put
	dup [279 540] (EnvMonarch) put
	dup [459 649] (EnvC5) put
	dup [312 624] (EnvDL) put
	dup [284 419] (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
	currentpagedevice /ImagingBBox get null ne {
	% Form LetterSmall, LegalSmall, or A4Small
	dup length dup 5 add string dup dup 0 5 index putinterval
	3 -1 roll (Small) putinterval exch pop
	}if
	= flush pop pop
	restore
"
*End
*CloseUI: *PageSize

*OpenUI *PageRegion: PickOne
*OrderDependency: 20.0 AnySetup *PageRegion
*DefaultPageRegion: Letter
*PageRegion Letter/US Letter: "
	3 dict dup /PageSize [612 792] put dup /ImagingBBox null put
	dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [612 792] put put put
	setpagedevice"
*End
*PageRegion Legal/US Legal: "
	3 dict dup /PageSize [612 1008] put dup /ImagingBBox null put
	dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [612 1008] put put put
	setpagedevice"
*End
*PageRegion Tabloid: "
	3 dict dup /PageSize [792 1224] put dup /ImagingBBox null put
	dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [792 1224] put put put
	setpagedevice"
*End
*PageRegion A3: "
	3 dict dup /PageSize [842 1191] put dup /ImagingBBox null put
	dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [842 1191] put put put
	setpagedevice"
*End
*PageRegion A4: "
	3 dict dup /PageSize [595 842] put dup /ImagingBBox null put
	dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [595 842] put put put
	setpagedevice"
*End
*PageRegion A5: "
	3 dict dup /PageSize [420 595] put dup /ImagingBBox null put
	dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [420 595] put put put
	setpagedevice"
*End
*PageRegion B4: "
	3 dict dup /PageSize [729 1032] put dup /ImagingBBox null put
	dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [729 1032] put put put
	setpagedevice"
*End
*PageRegion B5: "
	3 dict dup /PageSize [516 729] put dup /ImagingBBox null put
	dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [516 729] put put put
	setpagedevice"
*End
*PageRegion Executive: "
	3 dict dup /PageSize [522 756] put dup /ImagingBBox null put
	dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [522 756] put put put
	setpagedevice"
*End
*PageRegion Statement: "
	3 dict dup /PageSize [396 612] put dup /ImagingBBox null put
	dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [396 612] put put put
	setpagedevice"
*End
*PageRegion ExtraBig/Large Format 13" x 18": "
	3 dict dup /PageSize [936 1296] put dup /ImagingBBox null put
	dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [936 1296] put put put
	setpagedevice"
*End
*PageRegion MajorBig/Large Format 13" x 18.50": "
	3 dict dup /PageSize [936 1332] put dup /ImagingBBox null put
	dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [936 1332] put put put
	setpagedevice"
*End
*PageRegion Enormous/Large Format 13" x 20": "
	3 dict dup /PageSize [936 1440] put dup /ImagingBBox null put
	dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [936 1440] put put put
	setpagedevice"
*End
*PageRegion Env10/Comm10 Envelope: "
	3 dict dup /PageSize [297 684] put dup /ImagingBBox null put
	dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [297 684] put put put
	setpagedevice"
*End
*PageRegion EnvMonarch/Monarch Envelope: "
	3 dict dup /PageSize [279 540] put dup /ImagingBBox null put
	dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [279 540] put put put
	setpagedevice"
*End
*PageRegion EnvC5/C5 Envelope: "
	3 dict dup /PageSize [459 649] put dup /ImagingBBox null put
	dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [459 649] put put put
	setpagedevice"
*End
*PageRegion EnvDL/DL Envelope: "
	3 dict dup /PageSize [312 624] put dup /ImagingBBox null put
	dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [312 624] put put put
	setpagedevice"
*End
*PageRegion Postcard: "
	3 dict dup /PageSize [284 419] put dup /ImagingBBox null put
	dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [284 419] put put put
	setpagedevice"
*End
*PageRegion LetterSmall/US Letter Small: "
	3 dict dup /PageSize [612 792] put dup /ImagingBBox [25 25 587 767] put
	dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [612 792] put put put
	setpagedevice"
*End
*PageRegion LegalSmall/US Legal Small: "
	3 dict dup /PageSize [612 1008] put dup /ImagingBBox [25 25 587 983] put
	dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [612 1008] put put put
	setpagedevice"
*End
*PageRegion A4Small/A4 Small: "
	3 dict dup /PageSize [595 842] put dup /ImagingBBox [25 25 570 817] put
	dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [595 842] put put put
	setpagedevice"
*End
*CloseUI: *PageRegion

*% The following entries provide information about specific paper keywords.
*DefaultImageableArea: Letter
*ImageableArea Letter/US Letter: "9.9001 11.2801 600.78 779.28 "
*ImageableArea Legal/US Legal: "11.28 13.62 602.64 995.46 "
*ImageableArea Tabloid: "13.4401 15.8401 777.6 1209.24 "
*ImageableArea A3: "14.4 16.32 828.48 1174.68 "
*ImageableArea A4: "10.62 12.24 583.5 830.16 "
*ImageableArea A5: "11.7601 9.6001 407.4 585.6 "
*ImageableArea B4: "13.56 15.9001 716.28 1016.94 "
*ImageableArea B5: "11.28 11.28 503.88 717.84 "
*ImageableArea Executive: "11.3401 11.28 509.82 744.72 "
*ImageableArea Statement: "10.0801 10.68 383.88 602.04 "
*ImageableArea ExtraBig/Large Format 13" x 18": "15.84 14.8801 918.24 1277.88 "
*ImageableArea MajorBig/Large Format 13" x 18.50": "15.84 17.0401 918.24 1316.04 "
*ImageableArea Enormous/Large Format 13" x 20": "15.84 17.0401 918.24 1424.04 "
*ImageableArea Env10/Comm10 Envelope: "11.28 9.6001 287.76 667.56 "
*ImageableArea EnvMonarch/Monarch Envelope: "10.5601 13.4401 267.84 526.44 "
*ImageableArea EnvC5/C5 Envelope: "6.4801 9.36 451.92 638.52 "
*ImageableArea EnvDL/DL Envelope: "11.7601 13.4401 299.76 612.84 "
*ImageableArea Postcard: "11.2801 12.18 272.4 407.46 "
*ImageableArea LetterSmall/US Letter Small: "31 31 583 761 "
*ImageableArea LegalSmall/US Legal Small: "64 54 548 954 "
*ImageableArea A4Small/A4 Small: "29 31 567 812 "
*?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
	(\n) print flush
restore
"
*End

*% These provide the physical dimensions of the paper (by keyword)
*DefaultPaperDimension: Letter
*PaperDimension Letter/US Letter: "612 792"
*PaperDimension Legal/US Legal: "612 1008"
*PaperDimension Tabloid: "792 1224"
*PaperDimension A3: "842 1191"
*PaperDimension A4: "595 842"
*PaperDimension A5: "420 595"
*PaperDimension B4: "729 1032"
*PaperDimension B5: "516 729"
*PaperDimension Executive: "522 756"
*PaperDimension Statement: "396 612"
*PaperDimension ExtraBig/Large Format 13" x 18": "936 1296"
*PaperDimension MajorBig/Large Format 13" x 18.50": "936 1332"
*PaperDimension Enormous/Large Format 13" x 20": "936 1440"
*PaperDimension Env10/Comm10 Envelope: "297 684"
*PaperDimension EnvMonarch/Monarch Envelope: "279 540"
*PaperDimension EnvC5/C5 Envelope: "459 649"
*PaperDimension EnvDL/DL Envelope: "312 624"
*PaperDimension Postcard: "284 419"
*PaperDimension LetterSmall/US Letter Small: "612 792"
*PaperDimension LegalSmall/US Legal Small: "612 1008"
*PaperDimension A4Small/A4 Small: "595 842"

*RequiresPageRegion Multipurpose: True

*OpenUI *InputSlot: PickOne
*OrderDependency: 20.0 AnySetup *InputSlot
*DefaultInputSlot: StandardCassette
*InputSlot StandardCassette/Cassette (Standard): "
currentpagedevice /InputAttributes get 0 get
dup null eq
{ pop }
{ dup length 1 add dict copy
	dup /InputAttributes
	1 dict dup /Priority [0 1 2 3] put
	put setpagedevice
} ifelse"
*End
*InputSlot Multipurpose: "
currentpagedevice /InputAttributes get 1 get
dup null eq
{ pop }
{ dup length 1 add dict copy
	dup /InputAttributes
	1 dict dup /Priority [1 0 2 3] put
	put setpagedevice
} ifelse"
*End
*InputSlot OptionalCassette1/Cassette (Optional 1): "
currentpagedevice /InputAttributes get 2 get
dup null eq
{ pop }
{ dup length 1 add dict copy
	dup /InputAttributes
	1 dict dup /Priority [2 0 1 3] put
	put setpagedevice
} ifelse"
*End
*InputSlot OptionalCassette2/Cassette (Optional 2): "
currentpagedevice /InputAttributes get 3 get
dup null eq
{ pop }
{ dup length 1 add dict copy
	dup /InputAttributes
	1 dict dup /Priority [3 0 1 2] put
	put setpagedevice
} ifelse"
*End
*?InputSlot: "
save
	2 dict
	dup /0 (StandardCassette) put
	dup /1 (Multipurpose) put
	dup /2 (OptionalCassette1) put
	dup /3 (OptionalCassette2) put
	currentpagedevice /InputAttributes get
	dup /Priority known
	{ /Priority get 0 get (      ) cvs cvn get }
	{
	dup length 1 eq
	{ {pop} forall (       ) cvs cvn get }
	{ pop pop (Unknown) } ifelse
	} ifelse
	= flush
restore
"
*End
*CloseUI: *InputSlot

*OpenUI *ManualFeed/Manual Feed: Boolean
*OrderDependency: 30.0 AnySetup *ManualFeed
*DefaultManualFeed: False
*ManualFeed True: "1 dict dup /ManualFeed true put setpagedevice"
*ManualFeed False: "1 dict dup /ManualFeed false put setpagedevice"
*?ManualFeed: "
	save
	currentpagedevice /ManualFeed get
	{(True)}{(False)}ifelse = flush
	restore
"
*End
*CloseUI: *ManualFeed

*OpenUI *TraySwitch/Tray Switch: Boolean
*OrderDependency: 30.0 AnySetup *TraySwitch
*DefaultTraySwitch: True
*TraySwitch True/On: "
	statusdict begin product (LaserWriter 12/640 PS) eq end
	currentpagedevice /Duplex 2 copy known {get}{pop pop false}ifelse and
	{ currentpagedevice /InputAttributes get
	/Priority 2 copy known
	{ get [ exch {dup 1 eq {pop}if}bind forall ]
	1 dict dup /InputAttributes 1 dict dup /Priority
	7 -1 roll put put setpagedevice
	}{pop pop}ifelse
	}if
	1 dict dup /TraySwitch true put setpagedevice
"
*End
*TraySwitch False/Off: "1 dict dup /TraySwitch false put setpagedevice"
*?TraySwitch: "
	save
	currentpagedevice /TraySwitch get
	{(True)}{(False)}ifelse = flush
	restore
"
*End
*CloseUI: *TraySwitch

*% Font Information =====================
*DefaultFont: Courier
*Font AlbertusMT-Italic: Standard "(001.000)" Standard ROM
*Font AlbertusMT-Light: Standard "(001.000)" Standard ROM
*Font AlbertusMT: Standard "(001.000)" Standard ROM
*Font AntiqueOlive-Bold: Standard "(501.009)" Standard ROM
*Font AntiqueOlive-Compact: Standard "(501.008)" Standard ROM
*Font AntiqueOlive-Italic: Standard "(501.010)" Standard ROM
*Font AntiqueOlive-Roman: Standard "(501.008)" Standard ROM
*Font AntiqueOliveCE-Bold: Win1250 "(501.009)" ExtendedRoman ROM
*Font AntiqueOliveCE-Compact: Win1250 "(501.008)" ExtendedRoman ROM
*Font AntiqueOliveCE-Italic: Win1250 "(501.010)" ExtendedRoman ROM
*Font AntiqueOliveCE-Roman: Win1250 "(501.008)" ExtendedRoman ROM
*Font Apple-Chancery: Standard "(001.001)" Standard ROM
*Font Apple-ChanceryCE: Win1250 "(001.001)" ExtendedRoman ROM
*Font Arial-BoldItalicMT: Standard "(501.009)" Standard ROM
*Font Arial-BoldMT: Standard "(501.009)" Standard ROM
*Font Arial-ItalicMT: Standard "(501.012)" Standard ROM
*Font ArialCE-Bold: Win1250 "(501.009)" ExtendedRoman ROM
*Font ArialCE-BoldItalic: Win1250 "(501.009)" ExtendedRoman ROM
*Font ArialCE-Italic: Win1250 "(501.012)" ExtendedRoman ROM
*Font ArialCE: Win1250 "(501.009)" ExtendedRoman ROM
*Font ArialMT: Standard "(501.009)" Standard ROM
*Font AvantGarde-Book: Standard "(501.009)" Standard ROM
*Font AvantGarde-BookOblique: Standard "(501.009)" Standard ROM
*Font AvantGarde-Demi: Standard "(501.010)" Standard ROM
*Font AvantGarde-DemiOblique: Standard "(501.010)" Standard ROM
*Font AvantGardeCE-Book: Win1250 "(501.009)" ExtendedRoman ROM
*Font AvantGardeCE-BookOblique: Win1250 "(501.009)" ExtendedRoman ROM
*Font AvantGardeCE-Demi: Win1250 "(501.010)" ExtendedRoman ROM
*Font AvantGardeCE-DemiOblique: Win1250 "(501.010)" ExtendedRoman ROM
*Font Bodoni-Bold: Standard "(501.006)" Standard ROM
*Font Bodoni-BoldItalic: Standard "(501.007)" Standard ROM
*Font Bodoni-Italic: Standard "(501.007)" Standard ROM
*Font Bodoni-Poster: Standard "(501.009)" Standard ROM
*Font Bodoni-PosterCompressed: Standard "(501.007)" Standard ROM
*Font Bodoni: Standard "(501.008)" Standard ROM
*Font BodoniCE-Bold: Win1250 "(501.006)" ExtendedRoman ROM
*Font BodoniCE-BoldItalic: Win1250 "(501.007)" ExtendedRoman ROM
*Font BodoniCE-Italic: Win1250 "(501.007)" ExtendedRoman ROM
*Font BodoniCE-Poster: Win1250 "(501.009)" ExtendedRoman ROM
*Font BodoniCE-PosterCompressed: Win1250 "(501.007)" ExtendedRoman ROM
*Font BodoniCE: Win1250 "(501.008)" ExtendedRoman ROM
*Font Bookman-Demi: Standard "(501.007)" Standard ROM
*Font Bookman-DemiItalic: Standard "(501.008)" Standard ROM
*Font Bookman-Light: Standard "(501.006)" Standard ROM
*Font Bookman-LightItalic: Standard "(501.007)" Standard ROM
*Font BookmanCE-Demi: Win1250 "(501.007)" ExtendedRoman ROM
*Font BookmanCE-DemiItalic: Win1250 "(501.008)" ExtendedRoman ROM
*Font BookmanCE-Light: Win1250 "(501.006)" ExtendedRoman ROM
*Font BookmanCE-LightItalic: Win1250 "(501.007)" ExtendedRoman ROM
*Font Carta: Special "(001.001)" Standard ROM
*Font Chicago: Standard "(501.011)" Standard ROM
*Font ChicagoCE: Win1250 "(501.011)" ExtendedRoman ROM
*Font Clarendon-Bold: Standard "(501.008)" Standard ROM
*Font Clarendon-Light: Standard "(501.009)" Standard ROM
*Font Clarendon: Standard "(501.009)" Standard ROM
*Font ClarendonCE-Bold: Win1250 "(501.008)" ExtendedRoman ROM
*Font ClarendonCE-Light: Win1250 "(501.009)" ExtendedRoman ROM
*Font ClarendonCE: Win1250 "(501.009)" ExtendedRoman ROM
*Font CooperBlack-Italic: Standard "(001.003)" Standard ROM
*Font CooperBlack: Standard "(001.003)" Standard ROM
*Font Copperplate-ThirtyThreeBC: Standard "(001.002)" Standard ROM
*Font Copperplate-ThirtyTwoBC: Standard "(001.002)" Standard ROM
*Font Coronet-Regular: Standard "(001.000)" Standard ROM
*Font CoronetCE-Regular: Win1250 "(001.000)" ExtendedRoman ROM
*Font Courier-Bold: Standard "(501.010)" Standard ROM
*Font Courier-BoldOblique: Standard "(501.010)" Standard ROM
*Font Courier-Oblique: Standard "(501.010)" Standard ROM
*Font Courier: Standard "(501.010)" Standard ROM
*Font CourierCE-Bold: Win1250 "(501.010)" ExtendedRoman ROM
*Font CourierCE-BoldOblique: Win1250 "(501.010)" ExtendedRoman ROM
*Font CourierCE-Oblique: Win1250 "(501.010)" ExtendedRoman ROM
*Font CourierCE: Win1250 "(501.010)" ExtendedRoman ROM
*Font Eurostile-Bold: Standard "(501.008)" Standard ROM
*Font Eurostile-BoldExtendedTwo: Standard "(501.008)" Standard ROM
*Font Eurostile-ExtendedTwo: Standard "(501.010)" Standard ROM
*Font Eurostile: Standard "(501.008)" Standard ROM
*Font EurostileCE-Bold: Win1250 "(501.008)" ExtendedRoman ROM
*Font EurostileCE-BoldExtendedTwo: Win1250 "(501.008)" ExtendedRoman ROM
*Font EurostileCE-ExtendedTwo: Win1250 "(501.010)" ExtendedRoman ROM
*Font EurostileCE: Win1250 "(501.008)" ExtendedRoman ROM
*Font Geneva: Standard "(501.007)" Standard ROM
*Font GenevaCE: Win1250 "(501.007)" ExtendedRoman ROM
*Font GillSans-Bold: Standard "(501.007)" Standard ROM
*Font GillSans-BoldCondensed: Standard "(501.006)" Standard ROM
*Font GillSans-BoldItalic: Standard "(501.008)" Standard ROM
*Font GillSans-Condensed: Standard "(501.007)" Standard ROM
*Font GillSans-ExtraBold: Standard "(501.008)" Standard ROM
*Font GillSans-Italic: Standard "(501.008)" Standard ROM
*Font GillSans-Light: Standard "(501.009)" Standard ROM
*Font GillSans-LightItalic: Standard "(501.009)" Standard ROM
*Font GillSans: Standard "(501.009)" Standard ROM
*Font GillSansCE-Bold: Win1250 "(501.007)" ExtendedRoman ROM
*Font GillSansCE-BoldCondensed: Win1250 "(501.006)" ExtendedRoman ROM
*Font GillSansCE-BoldItalic: Win1250 "(501.008)" ExtendedRoman ROM
*Font GillSansCE-Condensed: Win1250 "(501.007)" ExtendedRoman ROM
*Font GillSansCE-ExtraBold: Win1250 "(501.008)" ExtendedRoman ROM
*Font GillSansCE-Italic: Win1250 "(501.008)" ExtendedRoman ROM
*Font GillSansCE-Light: Win1250 "(501.009)" ExtendedRoman ROM
*Font GillSansCE-LightItalic: Win1250 "(501.009)" ExtendedRoman ROM
*Font GillSansCE-Roman: Win1250 "(501.009)" ExtendedRoman ROM
*Font Goudy-Bold: Standard "(001.002)" Standard ROM
*Font Goudy-BoldItalic: Standard "(001.002)" Standard ROM
*Font Goudy-ExtraBold: Standard "(001.001)" Standard ROM
*Font Goudy-Italic: Standard "(001.002)" Standard ROM
*Font Goudy: Standard "(001.003)" Standard ROM
*Font Helvetica-Bold: Standard "(501.010)" Standard ROM
*Font Helvetica-BoldOblique: Standard "(501.010)" Standard ROM
*Font Helvetica-Condensed-Bold: Standard "(501.009)" Standard ROM
*Font Helvetica-Condensed-BoldObl: Standard "(501.009)" Standard ROM
*Font Helvetica-Condensed-Oblique: Standard "(501.010)" Standard ROM
*Font Helvetica-Condensed: Standard "(501.010)" Standard ROM
*Font Helvetica-Narrow-Bold: Standard "(501.010)" Standard ROM
*Font Helvetica-Narrow-BoldOblique: Standard "(501.010)" Standard ROM
*Font Helvetica-Narrow-Oblique: Standard "(501.008)" Standard ROM
*Font Helvetica-Narrow: Standard "(501.008)" Standard ROM
*Font Helvetica-Oblique: Standard "(501.008)" Standard ROM
*Font Helvetica: Standard "(501.008)" Standard ROM
*Font HelveticaCE-Bold: Win1250 "(501.010)" ExtendedRoman ROM
*Font HelveticaCE-BoldOblique: Win1250 "(501.010)" ExtendedRoman ROM
*Font HelveticaCE-Cond: Win1250 "(501.010)" ExtendedRoman ROM
*Font HelveticaCE-CondBold: Win1250 "(501.009)" ExtendedRoman ROM
*Font HelveticaCE-CondBoldObl: Win1250 "(501.009)" ExtendedRoman ROM
*Font HelveticaCE-CondObl: Win1250 "(501.010)" ExtendedRoman ROM
*Font HelveticaCE-Narrow: Win1250 "(501.008)" ExtendedRoman ROM
*Font HelveticaCE-NarrowBold: Win1250 "(501.010)" ExtendedRoman ROM
*Font HelveticaCE-NarrowBoldOblique: Win1250 "(501.010)" ExtendedRoman ROM
*Font HelveticaCE-NarrowOblique: Win1250 "(501.008)" ExtendedRoman ROM
*Font HelveticaCE-Oblique: Win1250 "(501.008)" ExtendedRoman ROM
*Font HelveticaCE: Win1250 "(501.008)" ExtendedRoman ROM
*Font HoeflerText-Black: Standard "(501.008)" Standard ROM
*Font HoeflerText-BlackItalic: Standard "(501.009)" Standard ROM
*Font HoeflerText-Italic: Standard "(501.010)" Standard ROM
*Font HoeflerText-Ornaments: Special "(001.001)" Special ROM
*Font HoeflerText-Regular: Standard "(501.009)" Standard ROM
*Font HoeflerTextCE-Black: Win1250 "(501.008)" ExtendedRoman ROM
*Font HoeflerTextCE-BlackItalic: Win1250 "(501.009)" ExtendedRoman ROM
*Font HoeflerTextCE-Italic: Win1250 "(501.010)" ExtendedRoman ROM
*Font HoeflerTextCE-Regular: Win1250 "(501.009)" ExtendedRoman ROM
*Font JoannaMT-Bold: Standard "(501.008)" Standard ROM
*Font JoannaMT-BoldItalic: Standard "(501.008)" Standard ROM
*Font JoannaMT-Italic: Standard "(501.008)" Standard ROM
*Font JoannaMT: Standard "(501.009)" Standard ROM
*Font JoannaMTCE-Bold: Win1250 "(501.008)" ExtendedRoman ROM
*Font JoannaMTCE-BoldItalic: Win1250 "(501.008)" ExtendedRoman ROM
*Font JoannaMTCE-Italic: Win1250 "(501.008)" ExtendedRoman ROM
*Font JoannaMTCE: Win1250 "(501.009)" ExtendedRoman ROM
*Font LetterGothic-Bold: Standard "(501.010)" Standard ROM
*Font LetterGothic-BoldSlanted: Standard "(501.010)" Standard ROM
*Font LetterGothic-Slanted: Standard "(501.010)" Standard ROM
*Font LetterGothic: Standard "(501.009)" Standard ROM
*Font LetterGothicCE-Bold: Win1250 "(501.010)" ExtendedRoman ROM
*Font LetterGothicCE-BoldSlanted: Win1250 "(501.010)" ExtendedRoman ROM
*Font LetterGothicCE-Slanted: Win1250 "(501.010)" ExtendedRoman ROM
*Font LetterGothicCE: Win1250 "(501.009)" ExtendedRoman ROM
*Font LubalinGraph-Book: Standard "(501.009)" Standard ROM
*Font LubalinGraph-BookOblique: Standard "(501.009)" Standard ROM
*Font LubalinGraph-Demi: Standard "(501.009)" Standard ROM
*Font LubalinGraph-DemiOblique: Standard "(501.009)" Standard ROM
*Font LubalinGraphCE-Book: Win1250 "(501.009)" ExtendedRoman ROM
*Font LubalinGraphCE-BookOblique: Win1250 "(501.009)" ExtendedRoman ROM
*Font LubalinGraphCE-Demi: Win1250 "(501.009)" ExtendedRoman ROM
*Font LubalinGraphCE-DemiOblique: Win1250 "(501.009)" ExtendedRoman ROM
*Font Marigold: Standard "(001.000)" Standard ROM
*Font MonaLisa-Recut: Standard "(001.000)" Standard ROM
*Font Monaco: Standard "(501.012)" Standard ROM
*Font MonacoCE: Win1250 "(501.012)" ExtendedRoman ROM
*Font NewCenturySchlbk-Bold: Standard "(501.008)" Standard ROM
*Font NewCenturySchlbk-BoldItalic: Standard "(501.009)" Standard ROM
*Font NewCenturySchlbk-Italic: Standard "(501.011)" Standard ROM
*Font NewCenturySchlbk-Roman: Standard "(501.008)" Standard ROM
*Font NewCenturySchlbkCE-Bold: Win1250 "(501.008)" ExtendedRoman ROM
*Font NewCenturySchlbkCE-BoldItalic: Win1250 "(501.009)" ExtendedRoman ROM
*Font NewCenturySchlbkCE-Italic: Win1250 "(501.011)" ExtendedRoman ROM
*Font NewCenturySchlbkCE-Roman: Win1250 "(501.008)" ExtendedRoman ROM
*Font NewYork: Standard "(501.013)" Standard ROM
*Font NewYorkCE: Win1250 "(501.013)" ExtendedRoman ROM
*Font Optima-Bold: Standard "(501.008)" Standard ROM
*Font Optima-BoldItalic: Standard "(501.009)" Standard ROM
*Font Optima-Italic: Standard "(501.010)" Standard ROM
*Font Optima: Standard "(501.010)" Standard ROM
*Font OptimaCE-Bold: Win1250 "(501.008)" ExtendedRoman ROM
*Font OptimaCE-BoldItalic: Win1250 "(501.009)" ExtendedRoman ROM
*Font OptimaCE-Italic: Win1250 "(501.010)" ExtendedRoman ROM
*Font OptimaCE-Roman: Win1250 "(501.010)" ExtendedRoman ROM
*Font Oxford: Standard "(001.000)" Standard ROM
*Font Palatino-Bold: Standard "(501.008)" Standard ROM
*Font Palatino-BoldItalic: Standard "(501.007)" Standard ROM
*Font Palatino-Italic: Standard "(501.008)" Standard ROM
*Font Palatino-Roman: Standard "(501.006)" Standard ROM
*Font PalatinoCE-Bold: Win1250 "(501.008)" ExtendedRoman ROM
*Font PalatinoCE-BoldItalic: Win1250 "(501.007)" ExtendedRoman ROM
*Font PalatinoCE-Italic: Win1250 "(501.008)" ExtendedRoman ROM
*Font PalatinoCE-Roman: Win1250 "(501.006)" ExtendedRoman ROM
*Font StempelGaramond-Bold: Standard "(501.007)" Standard ROM
*Font StempelGaramond-BoldItalic: Standard "(501.012)" Standard ROM
*Font StempelGaramond-Italic: Standard "(501.009)" Standard ROM
*Font StempelGaramond-Roman: Standard "(501.011)" Standard ROM
*Font StempelGaramondCE-Bold: Win1250 "(501.007)" ExtendedRoman ROM
*Font StempelGaramondCE-BoldItalic: Win1250 "(501.012)" ExtendedRoman ROM
*Font StempelGaramondCE-Italic: Win1250 "(501.009)" ExtendedRoman ROM
*Font StempelGaramondCE-Roman: Win1250 "(501.011)" ExtendedRoman ROM
*Font Symbol: Special "(001.008)" Standard ROM
*Font Tekton: Standard "(001.001)" Standard ROM
*Font Times-Bold: Standard "(501.009)" Standard ROM
*Font Times-BoldItalic: Standard "(501.009)" Standard ROM
*Font Times-Italic: Standard "(501.010)" Standard ROM
*Font Times-Roman: Standard "(501.010)" Standard ROM
*Font TimesCE-Bold: Win1250 "(501.009)" ExtendedRoman ROM
*Font TimesCE-BoldItalic: Win1250 "(501.009)" ExtendedRoman ROM
*Font TimesCE-Italic: Win1250 "(501.010)" ExtendedRoman ROM
*Font TimesCE-Roman: Win1250 "(501.010)" ExtendedRoman ROM
*Font TimesNewRomanCE-Bold: Win1250 "(501.009)" ExtendedRoman ROM
*Font TimesNewRomanCE-BoldItalic: Win1250 "(501.011)" ExtendedRoman ROM
*Font TimesNewRomanCE-Italic: Win1250 "(501.011)" ExtendedRoman ROM
*Font TimesNewRomanCE: Win1250 "(501.010)" ExtendedRoman ROM
*Font TimesNewRomanPS-BoldItalicMT: Standard "(501.011)" Standard ROM
*Font TimesNewRomanPS-BoldMT: Standard "(501.009)" Standard ROM
*Font TimesNewRomanPS-ItalicMT: Standard "(501.011)" Standard ROM
*Font TimesNewRomanPSMT: Standard "(501.010)" Standard ROM
*Font Univers-Bold: Standard "(501.008)" Standard ROM
*Font Univers-BoldExt: Standard "(501.010)" Standard ROM
*Font Univers-BoldExtObl: Standard "(501.010)" Standard ROM
*Font Univers-BoldOblique: Standard "(501.008)" Standard ROM
*Font Univers-Condensed: Standard "(501.011)" Standard ROM
*Font Univers-CondensedBold: Standard "(501.009)" Standard ROM
*Font Univers-CondensedBoldOblique: Standard "(501.009)" Standard ROM
*Font Univers-CondensedOblique: Standard "(501.011)" Standard ROM
*Font Univers-Extended: Standard "(501.009)" Standard ROM
*Font Univers-ExtendedObl: Standard "(501.009)" Standard ROM
*Font Univers-Light: Standard "(501.009)" Standard ROM
*Font Univers-LightOblique: Standard "(501.009)" Standard ROM
*Font Univers-Oblique: Standard "(501.009)" Standard ROM
*Font Univers: Standard "(501.009)" Standard ROM
*Font UniversCE-Bold: Win1250 "(501.008)" ExtendedRoman ROM
*Font UniversCE-BoldExt: Win1250 "(501.010)" ExtendedRoman ROM
*Font UniversCE-BoldExtObl: Win1250 "(501.010)" ExtendedRoman ROM
*Font UniversCE-BoldOblique: Win1250 "(501.008)" ExtendedRoman ROM
*Font UniversCE-Condensed: Win1250 "(501.011)" ExtendedRoman ROM
*Font UniversCE-CondensedBold: Win1250 "(501.009)" ExtendedRoman ROM
*Font UniversCE-CondensedBoldOblique: Win1250 "(501.009)" ExtendedRoman ROM
*Font UniversCE-CondensedOblique: Win1250 "(501.011)" ExtendedRoman ROM
*Font UniversCE-Extended: Win1250 "(501.009)" ExtendedRoman ROM
*Font UniversCE-ExtendedObl: Win1250 "(501.009)" ExtendedRoman ROM
*Font UniversCE-Light: Win1250 "(501.009)" ExtendedRoman ROM
*Font UniversCE-LightOblique: Win1250 "(501.009)" ExtendedRoman ROM
*Font UniversCE-Medium: Win1250 "(501.009)" ExtendedRoman ROM
*Font UniversCE-Oblique: Win1250 "(501.009)" ExtendedRoman ROM
*Font Wingdings-Regular: Special "(001.001)" Special ROM
*Font ZapfChancery-MediumItalic: Standard "(002.000)" Standard ROM
*Font ZapfChanceryCE-MediumItalic: Win1250 "(002.000)" ExtendedRoman ROM
*Font ZapfDingbats: Special "(002.000)" Standard ROM

*?FontQuery: "
save
	{ count 1 gt
	{ exch dup 127 string cvs (/) print print (:) print
	/Font resourcestatus {pop pop (Yes)} {(No)} ifelse =
	} { exit } ifelse
	} bind loop
	(*) = flush
restore
"
*End

*?FontList: "
save
	(*) {(/)print print (\n)print}bind 128 string /Font resourceforall
	(*) = flush
restore
"
*End

*% Printer Messages (verbatim from printer):
*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: "initializing"
*Status: "idle"
*Status: "busy"
*Status: "waiting"
*Status: "PrinterError: check if engine is connected"
*Status: "PrinterError: fuser temperature malfunction"
*Status: "PrinterError: service call - ROS motor"
*Status: "PrinterError: service call - fan alarm"
*Status: "PrinterError: service call - main motor"
*Status: "PrinterError: service call - NVM"
*Status: "PrinterError: service call"
*Status: "PrinterError: top cover open"
*Status: "PrinterError: fuser cover open"
*Status: "PrinterError: duplex unit rear cover open"
*Status: "PrinterError: warming up"
*Status: "PrinterError: toner cartridge missing or incorrect"
*Status: "PrinterError: cassette fail"
*Status: "PrinterError: Cassette (Standard): no paper tray"
*Status: "PrinterError: Cassette (Optional 1): no paper tray"
*Status: "PrinterError: Cassette (Optional 2): no paper tray"
*Status: "PrinterError: Multipurpose Tray: no cassette"
*Status: "PrinterError: out of paper"
*Status: "PrinterError: Cassette (Standard): out of paper"
*Status: "PrinterError: Cassette (Optional 1): out of paper"
*Status: "PrinterError: Cassette (Optional 2): out of paper"
*Status: "PrinterError: Multipurpose Tray: out of paper"
*Status: "PrinterError: Output Tray Full"
*Status: "PrinterError: Illegal size at duplex mode"
*Status: "PrinterError: Cassette (Standard): Illegal size at duplex mode"
*Status: "PrinterError: Cassette (Optional 1): Illegal size at duplex mode"
*Status: "PrinterError: Cassette (Optional 2): Illegal size at duplex mode"
*Status: "PrinterError: Multipurpose Tray: Illegal size at duplex mode"
*Status: "PrinterError: paper jam"
*Status: "PrinterError: paper exit misfeed"
*Status: "PrinterError: paper registration misfeed"
*Status: "PrinterError: paper duplex misfeed"
*Status: "PrinterError: paper early feed jam"
*Status: "PrinterError: test printing stage"
*Status: "PrinterError: incorrect paper size setting"

*% Input Sources (format: %%[ status: <stat>; source: <one of these> ]%% )
*Source: "EtherTalk"
*Source: "LocalTalk"
*Source: "Parallel"

*% Printer Error (format: %%[ PrinterError: <one of these> ]%%)
*PrinterError: "check if engine is connected"
*PrinterError: "fuser temperature malfunction"
*PrinterError: "service call - ROS motor"
*PrinterError: "service call - fan alarm"
*PrinterError: "service call - main motor"
*PrinterError: "service call - NVM"
*PrinterError: "service call"
*PrinterError: "top cover open"
*PrinterError: "fuser cover open"
*PrinterError: "duplex unit rear cover open"
*PrinterError: "warming up"
*PrinterError: "toner cartridge missing or incorrect"
*PrinterError: "cassette fail"
*PrinterError: "Cassette (Standard): no paper tray"
*PrinterError: "Cassette (Optional 1): no paper tray"
*PrinterError: "Cassette (Optional 2): no paper tray"
*PrinterError: "Multipurpose Tray: no cassette"
*PrinterError: "out of paper"
*PrinterError: "Cassette (Standard): out of paper"
*PrinterError: "Cassette (Optional 1): out of paper"
*PrinterError: "Cassette (Optional 2): out of paper"
*PrinterError: "Multipurpose Tray: out of paper"
*PrinterError: "Output Tray Full"
*PrinterError: "Illegal size at duplex mode"
*PrinterError: "Cassette (Standard): Illegal size at duplex mode"
*PrinterError: "Cassette (Optional 1): Illegal size at duplex mode"
*PrinterError: "Cassette (Optional 2): Illegal size at duplex mode"
*PrinterError: "Multipurpose Tray: Illegal size at duplex mode"
*PrinterError: "paper jam"
*PrinterError: "paper exit misfeed"
*PrinterError: "paper registration misfeed"
*PrinterError: "paper duplex misfeed"
*PrinterError: "paper early feed jam"
*PrinterError: "test printing stage"
*PrinterError: "incorrect paper size setting"

*%DeviceAdjustMatrix: "[1 0 0 1 0 0]"

*% Color Separation Information =====================

*DefaultColorSep: ProcessBlack.85lpi.600dpi/85 lpi / 600 dpi

*%	For 85 lpi / 600 dpi	(5,5,2,6,6,2,20/3,0) =====================

*ColorSepScreenAngle ProcessBlack.85lpi.600dpi/85 lpi / 600 dpi: "45.0"
*ColorSepScreenAngle CustomColor.85lpi.600dpi/85 lpi / 600 dpi: "45.0"
*ColorSepScreenAngle ProcessCyan.85lpi.600dpi/85 lpi / 600 dpi: "71.5651"
*ColorSepScreenAngle ProcessMagenta.85lpi.600dpi/85 lpi / 600 dpi: "18.4349"
*ColorSepScreenAngle ProcessYellow.85lpi.600dpi/85 lpi / 600 dpi: "0.0"

*ColorSepScreenFreq ProcessBlack.85lpi.600dpi/85 lpi / 600 dpi: "84.8528"
*ColorSepScreenFreq CustomColor.85lpi.600dpi/85 lpi / 600 dpi: "84.8528"
*ColorSepScreenFreq ProcessCyan.85lpi.600dpi/85 lpi / 600 dpi: "94.8683"
*ColorSepScreenFreq ProcessMagenta.85lpi.600dpi/85 lpi / 600 dpi: "94.8683"
*ColorSepScreenFreq ProcessYellow.85lpi.600dpi/85 lpi / 600 dpi: "30.0"

*ColorSepScreenProc ProcessYellow.85lpi.600dpi/85 lpi / 600 dpi: "
{1 add 2 div 3 mul dup floor sub 2 mul 1 sub exch
1 add 2 div 3 mul dup floor sub 2 mul 1 sub exch
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

*%	For 71 lpi / 600 dpi	===============================

*ColorSepScreenAngle ProcessBlack.71lpi.600dpi/71 lpi / 600 dpi: "45.0"
*ColorSepScreenAngle CustomColor.71lpi.600dpi/71 lpi / 600 dpi: "45.0"
*ColorSepScreenAngle ProcessCyan.71lpi.600dpi/71 lpi / 600 dpi: "71.5651"
*ColorSepScreenAngle ProcessMagenta.71lpi.600dpi/71 lpi / 600 dpi: "18.4349"
*ColorSepScreenAngle ProcessYellow.71lpi.600dpi/71 lpi / 600 dpi: "0.0"

*ColorSepScreenFreq ProcessBlack.71lpi.600dpi/71 lpi / 600 dpi: "70.7107"
*ColorSepScreenFreq CustomColor.71lpi.600dpi/71 lpi / 600 dpi: "70.7107"
*ColorSepScreenFreq ProcessCyan.71lpi.600dpi/71 lpi / 600 dpi: "63.2456"
*ColorSepScreenFreq ProcessMagenta.71lpi.600dpi/71 lpi / 600 dpi: "63.2456"
*ColorSepScreenFreq ProcessYellow.71lpi.600dpi/71 lpi / 600 dpi: "66.6667"

*% Last Edit Date: Oct 17 1997
*% The byte count of this file should be exactly 043414 or 044495
*% depending on the filesystem it resides in.
*% end of PPD file for LaserWriter 8500