diff --git a/ChangeLog b/ChangeLog index 7bc6670f..bb9c8003 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,12 @@ 2021-02-21 Jay Berkenbilt + * From qpdf CLI, --overlay and --underlay will copy annotations + and form fields from overlay/underlay file. Fixes #395. + + * Add QPDFPageObjectHelper::copyAnnotations, which copies + annotations and, if applicable, associated form fields, from one + page to another, possibly transforming the rectangles. + * Bug fix: --flatten-rotation now applies the required transformation to annotations on the page. diff --git a/include/qpdf/QPDFPageObjectHelper.hh b/include/qpdf/QPDFPageObjectHelper.hh index c48a7145..1e3bdb3e 100644 --- a/include/qpdf/QPDFPageObjectHelper.hh +++ b/include/qpdf/QPDFPageObjectHelper.hh @@ -335,6 +335,33 @@ class QPDFPageObjectHelper: public QPDFObjectHelper QPDF_DLL void flattenRotation(QPDFAcroFormDocumentHelper* afdh); + // Copy annotations from another page into this page. The other + // page may be from the same QPDF or from a different QPDF. Each + // annotation's rectangle is transformed by the given matrix. If + // the annotation is a widget annotation that is associated with a + // form field, the form field is copied into this document's + // AcroForm dictionary as well. You can use this to copy + // annotations from a page that was converted to a form XObject + // and added to another page. For example of this, see + // examples/pdf-overlay-page.cc. Note that if you use this to copy + // annotations from one page to another in the same document and + // you use a transformation matrix other than the identity matrix, + // it will alter the original annotation, which is probably not + // what you want. Also, if you copy the same page multiple times + // with different transformation matrices, the effect will be + // cumulative, which is probably also not what you want. + // + // If you pass in a QPDFAcroFormDocumentHelper*, the method will + // use that instead of creating one in the function. Creating + // QPDFAcroFormDocumentHelper objects is expensive, so if you're + // doing a lot of copying, it can be more efficient to create + // these outside and pass them in. + QPDF_DLL + void copyAnnotations( + QPDFPageObjectHelper from_page, QPDFMatrix const& cm = QPDFMatrix(), + QPDFAcroFormDocumentHelper* afdh = nullptr, + QPDFAcroFormDocumentHelper* from_afdh = nullptr); + private: static bool removeUnreferencedResourcesHelper( diff --git a/libqpdf/QPDFPageObjectHelper.cc b/libqpdf/QPDFPageObjectHelper.cc index 18ac4d02..aa7eb912 100644 --- a/libqpdf/QPDFPageObjectHelper.cc +++ b/libqpdf/QPDFPageObjectHelper.cc @@ -1236,3 +1236,78 @@ QPDFPageObjectHelper::flattenRotation(QPDFAcroFormDocumentHelper* afdh) this->oh.replaceKey("/Annots", QPDFObjectHandle::newArray(new_annots)); } } + +void +QPDFPageObjectHelper::copyAnnotations( + QPDFPageObjectHelper from_page, QPDFMatrix const& cm, + QPDFAcroFormDocumentHelper* afdh, + QPDFAcroFormDocumentHelper* from_afdh) +{ + auto old_annots = from_page.getObjectHandle().getKey("/Annots"); + if (! old_annots.isArray()) + { + return; + } + + QPDF* from_qpdf = from_page.getObjectHandle().getOwningQPDF(); + if (! from_qpdf) + { + throw std::runtime_error( + "QPDFPageObjectHelper::copyAnnotations:" + " from page is a direct object"); + } + QPDF* this_qpdf = this->oh.getOwningQPDF(); + if (! this_qpdf) + { + throw std::runtime_error( + "QPDFPageObjectHelper::copyAnnotations:" + " this page is a direct object"); + } + + std::vector new_annots; + std::vector new_fields; + std::set old_fields; + PointerHolder afdhph; + PointerHolder from_afdhph; + if (! afdh) + { + afdhph = new QPDFAcroFormDocumentHelper(*this_qpdf); + afdh = afdhph.getPointer(); + } + if (this_qpdf == from_qpdf) + { + from_afdh = afdh; + } + else if (from_afdh) + { + if (from_afdh->getQPDF().getUniqueId() != from_qpdf->getUniqueId()) + { + throw std::logic_error( + "QPDFAcroFormDocumentHelper::copyAnnotations: from_afdh" + " is not from the same QPDF as from_page"); + } + } + else + { + from_afdhph = new QPDFAcroFormDocumentHelper(*from_qpdf); + from_afdh = from_afdhph.getPointer(); + } + + afdh->transformAnnotations( + old_annots, new_annots, new_fields, old_fields, cm, + from_qpdf, from_afdh); + for (auto const& f: new_fields) + { + afdh->addFormField(QPDFFormFieldObjectHelper(f)); + } + auto annots = this->oh.getKey("/Annots"); + if (! annots.isArray()) + { + annots = QPDFObjectHandle::newArray(); + this->oh.replaceKey("/Annots", annots); + } + for (auto const& annot: new_annots) + { + annots.appendItem(annot); + } +} diff --git a/manual/qpdf-manual.xml b/manual/qpdf-manual.xml index 204bb72d..cbeee1f6 100644 --- a/manual/qpdf-manual.xml +++ b/manual/qpdf-manual.xml @@ -5319,6 +5319,15 @@ print "\n"; which applies a transformation to each annotation on a page. + + + Add + QPDFPageObjectHelper::copyAnnotations, + which copies annotations and, if applicable, associated form + fields, from one page to another, possibly transforming the + rectangles. + + Add QUtil::path_basename to return the diff --git a/qpdf/qpdf.cc b/qpdf/qpdf.cc index bedb5ead..6f587d57 100644 --- a/qpdf/qpdf.cc +++ b/qpdf/qpdf.cc @@ -5160,6 +5160,19 @@ static void do_under_overlay_for_page( return; } + std::map> afdh; + auto make_afdh = [&](QPDFPageObjectHelper& ph) { + QPDF* q = ph.getObjectHandle().getOwningQPDF(); + auto uid = q->getUniqueId(); + if (! afdh.count(uid)) + { + afdh[uid] = new QPDFAcroFormDocumentHelper(*q); + } + return afdh[uid].getPointer(); + }; + auto dest_afdh = make_afdh(dest_page); + std::string content; int min_suffix = 1; QPDFObjectHandle resources = dest_page.getAttribute("/Resources", true); @@ -5171,13 +5184,19 @@ static void do_under_overlay_for_page( { std::cout << " " << uo.which << " " << from_pageno << std::endl; } + auto from_page = pages.at(QIntC::to_size(from_pageno - 1)); if (0 == fo.count(from_pageno)) { fo[from_pageno] = pdf.copyForeignObject( - pages.at(QIntC::to_size(from_pageno - 1)). - getFormXObjectForPage()); + from_page.getFormXObjectForPage()); } + auto cm = dest_page.getMatrixForFormXObjectPlacement( + fo[from_pageno], + dest_page.getTrimBox().getArrayAsRectangle()); + dest_page.copyAnnotations( + from_page, cm, dest_afdh, make_afdh(from_page)); + // If the same page is overlaid or underlaid multiple times, // we'll generate multiple names for it, but that's harmless // and also a pretty goofy case that's not worth coding diff --git a/qpdf/qpdf.testcov b/qpdf/qpdf.testcov index dc6fabfd..bbc23dfc 100644 --- a/qpdf/qpdf.testcov +++ b/qpdf/qpdf.testcov @@ -572,6 +572,6 @@ qpdf password file 0 QPDFFileSpecObjectHelper empty compat_name 0 QPDFFileSpecObjectHelper non-empty compat_name 0 QPDFPageObjectHelper flatten inherit rotate 0 -QPDFAcroFormDocumentHelper copy annotation 1 -QPDFAcroFormDocumentHelper field with parent 1 +QPDFAcroFormDocumentHelper copy annotation 3 +QPDFAcroFormDocumentHelper field with parent 3 QPDFAcroFormDocumentHelper modify ap matrix 0 diff --git a/qpdf/qtest/qpdf.test b/qpdf/qtest/qpdf.test index 157984f6..09df4258 100644 --- a/qpdf/qtest/qpdf.test +++ b/qpdf/qtest/qpdf.test @@ -2411,6 +2411,53 @@ foreach my $f (qw(screen print)) {$td->FILE => "manual-appearances-$f-out.pdf"}); } +show_ntests(); +# ---------- +$td->notify("--- Copy Annotations ---"); +$n_tests += 16; + +$td->runtest("complex copy annotations", + {$td->COMMAND => + "qpdf --qdf --static-id --no-original-object-ids" . + " fxo-red.pdf --overlay form-fields-and-annotations.pdf" . + " --repeat=1 -- a.pdf"}, + {$td->STRING => "", $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); +$td->runtest("check output", + {$td->FILE => "a.pdf"}, + {$td->FILE => "overlay-copy-annotations.pdf"}); + +foreach my $page (1, 2, 5, 6) +{ + $td->runtest("copy annotations single page ($page)", + {$td->COMMAND => + "qpdf --qdf --static-id --no-original-object-ids" . + " --pages . $page --" . + " fxo-red.pdf --overlay form-fields-and-annotations.pdf" . + " --repeat=1 -- a.pdf"}, + {$td->STRING => "", $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); + $td->runtest("check output", + {$td->FILE => "a.pdf"}, + {$td->FILE => "overlay-copy-annotations-p$page.pdf"}); +} + +foreach my $d ([1, "appearances-1.pdf"], + [2, "appearances-1-rotated.pdf"]) +{ + my ($n, $file1) = @$d; + $td->runtest("copy/transfer with defaults", + {$td->COMMAND => "test_driver 80 $file1 minimal.pdf"}, + {$td->STRING => "test 80 done\n", $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); + $td->runtest("check output A", + {$td->FILE => "a.pdf"}, + {$td->FILE => "test80a$n.pdf"}); + $td->runtest("check output B", + {$td->FILE => "b.pdf"}, + {$td->FILE => "test80b$n.pdf"}); +} + show_ntests(); # ---------- $td->notify("--- Page Tree Issues ---"); diff --git a/qpdf/qtest/qpdf/appearances-1-rotated.pdf b/qpdf/qtest/qpdf/appearances-1-rotated.pdf new file mode 100644 index 00000000..0dc76a69 Binary files /dev/null and b/qpdf/qtest/qpdf/appearances-1-rotated.pdf differ diff --git a/qpdf/qtest/qpdf/overlay-copy-annotations-p1.pdf b/qpdf/qtest/qpdf/overlay-copy-annotations-p1.pdf new file mode 100644 index 00000000..f997a299 --- /dev/null +++ b/qpdf/qtest/qpdf/overlay-copy-annotations-p1.pdf @@ -0,0 +1,1110 @@ +%PDF-1.3 +% +%QDF-1.0 + +1 0 obj +<< + /AcroForm 2 0 R + /Pages 3 0 R + /Type /Catalog +>> +endobj + +2 0 obj +<< + /Fields [ + 4 0 R + 5 0 R + 6 0 R + ] +>> +endobj + +3 0 obj +<< + /Count 1 + /Kids [ + 7 0 R + ] + /Type /Pages +>> +endobj + +4 0 obj +<< + /AP << + /N 8 0 R + >> + /DA (0 0.4 0 rg /F1 18 Tf) + /DR 10 0 R + /DV () + /FT /Tx + /Ff 0 + /Rect [ + 72 + 470.774 + 190.8 + 484.922 + ] + /Subtype /Widget + /T (Text Box 1) + /Type /Annot + /V (Formy field) +>> +endobj + +5 0 obj +<< + /AP << + /N 11 0 R + >> + /DA (0 0.4 0 rg /F1 18 Tf) + /DR 10 0 R + /DV () + /FT /Tx + /Ff 0 + /Rect [ + 372 + 330.774 + 386.148 + 470.374 + ] + /Subtype /Widget + /T (Text Box 1) + /Type /Annot + /V (Rot-ccw field) +>> +endobj + +6 0 obj +<< + /DV /1 + /FT /Btn + /Ff 49152 + /Kids [ + 13 0 R + 14 0 R + 15 0 R + ] + /T (r1) + /V /2 +>> +endobj + +%% Page 1 +7 0 obj +<< + /Annots [ + 16 0 R + 4 0 R + 17 0 R + 5 0 R + 18 0 R + 19 0 R + 20 0 R + 21 0 R + 13 0 R + 14 0 R + 15 0 R + ] + /Contents [ + 22 0 R + 24 0 R + 26 0 R + ] + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 28 0 R + >> + /ProcSet 29 0 R + /XObject << + /Fx1 30 0 R + >> + >> + /Type /Page +>> +endobj + +8 0 obj +<< + /BBox [ + 0 + -2.826 + 118.8 + 11.322 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources 10 0 R + /Subtype /Form + /Type /XObject + /Length 9 0 R +>> +stream +/Tx BMC +q +BT + /F1 18 Tf + (Formy field) Tj +ET +Q +EMC +endstream +endobj + +9 0 obj +53 +endobj + +10 0 obj +<< + /Font << + /F1 32 0 R + >> +>> +endobj + +11 0 obj +<< + /BBox [ + 0 + -2.826 + 140.4 + 11.322 + ] + /Matrix [ + 0 + 1 + -1 + 0 + 0 + 0 + ] + /Resources 10 0 R + /Subtype /Form + /Type /XObject + /Length 12 0 R +>> +stream +/Tx BMC +q +BT + /F1 18 Tf + (Rot-ccw field) Tj +ET +Q +EMC +endstream +endobj + +12 0 obj +55 +endobj + +13 0 obj +<< + /AP << + /N << + /1 33 0 R + /Off 35 0 R + >> + >> + /AS /1 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 37 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 6 0 R + /Rect [ + 152.749 + 648.501 + 164.801 + 660.549 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +14 0 obj +<< + /AP << + /N << + /2 38 0 R + /Off 40 0 R + >> + >> + /AS /2 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 37 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 6 0 R + /Rect [ + 152.749 + 627.301 + 164.801 + 639.349 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +15 0 obj +<< + /AP << + /N << + /3 42 0 R + /Off 44 0 R + >> + >> + /AS /3 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 37 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 6 0 R + /Rect [ + 151.399 + 606.501 + 163.451 + 618.549 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +16 0 obj +<< + /A << + /S /URI + /URI (https://www.qbilt.org/) + >> + /Border [ + 0 + 0 + .4 + ] + /C [ + .8 + .6 + .6 + ] + /H /I + /Rect [ + 72 + 501.832 + 374.4 + 520.696 + ] + /Subtype /Link + /Type /Annot +>> +endobj + +17 0 obj +<< + /AP << + /N 46 0 R + >> + /Contents (attachment1.txt) + /FS 48 0 R + /NM (attachment1.txt) + /Rect [ + 72 + 400 + 92 + 420 + ] + /Subtype /FileAttachment + /Type /Annot +>> +endobj + +18 0 obj +<< + /AP << + /N 49 0 R + >> + /DA () + /Rect [ + 72 + 350 + 92 + 360 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +19 0 obj +<< + /AP << + /N 51 0 R + >> + /DA () + /Rect [ + 102 + 350 + 112 + 370 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +20 0 obj +<< + /AP << + /N 53 0 R + >> + /DA () + /Rect [ + 122 + 350 + 142 + 360 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +21 0 obj +<< + /AP << + /N 55 0 R + >> + /DA () + /Rect [ + 152 + 350 + 162 + 370 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +%% Contents for page 1 +22 0 obj +<< + /Length 23 0 R +>> +stream +q +endstream +endobj + +23 0 obj +2 +endobj + +%% Contents for page 1 +24 0 obj +<< + /Length 25 0 R +>> +stream +1 0 0 RG +1 0 0 rg +BT + /F1 24 Tf + 72 720 Td + (Page 1 - red) Tj +ET +5 w +0 0 612 792 re s +271 371 60 60 re f +endstream +endobj + +25 0 obj +108 +endobj + +%% Contents for page 1 +26 0 obj +<< + /Length 27 0 R +>> +stream + +Q +q +1 0 0 1 0 0 cm +/Fx1 Do +Q +endstream +endobj + +27 0 obj +30 +endobj + +28 0 obj +<< + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding + /Name /F1 + /Subtype /Type1 + /Type /Font +>> +endobj + +29 0 obj +[ + /PDF + /Text +] +endobj + +30 0 obj +<< + /BBox [ + 0 + 0 + 612 + 792 + ] + /Resources << + /Font << + /F1 32 0 R + >> + >> + /Subtype /Form + /Type /XObject + /Length 31 0 R +>> +stream +q +1 1 .7 rg +.5 .5 0 RG +72 470.77 118.8 14.15 re +B +Q +q +0 .5 .5 RG +0 1 1 rg +372 330.77 14.15 139.4 re +B +Q +q +1 0 0 RG +72 310 20 10 re +72 310 5 10 re +S +0 1 0 RG +102 310 10 20 re +102 310 10 5 re +S +0 0 1 RG +122 310 20 10 re +137 310 5 10 re +S +0.5 0 1 RG +152 310 10 20 re +152 325 10 5 re +S +10 w +0.14 .33 .18 RG +5 5 602 782 re +S +Q +BT + /F1 16 Tf + 20.6 TL + 170 650 Td + (radio button 1) Tj + (radio button 2) ' + (radio button 3) ' + 1 0 0 1 72 546 Tm + /F1 20 Tf + (Thick green border surrounds page.) Tj + 0 -40 Td + /F1 24 Tf + 0 0 1 rg + (https://www.qbilt.org) Tj + /F1 12 Tf + 1 0 0 1 202 474 Tm + (<- Formy field in yellow) Tj + 1 0 0 1 392 410 Tm + 14.4 TL + (<- Rot-ccw field) Tj + (with "Rot" at bottom) ' + (and text going up) ' + 0 g + 1 0 0 1 102 405 Tm + (Arrow to the left points down.) Tj + 1 0 0 1 182 310 Tm + (<- Drawn rectangles appear below annotations.) Tj +ET +endstream +endobj + +31 0 obj +874 +endobj + +32 0 obj +<< + /BaseFont /Courier + /Encoding /WinAnsiEncoding + /Subtype /Type1 + /Type /Font +>> +endobj + +33 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources 57 0 R + /Subtype /Form + /Type /XObject + /Length 34 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +1 0 0 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +34 0 obj +202 +endobj + +35 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources 57 0 R + /Subtype /Form + /Type /XObject + /Length 36 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +36 0 obj +12 +endobj + +37 0 obj +<< + /BaseFont /ZapfDingbats + /Subtype /Type1 + /Type /Font +>> +endobj + +38 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources 57 0 R + /Subtype /Form + /Type /XObject + /Length 39 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0 1 0 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +39 0 obj +202 +endobj + +40 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources 57 0 R + /Subtype /Form + /Type /XObject + /Length 41 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +41 0 obj +12 +endobj + +42 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources 57 0 R + /Subtype /Form + /Type /XObject + /Length 43 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0 0 1 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +43 0 obj +202 +endobj + +44 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources 57 0 R + /Subtype /Form + /Type /XObject + /Length 45 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +45 0 obj +12 +endobj + +46 0 obj +<< + /BBox [ + 0 + 0 + 20 + 20 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources << + >> + /Subtype /Form + /Type /XObject + /Length 47 0 R +>> +stream +0 10 m +10 0 l +20 10 l +10 0 m +10 20 l +0 0 20 20 re +S +endstream +endobj + +47 0 obj +52 +endobj + +48 0 obj +<< + /EF << + /F 58 0 R + /UF 58 0 R + >> + /F (attachment1.txt) + /Type /Filespec + /UF (attachment1.txt) +>> +endobj + +49 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources 10 0 R + /Subtype /Form + /Type /XObject + /Length 50 0 R +>> +stream +1 0 0 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +50 0 obj +36 +endobj + +51 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + 0 + 1 + -1 + 0 + 0 + 0 + ] + /Resources 10 0 R + /Subtype /Form + /Type /XObject + /Length 52 0 R +>> +stream +0 1 0 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +52 0 obj +36 +endobj + +53 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + -1 + 0 + 0 + -1 + 0 + 0 + ] + /Resources 10 0 R + /Subtype /Form + /Type /XObject + /Length 54 0 R +>> +stream +0 0 1 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +54 0 obj +36 +endobj + +55 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + 0 + -1 + 1 + 0 + 0 + 0 + ] + /Resources 10 0 R + /Subtype /Form + /Type /XObject + /Length 56 0 R +>> +stream +0.5 0 1 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +56 0 obj +38 +endobj + +57 0 obj +<< + /Font 60 0 R + /ProcSet [ + /PDF + /Text + ] +>> +endobj + +58 0 obj +<< + /Params << + /CheckSum <80a33fc110b5a7b8b4d58b8d57e814bc> + /Size 22 + /Subtype /text#2fplain + >> + /Type /EmbeddedFile + /Length 59 0 R +>> +stream +content of attachment +endstream +endobj + +59 0 obj +22 +endobj + +60 0 obj +<< + /ZaDi 37 0 R +>> +endobj + +xref +0 61 +0000000000 65535 f +0000000025 00000 n +0000000097 00000 n +0000000165 00000 n +0000000237 00000 n +0000000481 00000 n +0000000731 00000 n +0000000860 00000 n +0000001263 00000 n +0000001529 00000 n +0000001548 00000 n +0000001602 00000 n +0000001873 00000 n +0000001893 00000 n +0000002245 00000 n +0000002597 00000 n +0000002949 00000 n +0000003193 00000 n +0000003397 00000 n +0000003537 00000 n +0000003679 00000 n +0000003821 00000 n +0000003986 00000 n +0000004045 00000 n +0000004087 00000 n +0000004252 00000 n +0000004296 00000 n +0000004383 00000 n +0000004403 00000 n +0000004522 00000 n +0000004558 00000 n +0000005623 00000 n +0000005644 00000 n +0000005749 00000 n +0000006160 00000 n +0000006181 00000 n +0000006402 00000 n +0000006422 00000 n +0000006503 00000 n +0000006914 00000 n +0000006935 00000 n +0000007156 00000 n +0000007176 00000 n +0000007587 00000 n +0000007608 00000 n +0000007829 00000 n +0000007849 00000 n +0000008105 00000 n +0000008125 00000 n +0000008256 00000 n +0000008495 00000 n +0000008515 00000 n +0000008755 00000 n +0000008775 00000 n +0000009016 00000 n +0000009036 00000 n +0000009278 00000 n +0000009298 00000 n +0000009372 00000 n +0000009580 00000 n +0000009600 00000 n +trailer << + /Root 1 0 R + /Size 61 + /ID [<4866f3ccc81fb28dc4a27f0f976ce937><31415926535897932384626433832795>] +>> +startxref +9638 +%%EOF diff --git a/qpdf/qtest/qpdf/overlay-copy-annotations-p2.pdf b/qpdf/qtest/qpdf/overlay-copy-annotations-p2.pdf new file mode 100644 index 00000000..2bc21e91 --- /dev/null +++ b/qpdf/qtest/qpdf/overlay-copy-annotations-p2.pdf @@ -0,0 +1,1111 @@ +%PDF-1.3 +% +%QDF-1.0 + +1 0 obj +<< + /AcroForm 2 0 R + /Pages 3 0 R + /Type /Catalog +>> +endobj + +2 0 obj +<< + /Fields [ + 4 0 R + 5 0 R + 6 0 R + ] +>> +endobj + +3 0 obj +<< + /Count 1 + /Kids [ + 7 0 R + ] + /Type /Pages +>> +endobj + +4 0 obj +<< + /AP << + /N 8 0 R + >> + /DA (0 0.4 0 rg /F1 18 Tf) + /DR 10 0 R + /DV () + /FT /Tx + /Ff 0 + /Rect [ + 189 + 433.387 + 248.4 + 440.461 + ] + /Subtype /Widget + /T (Text Box 1) + /Type /Annot + /V (Formy field) +>> +endobj + +5 0 obj +<< + /AP << + /N 11 0 R + >> + /DA (0 0.4 0 rg /F1 18 Tf) + /DR 10 0 R + /DV () + /FT /Tx + /Ff 0 + /Rect [ + 339 + 363.387 + 346.074 + 433.187 + ] + /Subtype /Widget + /T (Text Box 1) + /Type /Annot + /V (Rot-ccw field) +>> +endobj + +6 0 obj +<< + /DV /1 + /FT /Btn + /Ff 49152 + /Kids [ + 13 0 R + 14 0 R + 15 0 R + ] + /T (r1) + /V /2 +>> +endobj + +%% Page 1 +7 0 obj +<< + /Annots [ + 16 0 R + 4 0 R + 17 0 R + 5 0 R + 18 0 R + 19 0 R + 20 0 R + 21 0 R + 13 0 R + 14 0 R + 15 0 R + ] + /Contents [ + 22 0 R + 24 0 R + 26 0 R + ] + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 28 0 R + >> + /ProcSet 29 0 R + /XObject << + /Fx1 30 0 R + >> + >> + /Type /Page + /UserUnit 2 +>> +endobj + +8 0 obj +<< + /BBox [ + 0 + -2.826 + 118.8 + 11.322 + ] + /Matrix [ + 0.5 + 0 + 0 + 0.5 + 153 + 198 + ] + /Resources 10 0 R + /Subtype /Form + /Type /XObject + /Length 9 0 R +>> +stream +/Tx BMC +q +BT + /F1 18 Tf + (Formy field) Tj +ET +Q +EMC +endstream +endobj + +9 0 obj +53 +endobj + +10 0 obj +<< + /Font << + /F1 32 0 R + >> +>> +endobj + +11 0 obj +<< + /BBox [ + 0 + -2.826 + 140.4 + 11.322 + ] + /Matrix [ + 0 + 0.5 + -0.5 + 0 + -198 + 153 + ] + /Resources 10 0 R + /Subtype /Form + /Type /XObject + /Length 12 0 R +>> +stream +/Tx BMC +q +BT + /F1 18 Tf + (Rot-ccw field) Tj +ET +Q +EMC +endstream +endobj + +12 0 obj +55 +endobj + +13 0 obj +<< + /AP << + /N << + /1 33 0 R + /Off 35 0 R + >> + >> + /AS /1 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 37 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 6 0 R + /Rect [ + 229.3745 + 522.2505 + 235.4005 + 528.2745 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +14 0 obj +<< + /AP << + /N << + /2 38 0 R + /Off 40 0 R + >> + >> + /AS /2 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 37 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 6 0 R + /Rect [ + 229.3745 + 511.6505 + 235.4005 + 517.6745 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +15 0 obj +<< + /AP << + /N << + /3 42 0 R + /Off 44 0 R + >> + >> + /AS /3 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 37 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 6 0 R + /Rect [ + 228.6995 + 501.2505 + 234.7255 + 507.2745 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +16 0 obj +<< + /A << + /S /URI + /URI (https://www.qbilt.org/) + >> + /Border [ + 0 + 0 + .4 + ] + /C [ + .8 + .6 + .6 + ] + /H /I + /Rect [ + 189 + 448.916 + 340.2 + 458.348 + ] + /Subtype /Link + /Type /Annot +>> +endobj + +17 0 obj +<< + /AP << + /N 46 0 R + >> + /Contents (attachment1.txt) + /FS 48 0 R + /NM (attachment1.txt) + /Rect [ + 189 + 398 + 199 + 408 + ] + /Subtype /FileAttachment + /Type /Annot +>> +endobj + +18 0 obj +<< + /AP << + /N 49 0 R + >> + /DA () + /Rect [ + 189 + 373 + 199 + 378 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +19 0 obj +<< + /AP << + /N 51 0 R + >> + /DA () + /Rect [ + 204 + 373 + 209 + 383 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +20 0 obj +<< + /AP << + /N 53 0 R + >> + /DA () + /Rect [ + 214 + 373 + 224 + 378 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +21 0 obj +<< + /AP << + /N 55 0 R + >> + /DA () + /Rect [ + 229 + 373 + 234 + 383 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +%% Contents for page 1 +22 0 obj +<< + /Length 23 0 R +>> +stream +q +endstream +endobj + +23 0 obj +2 +endobj + +%% Contents for page 1 +24 0 obj +<< + /Length 25 0 R +>> +stream +1 0 0 RG +1 0 0 rg +BT + /F1 24 Tf + 72 720 Td + (Page 2 - red, scale 2) Tj +ET +5 w +0 0 612 792 re s +271 371 60 60 re f +endstream +endobj + +25 0 obj +117 +endobj + +%% Contents for page 1 +26 0 obj +<< + /Length 27 0 R +>> +stream + +Q +q +0.5 0 0 0.5 153 198 cm +/Fx1 Do +Q +endstream +endobj + +27 0 obj +38 +endobj + +28 0 obj +<< + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding + /Name /F1 + /Subtype /Type1 + /Type /Font +>> +endobj + +29 0 obj +[ + /PDF + /Text +] +endobj + +30 0 obj +<< + /BBox [ + 0 + 0 + 612 + 792 + ] + /Resources << + /Font << + /F1 32 0 R + >> + >> + /Subtype /Form + /Type /XObject + /Length 31 0 R +>> +stream +q +1 1 .7 rg +.5 .5 0 RG +72 470.77 118.8 14.15 re +B +Q +q +0 .5 .5 RG +0 1 1 rg +372 330.77 14.15 139.4 re +B +Q +q +1 0 0 RG +72 310 20 10 re +72 310 5 10 re +S +0 1 0 RG +102 310 10 20 re +102 310 10 5 re +S +0 0 1 RG +122 310 20 10 re +137 310 5 10 re +S +0.5 0 1 RG +152 310 10 20 re +152 325 10 5 re +S +10 w +0.14 .33 .18 RG +5 5 602 782 re +S +Q +BT + /F1 16 Tf + 20.6 TL + 170 650 Td + (radio button 1) Tj + (radio button 2) ' + (radio button 3) ' + 1 0 0 1 72 546 Tm + /F1 20 Tf + (Thick green border surrounds page.) Tj + 0 -40 Td + /F1 24 Tf + 0 0 1 rg + (https://www.qbilt.org) Tj + /F1 12 Tf + 1 0 0 1 202 474 Tm + (<- Formy field in yellow) Tj + 1 0 0 1 392 410 Tm + 14.4 TL + (<- Rot-ccw field) Tj + (with "Rot" at bottom) ' + (and text going up) ' + 0 g + 1 0 0 1 102 405 Tm + (Arrow to the left points down.) Tj + 1 0 0 1 182 310 Tm + (<- Drawn rectangles appear below annotations.) Tj +ET +endstream +endobj + +31 0 obj +874 +endobj + +32 0 obj +<< + /BaseFont /Courier + /Encoding /WinAnsiEncoding + /Subtype /Type1 + /Type /Font +>> +endobj + +33 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0.5 + 0 + 0 + 0.5 + 153 + 198 + ] + /Resources 57 0 R + /Subtype /Form + /Type /XObject + /Length 34 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +1 0 0 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +34 0 obj +202 +endobj + +35 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0.5 + 0 + 0 + 0.5 + 153 + 198 + ] + /Resources 57 0 R + /Subtype /Form + /Type /XObject + /Length 36 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +36 0 obj +12 +endobj + +37 0 obj +<< + /BaseFont /ZapfDingbats + /Subtype /Type1 + /Type /Font +>> +endobj + +38 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0.5 + 0 + 0 + 0.5 + 153 + 198 + ] + /Resources 57 0 R + /Subtype /Form + /Type /XObject + /Length 39 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0 1 0 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +39 0 obj +202 +endobj + +40 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0.5 + 0 + 0 + 0.5 + 153 + 198 + ] + /Resources 57 0 R + /Subtype /Form + /Type /XObject + /Length 41 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +41 0 obj +12 +endobj + +42 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0.5 + 0 + 0 + 0.5 + 153 + 198 + ] + /Resources 57 0 R + /Subtype /Form + /Type /XObject + /Length 43 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0 0 1 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +43 0 obj +202 +endobj + +44 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0.5 + 0 + 0 + 0.5 + 153 + 198 + ] + /Resources 57 0 R + /Subtype /Form + /Type /XObject + /Length 45 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +45 0 obj +12 +endobj + +46 0 obj +<< + /BBox [ + 0 + 0 + 20 + 20 + ] + /Matrix [ + 0.5 + 0 + 0 + 0.5 + 153 + 198 + ] + /Resources << + >> + /Subtype /Form + /Type /XObject + /Length 47 0 R +>> +stream +0 10 m +10 0 l +20 10 l +10 0 m +10 20 l +0 0 20 20 re +S +endstream +endobj + +47 0 obj +52 +endobj + +48 0 obj +<< + /EF << + /F 58 0 R + /UF 58 0 R + >> + /F (attachment1.txt) + /Type /Filespec + /UF (attachment1.txt) +>> +endobj + +49 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + 0.5 + 0 + 0 + 0.5 + 153 + 198 + ] + /Resources 10 0 R + /Subtype /Form + /Type /XObject + /Length 50 0 R +>> +stream +1 0 0 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +50 0 obj +36 +endobj + +51 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + 0 + 0.5 + -0.5 + 0 + -198 + 153 + ] + /Resources 10 0 R + /Subtype /Form + /Type /XObject + /Length 52 0 R +>> +stream +0 1 0 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +52 0 obj +36 +endobj + +53 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + -0.5 + 0 + 0 + -0.5 + -153 + -198 + ] + /Resources 10 0 R + /Subtype /Form + /Type /XObject + /Length 54 0 R +>> +stream +0 0 1 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +54 0 obj +36 +endobj + +55 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + 0 + -0.5 + 0.5 + 0 + 198 + -153 + ] + /Resources 10 0 R + /Subtype /Form + /Type /XObject + /Length 56 0 R +>> +stream +0.5 0 1 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +56 0 obj +38 +endobj + +57 0 obj +<< + /Font 60 0 R + /ProcSet [ + /PDF + /Text + ] +>> +endobj + +58 0 obj +<< + /Params << + /CheckSum <80a33fc110b5a7b8b4d58b8d57e814bc> + /Size 22 + /Subtype /text#2fplain + >> + /Type /EmbeddedFile + /Length 59 0 R +>> +stream +content of attachment +endstream +endobj + +59 0 obj +22 +endobj + +60 0 obj +<< + /ZaDi 37 0 R +>> +endobj + +xref +0 61 +0000000000 65535 f +0000000025 00000 n +0000000097 00000 n +0000000165 00000 n +0000000237 00000 n +0000000482 00000 n +0000000732 00000 n +0000000861 00000 n +0000001278 00000 n +0000001552 00000 n +0000001571 00000 n +0000001625 00000 n +0000001905 00000 n +0000001925 00000 n +0000002281 00000 n +0000002637 00000 n +0000002993 00000 n +0000003238 00000 n +0000003444 00000 n +0000003586 00000 n +0000003728 00000 n +0000003870 00000 n +0000004035 00000 n +0000004094 00000 n +0000004136 00000 n +0000004310 00000 n +0000004354 00000 n +0000004449 00000 n +0000004469 00000 n +0000004588 00000 n +0000004624 00000 n +0000005689 00000 n +0000005710 00000 n +0000005815 00000 n +0000006234 00000 n +0000006255 00000 n +0000006484 00000 n +0000006504 00000 n +0000006585 00000 n +0000007004 00000 n +0000007025 00000 n +0000007254 00000 n +0000007274 00000 n +0000007693 00000 n +0000007714 00000 n +0000007943 00000 n +0000007963 00000 n +0000008227 00000 n +0000008247 00000 n +0000008378 00000 n +0000008625 00000 n +0000008645 00000 n +0000008894 00000 n +0000008914 00000 n +0000009165 00000 n +0000009185 00000 n +0000009436 00000 n +0000009456 00000 n +0000009530 00000 n +0000009738 00000 n +0000009758 00000 n +trailer << + /Root 1 0 R + /Size 61 + /ID [<4866f3ccc81fb28dc4a27f0f976ce937><31415926535897932384626433832795>] +>> +startxref +9796 +%%EOF diff --git a/qpdf/qtest/qpdf/overlay-copy-annotations-p5.pdf b/qpdf/qtest/qpdf/overlay-copy-annotations-p5.pdf new file mode 100644 index 00000000..3b796cc2 --- /dev/null +++ b/qpdf/qtest/qpdf/overlay-copy-annotations-p5.pdf @@ -0,0 +1,1111 @@ +%PDF-1.3 +% +%QDF-1.0 + +1 0 obj +<< + /AcroForm 2 0 R + /Pages 3 0 R + /Type /Catalog +>> +endobj + +2 0 obj +<< + /Fields [ + 4 0 R + 5 0 R + 6 0 R + ] +>> +endobj + +3 0 obj +<< + /Count 1 + /Kids [ + 7 0 R + ] + /Type /Pages +>> +endobj + +4 0 obj +<< + /AP << + /N 8 0 R + >> + /DA (0 0.4 0 rg /F1 18 Tf) + /DR 10 0 R + /DV () + /FT /Tx + /Ff 0 + /Rect [ + 237.287545 + 215.181818 + 248.220091 + 306.981818 + ] + /Subtype /Widget + /T (Text Box 1) + /Type /Annot + /V (Formy field) +>> +endobj + +5 0 obj +<< + /AP << + /N 11 0 R + >> + /DA (0 0.4 0 rg /F1 18 Tf) + /DR 10 0 R + /DV () + /FT /Tx + /Ff 0 + /Rect [ + 248.529182 + 447 + 356.401909 + 457.932545 + ] + /Subtype /Widget + /T (Text Box 1) + /Type /Annot + /V (Rot-ccw field) +>> +endobj + +6 0 obj +<< + /DV /1 + /FT /Btn + /Ff 49152 + /Kids [ + 13 0 R + 14 0 R + 15 0 R + ] + /T (r1) + /V /2 +>> +endobj + +%% Page 1 +7 0 obj +<< + /Annots [ + 16 0 R + 4 0 R + 17 0 R + 5 0 R + 18 0 R + 19 0 R + 20 0 R + 21 0 R + 13 0 R + 14 0 R + 15 0 R + ] + /Contents [ + 22 0 R + 24 0 R + 26 0 R + ] + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 28 0 R + >> + /ProcSet 29 0 R + /XObject << + /Fx1 30 0 R + >> + >> + /Rotate 90 + /Type /Page +>> +endobj + +8 0 obj +<< + /BBox [ + 0 + -2.826 + 118.8 + 11.322 + ] + /Matrix [ + 0 + 0.772727 + -0.772727 + 0 + 612 + 159.545455 + ] + /Resources 10 0 R + /Subtype /Form + /Type /XObject + /Length 9 0 R +>> +stream +/Tx BMC +q +BT + /F1 18 Tf + (Formy field) Tj +ET +Q +EMC +endstream +endobj + +9 0 obj +53 +endobj + +10 0 obj +<< + /Font << + /F1 32 0 R + >> +>> +endobj + +11 0 obj +<< + /BBox [ + 0 + -2.826 + 140.4 + 11.322 + ] + /Matrix [ + -0.772727 + 0 + -0 + -0.772727 + -159.545455 + 612 + ] + /Resources 10 0 R + /Subtype /Form + /Type /XObject + /Length 12 0 R +>> +stream +/Tx BMC +q +BT + /F1 18 Tf + (Rot-ccw field) Tj +ET +Q +EMC +endstream +endobj + +12 0 obj +55 +endobj + +13 0 obj +<< + /AP << + /N << + /1 33 0 R + /Off 35 0 R + >> + >> + /AS /1 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 37 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 6 0 R + /Rect [ + 101.575773 + 277.578773 + 110.885591 + 286.891682 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +14 0 obj +<< + /AP << + /N << + /2 38 0 R + /Off 40 0 R + >> + >> + /AS /2 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 37 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 6 0 R + /Rect [ + 117.957591 + 277.578773 + 127.267409 + 286.891682 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +15 0 obj +<< + /AP << + /N << + /3 42 0 R + /Off 44 0 R + >> + >> + /AS /3 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 37 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 6 0 R + /Rect [ + 134.030318 + 276.535591 + 143.340136 + 285.8485 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +16 0 obj +<< + /A << + /S /URI + /URI (https://www.qbilt.org/) + >> + /Border [ + 0 + 0 + .4 + ] + /C [ + .8 + .6 + .6 + ] + /H /I + /Rect [ + 209.644 + 215.181818 + 224.220727 + 448.854545 + ] + /Subtype /Link + /Type /Annot +>> +endobj + +17 0 obj +<< + /AP << + /N 46 0 R + >> + /Contents (attachment1.txt) + /FS 48 0 R + /NM (attachment1.txt) + /Rect [ + 287.454545 + 215.181818 + 302.909091 + 230.636364 + ] + /Subtype /FileAttachment + /Type /Annot +>> +endobj + +18 0 obj +<< + /AP << + /N 49 0 R + >> + /DA () + /Rect [ + 333.818182 + 215.181818 + 341.545455 + 230.636364 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +19 0 obj +<< + /AP << + /N 51 0 R + >> + /DA () + /Rect [ + 326.090909 + 238.363636 + 341.545455 + 246.090909 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +20 0 obj +<< + /AP << + /N 53 0 R + >> + /DA () + /Rect [ + 333.818182 + 253.818182 + 341.545455 + 269.272727 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +21 0 obj +<< + /AP << + /N 55 0 R + >> + /DA () + /Rect [ + 326.090909 + 277 + 341.545455 + 284.727273 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +%% Contents for page 1 +22 0 obj +<< + /Length 23 0 R +>> +stream +q +endstream +endobj + +23 0 obj +2 +endobj + +%% Contents for page 1 +24 0 obj +<< + /Length 25 0 R +>> +stream +1 0 0 RG +1 0 0 rg +BT + /F1 24 Tf + 72 720 Td + (Page 5 - red, 90) Tj +ET +5 w +0 0 612 792 re s +271 371 60 60 re f +endstream +endobj + +25 0 obj +112 +endobj + +%% Contents for page 1 +26 0 obj +<< + /Length 27 0 R +>> +stream + +Q +q +0 0.77273 -0.77273 0 612 159.54545 cm +/Fx1 Do +Q +endstream +endobj + +27 0 obj +53 +endobj + +28 0 obj +<< + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding + /Name /F1 + /Subtype /Type1 + /Type /Font +>> +endobj + +29 0 obj +[ + /PDF + /Text +] +endobj + +30 0 obj +<< + /BBox [ + 0 + 0 + 612 + 792 + ] + /Resources << + /Font << + /F1 32 0 R + >> + >> + /Subtype /Form + /Type /XObject + /Length 31 0 R +>> +stream +q +1 1 .7 rg +.5 .5 0 RG +72 470.77 118.8 14.15 re +B +Q +q +0 .5 .5 RG +0 1 1 rg +372 330.77 14.15 139.4 re +B +Q +q +1 0 0 RG +72 310 20 10 re +72 310 5 10 re +S +0 1 0 RG +102 310 10 20 re +102 310 10 5 re +S +0 0 1 RG +122 310 20 10 re +137 310 5 10 re +S +0.5 0 1 RG +152 310 10 20 re +152 325 10 5 re +S +10 w +0.14 .33 .18 RG +5 5 602 782 re +S +Q +BT + /F1 16 Tf + 20.6 TL + 170 650 Td + (radio button 1) Tj + (radio button 2) ' + (radio button 3) ' + 1 0 0 1 72 546 Tm + /F1 20 Tf + (Thick green border surrounds page.) Tj + 0 -40 Td + /F1 24 Tf + 0 0 1 rg + (https://www.qbilt.org) Tj + /F1 12 Tf + 1 0 0 1 202 474 Tm + (<- Formy field in yellow) Tj + 1 0 0 1 392 410 Tm + 14.4 TL + (<- Rot-ccw field) Tj + (with "Rot" at bottom) ' + (and text going up) ' + 0 g + 1 0 0 1 102 405 Tm + (Arrow to the left points down.) Tj + 1 0 0 1 182 310 Tm + (<- Drawn rectangles appear below annotations.) Tj +ET +endstream +endobj + +31 0 obj +874 +endobj + +32 0 obj +<< + /BaseFont /Courier + /Encoding /WinAnsiEncoding + /Subtype /Type1 + /Type /Font +>> +endobj + +33 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 0.772727 + -0.772727 + 0 + 612 + 159.545455 + ] + /Resources 57 0 R + /Subtype /Form + /Type /XObject + /Length 34 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +1 0 0 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +34 0 obj +202 +endobj + +35 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 0.772727 + -0.772727 + 0 + 612 + 159.545455 + ] + /Resources 57 0 R + /Subtype /Form + /Type /XObject + /Length 36 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +36 0 obj +12 +endobj + +37 0 obj +<< + /BaseFont /ZapfDingbats + /Subtype /Type1 + /Type /Font +>> +endobj + +38 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 0.772727 + -0.772727 + 0 + 612 + 159.545455 + ] + /Resources 57 0 R + /Subtype /Form + /Type /XObject + /Length 39 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0 1 0 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +39 0 obj +202 +endobj + +40 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 0.772727 + -0.772727 + 0 + 612 + 159.545455 + ] + /Resources 57 0 R + /Subtype /Form + /Type /XObject + /Length 41 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +41 0 obj +12 +endobj + +42 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 0.772727 + -0.772727 + 0 + 612 + 159.545455 + ] + /Resources 57 0 R + /Subtype /Form + /Type /XObject + /Length 43 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0 0 1 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +43 0 obj +202 +endobj + +44 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 0.772727 + -0.772727 + 0 + 612 + 159.545455 + ] + /Resources 57 0 R + /Subtype /Form + /Type /XObject + /Length 45 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +45 0 obj +12 +endobj + +46 0 obj +<< + /BBox [ + 0 + 0 + 20 + 20 + ] + /Matrix [ + 0 + 0.772727 + -0.772727 + 0 + 612 + 159.545455 + ] + /Resources << + >> + /Subtype /Form + /Type /XObject + /Length 47 0 R +>> +stream +0 10 m +10 0 l +20 10 l +10 0 m +10 20 l +0 0 20 20 re +S +endstream +endobj + +47 0 obj +52 +endobj + +48 0 obj +<< + /EF << + /F 58 0 R + /UF 58 0 R + >> + /F (attachment1.txt) + /Type /Filespec + /UF (attachment1.txt) +>> +endobj + +49 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + 0 + 0.772727 + -0.772727 + 0 + 612 + 159.545455 + ] + /Resources 10 0 R + /Subtype /Form + /Type /XObject + /Length 50 0 R +>> +stream +1 0 0 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +50 0 obj +36 +endobj + +51 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + -0.772727 + 0 + -0 + -0.772727 + -159.545455 + 612 + ] + /Resources 10 0 R + /Subtype /Form + /Type /XObject + /Length 52 0 R +>> +stream +0 1 0 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +52 0 obj +36 +endobj + +53 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + 0 + -0.772727 + 0.772727 + -0 + -612 + -159.545455 + ] + /Resources 10 0 R + /Subtype /Form + /Type /XObject + /Length 54 0 R +>> +stream +0 0 1 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +54 0 obj +36 +endobj + +55 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + 0.772727 + 0 + 0 + 0.772727 + 159.545455 + -612 + ] + /Resources 10 0 R + /Subtype /Form + /Type /XObject + /Length 56 0 R +>> +stream +0.5 0 1 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +56 0 obj +38 +endobj + +57 0 obj +<< + /Font 60 0 R + /ProcSet [ + /PDF + /Text + ] +>> +endobj + +58 0 obj +<< + /Params << + /CheckSum <80a33fc110b5a7b8b4d58b8d57e814bc> + /Size 22 + /Subtype /text#2fplain + >> + /Type /EmbeddedFile + /Length 59 0 R +>> +stream +content of attachment +endstream +endobj + +59 0 obj +22 +endobj + +60 0 obj +<< + /ZaDi 37 0 R +>> +endobj + +xref +0 61 +0000000000 65535 f +0000000025 00000 n +0000000097 00000 n +0000000165 00000 n +0000000237 00000 n +0000000500 00000 n +0000000759 00000 n +0000000888 00000 n +0000001304 00000 n +0000001596 00000 n +0000001615 00000 n +0000001669 00000 n +0000001968 00000 n +0000001988 00000 n +0000002352 00000 n +0000002716 00000 n +0000003078 00000 n +0000003338 00000 n +0000003572 00000 n +0000003742 00000 n +0000003912 00000 n +0000004082 00000 n +0000004268 00000 n +0000004327 00000 n +0000004369 00000 n +0000004538 00000 n +0000004582 00000 n +0000004692 00000 n +0000004712 00000 n +0000004831 00000 n +0000004867 00000 n +0000005932 00000 n +0000005953 00000 n +0000006058 00000 n +0000006495 00000 n +0000006516 00000 n +0000006763 00000 n +0000006783 00000 n +0000006864 00000 n +0000007301 00000 n +0000007322 00000 n +0000007569 00000 n +0000007589 00000 n +0000008026 00000 n +0000008047 00000 n +0000008294 00000 n +0000008314 00000 n +0000008596 00000 n +0000008616 00000 n +0000008747 00000 n +0000009012 00000 n +0000009032 00000 n +0000009300 00000 n +0000009320 00000 n +0000009588 00000 n +0000009608 00000 n +0000009875 00000 n +0000009895 00000 n +0000009969 00000 n +0000010177 00000 n +0000010197 00000 n +trailer << + /Root 1 0 R + /Size 61 + /ID [<4866f3ccc81fb28dc4a27f0f976ce937><31415926535897932384626433832795>] +>> +startxref +10235 +%%EOF diff --git a/qpdf/qtest/qpdf/overlay-copy-annotations-p6.pdf b/qpdf/qtest/qpdf/overlay-copy-annotations-p6.pdf new file mode 100644 index 00000000..4aefadf6 --- /dev/null +++ b/qpdf/qtest/qpdf/overlay-copy-annotations-p6.pdf @@ -0,0 +1,1112 @@ +%PDF-1.3 +% +%QDF-1.0 + +1 0 obj +<< + /AcroForm 2 0 R + /Pages 3 0 R + /Type /Catalog +>> +endobj + +2 0 obj +<< + /Fields [ + 4 0 R + 5 0 R + 6 0 R + ] +>> +endobj + +3 0 obj +<< + /Count 1 + /Kids [ + 7 0 R + ] + /Type /Pages +>> +endobj + +4 0 obj +<< + /AP << + /N 8 0 R + >> + /DA (0 0.4 0 rg /F1 18 Tf) + /DR 10 0 R + /DV () + /FT /Tx + /Ff 0 + /Rect [ + 246.718667 + 240 + 256.150667 + 319.2 + ] + /Subtype /Widget + /T (Text Box 1) + /Type /Annot + /V (Formy field) +>> +endobj + +5 0 obj +<< + /AP << + /N 11 0 R + >> + /DA (0 0.4 0 rg /F1 18 Tf) + /DR 10 0 R + /DV () + /FT /Tx + /Ff 0 + /Rect [ + 256.417333 + 440 + 349.484 + 449.432 + ] + /Subtype /Widget + /T (Text Box 1) + /Type /Annot + /V (Rot-ccw field) +>> +endobj + +6 0 obj +<< + /DV /1 + /FT /Btn + /Ff 49152 + /Kids [ + 13 0 R + 14 0 R + 15 0 R + ] + /T (r1) + /V /2 +>> +endobj + +%% Page 1 +7 0 obj +<< + /Annots [ + 16 0 R + 4 0 R + 17 0 R + 5 0 R + 18 0 R + 19 0 R + 20 0 R + 21 0 R + 13 0 R + 14 0 R + 15 0 R + ] + /Contents [ + 22 0 R + 24 0 R + 26 0 R + ] + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 28 0 R + >> + /ProcSet 29 0 R + /XObject << + /Fx1 30 0 R + >> + >> + /Rotate 90 + /Type /Page + /UserUnit 1.5 +>> +endobj + +8 0 obj +<< + /BBox [ + 0 + -2.826 + 118.8 + 11.322 + ] + /Matrix [ + 0 + 0.666667 + -0.666667 + 0 + 570 + 192 + ] + /Resources 10 0 R + /Subtype /Form + /Type /XObject + /Length 9 0 R +>> +stream +/Tx BMC +q +BT + /F1 18 Tf + (Formy field) Tj +ET +Q +EMC +endstream +endobj + +9 0 obj +53 +endobj + +10 0 obj +<< + /Font << + /F1 32 0 R + >> +>> +endobj + +11 0 obj +<< + /BBox [ + 0 + -2.826 + 140.4 + 11.322 + ] + /Matrix [ + -0.666667 + 0 + -0 + -0.666667 + -192 + 570 + ] + /Resources 10 0 R + /Subtype /Form + /Type /XObject + /Length 12 0 R +>> +stream +/Tx BMC +q +BT + /F1 18 Tf + (Rot-ccw field) Tj +ET +Q +EMC +endstream +endobj + +12 0 obj +55 +endobj + +13 0 obj +<< + /AP << + /N << + /1 33 0 R + /Off 35 0 R + >> + >> + /AS /1 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 37 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 6 0 R + /Rect [ + 129.634 + 293.832667 + 137.666 + 301.867333 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +14 0 obj +<< + /AP << + /N << + /2 38 0 R + /Off 40 0 R + >> + >> + /AS /2 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 37 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 6 0 R + /Rect [ + 143.767333 + 293.832667 + 151.799333 + 301.867333 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +15 0 obj +<< + /AP << + /N << + /3 42 0 R + /Off 44 0 R + >> + >> + /AS /3 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 37 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 6 0 R + /Rect [ + 157.634 + 292.932667 + 165.666 + 300.967333 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +16 0 obj +<< + /A << + /S /URI + /URI (https://www.qbilt.org/) + >> + /Border [ + 0 + 0 + .4 + ] + /C [ + .8 + .6 + .6 + ] + /H /I + /Rect [ + 222.869333 + 240 + 235.445333 + 441.6 + ] + /Subtype /Link + /Type /Annot +>> +endobj + +17 0 obj +<< + /AP << + /N 46 0 R + >> + /Contents (attachment1.txt) + /FS 48 0 R + /NM (attachment1.txt) + /Rect [ + 290 + 240 + 303.333333 + 253.333333 + ] + /Subtype /FileAttachment + /Type /Annot +>> +endobj + +18 0 obj +<< + /AP << + /N 49 0 R + >> + /DA () + /Rect [ + 330 + 240 + 336.666667 + 253.333333 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +19 0 obj +<< + /AP << + /N 51 0 R + >> + /DA () + /Rect [ + 323.333333 + 260 + 336.666667 + 266.666667 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +20 0 obj +<< + /AP << + /N 53 0 R + >> + /DA () + /Rect [ + 330 + 273.333333 + 336.666667 + 286.666667 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +21 0 obj +<< + /AP << + /N 55 0 R + >> + /DA () + /Rect [ + 323.333333 + 293.333333 + 336.666667 + 300 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +%% Contents for page 1 +22 0 obj +<< + /Length 23 0 R +>> +stream +q +endstream +endobj + +23 0 obj +2 +endobj + +%% Contents for page 1 +24 0 obj +<< + /Length 25 0 R +>> +stream +1 0 0 RG +1 0 0 rg +BT + /F1 24 Tf + 72 720 Td + (Page 6 - red, 90, scale 1.5) Tj +ET +5 w +0 0 612 792 re s +271 371 60 60 re f +endstream +endobj + +25 0 obj +123 +endobj + +%% Contents for page 1 +26 0 obj +<< + /Length 27 0 R +>> +stream + +Q +q +0 0.66667 -0.66667 0 570 192 cm +/Fx1 Do +Q +endstream +endobj + +27 0 obj +47 +endobj + +28 0 obj +<< + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding + /Name /F1 + /Subtype /Type1 + /Type /Font +>> +endobj + +29 0 obj +[ + /PDF + /Text +] +endobj + +30 0 obj +<< + /BBox [ + 0 + 0 + 612 + 792 + ] + /Resources << + /Font << + /F1 32 0 R + >> + >> + /Subtype /Form + /Type /XObject + /Length 31 0 R +>> +stream +q +1 1 .7 rg +.5 .5 0 RG +72 470.77 118.8 14.15 re +B +Q +q +0 .5 .5 RG +0 1 1 rg +372 330.77 14.15 139.4 re +B +Q +q +1 0 0 RG +72 310 20 10 re +72 310 5 10 re +S +0 1 0 RG +102 310 10 20 re +102 310 10 5 re +S +0 0 1 RG +122 310 20 10 re +137 310 5 10 re +S +0.5 0 1 RG +152 310 10 20 re +152 325 10 5 re +S +10 w +0.14 .33 .18 RG +5 5 602 782 re +S +Q +BT + /F1 16 Tf + 20.6 TL + 170 650 Td + (radio button 1) Tj + (radio button 2) ' + (radio button 3) ' + 1 0 0 1 72 546 Tm + /F1 20 Tf + (Thick green border surrounds page.) Tj + 0 -40 Td + /F1 24 Tf + 0 0 1 rg + (https://www.qbilt.org) Tj + /F1 12 Tf + 1 0 0 1 202 474 Tm + (<- Formy field in yellow) Tj + 1 0 0 1 392 410 Tm + 14.4 TL + (<- Rot-ccw field) Tj + (with "Rot" at bottom) ' + (and text going up) ' + 0 g + 1 0 0 1 102 405 Tm + (Arrow to the left points down.) Tj + 1 0 0 1 182 310 Tm + (<- Drawn rectangles appear below annotations.) Tj +ET +endstream +endobj + +31 0 obj +874 +endobj + +32 0 obj +<< + /BaseFont /Courier + /Encoding /WinAnsiEncoding + /Subtype /Type1 + /Type /Font +>> +endobj + +33 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 0.666667 + -0.666667 + 0 + 570 + 192 + ] + /Resources 57 0 R + /Subtype /Form + /Type /XObject + /Length 34 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +1 0 0 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +34 0 obj +202 +endobj + +35 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 0.666667 + -0.666667 + 0 + 570 + 192 + ] + /Resources 57 0 R + /Subtype /Form + /Type /XObject + /Length 36 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +36 0 obj +12 +endobj + +37 0 obj +<< + /BaseFont /ZapfDingbats + /Subtype /Type1 + /Type /Font +>> +endobj + +38 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 0.666667 + -0.666667 + 0 + 570 + 192 + ] + /Resources 57 0 R + /Subtype /Form + /Type /XObject + /Length 39 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0 1 0 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +39 0 obj +202 +endobj + +40 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 0.666667 + -0.666667 + 0 + 570 + 192 + ] + /Resources 57 0 R + /Subtype /Form + /Type /XObject + /Length 41 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +41 0 obj +12 +endobj + +42 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 0.666667 + -0.666667 + 0 + 570 + 192 + ] + /Resources 57 0 R + /Subtype /Form + /Type /XObject + /Length 43 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0 0 1 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +43 0 obj +202 +endobj + +44 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 0.666667 + -0.666667 + 0 + 570 + 192 + ] + /Resources 57 0 R + /Subtype /Form + /Type /XObject + /Length 45 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +45 0 obj +12 +endobj + +46 0 obj +<< + /BBox [ + 0 + 0 + 20 + 20 + ] + /Matrix [ + 0 + 0.666667 + -0.666667 + 0 + 570 + 192 + ] + /Resources << + >> + /Subtype /Form + /Type /XObject + /Length 47 0 R +>> +stream +0 10 m +10 0 l +20 10 l +10 0 m +10 20 l +0 0 20 20 re +S +endstream +endobj + +47 0 obj +52 +endobj + +48 0 obj +<< + /EF << + /F 58 0 R + /UF 58 0 R + >> + /F (attachment1.txt) + /Type /Filespec + /UF (attachment1.txt) +>> +endobj + +49 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + 0 + 0.666667 + -0.666667 + 0 + 570 + 192 + ] + /Resources 10 0 R + /Subtype /Form + /Type /XObject + /Length 50 0 R +>> +stream +1 0 0 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +50 0 obj +36 +endobj + +51 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + -0.666667 + 0 + -0 + -0.666667 + -192 + 570 + ] + /Resources 10 0 R + /Subtype /Form + /Type /XObject + /Length 52 0 R +>> +stream +0 1 0 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +52 0 obj +36 +endobj + +53 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + 0 + -0.666667 + 0.666667 + -0 + -570 + -192 + ] + /Resources 10 0 R + /Subtype /Form + /Type /XObject + /Length 54 0 R +>> +stream +0 0 1 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +54 0 obj +36 +endobj + +55 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + 0.666667 + 0 + 0 + 0.666667 + 192 + -570 + ] + /Resources 10 0 R + /Subtype /Form + /Type /XObject + /Length 56 0 R +>> +stream +0.5 0 1 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +56 0 obj +38 +endobj + +57 0 obj +<< + /Font 60 0 R + /ProcSet [ + /PDF + /Text + ] +>> +endobj + +58 0 obj +<< + /Params << + /CheckSum <80a33fc110b5a7b8b4d58b8d57e814bc> + /Size 22 + /Subtype /text#2fplain + >> + /Type /EmbeddedFile + /Length 59 0 R +>> +stream +content of attachment +endstream +endobj + +59 0 obj +22 +endobj + +60 0 obj +<< + /ZaDi 37 0 R +>> +endobj + +xref +0 61 +0000000000 65535 f +0000000025 00000 n +0000000097 00000 n +0000000165 00000 n +0000000237 00000 n +0000000488 00000 n +0000000741 00000 n +0000000870 00000 n +0000001302 00000 n +0000001587 00000 n +0000001606 00000 n +0000001660 00000 n +0000001952 00000 n +0000001972 00000 n +0000002330 00000 n +0000002694 00000 n +0000003052 00000 n +0000003303 00000 n +0000003523 00000 n +0000003679 00000 n +0000003842 00000 n +0000004005 00000 n +0000004191 00000 n +0000004250 00000 n +0000004292 00000 n +0000004472 00000 n +0000004516 00000 n +0000004620 00000 n +0000004640 00000 n +0000004759 00000 n +0000004795 00000 n +0000005860 00000 n +0000005881 00000 n +0000005986 00000 n +0000006416 00000 n +0000006437 00000 n +0000006677 00000 n +0000006697 00000 n +0000006778 00000 n +0000007208 00000 n +0000007229 00000 n +0000007469 00000 n +0000007489 00000 n +0000007919 00000 n +0000007940 00000 n +0000008180 00000 n +0000008200 00000 n +0000008475 00000 n +0000008495 00000 n +0000008626 00000 n +0000008884 00000 n +0000008904 00000 n +0000009165 00000 n +0000009185 00000 n +0000009446 00000 n +0000009466 00000 n +0000009726 00000 n +0000009746 00000 n +0000009820 00000 n +0000010028 00000 n +0000010048 00000 n +trailer << + /Root 1 0 R + /Size 61 + /ID [<4866f3ccc81fb28dc4a27f0f976ce937><31415926535897932384626433832795>] +>> +startxref +10086 +%%EOF diff --git a/qpdf/qtest/qpdf/overlay-copy-annotations.pdf b/qpdf/qtest/qpdf/overlay-copy-annotations.pdf new file mode 100644 index 00000000..e7fc50eb --- /dev/null +++ b/qpdf/qtest/qpdf/overlay-copy-annotations.pdf @@ -0,0 +1,14342 @@ +%PDF-1.3 +% +%QDF-1.0 + +1 0 obj +<< + /AcroForm 2 0 R + /Pages 3 0 R + /Type /Catalog +>> +endobj + +2 0 obj +<< + /Fields [ + 4 0 R + 5 0 R + 6 0 R + 7 0 R + 8 0 R + 9 0 R + 10 0 R + 11 0 R + 12 0 R + 13 0 R + 14 0 R + 15 0 R + 16 0 R + 17 0 R + 18 0 R + 19 0 R + 20 0 R + 21 0 R + 22 0 R + 23 0 R + 24 0 R + 25 0 R + 26 0 R + 27 0 R + 28 0 R + 29 0 R + 30 0 R + 31 0 R + 32 0 R + 33 0 R + 34 0 R + 35 0 R + 36 0 R + 37 0 R + 38 0 R + 39 0 R + 40 0 R + 41 0 R + 42 0 R + 43 0 R + 44 0 R + 45 0 R + 46 0 R + 47 0 R + 48 0 R + 49 0 R + 50 0 R + 51 0 R + ] +>> +endobj + +3 0 obj +<< + /Count 16 + /Kids [ + 52 0 R + 53 0 R + 54 0 R + 55 0 R + 56 0 R + 57 0 R + 58 0 R + 59 0 R + 60 0 R + 61 0 R + 62 0 R + 63 0 R + 64 0 R + 65 0 R + 66 0 R + 67 0 R + ] + /Type /Pages +>> +endobj + +4 0 obj +<< + /AP << + /N 68 0 R + >> + /DA (0 0.4 0 rg /F1 18 Tf) + /DR 70 0 R + /DV () + /FT /Tx + /Ff 0 + /Rect [ + 72 + 470.774 + 190.8 + 484.922 + ] + /Subtype /Widget + /T (Text Box 1) + /Type /Annot + /V (Formy field) +>> +endobj + +5 0 obj +<< + /AP << + /N 71 0 R + >> + /DA (0 0.4 0 rg /F1 18 Tf) + /DR 70 0 R + /DV () + /FT /Tx + /Ff 0 + /Rect [ + 372 + 330.774 + 386.148 + 470.374 + ] + /Subtype /Widget + /T (Text Box 1) + /Type /Annot + /V (Rot-ccw field) +>> +endobj + +6 0 obj +<< + /DV /1 + /FT /Btn + /Ff 49152 + /Kids [ + 73 0 R + 74 0 R + 75 0 R + ] + /T (r1) + /V /2 +>> +endobj + +7 0 obj +<< + /AP << + /N 76 0 R + >> + /DA (0 0.4 0 rg /F1 18 Tf) + /DR 70 0 R + /DV () + /FT /Tx + /Ff 0 + /Rect [ + 189 + 433.387 + 248.4 + 440.461 + ] + /Subtype /Widget + /T (Text Box 1) + /Type /Annot + /V (Formy field) +>> +endobj + +8 0 obj +<< + /AP << + /N 78 0 R + >> + /DA (0 0.4 0 rg /F1 18 Tf) + /DR 70 0 R + /DV () + /FT /Tx + /Ff 0 + /Rect [ + 339 + 363.387 + 346.074 + 433.187 + ] + /Subtype /Widget + /T (Text Box 1) + /Type /Annot + /V (Rot-ccw field) +>> +endobj + +9 0 obj +<< + /DV /1 + /FT /Btn + /Ff 49152 + /Kids [ + 80 0 R + 81 0 R + 82 0 R + ] + /T (r1) + /V /2 +>> +endobj + +10 0 obj +<< + /AP << + /N 83 0 R + >> + /DA (0 0.4 0 rg /F1 18 Tf) + /DR 70 0 R + /DV () + /FT /Tx + /Ff 0 + /Rect [ + 72 + 470.774 + 190.8 + 484.922 + ] + /Subtype /Widget + /T (Text Box 1) + /Type /Annot + /V (Formy field) +>> +endobj + +11 0 obj +<< + /AP << + /N 85 0 R + >> + /DA (0 0.4 0 rg /F1 18 Tf) + /DR 70 0 R + /DV () + /FT /Tx + /Ff 0 + /Rect [ + 372 + 330.774 + 386.148 + 470.374 + ] + /Subtype /Widget + /T (Text Box 1) + /Type /Annot + /V (Rot-ccw field) +>> +endobj + +12 0 obj +<< + /DV /1 + /FT /Btn + /Ff 49152 + /Kids [ + 87 0 R + 88 0 R + 89 0 R + ] + /T (r1) + /V /2 +>> +endobj + +13 0 obj +<< + /AP << + /N 90 0 R + >> + /DA (0 0.4 0 rg /F1 18 Tf) + /DR 70 0 R + /DV () + /FT /Tx + /Ff 0 + /Rect [ + 72 + 470.774 + 190.8 + 484.922 + ] + /Subtype /Widget + /T (Text Box 1) + /Type /Annot + /V (Formy field) +>> +endobj + +14 0 obj +<< + /AP << + /N 92 0 R + >> + /DA (0 0.4 0 rg /F1 18 Tf) + /DR 70 0 R + /DV () + /FT /Tx + /Ff 0 + /Rect [ + 372 + 330.774 + 386.148 + 470.374 + ] + /Subtype /Widget + /T (Text Box 1) + /Type /Annot + /V (Rot-ccw field) +>> +endobj + +15 0 obj +<< + /DV /1 + /FT /Btn + /Ff 49152 + /Kids [ + 94 0 R + 95 0 R + 96 0 R + ] + /T (r1) + /V /2 +>> +endobj + +16 0 obj +<< + /AP << + /N 97 0 R + >> + /DA (0 0.4 0 rg /F1 18 Tf) + /DR 70 0 R + /DV () + /FT /Tx + /Ff 0 + /Rect [ + 237.287545 + 215.181818 + 248.220091 + 306.981818 + ] + /Subtype /Widget + /T (Text Box 1) + /Type /Annot + /V (Formy field) +>> +endobj + +17 0 obj +<< + /AP << + /N 99 0 R + >> + /DA (0 0.4 0 rg /F1 18 Tf) + /DR 70 0 R + /DV () + /FT /Tx + /Ff 0 + /Rect [ + 248.529182 + 447 + 356.401909 + 457.932545 + ] + /Subtype /Widget + /T (Text Box 1) + /Type /Annot + /V (Rot-ccw field) +>> +endobj + +18 0 obj +<< + /DV /1 + /FT /Btn + /Ff 49152 + /Kids [ + 101 0 R + 102 0 R + 103 0 R + ] + /T (r1) + /V /2 +>> +endobj + +19 0 obj +<< + /AP << + /N 104 0 R + >> + /DA (0 0.4 0 rg /F1 18 Tf) + /DR 70 0 R + /DV () + /FT /Tx + /Ff 0 + /Rect [ + 246.718667 + 240 + 256.150667 + 319.2 + ] + /Subtype /Widget + /T (Text Box 1) + /Type /Annot + /V (Formy field) +>> +endobj + +20 0 obj +<< + /AP << + /N 106 0 R + >> + /DA (0 0.4 0 rg /F1 18 Tf) + /DR 70 0 R + /DV () + /FT /Tx + /Ff 0 + /Rect [ + 256.417333 + 440 + 349.484 + 449.432 + ] + /Subtype /Widget + /T (Text Box 1) + /Type /Annot + /V (Rot-ccw field) +>> +endobj + +21 0 obj +<< + /DV /1 + /FT /Btn + /Ff 49152 + /Kids [ + 108 0 R + 109 0 R + 110 0 R + ] + /T (r1) + /V /2 +>> +endobj + +22 0 obj +<< + /AP << + /N 111 0 R + >> + /DA (0 0.4 0 rg /F1 18 Tf) + /DR 70 0 R + /DV () + /FT /Tx + /Ff 0 + /Rect [ + 237.287545 + 215.181818 + 248.220091 + 306.981818 + ] + /Subtype /Widget + /T (Text Box 1) + /Type /Annot + /V (Formy field) +>> +endobj + +23 0 obj +<< + /AP << + /N 113 0 R + >> + /DA (0 0.4 0 rg /F1 18 Tf) + /DR 70 0 R + /DV () + /FT /Tx + /Ff 0 + /Rect [ + 248.529182 + 447 + 356.401909 + 457.932545 + ] + /Subtype /Widget + /T (Text Box 1) + /Type /Annot + /V (Rot-ccw field) +>> +endobj + +24 0 obj +<< + /DV /1 + /FT /Btn + /Ff 49152 + /Kids [ + 115 0 R + 116 0 R + 117 0 R + ] + /T (r1) + /V /2 +>> +endobj + +25 0 obj +<< + /AP << + /N 118 0 R + >> + /DA (0 0.4 0 rg /F1 18 Tf) + /DR 70 0 R + /DV () + /FT /Tx + /Ff 0 + /Rect [ + 237.287545 + 215.181818 + 248.220091 + 306.981818 + ] + /Subtype /Widget + /T (Text Box 1) + /Type /Annot + /V (Formy field) +>> +endobj + +26 0 obj +<< + /AP << + /N 120 0 R + >> + /DA (0 0.4 0 rg /F1 18 Tf) + /DR 70 0 R + /DV () + /FT /Tx + /Ff 0 + /Rect [ + 248.529182 + 447 + 356.401909 + 457.932545 + ] + /Subtype /Widget + /T (Text Box 1) + /Type /Annot + /V (Rot-ccw field) +>> +endobj + +27 0 obj +<< + /DV /1 + /FT /Btn + /Ff 49152 + /Kids [ + 122 0 R + 123 0 R + 124 0 R + ] + /T (r1) + /V /2 +>> +endobj + +28 0 obj +<< + /AP << + /N 125 0 R + >> + /DA (0 0.4 0 rg /F1 18 Tf) + /DR 70 0 R + /DV () + /FT /Tx + /Ff 0 + /Rect [ + 421.2 + 307.078 + 540 + 321.226 + ] + /Subtype /Widget + /T (Text Box 1) + /Type /Annot + /V (Formy field) +>> +endobj + +29 0 obj +<< + /AP << + /N 127 0 R + >> + /DA (0 0.4 0 rg /F1 18 Tf) + /DR 70 0 R + /DV () + /FT /Tx + /Ff 0 + /Rect [ + 225.852 + 321.626 + 240 + 461.226 + ] + /Subtype /Widget + /T (Text Box 1) + /Type /Annot + /V (Rot-ccw field) +>> +endobj + +30 0 obj +<< + /DV /1 + /FT /Btn + /Ff 49152 + /Kids [ + 129 0 R + 130 0 R + 131 0 R + ] + /T (r1) + /V /2 +>> +endobj + +31 0 obj +<< + /AP << + /N 132 0 R + >> + /DA (0 0.4 0 rg /F1 18 Tf) + /DR 70 0 R + /DV () + /FT /Tx + /Ff 0 + /Rect [ + 421.2 + 307.078 + 540 + 321.226 + ] + /Subtype /Widget + /T (Text Box 1) + /Type /Annot + /V (Formy field) +>> +endobj + +32 0 obj +<< + /AP << + /N 134 0 R + >> + /DA (0 0.4 0 rg /F1 18 Tf) + /DR 70 0 R + /DV () + /FT /Tx + /Ff 0 + /Rect [ + 225.852 + 321.626 + 240 + 461.226 + ] + /Subtype /Widget + /T (Text Box 1) + /Type /Annot + /V (Rot-ccw field) +>> +endobj + +33 0 obj +<< + /DV /1 + /FT /Btn + /Ff 49152 + /Kids [ + 136 0 R + 137 0 R + 138 0 R + ] + /T (r1) + /V /2 +>> +endobj + +34 0 obj +<< + /AP << + /N 139 0 R + >> + /DA (0 0.4 0 rg /F1 18 Tf) + /DR 70 0 R + /DV () + /FT /Tx + /Ff 0 + /Rect [ + 421.2 + 307.078 + 540 + 321.226 + ] + /Subtype /Widget + /T (Text Box 1) + /Type /Annot + /V (Formy field) +>> +endobj + +35 0 obj +<< + /AP << + /N 141 0 R + >> + /DA (0 0.4 0 rg /F1 18 Tf) + /DR 70 0 R + /DV () + /FT /Tx + /Ff 0 + /Rect [ + 225.852 + 321.626 + 240 + 461.226 + ] + /Subtype /Widget + /T (Text Box 1) + /Type /Annot + /V (Rot-ccw field) +>> +endobj + +36 0 obj +<< + /DV /1 + /FT /Btn + /Ff 49152 + /Kids [ + 143 0 R + 144 0 R + 145 0 R + ] + /T (r1) + /V /2 +>> +endobj + +37 0 obj +<< + /AP << + /N 146 0 R + >> + /DA (0 0.4 0 rg /F1 18 Tf) + /DR 70 0 R + /DV () + /FT /Tx + /Ff 0 + /Rect [ + 421.2 + 307.078 + 540 + 321.226 + ] + /Subtype /Widget + /T (Text Box 1) + /Type /Annot + /V (Formy field) +>> +endobj + +38 0 obj +<< + /AP << + /N 148 0 R + >> + /DA (0 0.4 0 rg /F1 18 Tf) + /DR 70 0 R + /DV () + /FT /Tx + /Ff 0 + /Rect [ + 225.852 + 321.626 + 240 + 461.226 + ] + /Subtype /Widget + /T (Text Box 1) + /Type /Annot + /V (Rot-ccw field) +>> +endobj + +39 0 obj +<< + /DV /1 + /FT /Btn + /Ff 49152 + /Kids [ + 150 0 R + 151 0 R + 152 0 R + ] + /T (r1) + /V /2 +>> +endobj + +40 0 obj +<< + /AP << + /N 153 0 R + >> + /DA (0 0.4 0 rg /F1 18 Tf) + /DR 70 0 R + /DV () + /FT /Tx + /Ff 0 + /Rect [ + 363.779909 + 485.018182 + 374.712455 + 576.818182 + ] + /Subtype /Widget + /T (Text Box 1) + /Type /Annot + /V (Formy field) +>> +endobj + +41 0 obj +<< + /AP << + /N 155 0 R + >> + /DA (0 0.4 0 rg /F1 18 Tf) + /DR 70 0 R + /DV () + /FT /Tx + /Ff 0 + /Rect [ + 255.598091 + 334.067455 + 363.470818 + 345 + ] + /Subtype /Widget + /T (Text Box 1) + /Type /Annot + /V (Rot-ccw field) +>> +endobj + +42 0 obj +<< + /DV /1 + /FT /Btn + /Ff 49152 + /Kids [ + 157 0 R + 158 0 R + 159 0 R + ] + /T (r1) + /V /2 +>> +endobj + +43 0 obj +<< + /AP << + /N 160 0 R + >> + /DA (0 0.4 0 rg /F1 18 Tf) + /DR 70 0 R + /DV () + /FT /Tx + /Ff 0 + /Rect [ + 363.779909 + 485.018182 + 374.712455 + 576.818182 + ] + /Subtype /Widget + /T (Text Box 1) + /Type /Annot + /V (Formy field) +>> +endobj + +44 0 obj +<< + /AP << + /N 162 0 R + >> + /DA (0 0.4 0 rg /F1 18 Tf) + /DR 70 0 R + /DV () + /FT /Tx + /Ff 0 + /Rect [ + 255.598091 + 334.067455 + 363.470818 + 345 + ] + /Subtype /Widget + /T (Text Box 1) + /Type /Annot + /V (Rot-ccw field) +>> +endobj + +45 0 obj +<< + /DV /1 + /FT /Btn + /Ff 49152 + /Kids [ + 164 0 R + 165 0 R + 166 0 R + ] + /T (r1) + /V /2 +>> +endobj + +46 0 obj +<< + /AP << + /N 167 0 R + >> + /DA (0 0.4 0 rg /F1 18 Tf) + /DR 70 0 R + /DV () + /FT /Tx + /Ff 0 + /Rect [ + 363.779909 + 485.018182 + 374.712455 + 576.818182 + ] + /Subtype /Widget + /T (Text Box 1) + /Type /Annot + /V (Formy field) +>> +endobj + +47 0 obj +<< + /AP << + /N 169 0 R + >> + /DA (0 0.4 0 rg /F1 18 Tf) + /DR 70 0 R + /DV () + /FT /Tx + /Ff 0 + /Rect [ + 255.598091 + 334.067455 + 363.470818 + 345 + ] + /Subtype /Widget + /T (Text Box 1) + /Type /Annot + /V (Rot-ccw field) +>> +endobj + +48 0 obj +<< + /DV /1 + /FT /Btn + /Ff 49152 + /Kids [ + 171 0 R + 172 0 R + 173 0 R + ] + /T (r1) + /V /2 +>> +endobj + +49 0 obj +<< + /AP << + /N 174 0 R + >> + /DA (0 0.4 0 rg /F1 18 Tf) + /DR 70 0 R + /DV () + /FT /Tx + /Ff 0 + /Rect [ + 363.779909 + 485.018182 + 374.712455 + 576.818182 + ] + /Subtype /Widget + /T (Text Box 1) + /Type /Annot + /V (Formy field) +>> +endobj + +50 0 obj +<< + /AP << + /N 176 0 R + >> + /DA (0 0.4 0 rg /F1 18 Tf) + /DR 70 0 R + /DV () + /FT /Tx + /Ff 0 + /Rect [ + 255.598091 + 334.067455 + 363.470818 + 345 + ] + /Subtype /Widget + /T (Text Box 1) + /Type /Annot + /V (Rot-ccw field) +>> +endobj + +51 0 obj +<< + /DV /1 + /FT /Btn + /Ff 49152 + /Kids [ + 178 0 R + 179 0 R + 180 0 R + ] + /T (r1) + /V /2 +>> +endobj + +%% Page 1 +52 0 obj +<< + /Annots [ + 181 0 R + 4 0 R + 182 0 R + 5 0 R + 183 0 R + 184 0 R + 185 0 R + 186 0 R + 73 0 R + 74 0 R + 75 0 R + ] + /Contents [ + 187 0 R + 189 0 R + 191 0 R + ] + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 193 0 R + >> + /ProcSet 194 0 R + /XObject << + /Fx1 195 0 R + >> + >> + /Type /Page +>> +endobj + +%% Page 2 +53 0 obj +<< + /Annots [ + 197 0 R + 7 0 R + 198 0 R + 8 0 R + 199 0 R + 200 0 R + 201 0 R + 202 0 R + 80 0 R + 81 0 R + 82 0 R + ] + /Contents [ + 203 0 R + 205 0 R + 207 0 R + ] + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 193 0 R + >> + /ProcSet 194 0 R + /XObject << + /Fx1 195 0 R + >> + >> + /Type /Page + /UserUnit 2 +>> +endobj + +%% Page 3 +54 0 obj +<< + /Annots [ + 209 0 R + 10 0 R + 210 0 R + 11 0 R + 211 0 R + 212 0 R + 213 0 R + 214 0 R + 87 0 R + 88 0 R + 89 0 R + ] + /Contents [ + 215 0 R + 217 0 R + 219 0 R + 221 0 R + ] + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 193 0 R + >> + /ProcSet 194 0 R + /XObject << + /Fx1 195 0 R + >> + >> + /Type /Page +>> +endobj + +%% Page 4 +55 0 obj +<< + /Annots [ + 223 0 R + 13 0 R + 224 0 R + 14 0 R + 225 0 R + 226 0 R + 227 0 R + 228 0 R + 94 0 R + 95 0 R + 96 0 R + ] + /Contents [ + 229 0 R + 231 0 R + 233 0 R + ] + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 193 0 R + >> + /ProcSet 194 0 R + /XObject << + /Fx1 195 0 R + >> + >> + /Type /Page +>> +endobj + +%% Page 5 +56 0 obj +<< + /Annots [ + 235 0 R + 16 0 R + 236 0 R + 17 0 R + 237 0 R + 238 0 R + 239 0 R + 240 0 R + 101 0 R + 102 0 R + 103 0 R + ] + /Contents [ + 241 0 R + 243 0 R + 245 0 R + ] + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 193 0 R + >> + /ProcSet 194 0 R + /XObject << + /Fx1 195 0 R + >> + >> + /Rotate 90 + /Type /Page +>> +endobj + +%% Page 6 +57 0 obj +<< + /Annots [ + 247 0 R + 19 0 R + 248 0 R + 20 0 R + 249 0 R + 250 0 R + 251 0 R + 252 0 R + 108 0 R + 109 0 R + 110 0 R + ] + /Contents [ + 253 0 R + 255 0 R + 257 0 R + ] + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 193 0 R + >> + /ProcSet 194 0 R + /XObject << + /Fx1 195 0 R + >> + >> + /Rotate 90 + /Type /Page + /UserUnit 1.5 +>> +endobj + +%% Page 7 +58 0 obj +<< + /Annots [ + 259 0 R + 22 0 R + 260 0 R + 23 0 R + 261 0 R + 262 0 R + 263 0 R + 264 0 R + 115 0 R + 116 0 R + 117 0 R + ] + /Contents [ + 265 0 R + 267 0 R + 269 0 R + ] + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 193 0 R + >> + /ProcSet 194 0 R + /XObject << + /Fx1 195 0 R + >> + >> + /Rotate 90 + /Type /Page +>> +endobj + +%% Page 8 +59 0 obj +<< + /Annots [ + 271 0 R + 25 0 R + 272 0 R + 26 0 R + 273 0 R + 274 0 R + 275 0 R + 276 0 R + 122 0 R + 123 0 R + 124 0 R + ] + /Contents [ + 277 0 R + 279 0 R + 281 0 R + ] + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 193 0 R + >> + /ProcSet 194 0 R + /XObject << + /Fx1 195 0 R + >> + >> + /Rotate 90 + /Type /Page +>> +endobj + +%% Page 9 +60 0 obj +<< + /Annots [ + 283 0 R + 28 0 R + 284 0 R + 29 0 R + 285 0 R + 286 0 R + 287 0 R + 288 0 R + 129 0 R + 130 0 R + 131 0 R + ] + /Contents [ + 289 0 R + 291 0 R + 293 0 R + ] + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 193 0 R + >> + /ProcSet 194 0 R + /XObject << + /Fx1 195 0 R + >> + >> + /Rotate 180 + /Type /Page +>> +endobj + +%% Page 10 +61 0 obj +<< + /Annots [ + 295 0 R + 31 0 R + 296 0 R + 32 0 R + 297 0 R + 298 0 R + 299 0 R + 300 0 R + 136 0 R + 137 0 R + 138 0 R + ] + /Contents [ + 301 0 R + 303 0 R + 305 0 R + ] + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 193 0 R + >> + /ProcSet 194 0 R + /XObject << + /Fx1 195 0 R + >> + >> + /Rotate 180 + /Type /Page + /UserUnit 0.75 +>> +endobj + +%% Page 11 +62 0 obj +<< + /Annots [ + 307 0 R + 34 0 R + 308 0 R + 35 0 R + 309 0 R + 310 0 R + 311 0 R + 312 0 R + 143 0 R + 144 0 R + 145 0 R + ] + /Contents [ + 313 0 R + 315 0 R + 317 0 R + ] + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 193 0 R + >> + /ProcSet 194 0 R + /XObject << + /Fx1 195 0 R + >> + >> + /Rotate 180 + /Type /Page +>> +endobj + +%% Page 12 +63 0 obj +<< + /Annots [ + 319 0 R + 37 0 R + 320 0 R + 38 0 R + 321 0 R + 322 0 R + 323 0 R + 324 0 R + 150 0 R + 151 0 R + 152 0 R + ] + /Contents [ + 325 0 R + 327 0 R + 329 0 R + ] + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 193 0 R + >> + /ProcSet 194 0 R + /XObject << + /Fx1 195 0 R + >> + >> + /Rotate 180 + /Type /Page +>> +endobj + +%% Page 13 +64 0 obj +<< + /Annots [ + 331 0 R + 40 0 R + 332 0 R + 41 0 R + 333 0 R + 334 0 R + 335 0 R + 336 0 R + 157 0 R + 158 0 R + 159 0 R + ] + /Contents [ + 337 0 R + 339 0 R + 341 0 R + ] + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 193 0 R + >> + /ProcSet 194 0 R + /XObject << + /Fx1 195 0 R + >> + >> + /Rotate 270 + /Type /Page +>> +endobj + +%% Page 14 +65 0 obj +<< + /Annots [ + 343 0 R + 43 0 R + 344 0 R + 44 0 R + 345 0 R + 346 0 R + 347 0 R + 348 0 R + 164 0 R + 165 0 R + 166 0 R + ] + /Contents [ + 349 0 R + 351 0 R + 353 0 R + ] + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 193 0 R + >> + /ProcSet 194 0 R + /XObject << + /Fx1 195 0 R + >> + >> + /Rotate 270 + /Type /Page + /UserUnit 1.25 +>> +endobj + +%% Page 15 +66 0 obj +<< + /Annots [ + 355 0 R + 46 0 R + 356 0 R + 47 0 R + 357 0 R + 358 0 R + 359 0 R + 360 0 R + 171 0 R + 172 0 R + 173 0 R + ] + /Contents [ + 361 0 R + 363 0 R + 365 0 R + ] + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 193 0 R + >> + /ProcSet 194 0 R + /XObject << + /Fx1 195 0 R + >> + >> + /Rotate 270 + /Type /Page +>> +endobj + +%% Page 16 +67 0 obj +<< + /Annots [ + 367 0 R + 49 0 R + 368 0 R + 50 0 R + 369 0 R + 370 0 R + 371 0 R + 372 0 R + 178 0 R + 179 0 R + 180 0 R + ] + /Contents [ + 373 0 R + 375 0 R + 377 0 R + ] + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 193 0 R + >> + /ProcSet 194 0 R + /XObject << + /Fx1 195 0 R + >> + >> + /Rotate 270 + /Type /Page +>> +endobj + +68 0 obj +<< + /BBox [ + 0 + -2.826 + 118.8 + 11.322 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 69 0 R +>> +stream +/Tx BMC +q +BT + /F1 18 Tf + (Formy field) Tj +ET +Q +EMC +endstream +endobj + +69 0 obj +53 +endobj + +70 0 obj +<< + /Font << + /F1 379 0 R + >> +>> +endobj + +71 0 obj +<< + /BBox [ + 0 + -2.826 + 140.4 + 11.322 + ] + /Matrix [ + 0 + 1 + -1 + 0 + 0 + 0 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 72 0 R +>> +stream +/Tx BMC +q +BT + /F1 18 Tf + (Rot-ccw field) Tj +ET +Q +EMC +endstream +endobj + +72 0 obj +55 +endobj + +73 0 obj +<< + /AP << + /N << + /1 380 0 R + /Off 382 0 R + >> + >> + /AS /1 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 384 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 6 0 R + /Rect [ + 152.749 + 648.501 + 164.801 + 660.549 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +74 0 obj +<< + /AP << + /N << + /2 385 0 R + /Off 387 0 R + >> + >> + /AS /2 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 384 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 6 0 R + /Rect [ + 152.749 + 627.301 + 164.801 + 639.349 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +75 0 obj +<< + /AP << + /N << + /3 389 0 R + /Off 391 0 R + >> + >> + /AS /3 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 384 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 6 0 R + /Rect [ + 151.399 + 606.501 + 163.451 + 618.549 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +76 0 obj +<< + /BBox [ + 0 + -2.826 + 118.8 + 11.322 + ] + /Matrix [ + 0.5 + 0 + 0 + 0.5 + 153 + 198 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 77 0 R +>> +stream +/Tx BMC +q +BT + /F1 18 Tf + (Formy field) Tj +ET +Q +EMC +endstream +endobj + +77 0 obj +53 +endobj + +78 0 obj +<< + /BBox [ + 0 + -2.826 + 140.4 + 11.322 + ] + /Matrix [ + 0 + 0.5 + -0.5 + 0 + -198 + 153 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 79 0 R +>> +stream +/Tx BMC +q +BT + /F1 18 Tf + (Rot-ccw field) Tj +ET +Q +EMC +endstream +endobj + +79 0 obj +55 +endobj + +80 0 obj +<< + /AP << + /N << + /1 393 0 R + /Off 395 0 R + >> + >> + /AS /1 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 384 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 9 0 R + /Rect [ + 229.3745 + 522.2505 + 235.4005 + 528.2745 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +81 0 obj +<< + /AP << + /N << + /2 397 0 R + /Off 399 0 R + >> + >> + /AS /2 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 384 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 9 0 R + /Rect [ + 229.3745 + 511.6505 + 235.4005 + 517.6745 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +82 0 obj +<< + /AP << + /N << + /3 401 0 R + /Off 403 0 R + >> + >> + /AS /3 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 384 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 9 0 R + /Rect [ + 228.6995 + 501.2505 + 234.7255 + 507.2745 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +83 0 obj +<< + /BBox [ + 0 + -2.826 + 118.8 + 11.322 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 84 0 R +>> +stream +/Tx BMC +q +BT + /F1 18 Tf + (Formy field) Tj +ET +Q +EMC +endstream +endobj + +84 0 obj +53 +endobj + +85 0 obj +<< + /BBox [ + 0 + -2.826 + 140.4 + 11.322 + ] + /Matrix [ + 0 + 1 + -1 + 0 + 0 + 0 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 86 0 R +>> +stream +/Tx BMC +q +BT + /F1 18 Tf + (Rot-ccw field) Tj +ET +Q +EMC +endstream +endobj + +86 0 obj +55 +endobj + +87 0 obj +<< + /AP << + /N << + /1 405 0 R + /Off 407 0 R + >> + >> + /AS /1 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 384 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 12 0 R + /Rect [ + 152.749 + 648.501 + 164.801 + 660.549 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +88 0 obj +<< + /AP << + /N << + /2 409 0 R + /Off 411 0 R + >> + >> + /AS /2 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 384 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 12 0 R + /Rect [ + 152.749 + 627.301 + 164.801 + 639.349 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +89 0 obj +<< + /AP << + /N << + /3 413 0 R + /Off 415 0 R + >> + >> + /AS /3 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 384 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 12 0 R + /Rect [ + 151.399 + 606.501 + 163.451 + 618.549 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +90 0 obj +<< + /BBox [ + 0 + -2.826 + 118.8 + 11.322 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 91 0 R +>> +stream +/Tx BMC +q +BT + /F1 18 Tf + (Formy field) Tj +ET +Q +EMC +endstream +endobj + +91 0 obj +53 +endobj + +92 0 obj +<< + /BBox [ + 0 + -2.826 + 140.4 + 11.322 + ] + /Matrix [ + 0 + 1 + -1 + 0 + 0 + 0 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 93 0 R +>> +stream +/Tx BMC +q +BT + /F1 18 Tf + (Rot-ccw field) Tj +ET +Q +EMC +endstream +endobj + +93 0 obj +55 +endobj + +94 0 obj +<< + /AP << + /N << + /1 417 0 R + /Off 419 0 R + >> + >> + /AS /1 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 384 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 15 0 R + /Rect [ + 152.749 + 648.501 + 164.801 + 660.549 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +95 0 obj +<< + /AP << + /N << + /2 421 0 R + /Off 423 0 R + >> + >> + /AS /2 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 384 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 15 0 R + /Rect [ + 152.749 + 627.301 + 164.801 + 639.349 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +96 0 obj +<< + /AP << + /N << + /3 425 0 R + /Off 427 0 R + >> + >> + /AS /3 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 384 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 15 0 R + /Rect [ + 151.399 + 606.501 + 163.451 + 618.549 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +97 0 obj +<< + /BBox [ + 0 + -2.826 + 118.8 + 11.322 + ] + /Matrix [ + 0 + 0.772727 + -0.772727 + 0 + 612 + 159.545455 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 98 0 R +>> +stream +/Tx BMC +q +BT + /F1 18 Tf + (Formy field) Tj +ET +Q +EMC +endstream +endobj + +98 0 obj +53 +endobj + +99 0 obj +<< + /BBox [ + 0 + -2.826 + 140.4 + 11.322 + ] + /Matrix [ + -0.772727 + 0 + -0 + -0.772727 + -159.545455 + 612 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 100 0 R +>> +stream +/Tx BMC +q +BT + /F1 18 Tf + (Rot-ccw field) Tj +ET +Q +EMC +endstream +endobj + +100 0 obj +55 +endobj + +101 0 obj +<< + /AP << + /N << + /1 429 0 R + /Off 431 0 R + >> + >> + /AS /1 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 384 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 18 0 R + /Rect [ + 101.575773 + 277.578773 + 110.885591 + 286.891682 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +102 0 obj +<< + /AP << + /N << + /2 433 0 R + /Off 435 0 R + >> + >> + /AS /2 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 384 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 18 0 R + /Rect [ + 117.957591 + 277.578773 + 127.267409 + 286.891682 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +103 0 obj +<< + /AP << + /N << + /3 437 0 R + /Off 439 0 R + >> + >> + /AS /3 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 384 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 18 0 R + /Rect [ + 134.030318 + 276.535591 + 143.340136 + 285.8485 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +104 0 obj +<< + /BBox [ + 0 + -2.826 + 118.8 + 11.322 + ] + /Matrix [ + 0 + 0.666667 + -0.666667 + 0 + 570 + 192 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 105 0 R +>> +stream +/Tx BMC +q +BT + /F1 18 Tf + (Formy field) Tj +ET +Q +EMC +endstream +endobj + +105 0 obj +53 +endobj + +106 0 obj +<< + /BBox [ + 0 + -2.826 + 140.4 + 11.322 + ] + /Matrix [ + -0.666667 + 0 + -0 + -0.666667 + -192 + 570 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 107 0 R +>> +stream +/Tx BMC +q +BT + /F1 18 Tf + (Rot-ccw field) Tj +ET +Q +EMC +endstream +endobj + +107 0 obj +55 +endobj + +108 0 obj +<< + /AP << + /N << + /1 441 0 R + /Off 443 0 R + >> + >> + /AS /1 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 384 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 21 0 R + /Rect [ + 129.634 + 293.832667 + 137.666 + 301.867333 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +109 0 obj +<< + /AP << + /N << + /2 445 0 R + /Off 447 0 R + >> + >> + /AS /2 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 384 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 21 0 R + /Rect [ + 143.767333 + 293.832667 + 151.799333 + 301.867333 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +110 0 obj +<< + /AP << + /N << + /3 449 0 R + /Off 451 0 R + >> + >> + /AS /3 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 384 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 21 0 R + /Rect [ + 157.634 + 292.932667 + 165.666 + 300.967333 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +111 0 obj +<< + /BBox [ + 0 + -2.826 + 118.8 + 11.322 + ] + /Matrix [ + 0 + 0.772727 + -0.772727 + 0 + 612 + 159.545455 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 112 0 R +>> +stream +/Tx BMC +q +BT + /F1 18 Tf + (Formy field) Tj +ET +Q +EMC +endstream +endobj + +112 0 obj +53 +endobj + +113 0 obj +<< + /BBox [ + 0 + -2.826 + 140.4 + 11.322 + ] + /Matrix [ + -0.772727 + 0 + -0 + -0.772727 + -159.545455 + 612 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 114 0 R +>> +stream +/Tx BMC +q +BT + /F1 18 Tf + (Rot-ccw field) Tj +ET +Q +EMC +endstream +endobj + +114 0 obj +55 +endobj + +115 0 obj +<< + /AP << + /N << + /1 453 0 R + /Off 455 0 R + >> + >> + /AS /1 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 384 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 24 0 R + /Rect [ + 101.575773 + 277.578773 + 110.885591 + 286.891682 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +116 0 obj +<< + /AP << + /N << + /2 457 0 R + /Off 459 0 R + >> + >> + /AS /2 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 384 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 24 0 R + /Rect [ + 117.957591 + 277.578773 + 127.267409 + 286.891682 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +117 0 obj +<< + /AP << + /N << + /3 461 0 R + /Off 463 0 R + >> + >> + /AS /3 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 384 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 24 0 R + /Rect [ + 134.030318 + 276.535591 + 143.340136 + 285.8485 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +118 0 obj +<< + /BBox [ + 0 + -2.826 + 118.8 + 11.322 + ] + /Matrix [ + 0 + 0.772727 + -0.772727 + 0 + 612 + 159.545455 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 119 0 R +>> +stream +/Tx BMC +q +BT + /F1 18 Tf + (Formy field) Tj +ET +Q +EMC +endstream +endobj + +119 0 obj +53 +endobj + +120 0 obj +<< + /BBox [ + 0 + -2.826 + 140.4 + 11.322 + ] + /Matrix [ + -0.772727 + 0 + -0 + -0.772727 + -159.545455 + 612 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 121 0 R +>> +stream +/Tx BMC +q +BT + /F1 18 Tf + (Rot-ccw field) Tj +ET +Q +EMC +endstream +endobj + +121 0 obj +55 +endobj + +122 0 obj +<< + /AP << + /N << + /1 465 0 R + /Off 467 0 R + >> + >> + /AS /1 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 384 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 27 0 R + /Rect [ + 101.575773 + 277.578773 + 110.885591 + 286.891682 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +123 0 obj +<< + /AP << + /N << + /2 469 0 R + /Off 471 0 R + >> + >> + /AS /2 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 384 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 27 0 R + /Rect [ + 117.957591 + 277.578773 + 127.267409 + 286.891682 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +124 0 obj +<< + /AP << + /N << + /3 473 0 R + /Off 475 0 R + >> + >> + /AS /3 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 384 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 27 0 R + /Rect [ + 134.030318 + 276.535591 + 143.340136 + 285.8485 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +125 0 obj +<< + /BBox [ + 0 + -2.826 + 118.8 + 11.322 + ] + /Matrix [ + -1 + 0 + 0 + -1 + 612 + 792 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 126 0 R +>> +stream +/Tx BMC +q +BT + /F1 18 Tf + (Formy field) Tj +ET +Q +EMC +endstream +endobj + +126 0 obj +53 +endobj + +127 0 obj +<< + /BBox [ + 0 + -2.826 + 140.4 + 11.322 + ] + /Matrix [ + -0 + -1 + 1 + 0 + -792 + 612 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 128 0 R +>> +stream +/Tx BMC +q +BT + /F1 18 Tf + (Rot-ccw field) Tj +ET +Q +EMC +endstream +endobj + +128 0 obj +55 +endobj + +129 0 obj +<< + /AP << + /N << + /1 477 0 R + /Off 479 0 R + >> + >> + /AS /1 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 384 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 30 0 R + /Rect [ + 447.199 + 131.451 + 459.251 + 143.499 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +130 0 obj +<< + /AP << + /N << + /2 481 0 R + /Off 483 0 R + >> + >> + /AS /2 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 384 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 30 0 R + /Rect [ + 447.199 + 152.651 + 459.251 + 164.699 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +131 0 obj +<< + /AP << + /N << + /3 485 0 R + /Off 487 0 R + >> + >> + /AS /3 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 384 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 30 0 R + /Rect [ + 448.549 + 173.451 + 460.601 + 185.499 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +132 0 obj +<< + /BBox [ + 0 + -2.826 + 118.8 + 11.322 + ] + /Matrix [ + -1 + 0 + 0 + -1 + 612 + 792 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 133 0 R +>> +stream +/Tx BMC +q +BT + /F1 18 Tf + (Formy field) Tj +ET +Q +EMC +endstream +endobj + +133 0 obj +53 +endobj + +134 0 obj +<< + /BBox [ + 0 + -2.826 + 140.4 + 11.322 + ] + /Matrix [ + -0 + -1 + 1 + 0 + -792 + 612 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 135 0 R +>> +stream +/Tx BMC +q +BT + /F1 18 Tf + (Rot-ccw field) Tj +ET +Q +EMC +endstream +endobj + +135 0 obj +55 +endobj + +136 0 obj +<< + /AP << + /N << + /1 489 0 R + /Off 491 0 R + >> + >> + /AS /1 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 384 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 33 0 R + /Rect [ + 447.199 + 131.451 + 459.251 + 143.499 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +137 0 obj +<< + /AP << + /N << + /2 493 0 R + /Off 495 0 R + >> + >> + /AS /2 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 384 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 33 0 R + /Rect [ + 447.199 + 152.651 + 459.251 + 164.699 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +138 0 obj +<< + /AP << + /N << + /3 497 0 R + /Off 499 0 R + >> + >> + /AS /3 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 384 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 33 0 R + /Rect [ + 448.549 + 173.451 + 460.601 + 185.499 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +139 0 obj +<< + /BBox [ + 0 + -2.826 + 118.8 + 11.322 + ] + /Matrix [ + -1 + 0 + 0 + -1 + 612 + 792 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 140 0 R +>> +stream +/Tx BMC +q +BT + /F1 18 Tf + (Formy field) Tj +ET +Q +EMC +endstream +endobj + +140 0 obj +53 +endobj + +141 0 obj +<< + /BBox [ + 0 + -2.826 + 140.4 + 11.322 + ] + /Matrix [ + -0 + -1 + 1 + 0 + -792 + 612 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 142 0 R +>> +stream +/Tx BMC +q +BT + /F1 18 Tf + (Rot-ccw field) Tj +ET +Q +EMC +endstream +endobj + +142 0 obj +55 +endobj + +143 0 obj +<< + /AP << + /N << + /1 501 0 R + /Off 503 0 R + >> + >> + /AS /1 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 384 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 36 0 R + /Rect [ + 447.199 + 131.451 + 459.251 + 143.499 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +144 0 obj +<< + /AP << + /N << + /2 505 0 R + /Off 507 0 R + >> + >> + /AS /2 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 384 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 36 0 R + /Rect [ + 447.199 + 152.651 + 459.251 + 164.699 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +145 0 obj +<< + /AP << + /N << + /3 509 0 R + /Off 511 0 R + >> + >> + /AS /3 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 384 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 36 0 R + /Rect [ + 448.549 + 173.451 + 460.601 + 185.499 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +146 0 obj +<< + /BBox [ + 0 + -2.826 + 118.8 + 11.322 + ] + /Matrix [ + -1 + 0 + 0 + -1 + 612 + 792 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 147 0 R +>> +stream +/Tx BMC +q +BT + /F1 18 Tf + (Formy field) Tj +ET +Q +EMC +endstream +endobj + +147 0 obj +53 +endobj + +148 0 obj +<< + /BBox [ + 0 + -2.826 + 140.4 + 11.322 + ] + /Matrix [ + -0 + -1 + 1 + 0 + -792 + 612 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 149 0 R +>> +stream +/Tx BMC +q +BT + /F1 18 Tf + (Rot-ccw field) Tj +ET +Q +EMC +endstream +endobj + +149 0 obj +55 +endobj + +150 0 obj +<< + /AP << + /N << + /1 513 0 R + /Off 515 0 R + >> + >> + /AS /1 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 384 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 39 0 R + /Rect [ + 447.199 + 131.451 + 459.251 + 143.499 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +151 0 obj +<< + /AP << + /N << + /2 517 0 R + /Off 519 0 R + >> + >> + /AS /2 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 384 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 39 0 R + /Rect [ + 447.199 + 152.651 + 459.251 + 164.699 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +152 0 obj +<< + /AP << + /N << + /3 521 0 R + /Off 523 0 R + >> + >> + /AS /3 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 384 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 39 0 R + /Rect [ + 448.549 + 173.451 + 460.601 + 185.499 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +153 0 obj +<< + /BBox [ + 0 + -2.826 + 118.8 + 11.322 + ] + /Matrix [ + 0 + -0.772727 + 0.772727 + 0 + 0 + 632.454545 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 154 0 R +>> +stream +/Tx BMC +q +BT + /F1 18 Tf + (Formy field) Tj +ET +Q +EMC +endstream +endobj + +154 0 obj +53 +endobj + +155 0 obj +<< + /BBox [ + 0 + -2.826 + 140.4 + 11.322 + ] + /Matrix [ + 0.772727 + 0 + 0 + 0.772727 + -632.454545 + 0 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 156 0 R +>> +stream +/Tx BMC +q +BT + /F1 18 Tf + (Rot-ccw field) Tj +ET +Q +EMC +endstream +endobj + +156 0 obj +55 +endobj + +157 0 obj +<< + /AP << + /N << + /1 525 0 R + /Off 527 0 R + >> + >> + /AS /1 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 384 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 42 0 R + /Rect [ + 501.114409 + 505.108318 + 510.424227 + 514.421227 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +158 0 obj +<< + /AP << + /N << + /2 529 0 R + /Off 531 0 R + >> + >> + /AS /2 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 384 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 42 0 R + /Rect [ + 484.732591 + 505.108318 + 494.042409 + 514.421227 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +159 0 obj +<< + /AP << + /N << + /3 533 0 R + /Off 535 0 R + >> + >> + /AS /3 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 384 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 42 0 R + /Rect [ + 468.659864 + 506.1515 + 477.969682 + 515.464409 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +160 0 obj +<< + /BBox [ + 0 + -2.826 + 118.8 + 11.322 + ] + /Matrix [ + 0 + -0.772727 + 0.772727 + 0 + 0 + 632.454545 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 161 0 R +>> +stream +/Tx BMC +q +BT + /F1 18 Tf + (Formy field) Tj +ET +Q +EMC +endstream +endobj + +161 0 obj +53 +endobj + +162 0 obj +<< + /BBox [ + 0 + -2.826 + 140.4 + 11.322 + ] + /Matrix [ + 0.772727 + 0 + 0 + 0.772727 + -632.454545 + 0 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 163 0 R +>> +stream +/Tx BMC +q +BT + /F1 18 Tf + (Rot-ccw field) Tj +ET +Q +EMC +endstream +endobj + +163 0 obj +55 +endobj + +164 0 obj +<< + /AP << + /N << + /1 537 0 R + /Off 539 0 R + >> + >> + /AS /1 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 384 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 45 0 R + /Rect [ + 501.114409 + 505.108318 + 510.424227 + 514.421227 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +165 0 obj +<< + /AP << + /N << + /2 541 0 R + /Off 543 0 R + >> + >> + /AS /2 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 384 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 45 0 R + /Rect [ + 484.732591 + 505.108318 + 494.042409 + 514.421227 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +166 0 obj +<< + /AP << + /N << + /3 545 0 R + /Off 547 0 R + >> + >> + /AS /3 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 384 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 45 0 R + /Rect [ + 468.659864 + 506.1515 + 477.969682 + 515.464409 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +167 0 obj +<< + /BBox [ + 0 + -2.826 + 118.8 + 11.322 + ] + /Matrix [ + 0 + -0.772727 + 0.772727 + 0 + 0 + 632.454545 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 168 0 R +>> +stream +/Tx BMC +q +BT + /F1 18 Tf + (Formy field) Tj +ET +Q +EMC +endstream +endobj + +168 0 obj +53 +endobj + +169 0 obj +<< + /BBox [ + 0 + -2.826 + 140.4 + 11.322 + ] + /Matrix [ + 0.772727 + 0 + 0 + 0.772727 + -632.454545 + 0 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 170 0 R +>> +stream +/Tx BMC +q +BT + /F1 18 Tf + (Rot-ccw field) Tj +ET +Q +EMC +endstream +endobj + +170 0 obj +55 +endobj + +171 0 obj +<< + /AP << + /N << + /1 549 0 R + /Off 551 0 R + >> + >> + /AS /1 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 384 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 48 0 R + /Rect [ + 501.114409 + 505.108318 + 510.424227 + 514.421227 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +172 0 obj +<< + /AP << + /N << + /2 553 0 R + /Off 555 0 R + >> + >> + /AS /2 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 384 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 48 0 R + /Rect [ + 484.732591 + 505.108318 + 494.042409 + 514.421227 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +173 0 obj +<< + /AP << + /N << + /3 557 0 R + /Off 559 0 R + >> + >> + /AS /3 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 384 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 48 0 R + /Rect [ + 468.659864 + 506.1515 + 477.969682 + 515.464409 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +174 0 obj +<< + /BBox [ + 0 + -2.826 + 118.8 + 11.322 + ] + /Matrix [ + 0 + -0.772727 + 0.772727 + 0 + 0 + 632.454545 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 175 0 R +>> +stream +/Tx BMC +q +BT + /F1 18 Tf + (Formy field) Tj +ET +Q +EMC +endstream +endobj + +175 0 obj +53 +endobj + +176 0 obj +<< + /BBox [ + 0 + -2.826 + 140.4 + 11.322 + ] + /Matrix [ + 0.772727 + 0 + 0 + 0.772727 + -632.454545 + 0 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 177 0 R +>> +stream +/Tx BMC +q +BT + /F1 18 Tf + (Rot-ccw field) Tj +ET +Q +EMC +endstream +endobj + +177 0 obj +55 +endobj + +178 0 obj +<< + /AP << + /N << + /1 561 0 R + /Off 563 0 R + >> + >> + /AS /1 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 384 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 51 0 R + /Rect [ + 501.114409 + 505.108318 + 510.424227 + 514.421227 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +179 0 obj +<< + /AP << + /N << + /2 565 0 R + /Off 567 0 R + >> + >> + /AS /2 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 384 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 51 0 R + /Rect [ + 484.732591 + 505.108318 + 494.042409 + 514.421227 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +180 0 obj +<< + /AP << + /N << + /3 569 0 R + /Off 571 0 R + >> + >> + /AS /3 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 384 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 51 0 R + /Rect [ + 468.659864 + 506.1515 + 477.969682 + 515.464409 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +181 0 obj +<< + /A << + /S /URI + /URI (https://www.qbilt.org/) + >> + /Border [ + 0 + 0 + .4 + ] + /C [ + .8 + .6 + .6 + ] + /H /I + /Rect [ + 72 + 501.832 + 374.4 + 520.696 + ] + /Subtype /Link + /Type /Annot +>> +endobj + +182 0 obj +<< + /AP << + /N 573 0 R + >> + /Contents (attachment1.txt) + /FS 575 0 R + /NM (attachment1.txt) + /Rect [ + 72 + 400 + 92 + 420 + ] + /Subtype /FileAttachment + /Type /Annot +>> +endobj + +183 0 obj +<< + /AP << + /N 576 0 R + >> + /DA () + /Rect [ + 72 + 350 + 92 + 360 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +184 0 obj +<< + /AP << + /N 578 0 R + >> + /DA () + /Rect [ + 102 + 350 + 112 + 370 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +185 0 obj +<< + /AP << + /N 580 0 R + >> + /DA () + /Rect [ + 122 + 350 + 142 + 360 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +186 0 obj +<< + /AP << + /N 582 0 R + >> + /DA () + /Rect [ + 152 + 350 + 162 + 370 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +%% Contents for page 1 +187 0 obj +<< + /Length 188 0 R +>> +stream +q +endstream +endobj + +188 0 obj +2 +endobj + +%% Contents for page 1 +189 0 obj +<< + /Length 190 0 R +>> +stream +1 0 0 RG +1 0 0 rg +BT + /F1 24 Tf + 72 720 Td + (Page 1 - red) Tj +ET +5 w +0 0 612 792 re s +271 371 60 60 re f +endstream +endobj + +190 0 obj +108 +endobj + +%% Contents for page 1 +191 0 obj +<< + /Length 192 0 R +>> +stream + +Q +q +1 0 0 1 0 0 cm +/Fx1 Do +Q +endstream +endobj + +192 0 obj +30 +endobj + +193 0 obj +<< + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding + /Name /F1 + /Subtype /Type1 + /Type /Font +>> +endobj + +194 0 obj +[ + /PDF + /Text +] +endobj + +195 0 obj +<< + /BBox [ + 0 + 0 + 612 + 792 + ] + /Resources << + /Font << + /F1 379 0 R + >> + >> + /Subtype /Form + /Type /XObject + /Length 196 0 R +>> +stream +q +1 1 .7 rg +.5 .5 0 RG +72 470.77 118.8 14.15 re +B +Q +q +0 .5 .5 RG +0 1 1 rg +372 330.77 14.15 139.4 re +B +Q +q +1 0 0 RG +72 310 20 10 re +72 310 5 10 re +S +0 1 0 RG +102 310 10 20 re +102 310 10 5 re +S +0 0 1 RG +122 310 20 10 re +137 310 5 10 re +S +0.5 0 1 RG +152 310 10 20 re +152 325 10 5 re +S +10 w +0.14 .33 .18 RG +5 5 602 782 re +S +Q +BT + /F1 16 Tf + 20.6 TL + 170 650 Td + (radio button 1) Tj + (radio button 2) ' + (radio button 3) ' + 1 0 0 1 72 546 Tm + /F1 20 Tf + (Thick green border surrounds page.) Tj + 0 -40 Td + /F1 24 Tf + 0 0 1 rg + (https://www.qbilt.org) Tj + /F1 12 Tf + 1 0 0 1 202 474 Tm + (<- Formy field in yellow) Tj + 1 0 0 1 392 410 Tm + 14.4 TL + (<- Rot-ccw field) Tj + (with "Rot" at bottom) ' + (and text going up) ' + 0 g + 1 0 0 1 102 405 Tm + (Arrow to the left points down.) Tj + 1 0 0 1 182 310 Tm + (<- Drawn rectangles appear below annotations.) Tj +ET +endstream +endobj + +196 0 obj +874 +endobj + +197 0 obj +<< + /A << + /S /URI + /URI (https://www.qbilt.org/) + >> + /Border [ + 0 + 0 + .4 + ] + /C [ + .8 + .6 + .6 + ] + /H /I + /Rect [ + 189 + 448.916 + 340.2 + 458.348 + ] + /Subtype /Link + /Type /Annot +>> +endobj + +198 0 obj +<< + /AP << + /N 584 0 R + >> + /Contents (attachment1.txt) + /FS 575 0 R + /NM (attachment1.txt) + /Rect [ + 189 + 398 + 199 + 408 + ] + /Subtype /FileAttachment + /Type /Annot +>> +endobj + +199 0 obj +<< + /AP << + /N 586 0 R + >> + /DA () + /Rect [ + 189 + 373 + 199 + 378 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +200 0 obj +<< + /AP << + /N 588 0 R + >> + /DA () + /Rect [ + 204 + 373 + 209 + 383 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +201 0 obj +<< + /AP << + /N 590 0 R + >> + /DA () + /Rect [ + 214 + 373 + 224 + 378 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +202 0 obj +<< + /AP << + /N 592 0 R + >> + /DA () + /Rect [ + 229 + 373 + 234 + 383 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +%% Contents for page 2 +203 0 obj +<< + /Length 204 0 R +>> +stream +q +endstream +endobj + +204 0 obj +2 +endobj + +%% Contents for page 2 +205 0 obj +<< + /Length 206 0 R +>> +stream +1 0 0 RG +1 0 0 rg +BT + /F1 24 Tf + 72 720 Td + (Page 2 - red, scale 2) Tj +ET +5 w +0 0 612 792 re s +271 371 60 60 re f +endstream +endobj + +206 0 obj +117 +endobj + +%% Contents for page 2 +207 0 obj +<< + /Length 208 0 R +>> +stream + +Q +q +0.5 0 0 0.5 153 198 cm +/Fx1 Do +Q +endstream +endobj + +208 0 obj +38 +endobj + +209 0 obj +<< + /A << + /S /URI + /URI (https://www.qbilt.org/) + >> + /Border [ + 0 + 0 + .4 + ] + /C [ + .8 + .6 + .6 + ] + /H /I + /Rect [ + 72 + 501.832 + 374.4 + 520.696 + ] + /Subtype /Link + /Type /Annot +>> +endobj + +210 0 obj +<< + /AP << + /N 594 0 R + >> + /Contents (attachment1.txt) + /FS 575 0 R + /NM (attachment1.txt) + /Rect [ + 72 + 400 + 92 + 420 + ] + /Subtype /FileAttachment + /Type /Annot +>> +endobj + +211 0 obj +<< + /AP << + /N 596 0 R + >> + /DA () + /Rect [ + 72 + 350 + 92 + 360 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +212 0 obj +<< + /AP << + /N 598 0 R + >> + /DA () + /Rect [ + 102 + 350 + 112 + 370 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +213 0 obj +<< + /AP << + /N 600 0 R + >> + /DA () + /Rect [ + 122 + 350 + 142 + 360 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +214 0 obj +<< + /AP << + /N 602 0 R + >> + /DA () + /Rect [ + 152 + 350 + 162 + 370 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +%% Contents for page 3 +215 0 obj +<< + /Length 216 0 R +>> +stream +q +endstream +endobj + +216 0 obj +2 +endobj + +%% Contents for page 3 +217 0 obj +<< + /Length 218 0 R +>> +stream +1 0 0 RG +1 0 0 rg +BT + /F1 24 Tf + 72 720 Td +endstream +endobj + +218 0 obj +45 +endobj + +%% Contents for page 3 +219 0 obj +<< + /Length 220 0 R +>> +stream + (Page 3 - red) Tj +ET +5 w +0 0 612 792 re s +271 371 60 60 re f +endstream +endobj + +220 0 obj +63 +endobj + +%% Contents for page 3 +221 0 obj +<< + /Length 222 0 R +>> +stream + +Q +q +1 0 0 1 0 0 cm +/Fx1 Do +Q +endstream +endobj + +222 0 obj +30 +endobj + +223 0 obj +<< + /A << + /S /URI + /URI (https://www.qbilt.org/) + >> + /Border [ + 0 + 0 + .4 + ] + /C [ + .8 + .6 + .6 + ] + /H /I + /Rect [ + 72 + 501.832 + 374.4 + 520.696 + ] + /Subtype /Link + /Type /Annot +>> +endobj + +224 0 obj +<< + /AP << + /N 604 0 R + >> + /Contents (attachment1.txt) + /FS 575 0 R + /NM (attachment1.txt) + /Rect [ + 72 + 400 + 92 + 420 + ] + /Subtype /FileAttachment + /Type /Annot +>> +endobj + +225 0 obj +<< + /AP << + /N 606 0 R + >> + /DA () + /Rect [ + 72 + 350 + 92 + 360 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +226 0 obj +<< + /AP << + /N 608 0 R + >> + /DA () + /Rect [ + 102 + 350 + 112 + 370 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +227 0 obj +<< + /AP << + /N 610 0 R + >> + /DA () + /Rect [ + 122 + 350 + 142 + 360 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +228 0 obj +<< + /AP << + /N 612 0 R + >> + /DA () + /Rect [ + 152 + 350 + 162 + 370 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +%% Contents for page 4 +229 0 obj +<< + /Length 230 0 R +>> +stream +q +endstream +endobj + +230 0 obj +2 +endobj + +%% Contents for page 4 +231 0 obj +<< + /Length 232 0 R +>> +stream +1 0 0 RG +1 0 0 rg +BT + /F1 24 Tf + 72 720 Td + (Page 4 - red) Tj +ET +5 w +0 0 612 792 re s +271 371 60 60 re f +endstream +endobj + +232 0 obj +108 +endobj + +%% Contents for page 4 +233 0 obj +<< + /Length 234 0 R +>> +stream + +Q +q +1 0 0 1 0 0 cm +/Fx1 Do +Q +endstream +endobj + +234 0 obj +30 +endobj + +235 0 obj +<< + /A << + /S /URI + /URI (https://www.qbilt.org/) + >> + /Border [ + 0 + 0 + .4 + ] + /C [ + .8 + .6 + .6 + ] + /H /I + /Rect [ + 209.644 + 215.181818 + 224.220727 + 448.854545 + ] + /Subtype /Link + /Type /Annot +>> +endobj + +236 0 obj +<< + /AP << + /N 614 0 R + >> + /Contents (attachment1.txt) + /FS 575 0 R + /NM (attachment1.txt) + /Rect [ + 287.454545 + 215.181818 + 302.909091 + 230.636364 + ] + /Subtype /FileAttachment + /Type /Annot +>> +endobj + +237 0 obj +<< + /AP << + /N 616 0 R + >> + /DA () + /Rect [ + 333.818182 + 215.181818 + 341.545455 + 230.636364 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +238 0 obj +<< + /AP << + /N 618 0 R + >> + /DA () + /Rect [ + 326.090909 + 238.363636 + 341.545455 + 246.090909 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +239 0 obj +<< + /AP << + /N 620 0 R + >> + /DA () + /Rect [ + 333.818182 + 253.818182 + 341.545455 + 269.272727 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +240 0 obj +<< + /AP << + /N 622 0 R + >> + /DA () + /Rect [ + 326.090909 + 277 + 341.545455 + 284.727273 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +%% Contents for page 5 +241 0 obj +<< + /Length 242 0 R +>> +stream +q +endstream +endobj + +242 0 obj +2 +endobj + +%% Contents for page 5 +243 0 obj +<< + /Length 244 0 R +>> +stream +1 0 0 RG +1 0 0 rg +BT + /F1 24 Tf + 72 720 Td + (Page 5 - red, 90) Tj +ET +5 w +0 0 612 792 re s +271 371 60 60 re f +endstream +endobj + +244 0 obj +112 +endobj + +%% Contents for page 5 +245 0 obj +<< + /Length 246 0 R +>> +stream + +Q +q +0 0.77273 -0.77273 0 612 159.54545 cm +/Fx1 Do +Q +endstream +endobj + +246 0 obj +53 +endobj + +247 0 obj +<< + /A << + /S /URI + /URI (https://www.qbilt.org/) + >> + /Border [ + 0 + 0 + .4 + ] + /C [ + .8 + .6 + .6 + ] + /H /I + /Rect [ + 222.869333 + 240 + 235.445333 + 441.6 + ] + /Subtype /Link + /Type /Annot +>> +endobj + +248 0 obj +<< + /AP << + /N 624 0 R + >> + /Contents (attachment1.txt) + /FS 575 0 R + /NM (attachment1.txt) + /Rect [ + 290 + 240 + 303.333333 + 253.333333 + ] + /Subtype /FileAttachment + /Type /Annot +>> +endobj + +249 0 obj +<< + /AP << + /N 626 0 R + >> + /DA () + /Rect [ + 330 + 240 + 336.666667 + 253.333333 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +250 0 obj +<< + /AP << + /N 628 0 R + >> + /DA () + /Rect [ + 323.333333 + 260 + 336.666667 + 266.666667 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +251 0 obj +<< + /AP << + /N 630 0 R + >> + /DA () + /Rect [ + 330 + 273.333333 + 336.666667 + 286.666667 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +252 0 obj +<< + /AP << + /N 632 0 R + >> + /DA () + /Rect [ + 323.333333 + 293.333333 + 336.666667 + 300 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +%% Contents for page 6 +253 0 obj +<< + /Length 254 0 R +>> +stream +q +endstream +endobj + +254 0 obj +2 +endobj + +%% Contents for page 6 +255 0 obj +<< + /Length 256 0 R +>> +stream +1 0 0 RG +1 0 0 rg +BT + /F1 24 Tf + 72 720 Td + (Page 6 - red, 90, scale 1.5) Tj +ET +5 w +0 0 612 792 re s +271 371 60 60 re f +endstream +endobj + +256 0 obj +123 +endobj + +%% Contents for page 6 +257 0 obj +<< + /Length 258 0 R +>> +stream + +Q +q +0 0.66667 -0.66667 0 570 192 cm +/Fx1 Do +Q +endstream +endobj + +258 0 obj +47 +endobj + +259 0 obj +<< + /A << + /S /URI + /URI (https://www.qbilt.org/) + >> + /Border [ + 0 + 0 + .4 + ] + /C [ + .8 + .6 + .6 + ] + /H /I + /Rect [ + 209.644 + 215.181818 + 224.220727 + 448.854545 + ] + /Subtype /Link + /Type /Annot +>> +endobj + +260 0 obj +<< + /AP << + /N 634 0 R + >> + /Contents (attachment1.txt) + /FS 575 0 R + /NM (attachment1.txt) + /Rect [ + 287.454545 + 215.181818 + 302.909091 + 230.636364 + ] + /Subtype /FileAttachment + /Type /Annot +>> +endobj + +261 0 obj +<< + /AP << + /N 636 0 R + >> + /DA () + /Rect [ + 333.818182 + 215.181818 + 341.545455 + 230.636364 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +262 0 obj +<< + /AP << + /N 638 0 R + >> + /DA () + /Rect [ + 326.090909 + 238.363636 + 341.545455 + 246.090909 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +263 0 obj +<< + /AP << + /N 640 0 R + >> + /DA () + /Rect [ + 333.818182 + 253.818182 + 341.545455 + 269.272727 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +264 0 obj +<< + /AP << + /N 642 0 R + >> + /DA () + /Rect [ + 326.090909 + 277 + 341.545455 + 284.727273 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +%% Contents for page 7 +265 0 obj +<< + /Length 266 0 R +>> +stream +q +endstream +endobj + +266 0 obj +2 +endobj + +%% Contents for page 7 +267 0 obj +<< + /Length 268 0 R +>> +stream +1 0 0 RG +1 0 0 rg +BT + /F1 24 Tf + 72 720 Td + (Page 7 - red, 90) Tj +ET +5 w +0 0 612 792 re s +271 371 60 60 re f +endstream +endobj + +268 0 obj +112 +endobj + +%% Contents for page 7 +269 0 obj +<< + /Length 270 0 R +>> +stream + +Q +q +0 0.77273 -0.77273 0 612 159.54545 cm +/Fx1 Do +Q +endstream +endobj + +270 0 obj +53 +endobj + +271 0 obj +<< + /A << + /S /URI + /URI (https://www.qbilt.org/) + >> + /Border [ + 0 + 0 + .4 + ] + /C [ + .8 + .6 + .6 + ] + /H /I + /Rect [ + 209.644 + 215.181818 + 224.220727 + 448.854545 + ] + /Subtype /Link + /Type /Annot +>> +endobj + +272 0 obj +<< + /AP << + /N 644 0 R + >> + /Contents (attachment1.txt) + /FS 575 0 R + /NM (attachment1.txt) + /Rect [ + 287.454545 + 215.181818 + 302.909091 + 230.636364 + ] + /Subtype /FileAttachment + /Type /Annot +>> +endobj + +273 0 obj +<< + /AP << + /N 646 0 R + >> + /DA () + /Rect [ + 333.818182 + 215.181818 + 341.545455 + 230.636364 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +274 0 obj +<< + /AP << + /N 648 0 R + >> + /DA () + /Rect [ + 326.090909 + 238.363636 + 341.545455 + 246.090909 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +275 0 obj +<< + /AP << + /N 650 0 R + >> + /DA () + /Rect [ + 333.818182 + 253.818182 + 341.545455 + 269.272727 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +276 0 obj +<< + /AP << + /N 652 0 R + >> + /DA () + /Rect [ + 326.090909 + 277 + 341.545455 + 284.727273 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +%% Contents for page 8 +277 0 obj +<< + /Length 278 0 R +>> +stream +q +endstream +endobj + +278 0 obj +2 +endobj + +%% Contents for page 8 +279 0 obj +<< + /Length 280 0 R +>> +stream +1 0 0 RG +1 0 0 rg +BT + /F1 24 Tf + 72 720 Td + (Page 8 - red, 90) Tj +ET +5 w +0 0 612 792 re s +271 371 60 60 re f +endstream +endobj + +280 0 obj +112 +endobj + +%% Contents for page 8 +281 0 obj +<< + /Length 282 0 R +>> +stream + +Q +q +0 0.77273 -0.77273 0 612 159.54545 cm +/Fx1 Do +Q +endstream +endobj + +282 0 obj +53 +endobj + +283 0 obj +<< + /A << + /S /URI + /URI (https://www.qbilt.org/) + >> + /Border [ + 0 + 0 + .4 + ] + /C [ + .8 + .6 + .6 + ] + /H /I + /Rect [ + 237.6 + 271.304 + 540 + 290.168 + ] + /Subtype /Link + /Type /Annot +>> +endobj + +284 0 obj +<< + /AP << + /N 654 0 R + >> + /Contents (attachment1.txt) + /FS 575 0 R + /NM (attachment1.txt) + /Rect [ + 520 + 372 + 540 + 392 + ] + /Subtype /FileAttachment + /Type /Annot +>> +endobj + +285 0 obj +<< + /AP << + /N 656 0 R + >> + /DA () + /Rect [ + 520 + 432 + 540 + 442 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +286 0 obj +<< + /AP << + /N 658 0 R + >> + /DA () + /Rect [ + 500 + 422 + 510 + 442 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +287 0 obj +<< + /AP << + /N 660 0 R + >> + /DA () + /Rect [ + 470 + 432 + 490 + 442 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +288 0 obj +<< + /AP << + /N 662 0 R + >> + /DA () + /Rect [ + 450 + 422 + 460 + 442 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +%% Contents for page 9 +289 0 obj +<< + /Length 290 0 R +>> +stream +q +endstream +endobj + +290 0 obj +2 +endobj + +%% Contents for page 9 +291 0 obj +<< + /Length 292 0 R +>> +stream +1 0 0 RG +1 0 0 rg +BT + /F1 24 Tf + 72 720 Td + (Page 9 - red, 180) Tj +ET +5 w +0 0 612 792 re s +271 371 60 60 re f +endstream +endobj + +292 0 obj +113 +endobj + +%% Contents for page 9 +293 0 obj +<< + /Length 294 0 R +>> +stream + +Q +q +-1 0 0 -1 612 792 cm +/Fx1 Do +Q +endstream +endobj + +294 0 obj +36 +endobj + +295 0 obj +<< + /A << + /S /URI + /URI (https://www.qbilt.org/) + >> + /Border [ + 0 + 0 + .4 + ] + /C [ + .8 + .6 + .6 + ] + /H /I + /Rect [ + 237.6 + 271.304 + 540 + 290.168 + ] + /Subtype /Link + /Type /Annot +>> +endobj + +296 0 obj +<< + /AP << + /N 664 0 R + >> + /Contents (attachment1.txt) + /FS 575 0 R + /NM (attachment1.txt) + /Rect [ + 520 + 372 + 540 + 392 + ] + /Subtype /FileAttachment + /Type /Annot +>> +endobj + +297 0 obj +<< + /AP << + /N 666 0 R + >> + /DA () + /Rect [ + 520 + 432 + 540 + 442 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +298 0 obj +<< + /AP << + /N 668 0 R + >> + /DA () + /Rect [ + 500 + 422 + 510 + 442 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +299 0 obj +<< + /AP << + /N 670 0 R + >> + /DA () + /Rect [ + 470 + 432 + 490 + 442 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +300 0 obj +<< + /AP << + /N 672 0 R + >> + /DA () + /Rect [ + 450 + 422 + 460 + 442 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +%% Contents for page 10 +301 0 obj +<< + /Length 302 0 R +>> +stream +q +endstream +endobj + +302 0 obj +2 +endobj + +%% Contents for page 10 +303 0 obj +<< + /Length 304 0 R +>> +stream +1 0 0 RG +1 0 0 rg +BT + /F1 24 Tf + 72 720 Td + (Page 10 - red, 180, scale 0.75) Tj +ET +5 w +0 0 612 792 re s +271 371 60 60 re f +endstream +endobj + +304 0 obj +126 +endobj + +%% Contents for page 10 +305 0 obj +<< + /Length 306 0 R +>> +stream + +Q +q +-1 0 0 -1 612 792 cm +/Fx1 Do +Q +endstream +endobj + +306 0 obj +36 +endobj + +307 0 obj +<< + /A << + /S /URI + /URI (https://www.qbilt.org/) + >> + /Border [ + 0 + 0 + .4 + ] + /C [ + .8 + .6 + .6 + ] + /H /I + /Rect [ + 237.6 + 271.304 + 540 + 290.168 + ] + /Subtype /Link + /Type /Annot +>> +endobj + +308 0 obj +<< + /AP << + /N 674 0 R + >> + /Contents (attachment1.txt) + /FS 575 0 R + /NM (attachment1.txt) + /Rect [ + 520 + 372 + 540 + 392 + ] + /Subtype /FileAttachment + /Type /Annot +>> +endobj + +309 0 obj +<< + /AP << + /N 676 0 R + >> + /DA () + /Rect [ + 520 + 432 + 540 + 442 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +310 0 obj +<< + /AP << + /N 678 0 R + >> + /DA () + /Rect [ + 500 + 422 + 510 + 442 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +311 0 obj +<< + /AP << + /N 680 0 R + >> + /DA () + /Rect [ + 470 + 432 + 490 + 442 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +312 0 obj +<< + /AP << + /N 682 0 R + >> + /DA () + /Rect [ + 450 + 422 + 460 + 442 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +%% Contents for page 11 +313 0 obj +<< + /Length 314 0 R +>> +stream +q +endstream +endobj + +314 0 obj +2 +endobj + +%% Contents for page 11 +315 0 obj +<< + /Length 316 0 R +>> +stream +1 0 0 RG +1 0 0 rg +BT + /F1 24 Tf + 72 720 Td + (Page 11 - red, 180) Tj +ET +5 w +0 0 612 792 re s +271 371 60 60 re f +endstream +endobj + +316 0 obj +114 +endobj + +%% Contents for page 11 +317 0 obj +<< + /Length 318 0 R +>> +stream + +Q +q +-1 0 0 -1 612 792 cm +/Fx1 Do +Q +endstream +endobj + +318 0 obj +36 +endobj + +319 0 obj +<< + /A << + /S /URI + /URI (https://www.qbilt.org/) + >> + /Border [ + 0 + 0 + .4 + ] + /C [ + .8 + .6 + .6 + ] + /H /I + /Rect [ + 237.6 + 271.304 + 540 + 290.168 + ] + /Subtype /Link + /Type /Annot +>> +endobj + +320 0 obj +<< + /AP << + /N 684 0 R + >> + /Contents (attachment1.txt) + /FS 575 0 R + /NM (attachment1.txt) + /Rect [ + 520 + 372 + 540 + 392 + ] + /Subtype /FileAttachment + /Type /Annot +>> +endobj + +321 0 obj +<< + /AP << + /N 686 0 R + >> + /DA () + /Rect [ + 520 + 432 + 540 + 442 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +322 0 obj +<< + /AP << + /N 688 0 R + >> + /DA () + /Rect [ + 500 + 422 + 510 + 442 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +323 0 obj +<< + /AP << + /N 690 0 R + >> + /DA () + /Rect [ + 470 + 432 + 490 + 442 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +324 0 obj +<< + /AP << + /N 692 0 R + >> + /DA () + /Rect [ + 450 + 422 + 460 + 442 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +%% Contents for page 12 +325 0 obj +<< + /Length 326 0 R +>> +stream +q +endstream +endobj + +326 0 obj +2 +endobj + +%% Contents for page 12 +327 0 obj +<< + /Length 328 0 R +>> +stream +1 0 0 RG +1 0 0 rg +BT + /F1 24 Tf + 72 720 Td + (Page 12 - red, 180) Tj +ET +5 w +0 0 612 792 re s +271 371 60 60 re f +endstream +endobj + +328 0 obj +114 +endobj + +%% Contents for page 12 +329 0 obj +<< + /Length 330 0 R +>> +stream + +Q +q +-1 0 0 -1 612 792 cm +/Fx1 Do +Q +endstream +endobj + +330 0 obj +36 +endobj + +331 0 obj +<< + /A << + /S /URI + /URI (https://www.qbilt.org/) + >> + /Border [ + 0 + 0 + .4 + ] + /C [ + .8 + .6 + .6 + ] + /H /I + /Rect [ + 387.779273 + 343.145455 + 402.356 + 576.818182 + ] + /Subtype /Link + /Type /Annot +>> +endobj + +332 0 obj +<< + /AP << + /N 694 0 R + >> + /Contents (attachment1.txt) + /FS 575 0 R + /NM (attachment1.txt) + /Rect [ + 309.090909 + 561.363636 + 324.545455 + 576.818182 + ] + /Subtype /FileAttachment + /Type /Annot +>> +endobj + +333 0 obj +<< + /AP << + /N 696 0 R + >> + /DA () + /Rect [ + 270.454545 + 561.363636 + 278.181818 + 576.818182 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +334 0 obj +<< + /AP << + /N 698 0 R + >> + /DA () + /Rect [ + 270.454545 + 545.909091 + 285.909091 + 553.636364 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +335 0 obj +<< + /AP << + /N 700 0 R + >> + /DA () + /Rect [ + 270.454545 + 522.727273 + 278.181818 + 538.181818 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +336 0 obj +<< + /AP << + /N 702 0 R + >> + /DA () + /Rect [ + 270.454545 + 507.272727 + 285.909091 + 515 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +%% Contents for page 13 +337 0 obj +<< + /Length 338 0 R +>> +stream +q +endstream +endobj + +338 0 obj +2 +endobj + +%% Contents for page 13 +339 0 obj +<< + /Length 340 0 R +>> +stream +1 0 0 RG +1 0 0 rg +BT + /F1 24 Tf + 72 720 Td + (Page 13 - red, 270) Tj +ET +5 w +0 0 612 792 re s +271 371 60 60 re f +endstream +endobj + +340 0 obj +114 +endobj + +%% Contents for page 13 +341 0 obj +<< + /Length 342 0 R +>> +stream + +Q +q +0 -0.77273 0.77273 0 0 632.45455 cm +/Fx1 Do +Q +endstream +endobj + +342 0 obj +51 +endobj + +343 0 obj +<< + /A << + /S /URI + /URI (https://www.qbilt.org/) + >> + /Border [ + 0 + 0 + .4 + ] + /C [ + .8 + .6 + .6 + ] + /H /I + /Rect [ + 387.779273 + 343.145455 + 402.356 + 576.818182 + ] + /Subtype /Link + /Type /Annot +>> +endobj + +344 0 obj +<< + /AP << + /N 704 0 R + >> + /Contents (attachment1.txt) + /FS 575 0 R + /NM (attachment1.txt) + /Rect [ + 309.090909 + 561.363636 + 324.545455 + 576.818182 + ] + /Subtype /FileAttachment + /Type /Annot +>> +endobj + +345 0 obj +<< + /AP << + /N 706 0 R + >> + /DA () + /Rect [ + 270.454545 + 561.363636 + 278.181818 + 576.818182 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +346 0 obj +<< + /AP << + /N 708 0 R + >> + /DA () + /Rect [ + 270.454545 + 545.909091 + 285.909091 + 553.636364 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +347 0 obj +<< + /AP << + /N 710 0 R + >> + /DA () + /Rect [ + 270.454545 + 522.727273 + 278.181818 + 538.181818 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +348 0 obj +<< + /AP << + /N 712 0 R + >> + /DA () + /Rect [ + 270.454545 + 507.272727 + 285.909091 + 515 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +%% Contents for page 14 +349 0 obj +<< + /Length 350 0 R +>> +stream +q +endstream +endobj + +350 0 obj +2 +endobj + +%% Contents for page 14 +351 0 obj +<< + /Length 352 0 R +>> +stream +1 0 0 RG +1 0 0 rg +BT + /F1 24 Tf + 72 720 Td + (Page 14 - red, 270, scale 1.25) Tj +ET +5 w +0 0 612 792 re s +271 371 60 60 re f +endstream +endobj + +352 0 obj +126 +endobj + +%% Contents for page 14 +353 0 obj +<< + /Length 354 0 R +>> +stream + +Q +q +0 -0.77273 0.77273 0 0 632.45455 cm +/Fx1 Do +Q +endstream +endobj + +354 0 obj +51 +endobj + +355 0 obj +<< + /A << + /S /URI + /URI (https://www.qbilt.org/) + >> + /Border [ + 0 + 0 + .4 + ] + /C [ + .8 + .6 + .6 + ] + /H /I + /Rect [ + 387.779273 + 343.145455 + 402.356 + 576.818182 + ] + /Subtype /Link + /Type /Annot +>> +endobj + +356 0 obj +<< + /AP << + /N 714 0 R + >> + /Contents (attachment1.txt) + /FS 575 0 R + /NM (attachment1.txt) + /Rect [ + 309.090909 + 561.363636 + 324.545455 + 576.818182 + ] + /Subtype /FileAttachment + /Type /Annot +>> +endobj + +357 0 obj +<< + /AP << + /N 716 0 R + >> + /DA () + /Rect [ + 270.454545 + 561.363636 + 278.181818 + 576.818182 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +358 0 obj +<< + /AP << + /N 718 0 R + >> + /DA () + /Rect [ + 270.454545 + 545.909091 + 285.909091 + 553.636364 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +359 0 obj +<< + /AP << + /N 720 0 R + >> + /DA () + /Rect [ + 270.454545 + 522.727273 + 278.181818 + 538.181818 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +360 0 obj +<< + /AP << + /N 722 0 R + >> + /DA () + /Rect [ + 270.454545 + 507.272727 + 285.909091 + 515 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +%% Contents for page 15 +361 0 obj +<< + /Length 362 0 R +>> +stream +q +endstream +endobj + +362 0 obj +2 +endobj + +%% Contents for page 15 +363 0 obj +<< + /Length 364 0 R +>> +stream +1 0 0 RG +1 0 0 rg +BT + /F1 24 Tf + 72 720 Td + (Page 15 - red, 270) Tj +ET +5 w +0 0 612 792 re s +271 371 60 60 re f +endstream +endobj + +364 0 obj +114 +endobj + +%% Contents for page 15 +365 0 obj +<< + /Length 366 0 R +>> +stream + +Q +q +0 -0.77273 0.77273 0 0 632.45455 cm +/Fx1 Do +Q +endstream +endobj + +366 0 obj +51 +endobj + +367 0 obj +<< + /A << + /S /URI + /URI (https://www.qbilt.org/) + >> + /Border [ + 0 + 0 + .4 + ] + /C [ + .8 + .6 + .6 + ] + /H /I + /Rect [ + 387.779273 + 343.145455 + 402.356 + 576.818182 + ] + /Subtype /Link + /Type /Annot +>> +endobj + +368 0 obj +<< + /AP << + /N 724 0 R + >> + /Contents (attachment1.txt) + /FS 575 0 R + /NM (attachment1.txt) + /Rect [ + 309.090909 + 561.363636 + 324.545455 + 576.818182 + ] + /Subtype /FileAttachment + /Type /Annot +>> +endobj + +369 0 obj +<< + /AP << + /N 726 0 R + >> + /DA () + /Rect [ + 270.454545 + 561.363636 + 278.181818 + 576.818182 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +370 0 obj +<< + /AP << + /N 728 0 R + >> + /DA () + /Rect [ + 270.454545 + 545.909091 + 285.909091 + 553.636364 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +371 0 obj +<< + /AP << + /N 730 0 R + >> + /DA () + /Rect [ + 270.454545 + 522.727273 + 278.181818 + 538.181818 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +372 0 obj +<< + /AP << + /N 732 0 R + >> + /DA () + /Rect [ + 270.454545 + 507.272727 + 285.909091 + 515 + ] + /Subtype /FreeText + /Type /Annot +>> +endobj + +%% Contents for page 16 +373 0 obj +<< + /Length 374 0 R +>> +stream +q +endstream +endobj + +374 0 obj +2 +endobj + +%% Contents for page 16 +375 0 obj +<< + /Length 376 0 R +>> +stream +1 0 0 RG +1 0 0 rg +BT + /F1 24 Tf + 72 720 Td + (Page 16 - red, 270) Tj +ET +5 w +0 0 612 792 re s +271 371 60 60 re f +endstream +endobj + +376 0 obj +114 +endobj + +%% Contents for page 16 +377 0 obj +<< + /Length 378 0 R +>> +stream + +Q +q +0 -0.77273 0.77273 0 0 632.45455 cm +/Fx1 Do +Q +endstream +endobj + +378 0 obj +51 +endobj + +379 0 obj +<< + /BaseFont /Courier + /Encoding /WinAnsiEncoding + /Subtype /Type1 + /Type /Font +>> +endobj + +380 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 381 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +1 0 0 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +381 0 obj +202 +endobj + +382 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 383 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +383 0 obj +12 +endobj + +384 0 obj +<< + /BaseFont /ZapfDingbats + /Subtype /Type1 + /Type /Font +>> +endobj + +385 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 386 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0 1 0 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +386 0 obj +202 +endobj + +387 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 388 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +388 0 obj +12 +endobj + +389 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 390 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0 0 1 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +390 0 obj +202 +endobj + +391 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 392 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +392 0 obj +12 +endobj + +393 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0.5 + 0 + 0 + 0.5 + 153 + 198 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 394 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +1 0 0 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +394 0 obj +202 +endobj + +395 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0.5 + 0 + 0 + 0.5 + 153 + 198 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 396 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +396 0 obj +12 +endobj + +397 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0.5 + 0 + 0 + 0.5 + 153 + 198 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 398 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0 1 0 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +398 0 obj +202 +endobj + +399 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0.5 + 0 + 0 + 0.5 + 153 + 198 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 400 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +400 0 obj +12 +endobj + +401 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0.5 + 0 + 0 + 0.5 + 153 + 198 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 402 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0 0 1 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +402 0 obj +202 +endobj + +403 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0.5 + 0 + 0 + 0.5 + 153 + 198 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 404 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +404 0 obj +12 +endobj + +405 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 406 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +1 0 0 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +406 0 obj +202 +endobj + +407 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 408 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +408 0 obj +12 +endobj + +409 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 410 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0 1 0 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +410 0 obj +202 +endobj + +411 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 412 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +412 0 obj +12 +endobj + +413 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 414 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0 0 1 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +414 0 obj +202 +endobj + +415 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 416 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +416 0 obj +12 +endobj + +417 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 418 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +1 0 0 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +418 0 obj +202 +endobj + +419 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 420 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +420 0 obj +12 +endobj + +421 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 422 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0 1 0 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +422 0 obj +202 +endobj + +423 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 424 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +424 0 obj +12 +endobj + +425 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 426 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0 0 1 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +426 0 obj +202 +endobj + +427 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 428 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +428 0 obj +12 +endobj + +429 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 0.772727 + -0.772727 + 0 + 612 + 159.545455 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 430 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +1 0 0 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +430 0 obj +202 +endobj + +431 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 0.772727 + -0.772727 + 0 + 612 + 159.545455 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 432 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +432 0 obj +12 +endobj + +433 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 0.772727 + -0.772727 + 0 + 612 + 159.545455 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 434 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0 1 0 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +434 0 obj +202 +endobj + +435 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 0.772727 + -0.772727 + 0 + 612 + 159.545455 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 436 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +436 0 obj +12 +endobj + +437 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 0.772727 + -0.772727 + 0 + 612 + 159.545455 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 438 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0 0 1 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +438 0 obj +202 +endobj + +439 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 0.772727 + -0.772727 + 0 + 612 + 159.545455 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 440 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +440 0 obj +12 +endobj + +441 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 0.666667 + -0.666667 + 0 + 570 + 192 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 442 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +1 0 0 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +442 0 obj +202 +endobj + +443 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 0.666667 + -0.666667 + 0 + 570 + 192 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 444 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +444 0 obj +12 +endobj + +445 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 0.666667 + -0.666667 + 0 + 570 + 192 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 446 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0 1 0 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +446 0 obj +202 +endobj + +447 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 0.666667 + -0.666667 + 0 + 570 + 192 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 448 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +448 0 obj +12 +endobj + +449 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 0.666667 + -0.666667 + 0 + 570 + 192 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 450 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0 0 1 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +450 0 obj +202 +endobj + +451 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 0.666667 + -0.666667 + 0 + 570 + 192 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 452 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +452 0 obj +12 +endobj + +453 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 0.772727 + -0.772727 + 0 + 612 + 159.545455 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 454 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +1 0 0 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +454 0 obj +202 +endobj + +455 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 0.772727 + -0.772727 + 0 + 612 + 159.545455 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 456 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +456 0 obj +12 +endobj + +457 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 0.772727 + -0.772727 + 0 + 612 + 159.545455 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 458 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0 1 0 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +458 0 obj +202 +endobj + +459 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 0.772727 + -0.772727 + 0 + 612 + 159.545455 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 460 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +460 0 obj +12 +endobj + +461 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 0.772727 + -0.772727 + 0 + 612 + 159.545455 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 462 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0 0 1 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +462 0 obj +202 +endobj + +463 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 0.772727 + -0.772727 + 0 + 612 + 159.545455 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 464 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +464 0 obj +12 +endobj + +465 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 0.772727 + -0.772727 + 0 + 612 + 159.545455 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 466 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +1 0 0 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +466 0 obj +202 +endobj + +467 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 0.772727 + -0.772727 + 0 + 612 + 159.545455 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 468 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +468 0 obj +12 +endobj + +469 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 0.772727 + -0.772727 + 0 + 612 + 159.545455 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 470 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0 1 0 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +470 0 obj +202 +endobj + +471 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 0.772727 + -0.772727 + 0 + 612 + 159.545455 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 472 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +472 0 obj +12 +endobj + +473 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 0.772727 + -0.772727 + 0 + 612 + 159.545455 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 474 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0 0 1 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +474 0 obj +202 +endobj + +475 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 0.772727 + -0.772727 + 0 + 612 + 159.545455 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 476 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +476 0 obj +12 +endobj + +477 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + -1 + 0 + 0 + -1 + 612 + 792 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 478 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +1 0 0 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +478 0 obj +202 +endobj + +479 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + -1 + 0 + 0 + -1 + 612 + 792 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 480 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +480 0 obj +12 +endobj + +481 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + -1 + 0 + 0 + -1 + 612 + 792 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 482 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0 1 0 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +482 0 obj +202 +endobj + +483 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + -1 + 0 + 0 + -1 + 612 + 792 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 484 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +484 0 obj +12 +endobj + +485 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + -1 + 0 + 0 + -1 + 612 + 792 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 486 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0 0 1 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +486 0 obj +202 +endobj + +487 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + -1 + 0 + 0 + -1 + 612 + 792 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 488 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +488 0 obj +12 +endobj + +489 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + -1 + 0 + 0 + -1 + 612 + 792 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 490 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +1 0 0 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +490 0 obj +202 +endobj + +491 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + -1 + 0 + 0 + -1 + 612 + 792 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 492 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +492 0 obj +12 +endobj + +493 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + -1 + 0 + 0 + -1 + 612 + 792 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 494 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0 1 0 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +494 0 obj +202 +endobj + +495 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + -1 + 0 + 0 + -1 + 612 + 792 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 496 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +496 0 obj +12 +endobj + +497 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + -1 + 0 + 0 + -1 + 612 + 792 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 498 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0 0 1 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +498 0 obj +202 +endobj + +499 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + -1 + 0 + 0 + -1 + 612 + 792 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 500 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +500 0 obj +12 +endobj + +501 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + -1 + 0 + 0 + -1 + 612 + 792 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 502 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +1 0 0 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +502 0 obj +202 +endobj + +503 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + -1 + 0 + 0 + -1 + 612 + 792 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 504 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +504 0 obj +12 +endobj + +505 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + -1 + 0 + 0 + -1 + 612 + 792 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 506 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0 1 0 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +506 0 obj +202 +endobj + +507 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + -1 + 0 + 0 + -1 + 612 + 792 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 508 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +508 0 obj +12 +endobj + +509 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + -1 + 0 + 0 + -1 + 612 + 792 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 510 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0 0 1 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +510 0 obj +202 +endobj + +511 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + -1 + 0 + 0 + -1 + 612 + 792 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 512 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +512 0 obj +12 +endobj + +513 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + -1 + 0 + 0 + -1 + 612 + 792 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 514 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +1 0 0 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +514 0 obj +202 +endobj + +515 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + -1 + 0 + 0 + -1 + 612 + 792 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 516 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +516 0 obj +12 +endobj + +517 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + -1 + 0 + 0 + -1 + 612 + 792 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 518 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0 1 0 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +518 0 obj +202 +endobj + +519 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + -1 + 0 + 0 + -1 + 612 + 792 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 520 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +520 0 obj +12 +endobj + +521 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + -1 + 0 + 0 + -1 + 612 + 792 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 522 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0 0 1 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +522 0 obj +202 +endobj + +523 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + -1 + 0 + 0 + -1 + 612 + 792 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 524 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +524 0 obj +12 +endobj + +525 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + -0.772727 + 0.772727 + 0 + 0 + 632.454545 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 526 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +1 0 0 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +526 0 obj +202 +endobj + +527 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + -0.772727 + 0.772727 + 0 + 0 + 632.454545 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 528 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +528 0 obj +12 +endobj + +529 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + -0.772727 + 0.772727 + 0 + 0 + 632.454545 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 530 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0 1 0 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +530 0 obj +202 +endobj + +531 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + -0.772727 + 0.772727 + 0 + 0 + 632.454545 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 532 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +532 0 obj +12 +endobj + +533 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + -0.772727 + 0.772727 + 0 + 0 + 632.454545 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 534 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0 0 1 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +534 0 obj +202 +endobj + +535 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + -0.772727 + 0.772727 + 0 + 0 + 632.454545 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 536 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +536 0 obj +12 +endobj + +537 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + -0.772727 + 0.772727 + 0 + 0 + 632.454545 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 538 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +1 0 0 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +538 0 obj +202 +endobj + +539 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + -0.772727 + 0.772727 + 0 + 0 + 632.454545 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 540 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +540 0 obj +12 +endobj + +541 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + -0.772727 + 0.772727 + 0 + 0 + 632.454545 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 542 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0 1 0 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +542 0 obj +202 +endobj + +543 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + -0.772727 + 0.772727 + 0 + 0 + 632.454545 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 544 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +544 0 obj +12 +endobj + +545 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + -0.772727 + 0.772727 + 0 + 0 + 632.454545 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 546 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0 0 1 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +546 0 obj +202 +endobj + +547 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + -0.772727 + 0.772727 + 0 + 0 + 632.454545 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 548 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +548 0 obj +12 +endobj + +549 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + -0.772727 + 0.772727 + 0 + 0 + 632.454545 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 550 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +1 0 0 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +550 0 obj +202 +endobj + +551 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + -0.772727 + 0.772727 + 0 + 0 + 632.454545 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 552 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +552 0 obj +12 +endobj + +553 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + -0.772727 + 0.772727 + 0 + 0 + 632.454545 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 554 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0 1 0 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +554 0 obj +202 +endobj + +555 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + -0.772727 + 0.772727 + 0 + 0 + 632.454545 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 556 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +556 0 obj +12 +endobj + +557 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + -0.772727 + 0.772727 + 0 + 0 + 632.454545 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 558 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0 0 1 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +558 0 obj +202 +endobj + +559 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + -0.772727 + 0.772727 + 0 + 0 + 632.454545 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 560 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +560 0 obj +12 +endobj + +561 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + -0.772727 + 0.772727 + 0 + 0 + 632.454545 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 562 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +1 0 0 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +562 0 obj +202 +endobj + +563 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + -0.772727 + 0.772727 + 0 + 0 + 632.454545 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 564 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +564 0 obj +12 +endobj + +565 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + -0.772727 + 0.772727 + 0 + 0 + 632.454545 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 566 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0 1 0 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +566 0 obj +202 +endobj + +567 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + -0.772727 + 0.772727 + 0 + 0 + 632.454545 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 568 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +568 0 obj +12 +endobj + +569 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + -0.772727 + 0.772727 + 0 + 0 + 632.454545 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 570 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0 0 1 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +570 0 obj +202 +endobj + +571 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + -0.772727 + 0.772727 + 0 + 0 + 632.454545 + ] + /Resources 734 0 R + /Subtype /Form + /Type /XObject + /Length 572 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +572 0 obj +12 +endobj + +573 0 obj +<< + /BBox [ + 0 + 0 + 20 + 20 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources << + >> + /Subtype /Form + /Type /XObject + /Length 574 0 R +>> +stream +0 10 m +10 0 l +20 10 l +10 0 m +10 20 l +0 0 20 20 re +S +endstream +endobj + +574 0 obj +52 +endobj + +575 0 obj +<< + /EF << + /F 735 0 R + /UF 735 0 R + >> + /F (attachment1.txt) + /Type /Filespec + /UF (attachment1.txt) +>> +endobj + +576 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 577 0 R +>> +stream +1 0 0 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +577 0 obj +36 +endobj + +578 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + 0 + 1 + -1 + 0 + 0 + 0 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 579 0 R +>> +stream +0 1 0 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +579 0 obj +36 +endobj + +580 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + -1 + 0 + 0 + -1 + 0 + 0 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 581 0 R +>> +stream +0 0 1 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +581 0 obj +36 +endobj + +582 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + 0 + -1 + 1 + 0 + 0 + 0 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 583 0 R +>> +stream +0.5 0 1 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +583 0 obj +38 +endobj + +584 0 obj +<< + /BBox [ + 0 + 0 + 20 + 20 + ] + /Matrix [ + 0.5 + 0 + 0 + 0.5 + 153 + 198 + ] + /Resources << + >> + /Subtype /Form + /Type /XObject + /Length 585 0 R +>> +stream +0 10 m +10 0 l +20 10 l +10 0 m +10 20 l +0 0 20 20 re +S +endstream +endobj + +585 0 obj +52 +endobj + +586 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + 0.5 + 0 + 0 + 0.5 + 153 + 198 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 587 0 R +>> +stream +1 0 0 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +587 0 obj +36 +endobj + +588 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + 0 + 0.5 + -0.5 + 0 + -198 + 153 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 589 0 R +>> +stream +0 1 0 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +589 0 obj +36 +endobj + +590 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + -0.5 + 0 + 0 + -0.5 + -153 + -198 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 591 0 R +>> +stream +0 0 1 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +591 0 obj +36 +endobj + +592 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + 0 + -0.5 + 0.5 + 0 + 198 + -153 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 593 0 R +>> +stream +0.5 0 1 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +593 0 obj +38 +endobj + +594 0 obj +<< + /BBox [ + 0 + 0 + 20 + 20 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources << + >> + /Subtype /Form + /Type /XObject + /Length 595 0 R +>> +stream +0 10 m +10 0 l +20 10 l +10 0 m +10 20 l +0 0 20 20 re +S +endstream +endobj + +595 0 obj +52 +endobj + +596 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 597 0 R +>> +stream +1 0 0 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +597 0 obj +36 +endobj + +598 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + 0 + 1 + -1 + 0 + 0 + 0 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 599 0 R +>> +stream +0 1 0 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +599 0 obj +36 +endobj + +600 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + -1 + 0 + 0 + -1 + 0 + 0 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 601 0 R +>> +stream +0 0 1 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +601 0 obj +36 +endobj + +602 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + 0 + -1 + 1 + 0 + 0 + 0 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 603 0 R +>> +stream +0.5 0 1 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +603 0 obj +38 +endobj + +604 0 obj +<< + /BBox [ + 0 + 0 + 20 + 20 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources << + >> + /Subtype /Form + /Type /XObject + /Length 605 0 R +>> +stream +0 10 m +10 0 l +20 10 l +10 0 m +10 20 l +0 0 20 20 re +S +endstream +endobj + +605 0 obj +52 +endobj + +606 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + 1 + 0 + 0 + 1 + 0 + 0 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 607 0 R +>> +stream +1 0 0 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +607 0 obj +36 +endobj + +608 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + 0 + 1 + -1 + 0 + 0 + 0 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 609 0 R +>> +stream +0 1 0 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +609 0 obj +36 +endobj + +610 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + -1 + 0 + 0 + -1 + 0 + 0 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 611 0 R +>> +stream +0 0 1 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +611 0 obj +36 +endobj + +612 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + 0 + -1 + 1 + 0 + 0 + 0 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 613 0 R +>> +stream +0.5 0 1 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +613 0 obj +38 +endobj + +614 0 obj +<< + /BBox [ + 0 + 0 + 20 + 20 + ] + /Matrix [ + 0 + 0.772727 + -0.772727 + 0 + 612 + 159.545455 + ] + /Resources << + >> + /Subtype /Form + /Type /XObject + /Length 615 0 R +>> +stream +0 10 m +10 0 l +20 10 l +10 0 m +10 20 l +0 0 20 20 re +S +endstream +endobj + +615 0 obj +52 +endobj + +616 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + 0 + 0.772727 + -0.772727 + 0 + 612 + 159.545455 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 617 0 R +>> +stream +1 0 0 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +617 0 obj +36 +endobj + +618 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + -0.772727 + 0 + -0 + -0.772727 + -159.545455 + 612 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 619 0 R +>> +stream +0 1 0 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +619 0 obj +36 +endobj + +620 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + 0 + -0.772727 + 0.772727 + -0 + -612 + -159.545455 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 621 0 R +>> +stream +0 0 1 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +621 0 obj +36 +endobj + +622 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + 0.772727 + 0 + 0 + 0.772727 + 159.545455 + -612 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 623 0 R +>> +stream +0.5 0 1 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +623 0 obj +38 +endobj + +624 0 obj +<< + /BBox [ + 0 + 0 + 20 + 20 + ] + /Matrix [ + 0 + 0.666667 + -0.666667 + 0 + 570 + 192 + ] + /Resources << + >> + /Subtype /Form + /Type /XObject + /Length 625 0 R +>> +stream +0 10 m +10 0 l +20 10 l +10 0 m +10 20 l +0 0 20 20 re +S +endstream +endobj + +625 0 obj +52 +endobj + +626 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + 0 + 0.666667 + -0.666667 + 0 + 570 + 192 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 627 0 R +>> +stream +1 0 0 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +627 0 obj +36 +endobj + +628 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + -0.666667 + 0 + -0 + -0.666667 + -192 + 570 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 629 0 R +>> +stream +0 1 0 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +629 0 obj +36 +endobj + +630 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + 0 + -0.666667 + 0.666667 + -0 + -570 + -192 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 631 0 R +>> +stream +0 0 1 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +631 0 obj +36 +endobj + +632 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + 0.666667 + 0 + 0 + 0.666667 + 192 + -570 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 633 0 R +>> +stream +0.5 0 1 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +633 0 obj +38 +endobj + +634 0 obj +<< + /BBox [ + 0 + 0 + 20 + 20 + ] + /Matrix [ + 0 + 0.772727 + -0.772727 + 0 + 612 + 159.545455 + ] + /Resources << + >> + /Subtype /Form + /Type /XObject + /Length 635 0 R +>> +stream +0 10 m +10 0 l +20 10 l +10 0 m +10 20 l +0 0 20 20 re +S +endstream +endobj + +635 0 obj +52 +endobj + +636 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + 0 + 0.772727 + -0.772727 + 0 + 612 + 159.545455 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 637 0 R +>> +stream +1 0 0 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +637 0 obj +36 +endobj + +638 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + -0.772727 + 0 + -0 + -0.772727 + -159.545455 + 612 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 639 0 R +>> +stream +0 1 0 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +639 0 obj +36 +endobj + +640 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + 0 + -0.772727 + 0.772727 + -0 + -612 + -159.545455 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 641 0 R +>> +stream +0 0 1 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +641 0 obj +36 +endobj + +642 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + 0.772727 + 0 + 0 + 0.772727 + 159.545455 + -612 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 643 0 R +>> +stream +0.5 0 1 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +643 0 obj +38 +endobj + +644 0 obj +<< + /BBox [ + 0 + 0 + 20 + 20 + ] + /Matrix [ + 0 + 0.772727 + -0.772727 + 0 + 612 + 159.545455 + ] + /Resources << + >> + /Subtype /Form + /Type /XObject + /Length 645 0 R +>> +stream +0 10 m +10 0 l +20 10 l +10 0 m +10 20 l +0 0 20 20 re +S +endstream +endobj + +645 0 obj +52 +endobj + +646 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + 0 + 0.772727 + -0.772727 + 0 + 612 + 159.545455 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 647 0 R +>> +stream +1 0 0 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +647 0 obj +36 +endobj + +648 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + -0.772727 + 0 + -0 + -0.772727 + -159.545455 + 612 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 649 0 R +>> +stream +0 1 0 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +649 0 obj +36 +endobj + +650 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + 0 + -0.772727 + 0.772727 + -0 + -612 + -159.545455 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 651 0 R +>> +stream +0 0 1 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +651 0 obj +36 +endobj + +652 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + 0.772727 + 0 + 0 + 0.772727 + 159.545455 + -612 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 653 0 R +>> +stream +0.5 0 1 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +653 0 obj +38 +endobj + +654 0 obj +<< + /BBox [ + 0 + 0 + 20 + 20 + ] + /Matrix [ + -1 + 0 + 0 + -1 + 612 + 792 + ] + /Resources << + >> + /Subtype /Form + /Type /XObject + /Length 655 0 R +>> +stream +0 10 m +10 0 l +20 10 l +10 0 m +10 20 l +0 0 20 20 re +S +endstream +endobj + +655 0 obj +52 +endobj + +656 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + -1 + 0 + 0 + -1 + 612 + 792 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 657 0 R +>> +stream +1 0 0 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +657 0 obj +36 +endobj + +658 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + -0 + -1 + 1 + 0 + -792 + 612 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 659 0 R +>> +stream +0 1 0 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +659 0 obj +36 +endobj + +660 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + 1 + -0 + -0 + 1 + -612 + -792 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 661 0 R +>> +stream +0 0 1 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +661 0 obj +36 +endobj + +662 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + 0 + 1 + -1 + -0 + 792 + -612 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 663 0 R +>> +stream +0.5 0 1 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +663 0 obj +38 +endobj + +664 0 obj +<< + /BBox [ + 0 + 0 + 20 + 20 + ] + /Matrix [ + -1 + 0 + 0 + -1 + 612 + 792 + ] + /Resources << + >> + /Subtype /Form + /Type /XObject + /Length 665 0 R +>> +stream +0 10 m +10 0 l +20 10 l +10 0 m +10 20 l +0 0 20 20 re +S +endstream +endobj + +665 0 obj +52 +endobj + +666 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + -1 + 0 + 0 + -1 + 612 + 792 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 667 0 R +>> +stream +1 0 0 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +667 0 obj +36 +endobj + +668 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + -0 + -1 + 1 + 0 + -792 + 612 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 669 0 R +>> +stream +0 1 0 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +669 0 obj +36 +endobj + +670 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + 1 + -0 + -0 + 1 + -612 + -792 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 671 0 R +>> +stream +0 0 1 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +671 0 obj +36 +endobj + +672 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + 0 + 1 + -1 + -0 + 792 + -612 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 673 0 R +>> +stream +0.5 0 1 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +673 0 obj +38 +endobj + +674 0 obj +<< + /BBox [ + 0 + 0 + 20 + 20 + ] + /Matrix [ + -1 + 0 + 0 + -1 + 612 + 792 + ] + /Resources << + >> + /Subtype /Form + /Type /XObject + /Length 675 0 R +>> +stream +0 10 m +10 0 l +20 10 l +10 0 m +10 20 l +0 0 20 20 re +S +endstream +endobj + +675 0 obj +52 +endobj + +676 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + -1 + 0 + 0 + -1 + 612 + 792 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 677 0 R +>> +stream +1 0 0 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +677 0 obj +36 +endobj + +678 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + -0 + -1 + 1 + 0 + -792 + 612 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 679 0 R +>> +stream +0 1 0 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +679 0 obj +36 +endobj + +680 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + 1 + -0 + -0 + 1 + -612 + -792 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 681 0 R +>> +stream +0 0 1 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +681 0 obj +36 +endobj + +682 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + 0 + 1 + -1 + -0 + 792 + -612 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 683 0 R +>> +stream +0.5 0 1 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +683 0 obj +38 +endobj + +684 0 obj +<< + /BBox [ + 0 + 0 + 20 + 20 + ] + /Matrix [ + -1 + 0 + 0 + -1 + 612 + 792 + ] + /Resources << + >> + /Subtype /Form + /Type /XObject + /Length 685 0 R +>> +stream +0 10 m +10 0 l +20 10 l +10 0 m +10 20 l +0 0 20 20 re +S +endstream +endobj + +685 0 obj +52 +endobj + +686 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + -1 + 0 + 0 + -1 + 612 + 792 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 687 0 R +>> +stream +1 0 0 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +687 0 obj +36 +endobj + +688 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + -0 + -1 + 1 + 0 + -792 + 612 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 689 0 R +>> +stream +0 1 0 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +689 0 obj +36 +endobj + +690 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + 1 + -0 + -0 + 1 + -612 + -792 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 691 0 R +>> +stream +0 0 1 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +691 0 obj +36 +endobj + +692 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + 0 + 1 + -1 + -0 + 792 + -612 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 693 0 R +>> +stream +0.5 0 1 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +693 0 obj +38 +endobj + +694 0 obj +<< + /BBox [ + 0 + 0 + 20 + 20 + ] + /Matrix [ + 0 + -0.772727 + 0.772727 + 0 + 0 + 632.454545 + ] + /Resources << + >> + /Subtype /Form + /Type /XObject + /Length 695 0 R +>> +stream +0 10 m +10 0 l +20 10 l +10 0 m +10 20 l +0 0 20 20 re +S +endstream +endobj + +695 0 obj +52 +endobj + +696 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + 0 + -0.772727 + 0.772727 + 0 + 0 + 632.454545 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 697 0 R +>> +stream +1 0 0 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +697 0 obj +36 +endobj + +698 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + 0.772727 + 0 + 0 + 0.772727 + -632.454545 + 0 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 699 0 R +>> +stream +0 1 0 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +699 0 obj +36 +endobj + +700 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + -0 + 0.772727 + -0.772727 + 0 + 0 + -632.454545 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 701 0 R +>> +stream +0 0 1 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +701 0 obj +36 +endobj + +702 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + -0.772727 + -0 + 0 + -0.772727 + 632.454545 + 0 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 703 0 R +>> +stream +0.5 0 1 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +703 0 obj +38 +endobj + +704 0 obj +<< + /BBox [ + 0 + 0 + 20 + 20 + ] + /Matrix [ + 0 + -0.772727 + 0.772727 + 0 + 0 + 632.454545 + ] + /Resources << + >> + /Subtype /Form + /Type /XObject + /Length 705 0 R +>> +stream +0 10 m +10 0 l +20 10 l +10 0 m +10 20 l +0 0 20 20 re +S +endstream +endobj + +705 0 obj +52 +endobj + +706 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + 0 + -0.772727 + 0.772727 + 0 + 0 + 632.454545 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 707 0 R +>> +stream +1 0 0 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +707 0 obj +36 +endobj + +708 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + 0.772727 + 0 + 0 + 0.772727 + -632.454545 + 0 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 709 0 R +>> +stream +0 1 0 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +709 0 obj +36 +endobj + +710 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + -0 + 0.772727 + -0.772727 + 0 + 0 + -632.454545 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 711 0 R +>> +stream +0 0 1 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +711 0 obj +36 +endobj + +712 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + -0.772727 + -0 + 0 + -0.772727 + 632.454545 + 0 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 713 0 R +>> +stream +0.5 0 1 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +713 0 obj +38 +endobj + +714 0 obj +<< + /BBox [ + 0 + 0 + 20 + 20 + ] + /Matrix [ + 0 + -0.772727 + 0.772727 + 0 + 0 + 632.454545 + ] + /Resources << + >> + /Subtype /Form + /Type /XObject + /Length 715 0 R +>> +stream +0 10 m +10 0 l +20 10 l +10 0 m +10 20 l +0 0 20 20 re +S +endstream +endobj + +715 0 obj +52 +endobj + +716 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + 0 + -0.772727 + 0.772727 + 0 + 0 + 632.454545 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 717 0 R +>> +stream +1 0 0 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +717 0 obj +36 +endobj + +718 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + 0.772727 + 0 + 0 + 0.772727 + -632.454545 + 0 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 719 0 R +>> +stream +0 1 0 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +719 0 obj +36 +endobj + +720 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + -0 + 0.772727 + -0.772727 + 0 + 0 + -632.454545 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 721 0 R +>> +stream +0 0 1 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +721 0 obj +36 +endobj + +722 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + -0.772727 + -0 + 0 + -0.772727 + 632.454545 + 0 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 723 0 R +>> +stream +0.5 0 1 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +723 0 obj +38 +endobj + +724 0 obj +<< + /BBox [ + 0 + 0 + 20 + 20 + ] + /Matrix [ + 0 + -0.772727 + 0.772727 + 0 + 0 + 632.454545 + ] + /Resources << + >> + /Subtype /Form + /Type /XObject + /Length 725 0 R +>> +stream +0 10 m +10 0 l +20 10 l +10 0 m +10 20 l +0 0 20 20 re +S +endstream +endobj + +725 0 obj +52 +endobj + +726 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + 0 + -0.772727 + 0.772727 + 0 + 0 + 632.454545 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 727 0 R +>> +stream +1 0 0 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +727 0 obj +36 +endobj + +728 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + 0.772727 + 0 + 0 + 0.772727 + -632.454545 + 0 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 729 0 R +>> +stream +0 1 0 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +729 0 obj +36 +endobj + +730 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + -0 + 0.772727 + -0.772727 + 0 + 0 + -632.454545 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 731 0 R +>> +stream +0 0 1 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +731 0 obj +36 +endobj + +732 0 obj +<< + /BBox [ + 0 + 0 + 20 + 10 + ] + /Matrix [ + -0.772727 + -0 + 0 + -0.772727 + 632.454545 + 0 + ] + /Resources 70 0 R + /Subtype /Form + /Type /XObject + /Length 733 0 R +>> +stream +0.5 0 1 RG +0 0 20 10 re +0 0 5 10 re +S +endstream +endobj + +733 0 obj +38 +endobj + +734 0 obj +<< + /Font 737 0 R + /ProcSet [ + /PDF + /Text + ] +>> +endobj + +735 0 obj +<< + /Params << + /CheckSum <80a33fc110b5a7b8b4d58b8d57e814bc> + /Size 22 + /Subtype /text#2fplain + >> + /Type /EmbeddedFile + /Length 736 0 R +>> +stream +content of attachment +endstream +endobj + +736 0 obj +22 +endobj + +737 0 obj +<< + /ZaDi 384 0 R +>> +endobj + +xref +0 738 +0000000000 65535 f +0000000025 00000 n +0000000097 00000 n +0000000657 00000 n +0000000896 00000 n +0000001141 00000 n +0000001391 00000 n +0000001510 00000 n +0000001756 00000 n +0000002006 00000 n +0000002125 00000 n +0000002371 00000 n +0000002622 00000 n +0000002742 00000 n +0000002988 00000 n +0000003239 00000 n +0000003359 00000 n +0000003624 00000 n +0000003884 00000 n +0000004007 00000 n +0000004261 00000 n +0000004516 00000 n +0000004639 00000 n +0000004905 00000 n +0000005166 00000 n +0000005289 00000 n +0000005555 00000 n +0000005816 00000 n +0000005939 00000 n +0000006187 00000 n +0000006439 00000 n +0000006562 00000 n +0000006810 00000 n +0000007062 00000 n +0000007185 00000 n +0000007433 00000 n +0000007685 00000 n +0000007808 00000 n +0000008056 00000 n +0000008308 00000 n +0000008431 00000 n +0000008697 00000 n +0000008958 00000 n +0000009081 00000 n +0000009347 00000 n +0000009608 00000 n +0000009731 00000 n +0000009997 00000 n +0000010258 00000 n +0000010381 00000 n +0000010647 00000 n +0000010908 00000 n +0000011041 00000 n +0000011467 00000 n +0000011907 00000 n +0000012347 00000 n +0000012775 00000 n +0000013219 00000 n +0000013679 00000 n +0000014123 00000 n +0000014567 00000 n +0000015013 00000 n +0000015476 00000 n +0000015922 00000 n +0000016368 00000 n +0000016814 00000 n +0000017277 00000 n +0000017723 00000 n +0000018158 00000 n +0000018426 00000 n +0000018446 00000 n +0000018501 00000 n +0000018772 00000 n +0000018792 00000 n +0000019147 00000 n +0000019502 00000 n +0000019857 00000 n +0000020133 00000 n +0000020153 00000 n +0000020433 00000 n +0000020453 00000 n +0000020812 00000 n +0000021171 00000 n +0000021530 00000 n +0000021798 00000 n +0000021818 00000 n +0000022089 00000 n +0000022109 00000 n +0000022465 00000 n +0000022821 00000 n +0000023177 00000 n +0000023445 00000 n +0000023465 00000 n +0000023736 00000 n +0000023756 00000 n +0000024112 00000 n +0000024468 00000 n +0000024824 00000 n +0000025118 00000 n +0000025138 00000 n +0000025438 00000 n +0000025459 00000 n +0000025828 00000 n +0000026197 00000 n +0000026564 00000 n +0000026853 00000 n +0000026874 00000 n +0000027168 00000 n +0000027189 00000 n +0000027552 00000 n +0000027921 00000 n +0000028284 00000 n +0000028580 00000 n +0000028601 00000 n +0000028902 00000 n +0000028923 00000 n +0000029292 00000 n +0000029661 00000 n +0000030028 00000 n +0000030324 00000 n +0000030345 00000 n +0000030646 00000 n +0000030667 00000 n +0000031036 00000 n +0000031405 00000 n +0000031772 00000 n +0000032048 00000 n +0000032069 00000 n +0000032348 00000 n +0000032369 00000 n +0000032726 00000 n +0000033083 00000 n +0000033440 00000 n +0000033716 00000 n +0000033737 00000 n +0000034016 00000 n +0000034037 00000 n +0000034394 00000 n +0000034751 00000 n +0000035108 00000 n +0000035384 00000 n +0000035405 00000 n +0000035684 00000 n +0000035705 00000 n +0000036062 00000 n +0000036419 00000 n +0000036776 00000 n +0000037052 00000 n +0000037073 00000 n +0000037352 00000 n +0000037373 00000 n +0000037730 00000 n +0000038087 00000 n +0000038444 00000 n +0000038738 00000 n +0000038759 00000 n +0000039055 00000 n +0000039076 00000 n +0000039445 00000 n +0000039814 00000 n +0000040181 00000 n +0000040475 00000 n +0000040496 00000 n +0000040792 00000 n +0000040813 00000 n +0000041182 00000 n +0000041551 00000 n +0000041918 00000 n +0000042212 00000 n +0000042233 00000 n +0000042529 00000 n +0000042550 00000 n +0000042919 00000 n +0000043288 00000 n +0000043655 00000 n +0000043949 00000 n +0000043970 00000 n +0000044266 00000 n +0000044287 00000 n +0000044656 00000 n +0000045025 00000 n +0000045392 00000 n +0000045637 00000 n +0000045844 00000 n +0000045986 00000 n +0000046130 00000 n +0000046274 00000 n +0000046441 00000 n +0000046502 00000 n +0000046545 00000 n +0000046712 00000 n +0000046757 00000 n +0000046846 00000 n +0000046867 00000 n +0000046987 00000 n +0000047024 00000 n +0000048092 00000 n +0000048114 00000 n +0000048360 00000 n +0000048569 00000 n +0000048713 00000 n +0000048857 00000 n +0000049001 00000 n +0000049168 00000 n +0000049229 00000 n +0000049272 00000 n +0000049448 00000 n +0000049493 00000 n +0000049590 00000 n +0000049611 00000 n +0000049856 00000 n +0000050063 00000 n +0000050205 00000 n +0000050349 00000 n +0000050493 00000 n +0000050660 00000 n +0000050721 00000 n +0000050764 00000 n +0000050868 00000 n +0000050912 00000 n +0000051034 00000 n +0000051078 00000 n +0000051167 00000 n +0000051188 00000 n +0000051433 00000 n +0000051640 00000 n +0000051782 00000 n +0000051926 00000 n +0000052070 00000 n +0000052237 00000 n +0000052298 00000 n +0000052341 00000 n +0000052508 00000 n +0000052553 00000 n +0000052642 00000 n +0000052663 00000 n +0000052924 00000 n +0000053161 00000 n +0000053333 00000 n +0000053505 00000 n +0000053677 00000 n +0000053865 00000 n +0000053926 00000 n +0000053969 00000 n +0000054140 00000 n +0000054185 00000 n +0000054297 00000 n +0000054318 00000 n +0000054570 00000 n +0000054793 00000 n +0000054951 00000 n +0000055116 00000 n +0000055281 00000 n +0000055469 00000 n +0000055530 00000 n +0000055573 00000 n +0000055755 00000 n +0000055800 00000 n +0000055906 00000 n +0000055927 00000 n +0000056188 00000 n +0000056425 00000 n +0000056597 00000 n +0000056769 00000 n +0000056941 00000 n +0000057129 00000 n +0000057190 00000 n +0000057233 00000 n +0000057404 00000 n +0000057449 00000 n +0000057561 00000 n +0000057582 00000 n +0000057843 00000 n +0000058080 00000 n +0000058252 00000 n +0000058424 00000 n +0000058596 00000 n +0000058784 00000 n +0000058845 00000 n +0000058888 00000 n +0000059059 00000 n +0000059104 00000 n +0000059216 00000 n +0000059237 00000 n +0000059483 00000 n +0000059692 00000 n +0000059836 00000 n +0000059980 00000 n +0000060124 00000 n +0000060291 00000 n +0000060352 00000 n +0000060395 00000 n +0000060567 00000 n +0000060612 00000 n +0000060707 00000 n +0000060728 00000 n +0000060974 00000 n +0000061183 00000 n +0000061327 00000 n +0000061471 00000 n +0000061615 00000 n +0000061783 00000 n +0000061844 00000 n +0000061888 00000 n +0000062073 00000 n +0000062119 00000 n +0000062214 00000 n +0000062235 00000 n +0000062481 00000 n +0000062690 00000 n +0000062834 00000 n +0000062978 00000 n +0000063122 00000 n +0000063290 00000 n +0000063351 00000 n +0000063395 00000 n +0000063568 00000 n +0000063614 00000 n +0000063709 00000 n +0000063730 00000 n +0000063976 00000 n +0000064185 00000 n +0000064329 00000 n +0000064473 00000 n +0000064617 00000 n +0000064785 00000 n +0000064846 00000 n +0000064890 00000 n +0000065063 00000 n +0000065109 00000 n +0000065204 00000 n +0000065225 00000 n +0000065486 00000 n +0000065723 00000 n +0000065895 00000 n +0000066067 00000 n +0000066239 00000 n +0000066428 00000 n +0000066489 00000 n +0000066533 00000 n +0000066706 00000 n +0000066752 00000 n +0000066862 00000 n +0000066883 00000 n +0000067144 00000 n +0000067381 00000 n +0000067553 00000 n +0000067725 00000 n +0000067897 00000 n +0000068086 00000 n +0000068147 00000 n +0000068191 00000 n +0000068376 00000 n +0000068422 00000 n +0000068532 00000 n +0000068553 00000 n +0000068814 00000 n +0000069051 00000 n +0000069223 00000 n +0000069395 00000 n +0000069567 00000 n +0000069756 00000 n +0000069817 00000 n +0000069861 00000 n +0000070034 00000 n +0000070080 00000 n +0000070190 00000 n +0000070211 00000 n +0000070472 00000 n +0000070709 00000 n +0000070881 00000 n +0000071053 00000 n +0000071225 00000 n +0000071414 00000 n +0000071475 00000 n +0000071519 00000 n +0000071692 00000 n +0000071738 00000 n +0000071848 00000 n +0000071869 00000 n +0000071975 00000 n +0000072389 00000 n +0000072411 00000 n +0000072635 00000 n +0000072656 00000 n +0000072738 00000 n +0000073152 00000 n +0000073174 00000 n +0000073398 00000 n +0000073419 00000 n +0000073833 00000 n +0000073855 00000 n +0000074079 00000 n +0000074100 00000 n +0000074522 00000 n +0000074544 00000 n +0000074776 00000 n +0000074797 00000 n +0000075219 00000 n +0000075241 00000 n +0000075473 00000 n +0000075494 00000 n +0000075916 00000 n +0000075938 00000 n +0000076170 00000 n +0000076191 00000 n +0000076605 00000 n +0000076627 00000 n +0000076851 00000 n +0000076872 00000 n +0000077286 00000 n +0000077308 00000 n +0000077532 00000 n +0000077553 00000 n +0000077967 00000 n +0000077989 00000 n +0000078213 00000 n +0000078234 00000 n +0000078648 00000 n +0000078670 00000 n +0000078894 00000 n +0000078915 00000 n +0000079329 00000 n +0000079351 00000 n +0000079575 00000 n +0000079596 00000 n +0000080010 00000 n +0000080032 00000 n +0000080256 00000 n +0000080277 00000 n +0000080717 00000 n +0000080739 00000 n +0000080989 00000 n +0000081010 00000 n +0000081450 00000 n +0000081472 00000 n +0000081722 00000 n +0000081743 00000 n +0000082183 00000 n +0000082205 00000 n +0000082455 00000 n +0000082476 00000 n +0000082909 00000 n +0000082931 00000 n +0000083174 00000 n +0000083195 00000 n +0000083628 00000 n +0000083650 00000 n +0000083893 00000 n +0000083914 00000 n +0000084347 00000 n +0000084369 00000 n +0000084612 00000 n +0000084633 00000 n +0000085073 00000 n +0000085095 00000 n +0000085345 00000 n +0000085366 00000 n +0000085806 00000 n +0000085828 00000 n +0000086078 00000 n +0000086099 00000 n +0000086539 00000 n +0000086561 00000 n +0000086811 00000 n +0000086832 00000 n +0000087272 00000 n +0000087294 00000 n +0000087544 00000 n +0000087565 00000 n +0000088005 00000 n +0000088027 00000 n +0000088277 00000 n +0000088298 00000 n +0000088738 00000 n +0000088760 00000 n +0000089010 00000 n +0000089031 00000 n +0000089451 00000 n +0000089473 00000 n +0000089703 00000 n +0000089724 00000 n +0000090144 00000 n +0000090166 00000 n +0000090396 00000 n +0000090417 00000 n +0000090837 00000 n +0000090859 00000 n +0000091089 00000 n +0000091110 00000 n +0000091530 00000 n +0000091552 00000 n +0000091782 00000 n +0000091803 00000 n +0000092223 00000 n +0000092245 00000 n +0000092475 00000 n +0000092496 00000 n +0000092916 00000 n +0000092938 00000 n +0000093168 00000 n +0000093189 00000 n +0000093609 00000 n +0000093631 00000 n +0000093861 00000 n +0000093882 00000 n +0000094302 00000 n +0000094324 00000 n +0000094554 00000 n +0000094575 00000 n +0000094995 00000 n +0000095017 00000 n +0000095247 00000 n +0000095268 00000 n +0000095688 00000 n +0000095710 00000 n +0000095940 00000 n +0000095961 00000 n +0000096381 00000 n +0000096403 00000 n +0000096633 00000 n +0000096654 00000 n +0000097074 00000 n +0000097096 00000 n +0000097326 00000 n +0000097347 00000 n +0000097785 00000 n +0000097807 00000 n +0000098055 00000 n +0000098076 00000 n +0000098514 00000 n +0000098536 00000 n +0000098784 00000 n +0000098805 00000 n +0000099243 00000 n +0000099265 00000 n +0000099513 00000 n +0000099534 00000 n +0000099972 00000 n +0000099994 00000 n +0000100242 00000 n +0000100263 00000 n +0000100701 00000 n +0000100723 00000 n +0000100971 00000 n +0000100992 00000 n +0000101430 00000 n +0000101452 00000 n +0000101700 00000 n +0000101721 00000 n +0000102159 00000 n +0000102181 00000 n +0000102429 00000 n +0000102450 00000 n +0000102888 00000 n +0000102910 00000 n +0000103158 00000 n +0000103179 00000 n +0000103617 00000 n +0000103639 00000 n +0000103887 00000 n +0000103908 00000 n +0000104346 00000 n +0000104368 00000 n +0000104616 00000 n +0000104637 00000 n +0000105075 00000 n +0000105097 00000 n +0000105345 00000 n +0000105366 00000 n +0000105804 00000 n +0000105826 00000 n +0000106074 00000 n +0000106095 00000 n +0000106353 00000 n +0000106374 00000 n +0000106508 00000 n +0000106749 00000 n +0000106770 00000 n +0000107012 00000 n +0000107033 00000 n +0000107276 00000 n +0000107297 00000 n +0000107541 00000 n +0000107562 00000 n +0000107828 00000 n +0000107849 00000 n +0000108098 00000 n +0000108119 00000 n +0000108370 00000 n +0000108391 00000 n +0000108644 00000 n +0000108665 00000 n +0000108918 00000 n +0000108939 00000 n +0000109197 00000 n +0000109218 00000 n +0000109459 00000 n +0000109480 00000 n +0000109722 00000 n +0000109743 00000 n +0000109986 00000 n +0000110007 00000 n +0000110251 00000 n +0000110272 00000 n +0000110530 00000 n +0000110551 00000 n +0000110792 00000 n +0000110813 00000 n +0000111055 00000 n +0000111076 00000 n +0000111319 00000 n +0000111340 00000 n +0000111584 00000 n +0000111605 00000 n +0000111889 00000 n +0000111910 00000 n +0000112177 00000 n +0000112198 00000 n +0000112468 00000 n +0000112489 00000 n +0000112759 00000 n +0000112780 00000 n +0000113049 00000 n +0000113070 00000 n +0000113347 00000 n +0000113368 00000 n +0000113628 00000 n +0000113649 00000 n +0000113912 00000 n +0000113933 00000 n +0000114196 00000 n +0000114217 00000 n +0000114479 00000 n +0000114500 00000 n +0000114784 00000 n +0000114805 00000 n +0000115072 00000 n +0000115093 00000 n +0000115363 00000 n +0000115384 00000 n +0000115654 00000 n +0000115675 00000 n +0000115944 00000 n +0000115965 00000 n +0000116249 00000 n +0000116270 00000 n +0000116537 00000 n +0000116558 00000 n +0000116828 00000 n +0000116849 00000 n +0000117119 00000 n +0000117140 00000 n +0000117409 00000 n +0000117430 00000 n +0000117694 00000 n +0000117715 00000 n +0000117962 00000 n +0000117983 00000 n +0000118231 00000 n +0000118252 00000 n +0000118501 00000 n +0000118522 00000 n +0000118772 00000 n +0000118793 00000 n +0000119057 00000 n +0000119078 00000 n +0000119325 00000 n +0000119346 00000 n +0000119594 00000 n +0000119615 00000 n +0000119864 00000 n +0000119885 00000 n +0000120135 00000 n +0000120156 00000 n +0000120420 00000 n +0000120441 00000 n +0000120688 00000 n +0000120709 00000 n +0000120957 00000 n +0000120978 00000 n +0000121227 00000 n +0000121248 00000 n +0000121498 00000 n +0000121519 00000 n +0000121783 00000 n +0000121804 00000 n +0000122051 00000 n +0000122072 00000 n +0000122320 00000 n +0000122341 00000 n +0000122590 00000 n +0000122611 00000 n +0000122861 00000 n +0000122882 00000 n +0000123164 00000 n +0000123185 00000 n +0000123450 00000 n +0000123471 00000 n +0000123736 00000 n +0000123757 00000 n +0000124024 00000 n +0000124045 00000 n +0000124314 00000 n +0000124335 00000 n +0000124617 00000 n +0000124638 00000 n +0000124903 00000 n +0000124924 00000 n +0000125189 00000 n +0000125210 00000 n +0000125477 00000 n +0000125498 00000 n +0000125767 00000 n +0000125788 00000 n +0000126070 00000 n +0000126091 00000 n +0000126356 00000 n +0000126377 00000 n +0000126642 00000 n +0000126663 00000 n +0000126930 00000 n +0000126951 00000 n +0000127220 00000 n +0000127241 00000 n +0000127523 00000 n +0000127544 00000 n +0000127809 00000 n +0000127830 00000 n +0000128095 00000 n +0000128116 00000 n +0000128383 00000 n +0000128404 00000 n +0000128673 00000 n +0000128694 00000 n +0000128770 00000 n +0000128980 00000 n +0000129001 00000 n +trailer << + /Root 1 0 R + /Size 738 + /ID [<4866f3ccc81fb28dc4a27f0f976ce937><31415926535897932384626433832795>] +>> +startxref +129041 +%%EOF diff --git a/qpdf/qtest/qpdf/test80a1.pdf b/qpdf/qtest/qpdf/test80a1.pdf new file mode 100644 index 00000000..187b7c7e --- /dev/null +++ b/qpdf/qtest/qpdf/test80a1.pdf @@ -0,0 +1,5655 @@ +%PDF-1.5 +% +%QDF-1.0 + +%% Original object ID: 1 0 +1 0 obj +<< + /AcroForm << + /DR 3 0 R + /Fields [ + 4 0 R + 5 0 R + 6 0 R + 7 0 R + 8 0 R + 9 0 R + 10 0 R + 11 0 R + 12 0 R + 13 0 R + 14 0 R + 15 0 R + 16 0 R + 17 0 R + 18 0 R + 19 0 R + 20 0 R + 21 0 R + 22 0 R + 23 0 R + 24 0 R + 25 0 R + ] + >> + /Lang (en-US) + /MarkInfo << + /Marked true + >> + /OpenAction [ + 26 0 R + /XYZ + null + null + 0 + ] + /Pages 27 0 R + /StructTreeRoot 28 0 R + /Type /Catalog +>> +endobj + +%% Original object ID: 2 0 +2 0 obj +<< + /CreationDate (D:20190103125434-05'00') + /Creator + /Producer +>> +endobj + +%% Original object ID: 3 0 +3 0 obj +<< + /Font 29 0 R + /ProcSet [ + /PDF + /Text + ] +>> +endobj + +%% Original object ID: 4 0 +4 0 obj +<< + /AP << + /N 30 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F2 12 Tf) + /DR << + /Font 29 0 R + >> + /DV + /F 4 + /FT /Tx + /P 26 0 R + /Rect [ + 123.499 + 689.901 + 260.801 + 704.699 + ] + /Subtype /Widget + /T (text) + /Type /Annot + /V +>> +endobj + +%% Original object ID: 5 0 +5 0 obj +<< + /DV /1 + /FT /Btn + /Ff 49152 + /Kids [ + 32 0 R + 33 0 R + 34 0 R + ] + /P 26 0 R + /T (r1) + /V /2 +>> +endobj + +%% Original object ID: 6 0 +6 0 obj +<< + /AP << + /N << + /Off 35 0 R + /Yes 37 0 R + >> + >> + /AS /Off + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 39 0 R + >> + >> + /DV /Off + /F 4 + /FT /Btn + /MK << + /CA (8) + >> + /P 26 0 R + /Rect [ + 118.649 + 554.301 + 130.701 + 566.349 + ] + /Subtype /Widget + /T (checkbox1) + /Type /Annot + /V /Off +>> +endobj + +%% Original object ID: 7 0 +7 0 obj +<< + /AP << + /N << + /Off 40 0 R + /Yes 42 0 R + >> + >> + /AS /Yes + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 39 0 R + >> + >> + /DV /Yes + /F 4 + /FT /Btn + /MK << + /CA (8) + >> + /P 26 0 R + /Rect [ + 118.649 + 527.751 + 130.701 + 539.799 + ] + /Subtype /Widget + /T (checkbox2) + /Type /Annot + /V /Yes +>> +endobj + +%% Original object ID: 8 0 +8 0 obj +<< + /AP << + /N << + /Off 44 0 R + /Yes 46 0 R + >> + >> + /AS /Off + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 39 0 R + >> + >> + /DV /Off + /F 4 + /FT /Btn + /MK << + /CA (8) + >> + /P 26 0 R + /Rect [ + 118.649 + 500.501 + 130.701 + 512.549 + ] + /Subtype /Widget + /T (checkbox3) + /Type /Annot + /V /Off +>> +endobj + +%% Original object ID: 9 0 +9 0 obj +<< + /DV /2 + /FT /Btn + /Ff 49152 + /Kids [ + 48 0 R + 49 0 R + 50 0 R + ] + /P 26 0 R + /T (r2) + /V /2 +>> +endobj + +%% Original object ID: 10 0 +10 0 obj +<< + /AP << + /N 51 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F2 12 Tf) + /DR << + /Font 29 0 R + >> + /DV + /F 4 + /FT /Tx + /P 26 0 R + /Rect [ + 113.649 + 260.151 + 351.101 + 278.099 + ] + /Subtype /Widget + /T (text2) + /Type /Annot + /V +>> +endobj + +%% Original object ID: 11 0 +11 0 obj +<< + /AP << + /N 53 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf) + /DR << + /Font 29 0 R + >> + /DV + /F 4 + /FT /Ch + /Opt [ + + + + + + + + + + + + + ] + /P 26 0 R + /Rect [ + 158.449 + 156.651 + 221.001 + 232.849 + ] + /Subtype /Widget + /T (list1) + /Type /Annot + /V (1) +>> +endobj + +%% Original object ID: 12 0 +12 0 obj +<< + /AP << + /N 55 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf) + /DR << + /Font 29 0 R + >> + /DV + /F 4 + /FT /Ch + /Ff 131072 + /Opt [ + + + + + ] + /P 26 0 R + /Rect [ + 159.149 + 107.251 + 244.201 + 130.949 + ] + /Subtype /Widget + /T (drop1) + /Type /Annot + /V +>> +endobj + +%% Original object ID: 13 0 +13 0 obj +<< + /AP << + /N 57 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf) + /DR << + /Font 29 0 R + >> + /DV + /F 4 + /FT /Ch + /Ff 393216 + /Opt [ + + + + + ] + /P 26 0 R + /Rect [ + 403.949 + 159.401 + 459.001 + 232.849 + ] + /Subtype /Widget + /T (combolist1) + /Type /Annot + /V +>> +endobj + +%% Original object ID: 14 0 +14 0 obj +<< + /AP << + /N 59 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf) + /DR << + /Font 29 0 R + >> + /DV + /F 4 + /FT /Ch + /Ff 393216 + /Opt [ + + + + + ] + /P 26 0 R + /Rect [ + 404.599 + 101.451 + 476.701 + 135.349 + ] + /Subtype /Widget + /T (combodrop1) + /Type /Annot + /V +>> +endobj + +%% Original object ID: 201 0 +15 0 obj +<< + /AP << + /N 61 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F2 12 Tf) + /DR << + /Font 29 0 R + >> + /DV + /F 4 + /FT /Tx + /P 26 0 R + /Rect [ + 355.3996 + 671.9604 + 410.3204 + 677.8796 + ] + /Subtype /Widget + /T (text) + /Type /Annot + /V +>> +endobj + +%% Original object ID: 203 0 +16 0 obj +<< + /DV /1 + /FT /Btn + /Ff 49152 + /Kids [ + 63 0 R + 64 0 R + 65 0 R + ] + /P 26 0 R + /T (r1) + /V /2 +>> +endobj + +%% Original object ID: 213 0 +17 0 obj +<< + /AP << + /N << + /Off 66 0 R + /Yes 68 0 R + >> + >> + /AS /Off + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 39 0 R + >> + >> + /DV /Off + /F 4 + /FT /Btn + /MK << + /CA (8) + >> + /P 26 0 R + /Rect [ + 353.4596 + 617.7204 + 358.2804 + 622.5396 + ] + /Subtype /Widget + /T (checkbox1) + /Type /Annot + /V /Off +>> +endobj + +%% Original object ID: 216 0 +18 0 obj +<< + /AP << + /N << + /Off 70 0 R + /Yes 72 0 R + >> + >> + /AS /Yes + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 39 0 R + >> + >> + /DV /Yes + /F 4 + /FT /Btn + /MK << + /CA (8) + >> + /P 26 0 R + /Rect [ + 353.4596 + 607.1004 + 358.2804 + 611.9196 + ] + /Subtype /Widget + /T (checkbox2) + /Type /Annot + /V /Yes +>> +endobj + +%% Original object ID: 219 0 +19 0 obj +<< + /AP << + /N << + /Off 74 0 R + /Yes 76 0 R + >> + >> + /AS /Off + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 39 0 R + >> + >> + /DV /Off + /F 4 + /FT /Btn + /MK << + /CA (8) + >> + /P 26 0 R + /Rect [ + 353.4596 + 596.2004 + 358.2804 + 601.0196 + ] + /Subtype /Widget + /T (checkbox3) + /Type /Annot + /V /Off +>> +endobj + +%% Original object ID: 222 0 +20 0 obj +<< + /DV /2 + /FT /Btn + /Ff 49152 + /Kids [ + 78 0 R + 79 0 R + 80 0 R + ] + /P 26 0 R + /T (r2) + /V /2 +>> +endobj + +%% Original object ID: 232 0 +21 0 obj +<< + /AP << + /N 81 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F2 12 Tf) + /DR << + /Font 29 0 R + >> + /DV + /F 4 + /FT /Tx + /P 26 0 R + /Rect [ + 351.4596 + 500.0604 + 446.4404 + 507.2396 + ] + /Subtype /Widget + /T (text2) + /Type /Annot + /V +>> +endobj + +%% Original object ID: 234 0 +22 0 obj +<< + /AP << + /N 83 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf) + /DR << + /Font 29 0 R + >> + /DV + /F 4 + /FT /Ch + /Ff 393216 + /Opt [ + + + + + ] + /P 26 0 R + /Rect [ + 467.5796 + 459.7604 + 489.6004 + 489.1396 + ] + /Subtype /Widget + /T (combolist1) + /Type /Annot + /V +>> +endobj + +%% Original object ID: 236 0 +23 0 obj +<< + /AP << + /N 85 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf) + /DR << + /Font 29 0 R + >> + /DV + /F 4 + /FT /Ch + /Opt [ + + + + + + + + + + + + + ] + /P 26 0 R + /Rect [ + 369.3796 + 458.6604 + 394.4004 + 489.1396 + ] + /Subtype /Widget + /T (list1) + /Type /Annot + /V (1) +>> +endobj + +%% Original object ID: 238 0 +24 0 obj +<< + /AP << + /N 87 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf) + /DR << + /Font 29 0 R + >> + /DV + /F 4 + /FT /Ch + /Ff 131072 + /Opt [ + + + + + ] + /P 26 0 R + /Rect [ + 369.6596 + 438.9004 + 403.6804 + 448.3796 + ] + /Subtype /Widget + /T (drop1) + /Type /Annot + /V +>> +endobj + +%% Original object ID: 240 0 +25 0 obj +<< + /AP << + /N 89 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf) + /DR << + /Font 29 0 R + >> + /DV + /F 4 + /FT /Ch + /Ff 393216 + /Opt [ + + + + + ] + /P 26 0 R + /Rect [ + 467.8396 + 436.5804 + 496.6804 + 450.1396 + ] + /Subtype /Widget + /T (combodrop1) + /Type /Annot + /V +>> +endobj + +%% Page 1 +%% Original object ID: 15 0 +26 0 obj +<< + /Annots [ + 4 0 R + 32 0 R + 33 0 R + 34 0 R + 6 0 R + 7 0 R + 8 0 R + 48 0 R + 49 0 R + 50 0 R + 10 0 R + 13 0 R + 11 0 R + 12 0 R + 14 0 R + 91 0 R + 92 0 R + 15 0 R + 63 0 R + 64 0 R + 65 0 R + 17 0 R + 18 0 R + 19 0 R + 78 0 R + 79 0 R + 80 0 R + 21 0 R + 22 0 R + 23 0 R + 24 0 R + 25 0 R + 93 0 R + 94 0 R + ] + /Contents 95 0 R + /Group << + /CS /DeviceRGB + /I true + /S /Transparency + >> + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 27 0 R + /Resources 3 0 R + /StructParents 0 + /Type /Page +>> +endobj + +%% Original object ID: 16 0 +27 0 obj +<< + /Count 1 + /Kids [ + 26 0 R + ] + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Resources 3 0 R + /Type /Pages +>> +endobj + +%% Original object ID: 17 0 +28 0 obj +<< + /K [ + 97 0 R + ] + /ParentTree 98 0 R + /RoleMap << + /Document /Document + /Standard /P + >> + /Type /StructTreeRoot +>> +endobj + +%% Original object ID: 18 0 +29 0 obj +<< + /F1 99 0 R + /F2 100 0 R + /F3 101 0 R + /F4 102 0 R + /ZaDi 39 0 R +>> +endobj + +%% Original object ID: 19 0 +30 0 obj +<< + /BBox [ + 0 + 0 + 137.3 + 14.8 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 31 0 R +>> +stream +/Tx BMC +q +BT +0.18039 0.20392 0.21176 rg /F2 12 Tf +1 2.6 Td +(abc) Tj +ET +Q +EMC +endstream +endobj + +31 0 obj +77 +endobj + +%% Original object ID: 21 0 +32 0 obj +<< + /AP << + /N << + /1 103 0 R + /Off 105 0 R + >> + >> + /AS /Off + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 39 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /P 26 0 R + /Parent 5 0 R + /Rect [ + 152.749 + 648.501 + 164.801 + 660.549 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +%% Original object ID: 22 0 +33 0 obj +<< + /AP << + /N << + /2 107 0 R + /Off 109 0 R + >> + >> + /AS /2 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 39 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /P 26 0 R + /Parent 5 0 R + /Rect [ + 152.749 + 627.301 + 164.801 + 639.349 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +%% Original object ID: 23 0 +34 0 obj +<< + /AP << + /N << + /3 111 0 R + /Off 113 0 R + >> + >> + /AS /Off + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 39 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /P 26 0 R + /Parent 5 0 R + /Rect [ + 151.399 + 606.501 + 163.451 + 618.549 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +%% Original object ID: 24 0 +35 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 36 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +36 0 obj +12 +endobj + +%% Original object ID: 26 0 +37 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 38 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +1.9 1.9 Td (8) Tj +ET +Q +EMC +endstream +endobj + +38 0 obj +82 +endobj + +%% Original object ID: 28 0 +39 0 obj +<< + /BaseFont /ZapfDingbats + /Subtype /Type1 + /Type /Font +>> +endobj + +%% Original object ID: 29 0 +40 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 41 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +41 0 obj +12 +endobj + +%% Original object ID: 31 0 +42 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 43 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +1.9 1.9 Td (8) Tj +ET +Q +EMC +endstream +endobj + +43 0 obj +82 +endobj + +%% Original object ID: 33 0 +44 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 45 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +45 0 obj +12 +endobj + +%% Original object ID: 35 0 +46 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 47 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +1.9 1.9 Td (8) Tj +ET +Q +EMC +endstream +endobj + +47 0 obj +82 +endobj + +%% Original object ID: 37 0 +48 0 obj +<< + /AP << + /N << + /1 115 0 R + /Off 117 0 R + >> + >> + /AS /Off + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 39 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /P 26 0 R + /Parent 9 0 R + /Rect [ + 118.649 + 388.101 + 130.701 + 400.149 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +%% Original object ID: 38 0 +49 0 obj +<< + /AP << + /N << + /2 119 0 R + /Off 121 0 R + >> + >> + /AS /2 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 39 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /P 26 0 R + /Parent 9 0 R + /Rect [ + 119.349 + 362.201 + 131.401 + 374.249 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +%% Original object ID: 39 0 +50 0 obj +<< + /AP << + /N << + /3 123 0 R + /Off 125 0 R + >> + >> + /AS /Off + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 39 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /P 26 0 R + /Parent 9 0 R + /Rect [ + 119.349 + 333.551 + 131.401 + 345.599 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +%% Original object ID: 40 0 +51 0 obj +<< + /BBox [ + 0 + 0 + 237.45 + 17.95 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 52 0 R +>> +stream +/Tx BMC +q +BT +0.18039 0.20392 0.21176 rg /F2 12 Tf +1 4.175 Td +(salad ??) Tj +ET +Q +EMC +endstream +endobj + +52 0 obj +85 +endobj + +%% Original object ID: 42 0 +53 0 obj +<< + /BBox [ + 0 + 0 + 62.55 + 76.2 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 54 0 R +>> +stream +1 1 1 rg +0 -0.05 62.55 76.2 re f* +/Tx BMC +q +0.85 0.85 0.85 rg +0 62.1 62.55 12 re f +Q +q +BT +0.18039 0.20392 0.21176 rg /F4 10 Tf +1 64.1 Td +(1) Tj +0 -12 Td +(2) Tj +0 -12 Td +(3) Tj +0 -12 Td +(4) Tj +0 -12 Td +(five) Tj +0 -12 Td +(six) Tj +ET +Q +EMC +endstream +endobj + +54 0 obj +238 +endobj + +%% Original object ID: 44 0 +55 0 obj +<< + /BBox [ + 0 + 0 + 85.05 + 23.7 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 56 0 R +>> +stream +1 1 1 rg +0 -0.05 85.05 23.7 re f* +/Tx BMC +q +BT +0.18039 0.20392 0.21176 rg /F4 10 Tf +1 7.85 Td +(elephant) Tj +ET +Q +EMC +endstream +endobj + +56 0 obj +117 +endobj + +%% Original object ID: 46 0 +57 0 obj +<< + /BBox [ + 0 + 0 + 55.05 + 73.45 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 58 0 R +>> +stream +1 1 1 rg +0 -0.05 55.05 73.45 re f* +/Tx BMC +q +BT +0.18039 0.20392 0.21176 rg /F4 10 Tf +1 32.725 Td +(pi) Tj +ET +Q +EMC +endstream +endobj + +58 0 obj +114 +endobj + +%% Original object ID: 48 0 +59 0 obj +<< + /BBox [ + 0 + 0 + 72.1 + 33.9 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 60 0 R +>> +stream +1 1 1 rg +0 -0.05 72.1 33.9 re f* +/Tx BMC +q +BT +0.18039 0.20392 0.21176 rg /F4 10 Tf +1 12.95 Td +(delta) Tj +ET +Q +EMC +endstream +endobj + +60 0 obj +114 +endobj + +%% Original object ID: 202 0 +61 0 obj +<< + /BBox [ + 0 + 0 + 137.3 + 14.8 + ] + /Matrix [ + 0.4 + 0 + 0 + 0.4 + 306 + 396 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 62 0 R +>> +stream +/Tx BMC +q +BT +0.18039 0.20392 0.21176 rg /F2 12 Tf +1 2.6 Td +(abc) Tj +ET +Q +EMC +endstream +endobj + +62 0 obj +77 +endobj + +%% Original object ID: 204 0 +63 0 obj +<< + /AP << + /N << + /1 127 0 R + /Off 129 0 R + >> + >> + /AS /Off + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 39 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /P 26 0 R + /Parent 16 0 R + /Rect [ + 367.0996 + 655.4004 + 371.9204 + 660.2196 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +%% Original object ID: 205 0 +64 0 obj +<< + /AP << + /N << + /2 131 0 R + /Off 133 0 R + >> + >> + /AS /2 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 39 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /P 26 0 R + /Parent 16 0 R + /Rect [ + 367.0996 + 646.9204 + 371.9204 + 651.7396 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +%% Original object ID: 206 0 +65 0 obj +<< + /AP << + /N << + /3 135 0 R + /Off 137 0 R + >> + >> + /AS /Off + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 39 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /P 26 0 R + /Parent 16 0 R + /Rect [ + 366.5596 + 638.6004 + 371.3804 + 643.4196 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +%% Original object ID: 214 0 +66 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0.4 + 0 + 0 + 0.4 + 306 + 396 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 67 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +67 0 obj +12 +endobj + +%% Original object ID: 215 0 +68 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0.4 + 0 + 0 + 0.4 + 306 + 396 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 69 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +1.9 1.9 Td (8) Tj +ET +Q +EMC +endstream +endobj + +69 0 obj +82 +endobj + +%% Original object ID: 217 0 +70 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0.4 + 0 + 0 + 0.4 + 306 + 396 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 71 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +71 0 obj +12 +endobj + +%% Original object ID: 218 0 +72 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0.4 + 0 + 0 + 0.4 + 306 + 396 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 73 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +1.9 1.9 Td (8) Tj +ET +Q +EMC +endstream +endobj + +73 0 obj +82 +endobj + +%% Original object ID: 220 0 +74 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0.4 + 0 + 0 + 0.4 + 306 + 396 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 75 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +75 0 obj +12 +endobj + +%% Original object ID: 221 0 +76 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0.4 + 0 + 0 + 0.4 + 306 + 396 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 77 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +1.9 1.9 Td (8) Tj +ET +Q +EMC +endstream +endobj + +77 0 obj +82 +endobj + +%% Original object ID: 223 0 +78 0 obj +<< + /AP << + /N << + /1 139 0 R + /Off 141 0 R + >> + >> + /AS /Off + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 39 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /P 26 0 R + /Parent 20 0 R + /Rect [ + 353.4596 + 551.2404 + 358.2804 + 556.0596 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +%% Original object ID: 224 0 +79 0 obj +<< + /AP << + /N << + /2 143 0 R + /Off 145 0 R + >> + >> + /AS /2 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 39 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /P 26 0 R + /Parent 20 0 R + /Rect [ + 353.7396 + 540.8804 + 358.5604 + 545.6996 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +%% Original object ID: 225 0 +80 0 obj +<< + /AP << + /N << + /3 147 0 R + /Off 149 0 R + >> + >> + /AS /Off + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 39 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /P 26 0 R + /Parent 20 0 R + /Rect [ + 353.7396 + 529.4204 + 358.5604 + 534.2396 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +%% Original object ID: 233 0 +81 0 obj +<< + /BBox [ + 0 + 0 + 237.45 + 17.95 + ] + /Matrix [ + 0.4 + 0 + 0 + 0.4 + 306 + 396 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 82 0 R +>> +stream +/Tx BMC +q +BT +0.18039 0.20392 0.21176 rg /F2 12 Tf +1 4.175 Td +(salad ??) Tj +ET +Q +EMC +endstream +endobj + +82 0 obj +85 +endobj + +%% Original object ID: 235 0 +83 0 obj +<< + /BBox [ + 0 + 0 + 55.05 + 73.45 + ] + /Matrix [ + 0.4 + 0 + 0 + 0.4 + 306 + 396 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 84 0 R +>> +stream +1 1 1 rg +0 -0.05 55.05 73.45 re f* +/Tx BMC +q +BT +0.18039 0.20392 0.21176 rg /F4 10 Tf +1 32.725 Td +(pi) Tj +ET +Q +EMC +endstream +endobj + +84 0 obj +114 +endobj + +%% Original object ID: 237 0 +85 0 obj +<< + /BBox [ + 0 + 0 + 62.55 + 76.2 + ] + /Matrix [ + 0.4 + 0 + 0 + 0.4 + 306 + 396 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 86 0 R +>> +stream +1 1 1 rg +0 -0.05 62.55 76.2 re f* +/Tx BMC +q +0.85 0.85 0.85 rg +0 62.1 62.55 12 re f +Q +q +BT +0.18039 0.20392 0.21176 rg /F4 10 Tf +1 64.1 Td +(1) Tj +0 -12 Td +(2) Tj +0 -12 Td +(3) Tj +0 -12 Td +(4) Tj +0 -12 Td +(five) Tj +0 -12 Td +(six) Tj +ET +Q +EMC +endstream +endobj + +86 0 obj +238 +endobj + +%% Original object ID: 239 0 +87 0 obj +<< + /BBox [ + 0 + 0 + 85.05 + 23.7 + ] + /Matrix [ + 0.4 + 0 + 0 + 0.4 + 306 + 396 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 88 0 R +>> +stream +1 1 1 rg +0 -0.05 85.05 23.7 re f* +/Tx BMC +q +BT +0.18039 0.20392 0.21176 rg /F4 10 Tf +1 7.85 Td +(elephant) Tj +ET +Q +EMC +endstream +endobj + +88 0 obj +117 +endobj + +%% Original object ID: 241 0 +89 0 obj +<< + /BBox [ + 0 + 0 + 72.1 + 33.9 + ] + /Matrix [ + 0.4 + 0 + 0 + 0.4 + 306 + 396 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 90 0 R +>> +stream +1 1 1 rg +0 -0.05 72.1 33.9 re f* +/Tx BMC +q +BT +0.18039 0.20392 0.21176 rg /F4 10 Tf +1 12.95 Td +(delta) Tj +ET +Q +EMC +endstream +endobj + +90 0 obj +114 +endobj + +%% Original object ID: 50 0 +91 0 obj +<< + /AP << + /N 151 0 R + >> + /C [ + 1 + 1 + 0 + ] + /CA 1 + /Contents (Salad) + /CreationDate (D:20181231235455Z00'00) + /F 28 + /M (D:20181231235455Z00'00) + /Name /Comment + /P 26 0 R + /Popup 92 0 R + /Rect [ + 435 + 703 + 453 + 721 + ] + /Subtype /Text + /T (Jay Berkenbilt) + /Type /Annot +>> +endobj + +%% Original object ID: 51 0 +92 0 obj +<< + /F 28 + /Open false + /Parent 91 0 R + /Rect [ + 612 + 601 + 792 + 721 + ] + /Subtype /Popup + /Type /Annot +>> +endobj + +%% Original object ID: 242 0 +93 0 obj +<< + /AP << + /N 153 0 R + >> + /C [ + 1 + 1 + 0 + ] + /CA 1 + /Contents (Salad) + /CreationDate (D:20181231235455Z00'00) + /F 28 + /M (D:20181231235455Z00'00) + /Name /Comment + /P 26 0 R + /Popup 92 0 R + /Rect [ + 480 + 677.2 + 487.2 + 684.4 + ] + /Subtype /Text + /T (Jay Berkenbilt) + /Type /Annot +>> +endobj + +%% Original object ID: 244 0 +94 0 obj +<< + /F 28 + /Open false + /Parent 91 0 R + /Rect [ + 550.8 + 636.4 + 622.8 + 684.4 + ] + /Subtype /Popup + /Type /Annot +>> +endobj + +%% Contents for page 1 +%% Original object ID: 52 0 +95 0 obj +<< + /Length 96 0 R +>> +stream +0.1 w +/Artifact BMC +q 0 0.028 611.971 791.971 re +W* n +EMC +/Standard<>BDC +q 0 0 0 rg +BT +56.8 724.1 Td /F1 12 Tf[<01>1<0203>1<0403>1<05>58<06>-10<0708>2<09070a0b0408>2(\f)]TJ +ET +Q +EMC +/Standard<>BDC +q 0 0 0 rg +BT +56.8 693 Td /F1 12 Tf[(\r)68<03>1<0e0f>2<0710>-1<11>2<03>1<12>2<13>-7<0707070707>]TJ +ET +Q +EMC +/Standard<>BDC +q 0 0 0 rg +BT +56.8 661.9 Td /F1 12 Tf[<0414>1<1311>2<0b0715>]TJ +ET +Q +EMC +/Standard<>BDC +q 0 0 0 rg +BT +56.8 565.3 Td /F1 12 Tf[<16>1<0203>1<16>1<17>]TJ +ET +Q +EMC +/Standard<>BDC +q 0 0 0 rg +BT +56.8 413.5 Td /F1 12 Tf[<0414>1<1311>2<0b0718>]TJ +ET +Q +EMC +/Standard<>BDC +q 0 0 0 rg +BT +56.8 261.7 Td /F1 12 Tf[<19>-1<0b0f>2<14>1<0f>2<0b>]TJ +ET +Q +EMC +/Standard<>BDC +q 0 0 0 rg +BT +56.8 206.5 Td /F1 12 Tf[<1a>2<11>2<06>-2<0f>]TJ +ET +Q +EMC +/Standard<>BDC +q 0 0 0 rg +BT +269.5 206.5 Td /F1 12 Tf[<1b0b08>2<1c0b0714>1<06>-2<0712>2<11>2<06>-2<0f>]TJ +ET +Q +EMC +/Standard<>BDC +q 0 0 0 rg +BT +56.8 123.7 Td /F1 12 Tf[<1d>5<040b1e130b1f>-2( )]TJ +ET +Q +EMC +/Standard<>BDC +q 0 0 0 rg +BT +269.5 123.7 Td /F1 12 Tf[<1b0b08>2<1c0b0714>1<06>-2<0713040b1e130b1f>-2( )]TJ +ET +Q +EMC +/Form<>BDC +0 0 0 RG +1 1 1 rg +120.5 686.9 143.3 20.8 re B* +EMC +/Form<>BDC +151.55 642.6 183.45 23.9 re f* +q 1.2 w 0 0 0 RG +158.75 660.55 m 162.1 660.55 164.8 657.9 164.8 654.55 c +164.8 651.2 162.1 648.5 158.75 648.5 c +155.4 648.5 152.75 651.2 152.75 654.55 c +152.75 657.9 155.4 660.55 158.75 660.55 c s + Q +q 169.6 642.6 164.25 23.9 re W* n +q 0.18039 0.20392 0.21176 rg +BT +169.6 650.3 Td /F3 12 Tf[<0102>-1<0304>]TJ +ET +Q +Q +EMC +/Form<>BDC +1 1 1 rg +151.55 624.8 125.5 17.1 re f* +q 1.2 w 0 0 0 RG +158.75 639.35 m 162.1 639.35 164.8 636.7 164.8 633.35 c +164.8 630 162.1 627.3 158.75 627.3 c +155.4 627.3 152.75 630 152.75 633.35 c +152.75 636.7 155.4 639.35 158.75 639.35 c s + Q +q 169.6 624.8 106.3 17.1 re W* n +q 0.18039 0.20392 0.21176 rg +BT +169.6 629.1 Td /F3 12 Tf[<0102>-1<0305>]TJ +ET +Q +Q +EMC +/Form<>BDC +1 1 1 rg +150.2 605.7 118.7 13.7 re f* +q 1.2 w 0 0 0 RG +157.4 618.55 m 160.75 618.55 163.45 615.9 163.45 612.55 c +163.45 609.2 160.75 606.5 157.4 606.5 c +154.05 606.5 151.4 609.2 151.4 612.55 c +151.4 615.9 154.05 618.55 157.4 618.55 c s + Q +q 168.25 605.7 99.5 13.7 re W* n +q 0.18039 0.20392 0.21176 rg +BT +168.3 608.3 Td /F3 12 Tf[<0102>-1<0306>]TJ +ET +Q +Q +EMC +/Form<>BDC +1 1 1 rg +117.45 544.3 86.65 32.1 re f* +q 1.2 w 0 0 0 RG +118.65 554.3 12.05 12.05 re S + Q +q 135.5 544.3 67.45 32.1 re W* n +q 0.18039 0.20392 0.21176 rg +BT +135.5 556.1 Td /F3 12 Tf[<07>-2(\b)-1(\t)-1<060a0b>2(\f\r)-1<0e>]TJ +ET +Q +Q +EMC +/Form<>BDC +1 1 1 rg +117.45 523.2 85.3 21.15 re f* +q 1.2 w 0 0 0 RG +118.65 527.75 12.05 12.05 re S + Q +q 135.5 523.2 66.1 21.15 re W* n +q 0.18039 0.20392 0.21176 rg +BT +135.5 529.6 Td /F3 12 Tf[<07>-2(\b)-1(\t)-1<060a0b>2(\f\r)-1<0e0b>2<0f>]TJ +ET +Q +Q +EMC +/Form<>BDC +1 1 1 rg +117.45 498 72.35 17.1 re f* +q 1.2 w 0 0 0 RG +118.65 500.5 12.05 12.05 re S + Q +q 135.5 498 53.15 17.1 re W* n +q 0.18039 0.20392 0.21176 rg +BT +135.5 502.3 Td /F3 12 Tf[<07>-2(\b)-1(\t)-1<060a0b>2(\f\r)-1<0e0b>2<10>]TJ +ET +Q +Q +EMC +/Form<>BDC +1 1 1 rg +117.45 378.75 169.15 30.75 re f* +q 1.2 w 0 0 0 RG +124.65 400.15 m 128 400.15 130.7 397.5 130.7 394.15 c +130.7 390.8 128 388.1 124.65 388.1 c +121.3 388.1 118.65 390.8 118.65 394.15 c +118.65 397.5 121.3 400.15 124.65 400.15 c s + Q +q 135.5 378.75 149.95 30.75 re W* n +q 0.18039 0.20392 0.21176 rg +BT +135.5 389.9 Td /F3 12 Tf[<11>2<12>-1<13>2<14>-2(\r)-1<15>-1<0b>2<0c16>-1<13>2<13>2(\r)-1<15>]TJ +ET +Q +Q +EMC +/Form<>BDC +1 1 1 rg +118.15 352.85 180.7 30.75 re f* +q 1.2 w 0 0 0 RG +125.35 374.25 m 128.7 374.25 131.4 371.6 131.4 368.25 c +131.4 364.9 128.7 362.2 125.35 362.2 c +122 362.2 119.35 364.9 119.35 368.25 c +119.35 371.6 122 374.25 125.35 374.25 c s + Q +q 136.2 352.85 161.5 30.75 re W* n +q 0.18039 0.20392 0.21176 rg +BT +136.2 364 Td /F3 12 Tf[<11>2<12>-1<13>2<14>-2(\r)-1<15>-1<0b>2<0c16>-1<13>2<13>2(\r)-1<15>-1<0b>2<0f>]TJ +ET +Q +Q +EMC +/Form<>BDC +1 1 1 rg +118.15 322.85 139.15 33.5 re f* +q 1.2 w 0 0 0 RG +125.35 345.6 m 128.7 345.6 131.4 342.95 131.4 339.6 c +131.4 336.25 128.7 333.55 125.35 333.55 c +122 333.55 119.35 336.25 119.35 339.6 c +119.35 342.95 122 345.6 125.35 345.6 c s + Q +q 136.2 322.85 119.95 33.5 re W* n +q 0.18039 0.20392 0.21176 rg +BT +136.2 335.4 Td /F3 12 Tf[<11>2<12>-1<13>2<14>-2(\r)-1<15>-1<0b>2<0c16>-1<13>2<13>2(\r)-1<15>-1<0b>2<10>]TJ +ET +Q +Q +EMC +/Form<>BDC +0 0 0 RG +1 1 1 rg +110.65 257.15 243.45 23.95 re B* +EMC +/Form<>BDC +155.95 154.15 67.55 81.2 re B* +EMC +/Form<>BDC +156.65 104.75 90.05 28.7 re B* +EMC +/Form<>BDC +401.45 156.9 60.05 78.45 re B* +EMC +/Form<>BDC +402.1 98.95 77.1 38.9 re B* +EMC +Q +endstream +endobj + +%QDF: ignore_newline +96 0 obj +4747 +endobj + +%% Original object ID: 54 0 +97 0 obj +<< + /K [ + 155 0 R + 156 0 R + 157 0 R + 158 0 R + 159 0 R + 160 0 R + 161 0 R + 162 0 R + 163 0 R + 164 0 R + 165 0 R + 166 0 R + 167 0 R + 168 0 R + 169 0 R + 170 0 R + 171 0 R + 172 0 R + 173 0 R + 174 0 R + 175 0 R + 176 0 R + 177 0 R + 178 0 R + 179 0 R + 180 0 R + 181 0 R + 182 0 R + 183 0 R + 184 0 R + 185 0 R + 186 0 R + 187 0 R + 188 0 R + 189 0 R + 190 0 R + 191 0 R + 192 0 R + 193 0 R + 194 0 R + 195 0 R + 196 0 R + 197 0 R + 198 0 R + 199 0 R + 200 0 R + 201 0 R + 202 0 R + 203 0 R + 204 0 R + 205 0 R + 206 0 R + 207 0 R + 208 0 R + 209 0 R + 210 0 R + 211 0 R + 212 0 R + 213 0 R + ] + /P 28 0 R + /Pg 26 0 R + /S /Document + /Type /StructElem +>> +endobj + +%% Original object ID: 55 0 +98 0 obj +<< + /Nums [ + 0 + [ + 155 0 R + 157 0 R + 159 0 R + 166 0 R + 177 0 R + 188 0 R + 192 0 R + 192 0 R + 198 0 R + 198 0 R + 199 0 R + 200 0 R + 201 0 R + 202 0 R + 203 0 R + 204 0 R + 205 0 R + 206 0 R + 207 0 R + 208 0 R + 209 0 R + 210 0 R + 211 0 R + 212 0 R + 213 0 R + ] + ] +>> +endobj + +%% Original object ID: 56 0 +99 0 obj +<< + /BaseFont /BAAAAA+LiberationSerif + /FirstChar 0 + /FontDescriptor 214 0 R + /LastChar 32 + /Subtype /TrueType + /ToUnicode 215 0 R + /Type /Font + /Widths [ + 777 + 943 + 500 + 443 + 333 + 333 + 389 + 250 + 777 + 500 + 333 + 500 + 443 + 610 + 500 + 277 + 556 + 277 + 277 + 500 + 443 + 500 + 443 + 500 + 500 + 556 + 610 + 666 + 500 + 722 + 500 + 722 + 500 + ] +>> +endobj + +%% Original object ID: 57 0 +100 0 obj +<< + /BaseFont /LiberationSans + /Encoding /WinAnsiEncoding + /FirstChar 32 + /FontDescriptor 217 0 R + /LastChar 255 + /Subtype /TrueType + /Type /Font + /Widths [ + 277 + 277 + 354 + 556 + 556 + 889 + 666 + 190 + 333 + 333 + 389 + 583 + 277 + 333 + 277 + 277 + 556 + 556 + 556 + 556 + 556 + 556 + 556 + 556 + 556 + 556 + 277 + 277 + 583 + 583 + 583 + 556 + 1015 + 666 + 666 + 722 + 722 + 666 + 610 + 777 + 722 + 277 + 500 + 666 + 556 + 833 + 722 + 777 + 666 + 777 + 722 + 666 + 610 + 722 + 666 + 943 + 666 + 666 + 610 + 277 + 277 + 277 + 469 + 556 + 333 + 556 + 556 + 500 + 556 + 556 + 277 + 556 + 556 + 222 + 222 + 500 + 222 + 833 + 556 + 556 + 556 + 556 + 333 + 500 + 277 + 556 + 500 + 722 + 500 + 500 + 500 + 333 + 259 + 333 + 583 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 277 + 333 + 556 + 556 + 556 + 556 + 259 + 556 + 333 + 736 + 370 + 556 + 583 + 333 + 736 + 552 + 399 + 548 + 333 + 333 + 333 + 576 + 537 + 333 + 333 + 333 + 365 + 556 + 833 + 833 + 833 + 610 + 666 + 666 + 666 + 666 + 666 + 666 + 1000 + 722 + 666 + 666 + 666 + 666 + 277 + 277 + 277 + 277 + 722 + 722 + 777 + 777 + 777 + 777 + 777 + 583 + 777 + 722 + 722 + 722 + 722 + 666 + 666 + 610 + 556 + 556 + 556 + 556 + 556 + 556 + 889 + 500 + 556 + 556 + 556 + 556 + 277 + 277 + 277 + 277 + 556 + 556 + 556 + 556 + 556 + 556 + 556 + 548 + 610 + 556 + 556 + 556 + 556 + 500 + 556 + 500 + ] +>> +endobj + +%% Original object ID: 58 0 +101 0 obj +<< + /BaseFont /DAAAAA+LiberationSans + /FirstChar 0 + /FontDescriptor 218 0 R + /LastChar 22 + /Subtype /TrueType + /ToUnicode 219 0 R + /Type /Font + /Widths [ + 750 + 333 + 556 + 333 + 556 + 556 + 500 + 722 + 556 + 556 + 500 + 277 + 666 + 556 + 500 + 556 + 556 + 777 + 556 + 277 + 222 + 556 + 556 + ] +>> +endobj + +%% Original object ID: 59 0 +102 0 obj +<< + /BaseFont /DejaVuSans + /Encoding /WinAnsiEncoding + /FirstChar 32 + /FontDescriptor 221 0 R + /LastChar 255 + /Subtype /TrueType + /Type /Font + /Widths [ + 317 + 400 + 459 + 837 + 636 + 950 + 779 + 274 + 390 + 390 + 500 + 837 + 317 + 360 + 317 + 336 + 636 + 636 + 636 + 636 + 636 + 636 + 636 + 636 + 636 + 636 + 336 + 336 + 837 + 837 + 837 + 530 + 1000 + 684 + 686 + 698 + 770 + 631 + 575 + 774 + 751 + 294 + 294 + 655 + 557 + 862 + 748 + 787 + 603 + 787 + 694 + 634 + 610 + 731 + 684 + 988 + 685 + 610 + 685 + 390 + 336 + 390 + 837 + 500 + 500 + 612 + 634 + 549 + 634 + 615 + 352 + 634 + 633 + 277 + 277 + 579 + 277 + 974 + 633 + 611 + 634 + 634 + 411 + 520 + 392 + 633 + 591 + 817 + 591 + 591 + 524 + 636 + 336 + 636 + 837 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 317 + 400 + 636 + 636 + 636 + 636 + 336 + 500 + 500 + 1000 + 471 + 611 + 837 + 360 + 1000 + 500 + 500 + 837 + 400 + 400 + 500 + 636 + 636 + 317 + 500 + 400 + 471 + 611 + 969 + 969 + 969 + 530 + 684 + 684 + 684 + 684 + 684 + 684 + 974 + 698 + 631 + 631 + 631 + 631 + 294 + 294 + 294 + 294 + 774 + 748 + 787 + 787 + 787 + 787 + 787 + 837 + 787 + 731 + 731 + 731 + 731 + 610 + 604 + 629 + 612 + 612 + 612 + 612 + 612 + 612 + 981 + 549 + 615 + 615 + 615 + 615 + 277 + 277 + 277 + 277 + 611 + 633 + 611 + 611 + 611 + 611 + 611 + 837 + 611 + 633 + 633 + 633 + 633 + 591 + 634 + 591 + ] +>> +endobj + +%% Original object ID: 60 0 +103 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 104 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0.18039 0.20392 0.21176 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +104 0 obj +220 +endobj + +%% Original object ID: 62 0 +105 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 106 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +106 0 obj +12 +endobj + +%% Original object ID: 64 0 +107 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 108 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0.18039 0.20392 0.21176 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +108 0 obj +220 +endobj + +%% Original object ID: 66 0 +109 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 110 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +110 0 obj +12 +endobj + +%% Original object ID: 68 0 +111 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 112 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0.18039 0.20392 0.21176 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +112 0 obj +220 +endobj + +%% Original object ID: 70 0 +113 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 114 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +114 0 obj +12 +endobj + +%% Original object ID: 72 0 +115 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 116 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0.18039 0.20392 0.21176 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +116 0 obj +220 +endobj + +%% Original object ID: 74 0 +117 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 118 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +118 0 obj +12 +endobj + +%% Original object ID: 76 0 +119 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 120 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0.18039 0.20392 0.21176 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +120 0 obj +220 +endobj + +%% Original object ID: 78 0 +121 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 122 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +122 0 obj +12 +endobj + +%% Original object ID: 80 0 +123 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 124 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0.18039 0.20392 0.21176 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +124 0 obj +220 +endobj + +%% Original object ID: 82 0 +125 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 126 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +126 0 obj +12 +endobj + +%% Original object ID: 207 0 +127 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0.4 + 0 + 0 + 0.4 + 306 + 396 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 128 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0.18039 0.20392 0.21176 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +128 0 obj +220 +endobj + +%% Original object ID: 208 0 +129 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0.4 + 0 + 0 + 0.4 + 306 + 396 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 130 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +130 0 obj +12 +endobj + +%% Original object ID: 209 0 +131 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0.4 + 0 + 0 + 0.4 + 306 + 396 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 132 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0.18039 0.20392 0.21176 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +132 0 obj +220 +endobj + +%% Original object ID: 210 0 +133 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0.4 + 0 + 0 + 0.4 + 306 + 396 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 134 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +134 0 obj +12 +endobj + +%% Original object ID: 211 0 +135 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0.4 + 0 + 0 + 0.4 + 306 + 396 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 136 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0.18039 0.20392 0.21176 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +136 0 obj +220 +endobj + +%% Original object ID: 212 0 +137 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0.4 + 0 + 0 + 0.4 + 306 + 396 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 138 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +138 0 obj +12 +endobj + +%% Original object ID: 226 0 +139 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0.4 + 0 + 0 + 0.4 + 306 + 396 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 140 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0.18039 0.20392 0.21176 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +140 0 obj +220 +endobj + +%% Original object ID: 227 0 +141 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0.4 + 0 + 0 + 0.4 + 306 + 396 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 142 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +142 0 obj +12 +endobj + +%% Original object ID: 228 0 +143 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0.4 + 0 + 0 + 0.4 + 306 + 396 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 144 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0.18039 0.20392 0.21176 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +144 0 obj +220 +endobj + +%% Original object ID: 229 0 +145 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0.4 + 0 + 0 + 0.4 + 306 + 396 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 146 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +146 0 obj +12 +endobj + +%% Original object ID: 230 0 +147 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0.4 + 0 + 0 + 0.4 + 306 + 396 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 148 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0.18039 0.20392 0.21176 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +148 0 obj +220 +endobj + +%% Original object ID: 231 0 +149 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0.4 + 0 + 0 + 0.4 + 306 + 396 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 150 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +150 0 obj +12 +endobj + +%% Original object ID: 84 0 +151 0 obj +<< + /BBox [ + 0 + 0 + 18 + 18 + ] + /Resources << + /ExtGState << + /GS0 << + /AIS false + /BM /Normal + /CA .6 + /Type /ExtGState + /ca .6 + >> + >> + >> + /Subtype /Form + /Type /XObject + /Length 152 0 R +>> +stream +q 1 1 1 rg 0 i 1 w 4 M 1 j 0 J []0 d /GS0 gs 1 0 0 1 9 5.0908 cm 7.74 12.616 m -7.74 12.616 l -8.274 12.616 -8.707 12.184 -8.707 11.649 c -8.707 -3.831 l -8.707 -4.365 -8.274 -4.798 -7.74 -4.798 c 7.74 -4.798 l 8.274 -4.798 8.707 -4.365 8.707 -3.831 c 8.707 11.649 l 8.707 12.184 8.274 12.616 7.74 12.616 c h f Q 0 G 1 1 0 rg 0 i 0.60 w 4 M 1 j 0 J []0 d 1 1 0 rg 0 G 0 i 0.59 w 4 M 1 j 0 J []0 d 1 0 0 1 9 5.0908 cm 0 0 m -0.142 0 -0.28 0.008 -0.418 0.015 c -2.199 -1.969 -5.555 -2.242 -4.642 -1.42 c -4.024 -0.862 -3.916 0.111 -3.954 0.916 c -5.658 1.795 -6.772 3.222 -6.772 4.839 c -6.772 7.509 -3.74 9.674 0 9.674 c 3.74 9.674 6.772 7.509 6.772 4.839 c 6.772 2.167 3.74 0 0 0 c 7.74 12.616 m -7.74 12.616 l -8.274 12.616 -8.707 12.184 -8.707 11.649 c -8.707 -3.831 l -8.707 -4.365 -8.274 -4.798 -7.74 -4.798 c 7.74 -4.798 l 8.274 -4.798 8.707 -4.365 8.707 -3.831 c 8.707 11.649 l 8.707 12.184 8.274 12.616 7.74 12.616 c b +endstream +endobj + +152 0 obj +929 +endobj + +%% Original object ID: 243 0 +153 0 obj +<< + /BBox [ + 0 + 0 + 18 + 18 + ] + /Matrix [ + 0.4 + 0 + 0 + 0.4 + 306 + 396 + ] + /Resources << + /ExtGState << + /GS0 << + /AIS false + /BM /Normal + /CA .6 + /Type /ExtGState + /ca .6 + >> + >> + >> + /Subtype /Form + /Type /XObject + /Length 154 0 R +>> +stream +q 1 1 1 rg 0 i 1 w 4 M 1 j 0 J []0 d /GS0 gs 1 0 0 1 9 5.0908 cm 7.74 12.616 m -7.74 12.616 l -8.274 12.616 -8.707 12.184 -8.707 11.649 c -8.707 -3.831 l -8.707 -4.365 -8.274 -4.798 -7.74 -4.798 c 7.74 -4.798 l 8.274 -4.798 8.707 -4.365 8.707 -3.831 c 8.707 11.649 l 8.707 12.184 8.274 12.616 7.74 12.616 c h f Q 0 G 1 1 0 rg 0 i 0.60 w 4 M 1 j 0 J []0 d 1 1 0 rg 0 G 0 i 0.59 w 4 M 1 j 0 J []0 d 1 0 0 1 9 5.0908 cm 0 0 m -0.142 0 -0.28 0.008 -0.418 0.015 c -2.199 -1.969 -5.555 -2.242 -4.642 -1.42 c -4.024 -0.862 -3.916 0.111 -3.954 0.916 c -5.658 1.795 -6.772 3.222 -6.772 4.839 c -6.772 7.509 -3.74 9.674 0 9.674 c 3.74 9.674 6.772 7.509 6.772 4.839 c 6.772 2.167 3.74 0 0 0 c 7.74 12.616 m -7.74 12.616 l -8.274 12.616 -8.707 12.184 -8.707 11.649 c -8.707 -3.831 l -8.707 -4.365 -8.274 -4.798 -7.74 -4.798 c 7.74 -4.798 l 8.274 -4.798 8.707 -4.365 8.707 -3.831 c 8.707 11.649 l 8.707 12.184 8.274 12.616 7.74 12.616 c b +endstream +endobj + +154 0 obj +929 +endobj + +%% Original object ID: 86 0 +155 0 obj +<< + /A 222 0 R + /K [ + 0 + ] + /P 97 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 87 0 +156 0 obj +<< + /A 223 0 R + /P 97 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 88 0 +157 0 obj +<< + /A 224 0 R + /K [ + 1 + ] + /P 97 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 89 0 +158 0 obj +<< + /A 225 0 R + /P 97 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 90 0 +159 0 obj +<< + /A 226 0 R + /K [ + 2 + ] + /P 97 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 91 0 +160 0 obj +<< + /A 227 0 R + /P 97 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 92 0 +161 0 obj +<< + /A 228 0 R + /P 97 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 93 0 +162 0 obj +<< + /A 229 0 R + /P 97 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 94 0 +163 0 obj +<< + /A 230 0 R + /P 97 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 95 0 +164 0 obj +<< + /A 231 0 R + /P 97 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 96 0 +165 0 obj +<< + /A 232 0 R + /P 97 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 97 0 +166 0 obj +<< + /A 233 0 R + /K [ + 3 + ] + /P 97 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 98 0 +167 0 obj +<< + /A 234 0 R + /P 97 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 99 0 +168 0 obj +<< + /A 235 0 R + /P 97 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 100 0 +169 0 obj +<< + /A 236 0 R + /P 97 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 101 0 +170 0 obj +<< + /A 237 0 R + /P 97 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 102 0 +171 0 obj +<< + /A 238 0 R + /P 97 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 103 0 +172 0 obj +<< + /A 239 0 R + /P 97 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 104 0 +173 0 obj +<< + /A 240 0 R + /P 97 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 105 0 +174 0 obj +<< + /A 241 0 R + /P 97 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 106 0 +175 0 obj +<< + /A 242 0 R + /P 97 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 107 0 +176 0 obj +<< + /A 243 0 R + /P 97 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 108 0 +177 0 obj +<< + /A 244 0 R + /K [ + 4 + ] + /P 97 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 109 0 +178 0 obj +<< + /A 245 0 R + /P 97 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 110 0 +179 0 obj +<< + /A 246 0 R + /P 97 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 111 0 +180 0 obj +<< + /A 247 0 R + /P 97 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 112 0 +181 0 obj +<< + /A 248 0 R + /P 97 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 113 0 +182 0 obj +<< + /A 249 0 R + /P 97 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 114 0 +183 0 obj +<< + /A 250 0 R + /P 97 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 115 0 +184 0 obj +<< + /A 251 0 R + /P 97 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 116 0 +185 0 obj +<< + /A 252 0 R + /P 97 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 117 0 +186 0 obj +<< + /A 253 0 R + /P 97 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 118 0 +187 0 obj +<< + /A 254 0 R + /P 97 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 119 0 +188 0 obj +<< + /A 255 0 R + /K [ + 5 + ] + /P 97 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 120 0 +189 0 obj +<< + /A 256 0 R + /P 97 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 121 0 +190 0 obj +<< + /A 257 0 R + /P 97 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 122 0 +191 0 obj +<< + /A 258 0 R + /P 97 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 123 0 +192 0 obj +<< + /A 259 0 R + /K [ + 6 + 7 + ] + /P 97 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 124 0 +193 0 obj +<< + /A 260 0 R + /P 97 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 125 0 +194 0 obj +<< + /A 261 0 R + /P 97 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 126 0 +195 0 obj +<< + /A 262 0 R + /P 97 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 127 0 +196 0 obj +<< + /A 263 0 R + /P 97 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 128 0 +197 0 obj +<< + /A 264 0 R + /P 97 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 129 0 +198 0 obj +<< + /A 265 0 R + /K [ + 8 + 9 + ] + /P 97 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 130 0 +199 0 obj +<< + /K [ + 10 + ] + /P 97 0 R + /Pg 26 0 R + /S /Form + /Type /StructElem +>> +endobj + +%% Original object ID: 131 0 +200 0 obj +<< + /K [ + 11 + ] + /P 97 0 R + /Pg 26 0 R + /S /Form + /Type /StructElem +>> +endobj + +%% Original object ID: 132 0 +201 0 obj +<< + /K [ + 12 + ] + /P 97 0 R + /Pg 26 0 R + /S /Form + /Type /StructElem +>> +endobj + +%% Original object ID: 133 0 +202 0 obj +<< + /K [ + 13 + ] + /P 97 0 R + /Pg 26 0 R + /S /Form + /Type /StructElem +>> +endobj + +%% Original object ID: 134 0 +203 0 obj +<< + /K [ + 14 + ] + /P 97 0 R + /Pg 26 0 R + /S /Form + /Type /StructElem +>> +endobj + +%% Original object ID: 135 0 +204 0 obj +<< + /K [ + 15 + ] + /P 97 0 R + /Pg 26 0 R + /S /Form + /Type /StructElem +>> +endobj + +%% Original object ID: 136 0 +205 0 obj +<< + /K [ + 16 + ] + /P 97 0 R + /Pg 26 0 R + /S /Form + /Type /StructElem +>> +endobj + +%% Original object ID: 137 0 +206 0 obj +<< + /K [ + 17 + ] + /P 97 0 R + /Pg 26 0 R + /S /Form + /Type /StructElem +>> +endobj + +%% Original object ID: 138 0 +207 0 obj +<< + /K [ + 18 + ] + /P 97 0 R + /Pg 26 0 R + /S /Form + /Type /StructElem +>> +endobj + +%% Original object ID: 139 0 +208 0 obj +<< + /K [ + 19 + ] + /P 97 0 R + /Pg 26 0 R + /S /Form + /Type /StructElem +>> +endobj + +%% Original object ID: 140 0 +209 0 obj +<< + /K [ + 20 + ] + /P 97 0 R + /Pg 26 0 R + /S /Form + /Type /StructElem +>> +endobj + +%% Original object ID: 141 0 +210 0 obj +<< + /K [ + 21 + ] + /P 97 0 R + /Pg 26 0 R + /S /Form + /Type /StructElem +>> +endobj + +%% Original object ID: 142 0 +211 0 obj +<< + /K [ + 22 + ] + /P 97 0 R + /Pg 26 0 R + /S /Form + /Type /StructElem +>> +endobj + +%% Original object ID: 143 0 +212 0 obj +<< + /K [ + 23 + ] + /P 97 0 R + /Pg 26 0 R + /S /Form + /Type /StructElem +>> +endobj + +%% Original object ID: 144 0 +213 0 obj +<< + /K [ + 24 + ] + /P 97 0 R + /Pg 26 0 R + /S /Form + /Type /StructElem +>> +endobj + +%% Original object ID: 145 0 +214 0 obj +<< + /Ascent 891 + /CapHeight 981 + /Descent -216 + /Flags 4 + /FontBBox [ + -543 + -303 + 1277 + 981 + ] + /FontFile2 266 0 R + /FontName /BAAAAA+LiberationSerif + /ItalicAngle 0 + /StemV 80 + /Type /FontDescriptor +>> +endobj + +%% Original object ID: 146 0 +215 0 obj +<< + /Length 216 0 R +>> +stream +/CIDInit/ProcSet findresource begin +12 dict begin +begincmap +/CIDSystemInfo<< +/Registry (Adobe) +/Ordering (UCS) +/Supplement 0 +>> def +/CMapName/Adobe-Identity-UCS def +/CMapType 2 def +1 begincodespacerange +<00> +endcodespacerange +32 beginbfchar +<01> <0057> +<02> <0068> +<03> <0065> +<04> <0072> +<05> <2019> +<06> <0073> +<07> <0020> +<08> <006D> +<09> <0079> +<0A> <0066> +<0B> <006F> +<0C> <003F> +<0D> <0054> +<0E> <0078> +<0F> <0074> +<10> <0046> +<11> <0069> +<12> <006C> +<13> <0064> +<14> <0061> +<15> <0031> +<16> <0063> +<17> <006B> +<18> <0032> +<19> <0050> +<1A> <004C> +<1B> <0043> +<1C> <0062> +<1D> <0044> +<1E> <0070> +<1F> <0077> +<20> <006E> +endbfchar +endcmap +CMapName currentdict /CMap defineresource pop +end +end +endstream +endobj + +216 0 obj +702 +endobj + +%% Original object ID: 148 0 +217 0 obj +<< + /Ascent 905 + /CapHeight 979 + /Descent -211 + /Flags 4 + /FontBBox [ + -543 + -303 + 1300 + 979 + ] + /FontName /LiberationSans + /ItalicAngle 0 + /StemV 80 + /Type /FontDescriptor +>> +endobj + +%% Original object ID: 149 0 +218 0 obj +<< + /Ascent 905 + /CapHeight 979 + /Descent -211 + /Flags 4 + /FontBBox [ + -543 + -303 + 1300 + 979 + ] + /FontFile2 268 0 R + /FontName /DAAAAA+LiberationSans + /ItalicAngle 0 + /StemV 80 + /Type /FontDescriptor +>> +endobj + +%% Original object ID: 150 0 +219 0 obj +<< + /Length 220 0 R +>> +stream +/CIDInit/ProcSet findresource begin +12 dict begin +begincmap +/CIDSystemInfo<< +/Registry (Adobe) +/Ordering (UCS) +/Supplement 0 +>> def +/CMapName/Adobe-Identity-UCS def +/CMapType 2 def +1 begincodespacerange +<00> +endcodespacerange +22 beginbfchar +<01> <0072> +<02> <0031> +<03> <002D> +<04> <0061> +<05> <0062> +<06> <0063> +<07> <0043> +<08> <0068> +<09> <0065> +<0A> <006B> +<0B> <0020> +<0C> <0042> +<0D> <006F> +<0E> <0078> +<0F> <0032> +<10> <0033> +<11> <004F> +<12> <0070> +<13> <0074> +<14> <0069> +<15> <006E> +<16> <0075> +endbfchar +endcmap +CMapName currentdict /CMap defineresource pop +end +end +endstream +endobj + +220 0 obj +582 +endobj + +%% Original object ID: 152 0 +221 0 obj +<< + /Ascent 928 + /CapHeight 1232 + /Descent -235 + /Flags 4 + /FontBBox [ + -1020 + -462 + 1792 + 1232 + ] + /FontName /DejaVuSans + /ItalicAngle 0 + /StemV 80 + /Type /FontDescriptor +>> +endobj + +%% Original object ID: 153 0 +222 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 154 0 +223 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 155 0 +224 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 156 0 +225 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 157 0 +226 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 158 0 +227 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 159 0 +228 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 160 0 +229 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 161 0 +230 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 162 0 +231 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 163 0 +232 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 164 0 +233 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 165 0 +234 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 166 0 +235 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 167 0 +236 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 168 0 +237 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 169 0 +238 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 170 0 +239 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 171 0 +240 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 172 0 +241 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 173 0 +242 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 174 0 +243 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 175 0 +244 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 176 0 +245 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 177 0 +246 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 178 0 +247 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 179 0 +248 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 180 0 +249 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 181 0 +250 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 182 0 +251 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 183 0 +252 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 184 0 +253 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 185 0 +254 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 186 0 +255 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 187 0 +256 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 188 0 +257 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 189 0 +258 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 190 0 +259 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 191 0 +260 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 192 0 +261 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 193 0 +262 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 194 0 +263 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 195 0 +264 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 196 0 +265 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 197 0 +266 0 obj +<< + /Length1 16184 + /Length 267 0 R +>> +stream +true @cmapcvt =O;fpgm\glyfky h"dhead0.6hheagy/$hmtx +{/(loca؜/Dmaxp*V/ name?H0 vpostd$; prepLb;  +  H=p=L]FPiuiPZZP`PPm{1o1MffJf/^tFF<}Shv= }JAl +T/HjgaAU )% 42$ +U4Kan_=m +{dN@G[ZYXUTSRQPONMLKJIHGFEDCBA@?>=<;:9876510/.-,('&%$#"! + , `E% Fa#E#aH-, EhD-,E#F` a F`&#HH-,E#F#a ` &a a&#HH-,E#F`@a f`&#HH-,E#F#a@` &a@a&#HH-, <<-, E# D# ZQX# D#Y QX# MD#Y &QX# D#Y!!-, EhD ` EFvhE`D-, +C#Ce +-, + C#C -,(#p(>(#p(E: -, E%EadPQXED!!Y-,I#D-, EC`D-,CCe +-, i@a ,b`+ d#da\XaY-,E+)#D)z-,Ee,#DE+#D-,KRXED!!Y-,KQXED!!Y-,%# `#-,%# a#-,%-,CRX!!!!!F#F`F# F`ab# # pE` PXaFY`h:Y-, E%FRKQ[X%F ha%%?#!8!Y-, E%FPX%F ha%%?#!8!Y-,CC -,!! d#d@b-,!QX d#d b@/+Y`-,!QX d#dUb/+Y`-, d#d@b`#!-,KSX%Id#Ei@ab aj#D#!# 9/Y-,KSX %Idi &%Id#ab aj#D&#D#D& 9# 9//Y-,E#E`#E`#E`#vhb -,H+-, ETX@D E@aD!!Y-,E0/E#Ea``iD-,KQX/#p#B!!Y-,KQX %EiSXD!!Y!!Y-,EC`c`iD-,/ED-,E# E`D-,E#E`D-,K#QX34 34YDD-,CX&EXdf`d `f X!@YaY#XeY)#D#)!!!!!Y-,CTXKS#KQZX8!!Y!!!!Y-,CX%Ed `f X!@Ya#XeY)#D%% XY%% F%#B<%%%% F%`#B< XY%%)) EeD%%)%% XY%%CH%%%%`CH!Y!!!!!!!-,% F%#B%%EH!!!!-,% %%CH!!!-,E# E P X#e#Y#h @PX!@Y#XeY`D-,KS#KQZX E`D!!Y-,KTX E`D!!Y-,KS#KQZX8!!Y-,!KTX8!!Y-,CTXF+!!!!Y-,CTXG+!!!Y-,CTXH+!!!!Y-,CTXI+!!!Y-, #KSKQZX#8!!Y-,%ISX @8!Y-,F#F`#Fa#  Fab@@pE`h:-, #Id#SX<!Y-,KRX}zY-,KKTB-,B#Q@SZX TXC`BY$QX @TXC`B$TX C`BKKRXC`BY@TXC`BY@cTXC`BY@cTXC`BY&QX@cTX@C`BY@cTXC`BYYYYYYCTX@ +@@ @  CTX@   CRX@ @@ @Y@U@cUZX  YYYBBBBB-,Eh#KQX# E d@PX|Yh`YD-,%%#>#> +#eB #B#?#? #eB#B-,CPCT[X!# Y-,Y+-,-=O@  + + H  +_Y @ + H dVfVF6&ipdpdT@4$P@09pO/]]]]]]]qqqqqrrrrrr^]]_]]]]]]]qqqqqqqqqqqqrr_rrrrr^]]]]]]]]]]]qqqq?3333+3?3+3333/3/3+993310# #'5! 3 '5!^55Du?i-\0ud 55O^55@y   PY PY RY9p`P@0 p`@p`]]]]]]]qqqqqrrrrrrrrrr^]]]]q?+33?3+333?+99333310>32!574#"!57'5!FH?z|rk}^dw2h.)<--^---PF@ZPY  PY QY p`P>P@0 qqqrrrrr^]]]]]]]]]?+?+9/_^]+993333103267#"&463 "!4&=g600Vοiho\P 8.fR)Q@-  PY + PY +_@qrr?+3?+?333_^]3992310#'"!57'5!>3+:22Bww <<nB-- -u2\DR@y Y[ `hp?P`/8P/^]]]]]]qqqqqrr^]]]]]]qqqqrrr^]]]]]]q?3++9333105654&'&54632埒%DD5=R*M8p #@69WT(Y@4! )* !PY PY*p*`*P* **_*O*]]]qqqqq?3+?3+9999333310#"&'533254/.54632#'&#"ӱF0-1Kx™Ye\2g/*5rQUMNZ?#Dz4!DcF|m/PD9N2.CV+1@ !((--! 321.PY1(! -+-PY+ RY '%RYv3V363$333333333b3P3D303$333h3333t3@343$33333333d3P3D343$333333333k3;3 3338333`3T3@343333333t@+3T3@343333333p3P333^]]]]]]_]]qqqqqqqqqqqrrrrrrrr^]]]]]]]]]]]qqqqqqqqqqqqqrrrrrrrrr^]]]]]]_]]]]]]]qqqqqq?+33?+33?33+33333?+93333310>32>32!574#"!574&#"!57'5!FK@EuMDyUEE?BUUXVww`+:49+B--X + 6A--XSY-- -F@      PYQYtfVt`PB2$htfTF2"rbRD4&tbRD4&8r@WfTF2$tdPD4pO^]]]]]]]_]]qqqqqqqqqqqqr_rrrrrrrrrrrrrr^]]]]]]]]]]]]]]]]qqqqqqqqqqqqqqqqrrrrrrrrrrrrrrr^]]]]]]]]]]]]]]qqqq?2+?3+33333_^]3993310"'5332>7'5!'5!NL/!74XI7`^bA`tF`54&#"#563 #"&54632PVNjpR#B9ME34EF32F^Ny1+ 1HH13FE%=<@     `Y _Y?_? kpOo_@0_0;_O0p_0 p?/]]]]]]]]]]qqqqqqqqqrrrrrrrr^]]]]]]qqqqqqqqqqqrrrrrrrr^]]]]]]]]qq?+3?+33/_^]39310!57#"#!#'.+;3]CDx15; k5@e   +@adH$4Dd $D +9$d$!H@*H@0   PY   PY ?3+333?39+333_^]_]++qr^]qr+933333310%!57 !57 '5!'5! V}m5o}ЁRl5---M------.-G@' + PY  QY?/]]]r?+3?33+39922310"&5#5?33#327N`_{}e?;0:S#rg-'TABA;)=@ `Y_o-  `Y _Y _Ytdt`TDtdT@0 9q_qrrrrr^]]]]]]]]]]]]]]qqqqqqqqrrrrrrr?+3?++9/_^]_]]+9333310!57'5!#'&+!73#'B p==Z555Ѡd+L @f  SY@PY PY9p`P@P p`P@]]]]]]]qqqqqqqrrrr_rr^]]?+3?+_^]+933310#"&54632!57'5!{@-,@@,-@ ++,@@,-@@:-- -) @p + PY PY      t d $   9   p ` P @    P      p ` P @ ]]]]]]]qqqqqqrrrr_rrr^]]]]]]]]]]]?+3?+910%!57'5!oFF---J@O PY PYPYQYGP@0 @` ]]]]qqqrrrrr^]?+33?+?+?+99333310%# 432&='5!!327&# qloDtqZYrFZ!--;'Hq%m@?%% '&%" +"QYPY  +PYPY'_'@'']qrr?+?+?39/_^]+9+393333102!'#"4>?54&#"#563267њurIGJdS"8_Dc2~-^r^{Aa\/u#^nH +K@-   @ +sY@    ` @ ]]]]qq?+3?_^]93310%!5%5%3s/4P55Fa5NN`@< PY QY>@0 @_]]qqqqqrrrr^]?+3?3+993310%# 4632#'&# 327N1Z7ه7+Stl9$)/hԵ!'@M @` @P=0P`PpY]HMUH59H@"+1HPY PY PY?+3?39+333?+++++_^]qr^]qr9333339310 '5! !57!57'5!XbLuXfV{dw1-------ZL`@7  +sYvY@`@]]]]qq?+3?+3/_^]999333310)57>54&#"#632!˺Iv5p+#BWYd΅+pűL[;!=@ + + `Y `Y_Y + _Y o/oO?/o_8/?^]]]]]]qqqqrr^]]]]]]qqqqqqqrrrrr?+3?++9/+99333104&+326!57'5! #ZbhN˟B555u;h=8@   _Y _Y `Y tfVF&vfTF&vfTD2 9d4p@0 pP@]]]]]]]]qqqqqqqqq_rrrrrrrr^]]]_]]]]]]]]]]]qqqqqqqqqqqrrrrrrrrrrr?+3/_^]+?+399310!273!57'5!wd>A嬬<h55TL>@! _Y +  + +_Y@]?+3/?3/_^]+993310 !2#'.# 326?3^XBF`r;%Ac@Zc3ۮ+/7.? @Q PYQY PY@9`@` ]]]]qqqqqqqrr^]]r?+?+33?+99333104&#"326'5!632#"&';tTu|/dVN .-6N&;u= L@/  _Y`Y_Y`Y?@ p]]]qr^]?++?++993310!#32 !%#57'5xsf""{"55!L!@Q + +"#PY PY QYPY@###90####`#@###`#?#]]]]qqqqqr^]]r?+?3+3?+?+3993333310'5!>32#"'!574&#"32k*Iqf@wd}uNYjf-7$,H)//N!@ + + H  +PY @ + H TD$tD0$dT9T@0 `P@0 p_ ]]]]]]]qqqqqqrrrr_rrrr^]]]]]qqqqqqqqqrrrrr?3333+3?3+3333/3+993310# #'5!3'5!NJoT՚fhlz--e--/@} PY PY +RY9tdTD4$p`@p`]]]]]]]qqqqq_qrrrrrrrrrr^]]]]q?+33?3+333?+99333310>32!574&#"!57'5!DM:z|rk}QUZjqq `,9--XS_-- -D_<DF!EW!9P)T9+?Nj%9s;9+9)JHN'Zs;;VT;!/^"$H ` F +\ + 4 : * p42!2/\nVVfmz/ C +nQ  . 5 > X   $ 62  h    (  + 8 \  j j 4 Digitized data copyright (c) 2010 Google Corporation. +Copyright (c) 2012 Red Hat, Inc.Liberation SerifRegularAscender - Liberation SerifLiberation SerifVersion 2.00.2LiberationSerifLiberation is a trademark of Red Hat, Inc. registered in U.S. Patent and Trademark Office and certain other jurisdictions.Ascender CorporationSteve MattesonBased on Tinos, which was designed by Steve Matteson as an innovative, refreshing serif design that is metrically compatible with Times New Roman. Tinos offers improved on-screen readability characteristics and the pan-European WGL character set and solves the needs of developers looking for width-compatible fonts to address document portability across platforms.http://www.ascendercorp.com/http://www.ascendercorp.com/typedesigners.htmlLicensed under the SIL Open Font License, Version 1.1http://scripts.sil.org/OFLDigitized data copyright (c) 2010 Google Corporation. +Copyright (c) 2012 Red Hat, Inc.Liberation SerifRegularAscender - Liberation SerifLiberation SerifVersion 2.00.2LiberationSerifLiberation is a trademark of Red Hat, Inc. registered in U.S. Patent and Trademark Office and certain other jurisdictions.Ascender CorporationSteve MattesonBased on Tinos, which was designed by Steve Matteson as an innovative, refreshing serif design that is metrically compatible with Times New Roman!". Tinos offers improved on-screen readability characteristics and the pan-European WGL character set and solves the needs of developers looking for width-compatible fonts to address document portability across platforms.http://www.ascendercorp.com/http://www.ascendercorp.com/typedesigners.htmlLicensed under the SIL Open Font License, Version 1.1http://scripts.sil.org/OFL!d PAbehg`N_UA=@U@BUC=BU.==>U<=;U;?;O;;;>U0=/U/>U-=,U,,>U?=>UJHUGHUF=EUEHUI=HU`?@ P)O_0P`p + 8=U=U<0P݀ݰU 0p/O`P`/.G' FOL=NAMMM/MOMoMMLL/L@8_ +{pvvsP)on+nG*3U3U@Ib%(F`_@_P)[Z0ZG)3UU3U?OoRPQPPP@P FOO/O@eK!(F`JpJJIF)HG8GG/GGGG_GGFFF@F)/F@F!FHU3UU3UU3U/_?TS++KRKP[%S@QZUZ[XYBK2SX`YKdSX@YKSXBYsst++++++++sstu++s+u+t++^s++++++++++++++ssssssst+++s+++sssssss+ss++s^s+++^s^s^s^ssss+sssssssss+++++++s++++s++++++++s^ +endstream +endobj + +%QDF: ignore_newline +267 0 obj +16184 +endobj + +%% Original object ID: 199 0 +268 0 obj +<< + /Length1 11088 + /Length 269 0 R +>> +stream +true @cmapU=8Hcvt K&fpgm\hglyfQe hheadAI.6hheae$hmtx4SZloca,%<0maxpg/l name R ^post*' prepI( C  + }y:wW~j`jy"3kkk{Rni`[^^eoz iq4 HjgaAh@G[ZYXUTSRQPONMLKJIHGFEDCBA@?>=<;:9876510/.-,('&%$#"! + , `E% Fa#E#aH-, EhD-,E#F` a F`&#HH-,E#F#a ` &a a&#HH-,E#F`@a f`&#HH-,E#F#a@` &a@a&#HH-, <<-, E# D# ZQX# D#Y QX# MD#Y &QX# D#Y!!-, EhD ` EFvhE`D-, +C#Ce +-, + C#C -,(#p(>(#p(E: -, E%EadPQXED!!Y-,I#D-, EC`D-,CCe +-, i@a ,b`+ d#da\XaY-,E+)#D)z-,Ee,#DE+#D-,KRXED!!Y-,KQXED!!Y-,%# `#-,%# a#-,%-,CRX!!!!!F#F`F# F`ab# # pE` PXaFY`h:Y-, E%FRKQ[X%F ha%%?#!8!Y-, E%FPX%F ha%%?#!8!Y-,CC -,!! d#d@b-,!QX d#d b@/+Y`-,!QX d#dUb/+Y`-, d#d@b`#!-,KSX%Id#Ei@ab aj#D#!# 9/Y-,KSX %Idi &%Id#ab aj#D&#D#D& 9# 9//Y-,E#E`#E`#E`#vhb -,H+-, ETX@D E@aD!!Y-,E0/E#Ea``iD-,KQX/#p#B!!Y-,KQX %EiSXD!!Y!!Y-,EC`c`iD-,/ED-,E# E`D-,E#E`D-,K#QX34 34YDD-,CX&EXdf`d `f X!@YaY#XeY)#D#)!!!!!Y-,CTXKS#KQZX8!!Y!!!!Y-,CX%Ed `f X!@Ya#XeY)#D%% XY%% F%#B<%%%% F%`#B< XY%%)) EeD%%)%% XY%%CH%%%%`CH!Y!!!!!!!-,% F%#B%%EH!!!!-,% %%CH!!!-,E# E P X#e#Y#h @PX!@Y#XeY`D-,KS#KQZX E`D!!Y-,KTX E`D!!Y-,KS#KQZX8!!Y-,!KTX8!!Y-,CTXF+!!!!Y-,CTXG+!!!Y-,CTXH+!!!!Y-,CTXI+!!!Y-, #KSKQZX#8!!Y-,%ISX @8!Y-,F#F`#Fa#  Fab@@pE`h:-, #Id#SX<!Y-,KRX}zY-,KKTB-,B#Q@SZX TXC`BY$QX @TXC`B$TX C`BKKRXC`BY@TXC`BY@cTXC`BY@cTXC`BY&QX@cTX@C`BY@cTXC`BYYYYYYCTX@ +@@ @  CTX@   CRX@ @@ @Y@U@cUZX  YYYBBBBB-,Eh#KQX# E d@PX|Yh`YD-,%%#>#> +#eB #B#?#? #eB#B-,CPCT[X!# Y-,Y+-,-2@  ?/993310!!!eL5N#@  +???3399331034'33>32&#"+pf$%$r%f + + ++@ tY?+3?33/39331035!5%3!gMW<[Op@Y//]q+99105![РWsN#0@V )).21QY )QY?o  PY$PY2222p2`2P2022]qqqqqqqq?+?+3/_^]q9/+9?+93333310"&546?54&#"'!2327#"&'#'2>=pxyn .*;!DGd[EZcYF_;rRZ$.PQpip|gZSY0dQX`#]@7  $%PY +!PY%?%%p%%%%%]]]qqqrr?+???+9999333310!"&'##6533>324&#"326r{32zxy"Yc +6YAXhZWNf@E  PY p`p  + +PY +]?+3/_^]q?3/]+9333103267#"32.#"`ri"hl Zjhy^@9  _Y@P  _Y  ]?+3/_^]?+3/_^]933310"3 #"$5!2.(WɣlB.G1%NIQ~<{`@; PYp]]]]]]]qqrrr?+?39?9933310>32#4.#"#3=:}*`Ujc/ro4~= +WNw@F PY  PY PY p`P0qqqqqqqqq?+?+9/_^]+9/93333103267!"3 '.#"uaݺ^H-  @g  + +   ?  ? _   ? _  9 @SVH`   `   0 @  +????9^]qqr+^]qr93323993310!#33 0Ima / h@:  _Y$M>_Y_Y?+?+9/_^]_]_q++993333910#!! 4&#!!264)!26AQs}rbBsVN +H@, PYPYp`P0]qqqqqqq?+?+993310#"!24&#"326꽅!0: T@  +  v D T d 6 $         v d   & F V g F V  d V D 6 $      & 6 F 7f  @6=BH9 "       t ` T @ 4   @"H   P p  +?3?393^]_]+qqqqqqqqqqr_rr+r^]]]qqqqqqqqr^]]]]]]]]]qqqqqqq9333333310! # 3 3 ! D,[g >@   sYtY?+9?+3993331035>54&#"'>32!g3Oys Ksu||Vt}qɹR^FN(c@9" "%)*%tYMMsY sY?3+?+39/_^]+++99333310#"&'7!2654&+532654&#"'>32$fbw 뗐srqzoŰa0@ _Y _Y ]]?+?+993310#"$5!2#"32שŦrJ< MR},-WM$]@7 &%PY "PY&?&&p&&&&&]]]qqqrr?+???+9999333310!"'##4'33>324&#"326rV0ƽzky?{"ʼY61fd]Z*,E@$   PY    @PY]?+?_^]3+393332310%#"5#53733#327*Y]}5x3?$D҃UN?=n@H SY       p         O  ]qqqqqqqrrrrrrrrrr?+??933310533 :Na@< + +PY  +p]]]]]]]qqrrr?2??+99933310!4.#"#4'33>329*\Y>ykv4S*,9Op]/:_@;  PY  p]]]]]]]qqrrr?2??+3993331032653#.'##"&5:*\Y>y:Rkv4s*,9Op]_<@W>NCs[sWsWhssW9VsVsgsN9as9s&X0X||6N +rZ1/\nWWfmz, @ +iN  . 56 P   4* ^ |   (  + 8 \ j R 4 Digitized data copyright (c) 2010 Google Corporation. +Copyright (c) 2012 Red Hat, Inc.Liberation SansRegularAscender - Liberation SansLiberation SansVersion 2.00.2LiberationSansLiberation is a trademark of Red Hat, Inc. registered in U.S. Patent and Trademark Office and certain other jurisdictions.Ascender CorporationSteve MattesonBased on Arimo, which was designed by Steve Matteson as an innovative, refreshing sans serif design that is metrically compatible with Arial. Arimo offers improved on-screen readability characteristics and the pan-European WGL character set and solves the needs of developers looking for width-compatible fonts to address document portability across platforms.http://www.ascendercorp.com/http://www.ascendercorp.com/typedesigners.htmlLicensed under the SIL Open Font License, Version 1.1http://scripts.sil.org/OFLDigitized data copyright (c) 2010 Google Corporation. +Copyright (c) 2012 Red Hat, Inc.Liberation SansRegularAscender - Liberation SansLiberation SansVersion 2.00.2LiberationSansLiberation is a trademark of Red Hat, Inc. registered in U.S. Patent and Trademark Office and certain other jurisdictions.Ascender CorporationSteve MattesonBased on Arimo, which was designed by Steve Matteson as an innovative, refreshing sans serif design that is metrically compatible with Arial!". Arimo offers improved on-screen readability characteristics and the pan-European WGL character set and solves the needs of developers looking for width-compatible fonts to address document portability across platforms.http://www.ascendercorp.com/http://www.ascendercorp.com/typedesigners.htmlLicensed under the SIL Open Font License, Version 1.1http://scripts.sil.org/OFL'A! ?9U>9UB@A@;3:U839U@@ +O P(F(F*F+_O_ F@FF@36FFUHU2UUHU=UU=U@F<P&(Pp@2F?Oop?а/?Э/?ЪO/o$PoF0@pЏO_oF1ts?sP&on<nF5U3U3U`P&_P&\F1[ZHZF12UU2Ul <Ll|Q@dQ@Q58F@Q%(FPIF HF5GF5FFFF2UU2UU?_/Oo?oOTS++KRKP[%S@QZUZ[XYBK2SX`YKdSX@YKSXBYststu+++++stu+++t++ssu+++++++++++++++++s+tstusts++tus+stsststtsts^sstssss+ss+++s+tu+++++++++++++t++^s++^st++++ss^ssssss++++++^ +endstream +endobj + +%QDF: ignore_newline +269 0 obj +11088 +endobj + +xref +0 270 +0000000000 65535 f +0000000052 00000 n +0000000610 00000 n +0000000822 00000 n +0000000922 00000 n +0000001249 00000 n +0000001407 00000 n +0000001823 00000 n +0000002239 00000 n +0000002655 00000 n +0000002814 00000 n +0000003200 00000 n +0000003776 00000 n +0000004280 00000 n +0000004729 00000 n +0000005219 00000 n +0000005553 00000 n +0000005714 00000 n +0000006137 00000 n +0000006560 00000 n +0000006983 00000 n +0000007144 00000 n +0000007535 00000 n +0000007989 00000 n +0000008570 00000 n +0000009079 00000 n +0000009582 00000 n +0000010222 00000 n +0000010389 00000 n +0000010567 00000 n +0000010688 00000 n +0000010920 00000 n +0000010968 00000 n +0000011364 00000 n +0000011758 00000 n +0000012154 00000 n +0000012322 00000 n +0000012370 00000 n +0000012608 00000 n +0000012656 00000 n +0000012765 00000 n +0000012933 00000 n +0000012981 00000 n +0000013219 00000 n +0000013267 00000 n +0000013435 00000 n +0000013483 00000 n +0000013721 00000 n +0000013769 00000 n +0000014165 00000 n +0000014559 00000 n +0000014955 00000 n +0000015197 00000 n +0000015245 00000 n +0000015638 00000 n +0000015687 00000 n +0000015959 00000 n +0000016008 00000 n +0000016278 00000 n +0000016327 00000 n +0000016595 00000 n +0000016645 00000 n +0000016937 00000 n +0000016986 00000 n +0000017388 00000 n +0000017788 00000 n +0000018190 00000 n +0000018418 00000 n +0000018467 00000 n +0000018765 00000 n +0000018814 00000 n +0000019042 00000 n +0000019091 00000 n +0000019389 00000 n +0000019438 00000 n +0000019666 00000 n +0000019715 00000 n +0000020013 00000 n +0000020062 00000 n +0000020464 00000 n +0000020864 00000 n +0000021266 00000 n +0000021568 00000 n +0000021617 00000 n +0000021947 00000 n +0000021997 00000 n +0000022450 00000 n +0000022500 00000 n +0000022832 00000 n +0000022882 00000 n +0000023210 00000 n +0000023259 00000 n +0000023620 00000 n +0000023790 00000 n +0000024158 00000 n +0000024358 00000 n +0000029184 00000 n +0000029234 00000 n +0000030064 00000 n +0000030497 00000 n +0000030976 00000 n +0000032922 00000 n +0000033321 00000 n +0000035264 00000 n +0000035642 00000 n +0000035692 00000 n +0000035862 00000 n +0000035911 00000 n +0000036289 00000 n +0000036339 00000 n +0000036509 00000 n +0000036558 00000 n +0000036936 00000 n +0000036986 00000 n +0000037156 00000 n +0000037205 00000 n +0000037583 00000 n +0000037633 00000 n +0000037803 00000 n +0000037852 00000 n +0000038230 00000 n +0000038280 00000 n +0000038450 00000 n +0000038499 00000 n +0000038877 00000 n +0000038927 00000 n +0000039097 00000 n +0000039147 00000 n +0000039585 00000 n +0000039636 00000 n +0000039866 00000 n +0000039916 00000 n +0000040354 00000 n +0000040405 00000 n +0000040635 00000 n +0000040685 00000 n +0000041123 00000 n +0000041174 00000 n +0000041404 00000 n +0000041454 00000 n +0000041892 00000 n +0000041943 00000 n +0000042173 00000 n +0000042223 00000 n +0000042661 00000 n +0000042712 00000 n +0000042942 00000 n +0000042992 00000 n +0000043430 00000 n +0000043481 00000 n +0000043711 00000 n +0000043760 00000 n +0000044985 00000 n +0000045036 00000 n +0000046321 00000 n +0000046371 00000 n +0000046513 00000 n +0000046638 00000 n +0000046780 00000 n +0000046905 00000 n +0000047047 00000 n +0000047172 00000 n +0000047297 00000 n +0000047422 00000 n +0000047547 00000 n +0000047672 00000 n +0000047797 00000 n +0000047939 00000 n +0000048064 00000 n +0000048190 00000 n +0000048316 00000 n +0000048442 00000 n +0000048568 00000 n +0000048694 00000 n +0000048820 00000 n +0000048946 00000 n +0000049072 00000 n +0000049198 00000 n +0000049341 00000 n +0000049467 00000 n +0000049593 00000 n +0000049719 00000 n +0000049845 00000 n +0000049971 00000 n +0000050097 00000 n +0000050223 00000 n +0000050349 00000 n +0000050475 00000 n +0000050601 00000 n +0000050744 00000 n +0000050870 00000 n +0000050996 00000 n +0000051122 00000 n +0000051271 00000 n +0000051397 00000 n +0000051523 00000 n +0000051649 00000 n +0000051775 00000 n +0000051901 00000 n +0000052050 00000 n +0000052177 00000 n +0000052304 00000 n +0000052431 00000 n +0000052558 00000 n +0000052685 00000 n +0000052812 00000 n +0000052939 00000 n +0000053066 00000 n +0000053193 00000 n +0000053320 00000 n +0000053447 00000 n +0000053574 00000 n +0000053701 00000 n +0000053828 00000 n +0000053955 00000 n +0000054229 00000 n +0000054990 00000 n +0000055041 00000 n +0000055286 00000 n +0000055559 00000 n +0000056200 00000 n +0000056251 00000 n +0000056495 00000 n +0000056581 00000 n +0000056667 00000 n +0000056753 00000 n +0000056839 00000 n +0000056925 00000 n +0000057011 00000 n +0000057097 00000 n +0000057183 00000 n +0000057269 00000 n +0000057355 00000 n +0000057441 00000 n +0000057527 00000 n +0000057613 00000 n +0000057699 00000 n +0000057785 00000 n +0000057871 00000 n +0000057957 00000 n +0000058043 00000 n +0000058129 00000 n +0000058215 00000 n +0000058301 00000 n +0000058387 00000 n +0000058473 00000 n +0000058559 00000 n +0000058645 00000 n +0000058731 00000 n +0000058817 00000 n +0000058903 00000 n +0000058989 00000 n +0000059075 00000 n +0000059161 00000 n +0000059247 00000 n +0000059333 00000 n +0000059419 00000 n +0000059505 00000 n +0000059591 00000 n +0000059677 00000 n +0000059763 00000 n +0000059849 00000 n +0000059935 00000 n +0000060021 00000 n +0000060107 00000 n +0000060193 00000 n +0000060279 00000 n +0000076561 00000 n +0000076614 00000 n +0000087800 00000 n +trailer << + /DocChecksum /CC322E136FE95DECF8BC297B1A9B2C2E + /Info 2 0 R + /Root 1 0 R + /Size 270 + /ID [<31415926535897932384626433832795>] +>> +startxref +87824 +%%EOF diff --git a/qpdf/qtest/qpdf/test80a2.pdf b/qpdf/qtest/qpdf/test80a2.pdf new file mode 100644 index 00000000..802203ce --- /dev/null +++ b/qpdf/qtest/qpdf/test80a2.pdf @@ -0,0 +1,5980 @@ +%PDF-1.5 +% +%QDF-1.0 + +%% Original object ID: 1 0 +1 0 obj +<< + /AcroForm << + /DR 3 0 R + /Fields [ + 4 0 R + 5 0 R + 6 0 R + 7 0 R + 8 0 R + 9 0 R + 10 0 R + 11 0 R + 12 0 R + 13 0 R + 14 0 R + 15 0 R + 16 0 R + 17 0 R + 18 0 R + 19 0 R + 20 0 R + 21 0 R + 22 0 R + 23 0 R + 24 0 R + 25 0 R + ] + >> + /Lang (en-US) + /MarkInfo << + /Marked true + >> + /OpenAction [ + 26 0 R + /XYZ + null + null + 0 + ] + /Pages 27 0 R + /StructTreeRoot 28 0 R + /Type /Catalog +>> +endobj + +%% Original object ID: 2 0 +2 0 obj +<< + /CreationDate (D:20190103125434-05'00') + /Creator + /Producer +>> +endobj + +%% Original object ID: 3 0 +3 0 obj +<< + /Font 29 0 R + /ProcSet [ + /PDF + /Text + ] +>> +endobj + +%% Original object ID: 4 0 +4 0 obj +<< + /AP << + /N 30 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F2 12 Tf) + /DR << + /Font 29 0 R + >> + /DV + /F 4 + /FT /Tx + /P 26 0 R + /Rect [ + 689.901 + 351.199 + 704.699 + 488.501 + ] + /Subtype /Widget + /T (text) + /Type /Annot + /V +>> +endobj + +%% Original object ID: 5 0 +5 0 obj +<< + /DV /1 + /FT /Btn + /Ff 49152 + /Kids [ + 32 0 R + 33 0 R + 34 0 R + ] + /P 26 0 R + /T (r1) + /V /2 +>> +endobj + +%% Original object ID: 6 0 +6 0 obj +<< + /AP << + /N << + /Off 35 0 R + /Yes 37 0 R + >> + >> + /AS /Off + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 39 0 R + >> + >> + /DV /Off + /F 4 + /FT /Btn + /MK << + /CA (8) + >> + /P 26 0 R + /Rect [ + 554.301 + 481.299 + 566.349 + 493.351 + ] + /Subtype /Widget + /T (checkbox1) + /Type /Annot + /V /Off +>> +endobj + +%% Original object ID: 7 0 +7 0 obj +<< + /AP << + /N << + /Off 40 0 R + /Yes 42 0 R + >> + >> + /AS /Yes + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 39 0 R + >> + >> + /DV /Yes + /F 4 + /FT /Btn + /MK << + /CA (8) + >> + /P 26 0 R + /Rect [ + 527.751 + 481.299 + 539.799 + 493.351 + ] + /Subtype /Widget + /T (checkbox2) + /Type /Annot + /V /Yes +>> +endobj + +%% Original object ID: 8 0 +8 0 obj +<< + /AP << + /N << + /Off 44 0 R + /Yes 46 0 R + >> + >> + /AS /Off + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 39 0 R + >> + >> + /DV /Off + /F 4 + /FT /Btn + /MK << + /CA (8) + >> + /P 26 0 R + /Rect [ + 500.501 + 481.299 + 512.549 + 493.351 + ] + /Subtype /Widget + /T (checkbox3) + /Type /Annot + /V /Off +>> +endobj + +%% Original object ID: 9 0 +9 0 obj +<< + /DV /2 + /FT /Btn + /Ff 49152 + /Kids [ + 48 0 R + 49 0 R + 50 0 R + ] + /P 26 0 R + /T (r2) + /V /2 +>> +endobj + +%% Original object ID: 10 0 +10 0 obj +<< + /AP << + /N 51 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F2 12 Tf) + /DR << + /Font 29 0 R + >> + /DV + /F 4 + /FT /Tx + /P 26 0 R + /Rect [ + 260.151 + 260.899 + 278.099 + 498.351 + ] + /Subtype /Widget + /T (text2) + /Type /Annot + /V +>> +endobj + +%% Original object ID: 11 0 +11 0 obj +<< + /AP << + /N 53 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf) + /DR << + /Font 29 0 R + >> + /DV + /F 4 + /FT /Ch + /Ff 393216 + /Opt [ + + + + + ] + /P 26 0 R + /Rect [ + 159.401 + 152.999 + 232.849 + 208.051 + ] + /Subtype /Widget + /T (combolist1) + /Type /Annot + /V +>> +endobj + +%% Original object ID: 12 0 +12 0 obj +<< + /AP << + /N 55 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf) + /DR << + /Font 29 0 R + >> + /DV + /F 4 + /FT /Ch + /Opt [ + + + + + + + + + + + + + ] + /P 26 0 R + /Rect [ + 156.651 + 390.999 + 232.849 + 453.551 + ] + /Subtype /Widget + /T (list1) + /Type /Annot + /V (1) +>> +endobj + +%% Original object ID: 13 0 +13 0 obj +<< + /AP << + /N 57 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf) + /DR << + /Font 29 0 R + >> + /DV + /F 4 + /FT /Ch + /Ff 131072 + /Opt [ + + + + + ] + /P 26 0 R + /Rect [ + 107.251 + 367.799 + 130.949 + 452.851 + ] + /Subtype /Widget + /T (drop1) + /Type /Annot + /V +>> +endobj + +%% Original object ID: 14 0 +14 0 obj +<< + /AP << + /N 59 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf) + /DR << + /Font 29 0 R + >> + /DV + /F 4 + /FT /Ch + /Ff 393216 + /Opt [ + + + + + ] + /P 26 0 R + /Rect [ + 101.451 + 135.299 + 135.349 + 207.401 + ] + /Subtype /Widget + /T (combodrop1) + /Type /Annot + /V +>> +endobj + +%% Original object ID: 176 0 +15 0 obj +<< + /AP << + /N 61 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F2 12 Tf) + /DR << + /Font 29 0 R + >> + /DV + /F 4 + /FT /Tx + /P 26 0 R + /Rect [ + 581.9604 + 536.4796 + 587.8796 + 591.4004 + ] + /Subtype /Widget + /T (text) + /Type /Annot + /V +>> +endobj + +%% Original object ID: 178 0 +16 0 obj +<< + /DV /1 + /FT /Btn + /Ff 49152 + /Kids [ + 63 0 R + 64 0 R + 65 0 R + ] + /P 26 0 R + /T (r1) + /V /2 +>> +endobj + +%% Original object ID: 188 0 +17 0 obj +<< + /AP << + /N << + /Off 66 0 R + /Yes 68 0 R + >> + >> + /AS /Off + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 39 0 R + >> + >> + /DV /Off + /F 4 + /FT /Btn + /MK << + /CA (8) + >> + /P 26 0 R + /Rect [ + 527.7204 + 588.5196 + 532.5396 + 593.3404 + ] + /Subtype /Widget + /T (checkbox1) + /Type /Annot + /V /Off +>> +endobj + +%% Original object ID: 191 0 +18 0 obj +<< + /AP << + /N << + /Off 70 0 R + /Yes 72 0 R + >> + >> + /AS /Yes + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 39 0 R + >> + >> + /DV /Yes + /F 4 + /FT /Btn + /MK << + /CA (8) + >> + /P 26 0 R + /Rect [ + 517.1004 + 588.5196 + 521.9196 + 593.3404 + ] + /Subtype /Widget + /T (checkbox2) + /Type /Annot + /V /Yes +>> +endobj + +%% Original object ID: 194 0 +19 0 obj +<< + /AP << + /N << + /Off 74 0 R + /Yes 76 0 R + >> + >> + /AS /Off + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 39 0 R + >> + >> + /DV /Off + /F 4 + /FT /Btn + /MK << + /CA (8) + >> + /P 26 0 R + /Rect [ + 506.2004 + 588.5196 + 511.0196 + 593.3404 + ] + /Subtype /Widget + /T (checkbox3) + /Type /Annot + /V /Off +>> +endobj + +%% Original object ID: 197 0 +20 0 obj +<< + /DV /2 + /FT /Btn + /Ff 49152 + /Kids [ + 78 0 R + 79 0 R + 80 0 R + ] + /P 26 0 R + /T (r2) + /V /2 +>> +endobj + +%% Original object ID: 207 0 +21 0 obj +<< + /AP << + /N 81 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F2 12 Tf) + /DR << + /Font 29 0 R + >> + /DV + /F 4 + /FT /Tx + /P 26 0 R + /Rect [ + 410.0604 + 500.3596 + 417.2396 + 595.3404 + ] + /Subtype /Widget + /T (text2) + /Type /Annot + /V +>> +endobj + +%% Original object ID: 209 0 +22 0 obj +<< + /AP << + /N 83 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf) + /DR << + /Font 29 0 R + >> + /DV + /F 4 + /FT /Ch + /Ff 393216 + /Opt [ + + + + + ] + /P 26 0 R + /Rect [ + 369.7604 + 457.1996 + 399.1396 + 479.2204 + ] + /Subtype /Widget + /T (combolist1) + /Type /Annot + /V +>> +endobj + +%% Original object ID: 211 0 +23 0 obj +<< + /AP << + /N 85 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf) + /DR << + /Font 29 0 R + >> + /DV + /F 4 + /FT /Ch + /Opt [ + + + + + + + + + + + + + ] + /P 26 0 R + /Rect [ + 368.6604 + 552.3996 + 399.1396 + 577.4204 + ] + /Subtype /Widget + /T (list1) + /Type /Annot + /V (1) +>> +endobj + +%% Original object ID: 213 0 +24 0 obj +<< + /AP << + /N 87 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf) + /DR << + /Font 29 0 R + >> + /DV + /F 4 + /FT /Ch + /Ff 131072 + /Opt [ + + + + + ] + /P 26 0 R + /Rect [ + 348.9004 + 543.1196 + 358.3796 + 577.1404 + ] + /Subtype /Widget + /T (drop1) + /Type /Annot + /V +>> +endobj + +%% Original object ID: 215 0 +25 0 obj +<< + /AP << + /N 89 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf) + /DR << + /Font 29 0 R + >> + /DV + /F 4 + /FT /Ch + /Ff 393216 + /Opt [ + + + + + ] + /P 26 0 R + /Rect [ + 346.5804 + 450.1196 + 360.1396 + 478.9604 + ] + /Subtype /Widget + /T (combodrop1) + /Type /Annot + /V +>> +endobj + +%% Page 1 +%% Original object ID: 15 0 +26 0 obj +<< + /Annots [ + 4 0 R + 32 0 R + 33 0 R + 34 0 R + 6 0 R + 7 0 R + 8 0 R + 48 0 R + 49 0 R + 50 0 R + 10 0 R + 11 0 R + 12 0 R + 13 0 R + 14 0 R + 91 0 R + 92 0 R + 15 0 R + 63 0 R + 64 0 R + 65 0 R + 17 0 R + 18 0 R + 19 0 R + 78 0 R + 79 0 R + 80 0 R + 21 0 R + 22 0 R + 23 0 R + 24 0 R + 25 0 R + 93 0 R + 94 0 R + ] + /Contents [ + 95 0 R + 97 0 R + 99 0 R + ] + /Group << + /CS /DeviceRGB + /I true + /S /Transparency + >> + /MediaBox [ + 0 + 0 + 792 + 612 + ] + /Parent 27 0 R + /Resources 3 0 R + /StructParents 0 + /Type /Page +>> +endobj + +%% Original object ID: 16 0 +27 0 obj +<< + /Count 1 + /Kids [ + 26 0 R + ] + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Resources 3 0 R + /Type /Pages +>> +endobj + +%% Original object ID: 17 0 +28 0 obj +<< + /K [ + 101 0 R + ] + /ParentTree 102 0 R + /RoleMap << + /Document /Document + /Standard /P + >> + /Type /StructTreeRoot +>> +endobj + +%% Original object ID: 18 0 +29 0 obj +<< + /F1 103 0 R + /F2 104 0 R + /F3 105 0 R + /F4 106 0 R + /ZaDi 39 0 R +>> +endobj + +%% Original object ID: 19 0 +30 0 obj +<< + /BBox [ + 0 + 0 + 137.3 + 14.8 + ] + /Matrix [ + 0 + -1 + 1 + 0 + 0 + 612 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 31 0 R +>> +stream +/Tx BMC +q +BT +0.18039 0.20392 0.21176 rg /F2 12 Tf +1 2.6 Td +(abc) Tj +ET +Q +EMC +endstream +endobj + +31 0 obj +77 +endobj + +%% Original object ID: 20 0 +32 0 obj +<< + /AP << + /N << + /1 107 0 R + /Off 109 0 R + >> + >> + /AS /Off + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 39 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /P 26 0 R + /Parent 5 0 R + /Rect [ + 648.501 + 447.199 + 660.549 + 459.251 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +%% Original object ID: 21 0 +33 0 obj +<< + /AP << + /N << + /2 111 0 R + /Off 113 0 R + >> + >> + /AS /2 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 39 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /P 26 0 R + /Parent 5 0 R + /Rect [ + 627.301 + 447.199 + 639.349 + 459.251 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +%% Original object ID: 22 0 +34 0 obj +<< + /AP << + /N << + /3 115 0 R + /Off 117 0 R + >> + >> + /AS /Off + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 39 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /P 26 0 R + /Parent 5 0 R + /Rect [ + 606.501 + 448.549 + 618.549 + 460.601 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +%% Original object ID: 23 0 +35 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + -1 + 1 + 0 + 0 + 612 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 36 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +36 0 obj +12 +endobj + +%% Original object ID: 24 0 +37 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + -1 + 1 + 0 + 0 + 612 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 38 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +1.9 1.9 Td (8) Tj +ET +Q +EMC +endstream +endobj + +38 0 obj +82 +endobj + +%% Original object ID: 25 0 +39 0 obj +<< + /BaseFont /ZapfDingbats + /Subtype /Type1 + /Type /Font +>> +endobj + +%% Original object ID: 26 0 +40 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + -1 + 1 + 0 + 0 + 612 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 41 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +41 0 obj +12 +endobj + +%% Original object ID: 27 0 +42 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + -1 + 1 + 0 + 0 + 612 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 43 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +1.9 1.9 Td (8) Tj +ET +Q +EMC +endstream +endobj + +43 0 obj +82 +endobj + +%% Original object ID: 28 0 +44 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + -1 + 1 + 0 + 0 + 612 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 45 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +45 0 obj +12 +endobj + +%% Original object ID: 29 0 +46 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + -1 + 1 + 0 + 0 + 612 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 47 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +1.9 1.9 Td (8) Tj +ET +Q +EMC +endstream +endobj + +47 0 obj +82 +endobj + +%% Original object ID: 30 0 +48 0 obj +<< + /AP << + /N << + /1 119 0 R + /Off 121 0 R + >> + >> + /AS /Off + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 39 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /P 26 0 R + /Parent 9 0 R + /Rect [ + 388.101 + 481.299 + 400.149 + 493.351 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +%% Original object ID: 31 0 +49 0 obj +<< + /AP << + /N << + /2 123 0 R + /Off 125 0 R + >> + >> + /AS /2 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 39 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /P 26 0 R + /Parent 9 0 R + /Rect [ + 362.201 + 480.599 + 374.249 + 492.651 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +%% Original object ID: 32 0 +50 0 obj +<< + /AP << + /N << + /3 127 0 R + /Off 129 0 R + >> + >> + /AS /Off + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 39 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /P 26 0 R + /Parent 9 0 R + /Rect [ + 333.551 + 480.599 + 345.599 + 492.651 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +%% Original object ID: 33 0 +51 0 obj +<< + /BBox [ + 0 + 0 + 237.45 + 17.95 + ] + /Matrix [ + 0 + -1 + 1 + 0 + 0 + 612 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 52 0 R +>> +stream +/Tx BMC +q +BT +0.18039 0.20392 0.21176 rg /F2 12 Tf +1 4.175 Td +(salad ??) Tj +ET +Q +EMC +endstream +endobj + +52 0 obj +85 +endobj + +%% Original object ID: 34 0 +53 0 obj +<< + /BBox [ + 0 + 0 + 55.05 + 73.45 + ] + /Matrix [ + 0 + -1 + 1 + 0 + 0 + 612 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 54 0 R +>> +stream +1 1 1 rg +0 -0.05 55.05 73.45 re f* +/Tx BMC +q +BT +0.18039 0.20392 0.21176 rg /F4 10 Tf +1 32.725 Td +(pi) Tj +ET +Q +EMC +endstream +endobj + +54 0 obj +114 +endobj + +%% Original object ID: 35 0 +55 0 obj +<< + /BBox [ + 0 + 0 + 62.55 + 76.2 + ] + /Matrix [ + 0 + -1 + 1 + 0 + 0 + 612 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 56 0 R +>> +stream +1 1 1 rg +0 -0.05 62.55 76.2 re f* +/Tx BMC +q +0.85 0.85 0.85 rg +0 62.1 62.55 12 re f +Q +q +BT +0.18039 0.20392 0.21176 rg /F4 10 Tf +1 64.1 Td +(1) Tj +0 -12 Td +(2) Tj +0 -12 Td +(3) Tj +0 -12 Td +(4) Tj +0 -12 Td +(five) Tj +0 -12 Td +(six) Tj +ET +Q +EMC +endstream +endobj + +56 0 obj +238 +endobj + +%% Original object ID: 36 0 +57 0 obj +<< + /BBox [ + 0 + 0 + 85.05 + 23.7 + ] + /Matrix [ + 0 + -1 + 1 + 0 + 0 + 612 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 58 0 R +>> +stream +1 1 1 rg +0 -0.05 85.05 23.7 re f* +/Tx BMC +q +BT +0.18039 0.20392 0.21176 rg /F4 10 Tf +1 7.85 Td +(elephant) Tj +ET +Q +EMC +endstream +endobj + +58 0 obj +117 +endobj + +%% Original object ID: 37 0 +59 0 obj +<< + /BBox [ + 0 + 0 + 72.1 + 33.9 + ] + /Matrix [ + 0 + -1 + 1 + 0 + 0 + 612 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 60 0 R +>> +stream +1 1 1 rg +0 -0.05 72.1 33.9 re f* +/Tx BMC +q +BT +0.18039 0.20392 0.21176 rg /F4 10 Tf +1 12.95 Td +(delta) Tj +ET +Q +EMC +endstream +endobj + +60 0 obj +114 +endobj + +%% Original object ID: 177 0 +61 0 obj +<< + /BBox [ + 0 + 0 + 137.3 + 14.8 + ] + /Matrix [ + 0 + -0.4 + 0.4 + 0 + 396 + 306 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 62 0 R +>> +stream +/Tx BMC +q +BT +0.18039 0.20392 0.21176 rg /F2 12 Tf +1 2.6 Td +(abc) Tj +ET +Q +EMC +endstream +endobj + +62 0 obj +77 +endobj + +%% Original object ID: 179 0 +63 0 obj +<< + /AP << + /N << + /1 131 0 R + /Off 133 0 R + >> + >> + /AS /Off + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 39 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /P 26 0 R + /Parent 16 0 R + /Rect [ + 565.4004 + 574.8796 + 570.2196 + 579.7004 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +%% Original object ID: 180 0 +64 0 obj +<< + /AP << + /N << + /2 135 0 R + /Off 137 0 R + >> + >> + /AS /2 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 39 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /P 26 0 R + /Parent 16 0 R + /Rect [ + 556.9204 + 574.8796 + 561.7396 + 579.7004 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +%% Original object ID: 181 0 +65 0 obj +<< + /AP << + /N << + /3 139 0 R + /Off 141 0 R + >> + >> + /AS /Off + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 39 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /P 26 0 R + /Parent 16 0 R + /Rect [ + 548.6004 + 575.4196 + 553.4196 + 580.2404 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +%% Original object ID: 189 0 +66 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + -0.4 + 0.4 + 0 + 396 + 306 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 67 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +67 0 obj +12 +endobj + +%% Original object ID: 190 0 +68 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + -0.4 + 0.4 + 0 + 396 + 306 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 69 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +1.9 1.9 Td (8) Tj +ET +Q +EMC +endstream +endobj + +69 0 obj +82 +endobj + +%% Original object ID: 192 0 +70 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + -0.4 + 0.4 + 0 + 396 + 306 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 71 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +71 0 obj +12 +endobj + +%% Original object ID: 193 0 +72 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + -0.4 + 0.4 + 0 + 396 + 306 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 73 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +1.9 1.9 Td (8) Tj +ET +Q +EMC +endstream +endobj + +73 0 obj +82 +endobj + +%% Original object ID: 195 0 +74 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + -0.4 + 0.4 + 0 + 396 + 306 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 75 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +75 0 obj +12 +endobj + +%% Original object ID: 196 0 +76 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + -0.4 + 0.4 + 0 + 396 + 306 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 77 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +1.9 1.9 Td (8) Tj +ET +Q +EMC +endstream +endobj + +77 0 obj +82 +endobj + +%% Original object ID: 198 0 +78 0 obj +<< + /AP << + /N << + /1 143 0 R + /Off 145 0 R + >> + >> + /AS /Off + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 39 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /P 26 0 R + /Parent 20 0 R + /Rect [ + 461.2404 + 588.5196 + 466.0596 + 593.3404 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +%% Original object ID: 199 0 +79 0 obj +<< + /AP << + /N << + /2 147 0 R + /Off 149 0 R + >> + >> + /AS /2 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 39 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /P 26 0 R + /Parent 20 0 R + /Rect [ + 450.8804 + 588.2396 + 455.6996 + 593.0604 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +%% Original object ID: 200 0 +80 0 obj +<< + /AP << + /N << + /3 151 0 R + /Off 153 0 R + >> + >> + /AS /Off + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 39 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /P 26 0 R + /Parent 20 0 R + /Rect [ + 439.4204 + 588.2396 + 444.2396 + 593.0604 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +%% Original object ID: 208 0 +81 0 obj +<< + /BBox [ + 0 + 0 + 237.45 + 17.95 + ] + /Matrix [ + 0 + -0.4 + 0.4 + 0 + 396 + 306 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 82 0 R +>> +stream +/Tx BMC +q +BT +0.18039 0.20392 0.21176 rg /F2 12 Tf +1 4.175 Td +(salad ??) Tj +ET +Q +EMC +endstream +endobj + +82 0 obj +85 +endobj + +%% Original object ID: 210 0 +83 0 obj +<< + /BBox [ + 0 + 0 + 55.05 + 73.45 + ] + /Matrix [ + 0 + -0.4 + 0.4 + 0 + 396 + 306 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 84 0 R +>> +stream +1 1 1 rg +0 -0.05 55.05 73.45 re f* +/Tx BMC +q +BT +0.18039 0.20392 0.21176 rg /F4 10 Tf +1 32.725 Td +(pi) Tj +ET +Q +EMC +endstream +endobj + +84 0 obj +114 +endobj + +%% Original object ID: 212 0 +85 0 obj +<< + /BBox [ + 0 + 0 + 62.55 + 76.2 + ] + /Matrix [ + 0 + -0.4 + 0.4 + 0 + 396 + 306 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 86 0 R +>> +stream +1 1 1 rg +0 -0.05 62.55 76.2 re f* +/Tx BMC +q +0.85 0.85 0.85 rg +0 62.1 62.55 12 re f +Q +q +BT +0.18039 0.20392 0.21176 rg /F4 10 Tf +1 64.1 Td +(1) Tj +0 -12 Td +(2) Tj +0 -12 Td +(3) Tj +0 -12 Td +(4) Tj +0 -12 Td +(five) Tj +0 -12 Td +(six) Tj +ET +Q +EMC +endstream +endobj + +86 0 obj +238 +endobj + +%% Original object ID: 214 0 +87 0 obj +<< + /BBox [ + 0 + 0 + 85.05 + 23.7 + ] + /Matrix [ + 0 + -0.4 + 0.4 + 0 + 396 + 306 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 88 0 R +>> +stream +1 1 1 rg +0 -0.05 85.05 23.7 re f* +/Tx BMC +q +BT +0.18039 0.20392 0.21176 rg /F4 10 Tf +1 7.85 Td +(elephant) Tj +ET +Q +EMC +endstream +endobj + +88 0 obj +117 +endobj + +%% Original object ID: 216 0 +89 0 obj +<< + /BBox [ + 0 + 0 + 72.1 + 33.9 + ] + /Matrix [ + 0 + -0.4 + 0.4 + 0 + 396 + 306 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 90 0 R +>> +stream +1 1 1 rg +0 -0.05 72.1 33.9 re f* +/Tx BMC +q +BT +0.18039 0.20392 0.21176 rg /F4 10 Tf +1 12.95 Td +(delta) Tj +ET +Q +EMC +endstream +endobj + +90 0 obj +114 +endobj + +%% Original object ID: 38 0 +91 0 obj +<< + /AP << + /N 155 0 R + >> + /C [ + 1 + 1 + 0 + ] + /CA 1 + /Contents (Salad) + /CreationDate (D:20181231235455Z00'00) + /F 28 + /M (D:20181231235455Z00'00) + /Name /Comment + /P 26 0 R + /Popup 157 0 R + /Rect [ + 703 + 159 + 721 + 177 + ] + /Subtype /Text + /T (Jay Berkenbilt) + /Type /Annot +>> +endobj + +%% Original object ID: 39 0 +92 0 obj +<< + /F 28 + /Open false + /Parent 158 0 R + /Rect [ + 601 + -180 + 721 + 0 + ] + /Subtype /Popup + /Type /Annot +>> +endobj + +%% Original object ID: 217 0 +93 0 obj +<< + /AP << + /N 159 0 R + >> + /C [ + 1 + 1 + 0 + ] + /CA 1 + /Contents (Salad) + /CreationDate (D:20181231235455Z00'00) + /F 28 + /M (D:20181231235455Z00'00) + /Name /Comment + /P 26 0 R + /Popup 157 0 R + /Rect [ + 587.2 + 459.6 + 594.4 + 466.8 + ] + /Subtype /Text + /T (Jay Berkenbilt) + /Type /Annot +>> +endobj + +%% Original object ID: 219 0 +94 0 obj +<< + /F 28 + /Open false + /Parent 158 0 R + /Rect [ + 546.4 + 324 + 594.4 + 396 + ] + /Subtype /Popup + /Type /Annot +>> +endobj + +%% Contents for page 1 +%% Original object ID: 40 0 +95 0 obj +<< + /Length 96 0 R +>> +stream +q +0 -1 1 0 0 612 cm +endstream +endobj + +96 0 obj +20 +endobj + +%% Contents for page 1 +%% Original object ID: 41 0 +97 0 obj +<< + /Length 98 0 R +>> +stream +0.1 w +/Artifact BMC +q 0 0.028 611.971 791.971 re +W* n +EMC +/Standard<>BDC +q 0 0 0 rg +BT +56.8 724.1 Td /F1 12 Tf[<01>1<0203>1<0403>1<05>58<06>-10<0708>2<09070a0b0408>2(\f)]TJ +ET +Q +EMC +/Standard<>BDC +q 0 0 0 rg +BT +56.8 693 Td /F1 12 Tf[(\r)68<03>1<0e0f>2<0710>-1<11>2<03>1<12>2<13>-7<0707070707>]TJ +ET +Q +EMC +/Standard<>BDC +q 0 0 0 rg +BT +56.8 661.9 Td /F1 12 Tf[<0414>1<1311>2<0b0715>]TJ +ET +Q +EMC +/Standard<>BDC +q 0 0 0 rg +BT +56.8 565.3 Td /F1 12 Tf[<16>1<0203>1<16>1<17>]TJ +ET +Q +EMC +/Standard<>BDC +q 0 0 0 rg +BT +56.8 413.5 Td /F1 12 Tf[<0414>1<1311>2<0b0718>]TJ +ET +Q +EMC +/Standard<>BDC +q 0 0 0 rg +BT +56.8 261.7 Td /F1 12 Tf[<19>-1<0b0f>2<14>1<0f>2<0b>]TJ +ET +Q +EMC +/Standard<>BDC +q 0 0 0 rg +BT +56.8 206.5 Td /F1 12 Tf[<1a>2<11>2<06>-2<0f>]TJ +ET +Q +EMC +/Standard<>BDC +q 0 0 0 rg +BT +269.5 206.5 Td /F1 12 Tf[<1b0b08>2<1c0b0714>1<06>-2<0712>2<11>2<06>-2<0f>]TJ +ET +Q +EMC +/Standard<>BDC +q 0 0 0 rg +BT +56.8 123.7 Td /F1 12 Tf[<1d>5<040b1e130b1f>-2( )]TJ +ET +Q +EMC +/Standard<>BDC +q 0 0 0 rg +BT +269.5 123.7 Td /F1 12 Tf[<1b0b08>2<1c0b0714>1<06>-2<0713040b1e130b1f>-2( )]TJ +ET +Q +EMC +/Form<>BDC +0 0 0 RG +1 1 1 rg +120.5 686.9 143.3 20.8 re B* +EMC +/Form<>BDC +151.55 642.6 183.45 23.9 re f* +q 1.2 w 0 0 0 RG +158.75 660.55 m 162.1 660.55 164.8 657.9 164.8 654.55 c +164.8 651.2 162.1 648.5 158.75 648.5 c +155.4 648.5 152.75 651.2 152.75 654.55 c +152.75 657.9 155.4 660.55 158.75 660.55 c s + Q +q 169.6 642.6 164.25 23.9 re W* n +q 0.18039 0.20392 0.21176 rg +BT +169.6 650.3 Td /F3 12 Tf[<0102>-1<0304>]TJ +ET +Q +Q +EMC +/Form<>BDC +1 1 1 rg +151.55 624.8 125.5 17.1 re f* +q 1.2 w 0 0 0 RG +158.75 639.35 m 162.1 639.35 164.8 636.7 164.8 633.35 c +164.8 630 162.1 627.3 158.75 627.3 c +155.4 627.3 152.75 630 152.75 633.35 c +152.75 636.7 155.4 639.35 158.75 639.35 c s + Q +q 169.6 624.8 106.3 17.1 re W* n +q 0.18039 0.20392 0.21176 rg +BT +169.6 629.1 Td /F3 12 Tf[<0102>-1<0305>]TJ +ET +Q +Q +EMC +/Form<>BDC +1 1 1 rg +150.2 605.7 118.7 13.7 re f* +q 1.2 w 0 0 0 RG +157.4 618.55 m 160.75 618.55 163.45 615.9 163.45 612.55 c +163.45 609.2 160.75 606.5 157.4 606.5 c +154.05 606.5 151.4 609.2 151.4 612.55 c +151.4 615.9 154.05 618.55 157.4 618.55 c s + Q +q 168.25 605.7 99.5 13.7 re W* n +q 0.18039 0.20392 0.21176 rg +BT +168.3 608.3 Td /F3 12 Tf[<0102>-1<0306>]TJ +ET +Q +Q +EMC +/Form<>BDC +1 1 1 rg +117.45 544.3 86.65 32.1 re f* +q 1.2 w 0 0 0 RG +118.65 554.3 12.05 12.05 re S + Q +q 135.5 544.3 67.45 32.1 re W* n +q 0.18039 0.20392 0.21176 rg +BT +135.5 556.1 Td /F3 12 Tf[<07>-2(\b)-1(\t)-1<060a0b>2(\f\r)-1<0e>]TJ +ET +Q +Q +EMC +/Form<>BDC +1 1 1 rg +117.45 523.2 85.3 21.15 re f* +q 1.2 w 0 0 0 RG +118.65 527.75 12.05 12.05 re S + Q +q 135.5 523.2 66.1 21.15 re W* n +q 0.18039 0.20392 0.21176 rg +BT +135.5 529.6 Td /F3 12 Tf[<07>-2(\b)-1(\t)-1<060a0b>2(\f\r)-1<0e0b>2<0f>]TJ +ET +Q +Q +EMC +/Form<>BDC +1 1 1 rg +117.45 498 72.35 17.1 re f* +q 1.2 w 0 0 0 RG +118.65 500.5 12.05 12.05 re S + Q +q 135.5 498 53.15 17.1 re W* n +q 0.18039 0.20392 0.21176 rg +BT +135.5 502.3 Td /F3 12 Tf[<07>-2(\b)-1(\t)-1<060a0b>2(\f\r)-1<0e0b>2<10>]TJ +ET +Q +Q +EMC +/Form<>BDC +1 1 1 rg +117.45 378.75 169.15 30.75 re f* +q 1.2 w 0 0 0 RG +124.65 400.15 m 128 400.15 130.7 397.5 130.7 394.15 c +130.7 390.8 128 388.1 124.65 388.1 c +121.3 388.1 118.65 390.8 118.65 394.15 c +118.65 397.5 121.3 400.15 124.65 400.15 c s + Q +q 135.5 378.75 149.95 30.75 re W* n +q 0.18039 0.20392 0.21176 rg +BT +135.5 389.9 Td /F3 12 Tf[<11>2<12>-1<13>2<14>-2(\r)-1<15>-1<0b>2<0c16>-1<13>2<13>2(\r)-1<15>]TJ +ET +Q +Q +EMC +/Form<>BDC +1 1 1 rg +118.15 352.85 180.7 30.75 re f* +q 1.2 w 0 0 0 RG +125.35 374.25 m 128.7 374.25 131.4 371.6 131.4 368.25 c +131.4 364.9 128.7 362.2 125.35 362.2 c +122 362.2 119.35 364.9 119.35 368.25 c +119.35 371.6 122 374.25 125.35 374.25 c s + Q +q 136.2 352.85 161.5 30.75 re W* n +q 0.18039 0.20392 0.21176 rg +BT +136.2 364 Td /F3 12 Tf[<11>2<12>-1<13>2<14>-2(\r)-1<15>-1<0b>2<0c16>-1<13>2<13>2(\r)-1<15>-1<0b>2<0f>]TJ +ET +Q +Q +EMC +/Form<>BDC +1 1 1 rg +118.15 322.85 139.15 33.5 re f* +q 1.2 w 0 0 0 RG +125.35 345.6 m 128.7 345.6 131.4 342.95 131.4 339.6 c +131.4 336.25 128.7 333.55 125.35 333.55 c +122 333.55 119.35 336.25 119.35 339.6 c +119.35 342.95 122 345.6 125.35 345.6 c s + Q +q 136.2 322.85 119.95 33.5 re W* n +q 0.18039 0.20392 0.21176 rg +BT +136.2 335.4 Td /F3 12 Tf[<11>2<12>-1<13>2<14>-2(\r)-1<15>-1<0b>2<0c16>-1<13>2<13>2(\r)-1<15>-1<0b>2<10>]TJ +ET +Q +Q +EMC +/Form<>BDC +0 0 0 RG +1 1 1 rg +110.65 257.15 243.45 23.95 re B* +EMC +/Form<>BDC +155.95 154.15 67.55 81.2 re B* +EMC +/Form<>BDC +156.65 104.75 90.05 28.7 re B* +EMC +/Form<>BDC +401.45 156.9 60.05 78.45 re B* +EMC +/Form<>BDC +402.1 98.95 77.1 38.9 re B* +EMC +Q +endstream +endobj + +%QDF: ignore_newline +98 0 obj +4747 +endobj + +%% Contents for page 1 +%% Original object ID: 42 0 +99 0 obj +<< + /Length 100 0 R +>> +stream + +Q +endstream +endobj + +100 0 obj +3 +endobj + +%% Original object ID: 43 0 +101 0 obj +<< + /K [ + 161 0 R + 162 0 R + 163 0 R + 164 0 R + 165 0 R + 166 0 R + 167 0 R + 168 0 R + 169 0 R + 170 0 R + 171 0 R + 172 0 R + 173 0 R + 174 0 R + 175 0 R + 176 0 R + 177 0 R + 178 0 R + 179 0 R + 180 0 R + 181 0 R + 182 0 R + 183 0 R + 184 0 R + 185 0 R + 186 0 R + 187 0 R + 188 0 R + 189 0 R + 190 0 R + 191 0 R + 192 0 R + 193 0 R + 194 0 R + 195 0 R + 196 0 R + 197 0 R + 198 0 R + 199 0 R + 200 0 R + 201 0 R + 202 0 R + 203 0 R + 204 0 R + 205 0 R + 206 0 R + 207 0 R + 208 0 R + 209 0 R + 210 0 R + 211 0 R + 212 0 R + 213 0 R + 214 0 R + 215 0 R + 216 0 R + 217 0 R + 218 0 R + 219 0 R + ] + /P 28 0 R + /Pg 26 0 R + /S /Document + /Type /StructElem +>> +endobj + +%% Original object ID: 44 0 +102 0 obj +<< + /Nums [ + 0 + [ + 161 0 R + 163 0 R + 165 0 R + 172 0 R + 183 0 R + 194 0 R + 198 0 R + 198 0 R + 204 0 R + 204 0 R + 205 0 R + 206 0 R + 207 0 R + 208 0 R + 209 0 R + 210 0 R + 211 0 R + 212 0 R + 213 0 R + 214 0 R + 215 0 R + 216 0 R + 217 0 R + 218 0 R + 219 0 R + ] + ] +>> +endobj + +%% Original object ID: 45 0 +103 0 obj +<< + /BaseFont /BAAAAA+LiberationSerif + /FirstChar 0 + /FontDescriptor 220 0 R + /LastChar 32 + /Subtype /TrueType + /ToUnicode 221 0 R + /Type /Font + /Widths [ + 777 + 943 + 500 + 443 + 333 + 333 + 389 + 250 + 777 + 500 + 333 + 500 + 443 + 610 + 500 + 277 + 556 + 277 + 277 + 500 + 443 + 500 + 443 + 500 + 500 + 556 + 610 + 666 + 500 + 722 + 500 + 722 + 500 + ] +>> +endobj + +%% Original object ID: 46 0 +104 0 obj +<< + /BaseFont /LiberationSans + /Encoding /WinAnsiEncoding + /FirstChar 32 + /FontDescriptor 223 0 R + /LastChar 255 + /Subtype /TrueType + /Type /Font + /Widths [ + 277 + 277 + 354 + 556 + 556 + 889 + 666 + 190 + 333 + 333 + 389 + 583 + 277 + 333 + 277 + 277 + 556 + 556 + 556 + 556 + 556 + 556 + 556 + 556 + 556 + 556 + 277 + 277 + 583 + 583 + 583 + 556 + 1015 + 666 + 666 + 722 + 722 + 666 + 610 + 777 + 722 + 277 + 500 + 666 + 556 + 833 + 722 + 777 + 666 + 777 + 722 + 666 + 610 + 722 + 666 + 943 + 666 + 666 + 610 + 277 + 277 + 277 + 469 + 556 + 333 + 556 + 556 + 500 + 556 + 556 + 277 + 556 + 556 + 222 + 222 + 500 + 222 + 833 + 556 + 556 + 556 + 556 + 333 + 500 + 277 + 556 + 500 + 722 + 500 + 500 + 500 + 333 + 259 + 333 + 583 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 277 + 333 + 556 + 556 + 556 + 556 + 259 + 556 + 333 + 736 + 370 + 556 + 583 + 333 + 736 + 552 + 399 + 548 + 333 + 333 + 333 + 576 + 537 + 333 + 333 + 333 + 365 + 556 + 833 + 833 + 833 + 610 + 666 + 666 + 666 + 666 + 666 + 666 + 1000 + 722 + 666 + 666 + 666 + 666 + 277 + 277 + 277 + 277 + 722 + 722 + 777 + 777 + 777 + 777 + 777 + 583 + 777 + 722 + 722 + 722 + 722 + 666 + 666 + 610 + 556 + 556 + 556 + 556 + 556 + 556 + 889 + 500 + 556 + 556 + 556 + 556 + 277 + 277 + 277 + 277 + 556 + 556 + 556 + 556 + 556 + 556 + 556 + 548 + 610 + 556 + 556 + 556 + 556 + 500 + 556 + 500 + ] +>> +endobj + +%% Original object ID: 47 0 +105 0 obj +<< + /BaseFont /DAAAAA+LiberationSans + /FirstChar 0 + /FontDescriptor 224 0 R + /LastChar 22 + /Subtype /TrueType + /ToUnicode 225 0 R + /Type /Font + /Widths [ + 750 + 333 + 556 + 333 + 556 + 556 + 500 + 722 + 556 + 556 + 500 + 277 + 666 + 556 + 500 + 556 + 556 + 777 + 556 + 277 + 222 + 556 + 556 + ] +>> +endobj + +%% Original object ID: 48 0 +106 0 obj +<< + /BaseFont /DejaVuSans + /Encoding /WinAnsiEncoding + /FirstChar 32 + /FontDescriptor 227 0 R + /LastChar 255 + /Subtype /TrueType + /Type /Font + /Widths [ + 317 + 400 + 459 + 837 + 636 + 950 + 779 + 274 + 390 + 390 + 500 + 837 + 317 + 360 + 317 + 336 + 636 + 636 + 636 + 636 + 636 + 636 + 636 + 636 + 636 + 636 + 336 + 336 + 837 + 837 + 837 + 530 + 1000 + 684 + 686 + 698 + 770 + 631 + 575 + 774 + 751 + 294 + 294 + 655 + 557 + 862 + 748 + 787 + 603 + 787 + 694 + 634 + 610 + 731 + 684 + 988 + 685 + 610 + 685 + 390 + 336 + 390 + 837 + 500 + 500 + 612 + 634 + 549 + 634 + 615 + 352 + 634 + 633 + 277 + 277 + 579 + 277 + 974 + 633 + 611 + 634 + 634 + 411 + 520 + 392 + 633 + 591 + 817 + 591 + 591 + 524 + 636 + 336 + 636 + 837 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 317 + 400 + 636 + 636 + 636 + 636 + 336 + 500 + 500 + 1000 + 471 + 611 + 837 + 360 + 1000 + 500 + 500 + 837 + 400 + 400 + 500 + 636 + 636 + 317 + 500 + 400 + 471 + 611 + 969 + 969 + 969 + 530 + 684 + 684 + 684 + 684 + 684 + 684 + 974 + 698 + 631 + 631 + 631 + 631 + 294 + 294 + 294 + 294 + 774 + 748 + 787 + 787 + 787 + 787 + 787 + 837 + 787 + 731 + 731 + 731 + 731 + 610 + 604 + 629 + 612 + 612 + 612 + 612 + 612 + 612 + 981 + 549 + 615 + 615 + 615 + 615 + 277 + 277 + 277 + 277 + 611 + 633 + 611 + 611 + 611 + 611 + 611 + 837 + 611 + 633 + 633 + 633 + 633 + 591 + 634 + 591 + ] +>> +endobj + +%% Original object ID: 49 0 +107 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + -1 + 1 + 0 + 0 + 612 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 108 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0.18039 0.20392 0.21176 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +108 0 obj +220 +endobj + +%% Original object ID: 50 0 +109 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + -1 + 1 + 0 + 0 + 612 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 110 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +110 0 obj +12 +endobj + +%% Original object ID: 51 0 +111 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + -1 + 1 + 0 + 0 + 612 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 112 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0.18039 0.20392 0.21176 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +112 0 obj +220 +endobj + +%% Original object ID: 52 0 +113 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + -1 + 1 + 0 + 0 + 612 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 114 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +114 0 obj +12 +endobj + +%% Original object ID: 53 0 +115 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + -1 + 1 + 0 + 0 + 612 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 116 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0.18039 0.20392 0.21176 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +116 0 obj +220 +endobj + +%% Original object ID: 54 0 +117 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + -1 + 1 + 0 + 0 + 612 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 118 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +118 0 obj +12 +endobj + +%% Original object ID: 55 0 +119 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + -1 + 1 + 0 + 0 + 612 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 120 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0.18039 0.20392 0.21176 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +120 0 obj +220 +endobj + +%% Original object ID: 56 0 +121 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + -1 + 1 + 0 + 0 + 612 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 122 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +122 0 obj +12 +endobj + +%% Original object ID: 57 0 +123 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + -1 + 1 + 0 + 0 + 612 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 124 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0.18039 0.20392 0.21176 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +124 0 obj +220 +endobj + +%% Original object ID: 58 0 +125 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + -1 + 1 + 0 + 0 + 612 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 126 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +126 0 obj +12 +endobj + +%% Original object ID: 59 0 +127 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + -1 + 1 + 0 + 0 + 612 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 128 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0.18039 0.20392 0.21176 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +128 0 obj +220 +endobj + +%% Original object ID: 60 0 +129 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + -1 + 1 + 0 + 0 + 612 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 130 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +130 0 obj +12 +endobj + +%% Original object ID: 182 0 +131 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + -0.4 + 0.4 + 0 + 396 + 306 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 132 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0.18039 0.20392 0.21176 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +132 0 obj +220 +endobj + +%% Original object ID: 183 0 +133 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + -0.4 + 0.4 + 0 + 396 + 306 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 134 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +134 0 obj +12 +endobj + +%% Original object ID: 184 0 +135 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + -0.4 + 0.4 + 0 + 396 + 306 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 136 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0.18039 0.20392 0.21176 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +136 0 obj +220 +endobj + +%% Original object ID: 185 0 +137 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + -0.4 + 0.4 + 0 + 396 + 306 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 138 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +138 0 obj +12 +endobj + +%% Original object ID: 186 0 +139 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + -0.4 + 0.4 + 0 + 396 + 306 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 140 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0.18039 0.20392 0.21176 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +140 0 obj +220 +endobj + +%% Original object ID: 187 0 +141 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + -0.4 + 0.4 + 0 + 396 + 306 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 142 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +142 0 obj +12 +endobj + +%% Original object ID: 201 0 +143 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + -0.4 + 0.4 + 0 + 396 + 306 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 144 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0.18039 0.20392 0.21176 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +144 0 obj +220 +endobj + +%% Original object ID: 202 0 +145 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + -0.4 + 0.4 + 0 + 396 + 306 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 146 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +146 0 obj +12 +endobj + +%% Original object ID: 203 0 +147 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + -0.4 + 0.4 + 0 + 396 + 306 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 148 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0.18039 0.20392 0.21176 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +148 0 obj +220 +endobj + +%% Original object ID: 204 0 +149 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + -0.4 + 0.4 + 0 + 396 + 306 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 150 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +150 0 obj +12 +endobj + +%% Original object ID: 205 0 +151 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + -0.4 + 0.4 + 0 + 396 + 306 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 152 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0.18039 0.20392 0.21176 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +152 0 obj +220 +endobj + +%% Original object ID: 206 0 +153 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + -0.4 + 0.4 + 0 + 396 + 306 + ] + /Resources 3 0 R + /Subtype /Form + /Type /XObject + /Length 154 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +154 0 obj +12 +endobj + +%% Original object ID: 61 0 +155 0 obj +<< + /BBox [ + 0 + 0 + 18 + 18 + ] + /Matrix [ + 0 + -1 + 1 + 0 + 0 + 612 + ] + /Resources << + /ExtGState << + /GS0 << + /AIS false + /BM /Normal + /CA .6 + /Type /ExtGState + /ca .6 + >> + >> + >> + /Subtype /Form + /Type /XObject + /Length 156 0 R +>> +stream +q 1 1 1 rg 0 i 1 w 4 M 1 j 0 J []0 d /GS0 gs 1 0 0 1 9 5.0908 cm 7.74 12.616 m -7.74 12.616 l -8.274 12.616 -8.707 12.184 -8.707 11.649 c -8.707 -3.831 l -8.707 -4.365 -8.274 -4.798 -7.74 -4.798 c 7.74 -4.798 l 8.274 -4.798 8.707 -4.365 8.707 -3.831 c 8.707 11.649 l 8.707 12.184 8.274 12.616 7.74 12.616 c h f Q 0 G 1 1 0 rg 0 i 0.60 w 4 M 1 j 0 J []0 d 1 1 0 rg 0 G 0 i 0.59 w 4 M 1 j 0 J []0 d 1 0 0 1 9 5.0908 cm 0 0 m -0.142 0 -0.28 0.008 -0.418 0.015 c -2.199 -1.969 -5.555 -2.242 -4.642 -1.42 c -4.024 -0.862 -3.916 0.111 -3.954 0.916 c -5.658 1.795 -6.772 3.222 -6.772 4.839 c -6.772 7.509 -3.74 9.674 0 9.674 c 3.74 9.674 6.772 7.509 6.772 4.839 c 6.772 2.167 3.74 0 0 0 c 7.74 12.616 m -7.74 12.616 l -8.274 12.616 -8.707 12.184 -8.707 11.649 c -8.707 -3.831 l -8.707 -4.365 -8.274 -4.798 -7.74 -4.798 c 7.74 -4.798 l 8.274 -4.798 8.707 -4.365 8.707 -3.831 c 8.707 11.649 l 8.707 12.184 8.274 12.616 7.74 12.616 c b +endstream +endobj + +156 0 obj +929 +endobj + +%% Original object ID: 62 0 +157 0 obj +<< + /F 28 + /Open false + /Parent 158 0 R + /Rect [ + 612 + 601 + 792 + 721 + ] + /Subtype /Popup + /Type /Annot +>> +endobj + +%% Original object ID: 63 0 +158 0 obj +<< + /AP << + /N 228 0 R + >> + /C [ + 1 + 1 + 0 + ] + /CA 1 + /Contents (Salad) + /CreationDate (D:20181231235455Z00'00) + /F 28 + /M (D:20181231235455Z00'00) + /Name /Comment + /P 26 0 R + /Popup 157 0 R + /Rect [ + 435 + 703 + 453 + 721 + ] + /Subtype /Text + /T (Jay Berkenbilt) + /Type /Annot +>> +endobj + +%% Original object ID: 218 0 +159 0 obj +<< + /BBox [ + 0 + 0 + 18 + 18 + ] + /Matrix [ + 0 + -0.4 + 0.4 + 0 + 396 + 306 + ] + /Resources << + /ExtGState << + /GS0 << + /AIS false + /BM /Normal + /CA .6 + /Type /ExtGState + /ca .6 + >> + >> + >> + /Subtype /Form + /Type /XObject + /Length 160 0 R +>> +stream +q 1 1 1 rg 0 i 1 w 4 M 1 j 0 J []0 d /GS0 gs 1 0 0 1 9 5.0908 cm 7.74 12.616 m -7.74 12.616 l -8.274 12.616 -8.707 12.184 -8.707 11.649 c -8.707 -3.831 l -8.707 -4.365 -8.274 -4.798 -7.74 -4.798 c 7.74 -4.798 l 8.274 -4.798 8.707 -4.365 8.707 -3.831 c 8.707 11.649 l 8.707 12.184 8.274 12.616 7.74 12.616 c h f Q 0 G 1 1 0 rg 0 i 0.60 w 4 M 1 j 0 J []0 d 1 1 0 rg 0 G 0 i 0.59 w 4 M 1 j 0 J []0 d 1 0 0 1 9 5.0908 cm 0 0 m -0.142 0 -0.28 0.008 -0.418 0.015 c -2.199 -1.969 -5.555 -2.242 -4.642 -1.42 c -4.024 -0.862 -3.916 0.111 -3.954 0.916 c -5.658 1.795 -6.772 3.222 -6.772 4.839 c -6.772 7.509 -3.74 9.674 0 9.674 c 3.74 9.674 6.772 7.509 6.772 4.839 c 6.772 2.167 3.74 0 0 0 c 7.74 12.616 m -7.74 12.616 l -8.274 12.616 -8.707 12.184 -8.707 11.649 c -8.707 -3.831 l -8.707 -4.365 -8.274 -4.798 -7.74 -4.798 c 7.74 -4.798 l 8.274 -4.798 8.707 -4.365 8.707 -3.831 c 8.707 11.649 l 8.707 12.184 8.274 12.616 7.74 12.616 c b +endstream +endobj + +160 0 obj +929 +endobj + +%% Original object ID: 64 0 +161 0 obj +<< + /A 230 0 R + /K [ + 0 + ] + /P 101 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 65 0 +162 0 obj +<< + /A 231 0 R + /P 101 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 66 0 +163 0 obj +<< + /A 232 0 R + /K [ + 1 + ] + /P 101 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 67 0 +164 0 obj +<< + /A 233 0 R + /P 101 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 68 0 +165 0 obj +<< + /A 234 0 R + /K [ + 2 + ] + /P 101 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 69 0 +166 0 obj +<< + /A 235 0 R + /P 101 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 70 0 +167 0 obj +<< + /A 236 0 R + /P 101 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 71 0 +168 0 obj +<< + /A 237 0 R + /P 101 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 72 0 +169 0 obj +<< + /A 238 0 R + /P 101 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 73 0 +170 0 obj +<< + /A 239 0 R + /P 101 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 74 0 +171 0 obj +<< + /A 240 0 R + /P 101 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 75 0 +172 0 obj +<< + /A 241 0 R + /K [ + 3 + ] + /P 101 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 76 0 +173 0 obj +<< + /A 242 0 R + /P 101 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 77 0 +174 0 obj +<< + /A 243 0 R + /P 101 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 78 0 +175 0 obj +<< + /A 244 0 R + /P 101 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 79 0 +176 0 obj +<< + /A 245 0 R + /P 101 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 80 0 +177 0 obj +<< + /A 246 0 R + /P 101 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 81 0 +178 0 obj +<< + /A 247 0 R + /P 101 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 82 0 +179 0 obj +<< + /A 248 0 R + /P 101 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 83 0 +180 0 obj +<< + /A 249 0 R + /P 101 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 84 0 +181 0 obj +<< + /A 250 0 R + /P 101 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 85 0 +182 0 obj +<< + /A 251 0 R + /P 101 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 86 0 +183 0 obj +<< + /A 252 0 R + /K [ + 4 + ] + /P 101 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 87 0 +184 0 obj +<< + /A 253 0 R + /P 101 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 88 0 +185 0 obj +<< + /A 254 0 R + /P 101 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 89 0 +186 0 obj +<< + /A 255 0 R + /P 101 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 90 0 +187 0 obj +<< + /A 256 0 R + /P 101 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 91 0 +188 0 obj +<< + /A 257 0 R + /P 101 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 92 0 +189 0 obj +<< + /A 258 0 R + /P 101 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 93 0 +190 0 obj +<< + /A 259 0 R + /P 101 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 94 0 +191 0 obj +<< + /A 260 0 R + /P 101 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 95 0 +192 0 obj +<< + /A 261 0 R + /P 101 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 96 0 +193 0 obj +<< + /A 262 0 R + /P 101 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 97 0 +194 0 obj +<< + /A 263 0 R + /K [ + 5 + ] + /P 101 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 98 0 +195 0 obj +<< + /A 264 0 R + /P 101 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 99 0 +196 0 obj +<< + /A 265 0 R + /P 101 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 100 0 +197 0 obj +<< + /A 266 0 R + /P 101 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 101 0 +198 0 obj +<< + /A 267 0 R + /K [ + 6 + 7 + ] + /P 101 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 102 0 +199 0 obj +<< + /A 268 0 R + /P 101 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 103 0 +200 0 obj +<< + /A 269 0 R + /P 101 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 104 0 +201 0 obj +<< + /A 270 0 R + /P 101 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 105 0 +202 0 obj +<< + /A 271 0 R + /P 101 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 106 0 +203 0 obj +<< + /A 272 0 R + /P 101 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 107 0 +204 0 obj +<< + /A 273 0 R + /K [ + 8 + 9 + ] + /P 101 0 R + /Pg 26 0 R + /S /Standard + /Type /StructElem +>> +endobj + +%% Original object ID: 108 0 +205 0 obj +<< + /K [ + 10 + ] + /P 101 0 R + /Pg 26 0 R + /S /Form + /Type /StructElem +>> +endobj + +%% Original object ID: 109 0 +206 0 obj +<< + /K [ + 11 + ] + /P 101 0 R + /Pg 26 0 R + /S /Form + /Type /StructElem +>> +endobj + +%% Original object ID: 110 0 +207 0 obj +<< + /K [ + 12 + ] + /P 101 0 R + /Pg 26 0 R + /S /Form + /Type /StructElem +>> +endobj + +%% Original object ID: 111 0 +208 0 obj +<< + /K [ + 13 + ] + /P 101 0 R + /Pg 26 0 R + /S /Form + /Type /StructElem +>> +endobj + +%% Original object ID: 112 0 +209 0 obj +<< + /K [ + 14 + ] + /P 101 0 R + /Pg 26 0 R + /S /Form + /Type /StructElem +>> +endobj + +%% Original object ID: 113 0 +210 0 obj +<< + /K [ + 15 + ] + /P 101 0 R + /Pg 26 0 R + /S /Form + /Type /StructElem +>> +endobj + +%% Original object ID: 114 0 +211 0 obj +<< + /K [ + 16 + ] + /P 101 0 R + /Pg 26 0 R + /S /Form + /Type /StructElem +>> +endobj + +%% Original object ID: 115 0 +212 0 obj +<< + /K [ + 17 + ] + /P 101 0 R + /Pg 26 0 R + /S /Form + /Type /StructElem +>> +endobj + +%% Original object ID: 116 0 +213 0 obj +<< + /K [ + 18 + ] + /P 101 0 R + /Pg 26 0 R + /S /Form + /Type /StructElem +>> +endobj + +%% Original object ID: 117 0 +214 0 obj +<< + /K [ + 19 + ] + /P 101 0 R + /Pg 26 0 R + /S /Form + /Type /StructElem +>> +endobj + +%% Original object ID: 118 0 +215 0 obj +<< + /K [ + 20 + ] + /P 101 0 R + /Pg 26 0 R + /S /Form + /Type /StructElem +>> +endobj + +%% Original object ID: 119 0 +216 0 obj +<< + /K [ + 21 + ] + /P 101 0 R + /Pg 26 0 R + /S /Form + /Type /StructElem +>> +endobj + +%% Original object ID: 120 0 +217 0 obj +<< + /K [ + 22 + ] + /P 101 0 R + /Pg 26 0 R + /S /Form + /Type /StructElem +>> +endobj + +%% Original object ID: 121 0 +218 0 obj +<< + /K [ + 23 + ] + /P 101 0 R + /Pg 26 0 R + /S /Form + /Type /StructElem +>> +endobj + +%% Original object ID: 122 0 +219 0 obj +<< + /K [ + 24 + ] + /P 101 0 R + /Pg 26 0 R + /S /Form + /Type /StructElem +>> +endobj + +%% Original object ID: 123 0 +220 0 obj +<< + /Ascent 891 + /CapHeight 981 + /Descent -216 + /Flags 4 + /FontBBox [ + -543 + -303 + 1277 + 981 + ] + /FontFile2 274 0 R + /FontName /BAAAAA+LiberationSerif + /ItalicAngle 0 + /StemV 80 + /Type /FontDescriptor +>> +endobj + +%% Original object ID: 124 0 +221 0 obj +<< + /Length 222 0 R +>> +stream +/CIDInit/ProcSet findresource begin +12 dict begin +begincmap +/CIDSystemInfo<< +/Registry (Adobe) +/Ordering (UCS) +/Supplement 0 +>> def +/CMapName/Adobe-Identity-UCS def +/CMapType 2 def +1 begincodespacerange +<00> +endcodespacerange +32 beginbfchar +<01> <0057> +<02> <0068> +<03> <0065> +<04> <0072> +<05> <2019> +<06> <0073> +<07> <0020> +<08> <006D> +<09> <0079> +<0A> <0066> +<0B> <006F> +<0C> <003F> +<0D> <0054> +<0E> <0078> +<0F> <0074> +<10> <0046> +<11> <0069> +<12> <006C> +<13> <0064> +<14> <0061> +<15> <0031> +<16> <0063> +<17> <006B> +<18> <0032> +<19> <0050> +<1A> <004C> +<1B> <0043> +<1C> <0062> +<1D> <0044> +<1E> <0070> +<1F> <0077> +<20> <006E> +endbfchar +endcmap +CMapName currentdict /CMap defineresource pop +end +end +endstream +endobj + +222 0 obj +702 +endobj + +%% Original object ID: 125 0 +223 0 obj +<< + /Ascent 905 + /CapHeight 979 + /Descent -211 + /Flags 4 + /FontBBox [ + -543 + -303 + 1300 + 979 + ] + /FontName /LiberationSans + /ItalicAngle 0 + /StemV 80 + /Type /FontDescriptor +>> +endobj + +%% Original object ID: 126 0 +224 0 obj +<< + /Ascent 905 + /CapHeight 979 + /Descent -211 + /Flags 4 + /FontBBox [ + -543 + -303 + 1300 + 979 + ] + /FontFile2 276 0 R + /FontName /DAAAAA+LiberationSans + /ItalicAngle 0 + /StemV 80 + /Type /FontDescriptor +>> +endobj + +%% Original object ID: 127 0 +225 0 obj +<< + /Length 226 0 R +>> +stream +/CIDInit/ProcSet findresource begin +12 dict begin +begincmap +/CIDSystemInfo<< +/Registry (Adobe) +/Ordering (UCS) +/Supplement 0 +>> def +/CMapName/Adobe-Identity-UCS def +/CMapType 2 def +1 begincodespacerange +<00> +endcodespacerange +22 beginbfchar +<01> <0072> +<02> <0031> +<03> <002D> +<04> <0061> +<05> <0062> +<06> <0063> +<07> <0043> +<08> <0068> +<09> <0065> +<0A> <006B> +<0B> <0020> +<0C> <0042> +<0D> <006F> +<0E> <0078> +<0F> <0032> +<10> <0033> +<11> <004F> +<12> <0070> +<13> <0074> +<14> <0069> +<15> <006E> +<16> <0075> +endbfchar +endcmap +CMapName currentdict /CMap defineresource pop +end +end +endstream +endobj + +226 0 obj +582 +endobj + +%% Original object ID: 128 0 +227 0 obj +<< + /Ascent 928 + /CapHeight 1232 + /Descent -235 + /Flags 4 + /FontBBox [ + -1020 + -462 + 1792 + 1232 + ] + /FontName /DejaVuSans + /ItalicAngle 0 + /StemV 80 + /Type /FontDescriptor +>> +endobj + +%% Original object ID: 129 0 +228 0 obj +<< + /BBox [ + 0 + 0 + 18 + 18 + ] + /Resources << + /ExtGState << + /GS0 << + /AIS false + /BM /Normal + /CA .6 + /Type /ExtGState + /ca .6 + >> + >> + >> + /Subtype /Form + /Type /XObject + /Length 229 0 R +>> +stream +q 1 1 1 rg 0 i 1 w 4 M 1 j 0 J []0 d /GS0 gs 1 0 0 1 9 5.0908 cm 7.74 12.616 m -7.74 12.616 l -8.274 12.616 -8.707 12.184 -8.707 11.649 c -8.707 -3.831 l -8.707 -4.365 -8.274 -4.798 -7.74 -4.798 c 7.74 -4.798 l 8.274 -4.798 8.707 -4.365 8.707 -3.831 c 8.707 11.649 l 8.707 12.184 8.274 12.616 7.74 12.616 c h f Q 0 G 1 1 0 rg 0 i 0.60 w 4 M 1 j 0 J []0 d 1 1 0 rg 0 G 0 i 0.59 w 4 M 1 j 0 J []0 d 1 0 0 1 9 5.0908 cm 0 0 m -0.142 0 -0.28 0.008 -0.418 0.015 c -2.199 -1.969 -5.555 -2.242 -4.642 -1.42 c -4.024 -0.862 -3.916 0.111 -3.954 0.916 c -5.658 1.795 -6.772 3.222 -6.772 4.839 c -6.772 7.509 -3.74 9.674 0 9.674 c 3.74 9.674 6.772 7.509 6.772 4.839 c 6.772 2.167 3.74 0 0 0 c 7.74 12.616 m -7.74 12.616 l -8.274 12.616 -8.707 12.184 -8.707 11.649 c -8.707 -3.831 l -8.707 -4.365 -8.274 -4.798 -7.74 -4.798 c 7.74 -4.798 l 8.274 -4.798 8.707 -4.365 8.707 -3.831 c 8.707 11.649 l 8.707 12.184 8.274 12.616 7.74 12.616 c b +endstream +endobj + +229 0 obj +929 +endobj + +%% Original object ID: 130 0 +230 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 131 0 +231 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 132 0 +232 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 133 0 +233 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 134 0 +234 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 135 0 +235 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 136 0 +236 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 137 0 +237 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 138 0 +238 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 139 0 +239 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 140 0 +240 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 141 0 +241 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 142 0 +242 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 143 0 +243 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 144 0 +244 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 145 0 +245 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 146 0 +246 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 147 0 +247 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 148 0 +248 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 149 0 +249 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 150 0 +250 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 151 0 +251 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 152 0 +252 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 153 0 +253 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 154 0 +254 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 155 0 +255 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 156 0 +256 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 157 0 +257 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 158 0 +258 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 159 0 +259 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 160 0 +260 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 161 0 +261 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 162 0 +262 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 163 0 +263 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 164 0 +264 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 165 0 +265 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 166 0 +266 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 167 0 +267 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 168 0 +268 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 169 0 +269 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 170 0 +270 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 171 0 +271 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 172 0 +272 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 173 0 +273 0 obj +<< + /O /Layout + /Placement /Block +>> +endobj + +%% Original object ID: 174 0 +274 0 obj +<< + /Length1 16184 + /Length 275 0 R +>> +stream +true @cmapcvt =O;fpgm\glyfky h"dhead0.6hheagy/$hmtx +{/(loca؜/Dmaxp*V/ name?H0 vpostd$; prepLb;  +  H=p=L]FPiuiPZZP`PPm{1o1MffJf/^tFF<}Shv= }JAl +T/HjgaAU )% 42$ +U4Kan_=m +{dN@G[ZYXUTSRQPONMLKJIHGFEDCBA@?>=<;:9876510/.-,('&%$#"! + , `E% Fa#E#aH-, EhD-,E#F` a F`&#HH-,E#F#a ` &a a&#HH-,E#F`@a f`&#HH-,E#F#a@` &a@a&#HH-, <<-, E# D# ZQX# D#Y QX# MD#Y &QX# D#Y!!-, EhD ` EFvhE`D-, +C#Ce +-, + C#C -,(#p(>(#p(E: -, E%EadPQXED!!Y-,I#D-, EC`D-,CCe +-, i@a ,b`+ d#da\XaY-,E+)#D)z-,Ee,#DE+#D-,KRXED!!Y-,KQXED!!Y-,%# `#-,%# a#-,%-,CRX!!!!!F#F`F# F`ab# # pE` PXaFY`h:Y-, E%FRKQ[X%F ha%%?#!8!Y-, E%FPX%F ha%%?#!8!Y-,CC -,!! d#d@b-,!QX d#d b@/+Y`-,!QX d#dUb/+Y`-, d#d@b`#!-,KSX%Id#Ei@ab aj#D#!# 9/Y-,KSX %Idi &%Id#ab aj#D&#D#D& 9# 9//Y-,E#E`#E`#E`#vhb -,H+-, ETX@D E@aD!!Y-,E0/E#Ea``iD-,KQX/#p#B!!Y-,KQX %EiSXD!!Y!!Y-,EC`c`iD-,/ED-,E# E`D-,E#E`D-,K#QX34 34YDD-,CX&EXdf`d `f X!@YaY#XeY)#D#)!!!!!Y-,CTXKS#KQZX8!!Y!!!!Y-,CX%Ed `f X!@Ya#XeY)#D%% XY%% F%#B<%%%% F%`#B< XY%%)) EeD%%)%% XY%%CH%%%%`CH!Y!!!!!!!-,% F%#B%%EH!!!!-,% %%CH!!!-,E# E P X#e#Y#h @PX!@Y#XeY`D-,KS#KQZX E`D!!Y-,KTX E`D!!Y-,KS#KQZX8!!Y-,!KTX8!!Y-,CTXF+!!!!Y-,CTXG+!!!Y-,CTXH+!!!!Y-,CTXI+!!!Y-, #KSKQZX#8!!Y-,%ISX @8!Y-,F#F`#Fa#  Fab@@pE`h:-, #Id#SX<!Y-,KRX}zY-,KKTB-,B#Q@SZX TXC`BY$QX @TXC`B$TX C`BKKRXC`BY@TXC`BY@cTXC`BY@cTXC`BY&QX@cTX@C`BY@cTXC`BYYYYYYCTX@ +@@ @  CTX@   CRX@ @@ @Y@U@cUZX  YYYBBBBB-,Eh#KQX# E d@PX|Yh`YD-,%%#>#> +#eB #B#?#? #eB#B-,CPCT[X!# Y-,Y+-,-=O@  + + H  +_Y @ + H dVfVF6&ipdpdT@4$P@09pO/]]]]]]]qqqqqrrrrrr^]]_]]]]]]]qqqqqqqqqqqqrr_rrrrr^]]]]]]]]]]]qqqq?3333+3?3+3333/3/3+993310# #'5! 3 '5!^55Du?i-\0ud 55O^55@y   PY PY RY9p`P@0 p`@p`]]]]]]]qqqqqrrrrrrrrrr^]]]]q?+33?3+333?+99333310>32!574#"!57'5!FH?z|rk}^dw2h.)<--^---PF@ZPY  PY QY p`P>P@0 qqqrrrrr^]]]]]]]]]?+?+9/_^]+993333103267#"&463 "!4&=g600Vοiho\P 8.fR)Q@-  PY + PY +_@qrr?+3?+?333_^]3992310#'"!57'5!>3+:22Bww <<nB-- -u2\DR@y Y[ `hp?P`/8P/^]]]]]]qqqqqrr^]]]]]]qqqqrrr^]]]]]]q?3++9333105654&'&54632埒%DD5=R*M8p #@69WT(Y@4! )* !PY PY*p*`*P* **_*O*]]]qqqqq?3+?3+9999333310#"&'533254/.54632#'&#"ӱF0-1Kx™Ye\2g/*5rQUMNZ?#Dz4!DcF|m/PD9N2.CV+1@ !((--! 321.PY1(! -+-PY+ RY '%RYv3V363$333333333b3P3D303$333h3333t3@343$33333333d3P3D343$333333333k3;3 3338333`3T3@343333333t@+3T3@343333333p3P333^]]]]]]_]]qqqqqqqqqqqrrrrrrrr^]]]]]]]]]]]qqqqqqqqqqqqqrrrrrrrrr^]]]]]]_]]]]]]]qqqqqq?+33?+33?33+33333?+93333310>32>32!574#"!574&#"!57'5!FK@EuMDyUEE?BUUXVww`+:49+B--X + 6A--XSY-- -F@      PYQYtfVt`PB2$htfTF2"rbRD4&tbRD4&8r@WfTF2$tdPD4pO^]]]]]]]_]]qqqqqqqqqqqqr_rrrrrrrrrrrrrr^]]]]]]]]]]]]]]]]qqqqqqqqqqqqqqqqrrrrrrrrrrrrrrr^]]]]]]]]]]]]]]qqqq?2+?3+33333_^]3993310"'5332>7'5!'5!NL/!74XI7`^bA`tF`54&#"#563 #"&54632PVNjpR#B9ME34EF32F^Ny1+ 1HH13FE%=<@     `Y _Y?_? kpOo_@0_0;_O0p_0 p?/]]]]]]]]]]qqqqqqqqqrrrrrrrr^]]]]]]qqqqqqqqqqqrrrrrrrr^]]]]]]]]qq?+3?+33/_^]39310!57#"#!#'.+;3]CDx15; k5@e   +@adH$4Dd $D +9$d$!H@*H@0   PY   PY ?3+333?39+333_^]_]++qr^]qr+933333310%!57 !57 '5!'5! V}m5o}ЁRl5---M------.-G@' + PY  QY?/]]]r?+3?33+39922310"&5#5?33#327N`_{}e?;0:S#rg-'TABA;)=@ `Y_o-  `Y _Y _Ytdt`TDtdT@0 9q_qrrrrr^]]]]]]]]]]]]]]qqqqqqqqrrrrrrr?+3?++9/_^]_]]+9333310!57'5!#'&+!73#'B p==Z555Ѡd+L @f  SY@PY PY9p`P@P p`P@]]]]]]]qqqqqqqrrrr_rr^]]?+3?+_^]+933310#"&54632!57'5!{@-,@@,-@ ++,@@,-@@:-- -) @p + PY PY      t d $   9   p ` P @    P      p ` P @ ]]]]]]]qqqqqqrrrr_rrr^]]]]]]]]]]]?+3?+910%!57'5!oFF---J@O PY PYPYQYGP@0 @` ]]]]qqqrrrrr^]?+33?+?+?+99333310%# 432&='5!!327&# qloDtqZYrFZ!--;'Hq%m@?%% '&%" +"QYPY  +PYPY'_'@'']qrr?+?+?39/_^]+9+393333102!'#"4>?54&#"#563267њurIGJdS"8_Dc2~-^r^{Aa\/u#^nH +K@-   @ +sY@    ` @ ]]]]qq?+3?_^]93310%!5%5%3s/4P55Fa5NN`@< PY QY>@0 @_]]qqqqqrrrr^]?+3?3+993310%# 4632#'&# 327N1Z7ه7+Stl9$)/hԵ!'@M @` @P=0P`PpY]HMUH59H@"+1HPY PY PY?+3?39+333?+++++_^]qr^]qr9333339310 '5! !57!57'5!XbLuXfV{dw1-------ZL`@7  +sYvY@`@]]]]qq?+3?+3/_^]999333310)57>54&#"#632!˺Iv5p+#BWYd΅+pűL[;!=@ + + `Y `Y_Y + _Y o/oO?/o_8/?^]]]]]]qqqqrr^]]]]]]qqqqqqqrrrrr?+3?++9/+99333104&+326!57'5! #ZbhN˟B555u;h=8@   _Y _Y `Y tfVF&vfTF&vfTD2 9d4p@0 pP@]]]]]]]]qqqqqqqqq_rrrrrrrr^]]]_]]]]]]]]]]]qqqqqqqqqqqrrrrrrrrrrr?+3/_^]+?+399310!273!57'5!wd>A嬬<h55TL>@! _Y +  + +_Y@]?+3/?3/_^]+993310 !2#'.# 326?3^XBF`r;%Ac@Zc3ۮ+/7.? @Q PYQY PY@9`@` ]]]]qqqqqqqrr^]]r?+?+33?+99333104&#"326'5!632#"&';tTu|/dVN .-6N&;u= L@/  _Y`Y_Y`Y?@ p]]]qr^]?++?++993310!#32 !%#57'5xsf""{"55!L!@Q + +"#PY PY QYPY@###90####`#@###`#?#]]]]qqqqqr^]]r?+?3+3?+?+3993333310'5!>32#"'!574&#"32k*Iqf@wd}uNYjf-7$,H)//N!@ + + H  +PY @ + H TD$tD0$dT9T@0 `P@0 p_ ]]]]]]]qqqqqqrrrr_rrrr^]]]]]qqqqqqqqqrrrrr?3333+3?3+3333/3+993310# #'5!3'5!NJoT՚fhlz--e--/@} PY PY +RY9tdTD4$p`@p`]]]]]]]qqqqq_qrrrrrrrrrr^]]]]q?+33?3+333?+99333310>32!574&#"!57'5!DM:z|rk}QUZjqq `,9--XS_-- -D_<DF!EW!9P)T9+?Nj%9s;9+9)JHN'Zs;;VT;!/^"$H ` F +\ + 4 : * p42!2/\nVVfmz/ C +nQ  . 5 > X   $ 62  h    (  + 8 \  j j 4 Digitized data copyright (c) 2010 Google Corporation. +Copyright (c) 2012 Red Hat, Inc.Liberation SerifRegularAscender - Liberation SerifLiberation SerifVersion 2.00.2LiberationSerifLiberation is a trademark of Red Hat, Inc. registered in U.S. Patent and Trademark Office and certain other jurisdictions.Ascender CorporationSteve MattesonBased on Tinos, which was designed by Steve Matteson as an innovative, refreshing serif design that is metrically compatible with Times New Roman. Tinos offers improved on-screen readability characteristics and the pan-European WGL character set and solves the needs of developers looking for width-compatible fonts to address document portability across platforms.http://www.ascendercorp.com/http://www.ascendercorp.com/typedesigners.htmlLicensed under the SIL Open Font License, Version 1.1http://scripts.sil.org/OFLDigitized data copyright (c) 2010 Google Corporation. +Copyright (c) 2012 Red Hat, Inc.Liberation SerifRegularAscender - Liberation SerifLiberation SerifVersion 2.00.2LiberationSerifLiberation is a trademark of Red Hat, Inc. registered in U.S. Patent and Trademark Office and certain other jurisdictions.Ascender CorporationSteve MattesonBased on Tinos, which was designed by Steve Matteson as an innovative, refreshing serif design that is metrically compatible with Times New Roman!". Tinos offers improved on-screen readability characteristics and the pan-European WGL character set and solves the needs of developers looking for width-compatible fonts to address document portability across platforms.http://www.ascendercorp.com/http://www.ascendercorp.com/typedesigners.htmlLicensed under the SIL Open Font License, Version 1.1http://scripts.sil.org/OFL!d PAbehg`N_UA=@U@BUC=BU.==>U<=;U;?;O;;;>U0=/U/>U-=,U,,>U?=>UJHUGHUF=EUEHUI=HU`?@ P)O_0P`p + 8=U=U<0P݀ݰU 0p/O`P`/.G' FOL=NAMMM/MOMoMMLL/L@8_ +{pvvsP)on+nG*3U3U@Ib%(F`_@_P)[Z0ZG)3UU3U?OoRPQPPP@P FOO/O@eK!(F`JpJJIF)HG8GG/GGGG_GGFFF@F)/F@F!FHU3UU3UU3U/_?TS++KRKP[%S@QZUZ[XYBK2SX`YKdSX@YKSXBYsst++++++++sstu++s+u+t++^s++++++++++++++ssssssst+++s+++sssssss+ss++s^s+++^s^s^s^ssss+sssssssss+++++++s++++s++++++++s^ +endstream +endobj + +%QDF: ignore_newline +275 0 obj +16184 +endobj + +%% Original object ID: 175 0 +276 0 obj +<< + /Length1 11088 + /Length 277 0 R +>> +stream +true @cmapU=8Hcvt K&fpgm\hglyfQe hheadAI.6hheae$hmtx4SZloca,%<0maxpg/l name R ^post*' prepI( C  + }y:wW~j`jy"3kkk{Rni`[^^eoz iq4 HjgaAh@G[ZYXUTSRQPONMLKJIHGFEDCBA@?>=<;:9876510/.-,('&%$#"! + , `E% Fa#E#aH-, EhD-,E#F` a F`&#HH-,E#F#a ` &a a&#HH-,E#F`@a f`&#HH-,E#F#a@` &a@a&#HH-, <<-, E# D# ZQX# D#Y QX# MD#Y &QX# D#Y!!-, EhD ` EFvhE`D-, +C#Ce +-, + C#C -,(#p(>(#p(E: -, E%EadPQXED!!Y-,I#D-, EC`D-,CCe +-, i@a ,b`+ d#da\XaY-,E+)#D)z-,Ee,#DE+#D-,KRXED!!Y-,KQXED!!Y-,%# `#-,%# a#-,%-,CRX!!!!!F#F`F# F`ab# # pE` PXaFY`h:Y-, E%FRKQ[X%F ha%%?#!8!Y-, E%FPX%F ha%%?#!8!Y-,CC -,!! d#d@b-,!QX d#d b@/+Y`-,!QX d#dUb/+Y`-, d#d@b`#!-,KSX%Id#Ei@ab aj#D#!# 9/Y-,KSX %Idi &%Id#ab aj#D&#D#D& 9# 9//Y-,E#E`#E`#E`#vhb -,H+-, ETX@D E@aD!!Y-,E0/E#Ea``iD-,KQX/#p#B!!Y-,KQX %EiSXD!!Y!!Y-,EC`c`iD-,/ED-,E# E`D-,E#E`D-,K#QX34 34YDD-,CX&EXdf`d `f X!@YaY#XeY)#D#)!!!!!Y-,CTXKS#KQZX8!!Y!!!!Y-,CX%Ed `f X!@Ya#XeY)#D%% XY%% F%#B<%%%% F%`#B< XY%%)) EeD%%)%% XY%%CH%%%%`CH!Y!!!!!!!-,% F%#B%%EH!!!!-,% %%CH!!!-,E# E P X#e#Y#h @PX!@Y#XeY`D-,KS#KQZX E`D!!Y-,KTX E`D!!Y-,KS#KQZX8!!Y-,!KTX8!!Y-,CTXF+!!!!Y-,CTXG+!!!Y-,CTXH+!!!!Y-,CTXI+!!!Y-, #KSKQZX#8!!Y-,%ISX @8!Y-,F#F`#Fa#  Fab@@pE`h:-, #Id#SX<!Y-,KRX}zY-,KKTB-,B#Q@SZX TXC`BY$QX @TXC`B$TX C`BKKRXC`BY@TXC`BY@cTXC`BY@cTXC`BY&QX@cTX@C`BY@cTXC`BYYYYYYCTX@ +@@ @  CTX@   CRX@ @@ @Y@U@cUZX  YYYBBBBB-,Eh#KQX# E d@PX|Yh`YD-,%%#>#> +#eB #B#?#? #eB#B-,CPCT[X!# Y-,Y+-,-2@  ?/993310!!!eL5N#@  +???3399331034'33>32&#"+pf$%$r%f + + ++@ tY?+3?33/39331035!5%3!gMW<[Op@Y//]q+99105![РWsN#0@V )).21QY )QY?o  PY$PY2222p2`2P2022]qqqqqqqq?+?+3/_^]q9/+9?+93333310"&546?54&#"'!2327#"&'#'2>=pxyn .*;!DGd[EZcYF_;rRZ$.PQpip|gZSY0dQX`#]@7  $%PY +!PY%?%%p%%%%%]]]qqqrr?+???+9999333310!"&'##6533>324&#"326r{32zxy"Yc +6YAXhZWNf@E  PY p`p  + +PY +]?+3/_^]q?3/]+9333103267#"32.#"`ri"hl Zjhy^@9  _Y@P  _Y  ]?+3/_^]?+3/_^]933310"3 #"$5!2.(WɣlB.G1%NIQ~<{`@; PYp]]]]]]]qqrrr?+?39?9933310>32#4.#"#3=:}*`Ujc/ro4~= +WNw@F PY  PY PY p`P0qqqqqqqqq?+?+9/_^]+9/93333103267!"3 '.#"uaݺ^H-  @g  + +   ?  ? _   ? _  9 @SVH`   `   0 @  +????9^]qqr+^]qr93323993310!#33 0Ima / h@:  _Y$M>_Y_Y?+?+9/_^]_]_q++993333910#!! 4&#!!264)!26AQs}rbBsVN +H@, PYPYp`P0]qqqqqqq?+?+993310#"!24&#"326꽅!0: T@  +  v D T d 6 $         v d   & F V g F V  d V D 6 $      & 6 F 7f  @6=BH9 "       t ` T @ 4   @"H   P p  +?3?393^]_]+qqqqqqqqqqr_rr+r^]]]qqqqqqqqr^]]]]]]]]]qqqqqqq9333333310! # 3 3 ! D,[g >@   sYtY?+9?+3993331035>54&#"'>32!g3Oys Ksu||Vt}qɹR^FN(c@9" "%)*%tYMMsY sY?3+?+39/_^]+++99333310#"&'7!2654&+532654&#"'>32$fbw 뗐srqzoŰa0@ _Y _Y ]]?+?+993310#"$5!2#"32שŦrJ< MR},-WM$]@7 &%PY "PY&?&&p&&&&&]]]qqqrr?+???+9999333310!"'##4'33>324&#"326rV0ƽzky?{"ʼY61fd]Z*,E@$   PY    @PY]?+?_^]3+393332310%#"5#53733#327*Y]}5x3?$D҃UN?=n@H SY       p         O  ]qqqqqqqrrrrrrrrrr?+??933310533 :Na@< + +PY  +p]]]]]]]qqrrr?2??+99933310!4.#"#4'33>329*\Y>ykv4S*,9Op]/:_@;  PY  p]]]]]]]qqrrr?2??+3993331032653#.'##"&5:*\Y>y:Rkv4s*,9Op]_<@W>NCs[sWsWhssW9VsVsgsN9as9s&X0X||6N +rZ1/\nWWfmz, @ +iN  . 56 P   4* ^ |   (  + 8 \ j R 4 Digitized data copyright (c) 2010 Google Corporation. +Copyright (c) 2012 Red Hat, Inc.Liberation SansRegularAscender - Liberation SansLiberation SansVersion 2.00.2LiberationSansLiberation is a trademark of Red Hat, Inc. registered in U.S. Patent and Trademark Office and certain other jurisdictions.Ascender CorporationSteve MattesonBased on Arimo, which was designed by Steve Matteson as an innovative, refreshing sans serif design that is metrically compatible with Arial. Arimo offers improved on-screen readability characteristics and the pan-European WGL character set and solves the needs of developers looking for width-compatible fonts to address document portability across platforms.http://www.ascendercorp.com/http://www.ascendercorp.com/typedesigners.htmlLicensed under the SIL Open Font License, Version 1.1http://scripts.sil.org/OFLDigitized data copyright (c) 2010 Google Corporation. +Copyright (c) 2012 Red Hat, Inc.Liberation SansRegularAscender - Liberation SansLiberation SansVersion 2.00.2LiberationSansLiberation is a trademark of Red Hat, Inc. registered in U.S. Patent and Trademark Office and certain other jurisdictions.Ascender CorporationSteve MattesonBased on Arimo, which was designed by Steve Matteson as an innovative, refreshing sans serif design that is metrically compatible with Arial!". Arimo offers improved on-screen readability characteristics and the pan-European WGL character set and solves the needs of developers looking for width-compatible fonts to address document portability across platforms.http://www.ascendercorp.com/http://www.ascendercorp.com/typedesigners.htmlLicensed under the SIL Open Font License, Version 1.1http://scripts.sil.org/OFL'A! ?9U>9UB@A@;3:U839U@@ +O P(F(F*F+_O_ F@FF@36FFUHU2UUHU=UU=U@F<P&(Pp@2F?Oop?а/?Э/?ЪO/o$PoF0@pЏO_oF1ts?sP&on<nF5U3U3U`P&_P&\F1[ZHZF12UU2Ul <Ll|Q@dQ@Q58F@Q%(FPIF HF5GF5FFFF2UU2UU?_/Oo?oOTS++KRKP[%S@QZUZ[XYBK2SX`YKdSX@YKSXBYststu+++++stu+++t++ssu+++++++++++++++++s+tstusts++tus+stsststtsts^sstssss+ss+++s+tu+++++++++++++t++^s++^st++++ss^ssssss++++++^ +endstream +endobj + +%QDF: ignore_newline +277 0 obj +11088 +endobj + +xref +0 278 +0000000000 65535 f +0000000052 00000 n +0000000610 00000 n +0000000822 00000 n +0000000922 00000 n +0000001249 00000 n +0000001407 00000 n +0000001823 00000 n +0000002239 00000 n +0000002655 00000 n +0000002814 00000 n +0000003200 00000 n +0000003649 00000 n +0000004225 00000 n +0000004729 00000 n +0000005219 00000 n +0000005553 00000 n +0000005714 00000 n +0000006137 00000 n +0000006560 00000 n +0000006983 00000 n +0000007144 00000 n +0000007535 00000 n +0000007989 00000 n +0000008570 00000 n +0000009079 00000 n +0000009582 00000 n +0000010254 00000 n +0000010421 00000 n +0000010601 00000 n +0000010723 00000 n +0000011010 00000 n +0000011058 00000 n +0000011454 00000 n +0000011848 00000 n +0000012244 00000 n +0000012467 00000 n +0000012515 00000 n +0000012808 00000 n +0000012856 00000 n +0000012965 00000 n +0000013188 00000 n +0000013236 00000 n +0000013529 00000 n +0000013577 00000 n +0000013800 00000 n +0000013848 00000 n +0000014141 00000 n +0000014189 00000 n +0000014585 00000 n +0000014979 00000 n +0000015375 00000 n +0000015672 00000 n +0000015720 00000 n +0000016045 00000 n +0000016094 00000 n +0000016542 00000 n +0000016591 00000 n +0000016918 00000 n +0000016967 00000 n +0000017290 00000 n +0000017340 00000 n +0000017633 00000 n +0000017682 00000 n +0000018084 00000 n +0000018484 00000 n +0000018886 00000 n +0000019115 00000 n +0000019164 00000 n +0000019463 00000 n +0000019512 00000 n +0000019741 00000 n +0000019790 00000 n +0000020089 00000 n +0000020138 00000 n +0000020367 00000 n +0000020416 00000 n +0000020715 00000 n +0000020764 00000 n +0000021166 00000 n +0000021566 00000 n +0000021968 00000 n +0000022271 00000 n +0000022320 00000 n +0000022651 00000 n +0000022701 00000 n +0000023155 00000 n +0000023205 00000 n +0000023538 00000 n +0000023588 00000 n +0000023917 00000 n +0000023966 00000 n +0000024328 00000 n +0000024498 00000 n +0000024869 00000 n +0000025066 00000 n +0000025143 00000 n +0000025214 00000 n +0000030040 00000 n +0000030113 00000 n +0000030174 00000 n +0000030222 00000 n +0000031053 00000 n +0000031487 00000 n +0000031967 00000 n +0000033913 00000 n +0000034312 00000 n +0000036255 00000 n +0000036688 00000 n +0000036738 00000 n +0000036963 00000 n +0000037012 00000 n +0000037445 00000 n +0000037495 00000 n +0000037720 00000 n +0000037769 00000 n +0000038202 00000 n +0000038252 00000 n +0000038477 00000 n +0000038526 00000 n +0000038959 00000 n +0000039009 00000 n +0000039234 00000 n +0000039283 00000 n +0000039716 00000 n +0000039766 00000 n +0000039991 00000 n +0000040040 00000 n +0000040473 00000 n +0000040523 00000 n +0000040748 00000 n +0000040798 00000 n +0000041237 00000 n +0000041288 00000 n +0000041519 00000 n +0000041569 00000 n +0000042008 00000 n +0000042059 00000 n +0000042290 00000 n +0000042340 00000 n +0000042779 00000 n +0000042830 00000 n +0000043061 00000 n +0000043111 00000 n +0000043550 00000 n +0000043601 00000 n +0000043832 00000 n +0000043882 00000 n +0000044321 00000 n +0000044372 00000 n +0000044603 00000 n +0000044653 00000 n +0000045092 00000 n +0000045143 00000 n +0000045374 00000 n +0000045423 00000 n +0000046703 00000 n +0000046753 00000 n +0000046924 00000 n +0000047288 00000 n +0000048574 00000 n +0000048624 00000 n +0000048767 00000 n +0000048893 00000 n +0000049036 00000 n +0000049162 00000 n +0000049305 00000 n +0000049431 00000 n +0000049557 00000 n +0000049683 00000 n +0000049809 00000 n +0000049935 00000 n +0000050061 00000 n +0000050204 00000 n +0000050330 00000 n +0000050456 00000 n +0000050582 00000 n +0000050708 00000 n +0000050834 00000 n +0000050960 00000 n +0000051086 00000 n +0000051212 00000 n +0000051338 00000 n +0000051464 00000 n +0000051607 00000 n +0000051733 00000 n +0000051859 00000 n +0000051985 00000 n +0000052111 00000 n +0000052237 00000 n +0000052363 00000 n +0000052489 00000 n +0000052615 00000 n +0000052741 00000 n +0000052867 00000 n +0000053010 00000 n +0000053136 00000 n +0000053263 00000 n +0000053390 00000 n +0000053540 00000 n +0000053667 00000 n +0000053794 00000 n +0000053921 00000 n +0000054048 00000 n +0000054175 00000 n +0000054325 00000 n +0000054453 00000 n +0000054581 00000 n +0000054709 00000 n +0000054837 00000 n +0000054965 00000 n +0000055093 00000 n +0000055221 00000 n +0000055349 00000 n +0000055477 00000 n +0000055605 00000 n +0000055733 00000 n +0000055861 00000 n +0000055989 00000 n +0000056117 00000 n +0000056245 00000 n +0000056519 00000 n +0000057280 00000 n +0000057331 00000 n +0000057576 00000 n +0000057849 00000 n +0000058490 00000 n +0000058541 00000 n +0000058785 00000 n +0000060010 00000 n +0000060061 00000 n +0000060147 00000 n +0000060233 00000 n +0000060319 00000 n +0000060405 00000 n +0000060491 00000 n +0000060577 00000 n +0000060663 00000 n +0000060749 00000 n +0000060835 00000 n +0000060921 00000 n +0000061007 00000 n +0000061093 00000 n +0000061179 00000 n +0000061265 00000 n +0000061351 00000 n +0000061437 00000 n +0000061523 00000 n +0000061609 00000 n +0000061695 00000 n +0000061781 00000 n +0000061867 00000 n +0000061953 00000 n +0000062039 00000 n +0000062125 00000 n +0000062211 00000 n +0000062297 00000 n +0000062383 00000 n +0000062469 00000 n +0000062555 00000 n +0000062641 00000 n +0000062727 00000 n +0000062813 00000 n +0000062899 00000 n +0000062985 00000 n +0000063071 00000 n +0000063157 00000 n +0000063243 00000 n +0000063329 00000 n +0000063415 00000 n +0000063501 00000 n +0000063587 00000 n +0000063673 00000 n +0000063759 00000 n +0000063845 00000 n +0000080127 00000 n +0000080180 00000 n +0000091366 00000 n +trailer << + /DocChecksum /CC322E136FE95DECF8BC297B1A9B2C2E + /Info 2 0 R + /Root 1 0 R + /Size 278 + /ID [<31415926535897932384626433832795>] +>> +startxref +91390 +%%EOF diff --git a/qpdf/qtest/qpdf/test80b1.pdf b/qpdf/qtest/qpdf/test80b1.pdf new file mode 100644 index 00000000..bab1115d --- /dev/null +++ b/qpdf/qtest/qpdf/test80b1.pdf @@ -0,0 +1,4375 @@ +%PDF-1.3 +% +%QDF-1.0 + +%% Original object ID: 1 0 +1 0 obj +<< + /AcroForm 2 0 R + /Pages 3 0 R + /Type /Catalog +>> +endobj + +%% Original object ID: 227 0 +2 0 obj +<< + /Fields [ + 4 0 R + 5 0 R + 6 0 R + 7 0 R + 8 0 R + 9 0 R + 10 0 R + 11 0 R + 12 0 R + 13 0 R + 14 0 R + 15 0 R + 16 0 R + 17 0 R + 18 0 R + 19 0 R + 20 0 R + 21 0 R + 22 0 R + 23 0 R + 24 0 R + 25 0 R + ] +>> +endobj + +%% Original object ID: 2 0 +3 0 obj +<< + /Count 1 + /Kids [ + 26 0 R + ] + /Type /Pages +>> +endobj + +%% Original object ID: 29 0 +4 0 obj +<< + /AP << + /N 27 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F2 12 Tf) + /DR << + /Font 29 0 R + >> + /DV + /F 4 + /FT /Tx + /Rect [ + 351.199 + 689.901 + 488.501 + 704.699 + ] + /Subtype /Widget + /T (text) + /Type /Annot + /V +>> +endobj + +%% Original object ID: 47 0 +5 0 obj +<< + /DV /1 + /FT /Btn + /Ff 49152 + /Kids [ + 30 0 R + 31 0 R + 32 0 R + ] + /T (r1) + /V /2 +>> +endobj + +%% Original object ID: 62 0 +6 0 obj +<< + /AP << + /N << + /Off 33 0 R + /Yes 35 0 R + >> + >> + /AS /Off + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 37 0 R + >> + >> + /DV /Off + /F 4 + /FT /Btn + /MK << + /CA (8) + >> + /Rect [ + 481.299 + 554.301 + 493.351 + 566.349 + ] + /Subtype /Widget + /T (checkbox1) + /Type /Annot + /V /Off +>> +endobj + +%% Original object ID: 70 0 +7 0 obj +<< + /AP << + /N << + /Off 38 0 R + /Yes 40 0 R + >> + >> + /AS /Yes + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 37 0 R + >> + >> + /DV /Yes + /F 4 + /FT /Btn + /MK << + /CA (8) + >> + /Rect [ + 481.299 + 527.751 + 493.351 + 539.799 + ] + /Subtype /Widget + /T (checkbox2) + /Type /Annot + /V /Yes +>> +endobj + +%% Original object ID: 78 0 +8 0 obj +<< + /AP << + /N << + /Off 42 0 R + /Yes 44 0 R + >> + >> + /AS /Off + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 37 0 R + >> + >> + /DV /Off + /F 4 + /FT /Btn + /MK << + /CA (8) + >> + /Rect [ + 481.299 + 500.501 + 493.351 + 512.549 + ] + /Subtype /Widget + /T (checkbox3) + /Type /Annot + /V /Off +>> +endobj + +%% Original object ID: 97 0 +9 0 obj +<< + /DV /2 + /FT /Btn + /Ff 49152 + /Kids [ + 46 0 R + 47 0 R + 48 0 R + ] + /T (r2) + /V /2 +>> +endobj + +%% Original object ID: 110 0 +10 0 obj +<< + /AP << + /N 49 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F2 12 Tf) + /DR << + /Font 29 0 R + >> + /DV + /F 4 + /FT /Tx + /Rect [ + 260.899 + 260.151 + 498.351 + 278.099 + ] + /Subtype /Widget + /T (text2) + /Type /Annot + /V +>> +endobj + +%% Original object ID: 115 0 +11 0 obj +<< + /AP << + /N 51 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf) + /DR << + /Font 29 0 R + >> + /DV + /F 4 + /FT /Ch + /Ff 393216 + /Opt [ + + + + + ] + /Rect [ + 152.999 + 159.401 + 208.051 + 232.849 + ] + /Subtype /Widget + /T (combolist1) + /Type /Annot + /V +>> +endobj + +%% Original object ID: 120 0 +12 0 obj +<< + /AP << + /N 53 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf) + /DR << + /Font 29 0 R + >> + /DV + /F 4 + /FT /Ch + /Opt [ + + + + + + + + + + + + + ] + /Rect [ + 390.999 + 156.651 + 453.551 + 232.849 + ] + /Subtype /Widget + /T (list1) + /Type /Annot + /V (1) +>> +endobj + +%% Original object ID: 125 0 +13 0 obj +<< + /AP << + /N 55 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf) + /DR << + /Font 29 0 R + >> + /DV + /F 4 + /FT /Ch + /Ff 131072 + /Opt [ + + + + + ] + /Rect [ + 367.799 + 107.251 + 452.851 + 130.949 + ] + /Subtype /Widget + /T (drop1) + /Type /Annot + /V +>> +endobj + +%% Original object ID: 130 0 +14 0 obj +<< + /AP << + /N 57 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf) + /DR << + /Font 29 0 R + >> + /DV + /F 4 + /FT /Ch + /Ff 393216 + /Opt [ + + + + + ] + /Rect [ + 135.299 + 101.451 + 207.401 + 135.349 + ] + /Subtype /Widget + /T (combodrop1) + /Type /Annot + /V +>> +endobj + +%% Original object ID: 141 0 +15 0 obj +<< + /AP << + /N 59 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F2 12 Tf) + /DR << + /Font 29 0 R + >> + /DV + /F 4 + /FT /Tx + /Rect [ + 201.6796 + 671.9604 + 256.6004 + 677.8796 + ] + /Subtype /Widget + /T (text) + /Type /Annot + /V +>> +endobj + +%% Original object ID: 153 0 +16 0 obj +<< + /DV /1 + /FT /Btn + /Ff 49152 + /Kids [ + 61 0 R + 62 0 R + 63 0 R + ] + /T (r1) + /V /2 +>> +endobj + +%% Original object ID: 166 0 +17 0 obj +<< + /AP << + /N << + /Off 64 0 R + /Yes 66 0 R + >> + >> + /AS /Off + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 37 0 R + >> + >> + /DV /Off + /F 4 + /FT /Btn + /MK << + /CA (8) + >> + /Rect [ + 253.7196 + 617.7204 + 258.5404 + 622.5396 + ] + /Subtype /Widget + /T (checkbox1) + /Type /Annot + /V /Off +>> +endobj + +%% Original object ID: 172 0 +18 0 obj +<< + /AP << + /N << + /Off 68 0 R + /Yes 70 0 R + >> + >> + /AS /Yes + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 37 0 R + >> + >> + /DV /Yes + /F 4 + /FT /Btn + /MK << + /CA (8) + >> + /Rect [ + 253.7196 + 607.1004 + 258.5404 + 611.9196 + ] + /Subtype /Widget + /T (checkbox2) + /Type /Annot + /V /Yes +>> +endobj + +%% Original object ID: 178 0 +19 0 obj +<< + /AP << + /N << + /Off 72 0 R + /Yes 74 0 R + >> + >> + /AS /Off + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 37 0 R + >> + >> + /DV /Off + /F 4 + /FT /Btn + /MK << + /CA (8) + >> + /Rect [ + 253.7196 + 596.2004 + 258.5404 + 601.0196 + ] + /Subtype /Widget + /T (checkbox3) + /Type /Annot + /V /Off +>> +endobj + +%% Original object ID: 191 0 +20 0 obj +<< + /DV /2 + /FT /Btn + /Ff 49152 + /Kids [ + 76 0 R + 77 0 R + 78 0 R + ] + /T (r2) + /V /2 +>> +endobj + +%% Original object ID: 203 0 +21 0 obj +<< + /AP << + /N 79 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F2 12 Tf) + /DR << + /Font 29 0 R + >> + /DV + /F 4 + /FT /Tx + /Rect [ + 165.5596 + 500.0604 + 260.5404 + 507.2396 + ] + /Subtype /Widget + /T (text2) + /Type /Annot + /V +>> +endobj + +%% Original object ID: 207 0 +22 0 obj +<< + /AP << + /N 81 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf) + /DR << + /Font 29 0 R + >> + /DV + /F 4 + /FT /Ch + /Ff 393216 + /Opt [ + + + + + ] + /Rect [ + 122.3996 + 459.7604 + 144.4204 + 489.1396 + ] + /Subtype /Widget + /T (combolist1) + /Type /Annot + /V +>> +endobj + +%% Original object ID: 211 0 +23 0 obj +<< + /AP << + /N 83 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf) + /DR << + /Font 29 0 R + >> + /DV + /F 4 + /FT /Ch + /Opt [ + + + + + + + + + + + + + ] + /Rect [ + 217.5996 + 458.6604 + 242.6204 + 489.1396 + ] + /Subtype /Widget + /T (list1) + /Type /Annot + /V (1) +>> +endobj + +%% Original object ID: 215 0 +24 0 obj +<< + /AP << + /N 85 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf) + /DR << + /Font 29 0 R + >> + /DV + /F 4 + /FT /Ch + /Ff 131072 + /Opt [ + + + + + ] + /Rect [ + 208.3196 + 438.9004 + 242.3404 + 448.3796 + ] + /Subtype /Widget + /T (drop1) + /Type /Annot + /V +>> +endobj + +%% Original object ID: 219 0 +25 0 obj +<< + /AP << + /N 87 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf) + /DR << + /Font 29 0 R + >> + /DV + /F 4 + /FT /Ch + /Ff 393216 + /Opt [ + + + + + ] + /Rect [ + 115.3196 + 436.5804 + 144.1604 + 450.1396 + ] + /Subtype /Widget + /T (combodrop1) + /Type /Annot + /V +>> +endobj + +%% Page 1 +%% Original object ID: 3 0 +26 0 obj +<< + /Annots [ + 4 0 R + 30 0 R + 31 0 R + 32 0 R + 6 0 R + 7 0 R + 8 0 R + 46 0 R + 47 0 R + 48 0 R + 10 0 R + 11 0 R + 12 0 R + 13 0 R + 14 0 R + 89 0 R + 90 0 R + 15 0 R + 61 0 R + 62 0 R + 63 0 R + 17 0 R + 18 0 R + 19 0 R + 76 0 R + 77 0 R + 78 0 R + 21 0 R + 22 0 R + 23 0 R + 24 0 R + 25 0 R + 91 0 R + 92 0 R + ] + /Contents 93 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 95 0 R + >> + /ProcSet 96 0 R + >> + /Type /Page +>> +endobj + +%% Original object ID: 30 0 +27 0 obj +<< + /BBox [ + 0 + 0 + 137.3 + 14.8 + ] + /Matrix [ + -1 + 0 + 0 + 1 + 612 + 0 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 28 0 R +>> +stream +/Tx BMC +q +BT +0.18039 0.20392 0.21176 rg /F2 12 Tf +1 2.6 Td +(abc) Tj +ET +Q +EMC +endstream +endobj + +28 0 obj +77 +endobj + +%% Original object ID: 11 0 +29 0 obj +<< + /F1 98 0 R + /F2 99 0 R + /F3 100 0 R + /F4 101 0 R + /ZaDi 37 0 R +>> +endobj + +%% Original object ID: 48 0 +30 0 obj +<< + /AP << + /N << + /1 102 0 R + /Off 104 0 R + >> + >> + /AS /Off + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 37 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 5 0 R + /Rect [ + 447.199 + 648.501 + 459.251 + 660.549 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +%% Original object ID: 49 0 +31 0 obj +<< + /AP << + /N << + /2 106 0 R + /Off 108 0 R + >> + >> + /AS /2 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 37 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 5 0 R + /Rect [ + 447.199 + 627.301 + 459.251 + 639.349 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +%% Original object ID: 50 0 +32 0 obj +<< + /AP << + /N << + /3 110 0 R + /Off 112 0 R + >> + >> + /AS /Off + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 37 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 5 0 R + /Rect [ + 448.549 + 606.501 + 460.601 + 618.549 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +%% Original object ID: 63 0 +33 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + -1 + 0 + 0 + 1 + 612 + 0 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 34 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +34 0 obj +12 +endobj + +%% Original object ID: 64 0 +35 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + -1 + 0 + 0 + 1 + 612 + 0 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 36 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +1.9 1.9 Td (8) Tj +ET +Q +EMC +endstream +endobj + +36 0 obj +82 +endobj + +%% Original object ID: 28 0 +37 0 obj +<< + /BaseFont /ZapfDingbats + /Subtype /Type1 + /Type /Font +>> +endobj + +%% Original object ID: 71 0 +38 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + -1 + 0 + 0 + 1 + 612 + 0 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 39 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +39 0 obj +12 +endobj + +%% Original object ID: 72 0 +40 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + -1 + 0 + 0 + 1 + 612 + 0 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 41 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +1.9 1.9 Td (8) Tj +ET +Q +EMC +endstream +endobj + +41 0 obj +82 +endobj + +%% Original object ID: 79 0 +42 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + -1 + 0 + 0 + 1 + 612 + 0 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 43 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +43 0 obj +12 +endobj + +%% Original object ID: 80 0 +44 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + -1 + 0 + 0 + 1 + 612 + 0 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 45 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +1.9 1.9 Td (8) Tj +ET +Q +EMC +endstream +endobj + +45 0 obj +82 +endobj + +%% Original object ID: 98 0 +46 0 obj +<< + /AP << + /N << + /1 114 0 R + /Off 116 0 R + >> + >> + /AS /Off + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 37 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 9 0 R + /Rect [ + 481.299 + 388.101 + 493.351 + 400.149 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +%% Original object ID: 99 0 +47 0 obj +<< + /AP << + /N << + /2 118 0 R + /Off 120 0 R + >> + >> + /AS /2 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 37 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 9 0 R + /Rect [ + 480.599 + 362.201 + 492.651 + 374.249 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +%% Original object ID: 100 0 +48 0 obj +<< + /AP << + /N << + /3 122 0 R + /Off 124 0 R + >> + >> + /AS /Off + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 37 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 9 0 R + /Rect [ + 480.599 + 333.551 + 492.651 + 345.599 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +%% Original object ID: 111 0 +49 0 obj +<< + /BBox [ + 0 + 0 + 237.45 + 17.95 + ] + /Matrix [ + -1 + 0 + 0 + 1 + 612 + 0 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 50 0 R +>> +stream +/Tx BMC +q +BT +0.18039 0.20392 0.21176 rg /F2 12 Tf +1 4.175 Td +(salad ??) Tj +ET +Q +EMC +endstream +endobj + +50 0 obj +85 +endobj + +%% Original object ID: 116 0 +51 0 obj +<< + /BBox [ + 0 + 0 + 55.05 + 73.45 + ] + /Matrix [ + -1 + 0 + 0 + 1 + 612 + 0 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 52 0 R +>> +stream +1 1 1 rg +0 -0.05 55.05 73.45 re f* +/Tx BMC +q +BT +0.18039 0.20392 0.21176 rg /F4 10 Tf +1 32.725 Td +(pi) Tj +ET +Q +EMC +endstream +endobj + +52 0 obj +114 +endobj + +%% Original object ID: 121 0 +53 0 obj +<< + /BBox [ + 0 + 0 + 62.55 + 76.2 + ] + /Matrix [ + -1 + 0 + 0 + 1 + 612 + 0 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 54 0 R +>> +stream +1 1 1 rg +0 -0.05 62.55 76.2 re f* +/Tx BMC +q +0.85 0.85 0.85 rg +0 62.1 62.55 12 re f +Q +q +BT +0.18039 0.20392 0.21176 rg /F4 10 Tf +1 64.1 Td +(1) Tj +0 -12 Td +(2) Tj +0 -12 Td +(3) Tj +0 -12 Td +(4) Tj +0 -12 Td +(five) Tj +0 -12 Td +(six) Tj +ET +Q +EMC +endstream +endobj + +54 0 obj +238 +endobj + +%% Original object ID: 126 0 +55 0 obj +<< + /BBox [ + 0 + 0 + 85.05 + 23.7 + ] + /Matrix [ + -1 + 0 + 0 + 1 + 612 + 0 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 56 0 R +>> +stream +1 1 1 rg +0 -0.05 85.05 23.7 re f* +/Tx BMC +q +BT +0.18039 0.20392 0.21176 rg /F4 10 Tf +1 7.85 Td +(elephant) Tj +ET +Q +EMC +endstream +endobj + +56 0 obj +117 +endobj + +%% Original object ID: 131 0 +57 0 obj +<< + /BBox [ + 0 + 0 + 72.1 + 33.9 + ] + /Matrix [ + -1 + 0 + 0 + 1 + 612 + 0 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 58 0 R +>> +stream +1 1 1 rg +0 -0.05 72.1 33.9 re f* +/Tx BMC +q +BT +0.18039 0.20392 0.21176 rg /F4 10 Tf +1 12.95 Td +(delta) Tj +ET +Q +EMC +endstream +endobj + +58 0 obj +114 +endobj + +%% Original object ID: 142 0 +59 0 obj +<< + /BBox [ + 0 + 0 + 137.3 + 14.8 + ] + /Matrix [ + -0.4 + 0 + 0 + 0.4 + 550.8 + 396 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 60 0 R +>> +stream +/Tx BMC +q +BT +0.18039 0.20392 0.21176 rg /F2 12 Tf +1 2.6 Td +(abc) Tj +ET +Q +EMC +endstream +endobj + +60 0 obj +77 +endobj + +%% Original object ID: 154 0 +61 0 obj +<< + /AP << + /N << + /1 126 0 R + /Off 128 0 R + >> + >> + /AS /Off + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 37 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 16 0 R + /Rect [ + 240.0796 + 655.4004 + 244.9004 + 660.2196 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +%% Original object ID: 155 0 +62 0 obj +<< + /AP << + /N << + /2 130 0 R + /Off 132 0 R + >> + >> + /AS /2 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 37 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 16 0 R + /Rect [ + 240.0796 + 646.9204 + 244.9004 + 651.7396 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +%% Original object ID: 156 0 +63 0 obj +<< + /AP << + /N << + /3 134 0 R + /Off 136 0 R + >> + >> + /AS /Off + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 37 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 16 0 R + /Rect [ + 240.6196 + 638.6004 + 245.4404 + 643.4196 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +%% Original object ID: 167 0 +64 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + -0.4 + 0 + 0 + 0.4 + 550.8 + 396 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 65 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +65 0 obj +12 +endobj + +%% Original object ID: 168 0 +66 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + -0.4 + 0 + 0 + 0.4 + 550.8 + 396 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 67 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +1.9 1.9 Td (8) Tj +ET +Q +EMC +endstream +endobj + +67 0 obj +82 +endobj + +%% Original object ID: 173 0 +68 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + -0.4 + 0 + 0 + 0.4 + 550.8 + 396 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 69 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +69 0 obj +12 +endobj + +%% Original object ID: 174 0 +70 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + -0.4 + 0 + 0 + 0.4 + 550.8 + 396 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 71 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +1.9 1.9 Td (8) Tj +ET +Q +EMC +endstream +endobj + +71 0 obj +82 +endobj + +%% Original object ID: 179 0 +72 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + -0.4 + 0 + 0 + 0.4 + 550.8 + 396 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 73 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +73 0 obj +12 +endobj + +%% Original object ID: 180 0 +74 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + -0.4 + 0 + 0 + 0.4 + 550.8 + 396 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 75 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +1.9 1.9 Td (8) Tj +ET +Q +EMC +endstream +endobj + +75 0 obj +82 +endobj + +%% Original object ID: 192 0 +76 0 obj +<< + /AP << + /N << + /1 138 0 R + /Off 140 0 R + >> + >> + /AS /Off + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 37 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 20 0 R + /Rect [ + 253.7196 + 551.2404 + 258.5404 + 556.0596 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +%% Original object ID: 193 0 +77 0 obj +<< + /AP << + /N << + /2 142 0 R + /Off 144 0 R + >> + >> + /AS /2 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 37 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 20 0 R + /Rect [ + 253.4396 + 540.8804 + 258.2604 + 545.6996 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +%% Original object ID: 194 0 +78 0 obj +<< + /AP << + /N << + /3 146 0 R + /Off 148 0 R + >> + >> + /AS /Off + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 37 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 20 0 R + /Rect [ + 253.4396 + 529.4204 + 258.2604 + 534.2396 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +%% Original object ID: 204 0 +79 0 obj +<< + /BBox [ + 0 + 0 + 237.45 + 17.95 + ] + /Matrix [ + -0.4 + 0 + 0 + 0.4 + 550.8 + 396 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 80 0 R +>> +stream +/Tx BMC +q +BT +0.18039 0.20392 0.21176 rg /F2 12 Tf +1 4.175 Td +(salad ??) Tj +ET +Q +EMC +endstream +endobj + +80 0 obj +85 +endobj + +%% Original object ID: 208 0 +81 0 obj +<< + /BBox [ + 0 + 0 + 55.05 + 73.45 + ] + /Matrix [ + -0.4 + 0 + 0 + 0.4 + 550.8 + 396 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 82 0 R +>> +stream +1 1 1 rg +0 -0.05 55.05 73.45 re f* +/Tx BMC +q +BT +0.18039 0.20392 0.21176 rg /F4 10 Tf +1 32.725 Td +(pi) Tj +ET +Q +EMC +endstream +endobj + +82 0 obj +114 +endobj + +%% Original object ID: 212 0 +83 0 obj +<< + /BBox [ + 0 + 0 + 62.55 + 76.2 + ] + /Matrix [ + -0.4 + 0 + 0 + 0.4 + 550.8 + 396 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 84 0 R +>> +stream +1 1 1 rg +0 -0.05 62.55 76.2 re f* +/Tx BMC +q +0.85 0.85 0.85 rg +0 62.1 62.55 12 re f +Q +q +BT +0.18039 0.20392 0.21176 rg /F4 10 Tf +1 64.1 Td +(1) Tj +0 -12 Td +(2) Tj +0 -12 Td +(3) Tj +0 -12 Td +(4) Tj +0 -12 Td +(five) Tj +0 -12 Td +(six) Tj +ET +Q +EMC +endstream +endobj + +84 0 obj +238 +endobj + +%% Original object ID: 216 0 +85 0 obj +<< + /BBox [ + 0 + 0 + 85.05 + 23.7 + ] + /Matrix [ + -0.4 + 0 + 0 + 0.4 + 550.8 + 396 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 86 0 R +>> +stream +1 1 1 rg +0 -0.05 85.05 23.7 re f* +/Tx BMC +q +BT +0.18039 0.20392 0.21176 rg /F4 10 Tf +1 7.85 Td +(elephant) Tj +ET +Q +EMC +endstream +endobj + +86 0 obj +117 +endobj + +%% Original object ID: 220 0 +87 0 obj +<< + /BBox [ + 0 + 0 + 72.1 + 33.9 + ] + /Matrix [ + -0.4 + 0 + 0 + 0.4 + 550.8 + 396 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 88 0 R +>> +stream +1 1 1 rg +0 -0.05 72.1 33.9 re f* +/Tx BMC +q +BT +0.18039 0.20392 0.21176 rg /F4 10 Tf +1 12.95 Td +(delta) Tj +ET +Q +EMC +endstream +endobj + +88 0 obj +114 +endobj + +%% Original object ID: 136 0 +89 0 obj +<< + /AP << + /N 150 0 R + >> + /C [ + 1 + 1 + 0 + ] + /CA 1 + /Contents (Salad) + /CreationDate (D:20181231235455Z00'00) + /F 28 + /M (D:20181231235455Z00'00) + /Name /Comment + /Popup 152 0 R + /Rect [ + 159 + 703 + 177 + 721 + ] + /Subtype /Text + /T (Jay Berkenbilt) + /Type /Annot +>> +endobj + +%% Original object ID: 138 0 +90 0 obj +<< + /F 28 + /Open false + /Parent 153 0 R + /Rect [ + -180 + 601 + 0 + 721 + ] + /Subtype /Popup + /Type /Annot +>> +endobj + +%% Original object ID: 223 0 +91 0 obj +<< + /AP << + /N 154 0 R + >> + /C [ + 1 + 1 + 0 + ] + /CA 1 + /Contents (Salad) + /CreationDate (D:20181231235455Z00'00) + /F 28 + /M (D:20181231235455Z00'00) + /Name /Comment + /Popup 152 0 R + /Rect [ + 124.8 + 677.2 + 132 + 684.4 + ] + /Subtype /Text + /T (Jay Berkenbilt) + /Type /Annot +>> +endobj + +%% Original object ID: 226 0 +92 0 obj +<< + /F 28 + /Open false + /Parent 153 0 R + /Rect [ + -10.8 + 636.4 + 61.2 + 684.4 + ] + /Subtype /Popup + /Type /Annot +>> +endobj + +%% Contents for page 1 +%% Original object ID: 4 0 +93 0 obj +<< + /Length 94 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato) Tj +ET +endstream +endobj + +94 0 obj +44 +endobj + +%% Original object ID: 6 0 +95 0 obj +<< + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding + /Name /F1 + /Subtype /Type1 + /Type /Font +>> +endobj + +%% Original object ID: 5 0 +96 0 obj +[ + /PDF + /Text +] +endobj + +%% Original object ID: 10 0 +97 0 obj +<< + /Font 29 0 R + /ProcSet [ + /PDF + /Text + ] +>> +endobj + +%% Original object ID: 12 0 +98 0 obj +<< + /BaseFont /BAAAAA+LiberationSerif + /FirstChar 0 + /FontDescriptor 156 0 R + /LastChar 32 + /Subtype /TrueType + /ToUnicode 157 0 R + /Type /Font + /Widths [ + 777 + 943 + 500 + 443 + 333 + 333 + 389 + 250 + 777 + 500 + 333 + 500 + 443 + 610 + 500 + 277 + 556 + 277 + 277 + 500 + 443 + 500 + 443 + 500 + 500 + 556 + 610 + 666 + 500 + 722 + 500 + 722 + 500 + ] +>> +endobj + +%% Original object ID: 18 0 +99 0 obj +<< + /BaseFont /LiberationSans + /Encoding /WinAnsiEncoding + /FirstChar 32 + /FontDescriptor 159 0 R + /LastChar 255 + /Subtype /TrueType + /Type /Font + /Widths [ + 277 + 277 + 354 + 556 + 556 + 889 + 666 + 190 + 333 + 333 + 389 + 583 + 277 + 333 + 277 + 277 + 556 + 556 + 556 + 556 + 556 + 556 + 556 + 556 + 556 + 556 + 277 + 277 + 583 + 583 + 583 + 556 + 1015 + 666 + 666 + 722 + 722 + 666 + 610 + 777 + 722 + 277 + 500 + 666 + 556 + 833 + 722 + 777 + 666 + 777 + 722 + 666 + 610 + 722 + 666 + 943 + 666 + 666 + 610 + 277 + 277 + 277 + 469 + 556 + 333 + 556 + 556 + 500 + 556 + 556 + 277 + 556 + 556 + 222 + 222 + 500 + 222 + 833 + 556 + 556 + 556 + 556 + 333 + 500 + 277 + 556 + 500 + 722 + 500 + 500 + 500 + 333 + 259 + 333 + 583 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 277 + 333 + 556 + 556 + 556 + 556 + 259 + 556 + 333 + 736 + 370 + 556 + 583 + 333 + 736 + 552 + 399 + 548 + 333 + 333 + 333 + 576 + 537 + 333 + 333 + 333 + 365 + 556 + 833 + 833 + 833 + 610 + 666 + 666 + 666 + 666 + 666 + 666 + 1000 + 722 + 666 + 666 + 666 + 666 + 277 + 277 + 277 + 277 + 722 + 722 + 777 + 777 + 777 + 777 + 777 + 583 + 777 + 722 + 722 + 722 + 722 + 666 + 666 + 610 + 556 + 556 + 556 + 556 + 556 + 556 + 889 + 500 + 556 + 556 + 556 + 556 + 277 + 277 + 277 + 277 + 556 + 556 + 556 + 556 + 556 + 556 + 556 + 548 + 610 + 556 + 556 + 556 + 556 + 500 + 556 + 500 + ] +>> +endobj + +%% Original object ID: 20 0 +100 0 obj +<< + /BaseFont /DAAAAA+LiberationSans + /FirstChar 0 + /FontDescriptor 160 0 R + /LastChar 22 + /Subtype /TrueType + /ToUnicode 161 0 R + /Type /Font + /Widths [ + 750 + 333 + 556 + 333 + 556 + 556 + 500 + 722 + 556 + 556 + 500 + 277 + 666 + 556 + 500 + 556 + 556 + 777 + 556 + 277 + 222 + 556 + 556 + ] +>> +endobj + +%% Original object ID: 26 0 +101 0 obj +<< + /BaseFont /DejaVuSans + /Encoding /WinAnsiEncoding + /FirstChar 32 + /FontDescriptor 163 0 R + /LastChar 255 + /Subtype /TrueType + /Type /Font + /Widths [ + 317 + 400 + 459 + 837 + 636 + 950 + 779 + 274 + 390 + 390 + 500 + 837 + 317 + 360 + 317 + 336 + 636 + 636 + 636 + 636 + 636 + 636 + 636 + 636 + 636 + 636 + 336 + 336 + 837 + 837 + 837 + 530 + 1000 + 684 + 686 + 698 + 770 + 631 + 575 + 774 + 751 + 294 + 294 + 655 + 557 + 862 + 748 + 787 + 603 + 787 + 694 + 634 + 610 + 731 + 684 + 988 + 685 + 610 + 685 + 390 + 336 + 390 + 837 + 500 + 500 + 612 + 634 + 549 + 634 + 615 + 352 + 634 + 633 + 277 + 277 + 579 + 277 + 974 + 633 + 611 + 634 + 634 + 411 + 520 + 392 + 633 + 591 + 817 + 591 + 591 + 524 + 636 + 336 + 636 + 837 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 317 + 400 + 636 + 636 + 636 + 636 + 336 + 500 + 500 + 1000 + 471 + 611 + 837 + 360 + 1000 + 500 + 500 + 837 + 400 + 400 + 500 + 636 + 636 + 317 + 500 + 400 + 471 + 611 + 969 + 969 + 969 + 530 + 684 + 684 + 684 + 684 + 684 + 684 + 974 + 698 + 631 + 631 + 631 + 631 + 294 + 294 + 294 + 294 + 774 + 748 + 787 + 787 + 787 + 787 + 787 + 837 + 787 + 731 + 731 + 731 + 731 + 610 + 604 + 629 + 612 + 612 + 612 + 612 + 612 + 612 + 981 + 549 + 615 + 615 + 615 + 615 + 277 + 277 + 277 + 277 + 611 + 633 + 611 + 611 + 611 + 611 + 611 + 837 + 611 + 633 + 633 + 633 + 633 + 591 + 634 + 591 + ] +>> +endobj + +%% Original object ID: 51 0 +102 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + -1 + 0 + 0 + 1 + 612 + 0 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 103 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0.18039 0.20392 0.21176 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +103 0 obj +220 +endobj + +%% Original object ID: 52 0 +104 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + -1 + 0 + 0 + 1 + 612 + 0 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 105 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +105 0 obj +12 +endobj + +%% Original object ID: 53 0 +106 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + -1 + 0 + 0 + 1 + 612 + 0 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 107 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0.18039 0.20392 0.21176 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +107 0 obj +220 +endobj + +%% Original object ID: 54 0 +108 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + -1 + 0 + 0 + 1 + 612 + 0 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 109 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +109 0 obj +12 +endobj + +%% Original object ID: 55 0 +110 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + -1 + 0 + 0 + 1 + 612 + 0 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 111 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0.18039 0.20392 0.21176 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +111 0 obj +220 +endobj + +%% Original object ID: 56 0 +112 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + -1 + 0 + 0 + 1 + 612 + 0 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 113 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +113 0 obj +12 +endobj + +%% Original object ID: 101 0 +114 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + -1 + 0 + 0 + 1 + 612 + 0 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 115 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0.18039 0.20392 0.21176 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +115 0 obj +220 +endobj + +%% Original object ID: 102 0 +116 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + -1 + 0 + 0 + 1 + 612 + 0 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 117 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +117 0 obj +12 +endobj + +%% Original object ID: 103 0 +118 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + -1 + 0 + 0 + 1 + 612 + 0 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 119 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0.18039 0.20392 0.21176 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +119 0 obj +220 +endobj + +%% Original object ID: 104 0 +120 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + -1 + 0 + 0 + 1 + 612 + 0 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 121 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +121 0 obj +12 +endobj + +%% Original object ID: 105 0 +122 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + -1 + 0 + 0 + 1 + 612 + 0 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 123 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0.18039 0.20392 0.21176 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +123 0 obj +220 +endobj + +%% Original object ID: 106 0 +124 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + -1 + 0 + 0 + 1 + 612 + 0 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 125 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +125 0 obj +12 +endobj + +%% Original object ID: 157 0 +126 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + -0.4 + 0 + 0 + 0.4 + 550.8 + 396 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 127 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0.18039 0.20392 0.21176 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +127 0 obj +220 +endobj + +%% Original object ID: 158 0 +128 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + -0.4 + 0 + 0 + 0.4 + 550.8 + 396 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 129 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +129 0 obj +12 +endobj + +%% Original object ID: 159 0 +130 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + -0.4 + 0 + 0 + 0.4 + 550.8 + 396 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 131 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0.18039 0.20392 0.21176 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +131 0 obj +220 +endobj + +%% Original object ID: 160 0 +132 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + -0.4 + 0 + 0 + 0.4 + 550.8 + 396 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 133 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +133 0 obj +12 +endobj + +%% Original object ID: 161 0 +134 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + -0.4 + 0 + 0 + 0.4 + 550.8 + 396 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 135 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0.18039 0.20392 0.21176 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +135 0 obj +220 +endobj + +%% Original object ID: 162 0 +136 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + -0.4 + 0 + 0 + 0.4 + 550.8 + 396 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 137 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +137 0 obj +12 +endobj + +%% Original object ID: 195 0 +138 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + -0.4 + 0 + 0 + 0.4 + 550.8 + 396 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 139 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0.18039 0.20392 0.21176 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +139 0 obj +220 +endobj + +%% Original object ID: 196 0 +140 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + -0.4 + 0 + 0 + 0.4 + 550.8 + 396 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 141 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +141 0 obj +12 +endobj + +%% Original object ID: 197 0 +142 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + -0.4 + 0 + 0 + 0.4 + 550.8 + 396 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 143 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0.18039 0.20392 0.21176 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +143 0 obj +220 +endobj + +%% Original object ID: 198 0 +144 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + -0.4 + 0 + 0 + 0.4 + 550.8 + 396 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 145 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +145 0 obj +12 +endobj + +%% Original object ID: 199 0 +146 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + -0.4 + 0 + 0 + 0.4 + 550.8 + 396 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 147 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0.18039 0.20392 0.21176 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +147 0 obj +220 +endobj + +%% Original object ID: 200 0 +148 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + -0.4 + 0 + 0 + 0.4 + 550.8 + 396 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 149 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +149 0 obj +12 +endobj + +%% Original object ID: 137 0 +150 0 obj +<< + /BBox [ + 0 + 0 + 18 + 18 + ] + /Matrix [ + -1 + 0 + 0 + 1 + 612 + 0 + ] + /Resources << + /ExtGState << + /GS0 << + /AIS false + /BM /Normal + /CA .6 + /Type /ExtGState + /ca .6 + >> + >> + >> + /Subtype /Form + /Type /XObject + /Length 151 0 R +>> +stream +q 1 1 1 rg 0 i 1 w 4 M 1 j 0 J []0 d /GS0 gs 1 0 0 1 9 5.0908 cm 7.74 12.616 m -7.74 12.616 l -8.274 12.616 -8.707 12.184 -8.707 11.649 c -8.707 -3.831 l -8.707 -4.365 -8.274 -4.798 -7.74 -4.798 c 7.74 -4.798 l 8.274 -4.798 8.707 -4.365 8.707 -3.831 c 8.707 11.649 l 8.707 12.184 8.274 12.616 7.74 12.616 c h f Q 0 G 1 1 0 rg 0 i 0.60 w 4 M 1 j 0 J []0 d 1 1 0 rg 0 G 0 i 0.59 w 4 M 1 j 0 J []0 d 1 0 0 1 9 5.0908 cm 0 0 m -0.142 0 -0.28 0.008 -0.418 0.015 c -2.199 -1.969 -5.555 -2.242 -4.642 -1.42 c -4.024 -0.862 -3.916 0.111 -3.954 0.916 c -5.658 1.795 -6.772 3.222 -6.772 4.839 c -6.772 7.509 -3.74 9.674 0 9.674 c 3.74 9.674 6.772 7.509 6.772 4.839 c 6.772 2.167 3.74 0 0 0 c 7.74 12.616 m -7.74 12.616 l -8.274 12.616 -8.707 12.184 -8.707 11.649 c -8.707 -3.831 l -8.707 -4.365 -8.274 -4.798 -7.74 -4.798 c 7.74 -4.798 l 8.274 -4.798 8.707 -4.365 8.707 -3.831 c 8.707 11.649 l 8.707 12.184 8.274 12.616 7.74 12.616 c b +endstream +endobj + +151 0 obj +929 +endobj + +%% Original object ID: 135 0 +152 0 obj +<< + /F 28 + /Open false + /Parent 153 0 R + /Rect [ + 612 + 601 + 792 + 721 + ] + /Subtype /Popup + /Type /Annot +>> +endobj + +%% Original object ID: 132 0 +153 0 obj +<< + /AP << + /N 164 0 R + >> + /C [ + 1 + 1 + 0 + ] + /CA 1 + /Contents (Salad) + /CreationDate (D:20181231235455Z00'00) + /F 28 + /M (D:20181231235455Z00'00) + /Name /Comment + /Popup 152 0 R + /Rect [ + 435 + 703 + 453 + 721 + ] + /Subtype /Text + /T (Jay Berkenbilt) + /Type /Annot +>> +endobj + +%% Original object ID: 224 0 +154 0 obj +<< + /BBox [ + 0 + 0 + 18 + 18 + ] + /Matrix [ + -0.4 + 0 + 0 + 0.4 + 550.8 + 396 + ] + /Resources << + /ExtGState << + /GS0 << + /AIS false + /BM /Normal + /CA .6 + /Type /ExtGState + /ca .6 + >> + >> + >> + /Subtype /Form + /Type /XObject + /Length 155 0 R +>> +stream +q 1 1 1 rg 0 i 1 w 4 M 1 j 0 J []0 d /GS0 gs 1 0 0 1 9 5.0908 cm 7.74 12.616 m -7.74 12.616 l -8.274 12.616 -8.707 12.184 -8.707 11.649 c -8.707 -3.831 l -8.707 -4.365 -8.274 -4.798 -7.74 -4.798 c 7.74 -4.798 l 8.274 -4.798 8.707 -4.365 8.707 -3.831 c 8.707 11.649 l 8.707 12.184 8.274 12.616 7.74 12.616 c h f Q 0 G 1 1 0 rg 0 i 0.60 w 4 M 1 j 0 J []0 d 1 1 0 rg 0 G 0 i 0.59 w 4 M 1 j 0 J []0 d 1 0 0 1 9 5.0908 cm 0 0 m -0.142 0 -0.28 0.008 -0.418 0.015 c -2.199 -1.969 -5.555 -2.242 -4.642 -1.42 c -4.024 -0.862 -3.916 0.111 -3.954 0.916 c -5.658 1.795 -6.772 3.222 -6.772 4.839 c -6.772 7.509 -3.74 9.674 0 9.674 c 3.74 9.674 6.772 7.509 6.772 4.839 c 6.772 2.167 3.74 0 0 0 c 7.74 12.616 m -7.74 12.616 l -8.274 12.616 -8.707 12.184 -8.707 11.649 c -8.707 -3.831 l -8.707 -4.365 -8.274 -4.798 -7.74 -4.798 c 7.74 -4.798 l 8.274 -4.798 8.707 -4.365 8.707 -3.831 c 8.707 11.649 l 8.707 12.184 8.274 12.616 7.74 12.616 c b +endstream +endobj + +155 0 obj +929 +endobj + +%% Original object ID: 13 0 +156 0 obj +<< + /Ascent 891 + /CapHeight 981 + /Descent -216 + /Flags 4 + /FontBBox [ + -543 + -303 + 1277 + 981 + ] + /FontFile2 166 0 R + /FontName /BAAAAA+LiberationSerif + /ItalicAngle 0 + /StemV 80 + /Type /FontDescriptor +>> +endobj + +%% Original object ID: 16 0 +157 0 obj +<< + /Length 158 0 R +>> +stream +/CIDInit/ProcSet findresource begin +12 dict begin +begincmap +/CIDSystemInfo<< +/Registry (Adobe) +/Ordering (UCS) +/Supplement 0 +>> def +/CMapName/Adobe-Identity-UCS def +/CMapType 2 def +1 begincodespacerange +<00> +endcodespacerange +32 beginbfchar +<01> <0057> +<02> <0068> +<03> <0065> +<04> <0072> +<05> <2019> +<06> <0073> +<07> <0020> +<08> <006D> +<09> <0079> +<0A> <0066> +<0B> <006F> +<0C> <003F> +<0D> <0054> +<0E> <0078> +<0F> <0074> +<10> <0046> +<11> <0069> +<12> <006C> +<13> <0064> +<14> <0061> +<15> <0031> +<16> <0063> +<17> <006B> +<18> <0032> +<19> <0050> +<1A> <004C> +<1B> <0043> +<1C> <0062> +<1D> <0044> +<1E> <0070> +<1F> <0077> +<20> <006E> +endbfchar +endcmap +CMapName currentdict /CMap defineresource pop +end +end +endstream +endobj + +158 0 obj +702 +endobj + +%% Original object ID: 19 0 +159 0 obj +<< + /Ascent 905 + /CapHeight 979 + /Descent -211 + /Flags 4 + /FontBBox [ + -543 + -303 + 1300 + 979 + ] + /FontName /LiberationSans + /ItalicAngle 0 + /StemV 80 + /Type /FontDescriptor +>> +endobj + +%% Original object ID: 21 0 +160 0 obj +<< + /Ascent 905 + /CapHeight 979 + /Descent -211 + /Flags 4 + /FontBBox [ + -543 + -303 + 1300 + 979 + ] + /FontFile2 168 0 R + /FontName /DAAAAA+LiberationSans + /ItalicAngle 0 + /StemV 80 + /Type /FontDescriptor +>> +endobj + +%% Original object ID: 24 0 +161 0 obj +<< + /Length 162 0 R +>> +stream +/CIDInit/ProcSet findresource begin +12 dict begin +begincmap +/CIDSystemInfo<< +/Registry (Adobe) +/Ordering (UCS) +/Supplement 0 +>> def +/CMapName/Adobe-Identity-UCS def +/CMapType 2 def +1 begincodespacerange +<00> +endcodespacerange +22 beginbfchar +<01> <0072> +<02> <0031> +<03> <002D> +<04> <0061> +<05> <0062> +<06> <0063> +<07> <0043> +<08> <0068> +<09> <0065> +<0A> <006B> +<0B> <0020> +<0C> <0042> +<0D> <006F> +<0E> <0078> +<0F> <0032> +<10> <0033> +<11> <004F> +<12> <0070> +<13> <0074> +<14> <0069> +<15> <006E> +<16> <0075> +endbfchar +endcmap +CMapName currentdict /CMap defineresource pop +end +end +endstream +endobj + +162 0 obj +582 +endobj + +%% Original object ID: 27 0 +163 0 obj +<< + /Ascent 928 + /CapHeight 1232 + /Descent -235 + /Flags 4 + /FontBBox [ + -1020 + -462 + 1792 + 1232 + ] + /FontName /DejaVuSans + /ItalicAngle 0 + /StemV 80 + /Type /FontDescriptor +>> +endobj + +%% Original object ID: 133 0 +164 0 obj +<< + /BBox [ + 0 + 0 + 18 + 18 + ] + /Resources << + /ExtGState << + /GS0 << + /AIS false + /BM /Normal + /CA .6 + /Type /ExtGState + /ca .6 + >> + >> + >> + /Subtype /Form + /Type /XObject + /Length 165 0 R +>> +stream +q 1 1 1 rg 0 i 1 w 4 M 1 j 0 J []0 d /GS0 gs 1 0 0 1 9 5.0908 cm 7.74 12.616 m -7.74 12.616 l -8.274 12.616 -8.707 12.184 -8.707 11.649 c -8.707 -3.831 l -8.707 -4.365 -8.274 -4.798 -7.74 -4.798 c 7.74 -4.798 l 8.274 -4.798 8.707 -4.365 8.707 -3.831 c 8.707 11.649 l 8.707 12.184 8.274 12.616 7.74 12.616 c h f Q 0 G 1 1 0 rg 0 i 0.60 w 4 M 1 j 0 J []0 d 1 1 0 rg 0 G 0 i 0.59 w 4 M 1 j 0 J []0 d 1 0 0 1 9 5.0908 cm 0 0 m -0.142 0 -0.28 0.008 -0.418 0.015 c -2.199 -1.969 -5.555 -2.242 -4.642 -1.42 c -4.024 -0.862 -3.916 0.111 -3.954 0.916 c -5.658 1.795 -6.772 3.222 -6.772 4.839 c -6.772 7.509 -3.74 9.674 0 9.674 c 3.74 9.674 6.772 7.509 6.772 4.839 c 6.772 2.167 3.74 0 0 0 c 7.74 12.616 m -7.74 12.616 l -8.274 12.616 -8.707 12.184 -8.707 11.649 c -8.707 -3.831 l -8.707 -4.365 -8.274 -4.798 -7.74 -4.798 c 7.74 -4.798 l 8.274 -4.798 8.707 -4.365 8.707 -3.831 c 8.707 11.649 l 8.707 12.184 8.274 12.616 7.74 12.616 c b +endstream +endobj + +165 0 obj +929 +endobj + +%% Original object ID: 14 0 +166 0 obj +<< + /Length1 16184 + /Length 167 0 R +>> +stream +true @cmapcvt =O;fpgm\glyfky h"dhead0.6hheagy/$hmtx +{/(loca؜/Dmaxp*V/ name?H0 vpostd$; prepLb;  +  H=p=L]FPiuiPZZP`PPm{1o1MffJf/^tFF<}Shv= }JAl +T/HjgaAU )% 42$ +U4Kan_=m +{dN@G[ZYXUTSRQPONMLKJIHGFEDCBA@?>=<;:9876510/.-,('&%$#"! + , `E% Fa#E#aH-, EhD-,E#F` a F`&#HH-,E#F#a ` &a a&#HH-,E#F`@a f`&#HH-,E#F#a@` &a@a&#HH-, <<-, E# D# ZQX# D#Y QX# MD#Y &QX# D#Y!!-, EhD ` EFvhE`D-, +C#Ce +-, + C#C -,(#p(>(#p(E: -, E%EadPQXED!!Y-,I#D-, EC`D-,CCe +-, i@a ,b`+ d#da\XaY-,E+)#D)z-,Ee,#DE+#D-,KRXED!!Y-,KQXED!!Y-,%# `#-,%# a#-,%-,CRX!!!!!F#F`F# F`ab# # pE` PXaFY`h:Y-, E%FRKQ[X%F ha%%?#!8!Y-, E%FPX%F ha%%?#!8!Y-,CC -,!! d#d@b-,!QX d#d b@/+Y`-,!QX d#dUb/+Y`-, d#d@b`#!-,KSX%Id#Ei@ab aj#D#!# 9/Y-,KSX %Idi &%Id#ab aj#D&#D#D& 9# 9//Y-,E#E`#E`#E`#vhb -,H+-, ETX@D E@aD!!Y-,E0/E#Ea``iD-,KQX/#p#B!!Y-,KQX %EiSXD!!Y!!Y-,EC`c`iD-,/ED-,E# E`D-,E#E`D-,K#QX34 34YDD-,CX&EXdf`d `f X!@YaY#XeY)#D#)!!!!!Y-,CTXKS#KQZX8!!Y!!!!Y-,CX%Ed `f X!@Ya#XeY)#D%% XY%% F%#B<%%%% F%`#B< XY%%)) EeD%%)%% XY%%CH%%%%`CH!Y!!!!!!!-,% F%#B%%EH!!!!-,% %%CH!!!-,E# E P X#e#Y#h @PX!@Y#XeY`D-,KS#KQZX E`D!!Y-,KTX E`D!!Y-,KS#KQZX8!!Y-,!KTX8!!Y-,CTXF+!!!!Y-,CTXG+!!!Y-,CTXH+!!!!Y-,CTXI+!!!Y-, #KSKQZX#8!!Y-,%ISX @8!Y-,F#F`#Fa#  Fab@@pE`h:-, #Id#SX<!Y-,KRX}zY-,KKTB-,B#Q@SZX TXC`BY$QX @TXC`B$TX C`BKKRXC`BY@TXC`BY@cTXC`BY@cTXC`BY&QX@cTX@C`BY@cTXC`BYYYYYYCTX@ +@@ @  CTX@   CRX@ @@ @Y@U@cUZX  YYYBBBBB-,Eh#KQX# E d@PX|Yh`YD-,%%#>#> +#eB #B#?#? #eB#B-,CPCT[X!# Y-,Y+-,-=O@  + + H  +_Y @ + H dVfVF6&ipdpdT@4$P@09pO/]]]]]]]qqqqqrrrrrr^]]_]]]]]]]qqqqqqqqqqqqrr_rrrrr^]]]]]]]]]]]qqqq?3333+3?3+3333/3/3+993310# #'5! 3 '5!^55Du?i-\0ud 55O^55@y   PY PY RY9p`P@0 p`@p`]]]]]]]qqqqqrrrrrrrrrr^]]]]q?+33?3+333?+99333310>32!574#"!57'5!FH?z|rk}^dw2h.)<--^---PF@ZPY  PY QY p`P>P@0 qqqrrrrr^]]]]]]]]]?+?+9/_^]+993333103267#"&463 "!4&=g600Vοiho\P 8.fR)Q@-  PY + PY +_@qrr?+3?+?333_^]3992310#'"!57'5!>3+:22Bww <<nB-- -u2\DR@y Y[ `hp?P`/8P/^]]]]]]qqqqqrr^]]]]]]qqqqrrr^]]]]]]q?3++9333105654&'&54632埒%DD5=R*M8p #@69WT(Y@4! )* !PY PY*p*`*P* **_*O*]]]qqqqq?3+?3+9999333310#"&'533254/.54632#'&#"ӱF0-1Kx™Ye\2g/*5rQUMNZ?#Dz4!DcF|m/PD9N2.CV+1@ !((--! 321.PY1(! -+-PY+ RY '%RYv3V363$333333333b3P3D303$333h3333t3@343$33333333d3P3D343$333333333k3;3 3338333`3T3@343333333t@+3T3@343333333p3P333^]]]]]]_]]qqqqqqqqqqqrrrrrrrr^]]]]]]]]]]]qqqqqqqqqqqqqrrrrrrrrr^]]]]]]_]]]]]]]qqqqqq?+33?+33?33+33333?+93333310>32>32!574#"!574&#"!57'5!FK@EuMDyUEE?BUUXVww`+:49+B--X + 6A--XSY-- -F@      PYQYtfVt`PB2$htfTF2"rbRD4&tbRD4&8r@WfTF2$tdPD4pO^]]]]]]]_]]qqqqqqqqqqqqr_rrrrrrrrrrrrrr^]]]]]]]]]]]]]]]]qqqqqqqqqqqqqqqqrrrrrrrrrrrrrrr^]]]]]]]]]]]]]]qqqq?2+?3+33333_^]3993310"'5332>7'5!'5!NL/!74XI7`^bA`tF`54&#"#563 #"&54632PVNjpR#B9ME34EF32F^Ny1+ 1HH13FE%=<@     `Y _Y?_? kpOo_@0_0;_O0p_0 p?/]]]]]]]]]]qqqqqqqqqrrrrrrrr^]]]]]]qqqqqqqqqqqrrrrrrrr^]]]]]]]]qq?+3?+33/_^]39310!57#"#!#'.+;3]CDx15; k5@e   +@adH$4Dd $D +9$d$!H@*H@0   PY   PY ?3+333?39+333_^]_]++qr^]qr+933333310%!57 !57 '5!'5! V}m5o}ЁRl5---M------.-G@' + PY  QY?/]]]r?+3?33+39922310"&5#5?33#327N`_{}e?;0:S#rg-'TABA;)=@ `Y_o-  `Y _Y _Ytdt`TDtdT@0 9q_qrrrrr^]]]]]]]]]]]]]]qqqqqqqqrrrrrrr?+3?++9/_^]_]]+9333310!57'5!#'&+!73#'B p==Z555Ѡd+L @f  SY@PY PY9p`P@P p`P@]]]]]]]qqqqqqqrrrr_rr^]]?+3?+_^]+933310#"&54632!57'5!{@-,@@,-@ ++,@@,-@@:-- -) @p + PY PY      t d $   9   p ` P @    P      p ` P @ ]]]]]]]qqqqqqrrrr_rrr^]]]]]]]]]]]?+3?+910%!57'5!oFF---J@O PY PYPYQYGP@0 @` ]]]]qqqrrrrr^]?+33?+?+?+99333310%# 432&='5!!327&# qloDtqZYrFZ!--;'Hq%m@?%% '&%" +"QYPY  +PYPY'_'@'']qrr?+?+?39/_^]+9+393333102!'#"4>?54&#"#563267њurIGJdS"8_Dc2~-^r^{Aa\/u#^nH +K@-   @ +sY@    ` @ ]]]]qq?+3?_^]93310%!5%5%3s/4P55Fa5NN`@< PY QY>@0 @_]]qqqqqrrrr^]?+3?3+993310%# 4632#'&# 327N1Z7ه7+Stl9$)/hԵ!'@M @` @P=0P`PpY]HMUH59H@"+1HPY PY PY?+3?39+333?+++++_^]qr^]qr9333339310 '5! !57!57'5!XbLuXfV{dw1-------ZL`@7  +sYvY@`@]]]]qq?+3?+3/_^]999333310)57>54&#"#632!˺Iv5p+#BWYd΅+pűL[;!=@ + + `Y `Y_Y + _Y o/oO?/o_8/?^]]]]]]qqqqrr^]]]]]]qqqqqqqrrrrr?+3?++9/+99333104&+326!57'5! #ZbhN˟B555u;h=8@   _Y _Y `Y tfVF&vfTF&vfTD2 9d4p@0 pP@]]]]]]]]qqqqqqqqq_rrrrrrrr^]]]_]]]]]]]]]]]qqqqqqqqqqqrrrrrrrrrrr?+3/_^]+?+399310!273!57'5!wd>A嬬<h55TL>@! _Y +  + +_Y@]?+3/?3/_^]+993310 !2#'.# 326?3^XBF`r;%Ac@Zc3ۮ+/7.? @Q PYQY PY@9`@` ]]]]qqqqqqqrr^]]r?+?+33?+99333104&#"326'5!632#"&';tTu|/dVN .-6N&;u= L@/  _Y`Y_Y`Y?@ p]]]qr^]?++?++993310!#32 !%#57'5xsf""{"55!L!@Q + +"#PY PY QYPY@###90####`#@###`#?#]]]]qqqqqr^]]r?+?3+3?+?+3993333310'5!>32#"'!574&#"32k*Iqf@wd}uNYjf-7$,H)//N!@ + + H  +PY @ + H TD$tD0$dT9T@0 `P@0 p_ ]]]]]]]qqqqqqrrrr_rrrr^]]]]]qqqqqqqqqrrrrr?3333+3?3+3333/3+993310# #'5!3'5!NJoT՚fhlz--e--/@} PY PY +RY9tdTD4$p`@p`]]]]]]]qqqqq_qrrrrrrrrrr^]]]]q?+33?3+333?+99333310>32!574&#"!57'5!DM:z|rk}QUZjqq `,9--XS_-- -D_<DF!EW!9P)T9+?Nj%9s;9+9)JHN'Zs;;VT;!/^"$H ` F +\ + 4 : * p42!2/\nVVfmz/ C +nQ  . 5 > X   $ 62  h    (  + 8 \  j j 4 Digitized data copyright (c) 2010 Google Corporation. +Copyright (c) 2012 Red Hat, Inc.Liberation SerifRegularAscender - Liberation SerifLiberation SerifVersion 2.00.2LiberationSerifLiberation is a trademark of Red Hat, Inc. registered in U.S. Patent and Trademark Office and certain other jurisdictions.Ascender CorporationSteve MattesonBased on Tinos, which was designed by Steve Matteson as an innovative, refreshing serif design that is metrically compatible with Times New Roman. Tinos offers improved on-screen readability characteristics and the pan-European WGL character set and solves the needs of developers looking for width-compatible fonts to address document portability across platforms.http://www.ascendercorp.com/http://www.ascendercorp.com/typedesigners.htmlLicensed under the SIL Open Font License, Version 1.1http://scripts.sil.org/OFLDigitized data copyright (c) 2010 Google Corporation. +Copyright (c) 2012 Red Hat, Inc.Liberation SerifRegularAscender - Liberation SerifLiberation SerifVersion 2.00.2LiberationSerifLiberation is a trademark of Red Hat, Inc. registered in U.S. Patent and Trademark Office and certain other jurisdictions.Ascender CorporationSteve MattesonBased on Tinos, which was designed by Steve Matteson as an innovative, refreshing serif design that is metrically compatible with Times New Roman!". Tinos offers improved on-screen readability characteristics and the pan-European WGL character set and solves the needs of developers looking for width-compatible fonts to address document portability across platforms.http://www.ascendercorp.com/http://www.ascendercorp.com/typedesigners.htmlLicensed under the SIL Open Font License, Version 1.1http://scripts.sil.org/OFL!d PAbehg`N_UA=@U@BUC=BU.==>U<=;U;?;O;;;>U0=/U/>U-=,U,,>U?=>UJHUGHUF=EUEHUI=HU`?@ P)O_0P`p + 8=U=U<0P݀ݰU 0p/O`P`/.G' FOL=NAMMM/MOMoMMLL/L@8_ +{pvvsP)on+nG*3U3U@Ib%(F`_@_P)[Z0ZG)3UU3U?OoRPQPPP@P FOO/O@eK!(F`JpJJIF)HG8GG/GGGG_GGFFF@F)/F@F!FHU3UU3UU3U/_?TS++KRKP[%S@QZUZ[XYBK2SX`YKdSX@YKSXBYsst++++++++sstu++s+u+t++^s++++++++++++++ssssssst+++s+++sssssss+ss++s^s+++^s^s^s^ssss+sssssssss+++++++s++++s++++++++s^ +endstream +endobj + +%QDF: ignore_newline +167 0 obj +16184 +endobj + +%% Original object ID: 22 0 +168 0 obj +<< + /Length1 11088 + /Length 169 0 R +>> +stream +true @cmapU=8Hcvt K&fpgm\hglyfQe hheadAI.6hheae$hmtx4SZloca,%<0maxpg/l name R ^post*' prepI( C  + }y:wW~j`jy"3kkk{Rni`[^^eoz iq4 HjgaAh@G[ZYXUTSRQPONMLKJIHGFEDCBA@?>=<;:9876510/.-,('&%$#"! + , `E% Fa#E#aH-, EhD-,E#F` a F`&#HH-,E#F#a ` &a a&#HH-,E#F`@a f`&#HH-,E#F#a@` &a@a&#HH-, <<-, E# D# ZQX# D#Y QX# MD#Y &QX# D#Y!!-, EhD ` EFvhE`D-, +C#Ce +-, + C#C -,(#p(>(#p(E: -, E%EadPQXED!!Y-,I#D-, EC`D-,CCe +-, i@a ,b`+ d#da\XaY-,E+)#D)z-,Ee,#DE+#D-,KRXED!!Y-,KQXED!!Y-,%# `#-,%# a#-,%-,CRX!!!!!F#F`F# F`ab# # pE` PXaFY`h:Y-, E%FRKQ[X%F ha%%?#!8!Y-, E%FPX%F ha%%?#!8!Y-,CC -,!! d#d@b-,!QX d#d b@/+Y`-,!QX d#dUb/+Y`-, d#d@b`#!-,KSX%Id#Ei@ab aj#D#!# 9/Y-,KSX %Idi &%Id#ab aj#D&#D#D& 9# 9//Y-,E#E`#E`#E`#vhb -,H+-, ETX@D E@aD!!Y-,E0/E#Ea``iD-,KQX/#p#B!!Y-,KQX %EiSXD!!Y!!Y-,EC`c`iD-,/ED-,E# E`D-,E#E`D-,K#QX34 34YDD-,CX&EXdf`d `f X!@YaY#XeY)#D#)!!!!!Y-,CTXKS#KQZX8!!Y!!!!Y-,CX%Ed `f X!@Ya#XeY)#D%% XY%% F%#B<%%%% F%`#B< XY%%)) EeD%%)%% XY%%CH%%%%`CH!Y!!!!!!!-,% F%#B%%EH!!!!-,% %%CH!!!-,E# E P X#e#Y#h @PX!@Y#XeY`D-,KS#KQZX E`D!!Y-,KTX E`D!!Y-,KS#KQZX8!!Y-,!KTX8!!Y-,CTXF+!!!!Y-,CTXG+!!!Y-,CTXH+!!!!Y-,CTXI+!!!Y-, #KSKQZX#8!!Y-,%ISX @8!Y-,F#F`#Fa#  Fab@@pE`h:-, #Id#SX<!Y-,KRX}zY-,KKTB-,B#Q@SZX TXC`BY$QX @TXC`B$TX C`BKKRXC`BY@TXC`BY@cTXC`BY@cTXC`BY&QX@cTX@C`BY@cTXC`BYYYYYYCTX@ +@@ @  CTX@   CRX@ @@ @Y@U@cUZX  YYYBBBBB-,Eh#KQX# E d@PX|Yh`YD-,%%#>#> +#eB #B#?#? #eB#B-,CPCT[X!# Y-,Y+-,-2@  ?/993310!!!eL5N#@  +???3399331034'33>32&#"+pf$%$r%f + + ++@ tY?+3?33/39331035!5%3!gMW<[Op@Y//]q+99105![РWsN#0@V )).21QY )QY?o  PY$PY2222p2`2P2022]qqqqqqqq?+?+3/_^]q9/+9?+93333310"&546?54&#"'!2327#"&'#'2>=pxyn .*;!DGd[EZcYF_;rRZ$.PQpip|gZSY0dQX`#]@7  $%PY +!PY%?%%p%%%%%]]]qqqrr?+???+9999333310!"&'##6533>324&#"326r{32zxy"Yc +6YAXhZWNf@E  PY p`p  + +PY +]?+3/_^]q?3/]+9333103267#"32.#"`ri"hl Zjhy^@9  _Y@P  _Y  ]?+3/_^]?+3/_^]933310"3 #"$5!2.(WɣlB.G1%NIQ~<{`@; PYp]]]]]]]qqrrr?+?39?9933310>32#4.#"#3=:}*`Ujc/ro4~= +WNw@F PY  PY PY p`P0qqqqqqqqq?+?+9/_^]+9/93333103267!"3 '.#"uaݺ^H-  @g  + +   ?  ? _   ? _  9 @SVH`   `   0 @  +????9^]qqr+^]qr93323993310!#33 0Ima / h@:  _Y$M>_Y_Y?+?+9/_^]_]_q++993333910#!! 4&#!!264)!26AQs}rbBsVN +H@, PYPYp`P0]qqqqqqq?+?+993310#"!24&#"326꽅!0: T@  +  v D T d 6 $         v d   & F V g F V  d V D 6 $      & 6 F 7f  @6=BH9 "       t ` T @ 4   @"H   P p  +?3?393^]_]+qqqqqqqqqqr_rr+r^]]]qqqqqqqqr^]]]]]]]]]qqqqqqq9333333310! # 3 3 ! D,[g >@   sYtY?+9?+3993331035>54&#"'>32!g3Oys Ksu||Vt}qɹR^FN(c@9" "%)*%tYMMsY sY?3+?+39/_^]+++99333310#"&'7!2654&+532654&#"'>32$fbw 뗐srqzoŰa0@ _Y _Y ]]?+?+993310#"$5!2#"32שŦrJ< MR},-WM$]@7 &%PY "PY&?&&p&&&&&]]]qqqrr?+???+9999333310!"'##4'33>324&#"326rV0ƽzky?{"ʼY61fd]Z*,E@$   PY    @PY]?+?_^]3+393332310%#"5#53733#327*Y]}5x3?$D҃UN?=n@H SY       p         O  ]qqqqqqqrrrrrrrrrr?+??933310533 :Na@< + +PY  +p]]]]]]]qqrrr?2??+99933310!4.#"#4'33>329*\Y>ykv4S*,9Op]/:_@;  PY  p]]]]]]]qqrrr?2??+3993331032653#.'##"&5:*\Y>y:Rkv4s*,9Op]_<@W>NCs[sWsWhssW9VsVsgsN9as9s&X0X||6N +rZ1/\nWWfmz, @ +iN  . 56 P   4* ^ |   (  + 8 \ j R 4 Digitized data copyright (c) 2010 Google Corporation. +Copyright (c) 2012 Red Hat, Inc.Liberation SansRegularAscender - Liberation SansLiberation SansVersion 2.00.2LiberationSansLiberation is a trademark of Red Hat, Inc. registered in U.S. Patent and Trademark Office and certain other jurisdictions.Ascender CorporationSteve MattesonBased on Arimo, which was designed by Steve Matteson as an innovative, refreshing sans serif design that is metrically compatible with Arial. Arimo offers improved on-screen readability characteristics and the pan-European WGL character set and solves the needs of developers looking for width-compatible fonts to address document portability across platforms.http://www.ascendercorp.com/http://www.ascendercorp.com/typedesigners.htmlLicensed under the SIL Open Font License, Version 1.1http://scripts.sil.org/OFLDigitized data copyright (c) 2010 Google Corporation. +Copyright (c) 2012 Red Hat, Inc.Liberation SansRegularAscender - Liberation SansLiberation SansVersion 2.00.2LiberationSansLiberation is a trademark of Red Hat, Inc. registered in U.S. Patent and Trademark Office and certain other jurisdictions.Ascender CorporationSteve MattesonBased on Arimo, which was designed by Steve Matteson as an innovative, refreshing sans serif design that is metrically compatible with Arial!". Arimo offers improved on-screen readability characteristics and the pan-European WGL character set and solves the needs of developers looking for width-compatible fonts to address document portability across platforms.http://www.ascendercorp.com/http://www.ascendercorp.com/typedesigners.htmlLicensed under the SIL Open Font License, Version 1.1http://scripts.sil.org/OFL'A! ?9U>9UB@A@;3:U839U@@ +O P(F(F*F+_O_ F@FF@36FFUHU2UUHU=UU=U@F<P&(Pp@2F?Oop?а/?Э/?ЪO/o$PoF0@pЏO_oF1ts?sP&on<nF5U3U3U`P&_P&\F1[ZHZF12UU2Ul <Ll|Q@dQ@Q58F@Q%(FPIF HF5GF5FFFF2UU2UU?_/Oo?oOTS++KRKP[%S@QZUZ[XYBK2SX`YKdSX@YKSXBYststu+++++stu+++t++ssu+++++++++++++++++s+tstusts++tus+stsststtsts^sstssss+ss+++s+tu+++++++++++++t++^s++^st++++ss^ssssss++++++^ +endstream +endobj + +%QDF: ignore_newline +169 0 obj +11088 +endobj + +xref +0 170 +0000000000 65535 f +0000000052 00000 n +0000000153 00000 n +0000000454 00000 n +0000000555 00000 n +0000000871 00000 n +0000001018 00000 n +0000001423 00000 n +0000001828 00000 n +0000002233 00000 n +0000002381 00000 n +0000002756 00000 n +0000003194 00000 n +0000003759 00000 n +0000004252 00000 n +0000004730 00000 n +0000005052 00000 n +0000005201 00000 n +0000005612 00000 n +0000006023 00000 n +0000006434 00000 n +0000006583 00000 n +0000006962 00000 n +0000007404 00000 n +0000007973 00000 n +0000008470 00000 n +0000008960 00000 n +0000009570 00000 n +0000009858 00000 n +0000009906 00000 n +0000010026 00000 n +0000010410 00000 n +0000010792 00000 n +0000011176 00000 n +0000011400 00000 n +0000011448 00000 n +0000011742 00000 n +0000011790 00000 n +0000011899 00000 n +0000012123 00000 n +0000012171 00000 n +0000012465 00000 n +0000012513 00000 n +0000012737 00000 n +0000012785 00000 n +0000013079 00000 n +0000013127 00000 n +0000013511 00000 n +0000013894 00000 n +0000014279 00000 n +0000014577 00000 n +0000014626 00000 n +0000014952 00000 n +0000015002 00000 n +0000015451 00000 n +0000015501 00000 n +0000015829 00000 n +0000015879 00000 n +0000016203 00000 n +0000016253 00000 n +0000016549 00000 n +0000016598 00000 n +0000016988 00000 n +0000017376 00000 n +0000017766 00000 n +0000017998 00000 n +0000018047 00000 n +0000018349 00000 n +0000018398 00000 n +0000018630 00000 n +0000018679 00000 n +0000018981 00000 n +0000019030 00000 n +0000019262 00000 n +0000019311 00000 n +0000019613 00000 n +0000019662 00000 n +0000020052 00000 n +0000020440 00000 n +0000020830 00000 n +0000021136 00000 n +0000021185 00000 n +0000021519 00000 n +0000021569 00000 n +0000022026 00000 n +0000022076 00000 n +0000022412 00000 n +0000022462 00000 n +0000022794 00000 n +0000022844 00000 n +0000023195 00000 n +0000023365 00000 n +0000023722 00000 n +0000023921 00000 n +0000024022 00000 n +0000024069 00000 n +0000024215 00000 n +0000024279 00000 n +0000024381 00000 n +0000024860 00000 n +0000026805 00000 n +0000027204 00000 n +0000029147 00000 n +0000029581 00000 n +0000029631 00000 n +0000029857 00000 n +0000029906 00000 n +0000030340 00000 n +0000030390 00000 n +0000030616 00000 n +0000030665 00000 n +0000031099 00000 n +0000031149 00000 n +0000031375 00000 n +0000031425 00000 n +0000031859 00000 n +0000031910 00000 n +0000032136 00000 n +0000032186 00000 n +0000032620 00000 n +0000032671 00000 n +0000032897 00000 n +0000032947 00000 n +0000033381 00000 n +0000033432 00000 n +0000033658 00000 n +0000033708 00000 n +0000034150 00000 n +0000034201 00000 n +0000034435 00000 n +0000034485 00000 n +0000034927 00000 n +0000034978 00000 n +0000035212 00000 n +0000035262 00000 n +0000035704 00000 n +0000035755 00000 n +0000035989 00000 n +0000036039 00000 n +0000036481 00000 n +0000036532 00000 n +0000036766 00000 n +0000036816 00000 n +0000037258 00000 n +0000037309 00000 n +0000037543 00000 n +0000037593 00000 n +0000038035 00000 n +0000038086 00000 n +0000038320 00000 n +0000038370 00000 n +0000039650 00000 n +0000039701 00000 n +0000039873 00000 n +0000040225 00000 n +0000041513 00000 n +0000041563 00000 n +0000041836 00000 n +0000042597 00000 n +0000042647 00000 n +0000042891 00000 n +0000043163 00000 n +0000043804 00000 n +0000043854 00000 n +0000044098 00000 n +0000045323 00000 n +0000045373 00000 n +0000061655 00000 n +0000061707 00000 n +0000072893 00000 n +trailer << + /Root 1 0 R + /Size 170 + /ID [<31415926535897932384626433832795><31415926535897932384626433832795>] +>> +startxref +72917 +%%EOF diff --git a/qpdf/qtest/qpdf/test80b2.pdf b/qpdf/qtest/qpdf/test80b2.pdf new file mode 100644 index 00000000..7fdff9b6 --- /dev/null +++ b/qpdf/qtest/qpdf/test80b2.pdf @@ -0,0 +1,4375 @@ +%PDF-1.3 +% +%QDF-1.0 + +%% Original object ID: 1 0 +1 0 obj +<< + /AcroForm 2 0 R + /Pages 3 0 R + /Type /Catalog +>> +endobj + +%% Original object ID: 201 0 +2 0 obj +<< + /Fields [ + 4 0 R + 5 0 R + 6 0 R + 7 0 R + 8 0 R + 9 0 R + 10 0 R + 11 0 R + 12 0 R + 13 0 R + 14 0 R + 15 0 R + 16 0 R + 17 0 R + 18 0 R + 19 0 R + 20 0 R + 21 0 R + 22 0 R + 23 0 R + 24 0 R + 25 0 R + ] +>> +endobj + +%% Original object ID: 2 0 +3 0 obj +<< + /Count 1 + /Kids [ + 26 0 R + ] + /Type /Pages +>> +endobj + +%% Original object ID: 24 0 +4 0 obj +<< + /AP << + /N 27 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F2 12 Tf) + /DR << + /Font 29 0 R + >> + /DV + /F 4 + /FT /Tx + /Rect [ + -92.699 + 351.199 + -77.901 + 488.501 + ] + /Subtype /Widget + /T (text) + /Type /Annot + /V +>> +endobj + +%% Original object ID: 36 0 +5 0 obj +<< + /DV /1 + /FT /Btn + /Ff 49152 + /Kids [ + 30 0 R + 31 0 R + 32 0 R + ] + /T (r1) + /V /2 +>> +endobj + +%% Original object ID: 49 0 +6 0 obj +<< + /AP << + /N << + /Off 33 0 R + /Yes 35 0 R + >> + >> + /AS /Off + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 37 0 R + >> + >> + /DV /Off + /F 4 + /FT /Btn + /MK << + /CA (8) + >> + /Rect [ + 45.651 + 481.299 + 57.699 + 493.351 + ] + /Subtype /Widget + /T (checkbox1) + /Type /Annot + /V /Off +>> +endobj + +%% Original object ID: 55 0 +7 0 obj +<< + /AP << + /N << + /Off 38 0 R + /Yes 40 0 R + >> + >> + /AS /Yes + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 37 0 R + >> + >> + /DV /Yes + /F 4 + /FT /Btn + /MK << + /CA (8) + >> + /Rect [ + 72.201 + 481.299 + 84.249 + 493.351 + ] + /Subtype /Widget + /T (checkbox2) + /Type /Annot + /V /Yes +>> +endobj + +%% Original object ID: 61 0 +8 0 obj +<< + /AP << + /N << + /Off 42 0 R + /Yes 44 0 R + >> + >> + /AS /Off + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 37 0 R + >> + >> + /DV /Off + /F 4 + /FT /Btn + /MK << + /CA (8) + >> + /Rect [ + 99.451 + 481.299 + 111.499 + 493.351 + ] + /Subtype /Widget + /T (checkbox3) + /Type /Annot + /V /Off +>> +endobj + +%% Original object ID: 74 0 +9 0 obj +<< + /DV /2 + /FT /Btn + /Ff 49152 + /Kids [ + 46 0 R + 47 0 R + 48 0 R + ] + /T (r2) + /V /2 +>> +endobj + +%% Original object ID: 86 0 +10 0 obj +<< + /AP << + /N 49 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F2 12 Tf) + /DR << + /Font 29 0 R + >> + /DV + /F 4 + /FT /Tx + /Rect [ + 333.901 + 260.899 + 351.849 + 498.351 + ] + /Subtype /Widget + /T (text2) + /Type /Annot + /V +>> +endobj + +%% Original object ID: 90 0 +11 0 obj +<< + /AP << + /N 51 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf) + /DR << + /Font 29 0 R + >> + /DV + /F 4 + /FT /Ch + /Ff 393216 + /Opt [ + + + + + ] + /Rect [ + 379.151 + 152.999 + 452.599 + 208.051 + ] + /Subtype /Widget + /T (combolist1) + /Type /Annot + /V +>> +endobj + +%% Original object ID: 94 0 +12 0 obj +<< + /AP << + /N 53 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf) + /DR << + /Font 29 0 R + >> + /DV + /F 4 + /FT /Ch + /Opt [ + + + + + + + + + + + + + ] + /Rect [ + 379.151 + 390.999 + 455.349 + 453.551 + ] + /Subtype /Widget + /T (list1) + /Type /Annot + /V (1) +>> +endobj + +%% Original object ID: 98 0 +13 0 obj +<< + /AP << + /N 55 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf) + /DR << + /Font 29 0 R + >> + /DV + /F 4 + /FT /Ch + /Ff 131072 + /Opt [ + + + + + ] + /Rect [ + 481.051 + 367.799 + 504.749 + 452.851 + ] + /Subtype /Widget + /T (drop1) + /Type /Annot + /V +>> +endobj + +%% Original object ID: 102 0 +14 0 obj +<< + /AP << + /N 57 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf) + /DR << + /Font 29 0 R + >> + /DV + /F 4 + /FT /Ch + /Ff 393216 + /Opt [ + + + + + ] + /Rect [ + 476.651 + 135.299 + 510.549 + 207.401 + ] + /Subtype /Widget + /T (combodrop1) + /Type /Annot + /V +>> +endobj + +%% Original object ID: 115 0 +15 0 obj +<< + /AP << + /N 59 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F2 12 Tf) + /DR << + /Font 29 0 R + >> + /DV + /F 4 + /FT /Tx + /Rect [ + 24.1204 + 536.4796 + 30.0396 + 591.4004 + ] + /Subtype /Widget + /T (text) + /Type /Annot + /V +>> +endobj + +%% Original object ID: 127 0 +16 0 obj +<< + /DV /1 + /FT /Btn + /Ff 49152 + /Kids [ + 61 0 R + 62 0 R + 63 0 R + ] + /T (r1) + /V /2 +>> +endobj + +%% Original object ID: 140 0 +17 0 obj +<< + /AP << + /N << + /Off 64 0 R + /Yes 66 0 R + >> + >> + /AS /Off + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 37 0 R + >> + >> + /DV /Off + /F 4 + /FT /Btn + /MK << + /CA (8) + >> + /Rect [ + 79.4604 + 588.5196 + 84.2796 + 593.3404 + ] + /Subtype /Widget + /T (checkbox1) + /Type /Annot + /V /Off +>> +endobj + +%% Original object ID: 146 0 +18 0 obj +<< + /AP << + /N << + /Off 68 0 R + /Yes 70 0 R + >> + >> + /AS /Yes + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 37 0 R + >> + >> + /DV /Yes + /F 4 + /FT /Btn + /MK << + /CA (8) + >> + /Rect [ + 90.0804 + 588.5196 + 94.8996 + 593.3404 + ] + /Subtype /Widget + /T (checkbox2) + /Type /Annot + /V /Yes +>> +endobj + +%% Original object ID: 152 0 +19 0 obj +<< + /AP << + /N << + /Off 72 0 R + /Yes 74 0 R + >> + >> + /AS /Off + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 37 0 R + >> + >> + /DV /Off + /F 4 + /FT /Btn + /MK << + /CA (8) + >> + /Rect [ + 100.9804 + 588.5196 + 105.7996 + 593.3404 + ] + /Subtype /Widget + /T (checkbox3) + /Type /Annot + /V /Off +>> +endobj + +%% Original object ID: 165 0 +20 0 obj +<< + /DV /2 + /FT /Btn + /Ff 49152 + /Kids [ + 76 0 R + 77 0 R + 78 0 R + ] + /T (r2) + /V /2 +>> +endobj + +%% Original object ID: 177 0 +21 0 obj +<< + /AP << + /N 79 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F2 12 Tf) + /DR << + /Font 29 0 R + >> + /DV + /F 4 + /FT /Tx + /Rect [ + 194.7604 + 500.3596 + 201.9396 + 595.3404 + ] + /Subtype /Widget + /T (text2) + /Type /Annot + /V +>> +endobj + +%% Original object ID: 181 0 +22 0 obj +<< + /AP << + /N 81 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf) + /DR << + /Font 29 0 R + >> + /DV + /F 4 + /FT /Ch + /Ff 393216 + /Opt [ + + + + + ] + /Rect [ + 212.8604 + 457.1996 + 242.2396 + 479.2204 + ] + /Subtype /Widget + /T (combolist1) + /Type /Annot + /V +>> +endobj + +%% Original object ID: 185 0 +23 0 obj +<< + /AP << + /N 83 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf) + /DR << + /Font 29 0 R + >> + /DV + /F 4 + /FT /Ch + /Opt [ + + + + + + + + + + + + + ] + /Rect [ + 212.8604 + 552.3996 + 243.3396 + 577.4204 + ] + /Subtype /Widget + /T (list1) + /Type /Annot + /V (1) +>> +endobj + +%% Original object ID: 189 0 +24 0 obj +<< + /AP << + /N 85 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf) + /DR << + /Font 29 0 R + >> + /DV + /F 4 + /FT /Ch + /Ff 131072 + /Opt [ + + + + + ] + /Rect [ + 253.6204 + 543.1196 + 263.0996 + 577.1404 + ] + /Subtype /Widget + /T (drop1) + /Type /Annot + /V +>> +endobj + +%% Original object ID: 193 0 +25 0 obj +<< + /AP << + /N 87 0 R + >> + /DA (0.18039 0.20392 0.21176 rg /F4 10 Tf) + /DR << + /Font 29 0 R + >> + /DV + /F 4 + /FT /Ch + /Ff 393216 + /Opt [ + + + + + ] + /Rect [ + 251.8604 + 450.1196 + 265.4196 + 478.9604 + ] + /Subtype /Widget + /T (combodrop1) + /Type /Annot + /V +>> +endobj + +%% Page 1 +%% Original object ID: 3 0 +26 0 obj +<< + /Annots [ + 4 0 R + 30 0 R + 31 0 R + 32 0 R + 6 0 R + 7 0 R + 8 0 R + 46 0 R + 47 0 R + 48 0 R + 10 0 R + 11 0 R + 12 0 R + 13 0 R + 14 0 R + 89 0 R + 90 0 R + 15 0 R + 61 0 R + 62 0 R + 63 0 R + 17 0 R + 18 0 R + 19 0 R + 76 0 R + 77 0 R + 78 0 R + 21 0 R + 22 0 R + 23 0 R + 24 0 R + 25 0 R + 91 0 R + 92 0 R + ] + /Contents 93 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 95 0 R + >> + /ProcSet 96 0 R + >> + /Type /Page +>> +endobj + +%% Original object ID: 25 0 +27 0 obj +<< + /BBox [ + 0 + 0 + 137.3 + 14.8 + ] + /Matrix [ + 0 + 1 + 1 + 0 + 0 + 0 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 28 0 R +>> +stream +/Tx BMC +q +BT +0.18039 0.20392 0.21176 rg /F2 12 Tf +1 2.6 Td +(abc) Tj +ET +Q +EMC +endstream +endobj + +28 0 obj +77 +endobj + +%% Original object ID: 10 0 +29 0 obj +<< + /F1 98 0 R + /F2 99 0 R + /F3 100 0 R + /F4 101 0 R + /ZaDi 37 0 R +>> +endobj + +%% Original object ID: 37 0 +30 0 obj +<< + /AP << + /N << + /1 102 0 R + /Off 104 0 R + >> + >> + /AS /Off + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 37 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 5 0 R + /Rect [ + -48.549 + 447.199 + -36.501 + 459.251 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +%% Original object ID: 38 0 +31 0 obj +<< + /AP << + /N << + /2 106 0 R + /Off 108 0 R + >> + >> + /AS /2 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 37 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 5 0 R + /Rect [ + -27.349 + 447.199 + -15.301 + 459.251 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +%% Original object ID: 39 0 +32 0 obj +<< + /AP << + /N << + /3 110 0 R + /Off 112 0 R + >> + >> + /AS /Off + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 37 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 5 0 R + /Rect [ + -6.549 + 448.549 + 5.499 + 460.601 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +%% Original object ID: 50 0 +33 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 1 + 1 + 0 + 0 + 0 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 34 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +34 0 obj +12 +endobj + +%% Original object ID: 51 0 +35 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 1 + 1 + 0 + 0 + 0 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 36 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +1.9 1.9 Td (8) Tj +ET +Q +EMC +endstream +endobj + +36 0 obj +82 +endobj + +%% Original object ID: 23 0 +37 0 obj +<< + /BaseFont /ZapfDingbats + /Subtype /Type1 + /Type /Font +>> +endobj + +%% Original object ID: 56 0 +38 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 1 + 1 + 0 + 0 + 0 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 39 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +39 0 obj +12 +endobj + +%% Original object ID: 57 0 +40 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 1 + 1 + 0 + 0 + 0 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 41 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +1.9 1.9 Td (8) Tj +ET +Q +EMC +endstream +endobj + +41 0 obj +82 +endobj + +%% Original object ID: 62 0 +42 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 1 + 1 + 0 + 0 + 0 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 43 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +43 0 obj +12 +endobj + +%% Original object ID: 63 0 +44 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 1 + 1 + 0 + 0 + 0 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 45 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +1.9 1.9 Td (8) Tj +ET +Q +EMC +endstream +endobj + +45 0 obj +82 +endobj + +%% Original object ID: 75 0 +46 0 obj +<< + /AP << + /N << + /1 114 0 R + /Off 116 0 R + >> + >> + /AS /Off + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 37 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 9 0 R + /Rect [ + 211.851 + 481.299 + 223.899 + 493.351 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +%% Original object ID: 76 0 +47 0 obj +<< + /AP << + /N << + /2 118 0 R + /Off 120 0 R + >> + >> + /AS /2 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 37 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 9 0 R + /Rect [ + 237.751 + 480.599 + 249.799 + 492.651 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +%% Original object ID: 77 0 +48 0 obj +<< + /AP << + /N << + /3 122 0 R + /Off 124 0 R + >> + >> + /AS /Off + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 37 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 9 0 R + /Rect [ + 266.401 + 480.599 + 278.449 + 492.651 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +%% Original object ID: 87 0 +49 0 obj +<< + /BBox [ + 0 + 0 + 237.45 + 17.95 + ] + /Matrix [ + 0 + 1 + 1 + 0 + 0 + 0 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 50 0 R +>> +stream +/Tx BMC +q +BT +0.18039 0.20392 0.21176 rg /F2 12 Tf +1 4.175 Td +(salad ??) Tj +ET +Q +EMC +endstream +endobj + +50 0 obj +85 +endobj + +%% Original object ID: 91 0 +51 0 obj +<< + /BBox [ + 0 + 0 + 55.05 + 73.45 + ] + /Matrix [ + 0 + 1 + 1 + 0 + 0 + 0 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 52 0 R +>> +stream +1 1 1 rg +0 -0.05 55.05 73.45 re f* +/Tx BMC +q +BT +0.18039 0.20392 0.21176 rg /F4 10 Tf +1 32.725 Td +(pi) Tj +ET +Q +EMC +endstream +endobj + +52 0 obj +114 +endobj + +%% Original object ID: 95 0 +53 0 obj +<< + /BBox [ + 0 + 0 + 62.55 + 76.2 + ] + /Matrix [ + 0 + 1 + 1 + 0 + 0 + 0 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 54 0 R +>> +stream +1 1 1 rg +0 -0.05 62.55 76.2 re f* +/Tx BMC +q +0.85 0.85 0.85 rg +0 62.1 62.55 12 re f +Q +q +BT +0.18039 0.20392 0.21176 rg /F4 10 Tf +1 64.1 Td +(1) Tj +0 -12 Td +(2) Tj +0 -12 Td +(3) Tj +0 -12 Td +(4) Tj +0 -12 Td +(five) Tj +0 -12 Td +(six) Tj +ET +Q +EMC +endstream +endobj + +54 0 obj +238 +endobj + +%% Original object ID: 99 0 +55 0 obj +<< + /BBox [ + 0 + 0 + 85.05 + 23.7 + ] + /Matrix [ + 0 + 1 + 1 + 0 + 0 + 0 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 56 0 R +>> +stream +1 1 1 rg +0 -0.05 85.05 23.7 re f* +/Tx BMC +q +BT +0.18039 0.20392 0.21176 rg /F4 10 Tf +1 7.85 Td +(elephant) Tj +ET +Q +EMC +endstream +endobj + +56 0 obj +117 +endobj + +%% Original object ID: 103 0 +57 0 obj +<< + /BBox [ + 0 + 0 + 72.1 + 33.9 + ] + /Matrix [ + 0 + 1 + 1 + 0 + 0 + 0 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 58 0 R +>> +stream +1 1 1 rg +0 -0.05 72.1 33.9 re f* +/Tx BMC +q +BT +0.18039 0.20392 0.21176 rg /F4 10 Tf +1 12.95 Td +(delta) Tj +ET +Q +EMC +endstream +endobj + +58 0 obj +114 +endobj + +%% Original object ID: 116 0 +59 0 obj +<< + /BBox [ + 0 + 0 + 137.3 + 14.8 + ] + /Matrix [ + 0 + 0.4 + 0.4 + 0 + 396 + 61.2 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 60 0 R +>> +stream +/Tx BMC +q +BT +0.18039 0.20392 0.21176 rg /F2 12 Tf +1 2.6 Td +(abc) Tj +ET +Q +EMC +endstream +endobj + +60 0 obj +77 +endobj + +%% Original object ID: 128 0 +61 0 obj +<< + /AP << + /N << + /1 126 0 R + /Off 128 0 R + >> + >> + /AS /Off + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 37 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 16 0 R + /Rect [ + 41.7804 + 574.8796 + 46.5996 + 579.7004 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +%% Original object ID: 129 0 +62 0 obj +<< + /AP << + /N << + /2 130 0 R + /Off 132 0 R + >> + >> + /AS /2 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 37 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 16 0 R + /Rect [ + 50.2604 + 574.8796 + 55.0796 + 579.7004 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +%% Original object ID: 130 0 +63 0 obj +<< + /AP << + /N << + /3 134 0 R + /Off 136 0 R + >> + >> + /AS /Off + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 37 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 16 0 R + /Rect [ + 58.5804 + 575.4196 + 63.3996 + 580.2404 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +%% Original object ID: 141 0 +64 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 0.4 + 0.4 + 0 + 396 + 61.2 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 65 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +65 0 obj +12 +endobj + +%% Original object ID: 142 0 +66 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 0.4 + 0.4 + 0 + 396 + 61.2 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 67 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +1.9 1.9 Td (8) Tj +ET +Q +EMC +endstream +endobj + +67 0 obj +82 +endobj + +%% Original object ID: 147 0 +68 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 0.4 + 0.4 + 0 + 396 + 61.2 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 69 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +69 0 obj +12 +endobj + +%% Original object ID: 148 0 +70 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 0.4 + 0.4 + 0 + 396 + 61.2 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 71 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +1.9 1.9 Td (8) Tj +ET +Q +EMC +endstream +endobj + +71 0 obj +82 +endobj + +%% Original object ID: 153 0 +72 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 0.4 + 0.4 + 0 + 396 + 61.2 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 73 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +73 0 obj +12 +endobj + +%% Original object ID: 154 0 +74 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 0.4 + 0.4 + 0 + 396 + 61.2 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 75 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +1.9 1.9 Td (8) Tj +ET +Q +EMC +endstream +endobj + +75 0 obj +82 +endobj + +%% Original object ID: 166 0 +76 0 obj +<< + /AP << + /N << + /1 138 0 R + /Off 140 0 R + >> + >> + /AS /Off + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 37 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 20 0 R + /Rect [ + 145.9404 + 588.5196 + 150.7596 + 593.3404 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +%% Original object ID: 167 0 +77 0 obj +<< + /AP << + /N << + /2 142 0 R + /Off 144 0 R + >> + >> + /AS /2 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 37 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 20 0 R + /Rect [ + 156.3004 + 588.2396 + 161.1196 + 593.0604 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +%% Original object ID: 168 0 +78 0 obj +<< + /AP << + /N << + /3 146 0 R + /Off 148 0 R + >> + >> + /AS /Off + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf) + /DR << + /Font << + /ZaDi 37 0 R + >> + >> + /F 4 + /FT /Btn + /MK << + /CA (l) + >> + /Parent 20 0 R + /Rect [ + 167.7604 + 588.2396 + 172.5796 + 593.0604 + ] + /Subtype /Widget + /Type /Annot +>> +endobj + +%% Original object ID: 178 0 +79 0 obj +<< + /BBox [ + 0 + 0 + 237.45 + 17.95 + ] + /Matrix [ + 0 + 0.4 + 0.4 + 0 + 396 + 61.2 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 80 0 R +>> +stream +/Tx BMC +q +BT +0.18039 0.20392 0.21176 rg /F2 12 Tf +1 4.175 Td +(salad ??) Tj +ET +Q +EMC +endstream +endobj + +80 0 obj +85 +endobj + +%% Original object ID: 182 0 +81 0 obj +<< + /BBox [ + 0 + 0 + 55.05 + 73.45 + ] + /Matrix [ + 0 + 0.4 + 0.4 + 0 + 396 + 61.2 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 82 0 R +>> +stream +1 1 1 rg +0 -0.05 55.05 73.45 re f* +/Tx BMC +q +BT +0.18039 0.20392 0.21176 rg /F4 10 Tf +1 32.725 Td +(pi) Tj +ET +Q +EMC +endstream +endobj + +82 0 obj +114 +endobj + +%% Original object ID: 186 0 +83 0 obj +<< + /BBox [ + 0 + 0 + 62.55 + 76.2 + ] + /Matrix [ + 0 + 0.4 + 0.4 + 0 + 396 + 61.2 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 84 0 R +>> +stream +1 1 1 rg +0 -0.05 62.55 76.2 re f* +/Tx BMC +q +0.85 0.85 0.85 rg +0 62.1 62.55 12 re f +Q +q +BT +0.18039 0.20392 0.21176 rg /F4 10 Tf +1 64.1 Td +(1) Tj +0 -12 Td +(2) Tj +0 -12 Td +(3) Tj +0 -12 Td +(4) Tj +0 -12 Td +(five) Tj +0 -12 Td +(six) Tj +ET +Q +EMC +endstream +endobj + +84 0 obj +238 +endobj + +%% Original object ID: 190 0 +85 0 obj +<< + /BBox [ + 0 + 0 + 85.05 + 23.7 + ] + /Matrix [ + 0 + 0.4 + 0.4 + 0 + 396 + 61.2 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 86 0 R +>> +stream +1 1 1 rg +0 -0.05 85.05 23.7 re f* +/Tx BMC +q +BT +0.18039 0.20392 0.21176 rg /F4 10 Tf +1 7.85 Td +(elephant) Tj +ET +Q +EMC +endstream +endobj + +86 0 obj +117 +endobj + +%% Original object ID: 194 0 +87 0 obj +<< + /BBox [ + 0 + 0 + 72.1 + 33.9 + ] + /Matrix [ + 0 + 0.4 + 0.4 + 0 + 396 + 61.2 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 88 0 R +>> +stream +1 1 1 rg +0 -0.05 72.1 33.9 re f* +/Tx BMC +q +BT +0.18039 0.20392 0.21176 rg /F4 10 Tf +1 12.95 Td +(delta) Tj +ET +Q +EMC +endstream +endobj + +88 0 obj +114 +endobj + +%% Original object ID: 109 0 +89 0 obj +<< + /AP << + /N 150 0 R + >> + /C [ + 1 + 1 + 0 + ] + /CA 1 + /Contents (Salad) + /CreationDate (D:20181231235455Z00'00) + /F 28 + /M (D:20181231235455Z00'00) + /Name /Comment + /Popup 152 0 R + /Rect [ + -109 + 159 + -91 + 177 + ] + /Subtype /Text + /T (Jay Berkenbilt) + /Type /Annot +>> +endobj + +%% Original object ID: 112 0 +90 0 obj +<< + /F 28 + /Open false + /Parent 153 0 R + /Rect [ + -109 + -180 + 11 + 0 + ] + /Subtype /Popup + /Type /Annot +>> +endobj + +%% Original object ID: 197 0 +91 0 obj +<< + /AP << + /N 154 0 R + >> + /C [ + 1 + 1 + 0 + ] + /CA 1 + /Contents (Salad) + /CreationDate (D:20181231235455Z00'00) + /F 28 + /M (D:20181231235455Z00'00) + /Name /Comment + /Popup 152 0 R + /Rect [ + 17.6 + 459.6 + 24.8 + 466.8 + ] + /Subtype /Text + /T (Jay Berkenbilt) + /Type /Annot +>> +endobj + +%% Original object ID: 200 0 +92 0 obj +<< + /F 28 + /Open false + /Parent 153 0 R + /Rect [ + 17.6 + 324 + 65.6 + 396 + ] + /Subtype /Popup + /Type /Annot +>> +endobj + +%% Contents for page 1 +%% Original object ID: 4 0 +93 0 obj +<< + /Length 94 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato) Tj +ET +endstream +endobj + +94 0 obj +44 +endobj + +%% Original object ID: 6 0 +95 0 obj +<< + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding + /Name /F1 + /Subtype /Type1 + /Type /Font +>> +endobj + +%% Original object ID: 5 0 +96 0 obj +[ + /PDF + /Text +] +endobj + +%% Original object ID: 9 0 +97 0 obj +<< + /Font 29 0 R + /ProcSet [ + /PDF + /Text + ] +>> +endobj + +%% Original object ID: 11 0 +98 0 obj +<< + /BaseFont /BAAAAA+LiberationSerif + /FirstChar 0 + /FontDescriptor 156 0 R + /LastChar 32 + /Subtype /TrueType + /ToUnicode 157 0 R + /Type /Font + /Widths [ + 777 + 943 + 500 + 443 + 333 + 333 + 389 + 250 + 777 + 500 + 333 + 500 + 443 + 610 + 500 + 277 + 556 + 277 + 277 + 500 + 443 + 500 + 443 + 500 + 500 + 556 + 610 + 666 + 500 + 722 + 500 + 722 + 500 + ] +>> +endobj + +%% Original object ID: 15 0 +99 0 obj +<< + /BaseFont /LiberationSans + /Encoding /WinAnsiEncoding + /FirstChar 32 + /FontDescriptor 159 0 R + /LastChar 255 + /Subtype /TrueType + /Type /Font + /Widths [ + 277 + 277 + 354 + 556 + 556 + 889 + 666 + 190 + 333 + 333 + 389 + 583 + 277 + 333 + 277 + 277 + 556 + 556 + 556 + 556 + 556 + 556 + 556 + 556 + 556 + 556 + 277 + 277 + 583 + 583 + 583 + 556 + 1015 + 666 + 666 + 722 + 722 + 666 + 610 + 777 + 722 + 277 + 500 + 666 + 556 + 833 + 722 + 777 + 666 + 777 + 722 + 666 + 610 + 722 + 666 + 943 + 666 + 666 + 610 + 277 + 277 + 277 + 469 + 556 + 333 + 556 + 556 + 500 + 556 + 556 + 277 + 556 + 556 + 222 + 222 + 500 + 222 + 833 + 556 + 556 + 556 + 556 + 333 + 500 + 277 + 556 + 500 + 722 + 500 + 500 + 500 + 333 + 259 + 333 + 583 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 277 + 333 + 556 + 556 + 556 + 556 + 259 + 556 + 333 + 736 + 370 + 556 + 583 + 333 + 736 + 552 + 399 + 548 + 333 + 333 + 333 + 576 + 537 + 333 + 333 + 333 + 365 + 556 + 833 + 833 + 833 + 610 + 666 + 666 + 666 + 666 + 666 + 666 + 1000 + 722 + 666 + 666 + 666 + 666 + 277 + 277 + 277 + 277 + 722 + 722 + 777 + 777 + 777 + 777 + 777 + 583 + 777 + 722 + 722 + 722 + 722 + 666 + 666 + 610 + 556 + 556 + 556 + 556 + 556 + 556 + 889 + 500 + 556 + 556 + 556 + 556 + 277 + 277 + 277 + 277 + 556 + 556 + 556 + 556 + 556 + 556 + 556 + 548 + 610 + 556 + 556 + 556 + 556 + 500 + 556 + 500 + ] +>> +endobj + +%% Original object ID: 17 0 +100 0 obj +<< + /BaseFont /DAAAAA+LiberationSans + /FirstChar 0 + /FontDescriptor 160 0 R + /LastChar 22 + /Subtype /TrueType + /ToUnicode 161 0 R + /Type /Font + /Widths [ + 750 + 333 + 556 + 333 + 556 + 556 + 500 + 722 + 556 + 556 + 500 + 277 + 666 + 556 + 500 + 556 + 556 + 777 + 556 + 277 + 222 + 556 + 556 + ] +>> +endobj + +%% Original object ID: 21 0 +101 0 obj +<< + /BaseFont /DejaVuSans + /Encoding /WinAnsiEncoding + /FirstChar 32 + /FontDescriptor 163 0 R + /LastChar 255 + /Subtype /TrueType + /Type /Font + /Widths [ + 317 + 400 + 459 + 837 + 636 + 950 + 779 + 274 + 390 + 390 + 500 + 837 + 317 + 360 + 317 + 336 + 636 + 636 + 636 + 636 + 636 + 636 + 636 + 636 + 636 + 636 + 336 + 336 + 837 + 837 + 837 + 530 + 1000 + 684 + 686 + 698 + 770 + 631 + 575 + 774 + 751 + 294 + 294 + 655 + 557 + 862 + 748 + 787 + 603 + 787 + 694 + 634 + 610 + 731 + 684 + 988 + 685 + 610 + 685 + 390 + 336 + 390 + 837 + 500 + 500 + 612 + 634 + 549 + 634 + 615 + 352 + 634 + 633 + 277 + 277 + 579 + 277 + 974 + 633 + 611 + 634 + 634 + 411 + 520 + 392 + 633 + 591 + 817 + 591 + 591 + 524 + 636 + 336 + 636 + 837 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 317 + 400 + 636 + 636 + 636 + 636 + 336 + 500 + 500 + 1000 + 471 + 611 + 837 + 360 + 1000 + 500 + 500 + 837 + 400 + 400 + 500 + 636 + 636 + 317 + 500 + 400 + 471 + 611 + 969 + 969 + 969 + 530 + 684 + 684 + 684 + 684 + 684 + 684 + 974 + 698 + 631 + 631 + 631 + 631 + 294 + 294 + 294 + 294 + 774 + 748 + 787 + 787 + 787 + 787 + 787 + 837 + 787 + 731 + 731 + 731 + 731 + 610 + 604 + 629 + 612 + 612 + 612 + 612 + 612 + 612 + 981 + 549 + 615 + 615 + 615 + 615 + 277 + 277 + 277 + 277 + 611 + 633 + 611 + 611 + 611 + 611 + 611 + 837 + 611 + 633 + 633 + 633 + 633 + 591 + 634 + 591 + ] +>> +endobj + +%% Original object ID: 40 0 +102 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 1 + 1 + 0 + 0 + 0 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 103 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0.18039 0.20392 0.21176 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +103 0 obj +220 +endobj + +%% Original object ID: 41 0 +104 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 1 + 1 + 0 + 0 + 0 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 105 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +105 0 obj +12 +endobj + +%% Original object ID: 42 0 +106 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 1 + 1 + 0 + 0 + 0 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 107 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0.18039 0.20392 0.21176 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +107 0 obj +220 +endobj + +%% Original object ID: 43 0 +108 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 1 + 1 + 0 + 0 + 0 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 109 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +109 0 obj +12 +endobj + +%% Original object ID: 44 0 +110 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 1 + 1 + 0 + 0 + 0 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 111 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0.18039 0.20392 0.21176 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +111 0 obj +220 +endobj + +%% Original object ID: 45 0 +112 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 1 + 1 + 0 + 0 + 0 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 113 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +113 0 obj +12 +endobj + +%% Original object ID: 78 0 +114 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 1 + 1 + 0 + 0 + 0 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 115 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0.18039 0.20392 0.21176 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +115 0 obj +220 +endobj + +%% Original object ID: 79 0 +116 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 1 + 1 + 0 + 0 + 0 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 117 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +117 0 obj +12 +endobj + +%% Original object ID: 80 0 +118 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 1 + 1 + 0 + 0 + 0 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 119 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0.18039 0.20392 0.21176 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +119 0 obj +220 +endobj + +%% Original object ID: 81 0 +120 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 1 + 1 + 0 + 0 + 0 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 121 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +121 0 obj +12 +endobj + +%% Original object ID: 82 0 +122 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 1 + 1 + 0 + 0 + 0 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 123 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0.18039 0.20392 0.21176 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +123 0 obj +220 +endobj + +%% Original object ID: 83 0 +124 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 1 + 1 + 0 + 0 + 0 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 125 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +125 0 obj +12 +endobj + +%% Original object ID: 131 0 +126 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 0.4 + 0.4 + 0 + 396 + 61.2 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 127 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0.18039 0.20392 0.21176 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +127 0 obj +220 +endobj + +%% Original object ID: 132 0 +128 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 0.4 + 0.4 + 0 + 396 + 61.2 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 129 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +129 0 obj +12 +endobj + +%% Original object ID: 133 0 +130 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 0.4 + 0.4 + 0 + 396 + 61.2 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 131 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0.18039 0.20392 0.21176 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +131 0 obj +220 +endobj + +%% Original object ID: 134 0 +132 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 0.4 + 0.4 + 0 + 396 + 61.2 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 133 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +133 0 obj +12 +endobj + +%% Original object ID: 135 0 +134 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 0.4 + 0.4 + 0 + 396 + 61.2 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 135 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0.18039 0.20392 0.21176 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +135 0 obj +220 +endobj + +%% Original object ID: 136 0 +136 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 0.4 + 0.4 + 0 + 396 + 61.2 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 137 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +137 0 obj +12 +endobj + +%% Original object ID: 169 0 +138 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 0.4 + 0.4 + 0 + 396 + 61.2 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 139 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0.18039 0.20392 0.21176 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +139 0 obj +220 +endobj + +%% Original object ID: 170 0 +140 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 0.4 + 0.4 + 0 + 396 + 61.2 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 141 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +141 0 obj +12 +endobj + +%% Original object ID: 171 0 +142 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 0.4 + 0.4 + 0 + 396 + 61.2 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 143 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0.18039 0.20392 0.21176 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +143 0 obj +220 +endobj + +%% Original object ID: 172 0 +144 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 0.4 + 0.4 + 0 + 396 + 61.2 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 145 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +145 0 obj +12 +endobj + +%% Original object ID: 173 0 +146 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 0.4 + 0.4 + 0 + 396 + 61.2 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 147 0 R +>> +stream +/Tx BMC +q BT +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf +0 0 Td +ET +Q +0.18039 0.20392 0.21176 rg +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c +8.45 4.65 7.35 3.55 6 3.55 c +4.65 3.55 3.6 4.65 3.6 6 c +3.6 7.35 4.65 8.4 6 8.4 c f* + +EMC +endstream +endobj + +147 0 obj +220 +endobj + +%% Original object ID: 174 0 +148 0 obj +<< + /BBox [ + 0 + 0 + 12.05 + 12.05 + ] + /Matrix [ + 0 + 0.4 + 0.4 + 0 + 396 + 61.2 + ] + /Resources 97 0 R + /Subtype /Form + /Type /XObject + /Length 149 0 R +>> +stream +/Tx BMC +EMC +endstream +endobj + +149 0 obj +12 +endobj + +%% Original object ID: 110 0 +150 0 obj +<< + /BBox [ + 0 + 0 + 18 + 18 + ] + /Matrix [ + 0 + 1 + 1 + 0 + 0 + 0 + ] + /Resources << + /ExtGState << + /GS0 << + /AIS false + /BM /Normal + /CA .6 + /Type /ExtGState + /ca .6 + >> + >> + >> + /Subtype /Form + /Type /XObject + /Length 151 0 R +>> +stream +q 1 1 1 rg 0 i 1 w 4 M 1 j 0 J []0 d /GS0 gs 1 0 0 1 9 5.0908 cm 7.74 12.616 m -7.74 12.616 l -8.274 12.616 -8.707 12.184 -8.707 11.649 c -8.707 -3.831 l -8.707 -4.365 -8.274 -4.798 -7.74 -4.798 c 7.74 -4.798 l 8.274 -4.798 8.707 -4.365 8.707 -3.831 c 8.707 11.649 l 8.707 12.184 8.274 12.616 7.74 12.616 c h f Q 0 G 1 1 0 rg 0 i 0.60 w 4 M 1 j 0 J []0 d 1 1 0 rg 0 G 0 i 0.59 w 4 M 1 j 0 J []0 d 1 0 0 1 9 5.0908 cm 0 0 m -0.142 0 -0.28 0.008 -0.418 0.015 c -2.199 -1.969 -5.555 -2.242 -4.642 -1.42 c -4.024 -0.862 -3.916 0.111 -3.954 0.916 c -5.658 1.795 -6.772 3.222 -6.772 4.839 c -6.772 7.509 -3.74 9.674 0 9.674 c 3.74 9.674 6.772 7.509 6.772 4.839 c 6.772 2.167 3.74 0 0 0 c 7.74 12.616 m -7.74 12.616 l -8.274 12.616 -8.707 12.184 -8.707 11.649 c -8.707 -3.831 l -8.707 -4.365 -8.274 -4.798 -7.74 -4.798 c 7.74 -4.798 l 8.274 -4.798 8.707 -4.365 8.707 -3.831 c 8.707 11.649 l 8.707 12.184 8.274 12.616 7.74 12.616 c b +endstream +endobj + +151 0 obj +929 +endobj + +%% Original object ID: 106 0 +152 0 obj +<< + /F 28 + /Open false + /Parent 153 0 R + /Rect [ + 612 + 601 + 792 + 721 + ] + /Subtype /Popup + /Type /Annot +>> +endobj + +%% Original object ID: 107 0 +153 0 obj +<< + /AP << + /N 164 0 R + >> + /C [ + 1 + 1 + 0 + ] + /CA 1 + /Contents (Salad) + /CreationDate (D:20181231235455Z00'00) + /F 28 + /M (D:20181231235455Z00'00) + /Name /Comment + /Popup 152 0 R + /Rect [ + 435 + 703 + 453 + 721 + ] + /Subtype /Text + /T (Jay Berkenbilt) + /Type /Annot +>> +endobj + +%% Original object ID: 198 0 +154 0 obj +<< + /BBox [ + 0 + 0 + 18 + 18 + ] + /Matrix [ + 0 + 0.4 + 0.4 + 0 + 396 + 61.2 + ] + /Resources << + /ExtGState << + /GS0 << + /AIS false + /BM /Normal + /CA .6 + /Type /ExtGState + /ca .6 + >> + >> + >> + /Subtype /Form + /Type /XObject + /Length 155 0 R +>> +stream +q 1 1 1 rg 0 i 1 w 4 M 1 j 0 J []0 d /GS0 gs 1 0 0 1 9 5.0908 cm 7.74 12.616 m -7.74 12.616 l -8.274 12.616 -8.707 12.184 -8.707 11.649 c -8.707 -3.831 l -8.707 -4.365 -8.274 -4.798 -7.74 -4.798 c 7.74 -4.798 l 8.274 -4.798 8.707 -4.365 8.707 -3.831 c 8.707 11.649 l 8.707 12.184 8.274 12.616 7.74 12.616 c h f Q 0 G 1 1 0 rg 0 i 0.60 w 4 M 1 j 0 J []0 d 1 1 0 rg 0 G 0 i 0.59 w 4 M 1 j 0 J []0 d 1 0 0 1 9 5.0908 cm 0 0 m -0.142 0 -0.28 0.008 -0.418 0.015 c -2.199 -1.969 -5.555 -2.242 -4.642 -1.42 c -4.024 -0.862 -3.916 0.111 -3.954 0.916 c -5.658 1.795 -6.772 3.222 -6.772 4.839 c -6.772 7.509 -3.74 9.674 0 9.674 c 3.74 9.674 6.772 7.509 6.772 4.839 c 6.772 2.167 3.74 0 0 0 c 7.74 12.616 m -7.74 12.616 l -8.274 12.616 -8.707 12.184 -8.707 11.649 c -8.707 -3.831 l -8.707 -4.365 -8.274 -4.798 -7.74 -4.798 c 7.74 -4.798 l 8.274 -4.798 8.707 -4.365 8.707 -3.831 c 8.707 11.649 l 8.707 12.184 8.274 12.616 7.74 12.616 c b +endstream +endobj + +155 0 obj +929 +endobj + +%% Original object ID: 12 0 +156 0 obj +<< + /Ascent 891 + /CapHeight 981 + /Descent -216 + /Flags 4 + /FontBBox [ + -543 + -303 + 1277 + 981 + ] + /FontFile2 166 0 R + /FontName /BAAAAA+LiberationSerif + /ItalicAngle 0 + /StemV 80 + /Type /FontDescriptor +>> +endobj + +%% Original object ID: 14 0 +157 0 obj +<< + /Length 158 0 R +>> +stream +/CIDInit/ProcSet findresource begin +12 dict begin +begincmap +/CIDSystemInfo<< +/Registry (Adobe) +/Ordering (UCS) +/Supplement 0 +>> def +/CMapName/Adobe-Identity-UCS def +/CMapType 2 def +1 begincodespacerange +<00> +endcodespacerange +32 beginbfchar +<01> <0057> +<02> <0068> +<03> <0065> +<04> <0072> +<05> <2019> +<06> <0073> +<07> <0020> +<08> <006D> +<09> <0079> +<0A> <0066> +<0B> <006F> +<0C> <003F> +<0D> <0054> +<0E> <0078> +<0F> <0074> +<10> <0046> +<11> <0069> +<12> <006C> +<13> <0064> +<14> <0061> +<15> <0031> +<16> <0063> +<17> <006B> +<18> <0032> +<19> <0050> +<1A> <004C> +<1B> <0043> +<1C> <0062> +<1D> <0044> +<1E> <0070> +<1F> <0077> +<20> <006E> +endbfchar +endcmap +CMapName currentdict /CMap defineresource pop +end +end +endstream +endobj + +158 0 obj +702 +endobj + +%% Original object ID: 16 0 +159 0 obj +<< + /Ascent 905 + /CapHeight 979 + /Descent -211 + /Flags 4 + /FontBBox [ + -543 + -303 + 1300 + 979 + ] + /FontName /LiberationSans + /ItalicAngle 0 + /StemV 80 + /Type /FontDescriptor +>> +endobj + +%% Original object ID: 18 0 +160 0 obj +<< + /Ascent 905 + /CapHeight 979 + /Descent -211 + /Flags 4 + /FontBBox [ + -543 + -303 + 1300 + 979 + ] + /FontFile2 168 0 R + /FontName /DAAAAA+LiberationSans + /ItalicAngle 0 + /StemV 80 + /Type /FontDescriptor +>> +endobj + +%% Original object ID: 20 0 +161 0 obj +<< + /Length 162 0 R +>> +stream +/CIDInit/ProcSet findresource begin +12 dict begin +begincmap +/CIDSystemInfo<< +/Registry (Adobe) +/Ordering (UCS) +/Supplement 0 +>> def +/CMapName/Adobe-Identity-UCS def +/CMapType 2 def +1 begincodespacerange +<00> +endcodespacerange +22 beginbfchar +<01> <0072> +<02> <0031> +<03> <002D> +<04> <0061> +<05> <0062> +<06> <0063> +<07> <0043> +<08> <0068> +<09> <0065> +<0A> <006B> +<0B> <0020> +<0C> <0042> +<0D> <006F> +<0E> <0078> +<0F> <0032> +<10> <0033> +<11> <004F> +<12> <0070> +<13> <0074> +<14> <0069> +<15> <006E> +<16> <0075> +endbfchar +endcmap +CMapName currentdict /CMap defineresource pop +end +end +endstream +endobj + +162 0 obj +582 +endobj + +%% Original object ID: 22 0 +163 0 obj +<< + /Ascent 928 + /CapHeight 1232 + /Descent -235 + /Flags 4 + /FontBBox [ + -1020 + -462 + 1792 + 1232 + ] + /FontName /DejaVuSans + /ItalicAngle 0 + /StemV 80 + /Type /FontDescriptor +>> +endobj + +%% Original object ID: 108 0 +164 0 obj +<< + /BBox [ + 0 + 0 + 18 + 18 + ] + /Resources << + /ExtGState << + /GS0 << + /AIS false + /BM /Normal + /CA .6 + /Type /ExtGState + /ca .6 + >> + >> + >> + /Subtype /Form + /Type /XObject + /Length 165 0 R +>> +stream +q 1 1 1 rg 0 i 1 w 4 M 1 j 0 J []0 d /GS0 gs 1 0 0 1 9 5.0908 cm 7.74 12.616 m -7.74 12.616 l -8.274 12.616 -8.707 12.184 -8.707 11.649 c -8.707 -3.831 l -8.707 -4.365 -8.274 -4.798 -7.74 -4.798 c 7.74 -4.798 l 8.274 -4.798 8.707 -4.365 8.707 -3.831 c 8.707 11.649 l 8.707 12.184 8.274 12.616 7.74 12.616 c h f Q 0 G 1 1 0 rg 0 i 0.60 w 4 M 1 j 0 J []0 d 1 1 0 rg 0 G 0 i 0.59 w 4 M 1 j 0 J []0 d 1 0 0 1 9 5.0908 cm 0 0 m -0.142 0 -0.28 0.008 -0.418 0.015 c -2.199 -1.969 -5.555 -2.242 -4.642 -1.42 c -4.024 -0.862 -3.916 0.111 -3.954 0.916 c -5.658 1.795 -6.772 3.222 -6.772 4.839 c -6.772 7.509 -3.74 9.674 0 9.674 c 3.74 9.674 6.772 7.509 6.772 4.839 c 6.772 2.167 3.74 0 0 0 c 7.74 12.616 m -7.74 12.616 l -8.274 12.616 -8.707 12.184 -8.707 11.649 c -8.707 -3.831 l -8.707 -4.365 -8.274 -4.798 -7.74 -4.798 c 7.74 -4.798 l 8.274 -4.798 8.707 -4.365 8.707 -3.831 c 8.707 11.649 l 8.707 12.184 8.274 12.616 7.74 12.616 c b +endstream +endobj + +165 0 obj +929 +endobj + +%% Original object ID: 13 0 +166 0 obj +<< + /Length1 16184 + /Length 167 0 R +>> +stream +true @cmapcvt =O;fpgm\glyfky h"dhead0.6hheagy/$hmtx +{/(loca؜/Dmaxp*V/ name?H0 vpostd$; prepLb;  +  H=p=L]FPiuiPZZP`PPm{1o1MffJf/^tFF<}Shv= }JAl +T/HjgaAU )% 42$ +U4Kan_=m +{dN@G[ZYXUTSRQPONMLKJIHGFEDCBA@?>=<;:9876510/.-,('&%$#"! + , `E% Fa#E#aH-, EhD-,E#F` a F`&#HH-,E#F#a ` &a a&#HH-,E#F`@a f`&#HH-,E#F#a@` &a@a&#HH-, <<-, E# D# ZQX# D#Y QX# MD#Y &QX# D#Y!!-, EhD ` EFvhE`D-, +C#Ce +-, + C#C -,(#p(>(#p(E: -, E%EadPQXED!!Y-,I#D-, EC`D-,CCe +-, i@a ,b`+ d#da\XaY-,E+)#D)z-,Ee,#DE+#D-,KRXED!!Y-,KQXED!!Y-,%# `#-,%# a#-,%-,CRX!!!!!F#F`F# F`ab# # pE` PXaFY`h:Y-, E%FRKQ[X%F ha%%?#!8!Y-, E%FPX%F ha%%?#!8!Y-,CC -,!! d#d@b-,!QX d#d b@/+Y`-,!QX d#dUb/+Y`-, d#d@b`#!-,KSX%Id#Ei@ab aj#D#!# 9/Y-,KSX %Idi &%Id#ab aj#D&#D#D& 9# 9//Y-,E#E`#E`#E`#vhb -,H+-, ETX@D E@aD!!Y-,E0/E#Ea``iD-,KQX/#p#B!!Y-,KQX %EiSXD!!Y!!Y-,EC`c`iD-,/ED-,E# E`D-,E#E`D-,K#QX34 34YDD-,CX&EXdf`d `f X!@YaY#XeY)#D#)!!!!!Y-,CTXKS#KQZX8!!Y!!!!Y-,CX%Ed `f X!@Ya#XeY)#D%% XY%% F%#B<%%%% F%`#B< XY%%)) EeD%%)%% XY%%CH%%%%`CH!Y!!!!!!!-,% F%#B%%EH!!!!-,% %%CH!!!-,E# E P X#e#Y#h @PX!@Y#XeY`D-,KS#KQZX E`D!!Y-,KTX E`D!!Y-,KS#KQZX8!!Y-,!KTX8!!Y-,CTXF+!!!!Y-,CTXG+!!!Y-,CTXH+!!!!Y-,CTXI+!!!Y-, #KSKQZX#8!!Y-,%ISX @8!Y-,F#F`#Fa#  Fab@@pE`h:-, #Id#SX<!Y-,KRX}zY-,KKTB-,B#Q@SZX TXC`BY$QX @TXC`B$TX C`BKKRXC`BY@TXC`BY@cTXC`BY@cTXC`BY&QX@cTX@C`BY@cTXC`BYYYYYYCTX@ +@@ @  CTX@   CRX@ @@ @Y@U@cUZX  YYYBBBBB-,Eh#KQX# E d@PX|Yh`YD-,%%#>#> +#eB #B#?#? #eB#B-,CPCT[X!# Y-,Y+-,-=O@  + + H  +_Y @ + H dVfVF6&ipdpdT@4$P@09pO/]]]]]]]qqqqqrrrrrr^]]_]]]]]]]qqqqqqqqqqqqrr_rrrrr^]]]]]]]]]]]qqqq?3333+3?3+3333/3/3+993310# #'5! 3 '5!^55Du?i-\0ud 55O^55@y   PY PY RY9p`P@0 p`@p`]]]]]]]qqqqqrrrrrrrrrr^]]]]q?+33?3+333?+99333310>32!574#"!57'5!FH?z|rk}^dw2h.)<--^---PF@ZPY  PY QY p`P>P@0 qqqrrrrr^]]]]]]]]]?+?+9/_^]+993333103267#"&463 "!4&=g600Vοiho\P 8.fR)Q@-  PY + PY +_@qrr?+3?+?333_^]3992310#'"!57'5!>3+:22Bww <<nB-- -u2\DR@y Y[ `hp?P`/8P/^]]]]]]qqqqqrr^]]]]]]qqqqrrr^]]]]]]q?3++9333105654&'&54632埒%DD5=R*M8p #@69WT(Y@4! )* !PY PY*p*`*P* **_*O*]]]qqqqq?3+?3+9999333310#"&'533254/.54632#'&#"ӱF0-1Kx™Ye\2g/*5rQUMNZ?#Dz4!DcF|m/PD9N2.CV+1@ !((--! 321.PY1(! -+-PY+ RY '%RYv3V363$333333333b3P3D303$333h3333t3@343$33333333d3P3D343$333333333k3;3 3338333`3T3@343333333t@+3T3@343333333p3P333^]]]]]]_]]qqqqqqqqqqqrrrrrrrr^]]]]]]]]]]]qqqqqqqqqqqqqrrrrrrrrr^]]]]]]_]]]]]]]qqqqqq?+33?+33?33+33333?+93333310>32>32!574#"!574&#"!57'5!FK@EuMDyUEE?BUUXVww`+:49+B--X + 6A--XSY-- -F@      PYQYtfVt`PB2$htfTF2"rbRD4&tbRD4&8r@WfTF2$tdPD4pO^]]]]]]]_]]qqqqqqqqqqqqr_rrrrrrrrrrrrrr^]]]]]]]]]]]]]]]]qqqqqqqqqqqqqqqqrrrrrrrrrrrrrrr^]]]]]]]]]]]]]]qqqq?2+?3+33333_^]3993310"'5332>7'5!'5!NL/!74XI7`^bA`tF`54&#"#563 #"&54632PVNjpR#B9ME34EF32F^Ny1+ 1HH13FE%=<@     `Y _Y?_? kpOo_@0_0;_O0p_0 p?/]]]]]]]]]]qqqqqqqqqrrrrrrrr^]]]]]]qqqqqqqqqqqrrrrrrrr^]]]]]]]]qq?+3?+33/_^]39310!57#"#!#'.+;3]CDx15; k5@e   +@adH$4Dd $D +9$d$!H@*H@0   PY   PY ?3+333?39+333_^]_]++qr^]qr+933333310%!57 !57 '5!'5! V}m5o}ЁRl5---M------.-G@' + PY  QY?/]]]r?+3?33+39922310"&5#5?33#327N`_{}e?;0:S#rg-'TABA;)=@ `Y_o-  `Y _Y _Ytdt`TDtdT@0 9q_qrrrrr^]]]]]]]]]]]]]]qqqqqqqqrrrrrrr?+3?++9/_^]_]]+9333310!57'5!#'&+!73#'B p==Z555Ѡd+L @f  SY@PY PY9p`P@P p`P@]]]]]]]qqqqqqqrrrr_rr^]]?+3?+_^]+933310#"&54632!57'5!{@-,@@,-@ ++,@@,-@@:-- -) @p + PY PY      t d $   9   p ` P @    P      p ` P @ ]]]]]]]qqqqqqrrrr_rrr^]]]]]]]]]]]?+3?+910%!57'5!oFF---J@O PY PYPYQYGP@0 @` ]]]]qqqrrrrr^]?+33?+?+?+99333310%# 432&='5!!327&# qloDtqZYrFZ!--;'Hq%m@?%% '&%" +"QYPY  +PYPY'_'@'']qrr?+?+?39/_^]+9+393333102!'#"4>?54&#"#563267њurIGJdS"8_Dc2~-^r^{Aa\/u#^nH +K@-   @ +sY@    ` @ ]]]]qq?+3?_^]93310%!5%5%3s/4P55Fa5NN`@< PY QY>@0 @_]]qqqqqrrrr^]?+3?3+993310%# 4632#'&# 327N1Z7ه7+Stl9$)/hԵ!'@M @` @P=0P`PpY]HMUH59H@"+1HPY PY PY?+3?39+333?+++++_^]qr^]qr9333339310 '5! !57!57'5!XbLuXfV{dw1-------ZL`@7  +sYvY@`@]]]]qq?+3?+3/_^]999333310)57>54&#"#632!˺Iv5p+#BWYd΅+pűL[;!=@ + + `Y `Y_Y + _Y o/oO?/o_8/?^]]]]]]qqqqrr^]]]]]]qqqqqqqrrrrr?+3?++9/+99333104&+326!57'5! #ZbhN˟B555u;h=8@   _Y _Y `Y tfVF&vfTF&vfTD2 9d4p@0 pP@]]]]]]]]qqqqqqqqq_rrrrrrrr^]]]_]]]]]]]]]]]qqqqqqqqqqqrrrrrrrrrrr?+3/_^]+?+399310!273!57'5!wd>A嬬<h55TL>@! _Y +  + +_Y@]?+3/?3/_^]+993310 !2#'.# 326?3^XBF`r;%Ac@Zc3ۮ+/7.? @Q PYQY PY@9`@` ]]]]qqqqqqqrr^]]r?+?+33?+99333104&#"326'5!632#"&';tTu|/dVN .-6N&;u= L@/  _Y`Y_Y`Y?@ p]]]qr^]?++?++993310!#32 !%#57'5xsf""{"55!L!@Q + +"#PY PY QYPY@###90####`#@###`#?#]]]]qqqqqr^]]r?+?3+3?+?+3993333310'5!>32#"'!574&#"32k*Iqf@wd}uNYjf-7$,H)//N!@ + + H  +PY @ + H TD$tD0$dT9T@0 `P@0 p_ ]]]]]]]qqqqqqrrrr_rrrr^]]]]]qqqqqqqqqrrrrr?3333+3?3+3333/3+993310# #'5!3'5!NJoT՚fhlz--e--/@} PY PY +RY9tdTD4$p`@p`]]]]]]]qqqqq_qrrrrrrrrrr^]]]]q?+33?3+333?+99333310>32!574&#"!57'5!DM:z|rk}QUZjqq `,9--XS_-- -D_<DF!EW!9P)T9+?Nj%9s;9+9)JHN'Zs;;VT;!/^"$H ` F +\ + 4 : * p42!2/\nVVfmz/ C +nQ  . 5 > X   $ 62  h    (  + 8 \  j j 4 Digitized data copyright (c) 2010 Google Corporation. +Copyright (c) 2012 Red Hat, Inc.Liberation SerifRegularAscender - Liberation SerifLiberation SerifVersion 2.00.2LiberationSerifLiberation is a trademark of Red Hat, Inc. registered in U.S. Patent and Trademark Office and certain other jurisdictions.Ascender CorporationSteve MattesonBased on Tinos, which was designed by Steve Matteson as an innovative, refreshing serif design that is metrically compatible with Times New Roman. Tinos offers improved on-screen readability characteristics and the pan-European WGL character set and solves the needs of developers looking for width-compatible fonts to address document portability across platforms.http://www.ascendercorp.com/http://www.ascendercorp.com/typedesigners.htmlLicensed under the SIL Open Font License, Version 1.1http://scripts.sil.org/OFLDigitized data copyright (c) 2010 Google Corporation. +Copyright (c) 2012 Red Hat, Inc.Liberation SerifRegularAscender - Liberation SerifLiberation SerifVersion 2.00.2LiberationSerifLiberation is a trademark of Red Hat, Inc. registered in U.S. Patent and Trademark Office and certain other jurisdictions.Ascender CorporationSteve MattesonBased on Tinos, which was designed by Steve Matteson as an innovative, refreshing serif design that is metrically compatible with Times New Roman!". Tinos offers improved on-screen readability characteristics and the pan-European WGL character set and solves the needs of developers looking for width-compatible fonts to address document portability across platforms.http://www.ascendercorp.com/http://www.ascendercorp.com/typedesigners.htmlLicensed under the SIL Open Font License, Version 1.1http://scripts.sil.org/OFL!d PAbehg`N_UA=@U@BUC=BU.==>U<=;U;?;O;;;>U0=/U/>U-=,U,,>U?=>UJHUGHUF=EUEHUI=HU`?@ P)O_0P`p + 8=U=U<0P݀ݰU 0p/O`P`/.G' FOL=NAMMM/MOMoMMLL/L@8_ +{pvvsP)on+nG*3U3U@Ib%(F`_@_P)[Z0ZG)3UU3U?OoRPQPPP@P FOO/O@eK!(F`JpJJIF)HG8GG/GGGG_GGFFF@F)/F@F!FHU3UU3UU3U/_?TS++KRKP[%S@QZUZ[XYBK2SX`YKdSX@YKSXBYsst++++++++sstu++s+u+t++^s++++++++++++++ssssssst+++s+++sssssss+ss++s^s+++^s^s^s^ssss+sssssssss+++++++s++++s++++++++s^ +endstream +endobj + +%QDF: ignore_newline +167 0 obj +16184 +endobj + +%% Original object ID: 19 0 +168 0 obj +<< + /Length1 11088 + /Length 169 0 R +>> +stream +true @cmapU=8Hcvt K&fpgm\hglyfQe hheadAI.6hheae$hmtx4SZloca,%<0maxpg/l name R ^post*' prepI( C  + }y:wW~j`jy"3kkk{Rni`[^^eoz iq4 HjgaAh@G[ZYXUTSRQPONMLKJIHGFEDCBA@?>=<;:9876510/.-,('&%$#"! + , `E% Fa#E#aH-, EhD-,E#F` a F`&#HH-,E#F#a ` &a a&#HH-,E#F`@a f`&#HH-,E#F#a@` &a@a&#HH-, <<-, E# D# ZQX# D#Y QX# MD#Y &QX# D#Y!!-, EhD ` EFvhE`D-, +C#Ce +-, + C#C -,(#p(>(#p(E: -, E%EadPQXED!!Y-,I#D-, EC`D-,CCe +-, i@a ,b`+ d#da\XaY-,E+)#D)z-,Ee,#DE+#D-,KRXED!!Y-,KQXED!!Y-,%# `#-,%# a#-,%-,CRX!!!!!F#F`F# F`ab# # pE` PXaFY`h:Y-, E%FRKQ[X%F ha%%?#!8!Y-, E%FPX%F ha%%?#!8!Y-,CC -,!! d#d@b-,!QX d#d b@/+Y`-,!QX d#dUb/+Y`-, d#d@b`#!-,KSX%Id#Ei@ab aj#D#!# 9/Y-,KSX %Idi &%Id#ab aj#D&#D#D& 9# 9//Y-,E#E`#E`#E`#vhb -,H+-, ETX@D E@aD!!Y-,E0/E#Ea``iD-,KQX/#p#B!!Y-,KQX %EiSXD!!Y!!Y-,EC`c`iD-,/ED-,E# E`D-,E#E`D-,K#QX34 34YDD-,CX&EXdf`d `f X!@YaY#XeY)#D#)!!!!!Y-,CTXKS#KQZX8!!Y!!!!Y-,CX%Ed `f X!@Ya#XeY)#D%% XY%% F%#B<%%%% F%`#B< XY%%)) EeD%%)%% XY%%CH%%%%`CH!Y!!!!!!!-,% F%#B%%EH!!!!-,% %%CH!!!-,E# E P X#e#Y#h @PX!@Y#XeY`D-,KS#KQZX E`D!!Y-,KTX E`D!!Y-,KS#KQZX8!!Y-,!KTX8!!Y-,CTXF+!!!!Y-,CTXG+!!!Y-,CTXH+!!!!Y-,CTXI+!!!Y-, #KSKQZX#8!!Y-,%ISX @8!Y-,F#F`#Fa#  Fab@@pE`h:-, #Id#SX<!Y-,KRX}zY-,KKTB-,B#Q@SZX TXC`BY$QX @TXC`B$TX C`BKKRXC`BY@TXC`BY@cTXC`BY@cTXC`BY&QX@cTX@C`BY@cTXC`BYYYYYYCTX@ +@@ @  CTX@   CRX@ @@ @Y@U@cUZX  YYYBBBBB-,Eh#KQX# E d@PX|Yh`YD-,%%#>#> +#eB #B#?#? #eB#B-,CPCT[X!# Y-,Y+-,-2@  ?/993310!!!eL5N#@  +???3399331034'33>32&#"+pf$%$r%f + + ++@ tY?+3?33/39331035!5%3!gMW<[Op@Y//]q+99105![РWsN#0@V )).21QY )QY?o  PY$PY2222p2`2P2022]qqqqqqqq?+?+3/_^]q9/+9?+93333310"&546?54&#"'!2327#"&'#'2>=pxyn .*;!DGd[EZcYF_;rRZ$.PQpip|gZSY0dQX`#]@7  $%PY +!PY%?%%p%%%%%]]]qqqrr?+???+9999333310!"&'##6533>324&#"326r{32zxy"Yc +6YAXhZWNf@E  PY p`p  + +PY +]?+3/_^]q?3/]+9333103267#"32.#"`ri"hl Zjhy^@9  _Y@P  _Y  ]?+3/_^]?+3/_^]933310"3 #"$5!2.(WɣlB.G1%NIQ~<{`@; PYp]]]]]]]qqrrr?+?39?9933310>32#4.#"#3=:}*`Ujc/ro4~= +WNw@F PY  PY PY p`P0qqqqqqqqq?+?+9/_^]+9/93333103267!"3 '.#"uaݺ^H-  @g  + +   ?  ? _   ? _  9 @SVH`   `   0 @  +????9^]qqr+^]qr93323993310!#33 0Ima / h@:  _Y$M>_Y_Y?+?+9/_^]_]_q++993333910#!! 4&#!!264)!26AQs}rbBsVN +H@, PYPYp`P0]qqqqqqq?+?+993310#"!24&#"326꽅!0: T@  +  v D T d 6 $         v d   & F V g F V  d V D 6 $      & 6 F 7f  @6=BH9 "       t ` T @ 4   @"H   P p  +?3?393^]_]+qqqqqqqqqqr_rr+r^]]]qqqqqqqqr^]]]]]]]]]qqqqqqq9333333310! # 3 3 ! D,[g >@   sYtY?+9?+3993331035>54&#"'>32!g3Oys Ksu||Vt}qɹR^FN(c@9" "%)*%tYMMsY sY?3+?+39/_^]+++99333310#"&'7!2654&+532654&#"'>32$fbw 뗐srqzoŰa0@ _Y _Y ]]?+?+993310#"$5!2#"32שŦrJ< MR},-WM$]@7 &%PY "PY&?&&p&&&&&]]]qqqrr?+???+9999333310!"'##4'33>324&#"326rV0ƽzky?{"ʼY61fd]Z*,E@$   PY    @PY]?+?_^]3+393332310%#"5#53733#327*Y]}5x3?$D҃UN?=n@H SY       p         O  ]qqqqqqqrrrrrrrrrr?+??933310533 :Na@< + +PY  +p]]]]]]]qqrrr?2??+99933310!4.#"#4'33>329*\Y>ykv4S*,9Op]/:_@;  PY  p]]]]]]]qqrrr?2??+3993331032653#.'##"&5:*\Y>y:Rkv4s*,9Op]_<@W>NCs[sWsWhssW9VsVsgsN9as9s&X0X||6N +rZ1/\nWWfmz, @ +iN  . 56 P   4* ^ |   (  + 8 \ j R 4 Digitized data copyright (c) 2010 Google Corporation. +Copyright (c) 2012 Red Hat, Inc.Liberation SansRegularAscender - Liberation SansLiberation SansVersion 2.00.2LiberationSansLiberation is a trademark of Red Hat, Inc. registered in U.S. Patent and Trademark Office and certain other jurisdictions.Ascender CorporationSteve MattesonBased on Arimo, which was designed by Steve Matteson as an innovative, refreshing sans serif design that is metrically compatible with Arial. Arimo offers improved on-screen readability characteristics and the pan-European WGL character set and solves the needs of developers looking for width-compatible fonts to address document portability across platforms.http://www.ascendercorp.com/http://www.ascendercorp.com/typedesigners.htmlLicensed under the SIL Open Font License, Version 1.1http://scripts.sil.org/OFLDigitized data copyright (c) 2010 Google Corporation. +Copyright (c) 2012 Red Hat, Inc.Liberation SansRegularAscender - Liberation SansLiberation SansVersion 2.00.2LiberationSansLiberation is a trademark of Red Hat, Inc. registered in U.S. Patent and Trademark Office and certain other jurisdictions.Ascender CorporationSteve MattesonBased on Arimo, which was designed by Steve Matteson as an innovative, refreshing sans serif design that is metrically compatible with Arial!". Arimo offers improved on-screen readability characteristics and the pan-European WGL character set and solves the needs of developers looking for width-compatible fonts to address document portability across platforms.http://www.ascendercorp.com/http://www.ascendercorp.com/typedesigners.htmlLicensed under the SIL Open Font License, Version 1.1http://scripts.sil.org/OFL'A! ?9U>9UB@A@;3:U839U@@ +O P(F(F*F+_O_ F@FF@36FFUHU2UUHU=UU=U@F<P&(Pp@2F?Oop?а/?Э/?ЪO/o$PoF0@pЏO_oF1ts?sP&on<nF5U3U3U`P&_P&\F1[ZHZF12UU2Ul <Ll|Q@dQ@Q58F@Q%(FPIF HF5GF5FFFF2UU2UU?_/Oo?oOTS++KRKP[%S@QZUZ[XYBK2SX`YKdSX@YKSXBYststu+++++stu+++t++ssu+++++++++++++++++s+tstusts++tus+stsststtsts^sstssss+ss+++s+tu+++++++++++++t++^s++^st++++ss^ssssss++++++^ +endstream +endobj + +%QDF: ignore_newline +169 0 obj +11088 +endobj + +xref +0 170 +0000000000 65535 f +0000000052 00000 n +0000000153 00000 n +0000000454 00000 n +0000000555 00000 n +0000000871 00000 n +0000001018 00000 n +0000001421 00000 n +0000001824 00000 n +0000002228 00000 n +0000002375 00000 n +0000002749 00000 n +0000003186 00000 n +0000003750 00000 n +0000004243 00000 n +0000004721 00000 n +0000005041 00000 n +0000005190 00000 n +0000005599 00000 n +0000006008 00000 n +0000006419 00000 n +0000006568 00000 n +0000006947 00000 n +0000007389 00000 n +0000007958 00000 n +0000008455 00000 n +0000008945 00000 n +0000009555 00000 n +0000009840 00000 n +0000009888 00000 n +0000010008 00000 n +0000010392 00000 n +0000010774 00000 n +0000011155 00000 n +0000011376 00000 n +0000011424 00000 n +0000011715 00000 n +0000011763 00000 n +0000011872 00000 n +0000012093 00000 n +0000012141 00000 n +0000012432 00000 n +0000012480 00000 n +0000012701 00000 n +0000012749 00000 n +0000013040 00000 n +0000013088 00000 n +0000013472 00000 n +0000013854 00000 n +0000014238 00000 n +0000014533 00000 n +0000014581 00000 n +0000014904 00000 n +0000014953 00000 n +0000015399 00000 n +0000015448 00000 n +0000015773 00000 n +0000015823 00000 n +0000016144 00000 n +0000016194 00000 n +0000016488 00000 n +0000016537 00000 n +0000016925 00000 n +0000017311 00000 n +0000017699 00000 n +0000017929 00000 n +0000017978 00000 n +0000018278 00000 n +0000018327 00000 n +0000018557 00000 n +0000018606 00000 n +0000018906 00000 n +0000018955 00000 n +0000019185 00000 n +0000019234 00000 n +0000019534 00000 n +0000019583 00000 n +0000019973 00000 n +0000020361 00000 n +0000020751 00000 n +0000021055 00000 n +0000021104 00000 n +0000021436 00000 n +0000021486 00000 n +0000021941 00000 n +0000021991 00000 n +0000022325 00000 n +0000022375 00000 n +0000022705 00000 n +0000022755 00000 n +0000023107 00000 n +0000023277 00000 n +0000023634 00000 n +0000023828 00000 n +0000023929 00000 n +0000023976 00000 n +0000024122 00000 n +0000024185 00000 n +0000024287 00000 n +0000024766 00000 n +0000026711 00000 n +0000027110 00000 n +0000029053 00000 n +0000029484 00000 n +0000029534 00000 n +0000029757 00000 n +0000029806 00000 n +0000030237 00000 n +0000030287 00000 n +0000030510 00000 n +0000030559 00000 n +0000030990 00000 n +0000031040 00000 n +0000031263 00000 n +0000031312 00000 n +0000031743 00000 n +0000031793 00000 n +0000032016 00000 n +0000032065 00000 n +0000032496 00000 n +0000032546 00000 n +0000032769 00000 n +0000032818 00000 n +0000033249 00000 n +0000033299 00000 n +0000033522 00000 n +0000033572 00000 n +0000034012 00000 n +0000034063 00000 n +0000034295 00000 n +0000034345 00000 n +0000034785 00000 n +0000034836 00000 n +0000035068 00000 n +0000035118 00000 n +0000035558 00000 n +0000035609 00000 n +0000035841 00000 n +0000035891 00000 n +0000036331 00000 n +0000036382 00000 n +0000036614 00000 n +0000036664 00000 n +0000037104 00000 n +0000037155 00000 n +0000037387 00000 n +0000037437 00000 n +0000037877 00000 n +0000037928 00000 n +0000038160 00000 n +0000038210 00000 n +0000039487 00000 n +0000039538 00000 n +0000039710 00000 n +0000040062 00000 n +0000041348 00000 n +0000041398 00000 n +0000041671 00000 n +0000042432 00000 n +0000042482 00000 n +0000042726 00000 n +0000042998 00000 n +0000043639 00000 n +0000043689 00000 n +0000043933 00000 n +0000045158 00000 n +0000045208 00000 n +0000061490 00000 n +0000061542 00000 n +0000072728 00000 n +trailer << + /Root 1 0 R + /Size 170 + /ID [<31415926535897932384626433832795><31415926535897932384626433832795>] +>> +startxref +72752 +%%EOF diff --git a/qpdf/test_driver.cc b/qpdf/test_driver.cc index 19f20abd..0ab25fb3 100644 --- a/qpdf/test_driver.cc +++ b/qpdf/test_driver.cc @@ -2905,6 +2905,56 @@ void runtest(int n, char const* filename1, char const* arg2) w.setQDFMode(true); w.write(); } + else if (n == 80) + { + // Exercise transform/copy annotations without passing in + // QPDFAcroFormDocumentHelper pointers. The case of passing + // them in is sufficiently exercised by testing through the + // qpdf CLI. + + // The main file is a file that has lots of annotations. Arg2 + // is a file to copy annotations to. + + QPDFMatrix m; + m.translate(306, 396); + m.scale(0.4, 0.4); + auto page1 = pdf.getAllPages().at(0); + auto old_annots = page1.getKey("/Annots"); + // Transform annotations and copy them back to the same page. + std::vector new_annots; + std::vector new_fields; + std::set old_fields; + QPDFAcroFormDocumentHelper afdh(pdf); + // Use defaults for from_qpdf and from_afdh. + afdh.transformAnnotations( + old_annots, new_annots, new_fields, old_fields, m); + for (auto const& annot: new_annots) + { + old_annots.appendItem(annot); + } + for (auto const& field: new_fields) + { + afdh.addFormField(QPDFFormFieldObjectHelper(field)); + } + + m = QPDFMatrix(); + m.translate(612, 0); + m.scale(-1, 1); + QPDF pdf2; + pdf2.processFile(arg2); + auto page2 = QPDFPageDocumentHelper(pdf2).getAllPages().at(0); + page2.copyAnnotations(page1, m); + + QPDFWriter w1(pdf, "a.pdf"); + w1.setStaticID(true); + w1.setQDFMode(true); + w1.write(); + + QPDFWriter w2(pdf2, "b.pdf"); + w2.setStaticID(true); + w2.setQDFMode(true); + w2.write(); + } else { throw std::runtime_error(std::string("invalid test ") +