Commit a9ae8cadc66daf631f6cbfe7fc3c7c602ac665d8

Authored by Jay Berkenbilt
1 parent a76decd2

Add transformAnnotations and fix flattenRotations to use it

ChangeLog
1 1 2021-02-21 Jay Berkenbilt <ejb@ql.org>
2 2  
  3 + * Bug fix: --flatten-rotation now applies the required
  4 + transformation to annotations on the page.
  5 +
  6 + * Add QPDFAcroFormDocumentHelper::transformAnnotations to apply a
  7 + transformation to a group of annotations.
  8 +
3 9 * Add QPDFObjGen::unparse()
4 10  
5 11 * Add QPDFObjectHandle::copyStream() for making a copy of a stream
... ...
include/qpdf/QPDFAcroFormDocumentHelper.hh
... ... @@ -113,6 +113,10 @@ class QPDFAcroFormDocumentHelper: public QPDFDocumentHelper
113 113 QPDF_DLL
114 114 void addFormField(QPDFFormFieldObjectHelper);
115 115  
  116 + // Remove fields from the fields array
  117 + QPDF_DLL
  118 + void removeFormFields(std::set<QPDFObjGen> const&);
  119 +
116 120 // Return a vector of all terminal fields in a document. Terminal
117 121 // fields are fields that have no children that are also fields.
118 122 // Terminal fields may still have children that are annotations.
... ... @@ -174,6 +178,32 @@ class QPDFAcroFormDocumentHelper: public QPDFDocumentHelper
174 178 QPDF_DLL
175 179 void generateAppearancesIfNeeded();
176 180  
  181 + // Note: this method works on all annotations, not just ones with
  182 + // associated fields. For each annotation in old_annots, apply the
  183 + // given transformation matrix to create a new annotation. New
  184 + // annotations are appended to new_annots. If the annotation is
  185 + // associated with a form field, a new form field is created that
  186 + // points to the new annotation and is appended to new_fields, and
  187 + // the old field is added to old_fields.
  188 + //
  189 + // old_annots may belong to a different QPDF object. In that case,
  190 + // you should pass in from_qpdf, and copyForeignObject will be
  191 + // called automatically. If this is the case, for efficiency, you
  192 + // may pass in a QPDFAcroFormDocumentHelper for the other file to
  193 + // avoid the expensive process of creating one for each call to
  194 + // transformAnnotations. New fields and annotations are not added
  195 + // to the document or pages. You have to do that yourself after
  196 + // calling transformAnnotations.
  197 + QPDF_DLL
  198 + void transformAnnotations(
  199 + QPDFObjectHandle old_annots,
  200 + std::vector<QPDFObjectHandle>& new_annots,
  201 + std::vector<QPDFObjectHandle>& new_fields,
  202 + std::set<QPDFObjGen>& old_fields,
  203 + QPDFMatrix const& cm,
  204 + QPDF* from_qpdf = nullptr,
  205 + QPDFAcroFormDocumentHelper* from_afdh = nullptr);
  206 +
177 207 private:
178 208 void analyze();
179 209 void traverseField(QPDFObjectHandle field,
... ...
include/qpdf/QPDFAnnotationObjectHelper.hh
... ... @@ -40,6 +40,13 @@ class QPDFAnnotationObjectHelper: public QPDFObjectHelper
40 40 // This class provides helper methods for annotations. More
41 41 // functionality will likely be added in the future.
42 42  
  43 + // Some functionality for annotations is also implemented in
  44 + // QPDFAcroFormDocumentHelper and QPDFFormFieldObjectHelper. In
  45 + // some cases, functions defined there work for other annotations
  46 + // besides widget annotations, but they are implemented with form
  47 + // fields so that they can properly handle form fields when
  48 + // needed.
  49 +
43 50 // Return the subtype of the annotation as a string (e.g.
44 51 // "/Widget"). Returns the empty string if the subtype (which is
45 52 // required by the spec) is missing.
... ...
include/qpdf/QPDFPageObjectHelper.hh
... ... @@ -31,6 +31,8 @@
31 31 #include <qpdf/QPDFObjectHandle.hh>
32 32 #include <functional>
33 33  
  34 +class QPDFAcroFormDocumentHelper;
  35 +
34 36 class QPDFPageObjectHelper: public QPDFObjectHelper
35 37 {
36 38 // This is a helper class for page objects, but as of qpdf 10.1,
... ... @@ -323,9 +325,15 @@ class QPDFPageObjectHelper: public QPDFObjectHelper
323 325 // various page bounding boxes (/MediaBox, etc.) so that the page
324 326 // will have the same semantics. This can be useful to work around
325 327 // problems with PDF applications that can't properly handle
326   - // rotated pages.
  328 + // rotated pages. If a QPDFAcroFormDocumentHelper is provided, it
  329 + // will be used for resolving any form fields that have to be
  330 + // rotated. If not, one will be created inside the function, which
  331 + // is less efficient.
327 332 QPDF_DLL
328 333 void flattenRotation();
  334 + // ABI: merge versions and make afdh default to nullptr
  335 + QPDF_DLL
  336 + void flattenRotation(QPDFAcroFormDocumentHelper* afdh);
329 337  
330 338 private:
331 339 static bool
... ...
libqpdf/QPDFAcroFormDocumentHelper.cc
... ... @@ -54,6 +54,50 @@ QPDFAcroFormDocumentHelper::addFormField(QPDFFormFieldObjectHelper ff)
54 54 ff.getObjectHandle(), QPDFObjectHandle::newNull(), 0, visited);
55 55 }
56 56  
  57 +void
  58 +QPDFAcroFormDocumentHelper::removeFormFields(
  59 + std::set<QPDFObjGen> const& to_remove)
  60 +{
  61 + auto acroform = this->qpdf.getRoot().getKey("/AcroForm");
  62 + if (! acroform.isDictionary())
  63 + {
  64 + return;
  65 + }
  66 + auto fields = acroform.getKey("/Fields");
  67 + if (! fields.isArray())
  68 + {
  69 + return;
  70 + }
  71 +
  72 + for (auto const& og: to_remove)
  73 + {
  74 + auto annotations = this->m->field_to_annotations.find(og);
  75 + if (annotations != this->m->field_to_annotations.end())
  76 + {
  77 + for (auto aoh: annotations->second)
  78 + {
  79 + this->m->annotation_to_field.erase(
  80 + aoh.getObjectHandle().getObjGen());
  81 + }
  82 + this->m->field_to_annotations.erase(og);
  83 + }
  84 + }
  85 +
  86 + int i = 0;
  87 + while (i < fields.getArrayNItems())
  88 + {
  89 + auto field = fields.getArrayItem(i);
  90 + if (to_remove.count(field.getObjGen()))
  91 + {
  92 + fields.eraseItem(i);
  93 + }
  94 + else
  95 + {
  96 + ++i;
  97 + }
  98 + }
  99 +}
  100 +
57 101 std::vector<QPDFFormFieldObjectHelper>
58 102 QPDFAcroFormDocumentHelper::getFormFields()
59 103 {
... ... @@ -350,3 +394,273 @@ QPDFAcroFormDocumentHelper::generateAppearancesIfNeeded()
350 394 }
351 395 setNeedAppearances(false);
352 396 }
  397 +
  398 +void
  399 +QPDFAcroFormDocumentHelper::transformAnnotations(
  400 + QPDFObjectHandle old_annots,
  401 + std::vector<QPDFObjectHandle>& new_annots,
  402 + std::vector<QPDFObjectHandle>& new_fields,
  403 + std::set<QPDFObjGen>& old_fields,
  404 + QPDFMatrix const& cm,
  405 + QPDF* from_qpdf,
  406 + QPDFAcroFormDocumentHelper* from_afdh)
  407 +{
  408 + PointerHolder<QPDFAcroFormDocumentHelper> afdhph;
  409 + if (! from_qpdf)
  410 + {
  411 + // Assume these are from the same QPDF.
  412 + from_qpdf = &this->qpdf;
  413 + from_afdh = this;
  414 + }
  415 + else if ((from_qpdf != &this->qpdf) && (! from_afdh))
  416 + {
  417 + afdhph = new QPDFAcroFormDocumentHelper(*from_qpdf);
  418 + from_afdh = afdhph.getPointer();
  419 + }
  420 + bool foreign = (from_qpdf != &this->qpdf);
  421 +
  422 + std::set<QPDFObjGen> added_new_fields;
  423 +
  424 + // This helper prevents us from copying the same object
  425 + // multiple times.
  426 + std::map<QPDFObjGen, QPDFObjectHandle> copied_objects;
  427 + auto maybe_copy_object = [&](QPDFObjectHandle& to_copy) {
  428 + auto og = to_copy.getObjGen();
  429 + if (copied_objects.count(og))
  430 + {
  431 + to_copy = copied_objects[og];
  432 + return false;
  433 + }
  434 + else
  435 + {
  436 + to_copy = this->qpdf.makeIndirectObject(to_copy.shallowCopy());
  437 + copied_objects[og] = to_copy;
  438 + return true;
  439 + }
  440 + };
  441 +
  442 + for (auto annot: QPDFArrayItems(old_annots))
  443 + {
  444 + if (annot.isStream())
  445 + {
  446 + annot.warnIfPossible("ignoring annotation that's a stream");
  447 + continue;
  448 + }
  449 +
  450 + // Make copies of annotations and fields down to the
  451 + // appearance streams, preserving all internal referential
  452 + // integrity. When the incoming annotations are from a
  453 + // different file, we first copy them locally. Then, whether
  454 + // local or foreign, we copy them again so that if we bring
  455 + // the same annotation in multiple times (e.g. overlaying a
  456 + // foreign page onto multiple local pages or a local page onto
  457 + // multiple other local pages), we don't create annotations
  458 + // that are referenced in more than one place. If we did that,
  459 + // the effect of applying transformations would be cumulative,
  460 + // which is definitely not what we want. Besides, annotations
  461 + // and fields are not intended to be referenced in multiple
  462 + // places.
  463 +
  464 + // Determine if this annotation is attached to a form field.
  465 + // If so, the annotation may be the same object as the form
  466 + // field, or the form field may have the annotation as a kid.
  467 + // In either case, we have to walk up the field structure to
  468 + // find the top-level field. Within one iteration through a
  469 + // set of annotations, we don't want to copy the same item
  470 + // more than once. For example, suppose we have field A with
  471 + // kids B, C, and D, each of which has annotations BA, CA, and
  472 + // DA. When we get to BA, we will find that BA is a kid of B
  473 + // which is under A. When we do a copyForeignObject of A, it
  474 + // will also copy everything else because of the indirect
  475 + // references. When we clone BA, we will want to clone A and
  476 + // then update A's clone's kid to point B's clone and B's
  477 + // clone's parent to point to A's clone. The same thing holds
  478 + // for annotatons. Next, when we get to CA, we will again
  479 + // discover that A is the top, but we don't want to re-copy A.
  480 + // We want CA's clone to be linked to the same clone as BA's.
  481 + // Failure to do this will break up things like radio button
  482 + // groups, which all have to kids of the same parent.
  483 +
  484 + auto ffield = from_afdh->getFieldForAnnotation(annot);
  485 + auto ffield_oh = ffield.getObjectHandle();
  486 + QPDFObjectHandle top_field;
  487 + bool have_field = false;
  488 + bool have_parent = false;
  489 + if (ffield_oh.isStream())
  490 + {
  491 + ffield_oh.warnIfPossible("ignoring form field that's a stream");
  492 + }
  493 + else if ((! ffield_oh.isNull()) && (! ffield_oh.isIndirect()))
  494 + {
  495 + ffield_oh.warnIfPossible("ignoring form field not indirect");
  496 + }
  497 + else if (! ffield_oh.isNull())
  498 + {
  499 + // A field and its associated annotation can be the same
  500 + // object. This matters because we don't want to clone the
  501 + // annotation and field separately in this case.
  502 + have_field = true;
  503 + // Find the top-level field. It may be the field itself.
  504 + top_field = ffield_oh;
  505 + std::set<QPDFObjGen> seen;
  506 + while (! top_field.getKey("/Parent").isNull())
  507 + {
  508 + top_field = top_field.getKey("/Parent");
  509 + have_parent = true;
  510 + auto og = top_field.getObjGen();
  511 + if (seen.count(og))
  512 + {
  513 + break;
  514 + }
  515 + seen.insert(og);
  516 + }
  517 + if (foreign)
  518 + {
  519 + // copyForeignObject returns the same value if called
  520 + // multiple times with the same field. Create/retrieve
  521 + // the local copy of the original field. This pulls
  522 + // over everything the field references including
  523 + // annotations and appearance streams, but it's
  524 + // harmless to call copyForeignObject on them too.
  525 + // They will already be copied, so we'll get the right
  526 + // object back.
  527 +
  528 + top_field = this->qpdf.copyForeignObject(top_field);
  529 + ffield_oh = this->qpdf.copyForeignObject(ffield_oh);
  530 + }
  531 + old_fields.insert(top_field.getObjGen());
  532 +
  533 + // Traverse the field, copying kids, and preserving
  534 + // integrity.
  535 + std::list<QPDFObjectHandle> queue;
  536 + if (maybe_copy_object(top_field))
  537 + {
  538 + queue.push_back(top_field);
  539 + }
  540 + seen.clear();
  541 + while (! queue.empty())
  542 + {
  543 + QPDFObjectHandle obj = queue.front();
  544 + queue.pop_front();
  545 + auto orig_og = obj.getObjGen();
  546 + if (seen.count(orig_og))
  547 + {
  548 + // loop
  549 + break;
  550 + }
  551 + seen.insert(orig_og);
  552 + auto parent = obj.getKey("/Parent");
  553 + if (parent.isIndirect())
  554 + {
  555 + auto parent_og = parent.getObjGen();
  556 + if (copied_objects.count(parent_og))
  557 + {
  558 + obj.replaceKey("/Parent", copied_objects[parent_og]);
  559 + }
  560 + else
  561 + {
  562 + parent.warnIfPossible(
  563 + "while traversing field " +
  564 + obj.getObjGen().unparse() +
  565 + ", found parent (" + parent_og.unparse() +
  566 + ") that had not been seen, indicating likely"
  567 + " invalid field structure");
  568 + }
  569 + }
  570 + auto kids = obj.getKey("/Kids");
  571 + if (kids.isArray())
  572 + {
  573 + for (int i = 0; i < kids.getArrayNItems(); ++i)
  574 + {
  575 + auto kid = kids.getArrayItem(i);
  576 + if (maybe_copy_object(kid))
  577 + {
  578 + kids.setArrayItem(i, kid);
  579 + queue.push_back(kid);
  580 + }
  581 + }
  582 + }
  583 + }
  584 +
  585 + // Now switch to copies. We already switched for top_field
  586 + maybe_copy_object(ffield_oh);
  587 + ffield = QPDFFormFieldObjectHelper(ffield_oh);
  588 + }
  589 +
  590 + QTC::TC("qpdf", "QPDFAcroFormDocumentHelper copy annotation",
  591 + (have_field ? 1 : 0) | (foreign ? 2 : 0));
  592 + if (have_field)
  593 + {
  594 + QTC::TC("qpdf", "QPDFAcroFormDocumentHelper field with parent",
  595 + (have_parent ? 1 : 0) | (foreign ? 2 : 0));
  596 + }
  597 + if (foreign)
  598 + {
  599 + annot = this->qpdf.copyForeignObject(annot);
  600 + }
  601 + maybe_copy_object(annot);
  602 +
  603 + // Now we have copies, so we can safely mutate.
  604 + if (have_field && ! added_new_fields.count(top_field.getObjGen()))
  605 + {
  606 + new_fields.push_back(top_field);
  607 + added_new_fields.insert(top_field.getObjGen());
  608 + }
  609 + new_annots.push_back(annot);
  610 +
  611 + // Identify and copy any appearance streams
  612 +
  613 + auto ah = QPDFAnnotationObjectHelper(annot);
  614 + auto apdict = ah.getAppearanceDictionary();
  615 + std::vector<QPDFObjectHandle> streams;
  616 + auto replace_stream = [](auto& dict, auto& key, auto& old) {
  617 + auto new_stream = old.copyStream();
  618 + dict.replaceKey(key, new_stream);
  619 + return new_stream;
  620 + };
  621 + if (apdict.isDictionary())
  622 + {
  623 + for (auto& ap: QPDFDictItems(apdict))
  624 + {
  625 + if (ap.second.isStream())
  626 + {
  627 + streams.push_back(
  628 + replace_stream(apdict, ap.first, ap.second));
  629 + }
  630 + else if (ap.second.isDictionary())
  631 + {
  632 + for (auto& ap2: QPDFDictItems(ap.second))
  633 + {
  634 + if (ap2.second.isStream())
  635 + {
  636 + streams.push_back(
  637 + replace_stream(
  638 + ap.second, ap2.first, ap2.second));
  639 + }
  640 + }
  641 + }
  642 + }
  643 + }
  644 +
  645 + // Now we can safely mutate the annotation and its appearance
  646 + // streams.
  647 + for (auto& stream: streams)
  648 + {
  649 + auto omatrix = stream.getDict().getKey("/Matrix");
  650 + QPDFMatrix apcm;
  651 + if (omatrix.isArray())
  652 + {
  653 + QTC::TC("qpdf", "QPDFAcroFormDocumentHelper modify ap matrix");
  654 + auto m1 = omatrix.getArrayAsMatrix();
  655 + apcm = QPDFMatrix(m1);
  656 + }
  657 + apcm.concat(cm);
  658 + auto new_matrix = QPDFObjectHandle::newFromMatrix(apcm);
  659 + stream.getDict().replaceKey("/Matrix", new_matrix);
  660 + }
  661 + auto rect = cm.transformRectangle(
  662 + annot.getKey("/Rect").getArrayAsRectangle());
  663 + annot.replaceKey(
  664 + "/Rect", QPDFObjectHandle::newFromRectangle(rect));
  665 + }
  666 +}
... ...
libqpdf/QPDFPageObjectHelper.cc
... ... @@ -7,6 +7,7 @@
7 7 #include <qpdf/QPDFExc.hh>
8 8 #include <qpdf/QPDFMatrix.hh>
9 9 #include <qpdf/QIntC.hh>
  10 +#include <qpdf/QPDFAcroFormDocumentHelper.hh>
10 11  
11 12 class ContentProvider: public QPDFObjectHandle::StreamDataProvider
12 13 {
... ... @@ -1081,6 +1082,12 @@ QPDFPageObjectHelper::placeFormXObject(
1081 1082 void
1082 1083 QPDFPageObjectHelper::flattenRotation()
1083 1084 {
  1085 + flattenRotation(nullptr);
  1086 +}
  1087 +
  1088 +void
  1089 +QPDFPageObjectHelper::flattenRotation(QPDFAcroFormDocumentHelper* afdh)
  1090 +{
1084 1091 QPDF* qpdf = this->oh.getOwningQPDF();
1085 1092 if (! qpdf)
1086 1093 {
... ... @@ -1206,4 +1213,26 @@ QPDFPageObjectHelper::flattenRotation()
1206 1213 QTC::TC("qpdf", "QPDFPageObjectHelper flatten inherit rotate");
1207 1214 this->oh.replaceKey("/Rotate", QPDFObjectHandle::newInteger(0));
1208 1215 }
  1216 +
  1217 + QPDFObjectHandle annots = this->oh.getKey("/Annots");
  1218 + if (annots.isArray())
  1219 + {
  1220 + std::vector<QPDFObjectHandle> new_annots;
  1221 + std::vector<QPDFObjectHandle> new_fields;
  1222 + std::set<QPDFObjGen> old_fields;
  1223 + PointerHolder<QPDFAcroFormDocumentHelper> afdhph;
  1224 + if (! afdh)
  1225 + {
  1226 + afdhph = new QPDFAcroFormDocumentHelper(*qpdf);
  1227 + afdh = afdhph.getPointer();
  1228 + }
  1229 + afdh->transformAnnotations(
  1230 + annots, new_annots, new_fields, old_fields, cm);
  1231 + afdh->removeFormFields(old_fields);
  1232 + for (auto const& f: new_fields)
  1233 + {
  1234 + afdh->addFormField(QPDFFormFieldObjectHelper(f));
  1235 + }
  1236 + this->oh.replaceKey("/Annots", QPDFObjectHandle::newArray(new_annots));
  1237 + }
1209 1238 }
... ...
manual/qpdf-manual.xml
... ... @@ -5315,6 +5315,13 @@ print &quot;\n&quot;;
5315 5315 </listitem>
5316 5316 <listitem>
5317 5317 <para>
  5318 + Add method
  5319 + <function>QPDFAcroFormDocumentHelper::transformAnnotations</function>,
  5320 + which applies a transformation to each annotation on a page.
  5321 + </para>
  5322 + </listitem>
  5323 + <listitem>
  5324 + <para>
5318 5325 Add <function>QUtil::path_basename</function> to return the
5319 5326 last element of a path.
5320 5327 </para>
... ... @@ -5343,6 +5350,12 @@ print &quot;\n&quot;;
5343 5350 <itemizedlist>
5344 5351 <listitem>
5345 5352 <para>
  5353 + The <option>--flatten-rotations</option> option applies
  5354 + transformations to any annotations that may be on the page.
  5355 + </para>
  5356 + </listitem>
  5357 + <listitem>
  5358 + <para>
5346 5359 If a form XObject lacks a resources dictionary, consider any
5347 5360 names in that form XObject to be referenced from the
5348 5361 containing page. This is compliant with older PDF versions.
... ...
qpdf/qpdf.cc
... ... @@ -5362,6 +5362,13 @@ static void copy_attachments(QPDF&amp; pdf, Options&amp; o, int&amp; exit_code)
5362 5362 static void handle_transformations(QPDF& pdf, Options& o, int& exit_code)
5363 5363 {
5364 5364 QPDFPageDocumentHelper dh(pdf);
  5365 + PointerHolder<QPDFAcroFormDocumentHelper> afdh;
  5366 + auto make_afdh = [&]() {
  5367 + if (! afdh.getPointer())
  5368 + {
  5369 + afdh = new QPDFAcroFormDocumentHelper(pdf);
  5370 + }
  5371 + };
5365 5372 if (o.externalize_inline_images)
5366 5373 {
5367 5374 std::vector<QPDFPageObjectHelper> pages = dh.getAllPages();
... ... @@ -5408,8 +5415,8 @@ static void handle_transformations(QPDF&amp; pdf, Options&amp; o, int&amp; exit_code)
5408 5415 }
5409 5416 if (o.generate_appearances)
5410 5417 {
5411   - QPDFAcroFormDocumentHelper afdh(pdf);
5412   - afdh.generateAppearancesIfNeeded();
  5418 + make_afdh();
  5419 + afdh->generateAppearancesIfNeeded();
5413 5420 }
5414 5421 if (o.flatten_annotations)
5415 5422 {
... ... @@ -5427,9 +5434,10 @@ static void handle_transformations(QPDF&amp; pdf, Options&amp; o, int&amp; exit_code)
5427 5434 }
5428 5435 if (o.flatten_rotation)
5429 5436 {
  5437 + make_afdh();
5430 5438 for (auto& page: dh.getAllPages())
5431 5439 {
5432   - page.flattenRotation();
  5440 + page.flattenRotation(afdh.getPointer());
5433 5441 }
5434 5442 }
5435 5443 if (o.remove_page_labels)
... ...
qpdf/qpdf.testcov
... ... @@ -572,3 +572,6 @@ qpdf password file 0
572 572 QPDFFileSpecObjectHelper empty compat_name 0
573 573 QPDFFileSpecObjectHelper non-empty compat_name 0
574 574 QPDFPageObjectHelper flatten inherit rotate 0
  575 +QPDFAcroFormDocumentHelper copy annotation 1
  576 +QPDFAcroFormDocumentHelper field with parent 1
  577 +QPDFAcroFormDocumentHelper modify ap matrix 0
... ...
qpdf/qtest/qpdf.test
... ... @@ -2248,7 +2248,7 @@ $td-&gt;runtest(&quot;explicit keep files open = n&quot;,
2248 2248 show_ntests();
2249 2249 # ----------
2250 2250 $td->notify("--- Rotate Pages ---");
2251   -$n_tests += 8;
  2251 +$n_tests += 18;
2252 2252 # Do absolute, positive, and negative on ranges that include
2253 2253 # inherited and non-inherited.
2254 2254 # Pages 11-15 inherit /Rotate 90
... ... @@ -2290,6 +2290,49 @@ $td-&gt;runtest(&quot;check output&quot;,
2290 2290 {$td->FILE => "a.pdf"},
2291 2291 {$td->FILE => "inherited-flattened.pdf"});
2292 2292  
  2293 +foreach my $angle (qw(90 180 270))
  2294 +{
  2295 + $td->runtest("rotate annotations",
  2296 + {$td->COMMAND =>
  2297 + "qpdf --static-id --qdf --rotate=$angle" .
  2298 + " --flatten-rotation --no-original-object-ids" .
  2299 + " form-fields-and-annotations.pdf a.pdf"},
  2300 + {$td->STRING => "", $td->EXIT_STATUS => 0});
  2301 + $td->runtest("check output (flatten $angle)",
  2302 + {$td->FILE => "a.pdf"},
  2303 + {$td->FILE => "annotations-rotated-$angle.pdf"});
  2304 +}
  2305 +
  2306 +# The file form-fields-and-annotations-shared.pdf contains some
  2307 +# annotations that appear in multiple pages /Annots, some non-shared
  2308 +# things that share appearance streams, some form fields appear on
  2309 +# multiple pages, and an indirect /Annotations array. It is out of
  2310 +# spec in several ways but still works in most viewers. These test
  2311 +# make sure we don't make anything worse and also end up exercising
  2312 +# some cases of things being copied more than once, though we also
  2313 +# exercise that with legitimate test cases using overlay.
  2314 +
  2315 +$td->runtest("shared annotations 1 page",
  2316 + {$td->COMMAND =>
  2317 + "qpdf --qdf --no-original-object-ids --static-id" .
  2318 + " --rotate=90:1 form-fields-and-annotations-shared.pdf" .
  2319 + " a.pdf --flatten-rotation"},
  2320 + {$td->STRING => "", $td->EXIT_STATUS => 0},
  2321 + $td->NORMALIZE_NEWLINES);
  2322 +$td->runtest("check output",
  2323 + {$td->FILE => "a.pdf"},
  2324 + {$td->FILE => "rotated-shared-annotations-1.pdf"});
  2325 +$td->runtest("shared annotations 2 pages",
  2326 + {$td->COMMAND =>
  2327 + "qpdf --qdf --no-original-object-ids --static-id" .
  2328 + " --rotate=90:1,2 form-fields-and-annotations-shared.pdf" .
  2329 + " a.pdf --flatten-rotation"},
  2330 + {$td->STRING => "", $td->EXIT_STATUS => 0},
  2331 + $td->NORMALIZE_NEWLINES);
  2332 +$td->runtest("check output",
  2333 + {$td->FILE => "a.pdf"},
  2334 + {$td->FILE => "rotated-shared-annotations-2.pdf"});
  2335 +
2293 2336 show_ntests();
2294 2337 # ----------
2295 2338 $td->notify("--- Flatten Form/Annotations ---");
... ...
qpdf/qtest/qpdf/annotations-rotated-180.pdf 0 โ†’ 100644
  1 +%PDF-1.6
  2 +%ยฟรทยขรพ
  3 +%QDF-1.0
  4 +
  5 +1 0 obj
  6 +<<
  7 + /AcroForm <<
  8 + /DR 2 0 R
  9 + /Fields [
  10 + 3 0 R
  11 + 4 0 R
  12 + 5 0 R
  13 + ]
  14 + >>
  15 + /Names <<
  16 + /EmbeddedFiles 6 0 R
  17 + >>
  18 + /Pages 7 0 R
  19 + /Type /Catalog
  20 +>>
  21 +endobj
  22 +
  23 +2 0 obj
  24 +<<
  25 + /Font <<
  26 + /F1 8 0 R
  27 + >>
  28 +>>
  29 +endobj
  30 +
  31 +3 0 obj
  32 +<<
  33 + /AP <<
  34 + /N 9 0 R
  35 + >>
  36 + /DA (0 0.4 0 rg /F1 18 Tf)
  37 + /DR 2 0 R
  38 + /DV ()
  39 + /FT /Tx
  40 + /Ff 0
  41 + /Rect [
  42 + 421.2
  43 + 307.078
  44 + 540
  45 + 321.226
  46 + ]
  47 + /Subtype /Widget
  48 + /T (Text Box 1)
  49 + /Type /Annot
  50 + /V (Formy field)
  51 +>>
  52 +endobj
  53 +
  54 +4 0 obj
  55 +<<
  56 + /AP <<
  57 + /N 11 0 R
  58 + >>
  59 + /DA (0 0.4 0 rg /F1 18 Tf)
  60 + /DR 2 0 R
  61 + /DV ()
  62 + /FT /Tx
  63 + /Ff 0
  64 + /Rect [
  65 + 225.852
  66 + 321.626
  67 + 240
  68 + 461.226
  69 + ]
  70 + /Subtype /Widget
  71 + /T (Text Box 1)
  72 + /Type /Annot
  73 + /V (Rot-ccw field)
  74 +>>
  75 +endobj
  76 +
  77 +5 0 obj
  78 +<<
  79 + /DV /1
  80 + /FT /Btn
  81 + /Ff 49152
  82 + /Kids [
  83 + 13 0 R
  84 + 14 0 R
  85 + 15 0 R
  86 + ]
  87 + /T (r1)
  88 + /V /2
  89 +>>
  90 +endobj
  91 +
  92 +6 0 obj
  93 +<<
  94 + /Names [
  95 + (attachment1.txt)
  96 + 16 0 R
  97 + ]
  98 +>>
  99 +endobj
  100 +
  101 +7 0 obj
  102 +<<
  103 + /Count 1
  104 + /Kids [
  105 + 17 0 R
  106 + ]
  107 + /Type /Pages
  108 +>>
  109 +endobj
  110 +
  111 +8 0 obj
  112 +<<
  113 + /BaseFont /Courier
  114 + /Encoding /WinAnsiEncoding
  115 + /Subtype /Type1
  116 + /Type /Font
  117 +>>
  118 +endobj
  119 +
  120 +9 0 obj
  121 +<<
  122 + /BBox [
  123 + 0
  124 + -2.826
  125 + 118.8
  126 + 11.322
  127 + ]
  128 + /Matrix [
  129 + -1
  130 + 0
  131 + 0
  132 + -1
  133 + 612
  134 + 792
  135 + ]
  136 + /Resources 2 0 R
  137 + /Subtype /Form
  138 + /Type /XObject
  139 + /Length 10 0 R
  140 +>>
  141 +stream
  142 +/Tx BMC
  143 +q
  144 +BT
  145 + /F1 18 Tf
  146 + (Formy field) Tj
  147 +ET
  148 +Q
  149 +EMC
  150 +endstream
  151 +endobj
  152 +
  153 +10 0 obj
  154 +53
  155 +endobj
  156 +
  157 +11 0 obj
  158 +<<
  159 + /BBox [
  160 + 0
  161 + -2.826
  162 + 140.4
  163 + 11.322
  164 + ]
  165 + /Matrix [
  166 + -0
  167 + -1
  168 + 1
  169 + 0
  170 + -792
  171 + 612
  172 + ]
  173 + /Resources 2 0 R
  174 + /Subtype /Form
  175 + /Type /XObject
  176 + /Length 12 0 R
  177 +>>
  178 +stream
  179 +/Tx BMC
  180 +q
  181 +BT
  182 + /F1 18 Tf
  183 + (Rot-ccw field) Tj
  184 +ET
  185 +Q
  186 +EMC
  187 +endstream
  188 +endobj
  189 +
  190 +12 0 obj
  191 +55
  192 +endobj
  193 +
  194 +13 0 obj
  195 +<<
  196 + /AP <<
  197 + /N <<
  198 + /1 18 0 R
  199 + /Off 20 0 R
  200 + >>
  201 + >>
  202 + /AS /1
  203 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
  204 + /DR <<
  205 + /Font <<
  206 + /ZaDi 22 0 R
  207 + >>
  208 + >>
  209 + /F 4
  210 + /FT /Btn
  211 + /MK <<
  212 + /CA (l)
  213 + >>
  214 + /Parent 5 0 R
  215 + /Rect [
  216 + 447.199
  217 + 131.451
  218 + 459.251
  219 + 143.499
  220 + ]
  221 + /Subtype /Widget
  222 + /Type /Annot
  223 +>>
  224 +endobj
  225 +
  226 +14 0 obj
  227 +<<
  228 + /AP <<
  229 + /N <<
  230 + /2 23 0 R
  231 + /Off 25 0 R
  232 + >>
  233 + >>
  234 + /AS /2
  235 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
  236 + /DR <<
  237 + /Font <<
  238 + /ZaDi 22 0 R
  239 + >>
  240 + >>
  241 + /F 4
  242 + /FT /Btn
  243 + /MK <<
  244 + /CA (l)
  245 + >>
  246 + /Parent 5 0 R
  247 + /Rect [
  248 + 447.199
  249 + 152.651
  250 + 459.251
  251 + 164.699
  252 + ]
  253 + /Subtype /Widget
  254 + /Type /Annot
  255 +>>
  256 +endobj
  257 +
  258 +15 0 obj
  259 +<<
  260 + /AP <<
  261 + /N <<
  262 + /3 27 0 R
  263 + /Off 29 0 R
  264 + >>
  265 + >>
  266 + /AS /3
  267 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
  268 + /DR <<
  269 + /Font <<
  270 + /ZaDi 22 0 R
  271 + >>
  272 + >>
  273 + /F 4
  274 + /FT /Btn
  275 + /MK <<
  276 + /CA (l)
  277 + >>
  278 + /Parent 5 0 R
  279 + /Rect [
  280 + 448.549
  281 + 173.451
  282 + 460.601
  283 + 185.499
  284 + ]
  285 + /Subtype /Widget
  286 + /Type /Annot
  287 +>>
  288 +endobj
  289 +
  290 +16 0 obj
  291 +<<
  292 + /EF <<
  293 + /F 31 0 R
  294 + /UF 31 0 R
  295 + >>
  296 + /F (attachment1.txt)
  297 + /Type /Filespec
  298 + /UF (attachment1.txt)
  299 +>>
  300 +endobj
  301 +
  302 +%% Page 1
  303 +17 0 obj
  304 +<<
  305 + /Annots [
  306 + 33 0 R
  307 + 3 0 R
  308 + 34 0 R
  309 + 4 0 R
  310 + 35 0 R
  311 + 36 0 R
  312 + 37 0 R
  313 + 38 0 R
  314 + 13 0 R
  315 + 14 0 R
  316 + 15 0 R
  317 + ]
  318 + /Contents [
  319 + 39 0 R
  320 + 41 0 R
  321 + 43 0 R
  322 + ]
  323 + /MediaBox [
  324 + 0
  325 + 0
  326 + 612
  327 + 792
  328 + ]
  329 + /Parent 7 0 R
  330 + /Resources 2 0 R
  331 + /Type /Page
  332 +>>
  333 +endobj
  334 +
  335 +18 0 obj
  336 +<<
  337 + /BBox [
  338 + 0
  339 + 0
  340 + 12.05
  341 + 12.05
  342 + ]
  343 + /Matrix [
  344 + -1
  345 + 0
  346 + 0
  347 + -1
  348 + 612
  349 + 792
  350 + ]
  351 + /Resources 45 0 R
  352 + /Subtype /Form
  353 + /Type /XObject
  354 + /Length 19 0 R
  355 +>>
  356 +stream
  357 +/Tx BMC
  358 +q BT
  359 +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
  360 +0 0 Td
  361 +ET
  362 +Q
  363 +1 0 0 rg
  364 +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
  365 +8.45 4.65 7.35 3.55 6 3.55 c
  366 +4.65 3.55 3.6 4.65 3.6 6 c
  367 +3.6 7.35 4.65 8.4 6 8.4 c f*
  368 +
  369 +EMC
  370 +endstream
  371 +endobj
  372 +
  373 +19 0 obj
  374 +202
  375 +endobj
  376 +
  377 +20 0 obj
  378 +<<
  379 + /BBox [
  380 + 0
  381 + 0
  382 + 12.05
  383 + 12.05
  384 + ]
  385 + /Matrix [
  386 + -1
  387 + 0
  388 + 0
  389 + -1
  390 + 612
  391 + 792
  392 + ]
  393 + /Resources 45 0 R
  394 + /Subtype /Form
  395 + /Type /XObject
  396 + /Length 21 0 R
  397 +>>
  398 +stream
  399 +/Tx BMC
  400 +EMC
  401 +endstream
  402 +endobj
  403 +
  404 +21 0 obj
  405 +12
  406 +endobj
  407 +
  408 +22 0 obj
  409 +<<
  410 + /BaseFont /ZapfDingbats
  411 + /Subtype /Type1
  412 + /Type /Font
  413 +>>
  414 +endobj
  415 +
  416 +23 0 obj
  417 +<<
  418 + /BBox [
  419 + 0
  420 + 0
  421 + 12.05
  422 + 12.05
  423 + ]
  424 + /Matrix [
  425 + -1
  426 + 0
  427 + 0
  428 + -1
  429 + 612
  430 + 792
  431 + ]
  432 + /Resources 45 0 R
  433 + /Subtype /Form
  434 + /Type /XObject
  435 + /Length 24 0 R
  436 +>>
  437 +stream
  438 +/Tx BMC
  439 +q BT
  440 +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
  441 +0 0 Td
  442 +ET
  443 +Q
  444 +0 1 0 rg
  445 +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
  446 +8.45 4.65 7.35 3.55 6 3.55 c
  447 +4.65 3.55 3.6 4.65 3.6 6 c
  448 +3.6 7.35 4.65 8.4 6 8.4 c f*
  449 +
  450 +EMC
  451 +endstream
  452 +endobj
  453 +
  454 +24 0 obj
  455 +202
  456 +endobj
  457 +
  458 +25 0 obj
  459 +<<
  460 + /BBox [
  461 + 0
  462 + 0
  463 + 12.05
  464 + 12.05
  465 + ]
  466 + /Matrix [
  467 + -1
  468 + 0
  469 + 0
  470 + -1
  471 + 612
  472 + 792
  473 + ]
  474 + /Resources 45 0 R
  475 + /Subtype /Form
  476 + /Type /XObject
  477 + /Length 26 0 R
  478 +>>
  479 +stream
  480 +/Tx BMC
  481 +EMC
  482 +endstream
  483 +endobj
  484 +
  485 +26 0 obj
  486 +12
  487 +endobj
  488 +
  489 +27 0 obj
  490 +<<
  491 + /BBox [
  492 + 0
  493 + 0
  494 + 12.05
  495 + 12.05
  496 + ]
  497 + /Matrix [
  498 + -1
  499 + 0
  500 + 0
  501 + -1
  502 + 612
  503 + 792
  504 + ]
  505 + /Resources 45 0 R
  506 + /Subtype /Form
  507 + /Type /XObject
  508 + /Length 28 0 R
  509 +>>
  510 +stream
  511 +/Tx BMC
  512 +q BT
  513 +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
  514 +0 0 Td
  515 +ET
  516 +Q
  517 +0 0 1 rg
  518 +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
  519 +8.45 4.65 7.35 3.55 6 3.55 c
  520 +4.65 3.55 3.6 4.65 3.6 6 c
  521 +3.6 7.35 4.65 8.4 6 8.4 c f*
  522 +
  523 +EMC
  524 +endstream
  525 +endobj
  526 +
  527 +28 0 obj
  528 +202
  529 +endobj
  530 +
  531 +29 0 obj
  532 +<<
  533 + /BBox [
  534 + 0
  535 + 0
  536 + 12.05
  537 + 12.05
  538 + ]
  539 + /Matrix [
  540 + -1
  541 + 0
  542 + 0
  543 + -1
  544 + 612
  545 + 792
  546 + ]
  547 + /Resources 45 0 R
  548 + /Subtype /Form
  549 + /Type /XObject
  550 + /Length 30 0 R
  551 +>>
  552 +stream
  553 +/Tx BMC
  554 +EMC
  555 +endstream
  556 +endobj
  557 +
  558 +30 0 obj
  559 +12
  560 +endobj
  561 +
  562 +31 0 obj
  563 +<<
  564 + /Params <<
  565 + /CheckSum <80a33fc110b5a7b8b4d58b8d57e814bc>
  566 + /Size 22
  567 + /Subtype /text#2fplain
  568 + >>
  569 + /Type /EmbeddedFile
  570 + /Length 32 0 R
  571 +>>
  572 +stream
  573 +content of attachment
  574 +endstream
  575 +endobj
  576 +
  577 +32 0 obj
  578 +22
  579 +endobj
  580 +
  581 +33 0 obj
  582 +<<
  583 + /A <<
  584 + /S /URI
  585 + /URI (https://www.qbilt.org/)
  586 + >>
  587 + /Border [
  588 + 0
  589 + 0
  590 + .4
  591 + ]
  592 + /C [
  593 + .8
  594 + .6
  595 + .6
  596 + ]
  597 + /H /I
  598 + /Rect [
  599 + 237.6
  600 + 271.304
  601 + 540
  602 + 290.168
  603 + ]
  604 + /Subtype /Link
  605 + /Type /Annot
  606 +>>
  607 +endobj
  608 +
  609 +34 0 obj
  610 +<<
  611 + /AP <<
  612 + /N 46 0 R
  613 + >>
  614 + /Contents (attachment1.txt)
  615 + /FS 16 0 R
  616 + /NM (attachment1.txt)
  617 + /Rect [
  618 + 520
  619 + 372
  620 + 540
  621 + 392
  622 + ]
  623 + /Subtype /FileAttachment
  624 + /Type /Annot
  625 +>>
  626 +endobj
  627 +
  628 +35 0 obj
  629 +<<
  630 + /AP <<
  631 + /N 48 0 R
  632 + >>
  633 + /DA ()
  634 + /Rect [
  635 + 520
  636 + 432
  637 + 540
  638 + 442
  639 + ]
  640 + /Subtype /FreeText
  641 + /Type /Annot
  642 +>>
  643 +endobj
  644 +
  645 +36 0 obj
  646 +<<
  647 + /AP <<
  648 + /N 50 0 R
  649 + >>
  650 + /DA ()
  651 + /Rect [
  652 + 500
  653 + 422
  654 + 510
  655 + 442
  656 + ]
  657 + /Subtype /FreeText
  658 + /Type /Annot
  659 +>>
  660 +endobj
  661 +
  662 +37 0 obj
  663 +<<
  664 + /AP <<
  665 + /N 52 0 R
  666 + >>
  667 + /DA ()
  668 + /Rect [
  669 + 470
  670 + 432
  671 + 490
  672 + 442
  673 + ]
  674 + /Subtype /FreeText
  675 + /Type /Annot
  676 +>>
  677 +endobj
  678 +
  679 +38 0 obj
  680 +<<
  681 + /AP <<
  682 + /N 54 0 R
  683 + >>
  684 + /DA ()
  685 + /Rect [
  686 + 450
  687 + 422
  688 + 460
  689 + 442
  690 + ]
  691 + /Subtype /FreeText
  692 + /Type /Annot
  693 +>>
  694 +endobj
  695 +
  696 +%% Contents for page 1
  697 +39 0 obj
  698 +<<
  699 + /Length 40 0 R
  700 +>>
  701 +stream
  702 +q
  703 +-1 0 0 -1 612 792 cm
  704 +endstream
  705 +endobj
  706 +
  707 +40 0 obj
  708 +23
  709 +endobj
  710 +
  711 +%% Contents for page 1
  712 +41 0 obj
  713 +<<
  714 + /Length 42 0 R
  715 +>>
  716 +stream
  717 +q
  718 +1 1 .7 rg
  719 +.5 .5 0 RG
  720 +72 470.77 118.8 14.15 re
  721 +B
  722 +Q
  723 +q
  724 +0 .5 .5 RG
  725 +0 1 1 rg
  726 +372 330.77 14.15 139.4 re
  727 +B
  728 +Q
  729 +q
  730 +1 0 0 RG
  731 +72 310 20 10 re
  732 +72 310 5 10 re
  733 +S
  734 +0 1 0 RG
  735 +102 310 10 20 re
  736 +102 310 10 5 re
  737 +S
  738 +0 0 1 RG
  739 +122 310 20 10 re
  740 +137 310 5 10 re
  741 +S
  742 +0.5 0 1 RG
  743 +152 310 10 20 re
  744 +152 325 10 5 re
  745 +S
  746 +10 w
  747 +0.14 .33 .18 RG
  748 +5 5 602 782 re
  749 +S
  750 +Q
  751 +BT
  752 + /F1 16 Tf
  753 + 20.6 TL
  754 + 170 650 Td
  755 + (radio button 1) Tj
  756 + (radio button 2) '
  757 + (radio button 3) '
  758 + 1 0 0 1 72 546 Tm
  759 + /F1 20 Tf
  760 + (Thick green border surrounds page.) Tj
  761 + 0 -40 Td
  762 + /F1 24 Tf
  763 + 0 0 1 rg
  764 + (https://www.qbilt.org) Tj
  765 + /F1 12 Tf
  766 + 1 0 0 1 202 474 Tm
  767 + (<- Formy field in yellow) Tj
  768 + 1 0 0 1 392 410 Tm
  769 + 14.4 TL
  770 + (<- Rot-ccw field) Tj
  771 + (with "Rot" at bottom) '
  772 + (and text going up) '
  773 + 0 g
  774 + 1 0 0 1 102 405 Tm
  775 + (Arrow to the left points down.) Tj
  776 + 1 0 0 1 182 310 Tm
  777 + (<- Drawn rectangles appear below annotations.) Tj
  778 +ET
  779 +endstream
  780 +endobj
  781 +
  782 +42 0 obj
  783 +874
  784 +endobj
  785 +
  786 +%% Contents for page 1
  787 +43 0 obj
  788 +<<
  789 + /Length 44 0 R
  790 +>>
  791 +stream
  792 +
  793 +Q
  794 +endstream
  795 +endobj
  796 +
  797 +44 0 obj
  798 +3
  799 +endobj
  800 +
  801 +45 0 obj
  802 +<<
  803 + /Font 56 0 R
  804 + /ProcSet [
  805 + /PDF
  806 + /Text
  807 + ]
  808 +>>
  809 +endobj
  810 +
  811 +46 0 obj
  812 +<<
  813 + /BBox [
  814 + 0
  815 + 0
  816 + 20
  817 + 20
  818 + ]
  819 + /Matrix [
  820 + -1
  821 + 0
  822 + 0
  823 + -1
  824 + 612
  825 + 792
  826 + ]
  827 + /Resources <<
  828 + >>
  829 + /Subtype /Form
  830 + /Type /XObject
  831 + /Length 47 0 R
  832 +>>
  833 +stream
  834 +0 10 m
  835 +10 0 l
  836 +20 10 l
  837 +10 0 m
  838 +10 20 l
  839 +0 0 20 20 re
  840 +S
  841 +endstream
  842 +endobj
  843 +
  844 +47 0 obj
  845 +52
  846 +endobj
  847 +
  848 +48 0 obj
  849 +<<
  850 + /BBox [
  851 + 0
  852 + 0
  853 + 20
  854 + 10
  855 + ]
  856 + /Matrix [
  857 + -1
  858 + 0
  859 + 0
  860 + -1
  861 + 612
  862 + 792
  863 + ]
  864 + /Resources 2 0 R
  865 + /Subtype /Form
  866 + /Type /XObject
  867 + /Length 49 0 R
  868 +>>
  869 +stream
  870 +1 0 0 RG
  871 +0 0 20 10 re
  872 +0 0 5 10 re
  873 +S
  874 +endstream
  875 +endobj
  876 +
  877 +49 0 obj
  878 +36
  879 +endobj
  880 +
  881 +50 0 obj
  882 +<<
  883 + /BBox [
  884 + 0
  885 + 0
  886 + 20
  887 + 10
  888 + ]
  889 + /Matrix [
  890 + -0
  891 + -1
  892 + 1
  893 + 0
  894 + -792
  895 + 612
  896 + ]
  897 + /Resources 2 0 R
  898 + /Subtype /Form
  899 + /Type /XObject
  900 + /Length 51 0 R
  901 +>>
  902 +stream
  903 +0 1 0 RG
  904 +0 0 20 10 re
  905 +0 0 5 10 re
  906 +S
  907 +endstream
  908 +endobj
  909 +
  910 +51 0 obj
  911 +36
  912 +endobj
  913 +
  914 +52 0 obj
  915 +<<
  916 + /BBox [
  917 + 0
  918 + 0
  919 + 20
  920 + 10
  921 + ]
  922 + /Matrix [
  923 + 1
  924 + -0
  925 + -0
  926 + 1
  927 + -612
  928 + -792
  929 + ]
  930 + /Resources 2 0 R
  931 + /Subtype /Form
  932 + /Type /XObject
  933 + /Length 53 0 R
  934 +>>
  935 +stream
  936 +0 0 1 RG
  937 +0 0 20 10 re
  938 +0 0 5 10 re
  939 +S
  940 +endstream
  941 +endobj
  942 +
  943 +53 0 obj
  944 +36
  945 +endobj
  946 +
  947 +54 0 obj
  948 +<<
  949 + /BBox [
  950 + 0
  951 + 0
  952 + 20
  953 + 10
  954 + ]
  955 + /Matrix [
  956 + 0
  957 + 1
  958 + -1
  959 + -0
  960 + 792
  961 + -612
  962 + ]
  963 + /Resources 2 0 R
  964 + /Subtype /Form
  965 + /Type /XObject
  966 + /Length 55 0 R
  967 +>>
  968 +stream
  969 +0.5 0 1 RG
  970 +0 0 20 10 re
  971 +0 0 5 10 re
  972 +S
  973 +endstream
  974 +endobj
  975 +
  976 +55 0 obj
  977 +38
  978 +endobj
  979 +
  980 +56 0 obj
  981 +<<
  982 + /ZaDi 22 0 R
  983 +>>
  984 +endobj
  985 +
  986 +xref
  987 +0 57
  988 +0000000000 65535 f
  989 +0000000025 00000 n
  990 +0000000211 00000 n
  991 +0000000263 00000 n
  992 +0000000507 00000 n
  993 +0000000756 00000 n
  994 +0000000875 00000 n
  995 +0000000945 00000 n
  996 +0000001018 00000 n
  997 +0000001122 00000 n
  998 +0000001394 00000 n
  999 +0000001414 00000 n
  1000 +0000001690 00000 n
  1001 +0000001710 00000 n
  1002 +0000002062 00000 n
  1003 +0000002414 00000 n
  1004 +0000002766 00000 n
  1005 +0000002907 00000 n
  1006 +0000003211 00000 n
  1007 +0000003628 00000 n
  1008 +0000003649 00000 n
  1009 +0000003876 00000 n
  1010 +0000003896 00000 n
  1011 +0000003977 00000 n
  1012 +0000004394 00000 n
  1013 +0000004415 00000 n
  1014 +0000004642 00000 n
  1015 +0000004662 00000 n
  1016 +0000005079 00000 n
  1017 +0000005100 00000 n
  1018 +0000005327 00000 n
  1019 +0000005347 00000 n
  1020 +0000005555 00000 n
  1021 +0000005575 00000 n
  1022 +0000005820 00000 n
  1023 +0000006026 00000 n
  1024 +0000006168 00000 n
  1025 +0000006310 00000 n
  1026 +0000006452 00000 n
  1027 +0000006617 00000 n
  1028 +0000006697 00000 n
  1029 +0000006740 00000 n
  1030 +0000007671 00000 n
  1031 +0000007715 00000 n
  1032 +0000007775 00000 n
  1033 +0000007794 00000 n
  1034 +0000007868 00000 n
  1035 +0000008130 00000 n
  1036 +0000008150 00000 n
  1037 +0000008394 00000 n
  1038 +0000008414 00000 n
  1039 +0000008659 00000 n
  1040 +0000008679 00000 n
  1041 +0000008925 00000 n
  1042 +0000008945 00000 n
  1043 +0000009192 00000 n
  1044 +0000009212 00000 n
  1045 +trailer <<
  1046 + /Root 1 0 R
  1047 + /Size 57
  1048 + /ID [<a2f146daeb6d814a742556489dab9882><31415926535897932384626433832795>]
  1049 +>>
  1050 +startxref
  1051 +9250
  1052 +%%EOF
... ...
qpdf/qtest/qpdf/annotations-rotated-270.pdf 0 โ†’ 100644
  1 +%PDF-1.6
  2 +%ยฟรทยขรพ
  3 +%QDF-1.0
  4 +
  5 +1 0 obj
  6 +<<
  7 + /AcroForm <<
  8 + /DR 2 0 R
  9 + /Fields [
  10 + 3 0 R
  11 + 4 0 R
  12 + 5 0 R
  13 + ]
  14 + >>
  15 + /Names <<
  16 + /EmbeddedFiles 6 0 R
  17 + >>
  18 + /Pages 7 0 R
  19 + /Type /Catalog
  20 +>>
  21 +endobj
  22 +
  23 +2 0 obj
  24 +<<
  25 + /Font <<
  26 + /F1 8 0 R
  27 + >>
  28 +>>
  29 +endobj
  30 +
  31 +3 0 obj
  32 +<<
  33 + /AP <<
  34 + /N 9 0 R
  35 + >>
  36 + /DA (0 0.4 0 rg /F1 18 Tf)
  37 + /DR 2 0 R
  38 + /DV ()
  39 + /FT /Tx
  40 + /Ff 0
  41 + /Rect [
  42 + 307.078
  43 + 72
  44 + 321.226
  45 + 190.8
  46 + ]
  47 + /Subtype /Widget
  48 + /T (Text Box 1)
  49 + /Type /Annot
  50 + /V (Formy field)
  51 +>>
  52 +endobj
  53 +
  54 +4 0 obj
  55 +<<
  56 + /AP <<
  57 + /N 11 0 R
  58 + >>
  59 + /DA (0 0.4 0 rg /F1 18 Tf)
  60 + /DR 2 0 R
  61 + /DV ()
  62 + /FT /Tx
  63 + /Ff 0
  64 + /Rect [
  65 + 321.626
  66 + 372
  67 + 461.226
  68 + 386.148
  69 + ]
  70 + /Subtype /Widget
  71 + /T (Text Box 1)
  72 + /Type /Annot
  73 + /V (Rot-ccw field)
  74 +>>
  75 +endobj
  76 +
  77 +5 0 obj
  78 +<<
  79 + /DV /1
  80 + /FT /Btn
  81 + /Ff 49152
  82 + /Kids [
  83 + 13 0 R
  84 + 14 0 R
  85 + 15 0 R
  86 + ]
  87 + /T (r1)
  88 + /V /2
  89 +>>
  90 +endobj
  91 +
  92 +6 0 obj
  93 +<<
  94 + /Names [
  95 + (attachment1.txt)
  96 + 16 0 R
  97 + ]
  98 +>>
  99 +endobj
  100 +
  101 +7 0 obj
  102 +<<
  103 + /Count 1
  104 + /Kids [
  105 + 17 0 R
  106 + ]
  107 + /Type /Pages
  108 +>>
  109 +endobj
  110 +
  111 +8 0 obj
  112 +<<
  113 + /BaseFont /Courier
  114 + /Encoding /WinAnsiEncoding
  115 + /Subtype /Type1
  116 + /Type /Font
  117 +>>
  118 +endobj
  119 +
  120 +9 0 obj
  121 +<<
  122 + /BBox [
  123 + 0
  124 + -2.826
  125 + 118.8
  126 + 11.322
  127 + ]
  128 + /Matrix [
  129 + 0
  130 + 1
  131 + -1
  132 + 0
  133 + 792
  134 + 0
  135 + ]
  136 + /Resources 2 0 R
  137 + /Subtype /Form
  138 + /Type /XObject
  139 + /Length 10 0 R
  140 +>>
  141 +stream
  142 +/Tx BMC
  143 +q
  144 +BT
  145 + /F1 18 Tf
  146 + (Formy field) Tj
  147 +ET
  148 +Q
  149 +EMC
  150 +endstream
  151 +endobj
  152 +
  153 +10 0 obj
  154 +53
  155 +endobj
  156 +
  157 +11 0 obj
  158 +<<
  159 + /BBox [
  160 + 0
  161 + -2.826
  162 + 140.4
  163 + 11.322
  164 + ]
  165 + /Matrix [
  166 + -1
  167 + 0
  168 + -0
  169 + -1
  170 + 0
  171 + 792
  172 + ]
  173 + /Resources 2 0 R
  174 + /Subtype /Form
  175 + /Type /XObject
  176 + /Length 12 0 R
  177 +>>
  178 +stream
  179 +/Tx BMC
  180 +q
  181 +BT
  182 + /F1 18 Tf
  183 + (Rot-ccw field) Tj
  184 +ET
  185 +Q
  186 +EMC
  187 +endstream
  188 +endobj
  189 +
  190 +12 0 obj
  191 +55
  192 +endobj
  193 +
  194 +13 0 obj
  195 +<<
  196 + /AP <<
  197 + /N <<
  198 + /1 18 0 R
  199 + /Off 20 0 R
  200 + >>
  201 + >>
  202 + /AS /1
  203 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
  204 + /DR <<
  205 + /Font <<
  206 + /ZaDi 22 0 R
  207 + >>
  208 + >>
  209 + /F 4
  210 + /FT /Btn
  211 + /MK <<
  212 + /CA (l)
  213 + >>
  214 + /Parent 5 0 R
  215 + /Rect [
  216 + 131.451
  217 + 152.749
  218 + 143.499
  219 + 164.801
  220 + ]
  221 + /Subtype /Widget
  222 + /Type /Annot
  223 +>>
  224 +endobj
  225 +
  226 +14 0 obj
  227 +<<
  228 + /AP <<
  229 + /N <<
  230 + /2 23 0 R
  231 + /Off 25 0 R
  232 + >>
  233 + >>
  234 + /AS /2
  235 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
  236 + /DR <<
  237 + /Font <<
  238 + /ZaDi 22 0 R
  239 + >>
  240 + >>
  241 + /F 4
  242 + /FT /Btn
  243 + /MK <<
  244 + /CA (l)
  245 + >>
  246 + /Parent 5 0 R
  247 + /Rect [
  248 + 152.651
  249 + 152.749
  250 + 164.699
  251 + 164.801
  252 + ]
  253 + /Subtype /Widget
  254 + /Type /Annot
  255 +>>
  256 +endobj
  257 +
  258 +15 0 obj
  259 +<<
  260 + /AP <<
  261 + /N <<
  262 + /3 27 0 R
  263 + /Off 29 0 R
  264 + >>
  265 + >>
  266 + /AS /3
  267 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
  268 + /DR <<
  269 + /Font <<
  270 + /ZaDi 22 0 R
  271 + >>
  272 + >>
  273 + /F 4
  274 + /FT /Btn
  275 + /MK <<
  276 + /CA (l)
  277 + >>
  278 + /Parent 5 0 R
  279 + /Rect [
  280 + 173.451
  281 + 151.399
  282 + 185.499
  283 + 163.451
  284 + ]
  285 + /Subtype /Widget
  286 + /Type /Annot
  287 +>>
  288 +endobj
  289 +
  290 +16 0 obj
  291 +<<
  292 + /EF <<
  293 + /F 31 0 R
  294 + /UF 31 0 R
  295 + >>
  296 + /F (attachment1.txt)
  297 + /Type /Filespec
  298 + /UF (attachment1.txt)
  299 +>>
  300 +endobj
  301 +
  302 +%% Page 1
  303 +17 0 obj
  304 +<<
  305 + /Annots [
  306 + 33 0 R
  307 + 3 0 R
  308 + 34 0 R
  309 + 4 0 R
  310 + 35 0 R
  311 + 36 0 R
  312 + 37 0 R
  313 + 38 0 R
  314 + 13 0 R
  315 + 14 0 R
  316 + 15 0 R
  317 + ]
  318 + /Contents [
  319 + 39 0 R
  320 + 41 0 R
  321 + 43 0 R
  322 + ]
  323 + /MediaBox [
  324 + 0
  325 + 0
  326 + 792
  327 + 612
  328 + ]
  329 + /Parent 7 0 R
  330 + /Resources 2 0 R
  331 + /Type /Page
  332 +>>
  333 +endobj
  334 +
  335 +18 0 obj
  336 +<<
  337 + /BBox [
  338 + 0
  339 + 0
  340 + 12.05
  341 + 12.05
  342 + ]
  343 + /Matrix [
  344 + 0
  345 + 1
  346 + -1
  347 + 0
  348 + 792
  349 + 0
  350 + ]
  351 + /Resources 45 0 R
  352 + /Subtype /Form
  353 + /Type /XObject
  354 + /Length 19 0 R
  355 +>>
  356 +stream
  357 +/Tx BMC
  358 +q BT
  359 +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
  360 +0 0 Td
  361 +ET
  362 +Q
  363 +1 0 0 rg
  364 +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
  365 +8.45 4.65 7.35 3.55 6 3.55 c
  366 +4.65 3.55 3.6 4.65 3.6 6 c
  367 +3.6 7.35 4.65 8.4 6 8.4 c f*
  368 +
  369 +EMC
  370 +endstream
  371 +endobj
  372 +
  373 +19 0 obj
  374 +202
  375 +endobj
  376 +
  377 +20 0 obj
  378 +<<
  379 + /BBox [
  380 + 0
  381 + 0
  382 + 12.05
  383 + 12.05
  384 + ]
  385 + /Matrix [
  386 + 0
  387 + 1
  388 + -1
  389 + 0
  390 + 792
  391 + 0
  392 + ]
  393 + /Resources 45 0 R
  394 + /Subtype /Form
  395 + /Type /XObject
  396 + /Length 21 0 R
  397 +>>
  398 +stream
  399 +/Tx BMC
  400 +EMC
  401 +endstream
  402 +endobj
  403 +
  404 +21 0 obj
  405 +12
  406 +endobj
  407 +
  408 +22 0 obj
  409 +<<
  410 + /BaseFont /ZapfDingbats
  411 + /Subtype /Type1
  412 + /Type /Font
  413 +>>
  414 +endobj
  415 +
  416 +23 0 obj
  417 +<<
  418 + /BBox [
  419 + 0
  420 + 0
  421 + 12.05
  422 + 12.05
  423 + ]
  424 + /Matrix [
  425 + 0
  426 + 1
  427 + -1
  428 + 0
  429 + 792
  430 + 0
  431 + ]
  432 + /Resources 45 0 R
  433 + /Subtype /Form
  434 + /Type /XObject
  435 + /Length 24 0 R
  436 +>>
  437 +stream
  438 +/Tx BMC
  439 +q BT
  440 +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
  441 +0 0 Td
  442 +ET
  443 +Q
  444 +0 1 0 rg
  445 +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
  446 +8.45 4.65 7.35 3.55 6 3.55 c
  447 +4.65 3.55 3.6 4.65 3.6 6 c
  448 +3.6 7.35 4.65 8.4 6 8.4 c f*
  449 +
  450 +EMC
  451 +endstream
  452 +endobj
  453 +
  454 +24 0 obj
  455 +202
  456 +endobj
  457 +
  458 +25 0 obj
  459 +<<
  460 + /BBox [
  461 + 0
  462 + 0
  463 + 12.05
  464 + 12.05
  465 + ]
  466 + /Matrix [
  467 + 0
  468 + 1
  469 + -1
  470 + 0
  471 + 792
  472 + 0
  473 + ]
  474 + /Resources 45 0 R
  475 + /Subtype /Form
  476 + /Type /XObject
  477 + /Length 26 0 R
  478 +>>
  479 +stream
  480 +/Tx BMC
  481 +EMC
  482 +endstream
  483 +endobj
  484 +
  485 +26 0 obj
  486 +12
  487 +endobj
  488 +
  489 +27 0 obj
  490 +<<
  491 + /BBox [
  492 + 0
  493 + 0
  494 + 12.05
  495 + 12.05
  496 + ]
  497 + /Matrix [
  498 + 0
  499 + 1
  500 + -1
  501 + 0
  502 + 792
  503 + 0
  504 + ]
  505 + /Resources 45 0 R
  506 + /Subtype /Form
  507 + /Type /XObject
  508 + /Length 28 0 R
  509 +>>
  510 +stream
  511 +/Tx BMC
  512 +q BT
  513 +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
  514 +0 0 Td
  515 +ET
  516 +Q
  517 +0 0 1 rg
  518 +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
  519 +8.45 4.65 7.35 3.55 6 3.55 c
  520 +4.65 3.55 3.6 4.65 3.6 6 c
  521 +3.6 7.35 4.65 8.4 6 8.4 c f*
  522 +
  523 +EMC
  524 +endstream
  525 +endobj
  526 +
  527 +28 0 obj
  528 +202
  529 +endobj
  530 +
  531 +29 0 obj
  532 +<<
  533 + /BBox [
  534 + 0
  535 + 0
  536 + 12.05
  537 + 12.05
  538 + ]
  539 + /Matrix [
  540 + 0
  541 + 1
  542 + -1
  543 + 0
  544 + 792
  545 + 0
  546 + ]
  547 + /Resources 45 0 R
  548 + /Subtype /Form
  549 + /Type /XObject
  550 + /Length 30 0 R
  551 +>>
  552 +stream
  553 +/Tx BMC
  554 +EMC
  555 +endstream
  556 +endobj
  557 +
  558 +30 0 obj
  559 +12
  560 +endobj
  561 +
  562 +31 0 obj
  563 +<<
  564 + /Params <<
  565 + /CheckSum <80a33fc110b5a7b8b4d58b8d57e814bc>
  566 + /Size 22
  567 + /Subtype /text#2fplain
  568 + >>
  569 + /Type /EmbeddedFile
  570 + /Length 32 0 R
  571 +>>
  572 +stream
  573 +content of attachment
  574 +endstream
  575 +endobj
  576 +
  577 +32 0 obj
  578 +22
  579 +endobj
  580 +
  581 +33 0 obj
  582 +<<
  583 + /A <<
  584 + /S /URI
  585 + /URI (https://www.qbilt.org/)
  586 + >>
  587 + /Border [
  588 + 0
  589 + 0
  590 + .4
  591 + ]
  592 + /C [
  593 + .8
  594 + .6
  595 + .6
  596 + ]
  597 + /H /I
  598 + /Rect [
  599 + 271.304
  600 + 72
  601 + 290.168
  602 + 374.4
  603 + ]
  604 + /Subtype /Link
  605 + /Type /Annot
  606 +>>
  607 +endobj
  608 +
  609 +34 0 obj
  610 +<<
  611 + /AP <<
  612 + /N 46 0 R
  613 + >>
  614 + /Contents (attachment1.txt)
  615 + /FS 16 0 R
  616 + /NM (attachment1.txt)
  617 + /Rect [
  618 + 372
  619 + 72
  620 + 392
  621 + 92
  622 + ]
  623 + /Subtype /FileAttachment
  624 + /Type /Annot
  625 +>>
  626 +endobj
  627 +
  628 +35 0 obj
  629 +<<
  630 + /AP <<
  631 + /N 48 0 R
  632 + >>
  633 + /DA ()
  634 + /Rect [
  635 + 432
  636 + 72
  637 + 442
  638 + 92
  639 + ]
  640 + /Subtype /FreeText
  641 + /Type /Annot
  642 +>>
  643 +endobj
  644 +
  645 +36 0 obj
  646 +<<
  647 + /AP <<
  648 + /N 50 0 R
  649 + >>
  650 + /DA ()
  651 + /Rect [
  652 + 422
  653 + 102
  654 + 442
  655 + 112
  656 + ]
  657 + /Subtype /FreeText
  658 + /Type /Annot
  659 +>>
  660 +endobj
  661 +
  662 +37 0 obj
  663 +<<
  664 + /AP <<
  665 + /N 52 0 R
  666 + >>
  667 + /DA ()
  668 + /Rect [
  669 + 432
  670 + 122
  671 + 442
  672 + 142
  673 + ]
  674 + /Subtype /FreeText
  675 + /Type /Annot
  676 +>>
  677 +endobj
  678 +
  679 +38 0 obj
  680 +<<
  681 + /AP <<
  682 + /N 54 0 R
  683 + >>
  684 + /DA ()
  685 + /Rect [
  686 + 422
  687 + 152
  688 + 442
  689 + 162
  690 + ]
  691 + /Subtype /FreeText
  692 + /Type /Annot
  693 +>>
  694 +endobj
  695 +
  696 +%% Contents for page 1
  697 +39 0 obj
  698 +<<
  699 + /Length 40 0 R
  700 +>>
  701 +stream
  702 +q
  703 +0 1 -1 0 792 0 cm
  704 +endstream
  705 +endobj
  706 +
  707 +40 0 obj
  708 +20
  709 +endobj
  710 +
  711 +%% Contents for page 1
  712 +41 0 obj
  713 +<<
  714 + /Length 42 0 R
  715 +>>
  716 +stream
  717 +q
  718 +1 1 .7 rg
  719 +.5 .5 0 RG
  720 +72 470.77 118.8 14.15 re
  721 +B
  722 +Q
  723 +q
  724 +0 .5 .5 RG
  725 +0 1 1 rg
  726 +372 330.77 14.15 139.4 re
  727 +B
  728 +Q
  729 +q
  730 +1 0 0 RG
  731 +72 310 20 10 re
  732 +72 310 5 10 re
  733 +S
  734 +0 1 0 RG
  735 +102 310 10 20 re
  736 +102 310 10 5 re
  737 +S
  738 +0 0 1 RG
  739 +122 310 20 10 re
  740 +137 310 5 10 re
  741 +S
  742 +0.5 0 1 RG
  743 +152 310 10 20 re
  744 +152 325 10 5 re
  745 +S
  746 +10 w
  747 +0.14 .33 .18 RG
  748 +5 5 602 782 re
  749 +S
  750 +Q
  751 +BT
  752 + /F1 16 Tf
  753 + 20.6 TL
  754 + 170 650 Td
  755 + (radio button 1) Tj
  756 + (radio button 2) '
  757 + (radio button 3) '
  758 + 1 0 0 1 72 546 Tm
  759 + /F1 20 Tf
  760 + (Thick green border surrounds page.) Tj
  761 + 0 -40 Td
  762 + /F1 24 Tf
  763 + 0 0 1 rg
  764 + (https://www.qbilt.org) Tj
  765 + /F1 12 Tf
  766 + 1 0 0 1 202 474 Tm
  767 + (<- Formy field in yellow) Tj
  768 + 1 0 0 1 392 410 Tm
  769 + 14.4 TL
  770 + (<- Rot-ccw field) Tj
  771 + (with "Rot" at bottom) '
  772 + (and text going up) '
  773 + 0 g
  774 + 1 0 0 1 102 405 Tm
  775 + (Arrow to the left points down.) Tj
  776 + 1 0 0 1 182 310 Tm
  777 + (<- Drawn rectangles appear below annotations.) Tj
  778 +ET
  779 +endstream
  780 +endobj
  781 +
  782 +42 0 obj
  783 +874
  784 +endobj
  785 +
  786 +%% Contents for page 1
  787 +43 0 obj
  788 +<<
  789 + /Length 44 0 R
  790 +>>
  791 +stream
  792 +
  793 +Q
  794 +endstream
  795 +endobj
  796 +
  797 +44 0 obj
  798 +3
  799 +endobj
  800 +
  801 +45 0 obj
  802 +<<
  803 + /Font 56 0 R
  804 + /ProcSet [
  805 + /PDF
  806 + /Text
  807 + ]
  808 +>>
  809 +endobj
  810 +
  811 +46 0 obj
  812 +<<
  813 + /BBox [
  814 + 0
  815 + 0
  816 + 20
  817 + 20
  818 + ]
  819 + /Matrix [
  820 + 0
  821 + 1
  822 + -1
  823 + 0
  824 + 792
  825 + 0
  826 + ]
  827 + /Resources <<
  828 + >>
  829 + /Subtype /Form
  830 + /Type /XObject
  831 + /Length 47 0 R
  832 +>>
  833 +stream
  834 +0 10 m
  835 +10 0 l
  836 +20 10 l
  837 +10 0 m
  838 +10 20 l
  839 +0 0 20 20 re
  840 +S
  841 +endstream
  842 +endobj
  843 +
  844 +47 0 obj
  845 +52
  846 +endobj
  847 +
  848 +48 0 obj
  849 +<<
  850 + /BBox [
  851 + 0
  852 + 0
  853 + 20
  854 + 10
  855 + ]
  856 + /Matrix [
  857 + 0
  858 + 1
  859 + -1
  860 + 0
  861 + 792
  862 + 0
  863 + ]
  864 + /Resources 2 0 R
  865 + /Subtype /Form
  866 + /Type /XObject
  867 + /Length 49 0 R
  868 +>>
  869 +stream
  870 +1 0 0 RG
  871 +0 0 20 10 re
  872 +0 0 5 10 re
  873 +S
  874 +endstream
  875 +endobj
  876 +
  877 +49 0 obj
  878 +36
  879 +endobj
  880 +
  881 +50 0 obj
  882 +<<
  883 + /BBox [
  884 + 0
  885 + 0
  886 + 20
  887 + 10
  888 + ]
  889 + /Matrix [
  890 + -1
  891 + 0
  892 + -0
  893 + -1
  894 + 0
  895 + 792
  896 + ]
  897 + /Resources 2 0 R
  898 + /Subtype /Form
  899 + /Type /XObject
  900 + /Length 51 0 R
  901 +>>
  902 +stream
  903 +0 1 0 RG
  904 +0 0 20 10 re
  905 +0 0 5 10 re
  906 +S
  907 +endstream
  908 +endobj
  909 +
  910 +51 0 obj
  911 +36
  912 +endobj
  913 +
  914 +52 0 obj
  915 +<<
  916 + /BBox [
  917 + 0
  918 + 0
  919 + 20
  920 + 10
  921 + ]
  922 + /Matrix [
  923 + 0
  924 + -1
  925 + 1
  926 + -0
  927 + -792
  928 + 0
  929 + ]
  930 + /Resources 2 0 R
  931 + /Subtype /Form
  932 + /Type /XObject
  933 + /Length 53 0 R
  934 +>>
  935 +stream
  936 +0 0 1 RG
  937 +0 0 20 10 re
  938 +0 0 5 10 re
  939 +S
  940 +endstream
  941 +endobj
  942 +
  943 +53 0 obj
  944 +36
  945 +endobj
  946 +
  947 +54 0 obj
  948 +<<
  949 + /BBox [
  950 + 0
  951 + 0
  952 + 20
  953 + 10
  954 + ]
  955 + /Matrix [
  956 + 1
  957 + 0
  958 + 0
  959 + 1
  960 + 0
  961 + -792
  962 + ]
  963 + /Resources 2 0 R
  964 + /Subtype /Form
  965 + /Type /XObject
  966 + /Length 55 0 R
  967 +>>
  968 +stream
  969 +0.5 0 1 RG
  970 +0 0 20 10 re
  971 +0 0 5 10 re
  972 +S
  973 +endstream
  974 +endobj
  975 +
  976 +55 0 obj
  977 +38
  978 +endobj
  979 +
  980 +56 0 obj
  981 +<<
  982 + /ZaDi 22 0 R
  983 +>>
  984 +endobj
  985 +
  986 +xref
  987 +0 57
  988 +0000000000 65535 f
  989 +0000000025 00000 n
  990 +0000000211 00000 n
  991 +0000000263 00000 n
  992 +0000000506 00000 n
  993 +0000000755 00000 n
  994 +0000000874 00000 n
  995 +0000000944 00000 n
  996 +0000001017 00000 n
  997 +0000001121 00000 n
  998 +0000001390 00000 n
  999 +0000001410 00000 n
  1000 +0000001684 00000 n
  1001 +0000001704 00000 n
  1002 +0000002056 00000 n
  1003 +0000002408 00000 n
  1004 +0000002760 00000 n
  1005 +0000002901 00000 n
  1006 +0000003205 00000 n
  1007 +0000003619 00000 n
  1008 +0000003640 00000 n
  1009 +0000003864 00000 n
  1010 +0000003884 00000 n
  1011 +0000003965 00000 n
  1012 +0000004379 00000 n
  1013 +0000004400 00000 n
  1014 +0000004624 00000 n
  1015 +0000004644 00000 n
  1016 +0000005058 00000 n
  1017 +0000005079 00000 n
  1018 +0000005303 00000 n
  1019 +0000005323 00000 n
  1020 +0000005531 00000 n
  1021 +0000005551 00000 n
  1022 +0000005795 00000 n
  1023 +0000005999 00000 n
  1024 +0000006139 00000 n
  1025 +0000006281 00000 n
  1026 +0000006423 00000 n
  1027 +0000006588 00000 n
  1028 +0000006665 00000 n
  1029 +0000006708 00000 n
  1030 +0000007639 00000 n
  1031 +0000007683 00000 n
  1032 +0000007743 00000 n
  1033 +0000007762 00000 n
  1034 +0000007836 00000 n
  1035 +0000008095 00000 n
  1036 +0000008115 00000 n
  1037 +0000008356 00000 n
  1038 +0000008376 00000 n
  1039 +0000008619 00000 n
  1040 +0000008639 00000 n
  1041 +0000008882 00000 n
  1042 +0000008902 00000 n
  1043 +0000009145 00000 n
  1044 +0000009165 00000 n
  1045 +trailer <<
  1046 + /Root 1 0 R
  1047 + /Size 57
  1048 + /ID [<a2f146daeb6d814a742556489dab9882><31415926535897932384626433832795>]
  1049 +>>
  1050 +startxref
  1051 +9203
  1052 +%%EOF
... ...
qpdf/qtest/qpdf/annotations-rotated-90.pdf 0 โ†’ 100644
  1 +%PDF-1.6
  2 +%ยฟรทยขรพ
  3 +%QDF-1.0
  4 +
  5 +1 0 obj
  6 +<<
  7 + /AcroForm <<
  8 + /DR 2 0 R
  9 + /Fields [
  10 + 3 0 R
  11 + 4 0 R
  12 + 5 0 R
  13 + ]
  14 + >>
  15 + /Names <<
  16 + /EmbeddedFiles 6 0 R
  17 + >>
  18 + /Pages 7 0 R
  19 + /Type /Catalog
  20 +>>
  21 +endobj
  22 +
  23 +2 0 obj
  24 +<<
  25 + /Font <<
  26 + /F1 8 0 R
  27 + >>
  28 +>>
  29 +endobj
  30 +
  31 +3 0 obj
  32 +<<
  33 + /AP <<
  34 + /N 9 0 R
  35 + >>
  36 + /DA (0 0.4 0 rg /F1 18 Tf)
  37 + /DR 2 0 R
  38 + /DV ()
  39 + /FT /Tx
  40 + /Ff 0
  41 + /Rect [
  42 + 470.774
  43 + 421.2
  44 + 484.922
  45 + 540
  46 + ]
  47 + /Subtype /Widget
  48 + /T (Text Box 1)
  49 + /Type /Annot
  50 + /V (Formy field)
  51 +>>
  52 +endobj
  53 +
  54 +4 0 obj
  55 +<<
  56 + /AP <<
  57 + /N 11 0 R
  58 + >>
  59 + /DA (0 0.4 0 rg /F1 18 Tf)
  60 + /DR 2 0 R
  61 + /DV ()
  62 + /FT /Tx
  63 + /Ff 0
  64 + /Rect [
  65 + 330.774
  66 + 225.852
  67 + 470.374
  68 + 240
  69 + ]
  70 + /Subtype /Widget
  71 + /T (Text Box 1)
  72 + /Type /Annot
  73 + /V (Rot-ccw field)
  74 +>>
  75 +endobj
  76 +
  77 +5 0 obj
  78 +<<
  79 + /DV /1
  80 + /FT /Btn
  81 + /Ff 49152
  82 + /Kids [
  83 + 13 0 R
  84 + 14 0 R
  85 + 15 0 R
  86 + ]
  87 + /T (r1)
  88 + /V /2
  89 +>>
  90 +endobj
  91 +
  92 +6 0 obj
  93 +<<
  94 + /Names [
  95 + (attachment1.txt)
  96 + 16 0 R
  97 + ]
  98 +>>
  99 +endobj
  100 +
  101 +7 0 obj
  102 +<<
  103 + /Count 1
  104 + /Kids [
  105 + 17 0 R
  106 + ]
  107 + /Type /Pages
  108 +>>
  109 +endobj
  110 +
  111 +8 0 obj
  112 +<<
  113 + /BaseFont /Courier
  114 + /Encoding /WinAnsiEncoding
  115 + /Subtype /Type1
  116 + /Type /Font
  117 +>>
  118 +endobj
  119 +
  120 +9 0 obj
  121 +<<
  122 + /BBox [
  123 + 0
  124 + -2.826
  125 + 118.8
  126 + 11.322
  127 + ]
  128 + /Matrix [
  129 + 0
  130 + -1
  131 + 1
  132 + 0
  133 + 0
  134 + 612
  135 + ]
  136 + /Resources 2 0 R
  137 + /Subtype /Form
  138 + /Type /XObject
  139 + /Length 10 0 R
  140 +>>
  141 +stream
  142 +/Tx BMC
  143 +q
  144 +BT
  145 + /F1 18 Tf
  146 + (Formy field) Tj
  147 +ET
  148 +Q
  149 +EMC
  150 +endstream
  151 +endobj
  152 +
  153 +10 0 obj
  154 +53
  155 +endobj
  156 +
  157 +11 0 obj
  158 +<<
  159 + /BBox [
  160 + 0
  161 + -2.826
  162 + 140.4
  163 + 11.322
  164 + ]
  165 + /Matrix [
  166 + 1
  167 + 0
  168 + 0
  169 + 1
  170 + -612
  171 + 0
  172 + ]
  173 + /Resources 2 0 R
  174 + /Subtype /Form
  175 + /Type /XObject
  176 + /Length 12 0 R
  177 +>>
  178 +stream
  179 +/Tx BMC
  180 +q
  181 +BT
  182 + /F1 18 Tf
  183 + (Rot-ccw field) Tj
  184 +ET
  185 +Q
  186 +EMC
  187 +endstream
  188 +endobj
  189 +
  190 +12 0 obj
  191 +55
  192 +endobj
  193 +
  194 +13 0 obj
  195 +<<
  196 + /AP <<
  197 + /N <<
  198 + /1 18 0 R
  199 + /Off 20 0 R
  200 + >>
  201 + >>
  202 + /AS /1
  203 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
  204 + /DR <<
  205 + /Font <<
  206 + /ZaDi 22 0 R
  207 + >>
  208 + >>
  209 + /F 4
  210 + /FT /Btn
  211 + /MK <<
  212 + /CA (l)
  213 + >>
  214 + /Parent 5 0 R
  215 + /Rect [
  216 + 648.501
  217 + 447.199
  218 + 660.549
  219 + 459.251
  220 + ]
  221 + /Subtype /Widget
  222 + /Type /Annot
  223 +>>
  224 +endobj
  225 +
  226 +14 0 obj
  227 +<<
  228 + /AP <<
  229 + /N <<
  230 + /2 23 0 R
  231 + /Off 25 0 R
  232 + >>
  233 + >>
  234 + /AS /2
  235 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
  236 + /DR <<
  237 + /Font <<
  238 + /ZaDi 22 0 R
  239 + >>
  240 + >>
  241 + /F 4
  242 + /FT /Btn
  243 + /MK <<
  244 + /CA (l)
  245 + >>
  246 + /Parent 5 0 R
  247 + /Rect [
  248 + 627.301
  249 + 447.199
  250 + 639.349
  251 + 459.251
  252 + ]
  253 + /Subtype /Widget
  254 + /Type /Annot
  255 +>>
  256 +endobj
  257 +
  258 +15 0 obj
  259 +<<
  260 + /AP <<
  261 + /N <<
  262 + /3 27 0 R
  263 + /Off 29 0 R
  264 + >>
  265 + >>
  266 + /AS /3
  267 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
  268 + /DR <<
  269 + /Font <<
  270 + /ZaDi 22 0 R
  271 + >>
  272 + >>
  273 + /F 4
  274 + /FT /Btn
  275 + /MK <<
  276 + /CA (l)
  277 + >>
  278 + /Parent 5 0 R
  279 + /Rect [
  280 + 606.501
  281 + 448.549
  282 + 618.549
  283 + 460.601
  284 + ]
  285 + /Subtype /Widget
  286 + /Type /Annot
  287 +>>
  288 +endobj
  289 +
  290 +16 0 obj
  291 +<<
  292 + /EF <<
  293 + /F 31 0 R
  294 + /UF 31 0 R
  295 + >>
  296 + /F (attachment1.txt)
  297 + /Type /Filespec
  298 + /UF (attachment1.txt)
  299 +>>
  300 +endobj
  301 +
  302 +%% Page 1
  303 +17 0 obj
  304 +<<
  305 + /Annots [
  306 + 33 0 R
  307 + 3 0 R
  308 + 34 0 R
  309 + 4 0 R
  310 + 35 0 R
  311 + 36 0 R
  312 + 37 0 R
  313 + 38 0 R
  314 + 13 0 R
  315 + 14 0 R
  316 + 15 0 R
  317 + ]
  318 + /Contents [
  319 + 39 0 R
  320 + 41 0 R
  321 + 43 0 R
  322 + ]
  323 + /MediaBox [
  324 + 0
  325 + 0
  326 + 792
  327 + 612
  328 + ]
  329 + /Parent 7 0 R
  330 + /Resources 2 0 R
  331 + /Type /Page
  332 +>>
  333 +endobj
  334 +
  335 +18 0 obj
  336 +<<
  337 + /BBox [
  338 + 0
  339 + 0
  340 + 12.05
  341 + 12.05
  342 + ]
  343 + /Matrix [
  344 + 0
  345 + -1
  346 + 1
  347 + 0
  348 + 0
  349 + 612
  350 + ]
  351 + /Resources 45 0 R
  352 + /Subtype /Form
  353 + /Type /XObject
  354 + /Length 19 0 R
  355 +>>
  356 +stream
  357 +/Tx BMC
  358 +q BT
  359 +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
  360 +0 0 Td
  361 +ET
  362 +Q
  363 +1 0 0 rg
  364 +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
  365 +8.45 4.65 7.35 3.55 6 3.55 c
  366 +4.65 3.55 3.6 4.65 3.6 6 c
  367 +3.6 7.35 4.65 8.4 6 8.4 c f*
  368 +
  369 +EMC
  370 +endstream
  371 +endobj
  372 +
  373 +19 0 obj
  374 +202
  375 +endobj
  376 +
  377 +20 0 obj
  378 +<<
  379 + /BBox [
  380 + 0
  381 + 0
  382 + 12.05
  383 + 12.05
  384 + ]
  385 + /Matrix [
  386 + 0
  387 + -1
  388 + 1
  389 + 0
  390 + 0
  391 + 612
  392 + ]
  393 + /Resources 45 0 R
  394 + /Subtype /Form
  395 + /Type /XObject
  396 + /Length 21 0 R
  397 +>>
  398 +stream
  399 +/Tx BMC
  400 +EMC
  401 +endstream
  402 +endobj
  403 +
  404 +21 0 obj
  405 +12
  406 +endobj
  407 +
  408 +22 0 obj
  409 +<<
  410 + /BaseFont /ZapfDingbats
  411 + /Subtype /Type1
  412 + /Type /Font
  413 +>>
  414 +endobj
  415 +
  416 +23 0 obj
  417 +<<
  418 + /BBox [
  419 + 0
  420 + 0
  421 + 12.05
  422 + 12.05
  423 + ]
  424 + /Matrix [
  425 + 0
  426 + -1
  427 + 1
  428 + 0
  429 + 0
  430 + 612
  431 + ]
  432 + /Resources 45 0 R
  433 + /Subtype /Form
  434 + /Type /XObject
  435 + /Length 24 0 R
  436 +>>
  437 +stream
  438 +/Tx BMC
  439 +q BT
  440 +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
  441 +0 0 Td
  442 +ET
  443 +Q
  444 +0 1 0 rg
  445 +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
  446 +8.45 4.65 7.35 3.55 6 3.55 c
  447 +4.65 3.55 3.6 4.65 3.6 6 c
  448 +3.6 7.35 4.65 8.4 6 8.4 c f*
  449 +
  450 +EMC
  451 +endstream
  452 +endobj
  453 +
  454 +24 0 obj
  455 +202
  456 +endobj
  457 +
  458 +25 0 obj
  459 +<<
  460 + /BBox [
  461 + 0
  462 + 0
  463 + 12.05
  464 + 12.05
  465 + ]
  466 + /Matrix [
  467 + 0
  468 + -1
  469 + 1
  470 + 0
  471 + 0
  472 + 612
  473 + ]
  474 + /Resources 45 0 R
  475 + /Subtype /Form
  476 + /Type /XObject
  477 + /Length 26 0 R
  478 +>>
  479 +stream
  480 +/Tx BMC
  481 +EMC
  482 +endstream
  483 +endobj
  484 +
  485 +26 0 obj
  486 +12
  487 +endobj
  488 +
  489 +27 0 obj
  490 +<<
  491 + /BBox [
  492 + 0
  493 + 0
  494 + 12.05
  495 + 12.05
  496 + ]
  497 + /Matrix [
  498 + 0
  499 + -1
  500 + 1
  501 + 0
  502 + 0
  503 + 612
  504 + ]
  505 + /Resources 45 0 R
  506 + /Subtype /Form
  507 + /Type /XObject
  508 + /Length 28 0 R
  509 +>>
  510 +stream
  511 +/Tx BMC
  512 +q BT
  513 +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
  514 +0 0 Td
  515 +ET
  516 +Q
  517 +0 0 1 rg
  518 +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
  519 +8.45 4.65 7.35 3.55 6 3.55 c
  520 +4.65 3.55 3.6 4.65 3.6 6 c
  521 +3.6 7.35 4.65 8.4 6 8.4 c f*
  522 +
  523 +EMC
  524 +endstream
  525 +endobj
  526 +
  527 +28 0 obj
  528 +202
  529 +endobj
  530 +
  531 +29 0 obj
  532 +<<
  533 + /BBox [
  534 + 0
  535 + 0
  536 + 12.05
  537 + 12.05
  538 + ]
  539 + /Matrix [
  540 + 0
  541 + -1
  542 + 1
  543 + 0
  544 + 0
  545 + 612
  546 + ]
  547 + /Resources 45 0 R
  548 + /Subtype /Form
  549 + /Type /XObject
  550 + /Length 30 0 R
  551 +>>
  552 +stream
  553 +/Tx BMC
  554 +EMC
  555 +endstream
  556 +endobj
  557 +
  558 +30 0 obj
  559 +12
  560 +endobj
  561 +
  562 +31 0 obj
  563 +<<
  564 + /Params <<
  565 + /CheckSum <80a33fc110b5a7b8b4d58b8d57e814bc>
  566 + /Size 22
  567 + /Subtype /text#2fplain
  568 + >>
  569 + /Type /EmbeddedFile
  570 + /Length 32 0 R
  571 +>>
  572 +stream
  573 +content of attachment
  574 +endstream
  575 +endobj
  576 +
  577 +32 0 obj
  578 +22
  579 +endobj
  580 +
  581 +33 0 obj
  582 +<<
  583 + /A <<
  584 + /S /URI
  585 + /URI (https://www.qbilt.org/)
  586 + >>
  587 + /Border [
  588 + 0
  589 + 0
  590 + .4
  591 + ]
  592 + /C [
  593 + .8
  594 + .6
  595 + .6
  596 + ]
  597 + /H /I
  598 + /Rect [
  599 + 501.832
  600 + 237.6
  601 + 520.696
  602 + 540
  603 + ]
  604 + /Subtype /Link
  605 + /Type /Annot
  606 +>>
  607 +endobj
  608 +
  609 +34 0 obj
  610 +<<
  611 + /AP <<
  612 + /N 46 0 R
  613 + >>
  614 + /Contents (attachment1.txt)
  615 + /FS 16 0 R
  616 + /NM (attachment1.txt)
  617 + /Rect [
  618 + 400
  619 + 520
  620 + 420
  621 + 540
  622 + ]
  623 + /Subtype /FileAttachment
  624 + /Type /Annot
  625 +>>
  626 +endobj
  627 +
  628 +35 0 obj
  629 +<<
  630 + /AP <<
  631 + /N 48 0 R
  632 + >>
  633 + /DA ()
  634 + /Rect [
  635 + 350
  636 + 520
  637 + 360
  638 + 540
  639 + ]
  640 + /Subtype /FreeText
  641 + /Type /Annot
  642 +>>
  643 +endobj
  644 +
  645 +36 0 obj
  646 +<<
  647 + /AP <<
  648 + /N 50 0 R
  649 + >>
  650 + /DA ()
  651 + /Rect [
  652 + 350
  653 + 500
  654 + 370
  655 + 510
  656 + ]
  657 + /Subtype /FreeText
  658 + /Type /Annot
  659 +>>
  660 +endobj
  661 +
  662 +37 0 obj
  663 +<<
  664 + /AP <<
  665 + /N 52 0 R
  666 + >>
  667 + /DA ()
  668 + /Rect [
  669 + 350
  670 + 470
  671 + 360
  672 + 490
  673 + ]
  674 + /Subtype /FreeText
  675 + /Type /Annot
  676 +>>
  677 +endobj
  678 +
  679 +38 0 obj
  680 +<<
  681 + /AP <<
  682 + /N 54 0 R
  683 + >>
  684 + /DA ()
  685 + /Rect [
  686 + 350
  687 + 450
  688 + 370
  689 + 460
  690 + ]
  691 + /Subtype /FreeText
  692 + /Type /Annot
  693 +>>
  694 +endobj
  695 +
  696 +%% Contents for page 1
  697 +39 0 obj
  698 +<<
  699 + /Length 40 0 R
  700 +>>
  701 +stream
  702 +q
  703 +0 -1 1 0 0 612 cm
  704 +endstream
  705 +endobj
  706 +
  707 +40 0 obj
  708 +20
  709 +endobj
  710 +
  711 +%% Contents for page 1
  712 +41 0 obj
  713 +<<
  714 + /Length 42 0 R
  715 +>>
  716 +stream
  717 +q
  718 +1 1 .7 rg
  719 +.5 .5 0 RG
  720 +72 470.77 118.8 14.15 re
  721 +B
  722 +Q
  723 +q
  724 +0 .5 .5 RG
  725 +0 1 1 rg
  726 +372 330.77 14.15 139.4 re
  727 +B
  728 +Q
  729 +q
  730 +1 0 0 RG
  731 +72 310 20 10 re
  732 +72 310 5 10 re
  733 +S
  734 +0 1 0 RG
  735 +102 310 10 20 re
  736 +102 310 10 5 re
  737 +S
  738 +0 0 1 RG
  739 +122 310 20 10 re
  740 +137 310 5 10 re
  741 +S
  742 +0.5 0 1 RG
  743 +152 310 10 20 re
  744 +152 325 10 5 re
  745 +S
  746 +10 w
  747 +0.14 .33 .18 RG
  748 +5 5 602 782 re
  749 +S
  750 +Q
  751 +BT
  752 + /F1 16 Tf
  753 + 20.6 TL
  754 + 170 650 Td
  755 + (radio button 1) Tj
  756 + (radio button 2) '
  757 + (radio button 3) '
  758 + 1 0 0 1 72 546 Tm
  759 + /F1 20 Tf
  760 + (Thick green border surrounds page.) Tj
  761 + 0 -40 Td
  762 + /F1 24 Tf
  763 + 0 0 1 rg
  764 + (https://www.qbilt.org) Tj
  765 + /F1 12 Tf
  766 + 1 0 0 1 202 474 Tm
  767 + (<- Formy field in yellow) Tj
  768 + 1 0 0 1 392 410 Tm
  769 + 14.4 TL
  770 + (<- Rot-ccw field) Tj
  771 + (with "Rot" at bottom) '
  772 + (and text going up) '
  773 + 0 g
  774 + 1 0 0 1 102 405 Tm
  775 + (Arrow to the left points down.) Tj
  776 + 1 0 0 1 182 310 Tm
  777 + (<- Drawn rectangles appear below annotations.) Tj
  778 +ET
  779 +endstream
  780 +endobj
  781 +
  782 +42 0 obj
  783 +874
  784 +endobj
  785 +
  786 +%% Contents for page 1
  787 +43 0 obj
  788 +<<
  789 + /Length 44 0 R
  790 +>>
  791 +stream
  792 +
  793 +Q
  794 +endstream
  795 +endobj
  796 +
  797 +44 0 obj
  798 +3
  799 +endobj
  800 +
  801 +45 0 obj
  802 +<<
  803 + /Font 56 0 R
  804 + /ProcSet [
  805 + /PDF
  806 + /Text
  807 + ]
  808 +>>
  809 +endobj
  810 +
  811 +46 0 obj
  812 +<<
  813 + /BBox [
  814 + 0
  815 + 0
  816 + 20
  817 + 20
  818 + ]
  819 + /Matrix [
  820 + 0
  821 + -1
  822 + 1
  823 + 0
  824 + 0
  825 + 612
  826 + ]
  827 + /Resources <<
  828 + >>
  829 + /Subtype /Form
  830 + /Type /XObject
  831 + /Length 47 0 R
  832 +>>
  833 +stream
  834 +0 10 m
  835 +10 0 l
  836 +20 10 l
  837 +10 0 m
  838 +10 20 l
  839 +0 0 20 20 re
  840 +S
  841 +endstream
  842 +endobj
  843 +
  844 +47 0 obj
  845 +52
  846 +endobj
  847 +
  848 +48 0 obj
  849 +<<
  850 + /BBox [
  851 + 0
  852 + 0
  853 + 20
  854 + 10
  855 + ]
  856 + /Matrix [
  857 + 0
  858 + -1
  859 + 1
  860 + 0
  861 + 0
  862 + 612
  863 + ]
  864 + /Resources 2 0 R
  865 + /Subtype /Form
  866 + /Type /XObject
  867 + /Length 49 0 R
  868 +>>
  869 +stream
  870 +1 0 0 RG
  871 +0 0 20 10 re
  872 +0 0 5 10 re
  873 +S
  874 +endstream
  875 +endobj
  876 +
  877 +49 0 obj
  878 +36
  879 +endobj
  880 +
  881 +50 0 obj
  882 +<<
  883 + /BBox [
  884 + 0
  885 + 0
  886 + 20
  887 + 10
  888 + ]
  889 + /Matrix [
  890 + 1
  891 + 0
  892 + 0
  893 + 1
  894 + -612
  895 + 0
  896 + ]
  897 + /Resources 2 0 R
  898 + /Subtype /Form
  899 + /Type /XObject
  900 + /Length 51 0 R
  901 +>>
  902 +stream
  903 +0 1 0 RG
  904 +0 0 20 10 re
  905 +0 0 5 10 re
  906 +S
  907 +endstream
  908 +endobj
  909 +
  910 +51 0 obj
  911 +36
  912 +endobj
  913 +
  914 +52 0 obj
  915 +<<
  916 + /BBox [
  917 + 0
  918 + 0
  919 + 20
  920 + 10
  921 + ]
  922 + /Matrix [
  923 + -0
  924 + 1
  925 + -1
  926 + 0
  927 + 0
  928 + -612
  929 + ]
  930 + /Resources 2 0 R
  931 + /Subtype /Form
  932 + /Type /XObject
  933 + /Length 53 0 R
  934 +>>
  935 +stream
  936 +0 0 1 RG
  937 +0 0 20 10 re
  938 +0 0 5 10 re
  939 +S
  940 +endstream
  941 +endobj
  942 +
  943 +53 0 obj
  944 +36
  945 +endobj
  946 +
  947 +54 0 obj
  948 +<<
  949 + /BBox [
  950 + 0
  951 + 0
  952 + 20
  953 + 10
  954 + ]
  955 + /Matrix [
  956 + -1
  957 + -0
  958 + 0
  959 + -1
  960 + 612
  961 + 0
  962 + ]
  963 + /Resources 2 0 R
  964 + /Subtype /Form
  965 + /Type /XObject
  966 + /Length 55 0 R
  967 +>>
  968 +stream
  969 +0.5 0 1 RG
  970 +0 0 20 10 re
  971 +0 0 5 10 re
  972 +S
  973 +endstream
  974 +endobj
  975 +
  976 +55 0 obj
  977 +38
  978 +endobj
  979 +
  980 +56 0 obj
  981 +<<
  982 + /ZaDi 22 0 R
  983 +>>
  984 +endobj
  985 +
  986 +xref
  987 +0 57
  988 +0000000000 65535 f
  989 +0000000025 00000 n
  990 +0000000211 00000 n
  991 +0000000263 00000 n
  992 +0000000507 00000 n
  993 +0000000756 00000 n
  994 +0000000875 00000 n
  995 +0000000945 00000 n
  996 +0000001018 00000 n
  997 +0000001122 00000 n
  998 +0000001391 00000 n
  999 +0000001411 00000 n
  1000 +0000001683 00000 n
  1001 +0000001703 00000 n
  1002 +0000002055 00000 n
  1003 +0000002407 00000 n
  1004 +0000002759 00000 n
  1005 +0000002900 00000 n
  1006 +0000003204 00000 n
  1007 +0000003618 00000 n
  1008 +0000003639 00000 n
  1009 +0000003863 00000 n
  1010 +0000003883 00000 n
  1011 +0000003964 00000 n
  1012 +0000004378 00000 n
  1013 +0000004399 00000 n
  1014 +0000004623 00000 n
  1015 +0000004643 00000 n
  1016 +0000005057 00000 n
  1017 +0000005078 00000 n
  1018 +0000005302 00000 n
  1019 +0000005322 00000 n
  1020 +0000005530 00000 n
  1021 +0000005550 00000 n
  1022 +0000005795 00000 n
  1023 +0000006001 00000 n
  1024 +0000006143 00000 n
  1025 +0000006285 00000 n
  1026 +0000006427 00000 n
  1027 +0000006592 00000 n
  1028 +0000006669 00000 n
  1029 +0000006712 00000 n
  1030 +0000007643 00000 n
  1031 +0000007687 00000 n
  1032 +0000007747 00000 n
  1033 +0000007766 00000 n
  1034 +0000007840 00000 n
  1035 +0000008099 00000 n
  1036 +0000008119 00000 n
  1037 +0000008360 00000 n
  1038 +0000008380 00000 n
  1039 +0000008621 00000 n
  1040 +0000008641 00000 n
  1041 +0000008884 00000 n
  1042 +0000008904 00000 n
  1043 +0000009149 00000 n
  1044 +0000009169 00000 n
  1045 +trailer <<
  1046 + /Root 1 0 R
  1047 + /Size 57
  1048 + /ID [<a2f146daeb6d814a742556489dab9882><31415926535897932384626433832795>]
  1049 +>>
  1050 +startxref
  1051 +9207
  1052 +%%EOF
... ...
qpdf/qtest/qpdf/form-fields-and-annotations-shared.pdf 0 โ†’ 100644
  1 +%PDF-1.6
  2 +%ยฟรทยขรพ
  3 +%QDF-1.0
  4 +
  5 +1 0 obj
  6 +<<
  7 + /AcroForm <<
  8 + /DR 2 0 R
  9 + /Fields [
  10 + 3 0 R
  11 + 4 0 R
  12 + 5 0 R
  13 + 6 0 R
  14 + 7 0 R
  15 + ]
  16 + >>
  17 + /Names <<
  18 + /EmbeddedFiles 8 0 R
  19 + >>
  20 + /Pages 9 0 R
  21 + /Type /Catalog
  22 +>>
  23 +endobj
  24 +
  25 +2 0 obj
  26 +<<
  27 + /Font <<
  28 + /F1 10 0 R
  29 + >>
  30 +>>
  31 +endobj
  32 +
  33 +3 0 obj
  34 +<<
  35 + /AP <<
  36 + /N 11 0 R
  37 + >>
  38 + /DA (0 0.4 0 rg /F1 18 Tf)
  39 + /DR 2 0 R
  40 + /DV ()
  41 + /FT /Tx
  42 + /Ff 0
  43 + /Rect [
  44 + 72
  45 + 470.774
  46 + 190.8
  47 + 484.922
  48 + ]
  49 + /Subtype /Widget
  50 + /T (Text Box 1)
  51 + /Type /Annot
  52 + /V (Formy field)
  53 +>>
  54 +endobj
  55 +
  56 +4 0 obj
  57 +<<
  58 + /AP <<
  59 + /N 13 0 R
  60 + >>
  61 + /DA (0 0.4 0 rg /F1 18 Tf)
  62 + /DR 2 0 R
  63 + /DV ()
  64 + /FT /Tx
  65 + /Ff 0
  66 + /Rect [
  67 + 372
  68 + 330.774
  69 + 386.148
  70 + 470.374
  71 + ]
  72 + /Subtype /Widget
  73 + /T (Text Box 1)
  74 + /Type /Annot
  75 + /V (Rot-ccw field)
  76 +>>
  77 +endobj
  78 +
  79 +5 0 obj
  80 +<<
  81 + /AP <<
  82 + /N 11 0 R
  83 + >>
  84 + /DA (0 0.4 0 rg /F1 18 Tf)
  85 + /DR 2 0 R
  86 + /DV ()
  87 + /FT /Tx
  88 + /Ff 0
  89 + /Rect [
  90 + 72
  91 + 470.774
  92 + 190.8
  93 + 484.922
  94 + ]
  95 + /Subtype /Widget
  96 + /T (Text Box 1)
  97 + /Type /Annot
  98 + /V (Formy field)
  99 +>>
  100 +endobj
  101 +
  102 +6 0 obj
  103 +<<
  104 + /AP <<
  105 + /N 13 0 R
  106 + >>
  107 + /DA (0 0.4 0 rg /F1 18 Tf)
  108 + /DR 2 0 R
  109 + /DV ()
  110 + /FT /Tx
  111 + /Ff 0
  112 + /Rect [
  113 + 372
  114 + 330.774
  115 + 386.148
  116 + 470.374
  117 + ]
  118 + /Subtype /Widget
  119 + /T (Text Box 1)
  120 + /Type /Annot
  121 + /V (Rot-ccw field)
  122 +>>
  123 +endobj
  124 +
  125 +7 0 obj
  126 +<<
  127 + /DV /1
  128 + /FT /Btn
  129 + /Ff 49152
  130 + /Kids [
  131 + 15 0 R
  132 + 16 0 R
  133 + 17 0 R
  134 + ]
  135 + /T (r1)
  136 + /V /2
  137 +>>
  138 +endobj
  139 +
  140 +8 0 obj
  141 +<<
  142 + /Names [
  143 + (attachment1.txt)
  144 + 18 0 R
  145 + ]
  146 +>>
  147 +endobj
  148 +
  149 +9 0 obj
  150 +<<
  151 + /Count 4
  152 + /Kids [
  153 + 19 0 R
  154 + 20 0 R
  155 + 21 0 R
  156 + 22 0 R
  157 + ]
  158 + /Type /Pages
  159 +>>
  160 +endobj
  161 +
  162 +10 0 obj
  163 +<<
  164 + /BaseFont /Courier
  165 + /Encoding /WinAnsiEncoding
  166 + /Subtype /Type1
  167 + /Type /Font
  168 +>>
  169 +endobj
  170 +
  171 +11 0 obj
  172 +<<
  173 + /BBox [
  174 + 0
  175 + -2.826
  176 + 118.8
  177 + 11.322
  178 + ]
  179 + /Resources 2 0 R
  180 + /Subtype /Form
  181 + /Type /XObject
  182 + /Length 12 0 R
  183 +>>
  184 +stream
  185 +/Tx BMC
  186 +q
  187 +BT
  188 + /F1 18 Tf
  189 + (Formy field) Tj
  190 +ET
  191 +Q
  192 +EMC
  193 +endstream
  194 +endobj
  195 +
  196 +12 0 obj
  197 +53
  198 +endobj
  199 +
  200 +13 0 obj
  201 +<<
  202 + /BBox [
  203 + 0
  204 + -2.826
  205 + 140.4
  206 + 11.322
  207 + ]
  208 + /Matrix [
  209 + 0
  210 + 1
  211 + -1
  212 + 0
  213 + 0
  214 + 0
  215 + ]
  216 + /Resources 2 0 R
  217 + /Subtype /Form
  218 + /Type /XObject
  219 + /Length 14 0 R
  220 +>>
  221 +stream
  222 +/Tx BMC
  223 +q
  224 +BT
  225 + /F1 18 Tf
  226 + (Rot-ccw field) Tj
  227 +ET
  228 +Q
  229 +EMC
  230 +endstream
  231 +endobj
  232 +
  233 +14 0 obj
  234 +55
  235 +endobj
  236 +
  237 +15 0 obj
  238 +<<
  239 + /AP <<
  240 + /N <<
  241 + /1 23 0 R
  242 + /Off 25 0 R
  243 + >>
  244 + >>
  245 + /AS /1
  246 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
  247 + /DR <<
  248 + /Font <<
  249 + /ZaDi 27 0 R
  250 + >>
  251 + >>
  252 + /F 4
  253 + /FT /Btn
  254 + /MK <<
  255 + /CA (l)
  256 + >>
  257 + /Parent 7 0 R
  258 + /Rect [
  259 + 152.749
  260 + 648.501
  261 + 164.801
  262 + 660.549
  263 + ]
  264 + /Subtype /Widget
  265 + /Type /Annot
  266 +>>
  267 +endobj
  268 +
  269 +16 0 obj
  270 +<<
  271 + /AP <<
  272 + /N <<
  273 + /2 28 0 R
  274 + /Off 30 0 R
  275 + >>
  276 + >>
  277 + /AS /2
  278 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
  279 + /DR <<
  280 + /Font <<
  281 + /ZaDi 27 0 R
  282 + >>
  283 + >>
  284 + /F 4
  285 + /FT /Btn
  286 + /MK <<
  287 + /CA (l)
  288 + >>
  289 + /Parent 7 0 R
  290 + /Rect [
  291 + 152.749
  292 + 627.301
  293 + 164.801
  294 + 639.349
  295 + ]
  296 + /Subtype /Widget
  297 + /Type /Annot
  298 +>>
  299 +endobj
  300 +
  301 +17 0 obj
  302 +<<
  303 + /AP <<
  304 + /N <<
  305 + /3 32 0 R
  306 + /Off 34 0 R
  307 + >>
  308 + >>
  309 + /AS /3
  310 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
  311 + /DR <<
  312 + /Font <<
  313 + /ZaDi 27 0 R
  314 + >>
  315 + >>
  316 + /F 4
  317 + /FT /Btn
  318 + /MK <<
  319 + /CA (l)
  320 + >>
  321 + /Parent 7 0 R
  322 + /Rect [
  323 + 151.399
  324 + 606.501
  325 + 163.451
  326 + 618.549
  327 + ]
  328 + /Subtype /Widget
  329 + /Type /Annot
  330 +>>
  331 +endobj
  332 +
  333 +18 0 obj
  334 +<<
  335 + /EF <<
  336 + /F 36 0 R
  337 + /UF 36 0 R
  338 + >>
  339 + /F (attachment1.txt)
  340 + /Type /Filespec
  341 + /UF (attachment1.txt)
  342 +>>
  343 +endobj
  344 +
  345 +%% Page 1
  346 +19 0 obj
  347 +<<
  348 + /Annots [
  349 + 38 0 R
  350 + 3 0 R
  351 + 39 0 R
  352 + 4 0 R
  353 + 40 0 R
  354 + 41 0 R
  355 + 42 0 R
  356 + 43 0 R
  357 + 15 0 R
  358 + 16 0 R
  359 + 17 0 R
  360 + ]
  361 + /Contents 44 0 R
  362 + /MediaBox [
  363 + 0
  364 + 0
  365 + 612
  366 + 792
  367 + ]
  368 + /Parent 9 0 R
  369 + /Resources 2 0 R
  370 + /Type /Page
  371 +>>
  372 +endobj
  373 +
  374 +%% Page 2
  375 +20 0 obj
  376 +<<
  377 + /Annots [
  378 + 38 0 R
  379 + 39 0 R
  380 + 40 0 R
  381 + 41 0 R
  382 + 42 0 R
  383 + 43 0 R
  384 + 5 0 R
  385 + 6 0 R
  386 + 15 0 R
  387 + 16 0 R
  388 + 17 0 R
  389 + ]
  390 + /Contents 46 0 R
  391 + /MediaBox [
  392 + 0
  393 + 0
  394 + 612
  395 + 792
  396 + ]
  397 + /Parent 9 0 R
  398 + /Resources <<
  399 + /Font <<
  400 + /F1 48 0 R
  401 + >>
  402 + /ProcSet 49 0 R
  403 + >>
  404 + /Type /Page
  405 +>>
  406 +endobj
  407 +
  408 +%% Page 3
  409 +21 0 obj
  410 +<<
  411 + /Annots 50 0 R
  412 + /Contents 46 0 R
  413 + /MediaBox [
  414 + 0
  415 + 0
  416 + 612
  417 + 792
  418 + ]
  419 + /Parent 9 0 R
  420 + /Resources <<
  421 + /Font <<
  422 + /F1 48 0 R
  423 + >>
  424 + /ProcSet 49 0 R
  425 + >>
  426 + /Type /Page
  427 +>>
  428 +endobj
  429 +
  430 +%% Page 4
  431 +22 0 obj
  432 +<<
  433 + /Annots 50 0 R
  434 + /Contents 46 0 R
  435 + /MediaBox [
  436 + 0
  437 + 0
  438 + 612
  439 + 792
  440 + ]
  441 + /Parent 9 0 R
  442 + /Resources <<
  443 + /Font <<
  444 + /F1 48 0 R
  445 + >>
  446 + /ProcSet 49 0 R
  447 + >>
  448 + /Type /Page
  449 +>>
  450 +endobj
  451 +
  452 +23 0 obj
  453 +<<
  454 + /BBox [
  455 + 0
  456 + 0
  457 + 12.05
  458 + 12.05
  459 + ]
  460 + /Resources 51 0 R
  461 + /Subtype /Form
  462 + /Type /XObject
  463 + /Length 24 0 R
  464 +>>
  465 +stream
  466 +/Tx BMC
  467 +q BT
  468 +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
  469 +0 0 Td
  470 +ET
  471 +Q
  472 +1 0 0 rg
  473 +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
  474 +8.45 4.65 7.35 3.55 6 3.55 c
  475 +4.65 3.55 3.6 4.65 3.6 6 c
  476 +3.6 7.35 4.65 8.4 6 8.4 c f*
  477 +
  478 +EMC
  479 +endstream
  480 +endobj
  481 +
  482 +24 0 obj
  483 +202
  484 +endobj
  485 +
  486 +25 0 obj
  487 +<<
  488 + /BBox [
  489 + 0
  490 + 0
  491 + 12.05
  492 + 12.05
  493 + ]
  494 + /Resources 51 0 R
  495 + /Subtype /Form
  496 + /Type /XObject
  497 + /Length 26 0 R
  498 +>>
  499 +stream
  500 +/Tx BMC
  501 +EMC
  502 +endstream
  503 +endobj
  504 +
  505 +26 0 obj
  506 +12
  507 +endobj
  508 +
  509 +27 0 obj
  510 +<<
  511 + /BaseFont /ZapfDingbats
  512 + /Subtype /Type1
  513 + /Type /Font
  514 +>>
  515 +endobj
  516 +
  517 +28 0 obj
  518 +<<
  519 + /BBox [
  520 + 0
  521 + 0
  522 + 12.05
  523 + 12.05
  524 + ]
  525 + /Resources 51 0 R
  526 + /Subtype /Form
  527 + /Type /XObject
  528 + /Length 29 0 R
  529 +>>
  530 +stream
  531 +/Tx BMC
  532 +q BT
  533 +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
  534 +0 0 Td
  535 +ET
  536 +Q
  537 +0 1 0 rg
  538 +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
  539 +8.45 4.65 7.35 3.55 6 3.55 c
  540 +4.65 3.55 3.6 4.65 3.6 6 c
  541 +3.6 7.35 4.65 8.4 6 8.4 c f*
  542 +
  543 +EMC
  544 +endstream
  545 +endobj
  546 +
  547 +29 0 obj
  548 +202
  549 +endobj
  550 +
  551 +30 0 obj
  552 +<<
  553 + /BBox [
  554 + 0
  555 + 0
  556 + 12.05
  557 + 12.05
  558 + ]
  559 + /Resources 51 0 R
  560 + /Subtype /Form
  561 + /Type /XObject
  562 + /Length 31 0 R
  563 +>>
  564 +stream
  565 +/Tx BMC
  566 +EMC
  567 +endstream
  568 +endobj
  569 +
  570 +31 0 obj
  571 +12
  572 +endobj
  573 +
  574 +32 0 obj
  575 +<<
  576 + /BBox [
  577 + 0
  578 + 0
  579 + 12.05
  580 + 12.05
  581 + ]
  582 + /Resources 51 0 R
  583 + /Subtype /Form
  584 + /Type /XObject
  585 + /Length 33 0 R
  586 +>>
  587 +stream
  588 +/Tx BMC
  589 +q BT
  590 +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
  591 +0 0 Td
  592 +ET
  593 +Q
  594 +0 0 1 rg
  595 +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
  596 +8.45 4.65 7.35 3.55 6 3.55 c
  597 +4.65 3.55 3.6 4.65 3.6 6 c
  598 +3.6 7.35 4.65 8.4 6 8.4 c f*
  599 +
  600 +EMC
  601 +endstream
  602 +endobj
  603 +
  604 +33 0 obj
  605 +202
  606 +endobj
  607 +
  608 +34 0 obj
  609 +<<
  610 + /BBox [
  611 + 0
  612 + 0
  613 + 12.05
  614 + 12.05
  615 + ]
  616 + /Resources 51 0 R
  617 + /Subtype /Form
  618 + /Type /XObject
  619 + /Length 35 0 R
  620 +>>
  621 +stream
  622 +/Tx BMC
  623 +EMC
  624 +endstream
  625 +endobj
  626 +
  627 +35 0 obj
  628 +12
  629 +endobj
  630 +
  631 +36 0 obj
  632 +<<
  633 + /Params <<
  634 + /CheckSum <80a33fc110b5a7b8b4d58b8d57e814bc>
  635 + /Size 22
  636 + /Subtype /text#2fplain
  637 + >>
  638 + /Type /EmbeddedFile
  639 + /Length 37 0 R
  640 +>>
  641 +stream
  642 +content of attachment
  643 +endstream
  644 +endobj
  645 +
  646 +37 0 obj
  647 +22
  648 +endobj
  649 +
  650 +38 0 obj
  651 +<<
  652 + /A <<
  653 + /S /URI
  654 + /URI (https://www.qbilt.org/)
  655 + >>
  656 + /Border [
  657 + 0
  658 + 0
  659 + .4
  660 + ]
  661 + /C [
  662 + .8
  663 + .6
  664 + .6
  665 + ]
  666 + /H /I
  667 + /Rect [
  668 + 72
  669 + 501.832
  670 + 374.4
  671 + 520.696
  672 + ]
  673 + /Subtype /Link
  674 + /Type /Annot
  675 +>>
  676 +endobj
  677 +
  678 +39 0 obj
  679 +<<
  680 + /AP <<
  681 + /N 52 0 R
  682 + >>
  683 + /Contents (attachment1.txt)
  684 + /FS 18 0 R
  685 + /NM (attachment1.txt)
  686 + /Rect [
  687 + 72
  688 + 400
  689 + 92
  690 + 420
  691 + ]
  692 + /Subtype /FileAttachment
  693 + /Type /Annot
  694 +>>
  695 +endobj
  696 +
  697 +40 0 obj
  698 +<<
  699 + /AP <<
  700 + /N 54 0 R
  701 + >>
  702 + /DA ()
  703 + /Rect [
  704 + 72
  705 + 350
  706 + 92
  707 + 360
  708 + ]
  709 + /Subtype /FreeText
  710 + /Type /Annot
  711 +>>
  712 +endobj
  713 +
  714 +41 0 obj
  715 +<<
  716 + /AP <<
  717 + /N 56 0 R
  718 + >>
  719 + /DA ()
  720 + /Rect [
  721 + 102
  722 + 350
  723 + 112
  724 + 370
  725 + ]
  726 + /Subtype /FreeText
  727 + /Type /Annot
  728 +>>
  729 +endobj
  730 +
  731 +42 0 obj
  732 +<<
  733 + /AP <<
  734 + /N 58 0 R
  735 + >>
  736 + /DA ()
  737 + /Rect [
  738 + 122
  739 + 350
  740 + 142
  741 + 360
  742 + ]
  743 + /Subtype /FreeText
  744 + /Type /Annot
  745 +>>
  746 +endobj
  747 +
  748 +43 0 obj
  749 +<<
  750 + /AP <<
  751 + /N 60 0 R
  752 + >>
  753 + /DA ()
  754 + /Rect [
  755 + 152
  756 + 350
  757 + 162
  758 + 370
  759 + ]
  760 + /Subtype /FreeText
  761 + /Type /Annot
  762 +>>
  763 +endobj
  764 +
  765 +%% Contents for page 1
  766 +44 0 obj
  767 +<<
  768 + /Length 45 0 R
  769 +>>
  770 +stream
  771 +q
  772 +1 1 .7 rg
  773 +.5 .5 0 RG
  774 +72 470.77 118.8 14.15 re
  775 +B
  776 +Q
  777 +q
  778 +0 .5 .5 RG
  779 +0 1 1 rg
  780 +372 330.77 14.15 139.4 re
  781 +B
  782 +Q
  783 +q
  784 +1 0 0 RG
  785 +72 310 20 10 re
  786 +72 310 5 10 re
  787 +S
  788 +0 1 0 RG
  789 +102 310 10 20 re
  790 +102 310 10 5 re
  791 +S
  792 +0 0 1 RG
  793 +122 310 20 10 re
  794 +137 310 5 10 re
  795 +S
  796 +0.5 0 1 RG
  797 +152 310 10 20 re
  798 +152 325 10 5 re
  799 +S
  800 +10 w
  801 +0.14 .33 .18 RG
  802 +5 5 602 782 re
  803 +S
  804 +Q
  805 +BT
  806 + /F1 16 Tf
  807 + 20.6 TL
  808 + 170 650 Td
  809 + (radio button 1) Tj
  810 + (radio button 2) '
  811 + (radio button 3) '
  812 + 1 0 0 1 72 546 Tm
  813 + /F1 20 Tf
  814 + (Thick green border surrounds page.) Tj
  815 + 0 -40 Td
  816 + /F1 24 Tf
  817 + 0 0 1 rg
  818 + (https://www.qbilt.org) Tj
  819 + /F1 12 Tf
  820 + 1 0 0 1 202 474 Tm
  821 + (<- Formy field in yellow) Tj
  822 + 1 0 0 1 392 410 Tm
  823 + 14.4 TL
  824 + (<- Rot-ccw field) Tj
  825 + (with "Rot" at bottom) '
  826 + (and text going up) '
  827 + 0 g
  828 + 1 0 0 1 102 405 Tm
  829 + (Arrow to the left points down.) Tj
  830 + 1 0 0 1 182 310 Tm
  831 + (<- Drawn rectangles appear below annotations.) Tj
  832 +ET
  833 +endstream
  834 +endobj
  835 +
  836 +45 0 obj
  837 +874
  838 +endobj
  839 +
  840 +%% Contents for page 4
  841 +46 0 obj
  842 +<<
  843 + /Length 47 0 R
  844 +>>
  845 +stream
  846 +BT
  847 + /F1 24 Tf
  848 + 72 720 Td
  849 + (Potato) Tj
  850 +ET
  851 +endstream
  852 +endobj
  853 +
  854 +47 0 obj
  855 +44
  856 +endobj
  857 +
  858 +48 0 obj
  859 +<<
  860 + /BaseFont /Helvetica
  861 + /Encoding /WinAnsiEncoding
  862 + /Name /F1
  863 + /Subtype /Type1
  864 + /Type /Font
  865 +>>
  866 +endobj
  867 +
  868 +49 0 obj
  869 +[
  870 + /PDF
  871 + /Text
  872 +]
  873 +endobj
  874 +
  875 +50 0 obj
  876 +[
  877 + 38 0 R
  878 + 39 0 R
  879 + 40 0 R
  880 + 41 0 R
  881 + 42 0 R
  882 + 43 0 R
  883 + 5 0 R
  884 + 6 0 R
  885 + 15 0 R
  886 + 16 0 R
  887 + 17 0 R
  888 +]
  889 +endobj
  890 +
  891 +51 0 obj
  892 +<<
  893 + /Font 62 0 R
  894 + /ProcSet [
  895 + /PDF
  896 + /Text
  897 + ]
  898 +>>
  899 +endobj
  900 +
  901 +52 0 obj
  902 +<<
  903 + /BBox [
  904 + 0
  905 + 0
  906 + 20
  907 + 20
  908 + ]
  909 + /Resources <<
  910 + >>
  911 + /Subtype /Form
  912 + /Type /XObject
  913 + /Length 53 0 R
  914 +>>
  915 +stream
  916 +0 10 m
  917 +10 0 l
  918 +20 10 l
  919 +10 0 m
  920 +10 20 l
  921 +0 0 20 20 re
  922 +S
  923 +endstream
  924 +endobj
  925 +
  926 +53 0 obj
  927 +52
  928 +endobj
  929 +
  930 +54 0 obj
  931 +<<
  932 + /BBox [
  933 + 0
  934 + 0
  935 + 20
  936 + 10
  937 + ]
  938 + /Resources 2 0 R
  939 + /Subtype /Form
  940 + /Type /XObject
  941 + /Length 55 0 R
  942 +>>
  943 +stream
  944 +1 0 0 RG
  945 +0 0 20 10 re
  946 +0 0 5 10 re
  947 +S
  948 +endstream
  949 +endobj
  950 +
  951 +55 0 obj
  952 +36
  953 +endobj
  954 +
  955 +56 0 obj
  956 +<<
  957 + /BBox [
  958 + 0
  959 + 0
  960 + 20
  961 + 10
  962 + ]
  963 + /Matrix [
  964 + 0
  965 + 1
  966 + -1
  967 + 0
  968 + 0
  969 + 0
  970 + ]
  971 + /Resources 2 0 R
  972 + /Subtype /Form
  973 + /Type /XObject
  974 + /Length 57 0 R
  975 +>>
  976 +stream
  977 +0 1 0 RG
  978 +0 0 20 10 re
  979 +0 0 5 10 re
  980 +S
  981 +endstream
  982 +endobj
  983 +
  984 +57 0 obj
  985 +36
  986 +endobj
  987 +
  988 +58 0 obj
  989 +<<
  990 + /BBox [
  991 + 0
  992 + 0
  993 + 20
  994 + 10
  995 + ]
  996 + /Matrix [
  997 + -1
  998 + 0
  999 + 0
  1000 + -1
  1001 + 0
  1002 + 0
  1003 + ]
  1004 + /Resources 2 0 R
  1005 + /Subtype /Form
  1006 + /Type /XObject
  1007 + /Length 59 0 R
  1008 +>>
  1009 +stream
  1010 +0 0 1 RG
  1011 +0 0 20 10 re
  1012 +0 0 5 10 re
  1013 +S
  1014 +endstream
  1015 +endobj
  1016 +
  1017 +59 0 obj
  1018 +36
  1019 +endobj
  1020 +
  1021 +60 0 obj
  1022 +<<
  1023 + /BBox [
  1024 + 0
  1025 + 0
  1026 + 20
  1027 + 10
  1028 + ]
  1029 + /Matrix [
  1030 + 0
  1031 + -1
  1032 + 1
  1033 + 0
  1034 + 0
  1035 + 0
  1036 + ]
  1037 + /Resources 2 0 R
  1038 + /Subtype /Form
  1039 + /Type /XObject
  1040 + /Length 61 0 R
  1041 +>>
  1042 +stream
  1043 +0.5 0 1 RG
  1044 +0 0 20 10 re
  1045 +0 0 5 10 re
  1046 +S
  1047 +endstream
  1048 +endobj
  1049 +
  1050 +61 0 obj
  1051 +38
  1052 +endobj
  1053 +
  1054 +62 0 obj
  1055 +<<
  1056 + /ZaDi 27 0 R
  1057 +>>
  1058 +endobj
  1059 +
  1060 +xref
  1061 +0 63
  1062 +0000000000 65535 f
  1063 +0000000025 00000 n
  1064 +0000000235 00000 n
  1065 +0000000288 00000 n
  1066 +0000000532 00000 n
  1067 +0000000781 00000 n
  1068 +0000001025 00000 n
  1069 +0000001274 00000 n
  1070 +0000001393 00000 n
  1071 +0000001463 00000 n
  1072 +0000001569 00000 n
  1073 +0000001674 00000 n
  1074 +0000001889 00000 n
  1075 +0000001909 00000 n
  1076 +0000002179 00000 n
  1077 +0000002199 00000 n
  1078 +0000002551 00000 n
  1079 +0000002903 00000 n
  1080 +0000003255 00000 n
  1081 +0000003396 00000 n
  1082 +0000003678 00000 n
  1083 +0000004019 00000 n
  1084 +0000004242 00000 n
  1085 +0000004455 00000 n
  1086 +0000004814 00000 n
  1087 +0000004835 00000 n
  1088 +0000005004 00000 n
  1089 +0000005024 00000 n
  1090 +0000005105 00000 n
  1091 +0000005464 00000 n
  1092 +0000005485 00000 n
  1093 +0000005654 00000 n
  1094 +0000005674 00000 n
  1095 +0000006033 00000 n
  1096 +0000006054 00000 n
  1097 +0000006223 00000 n
  1098 +0000006243 00000 n
  1099 +0000006451 00000 n
  1100 +0000006471 00000 n
  1101 +0000006715 00000 n
  1102 +0000006919 00000 n
  1103 +0000007059 00000 n
  1104 +0000007201 00000 n
  1105 +0000007343 00000 n
  1106 +0000007508 00000 n
  1107 +0000008439 00000 n
  1108 +0000008483 00000 n
  1109 +0000008584 00000 n
  1110 +0000008604 00000 n
  1111 +0000008723 00000 n
  1112 +0000008759 00000 n
  1113 +0000008877 00000 n
  1114 +0000008951 00000 n
  1115 +0000009155 00000 n
  1116 +0000009175 00000 n
  1117 +0000009361 00000 n
  1118 +0000009381 00000 n
  1119 +0000009620 00000 n
  1120 +0000009640 00000 n
  1121 +0000009880 00000 n
  1122 +0000009900 00000 n
  1123 +0000010141 00000 n
  1124 +0000010161 00000 n
  1125 +trailer <<
  1126 + /Root 1 0 R
  1127 + /Size 63
  1128 + /ID [<a2f146daeb6d814a742556489dab9882><2af5c3b45c6e23a702a8d1dab51fe6b8>]
  1129 +>>
  1130 +startxref
  1131 +10199
  1132 +%%EOF
... ...
qpdf/qtest/qpdf/form-fields-and-annotations.pdf 0 โ†’ 100644
  1 +%PDF-1.6
  2 +%ยฟรทยขรพ
  3 +%QDF-1.0
  4 +
  5 +1 0 obj
  6 +<<
  7 + /AcroForm <<
  8 + /DR 2 0 R
  9 + /Fields [
  10 + 3 0 R
  11 + 4 0 R
  12 + 5 0 R
  13 + ]
  14 + >>
  15 + /Names <<
  16 + /EmbeddedFiles 6 0 R
  17 + >>
  18 + /Pages 7 0 R
  19 + /Type /Catalog
  20 +>>
  21 +endobj
  22 +
  23 +2 0 obj
  24 +<<
  25 + /Font <<
  26 + /F1 8 0 R
  27 + >>
  28 +>>
  29 +endobj
  30 +
  31 +3 0 obj
  32 +<<
  33 + /AP <<
  34 + /N 9 0 R
  35 + >>
  36 + /DA (0 0.4 0 rg /F1 18 Tf)
  37 + /DR 2 0 R
  38 + /DV ()
  39 + /FT /Tx
  40 + /Ff 0
  41 + /Rect [
  42 + 72
  43 + 470.774
  44 + 190.8
  45 + 484.922
  46 + ]
  47 + /Subtype /Widget
  48 + /T (Text Box 1)
  49 + /Type /Annot
  50 + /V (Formy field)
  51 +>>
  52 +endobj
  53 +
  54 +4 0 obj
  55 +<<
  56 + /AP <<
  57 + /N 11 0 R
  58 + >>
  59 + /DA (0 0.4 0 rg /F1 18 Tf)
  60 + /DR 2 0 R
  61 + /DV ()
  62 + /FT /Tx
  63 + /Ff 0
  64 + /Rect [
  65 + 372
  66 + 330.774
  67 + 386.148
  68 + 470.374
  69 + ]
  70 + /Subtype /Widget
  71 + /T (Text Box 1)
  72 + /Type /Annot
  73 + /V (Rot-ccw field)
  74 +>>
  75 +endobj
  76 +
  77 +5 0 obj
  78 +<<
  79 + /DV /1
  80 + /FT /Btn
  81 + /Ff 49152
  82 + /Kids [
  83 + 13 0 R
  84 + 14 0 R
  85 + 15 0 R
  86 + ]
  87 + /T (r1)
  88 + /V /2
  89 +>>
  90 +endobj
  91 +
  92 +6 0 obj
  93 +<<
  94 + /Names [
  95 + (attachment1.txt)
  96 + 16 0 R
  97 + ]
  98 +>>
  99 +endobj
  100 +
  101 +7 0 obj
  102 +<<
  103 + /Count 1
  104 + /Kids [
  105 + 17 0 R
  106 + ]
  107 + /Type /Pages
  108 +>>
  109 +endobj
  110 +
  111 +8 0 obj
  112 +<<
  113 + /BaseFont /Courier
  114 + /Encoding /WinAnsiEncoding
  115 + /Subtype /Type1
  116 + /Type /Font
  117 +>>
  118 +endobj
  119 +
  120 +9 0 obj
  121 +<<
  122 + /BBox [
  123 + 0
  124 + -2.826
  125 + 118.8
  126 + 11.322
  127 + ]
  128 + /Resources 2 0 R
  129 + /Subtype /Form
  130 + /Type /XObject
  131 + /Length 10 0 R
  132 +>>
  133 +stream
  134 +/Tx BMC
  135 +q
  136 +BT
  137 + /F1 18 Tf
  138 + (Formy field) Tj
  139 +ET
  140 +Q
  141 +EMC
  142 +endstream
  143 +endobj
  144 +
  145 +10 0 obj
  146 +53
  147 +endobj
  148 +
  149 +11 0 obj
  150 +<<
  151 + /BBox [
  152 + 0
  153 + -2.826
  154 + 140.4
  155 + 11.322
  156 + ]
  157 + /Matrix [
  158 + 0
  159 + 1
  160 + -1
  161 + 0
  162 + 0
  163 + 0
  164 + ]
  165 + /Resources 2 0 R
  166 + /Subtype /Form
  167 + /Type /XObject
  168 + /Length 12 0 R
  169 +>>
  170 +stream
  171 +/Tx BMC
  172 +q
  173 +BT
  174 + /F1 18 Tf
  175 + (Rot-ccw field) Tj
  176 +ET
  177 +Q
  178 +EMC
  179 +endstream
  180 +endobj
  181 +
  182 +12 0 obj
  183 +55
  184 +endobj
  185 +
  186 +13 0 obj
  187 +<<
  188 + /AP <<
  189 + /N <<
  190 + /1 18 0 R
  191 + /Off 20 0 R
  192 + >>
  193 + >>
  194 + /AS /1
  195 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
  196 + /DR <<
  197 + /Font <<
  198 + /ZaDi 22 0 R
  199 + >>
  200 + >>
  201 + /F 4
  202 + /FT /Btn
  203 + /MK <<
  204 + /CA (l)
  205 + >>
  206 + /Parent 5 0 R
  207 + /Rect [
  208 + 152.749
  209 + 648.501
  210 + 164.801
  211 + 660.549
  212 + ]
  213 + /Subtype /Widget
  214 + /Type /Annot
  215 +>>
  216 +endobj
  217 +
  218 +14 0 obj
  219 +<<
  220 + /AP <<
  221 + /N <<
  222 + /2 23 0 R
  223 + /Off 25 0 R
  224 + >>
  225 + >>
  226 + /AS /2
  227 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
  228 + /DR <<
  229 + /Font <<
  230 + /ZaDi 22 0 R
  231 + >>
  232 + >>
  233 + /F 4
  234 + /FT /Btn
  235 + /MK <<
  236 + /CA (l)
  237 + >>
  238 + /Parent 5 0 R
  239 + /Rect [
  240 + 152.749
  241 + 627.301
  242 + 164.801
  243 + 639.349
  244 + ]
  245 + /Subtype /Widget
  246 + /Type /Annot
  247 +>>
  248 +endobj
  249 +
  250 +15 0 obj
  251 +<<
  252 + /AP <<
  253 + /N <<
  254 + /3 27 0 R
  255 + /Off 29 0 R
  256 + >>
  257 + >>
  258 + /AS /3
  259 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
  260 + /DR <<
  261 + /Font <<
  262 + /ZaDi 22 0 R
  263 + >>
  264 + >>
  265 + /F 4
  266 + /FT /Btn
  267 + /MK <<
  268 + /CA (l)
  269 + >>
  270 + /Parent 5 0 R
  271 + /Rect [
  272 + 151.399
  273 + 606.501
  274 + 163.451
  275 + 618.549
  276 + ]
  277 + /Subtype /Widget
  278 + /Type /Annot
  279 +>>
  280 +endobj
  281 +
  282 +16 0 obj
  283 +<<
  284 + /EF <<
  285 + /F 31 0 R
  286 + /UF 31 0 R
  287 + >>
  288 + /F (attachment1.txt)
  289 + /Type /Filespec
  290 + /UF (attachment1.txt)
  291 +>>
  292 +endobj
  293 +
  294 +%% Page 1
  295 +17 0 obj
  296 +<<
  297 + /Annots [
  298 + 33 0 R
  299 + 3 0 R
  300 + 34 0 R
  301 + 4 0 R
  302 + 35 0 R
  303 + 36 0 R
  304 + 37 0 R
  305 + 38 0 R
  306 + 13 0 R
  307 + 14 0 R
  308 + 15 0 R
  309 + ]
  310 + /Contents 39 0 R
  311 + /MediaBox [
  312 + 0
  313 + 0
  314 + 612
  315 + 792
  316 + ]
  317 + /Parent 7 0 R
  318 + /Resources 2 0 R
  319 + /Type /Page
  320 +>>
  321 +endobj
  322 +
  323 +18 0 obj
  324 +<<
  325 + /BBox [
  326 + 0
  327 + 0
  328 + 12.05
  329 + 12.05
  330 + ]
  331 + /Resources 41 0 R
  332 + /Subtype /Form
  333 + /Type /XObject
  334 + /Length 19 0 R
  335 +>>
  336 +stream
  337 +/Tx BMC
  338 +q BT
  339 +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
  340 +0 0 Td
  341 +ET
  342 +Q
  343 +1 0 0 rg
  344 +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
  345 +8.45 4.65 7.35 3.55 6 3.55 c
  346 +4.65 3.55 3.6 4.65 3.6 6 c
  347 +3.6 7.35 4.65 8.4 6 8.4 c f*
  348 +
  349 +EMC
  350 +endstream
  351 +endobj
  352 +
  353 +19 0 obj
  354 +202
  355 +endobj
  356 +
  357 +20 0 obj
  358 +<<
  359 + /BBox [
  360 + 0
  361 + 0
  362 + 12.05
  363 + 12.05
  364 + ]
  365 + /Resources 41 0 R
  366 + /Subtype /Form
  367 + /Type /XObject
  368 + /Length 21 0 R
  369 +>>
  370 +stream
  371 +/Tx BMC
  372 +EMC
  373 +endstream
  374 +endobj
  375 +
  376 +21 0 obj
  377 +12
  378 +endobj
  379 +
  380 +22 0 obj
  381 +<<
  382 + /BaseFont /ZapfDingbats
  383 + /Subtype /Type1
  384 + /Type /Font
  385 +>>
  386 +endobj
  387 +
  388 +23 0 obj
  389 +<<
  390 + /BBox [
  391 + 0
  392 + 0
  393 + 12.05
  394 + 12.05
  395 + ]
  396 + /Resources 41 0 R
  397 + /Subtype /Form
  398 + /Type /XObject
  399 + /Length 24 0 R
  400 +>>
  401 +stream
  402 +/Tx BMC
  403 +q BT
  404 +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
  405 +0 0 Td
  406 +ET
  407 +Q
  408 +0 1 0 rg
  409 +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
  410 +8.45 4.65 7.35 3.55 6 3.55 c
  411 +4.65 3.55 3.6 4.65 3.6 6 c
  412 +3.6 7.35 4.65 8.4 6 8.4 c f*
  413 +
  414 +EMC
  415 +endstream
  416 +endobj
  417 +
  418 +24 0 obj
  419 +202
  420 +endobj
  421 +
  422 +25 0 obj
  423 +<<
  424 + /BBox [
  425 + 0
  426 + 0
  427 + 12.05
  428 + 12.05
  429 + ]
  430 + /Resources 41 0 R
  431 + /Subtype /Form
  432 + /Type /XObject
  433 + /Length 26 0 R
  434 +>>
  435 +stream
  436 +/Tx BMC
  437 +EMC
  438 +endstream
  439 +endobj
  440 +
  441 +26 0 obj
  442 +12
  443 +endobj
  444 +
  445 +27 0 obj
  446 +<<
  447 + /BBox [
  448 + 0
  449 + 0
  450 + 12.05
  451 + 12.05
  452 + ]
  453 + /Resources 41 0 R
  454 + /Subtype /Form
  455 + /Type /XObject
  456 + /Length 28 0 R
  457 +>>
  458 +stream
  459 +/Tx BMC
  460 +q BT
  461 +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
  462 +0 0 Td
  463 +ET
  464 +Q
  465 +0 0 1 rg
  466 +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
  467 +8.45 4.65 7.35 3.55 6 3.55 c
  468 +4.65 3.55 3.6 4.65 3.6 6 c
  469 +3.6 7.35 4.65 8.4 6 8.4 c f*
  470 +
  471 +EMC
  472 +endstream
  473 +endobj
  474 +
  475 +28 0 obj
  476 +202
  477 +endobj
  478 +
  479 +29 0 obj
  480 +<<
  481 + /BBox [
  482 + 0
  483 + 0
  484 + 12.05
  485 + 12.05
  486 + ]
  487 + /Resources 41 0 R
  488 + /Subtype /Form
  489 + /Type /XObject
  490 + /Length 30 0 R
  491 +>>
  492 +stream
  493 +/Tx BMC
  494 +EMC
  495 +endstream
  496 +endobj
  497 +
  498 +30 0 obj
  499 +12
  500 +endobj
  501 +
  502 +31 0 obj
  503 +<<
  504 + /Params <<
  505 + /CheckSum <80a33fc110b5a7b8b4d58b8d57e814bc>
  506 + /Size 22
  507 + /Subtype /text#2fplain
  508 + >>
  509 + /Type /EmbeddedFile
  510 + /Length 32 0 R
  511 +>>
  512 +stream
  513 +content of attachment
  514 +endstream
  515 +endobj
  516 +
  517 +32 0 obj
  518 +22
  519 +endobj
  520 +
  521 +33 0 obj
  522 +<<
  523 + /A <<
  524 + /S /URI
  525 + /URI (https://www.qbilt.org/)
  526 + >>
  527 + /Border [
  528 + 0
  529 + 0
  530 + .4
  531 + ]
  532 + /C [
  533 + .8
  534 + .6
  535 + .6
  536 + ]
  537 + /H /I
  538 + /Rect [
  539 + 72
  540 + 501.832
  541 + 374.4
  542 + 520.696
  543 + ]
  544 + /Subtype /Link
  545 + /Type /Annot
  546 +>>
  547 +endobj
  548 +
  549 +34 0 obj
  550 +<<
  551 + /AP <<
  552 + /N 42 0 R
  553 + >>
  554 + /Contents (attachment1.txt)
  555 + /FS 16 0 R
  556 + /NM (attachment1.txt)
  557 + /Rect [
  558 + 72
  559 + 400
  560 + 92
  561 + 420
  562 + ]
  563 + /Subtype /FileAttachment
  564 + /Type /Annot
  565 +>>
  566 +endobj
  567 +
  568 +35 0 obj
  569 +<<
  570 + /AP <<
  571 + /N 44 0 R
  572 + >>
  573 + /DA ()
  574 + /Rect [
  575 + 72
  576 + 350
  577 + 92
  578 + 360
  579 + ]
  580 + /Subtype /FreeText
  581 + /Type /Annot
  582 +>>
  583 +endobj
  584 +
  585 +36 0 obj
  586 +<<
  587 + /AP <<
  588 + /N 46 0 R
  589 + >>
  590 + /DA ()
  591 + /Rect [
  592 + 102
  593 + 350
  594 + 112
  595 + 370
  596 + ]
  597 + /Subtype /FreeText
  598 + /Type /Annot
  599 +>>
  600 +endobj
  601 +
  602 +37 0 obj
  603 +<<
  604 + /AP <<
  605 + /N 48 0 R
  606 + >>
  607 + /DA ()
  608 + /Rect [
  609 + 122
  610 + 350
  611 + 142
  612 + 360
  613 + ]
  614 + /Subtype /FreeText
  615 + /Type /Annot
  616 +>>
  617 +endobj
  618 +
  619 +38 0 obj
  620 +<<
  621 + /AP <<
  622 + /N 50 0 R
  623 + >>
  624 + /DA ()
  625 + /Rect [
  626 + 152
  627 + 350
  628 + 162
  629 + 370
  630 + ]
  631 + /Subtype /FreeText
  632 + /Type /Annot
  633 +>>
  634 +endobj
  635 +
  636 +%% Contents for page 1
  637 +39 0 obj
  638 +<<
  639 + /Length 40 0 R
  640 +>>
  641 +stream
  642 +q
  643 +1 1 .7 rg
  644 +.5 .5 0 RG
  645 +72 470.77 118.8 14.15 re
  646 +B
  647 +Q
  648 +q
  649 +0 .5 .5 RG
  650 +0 1 1 rg
  651 +372 330.77 14.15 139.4 re
  652 +B
  653 +Q
  654 +q
  655 +1 0 0 RG
  656 +72 310 20 10 re
  657 +72 310 5 10 re
  658 +S
  659 +0 1 0 RG
  660 +102 310 10 20 re
  661 +102 310 10 5 re
  662 +S
  663 +0 0 1 RG
  664 +122 310 20 10 re
  665 +137 310 5 10 re
  666 +S
  667 +0.5 0 1 RG
  668 +152 310 10 20 re
  669 +152 325 10 5 re
  670 +S
  671 +10 w
  672 +0.14 .33 .18 RG
  673 +5 5 602 782 re
  674 +S
  675 +Q
  676 +BT
  677 + /F1 16 Tf
  678 + 20.6 TL
  679 + 170 650 Td
  680 + (radio button 1) Tj
  681 + (radio button 2) '
  682 + (radio button 3) '
  683 + 1 0 0 1 72 546 Tm
  684 + /F1 20 Tf
  685 + (Thick green border surrounds page.) Tj
  686 + 0 -40 Td
  687 + /F1 24 Tf
  688 + 0 0 1 rg
  689 + (https://www.qbilt.org) Tj
  690 + /F1 12 Tf
  691 + 1 0 0 1 202 474 Tm
  692 + (<- Formy field in yellow) Tj
  693 + 1 0 0 1 392 410 Tm
  694 + 14.4 TL
  695 + (<- Rot-ccw field) Tj
  696 + (with "Rot" at bottom) '
  697 + (and text going up) '
  698 + 0 g
  699 + 1 0 0 1 102 405 Tm
  700 + (Arrow to the left points down.) Tj
  701 + 1 0 0 1 182 310 Tm
  702 + (<- Drawn rectangles appear below annotations.) Tj
  703 +ET
  704 +endstream
  705 +endobj
  706 +
  707 +40 0 obj
  708 +874
  709 +endobj
  710 +
  711 +41 0 obj
  712 +<<
  713 + /Font 52 0 R
  714 + /ProcSet [
  715 + /PDF
  716 + /Text
  717 + ]
  718 +>>
  719 +endobj
  720 +
  721 +42 0 obj
  722 +<<
  723 + /BBox [
  724 + 0
  725 + 0
  726 + 20
  727 + 20
  728 + ]
  729 + /Resources <<
  730 + >>
  731 + /Subtype /Form
  732 + /Type /XObject
  733 + /Length 43 0 R
  734 +>>
  735 +stream
  736 +0 10 m
  737 +10 0 l
  738 +20 10 l
  739 +10 0 m
  740 +10 20 l
  741 +0 0 20 20 re
  742 +S
  743 +endstream
  744 +endobj
  745 +
  746 +43 0 obj
  747 +52
  748 +endobj
  749 +
  750 +44 0 obj
  751 +<<
  752 + /BBox [
  753 + 0
  754 + 0
  755 + 20
  756 + 10
  757 + ]
  758 + /Resources 2 0 R
  759 + /Subtype /Form
  760 + /Type /XObject
  761 + /Length 45 0 R
  762 +>>
  763 +stream
  764 +1 0 0 RG
  765 +0 0 20 10 re
  766 +0 0 5 10 re
  767 +S
  768 +endstream
  769 +endobj
  770 +
  771 +45 0 obj
  772 +36
  773 +endobj
  774 +
  775 +46 0 obj
  776 +<<
  777 + /BBox [
  778 + 0
  779 + 0
  780 + 20
  781 + 10
  782 + ]
  783 + /Matrix [
  784 + 0
  785 + 1
  786 + -1
  787 + 0
  788 + 0
  789 + 0
  790 + ]
  791 + /Resources 2 0 R
  792 + /Subtype /Form
  793 + /Type /XObject
  794 + /Length 47 0 R
  795 +>>
  796 +stream
  797 +0 1 0 RG
  798 +0 0 20 10 re
  799 +0 0 5 10 re
  800 +S
  801 +endstream
  802 +endobj
  803 +
  804 +47 0 obj
  805 +36
  806 +endobj
  807 +
  808 +48 0 obj
  809 +<<
  810 + /BBox [
  811 + 0
  812 + 0
  813 + 20
  814 + 10
  815 + ]
  816 + /Matrix [
  817 + -1
  818 + 0
  819 + 0
  820 + -1
  821 + 0
  822 + 0
  823 + ]
  824 + /Resources 2 0 R
  825 + /Subtype /Form
  826 + /Type /XObject
  827 + /Length 49 0 R
  828 +>>
  829 +stream
  830 +0 0 1 RG
  831 +0 0 20 10 re
  832 +0 0 5 10 re
  833 +S
  834 +endstream
  835 +endobj
  836 +
  837 +49 0 obj
  838 +36
  839 +endobj
  840 +
  841 +50 0 obj
  842 +<<
  843 + /BBox [
  844 + 0
  845 + 0
  846 + 20
  847 + 10
  848 + ]
  849 + /Matrix [
  850 + 0
  851 + -1
  852 + 1
  853 + 0
  854 + 0
  855 + 0
  856 + ]
  857 + /Resources 2 0 R
  858 + /Subtype /Form
  859 + /Type /XObject
  860 + /Length 51 0 R
  861 +>>
  862 +stream
  863 +0.5 0 1 RG
  864 +0 0 20 10 re
  865 +0 0 5 10 re
  866 +S
  867 +endstream
  868 +endobj
  869 +
  870 +51 0 obj
  871 +38
  872 +endobj
  873 +
  874 +52 0 obj
  875 +<<
  876 + /ZaDi 22 0 R
  877 +>>
  878 +endobj
  879 +
  880 +xref
  881 +0 53
  882 +0000000000 65535 f
  883 +0000000025 00000 n
  884 +0000000211 00000 n
  885 +0000000263 00000 n
  886 +0000000506 00000 n
  887 +0000000755 00000 n
  888 +0000000874 00000 n
  889 +0000000944 00000 n
  890 +0000001017 00000 n
  891 +0000001121 00000 n
  892 +0000001335 00000 n
  893 +0000001355 00000 n
  894 +0000001625 00000 n
  895 +0000001645 00000 n
  896 +0000001997 00000 n
  897 +0000002349 00000 n
  898 +0000002701 00000 n
  899 +0000002842 00000 n
  900 +0000003114 00000 n
  901 +0000003473 00000 n
  902 +0000003494 00000 n
  903 +0000003663 00000 n
  904 +0000003683 00000 n
  905 +0000003764 00000 n
  906 +0000004123 00000 n
  907 +0000004144 00000 n
  908 +0000004313 00000 n
  909 +0000004333 00000 n
  910 +0000004692 00000 n
  911 +0000004713 00000 n
  912 +0000004882 00000 n
  913 +0000004902 00000 n
  914 +0000005110 00000 n
  915 +0000005130 00000 n
  916 +0000005374 00000 n
  917 +0000005578 00000 n
  918 +0000005718 00000 n
  919 +0000005860 00000 n
  920 +0000006002 00000 n
  921 +0000006167 00000 n
  922 +0000007098 00000 n
  923 +0000007119 00000 n
  924 +0000007193 00000 n
  925 +0000007397 00000 n
  926 +0000007417 00000 n
  927 +0000007603 00000 n
  928 +0000007623 00000 n
  929 +0000007862 00000 n
  930 +0000007882 00000 n
  931 +0000008122 00000 n
  932 +0000008142 00000 n
  933 +0000008383 00000 n
  934 +0000008403 00000 n
  935 +trailer <<
  936 + /Root 1 0 R
  937 + /Size 53
  938 + /ID [<a2f146daeb6d814a742556489dab9882><7b639c67bfc16b5e891fa5468aac3a14>]
  939 +>>
  940 +startxref
  941 +8441
  942 +%%EOF
... ...
qpdf/qtest/qpdf/rotated-shared-annotations-1.pdf 0 โ†’ 100644
  1 +%PDF-1.6
  2 +%ยฟรทยขรพ
  3 +%QDF-1.0
  4 +
  5 +1 0 obj
  6 +<<
  7 + /AcroForm <<
  8 + /DR 2 0 R
  9 + /Fields [
  10 + 3 0 R
  11 + 4 0 R
  12 + 5 0 R
  13 + 6 0 R
  14 + 7 0 R
  15 + ]
  16 + >>
  17 + /Names <<
  18 + /EmbeddedFiles 8 0 R
  19 + >>
  20 + /Pages 9 0 R
  21 + /Type /Catalog
  22 +>>
  23 +endobj
  24 +
  25 +2 0 obj
  26 +<<
  27 + /Font <<
  28 + /F1 10 0 R
  29 + >>
  30 +>>
  31 +endobj
  32 +
  33 +3 0 obj
  34 +<<
  35 + /AP <<
  36 + /N 11 0 R
  37 + >>
  38 + /DA (0 0.4 0 rg /F1 18 Tf)
  39 + /DR 2 0 R
  40 + /DV ()
  41 + /FT /Tx
  42 + /Ff 0
  43 + /Rect [
  44 + 72
  45 + 470.774
  46 + 190.8
  47 + 484.922
  48 + ]
  49 + /Subtype /Widget
  50 + /T (Text Box 1)
  51 + /Type /Annot
  52 + /V (Formy field)
  53 +>>
  54 +endobj
  55 +
  56 +4 0 obj
  57 +<<
  58 + /AP <<
  59 + /N 13 0 R
  60 + >>
  61 + /DA (0 0.4 0 rg /F1 18 Tf)
  62 + /DR 2 0 R
  63 + /DV ()
  64 + /FT /Tx
  65 + /Ff 0
  66 + /Rect [
  67 + 372
  68 + 330.774
  69 + 386.148
  70 + 470.374
  71 + ]
  72 + /Subtype /Widget
  73 + /T (Text Box 1)
  74 + /Type /Annot
  75 + /V (Rot-ccw field)
  76 +>>
  77 +endobj
  78 +
  79 +5 0 obj
  80 +<<
  81 + /AP <<
  82 + /N 15 0 R
  83 + >>
  84 + /DA (0 0.4 0 rg /F1 18 Tf)
  85 + /DR 2 0 R
  86 + /DV ()
  87 + /FT /Tx
  88 + /Ff 0
  89 + /Rect [
  90 + 470.774
  91 + 421.2
  92 + 484.922
  93 + 540
  94 + ]
  95 + /Subtype /Widget
  96 + /T (Text Box 1)
  97 + /Type /Annot
  98 + /V (Formy field)
  99 +>>
  100 +endobj
  101 +
  102 +6 0 obj
  103 +<<
  104 + /AP <<
  105 + /N 17 0 R
  106 + >>
  107 + /DA (0 0.4 0 rg /F1 18 Tf)
  108 + /DR 2 0 R
  109 + /DV ()
  110 + /FT /Tx
  111 + /Ff 0
  112 + /Rect [
  113 + 330.774
  114 + 225.852
  115 + 470.374
  116 + 240
  117 + ]
  118 + /Subtype /Widget
  119 + /T (Text Box 1)
  120 + /Type /Annot
  121 + /V (Rot-ccw field)
  122 +>>
  123 +endobj
  124 +
  125 +7 0 obj
  126 +<<
  127 + /DV /1
  128 + /FT /Btn
  129 + /Ff 49152
  130 + /Kids [
  131 + 19 0 R
  132 + 20 0 R
  133 + 21 0 R
  134 + ]
  135 + /T (r1)
  136 + /V /2
  137 +>>
  138 +endobj
  139 +
  140 +8 0 obj
  141 +<<
  142 + /Names [
  143 + (attachment1.txt)
  144 + 22 0 R
  145 + ]
  146 +>>
  147 +endobj
  148 +
  149 +9 0 obj
  150 +<<
  151 + /Count 4
  152 + /Kids [
  153 + 23 0 R
  154 + 24 0 R
  155 + 25 0 R
  156 + 26 0 R
  157 + ]
  158 + /Type /Pages
  159 +>>
  160 +endobj
  161 +
  162 +10 0 obj
  163 +<<
  164 + /BaseFont /Courier
  165 + /Encoding /WinAnsiEncoding
  166 + /Subtype /Type1
  167 + /Type /Font
  168 +>>
  169 +endobj
  170 +
  171 +11 0 obj
  172 +<<
  173 + /BBox [
  174 + 0
  175 + -2.826
  176 + 118.8
  177 + 11.322
  178 + ]
  179 + /Resources 2 0 R
  180 + /Subtype /Form
  181 + /Type /XObject
  182 + /Length 12 0 R
  183 +>>
  184 +stream
  185 +/Tx BMC
  186 +q
  187 +BT
  188 + /F1 18 Tf
  189 + (Formy field) Tj
  190 +ET
  191 +Q
  192 +EMC
  193 +endstream
  194 +endobj
  195 +
  196 +12 0 obj
  197 +53
  198 +endobj
  199 +
  200 +13 0 obj
  201 +<<
  202 + /BBox [
  203 + 0
  204 + -2.826
  205 + 140.4
  206 + 11.322
  207 + ]
  208 + /Matrix [
  209 + 0
  210 + 1
  211 + -1
  212 + 0
  213 + 0
  214 + 0
  215 + ]
  216 + /Resources 2 0 R
  217 + /Subtype /Form
  218 + /Type /XObject
  219 + /Length 14 0 R
  220 +>>
  221 +stream
  222 +/Tx BMC
  223 +q
  224 +BT
  225 + /F1 18 Tf
  226 + (Rot-ccw field) Tj
  227 +ET
  228 +Q
  229 +EMC
  230 +endstream
  231 +endobj
  232 +
  233 +14 0 obj
  234 +55
  235 +endobj
  236 +
  237 +15 0 obj
  238 +<<
  239 + /BBox [
  240 + 0
  241 + -2.826
  242 + 118.8
  243 + 11.322
  244 + ]
  245 + /Matrix [
  246 + 0
  247 + -1
  248 + 1
  249 + 0
  250 + 0
  251 + 612
  252 + ]
  253 + /Resources 2 0 R
  254 + /Subtype /Form
  255 + /Type /XObject
  256 + /Length 16 0 R
  257 +>>
  258 +stream
  259 +/Tx BMC
  260 +q
  261 +BT
  262 + /F1 18 Tf
  263 + (Formy field) Tj
  264 +ET
  265 +Q
  266 +EMC
  267 +endstream
  268 +endobj
  269 +
  270 +16 0 obj
  271 +53
  272 +endobj
  273 +
  274 +17 0 obj
  275 +<<
  276 + /BBox [
  277 + 0
  278 + -2.826
  279 + 140.4
  280 + 11.322
  281 + ]
  282 + /Matrix [
  283 + 1
  284 + 0
  285 + 0
  286 + 1
  287 + -612
  288 + 0
  289 + ]
  290 + /Resources 2 0 R
  291 + /Subtype /Form
  292 + /Type /XObject
  293 + /Length 18 0 R
  294 +>>
  295 +stream
  296 +/Tx BMC
  297 +q
  298 +BT
  299 + /F1 18 Tf
  300 + (Rot-ccw field) Tj
  301 +ET
  302 +Q
  303 +EMC
  304 +endstream
  305 +endobj
  306 +
  307 +18 0 obj
  308 +55
  309 +endobj
  310 +
  311 +19 0 obj
  312 +<<
  313 + /AP <<
  314 + /N <<
  315 + /1 27 0 R
  316 + /Off 29 0 R
  317 + >>
  318 + >>
  319 + /AS /1
  320 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
  321 + /DR <<
  322 + /Font <<
  323 + /ZaDi 31 0 R
  324 + >>
  325 + >>
  326 + /F 4
  327 + /FT /Btn
  328 + /MK <<
  329 + /CA (l)
  330 + >>
  331 + /Parent 7 0 R
  332 + /Rect [
  333 + 648.501
  334 + 447.199
  335 + 660.549
  336 + 459.251
  337 + ]
  338 + /Subtype /Widget
  339 + /Type /Annot
  340 +>>
  341 +endobj
  342 +
  343 +20 0 obj
  344 +<<
  345 + /AP <<
  346 + /N <<
  347 + /2 32 0 R
  348 + /Off 34 0 R
  349 + >>
  350 + >>
  351 + /AS /2
  352 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
  353 + /DR <<
  354 + /Font <<
  355 + /ZaDi 31 0 R
  356 + >>
  357 + >>
  358 + /F 4
  359 + /FT /Btn
  360 + /MK <<
  361 + /CA (l)
  362 + >>
  363 + /Parent 7 0 R
  364 + /Rect [
  365 + 627.301
  366 + 447.199
  367 + 639.349
  368 + 459.251
  369 + ]
  370 + /Subtype /Widget
  371 + /Type /Annot
  372 +>>
  373 +endobj
  374 +
  375 +21 0 obj
  376 +<<
  377 + /AP <<
  378 + /N <<
  379 + /3 36 0 R
  380 + /Off 38 0 R
  381 + >>
  382 + >>
  383 + /AS /3
  384 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
  385 + /DR <<
  386 + /Font <<
  387 + /ZaDi 31 0 R
  388 + >>
  389 + >>
  390 + /F 4
  391 + /FT /Btn
  392 + /MK <<
  393 + /CA (l)
  394 + >>
  395 + /Parent 7 0 R
  396 + /Rect [
  397 + 606.501
  398 + 448.549
  399 + 618.549
  400 + 460.601
  401 + ]
  402 + /Subtype /Widget
  403 + /Type /Annot
  404 +>>
  405 +endobj
  406 +
  407 +22 0 obj
  408 +<<
  409 + /EF <<
  410 + /F 40 0 R
  411 + /UF 40 0 R
  412 + >>
  413 + /F (attachment1.txt)
  414 + /Type /Filespec
  415 + /UF (attachment1.txt)
  416 +>>
  417 +endobj
  418 +
  419 +%% Page 1
  420 +23 0 obj
  421 +<<
  422 + /Annots [
  423 + 42 0 R
  424 + 5 0 R
  425 + 43 0 R
  426 + 6 0 R
  427 + 44 0 R
  428 + 45 0 R
  429 + 46 0 R
  430 + 47 0 R
  431 + 19 0 R
  432 + 20 0 R
  433 + 21 0 R
  434 + ]
  435 + /Contents [
  436 + 48 0 R
  437 + 50 0 R
  438 + 52 0 R
  439 + ]
  440 + /MediaBox [
  441 + 0
  442 + 0
  443 + 792
  444 + 612
  445 + ]
  446 + /Parent 9 0 R
  447 + /Resources 2 0 R
  448 + /Type /Page
  449 +>>
  450 +endobj
  451 +
  452 +%% Page 2
  453 +24 0 obj
  454 +<<
  455 + /Annots [
  456 + 54 0 R
  457 + 55 0 R
  458 + 56 0 R
  459 + 57 0 R
  460 + 58 0 R
  461 + 59 0 R
  462 + 3 0 R
  463 + 4 0 R
  464 + 60 0 R
  465 + 61 0 R
  466 + 62 0 R
  467 + ]
  468 + /Contents 63 0 R
  469 + /MediaBox [
  470 + 0
  471 + 0
  472 + 612
  473 + 792
  474 + ]
  475 + /Parent 9 0 R
  476 + /Resources <<
  477 + /Font <<
  478 + /F1 65 0 R
  479 + >>
  480 + /ProcSet 66 0 R
  481 + >>
  482 + /Type /Page
  483 +>>
  484 +endobj
  485 +
  486 +%% Page 3
  487 +25 0 obj
  488 +<<
  489 + /Annots 67 0 R
  490 + /Contents 63 0 R
  491 + /MediaBox [
  492 + 0
  493 + 0
  494 + 612
  495 + 792
  496 + ]
  497 + /Parent 9 0 R
  498 + /Resources <<
  499 + /Font <<
  500 + /F1 65 0 R
  501 + >>
  502 + /ProcSet 66 0 R
  503 + >>
  504 + /Type /Page
  505 +>>
  506 +endobj
  507 +
  508 +%% Page 4
  509 +26 0 obj
  510 +<<
  511 + /Annots 67 0 R
  512 + /Contents 63 0 R
  513 + /MediaBox [
  514 + 0
  515 + 0
  516 + 612
  517 + 792
  518 + ]
  519 + /Parent 9 0 R
  520 + /Resources <<
  521 + /Font <<
  522 + /F1 65 0 R
  523 + >>
  524 + /ProcSet 66 0 R
  525 + >>
  526 + /Type /Page
  527 +>>
  528 +endobj
  529 +
  530 +27 0 obj
  531 +<<
  532 + /BBox [
  533 + 0
  534 + 0
  535 + 12.05
  536 + 12.05
  537 + ]
  538 + /Matrix [
  539 + 0
  540 + -1
  541 + 1
  542 + 0
  543 + 0
  544 + 612
  545 + ]
  546 + /Resources 68 0 R
  547 + /Subtype /Form
  548 + /Type /XObject
  549 + /Length 28 0 R
  550 +>>
  551 +stream
  552 +/Tx BMC
  553 +q BT
  554 +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
  555 +0 0 Td
  556 +ET
  557 +Q
  558 +1 0 0 rg
  559 +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
  560 +8.45 4.65 7.35 3.55 6 3.55 c
  561 +4.65 3.55 3.6 4.65 3.6 6 c
  562 +3.6 7.35 4.65 8.4 6 8.4 c f*
  563 +
  564 +EMC
  565 +endstream
  566 +endobj
  567 +
  568 +28 0 obj
  569 +202
  570 +endobj
  571 +
  572 +29 0 obj
  573 +<<
  574 + /BBox [
  575 + 0
  576 + 0
  577 + 12.05
  578 + 12.05
  579 + ]
  580 + /Matrix [
  581 + 0
  582 + -1
  583 + 1
  584 + 0
  585 + 0
  586 + 612
  587 + ]
  588 + /Resources 68 0 R
  589 + /Subtype /Form
  590 + /Type /XObject
  591 + /Length 30 0 R
  592 +>>
  593 +stream
  594 +/Tx BMC
  595 +EMC
  596 +endstream
  597 +endobj
  598 +
  599 +30 0 obj
  600 +12
  601 +endobj
  602 +
  603 +31 0 obj
  604 +<<
  605 + /BaseFont /ZapfDingbats
  606 + /Subtype /Type1
  607 + /Type /Font
  608 +>>
  609 +endobj
  610 +
  611 +32 0 obj
  612 +<<
  613 + /BBox [
  614 + 0
  615 + 0
  616 + 12.05
  617 + 12.05
  618 + ]
  619 + /Matrix [
  620 + 0
  621 + -1
  622 + 1
  623 + 0
  624 + 0
  625 + 612
  626 + ]
  627 + /Resources 68 0 R
  628 + /Subtype /Form
  629 + /Type /XObject
  630 + /Length 33 0 R
  631 +>>
  632 +stream
  633 +/Tx BMC
  634 +q BT
  635 +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
  636 +0 0 Td
  637 +ET
  638 +Q
  639 +0 1 0 rg
  640 +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
  641 +8.45 4.65 7.35 3.55 6 3.55 c
  642 +4.65 3.55 3.6 4.65 3.6 6 c
  643 +3.6 7.35 4.65 8.4 6 8.4 c f*
  644 +
  645 +EMC
  646 +endstream
  647 +endobj
  648 +
  649 +33 0 obj
  650 +202
  651 +endobj
  652 +
  653 +34 0 obj
  654 +<<
  655 + /BBox [
  656 + 0
  657 + 0
  658 + 12.05
  659 + 12.05
  660 + ]
  661 + /Matrix [
  662 + 0
  663 + -1
  664 + 1
  665 + 0
  666 + 0
  667 + 612
  668 + ]
  669 + /Resources 68 0 R
  670 + /Subtype /Form
  671 + /Type /XObject
  672 + /Length 35 0 R
  673 +>>
  674 +stream
  675 +/Tx BMC
  676 +EMC
  677 +endstream
  678 +endobj
  679 +
  680 +35 0 obj
  681 +12
  682 +endobj
  683 +
  684 +36 0 obj
  685 +<<
  686 + /BBox [
  687 + 0
  688 + 0
  689 + 12.05
  690 + 12.05
  691 + ]
  692 + /Matrix [
  693 + 0
  694 + -1
  695 + 1
  696 + 0
  697 + 0
  698 + 612
  699 + ]
  700 + /Resources 68 0 R
  701 + /Subtype /Form
  702 + /Type /XObject
  703 + /Length 37 0 R
  704 +>>
  705 +stream
  706 +/Tx BMC
  707 +q BT
  708 +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
  709 +0 0 Td
  710 +ET
  711 +Q
  712 +0 0 1 rg
  713 +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
  714 +8.45 4.65 7.35 3.55 6 3.55 c
  715 +4.65 3.55 3.6 4.65 3.6 6 c
  716 +3.6 7.35 4.65 8.4 6 8.4 c f*
  717 +
  718 +EMC
  719 +endstream
  720 +endobj
  721 +
  722 +37 0 obj
  723 +202
  724 +endobj
  725 +
  726 +38 0 obj
  727 +<<
  728 + /BBox [
  729 + 0
  730 + 0
  731 + 12.05
  732 + 12.05
  733 + ]
  734 + /Matrix [
  735 + 0
  736 + -1
  737 + 1
  738 + 0
  739 + 0
  740 + 612
  741 + ]
  742 + /Resources 68 0 R
  743 + /Subtype /Form
  744 + /Type /XObject
  745 + /Length 39 0 R
  746 +>>
  747 +stream
  748 +/Tx BMC
  749 +EMC
  750 +endstream
  751 +endobj
  752 +
  753 +39 0 obj
  754 +12
  755 +endobj
  756 +
  757 +40 0 obj
  758 +<<
  759 + /Params <<
  760 + /CheckSum <80a33fc110b5a7b8b4d58b8d57e814bc>
  761 + /Size 22
  762 + /Subtype /text#2fplain
  763 + >>
  764 + /Type /EmbeddedFile
  765 + /Length 41 0 R
  766 +>>
  767 +stream
  768 +content of attachment
  769 +endstream
  770 +endobj
  771 +
  772 +41 0 obj
  773 +22
  774 +endobj
  775 +
  776 +42 0 obj
  777 +<<
  778 + /A <<
  779 + /S /URI
  780 + /URI (https://www.qbilt.org/)
  781 + >>
  782 + /Border [
  783 + 0
  784 + 0
  785 + .4
  786 + ]
  787 + /C [
  788 + .8
  789 + .6
  790 + .6
  791 + ]
  792 + /H /I
  793 + /Rect [
  794 + 501.832
  795 + 237.6
  796 + 520.696
  797 + 540
  798 + ]
  799 + /Subtype /Link
  800 + /Type /Annot
  801 +>>
  802 +endobj
  803 +
  804 +43 0 obj
  805 +<<
  806 + /AP <<
  807 + /N 69 0 R
  808 + >>
  809 + /Contents (attachment1.txt)
  810 + /FS 22 0 R
  811 + /NM (attachment1.txt)
  812 + /Rect [
  813 + 400
  814 + 520
  815 + 420
  816 + 540
  817 + ]
  818 + /Subtype /FileAttachment
  819 + /Type /Annot
  820 +>>
  821 +endobj
  822 +
  823 +44 0 obj
  824 +<<
  825 + /AP <<
  826 + /N 71 0 R
  827 + >>
  828 + /DA ()
  829 + /Rect [
  830 + 350
  831 + 520
  832 + 360
  833 + 540
  834 + ]
  835 + /Subtype /FreeText
  836 + /Type /Annot
  837 +>>
  838 +endobj
  839 +
  840 +45 0 obj
  841 +<<
  842 + /AP <<
  843 + /N 73 0 R
  844 + >>
  845 + /DA ()
  846 + /Rect [
  847 + 350
  848 + 500
  849 + 370
  850 + 510
  851 + ]
  852 + /Subtype /FreeText
  853 + /Type /Annot
  854 +>>
  855 +endobj
  856 +
  857 +46 0 obj
  858 +<<
  859 + /AP <<
  860 + /N 75 0 R
  861 + >>
  862 + /DA ()
  863 + /Rect [
  864 + 350
  865 + 470
  866 + 360
  867 + 490
  868 + ]
  869 + /Subtype /FreeText
  870 + /Type /Annot
  871 +>>
  872 +endobj
  873 +
  874 +47 0 obj
  875 +<<
  876 + /AP <<
  877 + /N 77 0 R
  878 + >>
  879 + /DA ()
  880 + /Rect [
  881 + 350
  882 + 450
  883 + 370
  884 + 460
  885 + ]
  886 + /Subtype /FreeText
  887 + /Type /Annot
  888 +>>
  889 +endobj
  890 +
  891 +%% Contents for page 1
  892 +48 0 obj
  893 +<<
  894 + /Length 49 0 R
  895 +>>
  896 +stream
  897 +q
  898 +0 -1 1 0 0 612 cm
  899 +endstream
  900 +endobj
  901 +
  902 +49 0 obj
  903 +20
  904 +endobj
  905 +
  906 +%% Contents for page 1
  907 +50 0 obj
  908 +<<
  909 + /Length 51 0 R
  910 +>>
  911 +stream
  912 +q
  913 +1 1 .7 rg
  914 +.5 .5 0 RG
  915 +72 470.77 118.8 14.15 re
  916 +B
  917 +Q
  918 +q
  919 +0 .5 .5 RG
  920 +0 1 1 rg
  921 +372 330.77 14.15 139.4 re
  922 +B
  923 +Q
  924 +q
  925 +1 0 0 RG
  926 +72 310 20 10 re
  927 +72 310 5 10 re
  928 +S
  929 +0 1 0 RG
  930 +102 310 10 20 re
  931 +102 310 10 5 re
  932 +S
  933 +0 0 1 RG
  934 +122 310 20 10 re
  935 +137 310 5 10 re
  936 +S
  937 +0.5 0 1 RG
  938 +152 310 10 20 re
  939 +152 325 10 5 re
  940 +S
  941 +10 w
  942 +0.14 .33 .18 RG
  943 +5 5 602 782 re
  944 +S
  945 +Q
  946 +BT
  947 + /F1 16 Tf
  948 + 20.6 TL
  949 + 170 650 Td
  950 + (radio button 1) Tj
  951 + (radio button 2) '
  952 + (radio button 3) '
  953 + 1 0 0 1 72 546 Tm
  954 + /F1 20 Tf
  955 + (Thick green border surrounds page.) Tj
  956 + 0 -40 Td
  957 + /F1 24 Tf
  958 + 0 0 1 rg
  959 + (https://www.qbilt.org) Tj
  960 + /F1 12 Tf
  961 + 1 0 0 1 202 474 Tm
  962 + (<- Formy field in yellow) Tj
  963 + 1 0 0 1 392 410 Tm
  964 + 14.4 TL
  965 + (<- Rot-ccw field) Tj
  966 + (with "Rot" at bottom) '
  967 + (and text going up) '
  968 + 0 g
  969 + 1 0 0 1 102 405 Tm
  970 + (Arrow to the left points down.) Tj
  971 + 1 0 0 1 182 310 Tm
  972 + (<- Drawn rectangles appear below annotations.) Tj
  973 +ET
  974 +endstream
  975 +endobj
  976 +
  977 +51 0 obj
  978 +874
  979 +endobj
  980 +
  981 +%% Contents for page 1
  982 +52 0 obj
  983 +<<
  984 + /Length 53 0 R
  985 +>>
  986 +stream
  987 +
  988 +Q
  989 +endstream
  990 +endobj
  991 +
  992 +53 0 obj
  993 +3
  994 +endobj
  995 +
  996 +54 0 obj
  997 +<<
  998 + /A <<
  999 + /S /URI
  1000 + /URI (https://www.qbilt.org/)
  1001 + >>
  1002 + /Border [
  1003 + 0
  1004 + 0
  1005 + .4
  1006 + ]
  1007 + /C [
  1008 + .8
  1009 + .6
  1010 + .6
  1011 + ]
  1012 + /H /I
  1013 + /Rect [
  1014 + 72
  1015 + 501.832
  1016 + 374.4
  1017 + 520.696
  1018 + ]
  1019 + /Subtype /Link
  1020 + /Type /Annot
  1021 +>>
  1022 +endobj
  1023 +
  1024 +55 0 obj
  1025 +<<
  1026 + /AP <<
  1027 + /N 79 0 R
  1028 + >>
  1029 + /Contents (attachment1.txt)
  1030 + /FS 22 0 R
  1031 + /NM (attachment1.txt)
  1032 + /Rect [
  1033 + 72
  1034 + 400
  1035 + 92
  1036 + 420
  1037 + ]
  1038 + /Subtype /FileAttachment
  1039 + /Type /Annot
  1040 +>>
  1041 +endobj
  1042 +
  1043 +56 0 obj
  1044 +<<
  1045 + /AP <<
  1046 + /N 81 0 R
  1047 + >>
  1048 + /DA ()
  1049 + /Rect [
  1050 + 72
  1051 + 350
  1052 + 92
  1053 + 360
  1054 + ]
  1055 + /Subtype /FreeText
  1056 + /Type /Annot
  1057 +>>
  1058 +endobj
  1059 +
  1060 +57 0 obj
  1061 +<<
  1062 + /AP <<
  1063 + /N 83 0 R
  1064 + >>
  1065 + /DA ()
  1066 + /Rect [
  1067 + 102
  1068 + 350
  1069 + 112
  1070 + 370
  1071 + ]
  1072 + /Subtype /FreeText
  1073 + /Type /Annot
  1074 +>>
  1075 +endobj
  1076 +
  1077 +58 0 obj
  1078 +<<
  1079 + /AP <<
  1080 + /N 85 0 R
  1081 + >>
  1082 + /DA ()
  1083 + /Rect [
  1084 + 122
  1085 + 350
  1086 + 142
  1087 + 360
  1088 + ]
  1089 + /Subtype /FreeText
  1090 + /Type /Annot
  1091 +>>
  1092 +endobj
  1093 +
  1094 +59 0 obj
  1095 +<<
  1096 + /AP <<
  1097 + /N 87 0 R
  1098 + >>
  1099 + /DA ()
  1100 + /Rect [
  1101 + 152
  1102 + 350
  1103 + 162
  1104 + 370
  1105 + ]
  1106 + /Subtype /FreeText
  1107 + /Type /Annot
  1108 +>>
  1109 +endobj
  1110 +
  1111 +60 0 obj
  1112 +<<
  1113 + /AP <<
  1114 + /N <<
  1115 + /1 89 0 R
  1116 + /Off 91 0 R
  1117 + >>
  1118 + >>
  1119 + /AS /1
  1120 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
  1121 + /DR <<
  1122 + /Font <<
  1123 + /ZaDi 31 0 R
  1124 + >>
  1125 + >>
  1126 + /F 4
  1127 + /FT /Btn
  1128 + /MK <<
  1129 + /CA (l)
  1130 + >>
  1131 + /Parent 93 0 R
  1132 + /Rect [
  1133 + 152.749
  1134 + 648.501
  1135 + 164.801
  1136 + 660.549
  1137 + ]
  1138 + /Subtype /Widget
  1139 + /Type /Annot
  1140 +>>
  1141 +endobj
  1142 +
  1143 +61 0 obj
  1144 +<<
  1145 + /AP <<
  1146 + /N <<
  1147 + /2 94 0 R
  1148 + /Off 96 0 R
  1149 + >>
  1150 + >>
  1151 + /AS /2
  1152 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
  1153 + /DR <<
  1154 + /Font <<
  1155 + /ZaDi 31 0 R
  1156 + >>
  1157 + >>
  1158 + /F 4
  1159 + /FT /Btn
  1160 + /MK <<
  1161 + /CA (l)
  1162 + >>
  1163 + /Parent 93 0 R
  1164 + /Rect [
  1165 + 152.749
  1166 + 627.301
  1167 + 164.801
  1168 + 639.349
  1169 + ]
  1170 + /Subtype /Widget
  1171 + /Type /Annot
  1172 +>>
  1173 +endobj
  1174 +
  1175 +62 0 obj
  1176 +<<
  1177 + /AP <<
  1178 + /N <<
  1179 + /3 98 0 R
  1180 + /Off 100 0 R
  1181 + >>
  1182 + >>
  1183 + /AS /3
  1184 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
  1185 + /DR <<
  1186 + /Font <<
  1187 + /ZaDi 31 0 R
  1188 + >>
  1189 + >>
  1190 + /F 4
  1191 + /FT /Btn
  1192 + /MK <<
  1193 + /CA (l)
  1194 + >>
  1195 + /Parent 93 0 R
  1196 + /Rect [
  1197 + 151.399
  1198 + 606.501
  1199 + 163.451
  1200 + 618.549
  1201 + ]
  1202 + /Subtype /Widget
  1203 + /Type /Annot
  1204 +>>
  1205 +endobj
  1206 +
  1207 +%% Contents for page 4
  1208 +63 0 obj
  1209 +<<
  1210 + /Length 64 0 R
  1211 +>>
  1212 +stream
  1213 +BT
  1214 + /F1 24 Tf
  1215 + 72 720 Td
  1216 + (Potato) Tj
  1217 +ET
  1218 +endstream
  1219 +endobj
  1220 +
  1221 +64 0 obj
  1222 +44
  1223 +endobj
  1224 +
  1225 +65 0 obj
  1226 +<<
  1227 + /BaseFont /Helvetica
  1228 + /Encoding /WinAnsiEncoding
  1229 + /Name /F1
  1230 + /Subtype /Type1
  1231 + /Type /Font
  1232 +>>
  1233 +endobj
  1234 +
  1235 +66 0 obj
  1236 +[
  1237 + /PDF
  1238 + /Text
  1239 +]
  1240 +endobj
  1241 +
  1242 +67 0 obj
  1243 +[
  1244 + 54 0 R
  1245 + 55 0 R
  1246 + 56 0 R
  1247 + 57 0 R
  1248 + 58 0 R
  1249 + 59 0 R
  1250 + 3 0 R
  1251 + 4 0 R
  1252 + 60 0 R
  1253 + 61 0 R
  1254 + 62 0 R
  1255 +]
  1256 +endobj
  1257 +
  1258 +68 0 obj
  1259 +<<
  1260 + /Font 102 0 R
  1261 + /ProcSet [
  1262 + /PDF
  1263 + /Text
  1264 + ]
  1265 +>>
  1266 +endobj
  1267 +
  1268 +69 0 obj
  1269 +<<
  1270 + /BBox [
  1271 + 0
  1272 + 0
  1273 + 20
  1274 + 20
  1275 + ]
  1276 + /Matrix [
  1277 + 0
  1278 + -1
  1279 + 1
  1280 + 0
  1281 + 0
  1282 + 612
  1283 + ]
  1284 + /Resources <<
  1285 + >>
  1286 + /Subtype /Form
  1287 + /Type /XObject
  1288 + /Length 70 0 R
  1289 +>>
  1290 +stream
  1291 +0 10 m
  1292 +10 0 l
  1293 +20 10 l
  1294 +10 0 m
  1295 +10 20 l
  1296 +0 0 20 20 re
  1297 +S
  1298 +endstream
  1299 +endobj
  1300 +
  1301 +70 0 obj
  1302 +52
  1303 +endobj
  1304 +
  1305 +71 0 obj
  1306 +<<
  1307 + /BBox [
  1308 + 0
  1309 + 0
  1310 + 20
  1311 + 10
  1312 + ]
  1313 + /Matrix [
  1314 + 0
  1315 + -1
  1316 + 1
  1317 + 0
  1318 + 0
  1319 + 612
  1320 + ]
  1321 + /Resources 2 0 R
  1322 + /Subtype /Form
  1323 + /Type /XObject
  1324 + /Length 72 0 R
  1325 +>>
  1326 +stream
  1327 +1 0 0 RG
  1328 +0 0 20 10 re
  1329 +0 0 5 10 re
  1330 +S
  1331 +endstream
  1332 +endobj
  1333 +
  1334 +72 0 obj
  1335 +36
  1336 +endobj
  1337 +
  1338 +73 0 obj
  1339 +<<
  1340 + /BBox [
  1341 + 0
  1342 + 0
  1343 + 20
  1344 + 10
  1345 + ]
  1346 + /Matrix [
  1347 + 1
  1348 + 0
  1349 + 0
  1350 + 1
  1351 + -612
  1352 + 0
  1353 + ]
  1354 + /Resources 2 0 R
  1355 + /Subtype /Form
  1356 + /Type /XObject
  1357 + /Length 74 0 R
  1358 +>>
  1359 +stream
  1360 +0 1 0 RG
  1361 +0 0 20 10 re
  1362 +0 0 5 10 re
  1363 +S
  1364 +endstream
  1365 +endobj
  1366 +
  1367 +74 0 obj
  1368 +36
  1369 +endobj
  1370 +
  1371 +75 0 obj
  1372 +<<
  1373 + /BBox [
  1374 + 0
  1375 + 0
  1376 + 20
  1377 + 10
  1378 + ]
  1379 + /Matrix [
  1380 + -0
  1381 + 1
  1382 + -1
  1383 + 0
  1384 + 0
  1385 + -612
  1386 + ]
  1387 + /Resources 2 0 R
  1388 + /Subtype /Form
  1389 + /Type /XObject
  1390 + /Length 76 0 R
  1391 +>>
  1392 +stream
  1393 +0 0 1 RG
  1394 +0 0 20 10 re
  1395 +0 0 5 10 re
  1396 +S
  1397 +endstream
  1398 +endobj
  1399 +
  1400 +76 0 obj
  1401 +36
  1402 +endobj
  1403 +
  1404 +77 0 obj
  1405 +<<
  1406 + /BBox [
  1407 + 0
  1408 + 0
  1409 + 20
  1410 + 10
  1411 + ]
  1412 + /Matrix [
  1413 + -1
  1414 + -0
  1415 + 0
  1416 + -1
  1417 + 612
  1418 + 0
  1419 + ]
  1420 + /Resources 2 0 R
  1421 + /Subtype /Form
  1422 + /Type /XObject
  1423 + /Length 78 0 R
  1424 +>>
  1425 +stream
  1426 +0.5 0 1 RG
  1427 +0 0 20 10 re
  1428 +0 0 5 10 re
  1429 +S
  1430 +endstream
  1431 +endobj
  1432 +
  1433 +78 0 obj
  1434 +38
  1435 +endobj
  1436 +
  1437 +79 0 obj
  1438 +<<
  1439 + /BBox [
  1440 + 0
  1441 + 0
  1442 + 20
  1443 + 20
  1444 + ]
  1445 + /Resources <<
  1446 + >>
  1447 + /Subtype /Form
  1448 + /Type /XObject
  1449 + /Length 80 0 R
  1450 +>>
  1451 +stream
  1452 +0 10 m
  1453 +10 0 l
  1454 +20 10 l
  1455 +10 0 m
  1456 +10 20 l
  1457 +0 0 20 20 re
  1458 +S
  1459 +endstream
  1460 +endobj
  1461 +
  1462 +80 0 obj
  1463 +52
  1464 +endobj
  1465 +
  1466 +81 0 obj
  1467 +<<
  1468 + /BBox [
  1469 + 0
  1470 + 0
  1471 + 20
  1472 + 10
  1473 + ]
  1474 + /Resources 2 0 R
  1475 + /Subtype /Form
  1476 + /Type /XObject
  1477 + /Length 82 0 R
  1478 +>>
  1479 +stream
  1480 +1 0 0 RG
  1481 +0 0 20 10 re
  1482 +0 0 5 10 re
  1483 +S
  1484 +endstream
  1485 +endobj
  1486 +
  1487 +82 0 obj
  1488 +36
  1489 +endobj
  1490 +
  1491 +83 0 obj
  1492 +<<
  1493 + /BBox [
  1494 + 0
  1495 + 0
  1496 + 20
  1497 + 10
  1498 + ]
  1499 + /Matrix [
  1500 + 0
  1501 + 1
  1502 + -1
  1503 + 0
  1504 + 0
  1505 + 0
  1506 + ]
  1507 + /Resources 2 0 R
  1508 + /Subtype /Form
  1509 + /Type /XObject
  1510 + /Length 84 0 R
  1511 +>>
  1512 +stream
  1513 +0 1 0 RG
  1514 +0 0 20 10 re
  1515 +0 0 5 10 re
  1516 +S
  1517 +endstream
  1518 +endobj
  1519 +
  1520 +84 0 obj
  1521 +36
  1522 +endobj
  1523 +
  1524 +85 0 obj
  1525 +<<
  1526 + /BBox [
  1527 + 0
  1528 + 0
  1529 + 20
  1530 + 10
  1531 + ]
  1532 + /Matrix [
  1533 + -1
  1534 + 0
  1535 + 0
  1536 + -1
  1537 + 0
  1538 + 0
  1539 + ]
  1540 + /Resources 2 0 R
  1541 + /Subtype /Form
  1542 + /Type /XObject
  1543 + /Length 86 0 R
  1544 +>>
  1545 +stream
  1546 +0 0 1 RG
  1547 +0 0 20 10 re
  1548 +0 0 5 10 re
  1549 +S
  1550 +endstream
  1551 +endobj
  1552 +
  1553 +86 0 obj
  1554 +36
  1555 +endobj
  1556 +
  1557 +87 0 obj
  1558 +<<
  1559 + /BBox [
  1560 + 0
  1561 + 0
  1562 + 20
  1563 + 10
  1564 + ]
  1565 + /Matrix [
  1566 + 0
  1567 + -1
  1568 + 1
  1569 + 0
  1570 + 0
  1571 + 0
  1572 + ]
  1573 + /Resources 2 0 R
  1574 + /Subtype /Form
  1575 + /Type /XObject
  1576 + /Length 88 0 R
  1577 +>>
  1578 +stream
  1579 +0.5 0 1 RG
  1580 +0 0 20 10 re
  1581 +0 0 5 10 re
  1582 +S
  1583 +endstream
  1584 +endobj
  1585 +
  1586 +88 0 obj
  1587 +38
  1588 +endobj
  1589 +
  1590 +89 0 obj
  1591 +<<
  1592 + /BBox [
  1593 + 0
  1594 + 0
  1595 + 12.05
  1596 + 12.05
  1597 + ]
  1598 + /Resources 68 0 R
  1599 + /Subtype /Form
  1600 + /Type /XObject
  1601 + /Length 90 0 R
  1602 +>>
  1603 +stream
  1604 +/Tx BMC
  1605 +q BT
  1606 +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
  1607 +0 0 Td
  1608 +ET
  1609 +Q
  1610 +1 0 0 rg
  1611 +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
  1612 +8.45 4.65 7.35 3.55 6 3.55 c
  1613 +4.65 3.55 3.6 4.65 3.6 6 c
  1614 +3.6 7.35 4.65 8.4 6 8.4 c f*
  1615 +
  1616 +EMC
  1617 +endstream
  1618 +endobj
  1619 +
  1620 +90 0 obj
  1621 +202
  1622 +endobj
  1623 +
  1624 +91 0 obj
  1625 +<<
  1626 + /BBox [
  1627 + 0
  1628 + 0
  1629 + 12.05
  1630 + 12.05
  1631 + ]
  1632 + /Resources 68 0 R
  1633 + /Subtype /Form
  1634 + /Type /XObject
  1635 + /Length 92 0 R
  1636 +>>
  1637 +stream
  1638 +/Tx BMC
  1639 +EMC
  1640 +endstream
  1641 +endobj
  1642 +
  1643 +92 0 obj
  1644 +12
  1645 +endobj
  1646 +
  1647 +93 0 obj
  1648 +<<
  1649 + /DV /1
  1650 + /FT /Btn
  1651 + /Ff 49152
  1652 + /Kids [
  1653 + 60 0 R
  1654 + 61 0 R
  1655 + 62 0 R
  1656 + ]
  1657 + /T (r1)
  1658 + /V /2
  1659 +>>
  1660 +endobj
  1661 +
  1662 +94 0 obj
  1663 +<<
  1664 + /BBox [
  1665 + 0
  1666 + 0
  1667 + 12.05
  1668 + 12.05
  1669 + ]
  1670 + /Resources 68 0 R
  1671 + /Subtype /Form
  1672 + /Type /XObject
  1673 + /Length 95 0 R
  1674 +>>
  1675 +stream
  1676 +/Tx BMC
  1677 +q BT
  1678 +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
  1679 +0 0 Td
  1680 +ET
  1681 +Q
  1682 +0 1 0 rg
  1683 +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
  1684 +8.45 4.65 7.35 3.55 6 3.55 c
  1685 +4.65 3.55 3.6 4.65 3.6 6 c
  1686 +3.6 7.35 4.65 8.4 6 8.4 c f*
  1687 +
  1688 +EMC
  1689 +endstream
  1690 +endobj
  1691 +
  1692 +95 0 obj
  1693 +202
  1694 +endobj
  1695 +
  1696 +96 0 obj
  1697 +<<
  1698 + /BBox [
  1699 + 0
  1700 + 0
  1701 + 12.05
  1702 + 12.05
  1703 + ]
  1704 + /Resources 68 0 R
  1705 + /Subtype /Form
  1706 + /Type /XObject
  1707 + /Length 97 0 R
  1708 +>>
  1709 +stream
  1710 +/Tx BMC
  1711 +EMC
  1712 +endstream
  1713 +endobj
  1714 +
  1715 +97 0 obj
  1716 +12
  1717 +endobj
  1718 +
  1719 +98 0 obj
  1720 +<<
  1721 + /BBox [
  1722 + 0
  1723 + 0
  1724 + 12.05
  1725 + 12.05
  1726 + ]
  1727 + /Resources 68 0 R
  1728 + /Subtype /Form
  1729 + /Type /XObject
  1730 + /Length 99 0 R
  1731 +>>
  1732 +stream
  1733 +/Tx BMC
  1734 +q BT
  1735 +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
  1736 +0 0 Td
  1737 +ET
  1738 +Q
  1739 +0 0 1 rg
  1740 +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
  1741 +8.45 4.65 7.35 3.55 6 3.55 c
  1742 +4.65 3.55 3.6 4.65 3.6 6 c
  1743 +3.6 7.35 4.65 8.4 6 8.4 c f*
  1744 +
  1745 +EMC
  1746 +endstream
  1747 +endobj
  1748 +
  1749 +99 0 obj
  1750 +202
  1751 +endobj
  1752 +
  1753 +100 0 obj
  1754 +<<
  1755 + /BBox [
  1756 + 0
  1757 + 0
  1758 + 12.05
  1759 + 12.05
  1760 + ]
  1761 + /Resources 68 0 R
  1762 + /Subtype /Form
  1763 + /Type /XObject
  1764 + /Length 101 0 R
  1765 +>>
  1766 +stream
  1767 +/Tx BMC
  1768 +EMC
  1769 +endstream
  1770 +endobj
  1771 +
  1772 +101 0 obj
  1773 +12
  1774 +endobj
  1775 +
  1776 +102 0 obj
  1777 +<<
  1778 + /ZaDi 31 0 R
  1779 +>>
  1780 +endobj
  1781 +
  1782 +xref
  1783 +0 103
  1784 +0000000000 65535 f
  1785 +0000000025 00000 n
  1786 +0000000235 00000 n
  1787 +0000000288 00000 n
  1788 +0000000532 00000 n
  1789 +0000000781 00000 n
  1790 +0000001026 00000 n
  1791 +0000001275 00000 n
  1792 +0000001394 00000 n
  1793 +0000001464 00000 n
  1794 +0000001570 00000 n
  1795 +0000001675 00000 n
  1796 +0000001890 00000 n
  1797 +0000001910 00000 n
  1798 +0000002180 00000 n
  1799 +0000002200 00000 n
  1800 +0000002470 00000 n
  1801 +0000002490 00000 n
  1802 +0000002762 00000 n
  1803 +0000002782 00000 n
  1804 +0000003134 00000 n
  1805 +0000003486 00000 n
  1806 +0000003838 00000 n
  1807 +0000003979 00000 n
  1808 +0000004293 00000 n
  1809 +0000004634 00000 n
  1810 +0000004857 00000 n
  1811 +0000005070 00000 n
  1812 +0000005484 00000 n
  1813 +0000005505 00000 n
  1814 +0000005729 00000 n
  1815 +0000005749 00000 n
  1816 +0000005830 00000 n
  1817 +0000006244 00000 n
  1818 +0000006265 00000 n
  1819 +0000006489 00000 n
  1820 +0000006509 00000 n
  1821 +0000006923 00000 n
  1822 +0000006944 00000 n
  1823 +0000007168 00000 n
  1824 +0000007188 00000 n
  1825 +0000007396 00000 n
  1826 +0000007416 00000 n
  1827 +0000007661 00000 n
  1828 +0000007867 00000 n
  1829 +0000008009 00000 n
  1830 +0000008151 00000 n
  1831 +0000008293 00000 n
  1832 +0000008458 00000 n
  1833 +0000008535 00000 n
  1834 +0000008578 00000 n
  1835 +0000009509 00000 n
  1836 +0000009553 00000 n
  1837 +0000009613 00000 n
  1838 +0000009632 00000 n
  1839 +0000009876 00000 n
  1840 +0000010080 00000 n
  1841 +0000010220 00000 n
  1842 +0000010362 00000 n
  1843 +0000010504 00000 n
  1844 +0000010646 00000 n
  1845 +0000010999 00000 n
  1846 +0000011352 00000 n
  1847 +0000011729 00000 n
  1848 +0000011830 00000 n
  1849 +0000011850 00000 n
  1850 +0000011969 00000 n
  1851 +0000012005 00000 n
  1852 +0000012123 00000 n
  1853 +0000012198 00000 n
  1854 +0000012457 00000 n
  1855 +0000012477 00000 n
  1856 +0000012718 00000 n
  1857 +0000012738 00000 n
  1858 +0000012979 00000 n
  1859 +0000012999 00000 n
  1860 +0000013242 00000 n
  1861 +0000013262 00000 n
  1862 +0000013507 00000 n
  1863 +0000013527 00000 n
  1864 +0000013731 00000 n
  1865 +0000013751 00000 n
  1866 +0000013937 00000 n
  1867 +0000013957 00000 n
  1868 +0000014196 00000 n
  1869 +0000014216 00000 n
  1870 +0000014456 00000 n
  1871 +0000014476 00000 n
  1872 +0000014717 00000 n
  1873 +0000014737 00000 n
  1874 +0000015096 00000 n
  1875 +0000015117 00000 n
  1876 +0000015286 00000 n
  1877 +0000015306 00000 n
  1878 +0000015426 00000 n
  1879 +0000015785 00000 n
  1880 +0000015806 00000 n
  1881 +0000015975 00000 n
  1882 +0000015995 00000 n
  1883 +0000016354 00000 n
  1884 +0000016375 00000 n
  1885 +0000016546 00000 n
  1886 +0000016567 00000 n
  1887 +trailer <<
  1888 + /Root 1 0 R
  1889 + /Size 103
  1890 + /ID [<a2f146daeb6d814a742556489dab9882><31415926535897932384626433832795>]
  1891 +>>
  1892 +startxref
  1893 +16606
  1894 +%%EOF
... ...
qpdf/qtest/qpdf/rotated-shared-annotations-2.pdf 0 โ†’ 100644
  1 +%PDF-1.6
  2 +%ยฟรทยขรพ
  3 +%QDF-1.0
  4 +
  5 +1 0 obj
  6 +<<
  7 + /AcroForm <<
  8 + /DR 2 0 R
  9 + /Fields [
  10 + 3 0 R
  11 + 4 0 R
  12 + 5 0 R
  13 + 6 0 R
  14 + 7 0 R
  15 + 8 0 R
  16 + ]
  17 + >>
  18 + /Names <<
  19 + /EmbeddedFiles 9 0 R
  20 + >>
  21 + /Pages 10 0 R
  22 + /Type /Catalog
  23 +>>
  24 +endobj
  25 +
  26 +2 0 obj
  27 +<<
  28 + /Font <<
  29 + /F1 11 0 R
  30 + >>
  31 +>>
  32 +endobj
  33 +
  34 +3 0 obj
  35 +<<
  36 + /AP <<
  37 + /N 12 0 R
  38 + >>
  39 + /DA (0 0.4 0 rg /F1 18 Tf)
  40 + /DR 2 0 R
  41 + /DV ()
  42 + /FT /Tx
  43 + /Ff 0
  44 + /Rect [
  45 + 470.774
  46 + 421.2
  47 + 484.922
  48 + 540
  49 + ]
  50 + /Subtype /Widget
  51 + /T (Text Box 1)
  52 + /Type /Annot
  53 + /V (Formy field)
  54 +>>
  55 +endobj
  56 +
  57 +4 0 obj
  58 +<<
  59 + /AP <<
  60 + /N 14 0 R
  61 + >>
  62 + /DA (0 0.4 0 rg /F1 18 Tf)
  63 + /DR 2 0 R
  64 + /DV ()
  65 + /FT /Tx
  66 + /Ff 0
  67 + /Rect [
  68 + 330.774
  69 + 225.852
  70 + 470.374
  71 + 240
  72 + ]
  73 + /Subtype /Widget
  74 + /T (Text Box 1)
  75 + /Type /Annot
  76 + /V (Rot-ccw field)
  77 +>>
  78 +endobj
  79 +
  80 +5 0 obj
  81 +<<
  82 + /DV /1
  83 + /FT /Btn
  84 + /Ff 49152
  85 + /Kids [
  86 + 16 0 R
  87 + 17 0 R
  88 + 18 0 R
  89 + ]
  90 + /T (r1)
  91 + /V /2
  92 +>>
  93 +endobj
  94 +
  95 +6 0 obj
  96 +<<
  97 + /AP <<
  98 + /N 19 0 R
  99 + >>
  100 + /DA (0 0.4 0 rg /F1 18 Tf)
  101 + /DR 2 0 R
  102 + /DV ()
  103 + /FT /Tx
  104 + /Ff 0
  105 + /Rect [
  106 + 470.774
  107 + 421.2
  108 + 484.922
  109 + 540
  110 + ]
  111 + /Subtype /Widget
  112 + /T (Text Box 1)
  113 + /Type /Annot
  114 + /V (Formy field)
  115 +>>
  116 +endobj
  117 +
  118 +7 0 obj
  119 +<<
  120 + /AP <<
  121 + /N 21 0 R
  122 + >>
  123 + /DA (0 0.4 0 rg /F1 18 Tf)
  124 + /DR 2 0 R
  125 + /DV ()
  126 + /FT /Tx
  127 + /Ff 0
  128 + /Rect [
  129 + 330.774
  130 + 225.852
  131 + 470.374
  132 + 240
  133 + ]
  134 + /Subtype /Widget
  135 + /T (Text Box 1)
  136 + /Type /Annot
  137 + /V (Rot-ccw field)
  138 +>>
  139 +endobj
  140 +
  141 +8 0 obj
  142 +<<
  143 + /DV /1
  144 + /FT /Btn
  145 + /Ff 49152
  146 + /Kids [
  147 + 23 0 R
  148 + 24 0 R
  149 + 25 0 R
  150 + ]
  151 + /T (r1)
  152 + /V /2
  153 +>>
  154 +endobj
  155 +
  156 +9 0 obj
  157 +<<
  158 + /Names [
  159 + (attachment1.txt)
  160 + 26 0 R
  161 + ]
  162 +>>
  163 +endobj
  164 +
  165 +10 0 obj
  166 +<<
  167 + /Count 4
  168 + /Kids [
  169 + 27 0 R
  170 + 28 0 R
  171 + 29 0 R
  172 + 30 0 R
  173 + ]
  174 + /Type /Pages
  175 +>>
  176 +endobj
  177 +
  178 +11 0 obj
  179 +<<
  180 + /BaseFont /Courier
  181 + /Encoding /WinAnsiEncoding
  182 + /Subtype /Type1
  183 + /Type /Font
  184 +>>
  185 +endobj
  186 +
  187 +12 0 obj
  188 +<<
  189 + /BBox [
  190 + 0
  191 + -2.826
  192 + 118.8
  193 + 11.322
  194 + ]
  195 + /Matrix [
  196 + 0
  197 + -1
  198 + 1
  199 + 0
  200 + 0
  201 + 612
  202 + ]
  203 + /Resources 2 0 R
  204 + /Subtype /Form
  205 + /Type /XObject
  206 + /Length 13 0 R
  207 +>>
  208 +stream
  209 +/Tx BMC
  210 +q
  211 +BT
  212 + /F1 18 Tf
  213 + (Formy field) Tj
  214 +ET
  215 +Q
  216 +EMC
  217 +endstream
  218 +endobj
  219 +
  220 +13 0 obj
  221 +53
  222 +endobj
  223 +
  224 +14 0 obj
  225 +<<
  226 + /BBox [
  227 + 0
  228 + -2.826
  229 + 140.4
  230 + 11.322
  231 + ]
  232 + /Matrix [
  233 + 1
  234 + 0
  235 + 0
  236 + 1
  237 + -612
  238 + 0
  239 + ]
  240 + /Resources 2 0 R
  241 + /Subtype /Form
  242 + /Type /XObject
  243 + /Length 15 0 R
  244 +>>
  245 +stream
  246 +/Tx BMC
  247 +q
  248 +BT
  249 + /F1 18 Tf
  250 + (Rot-ccw field) Tj
  251 +ET
  252 +Q
  253 +EMC
  254 +endstream
  255 +endobj
  256 +
  257 +15 0 obj
  258 +55
  259 +endobj
  260 +
  261 +16 0 obj
  262 +<<
  263 + /AP <<
  264 + /N <<
  265 + /1 31 0 R
  266 + /Off 33 0 R
  267 + >>
  268 + >>
  269 + /AS /1
  270 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
  271 + /DR <<
  272 + /Font <<
  273 + /ZaDi 35 0 R
  274 + >>
  275 + >>
  276 + /F 4
  277 + /FT /Btn
  278 + /MK <<
  279 + /CA (l)
  280 + >>
  281 + /Parent 5 0 R
  282 + /Rect [
  283 + 648.501
  284 + 447.199
  285 + 660.549
  286 + 459.251
  287 + ]
  288 + /Subtype /Widget
  289 + /Type /Annot
  290 +>>
  291 +endobj
  292 +
  293 +17 0 obj
  294 +<<
  295 + /AP <<
  296 + /N <<
  297 + /2 36 0 R
  298 + /Off 38 0 R
  299 + >>
  300 + >>
  301 + /AS /2
  302 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
  303 + /DR <<
  304 + /Font <<
  305 + /ZaDi 35 0 R
  306 + >>
  307 + >>
  308 + /F 4
  309 + /FT /Btn
  310 + /MK <<
  311 + /CA (l)
  312 + >>
  313 + /Parent 5 0 R
  314 + /Rect [
  315 + 627.301
  316 + 447.199
  317 + 639.349
  318 + 459.251
  319 + ]
  320 + /Subtype /Widget
  321 + /Type /Annot
  322 +>>
  323 +endobj
  324 +
  325 +18 0 obj
  326 +<<
  327 + /AP <<
  328 + /N <<
  329 + /3 40 0 R
  330 + /Off 42 0 R
  331 + >>
  332 + >>
  333 + /AS /3
  334 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
  335 + /DR <<
  336 + /Font <<
  337 + /ZaDi 35 0 R
  338 + >>
  339 + >>
  340 + /F 4
  341 + /FT /Btn
  342 + /MK <<
  343 + /CA (l)
  344 + >>
  345 + /Parent 5 0 R
  346 + /Rect [
  347 + 606.501
  348 + 448.549
  349 + 618.549
  350 + 460.601
  351 + ]
  352 + /Subtype /Widget
  353 + /Type /Annot
  354 +>>
  355 +endobj
  356 +
  357 +19 0 obj
  358 +<<
  359 + /BBox [
  360 + 0
  361 + -2.826
  362 + 118.8
  363 + 11.322
  364 + ]
  365 + /Matrix [
  366 + 0
  367 + -1
  368 + 1
  369 + 0
  370 + 0
  371 + 612
  372 + ]
  373 + /Resources 2 0 R
  374 + /Subtype /Form
  375 + /Type /XObject
  376 + /Length 20 0 R
  377 +>>
  378 +stream
  379 +/Tx BMC
  380 +q
  381 +BT
  382 + /F1 18 Tf
  383 + (Formy field) Tj
  384 +ET
  385 +Q
  386 +EMC
  387 +endstream
  388 +endobj
  389 +
  390 +20 0 obj
  391 +53
  392 +endobj
  393 +
  394 +21 0 obj
  395 +<<
  396 + /BBox [
  397 + 0
  398 + -2.826
  399 + 140.4
  400 + 11.322
  401 + ]
  402 + /Matrix [
  403 + 1
  404 + 0
  405 + 0
  406 + 1
  407 + -612
  408 + 0
  409 + ]
  410 + /Resources 2 0 R
  411 + /Subtype /Form
  412 + /Type /XObject
  413 + /Length 22 0 R
  414 +>>
  415 +stream
  416 +/Tx BMC
  417 +q
  418 +BT
  419 + /F1 18 Tf
  420 + (Rot-ccw field) Tj
  421 +ET
  422 +Q
  423 +EMC
  424 +endstream
  425 +endobj
  426 +
  427 +22 0 obj
  428 +55
  429 +endobj
  430 +
  431 +23 0 obj
  432 +<<
  433 + /AP <<
  434 + /N <<
  435 + /1 44 0 R
  436 + /Off 46 0 R
  437 + >>
  438 + >>
  439 + /AS /1
  440 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
  441 + /DR <<
  442 + /Font <<
  443 + /ZaDi 35 0 R
  444 + >>
  445 + >>
  446 + /F 4
  447 + /FT /Btn
  448 + /MK <<
  449 + /CA (l)
  450 + >>
  451 + /Parent 8 0 R
  452 + /Rect [
  453 + 648.501
  454 + 447.199
  455 + 660.549
  456 + 459.251
  457 + ]
  458 + /Subtype /Widget
  459 + /Type /Annot
  460 +>>
  461 +endobj
  462 +
  463 +24 0 obj
  464 +<<
  465 + /AP <<
  466 + /N <<
  467 + /2 48 0 R
  468 + /Off 50 0 R
  469 + >>
  470 + >>
  471 + /AS /2
  472 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
  473 + /DR <<
  474 + /Font <<
  475 + /ZaDi 35 0 R
  476 + >>
  477 + >>
  478 + /F 4
  479 + /FT /Btn
  480 + /MK <<
  481 + /CA (l)
  482 + >>
  483 + /Parent 8 0 R
  484 + /Rect [
  485 + 627.301
  486 + 447.199
  487 + 639.349
  488 + 459.251
  489 + ]
  490 + /Subtype /Widget
  491 + /Type /Annot
  492 +>>
  493 +endobj
  494 +
  495 +25 0 obj
  496 +<<
  497 + /AP <<
  498 + /N <<
  499 + /3 52 0 R
  500 + /Off 54 0 R
  501 + >>
  502 + >>
  503 + /AS /3
  504 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
  505 + /DR <<
  506 + /Font <<
  507 + /ZaDi 35 0 R
  508 + >>
  509 + >>
  510 + /F 4
  511 + /FT /Btn
  512 + /MK <<
  513 + /CA (l)
  514 + >>
  515 + /Parent 8 0 R
  516 + /Rect [
  517 + 606.501
  518 + 448.549
  519 + 618.549
  520 + 460.601
  521 + ]
  522 + /Subtype /Widget
  523 + /Type /Annot
  524 +>>
  525 +endobj
  526 +
  527 +26 0 obj
  528 +<<
  529 + /EF <<
  530 + /F 56 0 R
  531 + /UF 56 0 R
  532 + >>
  533 + /F (attachment1.txt)
  534 + /Type /Filespec
  535 + /UF (attachment1.txt)
  536 +>>
  537 +endobj
  538 +
  539 +%% Page 1
  540 +27 0 obj
  541 +<<
  542 + /Annots [
  543 + 58 0 R
  544 + 3 0 R
  545 + 59 0 R
  546 + 4 0 R
  547 + 60 0 R
  548 + 61 0 R
  549 + 62 0 R
  550 + 63 0 R
  551 + 16 0 R
  552 + 17 0 R
  553 + 18 0 R
  554 + ]
  555 + /Contents [
  556 + 64 0 R
  557 + 66 0 R
  558 + 68 0 R
  559 + ]
  560 + /MediaBox [
  561 + 0
  562 + 0
  563 + 792
  564 + 612
  565 + ]
  566 + /Parent 10 0 R
  567 + /Resources 2 0 R
  568 + /Type /Page
  569 +>>
  570 +endobj
  571 +
  572 +%% Page 2
  573 +28 0 obj
  574 +<<
  575 + /Annots [
  576 + 70 0 R
  577 + 71 0 R
  578 + 72 0 R
  579 + 73 0 R
  580 + 74 0 R
  581 + 75 0 R
  582 + 6 0 R
  583 + 7 0 R
  584 + 23 0 R
  585 + 24 0 R
  586 + 25 0 R
  587 + ]
  588 + /Contents [
  589 + 76 0 R
  590 + 78 0 R
  591 + 80 0 R
  592 + ]
  593 + /MediaBox [
  594 + 0
  595 + 0
  596 + 792
  597 + 612
  598 + ]
  599 + /Parent 10 0 R
  600 + /Resources <<
  601 + /Font <<
  602 + /F1 82 0 R
  603 + >>
  604 + /ProcSet 83 0 R
  605 + >>
  606 + /Type /Page
  607 +>>
  608 +endobj
  609 +
  610 +%% Page 3
  611 +29 0 obj
  612 +<<
  613 + /Annots 84 0 R
  614 + /Contents 78 0 R
  615 + /MediaBox [
  616 + 0
  617 + 0
  618 + 612
  619 + 792
  620 + ]
  621 + /Parent 10 0 R
  622 + /Resources <<
  623 + /Font <<
  624 + /F1 82 0 R
  625 + >>
  626 + /ProcSet 83 0 R
  627 + >>
  628 + /Type /Page
  629 +>>
  630 +endobj
  631 +
  632 +%% Page 4
  633 +30 0 obj
  634 +<<
  635 + /Annots 84 0 R
  636 + /Contents 78 0 R
  637 + /MediaBox [
  638 + 0
  639 + 0
  640 + 612
  641 + 792
  642 + ]
  643 + /Parent 10 0 R
  644 + /Resources <<
  645 + /Font <<
  646 + /F1 82 0 R
  647 + >>
  648 + /ProcSet 83 0 R
  649 + >>
  650 + /Type /Page
  651 +>>
  652 +endobj
  653 +
  654 +31 0 obj
  655 +<<
  656 + /BBox [
  657 + 0
  658 + 0
  659 + 12.05
  660 + 12.05
  661 + ]
  662 + /Matrix [
  663 + 0
  664 + -1
  665 + 1
  666 + 0
  667 + 0
  668 + 612
  669 + ]
  670 + /Resources 85 0 R
  671 + /Subtype /Form
  672 + /Type /XObject
  673 + /Length 32 0 R
  674 +>>
  675 +stream
  676 +/Tx BMC
  677 +q BT
  678 +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
  679 +0 0 Td
  680 +ET
  681 +Q
  682 +1 0 0 rg
  683 +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
  684 +8.45 4.65 7.35 3.55 6 3.55 c
  685 +4.65 3.55 3.6 4.65 3.6 6 c
  686 +3.6 7.35 4.65 8.4 6 8.4 c f*
  687 +
  688 +EMC
  689 +endstream
  690 +endobj
  691 +
  692 +32 0 obj
  693 +202
  694 +endobj
  695 +
  696 +33 0 obj
  697 +<<
  698 + /BBox [
  699 + 0
  700 + 0
  701 + 12.05
  702 + 12.05
  703 + ]
  704 + /Matrix [
  705 + 0
  706 + -1
  707 + 1
  708 + 0
  709 + 0
  710 + 612
  711 + ]
  712 + /Resources 85 0 R
  713 + /Subtype /Form
  714 + /Type /XObject
  715 + /Length 34 0 R
  716 +>>
  717 +stream
  718 +/Tx BMC
  719 +EMC
  720 +endstream
  721 +endobj
  722 +
  723 +34 0 obj
  724 +12
  725 +endobj
  726 +
  727 +35 0 obj
  728 +<<
  729 + /BaseFont /ZapfDingbats
  730 + /Subtype /Type1
  731 + /Type /Font
  732 +>>
  733 +endobj
  734 +
  735 +36 0 obj
  736 +<<
  737 + /BBox [
  738 + 0
  739 + 0
  740 + 12.05
  741 + 12.05
  742 + ]
  743 + /Matrix [
  744 + 0
  745 + -1
  746 + 1
  747 + 0
  748 + 0
  749 + 612
  750 + ]
  751 + /Resources 85 0 R
  752 + /Subtype /Form
  753 + /Type /XObject
  754 + /Length 37 0 R
  755 +>>
  756 +stream
  757 +/Tx BMC
  758 +q BT
  759 +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
  760 +0 0 Td
  761 +ET
  762 +Q
  763 +0 1 0 rg
  764 +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
  765 +8.45 4.65 7.35 3.55 6 3.55 c
  766 +4.65 3.55 3.6 4.65 3.6 6 c
  767 +3.6 7.35 4.65 8.4 6 8.4 c f*
  768 +
  769 +EMC
  770 +endstream
  771 +endobj
  772 +
  773 +37 0 obj
  774 +202
  775 +endobj
  776 +
  777 +38 0 obj
  778 +<<
  779 + /BBox [
  780 + 0
  781 + 0
  782 + 12.05
  783 + 12.05
  784 + ]
  785 + /Matrix [
  786 + 0
  787 + -1
  788 + 1
  789 + 0
  790 + 0
  791 + 612
  792 + ]
  793 + /Resources 85 0 R
  794 + /Subtype /Form
  795 + /Type /XObject
  796 + /Length 39 0 R
  797 +>>
  798 +stream
  799 +/Tx BMC
  800 +EMC
  801 +endstream
  802 +endobj
  803 +
  804 +39 0 obj
  805 +12
  806 +endobj
  807 +
  808 +40 0 obj
  809 +<<
  810 + /BBox [
  811 + 0
  812 + 0
  813 + 12.05
  814 + 12.05
  815 + ]
  816 + /Matrix [
  817 + 0
  818 + -1
  819 + 1
  820 + 0
  821 + 0
  822 + 612
  823 + ]
  824 + /Resources 85 0 R
  825 + /Subtype /Form
  826 + /Type /XObject
  827 + /Length 41 0 R
  828 +>>
  829 +stream
  830 +/Tx BMC
  831 +q BT
  832 +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
  833 +0 0 Td
  834 +ET
  835 +Q
  836 +0 0 1 rg
  837 +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
  838 +8.45 4.65 7.35 3.55 6 3.55 c
  839 +4.65 3.55 3.6 4.65 3.6 6 c
  840 +3.6 7.35 4.65 8.4 6 8.4 c f*
  841 +
  842 +EMC
  843 +endstream
  844 +endobj
  845 +
  846 +41 0 obj
  847 +202
  848 +endobj
  849 +
  850 +42 0 obj
  851 +<<
  852 + /BBox [
  853 + 0
  854 + 0
  855 + 12.05
  856 + 12.05
  857 + ]
  858 + /Matrix [
  859 + 0
  860 + -1
  861 + 1
  862 + 0
  863 + 0
  864 + 612
  865 + ]
  866 + /Resources 85 0 R
  867 + /Subtype /Form
  868 + /Type /XObject
  869 + /Length 43 0 R
  870 +>>
  871 +stream
  872 +/Tx BMC
  873 +EMC
  874 +endstream
  875 +endobj
  876 +
  877 +43 0 obj
  878 +12
  879 +endobj
  880 +
  881 +44 0 obj
  882 +<<
  883 + /BBox [
  884 + 0
  885 + 0
  886 + 12.05
  887 + 12.05
  888 + ]
  889 + /Matrix [
  890 + 0
  891 + -1
  892 + 1
  893 + 0
  894 + 0
  895 + 612
  896 + ]
  897 + /Resources 85 0 R
  898 + /Subtype /Form
  899 + /Type /XObject
  900 + /Length 45 0 R
  901 +>>
  902 +stream
  903 +/Tx BMC
  904 +q BT
  905 +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
  906 +0 0 Td
  907 +ET
  908 +Q
  909 +1 0 0 rg
  910 +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
  911 +8.45 4.65 7.35 3.55 6 3.55 c
  912 +4.65 3.55 3.6 4.65 3.6 6 c
  913 +3.6 7.35 4.65 8.4 6 8.4 c f*
  914 +
  915 +EMC
  916 +endstream
  917 +endobj
  918 +
  919 +45 0 obj
  920 +202
  921 +endobj
  922 +
  923 +46 0 obj
  924 +<<
  925 + /BBox [
  926 + 0
  927 + 0
  928 + 12.05
  929 + 12.05
  930 + ]
  931 + /Matrix [
  932 + 0
  933 + -1
  934 + 1
  935 + 0
  936 + 0
  937 + 612
  938 + ]
  939 + /Resources 85 0 R
  940 + /Subtype /Form
  941 + /Type /XObject
  942 + /Length 47 0 R
  943 +>>
  944 +stream
  945 +/Tx BMC
  946 +EMC
  947 +endstream
  948 +endobj
  949 +
  950 +47 0 obj
  951 +12
  952 +endobj
  953 +
  954 +48 0 obj
  955 +<<
  956 + /BBox [
  957 + 0
  958 + 0
  959 + 12.05
  960 + 12.05
  961 + ]
  962 + /Matrix [
  963 + 0
  964 + -1
  965 + 1
  966 + 0
  967 + 0
  968 + 612
  969 + ]
  970 + /Resources 85 0 R
  971 + /Subtype /Form
  972 + /Type /XObject
  973 + /Length 49 0 R
  974 +>>
  975 +stream
  976 +/Tx BMC
  977 +q BT
  978 +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
  979 +0 0 Td
  980 +ET
  981 +Q
  982 +0 1 0 rg
  983 +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
  984 +8.45 4.65 7.35 3.55 6 3.55 c
  985 +4.65 3.55 3.6 4.65 3.6 6 c
  986 +3.6 7.35 4.65 8.4 6 8.4 c f*
  987 +
  988 +EMC
  989 +endstream
  990 +endobj
  991 +
  992 +49 0 obj
  993 +202
  994 +endobj
  995 +
  996 +50 0 obj
  997 +<<
  998 + /BBox [
  999 + 0
  1000 + 0
  1001 + 12.05
  1002 + 12.05
  1003 + ]
  1004 + /Matrix [
  1005 + 0
  1006 + -1
  1007 + 1
  1008 + 0
  1009 + 0
  1010 + 612
  1011 + ]
  1012 + /Resources 85 0 R
  1013 + /Subtype /Form
  1014 + /Type /XObject
  1015 + /Length 51 0 R
  1016 +>>
  1017 +stream
  1018 +/Tx BMC
  1019 +EMC
  1020 +endstream
  1021 +endobj
  1022 +
  1023 +51 0 obj
  1024 +12
  1025 +endobj
  1026 +
  1027 +52 0 obj
  1028 +<<
  1029 + /BBox [
  1030 + 0
  1031 + 0
  1032 + 12.05
  1033 + 12.05
  1034 + ]
  1035 + /Matrix [
  1036 + 0
  1037 + -1
  1038 + 1
  1039 + 0
  1040 + 0
  1041 + 612
  1042 + ]
  1043 + /Resources 85 0 R
  1044 + /Subtype /Form
  1045 + /Type /XObject
  1046 + /Length 53 0 R
  1047 +>>
  1048 +stream
  1049 +/Tx BMC
  1050 +q BT
  1051 +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
  1052 +0 0 Td
  1053 +ET
  1054 +Q
  1055 +0 0 1 rg
  1056 +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
  1057 +8.45 4.65 7.35 3.55 6 3.55 c
  1058 +4.65 3.55 3.6 4.65 3.6 6 c
  1059 +3.6 7.35 4.65 8.4 6 8.4 c f*
  1060 +
  1061 +EMC
  1062 +endstream
  1063 +endobj
  1064 +
  1065 +53 0 obj
  1066 +202
  1067 +endobj
  1068 +
  1069 +54 0 obj
  1070 +<<
  1071 + /BBox [
  1072 + 0
  1073 + 0
  1074 + 12.05
  1075 + 12.05
  1076 + ]
  1077 + /Matrix [
  1078 + 0
  1079 + -1
  1080 + 1
  1081 + 0
  1082 + 0
  1083 + 612
  1084 + ]
  1085 + /Resources 85 0 R
  1086 + /Subtype /Form
  1087 + /Type /XObject
  1088 + /Length 55 0 R
  1089 +>>
  1090 +stream
  1091 +/Tx BMC
  1092 +EMC
  1093 +endstream
  1094 +endobj
  1095 +
  1096 +55 0 obj
  1097 +12
  1098 +endobj
  1099 +
  1100 +56 0 obj
  1101 +<<
  1102 + /Params <<
  1103 + /CheckSum <80a33fc110b5a7b8b4d58b8d57e814bc>
  1104 + /Size 22
  1105 + /Subtype /text#2fplain
  1106 + >>
  1107 + /Type /EmbeddedFile
  1108 + /Length 57 0 R
  1109 +>>
  1110 +stream
  1111 +content of attachment
  1112 +endstream
  1113 +endobj
  1114 +
  1115 +57 0 obj
  1116 +22
  1117 +endobj
  1118 +
  1119 +58 0 obj
  1120 +<<
  1121 + /A <<
  1122 + /S /URI
  1123 + /URI (https://www.qbilt.org/)
  1124 + >>
  1125 + /Border [
  1126 + 0
  1127 + 0
  1128 + .4
  1129 + ]
  1130 + /C [
  1131 + .8
  1132 + .6
  1133 + .6
  1134 + ]
  1135 + /H /I
  1136 + /Rect [
  1137 + 501.832
  1138 + 237.6
  1139 + 520.696
  1140 + 540
  1141 + ]
  1142 + /Subtype /Link
  1143 + /Type /Annot
  1144 +>>
  1145 +endobj
  1146 +
  1147 +59 0 obj
  1148 +<<
  1149 + /AP <<
  1150 + /N 86 0 R
  1151 + >>
  1152 + /Contents (attachment1.txt)
  1153 + /FS 26 0 R
  1154 + /NM (attachment1.txt)
  1155 + /Rect [
  1156 + 400
  1157 + 520
  1158 + 420
  1159 + 540
  1160 + ]
  1161 + /Subtype /FileAttachment
  1162 + /Type /Annot
  1163 +>>
  1164 +endobj
  1165 +
  1166 +60 0 obj
  1167 +<<
  1168 + /AP <<
  1169 + /N 88 0 R
  1170 + >>
  1171 + /DA ()
  1172 + /Rect [
  1173 + 350
  1174 + 520
  1175 + 360
  1176 + 540
  1177 + ]
  1178 + /Subtype /FreeText
  1179 + /Type /Annot
  1180 +>>
  1181 +endobj
  1182 +
  1183 +61 0 obj
  1184 +<<
  1185 + /AP <<
  1186 + /N 90 0 R
  1187 + >>
  1188 + /DA ()
  1189 + /Rect [
  1190 + 350
  1191 + 500
  1192 + 370
  1193 + 510
  1194 + ]
  1195 + /Subtype /FreeText
  1196 + /Type /Annot
  1197 +>>
  1198 +endobj
  1199 +
  1200 +62 0 obj
  1201 +<<
  1202 + /AP <<
  1203 + /N 92 0 R
  1204 + >>
  1205 + /DA ()
  1206 + /Rect [
  1207 + 350
  1208 + 470
  1209 + 360
  1210 + 490
  1211 + ]
  1212 + /Subtype /FreeText
  1213 + /Type /Annot
  1214 +>>
  1215 +endobj
  1216 +
  1217 +63 0 obj
  1218 +<<
  1219 + /AP <<
  1220 + /N 94 0 R
  1221 + >>
  1222 + /DA ()
  1223 + /Rect [
  1224 + 350
  1225 + 450
  1226 + 370
  1227 + 460
  1228 + ]
  1229 + /Subtype /FreeText
  1230 + /Type /Annot
  1231 +>>
  1232 +endobj
  1233 +
  1234 +%% Contents for page 1
  1235 +64 0 obj
  1236 +<<
  1237 + /Length 65 0 R
  1238 +>>
  1239 +stream
  1240 +q
  1241 +0 -1 1 0 0 612 cm
  1242 +endstream
  1243 +endobj
  1244 +
  1245 +65 0 obj
  1246 +20
  1247 +endobj
  1248 +
  1249 +%% Contents for page 1
  1250 +66 0 obj
  1251 +<<
  1252 + /Length 67 0 R
  1253 +>>
  1254 +stream
  1255 +q
  1256 +1 1 .7 rg
  1257 +.5 .5 0 RG
  1258 +72 470.77 118.8 14.15 re
  1259 +B
  1260 +Q
  1261 +q
  1262 +0 .5 .5 RG
  1263 +0 1 1 rg
  1264 +372 330.77 14.15 139.4 re
  1265 +B
  1266 +Q
  1267 +q
  1268 +1 0 0 RG
  1269 +72 310 20 10 re
  1270 +72 310 5 10 re
  1271 +S
  1272 +0 1 0 RG
  1273 +102 310 10 20 re
  1274 +102 310 10 5 re
  1275 +S
  1276 +0 0 1 RG
  1277 +122 310 20 10 re
  1278 +137 310 5 10 re
  1279 +S
  1280 +0.5 0 1 RG
  1281 +152 310 10 20 re
  1282 +152 325 10 5 re
  1283 +S
  1284 +10 w
  1285 +0.14 .33 .18 RG
  1286 +5 5 602 782 re
  1287 +S
  1288 +Q
  1289 +BT
  1290 + /F1 16 Tf
  1291 + 20.6 TL
  1292 + 170 650 Td
  1293 + (radio button 1) Tj
  1294 + (radio button 2) '
  1295 + (radio button 3) '
  1296 + 1 0 0 1 72 546 Tm
  1297 + /F1 20 Tf
  1298 + (Thick green border surrounds page.) Tj
  1299 + 0 -40 Td
  1300 + /F1 24 Tf
  1301 + 0 0 1 rg
  1302 + (https://www.qbilt.org) Tj
  1303 + /F1 12 Tf
  1304 + 1 0 0 1 202 474 Tm
  1305 + (<- Formy field in yellow) Tj
  1306 + 1 0 0 1 392 410 Tm
  1307 + 14.4 TL
  1308 + (<- Rot-ccw field) Tj
  1309 + (with "Rot" at bottom) '
  1310 + (and text going up) '
  1311 + 0 g
  1312 + 1 0 0 1 102 405 Tm
  1313 + (Arrow to the left points down.) Tj
  1314 + 1 0 0 1 182 310 Tm
  1315 + (<- Drawn rectangles appear below annotations.) Tj
  1316 +ET
  1317 +endstream
  1318 +endobj
  1319 +
  1320 +67 0 obj
  1321 +874
  1322 +endobj
  1323 +
  1324 +%% Contents for page 1
  1325 +68 0 obj
  1326 +<<
  1327 + /Length 69 0 R
  1328 +>>
  1329 +stream
  1330 +
  1331 +Q
  1332 +endstream
  1333 +endobj
  1334 +
  1335 +69 0 obj
  1336 +3
  1337 +endobj
  1338 +
  1339 +70 0 obj
  1340 +<<
  1341 + /A <<
  1342 + /S /URI
  1343 + /URI (https://www.qbilt.org/)
  1344 + >>
  1345 + /Border [
  1346 + 0
  1347 + 0
  1348 + .4
  1349 + ]
  1350 + /C [
  1351 + .8
  1352 + .6
  1353 + .6
  1354 + ]
  1355 + /H /I
  1356 + /Rect [
  1357 + 501.832
  1358 + 237.6
  1359 + 520.696
  1360 + 540
  1361 + ]
  1362 + /Subtype /Link
  1363 + /Type /Annot
  1364 +>>
  1365 +endobj
  1366 +
  1367 +71 0 obj
  1368 +<<
  1369 + /AP <<
  1370 + /N 96 0 R
  1371 + >>
  1372 + /Contents (attachment1.txt)
  1373 + /FS 26 0 R
  1374 + /NM (attachment1.txt)
  1375 + /Rect [
  1376 + 400
  1377 + 520
  1378 + 420
  1379 + 540
  1380 + ]
  1381 + /Subtype /FileAttachment
  1382 + /Type /Annot
  1383 +>>
  1384 +endobj
  1385 +
  1386 +72 0 obj
  1387 +<<
  1388 + /AP <<
  1389 + /N 98 0 R
  1390 + >>
  1391 + /DA ()
  1392 + /Rect [
  1393 + 350
  1394 + 520
  1395 + 360
  1396 + 540
  1397 + ]
  1398 + /Subtype /FreeText
  1399 + /Type /Annot
  1400 +>>
  1401 +endobj
  1402 +
  1403 +73 0 obj
  1404 +<<
  1405 + /AP <<
  1406 + /N 100 0 R
  1407 + >>
  1408 + /DA ()
  1409 + /Rect [
  1410 + 350
  1411 + 500
  1412 + 370
  1413 + 510
  1414 + ]
  1415 + /Subtype /FreeText
  1416 + /Type /Annot
  1417 +>>
  1418 +endobj
  1419 +
  1420 +74 0 obj
  1421 +<<
  1422 + /AP <<
  1423 + /N 102 0 R
  1424 + >>
  1425 + /DA ()
  1426 + /Rect [
  1427 + 350
  1428 + 470
  1429 + 360
  1430 + 490
  1431 + ]
  1432 + /Subtype /FreeText
  1433 + /Type /Annot
  1434 +>>
  1435 +endobj
  1436 +
  1437 +75 0 obj
  1438 +<<
  1439 + /AP <<
  1440 + /N 104 0 R
  1441 + >>
  1442 + /DA ()
  1443 + /Rect [
  1444 + 350
  1445 + 450
  1446 + 370
  1447 + 460
  1448 + ]
  1449 + /Subtype /FreeText
  1450 + /Type /Annot
  1451 +>>
  1452 +endobj
  1453 +
  1454 +%% Contents for page 2
  1455 +76 0 obj
  1456 +<<
  1457 + /Length 77 0 R
  1458 +>>
  1459 +stream
  1460 +q
  1461 +0 -1 1 0 0 612 cm
  1462 +endstream
  1463 +endobj
  1464 +
  1465 +77 0 obj
  1466 +20
  1467 +endobj
  1468 +
  1469 +%% Contents for page 4
  1470 +78 0 obj
  1471 +<<
  1472 + /Length 79 0 R
  1473 +>>
  1474 +stream
  1475 +BT
  1476 + /F1 24 Tf
  1477 + 72 720 Td
  1478 + (Potato) Tj
  1479 +ET
  1480 +endstream
  1481 +endobj
  1482 +
  1483 +79 0 obj
  1484 +44
  1485 +endobj
  1486 +
  1487 +%% Contents for page 2
  1488 +80 0 obj
  1489 +<<
  1490 + /Length 81 0 R
  1491 +>>
  1492 +stream
  1493 +
  1494 +Q
  1495 +endstream
  1496 +endobj
  1497 +
  1498 +81 0 obj
  1499 +3
  1500 +endobj
  1501 +
  1502 +82 0 obj
  1503 +<<
  1504 + /BaseFont /Helvetica
  1505 + /Encoding /WinAnsiEncoding
  1506 + /Name /F1
  1507 + /Subtype /Type1
  1508 + /Type /Font
  1509 +>>
  1510 +endobj
  1511 +
  1512 +83 0 obj
  1513 +[
  1514 + /PDF
  1515 + /Text
  1516 +]
  1517 +endobj
  1518 +
  1519 +84 0 obj
  1520 +[
  1521 + 106 0 R
  1522 + 107 0 R
  1523 + 108 0 R
  1524 + 109 0 R
  1525 + 110 0 R
  1526 + 111 0 R
  1527 + 112 0 R
  1528 + 113 0 R
  1529 + 114 0 R
  1530 + 115 0 R
  1531 + 116 0 R
  1532 +]
  1533 +endobj
  1534 +
  1535 +85 0 obj
  1536 +<<
  1537 + /Font 117 0 R
  1538 + /ProcSet [
  1539 + /PDF
  1540 + /Text
  1541 + ]
  1542 +>>
  1543 +endobj
  1544 +
  1545 +86 0 obj
  1546 +<<
  1547 + /BBox [
  1548 + 0
  1549 + 0
  1550 + 20
  1551 + 20
  1552 + ]
  1553 + /Matrix [
  1554 + 0
  1555 + -1
  1556 + 1
  1557 + 0
  1558 + 0
  1559 + 612
  1560 + ]
  1561 + /Resources <<
  1562 + >>
  1563 + /Subtype /Form
  1564 + /Type /XObject
  1565 + /Length 87 0 R
  1566 +>>
  1567 +stream
  1568 +0 10 m
  1569 +10 0 l
  1570 +20 10 l
  1571 +10 0 m
  1572 +10 20 l
  1573 +0 0 20 20 re
  1574 +S
  1575 +endstream
  1576 +endobj
  1577 +
  1578 +87 0 obj
  1579 +52
  1580 +endobj
  1581 +
  1582 +88 0 obj
  1583 +<<
  1584 + /BBox [
  1585 + 0
  1586 + 0
  1587 + 20
  1588 + 10
  1589 + ]
  1590 + /Matrix [
  1591 + 0
  1592 + -1
  1593 + 1
  1594 + 0
  1595 + 0
  1596 + 612
  1597 + ]
  1598 + /Resources 2 0 R
  1599 + /Subtype /Form
  1600 + /Type /XObject
  1601 + /Length 89 0 R
  1602 +>>
  1603 +stream
  1604 +1 0 0 RG
  1605 +0 0 20 10 re
  1606 +0 0 5 10 re
  1607 +S
  1608 +endstream
  1609 +endobj
  1610 +
  1611 +89 0 obj
  1612 +36
  1613 +endobj
  1614 +
  1615 +90 0 obj
  1616 +<<
  1617 + /BBox [
  1618 + 0
  1619 + 0
  1620 + 20
  1621 + 10
  1622 + ]
  1623 + /Matrix [
  1624 + 1
  1625 + 0
  1626 + 0
  1627 + 1
  1628 + -612
  1629 + 0
  1630 + ]
  1631 + /Resources 2 0 R
  1632 + /Subtype /Form
  1633 + /Type /XObject
  1634 + /Length 91 0 R
  1635 +>>
  1636 +stream
  1637 +0 1 0 RG
  1638 +0 0 20 10 re
  1639 +0 0 5 10 re
  1640 +S
  1641 +endstream
  1642 +endobj
  1643 +
  1644 +91 0 obj
  1645 +36
  1646 +endobj
  1647 +
  1648 +92 0 obj
  1649 +<<
  1650 + /BBox [
  1651 + 0
  1652 + 0
  1653 + 20
  1654 + 10
  1655 + ]
  1656 + /Matrix [
  1657 + -0
  1658 + 1
  1659 + -1
  1660 + 0
  1661 + 0
  1662 + -612
  1663 + ]
  1664 + /Resources 2 0 R
  1665 + /Subtype /Form
  1666 + /Type /XObject
  1667 + /Length 93 0 R
  1668 +>>
  1669 +stream
  1670 +0 0 1 RG
  1671 +0 0 20 10 re
  1672 +0 0 5 10 re
  1673 +S
  1674 +endstream
  1675 +endobj
  1676 +
  1677 +93 0 obj
  1678 +36
  1679 +endobj
  1680 +
  1681 +94 0 obj
  1682 +<<
  1683 + /BBox [
  1684 + 0
  1685 + 0
  1686 + 20
  1687 + 10
  1688 + ]
  1689 + /Matrix [
  1690 + -1
  1691 + -0
  1692 + 0
  1693 + -1
  1694 + 612
  1695 + 0
  1696 + ]
  1697 + /Resources 2 0 R
  1698 + /Subtype /Form
  1699 + /Type /XObject
  1700 + /Length 95 0 R
  1701 +>>
  1702 +stream
  1703 +0.5 0 1 RG
  1704 +0 0 20 10 re
  1705 +0 0 5 10 re
  1706 +S
  1707 +endstream
  1708 +endobj
  1709 +
  1710 +95 0 obj
  1711 +38
  1712 +endobj
  1713 +
  1714 +96 0 obj
  1715 +<<
  1716 + /BBox [
  1717 + 0
  1718 + 0
  1719 + 20
  1720 + 20
  1721 + ]
  1722 + /Matrix [
  1723 + 0
  1724 + -1
  1725 + 1
  1726 + 0
  1727 + 0
  1728 + 612
  1729 + ]
  1730 + /Resources <<
  1731 + >>
  1732 + /Subtype /Form
  1733 + /Type /XObject
  1734 + /Length 97 0 R
  1735 +>>
  1736 +stream
  1737 +0 10 m
  1738 +10 0 l
  1739 +20 10 l
  1740 +10 0 m
  1741 +10 20 l
  1742 +0 0 20 20 re
  1743 +S
  1744 +endstream
  1745 +endobj
  1746 +
  1747 +97 0 obj
  1748 +52
  1749 +endobj
  1750 +
  1751 +98 0 obj
  1752 +<<
  1753 + /BBox [
  1754 + 0
  1755 + 0
  1756 + 20
  1757 + 10
  1758 + ]
  1759 + /Matrix [
  1760 + 0
  1761 + -1
  1762 + 1
  1763 + 0
  1764 + 0
  1765 + 612
  1766 + ]
  1767 + /Resources 2 0 R
  1768 + /Subtype /Form
  1769 + /Type /XObject
  1770 + /Length 99 0 R
  1771 +>>
  1772 +stream
  1773 +1 0 0 RG
  1774 +0 0 20 10 re
  1775 +0 0 5 10 re
  1776 +S
  1777 +endstream
  1778 +endobj
  1779 +
  1780 +99 0 obj
  1781 +36
  1782 +endobj
  1783 +
  1784 +100 0 obj
  1785 +<<
  1786 + /BBox [
  1787 + 0
  1788 + 0
  1789 + 20
  1790 + 10
  1791 + ]
  1792 + /Matrix [
  1793 + 1
  1794 + 0
  1795 + 0
  1796 + 1
  1797 + -612
  1798 + 0
  1799 + ]
  1800 + /Resources 2 0 R
  1801 + /Subtype /Form
  1802 + /Type /XObject
  1803 + /Length 101 0 R
  1804 +>>
  1805 +stream
  1806 +0 1 0 RG
  1807 +0 0 20 10 re
  1808 +0 0 5 10 re
  1809 +S
  1810 +endstream
  1811 +endobj
  1812 +
  1813 +101 0 obj
  1814 +36
  1815 +endobj
  1816 +
  1817 +102 0 obj
  1818 +<<
  1819 + /BBox [
  1820 + 0
  1821 + 0
  1822 + 20
  1823 + 10
  1824 + ]
  1825 + /Matrix [
  1826 + -0
  1827 + 1
  1828 + -1
  1829 + 0
  1830 + 0
  1831 + -612
  1832 + ]
  1833 + /Resources 2 0 R
  1834 + /Subtype /Form
  1835 + /Type /XObject
  1836 + /Length 103 0 R
  1837 +>>
  1838 +stream
  1839 +0 0 1 RG
  1840 +0 0 20 10 re
  1841 +0 0 5 10 re
  1842 +S
  1843 +endstream
  1844 +endobj
  1845 +
  1846 +103 0 obj
  1847 +36
  1848 +endobj
  1849 +
  1850 +104 0 obj
  1851 +<<
  1852 + /BBox [
  1853 + 0
  1854 + 0
  1855 + 20
  1856 + 10
  1857 + ]
  1858 + /Matrix [
  1859 + -1
  1860 + -0
  1861 + 0
  1862 + -1
  1863 + 612
  1864 + 0
  1865 + ]
  1866 + /Resources 2 0 R
  1867 + /Subtype /Form
  1868 + /Type /XObject
  1869 + /Length 105 0 R
  1870 +>>
  1871 +stream
  1872 +0.5 0 1 RG
  1873 +0 0 20 10 re
  1874 +0 0 5 10 re
  1875 +S
  1876 +endstream
  1877 +endobj
  1878 +
  1879 +105 0 obj
  1880 +38
  1881 +endobj
  1882 +
  1883 +106 0 obj
  1884 +<<
  1885 + /A <<
  1886 + /S /URI
  1887 + /URI (https://www.qbilt.org/)
  1888 + >>
  1889 + /Border [
  1890 + 0
  1891 + 0
  1892 + .4
  1893 + ]
  1894 + /C [
  1895 + .8
  1896 + .6
  1897 + .6
  1898 + ]
  1899 + /H /I
  1900 + /Rect [
  1901 + 72
  1902 + 501.832
  1903 + 374.4
  1904 + 520.696
  1905 + ]
  1906 + /Subtype /Link
  1907 + /Type /Annot
  1908 +>>
  1909 +endobj
  1910 +
  1911 +107 0 obj
  1912 +<<
  1913 + /AP <<
  1914 + /N 118 0 R
  1915 + >>
  1916 + /Contents (attachment1.txt)
  1917 + /FS 26 0 R
  1918 + /NM (attachment1.txt)
  1919 + /Rect [
  1920 + 72
  1921 + 400
  1922 + 92
  1923 + 420
  1924 + ]
  1925 + /Subtype /FileAttachment
  1926 + /Type /Annot
  1927 +>>
  1928 +endobj
  1929 +
  1930 +108 0 obj
  1931 +<<
  1932 + /AP <<
  1933 + /N 120 0 R
  1934 + >>
  1935 + /DA ()
  1936 + /Rect [
  1937 + 72
  1938 + 350
  1939 + 92
  1940 + 360
  1941 + ]
  1942 + /Subtype /FreeText
  1943 + /Type /Annot
  1944 +>>
  1945 +endobj
  1946 +
  1947 +109 0 obj
  1948 +<<
  1949 + /AP <<
  1950 + /N 122 0 R
  1951 + >>
  1952 + /DA ()
  1953 + /Rect [
  1954 + 102
  1955 + 350
  1956 + 112
  1957 + 370
  1958 + ]
  1959 + /Subtype /FreeText
  1960 + /Type /Annot
  1961 +>>
  1962 +endobj
  1963 +
  1964 +110 0 obj
  1965 +<<
  1966 + /AP <<
  1967 + /N 124 0 R
  1968 + >>
  1969 + /DA ()
  1970 + /Rect [
  1971 + 122
  1972 + 350
  1973 + 142
  1974 + 360
  1975 + ]
  1976 + /Subtype /FreeText
  1977 + /Type /Annot
  1978 +>>
  1979 +endobj
  1980 +
  1981 +111 0 obj
  1982 +<<
  1983 + /AP <<
  1984 + /N 126 0 R
  1985 + >>
  1986 + /DA ()
  1987 + /Rect [
  1988 + 152
  1989 + 350
  1990 + 162
  1991 + 370
  1992 + ]
  1993 + /Subtype /FreeText
  1994 + /Type /Annot
  1995 +>>
  1996 +endobj
  1997 +
  1998 +112 0 obj
  1999 +<<
  2000 + /AP <<
  2001 + /N 128 0 R
  2002 + >>
  2003 + /DA (0 0.4 0 rg /F1 18 Tf)
  2004 + /DR 2 0 R
  2005 + /DV ()
  2006 + /FT /Tx
  2007 + /Ff 0
  2008 + /Rect [
  2009 + 72
  2010 + 470.774
  2011 + 190.8
  2012 + 484.922
  2013 + ]
  2014 + /Subtype /Widget
  2015 + /T (Text Box 1)
  2016 + /Type /Annot
  2017 + /V (Formy field)
  2018 +>>
  2019 +endobj
  2020 +
  2021 +113 0 obj
  2022 +<<
  2023 + /AP <<
  2024 + /N 130 0 R
  2025 + >>
  2026 + /DA (0 0.4 0 rg /F1 18 Tf)
  2027 + /DR 2 0 R
  2028 + /DV ()
  2029 + /FT /Tx
  2030 + /Ff 0
  2031 + /Rect [
  2032 + 372
  2033 + 330.774
  2034 + 386.148
  2035 + 470.374
  2036 + ]
  2037 + /Subtype /Widget
  2038 + /T (Text Box 1)
  2039 + /Type /Annot
  2040 + /V (Rot-ccw field)
  2041 +>>
  2042 +endobj
  2043 +
  2044 +114 0 obj
  2045 +<<
  2046 + /AP <<
  2047 + /N <<
  2048 + /1 132 0 R
  2049 + /Off 134 0 R
  2050 + >>
  2051 + >>
  2052 + /AS /1
  2053 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
  2054 + /DR <<
  2055 + /Font <<
  2056 + /ZaDi 35 0 R
  2057 + >>
  2058 + >>
  2059 + /F 4
  2060 + /FT /Btn
  2061 + /MK <<
  2062 + /CA (l)
  2063 + >>
  2064 + /Parent 136 0 R
  2065 + /Rect [
  2066 + 152.749
  2067 + 648.501
  2068 + 164.801
  2069 + 660.549
  2070 + ]
  2071 + /Subtype /Widget
  2072 + /Type /Annot
  2073 +>>
  2074 +endobj
  2075 +
  2076 +115 0 obj
  2077 +<<
  2078 + /AP <<
  2079 + /N <<
  2080 + /2 137 0 R
  2081 + /Off 139 0 R
  2082 + >>
  2083 + >>
  2084 + /AS /2
  2085 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
  2086 + /DR <<
  2087 + /Font <<
  2088 + /ZaDi 35 0 R
  2089 + >>
  2090 + >>
  2091 + /F 4
  2092 + /FT /Btn
  2093 + /MK <<
  2094 + /CA (l)
  2095 + >>
  2096 + /Parent 136 0 R
  2097 + /Rect [
  2098 + 152.749
  2099 + 627.301
  2100 + 164.801
  2101 + 639.349
  2102 + ]
  2103 + /Subtype /Widget
  2104 + /Type /Annot
  2105 +>>
  2106 +endobj
  2107 +
  2108 +116 0 obj
  2109 +<<
  2110 + /AP <<
  2111 + /N <<
  2112 + /3 141 0 R
  2113 + /Off 143 0 R
  2114 + >>
  2115 + >>
  2116 + /AS /3
  2117 + /DA (0.18039 0.20392 0.21176 rg /ZaDi 0 Tf)
  2118 + /DR <<
  2119 + /Font <<
  2120 + /ZaDi 35 0 R
  2121 + >>
  2122 + >>
  2123 + /F 4
  2124 + /FT /Btn
  2125 + /MK <<
  2126 + /CA (l)
  2127 + >>
  2128 + /Parent 136 0 R
  2129 + /Rect [
  2130 + 151.399
  2131 + 606.501
  2132 + 163.451
  2133 + 618.549
  2134 + ]
  2135 + /Subtype /Widget
  2136 + /Type /Annot
  2137 +>>
  2138 +endobj
  2139 +
  2140 +117 0 obj
  2141 +<<
  2142 + /ZaDi 35 0 R
  2143 +>>
  2144 +endobj
  2145 +
  2146 +118 0 obj
  2147 +<<
  2148 + /BBox [
  2149 + 0
  2150 + 0
  2151 + 20
  2152 + 20
  2153 + ]
  2154 + /Resources <<
  2155 + >>
  2156 + /Subtype /Form
  2157 + /Type /XObject
  2158 + /Length 119 0 R
  2159 +>>
  2160 +stream
  2161 +0 10 m
  2162 +10 0 l
  2163 +20 10 l
  2164 +10 0 m
  2165 +10 20 l
  2166 +0 0 20 20 re
  2167 +S
  2168 +endstream
  2169 +endobj
  2170 +
  2171 +119 0 obj
  2172 +52
  2173 +endobj
  2174 +
  2175 +120 0 obj
  2176 +<<
  2177 + /BBox [
  2178 + 0
  2179 + 0
  2180 + 20
  2181 + 10
  2182 + ]
  2183 + /Resources 2 0 R
  2184 + /Subtype /Form
  2185 + /Type /XObject
  2186 + /Length 121 0 R
  2187 +>>
  2188 +stream
  2189 +1 0 0 RG
  2190 +0 0 20 10 re
  2191 +0 0 5 10 re
  2192 +S
  2193 +endstream
  2194 +endobj
  2195 +
  2196 +121 0 obj
  2197 +36
  2198 +endobj
  2199 +
  2200 +122 0 obj
  2201 +<<
  2202 + /BBox [
  2203 + 0
  2204 + 0
  2205 + 20
  2206 + 10
  2207 + ]
  2208 + /Matrix [
  2209 + 0
  2210 + 1
  2211 + -1
  2212 + 0
  2213 + 0
  2214 + 0
  2215 + ]
  2216 + /Resources 2 0 R
  2217 + /Subtype /Form
  2218 + /Type /XObject
  2219 + /Length 123 0 R
  2220 +>>
  2221 +stream
  2222 +0 1 0 RG
  2223 +0 0 20 10 re
  2224 +0 0 5 10 re
  2225 +S
  2226 +endstream
  2227 +endobj
  2228 +
  2229 +123 0 obj
  2230 +36
  2231 +endobj
  2232 +
  2233 +124 0 obj
  2234 +<<
  2235 + /BBox [
  2236 + 0
  2237 + 0
  2238 + 20
  2239 + 10
  2240 + ]
  2241 + /Matrix [
  2242 + -1
  2243 + 0
  2244 + 0
  2245 + -1
  2246 + 0
  2247 + 0
  2248 + ]
  2249 + /Resources 2 0 R
  2250 + /Subtype /Form
  2251 + /Type /XObject
  2252 + /Length 125 0 R
  2253 +>>
  2254 +stream
  2255 +0 0 1 RG
  2256 +0 0 20 10 re
  2257 +0 0 5 10 re
  2258 +S
  2259 +endstream
  2260 +endobj
  2261 +
  2262 +125 0 obj
  2263 +36
  2264 +endobj
  2265 +
  2266 +126 0 obj
  2267 +<<
  2268 + /BBox [
  2269 + 0
  2270 + 0
  2271 + 20
  2272 + 10
  2273 + ]
  2274 + /Matrix [
  2275 + 0
  2276 + -1
  2277 + 1
  2278 + 0
  2279 + 0
  2280 + 0
  2281 + ]
  2282 + /Resources 2 0 R
  2283 + /Subtype /Form
  2284 + /Type /XObject
  2285 + /Length 127 0 R
  2286 +>>
  2287 +stream
  2288 +0.5 0 1 RG
  2289 +0 0 20 10 re
  2290 +0 0 5 10 re
  2291 +S
  2292 +endstream
  2293 +endobj
  2294 +
  2295 +127 0 obj
  2296 +38
  2297 +endobj
  2298 +
  2299 +128 0 obj
  2300 +<<
  2301 + /BBox [
  2302 + 0
  2303 + -2.826
  2304 + 118.8
  2305 + 11.322
  2306 + ]
  2307 + /Resources 2 0 R
  2308 + /Subtype /Form
  2309 + /Type /XObject
  2310 + /Length 129 0 R
  2311 +>>
  2312 +stream
  2313 +/Tx BMC
  2314 +q
  2315 +BT
  2316 + /F1 18 Tf
  2317 + (Formy field) Tj
  2318 +ET
  2319 +Q
  2320 +EMC
  2321 +endstream
  2322 +endobj
  2323 +
  2324 +129 0 obj
  2325 +53
  2326 +endobj
  2327 +
  2328 +130 0 obj
  2329 +<<
  2330 + /BBox [
  2331 + 0
  2332 + -2.826
  2333 + 140.4
  2334 + 11.322
  2335 + ]
  2336 + /Matrix [
  2337 + 0
  2338 + 1
  2339 + -1
  2340 + 0
  2341 + 0
  2342 + 0
  2343 + ]
  2344 + /Resources 2 0 R
  2345 + /Subtype /Form
  2346 + /Type /XObject
  2347 + /Length 131 0 R
  2348 +>>
  2349 +stream
  2350 +/Tx BMC
  2351 +q
  2352 +BT
  2353 + /F1 18 Tf
  2354 + (Rot-ccw field) Tj
  2355 +ET
  2356 +Q
  2357 +EMC
  2358 +endstream
  2359 +endobj
  2360 +
  2361 +131 0 obj
  2362 +55
  2363 +endobj
  2364 +
  2365 +132 0 obj
  2366 +<<
  2367 + /BBox [
  2368 + 0
  2369 + 0
  2370 + 12.05
  2371 + 12.05
  2372 + ]
  2373 + /Resources 85 0 R
  2374 + /Subtype /Form
  2375 + /Type /XObject
  2376 + /Length 133 0 R
  2377 +>>
  2378 +stream
  2379 +/Tx BMC
  2380 +q BT
  2381 +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
  2382 +0 0 Td
  2383 +ET
  2384 +Q
  2385 +1 0 0 rg
  2386 +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
  2387 +8.45 4.65 7.35 3.55 6 3.55 c
  2388 +4.65 3.55 3.6 4.65 3.6 6 c
  2389 +3.6 7.35 4.65 8.4 6 8.4 c f*
  2390 +
  2391 +EMC
  2392 +endstream
  2393 +endobj
  2394 +
  2395 +133 0 obj
  2396 +202
  2397 +endobj
  2398 +
  2399 +134 0 obj
  2400 +<<
  2401 + /BBox [
  2402 + 0
  2403 + 0
  2404 + 12.05
  2405 + 12.05
  2406 + ]
  2407 + /Resources 85 0 R
  2408 + /Subtype /Form
  2409 + /Type /XObject
  2410 + /Length 135 0 R
  2411 +>>
  2412 +stream
  2413 +/Tx BMC
  2414 +EMC
  2415 +endstream
  2416 +endobj
  2417 +
  2418 +135 0 obj
  2419 +12
  2420 +endobj
  2421 +
  2422 +136 0 obj
  2423 +<<
  2424 + /DV /1
  2425 + /FT /Btn
  2426 + /Ff 49152
  2427 + /Kids [
  2428 + 114 0 R
  2429 + 115 0 R
  2430 + 116 0 R
  2431 + ]
  2432 + /T (r1)
  2433 + /V /2
  2434 +>>
  2435 +endobj
  2436 +
  2437 +137 0 obj
  2438 +<<
  2439 + /BBox [
  2440 + 0
  2441 + 0
  2442 + 12.05
  2443 + 12.05
  2444 + ]
  2445 + /Resources 85 0 R
  2446 + /Subtype /Form
  2447 + /Type /XObject
  2448 + /Length 138 0 R
  2449 +>>
  2450 +stream
  2451 +/Tx BMC
  2452 +q BT
  2453 +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
  2454 +0 0 Td
  2455 +ET
  2456 +Q
  2457 +0 1 0 rg
  2458 +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
  2459 +8.45 4.65 7.35 3.55 6 3.55 c
  2460 +4.65 3.55 3.6 4.65 3.6 6 c
  2461 +3.6 7.35 4.65 8.4 6 8.4 c f*
  2462 +
  2463 +EMC
  2464 +endstream
  2465 +endobj
  2466 +
  2467 +138 0 obj
  2468 +202
  2469 +endobj
  2470 +
  2471 +139 0 obj
  2472 +<<
  2473 + /BBox [
  2474 + 0
  2475 + 0
  2476 + 12.05
  2477 + 12.05
  2478 + ]
  2479 + /Resources 85 0 R
  2480 + /Subtype /Form
  2481 + /Type /XObject
  2482 + /Length 140 0 R
  2483 +>>
  2484 +stream
  2485 +/Tx BMC
  2486 +EMC
  2487 +endstream
  2488 +endobj
  2489 +
  2490 +140 0 obj
  2491 +12
  2492 +endobj
  2493 +
  2494 +141 0 obj
  2495 +<<
  2496 + /BBox [
  2497 + 0
  2498 + 0
  2499 + 12.05
  2500 + 12.05
  2501 + ]
  2502 + /Resources 85 0 R
  2503 + /Subtype /Form
  2504 + /Type /XObject
  2505 + /Length 142 0 R
  2506 +>>
  2507 +stream
  2508 +/Tx BMC
  2509 +q BT
  2510 +0.18039 0.20392 0.21176 rg /ZaDi 12.05 Tf
  2511 +0 0 Td
  2512 +ET
  2513 +Q
  2514 +0 0 1 rg
  2515 +6 8.4 m 7.35 8.4 8.45 7.35 8.45 6 c
  2516 +8.45 4.65 7.35 3.55 6 3.55 c
  2517 +4.65 3.55 3.6 4.65 3.6 6 c
  2518 +3.6 7.35 4.65 8.4 6 8.4 c f*
  2519 +
  2520 +EMC
  2521 +endstream
  2522 +endobj
  2523 +
  2524 +142 0 obj
  2525 +202
  2526 +endobj
  2527 +
  2528 +143 0 obj
  2529 +<<
  2530 + /BBox [
  2531 + 0
  2532 + 0
  2533 + 12.05
  2534 + 12.05
  2535 + ]
  2536 + /Resources 85 0 R
  2537 + /Subtype /Form
  2538 + /Type /XObject
  2539 + /Length 144 0 R
  2540 +>>
  2541 +stream
  2542 +/Tx BMC
  2543 +EMC
  2544 +endstream
  2545 +endobj
  2546 +
  2547 +144 0 obj
  2548 +12
  2549 +endobj
  2550 +
  2551 +xref
  2552 +0 145
  2553 +0000000000 65535 f
  2554 +0000000025 00000 n
  2555 +0000000248 00000 n
  2556 +0000000301 00000 n
  2557 +0000000546 00000 n
  2558 +0000000795 00000 n
  2559 +0000000914 00000 n
  2560 +0000001159 00000 n
  2561 +0000001408 00000 n
  2562 +0000001527 00000 n
  2563 +0000001597 00000 n
  2564 +0000001704 00000 n
  2565 +0000001809 00000 n
  2566 +0000002079 00000 n
  2567 +0000002099 00000 n
  2568 +0000002371 00000 n
  2569 +0000002391 00000 n
  2570 +0000002743 00000 n
  2571 +0000003095 00000 n
  2572 +0000003447 00000 n
  2573 +0000003717 00000 n
  2574 +0000003737 00000 n
  2575 +0000004009 00000 n
  2576 +0000004029 00000 n
  2577 +0000004381 00000 n
  2578 +0000004733 00000 n
  2579 +0000005085 00000 n
  2580 +0000005226 00000 n
  2581 +0000005541 00000 n
  2582 +0000005915 00000 n
  2583 +0000006139 00000 n
  2584 +0000006353 00000 n
  2585 +0000006767 00000 n
  2586 +0000006788 00000 n
  2587 +0000007012 00000 n
  2588 +0000007032 00000 n
  2589 +0000007113 00000 n
  2590 +0000007527 00000 n
  2591 +0000007548 00000 n
  2592 +0000007772 00000 n
  2593 +0000007792 00000 n
  2594 +0000008206 00000 n
  2595 +0000008227 00000 n
  2596 +0000008451 00000 n
  2597 +0000008471 00000 n
  2598 +0000008885 00000 n
  2599 +0000008906 00000 n
  2600 +0000009130 00000 n
  2601 +0000009150 00000 n
  2602 +0000009564 00000 n
  2603 +0000009585 00000 n
  2604 +0000009809 00000 n
  2605 +0000009829 00000 n
  2606 +0000010243 00000 n
  2607 +0000010264 00000 n
  2608 +0000010488 00000 n
  2609 +0000010508 00000 n
  2610 +0000010716 00000 n
  2611 +0000010736 00000 n
  2612 +0000010981 00000 n
  2613 +0000011187 00000 n
  2614 +0000011329 00000 n
  2615 +0000011471 00000 n
  2616 +0000011613 00000 n
  2617 +0000011778 00000 n
  2618 +0000011855 00000 n
  2619 +0000011898 00000 n
  2620 +0000012829 00000 n
  2621 +0000012873 00000 n
  2622 +0000012933 00000 n
  2623 +0000012952 00000 n
  2624 +0000013197 00000 n
  2625 +0000013403 00000 n
  2626 +0000013545 00000 n
  2627 +0000013688 00000 n
  2628 +0000013831 00000 n
  2629 +0000013997 00000 n
  2630 +0000014074 00000 n
  2631 +0000014117 00000 n
  2632 +0000014218 00000 n
  2633 +0000014261 00000 n
  2634 +0000014321 00000 n
  2635 +0000014340 00000 n
  2636 +0000014459 00000 n
  2637 +0000014495 00000 n
  2638 +0000014626 00000 n
  2639 +0000014701 00000 n
  2640 +0000014960 00000 n
  2641 +0000014980 00000 n
  2642 +0000015221 00000 n
  2643 +0000015241 00000 n
  2644 +0000015482 00000 n
  2645 +0000015502 00000 n
  2646 +0000015745 00000 n
  2647 +0000015765 00000 n
  2648 +0000016010 00000 n
  2649 +0000016030 00000 n
  2650 +0000016289 00000 n
  2651 +0000016309 00000 n
  2652 +0000016550 00000 n
  2653 +0000016570 00000 n
  2654 +0000016813 00000 n
  2655 +0000016834 00000 n
  2656 +0000017079 00000 n
  2657 +0000017100 00000 n
  2658 +0000017347 00000 n
  2659 +0000017368 00000 n
  2660 +0000017613 00000 n
  2661 +0000017819 00000 n
  2662 +0000017961 00000 n
  2663 +0000018105 00000 n
  2664 +0000018249 00000 n
  2665 +0000018393 00000 n
  2666 +0000018640 00000 n
  2667 +0000018892 00000 n
  2668 +0000019249 00000 n
  2669 +0000019606 00000 n
  2670 +0000019963 00000 n
  2671 +0000020002 00000 n
  2672 +0000020208 00000 n
  2673 +0000020229 00000 n
  2674 +0000020417 00000 n
  2675 +0000020438 00000 n
  2676 +0000020679 00000 n
  2677 +0000020700 00000 n
  2678 +0000020942 00000 n
  2679 +0000020963 00000 n
  2680 +0000021206 00000 n
  2681 +0000021227 00000 n
  2682 +0000021444 00000 n
  2683 +0000021465 00000 n
  2684 +0000021737 00000 n
  2685 +0000021758 00000 n
  2686 +0000022119 00000 n
  2687 +0000022141 00000 n
  2688 +0000022312 00000 n
  2689 +0000022333 00000 n
  2690 +0000022457 00000 n
  2691 +0000022818 00000 n
  2692 +0000022840 00000 n
  2693 +0000023011 00000 n
  2694 +0000023032 00000 n
  2695 +0000023393 00000 n
  2696 +0000023415 00000 n
  2697 +0000023586 00000 n
  2698 +trailer <<
  2699 + /Root 1 0 R
  2700 + /Size 145
  2701 + /ID [<a2f146daeb6d814a742556489dab9882><31415926535897932384626433832795>]
  2702 +>>
  2703 +startxref
  2704 +23607
  2705 +%%EOF
... ...