%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
#!/usr/bin/perl
eval 'exec perl -S $0 "$@"'
if $running_under_some_shell;
# fixwfwps: fix Word for windows PostScript for printing.
#
# Copyright (C) Angus J. C. Duggan 1991-1995
# See file LICENSE for details.
$nesting = 0;
while (<>) {
tr/\000-\010\012-\014\016-\037//d;
foreach (grep($_ ne "", split("\015"))) {
s!/SVDoc\s+save\s+def!!g;
s!SVDoc\s+restore!!g;
if (/^(%!PS-Adobe-\d*\.\d*) EPSF-/ && !$nesting) {
print "$1\n";
$wfwepsf = 1;
} elsif (/^SS\s*$/ && $wfwepsf) {
print "%%Page: $wfwepsf $wfwepsf\n";
$wfwepsf++;
print "$_\n";
} elsif (/^%MSEPS Preamble/) {
print "%%BeginDocument: (Included EPSF)\n";
print "$_\n";
$nesting++;
} elsif (/^%MSEPS Trailer/) {
$nesting--;
print "$_\n";
print "%%EndDocument\n";
} elsif (! /^%%BoundingBox/) {
print "$_\n";
}
}
}