WebCore/ChangeLog

 12010-12-13 Dan Bernstein <mitz@apple.com>
 2
 3 Reviewed by NOBODY (OOPS!).
 4
 5 <rdar://problem/8763696> REGRESSION (r72173): Fallback fonts’ vertical metrics aren’t accounted for even when line-height is unspecified
 6 https://bugs.webkit.org/show_bug.cgi?id=50979
 7
 8 Many test results updated.
 9
 10 * rendering/InlineFlowBox.cpp: Reinstated the code that updates affectsAscent and
 11 affectsDescent in the used-fonts code path. Renamed variables for clarity. Added
 12 a check whether usedFonts is empty (which it might be if there is glyph overflow
 13 but no fallback) as an optimization.
 14
1152010-12-13 Chris Fleizach <cfleizach@apple.com>
216
317 Reviewed by Beth Dakin.
73973

WebCore/rendering/InlineFlowBox.cpp

@@void InlineFlowBox::computeLogicalBoxHei
497497 usedFonts = it == textBoxDataMap.end() ? 0 : &it->second.first;
498498 }
499499
500  if (usedFonts && curr->renderer()->style(m_firstLine)->lineHeight().isNegative()) {
 500 if (usedFonts && !usedFonts->isEmpty() && curr->renderer()->style(m_firstLine)->lineHeight().isNegative()) {
501501 usedFonts->append(curr->renderer()->style(m_firstLine)->font().primaryFont());
502502 bool baselineSet = false;
503503 baseline = 0;
504504 int baselineToBottom = 0;
505505 for (size_t i = 0; i < usedFonts->size(); ++i) {
506506 int halfLeading = (usedFonts->at(i)->lineSpacing() - usedFonts->at(i)->height()) / 2;
507  int usedFontAscent = halfLeading + usedFonts->at(i)->ascent(baselineType);
508  int usedFontDescent = usedFonts->at(i)->lineSpacing() - usedFontAscent;
 507 int usedFontBaseline = halfLeading + usedFonts->at(i)->ascent(baselineType);
 508 int usedFontBaselineToBottom = usedFonts->at(i)->lineSpacing() - usedFontBaseline;
509509 if (!baselineSet) {
510510 baselineSet = true;
511  baseline = usedFontAscent;
512  baselineToBottom = usedFontDescent;
 511 baseline = usedFontBaseline;
 512 baselineToBottom = usedFontBaselineToBottom;
513513 } else {
514  baseline = max(baseline, usedFontAscent);
515  baselineToBottom = max(baselineToBottom, usedFontDescent);
 514 baseline = max(baseline, usedFontBaseline);
 515 baselineToBottom = max(baselineToBottom, usedFontBaselineToBottom);
516516 }
 517 if (!affectsAscent)
 518 affectsAscent = usedFonts->at(i)->ascent() - curr->logicalTop() > 0;
 519 if (!affectsDescent)
 520 affectsDescent = usedFonts->at(i)->descent() + curr->logicalTop() > 0;
517521 }
518522 lineHeight = baseline + baselineToBottom;
519523 } else {
73924

LayoutTests/ChangeLog

 12010-12-13 Dan Bernstein <mitz@apple.com>
 2
 3 Reviewed by NOBODY (OOPS!).
 4
 5 <rdar://problem/8763696> REGRESSION (r72173): Fallback fonts’ vertical metrics aren’t accounted for even when line-height is unspecified
 6 https://bugs.webkit.org/show_bug.cgi?id=50979
 7
 8 * editing/selection/extend-selection-bidi-expected.txt:
 9 * platform/mac/css2.1/t0805-c5518-brdr-t-01-e-expected.checksum:
 10 * platform/mac/css2.1/t0805-c5518-brdr-t-01-e-expected.png:
 11 * platform/mac/css2.1/t0805-c5518-brdr-t-01-e-expected.txt:
 12 * platform/mac/css2.1/t0805-c5519-brdr-r-00-a-expected.checksum:
 13 * platform/mac/css2.1/t0805-c5519-brdr-r-00-a-expected.png:
 14 * platform/mac/css2.1/t0805-c5519-brdr-r-00-a-expected.txt:
 15 * platform/mac/css2.1/t0805-c5520-brdr-b-01-e-expected.checksum:
 16 * platform/mac/css2.1/t0805-c5520-brdr-b-01-e-expected.png:
 17 * platform/mac/css2.1/t0805-c5520-brdr-b-01-e-expected.txt:
 18 * platform/mac/css2.1/t0805-c5521-brdr-l-00-a-expected.checksum:
 19 * platform/mac/css2.1/t0805-c5521-brdr-l-00-a-expected.png:
 20 * platform/mac/css2.1/t0805-c5521-brdr-l-00-a-expected.txt:
 21 * platform/mac/css2.1/t0805-c5521-brdr-l-01-e-expected.checksum:
 22 * platform/mac/css2.1/t0805-c5521-brdr-l-01-e-expected.png:
 23 * platform/mac/css2.1/t0805-c5521-brdr-l-01-e-expected.txt:
 24 * platform/mac/css2.1/t0805-c5521-ibrdr-l-00-a-expected.checksum:
 25 * platform/mac/css2.1/t0805-c5521-ibrdr-l-00-a-expected.png:
 26 * platform/mac/css2.1/t0805-c5521-ibrdr-l-00-a-expected.txt:
 27 * platform/mac/css2.1/t0905-c414-flt-02-c-expected.checksum:
 28 * platform/mac/css2.1/t0905-c414-flt-02-c-expected.png:
 29 * platform/mac/css2.1/t0905-c414-flt-02-c-expected.txt:
 30 * platform/mac/css2.1/t0905-c414-flt-03-c-expected.checksum:
 31 * platform/mac/css2.1/t0905-c414-flt-03-c-expected.png:
 32 * platform/mac/css2.1/t0905-c414-flt-03-c-expected.txt:
 33 * platform/mac/css2.1/t0905-c414-flt-04-c-expected.checksum:
 34 * platform/mac/css2.1/t0905-c414-flt-04-c-expected.png:
 35 * platform/mac/css2.1/t0905-c414-flt-04-c-expected.txt:
 36 * platform/mac/css2.1/t0905-c414-flt-fit-01-d-g-expected.checksum:
 37 * platform/mac/css2.1/t0905-c414-flt-fit-01-d-g-expected.png:
 38 * platform/mac/css2.1/t0905-c414-flt-fit-01-d-g-expected.txt:
 39 * platform/mac/css2.1/t0905-c5525-fltblck-01-d-expected.checksum:
 40 * platform/mac/css2.1/t0905-c5525-fltblck-01-d-expected.png:
 41 * platform/mac/css2.1/t0905-c5525-fltblck-01-d-expected.txt:
 42 * platform/mac/css2.1/t0905-c5525-fltcont-00-d-g-expected.checksum:
 43 * platform/mac/css2.1/t0905-c5525-fltcont-00-d-g-expected.png:
 44 * platform/mac/css2.1/t0905-c5525-fltcont-00-d-g-expected.txt:
 45 * platform/mac/css2.1/t0905-c5525-flthw-00-c-g-expected.checksum:
 46 * platform/mac/css2.1/t0905-c5525-flthw-00-c-g-expected.png:
 47 * platform/mac/css2.1/t0905-c5525-flthw-00-c-g-expected.txt:
 48 * platform/mac/css2.1/t0905-c5525-fltwidth-00-c-g-expected.checksum:
 49 * platform/mac/css2.1/t0905-c5525-fltwidth-00-c-g-expected.png:
 50 * platform/mac/css2.1/t0905-c5525-fltwidth-00-c-g-expected.txt:
 51 * platform/mac/css2.1/t0905-c5525-fltwidth-02-c-g-expected.checksum:
 52 * platform/mac/css2.1/t0905-c5525-fltwidth-02-c-g-expected.png:
 53 * platform/mac/css2.1/t0905-c5525-fltwidth-02-c-g-expected.txt:
 54 * platform/mac/css2.1/t0905-c5525-fltwidth-03-c-g-expected.checksum:
 55 * platform/mac/css2.1/t0905-c5525-fltwidth-03-c-g-expected.png:
 56 * platform/mac/css2.1/t0905-c5525-fltwidth-03-c-g-expected.txt:
 57 * platform/mac/css2.1/t0905-c5525-fltwrap-00-b-expected.checksum:
 58 * platform/mac/css2.1/t0905-c5525-fltwrap-00-b-expected.png:
 59 * platform/mac/css2.1/t0905-c5525-fltwrap-00-b-expected.txt:
 60 * platform/mac/css2.1/t0905-c5526-flthw-00-c-g-expected.checksum:
 61 * platform/mac/css2.1/t0905-c5526-flthw-00-c-g-expected.png:
 62 * platform/mac/css2.1/t0905-c5526-flthw-00-c-g-expected.txt:
 63 * platform/mac/css2.1/t090501-c414-flt-01-b-expected.checksum:
 64 * platform/mac/css2.1/t090501-c414-flt-01-b-expected.png:
 65 * platform/mac/css2.1/t090501-c414-flt-01-b-expected.txt:
 66 * platform/mac/css2.1/t090501-c414-flt-03-b-g-expected.checksum:
 67 * platform/mac/css2.1/t090501-c414-flt-03-b-g-expected.png:
 68 * platform/mac/css2.1/t090501-c414-flt-03-b-g-expected.txt:
 69 * platform/mac/css2.1/t090501-c5525-flt-l-00-b-g-expected.checksum:
 70 * platform/mac/css2.1/t090501-c5525-flt-l-00-b-g-expected.png:
 71 * platform/mac/css2.1/t090501-c5525-flt-l-00-b-g-expected.txt:
 72 * platform/mac/css2.1/t090501-c5525-flt-r-00-b-g-expected.checksum:
 73 * platform/mac/css2.1/t090501-c5525-flt-r-00-b-g-expected.png:
 74 * platform/mac/css2.1/t090501-c5525-flt-r-00-b-g-expected.txt:
 75 * platform/mac/css2.1/t100304-c43-rpl-bbx-01-d-g-expected.checksum:
 76 * platform/mac/css2.1/t100304-c43-rpl-bbx-01-d-g-expected.png:
 77 * platform/mac/css2.1/t100304-c43-rpl-bbx-01-d-g-expected.txt:
 78 * platform/mac/css2.1/t1202-counter-03-b-expected.checksum:
 79 * platform/mac/css2.1/t1202-counter-03-b-expected.png:
 80 * platform/mac/css2.1/t1202-counter-03-b-expected.txt:
 81 * platform/mac/css2.1/t1202-counter-04-b-expected.checksum:
 82 * platform/mac/css2.1/t1202-counter-04-b-expected.png:
 83 * platform/mac/css2.1/t1202-counter-04-b-expected.txt:
 84 * platform/mac/css2.1/t1202-counter-09-b-expected.checksum:
 85 * platform/mac/css2.1/t1202-counter-09-b-expected.png:
 86 * platform/mac/css2.1/t1202-counter-09-b-expected.txt:
 87 * platform/mac/css2.1/t1202-counters-03-b-expected.checksum:
 88 * platform/mac/css2.1/t1202-counters-03-b-expected.png:
 89 * platform/mac/css2.1/t1202-counters-03-b-expected.txt:
 90 * platform/mac/css2.1/t1202-counters-04-b-expected.checksum:
 91 * platform/mac/css2.1/t1202-counters-04-b-expected.png:
 92 * platform/mac/css2.1/t1202-counters-04-b-expected.txt:
 93 * platform/mac/css2.1/t1202-counters-09-b-expected.checksum:
 94 * platform/mac/css2.1/t1202-counters-09-b-expected.png:
 95 * platform/mac/css2.1/t1202-counters-09-b-expected.txt:
 96 * platform/mac/editing/deleting/5144139-2-expected.checksum:
 97 * platform/mac/editing/deleting/5144139-2-expected.png:
 98 * platform/mac/editing/deleting/5144139-2-expected.txt:
 99 * platform/mac/editing/selection/caret-rtl-2-expected.checksum:
 100 * platform/mac/editing/selection/caret-rtl-2-expected.png:
 101 * platform/mac/editing/selection/caret-rtl-2-expected.txt:
 102 * platform/mac/editing/selection/caret-rtl-2-left-expected.checksum:
 103 * platform/mac/editing/selection/caret-rtl-2-left-expected.png:
 104 * platform/mac/editing/selection/caret-rtl-2-left-expected.txt:
 105 * platform/mac/editing/selection/caret-rtl-expected.checksum:
 106 * platform/mac/editing/selection/caret-rtl-expected.png:
 107 * platform/mac/editing/selection/caret-rtl-expected.txt:
 108 * platform/mac/editing/selection/caret-rtl-right-expected.checksum:
 109 * platform/mac/editing/selection/caret-rtl-right-expected.png:
 110 * platform/mac/editing/selection/caret-rtl-right-expected.txt:
 111 * platform/mac/editing/selection/extend-selection-bidi-expected.checksum:
 112 * platform/mac/editing/selection/extend-selection-bidi-expected.png:
 113 * platform/mac/fast/blockflow/Kusa-Makura-background-canvas-expected.checksum:
 114 * platform/mac/fast/blockflow/Kusa-Makura-background-canvas-expected.png:
 115 * platform/mac/fast/blockflow/Kusa-Makura-background-canvas-expected.txt:
 116 * platform/mac/fast/css/beforeSelectorOnCodeElement-expected.checksum:
 117 * platform/mac/fast/css/beforeSelectorOnCodeElement-expected.png:
 118 * platform/mac/fast/css/beforeSelectorOnCodeElement-expected.txt:
 119 * platform/mac/fast/css/font-face-opentype-expected.checksum:
 120 * platform/mac/fast/css/font-face-opentype-expected.png:
 121 * platform/mac/fast/css/font-face-opentype-expected.txt:
 122 * platform/mac/fast/css/rtl-ordering-expected.checksum:
 123 * platform/mac/fast/css/rtl-ordering-expected.png:
 124 * platform/mac/fast/css/rtl-ordering-expected.txt:
 125 * platform/mac/fast/css/text-overflow-ellipsis-bidi-expected.checksum:
 126 * platform/mac/fast/css/text-overflow-ellipsis-bidi-expected.png:
 127 * platform/mac/fast/css/text-overflow-ellipsis-bidi-expected.txt:
 128 * platform/mac/fast/css/text-overflow-ellipsis-expected.checksum:
 129 * platform/mac/fast/css/text-overflow-ellipsis-expected.png:
 130 * platform/mac/fast/css/text-overflow-ellipsis-expected.txt:
 131 * platform/mac/fast/css/text-overflow-ellipsis-strict-expected.checksum:
 132 * platform/mac/fast/css/text-overflow-ellipsis-strict-expected.png:
 133 * platform/mac/fast/css/text-overflow-ellipsis-strict-expected.txt:
 134 * platform/mac/fast/css/text-security-expected.checksum:
 135 * platform/mac/fast/css/text-security-expected.png:
 136 * platform/mac/fast/css/text-security-expected.txt:
 137 * platform/mac/fast/encoding/denormalised-voiced-japanese-chars-expected.checksum:
 138 * platform/mac/fast/encoding/denormalised-voiced-japanese-chars-expected.png:
 139 * platform/mac/fast/encoding/denormalised-voiced-japanese-chars-expected.txt:
 140 * platform/mac/fast/encoding/invalid-UTF-8-expected.checksum:
 141 * platform/mac/fast/encoding/invalid-UTF-8-expected.png:
 142 * platform/mac/fast/encoding/invalid-UTF-8-expected.txt:
 143 * platform/mac/fast/events/updateLayoutForHitTest-expected.checksum:
 144 * platform/mac/fast/events/updateLayoutForHitTest-expected.png:
 145 * platform/mac/fast/events/updateLayoutForHitTest-expected.txt:
 146 * platform/mac/fast/forms/select-visual-hebrew-expected.checksum:
 147 * platform/mac/fast/forms/select-visual-hebrew-expected.png:
 148 * platform/mac/fast/forms/select-visual-hebrew-expected.txt:
 149 * platform/mac/fast/forms/select-writing-direction-natural-expected.checksum:
 150 * platform/mac/fast/forms/select-writing-direction-natural-expected.png:
 151 * platform/mac/fast/forms/select-writing-direction-natural-expected.txt:
 152 * platform/mac/fast/forms/visual-hebrew-text-field-expected.checksum:
 153 * platform/mac/fast/forms/visual-hebrew-text-field-expected.png:
 154 * platform/mac/fast/forms/visual-hebrew-text-field-expected.txt:
 155 * platform/mac/fast/ruby/nested-ruby-expected.txt:
 156 * platform/mac/fast/text/atsui-multiple-renderers-expected.checksum:
 157 * platform/mac/fast/text/atsui-multiple-renderers-expected.png:
 158 * platform/mac/fast/text/atsui-multiple-renderers-expected.txt:
 159 * platform/mac/fast/text/backslash-to-yen-sign-euc-expected.checksum:
 160 * platform/mac/fast/text/backslash-to-yen-sign-euc-expected.png:
 161 * platform/mac/fast/text/backslash-to-yen-sign-euc-expected.txt:
 162 * platform/mac/fast/text/backslash-to-yen-sign-expected.checksum:
 163 * platform/mac/fast/text/backslash-to-yen-sign-expected.png:
 164 * platform/mac/fast/text/backslash-to-yen-sign-expected.txt:
 165 * platform/mac/fast/text/bidi-embedding-pop-and-push-same-expected.checksum:
 166 * platform/mac/fast/text/bidi-embedding-pop-and-push-same-expected.png:
 167 * platform/mac/fast/text/bidi-embedding-pop-and-push-same-expected.txt:
 168 * platform/mac/fast/text/capitalize-boundaries-expected.checksum:
 169 * platform/mac/fast/text/capitalize-boundaries-expected.png:
 170 * platform/mac/fast/text/capitalize-boundaries-expected.txt:
 171 * platform/mac/fast/text/cg-fallback-bolding-expected.checksum:
 172 * platform/mac/fast/text/cg-fallback-bolding-expected.png:
 173 * platform/mac/fast/text/cg-fallback-bolding-expected.txt:
 174 * platform/mac/fast/text/complex-text-opacity-expected.checksum:
 175 * platform/mac/fast/text/complex-text-opacity-expected.png:
 176 * platform/mac/fast/text/complex-text-opacity-expected.txt:
 177 * platform/mac/fast/text/in-rendered-text-rtl-expected.checksum:
 178 * platform/mac/fast/text/in-rendered-text-rtl-expected.png:
 179 * platform/mac/fast/text/in-rendered-text-rtl-expected.txt:
 180 * platform/mac/fast/text/international/001-expected.checksum:
 181 * platform/mac/fast/text/international/001-expected.png:
 182 * platform/mac/fast/text/international/001-expected.txt:
 183 * platform/mac/fast/text/international/002-expected.checksum:
 184 * platform/mac/fast/text/international/002-expected.png:
 185 * platform/mac/fast/text/international/002-expected.txt:
 186 * platform/mac/fast/text/international/003-expected.checksum:
 187 * platform/mac/fast/text/international/003-expected.png:
 188 * platform/mac/fast/text/international/003-expected.txt:
 189 * platform/mac/fast/text/international/bidi-AN-after-L-expected.checksum:
 190 * platform/mac/fast/text/international/bidi-AN-after-L-expected.png:
 191 * platform/mac/fast/text/international/bidi-AN-after-L-expected.txt:
 192 * platform/mac/fast/text/international/bidi-AN-after-empty-run-expected.checksum:
 193 * platform/mac/fast/text/international/bidi-AN-after-empty-run-expected.png:
 194 * platform/mac/fast/text/international/bidi-AN-after-empty-run-expected.txt:
 195 * platform/mac/fast/text/international/bidi-CS-after-AN-expected.checksum:
 196 * platform/mac/fast/text/international/bidi-CS-after-AN-expected.png:
 197 * platform/mac/fast/text/international/bidi-CS-after-AN-expected.txt:
 198 * platform/mac/fast/text/international/bidi-L2-run-reordering-expected.checksum:
 199 * platform/mac/fast/text/international/bidi-L2-run-reordering-expected.png:
 200 * platform/mac/fast/text/international/bidi-L2-run-reordering-expected.txt:
 201 * platform/mac/fast/text/international/bidi-LDB-2-CSS-expected.checksum:
 202 * platform/mac/fast/text/international/bidi-LDB-2-CSS-expected.png:
 203 * platform/mac/fast/text/international/bidi-LDB-2-CSS-expected.txt:
 204 * platform/mac/fast/text/international/bidi-LDB-2-HTML-expected.checksum:
 205 * platform/mac/fast/text/international/bidi-LDB-2-HTML-expected.png:
 206 * platform/mac/fast/text/international/bidi-LDB-2-HTML-expected.txt:
 207 * platform/mac/fast/text/international/bidi-LDB-2-formatting-characters-expected.checksum:
 208 * platform/mac/fast/text/international/bidi-LDB-2-formatting-characters-expected.png:
 209 * platform/mac/fast/text/international/bidi-LDB-2-formatting-characters-expected.txt:
 210 * platform/mac/fast/text/international/bidi-european-terminators-expected.checksum:
 211 * platform/mac/fast/text/international/bidi-european-terminators-expected.png:
 212 * platform/mac/fast/text/international/bidi-european-terminators-expected.txt:
 213 * platform/mac/fast/text/international/bidi-fallback-font-weight-expected.checksum:
 214 * platform/mac/fast/text/international/bidi-fallback-font-weight-expected.png:
 215 * platform/mac/fast/text/international/bidi-fallback-font-weight-expected.txt:
 216 * platform/mac/fast/text/international/bidi-ignored-for-first-child-inline-expected.checksum:
 217 * platform/mac/fast/text/international/bidi-ignored-for-first-child-inline-expected.png:
 218 * platform/mac/fast/text/international/bidi-ignored-for-first-child-inline-expected.txt:
 219 * platform/mac/fast/text/international/bidi-innertext-expected.checksum:
 220 * platform/mac/fast/text/international/bidi-innertext-expected.png:
 221 * platform/mac/fast/text/international/bidi-innertext-expected.txt:
 222 * platform/mac/fast/text/international/bidi-linebreak-001-expected.checksum:
 223 * platform/mac/fast/text/international/bidi-linebreak-001-expected.png:
 224 * platform/mac/fast/text/international/bidi-linebreak-001-expected.txt:
 225 * platform/mac/fast/text/international/bidi-linebreak-002-expected.checksum:
 226 * platform/mac/fast/text/international/bidi-linebreak-002-expected.png:
 227 * platform/mac/fast/text/international/bidi-linebreak-002-expected.txt:
 228 * platform/mac/fast/text/international/bidi-linebreak-003-expected.checksum:
 229 * platform/mac/fast/text/international/bidi-linebreak-003-expected.png:
 230 * platform/mac/fast/text/international/bidi-linebreak-003-expected.txt:
 231 * platform/mac/fast/text/international/bidi-listbox-atsui-expected.checksum:
 232 * platform/mac/fast/text/international/bidi-listbox-atsui-expected.png:
 233 * platform/mac/fast/text/international/bidi-listbox-atsui-expected.txt:
 234 * platform/mac/fast/text/international/bidi-listbox-expected.checksum:
 235 * platform/mac/fast/text/international/bidi-listbox-expected.png:
 236 * platform/mac/fast/text/international/bidi-listbox-expected.txt:
 237 * platform/mac/fast/text/international/bidi-menulist-expected.checksum:
 238 * platform/mac/fast/text/international/bidi-menulist-expected.png:
 239 * platform/mac/fast/text/international/bidi-menulist-expected.txt:
 240 * platform/mac/fast/text/international/bidi-mirror-he-ar-expected.checksum:
 241 * platform/mac/fast/text/international/bidi-mirror-he-ar-expected.png:
 242 * platform/mac/fast/text/international/bidi-mirror-he-ar-expected.txt:
 243 * platform/mac/fast/text/international/bidi-neutral-directionality-paragraph-start-expected.checksum:
 244 * platform/mac/fast/text/international/bidi-neutral-directionality-paragraph-start-expected.png:
 245 * platform/mac/fast/text/international/bidi-neutral-directionality-paragraph-start-expected.txt:
 246 * platform/mac/fast/text/international/bidi-neutral-run-expected.checksum:
 247 * platform/mac/fast/text/international/bidi-neutral-run-expected.png:
 248 * platform/mac/fast/text/international/bidi-neutral-run-expected.txt:
 249 * platform/mac/fast/text/international/bidi-override-expected.checksum:
 250 * platform/mac/fast/text/international/bidi-override-expected.png:
 251 * platform/mac/fast/text/international/bidi-override-expected.txt:
 252 * platform/mac/fast/text/international/complex-character-based-fallback-expected.checksum:
 253 * platform/mac/fast/text/international/complex-character-based-fallback-expected.png:
 254 * platform/mac/fast/text/international/complex-character-based-fallback-expected.txt:
 255 * platform/mac/fast/text/international/danda-space-expected.checksum:
 256 * platform/mac/fast/text/international/danda-space-expected.png:
 257 * platform/mac/fast/text/international/danda-space-expected.txt:
 258 * platform/mac/fast/text/international/hebrew-vowels-expected.checksum:
 259 * platform/mac/fast/text/international/hebrew-vowels-expected.png:
 260 * platform/mac/fast/text/international/hebrew-vowels-expected.txt:
 261 * platform/mac/fast/text/international/hindi-spacing-expected.checksum:
 262 * platform/mac/fast/text/international/hindi-spacing-expected.png:
 263 * platform/mac/fast/text/international/hindi-spacing-expected.txt:
 264 * platform/mac/fast/text/international/hindi-whitespace-expected.checksum:
 265 * platform/mac/fast/text/international/hindi-whitespace-expected.png:
 266 * platform/mac/fast/text/international/hindi-whitespace-expected.txt:
 267 * platform/mac/fast/text/international/plane2-expected.checksum:
 268 * platform/mac/fast/text/international/plane2-expected.png:
 269 * platform/mac/fast/text/international/plane2-expected.txt:
 270 * platform/mac/fast/text/international/rtl-caret-expected.checksum:
 271 * platform/mac/fast/text/international/rtl-caret-expected.png:
 272 * platform/mac/fast/text/international/rtl-caret-expected.txt:
 273 * platform/mac/fast/text/international/thai-baht-space-expected.checksum:
 274 * platform/mac/fast/text/international/thai-baht-space-expected.png:
 275 * platform/mac/fast/text/international/thai-baht-space-expected.txt:
 276 * platform/mac/fast/text/international/thai-line-breaks-expected.checksum:
 277 * platform/mac/fast/text/international/thai-line-breaks-expected.png:
 278 * platform/mac/fast/text/international/thai-line-breaks-expected.txt:
 279 * platform/mac/fast/text/international/wrap-CJK-001-expected.checksum:
 280 * platform/mac/fast/text/international/wrap-CJK-001-expected.png:
 281 * platform/mac/fast/text/international/wrap-CJK-001-expected.txt:
 282 * platform/mac/transforms/2d/hindi-rotated-expected.checksum:
 283 * platform/mac/transforms/2d/hindi-rotated-expected.png:
 284 * platform/mac/transforms/2d/hindi-rotated-expected.txt:
 285
12862010-12-13 Chris Fleizach <cfleizach@apple.com>
2287
3288 Reviewed by Beth Dakin.
73981

LayoutTests/editing/selection/extend-selection-bidi-expected.txt

@@layer at (0,0) size 800x600
1515layer at (0,0) size 800x600
1616 RenderBlock {HTML} at (0,0) size 800x600
1717 RenderBody {BODY} at (8,8) size 784x584
18  RenderBlock (anonymous) at (0,0) size 784x36
19  RenderText {#text} at (0,0) size 361x18
20  text run at (0,0) width 361: "The selection range in the red box should look like this: "
 18 RenderBlock (anonymous) at (0,0) size 784x37
 19 RenderText {#text} at (0,1) size 361x18
 20 text run at (0,1) width 361: "The selection range in the red box should look like this: "
2121 RenderInline {SPAN} at (0,0) size 110x18 [bgcolor=#AFDAFF]
22  RenderText {#text} at (361,0) size 110x18
23  text run at (361,0) width 26: "abc "
24  text run at (416,0) width 8: "1"
25  text run at (440,0) width 31 RTL: "\x{5D0}\x{5D1}\x{5D2} "
26  RenderText {#text} at (387,0) size 112x18
27  text run at (387,0) width 29 RTL: " \x{5D3}\x{5D4}\x{5D5}"
28  text run at (424,0) width 16: "23"
29  text run at (471,0) width 28: " def "
30  RenderBR {BR} at (499,14) size 0x0
31  RenderBR {BR} at (0,18) size 0x18
32  RenderBlock {DIV} at (0,36) size 784x56 [border: (2px solid #FF0000)]
 22 RenderText {#text} at (361,1) size 110x18
 23 text run at (361,1) width 26: "abc "
 24 text run at (416,1) width 8: "1"
 25 text run at (440,1) width 31 RTL: "\x{5D0}\x{5D1}\x{5D2} "
 26 RenderText {#text} at (387,1) size 112x18
 27 text run at (387,1) width 29 RTL: " \x{5D3}\x{5D4}\x{5D5}"
 28 text run at (424,1) width 16: "23"
 29 text run at (471,1) width 28: " def "
 30 RenderBR {BR} at (499,15) size 0x0
 31 RenderBR {BR} at (0,19) size 0x18
 32 RenderBlock {DIV} at (0,37) size 784x57 [border: (2px solid #FF0000)]
3333 RenderInline {SPAN} at (0,0) size 202x28
34  RenderText {#text} at (14,14) size 202x28
35  text run at (14,14) width 40: "abc "
36  text run at (54,14) width 43 RTL: " \x{5D3}\x{5D4}\x{5D5}"
37  text run at (97,14) width 36: "123"
38  text run at (133,14) width 46 RTL: "\x{5D0}\x{5D1}\x{5D2} "
39  text run at (179,14) width 37: " def"
 34 RenderText {#text} at (14,15) size 202x28
 35 text run at (14,15) width 40: "abc "
 36 text run at (54,15) width 43 RTL: " \x{5D3}\x{5D4}\x{5D5}"
 37 text run at (97,15) width 36: "123"
 38 text run at (133,15) width 46 RTL: "\x{5D0}\x{5D1}\x{5D2} "
 39 text run at (179,15) width 37: " def"
4040 RenderText {#text} at (0,0) size 0x0
4141selection start: position 0 of child 0 {#text} of child 1 {SPAN} of child 6 {DIV} of body
4242selection end: position 9 of child 0 {#text} of child 1 {SPAN} of child 6 {DIV} of body
73924

LayoutTests/platform/mac/css2.1/t0805-c5518-brdr-t-01-e-expected.checksum

1 259b178fc4083f10c578a807bfaf668d
21\ No newline at end of file
 2916f90a2f16890b49ecc03034a09bb1d
33\ No newline at end of file
73924

LayoutTests/platform/mac/css2.1/t0805-c5518-brdr-t-01-e-expected.txt

11layer at (0,0) size 800x600
22 RenderView at (0,0) size 800x600
3 layer at (0,0) size 800x290
4  RenderBlock {HTML} at (0,0) size 800x290
5  RenderBody {BODY} at (8,16) size 784x258 [color=#0000FF]
6  RenderBlock {P} at (0,0) size 784x36
7  RenderText {#text} at (0,0) size 483x18
8  text run at (0,0) width 483: "There should be a solid blue line directly over every occurance of the word \""
 3layer at (0,0) size 800x297
 4 RenderBlock {HTML} at (0,0) size 800x297
 5 RenderBody {BODY} at (8,16) size 784x265 [color=#0000FF]
 6 RenderBlock {P} at (0,0) size 784x37
 7 RenderText {#text} at (0,1) size 483x18
 8 text run at (0,1) width 483: "There should be a solid blue line directly over every occurance of the word \""
99 RenderInline {SPAN} at (0,0) size 63x20 [border: (2px solid #0000FF) none]
10  RenderText {#text} at (483,0) size 63x18
11  text run at (483,0) width 63: "HERE \x{21E7}"
12  RenderText {#text} at (546,0) size 779x36
13  text run at (546,0) width 233: "\". (So there should be 8 blue lines on"
14  text run at (0,18) width 65: "this page.)"
15  RenderTable {TABLE} at (0,52) size 142x76
16  RenderTableSection {TBODY} at (0,0) size 142x76
17  RenderTableRow {TR} at (0,2) size 142x22
18  RenderTableCell {TD} at (2,2) size 138x22 [border: (2px solid #0000FF) none] [r=0 c=0 rs=1 cs=2]
19  RenderText {#text} at (37,3) size 63x18
20  text run at (37,3) width 63: "HERE \x{21E7}"
21  RenderTableRow {TR} at (0,26) size 142x48
22  RenderTableCell {TD} at (2,39) size 65x22 [border: (2px solid #0000FF) none] [r=1 c=0 rs=1 cs=1]
23  RenderText {#text} at (1,3) size 63x18
24  text run at (1,3) width 63: "HERE \x{21E7}"
25  RenderTableCell {TD} at (69,26) size 71x48 [border: (2px solid #0000FF) none] [r=1 c=1 rs=1 cs=1]
26  RenderBlock (anonymous) at (1,3) size 69x18
27  RenderText {#text} at (3,0) size 63x18
28  text run at (3,0) width 63: "HERE \x{21E7}"
29  RenderTable {TABLE} at (1,21) size 69x26
30  RenderTableSection {TBODY} at (0,0) size 69x26
31  RenderTableRow {TR} at (0,2) size 69x22
32  RenderTableCell {TD} at (2,2) size 65x22 [border: (2px solid #0000FF) none] [r=0 c=0 rs=1 cs=1]
33  RenderText {#text} at (1,3) size 63x18
34  text run at (1,3) width 63: "HERE \x{21E7}"
35  RenderBlock {UL} at (0,144) size 784x114
36  RenderListItem {LI} at (40,0) size 744x74 [border: (2px solid #0000FF) none]
37  RenderBlock (anonymous) at (0,2) size 744x18
38  RenderListMarker at (-17,0) size 7x18: bullet
39  RenderText {#text} at (0,0) size 63x18
40  text run at (0,0) width 63: "HERE \x{21E7}"
41  RenderBlock {UL} at (0,20) size 744x54
 10 RenderText {#text} at (483,1) size 63x18
 11 text run at (483,1) width 63: "HERE \x{21E7}"
 12 RenderText {#text} at (546,1) size 779x36
 13 text run at (546,1) width 233: "\". (So there should be 8 blue lines on"
 14 text run at (0,19) width 65: "this page.)"
 15 RenderTable {TABLE} at (0,53) size 142x79
 16 RenderTableSection {TBODY} at (0,0) size 142x79
 17 RenderTableRow {TR} at (0,2) size 142x23
 18 RenderTableCell {TD} at (2,2) size 138x23 [border: (2px solid #0000FF) none] [r=0 c=0 rs=1 cs=2]
 19 RenderText {#text} at (37,4) size 63x18
 20 text run at (37,4) width 63: "HERE \x{21E7}"
 21 RenderTableRow {TR} at (0,27) size 142x50
 22 RenderTableCell {TD} at (2,40) size 65x23 [border: (2px solid #0000FF) none] [r=1 c=0 rs=1 cs=1]
 23 RenderText {#text} at (1,4) size 63x18
 24 text run at (1,4) width 63: "HERE \x{21E7}"
 25 RenderTableCell {TD} at (69,27) size 71x50 [border: (2px solid #0000FF) none] [r=1 c=1 rs=1 cs=1]
 26 RenderBlock (anonymous) at (1,3) size 69x19
 27 RenderText {#text} at (3,1) size 63x18
 28 text run at (3,1) width 63: "HERE \x{21E7}"
 29 RenderTable {TABLE} at (1,22) size 69x27
 30 RenderTableSection {TBODY} at (0,0) size 69x27
 31 RenderTableRow {TR} at (0,2) size 69x23
 32 RenderTableCell {TD} at (2,2) size 65x23 [border: (2px solid #0000FF) none] [r=0 c=0 rs=1 cs=1]
 33 RenderText {#text} at (1,4) size 63x18
 34 text run at (1,4) width 63: "HERE \x{21E7}"
 35 RenderBlock {UL} at (0,148) size 784x117
 36 RenderListItem {LI} at (40,0) size 744x75 [border: (2px solid #0000FF) none]
 37 RenderBlock (anonymous) at (0,2) size 744x19
 38 RenderListMarker at (-17,1) size 7x18: bullet
 39 RenderText {#text} at (0,1) size 63x18
 40 text run at (0,1) width 63: "HERE \x{21E7}"
 41 RenderBlock {UL} at (0,21) size 744x54
4242 RenderListItem {LI} at (40,0) size 704x18
4343 RenderListMarker at (-17,0) size 7x18: white bullet
4444 RenderText {#text} at (0,0) size 75x18

@@layer at (0,0) size 800x290
5151 RenderListMarker at (-17,0) size 7x18: white bullet
5252 RenderText {#text} at (0,0) size 75x18
5353 text run at (0,0) width 75: "dummy text"
54  RenderListItem {LI} at (40,74) size 744x20 [border: (2px solid #0000FF) none]
55  RenderListMarker at (-17,2) size 7x18: bullet
56  RenderText {#text} at (0,2) size 63x18
57  text run at (0,2) width 63: "HERE \x{21E7}"
58  RenderListItem {LI} at (40,94) size 744x20 [border: (2px solid #0000FF) none]
59  RenderListMarker at (-17,2) size 7x18: bullet
60  RenderText {#text} at (0,2) size 63x18
61  text run at (0,2) width 63: "HERE \x{21E7}"
 54 RenderListItem {LI} at (40,75) size 744x21 [border: (2px solid #0000FF) none]
 55 RenderListMarker at (-17,3) size 7x18: bullet
 56 RenderText {#text} at (0,3) size 63x18
 57 text run at (0,3) width 63: "HERE \x{21E7}"
 58 RenderListItem {LI} at (40,96) size 744x21 [border: (2px solid #0000FF) none]
 59 RenderListMarker at (-17,3) size 7x18: bullet
 60 RenderText {#text} at (0,3) size 63x18
 61 text run at (0,3) width 63: "HERE \x{21E7}"
73924

LayoutTests/platform/mac/css2.1/t0805-c5519-brdr-r-00-a-expected.checksum

1 bf40b59886efa774a6500dad63def5cc
21\ No newline at end of file
 27e89dcab77523a3c12a3709a7b5cd9cd
33\ No newline at end of file
73924

LayoutTests/platform/mac/css2.1/t0805-c5519-brdr-r-00-a-expected.txt

11layer at (0,0) size 800x600
22 RenderView at (0,0) size 800x600
3 layer at (0,0) size 800x228
4  RenderBlock {HTML} at (0,0) size 800x228
5  RenderBody {BODY} at (8,16) size 784x196
6  RenderBlock {P} at (0,0) size 764x90 [color=#0000FF] [border: (10px double #0000FF) none]
7  RenderText {#text} at (0,0) size 366x18
8  text run at (0,0) width 366: "This paragraph should have two blue lines on its right. \x{21E8} "
9  RenderInline {SPAN} at (0,0) size 734x90 [color=#C0C0C0]
10  RenderText {#text} at (366,0) size 734x90
11  text run at (366,0) width 364: "dummy text dummy text dummy text dummy text dummy"
12  text run at (0,18) width 79: "text dummy "
13  text run at (79,18) width 474: "text dummy text dummy text dummy text dummy text dummy text dummy "
14  text run at (553,18) width 181: "text dummy text dummy text"
15  text run at (0,36) width 289: "dummy text dummy text dummy text dummy "
16  text run at (289,36) width 418: "text dummy text dummy text dummy text dummy text dummy text"
17  text run at (0,54) width 52: "dummy "
18  text run at (52,54) width 474: "text dummy text dummy text dummy text dummy text dummy text dummy "
19  text run at (526,54) width 181: "text dummy text dummy text"
20  text run at (0,72) width 154: "dummy text dummy text"
 3layer at (0,0) size 800x240
 4 RenderBlock {HTML} at (0,0) size 800x240
 5 RenderBody {BODY} at (8,16) size 784x208
 6 RenderBlock {P} at (0,0) size 764x96 [color=#0000FF] [border: (10px double #0000FF) none]
 7 RenderText {#text} at (0,3) size 366x18
 8 text run at (0,3) width 366: "This paragraph should have two blue lines on its right. \x{21E8} "
 9 RenderInline {SPAN} at (0,0) size 734x93 [color=#C0C0C0]
 10 RenderText {#text} at (366,3) size 734x93
 11 text run at (366,3) width 364: "dummy text dummy text dummy text dummy text dummy"
 12 text run at (0,24) width 79: "text dummy "
 13 text run at (79,24) width 474: "text dummy text dummy text dummy text dummy text dummy text dummy "
 14 text run at (553,24) width 181: "text dummy text dummy text"
 15 text run at (0,42) width 289: "dummy text dummy text dummy text dummy "
 16 text run at (289,42) width 418: "text dummy text dummy text dummy text dummy text dummy text"
 17 text run at (0,60) width 52: "dummy "
 18 text run at (52,60) width 474: "text dummy text dummy text dummy text dummy text dummy text dummy "
 19 text run at (526,60) width 181: "text dummy text dummy text"
 20 text run at (0,78) width 154: "dummy text dummy text"
2121 RenderText {#text} at (0,0) size 0x0
22  RenderBlock {P} at (0,106) size 764x90 [color=#0000FF] [border: (1px solid #0000FF) none]
23  RenderText {#text} at (0,0) size 371x18
24  text run at (0,0) width 371: "This paragraph should have a thin blue line on its right. \x{21E8} "
25  RenderInline {SPAN} at (0,0) size 762x90 [color=#C0C0C0]
26  RenderText {#text} at (371,0) size 762x90
27  text run at (371,0) width 391: "dummy text dummy text dummy text dummy text dummy text"
28  text run at (0,18) width 52: "dummy "
29  text run at (52,18) width 474: "text dummy text dummy text dummy text dummy text dummy text dummy "
30  text run at (526,18) width 233: "text dummy text dummy text dummy"
31  text run at (0,36) width 237: "text dummy text dummy text dummy "
32  text run at (237,36) width 474: "text dummy text dummy text dummy text dummy text dummy text dummy "
33  text run at (711,36) width 23: "text"
34  text run at (0,54) width 447: "dummy text dummy text dummy text dummy text dummy text dummy "
35  text run at (447,54) width 312: "text dummy text dummy text dummy text dummy"
36  text run at (0,72) width 23: "text"
 22 RenderBlock {P} at (0,112) size 764x96 [color=#0000FF] [border: (1px solid #0000FF) none]
 23 RenderText {#text} at (0,3) size 371x18
 24 text run at (0,3) width 371: "This paragraph should have a thin blue line on its right. \x{21E8} "
 25 RenderInline {SPAN} at (0,0) size 762x93 [color=#C0C0C0]
 26 RenderText {#text} at (371,3) size 762x93
 27 text run at (371,3) width 391: "dummy text dummy text dummy text dummy text dummy text"
 28 text run at (0,24) width 52: "dummy "
 29 text run at (52,24) width 474: "text dummy text dummy text dummy text dummy text dummy text dummy "
 30 text run at (526,24) width 233: "text dummy text dummy text dummy"
 31 text run at (0,42) width 237: "text dummy text dummy text dummy "
 32 text run at (237,42) width 474: "text dummy text dummy text dummy text dummy text dummy text dummy "
 33 text run at (711,42) width 23: "text"
 34 text run at (0,60) width 447: "dummy text dummy text dummy text dummy text dummy text dummy "
 35 text run at (447,60) width 312: "text dummy text dummy text dummy text dummy"
 36 text run at (0,78) width 23: "text"
3737 RenderText {#text} at (0,0) size 0x0
73924

LayoutTests/platform/mac/css2.1/t0805-c5520-brdr-b-01-e-expected.checksum

1 3fbb53ebaa65f0ff8d176bda3f2aee1b
21\ No newline at end of file
 2331bfe91c7e04ff59b2d71f1d827c4b6
33\ No newline at end of file
73924

LayoutTests/platform/mac/css2.1/t0805-c5520-brdr-b-01-e-expected.txt

11layer at (0,0) size 800x600
22 RenderView at (0,0) size 800x600
3 layer at (0,0) size 800x290
4  RenderBlock {HTML} at (0,0) size 800x290
5  RenderBody {BODY} at (8,16) size 784x258 [color=#0000FF]
6  RenderBlock {P} at (0,0) size 784x36
7  RenderText {#text} at (0,0) size 496x18
8  text run at (0,0) width 496: "There should be a solid blue line directly under every occurrence of the word \""
 3layer at (0,0) size 800x332
 4 RenderBlock {HTML} at (0,0) size 800x332
 5 RenderBody {BODY} at (8,16) size 784x300 [color=#0000FF]
 6 RenderBlock {P} at (0,0) size 784x42
 7 RenderText {#text} at (0,3) size 496x18
 8 text run at (0,3) width 496: "There should be a solid blue line directly under every occurrence of the word \""
99 RenderInline {SPAN} at (0,0) size 63x20 [border: (2px solid #0000FF) none]
10  RenderText {#text} at (496,0) size 63x18
11  text run at (496,0) width 63: "HERE \x{21E9}"
12  RenderText {#text} at (559,0) size 772x36
13  text run at (559,0) width 213: "\". (So there should be 8 blue lines"
14  text run at (0,18) width 85: "on this page.)"
15  RenderTable {TABLE} at (0,52) size 142x76
16  RenderTableSection {TBODY} at (0,0) size 142x76
17  RenderTableRow {TR} at (0,2) size 142x22
18  RenderTableCell {TD} at (2,2) size 138x22 [border: none (2px solid #0000FF) none] [r=0 c=0 rs=1 cs=2]
19  RenderText {#text} at (37,1) size 63x18
20  text run at (37,1) width 63: "HERE \x{21E9}"
21  RenderTableRow {TR} at (0,26) size 142x48
22  RenderTableCell {TD} at (2,39) size 65x22 [border: none (2px solid #0000FF) none] [r=1 c=0 rs=1 cs=1]
23  RenderText {#text} at (1,1) size 63x18
24  text run at (1,1) width 63: "HERE \x{21E9}"
25  RenderTableCell {TD} at (69,26) size 71x48 [border: none (2px solid #0000FF) none] [r=1 c=1 rs=1 cs=1]
26  RenderTable {TABLE} at (1,1) size 69x26
27  RenderTableSection {TBODY} at (0,0) size 69x26
28  RenderTableRow {TR} at (0,2) size 69x22
29  RenderTableCell {TD} at (2,2) size 65x22 [border: none (2px solid #0000FF) none] [r=0 c=0 rs=1 cs=1]
30  RenderText {#text} at (1,1) size 63x18
31  text run at (1,1) width 63: "HERE \x{21E9}"
32  RenderBlock (anonymous) at (1,27) size 69x18
33  RenderText {#text} at (3,0) size 63x18
34  text run at (3,0) width 63: "HERE \x{21E9}"
35  RenderBlock {UL} at (0,144) size 784x114
36  RenderListItem {LI} at (40,0) size 744x74 [border: (2px solid #0000FF) none]
 10 RenderText {#text} at (496,3) size 63x18
 11 text run at (496,3) width 63: "HERE \x{21E9}"
 12 RenderText {#text} at (559,3) size 772x39
 13 text run at (559,3) width 213: "\". (So there should be 8 blue lines"
 14 text run at (0,24) width 85: "on this page.)"
 15 RenderTable {TABLE} at (0,58) size 142x94
 16 RenderTableSection {TBODY} at (0,0) size 142x94
 17 RenderTableRow {TR} at (0,2) size 142x28
 18 RenderTableCell {TD} at (2,2) size 138x28 [border: none (2px solid #0000FF) none] [r=0 c=0 rs=1 cs=2]
 19 RenderText {#text} at (37,4) size 63x18
 20 text run at (37,4) width 63: "HERE \x{21E9}"
 21 RenderTableRow {TR} at (0,32) size 142x60
 22 RenderTableCell {TD} at (2,48) size 65x28 [border: none (2px solid #0000FF) none] [r=1 c=0 rs=1 cs=1]
 23 RenderText {#text} at (1,4) size 63x18
 24 text run at (1,4) width 63: "HERE \x{21E9}"
 25 RenderTableCell {TD} at (69,32) size 71x60 [border: none (2px solid #0000FF) none] [r=1 c=1 rs=1 cs=1]
 26 RenderTable {TABLE} at (1,1) size 69x32
 27 RenderTableSection {TBODY} at (0,0) size 69x32
 28 RenderTableRow {TR} at (0,2) size 69x28
 29 RenderTableCell {TD} at (2,2) size 65x28 [border: none (2px solid #0000FF) none] [r=0 c=0 rs=1 cs=1]
 30 RenderText {#text} at (1,4) size 63x18
 31 text run at (1,4) width 63: "HERE \x{21E9}"
 32 RenderBlock (anonymous) at (1,33) size 69x24
 33 RenderText {#text} at (3,3) size 63x18
 34 text run at (3,3) width 63: "HERE \x{21E9}"
 35 RenderBlock {UL} at (0,168) size 784x132
 36 RenderListItem {LI} at (40,0) size 744x80 [border: (2px solid #0000FF) none]
3737 RenderBlock {UL} at (0,0) size 744x54
3838 RenderListItem {LI} at (40,0) size 704x18
3939 RenderListMarker at (-57,0) size 7x18: bullet

@@layer at (0,0) size 800x290
4848 RenderListMarker at (-17,0) size 7x18: white bullet
4949 RenderText {#text} at (0,0) size 75x18
5050 text run at (0,0) width 75: "dummy text"
51  RenderBlock (anonymous) at (0,54) size 744x18
52  RenderText {#text} at (0,0) size 63x18
53  text run at (0,0) width 63: "HERE \x{21E9}"
54  RenderListItem {LI} at (40,74) size 744x20 [border: (2px solid #0000FF) none]
55  RenderListMarker at (-17,0) size 7x18: bullet
56  RenderText {#text} at (0,0) size 63x18
57  text run at (0,0) width 63: "HERE \x{21E9}"
58  RenderListItem {LI} at (40,94) size 744x20 [border: (2px solid #0000FF) none]
59  RenderListMarker at (-17,0) size 7x18: bullet
60  RenderText {#text} at (0,0) size 63x18
61  text run at (0,0) width 63: "HERE \x{21E9}"
 51 RenderBlock (anonymous) at (0,54) size 744x24
 52 RenderText {#text} at (0,3) size 63x18
 53 text run at (0,3) width 63: "HERE \x{21E9}"
 54 RenderListItem {LI} at (40,80) size 744x26 [border: (2px solid #0000FF) none]
 55 RenderListMarker at (-17,3) size 7x18: bullet
 56 RenderText {#text} at (0,3) size 63x18
 57 text run at (0,3) width 63: "HERE \x{21E9}"
 58 RenderListItem {LI} at (40,106) size 744x26 [border: (2px solid #0000FF) none]
 59 RenderListMarker at (-17,3) size 7x18: bullet
 60 RenderText {#text} at (0,3) size 63x18
 61 text run at (0,3) width 63: "HERE \x{21E9}"
73924

LayoutTests/platform/mac/css2.1/t0805-c5521-brdr-l-00-a-expected.checksum

1 a3b22e4bd1507567022d3a272bd62147
21\ No newline at end of file
 2bf7e26bf9651ebb2bed34499bf298ffb
33\ No newline at end of file
73924

LayoutTests/platform/mac/css2.1/t0805-c5521-brdr-l-00-a-expected.txt

11layer at (0,0) size 800x600
22 RenderView at (0,0) size 800x600
3 layer at (0,0) size 800x228
4  RenderBlock {HTML} at (0,0) size 800x228
5  RenderBody {BODY} at (8,16) size 784x196
6  RenderBlock {P} at (20,0) size 764x90 [color=#0000FF] [border: (10px double #0000FF)]
7  RenderText {#text} at (10,0) size 357x18
8  text run at (10,0) width 357: "\x{21E6} This paragraph should have two blue lines on its left. "
9  RenderInline {SPAN} at (0,0) size 748x90 [color=#C0C0C0]
10  RenderText {#text} at (367,0) size 748x90
11  text run at (367,0) width 391: "dummy text dummy text dummy text dummy text dummy text"
12  text run at (10,18) width 52: "dummy "
13  text run at (62,18) width 474: "text dummy text dummy text dummy text dummy text dummy text dummy "
14  text run at (536,18) width 181: "text dummy text dummy text"
15  text run at (10,36) width 289: "dummy text dummy text dummy text dummy "
16  text run at (299,36) width 418: "text dummy text dummy text dummy text dummy text dummy text"
17  text run at (10,54) width 52: "dummy "
18  text run at (62,54) width 474: "text dummy text dummy text dummy text dummy text dummy text dummy "
19  text run at (536,54) width 181: "text dummy text dummy text"
20  text run at (10,72) width 154: "dummy text dummy text"
 3layer at (0,0) size 800x240
 4 RenderBlock {HTML} at (0,0) size 800x240
 5 RenderBody {BODY} at (8,16) size 784x208
 6 RenderBlock {P} at (20,0) size 764x96 [color=#0000FF] [border: (10px double #0000FF)]
 7 RenderText {#text} at (10,3) size 357x18
 8 text run at (10,3) width 357: "\x{21E6} This paragraph should have two blue lines on its left. "
 9 RenderInline {SPAN} at (0,0) size 748x93 [color=#C0C0C0]
 10 RenderText {#text} at (367,3) size 748x93
 11 text run at (367,3) width 391: "dummy text dummy text dummy text dummy text dummy text"
 12 text run at (10,24) width 52: "dummy "
 13 text run at (62,24) width 474: "text dummy text dummy text dummy text dummy text dummy text dummy "
 14 text run at (536,24) width 181: "text dummy text dummy text"
 15 text run at (10,42) width 289: "dummy text dummy text dummy text dummy "
 16 text run at (299,42) width 418: "text dummy text dummy text dummy text dummy text dummy text"
 17 text run at (10,60) width 52: "dummy "
 18 text run at (62,60) width 474: "text dummy text dummy text dummy text dummy text dummy text dummy "
 19 text run at (536,60) width 181: "text dummy text dummy text"
 20 text run at (10,78) width 154: "dummy text dummy text"
2121 RenderText {#text} at (0,0) size 0x0
22  RenderBlock {P} at (20,106) size 764x90 [color=#0000FF] [border: (1px solid #0000FF)]
23  RenderText {#text} at (1,0) size 362x18
24  text run at (1,0) width 362: "\x{21E6} This paragraph should have a thin blue line on its left. "
25  RenderInline {SPAN} at (0,0) size 759x90 [color=#C0C0C0]
26  RenderText {#text} at (363,0) size 759x90
27  text run at (363,0) width 391: "dummy text dummy text dummy text dummy text dummy text"
28  text run at (1,18) width 52: "dummy "
29  text run at (53,18) width 474: "text dummy text dummy text dummy text dummy text dummy text dummy "
30  text run at (527,18) width 233: "text dummy text dummy text dummy"
31  text run at (1,36) width 237: "text dummy text dummy text dummy "
32  text run at (238,36) width 474: "text dummy text dummy text dummy text dummy text dummy text dummy "
33  text run at (712,36) width 23: "text"
34  text run at (1,54) width 447: "dummy text dummy text dummy text dummy text dummy text dummy "
35  text run at (448,54) width 312: "text dummy text dummy text dummy text dummy"
36  text run at (1,72) width 23: "text"
 22 RenderBlock {P} at (20,112) size 764x96 [color=#0000FF] [border: (1px solid #0000FF)]
 23 RenderText {#text} at (1,3) size 362x18
 24 text run at (1,3) width 362: "\x{21E6} This paragraph should have a thin blue line on its left. "
 25 RenderInline {SPAN} at (0,0) size 759x93 [color=#C0C0C0]
 26 RenderText {#text} at (363,3) size 759x93
 27 text run at (363,3) width 391: "dummy text dummy text dummy text dummy text dummy text"
 28 text run at (1,24) width 52: "dummy "
 29 text run at (53,24) width 474: "text dummy text dummy text dummy text dummy text dummy text dummy "
 30 text run at (527,24) width 233: "text dummy text dummy text dummy"
 31 text run at (1,42) width 237: "text dummy text dummy text dummy "
 32 text run at (238,42) width 474: "text dummy text dummy text dummy text dummy text dummy text dummy "
 33 text run at (712,42) width 23: "text"
 34 text run at (1,60) width 447: "dummy text dummy text dummy text dummy text dummy text dummy "
 35 text run at (448,60) width 312: "text dummy text dummy text dummy text dummy"
 36 text run at (1,78) width 23: "text"
3737 RenderText {#text} at (0,0) size 0x0
73924

LayoutTests/platform/mac/css2.1/t0805-c5521-brdr-l-01-e-expected.checksum

1 6524b889512e77f14b7ce8e11809b19b
21\ No newline at end of file
 238baa2d2c1d75a50a825c165092c522b
33\ No newline at end of file
73924

LayoutTests/platform/mac/css2.1/t0805-c5521-brdr-l-01-e-expected.txt

11layer at (0,0) size 800x600
22 RenderView at (0,0) size 800x600
3 layer at (0,0) size 800x246
4  RenderBlock {HTML} at (0,0) size 800x246
5  RenderBody {BODY} at (8,16) size 784x214 [color=#0000FF]
6  RenderBlock {P} at (0,0) size 784x37
7  RenderText {#text} at (0,15) size 480x18
8  text run at (0,15) width 480: "There should be a solid blue line to the left of every occurance of the word \""
 3layer at (0,0) size 800x290
 4 RenderBlock {HTML} at (0,0) size 800x290
 5 RenderBody {BODY} at (8,16) size 784x258 [color=#0000FF]
 6 RenderBlock {P} at (0,0) size 784x48
 7 RenderText {#text} at (0,22) size 480x18
 8 text run at (0,22) width 480: "There should be a solid blue line to the left of every occurance of the word \""
99 RenderInline {SPAN} at (0,0) size 138x37 [border: (2px solid #0000FF)]
10  RenderText {#text} at (482,0) size 136x37
11  text run at (482,0) width 136: "\x{21E6}THERE"
12  RenderText {#text} at (618,15) size 11x18
13  text run at (618,15) width 11: "\"."
14  RenderTable {TABLE} at (0,53) size 294x127
15  RenderTableSection {TBODY} at (0,0) size 294x127
16  RenderTableRow {TR} at (0,2) size 294x39
17  RenderTableCell {TD} at (2,2) size 290x39 [border: none (2px solid #0000FF)] [r=0 c=0 rs=1 cs=2]
18  RenderText {#text} at (3,1) size 136x37
19  text run at (3,1) width 136: "\x{21E6}THERE"
20  RenderTableRow {TR} at (0,43) size 294x82
21  RenderTableCell {TD} at (2,64) size 140x39 [border: none (2px solid #0000FF)] [r=1 c=0 rs=1 cs=1]
22  RenderText {#text} at (3,1) size 136x37
23  text run at (3,1) width 136: "\x{21E6}THERE"
24  RenderTableCell {TD} at (144,43) size 148x82 [border: none (2px solid #0000FF)] [r=1 c=1 rs=1 cs=1]
25  RenderBlock (anonymous) at (3,1) size 144x37
26  RenderText {#text} at (0,0) size 136x37
27  text run at (0,0) width 136: "\x{21E6}THERE"
28  RenderTable {TABLE} at (3,38) size 144x43
29  RenderTableSection {TBODY} at (0,0) size 144x43
30  RenderTableRow {TR} at (0,2) size 144x39
31  RenderTableCell {TD} at (2,2) size 140x39 [border: none (2px solid #0000FF)] [r=0 c=0 rs=1 cs=1]
32  RenderText {#text} at (3,1) size 136x37
33  text run at (3,1) width 136: "\x{21E6}THERE"
34  RenderBlock {P} at (0,196) size 784x18
 10 RenderText {#text} at (482,7) size 136x37
 11 text run at (482,7) width 136: "\x{21E6}THERE"
 12 RenderText {#text} at (618,22) size 11x18
 13 text run at (618,22) width 11: "\"."
 14 RenderTable {TABLE} at (0,64) size 294x160
 15 RenderTableSection {TBODY} at (0,0) size 294x160
 16 RenderTableRow {TR} at (0,2) size 294x50
 17 RenderTableCell {TD} at (2,2) size 290x50 [border: none (2px solid #0000FF)] [r=0 c=0 rs=1 cs=2]
 18 RenderText {#text} at (3,8) size 136x37
 19 text run at (3,8) width 136: "\x{21E6}THERE"
 20 RenderTableRow {TR} at (0,54) size 294x104
 21 RenderTableCell {TD} at (2,81) size 140x50 [border: none (2px solid #0000FF)] [r=1 c=0 rs=1 cs=1]
 22 RenderText {#text} at (3,8) size 136x37
 23 text run at (3,8) width 136: "\x{21E6}THERE"
 24 RenderTableCell {TD} at (144,54) size 148x104 [border: none (2px solid #0000FF)] [r=1 c=1 rs=1 cs=1]
 25 RenderBlock (anonymous) at (3,1) size 144x48
 26 RenderText {#text} at (0,7) size 136x37
 27 text run at (0,7) width 136: "\x{21E6}THERE"
 28 RenderTable {TABLE} at (3,49) size 144x54
 29 RenderTableSection {TBODY} at (0,0) size 144x54
 30 RenderTableRow {TR} at (0,2) size 144x50
 31 RenderTableCell {TD} at (2,2) size 140x50 [border: none (2px solid #0000FF)] [r=0 c=0 rs=1 cs=1]
 32 RenderText {#text} at (3,8) size 136x37
 33 text run at (3,8) width 136: "\x{21E6}THERE"
 34 RenderBlock {P} at (0,240) size 784x18
3535 RenderText {#text} at (0,0) size 337x18
3636 text run at (0,0) width 337: "There should be 3 short lines and 2 long lines in total."
73924

LayoutTests/platform/mac/css2.1/t0805-c5521-ibrdr-l-00-a-expected.checksum

1 0a143462957c34949d8f7784e1cdf381
21\ No newline at end of file
 2c0dd019a23bbbf4cf65a40991d255c1d
33\ No newline at end of file
73924

LayoutTests/platform/mac/css2.1/t0805-c5521-ibrdr-l-00-a-expected.txt

11layer at (0,0) size 800x600
22 RenderView at (0,0) size 800x600
3 layer at (0,0) size 800x318
4  RenderBlock {HTML} at (0,0) size 800x318
5  RenderBody {BODY} at (8,8) size 784x302
 3layer at (0,0) size 800x330
 4 RenderBlock {HTML} at (0,0) size 800x330
 5 RenderBody {BODY} at (8,8) size 784x314
66 RenderBlock {DIV} at (0,0) size 784x18
77 RenderText {#text} at (0,0) size 341x18
88 text run at (0,0) width 341: "The blue bits of text should be decorated as described."
9  RenderBlock {P} at (0,34) size 784x234 [color=#C0C0C0]
10  RenderText {#text} at (0,0) size 759x54
 9 RenderBlock {P} at (0,34) size 784x246 [color=#C0C0C0]
 10 RenderText {#text} at (0,0) size 759x57
1111 text run at (0,0) width 474: "dummy text dummy text dummy text dummy text dummy text dummy text "
1212 text run at (474,0) width 285: "dummy text dummy text dummy text dummy"
1313 text run at (0,18) width 185: "text dummy text dummy text "
1414 text run at (185,18) width 474: "dummy text dummy text dummy text dummy text dummy text dummy text "
1515 text run at (659,18) width 75: "dummy text"
16  text run at (0,36) width 395: "dummy text dummy text dummy text dummy text dummy text "
17  RenderInline {SPAN} at (0,0) size 759x54 [color=#0000FF] [border: (10px double #0000FF)]
18  RenderText {#text} at (405,36) size 175x18
19  text run at (405,36) width 175: "\x{21E6} two blue lines to the left "
20  RenderInline {SPAN} at (0,0) size 759x54 [color=#C0C0C0]
21  RenderText {#text} at (580,36) size 759x54
22  text run at (580,36) width 52: "dummy "
23  text run at (632,36) width 102: "text dummy text"
24  text run at (0,54) width 368: "dummy text dummy text dummy text dummy text dummy "
25  text run at (368,54) width 391: "text dummy text dummy text dummy text dummy text dummy"
26  text run at (0,72) width 23: "text"
27  RenderText {#text} at (23,72) size 4x18
28  text run at (23,72) width 4: " "
29  RenderText {#text} at (27,72) size 759x90
30  text run at (27,72) width 395: "dummy text dummy text dummy text dummy text dummy text "
31  text run at (422,72) width 312: "dummy text dummy text dummy text dummy text"
32  text run at (0,90) width 158: "dummy text dummy text "
33  text run at (158,90) width 474: "dummy text dummy text dummy text dummy text dummy text dummy text "
34  text run at (632,90) width 127: "dummy text dummy"
35  text run at (0,108) width 343: "text dummy text dummy text dummy text dummy text "
36  text run at (343,108) width 391: "dummy text dummy text dummy text dummy text dummy text"
37  text run at (0,126) width 79: "dummy text "
38  text run at (79,126) width 474: "dummy text dummy text dummy text dummy text dummy text dummy text "
39  text run at (553,126) width 206: "dummy text dummy text dummy"
40  text run at (0,144) width 185: "text dummy text dummy text "
 16 text run at (0,39) width 395: "dummy text dummy text dummy text dummy text dummy text "
 17 RenderInline {SPAN} at (0,0) size 759x57 [color=#0000FF] [border: (10px double #0000FF)]
 18 RenderText {#text} at (405,39) size 175x18
 19 text run at (405,39) width 175: "\x{21E6} two blue lines to the left "
 20 RenderInline {SPAN} at (0,0) size 759x57 [color=#C0C0C0]
 21 RenderText {#text} at (580,39) size 759x57
 22 text run at (580,39) width 52: "dummy "
 23 text run at (632,39) width 102: "text dummy text"
 24 text run at (0,60) width 368: "dummy text dummy text dummy text dummy text dummy "
 25 text run at (368,60) width 391: "text dummy text dummy text dummy text dummy text dummy"
 26 text run at (0,78) width 23: "text"
 27 RenderText {#text} at (23,78) size 4x18
 28 text run at (23,78) width 4: " "
 29 RenderText {#text} at (27,78) size 759x93
 30 text run at (27,78) width 395: "dummy text dummy text dummy text dummy text dummy text "
 31 text run at (422,78) width 312: "dummy text dummy text dummy text dummy text"
 32 text run at (0,96) width 158: "dummy text dummy text "
 33 text run at (158,96) width 474: "dummy text dummy text dummy text dummy text dummy text dummy text "
 34 text run at (632,96) width 127: "dummy text dummy"
 35 text run at (0,114) width 343: "text dummy text dummy text dummy text dummy text "
 36 text run at (343,114) width 391: "dummy text dummy text dummy text dummy text dummy text"
 37 text run at (0,132) width 79: "dummy text "
 38 text run at (79,132) width 474: "dummy text dummy text dummy text dummy text dummy text dummy text "
 39 text run at (553,132) width 206: "dummy text dummy text dummy"
 40 text run at (0,153) width 185: "text dummy text dummy text "
4141 RenderInline {SPAN} at (0,0) size 197x18 [color=#0000FF] [border: (1px solid #0000FF)]
42  RenderText {#text} at (186,144) size 196x18
43  text run at (186,144) width 196: "\x{21E6} one thin blue line to the left "
44  RenderText {#text} at (382,144) size 773x90
45  text run at (382,144) width 52: "dummy "
46  text run at (434,144) width 339: "text dummy text dummy text dummy text dummy text"
47  text run at (0,162) width 131: "dummy text dummy "
48  text run at (131,162) width 474: "text dummy text dummy text dummy text dummy text dummy text dummy "
49  text run at (605,162) width 154: "text dummy text dummy"
50  text run at (0,180) width 316: "text dummy text dummy text dummy text dummy "
51  text run at (316,180) width 418: "text dummy text dummy text dummy text dummy text dummy text"
52  text run at (0,198) width 52: "dummy "
53  text run at (52,198) width 474: "text dummy text dummy text dummy text dummy text dummy text dummy "
54  text run at (526,198) width 233: "text dummy text dummy text dummy"
55  text run at (0,216) width 237: "text dummy text dummy text dummy "
56  text run at (237,216) width 181: "text dummy text dummy text"
57  RenderBlock {DIV} at (0,284) size 784x18
 42 RenderText {#text} at (186,153) size 196x18
 43 text run at (186,153) width 196: "\x{21E6} one thin blue line to the left "
 44 RenderText {#text} at (382,153) size 773x93
 45 text run at (382,153) width 52: "dummy "
 46 text run at (434,153) width 339: "text dummy text dummy text dummy text dummy text"
 47 text run at (0,174) width 131: "dummy text dummy "
 48 text run at (131,174) width 474: "text dummy text dummy text dummy text dummy text dummy text dummy "
 49 text run at (605,174) width 154: "text dummy text dummy"
 50 text run at (0,192) width 316: "text dummy text dummy text dummy text dummy "
 51 text run at (316,192) width 418: "text dummy text dummy text dummy text dummy text dummy text"
 52 text run at (0,210) width 52: "dummy "
 53 text run at (52,210) width 474: "text dummy text dummy text dummy text dummy text dummy text dummy "
 54 text run at (526,210) width 233: "text dummy text dummy text dummy"
 55 text run at (0,228) width 237: "text dummy text dummy text dummy "
 56 text run at (237,228) width 181: "text dummy text dummy text"
 57 RenderBlock {DIV} at (0,296) size 784x18
5858 RenderText {#text} at (0,0) size 416x18
5959 text run at (0,0) width 416: "(All the lines of text in the block above should be equally spaced.)"
73924

LayoutTests/platform/mac/css2.1/t0905-c414-flt-02-c-expected.checksum

1 ef4f3848ef7083f9fe8d027ddafee067
21\ No newline at end of file
 2131dfd8a497c802fcb8638a7ba18578a
33\ No newline at end of file
73924

LayoutTests/platform/mac/css2.1/t0905-c414-flt-02-c-expected.txt

@@layer at (0,0) size 800x68
1111 text run at (53,18) width 355: "\"B\" should be in the second; arrows indicate the correct "
1212 text run at (408,18) width 71: "alignment.)"
1313 RenderBlock {DIV} at (16,52) size 320x0
14  RenderBlock (floating) {P} at (4,4) size 126x32 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF)]
15  RenderText {#text} at (7,7) size 44x18
16  text run at (7,7) width 44: "\x{21E6} A 1"
17  RenderBlock (floating) {P} at (138,4) size 126x32 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF)]
18  RenderText {#text} at (7,7) size 43x18
19  text run at (7,7) width 43: "\x{21E6} B 2"
20  RenderBlock (floating) {P} at (4,44) size 126x32 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF)]
21  RenderText {#text} at (7,7) size 44x18
22  text run at (7,7) width 44: "\x{21E6} A 3"
23  RenderBlock (floating) {P} at (190,44) size 126x32 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF)]
24  RenderText {#text} at (76,7) size 43x18
25  text run at (76,7) width 43: "B 4 \x{21E8}"
26  RenderBlock (floating) {P} at (4,84) size 126x32 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF)]
27  RenderText {#text} at (7,7) size 44x18
28  text run at (7,7) width 44: "\x{21E6} A 5"
29  RenderBlock (floating) {P} at (190,84) size 126x32 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF)]
30  RenderText {#text} at (76,7) size 43x18
31  text run at (76,7) width 43: "B 6 \x{21E8}"
32  RenderBlock (floating) {P} at (190,124) size 126x32 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF)]
33  RenderText {#text} at (76,7) size 43x18
34  text run at (76,7) width 43: "B 8 \x{21E8}"
35  RenderBlock (floating) {P} at (4,124) size 126x32 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF)]
36  RenderText {#text} at (7,7) size 44x18
37  text run at (7,7) width 44: "\x{21E6} A 7"
38  RenderBlock (floating) {P} at (4,164) size 126x32 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF)]
39  RenderText {#text} at (7,7) size 44x18
40  text run at (7,7) width 44: "\x{21E6} A 9"
41  RenderBlock (floating) {P} at (138,164) size 126x32 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF)]
42  RenderText {#text} at (7,7) size 51x18
43  text run at (7,7) width 51: "\x{21E6} B 10"
 14 RenderBlock (floating) {P} at (4,4) size 126x38 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF)]
 15 RenderText {#text} at (7,10) size 44x18
 16 text run at (7,10) width 44: "\x{21E6} A 1"
 17 RenderBlock (floating) {P} at (138,4) size 126x38 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF)]
 18 RenderText {#text} at (7,10) size 43x18
 19 text run at (7,10) width 43: "\x{21E6} B 2"
 20 RenderBlock (floating) {P} at (4,50) size 126x38 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF)]
 21 RenderText {#text} at (7,10) size 44x18
 22 text run at (7,10) width 44: "\x{21E6} A 3"
 23 RenderBlock (floating) {P} at (190,50) size 126x38 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF)]
 24 RenderText {#text} at (76,10) size 43x18
 25 text run at (76,10) width 43: "B 4 \x{21E8}"
 26 RenderBlock (floating) {P} at (4,96) size 126x38 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF)]
 27 RenderText {#text} at (7,10) size 44x18
 28 text run at (7,10) width 44: "\x{21E6} A 5"
 29 RenderBlock (floating) {P} at (190,96) size 126x38 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF)]
 30 RenderText {#text} at (76,10) size 43x18
 31 text run at (76,10) width 43: "B 6 \x{21E8}"
 32 RenderBlock (floating) {P} at (190,142) size 126x38 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF)]
 33 RenderText {#text} at (76,10) size 43x18
 34 text run at (76,10) width 43: "B 8 \x{21E8}"
 35 RenderBlock (floating) {P} at (4,142) size 126x38 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF)]
 36 RenderText {#text} at (7,10) size 44x18
 37 text run at (7,10) width 44: "\x{21E6} A 7"
 38 RenderBlock (floating) {P} at (4,188) size 126x38 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF)]
 39 RenderText {#text} at (7,10) size 44x18
 40 text run at (7,10) width 44: "\x{21E6} A 9"
 41 RenderBlock (floating) {P} at (138,188) size 126x38 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF)]
 42 RenderText {#text} at (7,10) size 51x18
 43 text run at (7,10) width 51: "\x{21E6} B 10"
73924

LayoutTests/platform/mac/css2.1/t0905-c414-flt-03-c-expected.checksum

1 a2d8debe25d86c49c28e0669f88443b4
21\ No newline at end of file
 2ce211674eef2d9e3fc6bd351b69c1c3f
33\ No newline at end of file
73924

LayoutTests/platform/mac/css2.1/t0905-c414-flt-03-c-expected.txt

@@layer at (0,0) size 800x68
1111 text run at (55,18) width 402: "boxes labelled \"B\" should be in the second; arrows indicate the "
1212 text run at (457,18) width 118: "correct alignment.)"
1313 RenderBlock {DIV} at (16,52) size 320x0
14  RenderBlock (floating) {P} at (190,4) size 126x32 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF)]
15  RenderText {#text} at (76,7) size 43x18
16  text run at (76,7) width 43: "B 2 \x{21E8}"
17  RenderBlock (floating) {P} at (56,4) size 126x32 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF)]
18  RenderText {#text} at (75,7) size 44x18
19  text run at (75,7) width 44: "A 1 \x{21E8}"
20  RenderBlock (floating) {P} at (190,44) size 126x32 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF)]
21  RenderText {#text} at (76,7) size 43x18
22  text run at (76,7) width 43: "B 4 \x{21E8}"
23  RenderBlock (floating) {P} at (4,44) size 126x32 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF)]
24  RenderText {#text} at (7,7) size 44x18
25  text run at (7,7) width 44: "\x{21E6} A 3"
26  RenderBlock (floating) {P} at (190,84) size 126x32 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF)]
27  RenderText {#text} at (76,7) size 43x18
28  text run at (76,7) width 43: "B 6 \x{21E8}"
29  RenderBlock (floating) {P} at (4,84) size 126x32 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF)]
30  RenderText {#text} at (7,7) size 44x18
31  text run at (7,7) width 44: "\x{21E6} A 5"
32  RenderBlock (floating) {P} at (4,124) size 126x32 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF)]
33  RenderText {#text} at (7,7) size 44x18
34  text run at (7,7) width 44: "\x{21E6} A 7"
35  RenderBlock (floating) {P} at (190,124) size 126x32 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF)]
36  RenderText {#text} at (76,7) size 43x18
37  text run at (76,7) width 43: "B 8 \x{21E8}"
38  RenderBlock (floating) {P} at (190,164) size 126x32 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF)]
39  RenderText {#text} at (68,7) size 51x18
40  text run at (68,7) width 51: "B 10 \x{21E8}"
41  RenderBlock (floating) {P} at (56,164) size 126x32 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF)]
42  RenderText {#text} at (75,7) size 44x18
43  text run at (75,7) width 44: "A 9 \x{21E8}"
 14 RenderBlock (floating) {P} at (190,4) size 126x38 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF)]
 15 RenderText {#text} at (76,10) size 43x18
 16 text run at (76,10) width 43: "B 2 \x{21E8}"
 17 RenderBlock (floating) {P} at (56,4) size 126x38 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF)]
 18 RenderText {#text} at (75,10) size 44x18
 19 text run at (75,10) width 44: "A 1 \x{21E8}"
 20 RenderBlock (floating) {P} at (190,50) size 126x38 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF)]
 21 RenderText {#text} at (76,10) size 43x18
 22 text run at (76,10) width 43: "B 4 \x{21E8}"
 23 RenderBlock (floating) {P} at (4,50) size 126x38 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF)]
 24 RenderText {#text} at (7,10) size 44x18
 25 text run at (7,10) width 44: "\x{21E6} A 3"
 26 RenderBlock (floating) {P} at (190,96) size 126x38 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF)]
 27 RenderText {#text} at (76,10) size 43x18
 28 text run at (76,10) width 43: "B 6 \x{21E8}"
 29 RenderBlock (floating) {P} at (4,96) size 126x38 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF)]
 30 RenderText {#text} at (7,10) size 44x18
 31 text run at (7,10) width 44: "\x{21E6} A 5"
 32 RenderBlock (floating) {P} at (4,142) size 126x38 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF)]
 33 RenderText {#text} at (7,10) size 44x18
 34 text run at (7,10) width 44: "\x{21E6} A 7"
 35 RenderBlock (floating) {P} at (190,142) size 126x38 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF)]
 36 RenderText {#text} at (76,10) size 43x18
 37 text run at (76,10) width 43: "B 8 \x{21E8}"
 38 RenderBlock (floating) {P} at (190,188) size 126x38 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF)]
 39 RenderText {#text} at (68,10) size 51x18
 40 text run at (68,10) width 51: "B 10 \x{21E8}"
 41 RenderBlock (floating) {P} at (56,188) size 126x38 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF)]
 42 RenderText {#text} at (75,10) size 44x18
 43 text run at (75,10) width 44: "A 9 \x{21E8}"
73924

LayoutTests/platform/mac/css2.1/t0905-c414-flt-04-c-expected.checksum

1 997f1b171e1771dbdb439767ef7be15f
21\ No newline at end of file
 2c1cfc13e98b8f32538393b0a0817e151
33\ No newline at end of file
73924

LayoutTests/platform/mac/css2.1/t0905-c414-flt-04-c-expected.txt

@@layer at (0,0) size 800x68
1111 text run at (53,18) width 355: "\"B\" should be in the second; arrows indicate the correct "
1212 text run at (408,18) width 71: "alignment.)"
1313 RenderBlock {DIV} at (16,52) size 320x0
14  RenderBlock (floating) {P} at (4,4) size 126x32 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF)]
15  RenderText {#text} at (7,7) size 44x18
16  text run at (7,7) width 44: "\x{21E6} A 1"
17  RenderBlock (floating) {P} at (138,4) size 126x32 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF)]
18  RenderText {#text} at (7,7) size 43x18
19  text run at (7,7) width 43: "\x{21E6} B 2"
20  RenderBlock (floating) {P} at (4,44) size 126x32 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF)]
21  RenderText {#text} at (7,7) size 44x18
22  text run at (7,7) width 44: "\x{21E6} A 3"
23  RenderBlock (floating) {P} at (190,44) size 126x32 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF)]
24  RenderText {#text} at (76,7) size 43x18
25  text run at (76,7) width 43: "B 4 \x{21E8}"
26  RenderBlock (floating) {P} at (4,84) size 126x32 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF)]
27  RenderText {#text} at (7,7) size 44x18
28  text run at (7,7) width 44: "\x{21E6} A 5"
29  RenderBlock (floating) {P} at (190,84) size 126x32 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF)]
30  RenderText {#text} at (76,7) size 43x18
31  text run at (76,7) width 43: "B 6 \x{21E8}"
32  RenderBlock (floating) {P} at (4,124) size 126x32 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF)]
33  RenderText {#text} at (7,7) size 44x18
34  text run at (7,7) width 44: "\x{21E6} A 7"
35  RenderBlock (floating) {P} at (138,124) size 126x32 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF)]
36  RenderText {#text} at (7,7) size 43x18
37  text run at (7,7) width 43: "\x{21E6} B 8"
38  RenderBlock (floating) {P} at (4,164) size 126x32 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF)]
39  RenderText {#text} at (7,7) size 44x18
40  text run at (7,7) width 44: "\x{21E6} A 9"
41  RenderBlock (floating) {P} at (190,164) size 126x32 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF)]
42  RenderText {#text} at (68,7) size 51x18
43  text run at (68,7) width 51: "B 10 \x{21E8}"
44  RenderBlock (floating) {P} at (4,204) size 126x32 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF)]
45  RenderText {#text} at (7,7) size 52x18
46  text run at (7,7) width 52: "\x{21E6} A 11"
47  RenderBlock (floating) {P} at (190,204) size 126x32 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF)]
48  RenderText {#text} at (68,7) size 51x18
49  text run at (68,7) width 51: "B 12 \x{21E8}"
50  RenderBlock (floating) {P} at (4,244) size 126x32 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF)]
51  RenderText {#text} at (7,7) size 52x18
52  text run at (7,7) width 52: "\x{21E6} A 13"
53  RenderBlock (floating) {P} at (138,244) size 126x32 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF)]
54  RenderText {#text} at (7,7) size 51x18
55  text run at (7,7) width 51: "\x{21E6} B 14"
 14 RenderBlock (floating) {P} at (4,4) size 126x38 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF)]
 15 RenderText {#text} at (7,10) size 44x18
 16 text run at (7,10) width 44: "\x{21E6} A 1"
 17 RenderBlock (floating) {P} at (138,4) size 126x38 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF)]
 18 RenderText {#text} at (7,10) size 43x18
 19 text run at (7,10) width 43: "\x{21E6} B 2"
 20 RenderBlock (floating) {P} at (4,50) size 126x38 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF)]
 21 RenderText {#text} at (7,10) size 44x18
 22 text run at (7,10) width 44: "\x{21E6} A 3"
 23 RenderBlock (floating) {P} at (190,50) size 126x38 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF)]
 24 RenderText {#text} at (76,10) size 43x18
 25 text run at (76,10) width 43: "B 4 \x{21E8}"
 26 RenderBlock (floating) {P} at (4,96) size 126x38 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF)]
 27 RenderText {#text} at (7,10) size 44x18
 28 text run at (7,10) width 44: "\x{21E6} A 5"
 29 RenderBlock (floating) {P} at (190,96) size 126x38 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF)]
 30 RenderText {#text} at (76,10) size 43x18
 31 text run at (76,10) width 43: "B 6 \x{21E8}"
 32 RenderBlock (floating) {P} at (4,142) size 126x38 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF)]
 33 RenderText {#text} at (7,10) size 44x18
 34 text run at (7,10) width 44: "\x{21E6} A 7"
 35 RenderBlock (floating) {P} at (138,142) size 126x38 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF)]
 36 RenderText {#text} at (7,10) size 43x18
 37 text run at (7,10) width 43: "\x{21E6} B 8"
 38 RenderBlock (floating) {P} at (4,188) size 126x38 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF)]
 39 RenderText {#text} at (7,10) size 44x18
 40 text run at (7,10) width 44: "\x{21E6} A 9"
 41 RenderBlock (floating) {P} at (190,188) size 126x38 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF)]
 42 RenderText {#text} at (68,10) size 51x18
 43 text run at (68,10) width 51: "B 10 \x{21E8}"
 44 RenderBlock (floating) {P} at (4,234) size 126x38 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF)]
 45 RenderText {#text} at (7,10) size 52x18
 46 text run at (7,10) width 52: "\x{21E6} A 11"
 47 RenderBlock (floating) {P} at (190,234) size 126x38 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF)]
 48 RenderText {#text} at (68,10) size 51x18
 49 text run at (68,10) width 51: "B 12 \x{21E8}"
 50 RenderBlock (floating) {P} at (4,280) size 126x38 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF)]
 51 RenderText {#text} at (7,10) size 52x18
 52 text run at (7,10) width 52: "\x{21E6} A 13"
 53 RenderBlock (floating) {P} at (138,280) size 126x38 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF)]
 54 RenderText {#text} at (7,10) size 51x18
 55 text run at (7,10) width 51: "\x{21E6} B 14"
73924

LayoutTests/platform/mac/css2.1/t0905-c414-flt-fit-01-d-g-expected.checksum

1 21cf8e1c9a27b35d15d8ec65d5f20184
21\ No newline at end of file
 25bf73fc933967a9bfc24999498988773
33\ No newline at end of file
73924

LayoutTests/platform/mac/css2.1/t0905-c414-flt-fit-01-d-g-expected.txt

11layer at (0,0) size 800x600
22 RenderView at (0,0) size 800x600
3 layer at (0,0) size 800x270
4  RenderBlock {HTML} at (0,0) size 800x270
5  RenderBody {BODY} at (8,16) size 784x244
6  RenderBlock {P} at (0,0) size 784x18 [color=#000080]
7  RenderText {#text} at (0,0) size 771x18
8  text run at (0,0) width 771: "There should be a complete unbroken drawing of a yin-yang (\x{262F}) symbol below, slightly on the left (\x{21E6}) inside a blue box."
9  RenderBlock {DIV} at (10,34) size 260x210 [border: (5px solid #0000FF)]
 3layer at (0,0) size 800x276
 4 RenderBlock {HTML} at (0,0) size 800x276
 5 RenderBody {BODY} at (8,16) size 784x250
 6 RenderBlock {P} at (0,0) size 784x24 [color=#000080]
 7 RenderText {#text} at (0,3) size 771x18
 8 text run at (0,3) width 771: "There should be a complete unbroken drawing of a yin-yang (\x{262F}) symbol below, slightly on the left (\x{21E6}) inside a blue box."
 9 RenderBlock {DIV} at (10,40) size 260x210 [border: (5px solid #0000FF)]
1010 RenderBlock (floating) {P} at (5,5) size 100x100 [color=#000080]
1111 RenderImage {IMG} at (0,0) size 100x100
1212 RenderText {#text} at (0,0) size 0x0
73924

LayoutTests/platform/mac/css2.1/t0905-c5525-fltblck-01-d-expected.checksum

1 456aba14efba8f1f5aebcb0f1ac71953
21\ No newline at end of file
 21e1366005036f94c6f0d7fd4fec5fe46
33\ No newline at end of file
73924

LayoutTests/platform/mac/css2.1/t0905-c5525-fltblck-01-d-expected.txt

11layer at (0,0) size 800x600
22 RenderView at (0,0) size 800x600
3 layer at (0,0) size 800x133
4  RenderBlock {HTML} at (0,0) size 800x133
5  RenderBody {BODY} at (8,8) size 784x117
6  RenderBlock {DIV} at (0,0) size 784x117 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF) (96px solid #0000FF) (3px solid #0000FF)]
 3layer at (0,0) size 800x139
 4 RenderBlock {HTML} at (0,0) size 800x139
 5 RenderBody {BODY} at (8,8) size 784x123
 6 RenderBlock {DIV} at (0,0) size 784x123 [color=#FFFFFF] [bgcolor=#000080] [border: (3px solid #0000FF) (96px solid #0000FF) (3px solid #0000FF)]
77 RenderBlock (floating) {DIV} at (421,11) size 352x68 [bgcolor=#008080]
88 RenderBlock {P} at (16,16) size 320x36
99 RenderText {#text} at (0,0) size 313x36
1010 text run at (0,0) width 313: "This teal box should start inside the dark blue box"
1111 text run at (0,18) width 81: "and spill out "
1212 text run at (81,18) width 171: "onto the blue area below it."
13  RenderBlock {P} at (3,3) size 778x18
14  RenderText {#text} at (0,0) size 259x18
15  text run at (0,0) width 259: "You should see a teal box to the right. \x{21E8}"
 13 RenderBlock {P} at (3,3) size 778x24
 14 RenderText {#text} at (0,3) size 259x18
 15 text run at (0,3) width 259: "You should see a teal box to the right. \x{21E8}"
73924

LayoutTests/platform/mac/css2.1/t0905-c5525-fltcont-00-d-g-expected.checksum

1 92c738d97a2353b7dd243fba106ce053
21\ No newline at end of file
 2733698294f130824060adfb8a7cff9cc
33\ No newline at end of file
73924

LayoutTests/platform/mac/css2.1/t0905-c5525-fltcont-00-d-g-expected.txt

@@layer at (0,0) size 800x600
33layer at (0,0) size 800x8
44 RenderBlock {HTML} at (0,0) size 800x8
55 RenderBody {BODY} at (8,8) size 784x0
6  RenderBlock (floating) {DIV} at (0,0) size 588x252 [color=#FFFFFF] [bgcolor=#000080]
7  RenderBlock (floating) {DIV} at (277,0) size 294x72 [color=#00FFFF] [bgcolor=#008080]
8  RenderBlock {P} at (0,0) size 294x72
9  RenderText {#text} at (0,0) size 294x72
 6 RenderBlock (floating) {DIV} at (0,0) size 588x258 [color=#FFFFFF] [bgcolor=#000080]
 7 RenderBlock (floating) {DIV} at (277,0) size 294x78 [color=#00FFFF] [bgcolor=#008080]
 8 RenderBlock {P} at (0,0) size 294x78
 9 RenderText {#text} at (0,0) size 294x75
1010 text run at (0,0) width 294: "To the right of this teal box there should be a"
1111 text run at (0,18) width 94: "purple square, "
1212 text run at (94,18) width 200: "tightly squeezed in between the"
1313 text run at (0,36) width 193: "edge of the teal box and the "
1414 text run at (193,36) width 101: "outside edge of"
15  text run at (0,54) width 113: "the blue block. \x{21E8}"
16  RenderBlock {P} at (0,0) size 588x252
17  RenderText {#text} at (0,0) size 277x36
 15 text run at (0,57) width 113: "the blue block. \x{21E8}"
 16 RenderBlock {P} at (0,0) size 588x258
 17 RenderText {#text} at (0,0) size 277x39
1818 text run at (0,0) width 277: "Inside this blue block on the right there"
19  text run at (0,18) width 159: "should be a teal box. \x{21E8} "
20  RenderInline {SPAN} at (0,0) size 588x234 [color=#000080]
21  RenderText {#text} at (159,18) size 588x234
22  text run at (159,18) width 118: "FAIL FAIL FAIL"
23  text run at (0,36) width 277: "FAIL FAIL FAIL FAIL FAIL FAIL FAIL"
24  text run at (0,54) width 80: "FAIL FAIL "
25  text run at (80,54) width 197: "FAIL FAIL FAIL FAIL FAIL"
26  text run at (0,72) width 297: "FAIL FAIL FAIL FAIL FAIL FAIL FAIL "
27  text run at (297,72) width 291: "FAIL FAIL FAIL FAIL FAIL FAIL FAIL"
28  text run at (0,90) width 212: "FAIL FAIL FAIL FAIL FAIL "
29  text run at (212,90) width 376: "FAIL FAIL FAIL FAIL FAIL FAIL FAIL FAIL FAIL"
30  text run at (0,108) width 127: "FAIL FAIL FAIL "
31  text run at (127,108) width 461: "FAIL FAIL FAIL FAIL FAIL FAIL FAIL FAIL FAIL FAIL FAIL"
32  text run at (0,126) width 42: "FAIL "
33  text run at (42,126) width 510: "FAIL FAIL FAIL FAIL FAIL FAIL FAIL FAIL FAIL FAIL FAIL FAIL "
34  text run at (552,126) width 36: "FAIL"
35  text run at (0,144) width 467: "FAIL FAIL FAIL FAIL FAIL FAIL FAIL FAIL FAIL FAIL FAIL "
36  text run at (467,144) width 121: "FAIL FAIL FAIL"
37  text run at (0,162) width 382: "FAIL FAIL FAIL FAIL FAIL FAIL FAIL FAIL FAIL "
38  text run at (382,162) width 206: "FAIL FAIL FAIL FAIL FAIL"
39  text run at (0,180) width 297: "FAIL FAIL FAIL FAIL FAIL FAIL FAIL "
40  text run at (297,180) width 291: "FAIL FAIL FAIL FAIL FAIL FAIL FAIL"
41  text run at (0,198) width 212: "FAIL FAIL FAIL FAIL FAIL "
42  text run at (212,198) width 376: "FAIL FAIL FAIL FAIL FAIL FAIL FAIL FAIL FAIL"
43  text run at (0,216) width 127: "FAIL FAIL FAIL "
44  text run at (127,216) width 461: "FAIL FAIL FAIL FAIL FAIL FAIL FAIL FAIL FAIL FAIL FAIL"
45  text run at (0,234) width 40: "FAIL "
46  text run at (40,234) width 476: "FAIL FAIL FAIL FAIL FAIL FAIL FAIL FAIL FAIL FAIL FAIL FAIL"
 19 text run at (0,21) width 159: "should be a teal box. \x{21E8} "
 20 RenderInline {SPAN} at (0,0) size 588x237 [color=#000080]
 21 RenderText {#text} at (159,21) size 588x237
 22 text run at (159,21) width 118: "FAIL FAIL FAIL"
 23 text run at (0,42) width 277: "FAIL FAIL FAIL FAIL FAIL FAIL FAIL"
 24 text run at (0,60) width 80: "FAIL FAIL "
 25 text run at (80,60) width 197: "FAIL FAIL FAIL FAIL FAIL"
 26 text run at (0,78) width 297: "FAIL FAIL FAIL FAIL FAIL FAIL FAIL "
 27 text run at (297,78) width 291: "FAIL FAIL FAIL FAIL FAIL FAIL FAIL"
 28 text run at (0,96) width 212: "FAIL FAIL FAIL FAIL FAIL "
 29 text run at (212,96) width 376: "FAIL FAIL FAIL FAIL FAIL FAIL FAIL FAIL FAIL"
 30 text run at (0,114) width 127: "FAIL FAIL FAIL "
 31 text run at (127,114) width 461: "FAIL FAIL FAIL FAIL FAIL FAIL FAIL FAIL FAIL FAIL FAIL"
 32 text run at (0,132) width 42: "FAIL "
 33 text run at (42,132) width 510: "FAIL FAIL FAIL FAIL FAIL FAIL FAIL FAIL FAIL FAIL FAIL FAIL "
 34 text run at (552,132) width 36: "FAIL"
 35 text run at (0,150) width 467: "FAIL FAIL FAIL FAIL FAIL FAIL FAIL FAIL FAIL FAIL FAIL "
 36 text run at (467,150) width 121: "FAIL FAIL FAIL"
 37 text run at (0,168) width 382: "FAIL FAIL FAIL FAIL FAIL FAIL FAIL FAIL FAIL "
 38 text run at (382,168) width 206: "FAIL FAIL FAIL FAIL FAIL"
 39 text run at (0,186) width 297: "FAIL FAIL FAIL FAIL FAIL FAIL FAIL "
 40 text run at (297,186) width 291: "FAIL FAIL FAIL FAIL FAIL FAIL FAIL"
 41 text run at (0,204) width 212: "FAIL FAIL FAIL FAIL FAIL "
 42 text run at (212,204) width 376: "FAIL FAIL FAIL FAIL FAIL FAIL FAIL FAIL FAIL"
 43 text run at (0,222) width 127: "FAIL FAIL FAIL "
 44 text run at (127,222) width 461: "FAIL FAIL FAIL FAIL FAIL FAIL FAIL FAIL FAIL FAIL FAIL"
 45 text run at (0,240) width 40: "FAIL "
 46 text run at (40,240) width 476: "FAIL FAIL FAIL FAIL FAIL FAIL FAIL FAIL FAIL FAIL FAIL FAIL"
4747 RenderText {#text} at (0,0) size 0x0
73924

LayoutTests/platform/mac/css2.1/t0905-c5525-flthw-00-c-g-expected.checksum

1 3f97b58880f7bf85ed04f1decf7f9904
21\ No newline at end of file
 2a3211d9e93f3afe4108973c2693d462e
33\ No newline at end of file
73924

LayoutTests/platform/mac/css2.1/t0905-c5525-flthw-00-c-g-expected.txt

11layer at (0,0) size 800x600
22 RenderView at (0,0) size 800x600
3 layer at (0,0) size 800x258
4  RenderBlock {HTML} at (0,0) size 800x258
5  RenderBody {BODY} at (8,16) size 784x234
6  RenderBlock {P} at (0,0) size 784x18
 3layer at (0,0) size 800x259
 4 RenderBlock {HTML} at (0,0) size 800x259
 5 RenderBody {BODY} at (8,16) size 784x235
 6 RenderBlock {P} at (0,0) size 784x19
77 RenderText {#text} at (0,0) size 509x18
88 text run at (0,0) width 509: "There should be a complete unbroken drawing of a yin-yang (\x{262F}) symbol below."
9  RenderBlock {DIV} at (0,34) size 784x200
 9 RenderBlock {DIV} at (0,35) size 784x200
1010 RenderBlock (floating) {DIV} at (0,0) size 100x100
1111 RenderBlock (floating) {DIV} at (0,100) size 100x100
1212 RenderBlock {DIV} at (100,0) size 684x200
73924

LayoutTests/platform/mac/css2.1/t0905-c5525-fltwidth-00-c-g-expected.checksum

1 0f5477dc118300897ead3a20dda6b6eb
21\ No newline at end of file
 2612a938729107f151a6fa6223f31de25
33\ No newline at end of file
73924

LayoutTests/platform/mac/css2.1/t0905-c5525-fltwidth-00-c-g-expected.txt

1 layer at (0,0) size 785x781
 1layer at (0,0) size 785x794
22 RenderView at (0,0) size 785x600
3 layer at (0,0) size 785x781
4  RenderBlock {HTML} at (0,0) size 785x781
5  RenderBody {BODY} at (8,32) size 769x717
6  RenderBlock {P} at (32,0) size 705x111 [color=#000080]
7  RenderText {#text} at (0,0) size 678x111
8  text run at (0,0) width 678: "\x{21E9} The following blue box should be exactly half the"
9  text run at (0,37) width 81: "width "
10  text run at (81,37) width 560: "of the viewport, on the left of the 50% ruler"
11  text run at (0,74) width 74: "mark."
12  RenderBlock (floating) {DIV} at (0,143) size 384x342 [color=#FFFFFF] [bgcolor=#0000FF]
 3layer at (0,0) size 785x794
 4 RenderBlock {HTML} at (0,0) size 785x794
 5 RenderBody {BODY} at (8,32) size 769x730
 6 RenderBlock {P} at (32,0) size 705x122 [color=#000080]
 7 RenderText {#text} at (0,7) size 678x115
 8 text run at (0,7) width 678: "\x{21E9} The following blue box should be exactly half the"
 9 text run at (0,48) width 81: "width "
 10 text run at (81,48) width 560: "of the viewport, on the left of the 50% ruler"
 11 text run at (0,85) width 74: "mark."
 12 RenderBlock (floating) {DIV} at (0,154) size 384x342 [color=#FFFFFF] [bgcolor=#0000FF]
1313 RenderText {#text} at (0,0) size 384x342
1414 text run at (0,0) width 384: "ignore this float text ignore this float text ignore this"
1515 text run at (0,18) width 42: "float "

@@layer at (0,0) size 785x781
4545 text run at (0,306) width 233: "float text ignore this float text "
4646 text run at (233,306) width 151: "ignore this float text"
4747 text run at (0,324) width 259: "ignore this float text ignore this float"
48  RenderBlock {DIV} at (0,143) size 769x468 [color=#C0C0C0]
 48 RenderBlock {DIV} at (0,154) size 769x468 [color=#C0C0C0]
4949 RenderText {#text} at (384,0) size 769x468
5050 text run at (384,0) width 385: "this is some dummy text this is some dummy text this is some"
5151 text run at (384,18) width 54: "dummy "

@@layer at (0,0) size 785x781
9999 text run at (487,432) width 282: "dummy text this is some dummy text this is"
100100 text run at (0,450) width 156: "some dummy text this is "
101101 text run at (156,450) width 268: "some dummy text this is some dummy text"
102  RenderBlock {P} at (32,643) size 705x74 [color=#000080]
103  RenderText {#text} at (19,0) size 686x74
 102 RenderBlock {P} at (32,654) size 705x76 [color=#000080]
 103 RenderText {#text} at (19,0) size 686x76
104104 text run at (19,0) width 686: "The above gray text should flow around the blue box."
105  text run at (673,37) width 32: "\x{21E7}"
 105 text run at (673,39) width 32: "\x{21E7}"
73924

LayoutTests/platform/mac/css2.1/t0905-c5525-fltwidth-02-c-g-expected.checksum

1 bb2a18686623129fcbabc6b821a3e4ff
21\ No newline at end of file
 25d556394a7b0cff4d3c092528f899d31
33\ No newline at end of file
73924

LayoutTests/platform/mac/css2.1/t0905-c5525-fltwidth-02-c-g-expected.txt

@@layer at (0,0) size 800x34
44 RenderBlock {HTML} at (0,0) size 800x34
55 RenderBody {BODY} at (8,8) size 784x18
66 RenderBlock {DIV} at (0,0) size 784x18
7  RenderBlock (floating) {P} at (0,0) size 392x46
8  RenderText {#text} at (0,0) size 352x46
 7 RenderBlock (floating) {P} at (0,0) size 392x53
 8 RenderText {#text} at (0,0) size 352x50
99 text run at (0,0) width 352: "There should be a green square to the right,"
10  text run at (0,23) width 315: "roughly in the middle, horizontally. \x{21E8}"
 10 text run at (0,27) width 315: "roughly in the middle, horizontally. \x{21E8}"
1111 RenderImage {IMG} at (392,0) size 15x15 [color=#FF0000]
1212 RenderText {#text} at (0,0) size 0x0
73924

LayoutTests/platform/mac/css2.1/t0905-c5525-fltwidth-03-c-g-expected.checksum

1 cd2c0ac36946c2c3cdc9cef458977c06
21\ No newline at end of file
 24c2315fa3c262d8236559330bcf8fecd
33\ No newline at end of file
73924

LayoutTests/platform/mac/css2.1/t0905-c5525-fltwidth-03-c-g-expected.txt

@@layer at (0,0) size 800x34
55 RenderBody {BODY} at (8,8) size 784x18
66 RenderBlock {DIV} at (0,0) size 784x18
77 RenderBlock {DIV} at (0,0) size 784x18
8  RenderBlock (floating) {P} at (392,0) size 392x36
 8 RenderBlock (floating) {P} at (392,0) size 392x42
99 RenderImage {IMG} at (0,0) size 15x15 [color=#FF0000]
10  RenderText {#text} at (15,0) size 362x36
11  text run at (15,0) width 4: " "
12  text run at (19,0) width 343: "\x{21E6} There should be a green square at the top left of the"
13  text run at (0,18) width 56: "window."
 10 RenderText {#text} at (15,3) size 362x39
 11 text run at (15,3) width 4: " "
 12 text run at (19,3) width 343: "\x{21E6} There should be a green square at the top left of the"
 13 text run at (0,24) width 56: "window."
1414 RenderImage {IMG} at (0,0) size 15x15 [color=#FF0000]
1515 RenderText {#text} at (0,0) size 0x0
73924

LayoutTests/platform/mac/css2.1/t0905-c5525-fltwrap-00-b-expected.checksum

1 892b00d6a7124fabb90c4a4280b1b0bd
21\ No newline at end of file
 2eb9bcc0d1b1cb53e5dcdf6113ac6ad1d
33\ No newline at end of file
73924

LayoutTests/platform/mac/css2.1/t0905-c5525-fltwrap-00-b-expected.txt

11layer at (0,0) size 800x600
22 RenderView at (0,0) size 800x600
3 layer at (0,0) size 800x291
4  RenderBlock {HTML} at (0,0) size 800x291
5  RenderBody {BODY} at (8,8) size 784x275
6  RenderBlock (floating) {DIV} at (0,0) size 196x275 [color=#FFFFFF] [bgcolor=#000080]
7  RenderBlock {P} at (0,0) size 196x275
8  RenderText {#text} at (0,0) size 185x275
9  text run at (0,0) width 145: "\x{21E6} This"
10  text run at (0,55) width 166: "blue box"
11  text run at (0,110) width 185: "should be"
12  text run at (0,165) width 118: "on the"
13  text run at (0,220) width 75: "left."
14  RenderBlock (floating) {DIV} at (588,0) size 196x275 [color=#FFFFFF] [bgcolor=#008080]
15  RenderBlock {P} at (0,0) size 196x275
16  RenderText {#text} at (0,0) size 185x275
 3layer at (0,0) size 800x325
 4 RenderBlock {HTML} at (0,0) size 800x325
 5 RenderBody {BODY} at (8,8) size 784x309
 6 RenderBlock (floating) {DIV} at (0,0) size 196x292 [color=#FFFFFF] [bgcolor=#000080]
 7 RenderBlock {P} at (0,0) size 196x292
 8 RenderText {#text} at (0,11) size 185x281
 9 text run at (0,11) width 145: "\x{21E6} This"
 10 text run at (0,72) width 166: "blue box"
 11 text run at (0,127) width 185: "should be"
 12 text run at (0,182) width 118: "on the"
 13 text run at (0,237) width 75: "left."
 14 RenderBlock (floating) {DIV} at (588,0) size 196x292 [color=#FFFFFF] [bgcolor=#008080]
 15 RenderBlock {P} at (0,0) size 196x292
 16 RenderText {#text} at (0,0) size 185x286
1717 text run at (0,0) width 165: "This teal"
1818 text run at (0,55) width 72: "box"
1919 text run at (0,110) width 185: "should be"
2020 text run at (0,165) width 118: "on the"
21  text run at (0,220) width 162: "right. \x{21E8}"
22  RenderBlock {P} at (0,0) size 784x275
23  RenderText {#text} at (196,0) size 365x275
 21 text run at (0,231) width 162: "right. \x{21E8}"
 22 RenderBlock {P} at (0,0) size 784x309
 23 RenderText {#text} at (196,0) size 365x303
2424 text run at (196,0) width 365: "This text should be"
2525 text run at (196,55) width 335: "in between a blue"
26  text run at (196,110) width 325: "box on the \x{21E6}left"
27  text run at (196,165) width 326: "and a teal box on"
28  text run at (196,220) width 220: "the right\x{21E8}."
 26 text run at (196,121) width 325: "box on the \x{21E6}left"
 27 text run at (196,182) width 326: "and a teal box on"
 28 text run at (196,248) width 220: "the right\x{21E8}."
73924

LayoutTests/platform/mac/css2.1/t0905-c5526-flthw-00-c-g-expected.checksum

1 3f97b58880f7bf85ed04f1decf7f9904
21\ No newline at end of file
 2a3211d9e93f3afe4108973c2693d462e
33\ No newline at end of file
73924

LayoutTests/platform/mac/css2.1/t0905-c5526-flthw-00-c-g-expected.txt

11layer at (0,0) size 800x600
22 RenderView at (0,0) size 800x600
3 layer at (0,0) size 800x258
4  RenderBlock {HTML} at (0,0) size 800x258
5  RenderBody {BODY} at (8,16) size 784x234
6  RenderBlock {P} at (0,0) size 784x18
 3layer at (0,0) size 800x259
 4 RenderBlock {HTML} at (0,0) size 800x259
 5 RenderBody {BODY} at (8,16) size 784x235
 6 RenderBlock {P} at (0,0) size 784x19
77 RenderText {#text} at (0,0) size 509x18
88 text run at (0,0) width 509: "There should be a complete unbroken drawing of a yin-yang (\x{262F}) symbol below."
9  RenderBlock {DIV} at (0,34) size 784x200
 9 RenderBlock {DIV} at (0,35) size 784x200
1010 RenderBlock (floating) {DIV} at (0,0) size 100x100
1111 RenderBlock (floating) {DIV} at (0,100) size 100x100
1212 RenderBlock {DIV} at (100,0) size 684x200
73924

LayoutTests/platform/mac/css2.1/t1202-counter-03-b-expected.checksum

1 46f217b809ae4a6db4199395d1755017
21\ No newline at end of file
 24d14b4cfbe13ff33f966d97f5ee7e551
33\ No newline at end of file
73924

LayoutTests/platform/mac/css2.1/t1202-counter-03-b-expected.txt

11layer at (0,0) size 800x600
22 RenderView at (0,0) size 800x600
3 layer at (0,0) size 800x94
4  RenderBlock {HTML} at (0,0) size 800x94
5  RenderBody {BODY} at (8,16) size 784x70
 3layer at (0,0) size 800x96
 4 RenderBlock {HTML} at (0,0) size 800x96
 5 RenderBody {BODY} at (8,16) size 784x72
66 RenderBlock {P} at (0,0) size 784x18
77 RenderText {#text} at (0,0) size 233x18
88 text run at (0,0) width 233: "The following two lines should look "

@@layer at (0,0) size 800x94
1111 text run at (233,0) width 91: "approximately"
1212 RenderText {#text} at (324,0) size 63x18
1313 text run at (324,0) width 63: " the same:"
14  RenderBlock {DIV} at (0,34) size 784x18
 14 RenderBlock {DIV} at (0,34) size 784x19
1515 RenderInline {SPAN} at (0,0) size 10x18
1616 RenderInline (generated) at (0,0) size 10x18
17  RenderCounter at (0,0) size 10x18
18  text run at (0,0) width 10: "\x{25E6}"
19  RenderText {#text} at (10,0) size 4x18
20  text run at (10,0) width 4: " "
 17 RenderCounter at (0,1) size 10x18
 18 text run at (0,1) width 10: "\x{25E6}"
 19 RenderText {#text} at (10,1) size 4x18
 20 text run at (10,1) width 4: " "
2121 RenderInline {SPAN} at (0,0) size 10x18
2222 RenderInline (generated) at (0,0) size 10x18
23  RenderCounter at (14,0) size 10x18
24  text run at (14,0) width 10: "\x{25E6}"
25  RenderText {#text} at (24,0) size 4x18
26  text run at (24,0) width 4: " "
 23 RenderCounter at (14,1) size 10x18
 24 text run at (14,1) width 10: "\x{25E6}"
 25 RenderText {#text} at (24,1) size 4x18
 26 text run at (24,1) width 4: " "
2727 RenderInline {SPAN} at (0,0) size 10x18
2828 RenderInline (generated) at (0,0) size 10x18
29  RenderCounter at (28,0) size 10x18
30  text run at (28,0) width 10: "\x{25E6}"
31  RenderText {#text} at (38,0) size 4x18
32  text run at (38,0) width 4: " "
 29 RenderCounter at (28,1) size 10x18
 30 text run at (28,1) width 10: "\x{25E6}"
 31 RenderText {#text} at (38,1) size 4x18
 32 text run at (38,1) width 4: " "
3333 RenderInline {SPAN} at (0,0) size 10x18
3434 RenderInline (generated) at (0,0) size 10x18
35  RenderCounter at (42,0) size 10x18
36  text run at (42,0) width 10: "\x{25E6}"
37  RenderText {#text} at (52,0) size 4x18
38  text run at (52,0) width 4: " "
 35 RenderCounter at (42,1) size 10x18
 36 text run at (42,1) width 10: "\x{25E6}"
 37 RenderText {#text} at (52,1) size 4x18
 38 text run at (52,1) width 4: " "
3939 RenderInline {SPAN} at (0,0) size 10x18
4040 RenderInline (generated) at (0,0) size 10x18
41  RenderCounter at (56,0) size 10x18
42  text run at (56,0) width 10: "\x{25E6}"
43  RenderText {#text} at (66,0) size 4x18
44  text run at (66,0) width 4: " "
 41 RenderCounter at (56,1) size 10x18
 42 text run at (56,1) width 10: "\x{25E6}"
 43 RenderText {#text} at (66,1) size 4x18
 44 text run at (66,1) width 4: " "
4545 RenderInline {SPAN} at (0,0) size 10x18
4646 RenderInline (generated) at (0,0) size 10x18
47  RenderCounter at (70,0) size 10x18
48  text run at (70,0) width 10: "\x{25E6}"
49  RenderText {#text} at (80,0) size 4x18
50  text run at (80,0) width 4: " "
 47 RenderCounter at (70,1) size 10x18
 48 text run at (70,1) width 10: "\x{25E6}"
 49 RenderText {#text} at (80,1) size 4x18
 50 text run at (80,1) width 4: " "
5151 RenderInline {SPAN} at (0,0) size 10x18
5252 RenderInline (generated) at (0,0) size 10x18
53  RenderCounter at (84,0) size 10x18
54  text run at (84,0) width 10: "\x{25E6}"
55  RenderText {#text} at (94,0) size 4x18
56  text run at (94,0) width 4: " "
 53 RenderCounter at (84,1) size 10x18
 54 text run at (84,1) width 10: "\x{25E6}"
 55 RenderText {#text} at (94,1) size 4x18
 56 text run at (94,1) width 4: " "
5757 RenderInline {SPAN} at (0,0) size 10x18
5858 RenderInline (generated) at (0,0) size 10x18
59  RenderCounter at (98,0) size 10x18
60  text run at (98,0) width 10: "\x{25E6}"
61  RenderText {#text} at (108,0) size 4x18
62  text run at (108,0) width 4: " "
 59 RenderCounter at (98,1) size 10x18
 60 text run at (98,1) width 10: "\x{25E6}"
 61 RenderText {#text} at (108,1) size 4x18
 62 text run at (108,1) width 4: " "
6363 RenderInline {SPAN} at (0,0) size 10x18
6464 RenderInline (generated) at (0,0) size 10x18
65  RenderCounter at (112,0) size 10x18
66  text run at (112,0) width 10: "\x{25E6}"
67  RenderText {#text} at (122,0) size 4x18
68  text run at (122,0) width 4: " "
 65 RenderCounter at (112,1) size 10x18
 66 text run at (112,1) width 10: "\x{25E6}"
 67 RenderText {#text} at (122,1) size 4x18
 68 text run at (122,1) width 4: " "
6969 RenderInline {SPAN} at (0,0) size 10x18
7070 RenderInline (generated) at (0,0) size 10x18
71  RenderCounter at (126,0) size 10x18
72  text run at (126,0) width 10: "\x{25E6}"
73  RenderText {#text} at (136,0) size 4x18
74  text run at (136,0) width 4: " "
 71 RenderCounter at (126,1) size 10x18
 72 text run at (126,1) width 10: "\x{25E6}"
 73 RenderText {#text} at (136,1) size 4x18
 74 text run at (136,1) width 4: " "
7575 RenderInline {SPAN} at (0,0) size 10x18
7676 RenderInline (generated) at (0,0) size 10x18
77  RenderCounter at (140,0) size 10x18
78  text run at (140,0) width 10: "\x{25E6}"
79  RenderText {#text} at (150,0) size 4x18
80  text run at (150,0) width 4: " "
 77 RenderCounter at (140,1) size 10x18
 78 text run at (140,1) width 10: "\x{25E6}"
 79 RenderText {#text} at (150,1) size 4x18
 80 text run at (150,1) width 4: " "
8181 RenderInline {SPAN} at (0,0) size 10x18
8282 RenderInline (generated) at (0,0) size 10x18
83  RenderCounter at (154,0) size 10x18
84  text run at (154,0) width 10: "\x{25E6}"
 83 RenderCounter at (154,1) size 10x18
 84 text run at (154,1) width 10: "\x{25E6}"
8585 RenderText {#text} at (0,0) size 0x0
86  RenderBlock {DIV} at (0,52) size 784x18
87  RenderText {#text} at (0,0) size 164x18
88  text run at (0,0) width 14: "\x{25E6} "
89  text run at (14,0) width 14: "\x{25E6} "
90  text run at (28,0) width 14: "\x{25E6} "
91  text run at (42,0) width 14: "\x{25E6} "
92  text run at (56,0) width 14: "\x{25E6} "
93  text run at (70,0) width 14: "\x{25E6} "
94  text run at (84,0) width 14: "\x{25E6} "
95  text run at (98,0) width 14: "\x{25E6} "
96  text run at (112,0) width 14: "\x{25E6} "
97  text run at (126,0) width 14: "\x{25E6} "
98  text run at (140,0) width 14: "\x{25E6} "
99  text run at (154,0) width 10: "\x{25E6}"
 86 RenderBlock {DIV} at (0,53) size 784x19
 87 RenderText {#text} at (0,1) size 164x18
 88 text run at (0,1) width 14: "\x{25E6} "
 89 text run at (14,1) width 14: "\x{25E6} "
 90 text run at (28,1) width 14: "\x{25E6} "
 91 text run at (42,1) width 14: "\x{25E6} "
 92 text run at (56,1) width 14: "\x{25E6} "
 93 text run at (70,1) width 14: "\x{25E6} "
 94 text run at (84,1) width 14: "\x{25E6} "
 95 text run at (98,1) width 14: "\x{25E6} "
 96 text run at (112,1) width 14: "\x{25E6} "
 97 text run at (126,1) width 14: "\x{25E6} "
 98 text run at (140,1) width 14: "\x{25E6} "
 99 text run at (154,1) width 10: "\x{25E6}"
73924

LayoutTests/platform/mac/css2.1/t1202-counter-04-b-expected.checksum

1 3b9d8e9d47036ab914d41a0099d57a41
21\ No newline at end of file
 23accc741d40490ab32ef1bac0fe50da1
33\ No newline at end of file
73924

LayoutTests/platform/mac/css2.1/t1202-counter-04-b-expected.txt

11layer at (0,0) size 800x600
22 RenderView at (0,0) size 800x600
3 layer at (0,0) size 800x94
4  RenderBlock {HTML} at (0,0) size 800x94
5  RenderBody {BODY} at (8,16) size 784x70
 3layer at (0,0) size 800x96
 4 RenderBlock {HTML} at (0,0) size 800x96
 5 RenderBody {BODY} at (8,16) size 784x72
66 RenderBlock {P} at (0,0) size 784x18
77 RenderText {#text} at (0,0) size 233x18
88 text run at (0,0) width 233: "The following two lines should look "

@@layer at (0,0) size 800x94
1111 text run at (233,0) width 91: "approximately"
1212 RenderText {#text} at (324,0) size 63x18
1313 text run at (324,0) width 63: " the same:"
14  RenderBlock {DIV} at (0,34) size 784x18
 14 RenderBlock {DIV} at (0,34) size 784x19
1515 RenderInline {SPAN} at (0,0) size 9x18
1616 RenderInline (generated) at (0,0) size 9x18
17  RenderCounter at (0,0) size 9x18
18  text run at (0,0) width 9: "\x{25A0}"
19  RenderText {#text} at (9,0) size 4x18
20  text run at (9,0) width 4: " "
 17 RenderCounter at (0,1) size 9x18
 18 text run at (0,1) width 9: "\x{25A0}"
 19 RenderText {#text} at (9,1) size 4x18
 20 text run at (9,1) width 4: " "
2121 RenderInline {SPAN} at (0,0) size 9x18
2222 RenderInline (generated) at (0,0) size 9x18
23  RenderCounter at (13,0) size 9x18
24  text run at (13,0) width 9: "\x{25A0}"
25  RenderText {#text} at (22,0) size 4x18
26  text run at (22,0) width 4: " "
 23 RenderCounter at (13,1) size 9x18
 24 text run at (13,1) width 9: "\x{25A0}"
 25 RenderText {#text} at (22,1) size 4x18
 26 text run at (22,1) width 4: " "
2727 RenderInline {SPAN} at (0,0) size 9x18
2828 RenderInline (generated) at (0,0) size 9x18
29  RenderCounter at (26,0) size 9x18
30  text run at (26,0) width 9: "\x{25A0}"
31  RenderText {#text} at (35,0) size 4x18
32  text run at (35,0) width 4: " "
 29 RenderCounter at (26,1) size 9x18
 30 text run at (26,1) width 9: "\x{25A0}"
 31 RenderText {#text} at (35,1) size 4x18
 32 text run at (35,1) width 4: " "
3333 RenderInline {SPAN} at (0,0) size 9x18
3434 RenderInline (generated) at (0,0) size 9x18
35  RenderCounter at (39,0) size 9x18
36  text run at (39,0) width 9: "\x{25A0}"
37  RenderText {#text} at (48,0) size 4x18
38  text run at (48,0) width 4: " "
 35 RenderCounter at (39,1) size 9x18
 36 text run at (39,1) width 9: "\x{25A0}"
 37 RenderText {#text} at (48,1) size 4x18
 38 text run at (48,1) width 4: " "
3939 RenderInline {SPAN} at (0,0) size 9x18
4040 RenderInline (generated) at (0,0) size 9x18
41  RenderCounter at (52,0) size 9x18
42  text run at (52,0) width 9: "\x{25A0}"
43  RenderText {#text} at (61,0) size 4x18
44  text run at (61,0) width 4: " "
 41 RenderCounter at (52,1) size 9x18
 42 text run at (52,1) width 9: "\x{25A0}"
 43 RenderText {#text} at (61,1) size 4x18
 44 text run at (61,1) width 4: " "
4545 RenderInline {SPAN} at (0,0) size 9x18
4646 RenderInline (generated) at (0,0) size 9x18
47  RenderCounter at (65,0) size 9x18
48  text run at (65,0) width 9: "\x{25A0}"
49  RenderText {#text} at (74,0) size 4x18
50  text run at (74,0) width 4: " "
 47 RenderCounter at (65,1) size 9x18
 48 text run at (65,1) width 9: "\x{25A0}"
 49 RenderText {#text} at (74,1) size 4x18
 50 text run at (74,1) width 4: " "
5151 RenderInline {SPAN} at (0,0) size 9x18
5252 RenderInline (generated) at (0,0) size 9x18
53  RenderCounter at (78,0) size 9x18
54  text run at (78,0) width 9: "\x{25A0}"
55  RenderText {#text} at (87,0) size 4x18
56  text run at (87,0) width 4: " "
 53 RenderCounter at (78,1) size 9x18
 54 text run at (78,1) width 9: "\x{25A0}"
 55 RenderText {#text} at (87,1) size 4x18
 56 text run at (87,1) width 4: " "
5757 RenderInline {SPAN} at (0,0) size 9x18
5858 RenderInline (generated) at (0,0) size 9x18
59  RenderCounter at (91,0) size 9x18
60  text run at (91,0) width 9: "\x{25A0}"
61  RenderText {#text} at (100,0) size 4x18
62  text run at (100,0) width 4: " "
 59 RenderCounter at (91,1) size 9x18
 60 text run at (91,1) width 9: "\x{25A0}"
 61 RenderText {#text} at (100,1) size 4x18
 62 text run at (100,1) width 4: " "
6363 RenderInline {SPAN} at (0,0) size 9x18
6464 RenderInline (generated) at (0,0) size 9x18
65  RenderCounter at (104,0) size 9x18
66  text run at (104,0) width 9: "\x{25A0}"
67  RenderText {#text} at (113,0) size 4x18
68  text run at (113,0) width 4: " "
 65 RenderCounter at (104,1) size 9x18
 66 text run at (104,1) width 9: "\x{25A0}"
 67 RenderText {#text} at (113,1) size 4x18
 68 text run at (113,1) width 4: " "
6969 RenderInline {SPAN} at (0,0) size 9x18
7070 RenderInline (generated) at (0,0) size 9x18
71  RenderCounter at (117,0) size 9x18
72  text run at (117,0) width 9: "\x{25A0}"
73  RenderText {#text} at (126,0) size 4x18
74  text run at (126,0) width 4: " "
 71 RenderCounter at (117,1) size 9x18
 72 text run at (117,1) width 9: "\x{25A0}"
 73 RenderText {#text} at (126,1) size 4x18
 74 text run at (126,1) width 4: " "
7575 RenderInline {SPAN} at (0,0) size 9x18
7676 RenderInline (generated) at (0,0) size 9x18
77  RenderCounter at (130,0) size 9x18
78  text run at (130,0) width 9: "\x{25A0}"
79  RenderText {#text} at (139,0) size 4x18
80  text run at (139,0) width 4: " "
 77 RenderCounter at (130,1) size 9x18
 78 text run at (130,1) width 9: "\x{25A0}"
 79 RenderText {#text} at (139,1) size 4x18
 80 text run at (139,1) width 4: " "
8181 RenderInline {SPAN} at (0,0) size 9x18
8282 RenderInline (generated) at (0,0) size 9x18
83  RenderCounter at (143,0) size 9x18
84  text run at (143,0) width 9: "\x{25A0}"
 83 RenderCounter at (143,1) size 9x18
 84 text run at (143,1) width 9: "\x{25A0}"
8585 RenderText {#text} at (0,0) size 0x0
86  RenderBlock {DIV} at (0,52) size 784x18
87  RenderText {#text} at (0,0) size 164x18
88  text run at (0,0) width 14: "\x{25FE} "
89  text run at (14,0) width 14: "\x{25FE} "
90  text run at (28,0) width 14: "\x{25FE} "
91  text run at (42,0) width 14: "\x{25FE} "
92  text run at (56,0) width 14: "\x{25FE} "
93  text run at (70,0) width 14: "\x{25FE} "
94  text run at (84,0) width 14: "\x{25FE} "
95  text run at (98,0) width 14: "\x{25FE} "
96  text run at (112,0) width 14: "\x{25FE} "
97  text run at (126,0) width 14: "\x{25FE} "
98  text run at (140,0) width 14: "\x{25FE} "
99  text run at (154,0) width 10: "\x{25FE}"
 86 RenderBlock {DIV} at (0,53) size 784x19
 87 RenderText {#text} at (0,1) size 164x18
 88 text run at (0,1) width 14: "\x{25FE} "
 89 text run at (14,1) width 14: "\x{25FE} "
 90 text run at (28,1) width 14: "\x{25FE} "
 91 text run at (42,1) width 14: "\x{25FE} "
 92 text run at (56,1) width 14: "\x{25FE} "
 93 text run at (70,1) width 14: "\x{25FE} "
 94 text run at (84,1) width 14: "\x{25FE} "
 95 text run at (98,1) width 14: "\x{25FE} "
 96 text run at (112,1) width 14: "\x{25FE} "
 97 text run at (126,1) width 14: "\x{25FE} "
 98 text run at (140,1) width 14: "\x{25FE} "
 99 text run at (154,1) width 10: "\x{25FE}"
73924

LayoutTests/platform/mac/css2.1/t1202-counter-09-b-expected.checksum

1 b61fca1e7ae01a6d9b164fcf0d82fd91
21\ No newline at end of file
 2274a1765adf5d0c57d71201c7b585205
33\ No newline at end of file
73924

LayoutTests/platform/mac/css2.1/t1202-counter-09-b-expected.txt

11layer at (0,0) size 800x600
22 RenderView at (0,0) size 800x600
3 layer at (0,0) size 800x94
4  RenderBlock {HTML} at (0,0) size 800x94
5  RenderBody {BODY} at (8,16) size 784x70
 3layer at (0,0) size 800x100
 4 RenderBlock {HTML} at (0,0) size 800x100
 5 RenderBody {BODY} at (8,16) size 784x76
66 RenderBlock {P} at (0,0) size 784x18
77 RenderText {#text} at (0,0) size 292x18
88 text run at (0,0) width 292: "The following two lines should look the same:"
9  RenderBlock {DIV} at (0,34) size 784x18
 9 RenderBlock {DIV} at (0,34) size 784x21
1010 RenderInline {SPAN} at (0,0) size 7x18
1111 RenderInline (generated) at (0,0) size 7x18
12  RenderCounter at (0,0) size 7x18
13  text run at (0,0) width 7: "\x{10D0}"
14  RenderText {#text} at (7,0) size 4x18
15  text run at (7,0) width 4: " "
16  RenderInline {SPAN} at (0,0) size 9x18
17  RenderInline (generated) at (0,0) size 9x18
18  RenderCounter at (11,0) size 9x18
19  text run at (11,0) width 9: "\x{10D1}"
20  RenderText {#text} at (20,0) size 4x18
21  text run at (20,0) width 4: " "
22  RenderInline {SPAN} at (0,0) size 9x18
23  RenderInline (generated) at (0,0) size 9x18
24  RenderCounter at (24,0) size 9x18
25  text run at (24,0) width 9: "\x{10D2}"
26  RenderText {#text} at (33,0) size 4x18
27  text run at (33,0) width 4: " "
 12 RenderCounter at (0,3) size 7x18
 13 text run at (0,3) width 7: "\x{10D0}"
 14 RenderText {#text} at (7,3) size 4x18
 15 text run at (7,3) width 4: " "
 16 RenderInline {SPAN} at (0,0) size 9x18
 17 RenderInline (generated) at (0,0) size 9x18
 18 RenderCounter at (11,3) size 9x18
 19 text run at (11,3) width 9: "\x{10D1}"
 20 RenderText {#text} at (20,3) size 4x18
 21 text run at (20,3) width 4: " "
 22 RenderInline {SPAN} at (0,0) size 9x18
 23 RenderInline (generated) at (0,0) size 9x18
 24 RenderCounter at (24,3) size 9x18
 25 text run at (24,3) width 9: "\x{10D2}"
 26 RenderText {#text} at (33,3) size 4x18
 27 text run at (33,3) width 4: " "
2828 RenderInline {SPAN} at (0,0) size 14x18
2929 RenderInline (generated) at (0,0) size 14x18
30  RenderCounter at (37,0) size 14x18
31  text run at (37,0) width 14: "\x{10D3}"
32  RenderText {#text} at (51,0) size 4x18
33  text run at (51,0) width 4: " "
 30 RenderCounter at (37,3) size 14x18
 31 text run at (37,3) width 14: "\x{10D3}"
 32 RenderText {#text} at (51,3) size 4x18
 33 text run at (51,3) width 4: " "
3434 RenderInline {SPAN} at (0,0) size 8x18
3535 RenderInline (generated) at (0,0) size 8x18
36  RenderCounter at (55,0) size 8x18
37  text run at (55,0) width 8: "\x{10D4}"
38  RenderText {#text} at (63,0) size 4x18
39  text run at (63,0) width 4: " "
 36 RenderCounter at (55,3) size 8x18
 37 text run at (55,3) width 8: "\x{10D4}"
 38 RenderText {#text} at (63,3) size 4x18
 39 text run at (63,3) width 4: " "
4040 RenderInline {SPAN} at (0,0) size 9x18
4141 RenderInline (generated) at (0,0) size 9x18
42  RenderCounter at (67,0) size 9x18
43  text run at (67,0) width 9: "\x{10D5}"
44  RenderText {#text} at (76,0) size 4x18
45  text run at (76,0) width 4: " "
 42 RenderCounter at (67,3) size 9x18
 43 text run at (67,3) width 9: "\x{10D5}"
 44 RenderText {#text} at (76,3) size 4x18
 45 text run at (76,3) width 4: " "
4646 RenderInline {SPAN} at (0,0) size 12x18
4747 RenderInline (generated) at (0,0) size 12x18
48  RenderCounter at (80,0) size 12x18
49  text run at (80,0) width 12: "\x{10D6}"
50  RenderText {#text} at (92,0) size 4x18
51  text run at (92,0) width 4: " "
 48 RenderCounter at (80,3) size 12x18
 49 text run at (80,3) width 12: "\x{10D6}"
 50 RenderText {#text} at (92,3) size 4x18
 51 text run at (92,3) width 4: " "
5252 RenderInline {SPAN} at (0,0) size 11x18
5353 RenderInline (generated) at (0,0) size 11x18
54  RenderCounter at (96,0) size 11x18
55  text run at (96,0) width 11: "\x{10F1}"
56  RenderText {#text} at (107,0) size 4x18
57  text run at (107,0) width 4: " "
 54 RenderCounter at (96,3) size 11x18
 55 text run at (96,3) width 11: "\x{10F1}"
 56 RenderText {#text} at (107,3) size 4x18
 57 text run at (107,3) width 4: " "
5858 RenderInline {SPAN} at (0,0) size 14x18
5959 RenderInline (generated) at (0,0) size 14x18
60  RenderCounter at (111,0) size 14x18
61  text run at (111,0) width 14: "\x{10D7}"
62  RenderText {#text} at (125,0) size 4x18
63  text run at (125,0) width 4: " "
 60 RenderCounter at (111,3) size 14x18
 61 text run at (111,3) width 14: "\x{10D7}"
 62 RenderText {#text} at (125,3) size 4x18
 63 text run at (125,3) width 4: " "
6464 RenderInline {SPAN} at (0,0) size 8x18
6565 RenderInline (generated) at (0,0) size 8x18
66  RenderCounter at (129,0) size 8x18
67  text run at (129,0) width 8: "\x{10D8}"
68  RenderText {#text} at (137,0) size 4x18
69  text run at (137,0) width 4: " "
 66 RenderCounter at (129,3) size 8x18
 67 text run at (129,3) width 8: "\x{10D8}"
 68 RenderText {#text} at (137,3) size 4x18
 69 text run at (137,3) width 4: " "
7070 RenderInline {SPAN} at (0,0) size 15x18
7171 RenderInline (generated) at (0,0) size 15x18
72  RenderCounter at (141,0) size 15x18
73  text run at (141,0) width 15: "\x{10D8}\x{10D0}"
74  RenderText {#text} at (156,0) size 4x18
75  text run at (156,0) width 4: " "
 72 RenderCounter at (141,3) size 15x18
 73 text run at (141,3) width 15: "\x{10D8}\x{10D0}"
 74 RenderText {#text} at (156,3) size 4x18
 75 text run at (156,3) width 4: " "
7676 RenderInline {SPAN} at (0,0) size 17x18
7777 RenderInline (generated) at (0,0) size 17x18
78  RenderCounter at (160,0) size 17x18
79  text run at (160,0) width 17: "\x{10D8}\x{10D1}"
80  RenderText {#text} at (177,0) size 4x18
81  text run at (177,0) width 4: " "
 78 RenderCounter at (160,3) size 17x18
 79 text run at (160,3) width 17: "\x{10D8}\x{10D1}"
 80 RenderText {#text} at (177,3) size 4x18
 81 text run at (177,3) width 4: " "
8282 RenderInline {SPAN} at (0,0) size 9x18
8383 RenderInline (generated) at (0,0) size 9x18
84  RenderCounter at (181,0) size 9x18
85  text run at (181,0) width 9: "\x{10D9}"
86  RenderText {#text} at (190,0) size 4x18
87  text run at (190,0) width 4: " "
 84 RenderCounter at (181,3) size 9x18
 85 text run at (181,3) width 9: "\x{10D9}"
 86 RenderText {#text} at (190,3) size 4x18
 87 text run at (190,3) width 4: " "
8888 RenderInline {SPAN} at (0,0) size 15x18
8989 RenderInline (generated) at (0,0) size 15x18
90  RenderCounter at (194,0) size 15x18
91  text run at (194,0) width 15: "\x{10DA}"
92  RenderText {#text} at (209,0) size 4x18
93  text run at (209,0) width 4: " "
 90 RenderCounter at (194,3) size 15x18
 91 text run at (194,3) width 15: "\x{10DA}"
 92 RenderText {#text} at (209,3) size 4x18
 93 text run at (209,3) width 4: " "
9494 RenderInline {SPAN} at (0,0) size 9x18
9595 RenderInline (generated) at (0,0) size 9x18
96  RenderCounter at (213,0) size 9x18
97  text run at (213,0) width 9: "\x{10DB}"
98  RenderText {#text} at (222,0) size 4x18
99  text run at (222,0) width 4: " "
 96 RenderCounter at (213,3) size 9x18
 97 text run at (213,3) width 9: "\x{10DB}"
 98 RenderText {#text} at (222,3) size 4x18
 99 text run at (222,3) width 4: " "
100100 RenderInline {SPAN} at (0,0) size 9x18
101101 RenderInline (generated) at (0,0) size 9x18
102  RenderCounter at (226,0) size 9x18
103  text run at (226,0) width 9: "\x{10DC}"
104  RenderText {#text} at (235,0) size 4x18
105  text run at (235,0) width 4: " "
 102 RenderCounter at (226,3) size 9x18
 103 text run at (226,3) width 9: "\x{10DC}"
 104 RenderText {#text} at (235,3) size 4x18
 105 text run at (235,3) width 4: " "
106106 RenderInline {SPAN} at (0,0) size 9x18
107107 RenderInline (generated) at (0,0) size 9x18
108  RenderCounter at (239,0) size 9x18
109  text run at (239,0) width 9: "\x{10F2}"
110  RenderText {#text} at (248,0) size 4x18
111  text run at (248,0) width 4: " "
 108 RenderCounter at (239,3) size 9x18
 109 text run at (239,3) width 9: "\x{10F2}"
 110 RenderText {#text} at (248,3) size 4x18
 111 text run at (248,3) width 4: " "
112112 RenderInline {SPAN} at (0,0) size 11x18
113113 RenderInline (generated) at (0,0) size 11x18
114  RenderCounter at (252,0) size 11x18
115  text run at (252,0) width 11: "\x{10DD}"
116  RenderText {#text} at (263,0) size 4x18
117  text run at (263,0) width 4: " "
118  RenderInline {SPAN} at (0,0) size 9x18
119  RenderInline (generated) at (0,0) size 9x18
120  RenderCounter at (267,0) size 9x18
121  text run at (267,0) width 9: "\x{10DE}"
122  RenderText {#text} at (276,0) size 4x18
123  text run at (276,0) width 4: " "
124  RenderInline {SPAN} at (0,0) size 9x18
125  RenderInline (generated) at (0,0) size 9x18
126  RenderCounter at (280,0) size 9x18
127  text run at (280,0) width 9: "\x{10DF}"
128  RenderText {#text} at (289,0) size 4x18
129  text run at (289,0) width 4: " "
 114 RenderCounter at (252,3) size 11x18
 115 text run at (252,3) width 11: "\x{10DD}"
 116 RenderText {#text} at (263,3) size 4x18
 117 text run at (263,3) width 4: " "
 118 RenderInline {SPAN} at (0,0) size 9x18
 119 RenderInline (generated) at (0,0) size 9x18
 120 RenderCounter at (267,3) size 9x18
 121 text run at (267,3) width 9: "\x{10DE}"
 122 RenderText {#text} at (276,3) size 4x18
 123 text run at (276,3) width 4: " "
 124 RenderInline {SPAN} at (0,0) size 9x18
 125 RenderInline (generated) at (0,0) size 9x18
 126 RenderCounter at (280,3) size 9x18
 127 text run at (280,3) width 9: "\x{10DF}"
 128 RenderText {#text} at (289,3) size 4x18
 129 text run at (289,3) width 4: " "
130130 RenderInline {SPAN} at (0,0) size 11x18
131131 RenderInline (generated) at (0,0) size 11x18
132  RenderCounter at (293,0) size 11x18
133  text run at (293,0) width 11: "\x{10E0}"
134  RenderText {#text} at (304,0) size 4x18
135  text run at (304,0) width 4: " "
 132 RenderCounter at (293,3) size 11x18
 133 text run at (293,3) width 11: "\x{10E0}"
 134 RenderText {#text} at (304,3) size 4x18
 135 text run at (304,3) width 4: " "
136136 RenderInline {SPAN} at (0,0) size 9x18
137137 RenderInline (generated) at (0,0) size 9x18
138  RenderCounter at (308,0) size 9x18
139  text run at (308,0) width 9: "\x{10E1}"
140  RenderText {#text} at (317,0) size 4x18
141  text run at (317,0) width 4: " "
 138 RenderCounter at (308,3) size 9x18
 139 text run at (308,3) width 9: "\x{10E1}"
 140 RenderText {#text} at (317,3) size 4x18
 141 text run at (317,3) width 4: " "
142142 RenderInline {SPAN} at (0,0) size 13x18
143143 RenderInline (generated) at (0,0) size 13x18
144  RenderCounter at (321,0) size 13x18
145  text run at (321,0) width 13: "\x{10E2}"
146  RenderText {#text} at (334,0) size 4x18
147  text run at (334,0) width 4: " "
 144 RenderCounter at (321,3) size 13x18
 145 text run at (321,3) width 13: "\x{10E2}"
 146 RenderText {#text} at (334,3) size 4x18
 147 text run at (334,3) width 4: " "
148148 RenderInline {SPAN} at (0,0) size 8x18
149149 RenderInline (generated) at (0,0) size 8x18
150  RenderCounter at (338,0) size 8x18
151  text run at (338,0) width 8: "\x{10F3}"
152  RenderText {#text} at (346,0) size 4x18
153  text run at (346,0) width 4: " "
 150 RenderCounter at (338,3) size 8x18
 151 text run at (338,3) width 8: "\x{10F3}"
 152 RenderText {#text} at (346,3) size 4x18
 153 text run at (346,3) width 4: " "
154154 RenderInline {SPAN} at (0,0) size 12x18
155155 RenderInline (generated) at (0,0) size 12x18
156  RenderCounter at (350,0) size 12x18
157  text run at (350,0) width 12: "\x{10E4}"
158  RenderText {#text} at (362,0) size 4x18
159  text run at (362,0) width 4: " "
 156 RenderCounter at (350,3) size 12x18
 157 text run at (350,3) width 12: "\x{10E4}"
 158 RenderText {#text} at (362,3) size 4x18
 159 text run at (362,3) width 4: " "
160160 RenderInline {SPAN} at (0,0) size 8x18
161161 RenderInline (generated) at (0,0) size 8x18
162  RenderCounter at (366,0) size 8x18
163  text run at (366,0) width 8: "\x{10E5}"
164  RenderText {#text} at (374,0) size 4x18
165  text run at (374,0) width 4: " "
 162 RenderCounter at (366,3) size 8x18
 163 text run at (366,3) width 8: "\x{10E5}"
 164 RenderText {#text} at (374,3) size 4x18
 165 text run at (374,3) width 4: " "
166166 RenderInline {SPAN} at (0,0) size 11x18
167167 RenderInline (generated) at (0,0) size 11x18
168  RenderCounter at (378,0) size 11x18
169  text run at (378,0) width 11: "\x{10E6}"
170  RenderText {#text} at (389,0) size 4x18
171  text run at (389,0) width 4: " "
 168 RenderCounter at (378,3) size 11x18
 169 text run at (378,3) width 11: "\x{10E6}"
 170 RenderText {#text} at (389,3) size 4x18
 171 text run at (389,3) width 4: " "
172172 RenderInline {SPAN} at (0,0) size 8x18
173173 RenderInline (generated) at (0,0) size 8x18
174  RenderCounter at (393,0) size 8x18
175  text run at (393,0) width 8: "\x{10E7}"
176  RenderText {#text} at (401,0) size 4x18
177  text run at (401,0) width 4: " "
 174 RenderCounter at (393,3) size 8x18
 175 text run at (393,3) width 8: "\x{10E7}"
 176 RenderText {#text} at (401,3) size 4x18
 177 text run at (401,3) width 4: " "
178178 RenderInline {SPAN} at (0,0) size 9x18
179179 RenderInline (generated) at (0,0) size 9x18
180  RenderCounter at (405,0) size 9x18
181  text run at (405,0) width 9: "\x{10E8}"
182  RenderText {#text} at (414,0) size 4x18
183  text run at (414,0) width 4: " "
 180 RenderCounter at (405,3) size 9x18
 181 text run at (405,3) width 9: "\x{10E8}"
 182 RenderText {#text} at (414,3) size 4x18
 183 text run at (414,3) width 4: " "
184184 RenderInline {SPAN} at (0,0) size 8x18
185185 RenderInline (generated) at (0,0) size 8x18
186  RenderCounter at (418,0) size 8x18
187  text run at (418,0) width 8: "\x{10E9}"
188  RenderText {#text} at (426,0) size 4x18
189  text run at (426,0) width 4: " "
 186 RenderCounter at (418,3) size 8x18
 187 text run at (418,3) width 8: "\x{10E9}"
 188 RenderText {#text} at (426,3) size 4x18
 189 text run at (426,3) width 4: " "
190190 RenderInline {SPAN} at (0,0) size 9x18
191191 RenderInline (generated) at (0,0) size 9x18
192  RenderCounter at (430,0) size 9x18
193  text run at (430,0) width 9: "\x{10EA}"
194  RenderText {#text} at (439,0) size 4x18
195  text run at (439,0) width 4: " "
 192 RenderCounter at (430,3) size 9x18
 193 text run at (430,3) width 9: "\x{10EA}"
 194 RenderText {#text} at (439,3) size 4x18
 195 text run at (439,3) width 4: " "
196196 RenderInline {SPAN} at (0,0) size 9x18
197197 RenderInline (generated) at (0,0) size 9x18
198  RenderCounter at (443,0) size 9x18
199  text run at (443,0) width 9: "\x{10EB}"
200  RenderText {#text} at (452,0) size 4x18
201  text run at (452,0) width 4: " "
 198 RenderCounter at (443,3) size 9x18
 199 text run at (443,3) width 9: "\x{10EB}"
 200 RenderText {#text} at (452,3) size 4x18
 201 text run at (452,3) width 4: " "
202202 RenderInline {SPAN} at (0,0) size 9x18
203203 RenderInline (generated) at (0,0) size 9x18
204  RenderCounter at (456,0) size 9x18
205  text run at (456,0) width 9: "\x{10EC}"
206  RenderText {#text} at (465,0) size 4x18
207  text run at (465,0) width 4: " "
 204 RenderCounter at (456,3) size 9x18
 205 text run at (456,3) width 9: "\x{10EC}"
 206 RenderText {#text} at (465,3) size 4x18
 207 text run at (465,3) width 4: " "
208208 RenderInline {SPAN} at (0,0) size 9x18
209209 RenderInline (generated) at (0,0) size 9x18
210  RenderCounter at (469,0) size 9x18
211  text run at (469,0) width 9: "\x{10ED}"
212  RenderText {#text} at (478,0) size 4x18
213  text run at (478,0) width 4: " "
 210 RenderCounter at (469,3) size 9x18
 211 text run at (469,3) width 9: "\x{10ED}"
 212 RenderText {#text} at (478,3) size 4x18
 213 text run at (478,3) width 4: " "
214214 RenderInline {SPAN} at (0,0) size 9x18
215215 RenderInline (generated) at (0,0) size 9x18
216  RenderCounter at (482,0) size 9x18
217  text run at (482,0) width 9: "\x{10EE}"
218  RenderText {#text} at (491,0) size 4x18
219  text run at (491,0) width 4: " "
 216 RenderCounter at (482,3) size 9x18
 217 text run at (482,3) width 9: "\x{10EE}"
 218 RenderText {#text} at (491,3) size 4x18
 219 text run at (491,3) width 4: " "
220220 RenderInline {SPAN} at (0,0) size 8x18
221221 RenderInline (generated) at (0,0) size 8x18
222  RenderCounter at (495,0) size 8x18
223  text run at (495,0) width 8: "\x{10F4}"
224  RenderText {#text} at (503,0) size 4x18
225  text run at (503,0) width 4: " "
 222 RenderCounter at (495,3) size 8x18
 223 text run at (495,3) width 8: "\x{10F4}"
 224 RenderText {#text} at (503,3) size 4x18
 225 text run at (503,3) width 4: " "
226226 RenderInline {SPAN} at (0,0) size 12x18
227227 RenderInline (generated) at (0,0) size 12x18
228  RenderCounter at (507,0) size 12x18
229  text run at (507,0) width 12: "\x{10EF}"
230  RenderText {#text} at (519,0) size 4x18
231  text run at (519,0) width 4: " "
232  RenderInline {SPAN} at (0,0) size 9x18
233  RenderInline (generated) at (0,0) size 9x18
234  RenderCounter at (523,0) size 9x18
235  text run at (523,0) width 9: "\x{10F0}"
236  RenderText {#text} at (532,0) size 4x18
237  text run at (532,0) width 4: " "
238  RenderInline {SPAN} at (0,0) size 9x18
239  RenderInline (generated) at (0,0) size 9x18
240  RenderCounter at (536,0) size 9x18
241  text run at (536,0) width 9: "\x{10F5}"
242  RenderText {#text} at (545,0) size 4x18
243  text run at (545,0) width 4: " "
 228 RenderCounter at (507,3) size 12x18
 229 text run at (507,3) width 12: "\x{10EF}"
 230 RenderText {#text} at (519,3) size 4x18
 231 text run at (519,3) width 4: " "
 232 RenderInline {SPAN} at (0,0) size 9x18
 233 RenderInline (generated) at (0,0) size 9x18
 234 RenderCounter at (523,3) size 9x18
 235 text run at (523,3) width 9: "\x{10F0}"
 236 RenderText {#text} at (532,3) size 4x18
 237 text run at (532,3) width 4: " "
 238 RenderInline {SPAN} at (0,0) size 9x18
 239 RenderInline (generated) at (0,0) size 9x18
 240 RenderCounter at (536,3) size 9x18
 241 text run at (536,3) width 9: "\x{10F5}"
 242 RenderText {#text} at (545,3) size 4x18
 243 text run at (545,3) width 4: " "
244244 RenderInline {SPAN} at (0,0) size 50x18
245245 RenderInline (generated) at (0,0) size 50x18
246  RenderCounter at (549,0) size 50x18
247  text run at (549,0) width 50: "\x{10F5}\x{10F0}\x{10E8}\x{10DF}\x{10D7}"
 246 RenderCounter at (549,3) size 50x18
 247 text run at (549,3) width 50: "\x{10F5}\x{10F0}\x{10E8}\x{10DF}\x{10D7}"
248248 RenderText {#text} at (0,0) size 0x0
249  RenderBlock {DIV} at (0,52) size 784x18
250  RenderText {#text} at (0,0) size 599x18
251  text run at (0,0) width 11: "\x{10D0} "
252  text run at (11,0) width 13: "\x{10D1} "
253  text run at (24,0) width 13: "\x{10D2} "
254  text run at (37,0) width 18: "\x{10D3} "
255  text run at (55,0) width 12: "\x{10D4} "
256  text run at (67,0) width 13: "\x{10D5} "
257  text run at (80,0) width 16: "\x{10D6} "
258  text run at (96,0) width 15: "\x{10F1} "
259  text run at (111,0) width 18: "\x{10D7} "
260  text run at (129,0) width 12: "\x{10D8} "
261  text run at (141,0) width 19: "\x{10D8}\x{10D0} "
262  text run at (160,0) width 21: "\x{10D8}\x{10D1} "
263  text run at (181,0) width 13: "\x{10D9} "
264  text run at (194,0) width 19: "\x{10DA} "
265  text run at (213,0) width 13: "\x{10DB} "
266  text run at (226,0) width 13: "\x{10DC} "
267  text run at (239,0) width 13: "\x{10F2} "
268  text run at (252,0) width 15: "\x{10DD} "
269  text run at (267,0) width 13: "\x{10DE} "
270  text run at (280,0) width 13: "\x{10DF} "
271  text run at (293,0) width 15: "\x{10E0} "
272  text run at (308,0) width 13: "\x{10E1} "
273  text run at (321,0) width 17: "\x{10E2} "
274  text run at (338,0) width 12: "\x{10F3} "
275  text run at (350,0) width 16: "\x{10E4} "
276  text run at (366,0) width 12: "\x{10E5} "
277  text run at (378,0) width 15: "\x{10E6} "
278  text run at (393,0) width 12: "\x{10E7} "
279  text run at (405,0) width 13: "\x{10E8} "
280  text run at (418,0) width 12: "\x{10E9} "
281  text run at (430,0) width 13: "\x{10EA} "
282  text run at (443,0) width 13: "\x{10EB} "
283  text run at (456,0) width 13: "\x{10EC} "
284  text run at (469,0) width 13: "\x{10ED} "
285  text run at (482,0) width 13: "\x{10EE} "
286  text run at (495,0) width 12: "\x{10F4} "
287  text run at (507,0) width 16: "\x{10EF} "
288  text run at (523,0) width 13: "\x{10F0} "
289  text run at (536,0) width 13: "\x{10F5} "
290  text run at (549,0) width 50: "\x{10F5}\x{10F0}\x{10E8}\x{10DF}\x{10D7}"
 249 RenderBlock {DIV} at (0,55) size 784x21
 250 RenderText {#text} at (0,3) size 599x18
 251 text run at (0,3) width 11: "\x{10D0} "
 252 text run at (11,3) width 13: "\x{10D1} "
 253 text run at (24,3) width 13: "\x{10D2} "
 254 text run at (37,3) width 18: "\x{10D3} "
 255 text run at (55,3) width 12: "\x{10D4} "
 256 text run at (67,3) width 13: "\x{10D5} "
 257 text run at (80,3) width 16: "\x{10D6} "
 258 text run at (96,3) width 15: "\x{10F1} "
 259 text run at (111,3) width 18: "\x{10D7} "
 260 text run at (129,3) width 12: "\x{10D8} "
 261 text run at (141,3) width 19: "\x{10D8}\x{10D0} "
 262 text run at (160,3) width 21: "\x{10D8}\x{10D1} "
 263 text run at (181,3) width 13: "\x{10D9} "
 264 text run at (194,3) width 19: "\x{10DA} "
 265 text run at (213,3) width 13: "\x{10DB} "
 266 text run at (226,3) width 13: "\x{10DC} "
 267 text run at (239,3) width 13: "\x{10F2} "
 268 text run at (252,3) width 15: "\x{10DD} "
 269 text run at (267,3) width 13: "\x{10DE} "
 270 text run at (280,3) width 13: "\x{10DF} "
 271 text run at (293,3) width 15: "\x{10E0} "
 272 text run at (308,3) width 13: "\x{10E1} "
 273 text run at (321,3) width 17: "\x{10E2} "
 274 text run at (338,3) width 12: "\x{10F3} "
 275 text run at (350,3) width 16: "\x{10E4} "
 276 text run at (366,3) width 12: "\x{10E5} "
 277 text run at (378,3) width 15: "\x{10E6} "
 278 text run at (393,3) width 12: "\x{10E7} "
 279 text run at (405,3) width 13: "\x{10E8} "
 280 text run at (418,3) width 12: "\x{10E9} "
 281 text run at (430,3) width 13: "\x{10EA} "
 282 text run at (443,3) width 13: "\x{10EB} "
 283 text run at (456,3) width 13: "\x{10EC} "
 284 text run at (469,3) width 13: "\x{10ED} "
 285 text run at (482,3) width 13: "\x{10EE} "
 286 text run at (495,3) width 12: "\x{10F4} "
 287 text run at (507,3) width 16: "\x{10EF} "
 288 text run at (523,3) width 13: "\x{10F0} "
 289 text run at (536,3) width 13: "\x{10F5} "
 290 text run at (549,3) width 50: "\x{10F5}\x{10F0}\x{10E8}\x{10DF}\x{10D7}"
73924

LayoutTests/platform/mac/css2.1/t1202-counters-03-b-expected.checksum

1 a8673c67fe803d22904c171edac16e1c
21\ No newline at end of file
 22de23ee9b615249bfb454277c44c0e6e
33\ No newline at end of file
73924

LayoutTests/platform/mac/css2.1/t1202-counters-03-b-expected.txt

11layer at (0,0) size 800x600
22 RenderView at (0,0) size 800x600
3 layer at (0,0) size 800x94
4  RenderBlock {HTML} at (0,0) size 800x94
5  RenderBody {BODY} at (8,16) size 784x70
 3layer at (0,0) size 800x96
 4 RenderBlock {HTML} at (0,0) size 800x96
 5 RenderBody {BODY} at (8,16) size 784x72
66 RenderBlock {P} at (0,0) size 784x18
77 RenderText {#text} at (0,0) size 233x18
88 text run at (0,0) width 233: "The following two lines should look "

@@layer at (0,0) size 800x94
1111 text run at (233,0) width 91: "approximately"
1212 RenderText {#text} at (324,0) size 63x18
1313 text run at (324,0) width 63: " the same:"
14  RenderBlock {DIV} at (0,34) size 784x18
 14 RenderBlock {DIV} at (0,34) size 784x19
1515 RenderInline {SPAN} at (0,0) size 23x18
1616 RenderInline (generated) at (0,0) size 23x18
17  RenderCounter at (0,0) size 23x18
18  text run at (0,0) width 23: "\x{25E6}.\x{25E6}"
19  RenderText {#text} at (23,0) size 4x18
20  text run at (23,0) width 4: " "
 17 RenderCounter at (0,1) size 23x18
 18 text run at (0,1) width 23: "\x{25E6}.\x{25E6}"
 19 RenderText {#text} at (23,1) size 4x18
 20 text run at (23,1) width 4: " "
2121 RenderInline {SPAN} at (0,0) size 23x18
2222 RenderInline (generated) at (0,0) size 23x18
23  RenderCounter at (27,0) size 23x18
24  text run at (27,0) width 23: "\x{25E6}.\x{25E6}"
25  RenderText {#text} at (50,0) size 4x18
26  text run at (50,0) width 4: " "
 23 RenderCounter at (27,1) size 23x18
 24 text run at (27,1) width 23: "\x{25E6}.\x{25E6}"
 25 RenderText {#text} at (50,1) size 4x18
 26 text run at (50,1) width 4: " "
2727 RenderInline {SPAN} at (0,0) size 23x18
2828 RenderInline (generated) at (0,0) size 23x18
29  RenderCounter at (54,0) size 23x18
30  text run at (54,0) width 23: "\x{25E6}.\x{25E6}"
31  RenderText {#text} at (77,0) size 4x18
32  text run at (77,0) width 4: " "
 29 RenderCounter at (54,1) size 23x18
 30 text run at (54,1) width 23: "\x{25E6}.\x{25E6}"
 31 RenderText {#text} at (77,1) size 4x18
 32 text run at (77,1) width 4: " "
3333 RenderInline {SPAN} at (0,0) size 23x18
3434 RenderInline (generated) at (0,0) size 23x18
35  RenderCounter at (81,0) size 23x18
36  text run at (81,0) width 23: "\x{25E6}.\x{25E6}"
37  RenderText {#text} at (104,0) size 4x18
38  text run at (104,0) width 4: " "
 35 RenderCounter at (81,1) size 23x18
 36 text run at (81,1) width 23: "\x{25E6}.\x{25E6}"
 37 RenderText {#text} at (104,1) size 4x18
 38 text run at (104,1) width 4: " "
3939 RenderInline {SPAN} at (0,0) size 23x18
4040 RenderInline (generated) at (0,0) size 23x18
41  RenderCounter at (108,0) size 23x18
42  text run at (108,0) width 23: "\x{25E6}.\x{25E6}"
43  RenderText {#text} at (131,0) size 4x18
44  text run at (131,0) width 4: " "
 41 RenderCounter at (108,1) size 23x18
 42 text run at (108,1) width 23: "\x{25E6}.\x{25E6}"
 43 RenderText {#text} at (131,1) size 4x18
 44 text run at (131,1) width 4: " "
4545 RenderInline {SPAN} at (0,0) size 23x18
4646 RenderInline (generated) at (0,0) size 23x18
47  RenderCounter at (135,0) size 23x18
48  text run at (135,0) width 23: "\x{25E6}.\x{25E6}"
49  RenderText {#text} at (158,0) size 4x18
50  text run at (158,0) width 4: " "
 47 RenderCounter at (135,1) size 23x18
 48 text run at (135,1) width 23: "\x{25E6}.\x{25E6}"
 49 RenderText {#text} at (158,1) size 4x18
 50 text run at (158,1) width 4: " "
5151 RenderInline {SPAN} at (0,0) size 23x18
5252 RenderInline (generated) at (0,0) size 23x18
53  RenderCounter at (162,0) size 23x18
54  text run at (162,0) width 23: "\x{25E6}.\x{25E6}"
55  RenderText {#text} at (185,0) size 4x18
56  text run at (185,0) width 4: " "
 53 RenderCounter at (162,1) size 23x18
 54 text run at (162,1) width 23: "\x{25E6}.\x{25E6}"
 55 RenderText {#text} at (185,1) size 4x18
 56 text run at (185,1) width 4: " "
5757 RenderInline {SPAN} at (0,0) size 23x18
5858 RenderInline (generated) at (0,0) size 23x18
59  RenderCounter at (189,0) size 23x18
60  text run at (189,0) width 23: "\x{25E6}.\x{25E6}"
61  RenderText {#text} at (212,0) size 4x18
62  text run at (212,0) width 4: " "
 59 RenderCounter at (189,1) size 23x18
 60 text run at (189,1) width 23: "\x{25E6}.\x{25E6}"
 61 RenderText {#text} at (212,1) size 4x18
 62 text run at (212,1) width 4: " "
6363 RenderInline {SPAN} at (0,0) size 23x18
6464 RenderInline (generated) at (0,0) size 23x18
65  RenderCounter at (216,0) size 23x18
66  text run at (216,0) width 23: "\x{25E6}.\x{25E6}"
67  RenderText {#text} at (239,0) size 4x18
68  text run at (239,0) width 4: " "
 65 RenderCounter at (216,1) size 23x18
 66 text run at (216,1) width 23: "\x{25E6}.\x{25E6}"
 67 RenderText {#text} at (239,1) size 4x18
 68 text run at (239,1) width 4: " "
6969 RenderInline {SPAN} at (0,0) size 23x18
7070 RenderInline (generated) at (0,0) size 23x18
71  RenderCounter at (243,0) size 23x18
72  text run at (243,0) width 23: "\x{25E6}.\x{25E6}"
73  RenderText {#text} at (266,0) size 4x18
74  text run at (266,0) width 4: " "
 71 RenderCounter at (243,1) size 23x18
 72 text run at (243,1) width 23: "\x{25E6}.\x{25E6}"
 73 RenderText {#text} at (266,1) size 4x18
 74 text run at (266,1) width 4: " "
7575 RenderInline {SPAN} at (0,0) size 23x18
7676 RenderInline (generated) at (0,0) size 23x18
77  RenderCounter at (270,0) size 23x18
78  text run at (270,0) width 23: "\x{25E6}.\x{25E6}"
79  RenderText {#text} at (293,0) size 4x18
80  text run at (293,0) width 4: " "
 77 RenderCounter at (270,1) size 23x18
 78 text run at (270,1) width 23: "\x{25E6}.\x{25E6}"
 79 RenderText {#text} at (293,1) size 4x18
 80 text run at (293,1) width 4: " "
8181 RenderInline {SPAN} at (0,0) size 23x18
8282 RenderInline (generated) at (0,0) size 23x18
83  RenderCounter at (297,0) size 23x18
84  text run at (297,0) width 23: "\x{25E6}.\x{25E6}"
 83 RenderCounter at (297,1) size 23x18
 84 text run at (297,1) width 23: "\x{25E6}.\x{25E6}"
8585 RenderText {#text} at (0,0) size 0x0
86  RenderBlock {DIV} at (0,52) size 784x18
87  RenderText {#text} at (0,0) size 320x18
88  text run at (0,0) width 27: "\x{25E6}.\x{25E6} "
89  text run at (27,0) width 27: "\x{25E6}.\x{25E6} "
90  text run at (54,0) width 27: "\x{25E6}.\x{25E6} "
91  text run at (81,0) width 27: "\x{25E6}.\x{25E6} "
92  text run at (108,0) width 27: "\x{25E6}.\x{25E6} "
93  text run at (135,0) width 27: "\x{25E6}.\x{25E6} "
94  text run at (162,0) width 27: "\x{25E6}.\x{25E6} "
95  text run at (189,0) width 27: "\x{25E6}.\x{25E6} "
96  text run at (216,0) width 27: "\x{25E6}.\x{25E6} "
97  text run at (243,0) width 27: "\x{25E6}.\x{25E6} "
98  text run at (270,0) width 27: "\x{25E6}.\x{25E6} "
99  text run at (297,0) width 23: "\x{25E6}.\x{25E6}"
 86 RenderBlock {DIV} at (0,53) size 784x19
 87 RenderText {#text} at (0,1) size 320x18
 88 text run at (0,1) width 27: "\x{25E6}.\x{25E6} "
 89 text run at (27,1) width 27: "\x{25E6}.\x{25E6} "
 90 text run at (54,1) width 27: "\x{25E6}.\x{25E6} "
 91 text run at (81,1) width 27: "\x{25E6}.\x{25E6} "
 92 text run at (108,1) width 27: "\x{25E6}.\x{25E6} "
 93 text run at (135,1) width 27: "\x{25E6}.\x{25E6} "
 94 text run at (162,1) width 27: "\x{25E6}.\x{25E6} "
 95 text run at (189,1) width 27: "\x{25E6}.\x{25E6} "
 96 text run at (216,1) width 27: "\x{25E6}.\x{25E6} "
 97 text run at (243,1) width 27: "\x{25E6}.\x{25E6} "
 98 text run at (270,1) width 27: "\x{25E6}.\x{25E6} "
 99 text run at (297,1) width 23: "\x{25E6}.\x{25E6}"
73924

LayoutTests/platform/mac/css2.1/t1202-counters-04-b-expected.checksum

1 a1809befa978cb162585a6ecd54ef506
21\ No newline at end of file
 29b36f5ce53e878102d30260a44993e88
33\ No newline at end of file
73924

LayoutTests/platform/mac/css2.1/t1202-counters-04-b-expected.txt

11layer at (0,0) size 800x600
22 RenderView at (0,0) size 800x600
3 layer at (0,0) size 800x94
4  RenderBlock {HTML} at (0,0) size 800x94
5  RenderBody {BODY} at (8,16) size 784x70
 3layer at (0,0) size 800x96
 4 RenderBlock {HTML} at (0,0) size 800x96
 5 RenderBody {BODY} at (8,16) size 784x72
66 RenderBlock {P} at (0,0) size 784x18
77 RenderText {#text} at (0,0) size 233x18
88 text run at (0,0) width 233: "The following two lines should look "

@@layer at (0,0) size 800x94
1111 text run at (233,0) width 91: "approximately"
1212 RenderText {#text} at (324,0) size 63x18
1313 text run at (324,0) width 63: " the same:"
14  RenderBlock {DIV} at (0,34) size 784x18
 14 RenderBlock {DIV} at (0,34) size 784x19
1515 RenderInline {SPAN} at (0,0) size 22x18
1616 RenderInline (generated) at (0,0) size 22x18
17  RenderCounter at (0,0) size 22x18
18  text run at (0,0) width 22: "\x{25A0}.\x{25A0}"
19  RenderText {#text} at (22,0) size 4x18
20  text run at (22,0) width 4: " "
 17 RenderCounter at (0,1) size 22x18
 18 text run at (0,1) width 22: "\x{25A0}.\x{25A0}"
 19 RenderText {#text} at (22,1) size 4x18
 20 text run at (22,1) width 4: " "
2121 RenderInline {SPAN} at (0,0) size 22x18
2222 RenderInline (generated) at (0,0) size 22x18
23  RenderCounter at (26,0) size 22x18
24  text run at (26,0) width 22: "\x{25A0}.\x{25A0}"
25  RenderText {#text} at (48,0) size 4x18
26  text run at (48,0) width 4: " "
 23 RenderCounter at (26,1) size 22x18
 24 text run at (26,1) width 22: "\x{25A0}.\x{25A0}"
 25 RenderText {#text} at (48,1) size 4x18
 26 text run at (48,1) width 4: " "
2727 RenderInline {SPAN} at (0,0) size 22x18
2828 RenderInline (generated) at (0,0) size 22x18
29  RenderCounter at (52,0) size 22x18
30  text run at (52,0) width 22: "\x{25A0}.\x{25A0}"
31  RenderText {#text} at (74,0) size 4x18
32  text run at (74,0) width 4: " "
 29 RenderCounter at (52,1) size 22x18
 30 text run at (52,1) width 22: "\x{25A0}.\x{25A0}"
 31 RenderText {#text} at (74,1) size 4x18
 32 text run at (74,1) width 4: " "
3333 RenderInline {SPAN} at (0,0) size 22x18
3434 RenderInline (generated) at (0,0) size 22x18
35  RenderCounter at (78,0) size 22x18
36  text run at (78,0) width 22: "\x{25A0}.\x{25A0}"
37  RenderText {#text} at (100,0) size 4x18
38  text run at (100,0) width 4: " "
 35 RenderCounter at (78,1) size 22x18
 36 text run at (78,1) width 22: "\x{25A0}.\x{25A0}"
 37 RenderText {#text} at (100,1) size 4x18
 38 text run at (100,1) width 4: " "
3939 RenderInline {SPAN} at (0,0) size 22x18
4040 RenderInline (generated) at (0,0) size 22x18
41  RenderCounter at (104,0) size 22x18
42  text run at (104,0) width 22: "\x{25A0}.\x{25A0}"
43  RenderText {#text} at (126,0) size 4x18
44  text run at (126,0) width 4: " "
 41 RenderCounter at (104,1) size 22x18
 42 text run at (104,1) width 22: "\x{25A0}.\x{25A0}"
 43 RenderText {#text} at (126,1) size 4x18
 44 text run at (126,1) width 4: " "
4545 RenderInline {SPAN} at (0,0) size 22x18
4646 RenderInline (generated) at (0,0) size 22x18
47  RenderCounter at (130,0) size 22x18
48  text run at (130,0) width 22: "\x{25A0}.\x{25A0}"
49  RenderText {#text} at (152,0) size 4x18
50  text run at (152,0) width 4: " "
 47 RenderCounter at (130,1) size 22x18
 48 text run at (130,1) width 22: "\x{25A0}.\x{25A0}"
 49 RenderText {#text} at (152,1) size 4x18
 50 text run at (152,1) width 4: " "
5151 RenderInline {SPAN} at (0,0) size 22x18
5252 RenderInline (generated) at (0,0) size 22x18
53  RenderCounter at (156,0) size 22x18
54  text run at (156,0) width 22: "\x{25A0}.\x{25A0}"
55  RenderText {#text} at (178,0) size 4x18
56  text run at (178,0) width 4: " "
 53 RenderCounter at (156,1) size 22x18
 54 text run at (156,1) width 22: "\x{25A0}.\x{25A0}"
 55 RenderText {#text} at (178,1) size 4x18
 56 text run at (178,1) width 4: " "
5757 RenderInline {SPAN} at (0,0) size 22x18
5858 RenderInline (generated) at (0,0) size 22x18
59  RenderCounter at (182,0) size 22x18
60  text run at (182,0) width 22: "\x{25A0}.\x{25A0}"
61  RenderText {#text} at (204,0) size 4x18
62  text run at (204,0) width 4: " "
 59 RenderCounter at (182,1) size 22x18
 60 text run at (182,1) width 22: "\x{25A0}.\x{25A0}"
 61 RenderText {#text} at (204,1) size 4x18
 62 text run at (204,1) width 4: " "
6363 RenderInline {SPAN} at (0,0) size 22x18
6464 RenderInline (generated) at (0,0) size 22x18
65  RenderCounter at (208,0) size 22x18
66  text run at (208,0) width 22: "\x{25A0}.\x{25A0}"
67  RenderText {#text} at (230,0) size 4x18
68  text run at (230,0) width 4: " "
 65 RenderCounter at (208,1) size 22x18
 66 text run at (208,1) width 22: "\x{25A0}.\x{25A0}"
 67 RenderText {#text} at (230,1) size 4x18
 68 text run at (230,1) width 4: " "
6969 RenderInline {SPAN} at (0,0) size 22x18
7070 RenderInline (generated) at (0,0) size 22x18
71  RenderCounter at (234,0) size 22x18
72  text run at (234,0) width 22: "\x{25A0}.\x{25A0}"
73  RenderText {#text} at (256,0) size 4x18
74  text run at (256,0) width 4: " "
 71 RenderCounter at (234,1) size 22x18
 72 text run at (234,1) width 22: "\x{25A0}.\x{25A0}"
 73 RenderText {#text} at (256,1) size 4x18
 74 text run at (256,1) width 4: " "
7575 RenderInline {SPAN} at (0,0) size 22x18
7676 RenderInline (generated) at (0,0) size 22x18
77  RenderCounter at (260,0) size 22x18
78  text run at (260,0) width 22: "\x{25A0}.\x{25A0}"
79  RenderText {#text} at (282,0) size 4x18
80  text run at (282,0) width 4: " "
 77 RenderCounter at (260,1) size 22x18
 78 text run at (260,1) width 22: "\x{25A0}.\x{25A0}"
 79 RenderText {#text} at (282,1) size 4x18
 80 text run at (282,1) width 4: " "
8181 RenderInline {SPAN} at (0,0) size 22x18
8282 RenderInline (generated) at (0,0) size 22x18
83  RenderCounter at (286,0) size 22x18
84  text run at (286,0) width 22: "\x{25A0}.\x{25A0}"
 83 RenderCounter at (286,1) size 22x18
 84 text run at (286,1) width 22: "\x{25A0}.\x{25A0}"
8585 RenderText {#text} at (0,0) size 0x0
86  RenderBlock {DIV} at (0,52) size 784x18
87  RenderText {#text} at (0,0) size 332x18
88  text run at (0,0) width 28: "\x{25FE}.\x{25FE} "
89  text run at (28,0) width 28: "\x{25FE}.\x{25FE} "
90  text run at (56,0) width 28: "\x{25FE}.\x{25FE} "
91  text run at (84,0) width 28: "\x{25FE}.\x{25FE} "
92  text run at (112,0) width 28: "\x{25FE}.\x{25FE} "
93  text run at (140,0) width 28: "\x{25FE}.\x{25FE} "
94  text run at (168,0) width 28: "\x{25FE}.\x{25FE} "
95  text run at (196,0) width 28: "\x{25FE}.\x{25FE} "
96  text run at (224,0) width 28: "\x{25FE}.\x{25FE} "
97  text run at (252,0) width 28: "\x{25FE}.\x{25FE} "
98  text run at (280,0) width 28: "\x{25FE}.\x{25FE} "
99  text run at (308,0) width 24: "\x{25FE}.\x{25FE}"
 86 RenderBlock {DIV} at (0,53) size 784x19
 87 RenderText {#text} at (0,1) size 332x18
 88 text run at (0,1) width 28: "\x{25FE}.\x{25FE} "
 89 text run at (28,1) width 28: "\x{25FE}.\x{25FE} "
 90 text run at (56,1) width 28: "\x{25FE}.\x{25FE} "
 91 text run at (84,1) width 28: "\x{25FE}.\x{25FE} "
 92 text run at (112,1) width 28: "\x{25FE}.\x{25FE} "
 93 text run at (140,1) width 28: "\x{25FE}.\x{25FE} "
 94 text run at (168,1) width 28: "\x{25FE}.\x{25FE} "
 95 text run at (196,1) width 28: "\x{25FE}.\x{25FE} "
 96 text run at (224,1) width 28: "\x{25FE}.\x{25FE} "
 97 text run at (252,1) width 28: "\x{25FE}.\x{25FE} "
 98 text run at (280,1) width 28: "\x{25FE}.\x{25FE} "
 99 text run at (308,1) width 24: "\x{25FE}.\x{25FE}"
73924

LayoutTests/platform/mac/css2.1/t1202-counters-09-b-expected.checksum

1 c3b206435f8ca9e2e9584d21801a32f7
21\ No newline at end of file
 285693de0d2bf33ca7b9eb15546674608
33\ No newline at end of file
73924

LayoutTests/platform/mac/css2.1/t1202-counters-09-b-expected.txt

11layer at (0,0) size 1047x585
22 RenderView at (0,0) size 800x585
3 layer at (0,0) size 800x94
4  RenderBlock {HTML} at (0,0) size 800x94
5  RenderBody {BODY} at (8,16) size 784x70
 3layer at (0,0) size 800x100
 4 RenderBlock {HTML} at (0,0) size 800x100
 5 RenderBody {BODY} at (8,16) size 784x76
66 RenderBlock {P} at (0,0) size 784x18
77 RenderText {#text} at (0,0) size 292x18
88 text run at (0,0) width 292: "The following two lines should look the same:"
9  RenderBlock {DIV} at (0,34) size 784x18
 9 RenderBlock {DIV} at (0,34) size 784x21
1010 RenderInline {SPAN} at (0,0) size 18x18
1111 RenderInline (generated) at (0,0) size 18x18
12  RenderCounter at (0,0) size 18x18
13  text run at (0,0) width 18: "\x{10D0}.\x{10D0}"
14  RenderText {#text} at (18,0) size 4x18
15  text run at (18,0) width 4: " "
16  RenderInline {SPAN} at (0,0) size 20x18
17  RenderInline (generated) at (0,0) size 20x18
18  RenderCounter at (22,0) size 20x18
19  text run at (22,0) width 20: "\x{10D0}.\x{10D1}"
20  RenderText {#text} at (42,0) size 4x18
21  text run at (42,0) width 4: " "
22  RenderInline {SPAN} at (0,0) size 20x18
23  RenderInline (generated) at (0,0) size 20x18
24  RenderCounter at (46,0) size 20x18
25  text run at (46,0) width 20: "\x{10D0}.\x{10D2}"
26  RenderText {#text} at (66,0) size 4x18
27  text run at (66,0) width 4: " "
 12 RenderCounter at (0,3) size 18x18
 13 text run at (0,3) width 18: "\x{10D0}.\x{10D0}"
 14 RenderText {#text} at (18,3) size 4x18
 15 text run at (18,3) width 4: " "
 16 RenderInline {SPAN} at (0,0) size 20x18
 17 RenderInline (generated) at (0,0) size 20x18
 18 RenderCounter at (22,3) size 20x18
 19 text run at (22,3) width 20: "\x{10D0}.\x{10D1}"
 20 RenderText {#text} at (42,3) size 4x18
 21 text run at (42,3) width 4: " "
 22 RenderInline {SPAN} at (0,0) size 20x18
 23 RenderInline (generated) at (0,0) size 20x18
 24 RenderCounter at (46,3) size 20x18
 25 text run at (46,3) width 20: "\x{10D0}.\x{10D2}"
 26 RenderText {#text} at (66,3) size 4x18
 27 text run at (66,3) width 4: " "
2828 RenderInline {SPAN} at (0,0) size 25x18
2929 RenderInline (generated) at (0,0) size 25x18
30  RenderCounter at (70,0) size 25x18
31  text run at (70,0) width 25: "\x{10D0}.\x{10D3}"
32  RenderText {#text} at (95,0) size 4x18
33  text run at (95,0) width 4: " "
 30 RenderCounter at (70,3) size 25x18
 31 text run at (70,3) width 25: "\x{10D0}.\x{10D3}"
 32 RenderText {#text} at (95,3) size 4x18
 33 text run at (95,3) width 4: " "
3434 RenderInline {SPAN} at (0,0) size 19x18
3535 RenderInline (generated) at (0,0) size 19x18
36  RenderCounter at (99,0) size 19x18
37  text run at (99,0) width 19: "\x{10D0}.\x{10D4}"
38  RenderText {#text} at (118,0) size 4x18
39  text run at (118,0) width 4: " "
 36 RenderCounter at (99,3) size 19x18
 37 text run at (99,3) width 19: "\x{10D0}.\x{10D4}"
 38 RenderText {#text} at (118,3) size 4x18
 39 text run at (118,3) width 4: " "
4040 RenderInline {SPAN} at (0,0) size 20x18
4141 RenderInline (generated) at (0,0) size 20x18
42  RenderCounter at (122,0) size 20x18
43  text run at (122,0) width 20: "\x{10D0}.\x{10D5}"
44  RenderText {#text} at (142,0) size 4x18
45  text run at (142,0) width 4: " "
 42 RenderCounter at (122,3) size 20x18
 43 text run at (122,3) width 20: "\x{10D0}.\x{10D5}"
 44 RenderText {#text} at (142,3) size 4x18
 45 text run at (142,3) width 4: " "
4646 RenderInline {SPAN} at (0,0) size 23x18
4747 RenderInline (generated) at (0,0) size 23x18
48  RenderCounter at (146,0) size 23x18
49  text run at (146,0) width 23: "\x{10D0}.\x{10D6}"
50  RenderText {#text} at (169,0) size 4x18
51  text run at (169,0) width 4: " "
 48 RenderCounter at (146,3) size 23x18
 49 text run at (146,3) width 23: "\x{10D0}.\x{10D6}"
 50 RenderText {#text} at (169,3) size 4x18
 51 text run at (169,3) width 4: " "
5252 RenderInline {SPAN} at (0,0) size 22x18
5353 RenderInline (generated) at (0,0) size 22x18
54  RenderCounter at (173,0) size 22x18
55  text run at (173,0) width 22: "\x{10D0}.\x{10F1}"
56  RenderText {#text} at (195,0) size 4x18
57  text run at (195,0) width 4: " "
 54 RenderCounter at (173,3) size 22x18
 55 text run at (173,3) width 22: "\x{10D0}.\x{10F1}"
 56 RenderText {#text} at (195,3) size 4x18
 57 text run at (195,3) width 4: " "
5858 RenderInline {SPAN} at (0,0) size 25x18
5959 RenderInline (generated) at (0,0) size 25x18
60  RenderCounter at (199,0) size 25x18
61  text run at (199,0) width 25: "\x{10D0}.\x{10D7}"
62  RenderText {#text} at (224,0) size 4x18
63  text run at (224,0) width 4: " "
 60 RenderCounter at (199,3) size 25x18
 61 text run at (199,3) width 25: "\x{10D0}.\x{10D7}"
 62 RenderText {#text} at (224,3) size 4x18
 63 text run at (224,3) width 4: " "
6464 RenderInline {SPAN} at (0,0) size 19x18
6565 RenderInline (generated) at (0,0) size 19x18
66  RenderCounter at (228,0) size 19x18
67  text run at (228,0) width 19: "\x{10D0}.\x{10D8}"
68  RenderText {#text} at (247,0) size 4x18
69  text run at (247,0) width 4: " "
 66 RenderCounter at (228,3) size 19x18
 67 text run at (228,3) width 19: "\x{10D0}.\x{10D8}"
 68 RenderText {#text} at (247,3) size 4x18
 69 text run at (247,3) width 4: " "
7070 RenderInline {SPAN} at (0,0) size 26x18
7171 RenderInline (generated) at (0,0) size 26x18
72  RenderCounter at (251,0) size 26x18
73  text run at (251,0) width 26: "\x{10D0}.\x{10D8}\x{10D0}"
74  RenderText {#text} at (277,0) size 4x18
75  text run at (277,0) width 4: " "
 72 RenderCounter at (251,3) size 26x18
 73 text run at (251,3) width 26: "\x{10D0}.\x{10D8}\x{10D0}"
 74 RenderText {#text} at (277,3) size 4x18
 75 text run at (277,3) width 4: " "
7676 RenderInline {SPAN} at (0,0) size 28x18
7777 RenderInline (generated) at (0,0) size 28x18
78  RenderCounter at (281,0) size 28x18
79  text run at (281,0) width 28: "\x{10D0}.\x{10D8}\x{10D1}"
80  RenderText {#text} at (309,0) size 4x18
81  text run at (309,0) width 4: " "
 78 RenderCounter at (281,3) size 28x18
 79 text run at (281,3) width 28: "\x{10D0}.\x{10D8}\x{10D1}"
 80 RenderText {#text} at (309,3) size 4x18
 81 text run at (309,3) width 4: " "
8282 RenderInline {SPAN} at (0,0) size 20x18
8383 RenderInline (generated) at (0,0) size 20x18
84  RenderCounter at (313,0) size 20x18
85  text run at (313,0) width 20: "\x{10D0}.\x{10D9}"
86  RenderText {#text} at (333,0) size 4x18
87  text run at (333,0) width 4: " "
 84 RenderCounter at (313,3) size 20x18
 85 text run at (313,3) width 20: "\x{10D0}.\x{10D9}"
 86 RenderText {#text} at (333,3) size 4x18
 87 text run at (333,3) width 4: " "
8888 RenderInline {SPAN} at (0,0) size 26x18
8989 RenderInline (generated) at (0,0) size 26x18
90  RenderCounter at (337,0) size 26x18
91  text run at (337,0) width 26: "\x{10D0}.\x{10DA}"
92  RenderText {#text} at (363,0) size 4x18
93  text run at (363,0) width 4: " "
 90 RenderCounter at (337,3) size 26x18
 91 text run at (337,3) width 26: "\x{10D0}.\x{10DA}"
 92 RenderText {#text} at (363,3) size 4x18
 93 text run at (363,3) width 4: " "
9494 RenderInline {SPAN} at (0,0) size 20x18
9595 RenderInline (generated) at (0,0) size 20x18
96  RenderCounter at (367,0) size 20x18
97  text run at (367,0) width 20: "\x{10D0}.\x{10DB}"
98  RenderText {#text} at (387,0) size 4x18
99  text run at (387,0) width 4: " "
 96 RenderCounter at (367,3) size 20x18
 97 text run at (367,3) width 20: "\x{10D0}.\x{10DB}"
 98 RenderText {#text} at (387,3) size 4x18
 99 text run at (387,3) width 4: " "
100100 RenderInline {SPAN} at (0,0) size 20x18
101101 RenderInline (generated) at (0,0) size 20x18
102  RenderCounter at (391,0) size 20x18
103  text run at (391,0) width 20: "\x{10D0}.\x{10DC}"
104  RenderText {#text} at (411,0) size 4x18
105  text run at (411,0) width 4: " "
 102 RenderCounter at (391,3) size 20x18
 103 text run at (391,3) width 20: "\x{10D0}.\x{10DC}"
 104 RenderText {#text} at (411,3) size 4x18
 105 text run at (411,3) width 4: " "
106106 RenderInline {SPAN} at (0,0) size 20x18
107107 RenderInline (generated) at (0,0) size 20x18
108  RenderCounter at (415,0) size 20x18
109  text run at (415,0) width 20: "\x{10D0}.\x{10F2}"
110  RenderText {#text} at (435,0) size 4x18
111  text run at (435,0) width 4: " "
 108 RenderCounter at (415,3) size 20x18
 109 text run at (415,3) width 20: "\x{10D0}.\x{10F2}"
 110 RenderText {#text} at (435,3) size 4x18
 111 text run at (435,3) width 4: " "
112112 RenderInline {SPAN} at (0,0) size 22x18
113113 RenderInline (generated) at (0,0) size 22x18
114  RenderCounter at (439,0) size 22x18
115  text run at (439,0) width 22: "\x{10D0}.\x{10DD}"
116  RenderText {#text} at (461,0) size 4x18
117  text run at (461,0) width 4: " "
118  RenderInline {SPAN} at (0,0) size 20x18
119  RenderInline (generated) at (0,0) size 20x18
120  RenderCounter at (465,0) size 20x18
121  text run at (465,0) width 20: "\x{10D0}.\x{10DE}"
122  RenderText {#text} at (485,0) size 4x18
123  text run at (485,0) width 4: " "
124  RenderInline {SPAN} at (0,0) size 20x18
125  RenderInline (generated) at (0,0) size 20x18
126  RenderCounter at (489,0) size 20x18
127  text run at (489,0) width 20: "\x{10D0}.\x{10DF}"
128  RenderText {#text} at (509,0) size 4x18
129  text run at (509,0) width 4: " "
 114 RenderCounter at (439,3) size 22x18
 115 text run at (439,3) width 22: "\x{10D0}.\x{10DD}"
 116 RenderText {#text} at (461,3) size 4x18
 117 text run at (461,3) width 4: " "
 118 RenderInline {SPAN} at (0,0) size 20x18
 119 RenderInline (generated) at (0,0) size 20x18
 120 RenderCounter at (465,3) size 20x18
 121 text run at (465,3) width 20: "\x{10D0}.\x{10DE}"
 122 RenderText {#text} at (485,3) size 4x18
 123 text run at (485,3) width 4: " "
 124 RenderInline {SPAN} at (0,0) size 20x18
 125 RenderInline (generated) at (0,0) size 20x18
 126 RenderCounter at (489,3) size 20x18
 127 text run at (489,3) width 20: "\x{10D0}.\x{10DF}"
 128 RenderText {#text} at (509,3) size 4x18
 129 text run at (509,3) width 4: " "
130130 RenderInline {SPAN} at (0,0) size 22x18
131131 RenderInline (generated) at (0,0) size 22x18
132  RenderCounter at (513,0) size 22x18
133  text run at (513,0) width 22: "\x{10D0}.\x{10E0}"
134  RenderText {#text} at (535,0) size 4x18
135  text run at (535,0) width 4: " "
 132 RenderCounter at (513,3) size 22x18
 133 text run at (513,3) width 22: "\x{10D0}.\x{10E0}"
 134 RenderText {#text} at (535,3) size 4x18
 135 text run at (535,3) width 4: " "
136136 RenderInline {SPAN} at (0,0) size 20x18
137137 RenderInline (generated) at (0,0) size 20x18
138  RenderCounter at (539,0) size 20x18
139  text run at (539,0) width 20: "\x{10D0}.\x{10E1}"
140  RenderText {#text} at (559,0) size 4x18
141  text run at (559,0) width 4: " "
 138 RenderCounter at (539,3) size 20x18
 139 text run at (539,3) width 20: "\x{10D0}.\x{10E1}"
 140 RenderText {#text} at (559,3) size 4x18
 141 text run at (559,3) width 4: " "
142142 RenderInline {SPAN} at (0,0) size 24x18
143143 RenderInline (generated) at (0,0) size 24x18
144  RenderCounter at (563,0) size 24x18
145  text run at (563,0) width 24: "\x{10D0}.\x{10E2}"
146  RenderText {#text} at (587,0) size 4x18
147  text run at (587,0) width 4: " "
 144 RenderCounter at (563,3) size 24x18
 145 text run at (563,3) width 24: "\x{10D0}.\x{10E2}"
 146 RenderText {#text} at (587,3) size 4x18
 147 text run at (587,3) width 4: " "
148148 RenderInline {SPAN} at (0,0) size 19x18
149149 RenderInline (generated) at (0,0) size 19x18
150  RenderCounter at (591,0) size 19x18
151  text run at (591,0) width 19: "\x{10D0}.\x{10F3}"
152  RenderText {#text} at (610,0) size 4x18
153  text run at (610,0) width 4: " "
 150 RenderCounter at (591,3) size 19x18
 151 text run at (591,3) width 19: "\x{10D0}.\x{10F3}"
 152 RenderText {#text} at (610,3) size 4x18
 153 text run at (610,3) width 4: " "
154154 RenderInline {SPAN} at (0,0) size 23x18
155155 RenderInline (generated) at (0,0) size 23x18
156  RenderCounter at (614,0) size 23x18
157  text run at (614,0) width 23: "\x{10D0}.\x{10E4}"
158  RenderText {#text} at (637,0) size 4x18
159  text run at (637,0) width 4: " "
 156 RenderCounter at (614,3) size 23x18
 157 text run at (614,3) width 23: "\x{10D0}.\x{10E4}"
 158 RenderText {#text} at (637,3) size 4x18
 159 text run at (637,3) width 4: " "
160160 RenderInline {SPAN} at (0,0) size 19x18
161161 RenderInline (generated) at (0,0) size 19x18
162  RenderCounter at (641,0) size 19x18
163  text run at (641,0) width 19: "\x{10D0}.\x{10E5}"
164  RenderText {#text} at (660,0) size 4x18
165  text run at (660,0) width 4: " "
 162 RenderCounter at (641,3) size 19x18
 163 text run at (641,3) width 19: "\x{10D0}.\x{10E5}"
 164 RenderText {#text} at (660,3) size 4x18
 165 text run at (660,3) width 4: " "
166166 RenderInline {SPAN} at (0,0) size 22x18
167167 RenderInline (generated) at (0,0) size 22x18
168  RenderCounter at (664,0) size 22x18
169  text run at (664,0) width 22: "\x{10D0}.\x{10E6}"
170  RenderText {#text} at (686,0) size 4x18
171  text run at (686,0) width 4: " "
 168 RenderCounter at (664,3) size 22x18
 169 text run at (664,3) width 22: "\x{10D0}.\x{10E6}"
 170 RenderText {#text} at (686,3) size 4x18
 171 text run at (686,3) width 4: " "
172172 RenderInline {SPAN} at (0,0) size 19x18
173173 RenderInline (generated) at (0,0) size 19x18
174  RenderCounter at (690,0) size 19x18
175  text run at (690,0) width 19: "\x{10D0}.\x{10E7}"
176  RenderText {#text} at (709,0) size 4x18
177  text run at (709,0) width 4: " "
 174 RenderCounter at (690,3) size 19x18
 175 text run at (690,3) width 19: "\x{10D0}.\x{10E7}"
 176 RenderText {#text} at (709,3) size 4x18
 177 text run at (709,3) width 4: " "
178178 RenderInline {SPAN} at (0,0) size 20x18
179179 RenderInline (generated) at (0,0) size 20x18
180  RenderCounter at (713,0) size 20x18
181  text run at (713,0) width 20: "\x{10D0}.\x{10E8}"
182  RenderText {#text} at (733,0) size 4x18
183  text run at (733,0) width 4: " "
 180 RenderCounter at (713,3) size 20x18
 181 text run at (713,3) width 20: "\x{10D0}.\x{10E8}"
 182 RenderText {#text} at (733,3) size 4x18
 183 text run at (733,3) width 4: " "
184184 RenderInline {SPAN} at (0,0) size 19x18
185185 RenderInline (generated) at (0,0) size 19x18
186  RenderCounter at (737,0) size 19x18
187  text run at (737,0) width 19: "\x{10D0}.\x{10E9}"
188  RenderText {#text} at (756,0) size 4x18
189  text run at (756,0) width 4: " "
 186 RenderCounter at (737,3) size 19x18
 187 text run at (737,3) width 19: "\x{10D0}.\x{10E9}"
 188 RenderText {#text} at (756,3) size 4x18
 189 text run at (756,3) width 4: " "
190190 RenderInline {SPAN} at (0,0) size 20x18
191191 RenderInline (generated) at (0,0) size 20x18
192  RenderCounter at (760,0) size 20x18
193  text run at (760,0) width 20: "\x{10D0}.\x{10EA}"
194  RenderText {#text} at (780,0) size 4x18
195  text run at (780,0) width 4: " "
 192 RenderCounter at (760,3) size 20x18
 193 text run at (760,3) width 20: "\x{10D0}.\x{10EA}"
 194 RenderText {#text} at (780,3) size 4x18
 195 text run at (780,3) width 4: " "
196196 RenderInline {SPAN} at (0,0) size 20x18
197197 RenderInline (generated) at (0,0) size 20x18
198  RenderCounter at (784,0) size 20x18
199  text run at (784,0) width 20: "\x{10D0}.\x{10EB}"
200  RenderText {#text} at (804,0) size 4x18
201  text run at (804,0) width 4: " "
 198 RenderCounter at (784,3) size 20x18
 199 text run at (784,3) width 20: "\x{10D0}.\x{10EB}"
 200 RenderText {#text} at (804,3) size 4x18
 201 text run at (804,3) width 4: " "
202202 RenderInline {SPAN} at (0,0) size 20x18
203203 RenderInline (generated) at (0,0) size 20x18
204  RenderCounter at (808,0) size 20x18
205  text run at (808,0) width 20: "\x{10D0}.\x{10EC}"
206  RenderText {#text} at (828,0) size 4x18
207  text run at (828,0) width 4: " "
 204 RenderCounter at (808,3) size 20x18
 205 text run at (808,3) width 20: "\x{10D0}.\x{10EC}"
 206 RenderText {#text} at (828,3) size 4x18
 207 text run at (828,3) width 4: " "
208208 RenderInline {SPAN} at (0,0) size 20x18
209209 RenderInline (generated) at (0,0) size 20x18
210  RenderCounter at (832,0) size 20x18
211  text run at (832,0) width 20: "\x{10D0}.\x{10ED}"
212  RenderText {#text} at (852,0) size 4x18
213  text run at (852,0) width 4: " "
 210 RenderCounter at (832,3) size 20x18
 211 text run at (832,3) width 20: "\x{10D0}.\x{10ED}"
 212 RenderText {#text} at (852,3) size 4x18
 213 text run at (852,3) width 4: " "
214214 RenderInline {SPAN} at (0,0) size 20x18
215215 RenderInline (generated) at (0,0) size 20x18
216  RenderCounter at (856,0) size 20x18
217  text run at (856,0) width 20: "\x{10D0}.\x{10EE}"
218  RenderText {#text} at (876,0) size 4x18
219  text run at (876,0) width 4: " "
 216 RenderCounter at (856,3) size 20x18
 217 text run at (856,3) width 20: "\x{10D0}.\x{10EE}"
 218 RenderText {#text} at (876,3) size 4x18
 219 text run at (876,3) width 4: " "
220220 RenderInline {SPAN} at (0,0) size 19x18
221221 RenderInline (generated) at (0,0) size 19x18
222  RenderCounter at (880,0) size 19x18
223  text run at (880,0) width 19: "\x{10D0}.\x{10F4}"
224  RenderText {#text} at (899,0) size 4x18
225  text run at (899,0) width 4: " "
 222 RenderCounter at (880,3) size 19x18
 223 text run at (880,3) width 19: "\x{10D0}.\x{10F4}"
 224 RenderText {#text} at (899,3) size 4x18
 225 text run at (899,3) width 4: " "
226226 RenderInline {SPAN} at (0,0) size 23x18
227227 RenderInline (generated) at (0,0) size 23x18
228  RenderCounter at (903,0) size 23x18
229  text run at (903,0) width 23: "\x{10D0}.\x{10EF}"
230  RenderText {#text} at (926,0) size 4x18
231  text run at (926,0) width 4: " "
232  RenderInline {SPAN} at (0,0) size 20x18
233  RenderInline (generated) at (0,0) size 20x18
234  RenderCounter at (930,0) size 20x18
235  text run at (930,0) width 20: "\x{10D0}.\x{10F0}"
236  RenderText {#text} at (950,0) size 4x18
237  text run at (950,0) width 4: " "
238  RenderInline {SPAN} at (0,0) size 20x18
239  RenderInline (generated) at (0,0) size 20x18
240  RenderCounter at (954,0) size 20x18
241  text run at (954,0) width 20: "\x{10D0}.\x{10F5}"
242  RenderText {#text} at (974,0) size 4x18
243  text run at (974,0) width 4: " "
 228 RenderCounter at (903,3) size 23x18
 229 text run at (903,3) width 23: "\x{10D0}.\x{10EF}"
 230 RenderText {#text} at (926,3) size 4x18
 231 text run at (926,3) width 4: " "
 232 RenderInline {SPAN} at (0,0) size 20x18
 233 RenderInline (generated) at (0,0) size 20x18
 234 RenderCounter at (930,3) size 20x18
 235 text run at (930,3) width 20: "\x{10D0}.\x{10F0}"
 236 RenderText {#text} at (950,3) size 4x18
 237 text run at (950,3) width 4: " "
 238 RenderInline {SPAN} at (0,0) size 20x18
 239 RenderInline (generated) at (0,0) size 20x18
 240 RenderCounter at (954,3) size 20x18
 241 text run at (954,3) width 20: "\x{10D0}.\x{10F5}"
 242 RenderText {#text} at (974,3) size 4x18
 243 text run at (974,3) width 4: " "
244244 RenderInline {SPAN} at (0,0) size 61x18
245245 RenderInline (generated) at (0,0) size 61x18
246  RenderCounter at (978,0) size 61x18
247  text run at (978,0) width 61: "\x{10D0}.\x{10F5}\x{10F0}\x{10E8}\x{10DF}\x{10D7}"
 246 RenderCounter at (978,3) size 61x18
 247 text run at (978,3) width 61: "\x{10D0}.\x{10F5}\x{10F0}\x{10E8}\x{10DF}\x{10D7}"
248248 RenderText {#text} at (0,0) size 0x0
249  RenderBlock {DIV} at (0,52) size 784x18
250  RenderText {#text} at (0,0) size 1039x18
251  text run at (0,0) width 22: "\x{10D0}.\x{10D0} "
252  text run at (22,0) width 24: "\x{10D0}.\x{10D1} "
253  text run at (46,0) width 24: "\x{10D0}.\x{10D2} "
254  text run at (70,0) width 29: "\x{10D0}.\x{10D3} "
255  text run at (99,0) width 23: "\x{10D0}.\x{10D4} "
256  text run at (122,0) width 24: "\x{10D0}.\x{10D5} "
257  text run at (146,0) width 27: "\x{10D0}.\x{10D6} "
258  text run at (173,0) width 26: "\x{10D0}.\x{10F1} "
259  text run at (199,0) width 29: "\x{10D0}.\x{10D7} "
260  text run at (228,0) width 23: "\x{10D0}.\x{10D8} "
261  text run at (251,0) width 30: "\x{10D0}.\x{10D8}\x{10D0} "
262  text run at (281,0) width 32: "\x{10D0}.\x{10D8}\x{10D1} "
263  text run at (313,0) width 24: "\x{10D0}.\x{10D9} "
264  text run at (337,0) width 30: "\x{10D0}.\x{10DA} "
265  text run at (367,0) width 24: "\x{10D0}.\x{10DB} "
266  text run at (391,0) width 24: "\x{10D0}.\x{10DC} "
267  text run at (415,0) width 24: "\x{10D0}.\x{10F2} "
268  text run at (439,0) width 26: "\x{10D0}.\x{10DD} "
269  text run at (465,0) width 24: "\x{10D0}.\x{10DE} "
270  text run at (489,0) width 24: "\x{10D0}.\x{10DF} "
271  text run at (513,0) width 26: "\x{10D0}.\x{10E0} "
272  text run at (539,0) width 24: "\x{10D0}.\x{10E1} "
273  text run at (563,0) width 28: "\x{10D0}.\x{10E2} "
274  text run at (591,0) width 23: "\x{10D0}.\x{10F3} "
275  text run at (614,0) width 27: "\x{10D0}.\x{10E4} "
276  text run at (641,0) width 23: "\x{10D0}.\x{10E5} "
277  text run at (664,0) width 26: "\x{10D0}.\x{10E6} "
278  text run at (690,0) width 23: "\x{10D0}.\x{10E7} "
279  text run at (713,0) width 24: "\x{10D0}.\x{10E8} "
280  text run at (737,0) width 23: "\x{10D0}.\x{10E9} "
281  text run at (760,0) width 24: "\x{10D0}.\x{10EA} "
282  text run at (784,0) width 24: "\x{10D0}.\x{10EB} "
283  text run at (808,0) width 24: "\x{10D0}.\x{10EC} "
284  text run at (832,0) width 24: "\x{10D0}.\x{10ED} "
285  text run at (856,0) width 24: "\x{10D0}.\x{10EE} "
286  text run at (880,0) width 23: "\x{10D0}.\x{10F4} "
287  text run at (903,0) width 27: "\x{10D0}.\x{10EF} "
288  text run at (930,0) width 24: "\x{10D0}.\x{10F0} "
289  text run at (954,0) width 24: "\x{10D0}.\x{10F5} "
290  text run at (978,0) width 61: "\x{10D0}.\x{10F5}\x{10F0}\x{10E8}\x{10DF}\x{10D7}"
 249 RenderBlock {DIV} at (0,55) size 784x21
 250 RenderText {#text} at (0,3) size 1039x18
 251 text run at (0,3) width 22: "\x{10D0}.\x{10D0} "
 252 text run at (22,3) width 24: "\x{10D0}.\x{10D1} "
 253 text run at (46,3) width 24: "\x{10D0}.\x{10D2} "
 254 text run at (70,3) width 29: "\x{10D0}.\x{10D3} "
 255 text run at (99,3) width 23: "\x{10D0}.\x{10D4} "
 256 text run at (122,3) width 24: "\x{10D0}.\x{10D5} "
 257 text run at (146,3) width 27: "\x{10D0}.\x{10D6} "
 258 text run at (173,3) width 26: "\x{10D0}.\x{10F1} "
 259 text run at (199,3) width 29: "\x{10D0}.\x{10D7} "
 260 text run at (228,3) width 23: "\x{10D0}.\x{10D8} "
 261 text run at (251,3) width 30: "\x{10D0}.\x{10D8}\x{10D0} "
 262 text run at (281,3) width 32: "\x{10D0}.\x{10D8}\x{10D1} "
 263 text run at (313,3) width 24: "\x{10D0}.\x{10D9} "
 264 text run at (337,3) width 30: "\x{10D0}.\x{10DA} "
 265 text run at (367,3) width 24: "\x{10D0}.\x{10DB} "
 266 text run at (391,3) width 24: "\x{10D0}.\x{10DC} "
 267 text run at (415,3) width 24: "\x{10D0}.\x{10F2} "
 268 text run at (439,3) width 26: "\x{10D0}.\x{10DD} "
 269 text run at (465,3) width 24: "\x{10D0}.\x{10DE} "
 270 text run at (489,3) width 24: "\x{10D0}.\x{10DF} "
 271 text run at (513,3) width 26: "\x{10D0}.\x{10E0} "
 272 text run at (539,3) width 24: "\x{10D0}.\x{10E1} "
 273 text run at (563,3) width 28: "\x{10D0}.\x{10E2} "
 274 text run at (591,3) width 23: "\x{10D0}.\x{10F3} "
 275 text run at (614,3) width 27: "\x{10D0}.\x{10E4} "
 276 text run at (641,3) width 23: "\x{10D0}.\x{10E5} "
 277 text run at (664,3) width 26: "\x{10D0}.\x{10E6} "
 278 text run at (690,3) width 23: "\x{10D0}.\x{10E7} "
 279 text run at (713,3) width 24: "\x{10D0}.\x{10E8} "
 280 text run at (737,3) width 23: "\x{10D0}.\x{10E9} "
 281 text run at (760,3) width 24: "\x{10D0}.\x{10EA} "
 282 text run at (784,3) width 24: "\x{10D0}.\x{10EB} "
 283 text run at (808,3) width 24: "\x{10D0}.\x{10EC} "
 284 text run at (832,3) width 24: "\x{10D0}.\x{10ED} "
 285 text run at (856,3) width 24: "\x{10D0}.\x{10EE} "
 286 text run at (880,3) width 23: "\x{10D0}.\x{10F4} "
 287 text run at (903,3) width 27: "\x{10D0}.\x{10EF} "
 288 text run at (930,3) width 24: "\x{10D0}.\x{10F0} "
 289 text run at (954,3) width 24: "\x{10D0}.\x{10F5} "
 290 text run at (978,3) width 61: "\x{10D0}.\x{10F5}\x{10F0}\x{10E8}\x{10DF}\x{10D7}"
73924

LayoutTests/platform/mac/css2.1/t090501-c414-flt-01-b-expected.checksum

1 6012712e858dab5765e46a506c70f59d
21\ No newline at end of file
 22b627cd6741c5d410cfae114dad5749c
33\ No newline at end of file
73924

LayoutTests/platform/mac/css2.1/t090501-c414-flt-01-b-expected.txt

@@layer at (0,0) size 800x136
88 text run at (0,0) width 542: "In the following test, the blue blocks should be on the given sides of the teal rectangle."
99 RenderBlock {DIV} at (0,34) size 784x70
1010 RenderBlock {DIV} at (16,0) size 752x70 [color=#00FFFF] [bgcolor=#008080]
11  RenderBlock (floating) {P} at (8,8) size 176x52 [color=#FFFFFF] [bgcolor=#000080] [border: (4px solid #0000FF)]
12  RenderText {#text} at (8,8) size 132x36
13  text run at (8,8) width 118: "\x{21E6} This blue block"
14  text run at (8,26) width 132: "should be on the left."
15  RenderBlock (floating) {P} at (568,8) size 176x52 [color=#FFFFFF] [bgcolor=#000080] [border: (4px solid #0000FF)]
16  RenderText {#text} at (8,8) size 141x36
17  text run at (8,8) width 118: "\x{21E8} This blue block"
18  text run at (8,26) width 141: "should be on the right."
 11 RenderBlock (floating) {P} at (8,8) size 176x58 [color=#FFFFFF] [bgcolor=#000080] [border: (4px solid #0000FF)]
 12 RenderText {#text} at (8,11) size 132x39
 13 text run at (8,11) width 118: "\x{21E6} This blue block"
 14 text run at (8,32) width 132: "should be on the left."
 15 RenderBlock (floating) {P} at (568,8) size 176x58 [color=#FFFFFF] [bgcolor=#000080] [border: (4px solid #0000FF)]
 16 RenderText {#text} at (8,11) size 141x39
 17 text run at (8,11) width 118: "\x{21E8} This blue block"
 18 text run at (8,32) width 141: "should be on the right."
1919 RenderText {#text} at (184,8) size 384x54
2020 text run at (184,8) width 384: "Teal rectangle. Teal rectangle. Teal rectangle. Teal rectangle."
2121 text run at (184,26) width 194: "Teal rectangle. Teal rectangle. "
73924

LayoutTests/platform/mac/css2.1/t090501-c414-flt-03-b-g-expected.checksum

1 256acf34120cdfe43f817b052ee5e91f
21\ No newline at end of file
 2008f74a06e0b8b1816eae41b88fab733
33\ No newline at end of file
73924

LayoutTests/platform/mac/css2.1/t090501-c414-flt-03-b-g-expected.txt

11layer at (0,0) size 800x600
22 RenderView at (0,0) size 800x600
3 layer at (0,0) size 800x155
4  RenderBlock {HTML} at (0,0) size 800x155
5  RenderBody {BODY} at (8,16) size 784x123
6  RenderBlock {P} at (0,0) size 784x37 [color=#000080]
7  RenderText {#text} at (0,1) size 399x18
8  text run at (0,1) width 246: "In the following test, the purple square "
9  text run at (246,1) width 153: "should be on the left (\x{21E6}"
10  RenderImage {IMG} at (399,0) size 19x19
11  RenderText {#text} at (418,1) size 215x18
12  text run at (418,1) width 215: "), and the teal square on the right ("
13  RenderImage {IMG} at (633,0) size 19x19
14  RenderText {#text} at (652,1) size 744x36
15  text run at (652,1) width 92: "\x{21E8}) of the blue"
16  text run at (0,19) width 61: "rectangle."
17  RenderBlock {DIV} at (0,53) size 784x70
 3layer at (0,0) size 800x160
 4 RenderBlock {HTML} at (0,0) size 800x160
 5 RenderBody {BODY} at (8,16) size 784x128
 6 RenderBlock {P} at (0,0) size 784x42 [color=#000080]
 7 RenderText {#text} at (0,3) size 399x18
 8 text run at (0,3) width 246: "In the following test, the purple square "
 9 text run at (246,3) width 153: "should be on the left (\x{21E6}"
 10 RenderImage {IMG} at (399,2) size 19x19
 11 RenderText {#text} at (418,3) size 215x18
 12 text run at (418,3) width 215: "), and the teal square on the right ("
 13 RenderImage {IMG} at (633,2) size 19x19
 14 RenderText {#text} at (652,3) size 744x39
 15 text run at (652,3) width 92: "\x{21E8}) of the blue"
 16 text run at (0,24) width 61: "rectangle."
 17 RenderBlock {DIV} at (0,58) size 784x70
1818 RenderBlock {DIV} at (16,0) size 752x70 [color=#0000FF] [bgcolor=#000080]
1919 RenderImage {IMG} at (8,8) size 160x160
2020 RenderImage {IMG} at (584,8) size 160x160
73924

LayoutTests/platform/mac/css2.1/t090501-c5525-flt-l-00-b-g-expected.checksum

1 dd036c0bc5d107c0972931c5e098c781
21\ No newline at end of file
 2edc34527b05da59651090678bc99cc1d
33\ No newline at end of file
73924

LayoutTests/platform/mac/css2.1/t090501-c5525-flt-l-00-b-g-expected.txt

11layer at (0,0) size 800x600
22 RenderView at (0,0) size 800x600
3 layer at (0,0) size 800x284
4  RenderBlock {HTML} at (0,0) size 800x284
5  RenderBody {BODY} at (8,16) size 784x252
6  RenderBlock {P} at (0,0) size 784x252 [color=#000080]
 3layer at (0,0) size 800x290
 4 RenderBlock {HTML} at (0,0) size 800x290
 5 RenderBody {BODY} at (8,16) size 784x258
 6 RenderBlock {P} at (0,0) size 784x258 [color=#000080]
77 RenderImage {IMG} at (0,0) size 50x50
8  RenderText {#text} at (50,0) size 328x18
9  text run at (50,0) width 328: "\x{21E6} This text should flow around the box on the left. "
10  RenderInline {SPAN} at (0,0) size 769x252 [color=#C0C0C0]
11  RenderText {#text} at (378,0) size 769x252
12  text run at (378,0) width 391: "dummy text dummy text dummy text dummy text dummy text"
13  text run at (50,18) width 52: "dummy "
14  text run at (102,18) width 474: "text dummy text dummy text dummy text dummy text dummy text dummy "
15  text run at (576,18) width 181: "text dummy text dummy text"
16  text run at (50,36) width 289: "dummy text dummy text dummy text dummy "
17  text run at (339,36) width 418: "text dummy text dummy text dummy text dummy text dummy text"
18  text run at (0,54) width 52: "dummy "
19  text run at (52,54) width 474: "text dummy text dummy text dummy text dummy text dummy text dummy "
20  text run at (526,54) width 233: "text dummy text dummy text dummy"
21  text run at (0,72) width 237: "text dummy text dummy text dummy "
22  text run at (237,72) width 474: "text dummy text dummy text dummy text dummy text dummy text dummy "
23  text run at (711,72) width 23: "text"
24  text run at (0,90) width 447: "dummy text dummy text dummy text dummy text dummy text dummy "
25  text run at (447,90) width 312: "text dummy text dummy text dummy text dummy"
26  text run at (0,108) width 158: "text dummy text dummy "
27  text run at (158,108) width 474: "text dummy text dummy text dummy text dummy text dummy text dummy "
28  text run at (632,108) width 102: "text dummy text"
29  text run at (0,126) width 368: "dummy text dummy text dummy text dummy text dummy "
30  text run at (368,126) width 391: "text dummy text dummy text dummy text dummy text dummy"
31  text run at (0,144) width 79: "text dummy "
32  text run at (79,144) width 474: "text dummy text dummy text dummy text dummy text dummy text dummy "
33  text run at (553,144) width 181: "text dummy text dummy text"
34  text run at (0,162) width 289: "dummy text dummy text dummy text dummy "
35  text run at (289,162) width 470: "text dummy text dummy text dummy text dummy text dummy text dummy"
36  text run at (0,180) width 474: "text dummy text dummy text dummy text dummy text dummy text dummy "
37  text run at (474,180) width 260: "text dummy text dummy text dummy text"
38  text run at (0,198) width 210: "dummy text dummy text dummy "
39  text run at (210,198) width 474: "text dummy text dummy text dummy text dummy text dummy text dummy "
40  text run at (684,198) width 75: "text dummy"
41  text run at (0,216) width 395: "text dummy text dummy text dummy text dummy text dummy "
42  text run at (395,216) width 339: "text dummy text dummy text dummy text dummy text"
43  text run at (0,234) width 131: "dummy text dummy "
44  text run at (131,234) width 418: "text dummy text dummy text dummy text dummy text dummy text"
 8 RenderText {#text} at (50,3) size 328x18
 9 text run at (50,3) width 328: "\x{21E6} This text should flow around the box on the left. "
 10 RenderInline {SPAN} at (0,0) size 769x255 [color=#C0C0C0]
 11 RenderText {#text} at (378,3) size 769x255
 12 text run at (378,3) width 391: "dummy text dummy text dummy text dummy text dummy text"
 13 text run at (50,24) width 52: "dummy "
 14 text run at (102,24) width 474: "text dummy text dummy text dummy text dummy text dummy text dummy "
 15 text run at (576,24) width 181: "text dummy text dummy text"
 16 text run at (50,42) width 289: "dummy text dummy text dummy text dummy "
 17 text run at (339,42) width 418: "text dummy text dummy text dummy text dummy text dummy text"
 18 text run at (0,60) width 52: "dummy "
 19 text run at (52,60) width 474: "text dummy text dummy text dummy text dummy text dummy text dummy "
 20 text run at (526,60) width 233: "text dummy text dummy text dummy"
 21 text run at (0,78) width 237: "text dummy text dummy text dummy "
 22 text run at (237,78) width 474: "text dummy text dummy text dummy text dummy text dummy text dummy "
 23 text run at (711,78) width 23: "text"
 24 text run at (0,96) width 447: "dummy text dummy text dummy text dummy text dummy text dummy "
 25 text run at (447,96) width 312: "text dummy text dummy text dummy text dummy"
 26 text run at (0,114) width 158: "text dummy text dummy "
 27 text run at (158,114) width 474: "text dummy text dummy text dummy text dummy text dummy text dummy "
 28 text run at (632,114) width 102: "text dummy text"
 29 text run at (0,132) width 368: "dummy text dummy text dummy text dummy text dummy "
 30 text run at (368,132) width 391: "text dummy text dummy text dummy text dummy text dummy"
 31 text run at (0,150) width 79: "text dummy "
 32 text run at (79,150) width 474: "text dummy text dummy text dummy text dummy text dummy text dummy "
 33 text run at (553,150) width 181: "text dummy text dummy text"
 34 text run at (0,168) width 289: "dummy text dummy text dummy text dummy "
 35 text run at (289,168) width 470: "text dummy text dummy text dummy text dummy text dummy text dummy"
 36 text run at (0,186) width 474: "text dummy text dummy text dummy text dummy text dummy text dummy "
 37 text run at (474,186) width 260: "text dummy text dummy text dummy text"
 38 text run at (0,204) width 210: "dummy text dummy text dummy "
 39 text run at (210,204) width 474: "text dummy text dummy text dummy text dummy text dummy text dummy "
 40 text run at (684,204) width 75: "text dummy"
 41 text run at (0,222) width 395: "text dummy text dummy text dummy text dummy text dummy "
 42 text run at (395,222) width 339: "text dummy text dummy text dummy text dummy text"
 43 text run at (0,240) width 131: "dummy text dummy "
 44 text run at (131,240) width 418: "text dummy text dummy text dummy text dummy text dummy text"
4545 RenderText {#text} at (0,0) size 0x0
73924

LayoutTests/platform/mac/css2.1/t090501-c5525-flt-r-00-b-g-expected.checksum

1 a8cfea5a7f8d4833fc3f7bfb94f0bc88
21\ No newline at end of file
 2a626eca8d8700f228039a7b05fd43229
33\ No newline at end of file
73924

LayoutTests/platform/mac/css2.1/t090501-c5525-flt-r-00-b-g-expected.txt

11layer at (0,0) size 800x600
22 RenderView at (0,0) size 800x600
3 layer at (0,0) size 800x284
4  RenderBlock {HTML} at (0,0) size 800x284
5  RenderBody {BODY} at (8,16) size 784x252
6  RenderBlock {P} at (0,0) size 784x252 [color=#000080]
 3layer at (0,0) size 800x290
 4 RenderBlock {HTML} at (0,0) size 800x290
 5 RenderBody {BODY} at (8,16) size 784x258
 6 RenderBlock {P} at (0,0) size 784x258 [color=#000080]
77 RenderImage {IMG} at (734,0) size 50x50
8  RenderText {#text} at (0,0) size 337x18
9  text run at (0,0) width 337: "This text should flow around the box on the right. \x{21E8} "
10  RenderInline {SPAN} at (0,0) size 759x252 [color=#C0C0C0]
11  RenderText {#text} at (337,0) size 759x252
12  text run at (337,0) width 391: "dummy text dummy text dummy text dummy text dummy text"
13  text run at (0,18) width 52: "dummy "
14  text run at (52,18) width 474: "text dummy text dummy text dummy text dummy text dummy text dummy "
15  text run at (526,18) width 181: "text dummy text dummy text"
16  text run at (0,36) width 289: "dummy text dummy text dummy text dummy "
17  text run at (289,36) width 418: "text dummy text dummy text dummy text dummy text dummy text"
18  text run at (0,54) width 52: "dummy "
19  text run at (52,54) width 474: "text dummy text dummy text dummy text dummy text dummy text dummy "
20  text run at (526,54) width 233: "text dummy text dummy text dummy"
21  text run at (0,72) width 237: "text dummy text dummy text dummy "
22  text run at (237,72) width 474: "text dummy text dummy text dummy text dummy text dummy text dummy "
23  text run at (711,72) width 23: "text"
24  text run at (0,90) width 447: "dummy text dummy text dummy text dummy text dummy text dummy "
25  text run at (447,90) width 312: "text dummy text dummy text dummy text dummy"
26  text run at (0,108) width 158: "text dummy text dummy "
27  text run at (158,108) width 474: "text dummy text dummy text dummy text dummy text dummy text dummy "
28  text run at (632,108) width 102: "text dummy text"
29  text run at (0,126) width 368: "dummy text dummy text dummy text dummy text dummy "
30  text run at (368,126) width 391: "text dummy text dummy text dummy text dummy text dummy"
31  text run at (0,144) width 79: "text dummy "
32  text run at (79,144) width 474: "text dummy text dummy text dummy text dummy text dummy text dummy "
33  text run at (553,144) width 181: "text dummy text dummy text"
34  text run at (0,162) width 289: "dummy text dummy text dummy text dummy "
35  text run at (289,162) width 470: "text dummy text dummy text dummy text dummy text dummy text dummy"
36  text run at (0,180) width 474: "text dummy text dummy text dummy text dummy text dummy text dummy "
37  text run at (474,180) width 260: "text dummy text dummy text dummy text"
38  text run at (0,198) width 210: "dummy text dummy text dummy "
39  text run at (210,198) width 474: "text dummy text dummy text dummy text dummy text dummy text dummy "
40  text run at (684,198) width 75: "text dummy"
41  text run at (0,216) width 395: "text dummy text dummy text dummy text dummy text dummy "
42  text run at (395,216) width 339: "text dummy text dummy text dummy text dummy text"
43  text run at (0,234) width 131: "dummy text dummy "
44  text run at (131,234) width 418: "text dummy text dummy text dummy text dummy text dummy text"
 8 RenderText {#text} at (0,3) size 337x18
 9 text run at (0,3) width 337: "This text should flow around the box on the right. \x{21E8} "
 10 RenderInline {SPAN} at (0,0) size 759x255 [color=#C0C0C0]
 11 RenderText {#text} at (337,3) size 759x255
 12 text run at (337,3) width 391: "dummy text dummy text dummy text dummy text dummy text"
 13 text run at (0,24) width 52: "dummy "
 14 text run at (52,24) width 474: "text dummy text dummy text dummy text dummy text dummy text dummy "
 15 text run at (526,24) width 181: "text dummy text dummy text"
 16 text run at (0,42) width 289: "dummy text dummy text dummy text dummy "
 17 text run at (289,42) width 418: "text dummy text dummy text dummy text dummy text dummy text"
 18 text run at (0,60) width 52: "dummy "
 19 text run at (52,60) width 474: "text dummy text dummy text dummy text dummy text dummy text dummy "
 20 text run at (526,60) width 233: "text dummy text dummy text dummy"
 21 text run at (0,78) width 237: "text dummy text dummy text dummy "
 22 text run at (237,78) width 474: "text dummy text dummy text dummy text dummy text dummy text dummy "
 23 text run at (711,78) width 23: "text"
 24 text run at (0,96) width 447: "dummy text dummy text dummy text dummy text dummy text dummy "
 25 text run at (447,96) width 312: "text dummy text dummy text dummy text dummy"
 26 text run at (0,114) width 158: "text dummy text dummy "
 27 text run at (158,114) width 474: "text dummy text dummy text dummy text dummy text dummy text dummy "
 28 text run at (632,114) width 102: "text dummy text"
 29 text run at (0,132) width 368: "dummy text dummy text dummy text dummy text dummy "
 30 text run at (368,132) width 391: "text dummy text dummy text dummy text dummy text dummy"
 31 text run at (0,150) width 79: "text dummy "
 32 text run at (79,150) width 474: "text dummy text dummy text dummy text dummy text dummy text dummy "
 33 text run at (553,150) width 181: "text dummy text dummy text"
 34 text run at (0,168) width 289: "dummy text dummy text dummy text dummy "
 35 text run at (289,168) width 470: "text dummy text dummy text dummy text dummy text dummy text dummy"
 36 text run at (0,186) width 474: "text dummy text dummy text dummy text dummy text dummy text dummy "
 37 text run at (474,186) width 260: "text dummy text dummy text dummy text"
 38 text run at (0,204) width 210: "dummy text dummy text dummy "
 39 text run at (210,204) width 474: "text dummy text dummy text dummy text dummy text dummy text dummy "
 40 text run at (684,204) width 75: "text dummy"
 41 text run at (0,222) width 395: "text dummy text dummy text dummy text dummy text dummy "
 42 text run at (395,222) width 339: "text dummy text dummy text dummy text dummy text"
 43 text run at (0,240) width 131: "dummy text dummy "
 44 text run at (131,240) width 418: "text dummy text dummy text dummy text dummy text dummy text"
4545 RenderText {#text} at (0,0) size 0x0
73924

LayoutTests/platform/mac/css2.1/t100304-c43-rpl-bbx-01-d-g-expected.checksum

1 d8b655b967b59c510dc4981e5fafce22
21\ No newline at end of file
 29a2c8d823d777746b5639f83f9b100a4
33\ No newline at end of file
73924

LayoutTests/platform/mac/css2.1/t100304-c43-rpl-bbx-01-d-g-expected.txt

11layer at (0,0) size 800x600
22 RenderView at (0,0) size 800x600
3 layer at (0,0) size 800x476
4  RenderBlock {HTML} at (0,0) size 800x476
5  RenderBody {BODY} at (8,16) size 784x444
6  RenderBlock {P} at (0,0) size 784x36 [color=#000080]
7  RenderText {#text} at (0,0) size 769x36
 3layer at (0,0) size 800x482
 4 RenderBlock {HTML} at (0,0) size 800x482
 5 RenderBody {BODY} at (8,16) size 784x450
 6 RenderBlock {P} at (0,0) size 784x42 [color=#000080]
 7 RenderText {#text} at (0,0) size 769x39
88 text run at (0,0) width 396: "Below this paragraph there should be a big teal square half the "
99 text run at (396,0) width 373: "width of the window, aligned flush with the right hand side"
10  text run at (0,18) width 30: "(\x{21E8})."
11  RenderBlock {P} at (0,52) size 784x392 [color=#000080]
 10 text run at (0,21) width 30: "(\x{21E8})."
 11 RenderBlock {P} at (0,58) size 784x392 [color=#000080]
1212 RenderImage {IMG} at (392,0) size 392x392
73924

LayoutTests/platform/mac/editing/deleting/5144139-2-expected.checksum

1 4aa15078b0e44424043800c00b3ab449
21\ No newline at end of file
 27a14636016e5fffc3b1fb215d1784672
33\ No newline at end of file
73924

LayoutTests/platform/mac/editing/deleting/5144139-2-expected.txt

@@layer at (0,0) size 800x600
99 text run at (0,18) width 110: "br unnecessarily. "
1010 text run at (110,18) width 256: "You should see two ToDos, one empty. "
1111 text run at (366,18) width 269: "The caret should be just before the second."
12  RenderBlock {DIV} at (0,52) size 784x48
13  RenderTable {TABLE} at (0,0) size 133x24
14  RenderTableSection {TBODY} at (0,0) size 133x24
15  RenderTableRow {TR} at (0,2) size 133x20
16  RenderTableCell {TD} at (2,2) size 18x20 [r=0 c=0 rs=1 cs=1]
 12 RenderBlock {DIV} at (0,52) size 784x50
 13 RenderTable {TABLE} at (0,0) size 133x25
 14 RenderTableSection {TBODY} at (0,0) size 133x25
 15 RenderTableRow {TR} at (0,2) size 133x21
 16 RenderTableCell {TD} at (2,2) size 18x21 [r=0 c=0 rs=1 cs=1]
1717 RenderText {#text} at (1,1) size 16x18
1818 text run at (1,1) width 16: "\x{21D2}"
1919 RenderTableCell {TD} at (22,2) size 94x20 [r=0 c=1 rs=1 cs=1]
2020 RenderText {#text} at (1,1) size 92x18
2121 text run at (1,1) width 92: "ToDo Content"
22  RenderTableCell {TD} at (118,2) size 13x20 [r=0 c=2 rs=1 cs=1]
23  RenderText {#text} at (1,1) size 11x18
24  text run at (1,1) width 11: "\x{21E3}"
25  RenderTable {TABLE} at (0,24) size 41x24
26  RenderTableSection {TBODY} at (0,0) size 41x24
27  RenderTableRow {TR} at (0,2) size 41x20
28  RenderTableCell {TD} at (2,2) size 18x20 [r=0 c=0 rs=1 cs=1]
 22 RenderTableCell {TD} at (118,2) size 13x21 [r=0 c=2 rs=1 cs=1]
 23 RenderText {#text} at (1,2) size 11x18
 24 text run at (1,2) width 11: "\x{21E3}"
 25 RenderTable {TABLE} at (0,25) size 41x25
 26 RenderTableSection {TBODY} at (0,0) size 41x25
 27 RenderTableRow {TR} at (0,2) size 41x21
 28 RenderTableCell {TD} at (2,2) size 18x21 [r=0 c=0 rs=1 cs=1]
2929 RenderText {#text} at (1,1) size 16x18
3030 text run at (1,1) width 16: "\x{21D2}"
3131 RenderTableCell {TD} at (22,2) size 2x20 [r=0 c=1 rs=1 cs=1]
32  RenderTableCell {TD} at (26,2) size 13x20 [r=0 c=2 rs=1 cs=1]
33  RenderText {#text} at (1,1) size 11x18
34  text run at (1,1) width 11: "\x{21E3}"
 32 RenderTableCell {TD} at (26,2) size 13x21 [r=0 c=2 rs=1 cs=1]
 33 RenderText {#text} at (1,2) size 11x18
 34 text run at (1,2) width 11: "\x{21E3}"
3535caret: position 0 of child 3 {TABLE} of child 2 {DIV} of body
73924

LayoutTests/platform/mac/editing/selection/caret-rtl-2-expected.checksum

1 8c48e5709f8fded01efd36c9590039de
21\ No newline at end of file
 2865e6fdf9855316344a1c3e5f4e26952
33\ No newline at end of file
73924

LayoutTests/platform/mac/editing/selection/caret-rtl-2-expected.txt

11layer at (0,0) size 800x600
22 RenderView at (0,0) size 800x600
3 layer at (0,0) size 800x139
4  RenderBlock {HTML} at (0,0) size 800x139
5  RenderBody {BODY} at (8,16) size 784x115
 3layer at (0,0) size 800x140
 4 RenderBlock {HTML} at (0,0) size 800x140
 5 RenderBody {BODY} at (8,16) size 784x116
66 RenderBlock {P} at (0,0) size 784x36
77 RenderText {#text} at (0,0) size 758x36
88 text run at (0,0) width 758: "This tests that clicking in a contenteditable div will set the caret in the right position for RTL text in a RTL block. To test"
99 text run at (0,18) width 465: "manually, click the right of the text. The caret should be on the right edge."
10  RenderBlock {DIV} at (0,52) size 213x45 [border: (1px solid #000000)]
11  RenderText {#text} at (11,11) size 72x23
12  text run at (11,11) width 72 RTL: "\x{5E9}\x{5D3}\x{5D4} \x{5D1}\x{5D5}\x{5E8}"
13  RenderBlock (anonymous) at (0,97) size 784x18
 10 RenderBlock {DIV} at (0,52) size 213x46 [border: (1px solid #000000)]
 11 RenderText {#text} at (11,12) size 72x23
 12 text run at (11,12) width 72 RTL: "\x{5E9}\x{5D3}\x{5D4} \x{5D1}\x{5D5}\x{5E8}"
 13 RenderBlock (anonymous) at (0,98) size 784x18
1414 RenderText {#text} at (0,0) size 39x18
1515 text run at (0,0) width 39: "PASS"
1616 RenderBR {BR} at (39,0) size 0x18
73924

LayoutTests/platform/mac/editing/selection/caret-rtl-2-left-expected.checksum

1 ed60d2811467440815682849d7bfda8b
21\ No newline at end of file
 2017c42b2adc63568389b5985c138fa55
33\ No newline at end of file
73924

LayoutTests/platform/mac/editing/selection/caret-rtl-2-left-expected.txt

11layer at (0,0) size 800x600
22 RenderView at (0,0) size 800x600
3 layer at (0,0) size 800x139
4  RenderBlock {HTML} at (0,0) size 800x139
5  RenderBody {BODY} at (8,16) size 784x115
 3layer at (0,0) size 800x140
 4 RenderBlock {HTML} at (0,0) size 800x140
 5 RenderBody {BODY} at (8,16) size 784x116
66 RenderBlock {P} at (0,0) size 784x36
77 RenderText {#text} at (0,0) size 758x36
88 text run at (0,0) width 758: "This tests that clicking in a contenteditable div will set the caret in the right position for RTL text in a LTR block. To test"
99 text run at (0,18) width 447: "manually, click the left of the text. The caret should be on the left edge."
10  RenderBlock {DIV} at (0,52) size 213x45 [border: (1px solid #000000)]
11  RenderText {#text} at (11,11) size 72x23
12  text run at (11,11) width 72 RTL: "\x{5E9}\x{5D3}\x{5D4} \x{5D1}\x{5D5}\x{5E8}"
13  RenderBlock (anonymous) at (0,97) size 784x18
 10 RenderBlock {DIV} at (0,52) size 213x46 [border: (1px solid #000000)]
 11 RenderText {#text} at (11,12) size 72x23
 12 text run at (11,12) width 72 RTL: "\x{5E9}\x{5D3}\x{5D4} \x{5D1}\x{5D5}\x{5E8}"
 13 RenderBlock (anonymous) at (0,98) size 784x18
1414 RenderText {#text} at (0,0) size 39x18
1515 text run at (0,0) width 39: "PASS"
1616 RenderBR {BR} at (39,0) size 0x18
73924

LayoutTests/platform/mac/editing/selection/caret-rtl-expected.checksum

1 9b45da74056c05d3be1203a87812ef3b
21\ No newline at end of file
 2f616ea5d012988af7cefafe1e04ac5a2
33\ No newline at end of file
73924

LayoutTests/platform/mac/editing/selection/caret-rtl-expected.txt

11layer at (0,0) size 800x600
22 RenderView at (0,0) size 800x600
3 layer at (0,0) size 800x139
4  RenderBlock {HTML} at (0,0) size 800x139
5  RenderBody {BODY} at (8,16) size 784x115
 3layer at (0,0) size 800x140
 4 RenderBlock {HTML} at (0,0) size 800x140
 5 RenderBody {BODY} at (8,16) size 784x116
66 RenderBlock {P} at (0,0) size 784x36
77 RenderText {#text} at (0,0) size 758x36
88 text run at (0,0) width 758: "This tests that clicking in a contenteditable div will set the caret in the right position for RTL text in a RTL block. To test"
99 text run at (0,18) width 447: "manually, click the left of the text. The caret should be on the left edge."
10  RenderBlock {DIV} at (0,52) size 213x45 [border: (1px solid #000000)]
11  RenderText {#text} at (130,11) size 72x23
12  text run at (130,11) width 72 RTL: "\x{5E9}\x{5D3}\x{5D4} \x{5D1}\x{5D5}\x{5E8}"
13  RenderBlock (anonymous) at (0,97) size 784x18
 10 RenderBlock {DIV} at (0,52) size 213x46 [border: (1px solid #000000)]
 11 RenderText {#text} at (130,12) size 72x23
 12 text run at (130,12) width 72 RTL: "\x{5E9}\x{5D3}\x{5D4} \x{5D1}\x{5D5}\x{5E8}"
 13 RenderBlock (anonymous) at (0,98) size 784x18
1414 RenderText {#text} at (0,0) size 39x18
1515 text run at (0,0) width 39: "PASS"
1616 RenderBR {BR} at (39,0) size 0x18
73924

LayoutTests/platform/mac/editing/selection/caret-rtl-right-expected.checksum

1 6dfdf308f2743206380d4994d5977bee
21\ No newline at end of file
 2cf03465be2590113e983600346e3e473
33\ No newline at end of file
73924

LayoutTests/platform/mac/editing/selection/caret-rtl-right-expected.txt

11layer at (0,0) size 800x600
22 RenderView at (0,0) size 800x600
3 layer at (0,0) size 800x139
4  RenderBlock {HTML} at (0,0) size 800x139
5  RenderBody {BODY} at (8,16) size 784x115
 3layer at (0,0) size 800x140
 4 RenderBlock {HTML} at (0,0) size 800x140
 5 RenderBody {BODY} at (8,16) size 784x116
66 RenderBlock {P} at (0,0) size 784x36
77 RenderText {#text} at (0,0) size 758x36
88 text run at (0,0) width 758: "This tests that clicking in a contenteditable div will set the caret in the right position for RTL text in a RTL block. To test"
99 text run at (0,18) width 465: "manually, click the right of the text. The caret should be on the right edge."
10  RenderBlock {DIV} at (0,52) size 213x45 [border: (1px solid #000000)]
11  RenderText {#text} at (130,11) size 72x23
12  text run at (130,11) width 72 RTL: "\x{5E9}\x{5D3}\x{5D4} \x{5D1}\x{5D5}\x{5E8}"
13  RenderBlock (anonymous) at (0,97) size 784x18
 10 RenderBlock {DIV} at (0,52) size 213x46 [border: (1px solid #000000)]
 11 RenderText {#text} at (130,12) size 72x23
 12 text run at (130,12) width 72 RTL: "\x{5E9}\x{5D3}\x{5D4} \x{5D1}\x{5D5}\x{5E8}"
 13 RenderBlock (anonymous) at (0,98) size 784x18
1414 RenderText {#text} at (0,0) size 39x18
1515 text run at (0,0) width 39: "PASS"
1616 RenderBR {BR} at (39,0) size 0x18
73924

LayoutTests/platform/mac/editing/selection/extend-selection-bidi-expected.checksum

1 38f8e0d9f1e2e7f80a70eda70269e4d5
21\ No newline at end of file
 26719ee32dd56c6330b76d56a3d3402de
33\ No newline at end of file
73924

LayoutTests/platform/mac/fast/blockflow/Kusa-Makura-background-canvas-expected.checksum

1 a38326da14e56a2170c7585e8bc6306e
21\ No newline at end of file
 23965dae88fed0a01e5164cac0c32e7d0
33\ No newline at end of file
73924

LayoutTests/platform/mac/fast/blockflow/Kusa-Makura-background-canvas-expected.txt

1 layer at (0,0) size 4799x585
 1layer at (0,0) size 5099x585
22 RenderView at (0,0) size 800x585
3 layer at (-3999,0) size 4799x585 backgroundClip at (0,0) size 4799x585 clip at (0,0) size 4799x585 outlineClip at (0,0) size 4799x585
4  RenderBlock {HTML} at (0,0) size 4799x585
5  RenderBody {BODY} at (58,46) size 4683x493
 3layer at (-4299,0) size 5099x585 backgroundClip at (0,0) size 5099x585 clip at (0,0) size 5099x585 outlineClip at (0,0) size 5099x585
 4 RenderBlock {HTML} at (0,0) size 5099x585
 5 RenderBody {BODY} at (58,46) size 4983x493
66 RenderBlock {H1} at (0,21) size 48x451
77 RenderText {#text} at (5,0) size 37x66
88 text run at (5,0) width 66: "\x{8349}\x{6795}"
99 RenderBlock {H2} at (48,19) size 36x455
1010 RenderText {#text} at (4,0) size 28x100
1111 text run at (4,0) width 100: "\x{590F}\x{76EE}\x{6F31}\x{77F3}"
12  RenderBlock {DIV} at (84,0) size 4599x493
13  RenderBlock (anonymous) at (0,0) size 2625x493
 12 RenderBlock {DIV} at (84,0) size 4899x493
 13 RenderBlock (anonymous) at (0,0) size 2766x493
1414 RenderBR {BR} at (0,0) size 18x0
1515 RenderBR {BR} at (18,0) size 18x0
1616 RenderBR {BR} at (36,0) size 18x0
17  RenderText {#text} at (54,0) size 18x146
18  text run at (54,0) width 146: "\x{3000}\x{3000}\x{3000}\x{3000}\x{3000}\x{3000}\x{3000}\x{3000}\x{4E00}"
19  RenderBR {BR} at (54,146) size 18x0
20  RenderBR {BR} at (72,0) size 18x0
21  RenderText {#text} at (103,0) size 18x17
22  text run at (103,0) width 17: "\x{3000}"
 17 RenderText {#text} at (57,0) size 18x146
 18 text run at (57,0) width 146: "\x{3000}\x{3000}\x{3000}\x{3000}\x{3000}\x{3000}\x{3000}\x{3000}\x{4E00}"
 19 RenderBR {BR} at (57,146) size 18x0
 20 RenderBR {BR} at (78,0) size 18x0
 21 RenderText {#text} at (109,0) size 18x17
 22 text run at (109,0) width 17: "\x{3000}"
2323 RenderRuby (inline) {RUBY} at (0,0) size 18x44
24  RenderRubyRun (anonymous) at (103,17) size 18x44
25  RenderRubyText {RT} at (-13,0) size 13x44
 24 RenderRubyRun (anonymous) at (106,17) size 24x44
 25 RenderRubyText {RT} at (-10,0) size 15x44
2626 RenderText {#text} at (0,0) size 13x44
2727 text run at (0,0) width 44: "\x{3084}\x{307E}\x{307F}\x{3061}"
28  RenderRubyBase (anonymous) at (0,0) size 18x44
 28 RenderRubyBase (anonymous) at (0,0) size 24x44
2929 RenderInline {RB} at (0,0) size 18x34
30  RenderText {#text} at (0,5) size 18x34
31  text run at (0,5) width 34: "\x{5C71}\x{8DEF}"
32  RenderText {#text} at (103,61) size 18x219
33  text run at (103,61) width 219: "\x{3092}\x{767B}\x{308A}\x{306A}\x{304C}\x{3089}\x{3001}\x{3053}\x{3046}\x{8003}\x{3048}\x{305F}\x{3002}"
34  RenderBR {BR} at (103,280) size 18x0
35  RenderText {#text} at (134,0) size 18x17
36  text run at (134,0) width 17: "\x{3000}"
 30 RenderText {#text} at (3,5) size 18x34
 31 text run at (3,5) width 34: "\x{5C71}\x{8DEF}"
 32 RenderText {#text} at (109,61) size 18x219
 33 text run at (109,61) width 219: "\x{3092}\x{767B}\x{308A}\x{306A}\x{304C}\x{3089}\x{3001}\x{3053}\x{3046}\x{8003}\x{3048}\x{305F}\x{3002}"
 34 RenderBR {BR} at (109,280) size 18x0
 35 RenderText {#text} at (140,0) size 18x17
 36 text run at (140,0) width 17: "\x{3000}"
3737 RenderRuby (inline) {RUBY} at (0,0) size 18x17
38  RenderRubyRun (anonymous) at (134,17) size 18x17
39  RenderRubyText {RT} at (-13,0) size 13x17
 38 RenderRubyRun (anonymous) at (137,17) size 24x17
 39 RenderRubyText {RT} at (-10,0) size 15x17
4040 RenderText {#text} at (0,3) size 13x11
4141 text run at (0,3) width 11: "\x{3061}"
42  RenderRubyBase (anonymous) at (0,0) size 18x17
 42 RenderRubyBase (anonymous) at (0,0) size 24x17
4343 RenderInline {RB} at (0,0) size 18x17
44  RenderText {#text} at (0,0) size 18x17
45  text run at (0,0) width 17: "\x{667A}"
46  RenderText {#text} at (134,34) size 18x68
47  text run at (134,34) width 68: "\x{306B}\x{50CD}\x{3051}\x{3070}"
 44 RenderText {#text} at (3,0) size 18x17
 45 text run at (3,0) width 17: "\x{667A}"
 46 RenderText {#text} at (140,34) size 18x68
 47 text run at (140,34) width 68: "\x{306B}\x{50CD}\x{3051}\x{3070}"
4848 RenderRuby (inline) {RUBY} at (0,0) size 18x22
49  RenderRubyRun (anonymous) at (134,102) size 18x22
50  RenderRubyText {RT} at (-13,0) size 13x22
 49 RenderRubyRun (anonymous) at (137,102) size 24x22
 50 RenderRubyText {RT} at (-10,0) size 15x22
5151 RenderText {#text} at (0,0) size 13x22
5252 text run at (0,0) width 22: "\x{304B}\x{3069}"
53  RenderRubyBase (anonymous) at (0,0) size 18x22
 53 RenderRubyBase (anonymous) at (0,0) size 24x22
5454 RenderInline {RB} at (0,0) size 18x17
55  RenderText {#text} at (0,2) size 18x17
56  text run at (0,2) width 17: "\x{89D2}"
57  RenderText {#text} at (134,124) size 18x67
58  text run at (134,124) width 67: "\x{304C}\x{7ACB}\x{3064}\x{3002}"
 55 RenderText {#text} at (3,2) size 18x17
 56 text run at (3,2) width 17: "\x{89D2}"
 57 RenderText {#text} at (140,124) size 18x67
 58 text run at (140,124) width 67: "\x{304C}\x{7ACB}\x{3064}\x{3002}"
5959 RenderRuby (inline) {RUBY} at (0,0) size 18x32
60  RenderRubyRun (anonymous) at (134,191) size 18x32
61  RenderRubyText {RT} at (-13,0) size 13x32
 60 RenderRubyRun (anonymous) at (137,191) size 24x32
 61 RenderRubyText {RT} at (-10,0) size 15x32
6262 RenderText {#text} at (0,0) size 13x32
6363 text run at (0,0) width 32: "\x{3058}\x{3087}\x{3046}"
64  RenderRubyBase (anonymous) at (0,0) size 18x32
 64 RenderRubyBase (anonymous) at (0,0) size 24x32
6565 RenderInline {RB} at (0,0) size 18x17
66  RenderText {#text} at (0,7) size 18x17
67  text run at (0,7) width 17: "\x{60C5}"
68  RenderText {#text} at (134,223) size 18x17
69  text run at (134,223) width 17: "\x{306B}"
 66 RenderText {#text} at (3,7) size 18x17
 67 text run at (3,7) width 17: "\x{60C5}"
 68 RenderText {#text} at (140,223) size 18x17
 69 text run at (140,223) width 17: "\x{306B}"
7070 RenderRuby (inline) {RUBY} at (0,0) size 18x22
71  RenderRubyRun (anonymous) at (134,240) size 18x22
72  RenderRubyText {RT} at (-13,0) size 13x22
 71 RenderRubyRun (anonymous) at (137,240) size 24x22
 72 RenderRubyText {RT} at (-10,0) size 15x22
7373 RenderText {#text} at (0,0) size 13x22
7474 text run at (0,0) width 22: "\x{3055}\x{304A}"
75  RenderRubyBase (anonymous) at (0,0) size 18x22
 75 RenderRubyBase (anonymous) at (0,0) size 24x22
7676 RenderInline {RB} at (0,0) size 18x17
77  RenderText {#text} at (0,2) size 18x17
78  text run at (0,2) width 17: "\x{68F9}"
79  RenderText {#text} at (134,262) size 18x186
80  text run at (134,262) width 186: "\x{3055}\x{305B}\x{3070}\x{6D41}\x{3055}\x{308C}\x{308B}\x{3002}\x{610F}\x{5730}\x{3092}"
 77 RenderText {#text} at (3,2) size 18x17
 78 text run at (3,2) width 17: "\x{68F9}"
 79 RenderText {#text} at (140,262) size 18x186
 80 text run at (140,262) width 186: "\x{3055}\x{305B}\x{3070}\x{6D41}\x{3055}\x{308C}\x{308B}\x{3002}\x{610F}\x{5730}\x{3092}"
8181 RenderRuby (inline) {RUBY} at (0,0) size 18x22
82  RenderRubyRun (anonymous) at (134,448) size 18x22
83  RenderRubyText {RT} at (-13,0) size 13x22
 82 RenderRubyRun (anonymous) at (137,448) size 24x22
 83 RenderRubyText {RT} at (-10,0) size 15x22
8484 RenderText {#text} at (0,0) size 13x22
8585 text run at (0,0) width 22: "\x{3068}\x{304A}"
86  RenderRubyBase (anonymous) at (0,0) size 18x22
 86 RenderRubyBase (anonymous) at (0,0) size 24x22
8787 RenderInline {RB} at (0,0) size 18x17
88  RenderText {#text} at (0,2) size 18x17
89  text run at (0,2) width 17: "\x{901A}"
90  RenderText {#text} at (134,470) size 49x487
91  text run at (134,470) width 17: "\x{305B}"
92  text run at (165,0) width 17: "\x{3070}"
 88 RenderText {#text} at (3,2) size 18x17
 89 text run at (3,2) width 17: "\x{901A}"
 90 RenderText {#text} at (140,470) size 49x487
 91 text run at (140,470) width 17: "\x{305B}"
 92 text run at (171,0) width 17: "\x{3070}"
9393 RenderRuby (inline) {RUBY} at (0,0) size 18x54
94  RenderRubyRun (anonymous) at (165,17) size 18x54
95  RenderRubyText {RT} at (-13,0) size 13x54
 94 RenderRubyRun (anonymous) at (168,17) size 24x54
 95 RenderRubyText {RT} at (-10,0) size 15x54
9696 RenderText {#text} at (0,0) size 13x54
9797 text run at (0,0) width 54: "\x{304D}\x{3085}\x{3046}\x{304F}\x{3064}"
98  RenderRubyBase (anonymous) at (0,0) size 18x54
 98 RenderRubyBase (anonymous) at (0,0) size 24x54
9999 RenderInline {RB} at (0,0) size 18x34
100  RenderText {#text} at (0,10) size 18x34
101  text run at (0,10) width 34: "\x{7AAE}\x{5C48}"
102  RenderText {#text} at (165,71) size 18x270
103  text run at (165,71) width 270: "\x{3060}\x{3002}\x{3068}\x{304B}\x{304F}\x{306B}\x{4EBA}\x{306E}\x{4E16}\x{306F}\x{4F4F}\x{307F}\x{306B}\x{304F}\x{3044}\x{3002}"
104  RenderBR {BR} at (165,341) size 18x0
105  RenderText {#text} at (196,0) size 18x113
106  text run at (196,0) width 113: "\x{3000}\x{4F4F}\x{307F}\x{306B}\x{304F}\x{3055}\x{304C}"
 100 RenderText {#text} at (3,10) size 18x34
 101 text run at (3,10) width 34: "\x{7AAE}\x{5C48}"
 102 RenderText {#text} at (171,71) size 18x270
 103 text run at (171,71) width 270: "\x{3060}\x{3002}\x{3068}\x{304B}\x{304F}\x{306B}\x{4EBA}\x{306E}\x{4E16}\x{306F}\x{4F4F}\x{307F}\x{306B}\x{304F}\x{3044}\x{3002}"
 104 RenderBR {BR} at (171,341) size 18x0
 105 RenderText {#text} at (202,0) size 18x113
 106 text run at (202,0) width 113: "\x{3000}\x{4F4F}\x{307F}\x{306B}\x{304F}\x{3055}\x{304C}"
107107 RenderRuby (inline) {RUBY} at (0,0) size 18x22
108  RenderRubyRun (anonymous) at (196,113) size 18x22
109  RenderRubyText {RT} at (-13,0) size 13x22
 108 RenderRubyRun (anonymous) at (199,113) size 24x22
 109 RenderRubyText {RT} at (-10,0) size 15x22
110110 RenderText {#text} at (0,0) size 13x22
111111 text run at (0,0) width 22: "\x{3053}\x{3046}"
112  RenderRubyBase (anonymous) at (0,0) size 18x22
 112 RenderRubyBase (anonymous) at (0,0) size 24x22
113113 RenderInline {RB} at (0,0) size 18x17
114  RenderText {#text} at (0,2) size 18x17
115  text run at (0,2) width 17: "\x{9AD8}"
116  RenderText {#text} at (196,135) size 49x458
117  text run at (196,135) width 323: "\x{3058}\x{308B}\x{3068}\x{3001}\x{5B89}\x{3044}\x{6240}\x{3078}\x{5F15}\x{304D}\x{8D8A}\x{3057}\x{305F}\x{304F}\x{306A}\x{308B}\x{3002}\x{3069}\x{3053}\x{3078}"
118  text run at (227,0) width 162: "\x{8D8A}\x{3057}\x{3066}\x{3082}\x{4F4F}\x{307F}\x{306B}\x{304F}\x{3044}\x{3068}"
 114 RenderText {#text} at (3,2) size 18x17
 115 text run at (3,2) width 17: "\x{9AD8}"
 116 RenderText {#text} at (202,135) size 49x458
 117 text run at (202,135) width 323: "\x{3058}\x{308B}\x{3068}\x{3001}\x{5B89}\x{3044}\x{6240}\x{3078}\x{5F15}\x{304D}\x{8D8A}\x{3057}\x{305F}\x{304F}\x{306A}\x{308B}\x{3002}\x{3069}\x{3053}\x{3078}"
 118 text run at (233,0) width 162: "\x{8D8A}\x{3057}\x{3066}\x{3082}\x{4F4F}\x{307F}\x{306B}\x{304F}\x{3044}\x{3068}"
119119 RenderRuby (inline) {RUBY} at (0,0) size 18x22
120  RenderRubyRun (anonymous) at (227,162) size 18x22
121  RenderRubyText {RT} at (-13,0) size 13x22
 120 RenderRubyRun (anonymous) at (230,162) size 24x22
 121 RenderRubyText {RT} at (-10,0) size 15x22
122122 RenderText {#text} at (0,0) size 13x22
123123 text run at (0,0) width 22: "\x{3055}\x{3068}"
124  RenderRubyBase (anonymous) at (0,0) size 18x22
 124 RenderRubyBase (anonymous) at (0,0) size 24x22
125125 RenderInline {RB} at (0,0) size 18x17
126  RenderText {#text} at (0,2) size 18x17
127  text run at (0,2) width 17: "\x{609F}"
128  RenderText {#text} at (227,184) size 18x168
129  text run at (227,184) width 168: "\x{3063}\x{305F}\x{6642}\x{3001}\x{8A69}\x{304C}\x{751F}\x{308C}\x{3066}\x{3001}"
 126 RenderText {#text} at (3,2) size 18x17
 127 text run at (3,2) width 17: "\x{609F}"
 128 RenderText {#text} at (233,184) size 18x168
 129 text run at (233,184) width 168: "\x{3063}\x{305F}\x{6642}\x{3001}\x{8A69}\x{304C}\x{751F}\x{308C}\x{3066}\x{3001}"
130130 RenderRuby (inline) {RUBY} at (0,0) size 18x17
131  RenderRubyRun (anonymous) at (227,352) size 18x17
132  RenderRubyText {RT} at (-13,0) size 13x17
 131 RenderRubyRun (anonymous) at (230,352) size 24x17
 132 RenderRubyText {RT} at (-10,0) size 15x17
133133 RenderText {#text} at (0,3) size 13x11
134134 text run at (0,3) width 11: "\x{3048}"
135  RenderRubyBase (anonymous) at (0,0) size 18x17
 135 RenderRubyBase (anonymous) at (0,0) size 24x17
136136 RenderInline {RB} at (0,0) size 18x17
137  RenderText {#text} at (0,0) size 18x17
138  text run at (0,0) width 17: "\x{753B}"
139  RenderText {#text} at (227,369) size 18x84
140  text run at (227,369) width 84: "\x{304C}\x{51FA}\x{6765}\x{308B}\x{3002}"
141  RenderBR {BR} at (227,453) size 18x0
142  RenderText {#text} at (245,0) size 18x17
143  text run at (245,0) width 17: "\x{3000}"
 137 RenderText {#text} at (3,0) size 18x17
 138 text run at (3,0) width 17: "\x{753B}"
 139 RenderText {#text} at (233,369) size 18x84
 140 text run at (233,369) width 84: "\x{304C}\x{51FA}\x{6765}\x{308B}\x{3002}"
 141 RenderBR {BR} at (233,453) size 18x0
 142 RenderText {#text} at (257,0) size 18x17
 143 text run at (257,0) width 17: "\x{3000}"
144144 RenderInline {STRONG} at (0,0) size 18x51
145  RenderText {#text} at (245,17) size 18x51
146  text run at (245,17) width 51: "\x{4EBA}\x{306E}\x{4E16}"
147  RenderText {#text} at (245,68) size 49x471
148  text run at (245,68) width 403: "\x{3092}\x{4F5C}\x{3063}\x{305F}\x{3082}\x{306E}\x{306F}\x{795E}\x{3067}\x{3082}\x{306A}\x{3051}\x{308C}\x{3070}\x{9B3C}\x{3067}\x{3082}\x{306A}\x{3044}\x{3002}\x{3084}\x{306F}\x{308A}\x{5411}\x{3046}"
149  text run at (276,0) width 33: "\x{4E09}\x{8ED2}"
 145 RenderText {#text} at (257,17) size 18x51
 146 text run at (257,17) width 51: "\x{4EBA}\x{306E}\x{4E16}"
 147 RenderText {#text} at (257,68) size 49x471
 148 text run at (257,68) width 403: "\x{3092}\x{4F5C}\x{3063}\x{305F}\x{3082}\x{306E}\x{306F}\x{795E}\x{3067}\x{3082}\x{306A}\x{3051}\x{308C}\x{3070}\x{9B3C}\x{3067}\x{3082}\x{306A}\x{3044}\x{3002}\x{3084}\x{306F}\x{308A}\x{5411}\x{3046}"
 149 text run at (288,0) width 33: "\x{4E09}\x{8ED2}"
150150 RenderRuby (inline) {RUBY} at (0,0) size 18x54
151  RenderRubyRun (anonymous) at (276,33) size 18x54
152  RenderRubyText {RT} at (-13,0) size 13x54
 151 RenderRubyRun (anonymous) at (285,33) size 24x54
 152 RenderRubyText {RT} at (-10,0) size 15x54
153153 RenderText {#text} at (0,0) size 13x54
154154 text run at (0,0) width 54: "\x{308A}\x{3087}\x{3046}\x{3069}\x{306A}"
155  RenderRubyBase (anonymous) at (0,0) size 18x54
 155 RenderRubyBase (anonymous) at (0,0) size 24x54
156156 RenderInline {RB} at (0,0) size 18x34
157  RenderText {#text} at (0,10) size 18x34
158  text run at (0,10) width 34: "\x{4E21}\x{96A3}"
159  RenderText {#text} at (276,87) size 36x458
160  text run at (276,87) width 371: "\x{308A}\x{306B}\x{3061}\x{3089}\x{3061}\x{3089}\x{3059}\x{308B}\x{305F}\x{3060}\x{306E}\x{4EBA}\x{3067}\x{3042}\x{308B}\x{3002}\x{305F}\x{3060}\x{306E}\x{4EBA}\x{304C}\x{4F5C}\x{3063}"
161  text run at (294,0) width 17: "\x{305F}"
 157 RenderText {#text} at (3,10) size 18x34
 158 text run at (3,10) width 34: "\x{4E21}\x{96A3}"
 159 RenderText {#text} at (288,87) size 42x458
 160 text run at (288,87) width 371: "\x{308A}\x{306B}\x{3061}\x{3089}\x{3061}\x{3089}\x{3059}\x{308B}\x{305F}\x{3060}\x{306E}\x{4EBA}\x{3067}\x{3042}\x{308B}\x{3002}\x{305F}\x{3060}\x{306E}\x{4EBA}\x{304C}\x{4F5C}\x{3063}"
 161 text run at (312,0) width 17: "\x{305F}"
162162 RenderInline {STRONG} at (0,0) size 18x51
163  RenderText {#text} at (294,17) size 18x51
164  text run at (294,17) width 51: "\x{4EBA}\x{306E}\x{4E16}"
165  RenderText {#text} at (294,68) size 18x389
166  text run at (294,68) width 389: "\x{304C}\x{4F4F}\x{307F}\x{306B}\x{304F}\x{3044}\x{304B}\x{3089}\x{3068}\x{3066}\x{3001}\x{8D8A}\x{3059}\x{56FD}\x{306F}\x{3042}\x{308B}\x{307E}\x{3044}\x{3002}\x{3042}\x{308C}\x{3070}"
167  RenderInline {STRONG} at (0,0) size 36x490
168  RenderText {#text} at (294,457) size 36x490
169  text run at (294,457) width 33: "\x{4EBA}\x{3067}"
170  text run at (312,0) width 33: "\x{306A}\x{3057}"
171  RenderText {#text} at (312,33) size 18x169
172  text run at (312,33) width 169: "\x{306E}\x{56FD}\x{3078}\x{884C}\x{304F}\x{3070}\x{304B}\x{308A}\x{3060}\x{3002}"
 163 RenderText {#text} at (312,17) size 18x51
 164 text run at (312,17) width 51: "\x{4EBA}\x{306E}\x{4E16}"
 165 RenderText {#text} at (312,68) size 18x389
 166 text run at (312,68) width 389: "\x{304C}\x{4F4F}\x{307F}\x{306B}\x{304F}\x{3044}\x{304B}\x{3089}\x{3068}\x{3066}\x{3001}\x{8D8A}\x{3059}\x{56FD}\x{306F}\x{3042}\x{308B}\x{307E}\x{3044}\x{3002}\x{3042}\x{308C}\x{3070}"
 167 RenderInline {STRONG} at (0,0) size 42x490
 168 RenderText {#text} at (312,457) size 42x490
 169 text run at (312,457) width 33: "\x{4EBA}\x{3067}"
 170 text run at (336,0) width 33: "\x{306A}\x{3057}"
 171 RenderText {#text} at (336,33) size 18x169
 172 text run at (336,33) width 169: "\x{306E}\x{56FD}\x{3078}\x{884C}\x{304F}\x{3070}\x{304B}\x{308A}\x{3060}\x{3002}"
173173 RenderInline {STRONG} at (0,0) size 18x68
174  RenderText {#text} at (312,202) size 18x68
175  text run at (312,202) width 68: "\x{4EBA}\x{3067}\x{306A}\x{3057}"
176  RenderText {#text} at (312,270) size 18x51
177  text run at (312,270) width 51: "\x{306E}\x{56FD}\x{306F}"
 174 RenderText {#text} at (336,202) size 18x68
 175 text run at (336,202) width 68: "\x{4EBA}\x{3067}\x{306A}\x{3057}"
 176 RenderText {#text} at (336,270) size 18x51
 177 text run at (336,270) width 51: "\x{306E}\x{56FD}\x{306F}"
178178 RenderInline {STRONG} at (0,0) size 18x51
179  RenderText {#text} at (312,321) size 18x51
180  text run at (312,321) width 51: "\x{4EBA}\x{306E}\x{4E16}"
181  RenderText {#text} at (312,372) size 36x485
182  text run at (312,372) width 113: "\x{3088}\x{308A}\x{3082}\x{306A}\x{304A}\x{4F4F}\x{307F}"
183  text run at (330,0) width 97: "\x{306B}\x{304F}\x{304B}\x{308D}\x{3046}\x{3002}"
184  RenderBR {BR} at (330,97) size 18x0
185  RenderText {#text} at (348,0) size 49x468
186  text run at (348,0) width 468: "\x{3000}\x{8D8A}\x{3059}\x{4E8B}\x{306E}\x{306A}\x{3089}\x{306C}\x{4E16}\x{304C}\x{4F4F}\x{307F}\x{306B}\x{304F}\x{3051}\x{308C}\x{3070}\x{3001}\x{4F4F}\x{307F}\x{306B}\x{304F}\x{3044}\x{6240}\x{3092}\x{3069}\x{308C}\x{307B}\x{3069}"
187  text run at (379,0) width 33: "\x{304B}\x{3001}"
 179 RenderText {#text} at (336,321) size 18x51
 180 text run at (336,321) width 51: "\x{4EBA}\x{306E}\x{4E16}"
 181 RenderText {#text} at (336,372) size 42x485
 182 text run at (336,372) width 113: "\x{3088}\x{308A}\x{3082}\x{306A}\x{304A}\x{4F4F}\x{307F}"
 183 text run at (360,0) width 97: "\x{306B}\x{304F}\x{304B}\x{308D}\x{3046}\x{3002}"
 184 RenderBR {BR} at (360,97) size 18x0
 185 RenderText {#text} at (384,0) size 49x468
 186 text run at (384,0) width 468: "\x{3000}\x{8D8A}\x{3059}\x{4E8B}\x{306E}\x{306A}\x{3089}\x{306C}\x{4E16}\x{304C}\x{4F4F}\x{307F}\x{306B}\x{304F}\x{3051}\x{308C}\x{3070}\x{3001}\x{4F4F}\x{307F}\x{306B}\x{304F}\x{3044}\x{6240}\x{3092}\x{3069}\x{308C}\x{307B}\x{3069}"
 187 text run at (415,0) width 33: "\x{304B}\x{3001}"
188188 RenderRuby (inline) {RUBY} at (0,0) size 18x44
189  RenderRubyRun (anonymous) at (379,33) size 18x44
190  RenderRubyText {RT} at (-13,0) size 13x44
 189 RenderRubyRun (anonymous) at (412,33) size 24x44
 190 RenderRubyText {RT} at (-10,0) size 15x44
191191 RenderText {#text} at (0,0) size 13x44
192192 text run at (0,0) width 44: "\x{304F}\x{3064}\x{308D}\x{3052}"
193  RenderRubyBase (anonymous) at (0,0) size 18x44
 193 RenderRubyBase (anonymous) at (0,0) size 24x44
194194 RenderInline {RB} at (0,0) size 18x34
195  RenderText {#text} at (0,5) size 18x34
196  text run at (0,5) width 34: "\x{5BDB}\x{5BB9}"
197  RenderText {#text} at (379,77) size 18x33
198  text run at (379,77) width 33: "\x{3066}\x{3001}"
 195 RenderText {#text} at (3,5) size 18x34
 196 text run at (3,5) width 34: "\x{5BDB}\x{5BB9}"
 197 RenderText {#text} at (415,77) size 18x33
 198 text run at (415,77) width 33: "\x{3066}\x{3001}"
199199 RenderRuby (inline) {RUBY} at (0,0) size 18x22
200  RenderRubyRun (anonymous) at (379,110) size 18x22
201  RenderRubyText {RT} at (-13,0) size 13x22
 200 RenderRubyRun (anonymous) at (412,110) size 24x22
 201 RenderRubyText {RT} at (-10,0) size 15x22
202202 RenderText {#text} at (0,0) size 13x22
203203 text run at (0,0) width 22: "\x{3064}\x{304B}"
204  RenderRubyBase (anonymous) at (0,0) size 18x22
 204 RenderRubyBase (anonymous) at (0,0) size 24x22
205205 RenderInline {RB} at (0,0) size 18x17
206  RenderText {#text} at (0,2) size 18x17
207  text run at (0,2) width 17: "\x{675F}"
208  RenderText {#text} at (379,132) size 18x17
209  text run at (379,132) width 17: "\x{306E}"
 206 RenderText {#text} at (3,2) size 18x17
 207 text run at (3,2) width 17: "\x{675F}"
 208 RenderText {#text} at (415,132) size 18x17
 209 text run at (415,132) width 17: "\x{306E}"
210210 RenderRuby (inline) {RUBY} at (0,0) size 18x17
211  RenderRubyRun (anonymous) at (379,149) size 18x17
212  RenderRubyText {RT} at (-13,0) size 13x17
 211 RenderRubyRun (anonymous) at (412,149) size 24x17
 212 RenderRubyText {RT} at (-10,0) size 15x17
213213 RenderText {#text} at (0,3) size 13x11
214214 text run at (0,3) width 11: "\x{307E}"
215  RenderRubyBase (anonymous) at (0,0) size 18x17
 215 RenderRubyBase (anonymous) at (0,0) size 24x17
216216 RenderInline {RB} at (0,0) size 18x17
217  RenderText {#text} at (0,0) size 18x17
218  text run at (0,0) width 17: "\x{9593}"
219  RenderText {#text} at (379,166) size 36x457
220  text run at (379,166) width 291: "\x{306E}\x{547D}\x{3092}\x{3001}\x{675F}\x{306E}\x{9593}\x{3067}\x{3082}\x{4F4F}\x{307F}\x{3088}\x{304F}\x{305B}\x{306D}\x{3070}\x{306A}\x{3089}"
221  text run at (397,0) width 452: "\x{306C}\x{3002}\x{3053}\x{3053}\x{306B}\x{8A69}\x{4EBA}\x{3068}\x{3044}\x{3046}\x{5929}\x{8077}\x{304C}\x{51FA}\x{6765}\x{3066}\x{3001}\x{3053}\x{3053}\x{306B}\x{753B}\x{5BB6}\x{3068}\x{3044}\x{3046}\x{4F7F}\x{547D}\x{304C}"
 217 RenderText {#text} at (3,0) size 18x17
 218 text run at (3,0) width 17: "\x{9593}"
 219 RenderText {#text} at (415,166) size 42x457
 220 text run at (415,166) width 291: "\x{306E}\x{547D}\x{3092}\x{3001}\x{675F}\x{306E}\x{9593}\x{3067}\x{3082}\x{4F4F}\x{307F}\x{3088}\x{304F}\x{305B}\x{306D}\x{3070}\x{306A}\x{3089}"
 221 text run at (439,0) width 452: "\x{306C}\x{3002}\x{3053}\x{3053}\x{306B}\x{8A69}\x{4EBA}\x{3068}\x{3044}\x{3046}\x{5929}\x{8077}\x{304C}\x{51FA}\x{6765}\x{3066}\x{3001}\x{3053}\x{3053}\x{306B}\x{753B}\x{5BB6}\x{3068}\x{3044}\x{3046}\x{4F7F}\x{547D}\x{304C}"
222222 RenderRuby (inline) {RUBY} at (0,0) size 18x22
223  RenderRubyRun (anonymous) at (428,0) size 18x22
224  RenderRubyText {RT} at (-13,0) size 13x22
 223 RenderRubyRun (anonymous) at (467,0) size 24x22
 224 RenderRubyText {RT} at (-10,0) size 15x22
225225 RenderText {#text} at (0,0) size 13x22
226226 text run at (0,0) width 22: "\x{304F}\x{3060}"
227  RenderRubyBase (anonymous) at (0,0) size 18x22
 227 RenderRubyBase (anonymous) at (0,0) size 24x22
228228 RenderInline {RB} at (0,0) size 18x17
229  RenderText {#text} at (0,2) size 18x17
230  text run at (0,2) width 17: "\x{964D}"
231  RenderText {#text} at (428,22) size 18x254
232  text run at (428,22) width 254: "\x{308B}\x{3002}\x{3042}\x{3089}\x{3086}\x{308B}\x{82B8}\x{8853}\x{306E}\x{58EB}\x{306F}\x{4EBA}\x{306E}\x{4E16}\x{3092}"
 229 RenderText {#text} at (3,2) size 18x17
 230 text run at (3,2) width 17: "\x{964D}"
 231 RenderText {#text} at (470,22) size 18x254
 232 text run at (470,22) width 254: "\x{308B}\x{3002}\x{3042}\x{3089}\x{3086}\x{308B}\x{82B8}\x{8853}\x{306E}\x{58EB}\x{306F}\x{4EBA}\x{306E}\x{4E16}\x{3092}"
233233 RenderRuby (inline) {RUBY} at (0,0) size 18x34
234  RenderRubyRun (anonymous) at (428,276) size 18x34
235  RenderRubyText {RT} at (-13,0) size 13x34
 234 RenderRubyRun (anonymous) at (467,276) size 24x34
 235 RenderRubyText {RT} at (-10,0) size 15x34
236236 RenderText {#text} at (0,0) size 13x33
237237 text run at (0,0) width 33: "\x{306E}\x{3069}\x{304B}"
238  RenderRubyBase (anonymous) at (0,0) size 18x34
 238 RenderRubyBase (anonymous) at (0,0) size 24x34
239239 RenderInline {RB} at (0,0) size 18x34
240  RenderText {#text} at (0,0) size 18x34
241  text run at (0,0) width 34: "\x{9577}\x{9591}"
242  RenderText {#text} at (428,310) size 49x472
243  text run at (428,310) width 162: "\x{306B}\x{3057}\x{3001}\x{4EBA}\x{306E}\x{5FC3}\x{3092}\x{8C4A}\x{304B}\x{306B}"
244  text run at (459,0) width 49: "\x{3059}\x{308B}\x{304C}"
 240 RenderText {#text} at (3,0) size 18x34
 241 text run at (3,0) width 34: "\x{9577}\x{9591}"
 242 RenderText {#text} at (470,310) size 49x472
 243 text run at (470,310) width 162: "\x{306B}\x{3057}\x{3001}\x{4EBA}\x{306E}\x{5FC3}\x{3092}\x{8C4A}\x{304B}\x{306B}"
 244 text run at (501,0) width 49: "\x{3059}\x{308B}\x{304C}"
245245 RenderRuby (inline) {RUBY} at (0,0) size 18x22
246  RenderRubyRun (anonymous) at (459,49) size 18x22
247  RenderRubyText {RT} at (-13,0) size 13x22
 246 RenderRubyRun (anonymous) at (498,49) size 24x22
 247 RenderRubyText {RT} at (-10,0) size 15x22
248248 RenderText {#text} at (0,0) size 13x22
249249 text run at (0,0) width 22: "\x{3086}\x{3048}"
250  RenderRubyBase (anonymous) at (0,0) size 18x22
 250 RenderRubyBase (anonymous) at (0,0) size 24x22
251251 RenderInline {RB} at (0,0) size 18x17
252  RenderText {#text} at (0,2) size 18x17
253  text run at (0,2) width 17: "\x{6545}"
254  RenderText {#text} at (459,71) size 18x17
255  text run at (459,71) width 17: "\x{306B}"
 252 RenderText {#text} at (3,2) size 18x17
 253 text run at (3,2) width 17: "\x{6545}"
 254 RenderText {#text} at (501,71) size 18x17
 255 text run at (501,71) width 17: "\x{306B}"
256256 RenderRuby (inline) {RUBY} at (0,0) size 18x21
257  RenderRubyRun (anonymous) at (459,88) size 18x21
258  RenderRubyText {RT} at (-13,0) size 13x21
 257 RenderRubyRun (anonymous) at (498,88) size 24x21
 258 RenderRubyText {RT} at (-10,0) size 15x21
259259 RenderText {#text} at (0,0) size 13x21
260260 text run at (0,0) width 21: "\x{305F}\x{3063}"
261  RenderRubyBase (anonymous) at (0,0) size 18x21
 261 RenderRubyBase (anonymous) at (0,0) size 24x21
262262 RenderInline {RB} at (0,0) size 18x17
263  RenderText {#text} at (0,2) size 18x17
264  text run at (0,2) width 17: "\x{5C0A}"
265  RenderText {#text} at (459,109) size 18x50
266  text run at (459,109) width 50: "\x{3068}\x{3044}\x{3002}"
267  RenderBR {BR} at (459,159) size 18x0
268  RenderText {#text} at (490,0) size 18x242
269  text run at (490,0) width 242: "\x{3000}\x{4F4F}\x{307F}\x{306B}\x{304F}\x{304D}\x{4E16}\x{304B}\x{3089}\x{3001}\x{4F4F}\x{307F}\x{306B}\x{304F}\x{304D}"
 263 RenderText {#text} at (3,2) size 18x17
 264 text run at (3,2) width 17: "\x{5C0A}"
 265 RenderText {#text} at (501,109) size 18x50
 266 text run at (501,109) width 50: "\x{3068}\x{3044}\x{3002}"
 267 RenderBR {BR} at (501,159) size 18x0
 268 RenderText {#text} at (532,0) size 18x242
 269 text run at (532,0) width 242: "\x{3000}\x{4F4F}\x{307F}\x{306B}\x{304F}\x{304D}\x{4E16}\x{304B}\x{3089}\x{3001}\x{4F4F}\x{307F}\x{306B}\x{304F}\x{304D}"
270270 RenderRuby (inline) {RUBY} at (0,0) size 18x33
271  RenderRubyRun (anonymous) at (490,242) size 18x33
272  RenderRubyText {RT} at (-13,0) size 13x33
 271 RenderRubyRun (anonymous) at (529,242) size 24x33
 272 RenderRubyText {RT} at (-10,0) size 15x33
273273 RenderText {#text} at (0,0) size 13x33
274274 text run at (0,0) width 33: "\x{308F}\x{305A}\x{3089}"
275  RenderRubyBase (anonymous) at (0,0) size 18x33
 275 RenderRubyBase (anonymous) at (0,0) size 24x33
276276 RenderInline {RB} at (0,0) size 18x17
277  RenderText {#text} at (0,8) size 18x17
278  text run at (0,8) width 17: "\x{7169}"
279  RenderText {#text} at (490,275) size 49x469
280  text run at (490,275) width 194: "\x{3044}\x{3092}\x{5F15}\x{304D}\x{629C}\x{3044}\x{3066}\x{3001}\x{3042}\x{308A}\x{304C}\x{305F}"
281  text run at (521,0) width 307: "\x{3044}\x{4E16}\x{754C}\x{3092}\x{307E}\x{306E}\x{3042}\x{305F}\x{308A}\x{306B}\x{5199}\x{3059}\x{306E}\x{304C}\x{8A69}\x{3067}\x{3042}\x{308B}\x{3001}"
 277 RenderText {#text} at (3,8) size 18x17
 278 text run at (3,8) width 17: "\x{7169}"
 279 RenderText {#text} at (532,275) size 49x469
 280 text run at (532,275) width 194: "\x{3044}\x{3092}\x{5F15}\x{304D}\x{629C}\x{3044}\x{3066}\x{3001}\x{3042}\x{308A}\x{304C}\x{305F}"
 281 text run at (563,0) width 307: "\x{3044}\x{4E16}\x{754C}\x{3092}\x{307E}\x{306E}\x{3042}\x{305F}\x{308A}\x{306B}\x{5199}\x{3059}\x{306E}\x{304C}\x{8A69}\x{3067}\x{3042}\x{308B}\x{3001}"
282282 RenderRuby (inline) {RUBY} at (0,0) size 18x17
283  RenderRubyRun (anonymous) at (521,307) size 18x17
284  RenderRubyText {RT} at (-13,0) size 13x17
 283 RenderRubyRun (anonymous) at (560,307) size 24x17
 284 RenderRubyText {RT} at (-10,0) size 15x17
285285 RenderText {#text} at (0,3) size 13x11
286286 text run at (0,3) width 11: "\x{3048}"
287  RenderRubyBase (anonymous) at (0,0) size 18x17
 287 RenderRubyBase (anonymous) at (0,0) size 24x17
288288 RenderInline {RB} at (0,0) size 18x17
289  RenderText {#text} at (0,0) size 18x17
290  text run at (0,0) width 17: "\x{753B}"
291  RenderText {#text} at (521,324) size 49x470
292  text run at (521,324) width 146: "\x{3067}\x{3042}\x{308B}\x{3002}\x{3042}\x{308B}\x{306F}\x{97F3}\x{697D}"
293  text run at (552,0) width 178: "\x{3068}\x{5F6B}\x{523B}\x{3067}\x{3042}\x{308B}\x{3002}\x{3053}\x{307E}\x{304B}\x{306B}"
 289 RenderText {#text} at (3,0) size 18x17
 290 text run at (3,0) width 17: "\x{753B}"
 291 RenderText {#text} at (563,324) size 49x470
 292 text run at (563,324) width 146: "\x{3067}\x{3042}\x{308B}\x{3002}\x{3042}\x{308B}\x{306F}\x{97F3}\x{697D}"
 293 text run at (594,0) width 178: "\x{3068}\x{5F6B}\x{523B}\x{3067}\x{3042}\x{308B}\x{3002}\x{3053}\x{307E}\x{304B}\x{306B}"
294294 RenderRuby (inline) {RUBY} at (0,0) size 18x17
295  RenderRubyRun (anonymous) at (552,178) size 18x17
296  RenderRubyText {RT} at (-13,0) size 13x17
 295 RenderRubyRun (anonymous) at (591,178) size 24x17
 296 RenderRubyText {RT} at (-10,0) size 15x17
297297 RenderText {#text} at (0,3) size 13x11
298298 text run at (0,3) width 11: "\x{3044}"
299  RenderRubyBase (anonymous) at (0,0) size 18x17
 299 RenderRubyBase (anonymous) at (0,0) size 24x17
300300 RenderInline {RB} at (0,0) size 18x17
301  RenderText {#text} at (0,0) size 18x17
302  text run at (0,0) width 17: "\x{4E91}"
303  RenderText {#text} at (552,195) size 49x469
304  text run at (552,195) width 274: "\x{3048}\x{3070}\x{5199}\x{3055}\x{306A}\x{3044}\x{3067}\x{3082}\x{3088}\x{3044}\x{3002}\x{305F}\x{3060}\x{307E}\x{306E}\x{3042}\x{305F}"
305  text run at (583,0) width 258: "\x{308A}\x{306B}\x{898B}\x{308C}\x{3070}\x{3001}\x{305D}\x{3053}\x{306B}\x{8A69}\x{3082}\x{751F}\x{304D}\x{3001}\x{6B4C}\x{3082}"
 301 RenderText {#text} at (3,0) size 18x17
 302 text run at (3,0) width 17: "\x{4E91}"
 303 RenderText {#text} at (594,195) size 49x469
 304 text run at (594,195) width 274: "\x{3048}\x{3070}\x{5199}\x{3055}\x{306A}\x{3044}\x{3067}\x{3082}\x{3088}\x{3044}\x{3002}\x{305F}\x{3060}\x{307E}\x{306E}\x{3042}\x{305F}"
 305 text run at (625,0) width 258: "\x{308A}\x{306B}\x{898B}\x{308C}\x{3070}\x{3001}\x{305D}\x{3053}\x{306B}\x{8A69}\x{3082}\x{751F}\x{304D}\x{3001}\x{6B4C}\x{3082}"
306306 RenderRuby (inline) {RUBY} at (0,0) size 18x17
307  RenderRubyRun (anonymous) at (583,258) size 18x17
308  RenderRubyText {RT} at (-13,0) size 13x17
 307 RenderRubyRun (anonymous) at (622,258) size 24x17
 308 RenderRubyText {RT} at (-10,0) size 15x17
309309 RenderText {#text} at (0,3) size 13x11
310310 text run at (0,3) width 11: "\x{308F}"
311  RenderRubyBase (anonymous) at (0,0) size 18x17
 311 RenderRubyBase (anonymous) at (0,0) size 24x17
312312 RenderInline {RB} at (0,0) size 18x17
313  RenderText {#text} at (0,0) size 18x17
314  text run at (0,0) width 17: "\x{6E67}"
315  RenderText {#text} at (583,275) size 18x203
316  text run at (583,275) width 203: "\x{304F}\x{3002}\x{7740}\x{60F3}\x{3092}\x{7D19}\x{306B}\x{843D}\x{3055}\x{306C}\x{3068}\x{3082}"
 313 RenderText {#text} at (3,0) size 18x17
 314 text run at (3,0) width 17: "\x{6E67}"
 315 RenderText {#text} at (625,275) size 18x203
 316 text run at (625,275) width 203: "\x{304F}\x{3002}\x{7740}\x{60F3}\x{3092}\x{7D19}\x{306B}\x{843D}\x{3055}\x{306C}\x{3068}\x{3082}"
317317 RenderRuby (inline) {RUBY} at (0,0) size 18x54
318  RenderRubyRun (anonymous) at (614,0) size 18x54
319  RenderRubyText {RT} at (-13,0) size 13x54
 318 RenderRubyRun (anonymous) at (653,0) size 24x54
 319 RenderRubyText {RT} at (-10,0) size 15x54
320320 RenderText {#text} at (0,0) size 13x54
321321 text run at (0,0) width 54: "\x{304D}\x{3085}\x{3046}\x{305D}\x{3046}"
322  RenderRubyBase (anonymous) at (0,0) size 18x54
 322 RenderRubyBase (anonymous) at (0,0) size 24x54
323323 RenderInline {RB} at (0,0) size 18x34
324  RenderText {#text} at (0,10) size 18x17
325  text run at (0,10) width 17: "\x{7486}"
326  RenderText {#text} at (0,27) size 18x17
327  text run at (0,27) width 17: "\x{93D8}"
328  RenderText {#text} at (614,54) size 18x17
329  text run at (614,54) width 17: "\x{306E}"
 324 RenderText {#text} at (3,10) size 18x17
 325 text run at (3,10) width 17: "\x{7486}"
 326 RenderText {#text} at (3,27) size 18x17
 327 text run at (3,27) width 17: "\x{93D8}"
 328 RenderText {#text} at (656,54) size 18x17
 329 text run at (656,54) width 17: "\x{306E}"
330330 RenderRuby (inline) {RUBY} at (0,0) size 18x22
331  RenderRubyRun (anonymous) at (614,71) size 18x22
332  RenderRubyText {RT} at (-13,0) size 13x22
 331 RenderRubyRun (anonymous) at (653,71) size 24x22
 332 RenderRubyText {RT} at (-10,0) size 15x22
333333 RenderText {#text} at (0,0) size 13x22
334334 text run at (0,0) width 22: "\x{304A}\x{3093}"
335  RenderRubyBase (anonymous) at (0,0) size 18x22
 335 RenderRubyBase (anonymous) at (0,0) size 24x22
336336 RenderInline {RB} at (0,0) size 18x17
337  RenderText {#text} at (0,2) size 18x17
338  text run at (0,2) width 17: "\x{97F3}"
339  RenderText {#text} at (614,93) size 18x17
340  text run at (614,93) width 17: "\x{306F}"
 337 RenderText {#text} at (3,2) size 18x17
 338 text run at (3,2) width 17: "\x{97F3}"
 339 RenderText {#text} at (656,93) size 18x17
 340 text run at (656,93) width 17: "\x{306F}"
341341 RenderRuby (inline) {RUBY} at (0,0) size 18x43
342  RenderRubyRun (anonymous) at (614,110) size 18x43
343  RenderRubyText {RT} at (-13,0) size 13x43
 342 RenderRubyRun (anonymous) at (653,110) size 24x43
 343 RenderRubyText {RT} at (-10,0) size 15x43
344344 RenderText {#text} at (0,0) size 13x43
345345 text run at (0,0) width 43: "\x{304D}\x{3087}\x{3046}\x{308A}"
346  RenderRubyBase (anonymous) at (0,0) size 18x43
 346 RenderRubyBase (anonymous) at (0,0) size 24x43
347347 RenderInline {RB} at (0,0) size 18x34
348  RenderText {#text} at (0,4) size 18x34
349  text run at (0,4) width 34: "\x{80F8}\x{88CF}"
350  RenderText {#text} at (614,153) size 18x17
351  text run at (614,153) width 17: "\x{306B}"
 348 RenderText {#text} at (3,4) size 18x34
 349 text run at (3,4) width 34: "\x{80F8}\x{88CF}"
 350 RenderText {#text} at (656,153) size 18x17
 351 text run at (656,153) width 17: "\x{306B}"
352352 RenderRuby (inline) {RUBY} at (0,0) size 18x22
353  RenderRubyRun (anonymous) at (614,170) size 18x22
354  RenderRubyText {RT} at (-13,0) size 13x22
 353 RenderRubyRun (anonymous) at (653,170) size 24x22
 354 RenderRubyText {RT} at (-10,0) size 15x22
355355 RenderText {#text} at (0,0) size 13x22
356356 text run at (0,0) width 22: "\x{304A}\x{3053}"
357  RenderRubyBase (anonymous) at (0,0) size 18x22
 357 RenderRubyBase (anonymous) at (0,0) size 24x22
358358 RenderInline {RB} at (0,0) size 18x17
359  RenderText {#text} at (0,2) size 18x17
360  text run at (0,2) width 17: "\x{8D77}"
361  RenderText {#text} at (614,192) size 18x33
362  text run at (614,192) width 33: "\x{308B}\x{3002}"
 359 RenderText {#text} at (3,2) size 18x17
 360 text run at (3,2) width 17: "\x{8D77}"
 361 RenderText {#text} at (656,192) size 18x33
 362 text run at (656,192) width 33: "\x{308B}\x{3002}"
363363 RenderRuby (inline) {RUBY} at (0,0) size 18x44
364  RenderRubyRun (anonymous) at (614,225) size 18x44
365  RenderRubyText {RT} at (-13,0) size 13x44
 364 RenderRubyRun (anonymous) at (653,225) size 24x44
 365 RenderRubyText {RT} at (-10,0) size 15x44
366366 RenderText {#text} at (0,0) size 13x44
367367 text run at (0,0) width 44: "\x{305F}\x{3093}\x{305B}\x{3044}"
368  RenderRubyBase (anonymous) at (0,0) size 18x44
 368 RenderRubyBase (anonymous) at (0,0) size 24x44
369369 RenderInline {RB} at (0,0) size 18x34
370  RenderText {#text} at (0,5) size 18x34
371  text run at (0,5) width 34: "\x{4E39}\x{9752}"
372  RenderText {#text} at (614,269) size 18x17
373  text run at (614,269) width 17: "\x{306F}"
 370 RenderText {#text} at (3,5) size 18x34
 371 text run at (3,5) width 34: "\x{4E39}\x{9752}"
 372 RenderText {#text} at (656,269) size 18x17
 373 text run at (656,269) width 17: "\x{306F}"
374374 RenderRuby (inline) {RUBY} at (0,0) size 18x34
375  RenderRubyRun (anonymous) at (614,286) size 18x34
376  RenderRubyText {RT} at (-13,0) size 13x34
 375 RenderRubyRun (anonymous) at (653,286) size 24x34
 376 RenderRubyText {RT} at (-10,0) size 15x34
377377 RenderText {#text} at (0,6) size 13x22
378378 text run at (0,6) width 22: "\x{304C}\x{304B}"
379  RenderRubyBase (anonymous) at (0,0) size 18x34
 379 RenderRubyBase (anonymous) at (0,0) size 24x34
380380 RenderInline {RB} at (0,0) size 18x34
381  RenderText {#text} at (0,0) size 18x34
382  text run at (0,0) width 34: "\x{753B}\x{67B6}"
383  RenderText {#text} at (614,320) size 18x67
384  text run at (614,320) width 67: "\x{306B}\x{5411}\x{3063}\x{3066}"
 381 RenderText {#text} at (3,0) size 18x34
 382 text run at (3,0) width 34: "\x{753B}\x{67B6}"
 383 RenderText {#text} at (656,320) size 18x67
 384 text run at (656,320) width 67: "\x{306B}\x{5411}\x{3063}\x{3066}"
385385 RenderRuby (inline) {RUBY} at (0,0) size 18x34
386  RenderRubyRun (anonymous) at (614,387) size 18x34
387  RenderRubyText {RT} at (-13,0) size 13x34
 386 RenderRubyRun (anonymous) at (653,387) size 24x34
 387 RenderRubyText {RT} at (-10,0) size 15x34
388388 RenderText {#text} at (0,0) size 13x33
389389 text run at (0,0) width 33: "\x{3068}\x{307E}\x{3064}"
390  RenderRubyBase (anonymous) at (0,0) size 18x34
 390 RenderRubyBase (anonymous) at (0,0) size 24x34
391391 RenderInline {RB} at (0,0) size 18x34
392  RenderText {#text} at (0,0) size 18x34
393  text run at (0,0) width 34: "\x{5857}\x{62B9}"
394  RenderText {#text} at (614,421) size 18x68
395  text run at (614,421) width 68: "\x{305B}\x{3093}\x{3067}\x{3082}"
 392 RenderText {#text} at (3,0) size 18x34
 393 text run at (3,0) width 34: "\x{5857}\x{62B9}"
 394 RenderText {#text} at (656,421) size 18x68
 395 text run at (656,421) width 68: "\x{305B}\x{3093}\x{3067}\x{3082}"
396396 RenderRuby (inline) {RUBY} at (0,0) size 18x34
397  RenderRubyRun (anonymous) at (645,0) size 18x34
398  RenderRubyText {RT} at (-13,0) size 13x34
 397 RenderRubyRun (anonymous) at (684,0) size 24x34
 398 RenderRubyText {RT} at (-10,0) size 15x34
399399 RenderText {#text} at (0,0) size 13x33
400400 text run at (0,0) width 33: "\x{3054}\x{3055}\x{3044}"
401  RenderRubyBase (anonymous) at (0,0) size 18x34
 401 RenderRubyBase (anonymous) at (0,0) size 24x34
402402 RenderInline {RB} at (0,0) size 18x34
403  RenderText {#text} at (0,0) size 18x34
404  text run at (0,0) width 34: "\x{4E94}\x{5F69}"
405  RenderText {#text} at (645,34) size 18x17
406  text run at (645,34) width 17: "\x{306E}"
 403 RenderText {#text} at (3,0) size 18x34
 404 text run at (3,0) width 34: "\x{4E94}\x{5F69}"
 405 RenderText {#text} at (687,34) size 18x17
 406 text run at (687,34) width 17: "\x{306E}"
407407 RenderRuby (inline) {RUBY} at (0,0) size 18x44
408  RenderRubyRun (anonymous) at (645,51) size 18x44
409  RenderRubyText {RT} at (-13,0) size 13x44
 408 RenderRubyRun (anonymous) at (684,51) size 24x44
 409 RenderRubyText {RT} at (-10,0) size 15x44
410410 RenderText {#text} at (0,0) size 13x44
411411 text run at (0,0) width 44: "\x{3051}\x{3093}\x{3089}\x{3093}"
412  RenderRubyBase (anonymous) at (0,0) size 18x44
 412 RenderRubyBase (anonymous) at (0,0) size 24x44
413413 RenderInline {RB} at (0,0) size 18x34
414  RenderText {#text} at (0,5) size 18x34
415  text run at (0,5) width 34: "\x{7D62}\x{721B}"
416  RenderText {#text} at (645,95) size 18x17
417  text run at (645,95) width 17: "\x{306F}"
 414 RenderText {#text} at (3,5) size 18x34
 415 text run at (3,5) width 34: "\x{7D62}\x{721B}"
 416 RenderText {#text} at (687,95) size 18x17
 417 text run at (687,95) width 17: "\x{306F}"
418418 RenderRuby (inline) {RUBY} at (0,0) size 18x33
419  RenderRubyRun (anonymous) at (645,112) size 18x33
420  RenderRubyText {RT} at (-13,0) size 13x33
 419 RenderRubyRun (anonymous) at (684,112) size 24x33
 420 RenderRubyText {RT} at (-10,0) size 15x33
421421 RenderText {#text} at (0,0) size 13x33
422422 text run at (0,0) width 33: "\x{304A}\x{306E}\x{305A}"
423  RenderRubyBase (anonymous) at (0,0) size 18x33
 423 RenderRubyBase (anonymous) at (0,0) size 24x33
424424 RenderInline {RB} at (0,0) size 18x17
425  RenderText {#text} at (0,8) size 18x17
426  text run at (0,8) width 17: "\x{81EA}"
427  RenderText {#text} at (645,145) size 18x34
428  text run at (645,145) width 34: "\x{304B}\x{3089}"
 425 RenderText {#text} at (3,8) size 18x17
 426 text run at (3,8) width 17: "\x{81EA}"
 427 RenderText {#text} at (687,145) size 18x34
 428 text run at (687,145) width 34: "\x{304B}\x{3089}"
429429 RenderRuby (inline) {RUBY} at (0,0) size 18x44
430  RenderRubyRun (anonymous) at (645,179) size 18x44
431  RenderRubyText {RT} at (-13,0) size 13x44
 430 RenderRubyRun (anonymous) at (684,179) size 24x44
 431 RenderRubyText {RT} at (-10,0) size 15x44
432432 RenderText {#text} at (0,0) size 13x44
433433 text run at (0,0) width 44: "\x{3057}\x{3093}\x{304C}\x{3093}"
434  RenderRubyBase (anonymous) at (0,0) size 18x44
 434 RenderRubyBase (anonymous) at (0,0) size 24x44
435435 RenderInline {RB} at (0,0) size 18x34
436  RenderText {#text} at (0,5) size 18x34
437  text run at (0,5) width 34: "\x{5FC3}\x{773C}"
438  RenderText {#text} at (645,223) size 18x270
439  text run at (645,223) width 270: "\x{306B}\x{6620}\x{308B}\x{3002}\x{305F}\x{3060}\x{304A}\x{306E}\x{304C}\x{4F4F}\x{3080}\x{4E16}\x{3092}\x{3001}\x{304B}\x{304F}"
 436 RenderText {#text} at (3,5) size 18x34
 437 text run at (3,5) width 34: "\x{5FC3}\x{773C}"
 438 RenderText {#text} at (687,223) size 18x270
 439 text run at (687,223) width 270: "\x{306B}\x{6620}\x{308B}\x{3002}\x{305F}\x{3060}\x{304A}\x{306E}\x{304C}\x{4F4F}\x{3080}\x{4E16}\x{3092}\x{3001}\x{304B}\x{304F}"
440440 RenderRuby (inline) {RUBY} at (0,0) size 18x22
441  RenderRubyRun (anonymous) at (676,0) size 18x22
442  RenderRubyText {RT} at (-13,0) size 13x22
 441 RenderRubyRun (anonymous) at (715,0) size 24x22
 442 RenderRubyText {RT} at (-10,0) size 15x22
443443 RenderText {#text} at (0,0) size 13x22
444444 text run at (0,0) width 22: "\x{304B}\x{3093}"
445  RenderRubyBase (anonymous) at (0,0) size 18x22
 445 RenderRubyBase (anonymous) at (0,0) size 24x22
446446 RenderInline {RB} at (0,0) size 18x17
447  RenderText {#text} at (0,2) size 18x17
448  text run at (0,2) width 17: "\x{89B3}"
449  RenderText {#text} at (676,22) size 18x67
450  text run at (676,22) width 67: "\x{3058}\x{5F97}\x{3066}\x{3001}"
 447 RenderText {#text} at (3,2) size 18x17
 448 text run at (3,2) width 17: "\x{89B3}"
 449 RenderText {#text} at (718,22) size 18x67
 450 text run at (718,22) width 67: "\x{3058}\x{5F97}\x{3066}\x{3001}"
451451 RenderRuby (inline) {RUBY} at (0,0) size 18x88
452  RenderRubyRun (anonymous) at (676,89) size 18x88
453  RenderRubyText {RT} at (-13,0) size 13x88
 452 RenderRubyRun (anonymous) at (715,89) size 24x88
 453 RenderRubyText {RT} at (-10,0) size 15x88
454454 RenderText {#text} at (0,0) size 13x88
455455 text run at (0,0) width 88: "\x{308C}\x{3044}\x{3060}\x{3044}\x{307B}\x{3046}\x{3059}\x{3093}"
456  RenderRubyBase (anonymous) at (0,0) size 18x88
 456 RenderRubyBase (anonymous) at (0,0) size 24x88
457457 RenderInline {RB} at (0,0) size 18x68
458  RenderText {#text} at (0,10) size 18x68
459  text run at (0,10) width 68: "\x{970A}\x{53F0}\x{65B9}\x{5BF8}"
460  RenderText {#text} at (676,177) size 18x85
461  text run at (676,177) width 85: "\x{306E}\x{30AB}\x{30E1}\x{30E9}\x{306B}"
 458 RenderText {#text} at (3,10) size 18x68
 459 text run at (3,10) width 68: "\x{970A}\x{53F0}\x{65B9}\x{5BF8}"
 460 RenderText {#text} at (718,177) size 18x85
 461 text run at (718,177) width 85: "\x{306E}\x{30AB}\x{30E1}\x{30E9}\x{306B}"
462462 RenderRuby (inline) {RUBY} at (0,0) size 18x87
463  RenderRubyRun (anonymous) at (676,262) size 18x87
464  RenderRubyText {RT} at (-13,0) size 13x87
 463 RenderRubyRun (anonymous) at (715,262) size 24x87
 464 RenderRubyText {RT} at (-10,0) size 15x87
465465 RenderText {#text} at (0,0) size 13x87
466466 text run at (0,0) width 87: "\x{304E}\x{3087}\x{3046}\x{304D}\x{3053}\x{3093}\x{3060}\x{304F}"
467  RenderRubyBase (anonymous) at (0,0) size 18x87
 467 RenderRubyBase (anonymous) at (0,0) size 24x87
468468 RenderInline {RB} at (0,0) size 18x68
469  RenderText {#text} at (0,9) size 18x68
470  text run at (0,9) width 68: "\x{6F86}\x{5B63}\x{6EB7}\x{6FC1}"
471  RenderText {#text} at (676,349) size 49x478
472  text run at (676,349) width 129: "\x{306E}\x{4FD7}\x{754C}\x{3092}\x{6E05}\x{304F}\x{3046}\x{3089}"
473  text run at (707,0) width 81: "\x{3089}\x{304B}\x{306B}\x{53CE}\x{3081}"
 469 RenderText {#text} at (3,9) size 18x68
 470 text run at (3,9) width 68: "\x{6F86}\x{5B63}\x{6EB7}\x{6FC1}"
 471 RenderText {#text} at (718,349) size 49x478
 472 text run at (718,349) width 129: "\x{306E}\x{4FD7}\x{754C}\x{3092}\x{6E05}\x{304F}\x{3046}\x{3089}"
 473 text run at (749,0) width 81: "\x{3089}\x{304B}\x{306B}\x{53CE}\x{3081}"
474474 RenderRuby (inline) {RUBY} at (0,0) size 18x17
475  RenderRubyRun (anonymous) at (707,81) size 18x17
476  RenderRubyText {RT} at (-13,0) size 13x17
 475 RenderRubyRun (anonymous) at (746,81) size 24x17
 476 RenderRubyText {RT} at (-10,0) size 15x17
477477 RenderText {#text} at (0,3) size 13x11
478478 text run at (0,3) width 11: "\x{3046}"
479  RenderRubyBase (anonymous) at (0,0) size 18x17
 479 RenderRubyBase (anonymous) at (0,0) size 24x17
480480 RenderInline {RB} at (0,0) size 18x17
481  RenderText {#text} at (0,0) size 18x17
482  text run at (0,0) width 17: "\x{5F97}"
483  RenderText {#text} at (707,98) size 18x34
484  text run at (707,98) width 34: "\x{308C}\x{3070}"
 481 RenderText {#text} at (3,0) size 18x17
 482 text run at (3,0) width 17: "\x{5F97}"
 483 RenderText {#text} at (749,98) size 18x34
 484 text run at (749,98) width 34: "\x{308C}\x{3070}"
485485 RenderRuby (inline) {RUBY} at (0,0) size 18x17
486  RenderRubyRun (anonymous) at (707,132) size 18x17
487  RenderRubyText {RT} at (-13,0) size 13x17
 486 RenderRubyRun (anonymous) at (746,132) size 24x17
 487 RenderRubyText {RT} at (-10,0) size 15x17
488488 RenderText {#text} at (0,3) size 13x11
489489 text run at (0,3) width 11: "\x{305F}"
490  RenderRubyBase (anonymous) at (0,0) size 18x17
 490 RenderRubyBase (anonymous) at (0,0) size 24x17
491491 RenderInline {RB} at (0,0) size 18x17
492  RenderText {#text} at (0,0) size 18x17
493  text run at (0,0) width 17: "\x{8DB3}"
494  RenderText {#text} at (707,149) size 18x101
495  text run at (707,149) width 101: "\x{308B}\x{3002}\x{3053}\x{306E}\x{6545}\x{306B}"
 492 RenderText {#text} at (3,0) size 18x17
 493 text run at (3,0) width 17: "\x{8DB3}"
 494 RenderText {#text} at (749,149) size 18x101
 495 text run at (749,149) width 101: "\x{308B}\x{3002}\x{3053}\x{306E}\x{6545}\x{306B}"
496496 RenderRuby (inline) {RUBY} at (0,0) size 18x34
497  RenderRubyRun (anonymous) at (707,250) size 18x34
498  RenderRubyText {RT} at (-13,0) size 13x34
 497 RenderRubyRun (anonymous) at (746,250) size 24x34
 498 RenderRubyText {RT} at (-10,0) size 15x34
499499 RenderText {#text} at (0,0) size 13x33
500500 text run at (0,0) width 33: "\x{3080}\x{305B}\x{3044}"
501  RenderRubyBase (anonymous) at (0,0) size 18x34
 501 RenderRubyBase (anonymous) at (0,0) size 24x34
502502 RenderInline {RB} at (0,0) size 18x34
503  RenderText {#text} at (0,0) size 18x34
504  text run at (0,0) width 34: "\x{7121}\x{58F0}"
505  RenderText {#text} at (707,284) size 18x169
506  text run at (707,284) width 169: "\x{306E}\x{8A69}\x{4EBA}\x{306B}\x{306F}\x{4E00}\x{53E5}\x{306A}\x{304F}\x{3001}"
 503 RenderText {#text} at (3,0) size 18x34
 504 text run at (3,0) width 34: "\x{7121}\x{58F0}"
 505 RenderText {#text} at (749,284) size 18x169
 506 text run at (749,284) width 169: "\x{306E}\x{8A69}\x{4EBA}\x{306B}\x{306F}\x{4E00}\x{53E5}\x{306A}\x{304F}\x{3001}"
507507 RenderRuby (inline) {RUBY} at (0,0) size 18x43
508  RenderRubyRun (anonymous) at (738,0) size 18x43
509  RenderRubyText {RT} at (-13,0) size 13x43
 508 RenderRubyRun (anonymous) at (777,0) size 24x43
 509 RenderRubyText {RT} at (-10,0) size 15x43
510510 RenderText {#text} at (0,0) size 13x43
511511 text run at (0,0) width 43: "\x{3080}\x{3057}\x{3087}\x{304F}"
512  RenderRubyBase (anonymous) at (0,0) size 18x43
 512 RenderRubyBase (anonymous) at (0,0) size 24x43
513513 RenderInline {RB} at (0,0) size 18x34
514  RenderText {#text} at (0,4) size 18x34
515  text run at (0,4) width 34: "\x{7121}\x{8272}"
516  RenderText {#text} at (738,43) size 18x85
517  text run at (738,43) width 85: "\x{306E}\x{753B}\x{5BB6}\x{306B}\x{306F}"
 514 RenderText {#text} at (3,4) size 18x34
 515 text run at (3,4) width 34: "\x{7121}\x{8272}"
 516 RenderText {#text} at (780,43) size 18x85
 517 text run at (780,43) width 85: "\x{306E}\x{753B}\x{5BB6}\x{306B}\x{306F}"
518518 RenderRuby (inline) {RUBY} at (0,0) size 18x43
519  RenderRubyRun (anonymous) at (738,128) size 18x43
520  RenderRubyText {RT} at (-13,0) size 13x43
 519 RenderRubyRun (anonymous) at (777,128) size 24x43
 520 RenderRubyText {RT} at (-10,0) size 15x43
521521 RenderText {#text} at (0,0) size 13x43
522522 text run at (0,0) width 43: "\x{305B}\x{3063}\x{3051}\x{3093}"
523  RenderRubyBase (anonymous) at (0,0) size 18x43
 523 RenderRubyBase (anonymous) at (0,0) size 24x43
524524 RenderInline {RB} at (0,0) size 18x34
525  RenderText {#text} at (0,4) size 18x34
526  text run at (0,4) width 34: "\x{5C3A}\x{7E11}"
527  RenderText {#text} at (738,171) size 18x101
528  text run at (738,171) width 101: "\x{306A}\x{304D}\x{3082}\x{3001}\x{304B}\x{304F}"
 525 RenderText {#text} at (3,4) size 18x34
 526 text run at (3,4) width 34: "\x{5C3A}\x{7E11}"
 527 RenderText {#text} at (780,171) size 18x101
 528 text run at (780,171) width 101: "\x{306A}\x{304D}\x{3082}\x{3001}\x{304B}\x{304F}"
529529 RenderRuby (inline) {RUBY} at (0,0) size 18x44
530  RenderRubyRun (anonymous) at (738,272) size 18x44
531  RenderRubyText {RT} at (-13,0) size 13x44
 530 RenderRubyRun (anonymous) at (777,272) size 24x44
 531 RenderRubyText {RT} at (-10,0) size 15x44
532532 RenderText {#text} at (0,0) size 13x44
533533 text run at (0,0) width 44: "\x{3058}\x{3093}\x{305B}\x{3044}"
534  RenderRubyBase (anonymous) at (0,0) size 18x44
 534 RenderRubyBase (anonymous) at (0,0) size 24x44
535535 RenderInline {RB} at (0,0) size 18x34
536  RenderText {#text} at (0,5) size 18x34
537  text run at (0,5) width 34: "\x{4EBA}\x{4E16}"
538  RenderText {#text} at (738,316) size 49x478
539  text run at (738,316) width 162: "\x{3092}\x{89B3}\x{3058}\x{5F97}\x{308B}\x{306E}\x{70B9}\x{306B}\x{304A}\x{3044}"
540  text run at (769,0) width 65: "\x{3066}\x{3001}\x{304B}\x{304F}"
 536 RenderText {#text} at (3,5) size 18x34
 537 text run at (3,5) width 34: "\x{4EBA}\x{4E16}"
 538 RenderText {#text} at (780,316) size 49x478
 539 text run at (780,316) width 162: "\x{3092}\x{89B3}\x{3058}\x{5F97}\x{308B}\x{306E}\x{70B9}\x{306B}\x{304A}\x{3044}"
 540 text run at (811,0) width 65: "\x{3066}\x{3001}\x{304B}\x{304F}"
541541 RenderRuby (inline) {RUBY} at (0,0) size 18x44
542  RenderRubyRun (anonymous) at (769,65) size 18x44
543  RenderRubyText {RT} at (-13,0) size 13x44
 542 RenderRubyRun (anonymous) at (808,65) size 24x44
 543 RenderRubyText {RT} at (-10,0) size 15x44
544544 RenderText {#text} at (0,0) size 13x44
545545 text run at (0,0) width 44: "\x{307C}\x{3093}\x{306E}\x{3046}"
546  RenderRubyBase (anonymous) at (0,0) size 18x44
 546 RenderRubyBase (anonymous) at (0,0) size 24x44
547547 RenderInline {RB} at (0,0) size 18x34
548  RenderText {#text} at (0,5) size 18x34
549  text run at (0,5) width 34: "\x{7169}\x{60A9}"
550  RenderText {#text} at (769,109) size 18x17
551  text run at (769,109) width 17: "\x{3092}"
 548 RenderText {#text} at (3,5) size 18x34
 549 text run at (3,5) width 34: "\x{7169}\x{60A9}"
 550 RenderText {#text} at (811,109) size 18x17
 551 text run at (811,109) width 17: "\x{3092}"
552552 RenderRuby (inline) {RUBY} at (0,0) size 18x34
553  RenderRubyRun (anonymous) at (769,126) size 18x34
554  RenderRubyText {RT} at (-13,0) size 13x34
 553 RenderRubyRun (anonymous) at (808,126) size 24x34
 554 RenderRubyText {RT} at (-10,0) size 15x34
555555 RenderText {#text} at (0,0) size 13x33
556556 text run at (0,0) width 33: "\x{3052}\x{3060}\x{3064}"
557  RenderRubyBase (anonymous) at (0,0) size 18x34
 557 RenderRubyBase (anonymous) at (0,0) size 24x34
558558 RenderInline {RB} at (0,0) size 18x34
559  RenderText {#text} at (0,0) size 18x34
560  text run at (0,0) width 34: "\x{89E3}\x{8131}"
561  RenderText {#text} at (769,160) size 18x186
562  text run at (769,160) width 186: "\x{3059}\x{308B}\x{306E}\x{70B9}\x{306B}\x{304A}\x{3044}\x{3066}\x{3001}\x{304B}\x{304F}"
 559 RenderText {#text} at (3,0) size 18x34
 560 text run at (3,0) width 34: "\x{89E3}\x{8131}"
 561 RenderText {#text} at (811,160) size 18x186
 562 text run at (811,160) width 186: "\x{3059}\x{308B}\x{306E}\x{70B9}\x{306B}\x{304A}\x{3044}\x{3066}\x{3001}\x{304B}\x{304F}"
563563 RenderRuby (inline) {RUBY} at (0,0) size 18x86
564  RenderRubyRun (anonymous) at (769,346) size 18x86
565  RenderRubyText {RT} at (-13,0) size 13x86
 564 RenderRubyRun (anonymous) at (808,346) size 24x86
 565 RenderRubyText {RT} at (-10,0) size 15x86
566566 RenderText {#text} at (0,0) size 13x86
567567 text run at (0,0) width 86: "\x{3057}\x{3087}\x{3046}\x{3058}\x{3087}\x{3046}\x{304B}\x{3044}"
568  RenderRubyBase (anonymous) at (0,0) size 18x86
 568 RenderRubyBase (anonymous) at (0,0) size 24x86
569569 RenderInline {RB} at (0,0) size 18x51
570  RenderText {#text} at (0,17) size 18x51
571  text run at (0,17) width 51: "\x{6E05}\x{6D44}\x{754C}"
572  RenderText {#text} at (769,432) size 18x17
573  text run at (769,432) width 17: "\x{306B}"
 570 RenderText {#text} at (3,17) size 18x51
 571 text run at (3,17) width 51: "\x{6E05}\x{6D44}\x{754C}"
 572 RenderText {#text} at (811,432) size 18x17
 573 text run at (811,432) width 17: "\x{306B}"
574574 RenderRuby (inline) {RUBY} at (0,0) size 18x64
575  RenderRubyRun (anonymous) at (800,0) size 18x64
576  RenderRubyText {RT} at (-13,0) size 13x64
 575 RenderRubyRun (anonymous) at (839,0) size 24x64
 576 RenderRubyText {RT} at (-10,0) size 15x64
577577 RenderText {#text} at (0,0) size 13x64
578578 text run at (0,0) width 64: "\x{3057}\x{3085}\x{3064}\x{306B}\x{3085}\x{3046}"
579  RenderRubyBase (anonymous) at (0,0) size 18x64
 579 RenderRubyBase (anonymous) at (0,0) size 24x64
580580 RenderInline {RB} at (0,0) size 18x34
581  RenderText {#text} at (0,15) size 18x34
582  text run at (0,15) width 34: "\x{51FA}\x{5165}"
583  RenderText {#text} at (800,64) size 18x237
584  text run at (800,64) width 237: "\x{3057}\x{5F97}\x{308B}\x{306E}\x{70B9}\x{306B}\x{304A}\x{3044}\x{3066}\x{3001}\x{307E}\x{305F}\x{3053}\x{306E}"
 581 RenderText {#text} at (3,15) size 18x34
 582 text run at (3,15) width 34: "\x{51FA}\x{5165}"
 583 RenderText {#text} at (842,64) size 18x237
 584 text run at (842,64) width 237: "\x{3057}\x{5F97}\x{308B}\x{306E}\x{70B9}\x{306B}\x{304A}\x{3044}\x{3066}\x{3001}\x{307E}\x{305F}\x{3053}\x{306E}"
585585 RenderRuby (inline) {RUBY} at (0,0) size 18x68
586  RenderRubyRun (anonymous) at (800,301) size 18x68
587  RenderRubyText {RT} at (-13,0) size 13x68
 586 RenderRubyRun (anonymous) at (839,301) size 24x68
 587 RenderRubyText {RT} at (-10,0) size 15x68
588588 RenderText {#text} at (0,6) size 13x55
589589 text run at (0,6) width 55: "\x{3075}\x{3069}\x{3046}\x{3075}\x{3058}"
590  RenderRubyBase (anonymous) at (0,0) size 18x68
 590 RenderRubyBase (anonymous) at (0,0) size 24x68
591591 RenderInline {RB} at (0,0) size 18x68
592  RenderText {#text} at (0,0) size 18x68
593  text run at (0,0) width 68: "\x{4E0D}\x{540C}\x{4E0D}\x{4E8C}"
594  RenderText {#text} at (800,369) size 18x17
595  text run at (800,369) width 17: "\x{306E}"
 592 RenderText {#text} at (3,0) size 18x68
 593 text run at (3,0) width 68: "\x{4E0D}\x{540C}\x{4E0D}\x{4E8C}"
 594 RenderText {#text} at (842,369) size 18x17
 595 text run at (842,369) width 17: "\x{306E}"
596596 RenderRuby (inline) {RUBY} at (0,0) size 18x44
597  RenderRubyRun (anonymous) at (800,386) size 18x44
598  RenderRubyText {RT} at (-13,0) size 13x44
 597 RenderRubyRun (anonymous) at (839,386) size 24x44
 598 RenderRubyText {RT} at (-10,0) size 15x44
599599 RenderText {#text} at (0,0) size 13x44
600600 text run at (0,0) width 44: "\x{3051}\x{3093}\x{3053}\x{3093}"
601  RenderRubyBase (anonymous) at (0,0) size 18x44
 601 RenderRubyBase (anonymous) at (0,0) size 24x44
602602 RenderInline {RB} at (0,0) size 18x34
603  RenderText {#text} at (0,5) size 18x34
604  text run at (0,5) width 34: "\x{4E7E}\x{5764}"
605  RenderText {#text} at (800,430) size 18x17
606  text run at (800,430) width 17: "\x{3092}"
 603 RenderText {#text} at (3,5) size 18x34
 604 text run at (3,5) width 34: "\x{4E7E}\x{5764}"
 605 RenderText {#text} at (842,430) size 18x17
 606 text run at (842,430) width 17: "\x{3092}"
607607 RenderRuby (inline) {RUBY} at (0,0) size 18x54
608  RenderRubyRun (anonymous) at (831,0) size 18x54
609  RenderRubyText {RT} at (-13,0) size 13x54
 608 RenderRubyRun (anonymous) at (870,0) size 24x54
 609 RenderRubyText {RT} at (-10,0) size 15x54
610610 RenderText {#text} at (0,0) size 13x54
611611 text run at (0,0) width 54: "\x{3053}\x{3093}\x{308A}\x{3085}\x{3046}"
612  RenderRubyBase (anonymous) at (0,0) size 18x54
 612 RenderRubyBase (anonymous) at (0,0) size 24x54
613613 RenderInline {RB} at (0,0) size 18x34
614  RenderText {#text} at (0,10) size 18x34
615  text run at (0,10) width 34: "\x{5EFA}\x{7ACB}"
616  RenderText {#text} at (831,54) size 18x169
617  text run at (831,54) width 169: "\x{3057}\x{5F97}\x{308B}\x{306E}\x{70B9}\x{306B}\x{304A}\x{3044}\x{3066}\x{3001}"
 614 RenderText {#text} at (3,10) size 18x34
 615 text run at (3,10) width 34: "\x{5EFA}\x{7ACB}"
 616 RenderText {#text} at (873,54) size 18x169
 617 text run at (873,54) width 169: "\x{3057}\x{5F97}\x{308B}\x{306E}\x{70B9}\x{306B}\x{304A}\x{3044}\x{3066}\x{3001}"
618618 RenderRuby (inline) {RUBY} at (0,0) size 18x68
619  RenderRubyRun (anonymous) at (831,223) size 18x68
620  RenderRubyText {RT} at (-13,0) size 13x68
 619 RenderRubyRun (anonymous) at (870,223) size 24x68
 620 RenderRubyText {RT} at (-10,0) size 15x68
621621 RenderText {#text} at (0,6) size 13x55
622622 text run at (0,6) width 55: "\x{304C}\x{308A}\x{3057}\x{3088}\x{304F}"
623  RenderRubyBase (anonymous) at (0,0) size 18x68
 623 RenderRubyBase (anonymous) at (0,0) size 24x68
624624 RenderInline {RB} at (0,0) size 18x68
625  RenderText {#text} at (0,0) size 18x68
626  text run at (0,0) width 68: "\x{6211}\x{5229}\x{79C1}\x{617E}"
627  RenderText {#text} at (831,291) size 18x17
628  text run at (831,291) width 17: "\x{306E}"
 625 RenderText {#text} at (3,0) size 18x68
 626 text run at (3,0) width 68: "\x{6211}\x{5229}\x{79C1}\x{617E}"
 627 RenderText {#text} at (873,291) size 18x17
 628 text run at (873,291) width 17: "\x{306E}"
629629 RenderRuby (inline) {RUBY} at (0,0) size 18x34
630  RenderRubyRun (anonymous) at (831,308) size 18x34
631  RenderRubyText {RT} at (-13,0) size 13x34
 630 RenderRubyRun (anonymous) at (870,308) size 24x34
 631 RenderRubyText {RT} at (-10,0) size 15x34
632632 RenderText {#text} at (0,0) size 13x33
633633 text run at (0,0) width 33: "\x{304D}\x{306F}\x{3093}"
634  RenderRubyBase (anonymous) at (0,0) size 18x34
 634 RenderRubyBase (anonymous) at (0,0) size 24x34
635635 RenderInline {RB} at (0,0) size 18x34
636  RenderText {#text} at (0,0) size 18x34
637  text run at (0,0) width 34: "\x{898A}\x{7D46}"
638  RenderText {#text} at (831,342) size 18x17
639  text run at (831,342) width 17: "\x{3092}"
 636 RenderText {#text} at (3,0) size 18x34
 637 text run at (3,0) width 34: "\x{898A}\x{7D46}"
 638 RenderText {#text} at (873,342) size 18x17
 639 text run at (873,342) width 17: "\x{3092}"
640640 RenderRuby (inline) {RUBY} at (0,0) size 18x44
641  RenderRubyRun (anonymous) at (831,359) size 18x44
642  RenderRubyText {RT} at (-13,0) size 13x44
 641 RenderRubyRun (anonymous) at (870,359) size 24x44
 642 RenderRubyText {RT} at (-10,0) size 15x44
643643 RenderText {#text} at (0,0) size 13x44
644644 text run at (0,0) width 44: "\x{305D}\x{3046}\x{3068}\x{3046}"
645  RenderRubyBase (anonymous) at (0,0) size 18x44
 645 RenderRubyBase (anonymous) at (0,0) size 24x44
646646 RenderInline {RB} at (0,0) size 18x34
647  RenderText {#text} at (0,5) size 18x34
648  text run at (0,5) width 34: "\x{6383}\x{8569}"
649  RenderText {#text} at (831,403) size 49x484
650  text run at (831,403) width 81: "\x{3059}\x{308B}\x{306E}\x{70B9}\x{306B}"
651  text run at (862,0) width 97: "\x{304A}\x{3044}\x{3066}\x{3001}\x{2015}\x{2015}"
 647 RenderText {#text} at (3,5) size 18x34
 648 text run at (3,5) width 34: "\x{6383}\x{8569}"
 649 RenderText {#text} at (873,403) size 49x484
 650 text run at (873,403) width 81: "\x{3059}\x{308B}\x{306E}\x{70B9}\x{306B}"
 651 text run at (904,0) width 97: "\x{304A}\x{3044}\x{3066}\x{3001}\x{2015}\x{2015}"
652652 RenderRuby (inline) {RUBY} at (0,0) size 18x44
653  RenderRubyRun (anonymous) at (862,97) size 18x44
654  RenderRubyText {RT} at (-13,0) size 13x44
 653 RenderRubyRun (anonymous) at (901,97) size 24x44
 654 RenderRubyText {RT} at (-10,0) size 15x44
655655 RenderText {#text} at (0,0) size 13x44
656656 text run at (0,0) width 44: "\x{305B}\x{3093}\x{304D}\x{3093}"
657  RenderRubyBase (anonymous) at (0,0) size 18x44
 657 RenderRubyBase (anonymous) at (0,0) size 24x44
658658 RenderInline {RB} at (0,0) size 18x34
659  RenderText {#text} at (0,5) size 18x34
660  text run at (0,5) width 34: "\x{5343}\x{91D1}"
661  RenderText {#text} at (862,141) size 18x101
662  text run at (862,141) width 101: "\x{306E}\x{5B50}\x{3088}\x{308A}\x{3082}\x{3001}"
 659 RenderText {#text} at (3,5) size 18x34
 660 text run at (3,5) width 34: "\x{5343}\x{91D1}"
 661 RenderText {#text} at (904,141) size 18x101
 662 text run at (904,141) width 101: "\x{306E}\x{5B50}\x{3088}\x{308A}\x{3082}\x{3001}"
663663 RenderRuby (inline) {RUBY} at (0,0) size 18x54
664  RenderRubyRun (anonymous) at (862,242) size 18x54
665  RenderRubyText {RT} at (-13,0) size 13x54
 664 RenderRubyRun (anonymous) at (901,242) size 24x54
 665 RenderRubyText {RT} at (-10,0) size 15x54
666666 RenderText {#text} at (0,0) size 13x54
667667 text run at (0,0) width 54: "\x{3070}\x{3093}\x{3058}\x{3087}\x{3046}"
668  RenderRubyBase (anonymous) at (0,0) size 18x54
 668 RenderRubyBase (anonymous) at (0,0) size 24x54
669669 RenderInline {RB} at (0,0) size 18x34
670  RenderText {#text} at (0,10) size 18x34
671  text run at (0,10) width 34: "\x{4E07}\x{4E57}"
672  RenderText {#text} at (862,296) size 49x474
673  text run at (862,296) width 178: "\x{306E}\x{541B}\x{3088}\x{308A}\x{3082}\x{3001}\x{3042}\x{3089}\x{3086}\x{308B}\x{4FD7}"
674  text run at (893,0) width 33: "\x{754C}\x{306E}"
 670 RenderText {#text} at (3,10) size 18x34
 671 text run at (3,10) width 34: "\x{4E07}\x{4E57}"
 672 RenderText {#text} at (904,296) size 49x474
 673 text run at (904,296) width 178: "\x{306E}\x{541B}\x{3088}\x{308A}\x{3082}\x{3001}\x{3042}\x{3089}\x{3086}\x{308B}\x{4FD7}"
 674 text run at (935,0) width 33: "\x{754C}\x{306E}"
675675 RenderRuby (inline) {RUBY} at (0,0) size 18x43
676  RenderRubyRun (anonymous) at (893,33) size 18x43
677  RenderRubyText {RT} at (-13,0) size 13x43
 676 RenderRubyRun (anonymous) at (932,33) size 24x43
 677 RenderRubyText {RT} at (-10,0) size 15x43
678678 RenderText {#text} at (0,0) size 13x43
679679 text run at (0,0) width 43: "\x{3061}\x{3087}\x{3046}\x{3058}"
680  RenderRubyBase (anonymous) at (0,0) size 18x43
 680 RenderRubyBase (anonymous) at (0,0) size 24x43
681681 RenderInline {RB} at (0,0) size 18x34
682  RenderText {#text} at (0,4) size 18x34
683  text run at (0,4) width 34: "\x{5BF5}\x{5150}"
684  RenderText {#text} at (893,76) size 18x152
685  text run at (893,76) width 152: "\x{3088}\x{308A}\x{3082}\x{5E78}\x{798F}\x{3067}\x{3042}\x{308B}\x{3002}"
686  RenderBR {BR} at (893,228) size 18x0
687  RenderText {#text} at (924,0) size 18x274
688  text run at (924,0) width 274: "\x{3000}\x{4E16}\x{306B}\x{4F4F}\x{3080}\x{3053}\x{3068}\x{4E8C}\x{5341}\x{5E74}\x{306B}\x{3057}\x{3066}\x{3001}\x{4F4F}\x{3080}\x{306B}"
 682 RenderText {#text} at (3,4) size 18x34
 683 text run at (3,4) width 34: "\x{5BF5}\x{5150}"
 684 RenderText {#text} at (935,76) size 18x152
 685 text run at (935,76) width 152: "\x{3088}\x{308A}\x{3082}\x{5E78}\x{798F}\x{3067}\x{3042}\x{308B}\x{3002}"
 686 RenderBR {BR} at (935,228) size 18x0
 687 RenderText {#text} at (966,0) size 18x274
 688 text run at (966,0) width 274: "\x{3000}\x{4E16}\x{306B}\x{4F4F}\x{3080}\x{3053}\x{3068}\x{4E8C}\x{5341}\x{5E74}\x{306B}\x{3057}\x{3066}\x{3001}\x{4F4F}\x{3080}\x{306B}"
689689 RenderRuby (inline) {RUBY} at (0,0) size 18x34
690  RenderRubyRun (anonymous) at (924,274) size 18x34
691  RenderRubyText {RT} at (-13,0) size 13x34
 690 RenderRubyRun (anonymous) at (963,274) size 24x34
 691 RenderRubyText {RT} at (-10,0) size 15x34
692692 RenderText {#text} at (0,6) size 13x22
693693 text run at (0,6) width 22: "\x{304B}\x{3044}"
694  RenderRubyBase (anonymous) at (0,0) size 18x34
 694 RenderRubyBase (anonymous) at (0,0) size 24x34
695695 RenderInline {RB} at (0,0) size 18x34
696  RenderText {#text} at (0,0) size 18x34
697  text run at (0,0) width 34: "\x{7532}\x{6590}"
698  RenderText {#text} at (924,308) size 49x470
699  text run at (924,308) width 162: "\x{3042}\x{308B}\x{4E16}\x{3068}\x{77E5}\x{3063}\x{305F}\x{3002}\x{4E8C}\x{5341}"
700  text run at (955,0) width 129: "\x{4E94}\x{5E74}\x{306B}\x{3057}\x{3066}\x{660E}\x{6697}\x{306F}"
 696 RenderText {#text} at (3,0) size 18x34
 697 text run at (3,0) width 34: "\x{7532}\x{6590}"
 698 RenderText {#text} at (966,308) size 49x470
 699 text run at (966,308) width 162: "\x{3042}\x{308B}\x{4E16}\x{3068}\x{77E5}\x{3063}\x{305F}\x{3002}\x{4E8C}\x{5341}"
 700 text run at (997,0) width 129: "\x{4E94}\x{5E74}\x{306B}\x{3057}\x{3066}\x{660E}\x{6697}\x{306F}"
701701 RenderRuby (inline) {RUBY} at (0,0) size 18x43
702  RenderRubyRun (anonymous) at (955,129) size 18x43
703  RenderRubyText {RT} at (-13,0) size 13x43
 702 RenderRubyRun (anonymous) at (994,129) size 24x43
 703 RenderRubyText {RT} at (-10,0) size 15x43
704704 RenderText {#text} at (0,0) size 13x43
705705 text run at (0,0) width 43: "\x{3072}\x{3087}\x{3046}\x{308A}"
706  RenderRubyBase (anonymous) at (0,0) size 18x43
 706 RenderRubyBase (anonymous) at (0,0) size 24x43
707707 RenderInline {RB} at (0,0) size 18x34
708  RenderText {#text} at (0,4) size 18x34
709  text run at (0,4) width 34: "\x{8868}\x{88CF}"
710  RenderText {#text} at (955,172) size 49x463
711  text run at (955,172) width 291: "\x{306E}\x{3054}\x{3068}\x{304F}\x{3001}\x{65E5}\x{306E}\x{3042}\x{305F}\x{308B}\x{6240}\x{306B}\x{306F}\x{304D}\x{3063}\x{3068}\x{5F71}\x{304C}"
712  text run at (986,0) width 162: "\x{3055}\x{3059}\x{3068}\x{609F}\x{3063}\x{305F}\x{3002}\x{4E09}\x{5341}\x{306E}"
 708 RenderText {#text} at (3,4) size 18x34
 709 text run at (3,4) width 34: "\x{8868}\x{88CF}"
 710 RenderText {#text} at (997,172) size 49x463
 711 text run at (997,172) width 291: "\x{306E}\x{3054}\x{3068}\x{304F}\x{3001}\x{65E5}\x{306E}\x{3042}\x{305F}\x{308B}\x{6240}\x{306B}\x{306F}\x{304D}\x{3063}\x{3068}\x{5F71}\x{304C}"
 712 text run at (1028,0) width 162: "\x{3055}\x{3059}\x{3068}\x{609F}\x{3063}\x{305F}\x{3002}\x{4E09}\x{5341}\x{306E}"
713713 RenderRuby (inline) {RUBY} at (0,0) size 18x44
714  RenderRubyRun (anonymous) at (986,162) size 18x44
715  RenderRubyText {RT} at (-13,0) size 13x44
 714 RenderRubyRun (anonymous) at (1025,162) size 24x44
 715 RenderRubyText {RT} at (-10,0) size 15x44
716716 RenderText {#text} at (0,0) size 13x44
717717 text run at (0,0) width 44: "\x{3053}\x{3093}\x{306B}\x{3061}"
718  RenderRubyBase (anonymous) at (0,0) size 18x44
 718 RenderRubyBase (anonymous) at (0,0) size 24x44
719719 RenderInline {RB} at (0,0) size 18x34
720  RenderText {#text} at (0,5) size 18x34
721  text run at (0,5) width 34: "\x{4ECA}\x{65E5}"
722  RenderText {#text} at (986,206) size 49x464
723  text run at (986,206) width 258: "\x{306F}\x{3053}\x{3046}\x{601D}\x{3046}\x{3066}\x{3044}\x{308B}\x{3002}\x{2015}\x{2015}\x{559C}\x{3073}\x{306E}\x{6DF1}\x{304D}"
724  text run at (1017,0) width 33: "\x{3068}\x{304D}"
 720 RenderText {#text} at (3,5) size 18x34
 721 text run at (3,5) width 34: "\x{4ECA}\x{65E5}"
 722 RenderText {#text} at (1028,206) size 49x464
 723 text run at (1028,206) width 258: "\x{306F}\x{3053}\x{3046}\x{601D}\x{3046}\x{3066}\x{3044}\x{308B}\x{3002}\x{2015}\x{2015}\x{559C}\x{3073}\x{306E}\x{6DF1}\x{304D}"
 724 text run at (1059,0) width 33: "\x{3068}\x{304D}"
725725 RenderRuby (inline) {RUBY} at (0,0) size 18x33
726  RenderRubyRun (anonymous) at (1017,33) size 18x33
727  RenderRubyText {RT} at (-13,0) size 13x33
 726 RenderRubyRun (anonymous) at (1056,33) size 24x33
 727 RenderRubyText {RT} at (-10,0) size 15x33
728728 RenderText {#text} at (0,0) size 13x33
729729 text run at (0,0) width 33: "\x{3046}\x{308C}\x{3044}"
730  RenderRubyBase (anonymous) at (0,0) size 18x33
 730 RenderRubyBase (anonymous) at (0,0) size 24x33
731731 RenderInline {RB} at (0,0) size 18x17
732  RenderText {#text} at (0,8) size 18x17
733  text run at (0,8) width 17: "\x{6182}"
734  RenderText {#text} at (1017,66) size 18x118
735  text run at (1017,66) width 118: "\x{3044}\x{3088}\x{3044}\x{3088}\x{6DF1}\x{304F}\x{3001}"
 732 RenderText {#text} at (3,8) size 18x17
 733 text run at (3,8) width 17: "\x{6182}"
 734 RenderText {#text} at (1059,66) size 18x118
 735 text run at (1059,66) width 118: "\x{3044}\x{3088}\x{3044}\x{3088}\x{6DF1}\x{304F}\x{3001}"
736736 RenderRuby (inline) {RUBY} at (0,0) size 18x33
737  RenderRubyRun (anonymous) at (1017,184) size 18x33
738  RenderRubyText {RT} at (-13,0) size 13x33
 737 RenderRubyRun (anonymous) at (1056,184) size 24x33
 738 RenderRubyText {RT} at (-10,0) size 15x33
739739 RenderText {#text} at (0,0) size 13x33
740740 text run at (0,0) width 33: "\x{305F}\x{306E}\x{3057}"
741  RenderRubyBase (anonymous) at (0,0) size 18x33
 741 RenderRubyBase (anonymous) at (0,0) size 24x33
742742 RenderInline {RB} at (0,0) size 18x17
743  RenderText {#text} at (0,8) size 18x17
744  text run at (0,8) width 17: "\x{697D}"
745  RenderText {#text} at (1017,217) size 49x475
746  text run at (1017,217) width 258: "\x{307F}\x{306E}\x{5927}\x{3044}\x{306A}\x{308B}\x{307B}\x{3069}\x{82E6}\x{3057}\x{307F}\x{3082}\x{5927}\x{304D}\x{3044}\x{3002}"
747  text run at (1048,0) width 291: "\x{3053}\x{308C}\x{3092}\x{5207}\x{308A}\x{653E}\x{305D}\x{3046}\x{3068}\x{3059}\x{308B}\x{3068}\x{8EAB}\x{304C}\x{6301}\x{3066}\x{306C}\x{3002}"
 743 RenderText {#text} at (3,8) size 18x17
 744 text run at (3,8) width 17: "\x{697D}"
 745 RenderText {#text} at (1059,217) size 49x475
 746 text run at (1059,217) width 258: "\x{307F}\x{306E}\x{5927}\x{3044}\x{306A}\x{308B}\x{307B}\x{3069}\x{82E6}\x{3057}\x{307F}\x{3082}\x{5927}\x{304D}\x{3044}\x{3002}"
 747 text run at (1090,0) width 291: "\x{3053}\x{308C}\x{3092}\x{5207}\x{308A}\x{653E}\x{305D}\x{3046}\x{3068}\x{3059}\x{308B}\x{3068}\x{8EAB}\x{304C}\x{6301}\x{3066}\x{306C}\x{3002}"
748748 RenderRuby (inline) {RUBY} at (0,0) size 18x22
749  RenderRubyRun (anonymous) at (1048,291) size 18x22
750  RenderRubyText {RT} at (-13,0) size 13x22
 749 RenderRubyRun (anonymous) at (1087,291) size 24x22
 750 RenderRubyText {RT} at (-10,0) size 15x22
751751 RenderText {#text} at (0,0) size 13x22
752752 text run at (0,0) width 22: "\x{304B}\x{305F}"
753  RenderRubyBase (anonymous) at (0,0) size 18x22
 753 RenderRubyBase (anonymous) at (0,0) size 24x22
754754 RenderInline {RB} at (0,0) size 18x17
755  RenderText {#text} at (0,2) size 18x17
756  text run at (0,2) width 17: "\x{7247}"
757  RenderText {#text} at (1048,313) size 49x459
758  text run at (1048,313) width 146: "\x{3065}\x{3051}\x{3088}\x{3046}\x{3068}\x{3059}\x{308C}\x{3070}\x{4E16}"
759  text run at (1079,0) width 274: "\x{304C}\x{7ACB}\x{305F}\x{306C}\x{3002}\x{91D1}\x{306F}\x{5927}\x{4E8B}\x{3060}\x{3001}\x{5927}\x{4E8B}\x{306A}\x{3082}\x{306E}\x{304C}"
 755 RenderText {#text} at (3,2) size 18x17
 756 text run at (3,2) width 17: "\x{7247}"
 757 RenderText {#text} at (1090,313) size 49x459
 758 text run at (1090,313) width 146: "\x{3065}\x{3051}\x{3088}\x{3046}\x{3068}\x{3059}\x{308C}\x{3070}\x{4E16}"
 759 text run at (1121,0) width 274: "\x{304C}\x{7ACB}\x{305F}\x{306C}\x{3002}\x{91D1}\x{306F}\x{5927}\x{4E8B}\x{3060}\x{3001}\x{5927}\x{4E8B}\x{306A}\x{3082}\x{306E}\x{304C}"
760760 RenderRuby (inline) {RUBY} at (0,0) size 18x17
761  RenderRubyRun (anonymous) at (1079,274) size 18x17
762  RenderRubyText {RT} at (-13,0) size 13x17
 761 RenderRubyRun (anonymous) at (1118,274) size 24x17
 762 RenderRubyText {RT} at (-10,0) size 15x17
763763 RenderText {#text} at (0,3) size 13x11
764764 text run at (0,3) width 11: "\x{3075}"
765  RenderRubyBase (anonymous) at (0,0) size 18x17
 765 RenderRubyBase (anonymous) at (0,0) size 24x17
766766 RenderInline {RB} at (0,0) size 18x17
767  RenderText {#text} at (0,0) size 18x17
768  text run at (0,0) width 17: "\x{6B96}"
769  RenderText {#text} at (1079,291) size 18x51
770  text run at (1079,291) width 51: "\x{3048}\x{308C}\x{3070}"
 767 RenderText {#text} at (3,0) size 18x17
 768 text run at (3,0) width 17: "\x{6B96}"
 769 RenderText {#text} at (1121,291) size 18x51
 770 text run at (1121,291) width 51: "\x{3048}\x{308C}\x{3070}"
771771 RenderRuby (inline) {RUBY} at (0,0) size 18x17
772  RenderRubyRun (anonymous) at (1079,342) size 18x17
773  RenderRubyText {RT} at (-13,0) size 13x17
 772 RenderRubyRun (anonymous) at (1118,342) size 24x17
 773 RenderRubyText {RT} at (-10,0) size 15x17
774774 RenderText {#text} at (0,3) size 13x11
775775 text run at (0,3) width 11: "\x{306D}"
776  RenderRubyBase (anonymous) at (0,0) size 18x17
 776 RenderRubyBase (anonymous) at (0,0) size 24x17
777777 RenderInline {RB} at (0,0) size 18x17
778  RenderText {#text} at (0,0) size 18x17
779  text run at (0,0) width 17: "\x{5BDD}"
780  RenderText {#text} at (1079,359) size 18x17
781  text run at (1079,359) width 17: "\x{308B}"
 778 RenderText {#text} at (3,0) size 18x17
 779 text run at (3,0) width 17: "\x{5BDD}"
 780 RenderText {#text} at (1121,359) size 18x17
 781 text run at (1121,359) width 17: "\x{308B}"
782782 RenderRuby (inline) {RUBY} at (0,0) size 18x17
783  RenderRubyRun (anonymous) at (1079,376) size 18x17
784  RenderRubyText {RT} at (-13,0) size 13x17
 783 RenderRubyRun (anonymous) at (1118,376) size 24x17
 784 RenderRubyText {RT} at (-10,0) size 15x17
785785 RenderText {#text} at (0,3) size 13x11
786786 text run at (0,3) width 11: "\x{307E}"
787  RenderRubyBase (anonymous) at (0,0) size 18x17
 787 RenderRubyBase (anonymous) at (0,0) size 24x17
788788 RenderInline {RB} at (0,0) size 18x17
789  RenderText {#text} at (0,0) size 18x17
790  text run at (0,0) width 17: "\x{9593}"
791  RenderText {#text} at (1079,393) size 67x474
792  text run at (1079,393) width 81: "\x{3082}\x{5FC3}\x{914D}\x{3060}\x{308D}"
793  text run at (1097,0) width 468: "\x{3046}\x{3002}\x{604B}\x{306F}\x{3046}\x{308C}\x{3057}\x{3044}\x{3001}\x{5B09}\x{3057}\x{3044}\x{604B}\x{304C}\x{7A4D}\x{3082}\x{308C}\x{3070}\x{3001}\x{604B}\x{3092}\x{305B}\x{306C}\x{6614}\x{304C}\x{304B}\x{3048}\x{3063}\x{3066}"
794  text run at (1128,0) width 274: "\x{604B}\x{3057}\x{304B}\x{308D}\x{3002}\x{95A3}\x{50DA}\x{306E}\x{80A9}\x{306F}\x{6570}\x{767E}\x{4E07}\x{4EBA}\x{306E}\x{8DB3}\x{3092}"
 789 RenderText {#text} at (3,0) size 18x17
 790 text run at (3,0) width 17: "\x{9593}"
 791 RenderText {#text} at (1121,393) size 73x474
 792 text run at (1121,393) width 81: "\x{3082}\x{5FC3}\x{914D}\x{3060}\x{308D}"
 793 text run at (1145,0) width 468: "\x{3046}\x{3002}\x{604B}\x{306F}\x{3046}\x{308C}\x{3057}\x{3044}\x{3001}\x{5B09}\x{3057}\x{3044}\x{604B}\x{304C}\x{7A4D}\x{3082}\x{308C}\x{3070}\x{3001}\x{604B}\x{3092}\x{305B}\x{306C}\x{6614}\x{304C}\x{304B}\x{3048}\x{3063}\x{3066}"
 794 text run at (1176,0) width 274: "\x{604B}\x{3057}\x{304B}\x{308D}\x{3002}\x{95A3}\x{50DA}\x{306E}\x{80A9}\x{306F}\x{6570}\x{767E}\x{4E07}\x{4EBA}\x{306E}\x{8DB3}\x{3092}"
795795 RenderRuby (inline) {RUBY} at (0,0) size 18x22
796  RenderRubyRun (anonymous) at (1128,274) size 18x22
797  RenderRubyText {RT} at (-13,0) size 13x22
 796 RenderRubyRun (anonymous) at (1173,274) size 24x22
 797 RenderRubyText {RT} at (-10,0) size 15x22
798798 RenderText {#text} at (0,0) size 13x22
799799 text run at (0,0) width 22: "\x{3055}\x{3055}"
800  RenderRubyBase (anonymous) at (0,0) size 18x22
 800 RenderRubyBase (anonymous) at (0,0) size 24x22
801801 RenderInline {RB} at (0,0) size 18x17
802  RenderText {#text} at (0,2) size 18x17
803  text run at (0,2) width 17: "\x{652F}"
804  RenderText {#text} at (1128,296) size 18x84
805  text run at (1128,296) width 84: "\x{3048}\x{3066}\x{3044}\x{308B}\x{3002}"
 802 RenderText {#text} at (3,2) size 18x17
 803 text run at (3,2) width 17: "\x{652F}"
 804 RenderText {#text} at (1176,296) size 18x84
 805 text run at (1176,296) width 84: "\x{3048}\x{3066}\x{3044}\x{308B}\x{3002}"
806806 RenderRuby (inline) {RUBY} at (0,0) size 18x34
807  RenderRubyRun (anonymous) at (1128,380) size 18x34
808  RenderRubyText {RT} at (-13,0) size 13x34
 807 RenderRubyRun (anonymous) at (1173,380) size 24x34
 808 RenderRubyText {RT} at (-10,0) size 15x34
809809 RenderText {#text} at (0,0) size 13x33
810810 text run at (0,0) width 33: "\x{305B}\x{306A}\x{304B}"
811  RenderRubyBase (anonymous) at (0,0) size 18x34
 811 RenderRubyBase (anonymous) at (0,0) size 24x34
812812 RenderInline {RB} at (0,0) size 18x34
813  RenderText {#text} at (0,0) size 18x34
814  text run at (0,0) width 34: "\x{80CC}\x{4E2D}"
815  RenderText {#text} at (1128,414) size 67x468
816  text run at (1128,414) width 49: "\x{306B}\x{306F}\x{91CD}"
817  text run at (1146,0) width 468: "\x{3044}\x{5929}\x{4E0B}\x{304C}\x{304A}\x{3076}\x{3055}\x{3063}\x{3066}\x{3044}\x{308B}\x{3002}\x{3046}\x{307E}\x{3044}\x{7269}\x{3082}\x{98DF}\x{308F}\x{306D}\x{3070}\x{60DC}\x{3057}\x{3044}\x{3002}\x{5C11}\x{3057}\x{98DF}\x{3048}"
818  text run at (1177,0) width 17: "\x{3070}"
 813 RenderText {#text} at (3,0) size 18x34
 814 text run at (3,0) width 34: "\x{80CC}\x{4E2D}"
 815 RenderText {#text} at (1176,414) size 73x468
 816 text run at (1176,414) width 49: "\x{306B}\x{306F}\x{91CD}"
 817 text run at (1200,0) width 468: "\x{3044}\x{5929}\x{4E0B}\x{304C}\x{304A}\x{3076}\x{3055}\x{3063}\x{3066}\x{3044}\x{308B}\x{3002}\x{3046}\x{307E}\x{3044}\x{7269}\x{3082}\x{98DF}\x{308F}\x{306D}\x{3070}\x{60DC}\x{3057}\x{3044}\x{3002}\x{5C11}\x{3057}\x{98DF}\x{3048}"
 818 text run at (1231,0) width 17: "\x{3070}"
819819 RenderRuby (inline) {RUBY} at (0,0) size 18x17
820  RenderRubyRun (anonymous) at (1177,17) size 18x17
821  RenderRubyText {RT} at (-13,0) size 13x17
 820 RenderRubyRun (anonymous) at (1228,17) size 24x17
 821 RenderRubyText {RT} at (-10,0) size 15x17
822822 RenderText {#text} at (0,3) size 13x11
823823 text run at (0,3) width 11: "\x{3042}"
824  RenderRubyBase (anonymous) at (0,0) size 18x17
 824 RenderRubyBase (anonymous) at (0,0) size 24x17
825825 RenderInline {RB} at (0,0) size 18x17
826  RenderText {#text} at (0,0) size 18x17
827  text run at (0,0) width 17: "\x{98FD}"
828  RenderText {#text} at (1177,34) size 18x17
829  text run at (1177,34) width 17: "\x{304D}"
 826 RenderText {#text} at (3,0) size 18x17
 827 text run at (3,0) width 17: "\x{98FD}"
 828 RenderText {#text} at (1231,34) size 18x17
 829 text run at (1231,34) width 17: "\x{304D}"
830830 RenderRuby (inline) {RUBY} at (0,0) size 18x17
831  RenderRubyRun (anonymous) at (1177,51) size 18x17
832  RenderRubyText {RT} at (-13,0) size 13x17
 831 RenderRubyRun (anonymous) at (1228,51) size 24x17
 832 RenderRubyText {RT} at (-10,0) size 15x17
833833 RenderText {#text} at (0,3) size 13x11
834834 text run at (0,3) width 11: "\x{305F}"
835  RenderRubyBase (anonymous) at (0,0) size 18x17
 835 RenderRubyBase (anonymous) at (0,0) size 24x17
836836 RenderInline {RB} at (0,0) size 18x17
837  RenderText {#text} at (0,0) size 18x17
838  text run at (0,0) width 17: "\x{8DB3}"
839  RenderText {#text} at (1177,68) size 18x302
840  text run at (1177,68) width 302: "\x{3089}\x{306C}\x{3002}\x{5B58}\x{5206}\x{98DF}\x{3048}\x{3070}\x{3042}\x{3068}\x{304C}\x{4E0D}\x{6109}\x{5FEB}\x{3060}\x{3002}\x{2026}\x{2026}"
841  RenderBR {BR} at (1177,370) size 18x0
842  RenderText {#text} at (1208,0) size 18x17
843  text run at (1208,0) width 17: "\x{3000}"
 837 RenderText {#text} at (3,0) size 18x17
 838 text run at (3,0) width 17: "\x{8DB3}"
 839 RenderText {#text} at (1231,68) size 18x302
 840 text run at (1231,68) width 302: "\x{3089}\x{306C}\x{3002}\x{5B58}\x{5206}\x{98DF}\x{3048}\x{3070}\x{3042}\x{3068}\x{304C}\x{4E0D}\x{6109}\x{5FEB}\x{3060}\x{3002}\x{2026}\x{2026}"
 841 RenderBR {BR} at (1231,370) size 18x0
 842 RenderText {#text} at (1262,0) size 18x17
 843 text run at (1262,0) width 17: "\x{3000}"
844844 RenderRuby (inline) {RUBY} at (0,0) size 18x17
845  RenderRubyRun (anonymous) at (1208,17) size 18x17
846  RenderRubyText {RT} at (-13,0) size 13x17
 845 RenderRubyRun (anonymous) at (1259,17) size 24x17
 846 RenderRubyText {RT} at (-10,0) size 15x17
847847 RenderText {#text} at (0,3) size 13x11
848848 text run at (0,3) width 11: "\x{3088}"
849  RenderRubyBase (anonymous) at (0,0) size 18x17
 849 RenderRubyBase (anonymous) at (0,0) size 24x17
850850 RenderInline {RB} at (0,0) size 18x17
851  RenderText {#text} at (0,0) size 18x17
852  text run at (0,0) width 17: "\x{4F59}"
853  RenderText {#text} at (1208,34) size 18x17
854  text run at (1208,34) width 17: "\x{306E}"
 851 RenderText {#text} at (3,0) size 18x17
 852 text run at (3,0) width 17: "\x{4F59}"
 853 RenderText {#text} at (1262,34) size 18x17
 854 text run at (1262,34) width 17: "\x{306E}"
855855 RenderRuby (inline) {RUBY} at (0,0) size 18x44
856  RenderRubyRun (anonymous) at (1208,51) size 18x44
857  RenderRubyText {RT} at (-13,0) size 13x44
 856 RenderRubyRun (anonymous) at (1259,51) size 24x44
 857 RenderRubyText {RT} at (-10,0) size 15x44
858858 RenderText {#text} at (0,0) size 13x44
859859 text run at (0,0) width 44: "\x{304B}\x{3093}\x{304C}\x{3048}"
860  RenderRubyBase (anonymous) at (0,0) size 18x44
 860 RenderRubyBase (anonymous) at (0,0) size 24x44
861861 RenderInline {RB} at (0,0) size 18x17
862  RenderText {#text} at (0,13) size 18x17
863  text run at (0,13) width 17: "\x{8003}"
864  RenderText {#text} at (1208,95) size 18x271
865  text run at (1208,95) width 271: "\x{304C}\x{3053}\x{3053}\x{307E}\x{3067}\x{6F02}\x{6D41}\x{3057}\x{3066}\x{6765}\x{305F}\x{6642}\x{306B}\x{3001}\x{4F59}\x{306E}"
 862 RenderText {#text} at (3,13) size 18x17
 863 text run at (3,13) width 17: "\x{8003}"
 864 RenderText {#text} at (1262,95) size 18x271
 865 text run at (1262,95) width 271: "\x{304C}\x{3053}\x{3053}\x{307E}\x{3067}\x{6F02}\x{6D41}\x{3057}\x{3066}\x{6765}\x{305F}\x{6642}\x{306B}\x{3001}\x{4F59}\x{306E}"
866866 RenderRuby (inline) {RUBY} at (0,0) size 18x34
867  RenderRubyRun (anonymous) at (1208,366) size 18x34
868  RenderRubyText {RT} at (-13,0) size 13x34
 867 RenderRubyRun (anonymous) at (1259,366) size 24x34
 868 RenderRubyText {RT} at (-10,0) size 15x34
869869 RenderText {#text} at (0,0) size 13x33
870870 text run at (0,0) width 33: "\x{3046}\x{305D}\x{304F}"
871  RenderRubyBase (anonymous) at (0,0) size 18x34
 871 RenderRubyBase (anonymous) at (0,0) size 24x34
872872 RenderInline {RB} at (0,0) size 18x34
873  RenderText {#text} at (0,0) size 18x34
874  text run at (0,0) width 34: "\x{53F3}\x{8DB3}"
875  RenderText {#text} at (1208,400) size 18x51
876  text run at (1208,400) width 51: "\x{306F}\x{7A81}\x{7136}"
 873 RenderText {#text} at (3,0) size 18x34
 874 text run at (3,0) width 34: "\x{53F3}\x{8DB3}"
 875 RenderText {#text} at (1262,400) size 18x51
 876 text run at (1262,400) width 51: "\x{306F}\x{7A81}\x{7136}"
877877 RenderRuby (inline) {RUBY} at (0,0) size 18x22
878  RenderRubyRun (anonymous) at (1208,451) size 18x22
879  RenderRubyText {RT} at (-13,0) size 13x22
 878 RenderRubyRun (anonymous) at (1259,451) size 24x22
 879 RenderRubyText {RT} at (-10,0) size 15x22
880880 RenderText {#text} at (0,0) size 13x22
881881 text run at (0,0) width 22: "\x{3059}\x{308F}"
882  RenderRubyBase (anonymous) at (0,0) size 18x22
 882 RenderRubyBase (anonymous) at (0,0) size 24x22
883883 RenderInline {RB} at (0,0) size 18x17
884  RenderText {#text} at (0,2) size 18x17
885  text run at (0,2) width 17: "\x{5750}"
886  RenderText {#text} at (1208,473) size 49x490
887  text run at (1208,473) width 17: "\x{308A}"
888  text run at (1239,0) width 65: "\x{306E}\x{308F}\x{308B}\x{3044}"
 884 RenderText {#text} at (3,2) size 18x17
 885 text run at (3,2) width 17: "\x{5750}"
 886 RenderText {#text} at (1262,473) size 49x490
 887 text run at (1262,473) width 17: "\x{308A}"
 888 text run at (1293,0) width 65: "\x{306E}\x{308F}\x{308B}\x{3044}"
889889 RenderRuby (inline) {RUBY} at (0,0) size 18x44
890  RenderRubyRun (anonymous) at (1239,65) size 18x44
891  RenderRubyText {RT} at (-13,0) size 13x44
 890 RenderRubyRun (anonymous) at (1290,65) size 24x44
 891 RenderRubyText {RT} at (-10,0) size 15x44
892892 RenderText {#text} at (0,0) size 13x44
893893 text run at (0,0) width 44: "\x{304B}\x{304F}\x{3044}\x{3057}"
894  RenderRubyBase (anonymous) at (0,0) size 18x44
 894 RenderRubyBase (anonymous) at (0,0) size 24x44
895895 RenderInline {RB} at (0,0) size 18x34
896  RenderText {#text} at (0,5) size 18x34
897  text run at (0,5) width 34: "\x{89D2}\x{77F3}"
898  RenderText {#text} at (1239,109) size 18x17
899  text run at (1239,109) width 17: "\x{306E}"
 896 RenderText {#text} at (3,5) size 18x34
 897 text run at (3,5) width 34: "\x{89D2}\x{77F3}"
 898 RenderText {#text} at (1293,109) size 18x17
 899 text run at (1293,109) width 17: "\x{306E}"
900900 RenderRuby (inline) {RUBY} at (0,0) size 18x22
901  RenderRubyRun (anonymous) at (1239,126) size 18x22
902  RenderRubyText {RT} at (-13,0) size 13x22
 901 RenderRubyRun (anonymous) at (1290,126) size 24x22
 902 RenderRubyText {RT} at (-10,0) size 15x22
903903 RenderText {#text} at (0,0) size 13x22
904904 text run at (0,0) width 22: "\x{306F}\x{3057}"
905  RenderRubyBase (anonymous) at (0,0) size 18x22
 905 RenderRubyBase (anonymous) at (0,0) size 24x22
906906 RenderInline {RB} at (0,0) size 18x17
907  RenderText {#text} at (0,2) size 18x17
908  text run at (0,2) width 17: "\x{7AEF}"
909  RenderText {#text} at (1239,148) size 18x51
910  text run at (1239,148) width 51: "\x{3092}\x{8E0F}\x{307F}"
 907 RenderText {#text} at (3,2) size 18x17
 908 text run at (3,2) width 17: "\x{7AEF}"
 909 RenderText {#text} at (1293,148) size 18x51
 910 text run at (1293,148) width 51: "\x{3092}\x{8E0F}\x{307F}"
911911 RenderRuby (inline) {RUBY} at (0,0) size 18x17
912  RenderRubyRun (anonymous) at (1239,199) size 18x17
913  RenderRubyText {RT} at (-13,0) size 13x17
 912 RenderRubyRun (anonymous) at (1290,199) size 24x17
 913 RenderRubyText {RT} at (-10,0) size 15x17
914914 RenderText {#text} at (0,3) size 13x11
915915 text run at (0,3) width 11: "\x{305D}"
916  RenderRubyBase (anonymous) at (0,0) size 18x17
 916 RenderRubyBase (anonymous) at (0,0) size 24x17
917917 RenderInline {RB} at (0,0) size 18x17
918  RenderText {#text} at (0,0) size 18x17
919  text run at (0,0) width 17: "\x{640D}"
920  RenderText {#text} at (1239,216) size 18x83
921  text run at (1239,216) width 83: "\x{304F}\x{306A}\x{3063}\x{305F}\x{3002}"
 918 RenderText {#text} at (3,0) size 18x17
 919 text run at (3,0) width 17: "\x{640D}"
 920 RenderText {#text} at (1293,216) size 18x83
 921 text run at (1293,216) width 83: "\x{304F}\x{306A}\x{3063}\x{305F}\x{3002}"
922922 RenderRuby (inline) {RUBY} at (0,0) size 18x44
923  RenderRubyRun (anonymous) at (1239,299) size 18x44
924  RenderRubyText {RT} at (-13,0) size 13x44
 923 RenderRubyRun (anonymous) at (1290,299) size 24x44
 924 RenderRubyText {RT} at (-10,0) size 15x44
925925 RenderText {#text} at (0,0) size 13x44
926926 text run at (0,0) width 44: "\x{3078}\x{3044}\x{3053}\x{3046}"
927  RenderRubyBase (anonymous) at (0,0) size 18x44
 927 RenderRubyBase (anonymous) at (0,0) size 24x44
928928 RenderInline {RB} at (0,0) size 18x34
929  RenderText {#text} at (0,5) size 18x34
930  text run at (0,5) width 34: "\x{5E73}\x{8861}"
931  RenderText {#text} at (1239,343) size 49x472
932  text run at (1239,343) width 129: "\x{3092}\x{4FDD}\x{3064}\x{305F}\x{3081}\x{306B}\x{3001}\x{3059}"
933  text run at (1270,0) width 162: "\x{308F}\x{3084}\x{3068}\x{524D}\x{306B}\x{98DB}\x{3073}\x{51FA}\x{3057}\x{305F}"
 929 RenderText {#text} at (3,5) size 18x34
 930 text run at (3,5) width 34: "\x{5E73}\x{8861}"
 931 RenderText {#text} at (1293,343) size 49x472
 932 text run at (1293,343) width 129: "\x{3092}\x{4FDD}\x{3064}\x{305F}\x{3081}\x{306B}\x{3001}\x{3059}"
 933 text run at (1324,0) width 162: "\x{308F}\x{3084}\x{3068}\x{524D}\x{306B}\x{98DB}\x{3073}\x{51FA}\x{3057}\x{305F}"
934934 RenderRuby (inline) {RUBY} at (0,0) size 18x34
935  RenderRubyRun (anonymous) at (1270,162) size 18x34
936  RenderRubyText {RT} at (-13,0) size 13x34
 935 RenderRubyRun (anonymous) at (1321,162) size 24x34
 936 RenderRubyText {RT} at (-10,0) size 15x34
937937 RenderText {#text} at (0,0) size 13x33
938938 text run at (0,0) width 33: "\x{3055}\x{305D}\x{304F}"
939  RenderRubyBase (anonymous) at (0,0) size 18x34
 939 RenderRubyBase (anonymous) at (0,0) size 24x34
940940 RenderInline {RB} at (0,0) size 18x34
941  RenderText {#text} at (0,0) size 18x34
942  text run at (0,0) width 34: "\x{5DE6}\x{8DB3}"
943  RenderText {#text} at (1270,196) size 18x33
944  text run at (1270,196) width 33: "\x{304C}\x{3001}"
 941 RenderText {#text} at (3,0) size 18x34
 942 text run at (3,0) width 34: "\x{5DE6}\x{8DB3}"
 943 RenderText {#text} at (1324,196) size 18x33
 944 text run at (1324,196) width 33: "\x{304C}\x{3001}"
945945 RenderRuby (inline) {RUBY} at (0,0) size 18x34
946  RenderRubyRun (anonymous) at (1270,229) size 18x34
947  RenderRubyText {RT} at (-13,0) size 13x34
 946 RenderRubyRun (anonymous) at (1321,229) size 24x34
 947 RenderRubyText {RT} at (-10,0) size 15x34
948948 RenderText {#text} at (0,0) size 13x33
949949 text run at (0,0) width 33: "\x{3057}\x{305D}\x{3093}"
950  RenderRubyBase (anonymous) at (0,0) size 18x34
 950 RenderRubyBase (anonymous) at (0,0) size 24x34
951951 RenderInline {RB} at (0,0) size 18x34
952  RenderText {#text} at (0,0) size 18x34
953  text run at (0,0) width 34: "\x{4ED5}\x{640D}"
954  RenderText {#text} at (1270,263) size 18x34
955  text run at (1270,263) width 34: "\x{3058}\x{306E}"
 952 RenderText {#text} at (3,0) size 18x34
 953 text run at (3,0) width 34: "\x{4ED5}\x{640D}"
 954 RenderText {#text} at (1324,263) size 18x34
 955 text run at (1324,263) width 34: "\x{3058}\x{306E}"
956956 RenderRuby (inline) {RUBY} at (0,0) size 18x17
957  RenderRubyRun (anonymous) at (1270,297) size 18x17
958  RenderRubyText {RT} at (-13,0) size 13x17
 957 RenderRubyRun (anonymous) at (1321,297) size 24x17
 958 RenderRubyText {RT} at (-10,0) size 15x17
959959 RenderText {#text} at (0,3) size 13x11
960960 text run at (0,3) width 11: "\x{3046}"
961  RenderRubyBase (anonymous) at (0,0) size 18x17
 961 RenderRubyBase (anonymous) at (0,0) size 24x17
962962 RenderInline {RB} at (0,0) size 18x17
963  RenderText {#text} at (0,0) size 18x17
964  text run at (0,0) width 17: "\x{57CB}"
965  RenderText {#text} at (1270,314) size 18x17
966  text run at (1270,314) width 17: "\x{3081}"
 963 RenderText {#text} at (3,0) size 18x17
 964 text run at (3,0) width 17: "\x{57CB}"
 965 RenderText {#text} at (1324,314) size 18x17
 966 text run at (1324,314) width 17: "\x{3081}"
967967 RenderRuby (inline) {RUBY} at (0,0) size 18x22
968  RenderRubyRun (anonymous) at (1270,331) size 18x22
969  RenderRubyText {RT} at (-13,0) size 13x22
 968 RenderRubyRun (anonymous) at (1321,331) size 24x22
 969 RenderRubyText {RT} at (-10,0) size 15x22
970970 RenderText {#text} at (0,0) size 13x22
971971 text run at (0,0) width 22: "\x{3042}\x{308F}"
972  RenderRubyBase (anonymous) at (0,0) size 18x22
 972 RenderRubyBase (anonymous) at (0,0) size 24x22
973973 RenderInline {RB} at (0,0) size 18x17
974  RenderText {#text} at (0,2) size 18x17
975  text run at (0,2) width 17: "\x{5408}"
976  RenderText {#text} at (1270,353) size 49x450
977  text run at (1270,353) width 97: "\x{305B}\x{3092}\x{3059}\x{308B}\x{3068}\x{5171}"
978  text run at (1301,0) width 162: "\x{306B}\x{3001}\x{4F59}\x{306E}\x{8170}\x{306F}\x{5177}\x{5408}\x{3088}\x{304F}"
 974 RenderText {#text} at (3,2) size 18x17
 975 text run at (3,2) width 17: "\x{5408}"
 976 RenderText {#text} at (1324,353) size 49x450
 977 text run at (1324,353) width 97: "\x{305B}\x{3092}\x{3059}\x{308B}\x{3068}\x{5171}"
 978 text run at (1355,0) width 162: "\x{306B}\x{3001}\x{4F59}\x{306E}\x{8170}\x{306F}\x{5177}\x{5408}\x{3088}\x{304F}"
979979 RenderRuby (inline) {RUBY} at (0,0) size 18x22
980  RenderRubyRun (anonymous) at (1301,162) size 18x22
981  RenderRubyText {RT} at (-13,0) size 13x22
 980 RenderRubyRun (anonymous) at (1352,162) size 24x22
 981 RenderRubyText {RT} at (-10,0) size 15x22
982982 RenderText {#text} at (0,0) size 13x22
983983 text run at (0,0) width 22: "\x{307B}\x{3046}"
984  RenderRubyBase (anonymous) at (0,0) size 18x22
 984 RenderRubyBase (anonymous) at (0,0) size 24x22
985985 RenderInline {RB} at (0,0) size 18x17
986  RenderText {#text} at (0,2) size 18x17
987  text run at (0,2) width 17: "\x{65B9}"
988  RenderText {#text} at (1301,184) size 18x153
989  text run at (1301,184) width 153: "\x{4E09}\x{5C3A}\x{307B}\x{3069}\x{306A}\x{5CA9}\x{306E}\x{4E0A}\x{306B}"
 986 RenderText {#text} at (3,2) size 18x17
 987 text run at (3,2) width 17: "\x{65B9}"
 988 RenderText {#text} at (1355,184) size 18x153
 989 text run at (1355,184) width 153: "\x{4E09}\x{5C3A}\x{307B}\x{3069}\x{306A}\x{5CA9}\x{306E}\x{4E0A}\x{306B}"
990990 RenderRuby (inline) {RUBY} at (0,0) size 18x17
991  RenderRubyRun (anonymous) at (1301,337) size 18x17
992  RenderRubyText {RT} at (-13,0) size 13x17
 991 RenderRubyRun (anonymous) at (1352,337) size 24x17
 992 RenderRubyText {RT} at (-10,0) size 15x17
993993 RenderText {#text} at (0,3) size 13x11
994994 text run at (0,3) width 11: "\x{304A}"
995  RenderRubyBase (anonymous) at (0,0) size 18x17
 995 RenderRubyBase (anonymous) at (0,0) size 24x17
996996 RenderInline {RB} at (0,0) size 18x17
997  RenderText {#text} at (0,0) size 18x17
998  text run at (0,0) width 17: "\x{5378}"
999  RenderText {#text} at (1301,354) size 49x467
1000  text run at (1301,354) width 113: "\x{308A}\x{305F}\x{3002}\x{80A9}\x{306B}\x{304B}\x{3051}"
1001  text run at (1332,0) width 97: "\x{305F}\x{7D75}\x{306E}\x{5177}\x{7BB1}\x{304C}"
 997 RenderText {#text} at (3,0) size 18x17
 998 text run at (3,0) width 17: "\x{5378}"
 999 RenderText {#text} at (1355,354) size 49x467
 1000 text run at (1355,354) width 113: "\x{308A}\x{305F}\x{3002}\x{80A9}\x{306B}\x{304B}\x{3051}"
 1001 text run at (1386,0) width 97: "\x{305F}\x{7D75}\x{306E}\x{5177}\x{7BB1}\x{304C}"
10021002 RenderRuby (inline) {RUBY} at (0,0) size 18x22
1003  RenderRubyRun (anonymous) at (1332,97) size 18x22
1004  RenderRubyText {RT} at (-13,0) size 13x22
 1003 RenderRubyRun (anonymous) at (1383,97) size 24x22
 1004 RenderRubyText {RT} at (-10,0) size 15x22
10051005 RenderText {#text} at (0,0) size 13x22
10061006 text run at (0,0) width 22: "\x{308F}\x{304D}"
1007  RenderRubyBase (anonymous) at (0,0) size 18x22
 1007 RenderRubyBase (anonymous) at (0,0) size 24x22
10081008 RenderInline {RB} at (0,0) size 18x17
1009  RenderText {#text} at (0,2) size 18x17
1010  text run at (0,2) width 17: "\x{814B}"
1011  RenderText {#text} at (1332,119) size 18x68
1012  text run at (1332,119) width 68: "\x{306E}\x{4E0B}\x{304B}\x{3089}"
 1009 RenderText {#text} at (3,2) size 18x17
 1010 text run at (3,2) width 17: "\x{814B}"
 1011 RenderText {#text} at (1386,119) size 18x68
 1012 text run at (1386,119) width 68: "\x{306E}\x{4E0B}\x{304B}\x{3089}"
10131013 RenderRuby (inline) {RUBY} at (0,0) size 18x22
1014  RenderRubyRun (anonymous) at (1332,187) size 18x22
1015  RenderRubyText {RT} at (-13,0) size 13x22
 1014 RenderRubyRun (anonymous) at (1383,187) size 24x22
 1015 RenderRubyText {RT} at (-10,0) size 15x22
10161016 RenderText {#text} at (0,0) size 13x22
10171017 text run at (0,0) width 22: "\x{304A}\x{3069}"
1018  RenderRubyBase (anonymous) at (0,0) size 18x22
 1018 RenderRubyBase (anonymous) at (0,0) size 24x22
10191019 RenderInline {RB} at (0,0) size 18x17
1020  RenderText {#text} at (0,2) size 18x17
1021  text run at (0,2) width 17: "\x{8E8D}"
1022  RenderText {#text} at (1332,209) size 18x186
1023  text run at (1332,209) width 186: "\x{308A}\x{51FA}\x{3057}\x{305F}\x{3060}\x{3051}\x{3067}\x{3001}\x{5E78}\x{3044}\x{3068}"
 1020 RenderText {#text} at (3,2) size 18x17
 1021 text run at (3,2) width 17: "\x{8E8D}"
 1022 RenderText {#text} at (1386,209) size 18x186
 1023 text run at (1386,209) width 186: "\x{308A}\x{51FA}\x{3057}\x{305F}\x{3060}\x{3051}\x{3067}\x{3001}\x{5E78}\x{3044}\x{3068}"
10241024 RenderRuby (inline) {RUBY} at (0,0) size 18x22
1025  RenderRubyRun (anonymous) at (1332,395) size 18x22
1026  RenderRubyText {RT} at (-13,0) size 13x22
 1025 RenderRubyRun (anonymous) at (1383,395) size 24x22
 1026 RenderRubyText {RT} at (-10,0) size 15x22
10271027 RenderText {#text} at (0,0) size 13x22
10281028 text run at (0,0) width 22: "\x{306A}\x{3093}"
1029  RenderRubyBase (anonymous) at (0,0) size 18x22
 1029 RenderRubyBase (anonymous) at (0,0) size 24x22
10301030 RenderInline {RB} at (0,0) size 18x17
1031  RenderText {#text} at (0,2) size 18x17
1032  text run at (0,2) width 17: "\x{4F55}"
1033  RenderText {#text} at (1332,417) size 36x482
1034  text run at (1332,417) width 65: "\x{306E}\x{4E8B}\x{3082}\x{306A}"
1035  text run at (1350,0) width 65: "\x{304B}\x{3063}\x{305F}\x{3002}"
1036  RenderBR {BR} at (1350,65) size 18x0
1037  RenderText {#text} at (1381,0) size 18x242
1038  text run at (1381,0) width 242: "\x{3000}\x{7ACB}\x{3061}\x{4E0A}\x{304C}\x{308B}\x{6642}\x{306B}\x{5411}\x{3046}\x{3092}\x{898B}\x{308B}\x{3068}\x{3001}"
 1031 RenderText {#text} at (3,2) size 18x17
 1032 text run at (3,2) width 17: "\x{4F55}"
 1033 RenderText {#text} at (1386,417) size 42x482
 1034 text run at (1386,417) width 65: "\x{306E}\x{4E8B}\x{3082}\x{306A}"
 1035 text run at (1410,0) width 65: "\x{304B}\x{3063}\x{305F}\x{3002}"
 1036 RenderBR {BR} at (1410,65) size 18x0
 1037 RenderText {#text} at (1441,0) size 18x242
 1038 text run at (1441,0) width 242: "\x{3000}\x{7ACB}\x{3061}\x{4E0A}\x{304C}\x{308B}\x{6642}\x{306B}\x{5411}\x{3046}\x{3092}\x{898B}\x{308B}\x{3068}\x{3001}"
10391039 RenderRuby (inline) {RUBY} at (0,0) size 18x22
1040  RenderRubyRun (anonymous) at (1381,242) size 18x22
1041  RenderRubyText {RT} at (-13,0) size 13x22
 1040 RenderRubyRun (anonymous) at (1438,242) size 24x22
 1041 RenderRubyText {RT} at (-10,0) size 15x22
10421042 RenderText {#text} at (0,0) size 13x22
10431043 text run at (0,0) width 22: "\x{307F}\x{3061}"
1044  RenderRubyBase (anonymous) at (0,0) size 18x22
 1044 RenderRubyBase (anonymous) at (0,0) size 24x22
10451045 RenderInline {RB} at (0,0) size 18x17
1046  RenderText {#text} at (0,2) size 18x17
1047  text run at (0,2) width 17: "\x{8DEF}"
1048  RenderText {#text} at (1381,264) size 49x458
1049  text run at (1381,264) width 194: "\x{304B}\x{3089}\x{5DE6}\x{306E}\x{65B9}\x{306B}\x{30D0}\x{30B1}\x{30C4}\x{3092}\x{4F0F}\x{305B}"
1050  text run at (1412,0) width 97: "\x{305F}\x{3088}\x{3046}\x{306A}\x{5CF0}\x{304C}"
 1046 RenderText {#text} at (3,2) size 18x17
 1047 text run at (3,2) width 17: "\x{8DEF}"
 1048 RenderText {#text} at (1441,264) size 49x458
 1049 text run at (1441,264) width 194: "\x{304B}\x{3089}\x{5DE6}\x{306E}\x{65B9}\x{306B}\x{30D0}\x{30B1}\x{30C4}\x{3092}\x{4F0F}\x{305B}"
 1050 text run at (1472,0) width 97: "\x{305F}\x{3088}\x{3046}\x{306A}\x{5CF0}\x{304C}"
10511051 RenderRuby (inline) {RUBY} at (0,0) size 18x22
1052  RenderRubyRun (anonymous) at (1412,97) size 18x22
1053  RenderRubyText {RT} at (-13,0) size 13x22
 1052 RenderRubyRun (anonymous) at (1469,97) size 24x22
 1053 RenderRubyText {RT} at (-10,0) size 15x22
10541054 RenderText {#text} at (0,0) size 13x22
10551055 text run at (0,0) width 22: "\x{305D}\x{3073}"
1056  RenderRubyBase (anonymous) at (0,0) size 18x22
 1056 RenderRubyBase (anonymous) at (0,0) size 24x22
10571057 RenderInline {RB} at (0,0) size 18x17
1058  RenderText {#text} at (0,2) size 18x17
1059  text run at (0,2) width 17: "\x{8073}"
1060  RenderText {#text} at (1412,119) size 18x118
1061  text run at (1412,119) width 118: "\x{3048}\x{3066}\x{3044}\x{308B}\x{3002}\x{6749}\x{304B}"
 1058 RenderText {#text} at (3,2) size 18x17
 1059 text run at (3,2) width 17: "\x{8073}"
 1060 RenderText {#text} at (1472,119) size 18x118
 1061 text run at (1472,119) width 118: "\x{3048}\x{3066}\x{3044}\x{308B}\x{3002}\x{6749}\x{304B}"
10621062 RenderRuby (inline) {RUBY} at (0,0) size 18x33
1063  RenderRubyRun (anonymous) at (1412,237) size 18x33
1064  RenderRubyText {RT} at (-13,0) size 13x33
 1063 RenderRubyRun (anonymous) at (1469,237) size 24x33
 1064 RenderRubyText {RT} at (-10,0) size 15x33
10651065 RenderText {#text} at (0,0) size 13x33
10661066 text run at (0,0) width 33: "\x{3072}\x{306E}\x{304D}"
1067  RenderRubyBase (anonymous) at (0,0) size 18x33
 1067 RenderRubyBase (anonymous) at (0,0) size 24x33
10681068 RenderInline {RB} at (0,0) size 18x17
1069  RenderText {#text} at (0,8) size 18x17
1070  text run at (0,8) width 17: "\x{6A9C}"
1071  RenderText {#text} at (1412,270) size 18x119
1072  text run at (1412,270) width 119: "\x{304B}\x{5206}\x{304B}\x{3089}\x{306A}\x{3044}\x{304C}"
 1069 RenderText {#text} at (3,8) size 18x17
 1070 text run at (3,8) width 17: "\x{6A9C}"
 1071 RenderText {#text} at (1472,270) size 18x119
 1072 text run at (1472,270) width 119: "\x{304B}\x{5206}\x{304B}\x{3089}\x{306A}\x{3044}\x{304C}"
10731073 RenderRuby (inline) {RUBY} at (0,0) size 18x34
1074  RenderRubyRun (anonymous) at (1412,389) size 18x34
1075  RenderRubyText {RT} at (-13,0) size 13x34
 1074 RenderRubyRun (anonymous) at (1469,389) size 24x34
 1075 RenderRubyText {RT} at (-10,0) size 15x34
10761076 RenderText {#text} at (0,0) size 13x33
10771077 text run at (0,0) width 33: "\x{306D}\x{3082}\x{3068}"
1078  RenderRubyBase (anonymous) at (0,0) size 18x34
 1078 RenderRubyBase (anonymous) at (0,0) size 24x34
10791079 RenderInline {RB} at (0,0) size 18x34
1080  RenderText {#text} at (0,0) size 18x34
1081  text run at (0,0) width 34: "\x{6839}\x{5143}"
1082  RenderText {#text} at (1412,423) size 18x34
1083  text run at (1412,423) width 34: "\x{304B}\x{3089}"
 1080 RenderText {#text} at (3,0) size 18x34
 1081 text run at (3,0) width 34: "\x{6839}\x{5143}"
 1082 RenderText {#text} at (1472,423) size 18x34
 1083 text run at (1472,423) width 34: "\x{304B}\x{3089}"
10841084 RenderRuby (inline) {RUBY} at (0,0) size 18x33
1085  RenderRubyRun (anonymous) at (1443,0) size 18x33
1086  RenderRubyText {RT} at (-13,0) size 13x33
 1085 RenderRubyRun (anonymous) at (1500,0) size 24x33
 1086 RenderRubyText {RT} at (-10,0) size 15x33
10871087 RenderText {#text} at (0,0) size 13x33
10881088 text run at (0,0) width 33: "\x{3044}\x{305F}\x{3060}"
1089  RenderRubyBase (anonymous) at (0,0) size 18x33
 1089 RenderRubyBase (anonymous) at (0,0) size 24x33
10901090 RenderInline {RB} at (0,0) size 18x17
1091  RenderText {#text} at (0,8) size 18x17
1092  text run at (0,8) width 17: "\x{9802}"
1093  RenderText {#text} at (1443,33) size 18x136
1094  text run at (1443,33) width 136: "\x{304D}\x{307E}\x{3067}\x{3053}\x{3068}\x{3054}\x{3068}\x{304F}"
 1091 RenderText {#text} at (3,8) size 18x17
 1092 text run at (3,8) width 17: "\x{9802}"
 1093 RenderText {#text} at (1503,33) size 18x136
 1094 text run at (1503,33) width 136: "\x{304D}\x{307E}\x{3067}\x{3053}\x{3068}\x{3054}\x{3068}\x{304F}"
10951095 RenderRuby (inline) {RUBY} at (0,0) size 18x44
1096  RenderRubyRun (anonymous) at (1443,169) size 18x44
1097  RenderRubyText {RT} at (-13,0) size 13x44
 1096 RenderRubyRun (anonymous) at (1500,169) size 24x44
 1097 RenderRubyText {RT} at (-10,0) size 15x44
10981098 RenderText {#text} at (0,0) size 13x44
10991099 text run at (0,0) width 44: "\x{3042}\x{304A}\x{3050}\x{308D}"
1100  RenderRubyBase (anonymous) at (0,0) size 18x44
 1100 RenderRubyBase (anonymous) at (0,0) size 24x44
11011101 RenderInline {RB} at (0,0) size 18x34
1102  RenderText {#text} at (0,5) size 18x34
1103  text run at (0,5) width 34: "\x{84BC}\x{9ED2}"
1104  RenderText {#text} at (1443,213) size 18x254
1105  text run at (1443,213) width 254: "\x{3044}\x{4E2D}\x{306B}\x{3001}\x{5C71}\x{685C}\x{304C}\x{8584}\x{8D64}\x{304F}\x{3060}\x{3093}\x{3060}\x{3089}\x{306B}"
 1102 RenderText {#text} at (3,5) size 18x34
 1103 text run at (3,5) width 34: "\x{84BC}\x{9ED2}"
 1104 RenderText {#text} at (1503,213) size 18x254
 1105 text run at (1503,213) width 254: "\x{3044}\x{4E2D}\x{306B}\x{3001}\x{5C71}\x{685C}\x{304C}\x{8584}\x{8D64}\x{304F}\x{3060}\x{3093}\x{3060}\x{3089}\x{306B}"
11061106 RenderRuby (inline) {RUBY} at (0,0) size 18x34
1107  RenderRubyRun (anonymous) at (1474,0) size 18x34
1108  RenderRubyText {RT} at (-13,0) size 13x34
 1107 RenderRubyRun (anonymous) at (1531,0) size 24x34
 1108 RenderRubyText {RT} at (-10,0) size 15x34
11091109 RenderText {#text} at (0,0) size 13x33
11101110 text run at (0,0) width 33: "\x{305F}\x{306A}\x{3073}"
1111  RenderRubyBase (anonymous) at (0,0) size 18x34
 1111 RenderRubyBase (anonymous) at (0,0) size 24x34
11121112 RenderInline {RB} at (0,0) size 18x34
1113  RenderText {#text} at (0,0) size 18x34
1114  text run at (0,0) width 34: "\x{68DA}\x{5F15}"
1115  RenderText {#text} at (1474,34) size 18x50
1116  text run at (1474,34) width 50: "\x{3044}\x{3066}\x{3001}"
 1113 RenderText {#text} at (3,0) size 18x34
 1114 text run at (3,0) width 34: "\x{68DA}\x{5F15}"
 1115 RenderText {#text} at (1534,34) size 18x50
 1116 text run at (1534,34) width 50: "\x{3044}\x{3066}\x{3001}"
11171117 RenderRuby (inline) {RUBY} at (0,0) size 18x17
1118  RenderRubyRun (anonymous) at (1474,84) size 18x17
1119  RenderRubyText {RT} at (-13,0) size 13x17
 1118 RenderRubyRun (anonymous) at (1531,84) size 24x17
 1119 RenderRubyText {RT} at (-10,0) size 15x17
11201120 RenderText {#text} at (0,3) size 13x11
11211121 text run at (0,3) width 11: "\x{3064}"
1122  RenderRubyBase (anonymous) at (0,0) size 18x17
 1122 RenderRubyBase (anonymous) at (0,0) size 24x17
11231123 RenderInline {RB} at (0,0) size 18x17
1124  RenderText {#text} at (0,0) size 18x17
1125  text run at (0,0) width 17: "\x{7D9A}"
1126  RenderText {#text} at (1474,101) size 18x17
1127  text run at (1474,101) width 17: "\x{304E}"
 1124 RenderText {#text} at (3,0) size 18x17
 1125 text run at (3,0) width 17: "\x{7D9A}"
 1126 RenderText {#text} at (1534,101) size 18x17
 1127 text run at (1534,101) width 17: "\x{304E}"
11281128 RenderRuby (inline) {RUBY} at (0,0) size 18x17
1129  RenderRubyRun (anonymous) at (1474,118) size 18x17
1130  RenderRubyText {RT} at (-13,0) size 13x17
 1129 RenderRubyRun (anonymous) at (1531,118) size 24x17
 1130 RenderRubyText {RT} at (-10,0) size 15x17
11311131 RenderText {#text} at (0,3) size 13x11
11321132 text run at (0,3) width 11: "\x{3081}"
1133  RenderRubyBase (anonymous) at (0,0) size 18x17
 1133 RenderRubyBase (anonymous) at (0,0) size 24x17
11341134 RenderInline {RB} at (0,0) size 18x17
1135  RenderText {#text} at (0,0) size 18x17
1136  text run at (0,0) width 17: "\x{76EE}"
1137  RenderText {#text} at (1474,135) size 18x17
1138  text run at (1474,135) width 17: "\x{304C}"
 1135 RenderText {#text} at (3,0) size 18x17
 1136 text run at (3,0) width 17: "\x{76EE}"
 1137 RenderText {#text} at (1534,135) size 18x17
 1138 text run at (1534,135) width 17: "\x{304C}"
11391139 RenderRuby (inline) {RUBY} at (0,0) size 18x22
1140  RenderRubyRun (anonymous) at (1474,152) size 18x22
1141  RenderRubyText {RT} at (-13,0) size 13x22
 1140 RenderRubyRun (anonymous) at (1531,152) size 24x22
 1141 RenderRubyText {RT} at (-10,0) size 15x22
11421142 RenderText {#text} at (0,0) size 13x22
11431143 text run at (0,0) width 22: "\x{3057}\x{304B}"
1144  RenderRubyBase (anonymous) at (0,0) size 18x22
 1144 RenderRubyBase (anonymous) at (0,0) size 24x22
11451145 RenderInline {RB} at (0,0) size 18x17
1146  RenderText {#text} at (0,2) size 18x17
1147  text run at (0,2) width 17: "\x{78BA}"
1148  RenderText {#text} at (1474,174) size 18x119
1149  text run at (1474,174) width 119: "\x{3068}\x{898B}\x{3048}\x{306C}\x{304F}\x{3089}\x{3044}"
 1146 RenderText {#text} at (3,2) size 18x17
 1147 text run at (3,2) width 17: "\x{78BA}"
 1148 RenderText {#text} at (1534,174) size 18x119
 1149 text run at (1534,174) width 119: "\x{3068}\x{898B}\x{3048}\x{306C}\x{304F}\x{3089}\x{3044}"
11501150 RenderRuby (inline) {RUBY} at (0,0) size 18x22
1151  RenderRubyRun (anonymous) at (1474,293) size 18x22
1152  RenderRubyText {RT} at (-13,0) size 13x22
 1151 RenderRubyRun (anonymous) at (1531,293) size 24x22
 1152 RenderRubyText {RT} at (-10,0) size 15x22
11531153 RenderText {#text} at (0,0) size 13x22
11541154 text run at (0,0) width 22: "\x{3082}\x{3084}"
1155  RenderRubyBase (anonymous) at (0,0) size 18x22
 1155 RenderRubyBase (anonymous) at (0,0) size 24x22
11561156 RenderInline {RB} at (0,0) size 18x17
1157  RenderText {#text} at (0,2) size 18x17
1158  text run at (0,2) width 17: "\x{9744}"
1159  RenderText {#text} at (1474,315) size 18x152
1160  text run at (1474,315) width 152: "\x{304C}\x{6FC3}\x{3044}\x{3002}\x{5C11}\x{3057}\x{624B}\x{524D}\x{306B}"
 1157 RenderText {#text} at (3,2) size 18x17
 1158 text run at (3,2) width 17: "\x{9744}"
 1159 RenderText {#text} at (1534,315) size 18x152
 1160 text run at (1534,315) width 152: "\x{304C}\x{6FC3}\x{3044}\x{3002}\x{5C11}\x{3057}\x{624B}\x{524D}\x{306B}"
11611161 RenderRuby (inline) {RUBY} at (0,0) size 18x44
1162  RenderRubyRun (anonymous) at (1505,0) size 18x44
1163  RenderRubyText {RT} at (-13,0) size 13x44
 1162 RenderRubyRun (anonymous) at (1562,0) size 24x44
 1163 RenderRubyText {RT} at (-10,0) size 15x44
11641164 RenderText {#text} at (0,0) size 13x44
11651165 text run at (0,0) width 44: "\x{306F}\x{3052}\x{3084}\x{307E}"
1166  RenderRubyBase (anonymous) at (0,0) size 18x44
 1166 RenderRubyBase (anonymous) at (0,0) size 24x44
11671167 RenderInline {RB} at (0,0) size 18x34
1168  RenderText {#text} at (0,5) size 18x34
1169  text run at (0,5) width 34: "\x{79BF}\x{5C71}"
1170  RenderText {#text} at (1505,44) size 18x67
1171  text run at (1505,44) width 67: "\x{304C}\x{4E00}\x{3064}\x{3001}"
 1168 RenderText {#text} at (3,5) size 18x34
 1169 text run at (3,5) width 34: "\x{79BF}\x{5C71}"
 1170 RenderText {#text} at (1565,44) size 18x67
 1171 text run at (1565,44) width 67: "\x{304C}\x{4E00}\x{3064}\x{3001}"
11721172 RenderRuby (inline) {RUBY} at (0,0) size 18x22
1173  RenderRubyRun (anonymous) at (1505,111) size 18x22
1174  RenderRubyText {RT} at (-13,0) size 13x22
 1173 RenderRubyRun (anonymous) at (1562,111) size 24x22
 1174 RenderRubyText {RT} at (-10,0) size 15x22
11751175 RenderText {#text} at (0,0) size 13x22
11761176 text run at (0,0) width 22: "\x{3050}\x{3093}"
1177  RenderRubyBase (anonymous) at (0,0) size 18x22
 1177 RenderRubyBase (anonymous) at (0,0) size 24x22
11781178 RenderInline {RB} at (0,0) size 18x17
1179  RenderText {#text} at (0,2) size 18x17
1180  text run at (0,2) width 17: "\x{7FA4}"
1181  RenderText {#text} at (1505,133) size 18x102
1182  text run at (1505,133) width 102: "\x{3092}\x{306C}\x{304D}\x{3093}\x{3067}\x{3066}"
 1179 RenderText {#text} at (3,2) size 18x17
 1180 text run at (3,2) width 17: "\x{7FA4}"
 1181 RenderText {#text} at (1565,133) size 18x102
 1182 text run at (1565,133) width 102: "\x{3092}\x{306C}\x{304D}\x{3093}\x{3067}\x{3066}"
11831183 RenderRuby (inline) {RUBY} at (0,0) size 18x22
1184  RenderRubyRun (anonymous) at (1505,235) size 18x22
1185  RenderRubyText {RT} at (-13,0) size 13x22
 1184 RenderRubyRun (anonymous) at (1562,235) size 24x22
 1185 RenderRubyText {RT} at (-10,0) size 15x22
11861186 RenderText {#text} at (0,0) size 13x22
11871187 text run at (0,0) width 22: "\x{307E}\x{3086}"
1188  RenderRubyBase (anonymous) at (0,0) size 18x22
 1188 RenderRubyBase (anonymous) at (0,0) size 24x22
11891189 RenderInline {RB} at (0,0) size 18x17
1190  RenderText {#text} at (0,2) size 18x17
1191  text run at (0,2) width 17: "\x{7709}"
1192  RenderText {#text} at (1505,257) size 18x17
1193  text run at (1505,257) width 17: "\x{306B}"
 1190 RenderText {#text} at (3,2) size 18x17
 1191 text run at (3,2) width 17: "\x{7709}"
 1192 RenderText {#text} at (1565,257) size 18x17
 1193 text run at (1565,257) width 17: "\x{306B}"
11941194 RenderRuby (inline) {RUBY} at (0,0) size 18x22
1195  RenderRubyRun (anonymous) at (1505,274) size 18x22
1196  RenderRubyText {RT} at (-13,0) size 13x22
 1195 RenderRubyRun (anonymous) at (1562,274) size 24x22
 1196 RenderRubyText {RT} at (-10,0) size 15x22
11971197 RenderText {#text} at (0,0) size 13x22
11981198 text run at (0,0) width 22: "\x{305B}\x{307E}"
1199  RenderRubyBase (anonymous) at (0,0) size 18x22
 1199 RenderRubyBase (anonymous) at (0,0) size 24x22
12001200 RenderInline {RB} at (0,0) size 18x17
1201  RenderText {#text} at (0,2) size 18x17
1202  text run at (0,2) width 17: "\x{903C}"
1203  RenderText {#text} at (1505,296) size 18x33
1204  text run at (1505,296) width 33: "\x{308B}\x{3002}"
 1201 RenderText {#text} at (3,2) size 18x17
 1202 text run at (3,2) width 17: "\x{903C}"
 1203 RenderText {#text} at (1565,296) size 18x33
 1204 text run at (1565,296) width 33: "\x{308B}\x{3002}"
12051205 RenderRuby (inline) {RUBY} at (0,0) size 18x17
1206  RenderRubyRun (anonymous) at (1505,329) size 18x17
1207  RenderRubyText {RT} at (-13,0) size 13x17
 1206 RenderRubyRun (anonymous) at (1562,329) size 24x17
 1207 RenderRubyText {RT} at (-10,0) size 15x17
12081208 RenderText {#text} at (0,3) size 13x11
12091209 text run at (0,3) width 11: "\x{306F}"
1210  RenderRubyBase (anonymous) at (0,0) size 18x17
 1210 RenderRubyBase (anonymous) at (0,0) size 24x17
12111211 RenderInline {RB} at (0,0) size 18x17
1212  RenderText {#text} at (0,0) size 18x17
1213  text run at (0,0) width 17: "\x{79BF}"
1214  RenderText {#text} at (1505,346) size 18x136
1215  text run at (1505,346) width 136: "\x{3052}\x{305F}\x{5074}\x{9762}\x{306F}\x{5DE8}\x{4EBA}\x{306E}"
 1212 RenderText {#text} at (3,0) size 18x17
 1213 text run at (3,0) width 17: "\x{79BF}"
 1214 RenderText {#text} at (1565,346) size 18x136
 1215 text run at (1565,346) width 136: "\x{3052}\x{305F}\x{5074}\x{9762}\x{306F}\x{5DE8}\x{4EBA}\x{306E}"
12161216 RenderRuby (inline) {RUBY} at (0,0) size 18x22
1217  RenderRubyRun (anonymous) at (1536,0) size 18x22
1218  RenderRubyText {RT} at (-13,0) size 13x22
 1217 RenderRubyRun (anonymous) at (1593,0) size 24x22
 1218 RenderRubyText {RT} at (-10,0) size 15x22
12191219 RenderText {#text} at (0,0) size 13x22
12201220 text run at (0,0) width 22: "\x{304A}\x{306E}"
1221  RenderRubyBase (anonymous) at (0,0) size 18x22
 1221 RenderRubyBase (anonymous) at (0,0) size 24x22
12221222 RenderInline {RB} at (0,0) size 18x17
1223  RenderText {#text} at (0,2) size 18x17
1224  text run at (0,2) width 17: "\x{65A7}"
1225  RenderText {#text} at (1536,22) size 18x17
1226  text run at (1536,22) width 17: "\x{3067}"
 1223 RenderText {#text} at (3,2) size 18x17
 1224 text run at (3,2) width 17: "\x{65A7}"
 1225 RenderText {#text} at (1596,22) size 18x17
 1226 text run at (1596,22) width 17: "\x{3067}"
12271227 RenderRuby (inline) {RUBY} at (0,0) size 18x22
1228  RenderRubyRun (anonymous) at (1536,39) size 18x22
1229  RenderRubyText {RT} at (-13,0) size 13x22
 1228 RenderRubyRun (anonymous) at (1593,39) size 24x22
 1229 RenderRubyText {RT} at (-10,0) size 15x22
12301230 RenderText {#text} at (0,0) size 13x22
12311231 text run at (0,0) width 22: "\x{3051}\x{305A}"
1232  RenderRubyBase (anonymous) at (0,0) size 18x22
 1232 RenderRubyBase (anonymous) at (0,0) size 24x22
12331233 RenderInline {RB} at (0,0) size 18x17
1234  RenderText {#text} at (0,2) size 18x17
1235  text run at (0,2) width 17: "\x{524A}"
1236  RenderText {#text} at (1536,61) size 18x321
1237  text run at (1536,61) width 321: "\x{308A}\x{53BB}\x{3063}\x{305F}\x{304B}\x{3001}\x{92ED}\x{3069}\x{304D}\x{5E73}\x{9762}\x{3092}\x{3084}\x{3051}\x{306B}\x{8C37}\x{306E}\x{5E95}\x{306B}"
 1234 RenderText {#text} at (3,2) size 18x17
 1235 text run at (3,2) width 17: "\x{524A}"
 1236 RenderText {#text} at (1596,61) size 18x321
 1237 text run at (1596,61) width 321: "\x{308A}\x{53BB}\x{3063}\x{305F}\x{304B}\x{3001}\x{92ED}\x{3069}\x{304D}\x{5E73}\x{9762}\x{3092}\x{3084}\x{3051}\x{306B}\x{8C37}\x{306E}\x{5E95}\x{306B}"
12381238 RenderRuby (inline) {RUBY} at (0,0) size 18x22
1239  RenderRubyRun (anonymous) at (1536,382) size 18x22
1240  RenderRubyText {RT} at (-13,0) size 13x22
 1239 RenderRubyRun (anonymous) at (1593,382) size 24x22
 1240 RenderRubyText {RT} at (-10,0) size 15x22
12411241 RenderText {#text} at (0,0) size 13x22
12421242 text run at (0,0) width 22: "\x{3046}\x{305A}"
1243  RenderRubyBase (anonymous) at (0,0) size 18x22
 1243 RenderRubyBase (anonymous) at (0,0) size 24x22
12441244 RenderInline {RB} at (0,0) size 18x17
1245  RenderText {#text} at (0,2) size 18x17
1246  text run at (0,2) width 17: "\x{57CB}"
1247  RenderText {#text} at (1536,404) size 18x84
1248  text run at (1536,404) width 84: "\x{3081}\x{3066}\x{3044}\x{308B}\x{3002}"
 1245 RenderText {#text} at (3,2) size 18x17
 1246 text run at (3,2) width 17: "\x{57CB}"
 1247 RenderText {#text} at (1596,404) size 18x84
 1248 text run at (1596,404) width 84: "\x{3081}\x{3066}\x{3044}\x{308B}\x{3002}"
12491249 RenderRuby (inline) {RUBY} at (0,0) size 18x43
1250  RenderRubyRun (anonymous) at (1567,0) size 18x43
1251  RenderRubyText {RT} at (-13,0) size 13x43
 1250 RenderRubyRun (anonymous) at (1624,0) size 24x43
 1251 RenderRubyText {RT} at (-10,0) size 15x43
12521252 RenderText {#text} at (0,0) size 13x43
12531253 text run at (0,0) width 43: "\x{3066}\x{3063}\x{307A}\x{3093}"
1254  RenderRubyBase (anonymous) at (0,0) size 18x43
 1254 RenderRubyBase (anonymous) at (0,0) size 24x43
12551255 RenderInline {RB} at (0,0) size 18x34
1256  RenderText {#text} at (0,4) size 18x34
1257  text run at (0,4) width 34: "\x{5929}\x{8FBA}"
1258  RenderText {#text} at (1567,43) size 18x356
1259  text run at (1567,43) width 356: "\x{306B}\x{4E00}\x{672C}\x{898B}\x{3048}\x{308B}\x{306E}\x{306F}\x{8D64}\x{677E}\x{3060}\x{308D}\x{3046}\x{3002}\x{679D}\x{306E}\x{9593}\x{306E}\x{7A7A}\x{3055}\x{3048}"
 1256 RenderText {#text} at (3,4) size 18x34
 1257 text run at (3,4) width 34: "\x{5929}\x{8FBA}"
 1258 RenderText {#text} at (1627,43) size 18x356
 1259 text run at (1627,43) width 356: "\x{306B}\x{4E00}\x{672C}\x{898B}\x{3048}\x{308B}\x{306E}\x{306F}\x{8D64}\x{677E}\x{3060}\x{308D}\x{3046}\x{3002}\x{679D}\x{306E}\x{9593}\x{306E}\x{7A7A}\x{3055}\x{3048}"
12601260 RenderRuby (inline) {RUBY} at (0,0) size 18x43
1261  RenderRubyRun (anonymous) at (1567,399) size 18x43
1262  RenderRubyText {RT} at (-13,0) size 13x43
 1261 RenderRubyRun (anonymous) at (1624,399) size 24x43
 1262 RenderRubyText {RT} at (-10,0) size 15x43
12631263 RenderText {#text} at (0,0) size 13x43
12641264 text run at (0,0) width 43: "\x{306F}\x{3063}\x{304D}\x{308A}"
1265  RenderRubyBase (anonymous) at (0,0) size 18x43
 1265 RenderRubyBase (anonymous) at (0,0) size 24x43
12661266 RenderInline {RB} at (0,0) size 18x34
1267  RenderText {#text} at (0,4) size 18x34
1268  text run at (0,4) width 34: "\x{5224}\x{7136}"
1269  RenderText {#text} at (1567,442) size 49x491
1270  text run at (1567,442) width 49: "\x{3057}\x{3066}\x{3044}"
1271  text run at (1598,0) width 403: "\x{308B}\x{3002}\x{884C}\x{304F}\x{624B}\x{306F}\x{4E8C}\x{4E01}\x{307B}\x{3069}\x{3067}\x{5207}\x{308C}\x{3066}\x{3044}\x{308B}\x{304C}\x{3001}\x{9AD8}\x{3044}\x{6240}\x{304B}\x{3089}\x{8D64}\x{3044}"
 1267 RenderText {#text} at (3,4) size 18x34
 1268 text run at (3,4) width 34: "\x{5224}\x{7136}"
 1269 RenderText {#text} at (1627,442) size 49x491
 1270 text run at (1627,442) width 49: "\x{3057}\x{3066}\x{3044}"
 1271 text run at (1658,0) width 403: "\x{308B}\x{3002}\x{884C}\x{304F}\x{624B}\x{306F}\x{4E8C}\x{4E01}\x{307B}\x{3069}\x{3067}\x{5207}\x{308C}\x{3066}\x{3044}\x{308B}\x{304C}\x{3001}\x{9AD8}\x{3044}\x{6240}\x{304B}\x{3089}\x{8D64}\x{3044}"
12721272 RenderRuby (inline) {RUBY} at (0,0) size 18x34
1273  RenderRubyRun (anonymous) at (1598,403) size 18x34
1274  RenderRubyText {RT} at (-13,0) size 13x34
 1273 RenderRubyRun (anonymous) at (1655,403) size 24x34
 1274 RenderRubyText {RT} at (-10,0) size 15x34
12751275 RenderText {#text} at (0,1) size 13x32
12761276 text run at (0,1) width 32: "\x{3051}\x{3063}\x{3068}"
1277  RenderRubyBase (anonymous) at (0,0) size 18x34
 1277 RenderRubyBase (anonymous) at (0,0) size 24x34
12781278 RenderInline {RB} at (0,0) size 18x34
1279  RenderText {#text} at (0,0) size 18x34
1280  text run at (0,0) width 34: "\x{6BDB}\x{5E03}"
1281  RenderText {#text} at (1598,437) size 67x470
1282  text run at (1598,437) width 33: "\x{304C}\x{52D5}"
1283  text run at (1616,0) width 468: "\x{3044}\x{3066}\x{6765}\x{308B}\x{306E}\x{3092}\x{898B}\x{308B}\x{3068}\x{3001}\x{767B}\x{308C}\x{3070}\x{3042}\x{3059}\x{3053}\x{3078}\x{51FA}\x{308B}\x{306E}\x{3060}\x{308D}\x{3046}\x{3002}\x{8DEF}\x{306F}\x{3059}\x{3053}\x{3076}"
1284  text run at (1647,0) width 17: "\x{308B}"
 1279 RenderText {#text} at (3,0) size 18x34
 1280 text run at (3,0) width 34: "\x{6BDB}\x{5E03}"
 1281 RenderText {#text} at (1658,437) size 73x470
 1282 text run at (1658,437) width 33: "\x{304C}\x{52D5}"
 1283 text run at (1682,0) width 468: "\x{3044}\x{3066}\x{6765}\x{308B}\x{306E}\x{3092}\x{898B}\x{308B}\x{3068}\x{3001}\x{767B}\x{308C}\x{3070}\x{3042}\x{3059}\x{3053}\x{3078}\x{51FA}\x{308B}\x{306E}\x{3060}\x{308D}\x{3046}\x{3002}\x{8DEF}\x{306F}\x{3059}\x{3053}\x{3076}"
 1284 text run at (1713,0) width 17: "\x{308B}"
12851285 RenderRuby (inline) {RUBY} at (0,0) size 18x34
1286  RenderRubyRun (anonymous) at (1647,17) size 18x34
1287  RenderRubyText {RT} at (-13,0) size 13x34
 1286 RenderRubyRun (anonymous) at (1710,17) size 24x34
 1287 RenderRubyText {RT} at (-10,0) size 15x34
12881288 RenderText {#text} at (0,0) size 13x33
12891289 text run at (0,0) width 33: "\x{306A}\x{3093}\x{304E}"
1290  RenderRubyBase (anonymous) at (0,0) size 18x34
 1290 RenderRubyBase (anonymous) at (0,0) size 24x34
12911291 RenderInline {RB} at (0,0) size 18x34
1292  RenderText {#text} at (0,0) size 18x34
1293  text run at (0,0) width 34: "\x{96E3}\x{7FA9}"
1294  RenderText {#text} at (1647,51) size 18x33
1295  text run at (1647,51) width 33: "\x{3060}\x{3002}"
1296  RenderBR {BR} at (1647,84) size 18x0
1297  RenderText {#text} at (1678,0) size 18x210
1298  text run at (1678,0) width 210: "\x{3000}\x{571F}\x{3092}\x{306A}\x{3089}\x{3059}\x{3060}\x{3051}\x{306A}\x{3089}\x{3055}\x{307B}\x{3069}"
 1292 RenderText {#text} at (3,0) size 18x34
 1293 text run at (3,0) width 34: "\x{96E3}\x{7FA9}"
 1294 RenderText {#text} at (1713,51) size 18x33
 1295 text run at (1713,51) width 33: "\x{3060}\x{3002}"
 1296 RenderBR {BR} at (1713,84) size 18x0
 1297 RenderText {#text} at (1744,0) size 18x210
 1298 text run at (1744,0) width 210: "\x{3000}\x{571F}\x{3092}\x{306A}\x{3089}\x{3059}\x{3060}\x{3051}\x{306A}\x{3089}\x{3055}\x{307B}\x{3069}"
12991299 RenderRuby (inline) {RUBY} at (0,0) size 18x34
1300  RenderRubyRun (anonymous) at (1678,210) size 18x34
1301  RenderRubyText {RT} at (-13,0) size 13x34
 1300 RenderRubyRun (anonymous) at (1741,210) size 24x34
 1301 RenderRubyText {RT} at (-10,0) size 15x34
13021302 RenderText {#text} at (0,6) size 13x22
13031303 text run at (0,6) width 22: "\x{3066}\x{307E}"
1304  RenderRubyBase (anonymous) at (0,0) size 18x34
 1304 RenderRubyBase (anonymous) at (0,0) size 24x34
13051305 RenderInline {RB} at (0,0) size 18x34
1306  RenderText {#text} at (0,0) size 18x34
1307  text run at (0,0) width 34: "\x{624B}\x{9593}"
1308  RenderText {#text} at (1678,244) size 18x17
1309  text run at (1678,244) width 17: "\x{3082}"
 1306 RenderText {#text} at (3,0) size 18x34
 1307 text run at (3,0) width 34: "\x{624B}\x{9593}"
 1308 RenderText {#text} at (1744,244) size 18x17
 1309 text run at (1744,244) width 17: "\x{3082}"
13101310 RenderRuby (inline) {RUBY} at (0,0) size 18x17
1311  RenderRubyRun (anonymous) at (1678,261) size 18x17
1312  RenderRubyText {RT} at (-13,0) size 13x17
 1311 RenderRubyRun (anonymous) at (1741,261) size 24x17
 1312 RenderRubyText {RT} at (-10,0) size 15x17
13131313 RenderText {#text} at (0,3) size 13x11
13141314 text run at (0,3) width 11: "\x{3044}"
1315  RenderRubyBase (anonymous) at (0,0) size 18x17
 1315 RenderRubyBase (anonymous) at (0,0) size 24x17
13161316 RenderInline {RB} at (0,0) size 18x17
1317  RenderText {#text} at (0,0) size 18x17
1318  text run at (0,0) width 17: "\x{5165}"
1319  RenderText {#text} at (1678,278) size 49x472
1320  text run at (1678,278) width 194: "\x{308B}\x{307E}\x{3044}\x{304C}\x{3001}\x{571F}\x{306E}\x{4E2D}\x{306B}\x{306F}\x{5927}\x{304D}"
1321  text run at (1709,0) width 129: "\x{306A}\x{77F3}\x{304C}\x{3042}\x{308B}\x{3002}\x{571F}\x{306F}"
 1317 RenderText {#text} at (3,0) size 18x17
 1318 text run at (3,0) width 17: "\x{5165}"
 1319 RenderText {#text} at (1744,278) size 49x472
 1320 text run at (1744,278) width 194: "\x{308B}\x{307E}\x{3044}\x{304C}\x{3001}\x{571F}\x{306E}\x{4E2D}\x{306B}\x{306F}\x{5927}\x{304D}"
 1321 text run at (1775,0) width 129: "\x{306A}\x{77F3}\x{304C}\x{3042}\x{308B}\x{3002}\x{571F}\x{306F}"
13221322 RenderRuby (inline) {RUBY} at (0,0) size 18x22
1323  RenderRubyRun (anonymous) at (1709,129) size 18x22
1324  RenderRubyText {RT} at (-13,0) size 13x22
 1323 RenderRubyRun (anonymous) at (1772,129) size 24x22
 1324 RenderRubyText {RT} at (-10,0) size 15x22
13251325 RenderText {#text} at (0,0) size 13x22
13261326 text run at (0,0) width 22: "\x{305F}\x{3044}"
1327  RenderRubyBase (anonymous) at (0,0) size 18x22
 1327 RenderRubyBase (anonymous) at (0,0) size 24x22
13281328 RenderInline {RB} at (0,0) size 18x17
1329  RenderText {#text} at (0,2) size 18x17
1330  text run at (0,2) width 17: "\x{5E73}"
1331  RenderText {#text} at (1709,151) size 49x458
1332  text run at (1709,151) width 307: "\x{3089}\x{306B}\x{3057}\x{3066}\x{3082}\x{77F3}\x{306F}\x{5E73}\x{3089}\x{306B}\x{306A}\x{3089}\x{306C}\x{3002}\x{77F3}\x{306F}\x{5207}\x{308A}\x{7815}"
1333  text run at (1740,0) width 210: "\x{3044}\x{3066}\x{3082}\x{3001}\x{5CA9}\x{306F}\x{59CB}\x{672B}\x{304C}\x{3064}\x{304B}\x{306C}\x{3002}"
 1329 RenderText {#text} at (3,2) size 18x17
 1330 text run at (3,2) width 17: "\x{5E73}"
 1331 RenderText {#text} at (1775,151) size 49x458
 1332 text run at (1775,151) width 307: "\x{3089}\x{306B}\x{3057}\x{3066}\x{3082}\x{77F3}\x{306F}\x{5E73}\x{3089}\x{306B}\x{306A}\x{3089}\x{306C}\x{3002}\x{77F3}\x{306F}\x{5207}\x{308A}\x{7815}"
 1333 text run at (1806,0) width 210: "\x{3044}\x{3066}\x{3082}\x{3001}\x{5CA9}\x{306F}\x{59CB}\x{672B}\x{304C}\x{3064}\x{304B}\x{306C}\x{3002}"
13341334 RenderRuby (inline) {RUBY} at (0,0) size 18x44
1335  RenderRubyRun (anonymous) at (1740,210) size 18x44
1336  RenderRubyText {RT} at (-13,0) size 13x44
 1335 RenderRubyRun (anonymous) at (1803,210) size 24x44
 1336 RenderRubyText {RT} at (-10,0) size 15x44
13371337 RenderText {#text} at (0,0) size 13x44
13381338 text run at (0,0) width 44: "\x{307B}\x{308A}\x{304F}\x{305A}"
1339  RenderRubyBase (anonymous) at (0,0) size 18x44
 1339 RenderRubyBase (anonymous) at (0,0) size 24x44
13401340 RenderInline {RB} at (0,0) size 18x34
1341  RenderText {#text} at (0,5) size 18x34
1342  text run at (0,5) width 34: "\x{6398}\x{5D29}"
1343  RenderText {#text} at (1740,254) size 18x102
1344  text run at (1740,254) width 102: "\x{3057}\x{305F}\x{571F}\x{306E}\x{4E0A}\x{306B}"
 1341 RenderText {#text} at (3,5) size 18x34
 1342 text run at (3,5) width 34: "\x{6398}\x{5D29}"
 1343 RenderText {#text} at (1806,254) size 18x102
 1344 text run at (1806,254) width 102: "\x{3057}\x{305F}\x{571F}\x{306E}\x{4E0A}\x{306B}"
13451345 RenderRuby (inline) {RUBY} at (0,0) size 18x44
1346  RenderRubyRun (anonymous) at (1740,356) size 18x44
1347  RenderRubyText {RT} at (-13,0) size 13x44
 1346 RenderRubyRun (anonymous) at (1803,356) size 24x44
 1347 RenderRubyText {RT} at (-10,0) size 15x44
13481348 RenderText {#text} at (0,0) size 13x44
13491349 text run at (0,0) width 44: "\x{3086}\x{3046}\x{305C}\x{3093}"
1350  RenderRubyBase (anonymous) at (0,0) size 18x44
 1350 RenderRubyBase (anonymous) at (0,0) size 24x44
13511351 RenderInline {RB} at (0,0) size 18x34
1352  RenderText {#text} at (0,5) size 18x34
1353  text run at (0,5) width 34: "\x{60A0}\x{7136}"
1354  RenderText {#text} at (1740,400) size 18x17
1355  text run at (1740,400) width 17: "\x{3068}"
 1352 RenderText {#text} at (3,5) size 18x34
 1353 text run at (3,5) width 34: "\x{60A0}\x{7136}"
 1354 RenderText {#text} at (1806,400) size 18x17
 1355 text run at (1806,400) width 17: "\x{3068}"
13561356 RenderRuby (inline) {RUBY} at (0,0) size 18x33
1357  RenderRubyRun (anonymous) at (1740,417) size 18x33
1358  RenderRubyText {RT} at (-13,0) size 13x33
 1357 RenderRubyRun (anonymous) at (1803,417) size 24x33
 1358 RenderRubyText {RT} at (-10,0) size 15x33
13591359 RenderText {#text} at (0,0) size 13x33
13601360 text run at (0,0) width 33: "\x{305D}\x{3070}\x{3060}"
1361  RenderRubyBase (anonymous) at (0,0) size 18x33
 1361 RenderRubyBase (anonymous) at (0,0) size 24x33
13621362 RenderInline {RB} at (0,0) size 18x17
1363  RenderText {#text} at (0,8) size 18x17
1364  text run at (0,8) width 17: "\x{5CD9}"
1365  RenderText {#text} at (1740,450) size 49x467
1366  text run at (1740,450) width 17: "\x{3063}"
1367  text run at (1771,0) width 194: "\x{3066}\x{3001}\x{543E}\x{3089}\x{306E}\x{305F}\x{3081}\x{306B}\x{9053}\x{3092}\x{8B72}\x{308B}"
 1363 RenderText {#text} at (3,8) size 18x17
 1364 text run at (3,8) width 17: "\x{5CD9}"
 1365 RenderText {#text} at (1806,450) size 49x467
 1366 text run at (1806,450) width 17: "\x{3063}"
 1367 text run at (1837,0) width 194: "\x{3066}\x{3001}\x{543E}\x{3089}\x{306E}\x{305F}\x{3081}\x{306B}\x{9053}\x{3092}\x{8B72}\x{308B}"
13681368 RenderRuby (inline) {RUBY} at (0,0) size 18x34
1369  RenderRubyRun (anonymous) at (1771,194) size 18x34
1370  RenderRubyText {RT} at (-13,0) size 13x34
 1369 RenderRubyRun (anonymous) at (1834,194) size 24x34
 1370 RenderRubyText {RT} at (-10,0) size 15x34
13711371 RenderText {#text} at (0,0) size 13x33
13721372 text run at (0,0) width 33: "\x{3051}\x{3057}\x{304D}"
1373  RenderRubyBase (anonymous) at (0,0) size 18x34
 1373 RenderRubyBase (anonymous) at (0,0) size 24x34
13741374 RenderInline {RB} at (0,0) size 18x34
1375  RenderText {#text} at (0,0) size 18x34
1376  text run at (0,0) width 34: "\x{666F}\x{8272}"
1377  RenderText {#text} at (1771,228) size 49x470
1378  text run at (1771,228) width 242: "\x{306F}\x{306A}\x{3044}\x{3002}\x{5411}\x{3046}\x{3067}\x{805E}\x{304B}\x{306C}\x{4E0A}\x{306F}\x{4E57}\x{308A}\x{8D8A}"
1379  text run at (1802,0) width 210: "\x{3059}\x{304B}\x{3001}\x{5EFB}\x{3089}\x{306A}\x{3051}\x{308C}\x{3070}\x{306A}\x{3089}\x{3093}\x{3002}"
 1375 RenderText {#text} at (3,0) size 18x34
 1376 text run at (3,0) width 34: "\x{666F}\x{8272}"
 1377 RenderText {#text} at (1837,228) size 49x470
 1378 text run at (1837,228) width 242: "\x{306F}\x{306A}\x{3044}\x{3002}\x{5411}\x{3046}\x{3067}\x{805E}\x{304B}\x{306C}\x{4E0A}\x{306F}\x{4E57}\x{308A}\x{8D8A}"
 1379 text run at (1868,0) width 210: "\x{3059}\x{304B}\x{3001}\x{5EFB}\x{3089}\x{306A}\x{3051}\x{308C}\x{3070}\x{306A}\x{3089}\x{3093}\x{3002}"
13801380 RenderRuby (inline) {RUBY} at (0,0) size 18x22
1381  RenderRubyRun (anonymous) at (1802,210) size 18x22
1382  RenderRubyText {RT} at (-13,0) size 13x22
 1381 RenderRubyRun (anonymous) at (1865,210) size 24x22
 1382 RenderRubyText {RT} at (-10,0) size 15x22
13831383 RenderText {#text} at (0,0) size 13x22
13841384 text run at (0,0) width 22: "\x{3044}\x{308F}"
1385  RenderRubyBase (anonymous) at (0,0) size 18x22
 1385 RenderRubyBase (anonymous) at (0,0) size 24x22
13861386 RenderInline {RB} at (0,0) size 18x17
1387  RenderText {#text} at (0,2) size 18x17
1388  text run at (0,2) width 17: "\x{5DCC}"
1389  RenderText {#text} at (1802,232) size 18x119
1390  text run at (1802,232) width 119: "\x{306E}\x{306A}\x{3044}\x{6240}\x{3067}\x{3055}\x{3048}"
 1387 RenderText {#text} at (3,2) size 18x17
 1388 text run at (3,2) width 17: "\x{5DCC}"
 1389 RenderText {#text} at (1868,232) size 18x119
 1390 text run at (1868,232) width 119: "\x{306E}\x{306A}\x{3044}\x{6240}\x{3067}\x{3055}\x{3048}"
13911391 RenderRuby (inline) {RUBY} at (0,0) size 18x17
1392  RenderRubyRun (anonymous) at (1802,351) size 18x17
1393  RenderRubyText {RT} at (-13,0) size 13x17
 1392 RenderRubyRun (anonymous) at (1865,351) size 24x17
 1393 RenderRubyText {RT} at (-10,0) size 15x17
13941394 RenderText {#text} at (0,3) size 13x11
13951395 text run at (0,3) width 11: "\x{3042}"
1396  RenderRubyBase (anonymous) at (0,0) size 18x17
 1396 RenderRubyBase (anonymous) at (0,0) size 24x17
13971397 RenderInline {RB} at (0,0) size 18x17
1398  RenderText {#text} at (0,0) size 18x17
1399  text run at (0,0) width 17: "\x{6B69}"
1400  RenderText {#text} at (1802,368) size 49x465
1401  text run at (1802,368) width 97: "\x{308B}\x{304D}\x{3088}\x{304F}\x{306F}\x{306A}"
1402  text run at (1833,0) width 210: "\x{3044}\x{3002}\x{5DE6}\x{53F3}\x{304C}\x{9AD8}\x{304F}\x{3063}\x{3066}\x{3001}\x{4E2D}\x{5FC3}\x{304C}"
 1398 RenderText {#text} at (3,0) size 18x17
 1399 text run at (3,0) width 17: "\x{6B69}"
 1400 RenderText {#text} at (1868,368) size 49x465
 1401 text run at (1868,368) width 97: "\x{308B}\x{304D}\x{3088}\x{304F}\x{306F}\x{306A}"
 1402 text run at (1899,0) width 210: "\x{3044}\x{3002}\x{5DE6}\x{53F3}\x{304C}\x{9AD8}\x{304F}\x{3063}\x{3066}\x{3001}\x{4E2D}\x{5FC3}\x{304C}"
14031403 RenderRuby (inline) {RUBY} at (0,0) size 18x22
1404  RenderRubyRun (anonymous) at (1833,210) size 18x22
1405  RenderRubyText {RT} at (-13,0) size 13x22
 1404 RenderRubyRun (anonymous) at (1896,210) size 24x22
 1405 RenderRubyText {RT} at (-10,0) size 15x22
14061406 RenderText {#text} at (0,0) size 13x22
14071407 text run at (0,0) width 22: "\x{304F}\x{307C}"
1408  RenderRubyBase (anonymous) at (0,0) size 18x22
 1408 RenderRubyBase (anonymous) at (0,0) size 24x22
14091409 RenderInline {RB} at (0,0) size 18x17
1410  RenderText {#text} at (0,2) size 18x17
1411  text run at (0,2) width 17: "\x{7AAA}"
1412  RenderText {#text} at (1833,232) size 18x135
1413  text run at (1833,232) width 135: "\x{3093}\x{3067}\x{3001}\x{307E}\x{308B}\x{3067}\x{4E00}\x{9593}"
 1410 RenderText {#text} at (3,2) size 18x17
 1411 text run at (3,2) width 17: "\x{7AAA}"
 1412 RenderText {#text} at (1899,232) size 18x135
 1413 text run at (1899,232) width 135: "\x{3093}\x{3067}\x{3001}\x{307E}\x{308B}\x{3067}\x{4E00}\x{9593}"
14141414 RenderRuby (inline) {RUBY} at (0,0) size 18x22
1415  RenderRubyRun (anonymous) at (1833,367) size 18x22
1416  RenderRubyText {RT} at (-13,0) size 13x22
 1415 RenderRubyRun (anonymous) at (1896,367) size 24x22
 1416 RenderRubyText {RT} at (-10,0) size 15x22
14171417 RenderText {#text} at (0,0) size 13x22
14181418 text run at (0,0) width 22: "\x{306F}\x{3070}"
1419  RenderRubyBase (anonymous) at (0,0) size 18x22
 1419 RenderRubyBase (anonymous) at (0,0) size 24x22
14201420 RenderInline {RB} at (0,0) size 18x17
1421  RenderText {#text} at (0,2) size 18x17
1422  text run at (0,2) width 17: "\x{5E45}"
1423  RenderText {#text} at (1833,389) size 18x68
1424  text run at (1833,389) width 68: "\x{3092}\x{4E09}\x{89D2}\x{306B}"
 1421 RenderText {#text} at (3,2) size 18x17
 1422 text run at (3,2) width 17: "\x{5E45}"
 1423 RenderText {#text} at (1899,389) size 18x68
 1424 text run at (1899,389) width 68: "\x{3092}\x{4E09}\x{89D2}\x{306B}"
14251425 RenderRuby (inline) {RUBY} at (0,0) size 18x17
1426  RenderRubyRun (anonymous) at (1833,457) size 18x17
1427  RenderRubyText {RT} at (-13,0) size 13x17
 1426 RenderRubyRun (anonymous) at (1896,457) size 24x17
 1427 RenderRubyText {RT} at (-10,0) size 15x17
14281428 RenderText {#text} at (0,3) size 13x11
14291429 text run at (0,3) width 11: "\x{304F}"
1430  RenderRubyBase (anonymous) at (0,0) size 18x17
 1430 RenderRubyBase (anonymous) at (0,0) size 24x17
14311431 RenderInline {RB} at (0,0) size 18x17
1432  RenderText {#text} at (0,0) size 18x17
1433  text run at (0,0) width 17: "\x{7A7F}"
1434  RenderText {#text} at (1864,0) size 18x135
1435  text run at (1864,0) width 135: "\x{3063}\x{3066}\x{3001}\x{305D}\x{306E}\x{9802}\x{70B9}\x{304C}"
 1432 RenderText {#text} at (3,0) size 18x17
 1433 text run at (3,0) width 17: "\x{7A7F}"
 1434 RenderText {#text} at (1930,0) size 18x135
 1435 text run at (1930,0) width 135: "\x{3063}\x{3066}\x{3001}\x{305D}\x{306E}\x{9802}\x{70B9}\x{304C}"
14361436 RenderRuby (inline) {RUBY} at (0,0) size 18x44
1437  RenderRubyRun (anonymous) at (1864,135) size 18x44
1438  RenderRubyText {RT} at (-13,0) size 13x44
 1437 RenderRubyRun (anonymous) at (1927,135) size 24x44
 1438 RenderRubyText {RT} at (-10,0) size 15x44
14391439 RenderText {#text} at (0,0) size 13x44
14401440 text run at (0,0) width 44: "\x{307E}\x{3093}\x{306A}\x{304B}"
1441  RenderRubyBase (anonymous) at (0,0) size 18x44
 1441 RenderRubyBase (anonymous) at (0,0) size 24x44
14421442 RenderInline {RB} at (0,0) size 18x34
1443  RenderText {#text} at (0,5) size 18x34
1444  text run at (0,5) width 34: "\x{771F}\x{4E2D}"
1445  RenderText {#text} at (1864,179) size 18x17
1446  text run at (1864,179) width 17: "\x{3092}"
 1443 RenderText {#text} at (3,5) size 18x34
 1444 text run at (3,5) width 34: "\x{771F}\x{4E2D}"
 1445 RenderText {#text} at (1930,179) size 18x17
 1446 text run at (1930,179) width 17: "\x{3092}"
14471447 RenderRuby (inline) {RUBY} at (0,0) size 18x33
1448  RenderRubyRun (anonymous) at (1864,196) size 18x33
1449  RenderRubyText {RT} at (-13,0) size 13x33
 1448 RenderRubyRun (anonymous) at (1927,196) size 24x33
 1449 RenderRubyText {RT} at (-10,0) size 15x33
14501450 RenderText {#text} at (0,0) size 13x33
14511451 text run at (0,0) width 33: "\x{3064}\x{3089}\x{306C}"
1452  RenderRubyBase (anonymous) at (0,0) size 18x33
 1452 RenderRubyBase (anonymous) at (0,0) size 24x33
14531453 RenderInline {RB} at (0,0) size 18x17
1454  RenderText {#text} at (0,8) size 18x17
1455  text run at (0,8) width 17: "\x{8CAB}"
1456  RenderText {#text} at (1864,229) size 49x471
1457  text run at (1864,229) width 242: "\x{3044}\x{3066}\x{3044}\x{308B}\x{3068}\x{8A55}\x{3057}\x{3066}\x{3082}\x{3088}\x{3044}\x{3002}\x{8DEF}\x{3092}\x{884C}"
1458  text run at (1895,0) width 162: "\x{304F}\x{3068}\x{4E91}\x{308F}\x{3093}\x{3088}\x{308A}\x{5DDD}\x{5E95}\x{3092}"
 1454 RenderText {#text} at (3,8) size 18x17
 1455 text run at (3,8) width 17: "\x{8CAB}"
 1456 RenderText {#text} at (1930,229) size 49x471
 1457 text run at (1930,229) width 242: "\x{3044}\x{3066}\x{3044}\x{308B}\x{3068}\x{8A55}\x{3057}\x{3066}\x{3082}\x{3088}\x{3044}\x{3002}\x{8DEF}\x{3092}\x{884C}"
 1458 text run at (1961,0) width 162: "\x{304F}\x{3068}\x{4E91}\x{308F}\x{3093}\x{3088}\x{308A}\x{5DDD}\x{5E95}\x{3092}"
14591459 RenderRuby (inline) {RUBY} at (0,0) size 18x22
1460  RenderRubyRun (anonymous) at (1895,162) size 18x22
1461  RenderRubyText {RT} at (-13,0) size 13x22
 1460 RenderRubyRun (anonymous) at (1958,162) size 24x22
 1461 RenderRubyText {RT} at (-10,0) size 15x22
14621462 RenderText {#text} at (0,0) size 13x22
14631463 text run at (0,0) width 22: "\x{308F}\x{305F}"
1464  RenderRubyBase (anonymous) at (0,0) size 18x22
 1464 RenderRubyBase (anonymous) at (0,0) size 24x22
14651465 RenderInline {RB} at (0,0) size 18x17
1466  RenderText {#text} at (0,2) size 18x17
1467  text run at (0,2) width 17: "\x{6E09}"
1468  RenderText {#text} at (1895,184) size 18x169
1469  text run at (1895,184) width 169: "\x{308B}\x{3068}\x{4E91}\x{3046}\x{65B9}\x{304C}\x{9069}\x{5F53}\x{3060}\x{3002}"
 1466 RenderText {#text} at (3,2) size 18x17
 1467 text run at (3,2) width 17: "\x{6E09}"
 1468 RenderText {#text} at (1961,184) size 18x169
 1469 text run at (1961,184) width 169: "\x{308B}\x{3068}\x{4E91}\x{3046}\x{65B9}\x{304C}\x{9069}\x{5F53}\x{3060}\x{3002}"
14701470 RenderRuby (inline) {RUBY} at (0,0) size 18x22
1471  RenderRubyRun (anonymous) at (1895,353) size 18x22
1472  RenderRubyText {RT} at (-13,0) size 13x22
 1471 RenderRubyRun (anonymous) at (1958,353) size 24x22
 1472 RenderRubyText {RT} at (-10,0) size 15x22
14731473 RenderText {#text} at (0,0) size 13x22
14741474 text run at (0,0) width 22: "\x{3082}\x{3068}"
1475  RenderRubyBase (anonymous) at (0,0) size 18x22
 1475 RenderRubyBase (anonymous) at (0,0) size 24x22
14761476 RenderInline {RB} at (0,0) size 18x17
1477  RenderText {#text} at (0,2) size 18x17
1478  text run at (0,2) width 17: "\x{56FA}"
1479  RenderText {#text} at (1895,375) size 49x472
1480  text run at (1895,375) width 97: "\x{3088}\x{308A}\x{6025}\x{3050}\x{65C5}\x{3067}"
1481  text run at (1926,0) width 162: "\x{306A}\x{3044}\x{304B}\x{3089}\x{3001}\x{3076}\x{3089}\x{3076}\x{3089}\x{3068}"
 1477 RenderText {#text} at (3,2) size 18x17
 1478 text run at (3,2) width 17: "\x{56FA}"
 1479 RenderText {#text} at (1961,375) size 49x472
 1480 text run at (1961,375) width 97: "\x{3088}\x{308A}\x{6025}\x{3050}\x{65C5}\x{3067}"
 1481 text run at (1992,0) width 162: "\x{306A}\x{3044}\x{304B}\x{3089}\x{3001}\x{3076}\x{3089}\x{3076}\x{3089}\x{3068}"
14821482 RenderRuby (inline) {RUBY} at (0,0) size 18x44
1483  RenderRubyRun (anonymous) at (1926,162) size 18x44
1484  RenderRubyText {RT} at (-13,0) size 13x44
 1483 RenderRubyRun (anonymous) at (1989,162) size 24x44
 1484 RenderRubyText {RT} at (-10,0) size 15x44
14851485 RenderText {#text} at (0,0) size 13x44
14861486 text run at (0,0) width 44: "\x{306A}\x{306A}\x{307E}\x{304C}"
1487  RenderRubyBase (anonymous) at (0,0) size 18x44
 1487 RenderRubyBase (anonymous) at (0,0) size 24x44
14881488 RenderInline {RB} at (0,0) size 18x34
1489  RenderText {#text} at (0,5) size 18x34
1490  text run at (0,5) width 34: "\x{4E03}\x{66F2}"
1491  RenderText {#text} at (1926,206) size 18x101
1492  text run at (1926,206) width 101: "\x{308A}\x{3078}\x{304B}\x{304B}\x{308B}\x{3002}"
1493  RenderBR {BR} at (1926,307) size 18x0
1494  RenderText {#text} at (1957,0) size 18x146
1495  text run at (1957,0) width 146: "\x{3000}\x{305F}\x{3061}\x{307E}\x{3061}\x{8DB3}\x{306E}\x{4E0B}\x{3067}"
 1489 RenderText {#text} at (3,5) size 18x34
 1490 text run at (3,5) width 34: "\x{4E03}\x{66F2}"
 1491 RenderText {#text} at (1992,206) size 18x101
 1492 text run at (1992,206) width 101: "\x{308A}\x{3078}\x{304B}\x{304B}\x{308B}\x{3002}"
 1493 RenderBR {BR} at (1992,307) size 18x0
 1494 RenderText {#text} at (2023,0) size 18x146
 1495 text run at (2023,0) width 146: "\x{3000}\x{305F}\x{3061}\x{307E}\x{3061}\x{8DB3}\x{306E}\x{4E0B}\x{3067}"
14961496 RenderRuby (inline) {RUBY} at (0,0) size 18x34
1497  RenderRubyRun (anonymous) at (1957,146) size 18x34
1498  RenderRubyText {RT} at (-13,0) size 13x34
 1497 RenderRubyRun (anonymous) at (2020,146) size 24x34
 1498 RenderRubyText {RT} at (-10,0) size 15x34
14991499 RenderText {#text} at (0,0) size 13x33
15001500 text run at (0,0) width 33: "\x{3072}\x{3070}\x{308A}"
1501  RenderRubyBase (anonymous) at (0,0) size 18x34
 1501 RenderRubyBase (anonymous) at (0,0) size 24x34
15021502 RenderInline {RB} at (0,0) size 18x34
1503  RenderText {#text} at (0,0) size 18x34
1504  text run at (0,0) width 34: "\x{96F2}\x{96C0}"
1505  RenderText {#text} at (1957,180) size 18x169
1506  text run at (1957,180) width 169: "\x{306E}\x{58F0}\x{304C}\x{3057}\x{51FA}\x{3057}\x{305F}\x{3002}\x{8C37}\x{3092}"
 1503 RenderText {#text} at (3,0) size 18x34
 1504 text run at (3,0) width 34: "\x{96F2}\x{96C0}"
 1505 RenderText {#text} at (2023,180) size 18x169
 1506 text run at (2023,180) width 169: "\x{306E}\x{58F0}\x{304C}\x{3057}\x{51FA}\x{3057}\x{305F}\x{3002}\x{8C37}\x{3092}"
15071507 RenderRuby (inline) {RUBY} at (0,0) size 18x34
1508  RenderRubyRun (anonymous) at (1957,349) size 18x34
1509  RenderRubyText {RT} at (-13,0) size 13x34
 1508 RenderRubyRun (anonymous) at (2020,349) size 24x34
 1509 RenderRubyText {RT} at (-10,0) size 15x34
15101510 RenderText {#text} at (0,0) size 13x33
15111511 text run at (0,0) width 33: "\x{307F}\x{304A}\x{308D}"
1512  RenderRubyBase (anonymous) at (0,0) size 18x34
 1512 RenderRubyBase (anonymous) at (0,0) size 24x34
15131513 RenderInline {RB} at (0,0) size 18x34
1514  RenderText {#text} at (0,0) size 18x34
1515  text run at (0,0) width 34: "\x{898B}\x{4E0B}"
1516  RenderText {#text} at (1957,383) size 67x480
1517  text run at (1957,383) width 97: "\x{3057}\x{305F}\x{304C}\x{3001}\x{3069}\x{3053}"
1518  text run at (1975,0) width 452: "\x{3067}\x{9CF4}\x{3044}\x{3066}\x{308B}\x{304B}\x{5F71}\x{3082}\x{5F62}\x{3082}\x{898B}\x{3048}\x{306C}\x{3002}\x{305F}\x{3060}\x{58F0}\x{3060}\x{3051}\x{304C}\x{660E}\x{3089}\x{304B}\x{306B}\x{805E}\x{3048}\x{308B}\x{3002}"
1519  text run at (2006,0) width 65: "\x{305B}\x{3063}\x{305B}\x{3068}"
 1514 RenderText {#text} at (3,0) size 18x34
 1515 text run at (3,0) width 34: "\x{898B}\x{4E0B}"
 1516 RenderText {#text} at (2023,383) size 73x480
 1517 text run at (2023,383) width 97: "\x{3057}\x{305F}\x{304C}\x{3001}\x{3069}\x{3053}"
 1518 text run at (2047,0) width 452: "\x{3067}\x{9CF4}\x{3044}\x{3066}\x{308B}\x{304B}\x{5F71}\x{3082}\x{5F62}\x{3082}\x{898B}\x{3048}\x{306C}\x{3002}\x{305F}\x{3060}\x{58F0}\x{3060}\x{3051}\x{304C}\x{660E}\x{3089}\x{304B}\x{306B}\x{805E}\x{3048}\x{308B}\x{3002}"
 1519 text run at (2078,0) width 65: "\x{305B}\x{3063}\x{305B}\x{3068}"
15201520 RenderRuby (inline) {RUBY} at (0,0) size 18x22
1521  RenderRubyRun (anonymous) at (2006,65) size 18x22
1522  RenderRubyText {RT} at (-13,0) size 13x22
 1521 RenderRubyRun (anonymous) at (2075,65) size 24x22
 1522 RenderRubyText {RT} at (-10,0) size 15x22
15231523 RenderText {#text} at (0,0) size 13x22
15241524 text run at (0,0) width 22: "\x{305B}\x{308F}"
1525  RenderRubyBase (anonymous) at (0,0) size 18x22
 1525 RenderRubyBase (anonymous) at (0,0) size 24x22
15261526 RenderInline {RB} at (0,0) size 18x17
1527  RenderText {#text} at (0,2) size 18x17
1528  text run at (0,2) width 17: "\x{5FD9}"
1529  RenderText {#text} at (2006,87) size 18x50
1530  text run at (2006,87) width 50: "\x{3057}\x{304F}\x{3001}"
 1527 RenderText {#text} at (3,2) size 18x17
 1528 text run at (3,2) width 17: "\x{5FD9}"
 1529 RenderText {#text} at (2078,87) size 18x50
 1530 text run at (2078,87) width 50: "\x{3057}\x{304F}\x{3001}"
15311531 RenderRuby (inline) {RUBY} at (0,0) size 18x34
1532  RenderRubyRun (anonymous) at (2006,137) size 18x34
1533  RenderRubyText {RT} at (-13,0) size 13x34
 1532 RenderRubyRun (anonymous) at (2075,137) size 24x34
 1533 RenderRubyText {RT} at (-10,0) size 15x34
15341534 RenderText {#text} at (0,0) size 13x33
15351535 text run at (0,0) width 33: "\x{305F}\x{3048}\x{307E}"
1536  RenderRubyBase (anonymous) at (0,0) size 18x34
 1536 RenderRubyBase (anonymous) at (0,0) size 24x34
15371537 RenderInline {RB} at (0,0) size 18x34
1538  RenderText {#text} at (0,0) size 18x34
1539  text run at (0,0) width 34: "\x{7D76}\x{9593}"
1540  RenderText {#text} at (2006,171) size 18x135
1541  text run at (2006,171) width 135: "\x{306A}\x{304F}\x{9CF4}\x{3044}\x{3066}\x{3044}\x{308B}\x{3002}"
 1538 RenderText {#text} at (3,0) size 18x34
 1539 text run at (3,0) width 34: "\x{7D76}\x{9593}"
 1540 RenderText {#text} at (2078,171) size 18x135
 1541 text run at (2078,171) width 135: "\x{306A}\x{304F}\x{9CF4}\x{3044}\x{3066}\x{3044}\x{308B}\x{3002}"
15421542 RenderRuby (inline) {RUBY} at (0,0) size 18x55
1543  RenderRubyRun (anonymous) at (2006,306) size 18x55
1544  RenderRubyText {RT} at (-13,0) size 13x55
 1543 RenderRubyRun (anonymous) at (2075,306) size 24x55
 1544 RenderRubyText {RT} at (-10,0) size 15x55
15451545 RenderText {#text} at (0,0) size 13x55
15461546 text run at (0,0) width 55: "\x{307B}\x{3046}\x{3044}\x{304F}\x{308A}"
1547  RenderRubyBase (anonymous) at (0,0) size 18x55
 1547 RenderRubyBase (anonymous) at (0,0) size 24x55
15481548 RenderInline {RB} at (0,0) size 18x51
1549  RenderText {#text} at (0,2) size 18x51
1550  text run at (0,2) width 51: "\x{65B9}\x{5E7E}\x{91CC}"
1551  RenderText {#text} at (2006,361) size 18x119
1552  text run at (2006,361) width 119: "\x{306E}\x{7A7A}\x{6C17}\x{304C}\x{4E00}\x{9762}\x{306B}"
 1549 RenderText {#text} at (3,2) size 18x51
 1550 text run at (3,2) width 51: "\x{65B9}\x{5E7E}\x{91CC}"
 1551 RenderText {#text} at (2078,361) size 18x119
 1552 text run at (2078,361) width 119: "\x{306E}\x{7A7A}\x{6C17}\x{304C}\x{4E00}\x{9762}\x{306B}"
15531553 RenderRuby (inline) {RUBY} at (0,0) size 18x22
1554  RenderRubyRun (anonymous) at (2037,0) size 18x22
1555  RenderRubyText {RT} at (-13,0) size 13x22
 1554 RenderRubyRun (anonymous) at (2106,0) size 24x22
 1555 RenderRubyText {RT} at (-10,0) size 15x22
15561556 RenderText {#text} at (0,0) size 13x22
15571557 text run at (0,0) width 22: "\x{306E}\x{307F}"
1558  RenderRubyBase (anonymous) at (0,0) size 18x22
 1558 RenderRubyBase (anonymous) at (0,0) size 24x22
15591559 RenderInline {RB} at (0,0) size 18x17
1560  RenderText {#text} at (0,2) size 18x17
1561  text run at (0,2) width 17: "\x{86A4}"
1562  RenderText {#text} at (2037,22) size 18x441
1563  text run at (2037,22) width 441: "\x{306B}\x{523A}\x{3055}\x{308C}\x{3066}\x{3044}\x{305F}\x{305F}\x{307E}\x{308C}\x{306A}\x{3044}\x{3088}\x{3046}\x{306A}\x{6C17}\x{304C}\x{3059}\x{308B}\x{3002}\x{3042}\x{306E}\x{9CE5}\x{306E}\x{9CF4}\x{304F}"
 1560 RenderText {#text} at (3,2) size 18x17
 1561 text run at (3,2) width 17: "\x{86A4}"
 1562 RenderText {#text} at (2109,22) size 18x441
 1563 text run at (2109,22) width 441: "\x{306B}\x{523A}\x{3055}\x{308C}\x{3066}\x{3044}\x{305F}\x{305F}\x{307E}\x{308C}\x{306A}\x{3044}\x{3088}\x{3046}\x{306A}\x{6C17}\x{304C}\x{3059}\x{308B}\x{3002}\x{3042}\x{306E}\x{9CE5}\x{306E}\x{9CF4}\x{304F}"
15641564 RenderRuby (inline) {RUBY} at (0,0) size 18x17
1565  RenderRubyRun (anonymous) at (2037,463) size 18x17
1566  RenderRubyText {RT} at (-13,0) size 13x17
 1565 RenderRubyRun (anonymous) at (2106,463) size 24x17
 1566 RenderRubyText {RT} at (-10,0) size 15x17
15671567 RenderText {#text} at (0,3) size 13x11
15681568 text run at (0,3) width 11: "\x{306D}"
1569  RenderRubyBase (anonymous) at (0,0) size 18x17
 1569 RenderRubyBase (anonymous) at (0,0) size 24x17
15701570 RenderInline {RB} at (0,0) size 18x17
1571  RenderText {#text} at (0,0) size 18x17
1572  text run at (0,0) width 17: "\x{97F3}"
1573  RenderText {#text} at (2055,0) size 85x468
1574  text run at (2055,0) width 468: "\x{306B}\x{306F}\x{77AC}\x{6642}\x{306E}\x{4F59}\x{88D5}\x{3082}\x{306A}\x{3044}\x{3002}\x{306E}\x{3069}\x{304B}\x{306A}\x{6625}\x{306E}\x{65E5}\x{3092}\x{9CF4}\x{304D}\x{5C3D}\x{304F}\x{3057}\x{3001}\x{9CF4}\x{304D}\x{3042}\x{304B}"
1575  text run at (2073,0) width 468: "\x{3057}\x{3001}\x{307E}\x{305F}\x{9CF4}\x{304D}\x{66AE}\x{3089}\x{3055}\x{306A}\x{3051}\x{308C}\x{3070}\x{6C17}\x{304C}\x{6E08}\x{307E}\x{3093}\x{3068}\x{898B}\x{3048}\x{308B}\x{3002}\x{305D}\x{306E}\x{4E0A}\x{3069}\x{3053}\x{307E}"
1576  text run at (2091,0) width 468: "\x{3067}\x{3082}\x{767B}\x{3063}\x{3066}\x{884C}\x{304F}\x{3001}\x{3044}\x{3064}\x{307E}\x{3067}\x{3082}\x{767B}\x{3063}\x{3066}\x{884C}\x{304F}\x{3002}\x{96F2}\x{96C0}\x{306F}\x{304D}\x{3063}\x{3068}\x{96F2}\x{306E}\x{4E2D}\x{3067}"
1577  text run at (2122,0) width 210: "\x{6B7B}\x{306C}\x{306B}\x{76F8}\x{9055}\x{306A}\x{3044}\x{3002}\x{767B}\x{308A}\x{8A70}\x{3081}\x{305F}"
 1571 RenderText {#text} at (3,0) size 18x17
 1572 text run at (3,0) width 17: "\x{97F3}"
 1573 RenderText {#text} at (2133,0) size 97x468
 1574 text run at (2133,0) width 468: "\x{306B}\x{306F}\x{77AC}\x{6642}\x{306E}\x{4F59}\x{88D5}\x{3082}\x{306A}\x{3044}\x{3002}\x{306E}\x{3069}\x{304B}\x{306A}\x{6625}\x{306E}\x{65E5}\x{3092}\x{9CF4}\x{304D}\x{5C3D}\x{304F}\x{3057}\x{3001}\x{9CF4}\x{304D}\x{3042}\x{304B}"
 1575 text run at (2157,0) width 468: "\x{3057}\x{3001}\x{307E}\x{305F}\x{9CF4}\x{304D}\x{66AE}\x{3089}\x{3055}\x{306A}\x{3051}\x{308C}\x{3070}\x{6C17}\x{304C}\x{6E08}\x{307E}\x{3093}\x{3068}\x{898B}\x{3048}\x{308B}\x{3002}\x{305D}\x{306E}\x{4E0A}\x{3069}\x{3053}\x{307E}"
 1576 text run at (2181,0) width 468: "\x{3067}\x{3082}\x{767B}\x{3063}\x{3066}\x{884C}\x{304F}\x{3001}\x{3044}\x{3064}\x{307E}\x{3067}\x{3082}\x{767B}\x{3063}\x{3066}\x{884C}\x{304F}\x{3002}\x{96F2}\x{96C0}\x{306F}\x{304D}\x{3063}\x{3068}\x{96F2}\x{306E}\x{4E2D}\x{3067}"
 1577 text run at (2212,0) width 210: "\x{6B7B}\x{306C}\x{306B}\x{76F8}\x{9055}\x{306A}\x{3044}\x{3002}\x{767B}\x{308A}\x{8A70}\x{3081}\x{305F}"
15781578 RenderRuby (inline) {RUBY} at (0,0) size 18x34
1579  RenderRubyRun (anonymous) at (2122,210) size 18x34
1580  RenderRubyText {RT} at (-13,0) size 13x34
 1579 RenderRubyRun (anonymous) at (2209,210) size 24x34
 1580 RenderRubyText {RT} at (-10,0) size 15x34
15811581 RenderText {#text} at (0,0) size 13x33
15821582 text run at (0,0) width 33: "\x{3042}\x{3052}\x{304F}"
1583  RenderRubyBase (anonymous) at (0,0) size 18x34
 1583 RenderRubyBase (anonymous) at (0,0) size 24x34
15841584 RenderInline {RB} at (0,0) size 18x34
1585  RenderText {#text} at (0,0) size 18x34
1586  text run at (0,0) width 34: "\x{63DA}\x{53E5}"
1587  RenderText {#text} at (2122,244) size 18x118
1588  text run at (2122,244) width 118: "\x{306F}\x{3001}\x{6D41}\x{308C}\x{3066}\x{96F2}\x{306B}"
 1585 RenderText {#text} at (3,0) size 18x34
 1586 text run at (3,0) width 34: "\x{63DA}\x{53E5}"
 1587 RenderText {#text} at (2212,244) size 18x118
 1588 text run at (2212,244) width 118: "\x{306F}\x{3001}\x{6D41}\x{308C}\x{3066}\x{96F2}\x{306B}"
15891589 RenderRuby (inline) {RUBY} at (0,0) size 18x17
1590  RenderRubyRun (anonymous) at (2122,362) size 18x17
1591  RenderRubyText {RT} at (-13,0) size 13x17
 1590 RenderRubyRun (anonymous) at (2209,362) size 24x17
 1591 RenderRubyText {RT} at (-10,0) size 15x17
15921592 RenderText {#text} at (0,3) size 13x11
15931593 text run at (0,3) width 11: "\x{3044}"
1594  RenderRubyBase (anonymous) at (0,0) size 18x17
 1594 RenderRubyBase (anonymous) at (0,0) size 24x17
15951595 RenderInline {RB} at (0,0) size 18x17
1596  RenderText {#text} at (0,0) size 18x17
1597  text run at (0,0) width 17: "\x{5165}"
1598  RenderText {#text} at (2122,379) size 18x50
1599  text run at (2122,379) width 50: "\x{3063}\x{3066}\x{3001}"
 1596 RenderText {#text} at (3,0) size 18x17
 1597 text run at (3,0) width 17: "\x{5165}"
 1598 RenderText {#text} at (2212,379) size 18x50
 1599 text run at (2212,379) width 50: "\x{3063}\x{3066}\x{3001}"
16001600 RenderRuby (inline) {RUBY} at (0,0) size 18x33
1601  RenderRubyRun (anonymous) at (2122,429) size 18x33
1602  RenderRubyText {RT} at (-13,0) size 13x33
 1601 RenderRubyRun (anonymous) at (2209,429) size 24x33
 1602 RenderRubyText {RT} at (-10,0) size 15x33
16031603 RenderText {#text} at (0,0) size 13x33
16041604 text run at (0,0) width 33: "\x{305F}\x{3060}\x{3088}"
1605  RenderRubyBase (anonymous) at (0,0) size 18x33
 1605 RenderRubyBase (anonymous) at (0,0) size 24x33
16061606 RenderInline {RB} at (0,0) size 18x17
1607  RenderText {#text} at (0,8) size 18x17
1608  text run at (0,8) width 17: "\x{6F02}"
1609  RenderText {#text} at (2122,462) size 49x479
1610  text run at (2122,462) width 17: "\x{3046}"
1611  text run at (2153,0) width 403: "\x{3066}\x{3044}\x{308B}\x{3046}\x{3061}\x{306B}\x{5F62}\x{306F}\x{6D88}\x{3048}\x{3066}\x{306A}\x{304F}\x{306A}\x{3063}\x{3066}\x{3001}\x{305F}\x{3060}\x{58F0}\x{3060}\x{3051}\x{304C}\x{7A7A}\x{306E}"
 1607 RenderText {#text} at (3,8) size 18x17
 1608 text run at (3,8) width 17: "\x{6F02}"
 1609 RenderText {#text} at (2212,462) size 49x479
 1610 text run at (2212,462) width 17: "\x{3046}"
 1611 text run at (2243,0) width 403: "\x{3066}\x{3044}\x{308B}\x{3046}\x{3061}\x{306B}\x{5F62}\x{306F}\x{6D88}\x{3048}\x{3066}\x{306A}\x{304F}\x{306A}\x{3063}\x{3066}\x{3001}\x{305F}\x{3060}\x{58F0}\x{3060}\x{3051}\x{304C}\x{7A7A}\x{306E}"
16121612 RenderRuby (inline) {RUBY} at (0,0) size 18x22
1613  RenderRubyRun (anonymous) at (2153,403) size 18x22
1614  RenderRubyText {RT} at (-13,0) size 13x22
 1613 RenderRubyRun (anonymous) at (2240,403) size 24x22
 1614 RenderRubyText {RT} at (-10,0) size 15x22
16151615 RenderText {#text} at (0,0) size 13x22
16161616 text run at (0,0) width 22: "\x{3046}\x{3061}"
1617  RenderRubyBase (anonymous) at (0,0) size 18x22
 1617 RenderRubyBase (anonymous) at (0,0) size 24x22
16181618 RenderInline {RB} at (0,0) size 18x17
1619  RenderText {#text} at (0,2) size 18x17
1620  text run at (0,2) width 17: "\x{88E1}"
1621  RenderText {#text} at (2153,425) size 36x458
1622  text run at (2153,425) width 33: "\x{306B}\x{6B8B}"
1623  text run at (2171,0) width 146: "\x{308B}\x{306E}\x{304B}\x{3082}\x{77E5}\x{308C}\x{306A}\x{3044}\x{3002}"
1624  RenderBR {BR} at (2171,146) size 18x0
1625  RenderText {#text} at (2202,0) size 18x17
1626  text run at (2202,0) width 17: "\x{3000}"
 1619 RenderText {#text} at (3,2) size 18x17
 1620 text run at (3,2) width 17: "\x{88E1}"
 1621 RenderText {#text} at (2243,425) size 42x458
 1622 text run at (2243,425) width 33: "\x{306B}\x{6B8B}"
 1623 text run at (2267,0) width 146: "\x{308B}\x{306E}\x{304B}\x{3082}\x{77E5}\x{308C}\x{306A}\x{3044}\x{3002}"
 1624 RenderBR {BR} at (2267,146) size 18x0
 1625 RenderText {#text} at (2298,0) size 18x17
 1626 text run at (2298,0) width 17: "\x{3000}"
16271627 RenderRuby (inline) {RUBY} at (0,0) size 18x44
1628  RenderRubyRun (anonymous) at (2202,17) size 18x44
1629  RenderRubyText {RT} at (-13,0) size 13x44
 1628 RenderRubyRun (anonymous) at (2295,17) size 24x44
 1629 RenderRubyText {RT} at (-10,0) size 15x44
16301630 RenderText {#text} at (0,0) size 13x44
16311631 text run at (0,0) width 44: "\x{3044}\x{308F}\x{304B}\x{3069}"
1632  RenderRubyBase (anonymous) at (0,0) size 18x44
 1632 RenderRubyBase (anonymous) at (0,0) size 24x44
16331633 RenderInline {RB} at (0,0) size 18x34
1634  RenderText {#text} at (0,5) size 18x34
1635  text run at (0,5) width 34: "\x{5DCC}\x{89D2}"
1636  RenderText {#text} at (2202,61) size 18x134
1637  text run at (2202,61) width 134: "\x{3092}\x{92ED}\x{3069}\x{304F}\x{5EFB}\x{3063}\x{3066}\x{3001}"
 1634 RenderText {#text} at (3,5) size 18x34
 1635 text run at (3,5) width 34: "\x{5DCC}\x{89D2}"
 1636 RenderText {#text} at (2298,61) size 18x134
 1637 text run at (2298,61) width 134: "\x{3092}\x{92ED}\x{3069}\x{304F}\x{5EFB}\x{3063}\x{3066}\x{3001}"
16381638 RenderRuby (inline) {RUBY} at (0,0) size 18x34
1639  RenderRubyRun (anonymous) at (2202,195) size 18x34
1640  RenderRubyText {RT} at (-13,0) size 13x34
 1639 RenderRubyRun (anonymous) at (2295,195) size 24x34
 1640 RenderRubyText {RT} at (-10,0) size 15x34
16411641 RenderText {#text} at (0,0) size 13x33
16421642 text run at (0,0) width 33: "\x{3042}\x{3093}\x{307E}"
1643  RenderRubyBase (anonymous) at (0,0) size 18x34
 1643 RenderRubyBase (anonymous) at (0,0) size 24x34
16441644 RenderInline {RB} at (0,0) size 18x34
1645  RenderText {#text} at (0,0) size 18x34
1646  text run at (0,0) width 34: "\x{6309}\x{6469}"
1647  RenderText {#text} at (2202,229) size 18x34
1648  text run at (2202,229) width 34: "\x{306A}\x{3089}"
 1645 RenderText {#text} at (3,0) size 18x34
 1646 text run at (3,0) width 34: "\x{6309}\x{6469}"
 1647 RenderText {#text} at (2298,229) size 18x34
 1648 text run at (2298,229) width 34: "\x{306A}\x{3089}"
16491649 RenderRuby (inline) {RUBY} at (0,0) size 18x65
1650  RenderRubyRun (anonymous) at (2202,263) size 18x65
1651  RenderRubyText {RT} at (-13,0) size 13x65
 1650 RenderRubyRun (anonymous) at (2295,263) size 24x65
 1651 RenderRubyText {RT} at (-10,0) size 15x65
16521652 RenderText {#text} at (0,0) size 13x65
16531653 text run at (0,0) width 65: "\x{307E}\x{3063}\x{3055}\x{304B}\x{3055}\x{307E}"
1654  RenderRubyBase (anonymous) at (0,0) size 18x65
 1654 RenderRubyBase (anonymous) at (0,0) size 24x65
16551655 RenderInline {RB} at (0,0) size 18x51
1656  RenderText {#text} at (0,7) size 18x51
1657  text run at (0,7) width 51: "\x{771F}\x{9006}\x{69D8}"
1658  RenderText {#text} at (2202,328) size 18x152
1659  text run at (2202,328) width 152: "\x{306B}\x{843D}\x{3064}\x{308B}\x{3068}\x{3053}\x{308D}\x{3092}\x{3001}"
 1656 RenderText {#text} at (3,7) size 18x51
 1657 text run at (3,7) width 51: "\x{771F}\x{9006}\x{69D8}"
 1658 RenderText {#text} at (2298,328) size 18x152
 1659 text run at (2298,328) width 152: "\x{306B}\x{843D}\x{3064}\x{308B}\x{3068}\x{3053}\x{308D}\x{3092}\x{3001}"
16601660 RenderRuby (inline) {RUBY} at (0,0) size 18x22
1661  RenderRubyRun (anonymous) at (2233,0) size 18x22
1662  RenderRubyText {RT} at (-13,0) size 13x22
 1661 RenderRubyRun (anonymous) at (2326,0) size 24x22
 1662 RenderRubyText {RT} at (-10,0) size 15x22
16631663 RenderText {#text} at (0,0) size 13x22
16641664 text run at (0,0) width 22: "\x{304D}\x{308F}"
1665  RenderRubyBase (anonymous) at (0,0) size 18x22
 1665 RenderRubyBase (anonymous) at (0,0) size 24x22
16661666 RenderInline {RB} at (0,0) size 18x17
1667  RenderText {#text} at (0,2) size 18x17
1668  text run at (0,2) width 17: "\x{969B}"
1669  RenderText {#text} at (2233,22) size 18x169
1670  text run at (2233,22) width 169: "\x{3069}\x{304F}\x{53F3}\x{3078}\x{5207}\x{308C}\x{3066}\x{3001}\x{6A2A}\x{306B}"
 1667 RenderText {#text} at (3,2) size 18x17
 1668 text run at (3,2) width 17: "\x{969B}"
 1669 RenderText {#text} at (2329,22) size 18x169
 1670 text run at (2329,22) width 169: "\x{3069}\x{304F}\x{53F3}\x{3078}\x{5207}\x{308C}\x{3066}\x{3001}\x{6A2A}\x{306B}"
16711671 RenderRuby (inline) {RUBY} at (0,0) size 18x34
1672  RenderRubyRun (anonymous) at (2233,191) size 18x34
1673  RenderRubyText {RT} at (-13,0) size 13x34
 1672 RenderRubyRun (anonymous) at (2326,191) size 24x34
 1673 RenderRubyText {RT} at (-10,0) size 15x34
16741674 RenderText {#text} at (0,0) size 13x33
16751675 text run at (0,0) width 33: "\x{307F}\x{304A}\x{308D}"
1676  RenderRubyBase (anonymous) at (0,0) size 18x34
 1676 RenderRubyBase (anonymous) at (0,0) size 24x34
16771677 RenderInline {RB} at (0,0) size 18x34
1678  RenderText {#text} at (0,0) size 18x34
1679  text run at (0,0) width 34: "\x{898B}\x{4E0B}"
1680  RenderText {#text} at (2233,225) size 18x50
1681  text run at (2233,225) width 50: "\x{3059}\x{3068}\x{3001}"
 1678 RenderText {#text} at (3,0) size 18x34
 1679 text run at (3,0) width 34: "\x{898B}\x{4E0B}"
 1680 RenderText {#text} at (2329,225) size 18x50
 1681 text run at (2329,225) width 50: "\x{3059}\x{3068}\x{3001}"
16821682 RenderRuby (inline) {RUBY} at (0,0) size 18x17
1683  RenderRubyRun (anonymous) at (2233,275) size 18x17
1684  RenderRubyText {RT} at (-13,0) size 13x17
 1683 RenderRubyRun (anonymous) at (2326,275) size 24x17
 1684 RenderRubyText {RT} at (-10,0) size 15x17
16851685 RenderText {#text} at (0,3) size 13x11
16861686 text run at (0,3) width 11: "\x{306A}"
1687  RenderRubyBase (anonymous) at (0,0) size 18x17
 1687 RenderRubyBase (anonymous) at (0,0) size 24x17
16881688 RenderInline {RB} at (0,0) size 18x17
1689  RenderText {#text} at (0,0) size 18x17
1690  text run at (0,0) width 17: "\x{83DC}"
1691  RenderText {#text} at (2233,292) size 49x470
1692  text run at (2233,292) width 178: "\x{306E}\x{82B1}\x{304C}\x{4E00}\x{9762}\x{306B}\x{898B}\x{3048}\x{308B}\x{3002}\x{96F2}"
1693  text run at (2264,0) width 355: "\x{96C0}\x{306F}\x{3042}\x{3059}\x{3053}\x{3078}\x{843D}\x{3061}\x{308B}\x{306E}\x{304B}\x{3068}\x{601D}\x{3063}\x{305F}\x{3002}\x{3044}\x{3044}\x{3084}\x{3001}\x{3042}\x{306E}"
 1689 RenderText {#text} at (3,0) size 18x17
 1690 text run at (3,0) width 17: "\x{83DC}"
 1691 RenderText {#text} at (2329,292) size 49x470
 1692 text run at (2329,292) width 178: "\x{306E}\x{82B1}\x{304C}\x{4E00}\x{9762}\x{306B}\x{898B}\x{3048}\x{308B}\x{3002}\x{96F2}"
 1693 text run at (2360,0) width 355: "\x{96C0}\x{306F}\x{3042}\x{3059}\x{3053}\x{3078}\x{843D}\x{3061}\x{308B}\x{306E}\x{304B}\x{3068}\x{601D}\x{3063}\x{305F}\x{3002}\x{3044}\x{3044}\x{3084}\x{3001}\x{3042}\x{306E}"
16941694 RenderRuby (inline) {RUBY} at (0,0) size 18x34
1695  RenderRubyRun (anonymous) at (2264,355) size 18x34
1696  RenderRubyText {RT} at (-13,0) size 13x34
 1695 RenderRubyRun (anonymous) at (2357,355) size 24x34
 1696 RenderRubyText {RT} at (-10,0) size 15x34
16971697 RenderText {#text} at (0,0) size 13x33
16981698 text run at (0,0) width 33: "\x{3053}\x{304C}\x{306D}"
1699  RenderRubyBase (anonymous) at (0,0) size 18x34
 1699 RenderRubyBase (anonymous) at (0,0) size 24x34
17001700 RenderInline {RB} at (0,0) size 18x34
1701  RenderText {#text} at (0,0) size 18x34
1702  text run at (0,0) width 34: "\x{9EC4}\x{91D1}"
1703  RenderText {#text} at (2264,389) size 49x470
1704  text run at (2264,389) width 81: "\x{306E}\x{539F}\x{304B}\x{3089}\x{98DB}"
1705  text run at (2295,0) width 387: "\x{3073}\x{4E0A}\x{304C}\x{3063}\x{3066}\x{304F}\x{308B}\x{306E}\x{304B}\x{3068}\x{601D}\x{3063}\x{305F}\x{3002}\x{6B21}\x{306B}\x{306F}\x{843D}\x{3061}\x{308B}\x{96F2}\x{96C0}\x{3068}\x{3001}"
 1701 RenderText {#text} at (3,0) size 18x34
 1702 text run at (3,0) width 34: "\x{9EC4}\x{91D1}"
 1703 RenderText {#text} at (2360,389) size 49x470
 1704 text run at (2360,389) width 81: "\x{306E}\x{539F}\x{304B}\x{3089}\x{98DB}"
 1705 text run at (2391,0) width 387: "\x{3073}\x{4E0A}\x{304C}\x{3063}\x{3066}\x{304F}\x{308B}\x{306E}\x{304B}\x{3068}\x{601D}\x{3063}\x{305F}\x{3002}\x{6B21}\x{306B}\x{306F}\x{843D}\x{3061}\x{308B}\x{96F2}\x{96C0}\x{3068}\x{3001}"
17061706 RenderRuby (inline) {RUBY} at (0,0) size 18x22
1707  RenderRubyRun (anonymous) at (2295,387) size 18x22
1708  RenderRubyText {RT} at (-13,0) size 13x22
 1707 RenderRubyRun (anonymous) at (2388,387) size 24x22
 1708 RenderRubyText {RT} at (-10,0) size 15x22
17091709 RenderText {#text} at (0,0) size 13x22
17101710 text run at (0,0) width 22: "\x{3042}\x{304C}"
1711  RenderRubyBase (anonymous) at (0,0) size 18x22
 1711 RenderRubyBase (anonymous) at (0,0) size 24x22
17121712 RenderInline {RB} at (0,0) size 18x17
1713  RenderText {#text} at (0,2) size 18x17
1714  text run at (0,2) width 17: "\x{4E0A}"
1715  RenderText {#text} at (2295,409) size 18x17
1716  text run at (2295,409) width 17: "\x{308B}"
 1713 RenderText {#text} at (3,2) size 18x17
 1714 text run at (3,2) width 17: "\x{4E0A}"
 1715 RenderText {#text} at (2391,409) size 18x17
 1716 text run at (2391,409) width 17: "\x{308B}"
17171717 RenderRuby (inline) {RUBY} at (0,0) size 18x34
1718  RenderRubyRun (anonymous) at (2295,426) size 18x34
1719  RenderRubyText {RT} at (-13,0) size 13x34
 1718 RenderRubyRun (anonymous) at (2388,426) size 24x34
 1719 RenderRubyText {RT} at (-10,0) size 15x34
17201720 RenderText {#text} at (0,0) size 13x33
17211721 text run at (0,0) width 33: "\x{3072}\x{3070}\x{308A}"
1722  RenderRubyBase (anonymous) at (0,0) size 18x34
 1722 RenderRubyBase (anonymous) at (0,0) size 24x34
17231723 RenderInline {RB} at (0,0) size 18x34
1724  RenderText {#text} at (0,0) size 18x34
1725  text run at (0,0) width 34: "\x{96F2}\x{96C0}"
1726  RenderText {#text} at (2313,0) size 49x468
1727  text run at (2313,0) width 468: "\x{304C}\x{5341}\x{6587}\x{5B57}\x{306B}\x{3059}\x{308C}\x{9055}\x{3046}\x{306E}\x{304B}\x{3068}\x{601D}\x{3063}\x{305F}\x{3002}\x{6700}\x{5F8C}\x{306B}\x{3001}\x{843D}\x{3061}\x{308B}\x{6642}\x{3082}\x{3001}\x{4E0A}\x{308B}\x{6642}"
1728  text run at (2344,0) width 129: "\x{3082}\x{3001}\x{307E}\x{305F}\x{5341}\x{6587}\x{5B57}\x{306B}"
 1724 RenderText {#text} at (3,0) size 18x34
 1725 text run at (3,0) width 34: "\x{96F2}\x{96C0}"
 1726 RenderText {#text} at (2415,0) size 49x468
 1727 text run at (2415,0) width 468: "\x{304C}\x{5341}\x{6587}\x{5B57}\x{306B}\x{3059}\x{308C}\x{9055}\x{3046}\x{306E}\x{304B}\x{3068}\x{601D}\x{3063}\x{305F}\x{3002}\x{6700}\x{5F8C}\x{306B}\x{3001}\x{843D}\x{3061}\x{308B}\x{6642}\x{3082}\x{3001}\x{4E0A}\x{308B}\x{6642}"
 1728 text run at (2446,0) width 129: "\x{3082}\x{3001}\x{307E}\x{305F}\x{5341}\x{6587}\x{5B57}\x{306B}"
17291729 RenderRuby (inline) {RUBY} at (0,0) size 18x17
1730  RenderRubyRun (anonymous) at (2344,129) size 18x17
1731  RenderRubyText {RT} at (-13,0) size 13x17
 1730 RenderRubyRun (anonymous) at (2443,129) size 24x17
 1731 RenderRubyText {RT} at (-10,0) size 15x17
17321732 RenderText {#text} at (0,3) size 13x11
17331733 text run at (0,3) width 11: "\x{3059}"
1734  RenderRubyBase (anonymous) at (0,0) size 18x17
 1734 RenderRubyBase (anonymous) at (0,0) size 24x17
17351735 RenderInline {RB} at (0,0) size 18x17
1736  RenderText {#text} at (0,0) size 18x17
1737  text run at (0,0) width 17: "\x{64E6}"
1738  RenderText {#text} at (2344,146) size 36x469
1739  text run at (2344,146) width 323: "\x{308C}\x{9055}\x{3046}\x{3068}\x{304D}\x{306B}\x{3082}\x{5143}\x{6C17}\x{3088}\x{304F}\x{9CF4}\x{304D}\x{3064}\x{3065}\x{3051}\x{308B}\x{3060}\x{308D}\x{3046}"
1740  text run at (2362,0) width 81: "\x{3068}\x{601D}\x{3063}\x{305F}\x{3002}"
1741  RenderBR {BR} at (2362,81) size 18x0
1742  RenderText {#text} at (2393,0) size 18x194
1743  text run at (2393,0) width 194: "\x{3000}\x{6625}\x{306F}\x{7720}\x{304F}\x{306A}\x{308B}\x{3002}\x{732B}\x{306F}\x{9F20}\x{3092}"
 1736 RenderText {#text} at (3,0) size 18x17
 1737 text run at (3,0) width 17: "\x{64E6}"
 1738 RenderText {#text} at (2446,146) size 42x469
 1739 text run at (2446,146) width 323: "\x{308C}\x{9055}\x{3046}\x{3068}\x{304D}\x{306B}\x{3082}\x{5143}\x{6C17}\x{3088}\x{304F}\x{9CF4}\x{304D}\x{3064}\x{3065}\x{3051}\x{308B}\x{3060}\x{308D}\x{3046}"
 1740 text run at (2470,0) width 81: "\x{3068}\x{601D}\x{3063}\x{305F}\x{3002}"
 1741 RenderBR {BR} at (2470,81) size 18x0
 1742 RenderText {#text} at (2501,0) size 18x194
 1743 text run at (2501,0) width 194: "\x{3000}\x{6625}\x{306F}\x{7720}\x{304F}\x{306A}\x{308B}\x{3002}\x{732B}\x{306F}\x{9F20}\x{3092}"
17441744 RenderRuby (inline) {RUBY} at (0,0) size 18x17
1745  RenderRubyRun (anonymous) at (2393,194) size 18x17
1746  RenderRubyText {RT} at (-13,0) size 13x17
 1745 RenderRubyRun (anonymous) at (2498,194) size 24x17
 1746 RenderRubyText {RT} at (-10,0) size 15x17
17471747 RenderText {#text} at (0,3) size 13x11
17481748 text run at (0,3) width 11: "\x{3068}"
1749  RenderRubyBase (anonymous) at (0,0) size 18x17
 1749 RenderRubyBase (anonymous) at (0,0) size 24x17
17501750 RenderInline {RB} at (0,0) size 18x17
1751  RenderText {#text} at (0,0) size 18x17
1752  text run at (0,0) width 17: "\x{6355}"
1753  RenderText {#text} at (2393,211) size 49x469
1754  text run at (2393,211) width 258: "\x{308B}\x{4E8B}\x{3092}\x{5FD8}\x{308C}\x{3001}\x{4EBA}\x{9593}\x{306F}\x{501F}\x{91D1}\x{306E}\x{3042}\x{308B}\x{4E8B}\x{3092}"
1755  text run at (2424,0) width 162: "\x{5FD8}\x{308C}\x{308B}\x{3002}\x{6642}\x{306B}\x{306F}\x{81EA}\x{5206}\x{306E}"
 1751 RenderText {#text} at (3,0) size 18x17
 1752 text run at (3,0) width 17: "\x{6355}"
 1753 RenderText {#text} at (2501,211) size 49x469
 1754 text run at (2501,211) width 258: "\x{308B}\x{4E8B}\x{3092}\x{5FD8}\x{308C}\x{3001}\x{4EBA}\x{9593}\x{306F}\x{501F}\x{91D1}\x{306E}\x{3042}\x{308B}\x{4E8B}\x{3092}"
 1755 text run at (2532,0) width 162: "\x{5FD8}\x{308C}\x{308B}\x{3002}\x{6642}\x{306B}\x{306F}\x{81EA}\x{5206}\x{306E}"
17561756 RenderRuby (inline) {RUBY} at (0,0) size 18x44
1757  RenderRubyRun (anonymous) at (2424,162) size 18x44
1758  RenderRubyText {RT} at (-13,0) size 13x44
 1757 RenderRubyRun (anonymous) at (2529,162) size 24x44
 1758 RenderRubyText {RT} at (-10,0) size 15x44
17591759 RenderText {#text} at (0,0) size 13x44
17601760 text run at (0,0) width 44: "\x{305F}\x{307E}\x{3057}\x{3044}"
1761  RenderRubyBase (anonymous) at (0,0) size 18x44
 1761 RenderRubyBase (anonymous) at (0,0) size 24x44
17621762 RenderInline {RB} at (0,0) size 18x17
1763  RenderText {#text} at (0,13) size 18x17
1764  text run at (0,13) width 17: "\x{9B42}"
1765  RenderText {#text} at (2424,206) size 18x17
1766  text run at (2424,206) width 17: "\x{306E}"
 1763 RenderText {#text} at (3,13) size 18x17
 1764 text run at (3,13) width 17: "\x{9B42}"
 1765 RenderText {#text} at (2532,206) size 18x17
 1766 text run at (2532,206) width 17: "\x{306E}"
17671767 RenderRuby (inline) {RUBY} at (0,0) size 18x44
1768  RenderRubyRun (anonymous) at (2424,223) size 18x44
1769  RenderRubyText {RT} at (-13,0) size 13x44
 1768 RenderRubyRun (anonymous) at (2529,223) size 24x44
 1769 RenderRubyText {RT} at (-10,0) size 15x44
17701770 RenderText {#text} at (0,0) size 13x44
17711771 text run at (0,0) width 44: "\x{3044}\x{3069}\x{3053}\x{308D}"
1772  RenderRubyBase (anonymous) at (0,0) size 18x44
 1772 RenderRubyBase (anonymous) at (0,0) size 24x44
17731773 RenderInline {RB} at (0,0) size 18x34
1774  RenderText {#text} at (0,5) size 18x34
1775  text run at (0,5) width 34: "\x{5C45}\x{6240}"
1776  RenderText {#text} at (2424,267) size 49x461
1777  text run at (2424,267) width 194: "\x{3055}\x{3048}\x{5FD8}\x{308C}\x{3066}\x{6B63}\x{4F53}\x{306A}\x{304F}\x{306A}\x{308B}\x{3002}"
1778  text run at (2455,0) width 258: "\x{305F}\x{3060}\x{83DC}\x{306E}\x{82B1}\x{3092}\x{9060}\x{304F}\x{671B}\x{3093}\x{3060}\x{3068}\x{304D}\x{306B}\x{773C}\x{304C}"
 1774 RenderText {#text} at (3,5) size 18x34
 1775 text run at (3,5) width 34: "\x{5C45}\x{6240}"
 1776 RenderText {#text} at (2532,267) size 49x461
 1777 text run at (2532,267) width 194: "\x{3055}\x{3048}\x{5FD8}\x{308C}\x{3066}\x{6B63}\x{4F53}\x{306A}\x{304F}\x{306A}\x{308B}\x{3002}"
 1778 text run at (2563,0) width 258: "\x{305F}\x{3060}\x{83DC}\x{306E}\x{82B1}\x{3092}\x{9060}\x{304F}\x{671B}\x{3093}\x{3060}\x{3068}\x{304D}\x{306B}\x{773C}\x{304C}"
17791779 RenderRuby (inline) {RUBY} at (0,0) size 18x17
1780  RenderRubyRun (anonymous) at (2455,258) size 18x17
1781  RenderRubyText {RT} at (-13,0) size 13x17
 1780 RenderRubyRun (anonymous) at (2560,258) size 24x17
 1781 RenderRubyText {RT} at (-10,0) size 15x17
17821782 RenderText {#text} at (0,3) size 13x11
17831783 text run at (0,3) width 11: "\x{3055}"
1784  RenderRubyBase (anonymous) at (0,0) size 18x17
 1784 RenderRubyBase (anonymous) at (0,0) size 24x17
17851785 RenderInline {RB} at (0,0) size 18x17
1786  RenderText {#text} at (0,0) size 18x17
1787  text run at (0,0) width 17: "\x{9192}"
1788  RenderText {#text} at (2455,275) size 49x469
1789  text run at (2455,275) width 194: "\x{3081}\x{308B}\x{3002}\x{96F2}\x{96C0}\x{306E}\x{58F0}\x{3092}\x{805E}\x{3044}\x{305F}\x{3068}"
1790  text run at (2486,0) width 129: "\x{304D}\x{306B}\x{9B42}\x{306E}\x{3042}\x{308A}\x{304B}\x{304C}"
 1786 RenderText {#text} at (3,0) size 18x17
 1787 text run at (3,0) width 17: "\x{9192}"
 1788 RenderText {#text} at (2563,275) size 49x469
 1789 text run at (2563,275) width 194: "\x{3081}\x{308B}\x{3002}\x{96F2}\x{96C0}\x{306E}\x{58F0}\x{3092}\x{805E}\x{3044}\x{305F}\x{3068}"
 1790 text run at (2594,0) width 129: "\x{304D}\x{306B}\x{9B42}\x{306E}\x{3042}\x{308A}\x{304B}\x{304C}"
17911791 RenderRuby (inline) {RUBY} at (0,0) size 18x44
1792  RenderRubyRun (anonymous) at (2486,129) size 18x44
1793  RenderRubyText {RT} at (-13,0) size 13x44
 1792 RenderRubyRun (anonymous) at (2591,129) size 24x44
 1793 RenderRubyText {RT} at (-10,0) size 15x44
17941794 RenderText {#text} at (0,0) size 13x44
17951795 text run at (0,0) width 44: "\x{306F}\x{3093}\x{305C}\x{3093}"
1796  RenderRubyBase (anonymous) at (0,0) size 18x44
 1796 RenderRubyBase (anonymous) at (0,0) size 24x44
17971797 RenderInline {RB} at (0,0) size 18x34
1798  RenderText {#text} at (0,5) size 18x34
1799  text run at (0,5) width 34: "\x{5224}\x{7136}"
1800  RenderText {#text} at (2486,173) size 72x468
1801  text run at (2486,173) width 291: "\x{3059}\x{308B}\x{3002}\x{96F2}\x{96C0}\x{306E}\x{9CF4}\x{304F}\x{306E}\x{306F}\x{53E3}\x{3067}\x{9CF4}\x{304F}\x{306E}\x{3067}\x{306F}\x{306A}"
1802  text run at (2504,0) width 452: "\x{3044}\x{3001}\x{9B42}\x{5168}\x{4F53}\x{304C}\x{9CF4}\x{304F}\x{306E}\x{3060}\x{3002}\x{9B42}\x{306E}\x{6D3B}\x{52D5}\x{304C}\x{58F0}\x{306B}\x{3042}\x{3089}\x{308F}\x{308C}\x{305F}\x{3082}\x{306E}\x{306E}\x{3046}\x{3061}"
1803  text run at (2522,0) width 468: "\x{3067}\x{3001}\x{3042}\x{308C}\x{307B}\x{3069}\x{5143}\x{6C17}\x{306E}\x{3042}\x{308B}\x{3082}\x{306E}\x{306F}\x{306A}\x{3044}\x{3002}\x{3042}\x{3042}\x{6109}\x{5FEB}\x{3060}\x{3002}\x{3053}\x{3046}\x{601D}\x{3063}\x{3066}\x{3001}"
1804  text run at (2540,0) width 226: "\x{3053}\x{3046}\x{6109}\x{5FEB}\x{306B}\x{306A}\x{308B}\x{306E}\x{304C}\x{8A69}\x{3067}\x{3042}\x{308B}\x{3002}"
1805  RenderBR {BR} at (2540,226) size 18x0
1806  RenderText {#text} at (2558,0) size 49x468
1807  text run at (2558,0) width 468: "\x{3000}\x{305F}\x{3061}\x{307E}\x{3061}\x{30B7}\x{30A7}\x{30EC}\x{30FC}\x{306E}\x{96F2}\x{96C0}\x{306E}\x{8A69}\x{3092}\x{601D}\x{3044}\x{51FA}\x{3057}\x{3066}\x{3001}\x{53E3}\x{306E}\x{3046}\x{3061}\x{3067}\x{899A}\x{3048}\x{305F}"
1808  text run at (2589,0) width 81: "\x{3068}\x{3053}\x{308D}\x{3060}\x{3051}"
 1798 RenderText {#text} at (3,5) size 18x34
 1799 text run at (3,5) width 34: "\x{5224}\x{7136}"
 1800 RenderText {#text} at (2594,173) size 90x468
 1801 text run at (2594,173) width 291: "\x{3059}\x{308B}\x{3002}\x{96F2}\x{96C0}\x{306E}\x{9CF4}\x{304F}\x{306E}\x{306F}\x{53E3}\x{3067}\x{9CF4}\x{304F}\x{306E}\x{3067}\x{306F}\x{306A}"
 1802 text run at (2618,0) width 452: "\x{3044}\x{3001}\x{9B42}\x{5168}\x{4F53}\x{304C}\x{9CF4}\x{304F}\x{306E}\x{3060}\x{3002}\x{9B42}\x{306E}\x{6D3B}\x{52D5}\x{304C}\x{58F0}\x{306B}\x{3042}\x{3089}\x{308F}\x{308C}\x{305F}\x{3082}\x{306E}\x{306E}\x{3046}\x{3061}"
 1803 text run at (2642,0) width 468: "\x{3067}\x{3001}\x{3042}\x{308C}\x{307B}\x{3069}\x{5143}\x{6C17}\x{306E}\x{3042}\x{308B}\x{3082}\x{306E}\x{306F}\x{306A}\x{3044}\x{3002}\x{3042}\x{3042}\x{6109}\x{5FEB}\x{3060}\x{3002}\x{3053}\x{3046}\x{601D}\x{3063}\x{3066}\x{3001}"
 1804 text run at (2666,0) width 226: "\x{3053}\x{3046}\x{6109}\x{5FEB}\x{306B}\x{306A}\x{308B}\x{306E}\x{304C}\x{8A69}\x{3067}\x{3042}\x{308B}\x{3002}"
 1805 RenderBR {BR} at (2666,226) size 18x0
 1806 RenderText {#text} at (2690,0) size 49x468
 1807 text run at (2690,0) width 468: "\x{3000}\x{305F}\x{3061}\x{307E}\x{3061}\x{30B7}\x{30A7}\x{30EC}\x{30FC}\x{306E}\x{96F2}\x{96C0}\x{306E}\x{8A69}\x{3092}\x{601D}\x{3044}\x{51FA}\x{3057}\x{3066}\x{3001}\x{53E3}\x{306E}\x{3046}\x{3061}\x{3067}\x{899A}\x{3048}\x{305F}"
 1808 text run at (2721,0) width 81: "\x{3068}\x{3053}\x{308D}\x{3060}\x{3051}"
18091809 RenderRuby (inline) {RUBY} at (0,0) size 18x54
1810  RenderRubyRun (anonymous) at (2589,81) size 18x54
1811  RenderRubyText {RT} at (-13,0) size 13x54
 1810 RenderRubyRun (anonymous) at (2718,81) size 24x54
 1811 RenderRubyText {RT} at (-10,0) size 15x54
18121812 RenderText {#text} at (0,0) size 13x54
18131813 text run at (0,0) width 54: "\x{3042}\x{3093}\x{3057}\x{3087}\x{3046}"
1814  RenderRubyBase (anonymous) at (0,0) size 18x54
 1814 RenderRubyBase (anonymous) at (0,0) size 24x54
18151815 RenderInline {RB} at (0,0) size 18x34
1816  RenderText {#text} at (0,10) size 18x34
1817  text run at (0,10) width 34: "\x{6697}\x{8AA6}"
1818  RenderText {#text} at (2589,135) size 36x458
1819  text run at (2589,135) width 323: "\x{3057}\x{3066}\x{898B}\x{305F}\x{304C}\x{3001}\x{899A}\x{3048}\x{3066}\x{3044}\x{308B}\x{3068}\x{3053}\x{308D}\x{306F}\x{4E8C}\x{4E09}\x{53E5}\x{3057}\x{304B}"
1820  text run at (2607,0) width 355: "\x{306A}\x{304B}\x{3063}\x{305F}\x{3002}\x{305D}\x{306E}\x{4E8C}\x{4E09}\x{53E5}\x{306E}\x{306A}\x{304B}\x{306B}\x{3053}\x{3093}\x{306A}\x{306E}\x{304C}\x{3042}\x{308B}\x{3002}"
1821  RenderBR {BR} at (2607,355) size 18x0
1822  RenderBlock {DIV} at (2625,32) size 90x461
1823  RenderText {#text} at (0,0) size 18x190
1824  text run at (0,0) width 190: "\x{3000}\x{3000}We look before and after"
1825  RenderBR {BR} at (0,190) size 18x0
1826  RenderText {#text} at (18,0) size 18x223
1827  text run at (18,0) width 223: "\x{3000}\x{3000}\x{3000}\x{3000}And pine for what is not:"
1828  RenderBR {BR} at (18,223) size 18x0
1829  RenderText {#text} at (36,0) size 18x171
1830  text run at (36,0) width 171: "\x{3000}\x{3000}Our sincerest laughter"
1831  RenderBR {BR} at (36,171) size 18x0
1832  RenderText {#text} at (54,0) size 18x231
1833  text run at (54,0) width 231: "\x{3000}\x{3000}\x{3000}\x{3000}With some pain is fraught;"
1834  RenderBR {BR} at (54,231) size 18x0
1835  RenderText {#text} at (72,0) size 18x355
1836  text run at (72,0) width 355: "Our sweetest songs are those that tell of saddest thought."
1837  RenderBR {BR} at (72,355) size 18x0
1838  RenderBlock (anonymous) at (2715,0) size 1884x493
 1816 RenderText {#text} at (3,10) size 18x34
 1817 text run at (3,10) width 34: "\x{6697}\x{8AA6}"
 1818 RenderText {#text} at (2721,135) size 42x458
 1819 text run at (2721,135) width 323: "\x{3057}\x{3066}\x{898B}\x{305F}\x{304C}\x{3001}\x{899A}\x{3048}\x{3066}\x{3044}\x{308B}\x{3068}\x{3053}\x{308D}\x{306F}\x{4E8C}\x{4E09}\x{53E5}\x{3057}\x{304B}"
 1820 text run at (2745,0) width 355: "\x{306A}\x{304B}\x{3063}\x{305F}\x{3002}\x{305D}\x{306E}\x{4E8C}\x{4E09}\x{53E5}\x{306E}\x{306A}\x{304B}\x{306B}\x{3053}\x{3093}\x{306A}\x{306E}\x{304C}\x{3042}\x{308B}\x{3002}"
 1821 RenderBR {BR} at (2745,355) size 18x0
 1822 RenderBlock {DIV} at (2766,32) size 114x461
 1823 RenderText {#text} at (3,0) size 18x190
 1824 text run at (3,0) width 190: "\x{3000}\x{3000}We look before and after"
 1825 RenderBR {BR} at (3,190) size 18x0
 1826 RenderText {#text} at (27,0) size 18x223
 1827 text run at (27,0) width 223: "\x{3000}\x{3000}\x{3000}\x{3000}And pine for what is not:"
 1828 RenderBR {BR} at (27,223) size 18x0
 1829 RenderText {#text} at (51,0) size 18x171
 1830 text run at (51,0) width 171: "\x{3000}\x{3000}Our sincerest laughter"
 1831 RenderBR {BR} at (51,171) size 18x0
 1832 RenderText {#text} at (75,0) size 18x231
 1833 text run at (75,0) width 231: "\x{3000}\x{3000}\x{3000}\x{3000}With some pain is fraught;"
 1834 RenderBR {BR} at (75,231) size 18x0
 1835 RenderText {#text} at (96,0) size 18x355
 1836 text run at (96,0) width 355: "Our sweetest songs are those that tell of saddest thought."
 1837 RenderBR {BR} at (96,355) size 18x0
 1838 RenderBlock (anonymous) at (2880,0) size 2019x493
18391839 RenderText {#text} at (13,0) size 18x113
18401840 text run at (13,0) width 113: "\x{300C}\x{524D}\x{3092}\x{307F}\x{3066}\x{306F}\x{3001}"
18411841 RenderRuby (inline) {RUBY} at (0,0) size 18x22
1842  RenderRubyRun (anonymous) at (13,113) size 18x22
1843  RenderRubyText {RT} at (-13,0) size 13x22
 1842 RenderRubyRun (anonymous) at (10,113) size 24x22
 1843 RenderRubyText {RT} at (-10,0) size 15x22
18441844 RenderText {#text} at (0,0) size 13x22
18451845 text run at (0,0) width 22: "\x{3057}\x{308A}"
1846  RenderRubyBase (anonymous) at (0,0) size 18x22
 1846 RenderRubyBase (anonymous) at (0,0) size 24x22
18471847 RenderInline {RB} at (0,0) size 18x17
1848  RenderText {#text} at (0,2) size 18x17
1849  text run at (0,2) width 17: "\x{5F8C}"
 1848 RenderText {#text} at (3,2) size 18x17
 1849 text run at (3,2) width 17: "\x{5F8C}"
18501850 RenderText {#text} at (13,135) size 18x101
18511851 text run at (13,135) width 101: "\x{3048}\x{3092}\x{898B}\x{3066}\x{306F}\x{3001}"
18521852 RenderRuby (inline) {RUBY} at (0,0) size 18x34
1853  RenderRubyRun (anonymous) at (13,236) size 18x34
1854  RenderRubyText {RT} at (-13,0) size 13x34
 1853 RenderRubyRun (anonymous) at (10,236) size 24x34
 1854 RenderRubyText {RT} at (-10,0) size 15x34
18551855 RenderText {#text} at (0,0) size 13x33
18561856 text run at (0,0) width 33: "\x{3082}\x{306E}\x{307B}"
1857  RenderRubyBase (anonymous) at (0,0) size 18x34
 1857 RenderRubyBase (anonymous) at (0,0) size 24x34
18581858 RenderInline {RB} at (0,0) size 18x34
1859  RenderText {#text} at (0,0) size 18x34
1860  text run at (0,0) width 34: "\x{7269}\x{6B32}"
1861  RenderText {#text} at (13,270) size 67x480
 1859 RenderText {#text} at (3,0) size 18x34
 1860 text run at (3,0) width 34: "\x{7269}\x{6B32}"
 1861 RenderText {#text} at (13,270) size 73x480
18621862 text run at (13,270) width 210: "\x{3057}\x{3068}\x{3001}\x{3042}\x{3053}\x{304C}\x{308B}\x{308B}\x{304B}\x{306A}\x{308F}\x{308C}\x{3002}"
1863  text run at (31,0) width 452: "\x{8179}\x{304B}\x{3089}\x{306E}\x{3001}\x{7B11}\x{3068}\x{3044}\x{3048}\x{3069}\x{3001}\x{82E6}\x{3057}\x{307F}\x{306E}\x{3001}\x{305D}\x{3053}\x{306B}\x{3042}\x{308B}\x{3079}\x{3057}\x{3002}\x{3046}\x{3064}\x{304F}\x{3057}"
1864  text run at (62,0) width 33: "\x{304D}\x{3001}"
 1863 text run at (37,0) width 452: "\x{8179}\x{304B}\x{3089}\x{306E}\x{3001}\x{7B11}\x{3068}\x{3044}\x{3048}\x{3069}\x{3001}\x{82E6}\x{3057}\x{307F}\x{306E}\x{3001}\x{305D}\x{3053}\x{306B}\x{3042}\x{308B}\x{3079}\x{3057}\x{3002}\x{3046}\x{3064}\x{304F}\x{3057}"
 1864 text run at (68,0) width 33: "\x{304D}\x{3001}"
18651865 RenderRuby (inline) {RUBY} at (0,0) size 18x22
1866  RenderRubyRun (anonymous) at (62,33) size 18x22
1867  RenderRubyText {RT} at (-13,0) size 13x22
 1866 RenderRubyRun (anonymous) at (65,33) size 24x22
 1867 RenderRubyText {RT} at (-10,0) size 15x22
18681868 RenderText {#text} at (0,0) size 13x22
18691869 text run at (0,0) width 22: "\x{304D}\x{308F}"
1870  RenderRubyBase (anonymous) at (0,0) size 18x22
 1870 RenderRubyBase (anonymous) at (0,0) size 24x22
18711871 RenderInline {RB} at (0,0) size 18x17
1872  RenderText {#text} at (0,2) size 18x17
1873  text run at (0,2) width 17: "\x{6975}"
1874  RenderText {#text} at (62,55) size 18x219
1875  text run at (62,55) width 219: "\x{307F}\x{306E}\x{6B4C}\x{306B}\x{3001}\x{60B2}\x{3057}\x{3055}\x{306E}\x{3001}\x{6975}\x{307F}\x{306E}"
 1872 RenderText {#text} at (3,2) size 18x17
 1873 text run at (3,2) width 17: "\x{6975}"
 1874 RenderText {#text} at (68,55) size 18x219
 1875 text run at (68,55) width 219: "\x{307F}\x{306E}\x{6B4C}\x{306B}\x{3001}\x{60B2}\x{3057}\x{3055}\x{306E}\x{3001}\x{6975}\x{307F}\x{306E}"
18761876 RenderRuby (inline) {RUBY} at (0,0) size 18x33
1877  RenderRubyRun (anonymous) at (62,274) size 18x33
1878  RenderRubyText {RT} at (-13,0) size 13x33
 1877 RenderRubyRun (anonymous) at (65,274) size 24x33
 1878 RenderRubyText {RT} at (-10,0) size 15x33
18791879 RenderText {#text} at (0,0) size 13x33
18801880 text run at (0,0) width 33: "\x{304A}\x{3082}\x{3044}"
1881  RenderRubyBase (anonymous) at (0,0) size 18x33
 1881 RenderRubyBase (anonymous) at (0,0) size 24x33
18821882 RenderInline {RB} at (0,0) size 18x17
1883  RenderText {#text} at (0,8) size 18x17
1884  text run at (0,8) width 17: "\x{60F3}"
1885  RenderText {#text} at (62,307) size 18x17
1886  text run at (62,307) width 17: "\x{3001}"
 1883 RenderText {#text} at (3,8) size 18x17
 1884 text run at (3,8) width 17: "\x{60F3}"
 1885 RenderText {#text} at (68,307) size 18x17
 1886 text run at (68,307) width 17: "\x{3001}"
18871887 RenderRuby (inline) {RUBY} at (0,0) size 18x22
1888  RenderRubyRun (anonymous) at (62,324) size 18x22
1889  RenderRubyText {RT} at (-13,0) size 13x22
 1888 RenderRubyRun (anonymous) at (65,324) size 24x22
 1889 RenderRubyText {RT} at (-10,0) size 15x22
18901890 RenderText {#text} at (0,0) size 13x22
18911891 text run at (0,0) width 22: "\x{3053}\x{3082}"
1892  RenderRubyBase (anonymous) at (0,0) size 18x22
 1892 RenderRubyBase (anonymous) at (0,0) size 24x22
18931893 RenderInline {RB} at (0,0) size 18x17
1894  RenderText {#text} at (0,2) size 18x17
1895  text run at (0,2) width 17: "\x{7C60}"
1896  RenderText {#text} at (62,346) size 18x101
1897  text run at (62,346) width 101: "\x{308B}\x{3068}\x{305E}\x{77E5}\x{308C}\x{300D}"
1898  RenderBR {BR} at (62,447) size 18x0
1899  RenderText {#text} at (80,0) size 49x452
1900  text run at (80,0) width 452: "\x{3000}\x{306A}\x{308B}\x{307B}\x{3069}\x{3044}\x{304F}\x{3089}\x{8A69}\x{4EBA}\x{304C}\x{5E78}\x{798F}\x{3067}\x{3082}\x{3001}\x{3042}\x{306E}\x{96F2}\x{96C0}\x{306E}\x{3088}\x{3046}\x{306B}\x{601D}\x{3044}\x{5207}\x{3063}"
1901  text run at (111,0) width 371: "\x{3066}\x{3001}\x{4E00}\x{5FC3}\x{4E0D}\x{4E71}\x{306B}\x{3001}\x{524D}\x{5F8C}\x{3092}\x{5FD8}\x{5374}\x{3057}\x{3066}\x{3001}\x{308F}\x{304C}\x{559C}\x{3073}\x{3092}\x{6B4C}\x{3046}"
 1894 RenderText {#text} at (3,2) size 18x17
 1895 text run at (3,2) width 17: "\x{7C60}"
 1896 RenderText {#text} at (68,346) size 18x101
 1897 text run at (68,346) width 101: "\x{308B}\x{3068}\x{305E}\x{77E5}\x{308C}\x{300D}"
 1898 RenderBR {BR} at (68,447) size 18x0
 1899 RenderText {#text} at (92,0) size 49x452
 1900 text run at (92,0) width 452: "\x{3000}\x{306A}\x{308B}\x{307B}\x{3069}\x{3044}\x{304F}\x{3089}\x{8A69}\x{4EBA}\x{304C}\x{5E78}\x{798F}\x{3067}\x{3082}\x{3001}\x{3042}\x{306E}\x{96F2}\x{96C0}\x{306E}\x{3088}\x{3046}\x{306B}\x{601D}\x{3044}\x{5207}\x{3063}"
 1901 text run at (123,0) width 371: "\x{3066}\x{3001}\x{4E00}\x{5FC3}\x{4E0D}\x{4E71}\x{306B}\x{3001}\x{524D}\x{5F8C}\x{3092}\x{5FD8}\x{5374}\x{3057}\x{3066}\x{3001}\x{308F}\x{304C}\x{559C}\x{3073}\x{3092}\x{6B4C}\x{3046}"
19021902 RenderRuby (inline) {RUBY} at (0,0) size 18x22
1903  RenderRubyRun (anonymous) at (111,371) size 18x22
1904  RenderRubyText {RT} at (-13,0) size 13x22
 1903 RenderRubyRun (anonymous) at (120,371) size 24x22
 1904 RenderRubyText {RT} at (-10,0) size 15x22
19051905 RenderText {#text} at (0,0) size 13x22
19061906 text run at (0,0) width 22: "\x{308F}\x{3051}"
1907  RenderRubyBase (anonymous) at (0,0) size 18x22
 1907 RenderRubyBase (anonymous) at (0,0) size 24x22
19081908 RenderInline {RB} at (0,0) size 18x17
1909  RenderText {#text} at (0,2) size 18x17
1910  text run at (0,2) width 17: "\x{8A33}"
1911  RenderText {#text} at (111,393) size 49x458
1912  text run at (111,393) width 65: "\x{306B}\x{306F}\x{884C}\x{304F}"
1913  text run at (142,0) width 355: "\x{307E}\x{3044}\x{3002}\x{897F}\x{6D0B}\x{306E}\x{8A69}\x{306F}\x{7121}\x{8AD6}\x{306E}\x{4E8B}\x{3001}\x{652F}\x{90A3}\x{306E}\x{8A69}\x{306B}\x{3082}\x{3001}\x{3088}\x{304F}"
 1909 RenderText {#text} at (3,2) size 18x17
 1910 text run at (3,2) width 17: "\x{8A33}"
 1911 RenderText {#text} at (123,393) size 49x458
 1912 text run at (123,393) width 65: "\x{306B}\x{306F}\x{884C}\x{304F}"
 1913 text run at (154,0) width 355: "\x{307E}\x{3044}\x{3002}\x{897F}\x{6D0B}\x{306E}\x{8A69}\x{306F}\x{7121}\x{8AD6}\x{306E}\x{4E8B}\x{3001}\x{652F}\x{90A3}\x{306E}\x{8A69}\x{306B}\x{3082}\x{3001}\x{3088}\x{304F}"
19141914 RenderRuby (inline) {RUBY} at (0,0) size 18x44
1915  RenderRubyRun (anonymous) at (142,355) size 18x44
1916  RenderRubyText {RT} at (-13,0) size 13x44
 1915 RenderRubyRun (anonymous) at (151,355) size 24x44
 1916 RenderRubyText {RT} at (-10,0) size 15x44
19171917 RenderText {#text} at (0,0) size 13x44
19181918 text run at (0,0) width 44: "\x{3070}\x{3093}\x{3053}\x{304F}"
1919  RenderRubyBase (anonymous) at (0,0) size 18x44
 1919 RenderRubyBase (anonymous) at (0,0) size 24x44
19201920 RenderInline {RB} at (0,0) size 18x34
1921  RenderText {#text} at (0,5) size 18x34
1922  text run at (0,5) width 34: "\x{4E07}\x{659B}"
1923  RenderText {#text} at (142,399) size 18x17
1924  text run at (142,399) width 17: "\x{306E}"
 1921 RenderText {#text} at (3,5) size 18x34
 1922 text run at (3,5) width 34: "\x{4E07}\x{659B}"
 1923 RenderText {#text} at (154,399) size 18x17
 1924 text run at (154,399) width 17: "\x{306E}"
19251925 RenderRuby (inline) {RUBY} at (0,0) size 18x33
1926  RenderRubyRun (anonymous) at (142,416) size 18x33
1927  RenderRubyText {RT} at (-13,0) size 13x33
 1926 RenderRubyRun (anonymous) at (151,416) size 24x33
 1927 RenderRubyText {RT} at (-10,0) size 15x33
19281928 RenderText {#text} at (0,0) size 13x33
19291929 text run at (0,0) width 33: "\x{3046}\x{308C}\x{3044}"
1930  RenderRubyBase (anonymous) at (0,0) size 18x33
 1930 RenderRubyBase (anonymous) at (0,0) size 24x33
19311931 RenderInline {RB} at (0,0) size 18x17
1932  RenderText {#text} at (0,8) size 18x17
1933  text run at (0,8) width 17: "\x{6101}"
1934  RenderText {#text} at (142,449) size 49x466
1935  text run at (142,449) width 17: "\x{306A}"
1936  text run at (173,0) width 274: "\x{3069}\x{3068}\x{4E91}\x{3046}\x{5B57}\x{304C}\x{3042}\x{308B}\x{3002}\x{8A69}\x{4EBA}\x{3060}\x{304B}\x{3089}\x{4E07}\x{659B}\x{3067}"
 1932 RenderText {#text} at (3,8) size 18x17
 1933 text run at (3,8) width 17: "\x{6101}"
 1934 RenderText {#text} at (154,449) size 49x466
 1935 text run at (154,449) width 17: "\x{306A}"
 1936 text run at (185,0) width 274: "\x{3069}\x{3068}\x{4E91}\x{3046}\x{5B57}\x{304C}\x{3042}\x{308B}\x{3002}\x{8A69}\x{4EBA}\x{3060}\x{304B}\x{3089}\x{4E07}\x{659B}\x{3067}"
19371937 RenderRuby (inline) {RUBY} at (0,0) size 18x44
1938  RenderRubyRun (anonymous) at (173,274) size 18x44
1939  RenderRubyText {RT} at (-13,0) size 13x44
 1938 RenderRubyRun (anonymous) at (182,274) size 24x44
 1939 RenderRubyText {RT} at (-10,0) size 15x44
19401940 RenderText {#text} at (0,0) size 13x44
19411941 text run at (0,0) width 44: "\x{3057}\x{308D}\x{3046}\x{3068}"
1942  RenderRubyBase (anonymous) at (0,0) size 18x44
 1942 RenderRubyBase (anonymous) at (0,0) size 24x44
19431943 RenderInline {RB} at (0,0) size 18x34
1944  RenderText {#text} at (0,5) size 18x34
1945  text run at (0,5) width 34: "\x{7D20}\x{4EBA}"
1946  RenderText {#text} at (173,318) size 18x51
1947  text run at (173,318) width 51: "\x{306A}\x{3089}\x{4E00}"
 1944 RenderText {#text} at (3,5) size 18x34
 1945 text run at (3,5) width 34: "\x{7D20}\x{4EBA}"
 1946 RenderText {#text} at (185,318) size 18x51
 1947 text run at (185,318) width 51: "\x{306A}\x{3089}\x{4E00}"
19481948 RenderRuby (inline) {RUBY} at (0,0) size 18x22
1949  RenderRubyRun (anonymous) at (173,369) size 18x22
1950  RenderRubyText {RT} at (-13,0) size 13x22
 1949 RenderRubyRun (anonymous) at (182,369) size 24x22
 1950 RenderRubyText {RT} at (-10,0) size 15x22
19511951 RenderText {#text} at (0,0) size 13x22
19521952 text run at (0,0) width 22: "\x{3054}\x{3046}"
1953  RenderRubyBase (anonymous) at (0,0) size 18x22
 1953 RenderRubyBase (anonymous) at (0,0) size 24x22
19541954 RenderInline {RB} at (0,0) size 18x17
1955  RenderText {#text} at (0,2) size 18x17
1956  text run at (0,2) width 17: "\x{5408}"
1957  RenderText {#text} at (173,391) size 49x472
1958  text run at (173,391) width 81: "\x{3067}\x{6E08}\x{3080}\x{304B}\x{3082}"
1959  text run at (204,0) width 371: "\x{77E5}\x{308C}\x{306C}\x{3002}\x{3057}\x{3066}\x{898B}\x{308B}\x{3068}\x{8A69}\x{4EBA}\x{306F}\x{5E38}\x{306E}\x{4EBA}\x{3088}\x{308A}\x{3082}\x{82E6}\x{52B4}\x{6027}\x{3067}\x{3001}"
 1955 RenderText {#text} at (3,2) size 18x17
 1956 text run at (3,2) width 17: "\x{5408}"
 1957 RenderText {#text} at (185,391) size 49x472
 1958 text run at (185,391) width 81: "\x{3067}\x{6E08}\x{3080}\x{304B}\x{3082}"
 1959 text run at (216,0) width 371: "\x{77E5}\x{308C}\x{306C}\x{3002}\x{3057}\x{3066}\x{898B}\x{308B}\x{3068}\x{8A69}\x{4EBA}\x{306F}\x{5E38}\x{306E}\x{4EBA}\x{3088}\x{308A}\x{3082}\x{82E6}\x{52B4}\x{6027}\x{3067}\x{3001}"
19601960 RenderRuby (inline) {RUBY} at (0,0) size 18x44
1961  RenderRubyRun (anonymous) at (204,371) size 18x44
1962  RenderRubyText {RT} at (-13,0) size 13x44
 1961 RenderRubyRun (anonymous) at (213,371) size 24x44
 1962 RenderRubyText {RT} at (-10,0) size 15x44
19631963 RenderText {#text} at (0,0) size 13x44
19641964 text run at (0,0) width 44: "\x{307C}\x{3093}\x{3053}\x{3064}"
1965  RenderRubyBase (anonymous) at (0,0) size 18x44
 1965 RenderRubyBase (anonymous) at (0,0) size 24x44
19661966 RenderInline {RB} at (0,0) size 18x34
1967  RenderText {#text} at (0,5) size 18x34
1968  text run at (0,5) width 34: "\x{51E1}\x{9AA8}"
1969  RenderText {#text} at (204,415) size 36x468
1970  text run at (204,415) width 49: "\x{306E}\x{500D}\x{4EE5}"
1971  text run at (222,0) width 468: "\x{4E0A}\x{306B}\x{795E}\x{7D4C}\x{304C}\x{92ED}\x{654F}\x{306A}\x{306E}\x{304B}\x{3082}\x{77E5}\x{308C}\x{3093}\x{3002}\x{8D85}\x{4FD7}\x{306E}\x{559C}\x{3073}\x{3082}\x{3042}\x{308D}\x{3046}\x{304C}\x{3001}\x{7121}\x{91CF}\x{306E}"
 1967 RenderText {#text} at (3,5) size 18x34
 1968 text run at (3,5) width 34: "\x{51E1}\x{9AA8}"
 1969 RenderText {#text} at (216,415) size 42x468
 1970 text run at (216,415) width 49: "\x{306E}\x{500D}\x{4EE5}"
 1971 text run at (240,0) width 468: "\x{4E0A}\x{306B}\x{795E}\x{7D4C}\x{304C}\x{92ED}\x{654F}\x{306A}\x{306E}\x{304B}\x{3082}\x{77E5}\x{308C}\x{3093}\x{3002}\x{8D85}\x{4FD7}\x{306E}\x{559C}\x{3073}\x{3082}\x{3042}\x{308D}\x{3046}\x{304C}\x{3001}\x{7121}\x{91CF}\x{306E}"
19721972 RenderRuby (inline) {RUBY} at (0,0) size 18x44
1973  RenderRubyRun (anonymous) at (253,0) size 18x44
1974  RenderRubyText {RT} at (-13,0) size 13x44
 1973 RenderRubyRun (anonymous) at (268,0) size 24x44
 1974 RenderRubyText {RT} at (-10,0) size 15x44
19751975 RenderText {#text} at (0,0) size 13x44
19761976 text run at (0,0) width 44: "\x{304B}\x{306A}\x{3057}\x{307F}"
1977  RenderRubyBase (anonymous) at (0,0) size 18x44
 1977 RenderRubyBase (anonymous) at (0,0) size 24x44
19781978 RenderInline {RB} at (0,0) size 18x17
1979  RenderText {#text} at (0,13) size 18x17
1980  text run at (0,13) width 17: "\x{60B2}"
1981  RenderText {#text} at (253,44) size 18x389
1982  text run at (253,44) width 389: "\x{3082}\x{591A}\x{304B}\x{308D}\x{3046}\x{3002}\x{305D}\x{3093}\x{306A}\x{3089}\x{3070}\x{8A69}\x{4EBA}\x{306B}\x{306A}\x{308B}\x{306E}\x{3082}\x{8003}\x{3048}\x{7269}\x{3060}\x{3002}"
1983  RenderBR {BR} at (253,433) size 18x0
1984  RenderText {#text} at (284,0) size 18x129
1985  text run at (284,0) width 129: "\x{3000}\x{3057}\x{3070}\x{3089}\x{304F}\x{306F}\x{8DEF}\x{304C}"
 1979 RenderText {#text} at (3,13) size 18x17
 1980 text run at (3,13) width 17: "\x{60B2}"
 1981 RenderText {#text} at (271,44) size 18x389
 1982 text run at (271,44) width 389: "\x{3082}\x{591A}\x{304B}\x{308D}\x{3046}\x{3002}\x{305D}\x{3093}\x{306A}\x{3089}\x{3070}\x{8A69}\x{4EBA}\x{306B}\x{306A}\x{308B}\x{306E}\x{3082}\x{8003}\x{3048}\x{7269}\x{3060}\x{3002}"
 1983 RenderBR {BR} at (271,433) size 18x0
 1984 RenderText {#text} at (302,0) size 18x129
 1985 text run at (302,0) width 129: "\x{3000}\x{3057}\x{3070}\x{3089}\x{304F}\x{306F}\x{8DEF}\x{304C}"
19861986 RenderRuby (inline) {RUBY} at (0,0) size 18x33
1987  RenderRubyRun (anonymous) at (284,129) size 18x33
1988  RenderRubyText {RT} at (-13,0) size 13x33
 1987 RenderRubyRun (anonymous) at (299,129) size 24x33
 1988 RenderRubyText {RT} at (-10,0) size 15x33
19891989 RenderText {#text} at (0,0) size 13x33
19901990 text run at (0,0) width 33: "\x{305F}\x{3044}\x{3089}"
1991  RenderRubyBase (anonymous) at (0,0) size 18x33
 1991 RenderRubyBase (anonymous) at (0,0) size 24x33
19921992 RenderInline {RB} at (0,0) size 18x17
1993  RenderText {#text} at (0,8) size 18x17
1994  text run at (0,8) width 17: "\x{5E73}"
1995  RenderText {#text} at (284,162) size 18x67
1996  text run at (284,162) width 67: "\x{3067}\x{3001}\x{53F3}\x{306F}"
 1993 RenderText {#text} at (3,8) size 18x17
 1994 text run at (3,8) width 17: "\x{5E73}"
 1995 RenderText {#text} at (302,162) size 18x67
 1996 text run at (302,162) width 67: "\x{3067}\x{3001}\x{53F3}\x{306F}"
19971997 RenderRuby (inline) {RUBY} at (0,0) size 18x55
1998  RenderRubyRun (anonymous) at (284,229) size 18x55
1999  RenderRubyText {RT} at (-13,0) size 13x55
 1998 RenderRubyRun (anonymous) at (299,229) size 24x55
 1999 RenderRubyText {RT} at (-10,0) size 15x55
20002000 RenderText {#text} at (0,0) size 13x55
20012001 text run at (0,0) width 55: "\x{305E}\x{3046}\x{304D}\x{3084}\x{307E}"
2002  RenderRubyBase (anonymous) at (0,0) size 18x55
 2002 RenderRubyBase (anonymous) at (0,0) size 24x55
20032003 RenderInline {RB} at (0,0) size 18x51
2004  RenderText {#text} at (0,2) size 18x51
2005  text run at (0,2) width 51: "\x{96D1}\x{6728}\x{5C71}"
2006  RenderText {#text} at (284,284) size 49x462
2007  text run at (284,284) width 178: "\x{3001}\x{5DE6}\x{306F}\x{83DC}\x{306E}\x{82B1}\x{306E}\x{898B}\x{3064}\x{3065}\x{3051}"
2008  text run at (315,0) width 162: "\x{3067}\x{3042}\x{308B}\x{3002}\x{8DB3}\x{306E}\x{4E0B}\x{306B}\x{6642}\x{3005}"
 2004 RenderText {#text} at (3,2) size 18x51
 2005 text run at (3,2) width 51: "\x{96D1}\x{6728}\x{5C71}"
 2006 RenderText {#text} at (302,284) size 49x462
 2007 text run at (302,284) width 178: "\x{3001}\x{5DE6}\x{306F}\x{83DC}\x{306E}\x{82B1}\x{306E}\x{898B}\x{3064}\x{3065}\x{3051}"
 2008 text run at (333,0) width 162: "\x{3067}\x{3042}\x{308B}\x{3002}\x{8DB3}\x{306E}\x{4E0B}\x{306B}\x{6642}\x{3005}"
20092009 RenderRuby (inline) {RUBY} at (0,0) size 18x51
2010  RenderRubyRun (anonymous) at (315,162) size 18x51
2011  RenderRubyText {RT} at (-13,0) size 13x51
 2010 RenderRubyRun (anonymous) at (330,162) size 24x51
 2011 RenderRubyText {RT} at (-10,0) size 15x51
20122012 RenderText {#text} at (0,3) size 13x44
20132013 text run at (0,3) width 44: "\x{305F}\x{3093}\x{307D}\x{307D}"
2014  RenderRubyBase (anonymous) at (0,0) size 18x51
 2014 RenderRubyBase (anonymous) at (0,0) size 24x51
20152015 RenderInline {RB} at (0,0) size 18x51
2016  RenderText {#text} at (0,0) size 18x51
2017  text run at (0,0) width 51: "\x{84B2}\x{516C}\x{82F1}"
2018  RenderText {#text} at (315,213) size 18x118
2019  text run at (315,213) width 118: "\x{3092}\x{8E0F}\x{307F}\x{3064}\x{3051}\x{308B}\x{3002}"
 2016 RenderText {#text} at (3,0) size 18x51
 2017 text run at (3,0) width 51: "\x{84B2}\x{516C}\x{82F1}"
 2018 RenderText {#text} at (333,213) size 18x118
 2019 text run at (333,213) width 118: "\x{3092}\x{8E0F}\x{307F}\x{3064}\x{3051}\x{308B}\x{3002}"
20202020 RenderRuby (inline) {RUBY} at (0,0) size 18x44
2021  RenderRubyRun (anonymous) at (315,331) size 18x44
2022  RenderRubyText {RT} at (-13,0) size 13x44
 2021 RenderRubyRun (anonymous) at (330,331) size 24x44
 2022 RenderRubyText {RT} at (-10,0) size 15x44
20232023 RenderText {#text} at (0,0) size 13x44
20242024 text run at (0,0) width 44: "\x{306E}\x{3053}\x{304E}\x{308A}"
2025  RenderRubyBase (anonymous) at (0,0) size 18x44
 2025 RenderRubyBase (anonymous) at (0,0) size 24x44
20262026 RenderInline {RB} at (0,0) size 18x17
2027  RenderText {#text} at (0,13) size 18x17
2028  text run at (0,13) width 17: "\x{92F8}"
2029  RenderText {#text} at (315,375) size 49x472
2030  text run at (315,375) width 97: "\x{306E}\x{3088}\x{3046}\x{306A}\x{8449}\x{304C}"
2031  text run at (346,0) width 258: "\x{9060}\x{616E}\x{306A}\x{304F}\x{56DB}\x{65B9}\x{3078}\x{306E}\x{3057}\x{3066}\x{771F}\x{4E2D}\x{306B}\x{9EC4}\x{8272}\x{306A}"
 2027 RenderText {#text} at (3,13) size 18x17
 2028 text run at (3,13) width 17: "\x{92F8}"
 2029 RenderText {#text} at (333,375) size 49x472
 2030 text run at (333,375) width 97: "\x{306E}\x{3088}\x{3046}\x{306A}\x{8449}\x{304C}"
 2031 text run at (364,0) width 258: "\x{9060}\x{616E}\x{306A}\x{304F}\x{56DB}\x{65B9}\x{3078}\x{306E}\x{3057}\x{3066}\x{771F}\x{4E2D}\x{306B}\x{9EC4}\x{8272}\x{306A}"
20322032 RenderRuby (inline) {RUBY} at (0,0) size 18x22
2033  RenderRubyRun (anonymous) at (346,258) size 18x22
2034  RenderRubyText {RT} at (-13,0) size 13x22
 2033 RenderRubyRun (anonymous) at (361,258) size 24x22
 2034 RenderRubyText {RT} at (-10,0) size 15x22
20352035 RenderText {#text} at (0,0) size 13x22
20362036 text run at (0,0) width 22: "\x{305F}\x{307E}"
2037  RenderRubyBase (anonymous) at (0,0) size 18x22
 2037 RenderRubyBase (anonymous) at (0,0) size 24x22
20382038 RenderInline {RB} at (0,0) size 18x17
2039  RenderText {#text} at (0,2) size 18x17
2040  text run at (0,2) width 17: "\x{73E0}"
2041  RenderText {#text} at (346,280) size 67x468
2042  text run at (346,280) width 178: "\x{3092}\x{64C1}\x{8B77}\x{3057}\x{3066}\x{3044}\x{308B}\x{3002}\x{83DC}\x{306E}\x{82B1}"
2043  text run at (364,0) width 468: "\x{306B}\x{6C17}\x{3092}\x{3068}\x{3089}\x{308C}\x{3066}\x{3001}\x{8E0F}\x{307F}\x{3064}\x{3051}\x{305F}\x{3042}\x{3068}\x{3067}\x{3001}\x{6C17}\x{306E}\x{6BD2}\x{306A}\x{4E8B}\x{3092}\x{3057}\x{305F}\x{3068}\x{3001}\x{632F}\x{308A}"
2044  text run at (395,0) width 355: "\x{5411}\x{3044}\x{3066}\x{898B}\x{308B}\x{3068}\x{3001}\x{9EC4}\x{8272}\x{306A}\x{73E0}\x{306F}\x{4F9D}\x{7136}\x{3068}\x{3057}\x{3066}\x{92F8}\x{306E}\x{306A}\x{304B}\x{306B}"
 2039 RenderText {#text} at (3,2) size 18x17
 2040 text run at (3,2) width 17: "\x{73E0}"
 2041 RenderText {#text} at (364,280) size 73x468
 2042 text run at (364,280) width 178: "\x{3092}\x{64C1}\x{8B77}\x{3057}\x{3066}\x{3044}\x{308B}\x{3002}\x{83DC}\x{306E}\x{82B1}"
 2043 text run at (388,0) width 468: "\x{306B}\x{6C17}\x{3092}\x{3068}\x{3089}\x{308C}\x{3066}\x{3001}\x{8E0F}\x{307F}\x{3064}\x{3051}\x{305F}\x{3042}\x{3068}\x{3067}\x{3001}\x{6C17}\x{306E}\x{6BD2}\x{306A}\x{4E8B}\x{3092}\x{3057}\x{305F}\x{3068}\x{3001}\x{632F}\x{308A}"
 2044 text run at (419,0) width 355: "\x{5411}\x{3044}\x{3066}\x{898B}\x{308B}\x{3068}\x{3001}\x{9EC4}\x{8272}\x{306A}\x{73E0}\x{306F}\x{4F9D}\x{7136}\x{3068}\x{3057}\x{3066}\x{92F8}\x{306E}\x{306A}\x{304B}\x{306B}"
20452045 RenderRuby (inline) {RUBY} at (0,0) size 18x34
2046  RenderRubyRun (anonymous) at (395,355) size 18x34
2047  RenderRubyText {RT} at (-13,0) size 13x34
 2046 RenderRubyRun (anonymous) at (416,355) size 24x34
 2047 RenderRubyText {RT} at (-10,0) size 15x34
20482048 RenderText {#text} at (0,0) size 13x33
20492049 text run at (0,0) width 33: "\x{3061}\x{3093}\x{3056}"
2050  RenderRubyBase (anonymous) at (0,0) size 18x34
 2050 RenderRubyBase (anonymous) at (0,0) size 24x34
20512051 RenderInline {RB} at (0,0) size 18x34
2052  RenderText {#text} at (0,0) size 18x34
2053  text run at (0,0) width 34: "\x{93AE}\x{5EA7}"
2054  RenderText {#text} at (395,389) size 18x84
2055  text run at (395,389) width 84: "\x{3057}\x{3066}\x{3044}\x{308B}\x{3002}"
 2052 RenderText {#text} at (3,0) size 18x34
 2053 text run at (3,0) width 34: "\x{93AE}\x{5EA7}"
 2054 RenderText {#text} at (419,389) size 18x84
 2055 text run at (419,389) width 84: "\x{3057}\x{3066}\x{3044}\x{308B}\x{3002}"
20562056 RenderRuby (inline) {RUBY} at (0,0) size 18x34
2057  RenderRubyRun (anonymous) at (426,0) size 18x34
2058  RenderRubyText {RT} at (-13,0) size 13x34
 2057 RenderRubyRun (anonymous) at (447,0) size 24x34
 2058 RenderRubyText {RT} at (-10,0) size 15x34
20592059 RenderText {#text} at (0,0) size 13x33
20602060 text run at (0,0) width 33: "\x{306E}\x{3093}\x{304D}"
2061  RenderRubyBase (anonymous) at (0,0) size 18x34
 2061 RenderRubyBase (anonymous) at (0,0) size 24x34
20622062 RenderInline {RB} at (0,0) size 18x34
2063  RenderText {#text} at (0,0) size 18x34
2064  text run at (0,0) width 34: "\x{5451}\x{6C17}"
2065  RenderText {#text} at (426,34) size 18x253
2066  text run at (426,34) width 253: "\x{306A}\x{3082}\x{306E}\x{3060}\x{3002}\x{307E}\x{305F}\x{8003}\x{3048}\x{3092}\x{3064}\x{3065}\x{3051}\x{308B}\x{3002}"
2067  RenderBR {BR} at (426,287) size 18x0
2068  RenderText {#text} at (457,0) size 18x65
2069  text run at (457,0) width 65: "\x{3000}\x{8A69}\x{4EBA}\x{306B}"
 2063 RenderText {#text} at (3,0) size 18x34
 2064 text run at (3,0) width 34: "\x{5451}\x{6C17}"
 2065 RenderText {#text} at (450,34) size 18x253
 2066 text run at (450,34) width 253: "\x{306A}\x{3082}\x{306E}\x{3060}\x{3002}\x{307E}\x{305F}\x{8003}\x{3048}\x{3092}\x{3064}\x{3065}\x{3051}\x{308B}\x{3002}"
 2067 RenderBR {BR} at (450,287) size 18x0
 2068 RenderText {#text} at (481,0) size 18x65
 2069 text run at (481,0) width 65: "\x{3000}\x{8A69}\x{4EBA}\x{306B}"
20702070 RenderRuby (inline) {RUBY} at (0,0) size 18x33
2071  RenderRubyRun (anonymous) at (457,65) size 18x33
2072  RenderRubyText {RT} at (-13,0) size 13x33
 2071 RenderRubyRun (anonymous) at (478,65) size 24x33
 2072 RenderRubyText {RT} at (-10,0) size 15x33
20732073 RenderText {#text} at (0,0) size 13x33
20742074 text run at (0,0) width 33: "\x{3046}\x{308C}\x{3044}"
2075  RenderRubyBase (anonymous) at (0,0) size 18x33
 2075 RenderRubyBase (anonymous) at (0,0) size 24x33
20762076 RenderInline {RB} at (0,0) size 18x17
2077  RenderText {#text} at (0,8) size 18x17
2078  text run at (0,8) width 17: "\x{6182}"
2079  RenderText {#text} at (457,98) size 18x254
2080  text run at (457,98) width 254: "\x{306F}\x{3064}\x{304D}\x{3082}\x{306E}\x{304B}\x{3082}\x{77E5}\x{308C}\x{306A}\x{3044}\x{304C}\x{3001}\x{3042}\x{306E}"
 2077 RenderText {#text} at (3,8) size 18x17
 2078 text run at (3,8) width 17: "\x{6182}"
 2079 RenderText {#text} at (481,98) size 18x254
 2080 text run at (481,98) width 254: "\x{306F}\x{3064}\x{304D}\x{3082}\x{306E}\x{304B}\x{3082}\x{77E5}\x{308C}\x{306A}\x{3044}\x{304C}\x{3001}\x{3042}\x{306E}"
20812081 RenderRuby (inline) {RUBY} at (0,0) size 18x34
2082  RenderRubyRun (anonymous) at (457,352) size 18x34
2083  RenderRubyText {RT} at (-13,0) size 13x34
 2082 RenderRubyRun (anonymous) at (478,352) size 24x34
 2083 RenderRubyText {RT} at (-10,0) size 15x34
20842084 RenderText {#text} at (0,0) size 13x33
20852085 text run at (0,0) width 33: "\x{3072}\x{3070}\x{308A}"
2086  RenderRubyBase (anonymous) at (0,0) size 18x34
 2086 RenderRubyBase (anonymous) at (0,0) size 24x34
20872087 RenderInline {RB} at (0,0) size 18x34
2088  RenderText {#text} at (0,0) size 18x34
2089  text run at (0,0) width 34: "\x{96F2}\x{96C0}"
2090  RenderText {#text} at (457,386) size 49x483
2091  text run at (457,386) width 97: "\x{3092}\x{805E}\x{304F}\x{5FC3}\x{6301}\x{306B}"
2092  text run at (488,0) width 49: "\x{306A}\x{308C}\x{3070}"
 2088 RenderText {#text} at (3,0) size 18x34
 2089 text run at (3,0) width 34: "\x{96F2}\x{96C0}"
 2090 RenderText {#text} at (481,386) size 49x483
 2091 text run at (481,386) width 97: "\x{3092}\x{805E}\x{304F}\x{5FC3}\x{6301}\x{306B}"
 2092 text run at (512,0) width 49: "\x{306A}\x{308C}\x{3070}"
20932093 RenderRuby (inline) {RUBY} at (0,0) size 18x34
2094  RenderRubyRun (anonymous) at (488,49) size 18x34
2095  RenderRubyText {RT} at (-13,0) size 13x34
 2094 RenderRubyRun (anonymous) at (509,49) size 24x34
 2095 RenderRubyText {RT} at (-10,0) size 15x34
20962096 RenderText {#text} at (0,0) size 13x33
20972097 text run at (0,0) width 33: "\x{307F}\x{3058}\x{3093}"
2098  RenderRubyBase (anonymous) at (0,0) size 18x34
 2098 RenderRubyBase (anonymous) at (0,0) size 24x34
20992099 RenderInline {RB} at (0,0) size 18x34
2100  RenderText {#text} at (0,0) size 18x34
2101  text run at (0,0) width 34: "\x{5FAE}\x{5875}"
2102  RenderText {#text} at (488,83) size 18x17
2103  text run at (488,83) width 17: "\x{306E}"
 2100 RenderText {#text} at (3,0) size 18x34
 2101 text run at (3,0) width 34: "\x{5FAE}\x{5875}"
 2102 RenderText {#text} at (512,83) size 18x17
 2103 text run at (512,83) width 17: "\x{306E}"
21042104 RenderRuby (inline) {RUBY} at (0,0) size 18x17
2105  RenderRubyRun (anonymous) at (488,100) size 18x17
2106  RenderRubyText {RT} at (-13,0) size 13x17
 2105 RenderRubyRun (anonymous) at (509,100) size 24x17
 2106 RenderRubyText {RT} at (-10,0) size 15x17
21072107 RenderText {#text} at (0,3) size 13x11
21082108 text run at (0,3) width 11: "\x{304F}"
2109  RenderRubyBase (anonymous) at (0,0) size 18x17
 2109 RenderRubyBase (anonymous) at (0,0) size 24x17
21102110 RenderInline {RB} at (0,0) size 18x17
2111  RenderText {#text} at (0,0) size 18x17
2112  text run at (0,0) width 17: "\x{82E6}"
2113  RenderText {#text} at (488,117) size 18x355
2114  text run at (488,117) width 355: "\x{3082}\x{306A}\x{3044}\x{3002}\x{83DC}\x{306E}\x{82B1}\x{3092}\x{898B}\x{3066}\x{3082}\x{3001}\x{305F}\x{3060}\x{3046}\x{308C}\x{3057}\x{304F}\x{3066}\x{80F8}\x{304C}"
 2111 RenderText {#text} at (3,0) size 18x17
 2112 text run at (3,0) width 17: "\x{82E6}"
 2113 RenderText {#text} at (512,117) size 18x355
 2114 text run at (512,117) width 355: "\x{3082}\x{306A}\x{3044}\x{3002}\x{83DC}\x{306E}\x{82B1}\x{3092}\x{898B}\x{3066}\x{3082}\x{3001}\x{305F}\x{3060}\x{3046}\x{308C}\x{3057}\x{304F}\x{3066}\x{80F8}\x{304C}"
21152115 RenderRuby (inline) {RUBY} at (0,0) size 18x22
2116  RenderRubyRun (anonymous) at (519,0) size 18x22
2117  RenderRubyText {RT} at (-13,0) size 13x22
 2116 RenderRubyRun (anonymous) at (540,0) size 24x22
 2117 RenderRubyText {RT} at (-10,0) size 15x22
21182118 RenderText {#text} at (0,0) size 13x22
21192119 text run at (0,0) width 22: "\x{304A}\x{3069}"
2120  RenderRubyBase (anonymous) at (0,0) size 18x22
 2120 RenderRubyBase (anonymous) at (0,0) size 24x22
21212121 RenderInline {RB} at (0,0) size 18x17
2122  RenderText {#text} at (0,2) size 18x17
2123  text run at (0,2) width 17: "\x{8E8D}"
2124  RenderText {#text} at (519,22) size 49x457
2125  text run at (519,22) width 435: "\x{308B}\x{3070}\x{304B}\x{308A}\x{3060}\x{3002}\x{84B2}\x{516C}\x{82F1}\x{3082}\x{305D}\x{306E}\x{901A}\x{308A}\x{3001}\x{685C}\x{3082}\x{2015}\x{2015}\x{685C}\x{306F}\x{3044}\x{3064}\x{304B}\x{898B}\x{3048}\x{306A}"
2126  text run at (550,0) width 258: "\x{304F}\x{306A}\x{3063}\x{305F}\x{3002}\x{3053}\x{3046}\x{5C71}\x{306E}\x{4E2D}\x{3078}\x{6765}\x{3066}\x{81EA}\x{7136}\x{306E}"
 2122 RenderText {#text} at (3,2) size 18x17
 2123 text run at (3,2) width 17: "\x{8E8D}"
 2124 RenderText {#text} at (543,22) size 49x457
 2125 text run at (543,22) width 435: "\x{308B}\x{3070}\x{304B}\x{308A}\x{3060}\x{3002}\x{84B2}\x{516C}\x{82F1}\x{3082}\x{305D}\x{306E}\x{901A}\x{308A}\x{3001}\x{685C}\x{3082}\x{2015}\x{2015}\x{685C}\x{306F}\x{3044}\x{3064}\x{304B}\x{898B}\x{3048}\x{306A}"
 2126 text run at (574,0) width 258: "\x{304F}\x{306A}\x{3063}\x{305F}\x{3002}\x{3053}\x{3046}\x{5C71}\x{306E}\x{4E2D}\x{3078}\x{6765}\x{3066}\x{81EA}\x{7136}\x{306E}"
21272127 RenderRuby (inline) {RUBY} at (0,0) size 18x44
2128  RenderRubyRun (anonymous) at (550,258) size 18x44
2129  RenderRubyText {RT} at (-13,0) size 13x44
 2128 RenderRubyRun (anonymous) at (571,258) size 24x44
 2129 RenderRubyText {RT} at (-10,0) size 15x44
21302130 RenderText {#text} at (0,0) size 13x44
21312131 text run at (0,0) width 44: "\x{3051}\x{3044}\x{3076}\x{3064}"
2132  RenderRubyBase (anonymous) at (0,0) size 18x44
 2132 RenderRubyBase (anonymous) at (0,0) size 24x44
21332133 RenderInline {RB} at (0,0) size 18x34
2134  RenderText {#text} at (0,5) size 18x34
2135  text run at (0,5) width 34: "\x{666F}\x{7269}"
2136  RenderText {#text} at (550,302) size 67x468
2137  text run at (550,302) width 162: "\x{306B}\x{63A5}\x{3059}\x{308C}\x{3070}\x{3001}\x{898B}\x{308B}\x{3082}\x{306E}"
2138  text run at (568,0) width 468: "\x{3082}\x{805E}\x{304F}\x{3082}\x{306E}\x{3082}\x{9762}\x{767D}\x{3044}\x{3002}\x{9762}\x{767D}\x{3044}\x{3060}\x{3051}\x{3067}\x{5225}\x{6BB5}\x{306E}\x{82E6}\x{3057}\x{307F}\x{3082}\x{8D77}\x{3089}\x{306C}\x{3002}\x{8D77}\x{308B}"
2139  text run at (599,0) width 97: "\x{3068}\x{3059}\x{308C}\x{3070}\x{8DB3}\x{304C}"
 2134 RenderText {#text} at (3,5) size 18x34
 2135 text run at (3,5) width 34: "\x{666F}\x{7269}"
 2136 RenderText {#text} at (574,302) size 73x468
 2137 text run at (574,302) width 162: "\x{306B}\x{63A5}\x{3059}\x{308C}\x{3070}\x{3001}\x{898B}\x{308B}\x{3082}\x{306E}"
 2138 text run at (598,0) width 468: "\x{3082}\x{805E}\x{304F}\x{3082}\x{306E}\x{3082}\x{9762}\x{767D}\x{3044}\x{3002}\x{9762}\x{767D}\x{3044}\x{3060}\x{3051}\x{3067}\x{5225}\x{6BB5}\x{306E}\x{82E6}\x{3057}\x{307F}\x{3082}\x{8D77}\x{3089}\x{306C}\x{3002}\x{8D77}\x{308B}"
 2139 text run at (629,0) width 97: "\x{3068}\x{3059}\x{308C}\x{3070}\x{8DB3}\x{304C}"
21402140 RenderRuby (inline) {RUBY} at (0,0) size 18x34
2141  RenderRubyRun (anonymous) at (599,97) size 18x34
2142  RenderRubyText {RT} at (-13,0) size 13x34
 2141 RenderRubyRun (anonymous) at (626,97) size 24x34
 2142 RenderRubyText {RT} at (-10,0) size 15x34
21432143 RenderText {#text} at (0,0) size 13x33
21442144 text run at (0,0) width 33: "\x{304F}\x{305F}\x{3073}"
2145  RenderRubyBase (anonymous) at (0,0) size 18x34
 2145 RenderRubyBase (anonymous) at (0,0) size 24x34
21462146 RenderInline {RB} at (0,0) size 18x34
2147  RenderText {#text} at (0,0) size 18x34
2148  text run at (0,0) width 34: "\x{8349}\x{81E5}"
2149  RenderText {#text} at (599,131) size 18x50
2150  text run at (599,131) width 50: "\x{308C}\x{3066}\x{3001}"
 2147 RenderText {#text} at (3,0) size 18x34
 2148 text run at (3,0) width 34: "\x{8349}\x{81E5}"
 2149 RenderText {#text} at (629,131) size 18x50
 2150 text run at (629,131) width 50: "\x{308C}\x{3066}\x{3001}"
21512151 RenderRuby (inline) {RUBY} at (0,0) size 18x22
2152  RenderRubyRun (anonymous) at (599,181) size 18x22
2153  RenderRubyText {RT} at (-13,0) size 13x22
 2152 RenderRubyRun (anonymous) at (626,181) size 24x22
 2153 RenderRubyText {RT} at (-10,0) size 15x22
21542154 RenderText {#text} at (0,0) size 13x22
21552155 text run at (0,0) width 22: "\x{3046}\x{307E}"
2156  RenderRubyBase (anonymous) at (0,0) size 18x22
 2156 RenderRubyBase (anonymous) at (0,0) size 24x22
21572157 RenderInline {RB} at (0,0) size 18x17
2158  RenderText {#text} at (0,2) size 18x17
2159  text run at (0,2) width 17: "\x{65E8}"
2160  RenderText {#text} at (599,203) size 36x461
2161  text run at (599,203) width 258: "\x{3044}\x{3082}\x{306E}\x{304C}\x{98DF}\x{3079}\x{3089}\x{308C}\x{306C}\x{304F}\x{3089}\x{3044}\x{306E}\x{4E8B}\x{3060}\x{308D}"
2162  text run at (617,0) width 33: "\x{3046}\x{3002}"
2163  RenderBR {BR} at (617,33) size 18x0
2164  RenderText {#text} at (648,0) size 18x419
2165  text run at (648,0) width 419: "\x{3000}\x{3057}\x{304B}\x{3057}\x{82E6}\x{3057}\x{307F}\x{306E}\x{306A}\x{3044}\x{306E}\x{306F}\x{306A}\x{305C}\x{3060}\x{308D}\x{3046}\x{3002}\x{305F}\x{3060}\x{3053}\x{306E}\x{666F}\x{8272}\x{3092}\x{4E00}"
 2158 RenderText {#text} at (3,2) size 18x17
 2159 text run at (3,2) width 17: "\x{65E8}"
 2160 RenderText {#text} at (629,203) size 42x461
 2161 text run at (629,203) width 258: "\x{3044}\x{3082}\x{306E}\x{304C}\x{98DF}\x{3079}\x{3089}\x{308C}\x{306C}\x{304F}\x{3089}\x{3044}\x{306E}\x{4E8B}\x{3060}\x{308D}"
 2162 text run at (653,0) width 33: "\x{3046}\x{3002}"
 2163 RenderBR {BR} at (653,33) size 18x0
 2164 RenderText {#text} at (684,0) size 18x419
 2165 text run at (684,0) width 419: "\x{3000}\x{3057}\x{304B}\x{3057}\x{82E6}\x{3057}\x{307F}\x{306E}\x{306A}\x{3044}\x{306E}\x{306F}\x{306A}\x{305C}\x{3060}\x{308D}\x{3046}\x{3002}\x{305F}\x{3060}\x{3053}\x{306E}\x{666F}\x{8272}\x{3092}\x{4E00}"
21662166 RenderRuby (inline) {RUBY} at (0,0) size 18x22
2167  RenderRubyRun (anonymous) at (648,419) size 18x22
2168  RenderRubyText {RT} at (-13,0) size 13x22
 2167 RenderRubyRun (anonymous) at (681,419) size 24x22
 2168 RenderRubyText {RT} at (-10,0) size 15x22
21692169 RenderText {#text} at (0,0) size 13x22
21702170 text run at (0,0) width 22: "\x{3077}\x{304F}"
2171  RenderRubyBase (anonymous) at (0,0) size 18x22
 2171 RenderRubyBase (anonymous) at (0,0) size 24x22
21722172 RenderInline {RB} at (0,0) size 18x17
2173  RenderText {#text} at (0,2) size 18x17
2174  text run at (0,2) width 17: "\x{5E45}"
2175  RenderText {#text} at (648,441) size 18x17
2176  text run at (648,441) width 17: "\x{306E}"
 2173 RenderText {#text} at (3,2) size 18x17
 2174 text run at (3,2) width 17: "\x{5E45}"
 2175 RenderText {#text} at (684,441) size 18x17
 2176 text run at (684,441) width 17: "\x{306E}"
21772177 RenderRuby (inline) {RUBY} at (0,0) size 18x17
2178  RenderRubyRun (anonymous) at (679,0) size 18x17
2179  RenderRubyText {RT} at (-13,0) size 13x17
 2178 RenderRubyRun (anonymous) at (712,0) size 24x17
 2179 RenderRubyText {RT} at (-10,0) size 15x17
21802180 RenderText {#text} at (0,3) size 13x11
21812181 text run at (0,3) width 11: "\x{3048}"
2182  RenderRubyBase (anonymous) at (0,0) size 18x17
 2182 RenderRubyBase (anonymous) at (0,0) size 24x17
21832183 RenderInline {RB} at (0,0) size 18x17
2184  RenderText {#text} at (0,0) size 18x17
2185  text run at (0,0) width 17: "\x{753B}"
2186  RenderText {#text} at (679,17) size 18x51
2187  text run at (679,17) width 51: "\x{3068}\x{3057}\x{3066}"
 2184 RenderText {#text} at (3,0) size 18x17
 2185 text run at (3,0) width 17: "\x{753B}"
 2186 RenderText {#text} at (715,17) size 18x51
 2187 text run at (715,17) width 51: "\x{3068}\x{3057}\x{3066}"
21882188 RenderRuby (inline) {RUBY} at (0,0) size 18x17
2189  RenderRubyRun (anonymous) at (679,68) size 18x17
2190  RenderRubyText {RT} at (-13,0) size 13x17
 2189 RenderRubyRun (anonymous) at (712,68) size 24x17
 2190 RenderRubyText {RT} at (-10,0) size 15x17
21912191 RenderText {#text} at (0,3) size 13x11
21922192 text run at (0,3) width 11: "\x{307F}"
2193  RenderRubyBase (anonymous) at (0,0) size 18x17
 2193 RenderRubyBase (anonymous) at (0,0) size 24x17
21942194 RenderInline {RB} at (0,0) size 18x17
2195  RenderText {#text} at (0,0) size 18x17
2196  text run at (0,0) width 17: "\x{89B3}"
2197  RenderText {#text} at (679,85) size 18x34
2198  text run at (679,85) width 34: "\x{3001}\x{4E00}"
 2195 RenderText {#text} at (3,0) size 18x17
 2196 text run at (3,0) width 17: "\x{89B3}"
 2197 RenderText {#text} at (715,85) size 18x34
 2198 text run at (715,85) width 34: "\x{3001}\x{4E00}"
21992199 RenderRuby (inline) {RUBY} at (0,0) size 18x22
2200  RenderRubyRun (anonymous) at (679,119) size 18x22
2201  RenderRubyText {RT} at (-13,0) size 13x22
 2200 RenderRubyRun (anonymous) at (712,119) size 24x22
 2201 RenderRubyText {RT} at (-10,0) size 15x22
22022202 RenderText {#text} at (0,0) size 13x22
22032203 text run at (0,0) width 22: "\x{304B}\x{3093}"
2204  RenderRubyBase (anonymous) at (0,0) size 18x22
 2204 RenderRubyBase (anonymous) at (0,0) size 24x22
22052205 RenderInline {RB} at (0,0) size 18x17
2206  RenderText {#text} at (0,2) size 18x17
2207  text run at (0,2) width 17: "\x{5DFB}"
2208  RenderText {#text} at (679,141) size 18x220
2209  text run at (679,141) width 220: "\x{306E}\x{8A69}\x{3068}\x{3057}\x{3066}\x{8AAD}\x{3080}\x{304B}\x{3089}\x{3067}\x{3042}\x{308B}\x{3002}"
 2206 RenderText {#text} at (3,2) size 18x17
 2207 text run at (3,2) width 17: "\x{5DFB}"
 2208 RenderText {#text} at (715,141) size 18x220
 2209 text run at (715,141) width 220: "\x{306E}\x{8A69}\x{3068}\x{3057}\x{3066}\x{8AAD}\x{3080}\x{304B}\x{3089}\x{3067}\x{3042}\x{308B}\x{3002}"
22102210 RenderRuby (inline) {RUBY} at (0,0) size 18x17
2211  RenderRubyRun (anonymous) at (679,361) size 18x17
2212  RenderRubyText {RT} at (-13,0) size 13x17
 2211 RenderRubyRun (anonymous) at (712,361) size 24x17
 2212 RenderRubyText {RT} at (-10,0) size 15x17
22132213 RenderText {#text} at (0,3) size 13x11
22142214 text run at (0,3) width 11: "\x{304C}"
2215  RenderRubyBase (anonymous) at (0,0) size 18x17
 2215 RenderRubyBase (anonymous) at (0,0) size 24x17
22162216 RenderInline {RB} at (0,0) size 18x17
2217  RenderText {#text} at (0,0) size 18x17
2218  text run at (0,0) width 17: "\x{753B}"
2219  RenderText {#text} at (679,378) size 49x475
2220  text run at (679,378) width 97: "\x{3067}\x{3042}\x{308A}\x{8A69}\x{3067}\x{3042}"
2221  text run at (710,0) width 65: "\x{308B}\x{4EE5}\x{4E0A}\x{306F}"
 2217 RenderText {#text} at (3,0) size 18x17
 2218 text run at (3,0) width 17: "\x{753B}"
 2219 RenderText {#text} at (715,378) size 49x475
 2220 text run at (715,378) width 97: "\x{3067}\x{3042}\x{308A}\x{8A69}\x{3067}\x{3042}"
 2221 text run at (746,0) width 65: "\x{308B}\x{4EE5}\x{4E0A}\x{306F}"
22222222 RenderRuby (inline) {RUBY} at (0,0) size 18x34
2223  RenderRubyRun (anonymous) at (710,65) size 18x34
2224  RenderRubyText {RT} at (-13,0) size 13x34
 2223 RenderRubyRun (anonymous) at (743,65) size 24x34
 2224 RenderRubyText {RT} at (-10,0) size 15x34
22252225 RenderText {#text} at (0,0) size 13x33
22262226 text run at (0,0) width 33: "\x{3058}\x{3081}\x{3093}"
2227  RenderRubyBase (anonymous) at (0,0) size 18x34
 2227 RenderRubyBase (anonymous) at (0,0) size 24x34
22282228 RenderInline {RB} at (0,0) size 18x34
2229  RenderText {#text} at (0,0) size 18x34
2230  text run at (0,0) width 34: "\x{5730}\x{9762}"
2231  RenderText {#text} at (710,99) size 18x388
2232  text run at (710,99) width 388: "\x{3092}\x{8CB0}\x{3063}\x{3066}\x{3001}\x{958B}\x{62D3}\x{3059}\x{308B}\x{6C17}\x{306B}\x{3082}\x{306A}\x{3089}\x{306D}\x{3070}\x{3001}\x{9244}\x{9053}\x{3092}\x{304B}\x{3051}\x{3066}"
 2229 RenderText {#text} at (3,0) size 18x34
 2230 text run at (3,0) width 34: "\x{5730}\x{9762}"
 2231 RenderText {#text} at (746,99) size 18x388
 2232 text run at (746,99) width 388: "\x{3092}\x{8CB0}\x{3063}\x{3066}\x{3001}\x{958B}\x{62D3}\x{3059}\x{308B}\x{6C17}\x{306B}\x{3082}\x{306A}\x{3089}\x{306D}\x{3070}\x{3001}\x{9244}\x{9053}\x{3092}\x{304B}\x{3051}\x{3066}"
22332233 RenderRuby (inline) {RUBY} at (0,0) size 18x44
2234  RenderRubyRun (anonymous) at (741,0) size 18x44
2235  RenderRubyText {RT} at (-13,0) size 13x44
 2234 RenderRubyRun (anonymous) at (774,0) size 24x44
 2235 RenderRubyText {RT} at (-10,0) size 15x44
22362236 RenderText {#text} at (0,0) size 13x44
22372237 text run at (0,0) width 44: "\x{3072}\x{3068}\x{3082}\x{3046}"
2238  RenderRubyBase (anonymous) at (0,0) size 18x44
 2238 RenderRubyBase (anonymous) at (0,0) size 24x44
22392239 RenderInline {RB} at (0,0) size 18x34
2240  RenderText {#text} at (0,5) size 18x34
2241  text run at (0,5) width 34: "\x{4E00}\x{5132}"
2242  RenderText {#text} at (741,44) size 18x51
2243  text run at (741,44) width 51: "\x{3051}\x{3059}\x{308B}"
 2240 RenderText {#text} at (3,5) size 18x34
 2241 text run at (3,5) width 34: "\x{4E00}\x{5132}"
 2242 RenderText {#text} at (777,44) size 18x51
 2243 text run at (777,44) width 51: "\x{3051}\x{3059}\x{308B}"
22442244 RenderRuby (inline) {RUBY} at (0,0) size 18x54
2245  RenderRubyRun (anonymous) at (741,95) size 18x54
2246  RenderRubyText {RT} at (-13,0) size 13x54
 2245 RenderRubyRun (anonymous) at (774,95) size 24x54
 2246 RenderRubyText {RT} at (-10,0) size 15x54
22472247 RenderText {#text} at (0,0) size 13x54
22482248 text run at (0,0) width 54: "\x{308A}\x{3087}\x{3046}\x{3051}\x{3093}"
2249  RenderRubyBase (anonymous) at (0,0) size 18x54
 2249 RenderRubyBase (anonymous) at (0,0) size 24x54
22502250 RenderInline {RB} at (0,0) size 18x34
2251  RenderText {#text} at (0,10) size 18x34
2252  text run at (0,10) width 34: "\x{4E86}\x{898B}"
2253  RenderText {#text} at (741,149) size 18x269
2254  text run at (741,149) width 269: "\x{3082}\x{8D77}\x{3089}\x{306C}\x{3002}\x{305F}\x{3060}\x{3053}\x{306E}\x{666F}\x{8272}\x{304C}\x{2015}\x{2015}\x{8179}\x{306E}"
 2251 RenderText {#text} at (3,10) size 18x34
 2252 text run at (3,10) width 34: "\x{4E86}\x{898B}"
 2253 RenderText {#text} at (777,149) size 18x269
 2254 text run at (777,149) width 269: "\x{3082}\x{8D77}\x{3089}\x{306C}\x{3002}\x{305F}\x{3060}\x{3053}\x{306E}\x{666F}\x{8272}\x{304C}\x{2015}\x{2015}\x{8179}\x{306E}"
22552255 RenderRuby (inline) {RUBY} at (0,0) size 18x17
2256  RenderRubyRun (anonymous) at (741,418) size 18x17
2257  RenderRubyText {RT} at (-13,0) size 13x17
 2256 RenderRubyRun (anonymous) at (774,418) size 24x17
 2257 RenderRubyText {RT} at (-10,0) size 15x17
22582258 RenderText {#text} at (0,3) size 13x11
22592259 text run at (0,3) width 11: "\x{305F}"
2260  RenderRubyBase (anonymous) at (0,0) size 18x17
 2260 RenderRubyBase (anonymous) at (0,0) size 24x17
22612261 RenderInline {RB} at (0,0) size 18x17
2262  RenderText {#text} at (0,0) size 18x17
2263  text run at (0,0) width 17: "\x{8DB3}"
2264  RenderText {#text} at (741,435) size 67x484
2265  text run at (741,435) width 49: "\x{3057}\x{306B}\x{3082}"
2266  text run at (759,0) width 468: "\x{306A}\x{3089}\x{306C}\x{3001}\x{6708}\x{7D66}\x{306E}\x{88DC}\x{3044}\x{306B}\x{3082}\x{306A}\x{3089}\x{306C}\x{3053}\x{306E}\x{666F}\x{8272}\x{304C}\x{666F}\x{8272}\x{3068}\x{3057}\x{3066}\x{306E}\x{307F}\x{3001}\x{4F59}\x{304C}"
2267  text run at (790,0) width 274: "\x{5FC3}\x{3092}\x{697D}\x{307E}\x{305B}\x{3064}\x{3064}\x{3042}\x{308B}\x{304B}\x{3089}\x{82E6}\x{52B4}\x{3082}\x{5FC3}\x{914D}\x{3082}"
 2262 RenderText {#text} at (3,0) size 18x17
 2263 text run at (3,0) width 17: "\x{8DB3}"
 2264 RenderText {#text} at (777,435) size 73x484
 2265 text run at (777,435) width 49: "\x{3057}\x{306B}\x{3082}"
 2266 text run at (801,0) width 468: "\x{306A}\x{3089}\x{306C}\x{3001}\x{6708}\x{7D66}\x{306E}\x{88DC}\x{3044}\x{306B}\x{3082}\x{306A}\x{3089}\x{306C}\x{3053}\x{306E}\x{666F}\x{8272}\x{304C}\x{666F}\x{8272}\x{3068}\x{3057}\x{3066}\x{306E}\x{307F}\x{3001}\x{4F59}\x{304C}"
 2267 text run at (832,0) width 274: "\x{5FC3}\x{3092}\x{697D}\x{307E}\x{305B}\x{3064}\x{3064}\x{3042}\x{308B}\x{304B}\x{3089}\x{82E6}\x{52B4}\x{3082}\x{5FC3}\x{914D}\x{3082}"
22682268 RenderRuby (inline) {RUBY} at (0,0) size 18x33
2269  RenderRubyRun (anonymous) at (790,274) size 18x33
2270  RenderRubyText {RT} at (-13,0) size 13x33
 2269 RenderRubyRun (anonymous) at (829,274) size 24x33
 2270 RenderRubyText {RT} at (-10,0) size 15x33
22712271 RenderText {#text} at (0,0) size 13x33
22722272 text run at (0,0) width 33: "\x{3068}\x{3082}\x{306A}"
2273  RenderRubyBase (anonymous) at (0,0) size 18x33
 2273 RenderRubyBase (anonymous) at (0,0) size 24x33
22742274 RenderInline {RB} at (0,0) size 18x17
2275  RenderText {#text} at (0,8) size 18x17
2276  text run at (0,8) width 17: "\x{4F34}"
2277  RenderText {#text} at (790,307) size 49x469
2278  text run at (790,307) width 162: "\x{308F}\x{306C}\x{306E}\x{3060}\x{308D}\x{3046}\x{3002}\x{81EA}\x{7136}\x{306E}"
2279  text run at (821,0) width 129: "\x{529B}\x{306F}\x{3053}\x{3053}\x{306B}\x{304A}\x{3044}\x{3066}"
 2275 RenderText {#text} at (3,8) size 18x17
 2276 text run at (3,8) width 17: "\x{4F34}"
 2277 RenderText {#text} at (832,307) size 49x469
 2278 text run at (832,307) width 162: "\x{308F}\x{306C}\x{306E}\x{3060}\x{308D}\x{3046}\x{3002}\x{81EA}\x{7136}\x{306E}"
 2279 text run at (863,0) width 129: "\x{529B}\x{306F}\x{3053}\x{3053}\x{306B}\x{304A}\x{3044}\x{3066}"
22802280 RenderRuby (inline) {RUBY} at (0,0) size 18x21
2281  RenderRubyRun (anonymous) at (821,129) size 18x21
2282  RenderRubyText {RT} at (-13,0) size 13x21
 2281 RenderRubyRun (anonymous) at (860,129) size 24x21
 2282 RenderRubyText {RT} at (-10,0) size 15x21
22832283 RenderText {#text} at (0,0) size 13x21
22842284 text run at (0,0) width 21: "\x{305F}\x{3063}"
2285  RenderRubyBase (anonymous) at (0,0) size 18x21
 2285 RenderRubyBase (anonymous) at (0,0) size 24x21
22862286 RenderInline {RB} at (0,0) size 18x17
2287  RenderText {#text} at (0,2) size 18x17
2288  text run at (0,2) width 17: "\x{5C0A}"
2289  RenderText {#text} at (821,150) size 18x203
2290  text run at (821,150) width 203: "\x{3068}\x{3044}\x{3002}\x{543E}\x{4EBA}\x{306E}\x{6027}\x{60C5}\x{3092}\x{77AC}\x{523B}\x{306B}"
 2287 RenderText {#text} at (3,2) size 18x17
 2288 text run at (3,2) width 17: "\x{5C0A}"
 2289 RenderText {#text} at (863,150) size 18x203
 2290 text run at (863,150) width 203: "\x{3068}\x{3044}\x{3002}\x{543E}\x{4EBA}\x{306E}\x{6027}\x{60C5}\x{3092}\x{77AC}\x{523B}\x{306B}"
22912291 RenderRuby (inline) {RUBY} at (0,0) size 18x34
2292  RenderRubyRun (anonymous) at (821,353) size 18x34
2293  RenderRubyText {RT} at (-13,0) size 13x34
 2292 RenderRubyRun (anonymous) at (860,353) size 24x34
 2293 RenderRubyText {RT} at (-10,0) size 15x34
22942294 RenderText {#text} at (0,0) size 13x33
22952295 text run at (0,0) width 33: "\x{3068}\x{3046}\x{3084}"
2296  RenderRubyBase (anonymous) at (0,0) size 18x34
 2296 RenderRubyBase (anonymous) at (0,0) size 24x34
22972297 RenderInline {RB} at (0,0) size 18x34
2298  RenderText {#text} at (0,0) size 18x34
2299  text run at (0,0) width 34: "\x{9676}\x{51B6}"
2300  RenderText {#text} at (821,387) size 18x34
2301  text run at (821,387) width 34: "\x{3057}\x{3066}"
 2298 RenderText {#text} at (3,0) size 18x34
 2299 text run at (3,0) width 34: "\x{9676}\x{51B6}"
 2300 RenderText {#text} at (863,387) size 18x34
 2301 text run at (863,387) width 34: "\x{3057}\x{3066}"
23022302 RenderRuby (inline) {RUBY} at (0,0) size 18x43
2303  RenderRubyRun (anonymous) at (821,421) size 18x43
2304  RenderRubyText {RT} at (-13,0) size 13x43
 2303 RenderRubyRun (anonymous) at (860,421) size 24x43
 2304 RenderRubyText {RT} at (-10,0) size 15x43
23052305 RenderText {#text} at (0,0) size 13x43
23062306 text run at (0,0) width 43: "\x{3058}\x{3085}\x{3093}\x{3053}"
2307  RenderRubyBase (anonymous) at (0,0) size 18x43
 2307 RenderRubyBase (anonymous) at (0,0) size 24x43
23082308 RenderInline {RB} at (0,0) size 18x34
2309  RenderText {#text} at (0,4) size 18x34
2310  text run at (0,4) width 34: "\x{9187}\x{4E4E}"
2311  RenderText {#text} at (821,464) size 36x481
2312  text run at (821,464) width 17: "\x{3068}"
2313  text run at (839,0) width 339: "\x{3057}\x{3066}\x{9187}\x{306A}\x{308B}\x{8A69}\x{5883}\x{306B}\x{5165}\x{3089}\x{3057}\x{3080}\x{308B}\x{306E}\x{306F}\x{81EA}\x{7136}\x{3067}\x{3042}\x{308B}\x{3002}"
2314  RenderBR {BR} at (839,339) size 18x0
2315  RenderText {#text} at (857,0) size 49x452
2316  text run at (857,0) width 452: "\x{3000}\x{604B}\x{306F}\x{3046}\x{3064}\x{304F}\x{3057}\x{304B}\x{308D}\x{3001}\x{5B5D}\x{3082}\x{3046}\x{3064}\x{304F}\x{3057}\x{304B}\x{308D}\x{3001}\x{5FE0}\x{541B}\x{611B}\x{56FD}\x{3082}\x{7D50}\x{69CB}\x{3060}\x{308D}"
2317  text run at (888,0) width 162: "\x{3046}\x{3002}\x{3057}\x{304B}\x{3057}\x{81EA}\x{8EAB}\x{304C}\x{305D}\x{306E}"
 2309 RenderText {#text} at (3,4) size 18x34
 2310 text run at (3,4) width 34: "\x{9187}\x{4E4E}"
 2311 RenderText {#text} at (863,464) size 42x481
 2312 text run at (863,464) width 17: "\x{3068}"
 2313 text run at (887,0) width 339: "\x{3057}\x{3066}\x{9187}\x{306A}\x{308B}\x{8A69}\x{5883}\x{306B}\x{5165}\x{3089}\x{3057}\x{3080}\x{308B}\x{306E}\x{306F}\x{81EA}\x{7136}\x{3067}\x{3042}\x{308B}\x{3002}"
 2314 RenderBR {BR} at (887,339) size 18x0
 2315 RenderText {#text} at (911,0) size 49x452
 2316 text run at (911,0) width 452: "\x{3000}\x{604B}\x{306F}\x{3046}\x{3064}\x{304F}\x{3057}\x{304B}\x{308D}\x{3001}\x{5B5D}\x{3082}\x{3046}\x{3064}\x{304F}\x{3057}\x{304B}\x{308D}\x{3001}\x{5FE0}\x{541B}\x{611B}\x{56FD}\x{3082}\x{7D50}\x{69CB}\x{3060}\x{308D}"
 2317 text run at (942,0) width 162: "\x{3046}\x{3002}\x{3057}\x{304B}\x{3057}\x{81EA}\x{8EAB}\x{304C}\x{305D}\x{306E}"
23182318 RenderRuby (inline) {RUBY} at (0,0) size 18x32
2319  RenderRubyRun (anonymous) at (888,162) size 18x32
2320  RenderRubyText {RT} at (-13,0) size 13x32
 2319 RenderRubyRun (anonymous) at (939,162) size 24x32
 2320 RenderRubyText {RT} at (-10,0) size 15x32
23212321 RenderText {#text} at (0,0) size 13x32
23222322 text run at (0,0) width 32: "\x{304D}\x{3087}\x{304F}"
2323  RenderRubyBase (anonymous) at (0,0) size 18x32
 2323 RenderRubyBase (anonymous) at (0,0) size 24x32
23242324 RenderInline {RB} at (0,0) size 18x17
2325  RenderText {#text} at (0,7) size 18x17
2326  text run at (0,7) width 17: "\x{5C40}"
2327  RenderText {#text} at (888,194) size 18x119
2328  text run at (888,194) width 119: "\x{306B}\x{5F53}\x{308C}\x{3070}\x{5229}\x{5BB3}\x{306E}"
 2325 RenderText {#text} at (3,7) size 18x17
 2326 text run at (3,7) width 17: "\x{5C40}"
 2327 RenderText {#text} at (942,194) size 18x119
 2328 text run at (942,194) width 119: "\x{306B}\x{5F53}\x{308C}\x{3070}\x{5229}\x{5BB3}\x{306E}"
23292329 RenderRuby (inline) {RUBY} at (0,0) size 18x34
2330  RenderRubyRun (anonymous) at (888,313) size 18x34
2331  RenderRubyText {RT} at (-13,0) size 13x34
 2330 RenderRubyRun (anonymous) at (939,313) size 24x34
 2331 RenderRubyText {RT} at (-10,0) size 15x34
23322332 RenderText {#text} at (0,0) size 13x33
23332333 text run at (0,0) width 33: "\x{3064}\x{3080}\x{3058}"
2334  RenderRubyBase (anonymous) at (0,0) size 18x34
 2334 RenderRubyBase (anonymous) at (0,0) size 24x34
23352335 RenderInline {RB} at (0,0) size 18x34
2336  RenderText {#text} at (0,0) size 18x34
2337  text run at (0,0) width 34: "\x{65CB}\x{98A8}"
2338  RenderText {#text} at (888,347) size 18x17
2339  text run at (888,347) width 17: "\x{306B}"
 2336 RenderText {#text} at (3,0) size 18x34
 2337 text run at (3,0) width 34: "\x{65CB}\x{98A8}"
 2338 RenderText {#text} at (942,347) size 18x17
 2339 text run at (942,347) width 17: "\x{306B}"
23402340 RenderRuby (inline) {RUBY} at (0,0) size 18x17
2341  RenderRubyRun (anonymous) at (888,364) size 18x17
2342  RenderRubyText {RT} at (-13,0) size 13x17
 2341 RenderRubyRun (anonymous) at (939,364) size 24x17
 2342 RenderRubyText {RT} at (-10,0) size 15x17
23432343 RenderText {#text} at (0,3) size 13x11
23442344 text run at (0,3) width 11: "\x{307E}"
2345  RenderRubyBase (anonymous) at (0,0) size 18x17
 2345 RenderRubyBase (anonymous) at (0,0) size 24x17
23462346 RenderInline {RB} at (0,0) size 18x17
2347  RenderText {#text} at (0,0) size 18x17
2348  text run at (0,0) width 17: "\x{6372}"
2349  RenderText {#text} at (888,381) size 49x478
2350  text run at (888,381) width 97: "\x{304D}\x{8FBC}\x{307E}\x{308C}\x{3066}\x{3001}"
2351  text run at (919,0) width 291: "\x{3046}\x{3064}\x{304F}\x{3057}\x{304D}\x{4E8B}\x{306B}\x{3082}\x{3001}\x{7D50}\x{69CB}\x{306A}\x{4E8B}\x{306B}\x{3082}\x{3001}\x{76EE}\x{306F}"
 2347 RenderText {#text} at (3,0) size 18x17
 2348 text run at (3,0) width 17: "\x{6372}"
 2349 RenderText {#text} at (942,381) size 49x478
 2350 text run at (942,381) width 97: "\x{304D}\x{8FBC}\x{307E}\x{308C}\x{3066}\x{3001}"
 2351 text run at (973,0) width 291: "\x{3046}\x{3064}\x{304F}\x{3057}\x{304D}\x{4E8B}\x{306B}\x{3082}\x{3001}\x{7D50}\x{69CB}\x{306A}\x{4E8B}\x{306B}\x{3082}\x{3001}\x{76EE}\x{306F}"
23522352 RenderRuby (inline) {RUBY} at (0,0) size 18x22
2353  RenderRubyRun (anonymous) at (919,291) size 18x22
2354  RenderRubyText {RT} at (-13,0) size 13x22
 2353 RenderRubyRun (anonymous) at (970,291) size 24x22
 2354 RenderRubyText {RT} at (-10,0) size 15x22
23552355 RenderText {#text} at (0,0) size 13x22
23562356 text run at (0,0) width 22: "\x{304F}\x{3089}"
2357  RenderRubyBase (anonymous) at (0,0) size 18x22
 2357 RenderRubyBase (anonymous) at (0,0) size 24x22
23582358 RenderInline {RB} at (0,0) size 18x17
2359  RenderText {#text} at (0,2) size 18x17
2360  text run at (0,2) width 17: "\x{7729}"
2361  RenderText {#text} at (919,313) size 49x442
2362  text run at (919,313) width 129: "\x{3093}\x{3067}\x{3057}\x{307E}\x{3046}\x{3002}\x{3057}\x{305F}"
2363  text run at (950,0) width 242: "\x{304C}\x{3063}\x{3066}\x{3069}\x{3053}\x{306B}\x{8A69}\x{304C}\x{3042}\x{308B}\x{304B}\x{81EA}\x{8EAB}\x{306B}\x{306F}"
 2359 RenderText {#text} at (3,2) size 18x17
 2360 text run at (3,2) width 17: "\x{7729}"
 2361 RenderText {#text} at (973,313) size 49x442
 2362 text run at (973,313) width 129: "\x{3093}\x{3067}\x{3057}\x{307E}\x{3046}\x{3002}\x{3057}\x{305F}"
 2363 text run at (1004,0) width 242: "\x{304C}\x{3063}\x{3066}\x{3069}\x{3053}\x{306B}\x{8A69}\x{304C}\x{3042}\x{308B}\x{304B}\x{81EA}\x{8EAB}\x{306B}\x{306F}"
23642364 RenderRuby (inline) {RUBY} at (0,0) size 18x17
2365  RenderRubyRun (anonymous) at (950,242) size 18x17
2366  RenderRubyText {RT} at (-13,0) size 13x17
 2365 RenderRubyRun (anonymous) at (1001,242) size 24x17
 2366 RenderRubyText {RT} at (-10,0) size 15x17
23672367 RenderText {#text} at (0,3) size 13x11
23682368 text run at (0,3) width 11: "\x{3052}"
2369  RenderRubyBase (anonymous) at (0,0) size 18x17
 2369 RenderRubyBase (anonymous) at (0,0) size 24x17
23702370 RenderInline {RB} at (0,0) size 18x17
2371  RenderText {#text} at (0,0) size 18x17
2372  text run at (0,0) width 17: "\x{89E3}"
2373  RenderText {#text} at (950,259) size 18x84
2374  text run at (950,259) width 84: "\x{3057}\x{304B}\x{306D}\x{308B}\x{3002}"
2375  RenderBR {BR} at (950,343) size 18x0
2376  RenderText {#text} at (968,0) size 49x468
2377  text run at (968,0) width 468: "\x{3000}\x{3053}\x{308C}\x{304C}\x{308F}\x{304B}\x{308B}\x{305F}\x{3081}\x{306B}\x{306F}\x{3001}\x{308F}\x{304B}\x{308B}\x{3060}\x{3051}\x{306E}\x{4F59}\x{88D5}\x{306E}\x{3042}\x{308B}\x{7B2C}\x{4E09}\x{8005}\x{306E}\x{5730}\x{4F4D}"
2378  text run at (999,0) width 371: "\x{306B}\x{7ACB}\x{305F}\x{306D}\x{3070}\x{306A}\x{3089}\x{306C}\x{3002}\x{4E09}\x{8005}\x{306E}\x{5730}\x{4F4D}\x{306B}\x{7ACB}\x{3066}\x{3070}\x{3053}\x{305D}\x{829D}\x{5C45}\x{306F}"
 2371 RenderText {#text} at (3,0) size 18x17
 2372 text run at (3,0) width 17: "\x{89E3}"
 2373 RenderText {#text} at (1004,259) size 18x84
 2374 text run at (1004,259) width 84: "\x{3057}\x{304B}\x{306D}\x{308B}\x{3002}"
 2375 RenderBR {BR} at (1004,343) size 18x0
 2376 RenderText {#text} at (1028,0) size 49x468
 2377 text run at (1028,0) width 468: "\x{3000}\x{3053}\x{308C}\x{304C}\x{308F}\x{304B}\x{308B}\x{305F}\x{3081}\x{306B}\x{306F}\x{3001}\x{308F}\x{304B}\x{308B}\x{3060}\x{3051}\x{306E}\x{4F59}\x{88D5}\x{306E}\x{3042}\x{308B}\x{7B2C}\x{4E09}\x{8005}\x{306E}\x{5730}\x{4F4D}"
 2378 text run at (1059,0) width 371: "\x{306B}\x{7ACB}\x{305F}\x{306D}\x{3070}\x{306A}\x{3089}\x{306C}\x{3002}\x{4E09}\x{8005}\x{306E}\x{5730}\x{4F4D}\x{306B}\x{7ACB}\x{3066}\x{3070}\x{3053}\x{305D}\x{829D}\x{5C45}\x{306F}"
23792379 RenderRuby (inline) {RUBY} at (0,0) size 18x17
2380  RenderRubyRun (anonymous) at (999,371) size 18x17
2381  RenderRubyText {RT} at (-13,0) size 13x17
 2380 RenderRubyRun (anonymous) at (1056,371) size 24x17
 2381 RenderRubyText {RT} at (-10,0) size 15x17
23822382 RenderText {#text} at (0,3) size 13x11
23832383 text run at (0,3) width 11: "\x{307F}"
2384  RenderRubyBase (anonymous) at (0,0) size 18x17
 2384 RenderRubyBase (anonymous) at (0,0) size 24x17
23852385 RenderInline {RB} at (0,0) size 18x17
2386  RenderText {#text} at (0,0) size 18x17
2387  text run at (0,0) width 17: "\x{89B3}"
2388  RenderText {#text} at (999,388) size 67x469
2389  text run at (999,388) width 81: "\x{3066}\x{9762}\x{767D}\x{3044}\x{3002}"
2390  text run at (1017,0) width 468: "\x{5C0F}\x{8AAC}\x{3082}\x{898B}\x{3066}\x{9762}\x{767D}\x{3044}\x{3002}\x{829D}\x{5C45}\x{3092}\x{898B}\x{3066}\x{9762}\x{767D}\x{3044}\x{4EBA}\x{3082}\x{3001}\x{5C0F}\x{8AAC}\x{3092}\x{8AAD}\x{3093}\x{3067}\x{9762}\x{767D}\x{3044}"
2391  text run at (1048,0) width 146: "\x{4EBA}\x{3082}\x{3001}\x{81EA}\x{5DF1}\x{306E}\x{5229}\x{5BB3}\x{306F}"
 2386 RenderText {#text} at (3,0) size 18x17
 2387 text run at (3,0) width 17: "\x{89B3}"
 2388 RenderText {#text} at (1059,388) size 73x469
 2389 text run at (1059,388) width 81: "\x{3066}\x{9762}\x{767D}\x{3044}\x{3002}"
 2390 text run at (1083,0) width 468: "\x{5C0F}\x{8AAC}\x{3082}\x{898B}\x{3066}\x{9762}\x{767D}\x{3044}\x{3002}\x{829D}\x{5C45}\x{3092}\x{898B}\x{3066}\x{9762}\x{767D}\x{3044}\x{4EBA}\x{3082}\x{3001}\x{5C0F}\x{8AAC}\x{3092}\x{8AAD}\x{3093}\x{3067}\x{9762}\x{767D}\x{3044}"
 2391 text run at (1114,0) width 146: "\x{4EBA}\x{3082}\x{3001}\x{81EA}\x{5DF1}\x{306E}\x{5229}\x{5BB3}\x{306F}"
23922392 RenderRuby (inline) {RUBY} at (0,0) size 18x22
2393  RenderRubyRun (anonymous) at (1048,146) size 18x22
2394  RenderRubyText {RT} at (-13,0) size 13x22
 2393 RenderRubyRun (anonymous) at (1111,146) size 24x22
 2394 RenderRubyText {RT} at (-10,0) size 15x22
23952395 RenderText {#text} at (0,0) size 13x22
23962396 text run at (0,0) width 22: "\x{305F}\x{306A}"
2397  RenderRubyBase (anonymous) at (0,0) size 18x22
 2397 RenderRubyBase (anonymous) at (0,0) size 24x22
23982398 RenderInline {RB} at (0,0) size 18x17
2399  RenderText {#text} at (0,2) size 18x17
2400  text run at (0,2) width 17: "\x{68DA}"
2401  RenderText {#text} at (1048,168) size 36x459
2402  text run at (1048,168) width 291: "\x{3078}\x{4E0A}\x{3052}\x{3066}\x{3044}\x{308B}\x{3002}\x{898B}\x{305F}\x{308A}\x{8AAD}\x{3093}\x{3060}\x{308A}\x{3059}\x{308B}\x{9593}\x{3060}"
2403  text run at (1066,0) width 129: "\x{3051}\x{306F}\x{8A69}\x{4EBA}\x{3067}\x{3042}\x{308B}\x{3002}"
2404  RenderBR {BR} at (1066,129) size 18x0
2405  RenderText {#text} at (1097,0) size 18x307
2406  text run at (1097,0) width 307: "\x{3000}\x{305D}\x{308C}\x{3059}\x{3089}\x{3001}\x{666E}\x{901A}\x{306E}\x{829D}\x{5C45}\x{3084}\x{5C0F}\x{8AAC}\x{3067}\x{306F}\x{4EBA}\x{60C5}\x{3092}"
 2399 RenderText {#text} at (3,2) size 18x17
 2400 text run at (3,2) width 17: "\x{68DA}"
 2401 RenderText {#text} at (1114,168) size 42x459
 2402 text run at (1114,168) width 291: "\x{3078}\x{4E0A}\x{3052}\x{3066}\x{3044}\x{308B}\x{3002}\x{898B}\x{305F}\x{308A}\x{8AAD}\x{3093}\x{3060}\x{308A}\x{3059}\x{308B}\x{9593}\x{3060}"
 2403 text run at (1138,0) width 129: "\x{3051}\x{306F}\x{8A69}\x{4EBA}\x{3067}\x{3042}\x{308B}\x{3002}"
 2404 RenderBR {BR} at (1138,129) size 18x0
 2405 RenderText {#text} at (1169,0) size 18x307
 2406 text run at (1169,0) width 307: "\x{3000}\x{305D}\x{308C}\x{3059}\x{3089}\x{3001}\x{666E}\x{901A}\x{306E}\x{829D}\x{5C45}\x{3084}\x{5C0F}\x{8AAC}\x{3067}\x{306F}\x{4EBA}\x{60C5}\x{3092}"
24072407 RenderRuby (inline) {RUBY} at (0,0) size 18x22
2408  RenderRubyRun (anonymous) at (1097,307) size 18x22
2409  RenderRubyText {RT} at (-13,0) size 13x22
 2408 RenderRubyRun (anonymous) at (1166,307) size 24x22
 2409 RenderRubyText {RT} at (-10,0) size 15x22
24102410 RenderText {#text} at (0,0) size 13x22
24112411 text run at (0,0) width 22: "\x{307E}\x{306C}"
2412  RenderRubyBase (anonymous) at (0,0) size 18x22
 2412 RenderRubyBase (anonymous) at (0,0) size 24x22
24132413 RenderInline {RB} at (0,0) size 18x17
2414  RenderText {#text} at (0,2) size 18x17
2415  text run at (0,2) width 17: "\x{514D}"
2416  RenderText {#text} at (1097,329) size 54x468
2417  text run at (1097,329) width 129: "\x{304B}\x{308C}\x{306C}\x{3002}\x{82E6}\x{3057}\x{3093}\x{3060}"
2418  text run at (1115,0) width 468: "\x{308A}\x{3001}\x{6012}\x{3063}\x{305F}\x{308A}\x{3001}\x{9A12}\x{3044}\x{3060}\x{308A}\x{3001}\x{6CE3}\x{3044}\x{305F}\x{308A}\x{3059}\x{308B}\x{3002}\x{898B}\x{308B}\x{3082}\x{306E}\x{3082}\x{3044}\x{3064}\x{304B}\x{305D}\x{306E}"
2419  text run at (1133,0) width 468: "\x{4E2D}\x{306B}\x{540C}\x{5316}\x{3057}\x{3066}\x{82E6}\x{3057}\x{3093}\x{3060}\x{308A}\x{3001}\x{6012}\x{3063}\x{305F}\x{308A}\x{3001}\x{9A12}\x{3044}\x{3060}\x{308A}\x{3001}\x{6CE3}\x{3044}\x{305F}\x{308A}\x{3059}\x{308B}\x{3002}"
 2414 RenderText {#text} at (3,2) size 18x17
 2415 text run at (3,2) width 17: "\x{514D}"
 2416 RenderText {#text} at (1169,329) size 66x468
 2417 text run at (1169,329) width 129: "\x{304B}\x{308C}\x{306C}\x{3002}\x{82E6}\x{3057}\x{3093}\x{3060}"
 2418 text run at (1193,0) width 468: "\x{308A}\x{3001}\x{6012}\x{3063}\x{305F}\x{308A}\x{3001}\x{9A12}\x{3044}\x{3060}\x{308A}\x{3001}\x{6CE3}\x{3044}\x{305F}\x{308A}\x{3059}\x{308B}\x{3002}\x{898B}\x{308B}\x{3082}\x{306E}\x{3082}\x{3044}\x{3064}\x{304B}\x{305D}\x{306E}"
 2419 text run at (1217,0) width 468: "\x{4E2D}\x{306B}\x{540C}\x{5316}\x{3057}\x{3066}\x{82E6}\x{3057}\x{3093}\x{3060}\x{308A}\x{3001}\x{6012}\x{3063}\x{305F}\x{308A}\x{3001}\x{9A12}\x{3044}\x{3060}\x{308A}\x{3001}\x{6CE3}\x{3044}\x{305F}\x{308A}\x{3059}\x{308B}\x{3002}"
24202420 RenderRuby (inline) {RUBY} at (0,0) size 18x34
2421  RenderRubyRun (anonymous) at (1164,0) size 18x34
2422  RenderRubyText {RT} at (-13,0) size 13x34
 2421 RenderRubyRun (anonymous) at (1245,0) size 24x34
 2422 RenderRubyText {RT} at (-10,0) size 15x34
24232423 RenderText {#text} at (0,0) size 13x33
24242424 text run at (0,0) width 33: "\x{3068}\x{308A}\x{3048}"
2425  RenderRubyBase (anonymous) at (0,0) size 18x34
 2425 RenderRubyBase (anonymous) at (0,0) size 24x34
24262426 RenderInline {RB} at (0,0) size 18x34
2427  RenderText {#text} at (0,0) size 18x34
2428  text run at (0,0) width 34: "\x{53D6}\x{67C4}"
2429  RenderText {#text} at (1164,34) size 18x68
2430  text run at (1164,34) width 68: "\x{306F}\x{5229}\x{617E}\x{304C}"
 2427 RenderText {#text} at (3,0) size 18x34
 2428 text run at (3,0) width 34: "\x{53D6}\x{67C4}"
 2429 RenderText {#text} at (1248,34) size 18x68
 2430 text run at (1248,34) width 68: "\x{306F}\x{5229}\x{617E}\x{304C}"
24312431 RenderRuby (inline) {RUBY} at (0,0) size 18x22
2432  RenderRubyRun (anonymous) at (1164,102) size 18x22
2433  RenderRubyText {RT} at (-13,0) size 13x22
 2432 RenderRubyRun (anonymous) at (1245,102) size 24x22
 2433 RenderRubyText {RT} at (-10,0) size 15x22
24342434 RenderText {#text} at (0,0) size 13x22
24352435 text run at (0,0) width 22: "\x{307E}\x{3058}"
2436  RenderRubyBase (anonymous) at (0,0) size 18x22
 2436 RenderRubyBase (anonymous) at (0,0) size 24x22
24372437 RenderInline {RB} at (0,0) size 18x17
2438  RenderText {#text} at (0,2) size 18x17
2439  text run at (0,2) width 17: "\x{4EA4}"
2440  RenderText {#text} at (1164,124) size 18x119
2441  text run at (1164,124) width 119: "\x{3089}\x{306C}\x{3068}\x{4E91}\x{3046}\x{70B9}\x{306B}"
 2438 RenderText {#text} at (3,2) size 18x17
 2439 text run at (3,2) width 17: "\x{4EA4}"
 2440 RenderText {#text} at (1248,124) size 18x119
 2441 text run at (1248,124) width 119: "\x{3089}\x{306C}\x{3068}\x{4E91}\x{3046}\x{70B9}\x{306B}"
24422442 RenderRuby (inline) {RUBY} at (0,0) size 18x22
2443  RenderRubyRun (anonymous) at (1164,243) size 18x22
2444  RenderRubyText {RT} at (-13,0) size 13x22
 2443 RenderRubyRun (anonymous) at (1245,243) size 24x22
 2444 RenderRubyText {RT} at (-10,0) size 15x22
24452445 RenderText {#text} at (0,0) size 13x22
24462446 text run at (0,0) width 22: "\x{305D}\x{3093}"
2447  RenderRubyBase (anonymous) at (0,0) size 18x22
 2447 RenderRubyBase (anonymous) at (0,0) size 24x22
24482448 RenderInline {RB} at (0,0) size 18x17
2449  RenderText {#text} at (0,2) size 18x17
2450  text run at (0,2) width 17: "\x{5B58}"
2451  RenderText {#text} at (1164,265) size 49x475
2452  text run at (1164,265) width 210: "\x{3059}\x{308B}\x{304B}\x{3082}\x{77E5}\x{308C}\x{306C}\x{304C}\x{3001}\x{4EA4}\x{3089}\x{306C}\x{3060}"
2453  text run at (1195,0) width 97: "\x{3051}\x{306B}\x{305D}\x{306E}\x{4ED6}\x{306E}"
 2449 RenderText {#text} at (3,2) size 18x17
 2450 text run at (3,2) width 17: "\x{5B58}"
 2451 RenderText {#text} at (1248,265) size 49x475
 2452 text run at (1248,265) width 210: "\x{3059}\x{308B}\x{304B}\x{3082}\x{77E5}\x{308C}\x{306C}\x{304C}\x{3001}\x{4EA4}\x{3089}\x{306C}\x{3060}"
 2453 text run at (1279,0) width 97: "\x{3051}\x{306B}\x{305D}\x{306E}\x{4ED6}\x{306E}"
24542454 RenderRuby (inline) {RUBY} at (0,0) size 18x53
2455  RenderRubyRun (anonymous) at (1195,97) size 18x53
2456  RenderRubyText {RT} at (-13,0) size 13x53
 2455 RenderRubyRun (anonymous) at (1276,97) size 24x53
 2456 RenderRubyText {RT} at (-10,0) size 15x53
24572457 RenderText {#text} at (0,0) size 13x53
24582458 text run at (0,0) width 53: "\x{3058}\x{3087}\x{3046}\x{3057}\x{3087}"
2459  RenderRubyBase (anonymous) at (0,0) size 18x53
 2459 RenderRubyBase (anonymous) at (0,0) size 24x53
24602460 RenderInline {RB} at (0,0) size 18x34
2461  RenderText {#text} at (0,9) size 18x34
2462  text run at (0,9) width 34: "\x{60C5}\x{7DD2}"
2463  RenderText {#text} at (1195,150) size 18x322
2464  text run at (1195,150) width 322: "\x{306F}\x{5E38}\x{3088}\x{308A}\x{306F}\x{4F59}\x{8A08}\x{306B}\x{6D3B}\x{52D5}\x{3059}\x{308B}\x{3060}\x{308D}\x{3046}\x{3002}\x{305D}\x{308C}\x{304C}"
 2461 RenderText {#text} at (3,9) size 18x34
 2462 text run at (3,9) width 34: "\x{60C5}\x{7DD2}"
 2463 RenderText {#text} at (1279,150) size 18x322
 2464 text run at (1279,150) width 322: "\x{306F}\x{5E38}\x{3088}\x{308A}\x{306F}\x{4F59}\x{8A08}\x{306B}\x{6D3B}\x{52D5}\x{3059}\x{308B}\x{3060}\x{308D}\x{3046}\x{3002}\x{305D}\x{308C}\x{304C}"
24652465 RenderRuby (inline) {RUBY} at (0,0) size 18x22
2466  RenderRubyRun (anonymous) at (1226,0) size 18x22
2467  RenderRubyText {RT} at (-13,0) size 13x22
 2466 RenderRubyRun (anonymous) at (1307,0) size 24x22
 2467 RenderRubyText {RT} at (-10,0) size 15x22
24682468 RenderText {#text} at (0,0) size 13x22
24692469 text run at (0,0) width 22: "\x{3044}\x{3084}"
2470  RenderRubyBase (anonymous) at (0,0) size 18x22
 2470 RenderRubyBase (anonymous) at (0,0) size 24x22
24712471 RenderInline {RB} at (0,0) size 18x17
2472  RenderText {#text} at (0,2) size 18x17
2473  text run at (0,2) width 17: "\x{5ACC}"
2474  RenderText {#text} at (1226,22) size 18x33
2475  text run at (1226,22) width 33: "\x{3060}\x{3002}"
2476  RenderBR {BR} at (1226,55) size 18x0
2477  RenderText {#text} at (1244,0) size 49x468
2478  text run at (1244,0) width 468: "\x{3000}\x{82E6}\x{3057}\x{3093}\x{3060}\x{308A}\x{3001}\x{6012}\x{3063}\x{305F}\x{308A}\x{3001}\x{9A12}\x{3044}\x{3060}\x{308A}\x{3001}\x{6CE3}\x{3044}\x{305F}\x{308A}\x{306F}\x{4EBA}\x{306E}\x{4E16}\x{306B}\x{3064}\x{304D}\x{3082}"
2479  text run at (1275,0) width 210: "\x{306E}\x{3060}\x{3002}\x{4F59}\x{3082}\x{4E09}\x{5341}\x{5E74}\x{306E}\x{9593}\x{305D}\x{308C}\x{3092}"
 2472 RenderText {#text} at (3,2) size 18x17
 2473 text run at (3,2) width 17: "\x{5ACC}"
 2474 RenderText {#text} at (1310,22) size 18x33
 2475 text run at (1310,22) width 33: "\x{3060}\x{3002}"
 2476 RenderBR {BR} at (1310,55) size 18x0
 2477 RenderText {#text} at (1334,0) size 49x468
 2478 text run at (1334,0) width 468: "\x{3000}\x{82E6}\x{3057}\x{3093}\x{3060}\x{308A}\x{3001}\x{6012}\x{3063}\x{305F}\x{308A}\x{3001}\x{9A12}\x{3044}\x{3060}\x{308A}\x{3001}\x{6CE3}\x{3044}\x{305F}\x{308A}\x{306F}\x{4EBA}\x{306E}\x{4E16}\x{306B}\x{3064}\x{304D}\x{3082}"
 2479 text run at (1365,0) width 210: "\x{306E}\x{3060}\x{3002}\x{4F59}\x{3082}\x{4E09}\x{5341}\x{5E74}\x{306E}\x{9593}\x{305D}\x{308C}\x{3092}"
24802480 RenderRuby (inline) {RUBY} at (0,0) size 18x34
2481  RenderRubyRun (anonymous) at (1275,210) size 18x34
2482  RenderRubyText {RT} at (-13,0) size 13x34
 2481 RenderRubyRun (anonymous) at (1362,210) size 24x34
 2482 RenderRubyText {RT} at (-10,0) size 15x34
24832483 RenderText {#text} at (0,0) size 13x33
24842484 text run at (0,0) width 33: "\x{3057}\x{3068}\x{304A}"
2485  RenderRubyBase (anonymous) at (0,0) size 18x34
 2485 RenderRubyBase (anonymous) at (0,0) size 24x34
24862486 RenderInline {RB} at (0,0) size 18x34
2487  RenderText {#text} at (0,0) size 18x34
2488  text run at (0,0) width 34: "\x{4ED5}\x{901A}"
2489  RenderText {#text} at (1275,244) size 18x50
2490  text run at (1275,244) width 50: "\x{3057}\x{3066}\x{3001}"
 2487 RenderText {#text} at (3,0) size 18x34
 2488 text run at (3,0) width 34: "\x{4ED5}\x{901A}"
 2489 RenderText {#text} at (1365,244) size 18x50
 2490 text run at (1365,244) width 50: "\x{3057}\x{3066}\x{3001}"
24912491 RenderRuby (inline) {RUBY} at (0,0) size 18x44
2492  RenderRubyRun (anonymous) at (1275,294) size 18x44
2493  RenderRubyText {RT} at (-13,0) size 13x44
 2492 RenderRubyRun (anonymous) at (1362,294) size 24x44
 2493 RenderRubyText {RT} at (-10,0) size 15x44
24942494 RenderText {#text} at (0,0) size 13x44
24952495 text run at (0,0) width 44: "\x{3042}\x{304D}\x{3042}\x{304D}"
2496  RenderRubyBase (anonymous) at (0,0) size 18x44
 2496 RenderRubyBase (anonymous) at (0,0) size 24x44
24972497 RenderInline {RB} at (0,0) size 18x33
2498  RenderText {#text} at (0,5) size 18x33
2499  text run at (0,5) width 33: "\x{98FD}\x{3005}"
2500  RenderText {#text} at (1275,338) size 18x50
2501  text run at (1275,338) width 50: "\x{3057}\x{305F}\x{3002}"
 2498 RenderText {#text} at (3,5) size 18x33
 2499 text run at (3,5) width 33: "\x{98FD}\x{3005}"
 2500 RenderText {#text} at (1365,338) size 18x50
 2501 text run at (1365,338) width 50: "\x{3057}\x{305F}\x{3002}"
25022502 RenderRuby (inline) {RUBY} at (0,0) size 18x17
2503  RenderRubyRun (anonymous) at (1275,388) size 18x17
2504  RenderRubyText {RT} at (-13,0) size 13x17
 2503 RenderRubyRun (anonymous) at (1362,388) size 24x17
 2504 RenderRubyText {RT} at (-10,0) size 15x17
25052505 RenderText {#text} at (0,3) size 13x11
25062506 text run at (0,3) width 11: "\x{3042}"
2507  RenderRubyBase (anonymous) at (0,0) size 18x17
 2507 RenderRubyBase (anonymous) at (0,0) size 24x17
25082508 RenderInline {RB} at (0,0) size 18x17
2509  RenderText {#text} at (0,0) size 18x17
2510  text run at (0,0) width 17: "\x{98FD}"
2511  RenderText {#text} at (1275,405) size 67x470
2512  text run at (1275,405) width 65: "\x{304D}\x{98FD}\x{304D}\x{3057}"
2513  text run at (1293,0) width 468: "\x{305F}\x{4E0A}\x{306B}\x{829D}\x{5C45}\x{3084}\x{5C0F}\x{8AAC}\x{3067}\x{540C}\x{3058}\x{523A}\x{6FC0}\x{3092}\x{7E70}\x{308A}\x{8FD4}\x{3057}\x{3066}\x{306F}\x{5927}\x{5909}\x{3060}\x{3002}\x{4F59}\x{304C}\x{6B32}\x{3059}\x{308B}"
2514  text run at (1324,0) width 194: "\x{8A69}\x{306F}\x{305D}\x{3093}\x{306A}\x{4E16}\x{9593}\x{7684}\x{306E}\x{4EBA}\x{60C5}\x{3092}"
 2509 RenderText {#text} at (3,0) size 18x17
 2510 text run at (3,0) width 17: "\x{98FD}"
 2511 RenderText {#text} at (1365,405) size 73x470
 2512 text run at (1365,405) width 65: "\x{304D}\x{98FD}\x{304D}\x{3057}"
 2513 text run at (1389,0) width 468: "\x{305F}\x{4E0A}\x{306B}\x{829D}\x{5C45}\x{3084}\x{5C0F}\x{8AAC}\x{3067}\x{540C}\x{3058}\x{523A}\x{6FC0}\x{3092}\x{7E70}\x{308A}\x{8FD4}\x{3057}\x{3066}\x{306F}\x{5927}\x{5909}\x{3060}\x{3002}\x{4F59}\x{304C}\x{6B32}\x{3059}\x{308B}"
 2514 text run at (1420,0) width 194: "\x{8A69}\x{306F}\x{305D}\x{3093}\x{306A}\x{4E16}\x{9593}\x{7684}\x{306E}\x{4EBA}\x{60C5}\x{3092}"
25152515 RenderRuby (inline) {RUBY} at (0,0) size 18x34
2516  RenderRubyRun (anonymous) at (1324,194) size 18x34
2517  RenderRubyText {RT} at (-13,0) size 13x34
 2516 RenderRubyRun (anonymous) at (1417,194) size 24x34
 2517 RenderRubyText {RT} at (-10,0) size 15x34
25182518 RenderText {#text} at (0,6) size 13x22
25192519 text run at (0,6) width 22: "\x{3053}\x{3076}"
2520  RenderRubyBase (anonymous) at (0,0) size 18x34
 2520 RenderRubyBase (anonymous) at (0,0) size 24x34
25212521 RenderInline {RB} at (0,0) size 18x34
2522  RenderText {#text} at (0,0) size 18x34
2523  text run at (0,0) width 34: "\x{9F13}\x{821E}"
2524  RenderText {#text} at (1324,228) size 49x470
2525  text run at (1324,228) width 242: "\x{3059}\x{308B}\x{3088}\x{3046}\x{306A}\x{3082}\x{306E}\x{3067}\x{306F}\x{306A}\x{3044}\x{3002}\x{4FD7}\x{5FF5}\x{3092}"
2526  text run at (1355,0) width 178: "\x{653E}\x{68C4}\x{3057}\x{3066}\x{3001}\x{3057}\x{3070}\x{3089}\x{304F}\x{3067}\x{3082}"
 2522 RenderText {#text} at (3,0) size 18x34
 2523 text run at (3,0) width 34: "\x{9F13}\x{821E}"
 2524 RenderText {#text} at (1420,228) size 49x470
 2525 text run at (1420,228) width 242: "\x{3059}\x{308B}\x{3088}\x{3046}\x{306A}\x{3082}\x{306E}\x{3067}\x{306F}\x{306A}\x{3044}\x{3002}\x{4FD7}\x{5FF5}\x{3092}"
 2526 text run at (1451,0) width 178: "\x{653E}\x{68C4}\x{3057}\x{3066}\x{3001}\x{3057}\x{3070}\x{3089}\x{304F}\x{3067}\x{3082}"
25272527 RenderRuby (inline) {RUBY} at (0,0) size 18x44
2528  RenderRubyRun (anonymous) at (1355,178) size 18x44
2529  RenderRubyText {RT} at (-13,0) size 13x44
 2528 RenderRubyRun (anonymous) at (1448,178) size 24x44
 2529 RenderRubyText {RT} at (-10,0) size 15x44
25302530 RenderText {#text} at (0,0) size 13x44
25312531 text run at (0,0) width 44: "\x{3058}\x{3093}\x{304B}\x{3044}"
2532  RenderRubyBase (anonymous) at (0,0) size 18x44
 2532 RenderRubyBase (anonymous) at (0,0) size 24x44
25332533 RenderInline {RB} at (0,0) size 18x34
2534  RenderText {#text} at (0,5) size 18x34
2535  text run at (0,5) width 34: "\x{5875}\x{754C}"
2536  RenderText {#text} at (1355,222) size 72x468
2537  text run at (1355,222) width 226: "\x{3092}\x{96E2}\x{308C}\x{305F}\x{5FC3}\x{6301}\x{3061}\x{306B}\x{306A}\x{308C}\x{308B}\x{8A69}\x{3067}\x{3042}"
2538  text run at (1373,0) width 468: "\x{308B}\x{3002}\x{3044}\x{304F}\x{3089}\x{5091}\x{4F5C}\x{3067}\x{3082}\x{4EBA}\x{60C5}\x{3092}\x{96E2}\x{308C}\x{305F}\x{829D}\x{5C45}\x{306F}\x{306A}\x{3044}\x{3001}\x{7406}\x{975E}\x{3092}\x{7D76}\x{3057}\x{305F}\x{5C0F}\x{8AAC}"
2539  text run at (1391,0) width 468: "\x{306F}\x{5C11}\x{304B}\x{308D}\x{3046}\x{3002}\x{3069}\x{3053}\x{307E}\x{3067}\x{3082}\x{4E16}\x{9593}\x{3092}\x{51FA}\x{308B}\x{4E8B}\x{304C}\x{51FA}\x{6765}\x{306C}\x{306E}\x{304C}\x{5F7C}\x{3089}\x{306E}\x{7279}\x{8272}\x{3067}"
2540  text run at (1409,0) width 468: "\x{3042}\x{308B}\x{3002}\x{3053}\x{3068}\x{306B}\x{897F}\x{6D0B}\x{306E}\x{8A69}\x{306B}\x{306A}\x{308B}\x{3068}\x{3001}\x{4EBA}\x{4E8B}\x{304C}\x{6839}\x{672C}\x{306B}\x{306A}\x{308B}\x{304B}\x{3089}\x{3044}\x{308F}\x{3086}\x{308B}"
 2534 RenderText {#text} at (3,5) size 18x34
 2535 text run at (3,5) width 34: "\x{5875}\x{754C}"
 2536 RenderText {#text} at (1451,222) size 90x468
 2537 text run at (1451,222) width 226: "\x{3092}\x{96E2}\x{308C}\x{305F}\x{5FC3}\x{6301}\x{3061}\x{306B}\x{306A}\x{308C}\x{308B}\x{8A69}\x{3067}\x{3042}"
 2538 text run at (1475,0) width 468: "\x{308B}\x{3002}\x{3044}\x{304F}\x{3089}\x{5091}\x{4F5C}\x{3067}\x{3082}\x{4EBA}\x{60C5}\x{3092}\x{96E2}\x{308C}\x{305F}\x{829D}\x{5C45}\x{306F}\x{306A}\x{3044}\x{3001}\x{7406}\x{975E}\x{3092}\x{7D76}\x{3057}\x{305F}\x{5C0F}\x{8AAC}"
 2539 text run at (1499,0) width 468: "\x{306F}\x{5C11}\x{304B}\x{308D}\x{3046}\x{3002}\x{3069}\x{3053}\x{307E}\x{3067}\x{3082}\x{4E16}\x{9593}\x{3092}\x{51FA}\x{308B}\x{4E8B}\x{304C}\x{51FA}\x{6765}\x{306C}\x{306E}\x{304C}\x{5F7C}\x{3089}\x{306E}\x{7279}\x{8272}\x{3067}"
 2540 text run at (1523,0) width 468: "\x{3042}\x{308B}\x{3002}\x{3053}\x{3068}\x{306B}\x{897F}\x{6D0B}\x{306E}\x{8A69}\x{306B}\x{306A}\x{308B}\x{3068}\x{3001}\x{4EBA}\x{4E8B}\x{304C}\x{6839}\x{672C}\x{306B}\x{306A}\x{308B}\x{304B}\x{3089}\x{3044}\x{308F}\x{3086}\x{308B}"
25412541 RenderRuby (inline) {RUBY} at (0,0) size 18x34
2542  RenderRubyRun (anonymous) at (1440,0) size 18x34
2543  RenderRubyText {RT} at (-13,0) size 13x34
 2542 RenderRubyRun (anonymous) at (1551,0) size 24x34
 2543 RenderRubyText {RT} at (-10,0) size 15x34
25442544 RenderText {#text} at (0,0) size 13x33
25452545 text run at (0,0) width 33: "\x{3057}\x{3044}\x{304B}"
2546  RenderRubyBase (anonymous) at (0,0) size 18x34
 2546 RenderRubyBase (anonymous) at (0,0) size 24x34
25472547 RenderInline {RB} at (0,0) size 18x34
2548  RenderText {#text} at (0,0) size 18x34
2549  text run at (0,0) width 34: "\x{8A69}\x{6B4C}"
2550  RenderText {#text} at (1440,34) size 18x170
2551  text run at (1440,34) width 170: "\x{306E}\x{7D14}\x{7C8B}\x{306A}\x{308B}\x{3082}\x{306E}\x{3082}\x{3053}\x{306E}"
 2548 RenderText {#text} at (3,0) size 18x34
 2549 text run at (3,0) width 34: "\x{8A69}\x{6B4C}"
 2550 RenderText {#text} at (1554,34) size 18x170
 2551 text run at (1554,34) width 170: "\x{306E}\x{7D14}\x{7C8B}\x{306A}\x{308B}\x{3082}\x{306E}\x{3082}\x{3053}\x{306E}"
25522552 RenderRuby (inline) {RUBY} at (0,0) size 18x32
2553  RenderRubyRun (anonymous) at (1440,204) size 18x32
2554  RenderRubyText {RT} at (-13,0) size 13x32
 2553 RenderRubyRun (anonymous) at (1551,204) size 24x32
 2554 RenderRubyText {RT} at (-10,0) size 15x32
25552555 RenderText {#text} at (0,0) size 13x32
25562556 text run at (0,0) width 32: "\x{304D}\x{3087}\x{3046}"
2557  RenderRubyBase (anonymous) at (0,0) size 18x32
 2557 RenderRubyBase (anonymous) at (0,0) size 24x32
25582558 RenderInline {RB} at (0,0) size 18x17
2559  RenderText {#text} at (0,7) size 18x17
2560  text run at (0,7) width 17: "\x{5883}"
2561  RenderText {#text} at (1440,236) size 18x17
2562  text run at (1440,236) width 17: "\x{3092}"
 2559 RenderText {#text} at (3,7) size 18x17
 2560 text run at (3,7) width 17: "\x{5883}"
 2561 RenderText {#text} at (1554,236) size 18x17
 2562 text run at (1554,236) width 17: "\x{3092}"
25632563 RenderRuby (inline) {RUBY} at (0,0) size 18x34
2564  RenderRubyRun (anonymous) at (1440,253) size 18x34
2565  RenderRubyText {RT} at (-13,0) size 13x34
 2564 RenderRubyRun (anonymous) at (1551,253) size 24x34
 2565 RenderRubyText {RT} at (-10,0) size 15x34
25662566 RenderText {#text} at (0,0) size 13x33
25672567 text run at (0,0) width 33: "\x{3052}\x{3060}\x{3064}"
2568  RenderRubyBase (anonymous) at (0,0) size 18x34
 2568 RenderRubyBase (anonymous) at (0,0) size 24x34
25692569 RenderInline {RB} at (0,0) size 18x34
2570  RenderText {#text} at (0,0) size 18x34
2571  text run at (0,0) width 34: "\x{89E3}\x{8131}"
2572  RenderText {#text} at (1440,287) size 49x481
2573  text run at (1440,287) width 194: "\x{3059}\x{308B}\x{4E8B}\x{3092}\x{77E5}\x{3089}\x{306C}\x{3002}\x{3069}\x{3053}\x{307E}\x{3067}"
2574  text run at (1471,0) width 387: "\x{3082}\x{540C}\x{60C5}\x{3060}\x{3068}\x{304B}\x{3001}\x{611B}\x{3060}\x{3068}\x{304B}\x{3001}\x{6B63}\x{7FA9}\x{3060}\x{3068}\x{304B}\x{3001}\x{81EA}\x{7531}\x{3060}\x{3068}\x{304B}\x{3001}"
 2570 RenderText {#text} at (3,0) size 18x34
 2571 text run at (3,0) width 34: "\x{89E3}\x{8131}"
 2572 RenderText {#text} at (1554,287) size 49x481
 2573 text run at (1554,287) width 194: "\x{3059}\x{308B}\x{4E8B}\x{3092}\x{77E5}\x{3089}\x{306C}\x{3002}\x{3069}\x{3053}\x{307E}\x{3067}"
 2574 text run at (1585,0) width 387: "\x{3082}\x{540C}\x{60C5}\x{3060}\x{3068}\x{304B}\x{3001}\x{611B}\x{3060}\x{3068}\x{304B}\x{3001}\x{6B63}\x{7FA9}\x{3060}\x{3068}\x{304B}\x{3001}\x{81EA}\x{7531}\x{3060}\x{3068}\x{304B}\x{3001}"
25752575 RenderRuby (inline) {RUBY} at (0,0) size 18x34
2576  RenderRubyRun (anonymous) at (1471,387) size 18x34
2577  RenderRubyText {RT} at (-13,0) size 13x34
 2576 RenderRubyRun (anonymous) at (1582,387) size 24x34
 2577 RenderRubyText {RT} at (-10,0) size 15x34
25782578 RenderText {#text} at (0,0) size 13x33
25792579 text run at (0,0) width 33: "\x{3046}\x{304D}\x{3088}"
2580  RenderRubyBase (anonymous) at (0,0) size 18x34
 2580 RenderRubyBase (anonymous) at (0,0) size 24x34
25812581 RenderInline {RB} at (0,0) size 18x34
2582  RenderText {#text} at (0,0) size 18x34
2583  text run at (0,0) width 34: "\x{6D6E}\x{4E16}"
2584  RenderText {#text} at (1471,421) size 18x17
2585  text run at (1471,421) width 17: "\x{306E}"
 2582 RenderText {#text} at (3,0) size 18x34
 2583 text run at (3,0) width 34: "\x{6D6E}\x{4E16}"
 2584 RenderText {#text} at (1585,421) size 18x17
 2585 text run at (1585,421) width 17: "\x{306E}"
25862586 RenderRuby (inline) {RUBY} at (0,0) size 18x55
2587  RenderRubyRun (anonymous) at (1502,0) size 18x55
2588  RenderRubyText {RT} at (-13,0) size 13x55
 2587 RenderRubyRun (anonymous) at (1613,0) size 24x55
 2588 RenderRubyText {RT} at (-10,0) size 15x55
25892589 RenderText {#text} at (0,0) size 13x55
25902590 text run at (0,0) width 55: "\x{304B}\x{3093}\x{3053}\x{3046}\x{3070}"
2591  RenderRubyBase (anonymous) at (0,0) size 18x55
 2591 RenderRubyBase (anonymous) at (0,0) size 24x55
25922592 RenderInline {RB} at (0,0) size 18x51
2593  RenderText {#text} at (0,2) size 18x51
2594  text run at (0,2) width 51: "\x{52E7}\x{5DE5}\x{5834}"
2595  RenderText {#text} at (1502,55) size 18x170
2596  text run at (1502,55) width 170: "\x{306B}\x{3042}\x{308B}\x{3082}\x{306E}\x{3060}\x{3051}\x{3067}\x{7528}\x{3092}"
 2593 RenderText {#text} at (3,2) size 18x51
 2594 text run at (3,2) width 51: "\x{52E7}\x{5DE5}\x{5834}"
 2595 RenderText {#text} at (1616,55) size 18x170
 2596 text run at (1616,55) width 170: "\x{306B}\x{3042}\x{308B}\x{3082}\x{306E}\x{3060}\x{3051}\x{3067}\x{7528}\x{3092}"
25972597 RenderRuby (inline) {RUBY} at (0,0) size 18x22
2598  RenderRubyRun (anonymous) at (1502,225) size 18x22
2599  RenderRubyText {RT} at (-13,0) size 13x22
 2598 RenderRubyRun (anonymous) at (1613,225) size 24x22
 2599 RenderRubyText {RT} at (-10,0) size 15x22
26002600 RenderText {#text} at (0,0) size 13x22
26012601 text run at (0,0) width 22: "\x{3079}\x{3093}"
2602  RenderRubyBase (anonymous) at (0,0) size 18x22
 2602 RenderRubyBase (anonymous) at (0,0) size 24x22
26032603 RenderInline {RB} at (0,0) size 18x17
2604  RenderText {#text} at (0,2) size 18x17
2605  text run at (0,2) width 17: "\x{5F01}"
2606  RenderText {#text} at (1502,247) size 49x473
2607  text run at (1502,247) width 226: "\x{3058}\x{3066}\x{3044}\x{308B}\x{3002}\x{3044}\x{304F}\x{3089}\x{8A69}\x{7684}\x{306B}\x{306A}\x{3063}\x{3066}"
2608  text run at (1533,0) width 97: "\x{3082}\x{5730}\x{9762}\x{306E}\x{4E0A}\x{3092}"
 2604 RenderText {#text} at (3,2) size 18x17
 2605 text run at (3,2) width 17: "\x{5F01}"
 2606 RenderText {#text} at (1616,247) size 49x473
 2607 text run at (1616,247) width 226: "\x{3058}\x{3066}\x{3044}\x{308B}\x{3002}\x{3044}\x{304F}\x{3089}\x{8A69}\x{7684}\x{306B}\x{306A}\x{3063}\x{3066}"
 2608 text run at (1647,0) width 97: "\x{3082}\x{5730}\x{9762}\x{306E}\x{4E0A}\x{3092}"
26092609 RenderRuby (inline) {RUBY} at (0,0) size 18x17
2610  RenderRubyRun (anonymous) at (1533,97) size 18x17
2611  RenderRubyText {RT} at (-13,0) size 13x17
 2610 RenderRubyRun (anonymous) at (1644,97) size 24x17
 2611 RenderRubyText {RT} at (-10,0) size 15x17
26122612 RenderText {#text} at (0,3) size 13x11
26132613 text run at (0,3) width 11: "\x{304B}"
2614  RenderRubyBase (anonymous) at (0,0) size 18x17
 2614 RenderRubyBase (anonymous) at (0,0) size 24x17
26152615 RenderInline {RB} at (0,0) size 18x17
2616  RenderText {#text} at (0,0) size 18x17
2617  text run at (0,0) width 17: "\x{99B3}"
2618  RenderText {#text} at (1533,114) size 18x118
2619  text run at (1533,114) width 118: "\x{3051}\x{3066}\x{3042}\x{308B}\x{3044}\x{3066}\x{3001}"
 2616 RenderText {#text} at (3,0) size 18x17
 2617 text run at (3,0) width 17: "\x{99B3}"
 2618 RenderText {#text} at (1647,114) size 18x118
 2619 text run at (1647,114) width 118: "\x{3051}\x{3066}\x{3042}\x{308B}\x{3044}\x{3066}\x{3001}"
26202620 RenderRuby (inline) {RUBY} at (0,0) size 18x22
2621  RenderRubyRun (anonymous) at (1533,232) size 18x22
2622  RenderRubyText {RT} at (-13,0) size 13x22
 2621 RenderRubyRun (anonymous) at (1644,232) size 24x22
 2622 RenderRubyText {RT} at (-10,0) size 15x22
26232623 RenderText {#text} at (0,0) size 13x22
26242624 text run at (0,0) width 22: "\x{305C}\x{306B}"
2625  RenderRubyBase (anonymous) at (0,0) size 18x22
 2625 RenderRubyBase (anonymous) at (0,0) size 24x22
26262626 RenderInline {RB} at (0,0) size 18x17
2627  RenderText {#text} at (0,2) size 18x17
2628  text run at (0,2) width 17: "\x{92AD}"
2629  RenderText {#text} at (1533,254) size 49x464
2630  text run at (1533,254) width 210: "\x{306E}\x{52D8}\x{5B9A}\x{3092}\x{5FD8}\x{308C}\x{308B}\x{3072}\x{307E}\x{304C}\x{306A}\x{3044}\x{3002}"
2631  text run at (1564,0) width 81: "\x{30B7}\x{30A7}\x{30EC}\x{30FC}\x{304C}"
 2627 RenderText {#text} at (3,2) size 18x17
 2628 text run at (3,2) width 17: "\x{92AD}"
 2629 RenderText {#text} at (1647,254) size 49x464
 2630 text run at (1647,254) width 210: "\x{306E}\x{52D8}\x{5B9A}\x{3092}\x{5FD8}\x{308C}\x{308B}\x{3072}\x{307E}\x{304C}\x{306A}\x{3044}\x{3002}"
 2631 text run at (1678,0) width 81: "\x{30B7}\x{30A7}\x{30EC}\x{30FC}\x{304C}"
26322632 RenderRuby (inline) {RUBY} at (0,0) size 18x34
2633  RenderRubyRun (anonymous) at (1564,81) size 18x34
2634  RenderRubyText {RT} at (-13,0) size 13x34
 2633 RenderRubyRun (anonymous) at (1675,81) size 24x34
 2634 RenderRubyText {RT} at (-10,0) size 15x34
26352635 RenderText {#text} at (0,0) size 13x33
26362636 text run at (0,0) width 33: "\x{3072}\x{3070}\x{308A}"
2637  RenderRubyBase (anonymous) at (0,0) size 18x34
 2637 RenderRubyBase (anonymous) at (0,0) size 24x34
26382638 RenderInline {RB} at (0,0) size 18x34
2639  RenderText {#text} at (0,0) size 18x34
2640  text run at (0,0) width 34: "\x{96F2}\x{96C0}"
2641  RenderText {#text} at (1564,115) size 18x271
2642  text run at (1564,115) width 271: "\x{3092}\x{805E}\x{3044}\x{3066}\x{5606}\x{606F}\x{3057}\x{305F}\x{306E}\x{3082}\x{7121}\x{7406}\x{306F}\x{306A}\x{3044}\x{3002}"
2643  RenderBR {BR} at (1564,386) size 18x0
2644  RenderText {#text} at (1595,0) size 18x162
2645  text run at (1595,0) width 162: "\x{3000}\x{3046}\x{308C}\x{3057}\x{3044}\x{4E8B}\x{306B}\x{6771}\x{6D0B}\x{306E}"
 2639 RenderText {#text} at (3,0) size 18x34
 2640 text run at (3,0) width 34: "\x{96F2}\x{96C0}"
 2641 RenderText {#text} at (1678,115) size 18x271
 2642 text run at (1678,115) width 271: "\x{3092}\x{805E}\x{3044}\x{3066}\x{5606}\x{606F}\x{3057}\x{305F}\x{306E}\x{3082}\x{7121}\x{7406}\x{306F}\x{306A}\x{3044}\x{3002}"
 2643 RenderBR {BR} at (1678,386) size 18x0
 2644 RenderText {#text} at (1709,0) size 18x162
 2645 text run at (1709,0) width 162: "\x{3000}\x{3046}\x{308C}\x{3057}\x{3044}\x{4E8B}\x{306B}\x{6771}\x{6D0B}\x{306E}"
26462646 RenderRuby (inline) {RUBY} at (0,0) size 18x34
2647  RenderRubyRun (anonymous) at (1595,162) size 18x34
2648  RenderRubyText {RT} at (-13,0) size 13x34
 2647 RenderRubyRun (anonymous) at (1706,162) size 24x34
 2648 RenderRubyText {RT} at (-10,0) size 15x34
26492649 RenderText {#text} at (0,0) size 13x33
26502650 text run at (0,0) width 33: "\x{3057}\x{3044}\x{304B}"
2651  RenderRubyBase (anonymous) at (0,0) size 18x34
 2651 RenderRubyBase (anonymous) at (0,0) size 24x34
26522652 RenderInline {RB} at (0,0) size 18x34
2653  RenderText {#text} at (0,0) size 18x34
2654  text run at (0,0) width 34: "\x{8A69}\x{6B4C}"
2655  RenderText {#text} at (1595,196) size 18x68
2656  text run at (1595,196) width 68: "\x{306F}\x{305D}\x{3053}\x{3092}"
 2653 RenderText {#text} at (3,0) size 18x34
 2654 text run at (3,0) width 34: "\x{8A69}\x{6B4C}"
 2655 RenderText {#text} at (1709,196) size 18x68
 2656 text run at (1709,196) width 68: "\x{306F}\x{305D}\x{3053}\x{3092}"
26572657 RenderRuby (inline) {RUBY} at (0,0) size 18x34
2658  RenderRubyRun (anonymous) at (1595,264) size 18x34
2659  RenderRubyText {RT} at (-13,0) size 13x34
 2658 RenderRubyRun (anonymous) at (1706,264) size 24x34
 2659 RenderRubyText {RT} at (-10,0) size 15x34
26602660 RenderText {#text} at (0,0) size 13x33
26612661 text run at (0,0) width 33: "\x{3052}\x{3060}\x{3064}"
2662  RenderRubyBase (anonymous) at (0,0) size 18x34
 2662 RenderRubyBase (anonymous) at (0,0) size 24x34
26632663 RenderInline {RB} at (0,0) size 18x34
2664  RenderText {#text} at (0,0) size 18x34
2665  text run at (0,0) width 34: "\x{89E3}\x{8131}"
2666  RenderText {#text} at (1595,298) size 18x118
2667  text run at (1595,298) width 118: "\x{3057}\x{305F}\x{306E}\x{304C}\x{3042}\x{308B}\x{3002}"
 2664 RenderText {#text} at (3,0) size 18x34
 2665 text run at (3,0) width 34: "\x{89E3}\x{8131}"
 2666 RenderText {#text} at (1709,298) size 18x118
 2667 text run at (1709,298) width 118: "\x{3057}\x{305F}\x{306E}\x{304C}\x{3042}\x{308B}\x{3002}"
26682668 RenderRuby (inline) {RUBY} at (0,0) size 18x55
2669  RenderRubyRun (anonymous) at (1595,416) size 18x55
2670  RenderRubyText {RT} at (-13,0) size 13x55
 2669 RenderRubyRun (anonymous) at (1706,416) size 24x55
 2670 RenderRubyText {RT} at (-10,0) size 15x55
26712671 RenderText {#text} at (0,0) size 13x55
26722672 text run at (0,0) width 55: "\x{304D}\x{304F}\x{3092}\x{3068}\x{308B}"
2673  RenderRubyBase (anonymous) at (0,0) size 18x55
 2673 RenderRubyBase (anonymous) at (0,0) size 24x55
26742674 RenderInline {RB} at (0,0) size 18x34
2675  RenderText {#text} at (0,10) size 18x34
2676  text run at (0,10) width 34: "\x{63A1}\x{83CA}"
 2675 RenderText {#text} at (3,10) size 18x34
 2676 text run at (3,10) width 34: "\x{63A1}\x{83CA}"
26772677 RenderRuby (inline) {RUBY} at (0,0) size 18x66
2678  RenderRubyRun (anonymous) at (1626,0) size 18x66
2679  RenderRubyText {RT} at (-13,0) size 13x66
 2678 RenderRubyRun (anonymous) at (1737,0) size 24x66
 2679 RenderRubyText {RT} at (-10,0) size 15x66
26802680 RenderText {#text} at (0,0) size 13x66
26812681 text run at (0,0) width 66: "\x{3068}\x{3046}\x{308A}\x{306E}\x{3082}\x{3068}"
2682  RenderRubyBase (anonymous) at (0,0) size 18x66
 2682 RenderRubyBase (anonymous) at (0,0) size 24x66
26832683 RenderInline {RB} at (0,0) size 18x51
2684  RenderText {#text} at (0,7) size 18x51
2685  text run at (0,7) width 51: "\x{6771}\x{7C6C}\x{4E0B}"
2686  RenderText {#text} at (1626,66) size 18x17
2687  text run at (1626,66) width 17: "\x{3001}"
 2684 RenderText {#text} at (3,7) size 18x51
 2685 text run at (3,7) width 51: "\x{6771}\x{7C6C}\x{4E0B}"
 2686 RenderText {#text} at (1740,66) size 18x17
 2687 text run at (1740,66) width 17: "\x{3001}"
26882688 RenderRuby (inline) {RUBY} at (0,0) size 18x77
2689  RenderRubyRun (anonymous) at (1626,83) size 18x77
2690  RenderRubyText {RT} at (-13,0) size 13x77
 2689 RenderRubyRun (anonymous) at (1737,83) size 24x77
 2690 RenderRubyText {RT} at (-10,0) size 15x77
26912691 RenderText {#text} at (0,0) size 13x77
26922692 text run at (0,0) width 77: "\x{3086}\x{3046}\x{305C}\x{3093}\x{3068}\x{3057}\x{3066}"
2693  RenderRubyBase (anonymous) at (0,0) size 18x77
 2693 RenderRubyBase (anonymous) at (0,0) size 24x77
26942694 RenderInline {RB} at (0,0) size 18x34
2695  RenderText {#text} at (0,21) size 18x34
2696  text run at (0,21) width 34: "\x{60A0}\x{7136}"
 2695 RenderText {#text} at (3,21) size 18x34
 2696 text run at (3,21) width 34: "\x{60A0}\x{7136}"
26972697 RenderRuby (inline) {RUBY} at (0,0) size 18x77
2698  RenderRubyRun (anonymous) at (1626,160) size 18x77
2699  RenderRubyText {RT} at (-13,0) size 13x77
 2698 RenderRubyRun (anonymous) at (1737,160) size 24x77
 2699 RenderRubyText {RT} at (-10,0) size 15x77
27002700 RenderText {#text} at (0,0) size 13x77
27012701 text run at (0,0) width 77: "\x{306A}\x{3093}\x{3056}\x{3093}\x{3092}\x{307F}\x{308B}"
2702  RenderRubyBase (anonymous) at (0,0) size 18x77
 2702 RenderRubyBase (anonymous) at (0,0) size 24x77
27032703 RenderInline {RB} at (0,0) size 18x51
2704  RenderText {#text} at (0,13) size 18x51
2705  text run at (0,13) width 51: "\x{898B}\x{5357}\x{5C71}"
2706  RenderText {#text} at (1626,237) size 18x136
2707  text run at (1626,237) width 136: "\x{3002}\x{305F}\x{3060}\x{305D}\x{308C}\x{304E}\x{308A}\x{306E}"
 2704 RenderText {#text} at (3,13) size 18x51
 2705 text run at (3,13) width 51: "\x{898B}\x{5357}\x{5C71}"
 2706 RenderText {#text} at (1740,237) size 18x136
 2707 text run at (1740,237) width 136: "\x{3002}\x{305F}\x{3060}\x{305D}\x{308C}\x{304E}\x{308A}\x{306E}"
27082708 RenderRuby (inline) {RUBY} at (0,0) size 18x22
2709  RenderRubyRun (anonymous) at (1626,373) size 18x22
2710  RenderRubyText {RT} at (-13,0) size 13x22
 2709 RenderRubyRun (anonymous) at (1737,373) size 24x22
 2710 RenderRubyText {RT} at (-10,0) size 15x22
27112711 RenderText {#text} at (0,0) size 13x22
27122712 text run at (0,0) width 22: "\x{3046}\x{3061}"
2713  RenderRubyBase (anonymous) at (0,0) size 18x22
 2713 RenderRubyBase (anonymous) at (0,0) size 24x22
27142714 RenderInline {RB} at (0,0) size 18x17
2715  RenderText {#text} at (0,2) size 18x17
2716  text run at (0,2) width 17: "\x{88CF}"
2717  RenderText {#text} at (1626,395) size 36x476
2718  text run at (1626,395) width 81: "\x{306B}\x{6691}\x{82E6}\x{3057}\x{3044}"
2719  text run at (1644,0) width 452: "\x{4E16}\x{306E}\x{4E2D}\x{3092}\x{307E}\x{308B}\x{3067}\x{5FD8}\x{308C}\x{305F}\x{5149}\x{666F}\x{304C}\x{51FA}\x{3066}\x{304F}\x{308B}\x{3002}\x{57A3}\x{306E}\x{5411}\x{3046}\x{306B}\x{96A3}\x{308A}\x{306E}\x{5A18}\x{304C}"
 2715 RenderText {#text} at (3,2) size 18x17
 2716 text run at (3,2) width 17: "\x{88CF}"
 2717 RenderText {#text} at (1740,395) size 42x476
 2718 text run at (1740,395) width 81: "\x{306B}\x{6691}\x{82E6}\x{3057}\x{3044}"
 2719 text run at (1764,0) width 452: "\x{4E16}\x{306E}\x{4E2D}\x{3092}\x{307E}\x{308B}\x{3067}\x{5FD8}\x{308C}\x{305F}\x{5149}\x{666F}\x{304C}\x{51FA}\x{3066}\x{304F}\x{308B}\x{3002}\x{57A3}\x{306E}\x{5411}\x{3046}\x{306B}\x{96A3}\x{308A}\x{306E}\x{5A18}\x{304C}"
27202720 RenderRuby (inline) {RUBY} at (0,0) size 18x22
2721  RenderRubyRun (anonymous) at (1675,0) size 18x22
2722  RenderRubyText {RT} at (-13,0) size 13x22
 2721 RenderRubyRun (anonymous) at (1792,0) size 24x22
 2722 RenderRubyText {RT} at (-10,0) size 15x22
27232723 RenderText {#text} at (0,0) size 13x22
27242724 text run at (0,0) width 22: "\x{306E}\x{305E}"
2725  RenderRubyBase (anonymous) at (0,0) size 18x22
 2725 RenderRubyBase (anonymous) at (0,0) size 24x22
27262726 RenderInline {RB} at (0,0) size 18x17
2727  RenderText {#text} at (0,2) size 18x17
2728  text run at (0,2) width 17: "\x{8997}"
2729  RenderText {#text} at (1675,22) size 18x186
2730  text run at (1675,22) width 186: "\x{3044}\x{3066}\x{308B}\x{8A33}\x{3067}\x{3082}\x{306A}\x{3051}\x{308C}\x{3070}\x{3001}"
 2727 RenderText {#text} at (3,2) size 18x17
 2728 text run at (3,2) width 17: "\x{8997}"
 2729 RenderText {#text} at (1795,22) size 18x186
 2730 text run at (1795,22) width 186: "\x{3044}\x{3066}\x{308B}\x{8A33}\x{3067}\x{3082}\x{306A}\x{3051}\x{308C}\x{3070}\x{3001}"
27312731 RenderRuby (inline) {RUBY} at (0,0) size 18x44
2732  RenderRubyRun (anonymous) at (1675,208) size 18x44
2733  RenderRubyText {RT} at (-13,0) size 13x44
 2732 RenderRubyRun (anonymous) at (1792,208) size 24x44
 2733 RenderRubyText {RT} at (-10,0) size 15x44
27342734 RenderText {#text} at (0,0) size 13x44
27352735 text run at (0,0) width 44: "\x{306A}\x{3093}\x{3056}\x{3093}"
2736  RenderRubyBase (anonymous) at (0,0) size 18x44
 2736 RenderRubyBase (anonymous) at (0,0) size 24x44
27372737 RenderInline {RB} at (0,0) size 18x34
2738  RenderText {#text} at (0,5) size 18x34
2739  text run at (0,5) width 34: "\x{5357}\x{5C71}"
2740  RenderText {#text} at (1675,252) size 49x478
2741  text run at (1675,252) width 226: "\x{306B}\x{89AA}\x{53CB}\x{304C}\x{5949}\x{8077}\x{3057}\x{3066}\x{3044}\x{308B}\x{6B21}\x{7B2C}\x{3067}\x{3082}"
2742  text run at (1706,0) width 97: "\x{306A}\x{3044}\x{3002}\x{8D85}\x{7136}\x{3068}"
 2738 RenderText {#text} at (3,5) size 18x34
 2739 text run at (3,5) width 34: "\x{5357}\x{5C71}"
 2740 RenderText {#text} at (1795,252) size 49x478
 2741 text run at (1795,252) width 226: "\x{306B}\x{89AA}\x{53CB}\x{304C}\x{5949}\x{8077}\x{3057}\x{3066}\x{3044}\x{308B}\x{6B21}\x{7B2C}\x{3067}\x{3082}"
 2742 text run at (1826,0) width 97: "\x{306A}\x{3044}\x{3002}\x{8D85}\x{7136}\x{3068}"
27432743 RenderRuby (inline) {RUBY} at (0,0) size 18x86
2744  RenderRubyRun (anonymous) at (1706,97) size 18x86
2745  RenderRubyText {RT} at (-13,0) size 13x86
 2744 RenderRubyRun (anonymous) at (1823,97) size 24x86
 2745 RenderRubyText {RT} at (-10,0) size 15x86
27462746 RenderText {#text} at (0,0) size 13x86
27472747 text run at (0,0) width 86: "\x{3057}\x{3085}\x{3063}\x{305B}\x{3051}\x{3093}\x{3066}\x{304D}"
2748  RenderRubyBase (anonymous) at (0,0) size 18x86
 2748 RenderRubyBase (anonymous) at (0,0) size 24x86
27492749 RenderInline {RB} at (0,0) size 18x68
2750  RenderText {#text} at (0,9) size 18x68
2751  text run at (0,9) width 68: "\x{51FA}\x{4E16}\x{9593}\x{7684}"
2752  RenderText {#text} at (1706,183) size 49x474
2753  text run at (1706,183) width 291: "\x{306B}\x{5229}\x{5BB3}\x{640D}\x{5F97}\x{306E}\x{6C57}\x{3092}\x{6D41}\x{3057}\x{53BB}\x{3063}\x{305F}\x{5FC3}\x{6301}\x{3061}\x{306B}\x{306A}"
2754  text run at (1737,0) width 49: "\x{308C}\x{308B}\x{3002}"
 2750 RenderText {#text} at (3,9) size 18x68
 2751 text run at (3,9) width 68: "\x{51FA}\x{4E16}\x{9593}\x{7684}"
 2752 RenderText {#text} at (1826,183) size 49x474
 2753 text run at (1826,183) width 291: "\x{306B}\x{5229}\x{5BB3}\x{640D}\x{5F97}\x{306E}\x{6C57}\x{3092}\x{6D41}\x{3057}\x{53BB}\x{3063}\x{305F}\x{5FC3}\x{6301}\x{3061}\x{306B}\x{306A}"
 2754 text run at (1857,0) width 49: "\x{308C}\x{308B}\x{3002}"
27552755 RenderRuby (inline) {RUBY} at (0,0) size 18x33
2756  RenderRubyRun (anonymous) at (1737,49) size 18x33
2757  RenderRubyText {RT} at (-13,0) size 13x33
 2756 RenderRubyRun (anonymous) at (1854,49) size 24x33
 2757 RenderRubyText {RT} at (-10,0) size 15x33
27582758 RenderText {#text} at (0,0) size 13x33
27592759 text run at (0,0) width 33: "\x{3072}\x{3068}\x{308A}"
2760  RenderRubyBase (anonymous) at (0,0) size 18x33
 2760 RenderRubyBase (anonymous) at (0,0) size 24x33
27612761 RenderInline {RB} at (0,0) size 18x17
2762  RenderText {#text} at (0,8) size 18x17
2763  text run at (0,8) width 17: "\x{72EC}"
 2762 RenderText {#text} at (3,8) size 18x17
 2763 text run at (3,8) width 17: "\x{72EC}"
27642764 RenderRuby (inline) {RUBY} at (0,0) size 18x110
2765  RenderRubyRun (anonymous) at (1737,82) size 18x110
2766  RenderRubyText {RT} at (-13,0) size 13x110
 2765 RenderRubyRun (anonymous) at (1854,82) size 24x110
 2766 RenderRubyText {RT} at (-10,0) size 15x110
27672767 RenderText {#text} at (0,0) size 13x110
27682768 text run at (0,0) width 110: "\x{3086}\x{3046}\x{3053}\x{3046}\x{306E}\x{3046}\x{3061}\x{306B}\x{3056}\x{3057}"
2769  RenderRubyBase (anonymous) at (0,0) size 18x110
 2769 RenderRubyBase (anonymous) at (0,0) size 24x110
27702770 RenderInline {RB} at (0,0) size 18x68
2771  RenderText {#text} at (0,21) size 18x68
2772  text run at (0,21) width 68: "\x{5750}\x{5E7D}\x{7BC1}\x{88CF}"
2773  RenderText {#text} at (1737,192) size 18x17
2774  text run at (1737,192) width 17: "\x{3001}"
 2771 RenderText {#text} at (3,21) size 18x68
 2772 text run at (3,21) width 68: "\x{5750}\x{5E7D}\x{7BC1}\x{88CF}"
 2773 RenderText {#text} at (1857,192) size 18x17
 2774 text run at (1857,192) width 17: "\x{3001}"
27752775 RenderRuby (inline) {RUBY} at (0,0) size 18x77
2776  RenderRubyRun (anonymous) at (1737,209) size 18x77
2777  RenderRubyText {RT} at (-13,0) size 13x77
 2776 RenderRubyRun (anonymous) at (1854,209) size 24x77
 2777 RenderRubyText {RT} at (-10,0) size 15x77
27782778 RenderText {#text} at (0,0) size 13x77
27792779 text run at (0,0) width 77: "\x{304D}\x{3093}\x{3092}\x{3060}\x{3093}\x{3058}\x{3066}"
2780  RenderRubyBase (anonymous) at (0,0) size 18x77
 2780 RenderRubyBase (anonymous) at (0,0) size 24x77
27812781 RenderInline {RB} at (0,0) size 18x34
2782  RenderText {#text} at (0,21) size 18x34
2783  text run at (0,21) width 34: "\x{5F3E}\x{7434}"
 2782 RenderText {#text} at (3,21) size 18x34
 2783 text run at (3,21) width 34: "\x{5F3E}\x{7434}"
27842784 RenderRuby (inline) {RUBY} at (0,0) size 18x97
2785  RenderRubyRun (anonymous) at (1737,286) size 18x97
2786  RenderRubyText {RT} at (-13,0) size 13x97
 2785 RenderRubyRun (anonymous) at (1854,286) size 24x97
 2786 RenderRubyText {RT} at (-10,0) size 15x97
27872787 RenderText {#text} at (0,0) size 13x97
27882788 text run at (0,0) width 97: "\x{307E}\x{305F}\x{3061}\x{3087}\x{3046}\x{3057}\x{3087}\x{3046}\x{3059}"
2789  RenderRubyBase (anonymous) at (0,0) size 18x97
 2789 RenderRubyBase (anonymous) at (0,0) size 24x97
27902790 RenderInline {RB} at (0,0) size 18x51
2791  RenderText {#text} at (0,23) size 18x51
2792  text run at (0,23) width 51: "\x{5FA9}\x{9577}\x{562F}"
2793  RenderText {#text} at (1737,383) size 18x17
2794  text run at (1737,383) width 17: "\x{3001}"
 2791 RenderText {#text} at (3,23) size 18x51
 2792 text run at (3,23) width 51: "\x{5FA9}\x{9577}\x{562F}"
 2793 RenderText {#text} at (1857,383) size 18x17
 2794 text run at (1857,383) width 17: "\x{3001}"
27952795 RenderRuby (inline) {RUBY} at (0,0) size 18x44
2796  RenderRubyRun (anonymous) at (1737,400) size 18x44
2797  RenderRubyText {RT} at (-13,0) size 13x44
 2796 RenderRubyRun (anonymous) at (1854,400) size 24x44
 2797 RenderRubyText {RT} at (-10,0) size 15x44
27982798 RenderText {#text} at (0,0) size 13x44
27992799 text run at (0,0) width 44: "\x{3057}\x{3093}\x{308A}\x{3093}"
2800  RenderRubyBase (anonymous) at (0,0) size 18x44
 2800 RenderRubyBase (anonymous) at (0,0) size 24x44
28012801 RenderInline {RB} at (0,0) size 18x34
2802  RenderText {#text} at (0,5) size 18x34
2803  text run at (0,5) width 34: "\x{6DF1}\x{6797}"
 2802 RenderText {#text} at (3,5) size 18x34
 2803 text run at (3,5) width 34: "\x{6DF1}\x{6797}"
28042804 RenderRuby (inline) {RUBY} at (0,0) size 18x55
2805  RenderRubyRun (anonymous) at (1768,0) size 18x55
2806  RenderRubyText {RT} at (-13,0) size 13x55
 2805 RenderRubyRun (anonymous) at (1885,0) size 24x55
 2806 RenderRubyText {RT} at (-10,0) size 15x55
28072807 RenderText {#text} at (0,0) size 13x55
28082808 text run at (0,0) width 55: "\x{3072}\x{3068}\x{3057}\x{3089}\x{305A}"
2809  RenderRubyBase (anonymous) at (0,0) size 18x55
 2809 RenderRubyBase (anonymous) at (0,0) size 24x55
28102810 RenderInline {RB} at (0,0) size 18x51
2811  RenderText {#text} at (0,2) size 18x51
2812  text run at (0,2) width 51: "\x{4EBA}\x{4E0D}\x{77E5}"
2813  RenderText {#text} at (1768,55) size 18x17
2814  text run at (1768,55) width 17: "\x{3001}"
 2811 RenderText {#text} at (3,2) size 18x51
 2812 text run at (3,2) width 51: "\x{4EBA}\x{4E0D}\x{77E5}"
 2813 RenderText {#text} at (1888,55) size 18x17
 2814 text run at (1888,55) width 17: "\x{3001}"
28152815 RenderRuby (inline) {RUBY} at (0,0) size 18x88
2816  RenderRubyRun (anonymous) at (1768,72) size 18x88
2817  RenderRubyText {RT} at (-13,0) size 13x88
 2816 RenderRubyRun (anonymous) at (1885,72) size 24x88
 2817 RenderRubyText {RT} at (-10,0) size 15x88
28182818 RenderText {#text} at (0,0) size 13x88
28192819 text run at (0,0) width 88: "\x{3081}\x{3044}\x{3052}\x{3064}\x{304D}\x{305F}\x{308A}\x{3066}"
2820  RenderRubyBase (anonymous) at (0,0) size 18x88
 2820 RenderRubyBase (anonymous) at (0,0) size 24x88
28212821 RenderInline {RB} at (0,0) size 18x51
2822  RenderText {#text} at (0,18) size 18x51
2823  text run at (0,18) width 51: "\x{660E}\x{6708}\x{6765}"
 2822 RenderText {#text} at (3,18) size 18x51
 2823 text run at (3,18) width 51: "\x{660E}\x{6708}\x{6765}"
28242824 RenderRuby (inline) {RUBY} at (0,0) size 18x55
2825  RenderRubyRun (anonymous) at (1768,160) size 18x55
2826  RenderRubyText {RT} at (-13,0) size 13x55
 2825 RenderRubyRun (anonymous) at (1885,160) size 24x55
 2826 RenderRubyText {RT} at (-10,0) size 15x55
28272827 RenderText {#text} at (0,0) size 13x55
28282828 text run at (0,0) width 55: "\x{3042}\x{3044}\x{3066}\x{3089}\x{3059}"
2829  RenderRubyBase (anonymous) at (0,0) size 18x55
 2829 RenderRubyBase (anonymous) at (0,0) size 24x55
28302830 RenderInline {RB} at (0,0) size 18x34
2831  RenderText {#text} at (0,10) size 18x34
2832  text run at (0,10) width 34: "\x{76F8}\x{7167}"
2833  RenderText {#text} at (1768,215) size 18x170
2834  text run at (1768,215) width 170: "\x{3002}\x{305F}\x{3060}\x{4E8C}\x{5341}\x{5B57}\x{306E}\x{3046}\x{3061}\x{306B}"
 2831 RenderText {#text} at (3,10) size 18x34
 2832 text run at (3,10) width 34: "\x{76F8}\x{7167}"
 2833 RenderText {#text} at (1888,215) size 18x170
 2834 text run at (1888,215) width 170: "\x{3002}\x{305F}\x{3060}\x{4E8C}\x{5341}\x{5B57}\x{306E}\x{3046}\x{3061}\x{306B}"
28352835 RenderRuby (inline) {RUBY} at (0,0) size 18x22
2836  RenderRubyRun (anonymous) at (1768,385) size 18x22
2837  RenderRubyText {RT} at (-13,0) size 13x22
 2836 RenderRubyRun (anonymous) at (1885,385) size 24x22
 2837 RenderRubyText {RT} at (-10,0) size 15x22
28382838 RenderText {#text} at (0,0) size 13x22
28392839 text run at (0,0) width 22: "\x{3086}\x{3046}"
2840  RenderRubyBase (anonymous) at (0,0) size 18x22
 2840 RenderRubyBase (anonymous) at (0,0) size 24x22
28412841 RenderInline {RB} at (0,0) size 18x17
2842  RenderText {#text} at (0,2) size 18x17
2843  text run at (0,2) width 17: "\x{512A}"
2844  RenderText {#text} at (1768,407) size 18x17
2845  text run at (1768,407) width 17: "\x{306B}"
 2842 RenderText {#text} at (3,2) size 18x17
 2843 text run at (3,2) width 17: "\x{512A}"
 2844 RenderText {#text} at (1888,407) size 18x17
 2845 text run at (1888,407) width 17: "\x{306B}"
28462846 RenderRuby (inline) {RUBY} at (0,0) size 18x66
2847  RenderRubyRun (anonymous) at (1768,424) size 18x66
2848  RenderRubyText {RT} at (-13,0) size 13x66
 2847 RenderRubyRun (anonymous) at (1885,424) size 24x66
 2848 RenderRubyText {RT} at (-10,0) size 15x66
28492849 RenderText {#text} at (0,0) size 13x66
28502850 text run at (0,0) width 66: "\x{3079}\x{3064}\x{3051}\x{3093}\x{3053}\x{3093}"
2851  RenderRubyBase (anonymous) at (0,0) size 18x66
 2851 RenderRubyBase (anonymous) at (0,0) size 24x66
28522852 RenderInline {RB} at (0,0) size 18x51
2853  RenderText {#text} at (0,7) size 18x51
2854  text run at (0,7) width 51: "\x{5225}\x{4E7E}\x{5764}"
2855  RenderText {#text} at (1799,0) size 18x17
2856  text run at (1799,0) width 17: "\x{3092}"
 2853 RenderText {#text} at (3,7) size 18x51
 2854 text run at (3,7) width 51: "\x{5225}\x{4E7E}\x{5764}"
 2855 RenderText {#text} at (1919,0) size 18x17
 2856 text run at (1919,0) width 17: "\x{3092}"
28572857 RenderRuby (inline) {RUBY} at (0,0) size 18x54
2858  RenderRubyRun (anonymous) at (1799,17) size 18x54
2859  RenderRubyText {RT} at (-13,0) size 13x54
 2858 RenderRubyRun (anonymous) at (1916,17) size 24x54
 2859 RenderRubyText {RT} at (-10,0) size 15x54
28602860 RenderText {#text} at (0,0) size 13x54
28612861 text run at (0,0) width 54: "\x{3053}\x{3093}\x{308A}\x{3085}\x{3046}"
2862  RenderRubyBase (anonymous) at (0,0) size 18x54
 2862 RenderRubyBase (anonymous) at (0,0) size 24x54
28632863 RenderInline {RB} at (0,0) size 18x34
2864  RenderText {#text} at (0,10) size 18x34
2865  text run at (0,10) width 34: "\x{5EFA}\x{7ACB}"
2866  RenderText {#text} at (1799,71) size 18x169
2867  text run at (1799,71) width 169: "\x{3057}\x{3066}\x{3044}\x{308B}\x{3002}\x{3053}\x{306E}\x{4E7E}\x{5764}\x{306E}"
 2864 RenderText {#text} at (3,10) size 18x34
 2865 text run at (3,10) width 34: "\x{5EFA}\x{7ACB}"
 2866 RenderText {#text} at (1919,71) size 18x169
 2867 text run at (1919,71) width 169: "\x{3057}\x{3066}\x{3044}\x{308B}\x{3002}\x{3053}\x{306E}\x{4E7E}\x{5764}\x{306E}"
28682868 RenderRuby (inline) {RUBY} at (0,0) size 18x34
2869  RenderRubyRun (anonymous) at (1799,240) size 18x34
2870  RenderRubyText {RT} at (-13,0) size 13x34
 2869 RenderRubyRun (anonymous) at (1916,240) size 24x34
 2870 RenderRubyText {RT} at (-10,0) size 15x34
28712871 RenderText {#text} at (0,0) size 13x33
28722872 text run at (0,0) width 33: "\x{304F}\x{3069}\x{304F}"
2873  RenderRubyBase (anonymous) at (0,0) size 18x34
 2873 RenderRubyBase (anonymous) at (0,0) size 24x34
28742874 RenderInline {RB} at (0,0) size 18x34
2875  RenderText {#text} at (0,0) size 18x34
2876  text run at (0,0) width 34: "\x{529F}\x{5FB3}"
2877  RenderText {#text} at (1799,274) size 18x34
2878  text run at (1799,274) width 34: "\x{306F}\x{300C}"
 2875 RenderText {#text} at (3,0) size 18x34
 2876 text run at (3,0) width 34: "\x{529F}\x{5FB3}"
 2877 RenderText {#text} at (1919,274) size 18x34
 2878 text run at (1919,274) width 34: "\x{306F}\x{300C}"
28792879 RenderRuby (inline) {RUBY} at (0,0) size 18x55
2880  RenderRubyRun (anonymous) at (1799,308) size 18x55
2881  RenderRubyText {RT} at (-13,0) size 13x55
 2880 RenderRubyRun (anonymous) at (1916,308) size 24x55
 2881 RenderRubyText {RT} at (-10,0) size 15x55
28822882 RenderText {#text} at (0,0) size 13x55
28832883 text run at (0,0) width 55: "\x{307B}\x{3068}\x{3068}\x{304E}\x{3059}"
2884  RenderRubyBase (anonymous) at (0,0) size 18x55
 2884 RenderRubyBase (anonymous) at (0,0) size 24x55
28852885 RenderInline {RB} at (0,0) size 18x51
2886  RenderText {#text} at (0,2) size 18x51
2887  text run at (0,2) width 51: "\x{4E0D}\x{5982}\x{5E30}"
2888  RenderText {#text} at (1799,363) size 18x51
2889  text run at (1799,363) width 51: "\x{300D}\x{3084}\x{300C}"
 2886 RenderText {#text} at (3,2) size 18x51
 2887 text run at (3,2) width 51: "\x{4E0D}\x{5982}\x{5E30}"
 2888 RenderText {#text} at (1919,363) size 18x51
 2889 text run at (1919,363) width 51: "\x{300D}\x{3084}\x{300C}"
28902890 RenderRuby (inline) {RUBY} at (0,0) size 18x76
2891  RenderRubyRun (anonymous) at (1799,414) size 18x76
2892  RenderRubyText {RT} at (-13,0) size 13x76
 2891 RenderRubyRun (anonymous) at (1916,414) size 24x76
 2892 RenderRubyText {RT} at (-10,0) size 15x76
28932893 RenderText {#text} at (0,0) size 13x76
28942894 text run at (0,0) width 76: "\x{3053}\x{3093}\x{3058}\x{304D}\x{3084}\x{3057}\x{3083}"
2895  RenderRubyBase (anonymous) at (0,0) size 18x76
 2895 RenderRubyBase (anonymous) at (0,0) size 24x76
28962896 RenderInline {RB} at (0,0) size 18x68
2897  RenderText {#text} at (0,4) size 18x68
2898  text run at (0,4) width 68: "\x{91D1}\x{8272}\x{591C}\x{53C9}"
2899  RenderText {#text} at (1817,0) size 49x468
2900  text run at (1817,0) width 468: "\x{300D}\x{306E}\x{529F}\x{5FB3}\x{3067}\x{306F}\x{306A}\x{3044}\x{3002}\x{6C7D}\x{8239}\x{3001}\x{6C7D}\x{8ECA}\x{3001}\x{6A29}\x{5229}\x{3001}\x{7FA9}\x{52D9}\x{3001}\x{9053}\x{5FB3}\x{3001}\x{793C}\x{7FA9}\x{3067}\x{75B2}\x{308C}"
2901  text run at (1848,0) width 49: "\x{679C}\x{3066}\x{305F}"
 2897 RenderText {#text} at (3,4) size 18x68
 2898 text run at (3,4) width 68: "\x{91D1}\x{8272}\x{591C}\x{53C9}"
 2899 RenderText {#text} at (1943,0) size 49x468
 2900 text run at (1943,0) width 468: "\x{300D}\x{306E}\x{529F}\x{5FB3}\x{3067}\x{306F}\x{306A}\x{3044}\x{3002}\x{6C7D}\x{8239}\x{3001}\x{6C7D}\x{8ECA}\x{3001}\x{6A29}\x{5229}\x{3001}\x{7FA9}\x{52D9}\x{3001}\x{9053}\x{5FB3}\x{3001}\x{793C}\x{7FA9}\x{3067}\x{75B2}\x{308C}"
 2901 text run at (1974,0) width 49: "\x{679C}\x{3066}\x{305F}"
29022902 RenderRuby (inline) {RUBY} at (0,0) size 18x22
2903  RenderRubyRun (anonymous) at (1848,49) size 18x22
2904  RenderRubyText {RT} at (-13,0) size 13x22
 2903 RenderRubyRun (anonymous) at (1971,49) size 24x22
 2904 RenderRubyText {RT} at (-10,0) size 15x22
29052905 RenderText {#text} at (0,0) size 13x22
29062906 text run at (0,0) width 22: "\x{306E}\x{3061}"
2907  RenderRubyBase (anonymous) at (0,0) size 18x22
 2907 RenderRubyBase (anonymous) at (0,0) size 24x22
29082908 RenderInline {RB} at (0,0) size 18x17
2909  RenderText {#text} at (0,2) size 18x17
2910  text run at (0,2) width 17: "\x{5F8C}"
2911  RenderText {#text} at (1848,71) size 36x458
2912  text run at (1848,71) width 387: "\x{306B}\x{3001}\x{3059}\x{3079}\x{3066}\x{3092}\x{5FD8}\x{5374}\x{3057}\x{3066}\x{3050}\x{3063}\x{3059}\x{308A}\x{5BDD}\x{8FBC}\x{3080}\x{3088}\x{3046}\x{306A}\x{529F}\x{5FB3}\x{3067}\x{3042}"
2913  text run at (1866,0) width 33: "\x{308B}\x{3002}"
2914  RenderBR {BR} at (1866,33) size 18x0
2915 scrolled to 3999,0
 2909 RenderText {#text} at (3,2) size 18x17
 2910 text run at (3,2) width 17: "\x{5F8C}"
 2911 RenderText {#text} at (1974,71) size 42x458
 2912 text run at (1974,71) width 387: "\x{306B}\x{3001}\x{3059}\x{3079}\x{3066}\x{3092}\x{5FD8}\x{5374}\x{3057}\x{3066}\x{3050}\x{3063}\x{3059}\x{308A}\x{5BDD}\x{8FBC}\x{3080}\x{3088}\x{3046}\x{306A}\x{529F}\x{5FB3}\x{3067}\x{3042}"
 2913 text run at (1998,0) width 33: "\x{308B}\x{3002}"
 2914 RenderBR {BR} at (1998,33) size 18x0
 2915scrolled to 4299,0
73924

LayoutTests/platform/mac/fast/css/beforeSelectorOnCodeElement-expected.checksum

1 0891b57697a0ef9082e2cf384e296191
21\ No newline at end of file
 2e8c13a0345bd0ebaa6b0ed6ec59840a1
33\ No newline at end of file
73924

LayoutTests/platform/mac/fast/css/beforeSelectorOnCodeElement-expected.txt

@@layer at (0,0) size 800x600
1111 text run at (729,0) width 40: "11197"
1212 RenderText {#text} at (769,0) size 4x18
1313 text run at (769,0) width 4: "."
14  RenderBlock (anonymous) at (0,34) size 784x15
 14 RenderBlock (anonymous) at (0,34) size 784x16
1515 RenderInline {CODE} at (0,0) size 64x15
1616 RenderInline (generated) at (0,0) size 8x15
17  RenderCounter at (0,0) size 8x15
18  text run at (0,0) width 8: "\x{25E6}"
19  RenderText {#text} at (8,0) size 48x15
20  text run at (8,0) width 48: "PASSED"
 17 RenderCounter at (0,1) size 8x15
 18 text run at (0,1) width 8: "\x{25E6}"
 19 RenderText {#text} at (8,1) size 48x15
 20 text run at (8,1) width 48: "PASSED"
2121 RenderInline (generated) at (0,0) size 8x15
22  RenderCounter at (56,0) size 8x15
23  text run at (56,0) width 8: "\x{25A0}"
 22 RenderCounter at (56,1) size 8x15
 23 text run at (56,1) width 8: "\x{25A0}"
2424 RenderText {#text} at (0,0) size 0x0
73924

LayoutTests/platform/mac/fast/css/font-face-opentype-expected.checksum

1 8e251a437284b92d8abe8a256a30edcf
21\ No newline at end of file
 2d5be0d8285d1201ac3cea428341b4d0a
33\ No newline at end of file
73924

LayoutTests/platform/mac/fast/css/font-face-opentype-expected.txt

@@layer at (0,0) size 800x600
3333 RenderText {#text} at (0,0) size 744x36
3434 text run at (0,0) width 744: "Check if glyphs not in Ahem.otf can be rendered using a fallback font. If the test passes, you should see a single-quote"
3535 text run at (0,18) width 104: "character below:"
36  RenderBlock (anonymous) at (0,204) size 784x16
 36 RenderBlock (anonymous) at (0,204) size 784x18
3737 RenderInline {SPAN} at (0,0) size 3x16
38  RenderText {#text} at (0,0) size 3x16
39  text run at (0,0) width 3: "'"
 38 RenderText {#text} at (0,1) size 3x16
 39 text run at (0,1) width 3: "'"
4040 RenderText {#text} at (0,0) size 0x0
4141 RenderText {#text} at (0,0) size 0x0
4242 RenderText {#text} at (0,0) size 0x0
73924

LayoutTests/platform/mac/fast/css/rtl-ordering-expected.checksum

1 0c6d3c86c6946a78ee617a1ad38f2171
21\ No newline at end of file
 2916d9c37b71133e376ea353ddcf70b79
33\ No newline at end of file
73924

LayoutTests/platform/mac/fast/css/rtl-ordering-expected.txt

@@layer at (0,0) size 800x600
1616 RenderText {#text} at (371,18) size 4x18
1717 text run at (371,18) width 4 LTR override: "."
1818 RenderBlock {HR} at (0,52) size 784x2 [border: (1px inset #000000)]
19  RenderBlock {P} at (0,70) size 784x18
20  RenderText {#text} at (0,0) size 304x18
21  text run at (0,0) width 261 LTR override: "The text on both buttons should like this: "
22  text run at (261,0) width 43 LTR override: "\x{5E8}\x{5D5}\x{5EA}\x{5E4}\x{5DB}"
23  RenderBlock (anonymous) at (0,104) size 784x44
 19 RenderBlock {P} at (0,70) size 784x19
 20 RenderText {#text} at (0,1) size 304x18
 21 text run at (0,1) width 261 LTR override: "The text on both buttons should like this: "
 22 text run at (261,1) width 43 LTR override: "\x{5E8}\x{5D5}\x{5EA}\x{5E4}\x{5DB}"
 23 RenderBlock (anonymous) at (0,105) size 784x44
2424 RenderButton {BUTTON} at (2,2) size 46x18 [bgcolor=#C0C0C0] [border: (2px outset #C0C0C0) none (2px outset #C0C0C0)]
2525 RenderBlock (anonymous) at (8,2) size 30x13
2626 RenderText {#text} at (0,0) size 30x13

@@layer at (0,0) size 800x600
3333 RenderText at (0,0) size 30x13
3434 text run at (0,0) width 30 RTL: "\x{5DB}\x{5E4}\x{5EA}\x{5D5}\x{5E8}"
3535 RenderText {#text} at (0,0) size 0x0
36  RenderBlock {HR} at (0,156) size 784x2 [border: (1px inset #000000)]
37  RenderBlock {P} at (0,174) size 784x18
 36 RenderBlock {HR} at (0,157) size 784x2 [border: (1px inset #000000)]
 37 RenderBlock {P} at (0,175) size 784x18
3838 RenderText {#text} at (0,0) size 249x18
3939 text run at (0,0) width 249 LTR override: "The following lines should be identical:"
40  RenderBlock {P} at (0,208) size 784x18
41  RenderText {#text} at (0,0) size 82x18
42  text run at (0,0) width 16: "21"
43  text run at (16,0) width 66 RTL: "\x{5D4}\x{5DE}\x{5D0}\x{5D4} \x{5D4}-"
44  RenderBlock {P} at (0,242) size 784x18
45  RenderText {#text} at (0,0) size 82x18
46  text run at (0,0) width 21 LTR override: "21-"
47  text run at (21,0) width 61 LTR override: "\x{5D4} \x{5D4}\x{5D0}\x{5DE}\x{5D4}"
 40 RenderBlock {P} at (0,209) size 784x19
 41 RenderText {#text} at (0,1) size 82x18
 42 text run at (0,1) width 16: "21"
 43 text run at (16,1) width 66 RTL: "\x{5D4}\x{5DE}\x{5D0}\x{5D4} \x{5D4}-"
 44 RenderBlock {P} at (0,244) size 784x19
 45 RenderText {#text} at (0,1) size 82x18
 46 text run at (0,1) width 21 LTR override: "21-"
 47 text run at (21,1) width 61 LTR override: "\x{5D4} \x{5D4}\x{5D0}\x{5DE}\x{5D4}"
73924

LayoutTests/platform/mac/fast/css/text-overflow-ellipsis-bidi-expected.checksum

1 1ce0234c8a2318632c32cc3bae957e50
21\ No newline at end of file
 2ed68e8ab7678e82325e84a70c535b268
33\ No newline at end of file
73924

LayoutTests/platform/mac/fast/css/text-overflow-ellipsis-bidi-expected.txt

11layer at (0,0) size 800x600
22 RenderView at (0,0) size 800x600
3 layer at (0,0) size 800x196
4  RenderBlock {HTML} at (0,0) size 800x196
5  RenderBody {BODY} at (8,8) size 784x180
 3layer at (0,0) size 800x200
 4 RenderBlock {HTML} at (0,0) size 800x200
 5 RenderBody {BODY} at (8,8) size 784x184
66 RenderBlock (anonymous) at (0,0) size 784x72
77 RenderText {#text} at (0,0) size 565x18
88 text run at (0,0) width 565: "Each consecutive pair of lines should look exactly the same apart from the trailing ellipsis."

@@layer at (0,0) size 800x196
1313 RenderBR {BR} at (0,36) size 0x18
1414 RenderText {#text} at (0,54) size 62x18
1515 text run at (0,54) width 62: "RTL text:"
16  RenderBlock (anonymous) at (0,108) size 784x36
 16 RenderBlock (anonymous) at (0,110) size 784x36
1717 RenderBR {BR} at (0,0) size 0x18
1818 RenderText {#text} at (0,18) size 64x18
1919 text run at (0,18) width 64: "LTR Text"
20 layer at (8,80) size 207x18 scrollX 154 scrollWidth 361
21  RenderBlock {DIV} at (0,72) size 207x18
22  RenderText {#text} at (-154,0) size 361x18
23  text run at (-154,0) width 0 RTL: "\x{202C}"
24  text run at (-154,0) width 276 RTL: " \x{5D8}\x{5E7}\x{5E1}\x{5D8} \x{5E2}\x{5D1}\x{5E8}\x{5D9} \x{5DC}\x{5D3}\x{5D5}\x{5D2}\x{5DE}\x{5D0} \x{5D8}\x{5E7}\x{5E1}\x{5D8} \x{5E2}\x{5D1}\x{5E8}\x{5D9} \x{5DC}\x{5D3}\x{5D5}\x{5D2}\x{5DE}\x{5D0} "
25  text run at (122,0) width 81: "English Text"
26  text run at (203,0) width 4 RTL: "\x{202B} "
27 layer at (8,98) size 207x18 scrollX 154 scrollWidth 361
28  RenderBlock {DIV} at (0,90) size 207x18
29  RenderText {#text} at (-154,0) size 361x18
30  text run at (-154,0) width 0 RTL: "\x{202C}"
31  text run at (-154,0) width 276 RTL: " \x{5D8}\x{5E7}\x{5E1}\x{5D8} \x{5E2}\x{5D1}\x{5E8}\x{5D9} \x{5DC}\x{5D3}\x{5D5}\x{5D2}\x{5DE}\x{5D0} \x{5D8}\x{5E7}\x{5E1}\x{5D8} \x{5E2}\x{5D1}\x{5E8}\x{5D9} \x{5DC}\x{5D3}\x{5D5}\x{5D2}\x{5DE}\x{5D0} "
32  text run at (122,0) width 81: "English Text"
33  text run at (203,0) width 4 RTL: "\x{202B} "
34 layer at (8,152) size 207x18 scrollWidth 262
35  RenderBlock {DIV} at (0,144) size 207x18
36  RenderText {#text} at (0,0) size 262x18
37  text run at (0,0) width 37 RTL: "\x{5DE}\x{5D9}\x{5DC}\x{5D4}"
38  text run at (37,0) width 41: " word "
39  text run at (78,0) width 41 RTL: "\x{5D0}\x{5D7}\x{5E8}\x{5EA}"
40  text run at (119,0) width 55: " another "
41  text run at (174,0) width 28 RTL: "\x{5D5}\x{5E2}\x{5D5}\x{5D3}"
42  text run at (202,0) width 27: " yet "
43  text run at (229,0) width 33 RTL: "\x{5D0}\x{5D7}\x{5EA}"
44 layer at (8,170) size 207x18 scrollWidth 262
45  RenderBlock {DIV} at (0,162) size 207x18
46  RenderText {#text} at (0,0) size 262x18
47  text run at (0,0) width 37 RTL: "\x{5DE}\x{5D9}\x{5DC}\x{5D4}"
48  text run at (37,0) width 41: " word "
49  text run at (78,0) width 41 RTL: "\x{5D0}\x{5D7}\x{5E8}\x{5EA}"
50  text run at (119,0) width 55: " another "
51  text run at (174,0) width 28 RTL: "\x{5D5}\x{5E2}\x{5D5}\x{5D3}"
52  text run at (202,0) width 27: " yet "
53  text run at (229,0) width 33 RTL: "\x{5D0}\x{5D7}\x{5EA}"
 20layer at (8,80) size 207x19 scrollX 154 scrollWidth 361
 21 RenderBlock {DIV} at (0,72) size 207x19
 22 RenderText {#text} at (-154,1) size 361x18
 23 text run at (-154,1) width 0 RTL: "\x{202C}"
 24 text run at (-154,1) width 276 RTL: " \x{5D8}\x{5E7}\x{5E1}\x{5D8} \x{5E2}\x{5D1}\x{5E8}\x{5D9} \x{5DC}\x{5D3}\x{5D5}\x{5D2}\x{5DE}\x{5D0} \x{5D8}\x{5E7}\x{5E1}\x{5D8} \x{5E2}\x{5D1}\x{5E8}\x{5D9} \x{5DC}\x{5D3}\x{5D5}\x{5D2}\x{5DE}\x{5D0} "
 25 text run at (122,1) width 81: "English Text"
 26 text run at (203,1) width 4 RTL: "\x{202B} "
 27layer at (8,99) size 207x19 scrollX 154 scrollWidth 361
 28 RenderBlock {DIV} at (0,91) size 207x19
 29 RenderText {#text} at (-154,1) size 361x18
 30 text run at (-154,1) width 0 RTL: "\x{202C}"
 31 text run at (-154,1) width 276 RTL: " \x{5D8}\x{5E7}\x{5E1}\x{5D8} \x{5E2}\x{5D1}\x{5E8}\x{5D9} \x{5DC}\x{5D3}\x{5D5}\x{5D2}\x{5DE}\x{5D0} \x{5D8}\x{5E7}\x{5E1}\x{5D8} \x{5E2}\x{5D1}\x{5E8}\x{5D9} \x{5DC}\x{5D3}\x{5D5}\x{5D2}\x{5DE}\x{5D0} "
 32 text run at (122,1) width 81: "English Text"
 33 text run at (203,1) width 4 RTL: "\x{202B} "
 34layer at (8,154) size 207x19 scrollWidth 262
 35 RenderBlock {DIV} at (0,146) size 207x19
 36 RenderText {#text} at (0,1) size 262x18
 37 text run at (0,1) width 37 RTL: "\x{5DE}\x{5D9}\x{5DC}\x{5D4}"
 38 text run at (37,1) width 41: " word "
 39 text run at (78,1) width 41 RTL: "\x{5D0}\x{5D7}\x{5E8}\x{5EA}"
 40 text run at (119,1) width 55: " another "
 41 text run at (174,1) width 28 RTL: "\x{5D5}\x{5E2}\x{5D5}\x{5D3}"
 42 text run at (202,1) width 27: " yet "
 43 text run at (229,1) width 33 RTL: "\x{5D0}\x{5D7}\x{5EA}"
 44layer at (8,173) size 207x19 scrollWidth 262
 45 RenderBlock {DIV} at (0,165) size 207x19
 46 RenderText {#text} at (0,1) size 262x18
 47 text run at (0,1) width 37 RTL: "\x{5DE}\x{5D9}\x{5DC}\x{5D4}"
 48 text run at (37,1) width 41: " word "
 49 text run at (78,1) width 41 RTL: "\x{5D0}\x{5D7}\x{5E8}\x{5EA}"
 50 text run at (119,1) width 55: " another "
 51 text run at (174,1) width 28 RTL: "\x{5D5}\x{5E2}\x{5D5}\x{5D3}"
 52 text run at (202,1) width 27: " yet "
 53 text run at (229,1) width 33 RTL: "\x{5D0}\x{5D7}\x{5EA}"
73924

LayoutTests/platform/mac/fast/css/text-overflow-ellipsis-expected.checksum

1 3b4788f945610d902a7566cd6acf88bf
21\ No newline at end of file
 2846527e528e7e590e287856b8cd2c4bd
33\ No newline at end of file
73924

LayoutTests/platform/mac/fast/css/text-overflow-ellipsis-expected.txt

@@layer at (0,0) size 785x740
4646 text run at (0,0) width 206: "LTR link with forced rtl content:"
4747layer at (8,98) size 182x22 clip at (9,99) size 180x20 scrollX 196 scrollWidth 376
4848 RenderBlock {DIV} at (0,90) size 182x22 [border: (1px solid #000000)]
49  RenderText {#text} at (-195,1) size 376x18
50  text run at (-195,1) width 376 RTL: "\x{5DB}\x{5E9}\x{5D4}\x{5D8}\x{5E7}\x{5E1}\x{5D8} \x{5E2}\x{5E8}\x{5D5}\x{5DA} \x{5DE}\x{5D3}\x{5D9} \x{5E0}\x{5E8}\x{5E6}\x{5D4} \x{5DC}\x{5D4}\x{5D5}\x{5E1}\x{5D9}\x{5E3} \x{5D0}\x{5DC}\x{5D9}\x{5E4}\x{5E1}\x{5D5}\x{5EA} \x{5D1}\x{5E1}\x{5D5}\x{5E3} \x{5E9}\x{5D5}\x{5E8}\x{5D4}"
 49 RenderText {#text} at (-195,2) size 376x18
 50 text run at (-195,2) width 376 RTL: "\x{5DB}\x{5E9}\x{5D4}\x{5D8}\x{5E7}\x{5E1}\x{5D8} \x{5E2}\x{5E8}\x{5D5}\x{5DA} \x{5DE}\x{5D3}\x{5D9} \x{5E0}\x{5E8}\x{5E6}\x{5D4} \x{5DC}\x{5D4}\x{5D5}\x{5E1}\x{5D9}\x{5E3} \x{5D0}\x{5DC}\x{5D9}\x{5E4}\x{5E1}\x{5D5}\x{5EA} \x{5D1}\x{5E1}\x{5D5}\x{5E3} \x{5E9}\x{5D5}\x{5E8}\x{5D4}"
5151layer at (8,158) size 182x22 clip at (9,159) size 180x20 scrollX 140 scrollWidth 320
5252 RenderBlock {DIV} at (0,150) size 182x22 [border: (1px solid #000000)]
5353 RenderText {#text} at (-139,1) size 320x18

@@layer at (8,458) size 182x22 clip at (9,
8080 text run at (1,1) width 320: "Lorem ipsum dolor sit amet, consectetur adipiscing"
8181layer at (8,518) size 182x22 clip at (9,519) size 180x20 scrollWidth 376
8282 RenderBlock {DIV} at (0,510) size 182x22 [border: (1px solid #000000)]
83  RenderText {#text} at (1,1) size 376x18
84  text run at (1,1) width 376 RTL: "\x{5DB}\x{5E9}\x{5D4}\x{5D8}\x{5E7}\x{5E1}\x{5D8} \x{5E2}\x{5E8}\x{5D5}\x{5DA} \x{5DE}\x{5D3}\x{5D9} \x{5E0}\x{5E8}\x{5E6}\x{5D4} \x{5DC}\x{5D4}\x{5D5}\x{5E1}\x{5D9}\x{5E3} \x{5D0}\x{5DC}\x{5D9}\x{5E4}\x{5E1}\x{5D5}\x{5EA} \x{5D1}\x{5E1}\x{5D5}\x{5E3} \x{5E9}\x{5D5}\x{5E8}\x{5D4}"
 83 RenderText {#text} at (1,2) size 376x18
 84 text run at (1,2) width 376 RTL: "\x{5DB}\x{5E9}\x{5D4}\x{5D8}\x{5E7}\x{5E1}\x{5D8} \x{5E2}\x{5E8}\x{5D5}\x{5DA} \x{5DE}\x{5D3}\x{5D9} \x{5E0}\x{5E8}\x{5E6}\x{5D4} \x{5DC}\x{5D4}\x{5D5}\x{5E1}\x{5D9}\x{5E3} \x{5D0}\x{5DC}\x{5D9}\x{5E4}\x{5E1}\x{5D5}\x{5EA} \x{5D1}\x{5E1}\x{5D5}\x{5E3} \x{5E9}\x{5D5}\x{5E8}\x{5D4}"
8585layer at (8,578) size 182x22 clip at (9,579) size 180x20 scrollWidth 320
8686 RenderBlock {DIV} at (0,570) size 182x22 [border: (1px solid #000000)]
8787 RenderInline {SPAN} at (0,0) size 320x18

@@layer at (8,578) size 182x22 clip at (9,
9191layer at (8,638) size 182x22 clip at (9,639) size 180x20 scrollWidth 376
9292 RenderBlock {DIV} at (0,630) size 182x22 [border: (1px solid #000000)]
9393 RenderInline {A} at (0,0) size 376x18 [color=#0000EE]
94  RenderText {#text} at (1,1) size 376x18
95  text run at (1,1) width 376 RTL: "\x{5DB}\x{5E9}\x{5D4}\x{5D8}\x{5E7}\x{5E1}\x{5D8} \x{5E2}\x{5E8}\x{5D5}\x{5DA} \x{5DE}\x{5D3}\x{5D9} \x{5E0}\x{5E8}\x{5E6}\x{5D4} \x{5DC}\x{5D4}\x{5D5}\x{5E1}\x{5D9}\x{5E3} \x{5D0}\x{5DC}\x{5D9}\x{5E4}\x{5E1}\x{5D5}\x{5EA} \x{5D1}\x{5E1}\x{5D5}\x{5E3} \x{5E9}\x{5D5}\x{5E8}\x{5D4}"
 94 RenderText {#text} at (1,2) size 376x18
 95 text run at (1,2) width 376 RTL: "\x{5DB}\x{5E9}\x{5D4}\x{5D8}\x{5E7}\x{5E1}\x{5D8} \x{5E2}\x{5E8}\x{5D5}\x{5DA} \x{5DE}\x{5D3}\x{5D9} \x{5E0}\x{5E8}\x{5E6}\x{5D4} \x{5DC}\x{5D4}\x{5D5}\x{5E1}\x{5D9}\x{5E3} \x{5D0}\x{5DC}\x{5D9}\x{5E4}\x{5E1}\x{5D5}\x{5EA} \x{5D1}\x{5E1}\x{5D5}\x{5E3} \x{5E9}\x{5D5}\x{5E8}\x{5D4}"
9696 RenderText {#text} at (0,0) size 0x0
9797layer at (8,698) size 182x22 clip at (9,699) size 180x20 scrollWidth 320
9898 RenderBlock {DIV} at (0,690) size 182x22 [border: (1px solid #000000)]
73924

LayoutTests/platform/mac/fast/css/text-overflow-ellipsis-strict-expected.checksum

1 3b4788f945610d902a7566cd6acf88bf
21\ No newline at end of file
 2846527e528e7e590e287856b8cd2c4bd
33\ No newline at end of file
73924

LayoutTests/platform/mac/fast/css/text-overflow-ellipsis-strict-expected.txt

@@layer at (0,0) size 785x740
4646 text run at (0,0) width 206: "LTR link with forced rtl content:"
4747layer at (8,98) size 182x22 clip at (9,99) size 180x20 scrollX 196 scrollWidth 376
4848 RenderBlock {DIV} at (0,90) size 182x22 [border: (1px solid #000000)]
49  RenderText {#text} at (-195,1) size 376x18
50  text run at (-195,1) width 376 RTL: "\x{5DB}\x{5E9}\x{5D4}\x{5D8}\x{5E7}\x{5E1}\x{5D8} \x{5E2}\x{5E8}\x{5D5}\x{5DA} \x{5DE}\x{5D3}\x{5D9} \x{5E0}\x{5E8}\x{5E6}\x{5D4} \x{5DC}\x{5D4}\x{5D5}\x{5E1}\x{5D9}\x{5E3} \x{5D0}\x{5DC}\x{5D9}\x{5E4}\x{5E1}\x{5D5}\x{5EA} \x{5D1}\x{5E1}\x{5D5}\x{5E3} \x{5E9}\x{5D5}\x{5E8}\x{5D4}"
 49 RenderText {#text} at (-195,2) size 376x18
 50 text run at (-195,2) width 376 RTL: "\x{5DB}\x{5E9}\x{5D4}\x{5D8}\x{5E7}\x{5E1}\x{5D8} \x{5E2}\x{5E8}\x{5D5}\x{5DA} \x{5DE}\x{5D3}\x{5D9} \x{5E0}\x{5E8}\x{5E6}\x{5D4} \x{5DC}\x{5D4}\x{5D5}\x{5E1}\x{5D9}\x{5E3} \x{5D0}\x{5DC}\x{5D9}\x{5E4}\x{5E1}\x{5D5}\x{5EA} \x{5D1}\x{5E1}\x{5D5}\x{5E3} \x{5E9}\x{5D5}\x{5E8}\x{5D4}"
5151layer at (8,158) size 182x22 clip at (9,159) size 180x20 scrollX 140 scrollWidth 320
5252 RenderBlock {DIV} at (0,150) size 182x22 [border: (1px solid #000000)]
5353 RenderText {#text} at (-139,1) size 320x18

@@layer at (8,458) size 182x22 clip at (9,
8080 text run at (1,1) width 320: "Lorem ipsum dolor sit amet, consectetur adipiscing"
8181layer at (8,518) size 182x22 clip at (9,519) size 180x20 scrollWidth 376
8282 RenderBlock {DIV} at (0,510) size 182x22 [border: (1px solid #000000)]
83  RenderText {#text} at (1,1) size 376x18
84  text run at (1,1) width 376 RTL: "\x{5DB}\x{5E9}\x{5D4}\x{5D8}\x{5E7}\x{5E1}\x{5D8} \x{5E2}\x{5E8}\x{5D5}\x{5DA} \x{5DE}\x{5D3}\x{5D9} \x{5E0}\x{5E8}\x{5E6}\x{5D4} \x{5DC}\x{5D4}\x{5D5}\x{5E1}\x{5D9}\x{5E3} \x{5D0}\x{5DC}\x{5D9}\x{5E4}\x{5E1}\x{5D5}\x{5EA} \x{5D1}\x{5E1}\x{5D5}\x{5E3} \x{5E9}\x{5D5}\x{5E8}\x{5D4}"
 83 RenderText {#text} at (1,2) size 376x18
 84 text run at (1,2) width 376 RTL: "\x{5DB}\x{5E9}\x{5D4}\x{5D8}\x{5E7}\x{5E1}\x{5D8} \x{5E2}\x{5E8}\x{5D5}\x{5DA} \x{5DE}\x{5D3}\x{5D9} \x{5E0}\x{5E8}\x{5E6}\x{5D4} \x{5DC}\x{5D4}\x{5D5}\x{5E1}\x{5D9}\x{5E3} \x{5D0}\x{5DC}\x{5D9}\x{5E4}\x{5E1}\x{5D5}\x{5EA} \x{5D1}\x{5E1}\x{5D5}\x{5E3} \x{5E9}\x{5D5}\x{5E8}\x{5D4}"
8585layer at (8,578) size 182x22 clip at (9,579) size 180x20 scrollWidth 320
8686 RenderBlock {DIV} at (0,570) size 182x22 [border: (1px solid #000000)]
8787 RenderInline {SPAN} at (0,0) size 320x18

@@layer at (8,578) size 182x22 clip at (9,
9191layer at (8,638) size 182x22 clip at (9,639) size 180x20 scrollWidth 376
9292 RenderBlock {DIV} at (0,630) size 182x22 [border: (1px solid #000000)]
9393 RenderInline {A} at (0,0) size 376x18 [color=#0000EE]
94  RenderText {#text} at (1,1) size 376x18
95  text run at (1,1) width 376 RTL: "\x{5DB}\x{5E9}\x{5D4}\x{5D8}\x{5E7}\x{5E1}\x{5D8} \x{5E2}\x{5E8}\x{5D5}\x{5DA} \x{5DE}\x{5D3}\x{5D9} \x{5E0}\x{5E8}\x{5E6}\x{5D4} \x{5DC}\x{5D4}\x{5D5}\x{5E1}\x{5D9}\x{5E3} \x{5D0}\x{5DC}\x{5D9}\x{5E4}\x{5E1}\x{5D5}\x{5EA} \x{5D1}\x{5E1}\x{5D5}\x{5E3} \x{5E9}\x{5D5}\x{5E8}\x{5D4}"
 94 RenderText {#text} at (1,2) size 376x18
 95 text run at (1,2) width 376 RTL: "\x{5DB}\x{5E9}\x{5D4}\x{5D8}\x{5E7}\x{5E1}\x{5D8} \x{5E2}\x{5E8}\x{5D5}\x{5DA} \x{5DE}\x{5D3}\x{5D9} \x{5E0}\x{5E8}\x{5E6}\x{5D4} \x{5DC}\x{5D4}\x{5D5}\x{5E1}\x{5D9}\x{5E3} \x{5D0}\x{5DC}\x{5D9}\x{5E4}\x{5E1}\x{5D5}\x{5EA} \x{5D1}\x{5E1}\x{5D5}\x{5E3} \x{5E9}\x{5D5}\x{5E8}\x{5D4}"
9696 RenderText {#text} at (0,0) size 0x0
9797layer at (8,698) size 182x22 clip at (9,699) size 180x20 scrollWidth 320
9898 RenderBlock {DIV} at (0,690) size 182x22 [border: (1px solid #000000)]
73924

LayoutTests/platform/mac/fast/css/text-security-expected.checksum

1 fd09240294ac181ace3fb7d4d88d9d95
21\ No newline at end of file
 20c4abcc4ea03e1ec75ede4c2e463e51c
33\ No newline at end of file
73924

LayoutTests/platform/mac/fast/css/text-security-expected.txt

@@layer at (0,0) size 800x600
1111 text run at (52,0) width 18: "\x{2022}\x{2022}\x{2022}"
1212 RenderText {#text} at (70,0) size 4x18
1313 text run at (70,0) width 4: "."
14  RenderBlock {P} at (0,34) size 784x18
15  RenderText {#text} at (0,0) size 58x18
16  text run at (0,0) width 58: "Squares: "
 14 RenderBlock {P} at (0,34) size 784x19
 15 RenderText {#text} at (0,1) size 58x18
 16 text run at (0,1) width 58: "Squares: "
1717 RenderInline {SPAN} at (0,0) size 27x18
18  RenderText {#text} at (58,0) size 27x18
19  text run at (58,0) width 27: "\x{25A0}\x{25A0}\x{25A0}"
20  RenderText {#text} at (85,0) size 4x18
21  text run at (85,0) width 4: "."
22  RenderBlock {P} at (0,68) size 784x18
23  RenderText {#text} at (0,0) size 52x18
24  text run at (0,0) width 52: "Circles: "
 18 RenderText {#text} at (58,1) size 27x18
 19 text run at (58,1) width 27: "\x{25A0}\x{25A0}\x{25A0}"
 20 RenderText {#text} at (85,1) size 4x18
 21 text run at (85,1) width 4: "."
 22 RenderBlock {P} at (0,69) size 784x19
 23 RenderText {#text} at (0,1) size 52x18
 24 text run at (0,1) width 52: "Circles: "
2525 RenderInline {SPAN} at (0,0) size 28x18
26  RenderText {#text} at (52,0) size 28x18
27  text run at (52,0) width 28: "\x{25E6}\x{25E6}\x{25E6}"
28  RenderText {#text} at (80,0) size 4x18
29  text run at (80,0) width 4: "."
30  RenderBlock {P} at (0,102) size 784x18
 26 RenderText {#text} at (52,1) size 28x18
 27 text run at (52,1) width 28: "\x{25E6}\x{25E6}\x{25E6}"
 28 RenderText {#text} at (80,1) size 4x18
 29 text run at (80,1) width 4: "."
 30 RenderBlock {P} at (0,104) size 784x18
3131 RenderText {#text} at (0,0) size 81x18
3232 text run at (0,0) width 81: "Plain letters: "
3333 RenderInline {SPAN} at (0,0) size 24x18

@@layer at (0,0) size 800x600
3535 text run at (81,0) width 24: "xxx"
3636 RenderText {#text} at (105,0) size 4x18
3737 text run at (105,0) width 4: "."
38  RenderBlock {P} at (0,136) size 784x18
 38 RenderBlock {P} at (0,138) size 784x18
3939 RenderText {#text} at (0,0) size 109x18
4040 text run at (0,0) width 109: "Bullets (invalid): "
4141 RenderInline {SPAN} at (0,0) size 18x18

@@layer at (0,0) size 800x600
4343 text run at (109,0) width 18: "\x{2022}\x{2022}\x{2022}"
4444 RenderText {#text} at (127,0) size 4x18
4545 text run at (127,0) width 4: "."
46  RenderBlock {P} at (0,170) size 784x18
 46 RenderBlock {P} at (0,172) size 784x18
4747 RenderText {#text} at (0,0) size 120x18
4848 text run at (0,0) width 120: "Bullets (dynamic): "
4949 RenderInline {SPAN} at (0,0) size 18x18
73924

LayoutTests/platform/mac/fast/encoding/denormalised-voiced-japanese-chars-expected.checksum

1 f0a4eab1483c813f357ac405e2e564b4
21\ No newline at end of file
 2a5688cf5b2f37609b8c7ffcde339c7e8
33\ No newline at end of file
73924

LayoutTests/platform/mac/fast/encoding/denormalised-voiced-japanese-chars-expected.txt

11layer at (0,0) size 800x600
22 RenderView at (0,0) size 800x600
3 layer at (0,0) size 800x246
4  RenderBlock {HTML} at (0,0) size 800x246
5  RenderBody {BODY} at (8,8) size 784x222
 3layer at (0,0) size 800x262
 4 RenderBlock {HTML} at (0,0) size 800x262
 5 RenderBody {BODY} at (8,8) size 784x238
66 RenderBlock (anonymous) at (0,0) size 784x54
77 RenderText {#text} at (0,0) size 775x54
88 text run at (0,0) width 775: "This test checks that the decomposed unicode version of voiced japanese hiragana and katakana characters are rendered the"
99 text run at (0,18) width 724: "same as the precomposed version. This test is a pixel-test, and passes when the text in the two heading elements are"
1010 text run at (0,36) width 57: "identical."
11  RenderBlock {H2} at (0,73) size 784x28
12  RenderText {#text} at (0,0) size 168x28
13  text run at (0,0) width 168: "\x{30CF}\x{3099}\x{30CA}\x{30CA}\x{3068}\x{30CF}\x{309A}\x{30CA}\x{30DE}"
14  RenderBlock {P} at (0,120) size 784x18
 11 RenderBlock {H2} at (0,73) size 784x36
 12 RenderText {#text} at (0,5) size 168x28
 13 text run at (0,5) width 168: "\x{30CF}\x{3099}\x{30CA}\x{30CA}\x{3068}\x{30CF}\x{309A}\x{30CA}\x{30DE}"
 14 RenderBlock {P} at (0,128) size 784x18
1515 RenderText {#text} at (0,0) size 164x18
1616 text run at (0,0) width 164: "The above is decomposed"
17  RenderBlock {H2} at (0,157) size 784x28
18  RenderText {#text} at (0,0) size 168x28
19  text run at (0,0) width 168: "\x{30D0}\x{30CA}\x{30CA}\x{3068}\x{30D1}\x{30CA}\x{30DE}"
20  RenderBlock {P} at (0,204) size 784x18
 17 RenderBlock {H2} at (0,165) size 784x36
 18 RenderText {#text} at (0,5) size 168x28
 19 text run at (0,5) width 168: "\x{30D0}\x{30CA}\x{30CA}\x{3068}\x{30D1}\x{30CA}\x{30DE}"
 20 RenderBlock {P} at (0,220) size 784x18
2121 RenderText {#text} at (0,0) size 169x18
2222 text run at (0,0) width 169: "The above is precomposed"
73924

LayoutTests/platform/mac/fast/encoding/invalid-UTF-8-expected.checksum

1 782cf7163e96dc79289152c40e44cf98
21\ No newline at end of file
 21e2edfa0d9ae9a76f33ba2b90d3da553
33\ No newline at end of file
73924

LayoutTests/platform/mac/fast/encoding/invalid-UTF-8-expected.txt

@@layer at (0,0) size 800x600
1010 RenderText {#text} at (0,0) size 502x18
1111 text run at (0,0) width 502: "The output should be: \"\x{442}??\x{442}\" (with black diamonds in place of question marks)."
1212 RenderBlock {HR} at (0,68) size 784x2 [border: (1px inset #000000)]
13  RenderBlock {P} at (0,86) size 784x18
14  RenderText {#text} at (0,0) size 46x18
15  text run at (0,0) width 46: "\x{442}\x{FFFD}\x{FFFD}\x{442}"
 13 RenderBlock {P} at (0,86) size 784x19
 14 RenderText {#text} at (0,1) size 46x18
 15 text run at (0,1) width 46: "\x{442}\x{FFFD}\x{FFFD}\x{442}"
73924

LayoutTests/platform/mac/fast/events/updateLayoutForHitTest-expected.checksum

1 17e87d7d76402e8c177ae99de8278a7d
21\ No newline at end of file
 2cb1c5c4bb3cd8c16c408ffe1b1257aab
33\ No newline at end of file
73924

LayoutTests/platform/mac/fast/events/updateLayoutForHitTest-expected.txt

@@layer at (0,0) size 800x600
77layer at (0,0) size 800x600
88 RenderBlock {HTML} at (0,0) size 800x600
99 RenderBody {BODY} at (8,8) size 784x584
10  RenderBlock (floating) {DIV} at (5,5) size 67x28 [bgcolor=#ADD8E6]
 10 RenderBlock (floating) {DIV} at (5,5) size 67x29 [bgcolor=#ADD8E6]
1111 RenderInline {SPAN} at (0,0) size 9x18
12  RenderText {#text} at (5,5) size 9x18
13  text run at (5,5) width 9: "\x{25B8}"
14  RenderText {#text} at (14,5) size 48x18
15  text run at (14,5) width 48: " Project"
 12 RenderText {#text} at (5,6) size 9x18
 13 text run at (5,6) width 9: "\x{25B8}"
 14 RenderText {#text} at (14,6) size 48x18
 15 text run at (14,6) width 48: " Project"
1616 RenderText {#text} at (0,0) size 0x0
1717selection start: position 0 of child 0 {#text} of child 1 {SPAN} of child 3 {DIV} of body
1818selection end: position 0 of child 1 {#text} of child 3 {DIV} of child 3 {DIV} of body
73924

LayoutTests/platform/mac/fast/forms/select-visual-hebrew-expected.checksum

1 fb5c80e0fb5ef632dfe3625317d560b3
21\ No newline at end of file
 2dbfa6ffeb81a204a28a769ddab5003a2
33\ No newline at end of file
73924

LayoutTests/platform/mac/fast/forms/select-visual-hebrew-expected.txt

@@layer at (0,0) size 800x600
77 RenderText {#text} at (0,0) size 619x18
88 text run at (0,0) width 619 LTR override: "This tests that native pop-ups are rendered in logical order even in visually-ordered Hebrew pages."
99 RenderBlock {HR} at (0,34) size 784x2 [border: (1px inset #000000)]
10  RenderBlock {P} at (0,52) size 784x18
11  RenderText {#text} at (0,0) size 391x18
12  text run at (0,0) width 348 LTR override: "Text on the pop-up and in the list should look like this: "
13  text run at (348,0) width 43 LTR override: "\x{5E8}\x{5D5}\x{5EA}\x{5E4}\x{5DB}"
14  RenderBlock (anonymous) at (0,86) size 784x22
 10 RenderBlock {P} at (0,52) size 784x19
 11 RenderText {#text} at (0,1) size 391x18
 12 text run at (0,1) width 348 LTR override: "Text on the pop-up and in the list should look like this: "
 13 text run at (348,1) width 43 LTR override: "\x{5E8}\x{5D5}\x{5EA}\x{5E4}\x{5DB}"
 14 RenderBlock (anonymous) at (0,87) size 784x22
1515 RenderMenuList {SELECT} at (2,2) size 61x18 [bgcolor=#FFFFFF]
1616 RenderBlock (anonymous) at (0,0) size 61x18
1717 RenderText at (8,2) size 30x13
73924

LayoutTests/platform/mac/fast/forms/select-writing-direction-natural-expected.checksum

1 ca78cf07f99e53e92e777b6fedaa31db
21\ No newline at end of file
 23e714ee12a6e0f214864656538193669
33\ No newline at end of file
73924

LayoutTests/platform/mac/fast/forms/select-writing-direction-natural-expected.txt

@@layer at (0,0) size 800x600
1616 text run at (0,18) width 324: "directionality to match the items in the popup menu"
1717 RenderText {#text} at (324,18) size 4x18
1818 text run at (324,18) width 4: "."
19  RenderBlock {P} at (0,52) size 784x18
20  RenderText {#text} at (0,0) size 664x18
21  text run at (0,0) width 508: "In all of the popup buttons below, the letter A should be on the left and the letter "
22  text run at (508,0) width 11 RTL: "\x{5D0}"
23  text run at (519,0) width 145: " should be on the right."
24  RenderBlock {DIV} at (0,86) size 784x44
 19 RenderBlock {P} at (0,52) size 784x19
 20 RenderText {#text} at (0,1) size 664x18
 21 text run at (0,1) width 508: "In all of the popup buttons below, the letter A should be on the left and the letter "
 22 text run at (508,1) width 11 RTL: "\x{5D0}"
 23 text run at (519,1) width 145: " should be on the right."
 24 RenderBlock {DIV} at (0,87) size 784x44
2525 RenderBlock {DIV} at (0,0) size 784x22
2626 RenderMenuList {SELECT} at (0,2) size 70x18 [bgcolor=#FFFFFF]
2727 RenderBlock (anonymous) at (0,0) size 70x18

@@layer at (0,0) size 800x600
7878 text run at (8,2) width 12: "(A"
7979 text run at (20,2) width 8 RTL: "\x{5D0}"
8080 RenderText {#text} at (0,0) size 0x0
81  RenderBlock {DIV} at (0,130) size 784x44
 81 RenderBlock {DIV} at (0,131) size 784x44
8282 RenderBlock {DIV} at (0,0) size 784x22
8383 RenderMenuList {SELECT} at (222,2) size 70x18 [bgcolor=#FFFFFF]
8484 RenderBlock (anonymous) at (0,0) size 70x18
73924

LayoutTests/platform/mac/fast/forms/visual-hebrew-text-field-expected.checksum

1 a27b2671d4d1eefe30d446aa86c84cce
21\ No newline at end of file
 2e4c93abbdecaa9282ae7c6ece3e53d58
33\ No newline at end of file
73924

LayoutTests/platform/mac/fast/forms/visual-hebrew-text-field-expected.txt

@@layer at (0,0) size 800x600
1616 RenderText {#text} at (250,18) size 4x18
1717 text run at (250,18) width 4 LTR override: "."
1818 RenderBlock {HR} at (0,52) size 784x2 [border: (1px inset #000000)]
19  RenderBlock {P} at (0,70) size 784x18
20  RenderText {#text} at (0,0) size 282x18
21  text run at (0,0) width 239 LTR override: "Text in the field should look like this: "
22  text run at (239,0) width 43 LTR override: "\x{5E8}\x{5D5}\x{5EA}\x{5E4}\x{5DB}"
23  RenderBlock (anonymous) at (0,104) size 784x23
 19 RenderBlock {P} at (0,70) size 784x19
 20 RenderText {#text} at (0,1) size 282x18
 21 text run at (0,1) width 239 LTR override: "Text in the field should look like this: "
 22 text run at (239,1) width 43 LTR override: "\x{5E8}\x{5D5}\x{5EA}\x{5E4}\x{5DB}"
 23 RenderBlock (anonymous) at (0,105) size 784x23
2424 RenderTextControl {INPUT} at (2,2) size 125x19 [bgcolor=#FFFFFF] [border: (2px inset #000000)]
2525 RenderText {#text} at (0,0) size 0x0
26 layer at (13,117) size 119x13
 26layer at (13,118) size 119x13
2727 RenderBlock {DIV} at (3,3) size 119x13
2828 RenderText {#text} at (1,0) size 30x13
2929 text run at (1,0) width 30 RTL: "\x{5DB}\x{5E4}\x{5EA}\x{5D5}\x{5E8}"
73924

LayoutTests/platform/mac/fast/ruby/nested-ruby-expected.txt

@@layer at (0,0) size 800x600
33layer at (0,0) size 800x600
44 RenderBlock {HTML} at (0,0) size 800x600
55 RenderBody {BODY} at (8,8) size 784x576
6  RenderBlock {P} at (0,0) size 784x44
 6 RenderBlock {P} at (0,0) size 784x47
77 RenderRuby (inline) {RUBY} at (0,0) size 96x18
8  RenderRubyRun (anonymous) at (0,13) size 96x31
 8 RenderRubyRun (anonymous) at (0,13) size 96x34
99 RenderRubyText {RT} at (0,-13) size 96x13
1010 RenderText {#text} at (18,0) size 59x13
1111 text run at (18,0) width 59: "K\x{14D}kakukid\x{14D}tai"
12  RenderRubyBase (anonymous) at (0,0) size 96x31
 12 RenderRubyBase (anonymous) at (0,0) size 96x34
1313 RenderRuby (inline) {RUBY} at (0,0) size 96x18
14  RenderRubyRun (anonymous) at (0,13) size 20x18
15  RenderRubyText {RT} at (0,-13) size 20x13
 14 RenderRubyRun (anonymous) at (0,10) size 20x24
 15 RenderRubyText {RT} at (0,-10) size 20x15
1616 RenderText {#text} at (0,0) size 20x13
1717 text run at (0,0) width 20: "\x{3053}\x{3046}"
18  RenderRubyBase (anonymous) at (0,0) size 20x18
19  RenderText {#text} at (2,0) size 16x18
20  text run at (2,0) width 16: "\x{653B}"
21  RenderRubyRun (anonymous) at (20,13) size 20x18
22  RenderRubyText {RT} at (0,-13) size 20x13
 18 RenderRubyBase (anonymous) at (0,0) size 20x24
 19 RenderText {#text} at (2,3) size 16x18
 20 text run at (2,3) width 16: "\x{653B}"
 21 RenderRubyRun (anonymous) at (20,10) size 20x24
 22 RenderRubyText {RT} at (0,-10) size 20x15
2323 RenderText {#text} at (0,0) size 20x13
2424 text run at (0,0) width 20: "\x{304B}\x{304F}"
25  RenderRubyBase (anonymous) at (0,0) size 20x18
26  RenderText {#text} at (2,0) size 16x18
27  text run at (2,0) width 16: "\x{6BBB}"
28  RenderRubyRun (anonymous) at (40,13) size 16x18
29  RenderRubyText {RT} at (0,-13) size 16x13
 25 RenderRubyBase (anonymous) at (0,0) size 20x24
 26 RenderText {#text} at (2,3) size 16x18
 27 text run at (2,3) width 16: "\x{6BBB}"
 28 RenderRubyRun (anonymous) at (40,10) size 16x24
 29 RenderRubyText {RT} at (0,-10) size 16x15
3030 RenderText {#text} at (3,0) size 10x13
3131 text run at (3,0) width 10: "\x{304D}"
32  RenderRubyBase (anonymous) at (0,0) size 16x18
33  RenderText {#text} at (0,0) size 16x18
34  text run at (0,0) width 16: "\x{6A5F}"
35  RenderRubyRun (anonymous) at (56,13) size 20x18
36  RenderRubyText {RT} at (0,-13) size 20x13
 32 RenderRubyBase (anonymous) at (0,0) size 16x24
 33 RenderText {#text} at (0,3) size 16x18
 34 text run at (0,3) width 16: "\x{6A5F}"
 35 RenderRubyRun (anonymous) at (56,10) size 20x24
 36 RenderRubyText {RT} at (0,-10) size 20x15
3737 RenderText {#text} at (0,0) size 20x13
3838 text run at (0,0) width 20: "\x{3069}\x{3046}"
39  RenderRubyBase (anonymous) at (0,0) size 20x18
40  RenderText {#text} at (2,0) size 16x18
41  text run at (2,0) width 16: "\x{52D5}"
42  RenderRubyRun (anonymous) at (76,13) size 20x18
43  RenderRubyText {RT} at (0,-13) size 20x13
 39 RenderRubyBase (anonymous) at (0,0) size 20x24
 40 RenderText {#text} at (2,3) size 16x18
 41 text run at (2,3) width 16: "\x{52D5}"
 42 RenderRubyRun (anonymous) at (76,10) size 20x24
 43 RenderRubyText {RT} at (0,-10) size 20x15
4444 RenderText {#text} at (0,0) size 20x13
4545 text run at (0,0) width 20: "\x{305F}\x{3044}"
46  RenderRubyBase (anonymous) at (0,0) size 20x18
47  RenderText {#text} at (2,0) size 16x18
48  text run at (2,0) width 16: "\x{968A}"
 46 RenderRubyBase (anonymous) at (0,0) size 20x24
 47 RenderText {#text} at (2,3) size 16x18
 48 text run at (2,3) width 16: "\x{968A}"
73924

LayoutTests/platform/mac/fast/text/atsui-multiple-renderers-expected.checksum

1 7c6ee8c95a37ef7c928d058d3c1a0d08
21\ No newline at end of file
 277ac0f633ca8230916025e03e7711689
33\ No newline at end of file
73924

LayoutTests/platform/mac/fast/text/atsui-multiple-renderers-expected.txt

@@layer at (0,0) size 800x600
8989 RenderBlock {P} at (0,277) size 784x18
9090 RenderText {#text} at (0,0) size 277x18
9191 text run at (0,0) width 277: "The following two lines should be identical."
92  RenderBlock {P} at (0,311) size 784x22
 92 RenderBlock {P} at (0,311) size 784x24
9393 RenderInline {SPAN} at (0,0) size 334x24 [border: (1px solid #008000)]
94  RenderText {#text} at (1,0) size 332x22
95  text run at (1,0) width 332: "\x{E01}\x{E02}\x{E03}\x{E04}\x{E05}\x{E06}\x{E07}\x{E08}\x{E01}\x{E02}\x{E03}\x{E04}\x{E05}\x{E06}\x{E07}\x{E08}\x{E01}\x{E02}\x{E03}\x{E04}\x{E05}\x{E06}\x{E07}\x{E08}\x{E01}\x{E02}\x{E03}\x{E04}\x{E05}\x{E06}\x{E07}\x{E08}"
 94 RenderText {#text} at (1,2) size 332x22
 95 text run at (1,2) width 332: "\x{E01}\x{E02}\x{E03}\x{E04}\x{E05}\x{E06}\x{E07}\x{E08}\x{E01}\x{E02}\x{E03}\x{E04}\x{E05}\x{E06}\x{E07}\x{E08}\x{E01}\x{E02}\x{E03}\x{E04}\x{E05}\x{E06}\x{E07}\x{E08}\x{E01}\x{E02}\x{E03}\x{E04}\x{E05}\x{E06}\x{E07}\x{E08}"
9696 RenderText {#text} at (0,0) size 0x0
97  RenderBlock {P} at (0,349) size 784x21
 97 RenderBlock {P} at (0,351) size 784x24
9898 RenderInline {SPAN} at (0,0) size 334x23 [border: (1px solid #008000)]
99  RenderText {#text} at (1,0) size 332x21
100  text run at (1,0) width 332: "\x{E01}\x{E02}\x{E03}\x{E04}\x{E05}\x{E06}\x{E07}\x{E08}\x{E01}\x{E02}\x{E03}\x{E04}\x{E05}\x{E06}\x{E07}\x{E08}\x{E01}\x{E02}\x{E03}\x{E04}\x{E05}\x{E06}\x{E07}\x{E08}\x{E01}\x{E02}\x{E03}\x{E04}\x{E05}\x{E06}\x{E07}\x{E08}"
 99 RenderText {#text} at (1,2) size 332x21
 100 text run at (1,2) width 332: "\x{E01}\x{E02}\x{E03}\x{E04}\x{E05}\x{E06}\x{E07}\x{E08}\x{E01}\x{E02}\x{E03}\x{E04}\x{E05}\x{E06}\x{E07}\x{E08}\x{E01}\x{E02}\x{E03}\x{E04}\x{E05}\x{E06}\x{E07}\x{E08}\x{E01}\x{E02}\x{E03}\x{E04}\x{E05}\x{E06}\x{E07}\x{E08}"
101101 RenderText {#text} at (0,0) size 0x0
73924

LayoutTests/platform/mac/fast/text/backslash-to-yen-sign-euc-expected.checksum

1 b76cd1071369f2ce55ffa368ebdc0ab5
21\ No newline at end of file
 20f887e61d62d42981e27b45c0d5000a3
33\ No newline at end of file
73924

LayoutTests/platform/mac/fast/text/backslash-to-yen-sign-euc-expected.txt

1 layer at (0,0) size 785x714
 1layer at (0,0) size 785x744
22 RenderView at (0,0) size 785x600
3 layer at (0,0) size 785x714
4  RenderBlock {HTML} at (0,0) size 785x714
5  RenderBody {BODY} at (8,8) size 769x698
 3layer at (0,0) size 785x744
 4 RenderBlock {HTML} at (0,0) size 785x744
 5 RenderBody {BODY} at (8,8) size 769x728
66 RenderBlock {DIV} at (0,0) size 769x18
77 RenderInline {SPAN} at (0,0) size 325x18
88 RenderText {#text} at (0,0) size 309x18

@@layer at (0,0) size 785x714
7878 RenderInline {SPAN} at (0,0) size 8x18
7979 RenderText {#text} at (333,0) size 8x18
8080 text run at (333,0) width 8: "\x{A5}"
81  RenderBlock {DIV} at (0,108) size 769x18
 81 RenderBlock {DIV} at (0,108) size 769x24
8282 RenderInline {SPAN} at (0,0) size 403x18
83  RenderText {#text} at (0,0) size 387x18
84  text run at (0,0) width 387: "Using font \"\x{FF2D}\x{FF33} \x{FF30}\x{30B4}\x{30B7}\x{30C3}\x{30AF}\". expected: yen sign, actual: \x{A5}"
 83 RenderText {#text} at (0,3) size 387x18
 84 text run at (0,3) width 387: "Using font \"\x{FF2D}\x{FF33} \x{FF30}\x{30B4}\x{30B7}\x{30C3}\x{30AF}\". expected: yen sign, actual: \x{A5}"
8585 RenderInline {SPAN} at (0,0) size 8x18
86  RenderText {#text} at (387,0) size 8x18
87  text run at (387,0) width 8: "\x{A5}"
 86 RenderText {#text} at (387,3) size 8x18
 87 text run at (387,3) width 8: "\x{A5}"
8888 RenderInline {SPAN} at (0,0) size 8x18
89  RenderText {#text} at (395,0) size 8x18
90  text run at (395,0) width 8: "\x{A5}"
 89 RenderText {#text} at (395,3) size 8x18
 90 text run at (395,3) width 8: "\x{A5}"
9191 RenderInline {SPAN} at (0,0) size 8x18
92  RenderText {#text} at (403,0) size 8x18
93  text run at (403,0) width 8: "\x{A5}"
94  RenderBlock {DIV} at (0,126) size 769x18
 92 RenderText {#text} at (403,3) size 8x18
 93 text run at (403,3) width 8: "\x{A5}"
 94 RenderBlock {DIV} at (0,132) size 769x24
9595 RenderInline {SPAN} at (0,0) size 387x18
96  RenderText {#text} at (0,0) size 371x18
97  text run at (0,0) width 371: "Using font \"\x{FF2D}\x{FF33} \x{30B4}\x{30B7}\x{30C3}\x{30AF}\". expected: yen sign, actual: \x{A5}"
 96 RenderText {#text} at (0,3) size 371x18
 97 text run at (0,3) width 371: "Using font \"\x{FF2D}\x{FF33} \x{30B4}\x{30B7}\x{30C3}\x{30AF}\". expected: yen sign, actual: \x{A5}"
9898 RenderInline {SPAN} at (0,0) size 8x18
99  RenderText {#text} at (371,0) size 8x18
100  text run at (371,0) width 8: "\x{A5}"
 99 RenderText {#text} at (371,3) size 8x18
 100 text run at (371,3) width 8: "\x{A5}"
101101 RenderInline {SPAN} at (0,0) size 8x18
102  RenderText {#text} at (379,0) size 8x18
103  text run at (379,0) width 8: "\x{A5}"
 102 RenderText {#text} at (379,3) size 8x18
 103 text run at (379,3) width 8: "\x{A5}"
104104 RenderInline {SPAN} at (0,0) size 8x18
105  RenderText {#text} at (387,0) size 8x18
106  text run at (387,0) width 8: "\x{A5}"
107  RenderBlock {DIV} at (0,144) size 769x18
 105 RenderText {#text} at (387,3) size 8x18
 106 text run at (387,3) width 8: "\x{A5}"
 107 RenderBlock {DIV} at (0,156) size 769x24
108108 RenderInline {SPAN} at (0,0) size 371x18
109  RenderText {#text} at (0,0) size 355x18
110  text run at (0,0) width 355: "Using font \"\x{FF2D}\x{FF33} \x{FF30}\x{660E}\x{671D}\". expected: yen sign, actual: \x{A5}"
 109 RenderText {#text} at (0,3) size 355x18
 110 text run at (0,3) width 355: "Using font \"\x{FF2D}\x{FF33} \x{FF30}\x{660E}\x{671D}\". expected: yen sign, actual: \x{A5}"
111111 RenderInline {SPAN} at (0,0) size 8x18
112  RenderText {#text} at (355,0) size 8x18
113  text run at (355,0) width 8: "\x{A5}"
 112 RenderText {#text} at (355,3) size 8x18
 113 text run at (355,3) width 8: "\x{A5}"
114114 RenderInline {SPAN} at (0,0) size 8x18
115  RenderText {#text} at (363,0) size 8x18
116  text run at (363,0) width 8: "\x{A5}"
 115 RenderText {#text} at (363,3) size 8x18
 116 text run at (363,3) width 8: "\x{A5}"
117117 RenderInline {SPAN} at (0,0) size 8x18
118  RenderText {#text} at (371,0) size 8x18
119  text run at (371,0) width 8: "\x{A5}"
120  RenderBlock {DIV} at (0,162) size 769x18
 118 RenderText {#text} at (371,3) size 8x18
 119 text run at (371,3) width 8: "\x{A5}"
 120 RenderBlock {DIV} at (0,180) size 769x24
121121 RenderInline {SPAN} at (0,0) size 355x18
122  RenderText {#text} at (0,0) size 339x18
123  text run at (0,0) width 339: "Using font \"\x{FF2D}\x{FF33} \x{660E}\x{671D}\". expected: yen sign, actual: \x{A5}"
 122 RenderText {#text} at (0,3) size 339x18
 123 text run at (0,3) width 339: "Using font \"\x{FF2D}\x{FF33} \x{660E}\x{671D}\". expected: yen sign, actual: \x{A5}"
124124 RenderInline {SPAN} at (0,0) size 8x18
125  RenderText {#text} at (339,0) size 8x18
126  text run at (339,0) width 8: "\x{A5}"
 125 RenderText {#text} at (339,3) size 8x18
 126 text run at (339,3) width 8: "\x{A5}"
127127 RenderInline {SPAN} at (0,0) size 8x18
128  RenderText {#text} at (347,0) size 8x18
129  text run at (347,0) width 8: "\x{A5}"
 128 RenderText {#text} at (347,3) size 8x18
 129 text run at (347,3) width 8: "\x{A5}"
130130 RenderInline {SPAN} at (0,0) size 8x18
131  RenderText {#text} at (355,0) size 8x18
132  text run at (355,0) width 8: "\x{A5}"
133  RenderBlock {DIV} at (0,180) size 769x18
 131 RenderText {#text} at (355,3) size 8x18
 132 text run at (355,3) width 8: "\x{A5}"
 133 RenderBlock {DIV} at (0,204) size 769x24
134134 RenderInline {SPAN} at (0,0) size 351x18
135  RenderText {#text} at (0,0) size 335x18
136  text run at (0,0) width 335: "Using font \"\x{30E1}\x{30A4}\x{30EA}\x{30AA}\". expected: yen sign, actual: \x{A5}"
 135 RenderText {#text} at (0,3) size 335x18
 136 text run at (0,3) width 335: "Using font \"\x{30E1}\x{30A4}\x{30EA}\x{30AA}\". expected: yen sign, actual: \x{A5}"
137137 RenderInline {SPAN} at (0,0) size 8x18
138  RenderText {#text} at (335,0) size 8x18
139  text run at (335,0) width 8: "\x{A5}"
 138 RenderText {#text} at (335,3) size 8x18
 139 text run at (335,3) width 8: "\x{A5}"
140140 RenderInline {SPAN} at (0,0) size 8x18
141  RenderText {#text} at (343,0) size 8x18
142  text run at (343,0) width 8: "\x{A5}"
 141 RenderText {#text} at (343,3) size 8x18
 142 text run at (343,3) width 8: "\x{A5}"
143143 RenderInline {SPAN} at (0,0) size 8x18
144  RenderText {#text} at (351,0) size 8x18
145  text run at (351,0) width 8: "\x{A5}"
146  RenderBlock {DIV} at (0,198) size 769x18
 144 RenderText {#text} at (351,3) size 8x18
 145 text run at (351,3) width 8: "\x{A5}"
 146 RenderBlock {DIV} at (0,228) size 769x18
147147 RenderInline {SPAN} at (0,0) size 322x18
148148 RenderText {#text} at (0,0) size 314x18
149149 text run at (0,0) width 314: "Using font \"Times\". expected: backslash, actual: \\"

@@layer at (0,0) size 785x714
156156 RenderInline {SPAN} at (0,0) size 4x18
157157 RenderText {#text} at (322,0) size 4x18
158158 text run at (322,0) width 4: "\\"
159  RenderBlock {DIV} at (0,216) size 769x18
 159 RenderBlock {DIV} at (0,246) size 769x18
160160 RenderInline {SPAN} at (0,0) size 324x18
161161 RenderText {#text} at (0,0) size 316x18
162162 text run at (0,0) width 316: "Using font \"foobar\". expected: backslash, actual: \\"

@@layer at (0,0) size 785x714
169169 RenderInline {SPAN} at (0,0) size 4x18
170170 RenderText {#text} at (324,0) size 4x18
171171 text run at (324,0) width 4: "\\"
172  RenderBlock {DIV} at (0,234) size 769x18
 172 RenderBlock {DIV} at (0,264) size 769x18
173173 RenderInline {SPAN} at (0,0) size 470x18
174174 RenderText {#text} at (0,0) size 454x18
175175 text run at (0,0) width 454: "Using font \"*INVALID FONT NAME*\". expected: yen sign, actual: \x{A5}"

@@layer at (0,0) size 785x714
182182 RenderInline {SPAN} at (0,0) size 8x18
183183 RenderText {#text} at (470,0) size 8x18
184184 text run at (470,0) width 8: "\x{A5}"
185  RenderBlock {DIV} at (0,252) size 769x18
 185 RenderBlock {DIV} at (0,282) size 769x18
186186 RenderInline {SPAN} at (0,0) size 314x18
187187 RenderText {#text} at (0,0) size 298x18
188188 text run at (0,0) width 298: "Using font \"serif\". expected: yen sign, actual: \x{A5}"

@@layer at (0,0) size 785x714
195195 RenderInline {SPAN} at (0,0) size 8x18
196196 RenderText {#text} at (314,0) size 8x18
197197 text run at (314,0) width 8: "\x{A5}"
198  RenderBlock {DIV} at (0,270) size 769x18
 198 RenderBlock {DIV} at (0,300) size 769x18
199199 RenderInline {SPAN} at (0,0) size 384x18
200200 RenderText {#text} at (0,0) size 366x18
201201 text run at (0,0) width 366: "Using font \"sans-serif\". expected: yen sign, actual: \x{A5}"

@@layer at (0,0) size 785x714
208208 RenderInline {SPAN} at (0,0) size 9x18
209209 RenderText {#text} at (384,0) size 9x18
210210 text run at (384,0) width 9: "\x{A5}"
211  RenderBlock {DIV} at (0,288) size 769x25
 211 RenderBlock {DIV} at (0,318) size 769x25
212212 RenderInline {SPAN} at (0,0) size 339x25
213213 RenderText {#text} at (0,0) size 321x25
214214 text run at (0,0) width 321: "Using font \"cursive\". expected: yen sign, actual: \x{A5}"

@@layer at (0,0) size 785x714
221221 RenderInline {SPAN} at (0,0) size 9x25
222222 RenderText {#text} at (339,0) size 9x25
223223 text run at (339,0) width 9: "\x{A5}"
224  RenderBlock {DIV} at (0,313) size 769x25
 224 RenderBlock {DIV} at (0,343) size 769x25
225225 RenderInline {SPAN} at (0,0) size 382x25
226226 RenderText {#text} at (0,0) size 360x25
227227 text run at (0,0) width 360: "Using font \"fantasy\". expected: yen sign, actual: \x{A5}"

@@layer at (0,0) size 785x714
234234 RenderInline {SPAN} at (0,0) size 11x25
235235 RenderText {#text} at (382,0) size 11x25
236236 text run at (382,0) width 11: "\x{A5}"
237  RenderBlock {DIV} at (0,338) size 769x18
 237 RenderBlock {DIV} at (0,368) size 769x18
238238 RenderInline {SPAN} at (0,0) size 440x15
239239 RenderText {#text} at (0,2) size 424x15
240240 text run at (0,2) width 424: "Using font \"monospace\". expected: yen sign, actual: \x{A5}"

@@layer at (0,0) size 785x714
247247 RenderInline {SPAN} at (0,0) size 8x15
248248 RenderText {#text} at (440,2) size 8x15
249249 text run at (440,2) width 8: "\x{A5}"
250  RenderBlock {DIV} at (0,356) size 769x18
 250 RenderBlock {DIV} at (0,386) size 769x18
251251 RenderInline {SPAN} at (0,0) size 368x18
252252 RenderText {#text} at (0,0) size 360x18
253253 text run at (0,0) width 360: "Using font \"-webkit-body\". expected: backslash, actual: \\"

@@layer at (0,0) size 785x714
260260 RenderInline {SPAN} at (0,0) size 4x18
261261 RenderText {#text} at (368,0) size 4x18
262262 text run at (368,0) width 4: "\\"
263  RenderBlock {DIV} at (0,374) size 769x18
 263 RenderBlock {DIV} at (0,404) size 769x18
264264 RenderInline {SPAN} at (0,0) size 336x16
265265 RenderText {#text} at (0,1) size 318x16
266266 text run at (0,1) width 318: "Using font \"caption\". expected: yen sign, actual: \x{A5}"

@@layer at (0,0) size 785x714
270270 RenderInline {SPAN} at (0,0) size 9x16
271271 RenderText {#text} at (327,1) size 9x16
272272 text run at (327,1) width 9: "\x{A5}"
273  RenderBlock {DIV} at (0,392) size 769x18
 273 RenderBlock {DIV} at (0,422) size 769x18
274274 RenderInline {SPAN} at (0,0) size 316x16
275275 RenderText {#text} at (0,1) size 298x16
276276 text run at (0,1) width 298: "Using font \"icon\". expected: yen sign, actual: \x{A5}"

@@layer at (0,0) size 785x714
280280 RenderInline {SPAN} at (0,0) size 9x16
281281 RenderText {#text} at (307,1) size 9x16
282282 text run at (307,1) width 9: "\x{A5}"
283  RenderBlock {DIV} at (0,410) size 769x18
 283 RenderBlock {DIV} at (0,440) size 769x18
284284 RenderInline {SPAN} at (0,0) size 325x16
285285 RenderText {#text} at (0,1) size 307x16
286286 text run at (0,1) width 307: "Using font \"menu\". expected: yen sign, actual: \x{A5}"

@@layer at (0,0) size 785x714
290290 RenderInline {SPAN} at (0,0) size 9x16
291291 RenderText {#text} at (316,1) size 9x16
292292 text run at (316,1) width 9: "\x{A5}"
293  RenderBlock {DIV} at (0,428) size 769x18
 293 RenderBlock {DIV} at (0,458) size 769x18
294294 RenderInline {SPAN} at (0,0) size 378x16
295295 RenderText {#text} at (0,1) size 360x16
296296 text run at (0,1) width 360: "Using font \"message-box\". expected: yen sign, actual: \x{A5}"

@@layer at (0,0) size 785x714
300300 RenderInline {SPAN} at (0,0) size 9x16
301301 RenderText {#text} at (369,1) size 9x16
302302 text run at (369,1) width 9: "\x{A5}"
303  RenderBlock {DIV} at (0,446) size 769x18
 303 RenderBlock {DIV} at (0,476) size 769x18
304304 RenderInline {SPAN} at (0,0) size 317x13
305305 RenderText {#text} at (0,3) size 303x13
306306 text run at (0,3) width 303: "Using font \"small-caption\". expected: yen sign, actual: \x{A5}"

@@layer at (0,0) size 785x714
310310 RenderInline {SPAN} at (0,0) size 7x13
311311 RenderText {#text} at (310,3) size 7x13
312312 text run at (310,3) width 7: "\x{A5}"
313  RenderBlock {DIV} at (0,464) size 769x18
 313 RenderBlock {DIV} at (0,494) size 769x18
314314 RenderInline {SPAN} at (0,0) size 276x12
315315 RenderText {#text} at (0,4) size 262x12
316316 text run at (0,4) width 262: "Using font \"status-bar\". expected: yen sign, actual: \x{A5}"

@@layer at (0,0) size 785x714
320320 RenderInline {SPAN} at (0,0) size 7x12
321321 RenderText {#text} at (269,4) size 7x12
322322 text run at (269,4) width 7: "\x{A5}"
323  RenderBlock {DIV} at (0,482) size 769x18
 323 RenderBlock {DIV} at (0,512) size 769x18
324324 RenderInline {SPAN} at (0,0) size 301x11
325325 RenderText {#text} at (0,5) size 289x11
326326 text run at (0,5) width 289: "Using font \"-webkit-mini-control\". expected: yen sign, actual: \x{A5}"

@@layer at (0,0) size 785x714
330330 RenderInline {SPAN} at (0,0) size 6x11
331331 RenderText {#text} at (295,5) size 6x11
332332 text run at (295,5) width 6: "\x{A5}"
333  RenderBlock {DIV} at (0,500) size 769x18
 333 RenderBlock {DIV} at (0,530) size 769x18
334334 RenderInline {SPAN} at (0,0) size 366x13
335335 RenderText {#text} at (0,3) size 352x13
336336 text run at (0,3) width 352: "Using font \"-webkit-small-control\". expected: yen sign, actual: \x{A5}"

@@layer at (0,0) size 785x714
340340 RenderInline {SPAN} at (0,0) size 7x13
341341 RenderText {#text} at (359,3) size 7x13
342342 text run at (359,3) width 7: "\x{A5}"
343  RenderBlock {DIV} at (0,518) size 769x18
 343 RenderBlock {DIV} at (0,548) size 769x18
344344 RenderInline {SPAN} at (0,0) size 392x16
345345 RenderText {#text} at (0,1) size 374x16
346346 text run at (0,1) width 374: "Using font \"-webkit-control\". expected: yen sign, actual: \x{A5}"

@@layer at (0,0) size 785x714
350350 RenderInline {SPAN} at (0,0) size 9x16
351351 RenderText {#text} at (383,1) size 9x16
352352 text run at (383,1) width 9: "\x{A5}"
353  RenderBlock {DIV} at (0,536) size 769x18
 353 RenderBlock {DIV} at (0,566) size 769x18
354354 RenderInline {SPAN} at (0,0) size 404x18
355355 RenderText {#text} at (0,0) size 388x18
356356 text run at (0,0) width 388: "Using font \"MS Gothic, Times\". expected: yen sign, actual: \x{A5}"

@@layer at (0,0) size 785x714
363363 RenderInline {SPAN} at (0,0) size 8x18
364364 RenderText {#text} at (404,0) size 8x18
365365 text run at (404,0) width 8: "\x{A5}"
366  RenderBlock {DIV} at (0,554) size 769x18
 366 RenderBlock {DIV} at (0,584) size 769x18
367367 RenderInline {SPAN} at (0,0) size 400x18
368368 RenderText {#text} at (0,0) size 392x18
369369 text run at (0,0) width 392: "Using font \"Times, MS Gothic\". expected: backslash, actual: \\"

@@layer at (0,0) size 785x714
376376 RenderInline {SPAN} at (0,0) size 4x18
377377 RenderText {#text} at (400,0) size 4x18
378378 text run at (400,0) width 4: "\\"
379  RenderBlock {DIV} at (0,572) size 769x18
 379 RenderBlock {DIV} at (0,602) size 769x18
380380 RenderInline {SPAN} at (0,0) size 406x18
381381 RenderText {#text} at (0,0) size 390x18
382382 text run at (0,0) width 390: "Using font \"MS Gothic, foobar\". expected: yen sign, actual: \x{A5}"

@@layer at (0,0) size 785x714
389389 RenderInline {SPAN} at (0,0) size 8x18
390390 RenderText {#text} at (406,0) size 8x18
391391 text run at (406,0) width 8: "\x{A5}"
392  RenderBlock {DIV} at (0,590) size 769x18
 392 RenderBlock {DIV} at (0,620) size 769x18
393393 RenderInline {SPAN} at (0,0) size 402x18
394394 RenderText {#text} at (0,0) size 394x18
395395 text run at (0,0) width 394: "Using font \"foobar, MS Gothic\". expected: backslash, actual: \\"

@@layer at (0,0) size 785x714
402402 RenderInline {SPAN} at (0,0) size 4x18
403403 RenderText {#text} at (402,0) size 4x18
404404 text run at (402,0) width 4: "\\"
405  RenderBlock {DIV} at (0,608) size 769x18
 405 RenderBlock {DIV} at (0,638) size 769x18
406406 RenderInline {SPAN} at (0,0) size 361x18
407407 RenderText {#text} at (0,0) size 345x18
408408 text run at (0,0) width 345: "Using font \"serif, Times\". expected: yen sign, actual: \x{A5}"

@@layer at (0,0) size 785x714
415415 RenderInline {SPAN} at (0,0) size 8x18
416416 RenderText {#text} at (361,0) size 8x18
417417 text run at (361,0) width 8: "\x{A5}"
418  RenderBlock {DIV} at (0,626) size 769x18
 418 RenderBlock {DIV} at (0,656) size 769x18
419419 RenderInline {SPAN} at (0,0) size 357x18
420420 RenderText {#text} at (0,0) size 349x18
421421 text run at (0,0) width 349: "Using font \"Times, serif\". expected: backslash, actual: \\"

@@layer at (0,0) size 785x714
428428 RenderInline {SPAN} at (0,0) size 4x18
429429 RenderText {#text} at (357,0) size 4x18
430430 text run at (357,0) width 4: "\\"
431  RenderBlock {DIV} at (0,644) size 769x18
 431 RenderBlock {DIV} at (0,674) size 769x18
432432 RenderInline {SPAN} at (0,0) size 349x18
433433 RenderText {#text} at (0,0) size 333x18
434434 text run at (0,0) width 333: "Using font \"serif, serif\". expected: yen sign, actual: \x{A5}"

@@layer at (0,0) size 785x714
441441 RenderInline {SPAN} at (0,0) size 8x18
442442 RenderText {#text} at (349,0) size 8x18
443443 text run at (349,0) width 8: "\x{A5}"
444  RenderBlock {DIV} at (0,662) size 769x18
 444 RenderBlock {DIV} at (0,692) size 769x18
445445 RenderInline {SPAN} at (0,0) size 371x18
446446 RenderText {#text} at (0,0) size 363x18
447447 text run at (0,0) width 363: "Using font \"foobar, Times\". expected: backslash, actual: \\"

@@layer at (0,0) size 785x714
454454 RenderInline {SPAN} at (0,0) size 4x18
455455 RenderText {#text} at (371,0) size 4x18
456456 text run at (371,0) width 4: "\\"
457  RenderBlock {DIV} at (0,680) size 769x18
 457 RenderBlock {DIV} at (0,710) size 769x18
458458 RenderInline {SPAN} at (0,0) size 371x18
459459 RenderText {#text} at (0,0) size 363x18
460460 text run at (0,0) width 363: "Using font \"Times, foobar\". expected: backslash, actual: \\"
73924

LayoutTests/platform/mac/fast/text/backslash-to-yen-sign-expected.checksum

1 229a98349dfbe36ad879fd3f1e7f0686
21\ No newline at end of file
 2952a2f80edddfc4b8af91592638bf48e
33\ No newline at end of file
73924

LayoutTests/platform/mac/fast/text/backslash-to-yen-sign-expected.txt

11layer at (0,0) size 800x600
22 RenderView at (0,0) size 800x600
3 layer at (0,0) size 800x250
4  RenderBlock {HTML} at (0,0) size 800x250
5  RenderBody {BODY} at (8,8) size 784x234
 3layer at (0,0) size 800x280
 4 RenderBlock {HTML} at (0,0) size 800x280
 5 RenderBody {BODY} at (8,8) size 784x264
66 RenderBlock {DIV} at (0,0) size 784x18
77 RenderText {#text} at (0,0) size 313x18
88 text run at (0,0) width 313: "No font is specified. expected: backslash, actual: \\"

@@layer at (0,0) size 800x250
2121 RenderBlock {DIV} at (0,90) size 784x18
2222 RenderText {#text} at (0,0) size 317x18
2323 text run at (0,0) width 317: "Using font \"Meiryo\". expected: yen sign, actual: \x{A5}"
24  RenderBlock {DIV} at (0,108) size 784x18
25  RenderText {#text} at (0,0) size 387x18
26  text run at (0,0) width 387: "Using font \"\x{FF2D}\x{FF33} \x{FF30}\x{30B4}\x{30B7}\x{30C3}\x{30AF}\". expected: yen sign, actual: \x{A5}"
27  RenderBlock {DIV} at (0,126) size 784x18
28  RenderText {#text} at (0,0) size 371x18
29  text run at (0,0) width 371: "Using font \"\x{FF2D}\x{FF33} \x{30B4}\x{30B7}\x{30C3}\x{30AF}\". expected: yen sign, actual: \x{A5}"
30  RenderBlock {DIV} at (0,144) size 784x18
31  RenderText {#text} at (0,0) size 355x18
32  text run at (0,0) width 355: "Using font \"\x{FF2D}\x{FF33} \x{FF30}\x{660E}\x{671D}\". expected: yen sign, actual: \x{A5}"
33  RenderBlock {DIV} at (0,162) size 784x18
34  RenderText {#text} at (0,0) size 339x18
35  text run at (0,0) width 339: "Using font \"\x{FF2D}\x{FF33} \x{660E}\x{671D}\". expected: yen sign, actual: \x{A5}"
36  RenderBlock {DIV} at (0,180) size 784x18
37  RenderText {#text} at (0,0) size 335x18
38  text run at (0,0) width 335: "Using font \"\x{30E1}\x{30A4}\x{30EA}\x{30AA}\". expected: yen sign, actual: \x{A5}"
39  RenderBlock {DIV} at (0,198) size 784x18
 24 RenderBlock {DIV} at (0,108) size 784x24
 25 RenderText {#text} at (0,3) size 387x18
 26 text run at (0,3) width 387: "Using font \"\x{FF2D}\x{FF33} \x{FF30}\x{30B4}\x{30B7}\x{30C3}\x{30AF}\". expected: yen sign, actual: \x{A5}"
 27 RenderBlock {DIV} at (0,132) size 784x24
 28 RenderText {#text} at (0,3) size 371x18
 29 text run at (0,3) width 371: "Using font \"\x{FF2D}\x{FF33} \x{30B4}\x{30B7}\x{30C3}\x{30AF}\". expected: yen sign, actual: \x{A5}"
 30 RenderBlock {DIV} at (0,156) size 784x24
 31 RenderText {#text} at (0,3) size 355x18
 32 text run at (0,3) width 355: "Using font \"\x{FF2D}\x{FF33} \x{FF30}\x{660E}\x{671D}\". expected: yen sign, actual: \x{A5}"
 33 RenderBlock {DIV} at (0,180) size 784x24
 34 RenderText {#text} at (0,3) size 339x18
 35 text run at (0,3) width 339: "Using font \"\x{FF2D}\x{FF33} \x{660E}\x{671D}\". expected: yen sign, actual: \x{A5}"
 36 RenderBlock {DIV} at (0,204) size 784x24
 37 RenderText {#text} at (0,3) size 335x18
 38 text run at (0,3) width 335: "Using font \"\x{30E1}\x{30A4}\x{30EA}\x{30AA}\". expected: yen sign, actual: \x{A5}"
 39 RenderBlock {DIV} at (0,228) size 784x18
4040 RenderText {#text} at (0,0) size 314x18
4141 text run at (0,0) width 314: "Using font \"Times\". expected: backslash, actual: \\"
42  RenderBlock {DIV} at (0,216) size 784x18
 42 RenderBlock {DIV} at (0,246) size 784x18
4343 RenderText {#text} at (0,0) size 316x18
4444 text run at (0,0) width 316: "Using font \"foobar\". expected: backslash, actual: \\"
73924

LayoutTests/platform/mac/fast/text/bidi-embedding-pop-and-push-same-expected.checksum

1 457ff4ddd0f122354cc7c2751f422852
21\ No newline at end of file
 21430e1c145a48212fa3fc92cc2e26449
33\ No newline at end of file
73924

LayoutTests/platform/mac/fast/text/bidi-embedding-pop-and-push-same-expected.txt

@@layer at (0,0) size 800x600
4545 text run at (142,0) width 37: " amet"
4646 RenderText {#text} at (179,0) size 4x18
4747 text run at (179,0) width 4: "."
48  RenderBlock {DIV} at (8,106) size 768x64 [border: (1px solid #ADD8E6)]
49  RenderBlock {DIV} at (5,5) size 758x18
50  RenderText {#text} at (0,0) size 46x18
51  text run at (0,0) width 46: "Lorem "
 48 RenderBlock {DIV} at (8,106) size 768x67 [border: (1px solid #ADD8E6)]
 49 RenderBlock {DIV} at (5,5) size 758x19
 50 RenderText {#text} at (0,1) size 46x18
 51 text run at (0,1) width 46: "Lorem "
5252 RenderInline {SPAN} at (0,0) size 65x18
53  RenderText {#text} at (46,0) size 65x18
54  text run at (46,0) width 22 RTL: " \x{5DB}\x{5DC}"
55  text run at (68,0) width 9: "if"
56  text run at (77,0) width 34 RTL: "\x{5D9}\x{5D5}\x{5EA}\x{5E8} "
57  RenderText {#text} at (111,0) size 56x18
58  text run at (111,0) width 56: " sit amet."
59  RenderBlock {DIV} at (5,23) size 758x18
60  RenderText {#text} at (0,0) size 46x18
61  text run at (0,0) width 46: "Lorem "
 53 RenderText {#text} at (46,1) size 65x18
 54 text run at (46,1) width 22 RTL: " \x{5DB}\x{5DC}"
 55 text run at (68,1) width 9: "if"
 56 text run at (77,1) width 34 RTL: "\x{5D9}\x{5D5}\x{5EA}\x{5E8} "
 57 RenderText {#text} at (111,1) size 56x18
 58 text run at (111,1) width 56: " sit amet."
 59 RenderBlock {DIV} at (5,24) size 758x19
 60 RenderText {#text} at (0,1) size 46x18
 61 text run at (0,1) width 46: "Lorem "
6262 RenderInline {SPAN} at (0,0) size 34x18
63  RenderText {#text} at (77,0) size 34x18
64  text run at (77,0) width 34 RTL: "\x{5D9}\x{5D5}\x{5EA}\x{5E8} "
 63 RenderText {#text} at (77,1) size 34x18
 64 text run at (77,1) width 34 RTL: "\x{5D9}\x{5D5}\x{5EA}\x{5E8} "
6565 RenderInline {SPAN} at (0,0) size 31x18
66  RenderText {#text} at (46,0) size 31x18
67  text run at (46,0) width 22 RTL: " \x{5DB}\x{5DC}"
68  text run at (68,0) width 9: "if"
69  RenderText {#text} at (111,0) size 56x18
70  text run at (111,0) width 56: " sit amet."
71  RenderBlock {DIV} at (5,41) size 758x18
72  RenderText {#text} at (0,0) size 46x18
73  text run at (0,0) width 46: "Lorem "
 66 RenderText {#text} at (46,1) size 31x18
 67 text run at (46,1) width 22 RTL: " \x{5DB}\x{5DC}"
 68 text run at (68,1) width 9: "if"
 69 RenderText {#text} at (111,1) size 56x18
 70 text run at (111,1) width 56: " sit amet."
 71 RenderBlock {DIV} at (5,43) size 758x19
 72 RenderText {#text} at (0,1) size 46x18
 73 text run at (0,1) width 46: "Lorem "
7474 RenderInline {SPAN} at (0,0) size 34x18
75  RenderText {#text} at (77,0) size 34x18
76  text run at (77,0) width 34 RTL: "\x{5D9}\x{5D5}\x{5EA}\x{5E8} "
 75 RenderText {#text} at (77,1) size 34x18
 76 text run at (77,1) width 34 RTL: "\x{5D9}\x{5D5}\x{5EA}\x{5E8} "
7777 RenderInline {B} at (0,0) size 120x18
7878 RenderInline {SPAN} at (0,0) size 31x18
79  RenderText {#text} at (46,0) size 31x18
80  text run at (46,0) width 22 RTL: " \x{5DB}\x{5DC}"
81  text run at (68,0) width 9: "if"
82  RenderText {#text} at (111,0) size 4x18
83  text run at (111,0) width 4: " "
 79 RenderText {#text} at (46,1) size 31x18
 80 text run at (46,1) width 22 RTL: " \x{5DB}\x{5DC}"
 81 text run at (68,1) width 9: "if"
 82 RenderText {#text} at (111,1) size 4x18
 83 text run at (111,1) width 4: " "
8484 RenderInline {I} at (0,0) size 14x18
85  RenderText {#text} at (115,0) size 14x18
86  text run at (115,0) width 14: "sit"
87  RenderText {#text} at (129,0) size 37x18
88  text run at (129,0) width 37: " amet"
89  RenderText {#text} at (166,0) size 4x18
90  text run at (166,0) width 4: "."
91  RenderBlock {DIV} at (8,178) size 768x46 [border: (1px solid #ADD8E6)]
 85 RenderText {#text} at (115,1) size 14x18
 86 text run at (115,1) width 14: "sit"
 87 RenderText {#text} at (129,1) size 37x18
 88 text run at (129,1) width 37: " amet"
 89 RenderText {#text} at (166,1) size 4x18
 90 text run at (166,1) width 4: "."
 91 RenderBlock {DIV} at (8,181) size 768x46 [border: (1px solid #ADD8E6)]
9292 RenderBlock {DIV} at (5,5) size 758x18
9393 RenderInline {SPAN} at (0,0) size 19x18
9494 RenderText {#text} at (0,0) size 19x18

@@layer at (0,0) size 800x600
102102 RenderText {#text} at (7,0) size 12x18
103103 text run at (7,0) width 12: " b"
104104 RenderText {#text} at (0,0) size 0x0
105  RenderBlock {DIV} at (8,232) size 768x64 [border: (1px solid #ADD8E6)]
106  RenderBlock {DIV} at (5,5) size 758x18
107  RenderText {#text} at (721,0) size 37x18
108  text run at (721,0) width 37 RTL: "\x{5D0}\x{5D7}\x{5EA} "
 105 RenderBlock {DIV} at (8,235) size 768x67 [border: (1px solid #ADD8E6)]
 106 RenderBlock {DIV} at (5,5) size 758x19
 107 RenderText {#text} at (721,1) size 37x18
 108 text run at (721,1) width 37 RTL: "\x{5D0}\x{5D7}\x{5EA} "
109109 RenderInline {SPAN} at (0,0) size 85x18
110  RenderText {#text} at (636,0) size 85x18
111  text run at (636,0) width 85 RTL: "\x{5E9}\x{5EA}\x{5D9}\x{5D9}\x{5DD} \x{5E9}\x{5DC}\x{5D5}\x{5E9}"
112  RenderText {#text} at (552,0) size 84x18
113  text run at (552,0) width 84 RTL: " \x{5D0}\x{5E8}\x{5D1}\x{5E2} \x{5D7}\x{5DE}\x{5E9}."
114  RenderBlock {DIV} at (5,23) size 758x18
115  RenderText {#text} at (721,0) size 37x18
116  text run at (721,0) width 37 RTL: "\x{5D0}\x{5D7}\x{5EA} "
 110 RenderText {#text} at (636,1) size 85x18
 111 text run at (636,1) width 85 RTL: "\x{5E9}\x{5EA}\x{5D9}\x{5D9}\x{5DD} \x{5E9}\x{5DC}\x{5D5}\x{5E9}"
 112 RenderText {#text} at (552,1) size 84x18
 113 text run at (552,1) width 84 RTL: " \x{5D0}\x{5E8}\x{5D1}\x{5E2} \x{5D7}\x{5DE}\x{5E9}."
 114 RenderBlock {DIV} at (5,24) size 758x19
 115 RenderText {#text} at (721,1) size 37x18
 116 text run at (721,1) width 37 RTL: "\x{5D0}\x{5D7}\x{5EA} "
117117 RenderInline {SPAN} at (0,0) size 44x18
118  RenderText {#text} at (677,0) size 44x18
119  text run at (677,0) width 44 RTL: "\x{5E9}\x{5EA}\x{5D9}\x{5D9}\x{5DD}"
 118 RenderText {#text} at (677,1) size 44x18
 119 text run at (677,1) width 44 RTL: "\x{5E9}\x{5EA}\x{5D9}\x{5D9}\x{5DD}"
120120 RenderInline {SPAN} at (0,0) size 41x18
121  RenderText {#text} at (636,0) size 41x18
122  text run at (636,0) width 41 RTL: " \x{5E9}\x{5DC}\x{5D5}\x{5E9}"
123  RenderText {#text} at (552,0) size 84x18
124  text run at (552,0) width 84 RTL: " \x{5D0}\x{5E8}\x{5D1}\x{5E2} \x{5D7}\x{5DE}\x{5E9}."
125  RenderBlock {DIV} at (5,41) size 758x18
126  RenderText {#text} at (721,0) size 37x18
127  text run at (721,0) width 37 RTL: "\x{5D0}\x{5D7}\x{5EA} "
 121 RenderText {#text} at (636,1) size 41x18
 122 text run at (636,1) width 41 RTL: " \x{5E9}\x{5DC}\x{5D5}\x{5E9}"
 123 RenderText {#text} at (552,1) size 84x18
 124 text run at (552,1) width 84 RTL: " \x{5D0}\x{5E8}\x{5D1}\x{5E2} \x{5D7}\x{5DE}\x{5E9}."
 125 RenderBlock {DIV} at (5,43) size 758x19
 126 RenderText {#text} at (721,1) size 37x18
 127 text run at (721,1) width 37 RTL: "\x{5D0}\x{5D7}\x{5EA} "
128128 RenderInline {SPAN} at (0,0) size 48x18
129  RenderText {#text} at (673,0) size 48x18
130  text run at (673,0) width 48 RTL: "\x{5E9}\x{5EA}\x{5D9}\x{5D9}\x{5DD} "
 129 RenderText {#text} at (673,1) size 48x18
 130 text run at (673,1) width 48 RTL: "\x{5E9}\x{5EA}\x{5D9}\x{5D9}\x{5DD} "
131131 RenderInline {B} at (0,0) size 119x18
132132 RenderInline {SPAN} at (0,0) size 38x18
133  RenderText {#text} at (635,0) size 38x18
134  text run at (635,0) width 38 RTL: "\x{5E9}\x{5DC}\x{5D5}\x{5E9}"
135  RenderText {#text} at (631,0) size 4x18
136  text run at (631,0) width 4 RTL: " "
 133 RenderText {#text} at (635,1) size 38x18
 134 text run at (635,1) width 38 RTL: "\x{5E9}\x{5DC}\x{5D5}\x{5E9}"
 135 RenderText {#text} at (631,1) size 4x18
 136 text run at (631,1) width 4 RTL: " "
137137 RenderInline {I} at (0,0) size 39x18
138  RenderText {#text} at (592,0) size 39x18
139  text run at (592,0) width 39 RTL: "\x{5D0}\x{5E8}\x{5D1}\x{5E2}"
140  RenderText {#text} at (554,0) size 38x18
141  text run at (554,0) width 38 RTL: " \x{5D7}\x{5DE}\x{5E9}"
142  RenderText {#text} at (550,0) size 4x18
143  text run at (550,0) width 4 RTL: "."
 138 RenderText {#text} at (592,1) size 39x18
 139 text run at (592,1) width 39 RTL: "\x{5D0}\x{5E8}\x{5D1}\x{5E2}"
 140 RenderText {#text} at (554,1) size 38x18
 141 text run at (554,1) width 38 RTL: " \x{5D7}\x{5DE}\x{5E9}"
 142 RenderText {#text} at (550,1) size 4x18
 143 text run at (550,1) width 4 RTL: "."
73924

LayoutTests/platform/mac/fast/text/capitalize-boundaries-expected.checksum

1 b80acda221a2acba3f8ec30f3b2a85e5
21\ No newline at end of file
 22ccf69c8ba374f9285d308e77ce33bce
33\ No newline at end of file
73924

LayoutTests/platform/mac/fast/text/capitalize-boundaries-expected.txt

1 layer at (0,0) size 785x1186
 1layer at (0,0) size 785x1198
22 RenderView at (0,0) size 785x600
3 layer at (0,0) size 785x1186
4  RenderBlock {HTML} at (0,0) size 785x1186
5  RenderBody {BODY} at (8,8) size 769x1170
 3layer at (0,0) size 785x1198
 4 RenderBlock {HTML} at (0,0) size 785x1198
 5 RenderBody {BODY} at (8,8) size 769x1182
66 RenderBlock (anonymous) at (0,0) size 769x90
77 RenderText {#text} at (0,0) size 346x18
88 text run at (0,0) width 346: "This test was provided by open-source contributors on "

@@layer at (0,0) size 785x1186
1717 text run at (184,54) width 286: "(at least temporarily) adding the test anyway. "
1818 RenderBR {BR} at (470,68) size 0x0
1919 RenderBR {BR} at (0,72) size 0x18
20  RenderTable {TABLE} at (0,90) size 769x360
 20 RenderTable {TABLE} at (0,90) size 769x364
2121 RenderBlock {CAPTION} at (0,0) size 769x18
2222 RenderText {#text} at (345,0) size 78x18
2323 text run at (345,0) width 78: "Input source"
24  RenderTableSection {TBODY} at (0,18) size 769x342
 24 RenderTableSection {TBODY} at (0,18) size 769x346
2525 RenderTableRow {TR} at (0,2) size 769x58
2626 RenderTableCell {TH} at (2,20) size 53x22 [bgcolor=#F8F8F8] [border: (1px solid #EEEEEE)] [r=0 c=0 rs=1 cs=1]
2727 RenderText {#text} at (2,2) size 49x18

@@layer at (0,0) size 785x1186
3838 RenderTableCell {TD} at (57,62) size 710x22 [border: (1px solid #EEEEEE)] [r=1 c=1 rs=1 cs=1]
3939 RenderText {#text} at (2,2) size 24x18
4040 text run at (2,2) width 24: "\x{175}yl"
41  RenderTableRow {TR} at (0,86) size 769x22
 41 RenderTableRow {TR} at (0,86) size 769x23
4242 RenderTableCell {TH} at (2,86) size 53x22 [bgcolor=#F8F8F8] [border: (1px solid #EEEEEE)] [r=2 c=0 rs=1 cs=1]
4343 RenderText {#text} at (21,2) size 11x18
4444 text run at (21,2) width 11: "el"
45  RenderTableCell {TD} at (57,86) size 710x22 [border: (1px solid #EEEEEE)] [r=2 c=1 rs=1 cs=1]
46  RenderText {#text} at (2,2) size 224x18
47  text run at (2,2) width 224: "\x{3B3}\x{3B5}\x{3C9}\x{3B3}\x{3C1}\x{3B1}\x{3C6}\x{3B9}\x{3BA}\x{3AC}\x{2010}\x{3C3}\x{3C5}\x{3C3}\x{3C7}\x{3B5}\x{3C4}\x{3B9}\x{3C3}\x{3BC}\x{3AD}\x{3BD}\x{3B5}\x{3C2} \x{3AE}\x{3C4}\x{3B1}"
48  RenderTableRow {TR} at (0,110) size 769x58
49  RenderTableCell {TH} at (2,128) size 53x22 [bgcolor=#F8F8F8] [border: (1px solid #EEEEEE)] [r=3 c=0 rs=1 cs=1]
 45 RenderTableCell {TD} at (57,86) size 710x23 [border: (1px solid #EEEEEE)] [r=2 c=1 rs=1 cs=1]
 46 RenderText {#text} at (2,3) size 224x18
 47 text run at (2,3) width 224: "\x{3B3}\x{3B5}\x{3C9}\x{3B3}\x{3C1}\x{3B1}\x{3C6}\x{3B9}\x{3BA}\x{3AC}\x{2010}\x{3C3}\x{3C5}\x{3C3}\x{3C7}\x{3B5}\x{3C4}\x{3B9}\x{3C3}\x{3BC}\x{3AD}\x{3BD}\x{3B5}\x{3C2} \x{3AE}\x{3C4}\x{3B1}"
 48 RenderTableRow {TR} at (0,111) size 769x60
 49 RenderTableCell {TH} at (2,130) size 53x22 [bgcolor=#F8F8F8] [border: (1px solid #EEEEEE)] [r=3 c=0 rs=1 cs=1]
5050 RenderText {#text} at (18,2) size 16x18
5151 text run at (18,2) width 16: "en"
52  RenderTableCell {TD} at (57,110) size 710x58 [border: (1px solid #EEEEEE)] [r=3 c=1 rs=1 cs=1]
53  RenderText {#text} at (2,2) size 427x18
54  text run at (2,2) width 427: "'cept nut'in safari\x{2019}s \x{2018}sure\x{2019} nai\x{308}ve r\x{E9}sum\x{E9}\x{2014}h\x{E1}c\x{30C}ek full\x{2010}time one-to-one"
55  RenderBR {BR} at (429,16) size 0x0
56  RenderText {#text} at (2,20) size 315x18
57  text run at (2,20) width 315: "\"newcastle\x{2011}upon\x{2011}tyne\" washington\x{2011}on\x{2011}the\x{2011}brazos"
58  RenderBR {BR} at (317,34) size 0x0
 52 RenderTableCell {TD} at (57,111) size 710x60 [border: (1px solid #EEEEEE)] [r=3 c=1 rs=1 cs=1]
 53 RenderText {#text} at (2,3) size 427x18
 54 text run at (2,3) width 427: "'cept nut'in safari\x{2019}s \x{2018}sure\x{2019} nai\x{308}ve r\x{E9}sum\x{E9}\x{2014}h\x{E1}c\x{30C}ek full\x{2010}time one-to-one"
 55 RenderBR {BR} at (429,17) size 0x0
 56 RenderText {#text} at (2,22) size 315x18
 57 text run at (2,22) width 315: "\"newcastle\x{2011}upon\x{2011}tyne\" washington\x{2011}on\x{2011}the\x{2011}brazos"
 58 RenderBR {BR} at (317,36) size 0x0
5959 RenderInline {SPAN} at (0,0) size 31x18
60  RenderText {#text} at (2,38) size 31x18
61  text run at (2,38) width 31: "earth"
62  RenderText {#text} at (33,38) size 73x18
63  text run at (33,38) width 73: "quake earth"
 60 RenderText {#text} at (2,40) size 31x18
 61 text run at (2,40) width 31: "earth"
 62 RenderText {#text} at (33,40) size 73x18
 63 text run at (33,40) width 73: "quake earth"
6464 RenderInline {SPAN} at (0,0) size 37x18
65  RenderText {#text} at (106,38) size 37x18
66  text run at (106,38) width 37: "worm"
67  RenderText {#text} at (143,38) size 4x18
68  text run at (143,38) width 4: " "
 65 RenderText {#text} at (106,40) size 37x18
 66 text run at (106,40) width 37: "worm"
 67 RenderText {#text} at (143,40) size 4x18
 68 text run at (143,40) width 4: " "
6969 RenderInline {SPAN} at (0,0) size 42x18
70  RenderText {#text} at (147,38) size 42x18
71  text run at (147,38) width 42: "cheese"
 70 RenderText {#text} at (147,40) size 42x18
 71 text run at (147,40) width 42: "cheese"
7272 RenderInline {SPAN} at (0,0) size 41x18
73  RenderText {#text} at (189,38) size 41x18
74  text run at (189,38) width 41: "burger"
75  RenderText {#text} at (230,38) size 116x18
76  text run at (230,38) width 116: " [house] ~six -big-"
77  RenderTableRow {TR} at (0,170) size 769x22
78  RenderTableCell {TH} at (2,170) size 53x22 [bgcolor=#F8F8F8] [border: (1px solid #EEEEEE)] [r=4 c=0 rs=1 cs=1]
 73 RenderText {#text} at (189,40) size 41x18
 74 text run at (189,40) width 41: "burger"
 75 RenderText {#text} at (230,40) size 116x18
 76 text run at (230,40) width 116: " [house] ~six -big-"
 77 RenderTableRow {TR} at (0,173) size 769x22
 78 RenderTableCell {TH} at (2,173) size 53x22 [bgcolor=#F8F8F8] [border: (1px solid #EEEEEE)] [r=4 c=0 rs=1 cs=1]
7979 RenderText {#text} at (20,2) size 13x18
8080 text run at (20,2) width 13: "es"
81  RenderTableCell {TD} at (57,170) size 710x22 [border: (1px solid #EEEEEE)] [r=4 c=1 rs=1 cs=1]
 81 RenderTableCell {TD} at (57,173) size 710x22 [border: (1px solid #EEEEEE)] [r=4 c=1 rs=1 cs=1]
8282 RenderText {#text} at (2,2) size 63x18
8383 text run at (2,2) width 63: "\x{A1}jalape\x{F1}o!"
84  RenderTableRow {TR} at (0,194) size 769x26
85  RenderTableCell {TH} at (2,196) size 53x22 [bgcolor=#F8F8F8] [border: (1px solid #EEEEEE)] [r=5 c=0 rs=1 cs=1]
 84 RenderTableRow {TR} at (0,197) size 769x26
 85 RenderTableCell {TH} at (2,199) size 53x22 [bgcolor=#F8F8F8] [border: (1px solid #EEEEEE)] [r=5 c=0 rs=1 cs=1]
8686 RenderText {#text} at (20,2) size 12x18
8787 text run at (20,2) width 12: "fr"
88  RenderTableCell {TD} at (57,194) size 710x26 [border: (1px solid #EEEEEE)] [r=5 c=1 rs=1 cs=1]
 88 RenderTableCell {TD} at (57,197) size 710x26 [border: (1px solid #EEEEEE)] [r=5 c=1 rs=1 cs=1]
8989 RenderText {#text} at (2,6) size 207x18
9090 text run at (2,6) width 207: "quelqu'un l\x{2019}amour t'appelles\x{2011}tu 3"
9191 RenderInline {SUP} at (0,0) size 22x15
9292 RenderText {#text} at (209,2) size 22x15
9393 text run at (209,2) width 22: "eme"
94  RenderTableRow {TR} at (0,222) size 769x22
95  RenderTableCell {TH} at (2,222) size 53x22 [bgcolor=#F8F8F8] [border: (1px solid #EEEEEE)] [r=6 c=0 rs=1 cs=1]
 94 RenderTableRow {TR} at (0,225) size 769x23
 95 RenderTableCell {TH} at (2,225) size 53x22 [bgcolor=#F8F8F8] [border: (1px solid #EEEEEE)] [r=6 c=0 rs=1 cs=1]
9696 RenderText {#text} at (17,2) size 18x18
9797 text run at (17,2) width 18: "hu"
98  RenderTableCell {TD} at (57,222) size 710x22 [border: (1px solid #EEEEEE)] [r=6 c=1 rs=1 cs=1]
99  RenderText {#text} at (2,2) size 109x18
100  text run at (2,2) width 109: "11-ei london\x{2011}ban"
101  RenderTableRow {TR} at (0,246) size 769x22
102  RenderTableCell {TH} at (2,246) size 53x22 [bgcolor=#F8F8F8] [border: (1px solid #EEEEEE)] [r=7 c=0 rs=1 cs=1]
 98 RenderTableCell {TD} at (57,225) size 710x23 [border: (1px solid #EEEEEE)] [r=6 c=1 rs=1 cs=1]
 99 RenderText {#text} at (2,3) size 109x18
 100 text run at (2,3) width 109: "11-ei london\x{2011}ban"
 101 RenderTableRow {TR} at (0,250) size 769x22
 102 RenderTableCell {TH} at (2,250) size 53x22 [bgcolor=#F8F8F8] [border: (1px solid #EEEEEE)] [r=7 c=0 rs=1 cs=1]
103103 RenderText {#text} at (20,2) size 13x18
104104 text run at (20,2) width 13: "nl"
105  RenderTableCell {TD} at (57,246) size 710x22 [border: (1px solid #EEEEEE)] [r=7 c=1 rs=1 cs=1]
 105 RenderTableCell {TD} at (57,250) size 710x22 [border: (1px solid #EEEEEE)] [r=7 c=1 rs=1 cs=1]
106106 RenderText {#text} at (2,2) size 69x18
107107 text run at (2,2) width 69: "'s ochtends"
108  RenderTableRow {TR} at (0,270) size 769x22
109  RenderTableCell {TH} at (2,270) size 53x22 [bgcolor=#F8F8F8] [border: (1px solid #EEEEEE)] [r=8 c=0 rs=1 cs=1]
 108 RenderTableRow {TR} at (0,274) size 769x22
 109 RenderTableCell {TH} at (2,274) size 53x22 [bgcolor=#F8F8F8] [border: (1px solid #EEEEEE)] [r=8 c=0 rs=1 cs=1]
110110 RenderText {#text} at (20,2) size 13x18
111111 text run at (20,2) width 13: "pl"
112  RenderTableCell {TD} at (57,270) size 710x22 [border: (1px solid #EEEEEE)] [r=8 c=1 rs=1 cs=1]
 112 RenderTableCell {TD} at (57,274) size 710x22 [border: (1px solid #EEEEEE)] [r=8 c=1 rs=1 cs=1]
113113 RenderText {#text} at (2,2) size 92x18
114114 text run at (2,2) width 92: "wzi\x{119}\x{142}a bie\x{17C}\x{105}ce"
115  RenderTableRow {TR} at (0,294) size 769x22
116  RenderTableCell {TH} at (2,294) size 53x22 [bgcolor=#F8F8F8] [border: (1px solid #EEEEEE)] [r=9 c=0 rs=1 cs=1]
 115 RenderTableRow {TR} at (0,298) size 769x22
 116 RenderTableCell {TH} at (2,298) size 53x22 [bgcolor=#F8F8F8] [border: (1px solid #EEEEEE)] [r=9 c=0 rs=1 cs=1]
117117 RenderText {#text} at (18,2) size 16x18
118118 text run at (18,2) width 16: "ru"
119  RenderTableCell {TD} at (57,294) size 710x22 [border: (1px solid #EEEEEE)] [r=9 c=1 rs=1 cs=1]
 119 RenderTableCell {TD} at (57,298) size 710x22 [border: (1px solid #EEEEEE)] [r=9 c=1 rs=1 cs=1]
120120 RenderText {#text} at (2,2) size 191x18
121121 text run at (2,2) width 191: "\x{43D}\x{44C}\x{44E}-\x{439}\x{43E}\x{440}\x{43A} 1990-\x{445} 14-vii-1789"
122  RenderTableRow {TR} at (0,318) size 769x22
123  RenderTableCell {TH} at (2,318) size 53x22 [bgcolor=#F8F8F8] [border: (1px solid #EEEEEE)] [r=10 c=0 rs=1 cs=1]
 122 RenderTableRow {TR} at (0,322) size 769x22
 123 RenderTableCell {TH} at (2,322) size 53x22 [bgcolor=#F8F8F8] [border: (1px solid #EEEEEE)] [r=10 c=0 rs=1 cs=1]
124124 RenderText {#text} at (17,2) size 18x18
125125 text run at (17,2) width 18: "tlh"
126  RenderTableCell {TD} at (57,318) size 710x22 [border: (1px solid #EEEEEE)] [r=10 c=1 rs=1 cs=1]
 126 RenderTableCell {TD} at (57,322) size 710x22 [border: (1px solid #EEEEEE)] [r=10 c=1 rs=1 cs=1]
127127 RenderText {#text} at (2,2) size 187x18
128128 text run at (2,2) width 187: "tlhIngan Hol wa''uy' loghqam"
129  RenderTable {TABLE} at (0,450) size 769x360
 129 RenderTable {TABLE} at (0,454) size 769x364
130130 RenderBlock {CAPTION} at (0,0) size 769x18
131131 RenderText {#text} at (315,0) size 139x18
132132 text run at (315,0) width 139: "Correct output sample"
133  RenderTableSection {TBODY} at (0,18) size 769x342
 133 RenderTableSection {TBODY} at (0,18) size 769x346
134134 RenderTableRow {TR} at (0,2) size 769x58
135135 RenderTableCell {TH} at (2,20) size 53x22 [bgcolor=#F8F8F8] [border: (1px solid #EEEEEE)] [r=0 c=0 rs=1 cs=1]
136136 RenderText {#text} at (2,2) size 49x18

@@layer at (0,0) size 785x1186
147147 RenderTableCell {TD} at (57,62) size 710x22 [border: (1px solid #EEEEEE)] [r=1 c=1 rs=1 cs=1]
148148 RenderText {#text} at (2,2) size 27x18
149149 text run at (2,2) width 27: "\x{174}yl"
150  RenderTableRow {TR} at (0,86) size 769x22
 150 RenderTableRow {TR} at (0,86) size 769x23
151151 RenderTableCell {TH} at (2,86) size 53x22 [bgcolor=#F8F8F8] [border: (1px solid #EEEEEE)] [r=2 c=0 rs=1 cs=1]
152152 RenderText {#text} at (21,2) size 11x18
153153 text run at (21,2) width 11: "el"
154  RenderTableCell {TD} at (57,86) size 710x22 [border: (1px solid #EEEEEE)] [r=2 c=1 rs=1 cs=1]
155  RenderText {#text} at (2,2) size 236x18
156  text run at (2,2) width 236: "\x{393}\x{3B5}\x{3C9}\x{3B3}\x{3C1}\x{3B1}\x{3C6}\x{3B9}\x{3BA}\x{3AC}\x{2010}\x{3A3}\x{3C5}\x{3C3}\x{3C7}\x{3B5}\x{3C4}\x{3B9}\x{3C3}\x{3BC}\x{3AD}\x{3BD}\x{3B5}\x{3C2} \x{389}\x{3C4}\x{3B1}"
157  RenderTableRow {TR} at (0,110) size 769x58
158  RenderTableCell {TH} at (2,128) size 53x22 [bgcolor=#F8F8F8] [border: (1px solid #EEEEEE)] [r=3 c=0 rs=1 cs=1]
 154 RenderTableCell {TD} at (57,86) size 710x23 [border: (1px solid #EEEEEE)] [r=2 c=1 rs=1 cs=1]
 155 RenderText {#text} at (2,3) size 236x18
 156 text run at (2,3) width 236: "\x{393}\x{3B5}\x{3C9}\x{3B3}\x{3C1}\x{3B1}\x{3C6}\x{3B9}\x{3BA}\x{3AC}\x{2010}\x{3A3}\x{3C5}\x{3C3}\x{3C7}\x{3B5}\x{3C4}\x{3B9}\x{3C3}\x{3BC}\x{3AD}\x{3BD}\x{3B5}\x{3C2} \x{389}\x{3C4}\x{3B1}"
 157 RenderTableRow {TR} at (0,111) size 769x60
 158 RenderTableCell {TH} at (2,130) size 53x22 [bgcolor=#F8F8F8] [border: (1px solid #EEEEEE)] [r=3 c=0 rs=1 cs=1]
159159 RenderText {#text} at (18,2) size 16x18
160160 text run at (18,2) width 16: "en"
161  RenderTableCell {TD} at (57,110) size 710x58 [border: (1px solid #EEEEEE)] [r=3 c=1 rs=1 cs=1]
162  RenderText {#text} at (2,2) size 467x18
163  text run at (2,2) width 467: "'Cept Nut'in Safari\x{2019}s \x{2018}Sure\x{2019} Na\x{EF}ve R\x{E9}sum\x{E9}\x{2014}H\x{E1}\x{10D}ek Full\x{2010}time One-to-One"
164  RenderBR {BR} at (469,16) size 0x0
165  RenderText {#text} at (2,20) size 330x18
166  text run at (2,20) width 330: "\"Newcastle-upon-Tyne\" Washington\x{2011}on\x{2011}the\x{2011}Brazos"
167  RenderBR {BR} at (332,34) size 0x0
168  RenderText {#text} at (2,38) size 364x18
169  text run at (2,38) width 364: "Earthquake Earthworm Cheeseburger [House] ~Six -Big-"
170  RenderTableRow {TR} at (0,170) size 769x22
171  RenderTableCell {TH} at (2,170) size 53x22 [bgcolor=#F8F8F8] [border: (1px solid #EEEEEE)] [r=4 c=0 rs=1 cs=1]
 161 RenderTableCell {TD} at (57,111) size 710x60 [border: (1px solid #EEEEEE)] [r=3 c=1 rs=1 cs=1]
 162 RenderText {#text} at (2,3) size 467x18
 163 text run at (2,3) width 467: "'Cept Nut'in Safari\x{2019}s \x{2018}Sure\x{2019} Na\x{EF}ve R\x{E9}sum\x{E9}\x{2014}H\x{E1}\x{10D}ek Full\x{2010}time One-to-One"
 164 RenderBR {BR} at (469,17) size 0x0
 165 RenderText {#text} at (2,22) size 330x18
 166 text run at (2,22) width 330: "\"Newcastle-upon-Tyne\" Washington\x{2011}on\x{2011}the\x{2011}Brazos"
 167 RenderBR {BR} at (332,36) size 0x0
 168 RenderText {#text} at (2,40) size 364x18
 169 text run at (2,40) width 364: "Earthquake Earthworm Cheeseburger [House] ~Six -Big-"
 170 RenderTableRow {TR} at (0,173) size 769x22
 171 RenderTableCell {TH} at (2,173) size 53x22 [bgcolor=#F8F8F8] [border: (1px solid #EEEEEE)] [r=4 c=0 rs=1 cs=1]
172172 RenderText {#text} at (20,2) size 13x18
173173 text run at (20,2) width 13: "es"
174  RenderTableCell {TD} at (57,170) size 710x22 [border: (1px solid #EEEEEE)] [r=4 c=1 rs=1 cs=1]
 174 RenderTableCell {TD} at (57,173) size 710x22 [border: (1px solid #EEEEEE)] [r=4 c=1 rs=1 cs=1]
175175 RenderText {#text} at (2,2) size 65x18
176176 text run at (2,2) width 65: "\x{A1}Jalape\x{F1}o!"
177  RenderTableRow {TR} at (0,194) size 769x26
178  RenderTableCell {TH} at (2,196) size 53x22 [bgcolor=#F8F8F8] [border: (1px solid #EEEEEE)] [r=5 c=0 rs=1 cs=1]
 177 RenderTableRow {TR} at (0,197) size 769x26
 178 RenderTableCell {TH} at (2,199) size 53x22 [bgcolor=#F8F8F8] [border: (1px solid #EEEEEE)] [r=5 c=0 rs=1 cs=1]
179179 RenderText {#text} at (20,2) size 12x18
180180 text run at (20,2) width 12: "fr"
181  RenderTableCell {TD} at (57,194) size 710x26 [border: (1px solid #EEEEEE)] [r=5 c=1 rs=1 cs=1]
 181 RenderTableCell {TD} at (57,197) size 710x26 [border: (1px solid #EEEEEE)] [r=5 c=1 rs=1 cs=1]
182182 RenderText {#text} at (2,6) size 227x18
183183 text run at (2,6) width 227: "Quelqu'un l\x{2019}Amour t'Appelles\x{2011}Tu 3"
184184 RenderInline {SUP} at (0,0) size 22x15
185185 RenderText {#text} at (229,2) size 22x15
186186 text run at (229,2) width 22: "eme"
187  RenderTableRow {TR} at (0,222) size 769x22
188  RenderTableCell {TH} at (2,222) size 53x22 [bgcolor=#F8F8F8] [border: (1px solid #EEEEEE)] [r=6 c=0 rs=1 cs=1]
 187 RenderTableRow {TR} at (0,225) size 769x23
 188 RenderTableCell {TH} at (2,225) size 53x22 [bgcolor=#F8F8F8] [border: (1px solid #EEEEEE)] [r=6 c=0 rs=1 cs=1]
189189 RenderText {#text} at (17,2) size 18x18
190190 text run at (17,2) width 18: "hu"
191  RenderTableCell {TD} at (57,222) size 710x22 [border: (1px solid #EEEEEE)] [r=6 c=1 rs=1 cs=1]
192  RenderText {#text} at (2,2) size 115x18
193  text run at (2,2) width 115: "11-ei London\x{2011}ban"
194  RenderTableRow {TR} at (0,246) size 769x22
195  RenderTableCell {TH} at (2,246) size 53x22 [bgcolor=#F8F8F8] [border: (1px solid #EEEEEE)] [r=7 c=0 rs=1 cs=1]
 191 RenderTableCell {TD} at (57,225) size 710x23 [border: (1px solid #EEEEEE)] [r=6 c=1 rs=1 cs=1]
 192 RenderText {#text} at (2,3) size 115x18
 193 text run at (2,3) width 115: "11-ei London\x{2011}ban"
 194 RenderTableRow {TR} at (0,250) size 769x22
 195 RenderTableCell {TH} at (2,250) size 53x22 [bgcolor=#F8F8F8] [border: (1px solid #EEEEEE)] [r=7 c=0 rs=1 cs=1]
196196 RenderText {#text} at (20,2) size 13x18
197197 text run at (20,2) width 13: "nl"
198  RenderTableCell {TD} at (57,246) size 710x22 [border: (1px solid #EEEEEE)] [r=7 c=1 rs=1 cs=1]
 198 RenderTableCell {TD} at (57,250) size 710x22 [border: (1px solid #EEEEEE)] [r=7 c=1 rs=1 cs=1]
199199 RenderText {#text} at (2,2) size 73x18
200200 text run at (2,2) width 73: "'s Ochtends"
201  RenderTableRow {TR} at (0,270) size 769x22
202  RenderTableCell {TH} at (2,270) size 53x22 [bgcolor=#F8F8F8] [border: (1px solid #EEEEEE)] [r=8 c=0 rs=1 cs=1]
 201 RenderTableRow {TR} at (0,274) size 769x22
 202 RenderTableCell {TH} at (2,274) size 53x22 [bgcolor=#F8F8F8] [border: (1px solid #EEEEEE)] [r=8 c=0 rs=1 cs=1]
203203 RenderText {#text} at (20,2) size 13x18
204204 text run at (20,2) width 13: "pl"
205  RenderTableCell {TD} at (57,270) size 710x22 [border: (1px solid #EEEEEE)] [r=8 c=1 rs=1 cs=1]
 205 RenderTableCell {TD} at (57,274) size 710x22 [border: (1px solid #EEEEEE)] [r=8 c=1 rs=1 cs=1]
206206 RenderText {#text} at (2,2) size 98x18
207207 text run at (2,2) width 98: "Wzi\x{119}\x{142}a Bie\x{17C}\x{105}ce"
208  RenderTableRow {TR} at (0,294) size 769x22
209  RenderTableCell {TH} at (2,294) size 53x22 [bgcolor=#F8F8F8] [border: (1px solid #EEEEEE)] [r=9 c=0 rs=1 cs=1]
 208 RenderTableRow {TR} at (0,298) size 769x22
 209 RenderTableCell {TH} at (2,298) size 53x22 [bgcolor=#F8F8F8] [border: (1px solid #EEEEEE)] [r=9 c=0 rs=1 cs=1]
210210 RenderText {#text} at (18,2) size 16x18
211211 text run at (18,2) width 16: "ru"
212  RenderTableCell {TD} at (57,294) size 710x22 [border: (1px solid #EEEEEE)] [r=9 c=1 rs=1 cs=1]
 212 RenderTableCell {TD} at (57,298) size 710x22 [border: (1px solid #EEEEEE)] [r=9 c=1 rs=1 cs=1]
213213 RenderText {#text} at (2,2) size 199x18
214214 text run at (2,2) width 199: "\x{41D}\x{44C}\x{44E}-\x{419}\x{43E}\x{440}\x{43A} 1990-\x{445} 14-vii-1789"
215  RenderTableRow {TR} at (0,318) size 769x22
216  RenderTableCell {TH} at (2,318) size 53x22 [bgcolor=#F8F8F8] [border: (1px solid #EEEEEE)] [r=10 c=0 rs=1 cs=1]
 215 RenderTableRow {TR} at (0,322) size 769x22
 216 RenderTableCell {TH} at (2,322) size 53x22 [bgcolor=#F8F8F8] [border: (1px solid #EEEEEE)] [r=10 c=0 rs=1 cs=1]
217217 RenderText {#text} at (17,2) size 18x18
218218 text run at (17,2) width 18: "tlh"
219  RenderTableCell {TD} at (57,318) size 710x22 [border: (1px solid #EEEEEE)] [r=10 c=1 rs=1 cs=1]
 219 RenderTableCell {TD} at (57,322) size 710x22 [border: (1px solid #EEEEEE)] [r=10 c=1 rs=1 cs=1]
220220 RenderText {#text} at (2,2) size 187x18
221221 text run at (2,2) width 187: "tlhIngan Hol wa''uy' loghqam"
222  RenderTable {TABLE} at (0,810) size 769x360
 222 RenderTable {TABLE} at (0,818) size 769x364
223223 RenderBlock {CAPTION} at (0,0) size 769x18
224224 RenderText {#text} at (325,0) size 118x18
225225 text run at (325,0) width 118: "Browser rendering"
226  RenderTableSection {TBODY} at (0,18) size 769x342
 226 RenderTableSection {TBODY} at (0,18) size 769x346
227227 RenderTableRow {TR} at (0,2) size 769x58
228228 RenderTableCell {TH} at (2,20) size 53x22 [bgcolor=#F8F8F8] [border: (1px solid #EEEEEE)] [r=0 c=0 rs=1 cs=1]
229229 RenderText {#text} at (2,2) size 49x18

@@layer at (0,0) size 785x1186
240240 RenderTableCell {TD} at (57,62) size 710x22 [border: (1px solid #EEEEEE)] [r=1 c=1 rs=1 cs=1]
241241 RenderText {#text} at (2,2) size 27x18
242242 text run at (2,2) width 27: "\x{174}yl"
243  RenderTableRow {TR} at (0,86) size 769x22
 243 RenderTableRow {TR} at (0,86) size 769x23
244244 RenderTableCell {TH} at (2,86) size 53x22 [bgcolor=#F8F8F8] [border: (1px solid #EEEEEE)] [r=2 c=0 rs=1 cs=1]
245245 RenderText {#text} at (21,2) size 11x18
246246 text run at (21,2) width 11: "el"
247  RenderTableCell {TD} at (57,86) size 710x22 [border: (1px solid #EEEEEE)] [r=2 c=1 rs=1 cs=1]
248  RenderText {#text} at (2,2) size 236x18
249  text run at (2,2) width 236: "\x{393}\x{3B5}\x{3C9}\x{3B3}\x{3C1}\x{3B1}\x{3C6}\x{3B9}\x{3BA}\x{3AC}\x{2010}\x{3A3}\x{3C5}\x{3C3}\x{3C7}\x{3B5}\x{3C4}\x{3B9}\x{3C3}\x{3BC}\x{3AD}\x{3BD}\x{3B5}\x{3C2} \x{389}\x{3C4}\x{3B1}"
250  RenderTableRow {TR} at (0,110) size 769x58
251  RenderTableCell {TH} at (2,128) size 53x22 [bgcolor=#F8F8F8] [border: (1px solid #EEEEEE)] [r=3 c=0 rs=1 cs=1]
 247 RenderTableCell {TD} at (57,86) size 710x23 [border: (1px solid #EEEEEE)] [r=2 c=1 rs=1 cs=1]
 248 RenderText {#text} at (2,3) size 236x18
 249 text run at (2,3) width 236: "\x{393}\x{3B5}\x{3C9}\x{3B3}\x{3C1}\x{3B1}\x{3C6}\x{3B9}\x{3BA}\x{3AC}\x{2010}\x{3A3}\x{3C5}\x{3C3}\x{3C7}\x{3B5}\x{3C4}\x{3B9}\x{3C3}\x{3BC}\x{3AD}\x{3BD}\x{3B5}\x{3C2} \x{389}\x{3C4}\x{3B1}"
 250 RenderTableRow {TR} at (0,111) size 769x60
 251 RenderTableCell {TH} at (2,130) size 53x22 [bgcolor=#F8F8F8] [border: (1px solid #EEEEEE)] [r=3 c=0 rs=1 cs=1]
252252 RenderText {#text} at (18,2) size 16x18
253253 text run at (18,2) width 16: "en"
254  RenderTableCell {TD} at (57,110) size 710x58 [border: (1px solid #EEEEEE)] [r=3 c=1 rs=1 cs=1]
255  RenderText {#text} at (2,2) size 479x18
256  text run at (2,2) width 479: "'Cept Nut'in Safari\x{2019}s \x{2018}Sure\x{2019} Nai\x{308}ve R\x{E9}sum\x{E9}\x{2014}H\x{E1}c\x{30C}ek Full\x{2010}Time One-To-One"
257  RenderBR {BR} at (481,16) size 0x0
258  RenderText {#text} at (2,20) size 345x18
259  text run at (2,20) width 345: "\"Newcastle\x{2011}Upon\x{2011}Tyne\" Washington\x{2011}On\x{2011}The\x{2011}Brazos"
260  RenderBR {BR} at (347,34) size 0x0
 254 RenderTableCell {TD} at (57,111) size 710x60 [border: (1px solid #EEEEEE)] [r=3 c=1 rs=1 cs=1]
 255 RenderText {#text} at (2,3) size 479x18
 256 text run at (2,3) width 479: "'Cept Nut'in Safari\x{2019}s \x{2018}Sure\x{2019} Nai\x{308}ve R\x{E9}sum\x{E9}\x{2014}H\x{E1}c\x{30C}ek Full\x{2010}Time One-To-One"
 257 RenderBR {BR} at (481,17) size 0x0
 258 RenderText {#text} at (2,22) size 345x18
 259 text run at (2,22) width 345: "\"Newcastle\x{2011}Upon\x{2011}Tyne\" Washington\x{2011}On\x{2011}The\x{2011}Brazos"
 260 RenderBR {BR} at (347,36) size 0x0
261261 RenderInline {SPAN} at (0,0) size 34x18
262  RenderText {#text} at (2,38) size 34x18
263  text run at (2,38) width 34: "Earth"
264  RenderText {#text} at (36,38) size 76x18
265  text run at (36,38) width 76: "quake Earth"
 262 RenderText {#text} at (2,40) size 34x18
 263 text run at (2,40) width 34: "Earth"
 264 RenderText {#text} at (36,40) size 76x18
 265 text run at (36,40) width 76: "quake Earth"
266266 RenderInline {SPAN} at (0,0) size 37x18
267  RenderText {#text} at (112,38) size 37x18
268  text run at (112,38) width 37: "worm"
269  RenderText {#text} at (149,38) size 4x18
270  text run at (149,38) width 4: " "
 267 RenderText {#text} at (112,40) size 37x18
 268 text run at (112,40) width 37: "worm"
 269 RenderText {#text} at (149,40) size 4x18
 270 text run at (149,40) width 4: " "
271271 RenderInline {SPAN} at (0,0) size 46x18
272  RenderText {#text} at (153,38) size 46x18
273  text run at (153,38) width 46: "Cheese"
 272 RenderText {#text} at (153,40) size 46x18
 273 text run at (153,40) width 46: "Cheese"
274274 RenderInline {SPAN} at (0,0) size 41x18
275  RenderText {#text} at (199,38) size 41x18
276  text run at (199,38) width 41: "burger"
277  RenderText {#text} at (240,38) size 126x18
278  text run at (240,38) width 126: " [House] ~Six -Big-"
279  RenderTableRow {TR} at (0,170) size 769x22
280  RenderTableCell {TH} at (2,170) size 53x22 [bgcolor=#F8F8F8] [border: (1px solid #EEEEEE)] [r=4 c=0 rs=1 cs=1]
 275 RenderText {#text} at (199,40) size 41x18
 276 text run at (199,40) width 41: "burger"
 277 RenderText {#text} at (240,40) size 126x18
 278 text run at (240,40) width 126: " [House] ~Six -Big-"
 279 RenderTableRow {TR} at (0,173) size 769x22
 280 RenderTableCell {TH} at (2,173) size 53x22 [bgcolor=#F8F8F8] [border: (1px solid #EEEEEE)] [r=4 c=0 rs=1 cs=1]
281281 RenderText {#text} at (20,2) size 13x18
282282 text run at (20,2) width 13: "es"
283  RenderTableCell {TD} at (57,170) size 710x22 [border: (1px solid #EEEEEE)] [r=4 c=1 rs=1 cs=1]
 283 RenderTableCell {TD} at (57,173) size 710x22 [border: (1px solid #EEEEEE)] [r=4 c=1 rs=1 cs=1]
284284 RenderText {#text} at (2,2) size 65x18
285285 text run at (2,2) width 65: "\x{A1}Jalape\x{F1}o!"
286  RenderTableRow {TR} at (0,194) size 769x26
287  RenderTableCell {TH} at (2,196) size 53x22 [bgcolor=#F8F8F8] [border: (1px solid #EEEEEE)] [r=5 c=0 rs=1 cs=1]
 286 RenderTableRow {TR} at (0,197) size 769x26
 287 RenderTableCell {TH} at (2,199) size 53x22 [bgcolor=#F8F8F8] [border: (1px solid #EEEEEE)] [r=5 c=0 rs=1 cs=1]
288288 RenderText {#text} at (20,2) size 12x18
289289 text run at (20,2) width 12: "fr"
290  RenderTableCell {TD} at (57,194) size 710x26 [border: (1px solid #EEEEEE)] [r=5 c=1 rs=1 cs=1]
 290 RenderTableCell {TD} at (57,197) size 710x26 [border: (1px solid #EEEEEE)] [r=5 c=1 rs=1 cs=1]
291291 RenderText {#text} at (2,6) size 229x18
292292 text run at (2,6) width 229: "Quelqu'un L\x{2019}amour T'appelles\x{2011}Tu 3"
293293 RenderInline {SUP} at (0,0) size 22x15
294294 RenderText {#text} at (231,2) size 22x15
295295 text run at (231,2) width 22: "eme"
296  RenderTableRow {TR} at (0,222) size 769x22
297  RenderTableCell {TH} at (2,222) size 53x22 [bgcolor=#F8F8F8] [border: (1px solid #EEEEEE)] [r=6 c=0 rs=1 cs=1]
 296 RenderTableRow {TR} at (0,225) size 769x23
 297 RenderTableCell {TH} at (2,225) size 53x22 [bgcolor=#F8F8F8] [border: (1px solid #EEEEEE)] [r=6 c=0 rs=1 cs=1]
298298 RenderText {#text} at (17,2) size 18x18
299299 text run at (17,2) width 18: "hu"
300  RenderTableCell {TD} at (57,222) size 710x22 [border: (1px solid #EEEEEE)] [r=6 c=1 rs=1 cs=1]
301  RenderText {#text} at (2,2) size 121x18
302  text run at (2,2) width 121: "11-Ei London\x{2011}Ban"
303  RenderTableRow {TR} at (0,246) size 769x22
304  RenderTableCell {TH} at (2,246) size 53x22 [bgcolor=#F8F8F8] [border: (1px solid #EEEEEE)] [r=7 c=0 rs=1 cs=1]
 300 RenderTableCell {TD} at (57,225) size 710x23 [border: (1px solid #EEEEEE)] [r=6 c=1 rs=1 cs=1]
 301 RenderText {#text} at (2,3) size 121x18
 302 text run at (2,3) width 121: "11-Ei London\x{2011}Ban"
 303 RenderTableRow {TR} at (0,250) size 769x22
 304 RenderTableCell {TH} at (2,250) size 53x22 [bgcolor=#F8F8F8] [border: (1px solid #EEEEEE)] [r=7 c=0 rs=1 cs=1]
305305 RenderText {#text} at (20,2) size 13x18
306306 text run at (20,2) width 13: "nl"
307  RenderTableCell {TD} at (57,246) size 710x22 [border: (1px solid #EEEEEE)] [r=7 c=1 rs=1 cs=1]
 307 RenderTableCell {TD} at (57,250) size 710x22 [border: (1px solid #EEEEEE)] [r=7 c=1 rs=1 cs=1]
308308 RenderText {#text} at (2,2) size 76x18
309309 text run at (2,2) width 76: "'S Ochtends"
310  RenderTableRow {TR} at (0,270) size 769x22
311  RenderTableCell {TH} at (2,270) size 53x22 [bgcolor=#F8F8F8] [border: (1px solid #EEEEEE)] [r=8 c=0 rs=1 cs=1]
 310 RenderTableRow {TR} at (0,274) size 769x22
 311 RenderTableCell {TH} at (2,274) size 53x22 [bgcolor=#F8F8F8] [border: (1px solid #EEEEEE)] [r=8 c=0 rs=1 cs=1]
312312 RenderText {#text} at (20,2) size 13x18
313313 text run at (20,2) width 13: "pl"
314  RenderTableCell {TD} at (57,270) size 710x22 [border: (1px solid #EEEEEE)] [r=8 c=1 rs=1 cs=1]
 314 RenderTableCell {TD} at (57,274) size 710x22 [border: (1px solid #EEEEEE)] [r=8 c=1 rs=1 cs=1]
315315 RenderText {#text} at (2,2) size 98x18
316316 text run at (2,2) width 98: "Wzi\x{119}\x{142}a Bie\x{17C}\x{105}ce"
317  RenderTableRow {TR} at (0,294) size 769x22
318  RenderTableCell {TH} at (2,294) size 53x22 [bgcolor=#F8F8F8] [border: (1px solid #EEEEEE)] [r=9 c=0 rs=1 cs=1]
 317 RenderTableRow {TR} at (0,298) size 769x22
 318 RenderTableCell {TH} at (2,298) size 53x22 [bgcolor=#F8F8F8] [border: (1px solid #EEEEEE)] [r=9 c=0 rs=1 cs=1]
319319 RenderText {#text} at (18,2) size 16x18
320320 text run at (18,2) width 16: "ru"
321  RenderTableCell {TD} at (57,294) size 710x22 [border: (1px solid #EEEEEE)] [r=9 c=1 rs=1 cs=1]
 321 RenderTableCell {TD} at (57,298) size 710x22 [border: (1px solid #EEEEEE)] [r=9 c=1 rs=1 cs=1]
322322 RenderText {#text} at (2,2) size 207x18
323323 text run at (2,2) width 207: "\x{41D}\x{44C}\x{44E}-\x{419}\x{43E}\x{440}\x{43A} 1990-\x{425} 14-Vii-1789"
324  RenderTableRow {TR} at (0,318) size 769x22
325  RenderTableCell {TH} at (2,318) size 53x22 [bgcolor=#F8F8F8] [border: (1px solid #EEEEEE)] [r=10 c=0 rs=1 cs=1]
 324 RenderTableRow {TR} at (0,322) size 769x22
 325 RenderTableCell {TH} at (2,322) size 53x22 [bgcolor=#F8F8F8] [border: (1px solid #EEEEEE)] [r=10 c=0 rs=1 cs=1]
326326 RenderText {#text} at (17,2) size 18x18
327327 text run at (17,2) width 18: "tlh"
328  RenderTableCell {TD} at (57,318) size 710x22 [border: (1px solid #EEEEEE)] [r=10 c=1 rs=1 cs=1]
 328 RenderTableCell {TD} at (57,322) size 710x22 [border: (1px solid #EEEEEE)] [r=10 c=1 rs=1 cs=1]
329329 RenderText {#text} at (2,2) size 206x18
330330 text run at (2,2) width 206: "TlhIngan Hol Wa''Uy' Loghqam"
73924

LayoutTests/platform/mac/fast/text/cg-fallback-bolding-expected.checksum

1 327b4c936795dc6db224f0413f89bc07
21\ No newline at end of file
 22e6de501554d3510921a3ea37dae1894
33\ No newline at end of file
73924

LayoutTests/platform/mac/fast/text/cg-fallback-bolding-expected.txt

@@layer at (0,0) size 800x600
1212 text run at (0,36) width 87: "support bold. "
1313 text run at (87,36) width 640: "This test is making sure we don't make incorrect assumptions based off the fact that we would have to"
1414 text run at (0,54) width 264: "synthesize bold for the first font in the list."
15  RenderBlock {P} at (0,200) size 784x128
16  RenderText {#text} at (0,0) size 84x128
17  text run at (0,0) width 84 RTL: "\x{5D0}"
 15 RenderBlock {P} at (0,200) size 784x151
 16 RenderText {#text} at (0,22) size 84x128
 17 text run at (0,22) width 84 RTL: "\x{5D0}"
73924

LayoutTests/platform/mac/fast/text/complex-text-opacity-expected.checksum

1 5e8153b8001692b849f30d7b68562271
21\ No newline at end of file
 2fef905f564a6471eb6b55ea584f41a67
33\ No newline at end of file
73924

LayoutTests/platform/mac/fast/text/complex-text-opacity-expected.txt

@@layer at (0,0) size 800x600
1212 RenderText {#text} at (451,0) size 9x18
1313 text run at (451,0) width 9: ")."
1414 RenderBlock {P} at (0,34) size 784x0
15  RenderBlock {DIV} at (0,34) size 784x29
 15 RenderBlock {DIV} at (0,34) size 784x40
1616 RenderInline {SPAN} at (0,0) size 43x29
1717 RenderText {#text} at (0,0) size 43x29
1818 text run at (0,0) width 43: "\x{916}\x{94B}\x{91C}\x{947}\x{902}"

@@layer at (0,0) size 800x600
3737 RenderText {#text} at (484,0) size 6x29
3838 text run at (484,0) width 6: " "
3939 RenderText {#text} at (0,0) size 0x0
40  RenderBlock {DIV} at (0,63) size 784x29
 40 RenderBlock {DIV} at (0,74) size 784x44
4141 RenderInline {SPAN} at (0,0) size 50x29
42  RenderText {#text} at (560,0) size 50x29
43  text run at (560,0) width 50 RTL: "\x{64A}\x{624}\x{644}\x{645}\x{646}\x{64A}"
44  RenderText {#text} at (554,0) size 6x29
45  text run at (554,0) width 6 RTL: " "
46  RenderText {#text} at (498,0) size 6x29
47  text run at (498,0) width 6 RTL: " "
48  RenderText {#text} at (442,0) size 6x29
49  text run at (442,0) width 6 RTL: " "
50  RenderText {#text} at (386,0) size 6x29
51  text run at (386,0) width 6 RTL: " "
52  RenderText {#text} at (330,0) size 6x29
53  text run at (330,0) width 6 RTL: " "
54  RenderText {#text} at (274,0) size 6x29
55  text run at (274,0) width 6 RTL: " "
56  RenderText {#text} at (218,0) size 6x29
57  text run at (218,0) width 6 RTL: " "
58  RenderText {#text} at (162,0) size 6x29
59  text run at (162,0) width 6 RTL: " "
60  RenderText {#text} at (106,0) size 6x29
61  text run at (106,0) width 6 RTL: " "
62  RenderText {#text} at (50,0) size 6x29
63  text run at (50,0) width 6 RTL: " "
 42 RenderText {#text} at (560,2) size 50x29
 43 text run at (560,2) width 50 RTL: "\x{64A}\x{624}\x{644}\x{645}\x{646}\x{64A}"
 44 RenderText {#text} at (554,2) size 6x29
 45 text run at (554,2) width 6 RTL: " "
 46 RenderText {#text} at (498,2) size 6x29
 47 text run at (498,2) width 6 RTL: " "
 48 RenderText {#text} at (442,2) size 6x29
 49 text run at (442,2) width 6 RTL: " "
 50 RenderText {#text} at (386,2) size 6x29
 51 text run at (386,2) width 6 RTL: " "
 52 RenderText {#text} at (330,2) size 6x29
 53 text run at (330,2) width 6 RTL: " "
 54 RenderText {#text} at (274,2) size 6x29
 55 text run at (274,2) width 6 RTL: " "
 56 RenderText {#text} at (218,2) size 6x29
 57 text run at (218,2) width 6 RTL: " "
 58 RenderText {#text} at (162,2) size 6x29
 59 text run at (162,2) width 6 RTL: " "
 60 RenderText {#text} at (106,2) size 6x29
 61 text run at (106,2) width 6 RTL: " "
 62 RenderText {#text} at (50,2) size 6x29
 63 text run at (50,2) width 6 RTL: " "
6464 RenderText {#text} at (0,0) size 0x0
6565layer at (8,42) size 43x29
6666 RenderInline {SPAN} at (0,0) size 43x29

@@layer at (8,42) size 43x29
102102 RenderInline {SPAN} at (0,0) size 43x29
103103 RenderText {#text} at (490,0) size 43x29
104104 text run at (490,0) width 43: "\x{916}\x{94B}\x{91C}\x{947}\x{902}"
105 layer at (8,71) size 50x29
 105layer at (8,82) size 50x29
106106 RenderInline {SPAN} at (0,0) size 50x29
107  RenderText {#text} at (504,0) size 50x29
108  text run at (504,0) width 50 RTL: "\x{64A}\x{624}\x{644}\x{645}\x{646}\x{64A}"
109 layer at (8,71) size 50x29
110  RenderInline {SPAN} at (0,0) size 50x29
111  RenderText {#text} at (448,0) size 50x29
112  text run at (448,0) width 50 RTL: "\x{64A}\x{624}\x{644}\x{645}\x{646}\x{64A}"
113 layer at (8,71) size 50x29
114  RenderInline {SPAN} at (0,0) size 50x29
115  RenderText {#text} at (392,0) size 50x29
116  text run at (392,0) width 50 RTL: "\x{64A}\x{624}\x{644}\x{645}\x{646}\x{64A}"
117 layer at (8,71) size 50x29
118  RenderInline {SPAN} at (0,0) size 50x29
119  RenderText {#text} at (336,0) size 50x29
120  text run at (336,0) width 50 RTL: "\x{64A}\x{624}\x{644}\x{645}\x{646}\x{64A}"
121 layer at (8,71) size 50x29
122  RenderInline {SPAN} at (0,0) size 50x29
123  RenderText {#text} at (280,0) size 50x29
124  text run at (280,0) width 50 RTL: "\x{64A}\x{624}\x{644}\x{645}\x{646}\x{64A}"
125 layer at (8,71) size 50x29
126  RenderInline {SPAN} at (0,0) size 50x29
127  RenderText {#text} at (224,0) size 50x29
128  text run at (224,0) width 50 RTL: "\x{64A}\x{624}\x{644}\x{645}\x{646}\x{64A}"
129 layer at (8,71) size 50x29
130  RenderInline {SPAN} at (0,0) size 50x29
131  RenderText {#text} at (168,0) size 50x29
132  text run at (168,0) width 50 RTL: "\x{64A}\x{624}\x{644}\x{645}\x{646}\x{64A}"
133 layer at (8,71) size 50x29
134  RenderInline {SPAN} at (0,0) size 50x29
135  RenderText {#text} at (112,0) size 50x29
136  text run at (112,0) width 50 RTL: "\x{64A}\x{624}\x{644}\x{645}\x{646}\x{64A}"
137 layer at (8,71) size 50x29
138  RenderInline {SPAN} at (0,0) size 50x29
139  RenderText {#text} at (56,0) size 50x29
140  text run at (56,0) width 50 RTL: "\x{64A}\x{624}\x{644}\x{645}\x{646}\x{64A}"
141 layer at (8,71) size 50x29
 107 RenderText {#text} at (504,2) size 50x29
 108 text run at (504,2) width 50 RTL: "\x{64A}\x{624}\x{644}\x{645}\x{646}\x{64A}"
 109layer at (8,82) size 50x29
 110 RenderInline {SPAN} at (0,0) size 50x29
 111 RenderText {#text} at (448,2) size 50x29
 112 text run at (448,2) width 50 RTL: "\x{64A}\x{624}\x{644}\x{645}\x{646}\x{64A}"
 113layer at (8,82) size 50x29
 114 RenderInline {SPAN} at (0,0) size 50x29
 115 RenderText {#text} at (392,2) size 50x29
 116 text run at (392,2) width 50 RTL: "\x{64A}\x{624}\x{644}\x{645}\x{646}\x{64A}"
 117layer at (8,82) size 50x29
 118 RenderInline {SPAN} at (0,0) size 50x29
 119 RenderText {#text} at (336,2) size 50x29
 120 text run at (336,2) width 50 RTL: "\x{64A}\x{624}\x{644}\x{645}\x{646}\x{64A}"
 121layer at (8,82) size 50x29
 122 RenderInline {SPAN} at (0,0) size 50x29
 123 RenderText {#text} at (280,2) size 50x29
 124 text run at (280,2) width 50 RTL: "\x{64A}\x{624}\x{644}\x{645}\x{646}\x{64A}"
 125layer at (8,82) size 50x29
 126 RenderInline {SPAN} at (0,0) size 50x29
 127 RenderText {#text} at (224,2) size 50x29
 128 text run at (224,2) width 50 RTL: "\x{64A}\x{624}\x{644}\x{645}\x{646}\x{64A}"
 129layer at (8,82) size 50x29
 130 RenderInline {SPAN} at (0,0) size 50x29
 131 RenderText {#text} at (168,2) size 50x29
 132 text run at (168,2) width 50 RTL: "\x{64A}\x{624}\x{644}\x{645}\x{646}\x{64A}"
 133layer at (8,82) size 50x29
 134 RenderInline {SPAN} at (0,0) size 50x29
 135 RenderText {#text} at (112,2) size 50x29
 136 text run at (112,2) width 50 RTL: "\x{64A}\x{624}\x{644}\x{645}\x{646}\x{64A}"
 137layer at (8,82) size 50x29
 138 RenderInline {SPAN} at (0,0) size 50x29
 139 RenderText {#text} at (56,2) size 50x29
 140 text run at (56,2) width 50 RTL: "\x{64A}\x{624}\x{644}\x{645}\x{646}\x{64A}"
 141layer at (8,82) size 50x29
142142 RenderInline {SPAN} at (0,0) size 50x29
143  RenderText {#text} at (0,0) size 50x29
144  text run at (0,0) width 50 RTL: "\x{64A}\x{624}\x{644}\x{645}\x{646}\x{64A}"
 143 RenderText {#text} at (0,2) size 50x29
 144 text run at (0,2) width 50 RTL: "\x{64A}\x{624}\x{644}\x{645}\x{646}\x{64A}"
73924

LayoutTests/platform/mac/fast/text/in-rendered-text-rtl-expected.checksum

1 3f4e349e9ff2838fffed871bfa650966
21\ No newline at end of file
 28963a9761bf9e426cbb5e262d6cbf017
33\ No newline at end of file
73924

LayoutTests/platform/mac/fast/text/in-rendered-text-rtl-expected.txt

@@layer at (0,0) size 800x600
1919 RenderText {#text} at (0,0) size 648x18
2020 text run at (0,0) width 648: "The rightmost two words in the Hebrew text should be selectable by dragging or double-clicking them."
2121 RenderBlock {HR} at (0,86) size 784x2 [border: (1px inset #000000)]
22  RenderBlock (anonymous) at (0,96) size 784x18
 22 RenderBlock (anonymous) at (0,96) size 784x19
2323 RenderInline {SPAN} at (0,0) size 146x18
24  RenderText {#text} at (0,0) size 146x18
25  text run at (0,0) width 62 RTL: "\x{5E9}\x{5EA}\x{5D4} \x{5DE}\x{5D9}\x{5E5}"
26  text run at (62,0) width 84 RTL: "\x{5D0}\x{5DB}\x{5DC}\x{5EA} \x{5E4}\x{5DC}\x{5E4}\x{5DC} "
 24 RenderText {#text} at (0,1) size 146x18
 25 text run at (0,1) width 62 RTL: "\x{5E9}\x{5EA}\x{5D4} \x{5DE}\x{5D9}\x{5E5}"
 26 text run at (62,1) width 84 RTL: "\x{5D0}\x{5DB}\x{5DC}\x{5EA} \x{5E4}\x{5DC}\x{5E4}\x{5DC} "
2727 RenderText {#text} at (0,0) size 0x0
2828caret: position 3 of child 0 {#text} of child 7 {SPAN} of body
73924

LayoutTests/platform/mac/fast/text/international/001-expected.checksum

1 d052071b13e1fdd7851779771315c6bd
21\ No newline at end of file
 2fc72f7be13f64ffb163a1eed95c15f38
33\ No newline at end of file
73924

LayoutTests/platform/mac/fast/text/international/001-expected.txt

@@layer at (0,0) size 800x600
44 RenderBlock {HTML} at (0,0) size 800x600
55 RenderBody {BODY} at (8,8) size 784x584
66 RenderInline {A} at (0,0) size 32x18 [color=#0000EE]
7  RenderText {#text} at (0,0) size 32x18
8  text run at (0,0) width 32: "\x{5EFA}\x{7BC9}"
9  RenderText {#text} at (32,0) size 8x18
10  text run at (32,0) width 8: ", "
 7 RenderText {#text} at (0,3) size 32x18
 8 text run at (0,3) width 32: "\x{5EFA}\x{7BC9}"
 9 RenderText {#text} at (32,3) size 8x18
 10 text run at (32,3) width 8: ", "
1111 RenderInline {A} at (0,0) size 48x18 [color=#0000EE]
12  RenderText {#text} at (40,0) size 48x18
13  text run at (40,0) width 48: "\x{7F8E}\x{8853}\x{9928}"
14  RenderText {#text} at (88,0) size 8x18
15  text run at (88,0) width 8: ", "
 12 RenderText {#text} at (40,3) size 48x18
 13 text run at (40,3) width 48: "\x{7F8E}\x{8853}\x{9928}"
 14 RenderText {#text} at (88,3) size 8x18
 15 text run at (88,3) width 8: ", "
1616 RenderInline {A} at (0,0) size 32x18 [color=#0000EE]
17  RenderText {#text} at (96,0) size 32x18
18  text run at (96,0) width 32: "\x{6B74}\x{53F2}"
19  RenderText {#text} at (128,0) size 8x18
20  text run at (128,0) width 8: ", "
 17 RenderText {#text} at (96,3) size 32x18
 18 text run at (96,3) width 32: "\x{6B74}\x{53F2}"
 19 RenderText {#text} at (128,3) size 8x18
 20 text run at (128,3) width 8: ", "
2121 RenderInline {A} at (0,0) size 32x18 [color=#0000EE]
22  RenderText {#text} at (136,0) size 32x18
23  text run at (136,0) width 32: "\x{6587}\x{5B66}"
24  RenderText {#text} at (168,0) size 23x18
25  text run at (168,0) width 4: " "
26  text run at (172,0) width 19: "...a"
 22 RenderText {#text} at (136,3) size 32x18
 23 text run at (136,3) width 32: "\x{6587}\x{5B66}"
 24 RenderText {#text} at (168,3) size 23x18
 25 text run at (168,3) width 4: " "
 26 text run at (172,3) width 19: "...a"
73924

LayoutTests/platform/mac/fast/text/international/002-expected.checksum

1 f244e22aad3cba886cd0967d905b7ff2
21\ No newline at end of file
 29dd534d0e0822a0bd7aa4c0d61d500f8
33\ No newline at end of file
73924

LayoutTests/platform/mac/fast/text/international/002-expected.txt

@@layer at (0,0) size 800x600
33layer at (0,0) size 800x600
44 RenderBlock {HTML} at (0,0) size 800x600
55 RenderBody {BODY} at (8,8) size 784x584
6  RenderTable {TABLE} at (0,0) size 280x108
7  RenderTableSection {TBODY} at (0,0) size 280x108
8  RenderTableRow {TR} at (0,0) size 280x108
9  RenderTableCell {TD} at (0,0) size 280x108 [r=0 c=0 rs=1 cs=1]
10  RenderText {#text} at (0,0) size 276x108
11  text run at (0,0) width 272: "\x{8AB0}\x{3067}\x{3082}\x{3042}\x{306A}\x{305F}\x{306E}\x{30C9}\x{30AD}\x{30E5}\x{30E1}\x{30F3}\x{30C8}\x{3092}\x{30AA}\x{30EA}\x{30B8}"
12  text run at (0,18) width 260: "\x{30CA}\x{30EB}\x{306E}\x{4F53}\x{88C1}\x{3067}\x{958B}\x{304F}\x{3053}\x{3068}\x{304C}\x{3067}\x{304D}\x{307E}\x{3059}\x{3002} "
13  text run at (260,18) width 16: "\x{3042}"
14  text run at (0,36) width 272: "\x{306A}\x{305F}\x{306E}\x{610F}\x{56F3}\x{3057}\x{305F}\x{3068}\x{304A}\x{308A}\x{306B}\x{60C5}\x{5831}\x{3092}\x{4F1D}\x{3048}\x{308B}"
15  text run at (0,54) width 272: "\x{3053}\x{3068}\x{304C}\x{3067}\x{304D}\x{307E}\x{3059}\x{3002}\x{3055}\x{3089}\x{306B}\x{3001}\x{30D6}\x{30E9}\x{30A6}\x{30B6}\x{304B}"
16  text run at (0,72) width 272: "\x{3089}\x{30B3}\x{30E1}\x{30F3}\x{30C8}\x{3084}\x{30DE}\x{30FC}\x{30AF}\x{30A2}\x{30C3}\x{30D7}\x{3092}\x{66F8}\x{304D}\x{8FBC}\x{3093}"
17  text run at (0,90) width 32: "\x{3060}\x{308A}"
 6 RenderTable {TABLE} at (0,0) size 280x144
 7 RenderTableSection {TBODY} at (0,0) size 280x144
 8 RenderTableRow {TR} at (0,0) size 280x144
 9 RenderTableCell {TD} at (0,0) size 280x144 [r=0 c=0 rs=1 cs=1]
 10 RenderText {#text} at (0,3) size 276x138
 11 text run at (0,3) width 272: "\x{8AB0}\x{3067}\x{3082}\x{3042}\x{306A}\x{305F}\x{306E}\x{30C9}\x{30AD}\x{30E5}\x{30E1}\x{30F3}\x{30C8}\x{3092}\x{30AA}\x{30EA}\x{30B8}"
 12 text run at (0,27) width 260: "\x{30CA}\x{30EB}\x{306E}\x{4F53}\x{88C1}\x{3067}\x{958B}\x{304F}\x{3053}\x{3068}\x{304C}\x{3067}\x{304D}\x{307E}\x{3059}\x{3002} "
 13 text run at (260,27) width 16: "\x{3042}"
 14 text run at (0,51) width 272: "\x{306A}\x{305F}\x{306E}\x{610F}\x{56F3}\x{3057}\x{305F}\x{3068}\x{304A}\x{308A}\x{306B}\x{60C5}\x{5831}\x{3092}\x{4F1D}\x{3048}\x{308B}"
 15 text run at (0,75) width 272: "\x{3053}\x{3068}\x{304C}\x{3067}\x{304D}\x{307E}\x{3059}\x{3002}\x{3055}\x{3089}\x{306B}\x{3001}\x{30D6}\x{30E9}\x{30A6}\x{30B6}\x{304B}"
 16 text run at (0,99) width 272: "\x{3089}\x{30B3}\x{30E1}\x{30F3}\x{30C8}\x{3084}\x{30DE}\x{30FC}\x{30AF}\x{30A2}\x{30C3}\x{30D7}\x{3092}\x{66F8}\x{304D}\x{8FBC}\x{3093}"
 17 text run at (0,123) width 32: "\x{3060}\x{308A}"
73924

LayoutTests/platform/mac/fast/text/international/003-expected.checksum

1 af71870c7516f7c718774c1a19f53f2b
21\ No newline at end of file
 2fc6d27962834f4df767f8e4b4e183891
33\ No newline at end of file
73924

LayoutTests/platform/mac/fast/text/international/003-expected.txt

@@layer at (0,0) size 800x600
33layer at (0,0) size 800x600
44 RenderBlock {HTML} at (0,0) size 800x600
55 RenderBody {BODY} at (8,8) size 784x584
6  RenderTable {TABLE} at (0,0) size 784x324 [border: (5px outset #808080)]
7  RenderTableSection {TBODY} at (5,5) size 774x314
8  RenderTableRow {TR} at (0,2) size 774x310
9  RenderTableCell {TD} at (2,155) size 716x4 [border: (1px inset #808080)] [r=0 c=0 rs=1 cs=1]
10  RenderTableCell {TD} at (720,2) size 52x310 [border: (1px inset #808080)] [r=0 c=1 rs=1 cs=1]
11  RenderInline {A} at (0,0) size 16x36 [color=#0000EE]
12  RenderText {#text} at (2,2) size 16x36
13  text run at (2,2) width 16: "\x{5CA1}"
14  text run at (2,20) width 16: "\x{5C71}"
15  RenderText {#text} at (18,20) size 16x18
16  text run at (18,20) width 16: "\x{FF5C}"
17  RenderInline {A} at (0,0) size 48x36 [color=#0000EE]
18  RenderText {#text} at (34,20) size 48x36
19  text run at (34,20) width 16: "\x{5E83}"
20  text run at (2,38) width 16: "\x{5CF6}"
21  RenderText {#text} at (18,38) size 16x18
22  text run at (18,38) width 16: "\x{FF5C}"
23  RenderInline {A} at (0,0) size 48x36 [color=#0000EE]
24  RenderText {#text} at (34,38) size 48x36
25  text run at (34,38) width 16: "\x{5C71}"
26  text run at (2,56) width 16: "\x{53E3}"
27  RenderText {#text} at (18,56) size 16x18
28  text run at (18,56) width 16: "\x{FF5C}"
29  RenderInline {A} at (0,0) size 48x36 [color=#0000EE]
30  RenderText {#text} at (34,56) size 48x36
31  text run at (34,56) width 16: "\x{5FB3}"
32  text run at (2,74) width 16: "\x{5CF6}"
33  RenderText {#text} at (18,74) size 16x18
34  text run at (18,74) width 16: "\x{FF5C}"
35  RenderInline {A} at (0,0) size 48x36 [color=#0000EE]
36  RenderText {#text} at (34,74) size 48x36
37  text run at (34,74) width 16: "\x{9999}"
38  text run at (2,92) width 16: "\x{5DDD}"
39  RenderText {#text} at (18,92) size 16x18
40  text run at (18,92) width 16: "\x{FF5C}"
41  RenderInline {A} at (0,0) size 48x36 [color=#0000EE]
42  RenderText {#text} at (34,92) size 48x36
43  text run at (34,92) width 16: "\x{611B}"
44  text run at (2,110) width 16: "\x{5A9B}"
45  RenderText {#text} at (18,110) size 16x18
46  text run at (18,110) width 16: "\x{FF5C}"
47  RenderInline {A} at (0,0) size 48x36 [color=#0000EE]
48  RenderText {#text} at (34,110) size 48x36
49  text run at (34,110) width 16: "\x{9AD8}"
50  text run at (2,128) width 16: "\x{77E5}"
51  RenderText {#text} at (18,128) size 16x18
52  text run at (18,128) width 16: "\x{FF5C}"
53  RenderInline {A} at (0,0) size 48x72 [color=#0000EE]
54  RenderText {#text} at (34,128) size 48x72
55  text run at (34,128) width 16: "\x{798F}"
56  text run at (2,146) width 48: "\x{5CA1}\x{30FB}\x{5317}"
57  text run at (2,164) width 16: "\x{4E5D}"
58  text run at (2,182) width 16: "\x{5DDE}"
59  RenderText {#text} at (18,182) size 16x18
60  text run at (18,182) width 16: "\x{FF5C}"
61  RenderInline {A} at (0,0) size 48x36 [color=#0000EE]
62  RenderText {#text} at (34,182) size 48x36
63  text run at (34,182) width 16: "\x{4F50}"
64  text run at (2,200) width 16: "\x{8CC0}"
65  RenderText {#text} at (18,200) size 16x18
66  text run at (18,200) width 16: "\x{FF5C}"
67  RenderInline {A} at (0,0) size 48x36 [color=#0000EE]
68  RenderText {#text} at (34,200) size 48x36
69  text run at (34,200) width 16: "\x{9577}"
70  text run at (2,218) width 16: "\x{5D0E}"
71  RenderText {#text} at (18,218) size 16x18
72  text run at (18,218) width 16: "\x{FF5C}"
73  RenderInline {A} at (0,0) size 48x36 [color=#0000EE]
74  RenderText {#text} at (34,218) size 48x36
75  text run at (34,218) width 16: "\x{718A}"
76  text run at (2,236) width 16: "\x{672C}"
77  RenderText {#text} at (18,236) size 16x18
78  text run at (18,236) width 16: "\x{FF5C}"
79  RenderInline {A} at (0,0) size 48x36 [color=#0000EE]
80  RenderText {#text} at (34,236) size 48x36
81  text run at (34,236) width 16: "\x{5927}"
82  text run at (2,254) width 16: "\x{5206}"
83  RenderText {#text} at (18,254) size 16x18
84  text run at (18,254) width 16: "\x{FF5C}"
85  RenderInline {A} at (0,0) size 48x36 [color=#0000EE]
86  RenderText {#text} at (34,254) size 48x36
87  text run at (34,254) width 16: "\x{5BAE}"
88  text run at (2,272) width 16: "\x{5D0E}"
89  RenderText {#text} at (18,272) size 16x18
90  text run at (18,272) width 16: "\x{FF5C}"
91  RenderInline {A} at (0,0) size 48x36 [color=#0000EE]
92  RenderText {#text} at (34,272) size 48x36
93  text run at (34,272) width 16: "\x{9E7F}"
94  text run at (2,290) width 32: "\x{5150}\x{5CF6}"
95  RenderText {#text} at (34,290) size 16x18
96  text run at (34,290) width 16: "\x{FF5C}"
 6 RenderTable {TABLE} at (0,0) size 784x426 [border: (5px outset #808080)]
 7 RenderTableSection {TBODY} at (5,5) size 774x416
 8 RenderTableRow {TR} at (0,2) size 774x412
 9 RenderTableCell {TD} at (2,206) size 716x4 [border: (1px inset #808080)] [r=0 c=0 rs=1 cs=1]
 10 RenderTableCell {TD} at (720,2) size 52x412 [border: (1px inset #808080)] [r=0 c=1 rs=1 cs=1]
 11 RenderInline {A} at (0,0) size 16x42 [color=#0000EE]
 12 RenderText {#text} at (2,5) size 16x42
 13 text run at (2,5) width 16: "\x{5CA1}"
 14 text run at (2,29) width 16: "\x{5C71}"
 15 RenderText {#text} at (18,29) size 16x18
 16 text run at (18,29) width 16: "\x{FF5C}"
 17 RenderInline {A} at (0,0) size 48x42 [color=#0000EE]
 18 RenderText {#text} at (34,29) size 48x42
 19 text run at (34,29) width 16: "\x{5E83}"
 20 text run at (2,53) width 16: "\x{5CF6}"
 21 RenderText {#text} at (18,53) size 16x18
 22 text run at (18,53) width 16: "\x{FF5C}"
 23 RenderInline {A} at (0,0) size 48x42 [color=#0000EE]
 24 RenderText {#text} at (34,53) size 48x42
 25 text run at (34,53) width 16: "\x{5C71}"
 26 text run at (2,77) width 16: "\x{53E3}"
 27 RenderText {#text} at (18,77) size 16x18
 28 text run at (18,77) width 16: "\x{FF5C}"
 29 RenderInline {A} at (0,0) size 48x42 [color=#0000EE]
 30 RenderText {#text} at (34,77) size 48x42
 31 text run at (34,77) width 16: "\x{5FB3}"
 32 text run at (2,101) width 16: "\x{5CF6}"
 33 RenderText {#text} at (18,101) size 16x18
 34 text run at (18,101) width 16: "\x{FF5C}"
 35 RenderInline {A} at (0,0) size 48x42 [color=#0000EE]
 36 RenderText {#text} at (34,101) size 48x42
 37 text run at (34,101) width 16: "\x{9999}"
 38 text run at (2,125) width 16: "\x{5DDD}"
 39 RenderText {#text} at (18,125) size 16x18
 40 text run at (18,125) width 16: "\x{FF5C}"
 41 RenderInline {A} at (0,0) size 48x42 [color=#0000EE]
 42 RenderText {#text} at (34,125) size 48x42
 43 text run at (34,125) width 16: "\x{611B}"
 44 text run at (2,149) width 16: "\x{5A9B}"
 45 RenderText {#text} at (18,149) size 16x18
 46 text run at (18,149) width 16: "\x{FF5C}"
 47 RenderInline {A} at (0,0) size 48x42 [color=#0000EE]
 48 RenderText {#text} at (34,149) size 48x42
 49 text run at (34,149) width 16: "\x{9AD8}"
 50 text run at (2,173) width 16: "\x{77E5}"
 51 RenderText {#text} at (18,173) size 16x18
 52 text run at (18,173) width 16: "\x{FF5C}"
 53 RenderInline {A} at (0,0) size 48x90 [color=#0000EE]
 54 RenderText {#text} at (34,173) size 48x90
 55 text run at (34,173) width 16: "\x{798F}"
 56 text run at (2,197) width 48: "\x{5CA1}\x{30FB}\x{5317}"
 57 text run at (2,221) width 16: "\x{4E5D}"
 58 text run at (2,245) width 16: "\x{5DDE}"
 59 RenderText {#text} at (18,245) size 16x18
 60 text run at (18,245) width 16: "\x{FF5C}"
 61 RenderInline {A} at (0,0) size 48x42 [color=#0000EE]
 62 RenderText {#text} at (34,245) size 48x42
 63 text run at (34,245) width 16: "\x{4F50}"
 64 text run at (2,269) width 16: "\x{8CC0}"
 65 RenderText {#text} at (18,269) size 16x18
 66 text run at (18,269) width 16: "\x{FF5C}"
 67 RenderInline {A} at (0,0) size 48x42 [color=#0000EE]
 68 RenderText {#text} at (34,269) size 48x42
 69 text run at (34,269) width 16: "\x{9577}"
 70 text run at (2,293) width 16: "\x{5D0E}"
 71 RenderText {#text} at (18,293) size 16x18
 72 text run at (18,293) width 16: "\x{FF5C}"
 73 RenderInline {A} at (0,0) size 48x42 [color=#0000EE]
 74 RenderText {#text} at (34,293) size 48x42
 75 text run at (34,293) width 16: "\x{718A}"
 76 text run at (2,317) width 16: "\x{672C}"
 77 RenderText {#text} at (18,317) size 16x18
 78 text run at (18,317) width 16: "\x{FF5C}"
 79 RenderInline {A} at (0,0) size 48x42 [color=#0000EE]
 80 RenderText {#text} at (34,317) size 48x42
 81 text run at (34,317) width 16: "\x{5927}"
 82 text run at (2,341) width 16: "\x{5206}"
 83 RenderText {#text} at (18,341) size 16x18
 84 text run at (18,341) width 16: "\x{FF5C}"
 85 RenderInline {A} at (0,0) size 48x42 [color=#0000EE]
 86 RenderText {#text} at (34,341) size 48x42
 87 text run at (34,341) width 16: "\x{5BAE}"
 88 text run at (2,365) width 16: "\x{5D0E}"
 89 RenderText {#text} at (18,365) size 16x18
 90 text run at (18,365) width 16: "\x{FF5C}"
 91 RenderInline {A} at (0,0) size 48x42 [color=#0000EE]
 92 RenderText {#text} at (34,365) size 48x42
 93 text run at (34,365) width 16: "\x{9E7F}"
 94 text run at (2,389) width 32: "\x{5150}\x{5CF6}"
 95 RenderText {#text} at (34,389) size 16x18
 96 text run at (34,389) width 16: "\x{FF5C}"
73924

LayoutTests/platform/mac/fast/text/international/bidi-AN-after-L-expected.checksum

1 99fdf1dfea71cf8c79ef96e24fc5444c
21\ No newline at end of file
 20701eed6167603af1b631f0e9e851865
33\ No newline at end of file
73924

LayoutTests/platform/mac/fast/text/international/bidi-AN-after-L-expected.txt

11layer at (0,0) size 800x600
22 RenderView at (0,0) size 800x600
3 layer at (0,0) size 800x110
4  RenderBlock {HTML} at (0,0) size 800x110
5  RenderBody {BODY} at (8,8) size 784x86
 3layer at (0,0) size 800x130
 4 RenderBlock {HTML} at (0,0) size 800x130
 5 RenderBody {BODY} at (8,8) size 784x106
66 RenderBlock (anonymous) at (0,0) size 784x18
77 RenderText {#text} at (0,0) size 279x18
88 text run at (0,0) width 279: "The following two lines should be the same:"
9  RenderBlock {P} at (0,34) size 784x18
10  RenderText {#text} at (0,0) size 73x18
11  text run at (0,0) width 73 LTR override: "abc\x{5D2}\x{5D1}\x{5D0}\x{661}\x{662}\x{663}"
12  RenderBlock {P} at (0,68) size 784x18
13  RenderText {#text} at (0,0) size 73x18
14  text run at (0,0) width 22: "abc"
15  text run at (22,0) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
16  text run at (49,0) width 24: "\x{661}\x{662}\x{663}"
 9 RenderBlock {P} at (0,34) size 784x28
 10 RenderText {#text} at (0,2) size 73x18
 11 text run at (0,2) width 73 LTR override: "abc\x{5D2}\x{5D1}\x{5D0}\x{661}\x{662}\x{663}"
 12 RenderBlock {P} at (0,78) size 784x28
 13 RenderText {#text} at (0,2) size 73x18
 14 text run at (0,2) width 22: "abc"
 15 text run at (22,2) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
 16 text run at (49,2) width 24: "\x{661}\x{662}\x{663}"
73924

LayoutTests/platform/mac/fast/text/international/bidi-AN-after-empty-run-expected.checksum

1 46ccfd97451a516ea4f0f2db4daa2f15
21\ No newline at end of file
 2e70ff5e4f4cbbd682be465179d0b0642
33\ No newline at end of file
73924

LayoutTests/platform/mac/fast/text/international/bidi-AN-after-empty-run-expected.txt

@@layer at (0,0) size 800x600
1717 RenderBlock {P} at (0,34) size 784x18
1818 RenderText {#text} at (0,0) size 320x18
1919 text run at (0,0) width 320: "The boxes below should be identical to each other."
20  RenderBlock {DIV} at (0,68) size 90x46 [border: (1px solid #0000FF)]
21  RenderText {#text} at (5,5) size 62x36
22  text run at (5,5) width 58 RTL: "\x{627}\x{644}\x{645}\x{627}\x{626}\x{629} \x{645}\x{644}\x{64A}\x{627}\x{631}"
23  text run at (63,5) width 4: " "
24  text run at (5,23) width 20 RTL: " \x{645}\x{646}"
25  text run at (25,23) width 40: "12345"
26  RenderBlock {DIV} at (0,114) size 90x46 [border: (1px solid #0000FF)]
27  RenderText {#text} at (5,5) size 60x36
28  text run at (5,5) width 58 RTL: "\x{627}\x{644}\x{645}\x{627}\x{626}\x{629} \x{645}\x{644}\x{64A}\x{627}\x{631}"
29  text run at (5,23) width 20 RTL: " \x{645}\x{646}"
30  text run at (25,23) width 40: "12345"
 20 RenderBlock {DIV} at (0,68) size 90x66 [border: (1px solid #0000FF)]
 21 RenderText {#text} at (5,7) size 62x46
 22 text run at (5,7) width 58 RTL: "\x{627}\x{644}\x{645}\x{627}\x{626}\x{629} \x{645}\x{644}\x{64A}\x{627}\x{631}"
 23 text run at (63,7) width 4: " "
 24 text run at (5,35) width 20 RTL: " \x{645}\x{646}"
 25 text run at (25,35) width 40: "12345"
 26 RenderBlock {DIV} at (0,134) size 90x66 [border: (1px solid #0000FF)]
 27 RenderText {#text} at (5,7) size 60x46
 28 text run at (5,7) width 58 RTL: "\x{627}\x{644}\x{645}\x{627}\x{626}\x{629} \x{645}\x{644}\x{64A}\x{627}\x{631}"
 29 text run at (5,35) width 20 RTL: " \x{645}\x{646}"
 30 text run at (25,35) width 40: "12345"
73924

LayoutTests/platform/mac/fast/text/international/bidi-CS-after-AN-expected.checksum

1 4028e657681575e673336f6e849a9191
21\ No newline at end of file
 267e0b90a966463b6d2a45e94985eaf09
33\ No newline at end of file
73924

LayoutTests/platform/mac/fast/text/international/bidi-CS-after-AN-expected.txt

11layer at (0,0) size 800x600
22 RenderView at (0,0) size 800x600
3 layer at (0,0) size 800x84
4  RenderBlock {HTML} at (0,0) size 800x84
5  RenderBody {BODY} at (8,16) size 784x52
 3layer at (0,0) size 800x94
 4 RenderBlock {HTML} at (0,0) size 800x94
 5 RenderBody {BODY} at (8,16) size 784x62
66 RenderBlock {P} at (0,0) size 784x18
77 RenderText {#text} at (0,0) size 471x18
88 text run at (0,0) width 471: "The following should look like: Arabic characters 123.4 Arabic characters."
9  RenderBlock {P} at (0,34) size 784x18
10  RenderText {#text} at (0,0) size 77x18
11  text run at (0,0) width 19 RTL: " \x{644}\x{645}\x{646}"
12  text run at (19,0) width 36: "123.4"
13  text run at (55,0) width 22 RTL: "\x{627}\x{628}\x{62C} "
 9 RenderBlock {P} at (0,34) size 784x28
 10 RenderText {#text} at (0,2) size 77x18
 11 text run at (0,2) width 19 RTL: " \x{644}\x{645}\x{646}"
 12 text run at (19,2) width 36: "123.4"
 13 text run at (55,2) width 22 RTL: "\x{627}\x{628}\x{62C} "
73924

LayoutTests/platform/mac/fast/text/international/bidi-L2-run-reordering-expected.checksum

1 16a9c05ac7b746abfb0b2d68c1103612
21\ No newline at end of file
 2cab480b0b8b76ea8c8ce896424964f4a
33\ No newline at end of file
73924

LayoutTests/platform/mac/fast/text/international/bidi-L2-run-reordering-expected.txt

11layer at (0,0) size 800x600
22 RenderView at (0,0) size 800x600
3 layer at (0,0) size 800x102
4  RenderBlock {HTML} at (0,0) size 800x102
5  RenderBody {BODY} at (8,16) size 784x70
 3layer at (0,0) size 800x103
 4 RenderBlock {HTML} at (0,0) size 800x103
 5 RenderBody {BODY} at (8,16) size 784x71
66 RenderBlock {P} at (0,0) size 784x36
77 RenderText {#text} at (0,0) size 778x36
88 text run at (0,0) width 778: "The three boxes should be the same. The order in each box should be: Roman letters, Hebrew letters, digits, Hebrew letters,"
99 text run at (0,18) width 91: "Roman letters."
10  RenderBlock {P} at (0,52) size 784x18
 10 RenderBlock {P} at (0,52) size 784x19
1111 RenderInline {SPAN} at (0,0) size 136x20 [border: (1px solid #008000)]
12  RenderText {#text} at (1,0) size 134x18
13  text run at (1,0) width 26: "abc "
14  text run at (27,0) width 29 RTL: " \x{5D3}\x{5D4}\x{5D5}"
15  text run at (56,0) width 24: "123"
16  text run at (80,0) width 31 RTL: "\x{5D0}\x{5D1}\x{5D2} "
17  text run at (111,0) width 24: " def"
18  RenderText {#text} at (136,0) size 4x18
19  text run at (136,0) width 4: " "
 12 RenderText {#text} at (1,1) size 134x18
 13 text run at (1,1) width 26: "abc "
 14 text run at (27,1) width 29 RTL: " \x{5D3}\x{5D4}\x{5D5}"
 15 text run at (56,1) width 24: "123"
 16 text run at (80,1) width 31 RTL: "\x{5D0}\x{5D1}\x{5D2} "
 17 text run at (111,1) width 24: " def"
 18 RenderText {#text} at (136,1) size 4x18
 19 text run at (136,1) width 4: " "
2020 RenderInline {SPAN} at (0,0) size 136x20 [border: (1px solid #008000)]
21  RenderText {#text} at (141,0) size 134x18
22  text run at (141,0) width 26: "abc "
23  text run at (167,0) width 29 RTL: " \x{5D3}\x{5D4}\x{5D5}"
24  text run at (196,0) width 24: "123"
25  text run at (220,0) width 31 RTL: "\x{5D0}\x{5D1}\x{5D2} "
26  text run at (251,0) width 24: " def"
27  RenderText {#text} at (276,0) size 4x18
28  text run at (276,0) width 4: " "
 21 RenderText {#text} at (141,1) size 134x18
 22 text run at (141,1) width 26: "abc "
 23 text run at (167,1) width 29 RTL: " \x{5D3}\x{5D4}\x{5D5}"
 24 text run at (196,1) width 24: "123"
 25 text run at (220,1) width 31 RTL: "\x{5D0}\x{5D1}\x{5D2} "
 26 text run at (251,1) width 24: " def"
 27 RenderText {#text} at (276,1) size 4x18
 28 text run at (276,1) width 4: " "
2929 RenderInline {SPAN} at (0,0) size 136x20 [border: (1px solid #008000)]
30  RenderText {#text} at (281,0) size 134x18
31  text run at (281,0) width 26: "abc "
32  text run at (307,0) width 29 RTL: " \x{5D3}\x{5D4}\x{5D5}"
33  text run at (336,0) width 24: "123"
34  text run at (360,0) width 31 RTL: "\x{5D0}\x{5D1}\x{5D2} "
35  text run at (391,0) width 24: " def"
 30 RenderText {#text} at (281,1) size 134x18
 31 text run at (281,1) width 26: "abc "
 32 text run at (307,1) width 29 RTL: " \x{5D3}\x{5D4}\x{5D5}"
 33 text run at (336,1) width 24: "123"
 34 text run at (360,1) width 31 RTL: "\x{5D0}\x{5D1}\x{5D2} "
 35 text run at (391,1) width 24: " def"
3636 RenderText {#text} at (0,0) size 0x0
73924

LayoutTests/platform/mac/fast/text/international/bidi-LDB-2-CSS-expected.checksum

1 97fbd401800a42c7f7de72e534efb5ce
21\ No newline at end of file
 2c1b10d16d290a69dfbeb4fc6eebf30b0
33\ No newline at end of file
73924

LayoutTests/platform/mac/fast/text/international/bidi-LDB-2-CSS-expected.txt

11layer at (0,0) size 800x600
22 RenderView at (0,0) size 800x600
3 layer at (0,0) size 800x535
4  RenderBlock {HTML} at (0,0) size 800x535
5  RenderBody {BODY} at (8,21) size 784x498
 3layer at (0,0) size 800x546
 4 RenderBlock {HTML} at (0,0) size 800x546
 5 RenderBody {BODY} at (8,21) size 784x509
66 RenderBlock {H1} at (0,0) size 784x37
77 RenderText {#text} at (0,0) size 424x37
88 text run at (0,0) width 424: "Bidirectional Text Test 2 - CSS"

@@layer at (0,0) size 800x535
4040 RenderBlock {P} at (0,126) size 784x18
4141 RenderText {#text} at (0,0) size 281x18
4242 text run at (0,0) width 281: "In each box, all the lines should be the same."
43  RenderBlock (anonymous) at (0,160) size 784x226
44  RenderBlock {DIV} at (3,3) size 102x170 [border: (1px solid #008000)]
 43 RenderBlock (anonymous) at (0,160) size 784x237
 44 RenderBlock {DIV} at (3,7) size 102x170 [border: (1px solid #008000)]
4545 RenderBlock {P} at (4,4) size 94x18
4646 RenderText {#text} at (0,0) size 94x18
4747 text run at (0,0) width 94: "ABCDEFGHI"

@@layer at (0,0) size 800x535
9999 text run at (34,0) width 31 LTR override: "DEF"
100100 RenderText {#text} at (0,0) size 34x18
101101 text run at (0,0) width 34 RTL override: "CBA"
102  RenderText {#text} at (108,77) size 4x18
103  text run at (108,77) width 4: " "
104  RenderBlock {DIV} at (115,48) size 36x80 [border: (1px solid #008000)]
105  RenderTable {TABLE} at (4,4) size 28x18
106  RenderTableSection {TBODY} at (0,0) size 28x18
107  RenderTableRow {TR} at (0,0) size 28x18
108  RenderTableCell {TD} at (0,0) size 7x18 [r=0 c=0 rs=1 cs=1]
109  RenderText {#text} at (0,0) size 7x18
110  text run at (0,0) width 7 RTL: "\x{5D2}"
111  RenderTableCell {TD} at (7,0) size 10x18 [r=0 c=1 rs=1 cs=1]
112  RenderText {#text} at (0,0) size 10x18
113  text run at (0,0) width 10 RTL: "\x{5D1}"
114  RenderTableCell {TD} at (17,0) size 11x18 [r=0 c=2 rs=1 cs=1]
115  RenderText {#text} at (0,0) size 11x18
116  text run at (0,0) width 11 RTL: "\x{5D0}"
117  RenderBlock {P} at (4,22) size 28x18
118  RenderText {#text} at (0,0) size 27x18
119  text run at (0,0) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
120  RenderBlock {P} at (4,40) size 28x18
121  RenderText {#text} at (0,0) size 27x18
122  text run at (0,0) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
123  RenderBlock {P} at (4,58) size 28x18
124  RenderText {#text} at (0,0) size 27x18
125  text run at (0,0) width 27 LTR override: "\x{5D2}\x{5D1}\x{5D0}"
126  RenderText {#text} at (154,77) size 4x18
127  text run at (154,77) width 4: " "
128  RenderBlock {DIV} at (161,57) size 105x62 [border: (1px solid #008000)]
129  RenderTable {TABLE} at (4,4) size 97x18
130  RenderTableSection {TBODY} at (0,0) size 97x18
131  RenderTableRow {TR} at (0,0) size 97x18
132  RenderTableCell {TD} at (0,0) size 7x18 [r=0 c=0 rs=1 cs=1]
133  RenderText {#text} at (0,0) size 7x18
134  text run at (0,0) width 7 RTL: "\x{5D2}"
135  RenderTableCell {TD} at (7,0) size 10x18 [r=0 c=1 rs=1 cs=1]
136  RenderText {#text} at (0,0) size 10x18
137  text run at (0,0) width 10 RTL: "\x{5D1}"
138  RenderTableCell {TD} at (17,0) size 11x18 [r=0 c=2 rs=1 cs=1]
139  RenderText {#text} at (0,0) size 11x18
140  text run at (0,0) width 11 RTL: "\x{5D0}"
 102 RenderText {#text} at (108,81) size 4x18
 103 text run at (108,81) width 4: " "
 104 RenderBlock {DIV} at (115,50) size 36x84 [border: (1px solid #008000)]
 105 RenderTable {TABLE} at (4,4) size 28x19
 106 RenderTableSection {TBODY} at (0,0) size 28x19
 107 RenderTableRow {TR} at (0,0) size 28x19
 108 RenderTableCell {TD} at (0,0) size 7x19 [r=0 c=0 rs=1 cs=1]
 109 RenderText {#text} at (0,1) size 7x18
 110 text run at (0,1) width 7 RTL: "\x{5D2}"
 111 RenderTableCell {TD} at (7,0) size 10x19 [r=0 c=1 rs=1 cs=1]
 112 RenderText {#text} at (0,1) size 10x18
 113 text run at (0,1) width 10 RTL: "\x{5D1}"
 114 RenderTableCell {TD} at (17,0) size 11x19 [r=0 c=2 rs=1 cs=1]
 115 RenderText {#text} at (0,1) size 11x18
 116 text run at (0,1) width 11 RTL: "\x{5D0}"
 117 RenderBlock {P} at (4,23) size 28x19
 118 RenderText {#text} at (0,1) size 27x18
 119 text run at (0,1) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
 120 RenderBlock {P} at (4,42) size 28x19
 121 RenderText {#text} at (0,1) size 27x18
 122 text run at (0,1) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
 123 RenderBlock {P} at (4,61) size 28x19
 124 RenderText {#text} at (0,1) size 27x18
 125 text run at (0,1) width 27 LTR override: "\x{5D2}\x{5D1}\x{5D0}"
 126 RenderText {#text} at (154,81) size 4x18
 127 text run at (154,81) width 4: " "
 128 RenderBlock {DIV} at (161,60) size 105x65 [border: (1px solid #008000)]
 129 RenderTable {TABLE} at (4,4) size 97x19
 130 RenderTableSection {TBODY} at (0,0) size 97x19
 131 RenderTableRow {TR} at (0,0) size 97x19
 132 RenderTableCell {TD} at (0,0) size 7x19 [r=0 c=0 rs=1 cs=1]
 133 RenderText {#text} at (0,1) size 7x18
 134 text run at (0,1) width 7 RTL: "\x{5D2}"
 135 RenderTableCell {TD} at (7,0) size 10x19 [r=0 c=1 rs=1 cs=1]
 136 RenderText {#text} at (0,1) size 10x18
 137 text run at (0,1) width 10 RTL: "\x{5D1}"
 138 RenderTableCell {TD} at (17,0) size 11x19 [r=0 c=2 rs=1 cs=1]
 139 RenderText {#text} at (0,1) size 11x18
 140 text run at (0,1) width 11 RTL: "\x{5D0}"
141141 RenderTableCell {TD} at (28,0) size 4x18 [r=0 c=3 rs=1 cs=1]
142142 RenderText {#text} at (0,0) size 4x18
143143 text run at (0,0) width 4: " "

@@layer at (0,0) size 800x535
153153 RenderTableCell {TD} at (66,0) size 4x18 [r=0 c=7 rs=1 cs=1]
154154 RenderText {#text} at (0,0) size 4x18
155155 text run at (0,0) width 4: " "
156  RenderTableCell {TD} at (70,0) size 6x18 [r=0 c=8 rs=1 cs=1]
157  RenderText {#text} at (0,0) size 6x18
158  text run at (0,0) width 6 RTL: "\x{5D5}"
159  RenderTableCell {TD} at (76,0) size 12x18 [r=0 c=9 rs=1 cs=1]
160  RenderText {#text} at (0,0) size 12x18
161  text run at (0,0) width 12 RTL: "\x{5D4}"
162  RenderTableCell {TD} at (88,0) size 9x18 [r=0 c=10 rs=1 cs=1]
163  RenderText {#text} at (0,0) size 9x18
164  text run at (0,0) width 9 RTL: "\x{5D3}"
165  RenderBlock {P} at (4,22) size 97x18
166  RenderText {#text} at (0,0) size 94x18
167  text run at (0,0) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
168  text run at (27,0) width 42: " ABC "
169  text run at (69,0) width 25 RTL: "\x{5D3}\x{5D4}\x{5D5}"
170  RenderBlock {P} at (4,40) size 97x18
171  RenderText {#text} at (0,0) size 94x18
172  text run at (0,0) width 31 RTL: " \x{5D0}\x{5D1}\x{5D2}"
173  text run at (31,0) width 34: "ABC"
174  text run at (65,0) width 29 RTL: "\x{5D3}\x{5D4}\x{5D5} "
175  RenderText {#text} at (269,77) size 4x18
176  text run at (269,77) width 4: " "
177  RenderBlock {DIV} at (276,3) size 173x170 [border: (1px solid #008000)]
178  RenderTable {TABLE} at (4,4) size 165x18
179  RenderTableSection {TBODY} at (0,0) size 165x18
180  RenderTableRow {TR} at (0,0) size 165x18
181  RenderTableCell {TD} at (0,0) size 7x18 [r=0 c=0 rs=1 cs=1]
182  RenderText {#text} at (0,0) size 7x18
183  text run at (0,0) width 7 RTL: "\x{5D2}"
184  RenderTableCell {TD} at (7,0) size 10x18 [r=0 c=1 rs=1 cs=1]
185  RenderText {#text} at (0,0) size 10x18
186  text run at (0,0) width 10 RTL: "\x{5D1}"
187  RenderTableCell {TD} at (17,0) size 11x18 [r=0 c=2 rs=1 cs=1]
188  RenderText {#text} at (0,0) size 11x18
189  text run at (0,0) width 11 RTL: "\x{5D0}"
 156 RenderTableCell {TD} at (70,0) size 6x19 [r=0 c=8 rs=1 cs=1]
 157 RenderText {#text} at (0,1) size 6x18
 158 text run at (0,1) width 6 RTL: "\x{5D5}"
 159 RenderTableCell {TD} at (76,0) size 12x19 [r=0 c=9 rs=1 cs=1]
 160 RenderText {#text} at (0,1) size 12x18
 161 text run at (0,1) width 12 RTL: "\x{5D4}"
 162 RenderTableCell {TD} at (88,0) size 9x19 [r=0 c=10 rs=1 cs=1]
 163 RenderText {#text} at (0,1) size 9x18
 164 text run at (0,1) width 9 RTL: "\x{5D3}"
 165 RenderBlock {P} at (4,23) size 97x19
 166 RenderText {#text} at (0,1) size 94x18
 167 text run at (0,1) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
 168 text run at (27,1) width 42: " ABC "
 169 text run at (69,1) width 25 RTL: "\x{5D3}\x{5D4}\x{5D5}"
 170 RenderBlock {P} at (4,42) size 97x19
 171 RenderText {#text} at (0,1) size 94x18
 172 text run at (0,1) width 31 RTL: " \x{5D0}\x{5D1}\x{5D2}"
 173 text run at (31,1) width 34: "ABC"
 174 text run at (65,1) width 29 RTL: "\x{5D3}\x{5D4}\x{5D5} "
 175 RenderText {#text} at (269,81) size 4x18
 176 text run at (269,81) width 4: " "
 177 RenderBlock {DIV} at (276,3) size 173x179 [border: (1px solid #008000)]
 178 RenderTable {TABLE} at (4,4) size 165x19
 179 RenderTableSection {TBODY} at (0,0) size 165x19
 180 RenderTableRow {TR} at (0,0) size 165x19
 181 RenderTableCell {TD} at (0,0) size 7x19 [r=0 c=0 rs=1 cs=1]
 182 RenderText {#text} at (0,1) size 7x18
 183 text run at (0,1) width 7 RTL: "\x{5D2}"
 184 RenderTableCell {TD} at (7,0) size 10x19 [r=0 c=1 rs=1 cs=1]
 185 RenderText {#text} at (0,1) size 10x18
 186 text run at (0,1) width 10 RTL: "\x{5D1}"
 187 RenderTableCell {TD} at (17,0) size 11x19 [r=0 c=2 rs=1 cs=1]
 188 RenderText {#text} at (0,1) size 11x18
 189 text run at (0,1) width 11 RTL: "\x{5D0}"
190190 RenderTableCell {TD} at (28,0) size 4x18 [r=0 c=3 rs=1 cs=1]
191191 RenderText {#text} at (0,0) size 4x18
192192 text run at (0,0) width 4: " "

@@layer at (0,0) size 800x535
202202 RenderTableCell {TD} at (66,0) size 4x18 [r=0 c=7 rs=1 cs=1]
203203 RenderText {#text} at (0,0) size 4x18
204204 text run at (0,0) width 4: " "
205  RenderTableCell {TD} at (70,0) size 6x18 [r=0 c=8 rs=1 cs=1]
206  RenderText {#text} at (0,0) size 6x18
207  text run at (0,0) width 6 RTL: "\x{5D5}"
208  RenderTableCell {TD} at (76,0) size 12x18 [r=0 c=9 rs=1 cs=1]
209  RenderText {#text} at (0,0) size 12x18
210  text run at (0,0) width 12 RTL: "\x{5D4}"
211  RenderTableCell {TD} at (88,0) size 9x18 [r=0 c=10 rs=1 cs=1]
212  RenderText {#text} at (0,0) size 9x18
213  text run at (0,0) width 9 RTL: "\x{5D3}"
 205 RenderTableCell {TD} at (70,0) size 6x19 [r=0 c=8 rs=1 cs=1]
 206 RenderText {#text} at (0,1) size 6x18
 207 text run at (0,1) width 6 RTL: "\x{5D5}"
 208 RenderTableCell {TD} at (76,0) size 12x19 [r=0 c=9 rs=1 cs=1]
 209 RenderText {#text} at (0,1) size 12x18
 210 text run at (0,1) width 12 RTL: "\x{5D4}"
 211 RenderTableCell {TD} at (88,0) size 9x19 [r=0 c=10 rs=1 cs=1]
 212 RenderText {#text} at (0,1) size 9x18
 213 text run at (0,1) width 9 RTL: "\x{5D3}"
214214 RenderTableCell {TD} at (97,0) size 4x18 [r=0 c=11 rs=1 cs=1]
215215 RenderText {#text} at (0,0) size 4x18
216216 text run at (0,0) width 4: " "

@@layer at (0,0) size 800x535
226226 RenderTableCell {TD} at (132,0) size 4x18 [r=0 c=15 rs=1 cs=1]
227227 RenderText {#text} at (0,0) size 4x18
228228 text run at (0,0) width 4: " "
229  RenderTableCell {TD} at (136,0) size 11x18 [r=0 c=16 rs=1 cs=1]
230  RenderText {#text} at (0,0) size 11x18
231  text run at (0,0) width 11 RTL: "\x{5D8}"
232  RenderTableCell {TD} at (147,0) size 12x18 [r=0 c=17 rs=1 cs=1]
233  RenderText {#text} at (0,0) size 12x18
234  text run at (0,0) width 12 RTL: "\x{5D7}"
235  RenderTableCell {TD} at (159,0) size 6x18 [r=0 c=18 rs=1 cs=1]
236  RenderText {#text} at (0,0) size 6x18
237  text run at (0,0) width 6 RTL: "\x{5D6}"
238  RenderBlock {P} at (4,22) size 165x18
239  RenderText {#text} at (0,0) size 161x18
240  text run at (0,0) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
241  text run at (27,0) width 42: " ABC "
242  text run at (69,0) width 25 RTL: "\x{5D3}\x{5D4}\x{5D5}"
243  text run at (94,0) width 39: " DEF "
244  text run at (133,0) width 28 RTL: "\x{5D6}\x{5D7}\x{5D8}"
245  RenderBlock {P} at (4,40) size 165x18
246  RenderText {#text} at (0,0) size 31x18
247  text run at (0,0) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
248  text run at (27,0) width 4: " "
 229 RenderTableCell {TD} at (136,0) size 11x19 [r=0 c=16 rs=1 cs=1]
 230 RenderText {#text} at (0,1) size 11x18
 231 text run at (0,1) width 11 RTL: "\x{5D8}"
 232 RenderTableCell {TD} at (147,0) size 12x19 [r=0 c=17 rs=1 cs=1]
 233 RenderText {#text} at (0,1) size 12x18
 234 text run at (0,1) width 12 RTL: "\x{5D7}"
 235 RenderTableCell {TD} at (159,0) size 6x19 [r=0 c=18 rs=1 cs=1]
 236 RenderText {#text} at (0,1) size 6x18
 237 text run at (0,1) width 6 RTL: "\x{5D6}"
 238 RenderBlock {P} at (4,23) size 165x19
 239 RenderText {#text} at (0,1) size 161x18
 240 text run at (0,1) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
 241 text run at (27,1) width 42: " ABC "
 242 text run at (69,1) width 25 RTL: "\x{5D3}\x{5D4}\x{5D5}"
 243 text run at (94,1) width 39: " DEF "
 244 text run at (133,1) width 28 RTL: "\x{5D6}\x{5D7}\x{5D8}"
 245 RenderBlock {P} at (4,42) size 165x19
 246 RenderText {#text} at (0,1) size 31x18
 247 text run at (0,1) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
 248 text run at (27,1) width 4: " "
249249 RenderInline {SPAN} at (0,0) size 63x18
250  RenderText {#text} at (31,0) size 63x18
251  text run at (31,0) width 38: "ABC "
252  text run at (69,0) width 25 RTL: "\x{5D3}\x{5D4}\x{5D5}"
253  RenderText {#text} at (94,0) size 67x18
254  text run at (94,0) width 39: " DEF "
255  text run at (133,0) width 28 RTL: "\x{5D6}\x{5D7}\x{5D8}"
256  RenderBlock {P} at (4,58) size 165x18
257  RenderText {#text} at (0,0) size 31x18
258  text run at (0,0) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
259  text run at (27,0) width 4: " "
 250 RenderText {#text} at (31,1) size 63x18
 251 text run at (31,1) width 38: "ABC "
 252 text run at (69,1) width 25 RTL: "\x{5D3}\x{5D4}\x{5D5}"
 253 RenderText {#text} at (94,1) size 67x18
 254 text run at (94,1) width 39: " DEF "
 255 text run at (133,1) width 28 RTL: "\x{5D6}\x{5D7}\x{5D8}"
 256 RenderBlock {P} at (4,61) size 165x19
 257 RenderText {#text} at (0,1) size 31x18
 258 text run at (0,1) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
 259 text run at (27,1) width 4: " "
260260 RenderInline {SPAN} at (0,0) size 98x18
261  RenderText {#text} at (31,0) size 98x18
262  text run at (31,0) width 38: "ABC "
263  text run at (69,0) width 25 RTL: "\x{5D3}\x{5D4}\x{5D5}"
264  text run at (94,0) width 35: " DEF"
265  RenderText {#text} at (129,0) size 32x18
266  text run at (129,0) width 4: " "
267  text run at (133,0) width 28 RTL: "\x{5D6}\x{5D7}\x{5D8}"
268  RenderBlock {P} at (4,76) size 165x18
269  RenderText {#text} at (129,0) size 32x18
270  text run at (129,0) width 32 RTL: "\x{5D6}\x{5D7}\x{5D8} "
 261 RenderText {#text} at (31,1) size 98x18
 262 text run at (31,1) width 38: "ABC "
 263 text run at (69,1) width 25 RTL: "\x{5D3}\x{5D4}\x{5D5}"
 264 text run at (94,1) width 35: " DEF"
 265 RenderText {#text} at (129,1) size 32x18
 266 text run at (129,1) width 4: " "
 267 text run at (133,1) width 28 RTL: "\x{5D6}\x{5D7}\x{5D8}"
 268 RenderBlock {P} at (4,80) size 165x19
 269 RenderText {#text} at (129,1) size 32x18
 270 text run at (129,1) width 32 RTL: "\x{5D6}\x{5D7}\x{5D8} "
271271 RenderInline {SPAN} at (0,0) size 98x18
272  RenderText {#text} at (31,0) size 98x18
273  text run at (31,0) width 34: "ABC"
274  text run at (65,0) width 33 RTL: " \x{5D3}\x{5D4}\x{5D5} "
275  text run at (98,0) width 31: "DEF"
276  RenderText {#text} at (0,0) size 31x18
277  text run at (0,0) width 31 RTL: " \x{5D0}\x{5D1}\x{5D2}"
278  RenderBlock {P} at (4,94) size 165x18
279  RenderText {#text} at (65,0) size 29x18
280  text run at (65,0) width 29 RTL: "\x{5D3}\x{5D4}\x{5D5} "
 272 RenderText {#text} at (31,1) size 98x18
 273 text run at (31,1) width 34: "ABC"
 274 text run at (65,1) width 33 RTL: " \x{5D3}\x{5D4}\x{5D5} "
 275 text run at (98,1) width 31: "DEF"
 276 RenderText {#text} at (0,1) size 31x18
 277 text run at (0,1) width 31 RTL: " \x{5D0}\x{5D1}\x{5D2}"
 278 RenderBlock {P} at (4,99) size 165x19
 279 RenderText {#text} at (65,1) size 29x18
 280 text run at (65,1) width 29 RTL: "\x{5D3}\x{5D4}\x{5D5} "
281281 RenderInline {SPAN} at (0,0) size 65x18
282  RenderText {#text} at (0,0) size 65x18
283  text run at (0,0) width 31 RTL: " \x{5D0}\x{5D1}\x{5D2}"
284  text run at (31,0) width 34: "ABC"
285  RenderText {#text} at (94,0) size 67x18
286  text run at (94,0) width 39: " DEF "
287  text run at (133,0) width 28 RTL: "\x{5D6}\x{5D7}\x{5D8}"
288  RenderBlock {P} at (4,112) size 165x18
289  RenderText {#text} at (65,0) size 29x18
290  text run at (65,0) width 29 RTL: "\x{5D3}\x{5D4}\x{5D5} "
 282 RenderText {#text} at (0,1) size 65x18
 283 text run at (0,1) width 31 RTL: " \x{5D0}\x{5D1}\x{5D2}"
 284 text run at (31,1) width 34: "ABC"
 285 RenderText {#text} at (94,1) size 67x18
 286 text run at (94,1) width 39: " DEF "
 287 text run at (133,1) width 28 RTL: "\x{5D6}\x{5D7}\x{5D8}"
 288 RenderBlock {P} at (4,118) size 165x19
 289 RenderText {#text} at (65,1) size 29x18
 290 text run at (65,1) width 29 RTL: "\x{5D3}\x{5D4}\x{5D5} "
291291 RenderInline {SPAN} at (0,0) size 65x18
292  RenderText {#text} at (0,0) size 65x18
293  text run at (0,0) width 65 RTL override: "CBA \x{5D0}\x{5D1}\x{5D2}"
294  RenderText {#text} at (94,0) size 67x18
295  text run at (94,0) width 39: " DEF "
296  text run at (133,0) width 28 RTL: "\x{5D6}\x{5D7}\x{5D8}"
297  RenderBlock {P} at (4,130) size 165x18
298  RenderText {#text} at (0,0) size 31x18
299  text run at (0,0) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
300  text run at (27,0) width 4: " "
 292 RenderText {#text} at (0,1) size 65x18
 293 text run at (0,1) width 65 RTL override: "CBA \x{5D0}\x{5D1}\x{5D2}"
 294 RenderText {#text} at (94,1) size 67x18
 295 text run at (94,1) width 39: " DEF "
 296 text run at (133,1) width 28 RTL: "\x{5D6}\x{5D7}\x{5D8}"
 297 RenderBlock {P} at (4,137) size 165x19
 298 RenderText {#text} at (0,1) size 31x18
 299 text run at (0,1) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
 300 text run at (27,1) width 4: " "
301301 RenderInline {SPAN} at (0,0) size 63x18
302  RenderText {#text} at (31,0) size 63x18
303  text run at (31,0) width 63 LTR override: "ABC \x{5D5}\x{5D4}\x{5D3}"
304  RenderText {#text} at (94,0) size 67x18
305  text run at (94,0) width 39: " DEF "
306  text run at (133,0) width 28 RTL: "\x{5D6}\x{5D7}\x{5D8}"
307  RenderBlock {P} at (4,148) size 165x18
308  RenderText {#text} at (129,0) size 32x18
309  text run at (129,0) width 32 RTL: "\x{5D6}\x{5D7}\x{5D8} "
 302 RenderText {#text} at (31,1) size 63x18
 303 text run at (31,1) width 63 LTR override: "ABC \x{5D5}\x{5D4}\x{5D3}"
 304 RenderText {#text} at (94,1) size 67x18
 305 text run at (94,1) width 39: " DEF "
 306 text run at (133,1) width 28 RTL: "\x{5D6}\x{5D7}\x{5D8}"
 307 RenderBlock {P} at (4,156) size 165x19
 308 RenderText {#text} at (129,1) size 32x18
 309 text run at (129,1) width 32 RTL: "\x{5D6}\x{5D7}\x{5D8} "
310310 RenderInline {SPAN} at (0,0) size 63x18
311  RenderText {#text} at (31,0) size 63x18
312  text run at (31,0) width 63 LTR override: "ABC \x{5D5}\x{5D4}\x{5D3}"
313  RenderText {#text} at (0,0) size 129x18
314  text run at (0,0) width 31 RTL: " \x{5D0}\x{5D1}\x{5D2}"
315  text run at (94,0) width 35: " DEF"
316  RenderText {#text} at (452,77) size 4x18
317  text run at (452,77) width 4: " "
318  RenderBlock {DIV} at (459,66) size 206x44 [border: (1px solid #008000)]
319  RenderTable {TABLE} at (4,4) size 198x18
320  RenderTableSection {TBODY} at (0,0) size 198x18
321  RenderTableRow {TR} at (0,0) size 198x18
322  RenderTableCell {TD} at (0,0) size 7x18 [r=0 c=0 rs=1 cs=1]
323  RenderText {#text} at (0,0) size 7x18
324  text run at (0,0) width 7 RTL: "\x{5D2}"
325  RenderTableCell {TD} at (7,0) size 10x18 [r=0 c=1 rs=1 cs=1]
326  RenderText {#text} at (0,0) size 10x18
327  text run at (0,0) width 10 RTL: "\x{5D1}"
328  RenderTableCell {TD} at (17,0) size 11x18 [r=0 c=2 rs=1 cs=1]
329  RenderText {#text} at (0,0) size 11x18
330  text run at (0,0) width 11 RTL: "\x{5D0}"
 311 RenderText {#text} at (31,1) size 63x18
 312 text run at (31,1) width 63 LTR override: "ABC \x{5D5}\x{5D4}\x{5D3}"
 313 RenderText {#text} at (0,1) size 129x18
 314 text run at (0,1) width 31 RTL: " \x{5D0}\x{5D1}\x{5D2}"
 315 text run at (94,1) width 35: " DEF"
 316 RenderText {#text} at (452,81) size 4x18
 317 text run at (452,81) width 4: " "
 318 RenderBlock {DIV} at (459,69) size 206x46 [border: (1px solid #008000)]
 319 RenderTable {TABLE} at (4,4) size 198x19
 320 RenderTableSection {TBODY} at (0,0) size 198x19
 321 RenderTableRow {TR} at (0,0) size 198x19
 322 RenderTableCell {TD} at (0,0) size 7x19 [r=0 c=0 rs=1 cs=1]
 323 RenderText {#text} at (0,1) size 7x18
 324 text run at (0,1) width 7 RTL: "\x{5D2}"
 325 RenderTableCell {TD} at (7,0) size 10x19 [r=0 c=1 rs=1 cs=1]
 326 RenderText {#text} at (0,1) size 10x18
 327 text run at (0,1) width 10 RTL: "\x{5D1}"
 328 RenderTableCell {TD} at (17,0) size 11x19 [r=0 c=2 rs=1 cs=1]
 329 RenderText {#text} at (0,1) size 11x18
 330 text run at (0,1) width 11 RTL: "\x{5D0}"
331331 RenderTableCell {TD} at (28,0) size 4x18 [r=0 c=3 rs=1 cs=1]
332332 RenderText {#text} at (0,0) size 4x18
333333 text run at (0,0) width 4: " "

@@layer at (0,0) size 800x535
343343 RenderTableCell {TD} at (66,0) size 4x18 [r=0 c=7 rs=1 cs=1]
344344 RenderText {#text} at (0,0) size 4x18
345345 text run at (0,0) width 4: " "
346  RenderTableCell {TD} at (70,0) size 6x18 [r=0 c=8 rs=1 cs=1]
347  RenderText {#text} at (0,0) size 6x18
348  text run at (0,0) width 6 RTL: "\x{5D5}"
349  RenderTableCell {TD} at (76,0) size 12x18 [r=0 c=9 rs=1 cs=1]
350  RenderText {#text} at (0,0) size 12x18
351  text run at (0,0) width 12 RTL: "\x{5D4}"
352  RenderTableCell {TD} at (88,0) size 9x18 [r=0 c=10 rs=1 cs=1]
353  RenderText {#text} at (0,0) size 9x18
354  text run at (0,0) width 9 RTL: "\x{5D3}"
 346 RenderTableCell {TD} at (70,0) size 6x19 [r=0 c=8 rs=1 cs=1]
 347 RenderText {#text} at (0,1) size 6x18
 348 text run at (0,1) width 6 RTL: "\x{5D5}"
 349 RenderTableCell {TD} at (76,0) size 12x19 [r=0 c=9 rs=1 cs=1]
 350 RenderText {#text} at (0,1) size 12x18
 351 text run at (0,1) width 12 RTL: "\x{5D4}"
 352 RenderTableCell {TD} at (88,0) size 9x19 [r=0 c=10 rs=1 cs=1]
 353 RenderText {#text} at (0,1) size 9x18
 354 text run at (0,1) width 9 RTL: "\x{5D3}"
355355 RenderTableCell {TD} at (97,0) size 4x18 [r=0 c=11 rs=1 cs=1]
356356 RenderText {#text} at (0,0) size 4x18
357357 text run at (0,0) width 4: " "

@@layer at (0,0) size 800x535
379379 RenderTableCell {TD} at (165,0) size 4x18 [r=0 c=19 rs=1 cs=1]
380380 RenderText {#text} at (0,0) size 4x18
381381 text run at (0,0) width 4: " "
382  RenderTableCell {TD} at (169,0) size 11x18 [r=0 c=20 rs=1 cs=1]
383  RenderText {#text} at (0,0) size 11x18
384  text run at (0,0) width 11 RTL: "\x{5D8}"
385  RenderTableCell {TD} at (180,0) size 12x18 [r=0 c=21 rs=1 cs=1]
386  RenderText {#text} at (0,0) size 12x18
387  text run at (0,0) width 12 RTL: "\x{5D7}"
388  RenderTableCell {TD} at (192,0) size 6x18 [r=0 c=22 rs=1 cs=1]
389  RenderText {#text} at (0,0) size 6x18
390  text run at (0,0) width 6 RTL: "\x{5D6}"
391  RenderBlock {P} at (4,22) size 198x18
392  RenderText {#text} at (0,0) size 194x18
393  text run at (0,0) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
394  text run at (27,0) width 42: " ABC "
395  text run at (69,0) width 25 RTL: "\x{5D3}\x{5D4}\x{5D5}"
396  text run at (94,0) width 72: " DEF GHI "
397  text run at (166,0) width 28 RTL: "\x{5D6}\x{5D7}\x{5D8}"
398  RenderText {#text} at (668,77) size 4x18
399  text run at (668,77) width 4: " "
 382 RenderTableCell {TD} at (169,0) size 11x19 [r=0 c=20 rs=1 cs=1]
 383 RenderText {#text} at (0,1) size 11x18
 384 text run at (0,1) width 11 RTL: "\x{5D8}"
 385 RenderTableCell {TD} at (180,0) size 12x19 [r=0 c=21 rs=1 cs=1]
 386 RenderText {#text} at (0,1) size 12x18
 387 text run at (0,1) width 12 RTL: "\x{5D7}"
 388 RenderTableCell {TD} at (192,0) size 6x19 [r=0 c=22 rs=1 cs=1]
 389 RenderText {#text} at (0,1) size 6x18
 390 text run at (0,1) width 6 RTL: "\x{5D6}"
 391 RenderBlock {P} at (4,23) size 198x19
 392 RenderText {#text} at (0,1) size 194x18
 393 text run at (0,1) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
 394 text run at (27,1) width 42: " ABC "
 395 text run at (69,1) width 25 RTL: "\x{5D3}\x{5D4}\x{5D5}"
 396 text run at (94,1) width 72: " DEF GHI "
 397 text run at (166,1) width 28 RTL: "\x{5D6}\x{5D7}\x{5D8}"
 398 RenderText {#text} at (668,81) size 4x18
 399 text run at (668,81) width 4: " "
400400 RenderBR {BR} at (0,0) size 0x0
401  RenderBlock {DIV} at (3,179) size 206x44 [border: (1px solid #008000)]
402  RenderTable {TABLE} at (4,4) size 198x18
403  RenderTableSection {TBODY} at (0,0) size 198x18
404  RenderTableRow {TR} at (0,0) size 198x18
 401 RenderBlock {DIV} at (3,188) size 206x46 [border: (1px solid #008000)]
 402 RenderTable {TABLE} at (4,4) size 198x19
 403 RenderTableSection {TBODY} at (0,0) size 198x19
 404 RenderTableRow {TR} at (0,0) size 198x19
405405 RenderTableCell {TD} at (0,0) size 9x18 [r=0 c=0 rs=1 cs=1]
406406 RenderText {#text} at (0,0) size 9x18
407407 text run at (0,0) width 9: "F"

@@layer at (0,0) size 800x535
414414 RenderTableCell {TD} at (31,0) size 4x18 [r=0 c=3 rs=1 cs=1]
415415 RenderText {#text} at (0,0) size 4x18
416416 text run at (0,0) width 4: " "
417  RenderTableCell {TD} at (35,0) size 6x18 [r=0 c=4 rs=1 cs=1]
418  RenderText {#text} at (0,0) size 6x18
419  text run at (0,0) width 6 RTL: "\x{5D5}"
420  RenderTableCell {TD} at (41,0) size 12x18 [r=0 c=5 rs=1 cs=1]
421  RenderText {#text} at (0,0) size 12x18
422  text run at (0,0) width 12 RTL: "\x{5D4}"
423  RenderTableCell {TD} at (53,0) size 9x18 [r=0 c=6 rs=1 cs=1]
424  RenderText {#text} at (0,0) size 9x18
425  text run at (0,0) width 9 RTL: "\x{5D3}"
 417 RenderTableCell {TD} at (35,0) size 6x19 [r=0 c=4 rs=1 cs=1]
 418 RenderText {#text} at (0,1) size 6x18
 419 text run at (0,1) width 6 RTL: "\x{5D5}"
 420 RenderTableCell {TD} at (41,0) size 12x19 [r=0 c=5 rs=1 cs=1]
 421 RenderText {#text} at (0,1) size 12x18
 422 text run at (0,1) width 12 RTL: "\x{5D4}"
 423 RenderTableCell {TD} at (53,0) size 9x19 [r=0 c=6 rs=1 cs=1]
 424 RenderText {#text} at (0,1) size 9x18
 425 text run at (0,1) width 9 RTL: "\x{5D3}"
426426 RenderTableCell {TD} at (62,0) size 4x18 [r=0 c=7 rs=1 cs=1]
427427 RenderText {#text} at (0,0) size 4x18
428428 text run at (0,0) width 4: " "

@@layer at (0,0) size 800x535
438438 RenderTableCell {TD} at (100,0) size 4x18 [r=0 c=11 rs=1 cs=1]
439439 RenderText {#text} at (0,0) size 4x18
440440 text run at (0,0) width 4: " "
441  RenderTableCell {TD} at (104,0) size 7x18 [r=0 c=12 rs=1 cs=1]
442  RenderText {#text} at (0,0) size 7x18
443  text run at (0,0) width 7 RTL: "\x{5D2}"
444  RenderTableCell {TD} at (111,0) size 10x18 [r=0 c=13 rs=1 cs=1]
445  RenderText {#text} at (0,0) size 10x18
446  text run at (0,0) width 10 RTL: "\x{5D1}"
447  RenderTableCell {TD} at (121,0) size 11x18 [r=0 c=14 rs=1 cs=1]
448  RenderText {#text} at (0,0) size 11x18
449  text run at (0,0) width 11 RTL: "\x{5D0}"
 441 RenderTableCell {TD} at (104,0) size 7x19 [r=0 c=12 rs=1 cs=1]
 442 RenderText {#text} at (0,1) size 7x18
 443 text run at (0,1) width 7 RTL: "\x{5D2}"
 444 RenderTableCell {TD} at (111,0) size 10x19 [r=0 c=13 rs=1 cs=1]
 445 RenderText {#text} at (0,1) size 10x18
 446 text run at (0,1) width 10 RTL: "\x{5D1}"
 447 RenderTableCell {TD} at (121,0) size 11x19 [r=0 c=14 rs=1 cs=1]
 448 RenderText {#text} at (0,1) size 11x18
 449 text run at (0,1) width 11 RTL: "\x{5D0}"
450450 RenderTableCell {TD} at (132,0) size 4x18 [r=0 c=15 rs=1 cs=1]
451451 RenderText {#text} at (0,0) size 4x18
452452 text run at (0,0) width 4: " "

@@layer at (0,0) size 800x535
462462 RenderTableCell {TD} at (165,0) size 4x18 [r=0 c=19 rs=1 cs=1]
463463 RenderText {#text} at (0,0) size 4x18
464464 text run at (0,0) width 4: " "
465  RenderTableCell {TD} at (169,0) size 11x18 [r=0 c=20 rs=1 cs=1]
466  RenderText {#text} at (0,0) size 11x18
467  text run at (0,0) width 11 RTL: "\x{5D8}"
468  RenderTableCell {TD} at (180,0) size 12x18 [r=0 c=21 rs=1 cs=1]
469  RenderText {#text} at (0,0) size 12x18
470  text run at (0,0) width 12 RTL: "\x{5D7}"
471  RenderTableCell {TD} at (192,0) size 6x18 [r=0 c=22 rs=1 cs=1]
472  RenderText {#text} at (0,0) size 6x18
473  text run at (0,0) width 6 RTL: "\x{5D6}"
474  RenderBlock {P} at (4,22) size 198x18
475  RenderText {#text} at (98,0) size 31x18
476  text run at (98,0) width 31 RTL: "\x{5D0}\x{5D1}\x{5D2} "
 465 RenderTableCell {TD} at (169,0) size 11x19 [r=0 c=20 rs=1 cs=1]
 466 RenderText {#text} at (0,1) size 11x18
 467 text run at (0,1) width 11 RTL: "\x{5D8}"
 468 RenderTableCell {TD} at (180,0) size 12x19 [r=0 c=21 rs=1 cs=1]
 469 RenderText {#text} at (0,1) size 12x18
 470 text run at (0,1) width 12 RTL: "\x{5D7}"
 471 RenderTableCell {TD} at (192,0) size 6x19 [r=0 c=22 rs=1 cs=1]
 472 RenderText {#text} at (0,1) size 6x18
 473 text run at (0,1) width 6 RTL: "\x{5D6}"
 474 RenderBlock {P} at (4,23) size 198x19
 475 RenderText {#text} at (98,1) size 31x18
 476 text run at (98,1) width 31 RTL: "\x{5D0}\x{5D1}\x{5D2} "
477477 RenderInline {SPAN} at (0,0) size 98x18
478  RenderText {#text} at (0,0) size 98x18
479  text run at (0,0) width 98 RTL override: "ABC \x{5D3}\x{5D4}\x{5D5} DEF"
480  RenderText {#text} at (129,0) size 65x18
481  text run at (129,0) width 37: " GHI "
482  text run at (166,0) width 28 RTL: "\x{5D6}\x{5D7}\x{5D8}"
483  RenderText {#text} at (212,190) size 4x18
484  text run at (212,190) width 4: " "
485  RenderBlock {DIV} at (219,179) size 206x44 [border: (1px solid #008000)]
486  RenderTable {TABLE} at (4,4) size 198x18
487  RenderTableSection {TBODY} at (0,0) size 198x18
488  RenderTableRow {TR} at (0,0) size 198x18
489  RenderTableCell {TD} at (0,0) size 7x18 [r=0 c=0 rs=1 cs=1]
490  RenderText {#text} at (0,0) size 7x18
491  text run at (0,0) width 7 RTL: "\x{5D2}"
492  RenderTableCell {TD} at (7,0) size 10x18 [r=0 c=1 rs=1 cs=1]
493  RenderText {#text} at (0,0) size 10x18
494  text run at (0,0) width 10 RTL: "\x{5D1}"
495  RenderTableCell {TD} at (17,0) size 11x18 [r=0 c=2 rs=1 cs=1]
496  RenderText {#text} at (0,0) size 11x18
497  text run at (0,0) width 11 RTL: "\x{5D0}"
 478 RenderText {#text} at (0,1) size 98x18
 479 text run at (0,1) width 98 RTL override: "ABC \x{5D3}\x{5D4}\x{5D5} DEF"
 480 RenderText {#text} at (129,1) size 65x18
 481 text run at (129,1) width 37: " GHI "
 482 text run at (166,1) width 28 RTL: "\x{5D6}\x{5D7}\x{5D8}"
 483 RenderText {#text} at (212,200) size 4x18
 484 text run at (212,200) width 4: " "
 485 RenderBlock {DIV} at (219,188) size 206x46 [border: (1px solid #008000)]
 486 RenderTable {TABLE} at (4,4) size 198x19
 487 RenderTableSection {TBODY} at (0,0) size 198x19
 488 RenderTableRow {TR} at (0,0) size 198x19
 489 RenderTableCell {TD} at (0,0) size 7x19 [r=0 c=0 rs=1 cs=1]
 490 RenderText {#text} at (0,1) size 7x18
 491 text run at (0,1) width 7 RTL: "\x{5D2}"
 492 RenderTableCell {TD} at (7,0) size 10x19 [r=0 c=1 rs=1 cs=1]
 493 RenderText {#text} at (0,1) size 10x18
 494 text run at (0,1) width 10 RTL: "\x{5D1}"
 495 RenderTableCell {TD} at (17,0) size 11x19 [r=0 c=2 rs=1 cs=1]
 496 RenderText {#text} at (0,1) size 11x18
 497 text run at (0,1) width 11 RTL: "\x{5D0}"
498498 RenderTableCell {TD} at (28,0) size 4x18 [r=0 c=3 rs=1 cs=1]
499499 RenderText {#text} at (0,0) size 4x18
500500 text run at (0,0) width 4: " "

@@layer at (0,0) size 800x535
522522 RenderTableCell {TD} at (101,0) size 4x18 [r=0 c=11 rs=1 cs=1]
523523 RenderText {#text} at (0,0) size 4x18
524524 text run at (0,0) width 4: " "
525  RenderTableCell {TD} at (105,0) size 6x18 [r=0 c=12 rs=1 cs=1]
526  RenderText {#text} at (0,0) size 6x18
527  text run at (0,0) width 6 RTL: "\x{5D5}"
528  RenderTableCell {TD} at (111,0) size 12x18 [r=0 c=13 rs=1 cs=1]
529  RenderText {#text} at (0,0) size 12x18
530  text run at (0,0) width 12 RTL: "\x{5D4}"
531  RenderTableCell {TD} at (123,0) size 9x18 [r=0 c=14 rs=1 cs=1]
532  RenderText {#text} at (0,0) size 9x18
533  text run at (0,0) width 9 RTL: "\x{5D3}"
 525 RenderTableCell {TD} at (105,0) size 6x19 [r=0 c=12 rs=1 cs=1]
 526 RenderText {#text} at (0,1) size 6x18
 527 text run at (0,1) width 6 RTL: "\x{5D5}"
 528 RenderTableCell {TD} at (111,0) size 12x19 [r=0 c=13 rs=1 cs=1]
 529 RenderText {#text} at (0,1) size 12x18
 530 text run at (0,1) width 12 RTL: "\x{5D4}"
 531 RenderTableCell {TD} at (123,0) size 9x19 [r=0 c=14 rs=1 cs=1]
 532 RenderText {#text} at (0,1) size 9x18
 533 text run at (0,1) width 9 RTL: "\x{5D3}"
534534 RenderTableCell {TD} at (132,0) size 4x18 [r=0 c=15 rs=1 cs=1]
535535 RenderText {#text} at (0,0) size 4x18
536536 text run at (0,0) width 4: " "

@@layer at (0,0) size 800x535
546546 RenderTableCell {TD} at (165,0) size 4x18 [r=0 c=19 rs=1 cs=1]
547547 RenderText {#text} at (0,0) size 4x18
548548 text run at (0,0) width 4: " "
549  RenderTableCell {TD} at (169,0) size 11x18 [r=0 c=20 rs=1 cs=1]
550  RenderText {#text} at (0,0) size 11x18
551  text run at (0,0) width 11 RTL: "\x{5D8}"
552  RenderTableCell {TD} at (180,0) size 12x18 [r=0 c=21 rs=1 cs=1]
553  RenderText {#text} at (0,0) size 12x18
554  text run at (0,0) width 12 RTL: "\x{5D7}"
555  RenderTableCell {TD} at (192,0) size 6x18 [r=0 c=22 rs=1 cs=1]
556  RenderText {#text} at (0,0) size 6x18
557  text run at (0,0) width 6 RTL: "\x{5D6}"
558  RenderBlock {P} at (4,22) size 198x18
559  RenderText {#text} at (0,0) size 69x18
560  text run at (0,0) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
561  text run at (27,0) width 42: " ABC "
 549 RenderTableCell {TD} at (169,0) size 11x19 [r=0 c=20 rs=1 cs=1]
 550 RenderText {#text} at (0,1) size 11x18
 551 text run at (0,1) width 11 RTL: "\x{5D8}"
 552 RenderTableCell {TD} at (180,0) size 12x19 [r=0 c=21 rs=1 cs=1]
 553 RenderText {#text} at (0,1) size 12x18
 554 text run at (0,1) width 12 RTL: "\x{5D7}"
 555 RenderTableCell {TD} at (192,0) size 6x19 [r=0 c=22 rs=1 cs=1]
 556 RenderText {#text} at (0,1) size 6x18
 557 text run at (0,1) width 6 RTL: "\x{5D6}"
 558 RenderBlock {P} at (4,23) size 198x19
 559 RenderText {#text} at (0,1) size 69x18
 560 text run at (0,1) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
 561 text run at (27,1) width 42: " ABC "
562562 RenderInline {SPAN} at (0,0) size 60x18
563  RenderText {#text} at (69,0) size 60x18
564  text run at (69,0) width 60 RTL override: "\x{5D3}\x{5D4}\x{5D5} DEF"
565  RenderText {#text} at (129,0) size 65x18
566  text run at (129,0) width 37: " GHI "
567  text run at (166,0) width 28 RTL: "\x{5D6}\x{5D7}\x{5D8}"
 563 RenderText {#text} at (69,1) size 60x18
 564 text run at (69,1) width 60 RTL override: "\x{5D3}\x{5D4}\x{5D5} DEF"
 565 RenderText {#text} at (129,1) size 65x18
 566 text run at (129,1) width 37: " GHI "
 567 text run at (166,1) width 28 RTL: "\x{5D6}\x{5D7}\x{5D8}"
568568 RenderText {#text} at (0,0) size 0x0
569  RenderBlock {HR} at (0,394) size 784x2 [border: (1px inset #000000)]
570  RenderBlock {P} at (0,412) size 784x18
 569 RenderBlock {HR} at (0,405) size 784x2 [border: (1px inset #000000)]
 570 RenderBlock {P} at (0,423) size 784x18
571571 RenderText {#text} at (0,0) size 58x18
572572 text run at (0,0) width 58: "(Back to "
573573 RenderInline {A} at (0,0) size 158x18 [color=#0000EE]

@@layer at (0,0) size 800x535
580580 text run at (224,0) width 82: "David Baron"
581581 RenderText {#text} at (306,0) size 5x18
582582 text run at (306,0) width 5: ")"
583  RenderBlock {P} at (0,446) size 784x18
 583 RenderBlock {P} at (0,457) size 784x18
584584 RenderInline {A} at (0,0) size 33x18 [color=#0000EE]
585585 RenderText {#text} at (0,0) size 33x18
586586 text run at (0,0) width 33: "LDB"

@@layer at (0,0) size 800x535
591591 text run at (41,0) width 128: "dbaron@dbaron.org"
592592 RenderText {#text} at (169,0) size 82x18
593593 text run at (169,0) width 82: ", 2001-06-05"
594  RenderBlock {P} at (0,480) size 784x18
 594 RenderBlock {P} at (0,491) size 784x18
595595 RenderText {#text} at (0,0) size 304x18
596596 text run at (0,0) width 304: "Modified and used with the author\x{2019}s permission."
73924

LayoutTests/platform/mac/fast/text/international/bidi-LDB-2-HTML-expected.checksum

1 9ae776de3c1e8f52c1ff2294c316f9b2
21\ No newline at end of file
 2fad65a0d4279aa637e1047e51c47e16d
33\ No newline at end of file
73924

LayoutTests/platform/mac/fast/text/international/bidi-LDB-2-HTML-expected.txt

11layer at (0,0) size 800x600
22 RenderView at (0,0) size 800x600
3 layer at (0,0) size 800x501
4  RenderBlock {HTML} at (0,0) size 800x501
5  RenderBody {BODY} at (8,21) size 784x464
 3layer at (0,0) size 800x512
 4 RenderBlock {HTML} at (0,0) size 800x512
 5 RenderBody {BODY} at (8,21) size 784x475
66 RenderBlock {H1} at (0,0) size 784x37
77 RenderText {#text} at (0,0) size 462x37
88 text run at (0,0) width 462: "Bidirectional Text Test 2 - HTML"

@@layer at (0,0) size 800x501
2828 RenderBlock {P} at (0,92) size 784x18
2929 RenderText {#text} at (0,0) size 281x18
3030 text run at (0,0) width 281: "In each box, all the lines should be the same."
31  RenderBlock (anonymous) at (0,126) size 784x226
32  RenderBlock {DIV} at (3,3) size 102x170 [border: (1px solid #008000)]
 31 RenderBlock (anonymous) at (0,126) size 784x237
 32 RenderBlock {DIV} at (3,7) size 102x170 [border: (1px solid #008000)]
3333 RenderBlock {P} at (4,4) size 94x18
3434 RenderText {#text} at (0,0) size 94x18
3535 text run at (0,0) width 94: "ABCDEFGHI"

@@layer at (0,0) size 800x501
8787 text run at (34,0) width 31 LTR override: "DEF"
8888 RenderText {#text} at (0,0) size 34x18
8989 text run at (0,0) width 34 RTL override: "CBA"
90  RenderText {#text} at (108,77) size 4x18
91  text run at (108,77) width 4: " "
92  RenderBlock {DIV} at (115,48) size 36x80 [border: (1px solid #008000)]
93  RenderTable {TABLE} at (4,4) size 28x18
94  RenderTableSection {TBODY} at (0,0) size 28x18
95  RenderTableRow {TR} at (0,0) size 28x18
96  RenderTableCell {TD} at (0,0) size 7x18 [r=0 c=0 rs=1 cs=1]
97  RenderText {#text} at (0,0) size 7x18
98  text run at (0,0) width 7 RTL: "\x{5D2}"
99  RenderTableCell {TD} at (7,0) size 10x18 [r=0 c=1 rs=1 cs=1]
100  RenderText {#text} at (0,0) size 10x18
101  text run at (0,0) width 10 RTL: "\x{5D1}"
102  RenderTableCell {TD} at (17,0) size 11x18 [r=0 c=2 rs=1 cs=1]
103  RenderText {#text} at (0,0) size 11x18
104  text run at (0,0) width 11 RTL: "\x{5D0}"
105  RenderBlock {P} at (4,22) size 28x18
106  RenderText {#text} at (0,0) size 27x18
107  text run at (0,0) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
108  RenderBlock {P} at (4,40) size 28x18
109  RenderText {#text} at (0,0) size 27x18
110  text run at (0,0) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
111  RenderBlock {P} at (4,58) size 28x18
112  RenderText {#text} at (0,0) size 27x18
113  text run at (0,0) width 27 LTR override: "\x{5D2}\x{5D1}\x{5D0}"
114  RenderText {#text} at (154,77) size 4x18
115  text run at (154,77) width 4: " "
116  RenderBlock {DIV} at (161,57) size 105x62 [border: (1px solid #008000)]
117  RenderTable {TABLE} at (4,4) size 97x18
118  RenderTableSection {TBODY} at (0,0) size 97x18
119  RenderTableRow {TR} at (0,0) size 97x18
120  RenderTableCell {TD} at (0,0) size 7x18 [r=0 c=0 rs=1 cs=1]
121  RenderText {#text} at (0,0) size 7x18
122  text run at (0,0) width 7 RTL: "\x{5D2}"
123  RenderTableCell {TD} at (7,0) size 10x18 [r=0 c=1 rs=1 cs=1]
124  RenderText {#text} at (0,0) size 10x18
125  text run at (0,0) width 10 RTL: "\x{5D1}"
126  RenderTableCell {TD} at (17,0) size 11x18 [r=0 c=2 rs=1 cs=1]
127  RenderText {#text} at (0,0) size 11x18
128  text run at (0,0) width 11 RTL: "\x{5D0}"
 90 RenderText {#text} at (108,81) size 4x18
 91 text run at (108,81) width 4: " "
 92 RenderBlock {DIV} at (115,50) size 36x84 [border: (1px solid #008000)]
 93 RenderTable {TABLE} at (4,4) size 28x19
 94 RenderTableSection {TBODY} at (0,0) size 28x19
 95 RenderTableRow {TR} at (0,0) size 28x19
 96 RenderTableCell {TD} at (0,0) size 7x19 [r=0 c=0 rs=1 cs=1]
 97 RenderText {#text} at (0,1) size 7x18
 98 text run at (0,1) width 7 RTL: "\x{5D2}"
 99 RenderTableCell {TD} at (7,0) size 10x19 [r=0 c=1 rs=1 cs=1]
 100 RenderText {#text} at (0,1) size 10x18
 101 text run at (0,1) width 10 RTL: "\x{5D1}"
 102 RenderTableCell {TD} at (17,0) size 11x19 [r=0 c=2 rs=1 cs=1]
 103 RenderText {#text} at (0,1) size 11x18
 104 text run at (0,1) width 11 RTL: "\x{5D0}"
 105 RenderBlock {P} at (4,23) size 28x19
 106 RenderText {#text} at (0,1) size 27x18
 107 text run at (0,1) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
 108 RenderBlock {P} at (4,42) size 28x19
 109 RenderText {#text} at (0,1) size 27x18
 110 text run at (0,1) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
 111 RenderBlock {P} at (4,61) size 28x19
 112 RenderText {#text} at (0,1) size 27x18
 113 text run at (0,1) width 27 LTR override: "\x{5D2}\x{5D1}\x{5D0}"
 114 RenderText {#text} at (154,81) size 4x18
 115 text run at (154,81) width 4: " "
 116 RenderBlock {DIV} at (161,60) size 105x65 [border: (1px solid #008000)]
 117 RenderTable {TABLE} at (4,4) size 97x19
 118 RenderTableSection {TBODY} at (0,0) size 97x19
 119 RenderTableRow {TR} at (0,0) size 97x19
 120 RenderTableCell {TD} at (0,0) size 7x19 [r=0 c=0 rs=1 cs=1]
 121 RenderText {#text} at (0,1) size 7x18
 122 text run at (0,1) width 7 RTL: "\x{5D2}"
 123 RenderTableCell {TD} at (7,0) size 10x19 [r=0 c=1 rs=1 cs=1]
 124 RenderText {#text} at (0,1) size 10x18
 125 text run at (0,1) width 10 RTL: "\x{5D1}"
 126 RenderTableCell {TD} at (17,0) size 11x19 [r=0 c=2 rs=1 cs=1]
 127 RenderText {#text} at (0,1) size 11x18
 128 text run at (0,1) width 11 RTL: "\x{5D0}"
129129 RenderTableCell {TD} at (28,0) size 4x18 [r=0 c=3 rs=1 cs=1]
130130 RenderText {#text} at (0,0) size 4x18
131131 text run at (0,0) width 4: " "

@@layer at (0,0) size 800x501
141141 RenderTableCell {TD} at (66,0) size 4x18 [r=0 c=7 rs=1 cs=1]
142142 RenderText {#text} at (0,0) size 4x18
143143 text run at (0,0) width 4: " "
144  RenderTableCell {TD} at (70,0) size 6x18 [r=0 c=8 rs=1 cs=1]
145  RenderText {#text} at (0,0) size 6x18
146  text run at (0,0) width 6 RTL: "\x{5D5}"
147  RenderTableCell {TD} at (76,0) size 12x18 [r=0 c=9 rs=1 cs=1]
148  RenderText {#text} at (0,0) size 12x18
149  text run at (0,0) width 12 RTL: "\x{5D4}"
150  RenderTableCell {TD} at (88,0) size 9x18 [r=0 c=10 rs=1 cs=1]
151  RenderText {#text} at (0,0) size 9x18
152  text run at (0,0) width 9 RTL: "\x{5D3}"
153  RenderBlock {P} at (4,22) size 97x18
154  RenderText {#text} at (0,0) size 94x18
155  text run at (0,0) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
156  text run at (27,0) width 42: " ABC "
157  text run at (69,0) width 25 RTL: "\x{5D3}\x{5D4}\x{5D5}"
158  RenderBlock {P} at (4,40) size 97x18
159  RenderText {#text} at (0,0) size 94x18
160  text run at (0,0) width 31 RTL: " \x{5D0}\x{5D1}\x{5D2}"
161  text run at (31,0) width 34: "ABC"
162  text run at (65,0) width 29 RTL: "\x{5D3}\x{5D4}\x{5D5} "
163  RenderText {#text} at (269,77) size 4x18
164  text run at (269,77) width 4: " "
165  RenderBlock {DIV} at (276,3) size 173x170 [border: (1px solid #008000)]
166  RenderTable {TABLE} at (4,4) size 165x18
167  RenderTableSection {TBODY} at (0,0) size 165x18
168  RenderTableRow {TR} at (0,0) size 165x18
169  RenderTableCell {TD} at (0,0) size 7x18 [r=0 c=0 rs=1 cs=1]
170  RenderText {#text} at (0,0) size 7x18
171  text run at (0,0) width 7 RTL: "\x{5D2}"
172  RenderTableCell {TD} at (7,0) size 10x18 [r=0 c=1 rs=1 cs=1]
173  RenderText {#text} at (0,0) size 10x18
174  text run at (0,0) width 10 RTL: "\x{5D1}"
175  RenderTableCell {TD} at (17,0) size 11x18 [r=0 c=2 rs=1 cs=1]
176  RenderText {#text} at (0,0) size 11x18
177  text run at (0,0) width 11 RTL: "\x{5D0}"
 144 RenderTableCell {TD} at (70,0) size 6x19 [r=0 c=8 rs=1 cs=1]
 145 RenderText {#text} at (0,1) size 6x18
 146 text run at (0,1) width 6 RTL: "\x{5D5}"
 147 RenderTableCell {TD} at (76,0) size 12x19 [r=0 c=9 rs=1 cs=1]
 148 RenderText {#text} at (0,1) size 12x18
 149 text run at (0,1) width 12 RTL: "\x{5D4}"
 150 RenderTableCell {TD} at (88,0) size 9x19 [r=0 c=10 rs=1 cs=1]
 151 RenderText {#text} at (0,1) size 9x18
 152 text run at (0,1) width 9 RTL: "\x{5D3}"
 153 RenderBlock {P} at (4,23) size 97x19
 154 RenderText {#text} at (0,1) size 94x18
 155 text run at (0,1) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
 156 text run at (27,1) width 42: " ABC "
 157 text run at (69,1) width 25 RTL: "\x{5D3}\x{5D4}\x{5D5}"
 158 RenderBlock {P} at (4,42) size 97x19
 159 RenderText {#text} at (0,1) size 94x18
 160 text run at (0,1) width 31 RTL: " \x{5D0}\x{5D1}\x{5D2}"
 161 text run at (31,1) width 34: "ABC"
 162 text run at (65,1) width 29 RTL: "\x{5D3}\x{5D4}\x{5D5} "
 163 RenderText {#text} at (269,81) size 4x18
 164 text run at (269,81) width 4: " "
 165 RenderBlock {DIV} at (276,3) size 173x179 [border: (1px solid #008000)]
 166 RenderTable {TABLE} at (4,4) size 165x19
 167 RenderTableSection {TBODY} at (0,0) size 165x19
 168 RenderTableRow {TR} at (0,0) size 165x19
 169 RenderTableCell {TD} at (0,0) size 7x19 [r=0 c=0 rs=1 cs=1]
 170 RenderText {#text} at (0,1) size 7x18
 171 text run at (0,1) width 7 RTL: "\x{5D2}"
 172 RenderTableCell {TD} at (7,0) size 10x19 [r=0 c=1 rs=1 cs=1]
 173 RenderText {#text} at (0,1) size 10x18
 174 text run at (0,1) width 10 RTL: "\x{5D1}"
 175 RenderTableCell {TD} at (17,0) size 11x19 [r=0 c=2 rs=1 cs=1]
 176 RenderText {#text} at (0,1) size 11x18
 177 text run at (0,1) width 11 RTL: "\x{5D0}"
178178 RenderTableCell {TD} at (28,0) size 4x18 [r=0 c=3 rs=1 cs=1]
179179 RenderText {#text} at (0,0) size 4x18
180180 text run at (0,0) width 4: " "

@@layer at (0,0) size 800x501
190190 RenderTableCell {TD} at (66,0) size 4x18 [r=0 c=7 rs=1 cs=1]
191191 RenderText {#text} at (0,0) size 4x18
192192 text run at (0,0) width 4: " "
193  RenderTableCell {TD} at (70,0) size 6x18 [r=0 c=8 rs=1 cs=1]
194  RenderText {#text} at (0,0) size 6x18
195  text run at (0,0) width 6 RTL: "\x{5D5}"
196  RenderTableCell {TD} at (76,0) size 12x18 [r=0 c=9 rs=1 cs=1]
197  RenderText {#text} at (0,0) size 12x18
198  text run at (0,0) width 12 RTL: "\x{5D4}"
199  RenderTableCell {TD} at (88,0) size 9x18 [r=0 c=10 rs=1 cs=1]
200  RenderText {#text} at (0,0) size 9x18
201  text run at (0,0) width 9 RTL: "\x{5D3}"
 193 RenderTableCell {TD} at (70,0) size 6x19 [r=0 c=8 rs=1 cs=1]
 194 RenderText {#text} at (0,1) size 6x18
 195 text run at (0,1) width 6 RTL: "\x{5D5}"
 196 RenderTableCell {TD} at (76,0) size 12x19 [r=0 c=9 rs=1 cs=1]
 197 RenderText {#text} at (0,1) size 12x18
 198 text run at (0,1) width 12 RTL: "\x{5D4}"
 199 RenderTableCell {TD} at (88,0) size 9x19 [r=0 c=10 rs=1 cs=1]
 200 RenderText {#text} at (0,1) size 9x18
 201 text run at (0,1) width 9 RTL: "\x{5D3}"
202202 RenderTableCell {TD} at (97,0) size 4x18 [r=0 c=11 rs=1 cs=1]
203203 RenderText {#text} at (0,0) size 4x18
204204 text run at (0,0) width 4: " "

@@layer at (0,0) size 800x501
214214 RenderTableCell {TD} at (132,0) size 4x18 [r=0 c=15 rs=1 cs=1]
215215 RenderText {#text} at (0,0) size 4x18
216216 text run at (0,0) width 4: " "
217  RenderTableCell {TD} at (136,0) size 11x18 [r=0 c=16 rs=1 cs=1]
218  RenderText {#text} at (0,0) size 11x18
219  text run at (0,0) width 11 RTL: "\x{5D8}"
220  RenderTableCell {TD} at (147,0) size 12x18 [r=0 c=17 rs=1 cs=1]
221  RenderText {#text} at (0,0) size 12x18
222  text run at (0,0) width 12 RTL: "\x{5D7}"
223  RenderTableCell {TD} at (159,0) size 6x18 [r=0 c=18 rs=1 cs=1]
224  RenderText {#text} at (0,0) size 6x18
225  text run at (0,0) width 6 RTL: "\x{5D6}"
226  RenderBlock {P} at (4,22) size 165x18
227  RenderText {#text} at (0,0) size 161x18
228  text run at (0,0) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
229  text run at (27,0) width 42: " ABC "
230  text run at (69,0) width 25 RTL: "\x{5D3}\x{5D4}\x{5D5}"
231  text run at (94,0) width 39: " DEF "
232  text run at (133,0) width 28 RTL: "\x{5D6}\x{5D7}\x{5D8}"
233  RenderBlock {P} at (4,40) size 165x18
234  RenderText {#text} at (0,0) size 31x18
235  text run at (0,0) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
236  text run at (27,0) width 4: " "
 217 RenderTableCell {TD} at (136,0) size 11x19 [r=0 c=16 rs=1 cs=1]
 218 RenderText {#text} at (0,1) size 11x18
 219 text run at (0,1) width 11 RTL: "\x{5D8}"
 220 RenderTableCell {TD} at (147,0) size 12x19 [r=0 c=17 rs=1 cs=1]
 221 RenderText {#text} at (0,1) size 12x18
 222 text run at (0,1) width 12 RTL: "\x{5D7}"
 223 RenderTableCell {TD} at (159,0) size 6x19 [r=0 c=18 rs=1 cs=1]
 224 RenderText {#text} at (0,1) size 6x18
 225 text run at (0,1) width 6 RTL: "\x{5D6}"
 226 RenderBlock {P} at (4,23) size 165x19
 227 RenderText {#text} at (0,1) size 161x18
 228 text run at (0,1) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
 229 text run at (27,1) width 42: " ABC "
 230 text run at (69,1) width 25 RTL: "\x{5D3}\x{5D4}\x{5D5}"
 231 text run at (94,1) width 39: " DEF "
 232 text run at (133,1) width 28 RTL: "\x{5D6}\x{5D7}\x{5D8}"
 233 RenderBlock {P} at (4,42) size 165x19
 234 RenderText {#text} at (0,1) size 31x18
 235 text run at (0,1) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
 236 text run at (27,1) width 4: " "
237237 RenderInline {SPAN} at (0,0) size 63x18
238  RenderText {#text} at (31,0) size 63x18
239  text run at (31,0) width 38: "ABC "
240  text run at (69,0) width 25 RTL: "\x{5D3}\x{5D4}\x{5D5}"
241  RenderText {#text} at (94,0) size 67x18
242  text run at (94,0) width 39: " DEF "
243  text run at (133,0) width 28 RTL: "\x{5D6}\x{5D7}\x{5D8}"
244  RenderBlock {P} at (4,58) size 165x18
245  RenderText {#text} at (0,0) size 31x18
246  text run at (0,0) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
247  text run at (27,0) width 4: " "
 238 RenderText {#text} at (31,1) size 63x18
 239 text run at (31,1) width 38: "ABC "
 240 text run at (69,1) width 25 RTL: "\x{5D3}\x{5D4}\x{5D5}"
 241 RenderText {#text} at (94,1) size 67x18
 242 text run at (94,1) width 39: " DEF "
 243 text run at (133,1) width 28 RTL: "\x{5D6}\x{5D7}\x{5D8}"
 244 RenderBlock {P} at (4,61) size 165x19
 245 RenderText {#text} at (0,1) size 31x18
 246 text run at (0,1) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
 247 text run at (27,1) width 4: " "
248248 RenderInline {SPAN} at (0,0) size 98x18
249  RenderText {#text} at (31,0) size 98x18
250  text run at (31,0) width 38: "ABC "
251  text run at (69,0) width 25 RTL: "\x{5D3}\x{5D4}\x{5D5}"
252  text run at (94,0) width 35: " DEF"
253  RenderText {#text} at (129,0) size 32x18
254  text run at (129,0) width 4: " "
255  text run at (133,0) width 28 RTL: "\x{5D6}\x{5D7}\x{5D8}"
256  RenderBlock {P} at (4,76) size 165x18
257  RenderText {#text} at (129,0) size 32x18
258  text run at (129,0) width 32 RTL: "\x{5D6}\x{5D7}\x{5D8} "
 249 RenderText {#text} at (31,1) size 98x18
 250 text run at (31,1) width 38: "ABC "
 251 text run at (69,1) width 25 RTL: "\x{5D3}\x{5D4}\x{5D5}"
 252 text run at (94,1) width 35: " DEF"
 253 RenderText {#text} at (129,1) size 32x18
 254 text run at (129,1) width 4: " "
 255 text run at (133,1) width 28 RTL: "\x{5D6}\x{5D7}\x{5D8}"
 256 RenderBlock {P} at (4,80) size 165x19
 257 RenderText {#text} at (129,1) size 32x18
 258 text run at (129,1) width 32 RTL: "\x{5D6}\x{5D7}\x{5D8} "
259259 RenderInline {SPAN} at (0,0) size 98x18
260  RenderText {#text} at (31,0) size 98x18
261  text run at (31,0) width 34: "ABC"
262  text run at (65,0) width 33 RTL: " \x{5D3}\x{5D4}\x{5D5} "
263  text run at (98,0) width 31: "DEF"
264  RenderText {#text} at (0,0) size 31x18
265  text run at (0,0) width 31 RTL: " \x{5D0}\x{5D1}\x{5D2}"
266  RenderBlock {P} at (4,94) size 165x18
267  RenderText {#text} at (65,0) size 29x18
268  text run at (65,0) width 29 RTL: "\x{5D3}\x{5D4}\x{5D5} "
 260 RenderText {#text} at (31,1) size 98x18
 261 text run at (31,1) width 34: "ABC"
 262 text run at (65,1) width 33 RTL: " \x{5D3}\x{5D4}\x{5D5} "
 263 text run at (98,1) width 31: "DEF"
 264 RenderText {#text} at (0,1) size 31x18
 265 text run at (0,1) width 31 RTL: " \x{5D0}\x{5D1}\x{5D2}"
 266 RenderBlock {P} at (4,99) size 165x19
 267 RenderText {#text} at (65,1) size 29x18
 268 text run at (65,1) width 29 RTL: "\x{5D3}\x{5D4}\x{5D5} "
269269 RenderInline {SPAN} at (0,0) size 65x18
270  RenderText {#text} at (0,0) size 65x18
271  text run at (0,0) width 31 RTL: " \x{5D0}\x{5D1}\x{5D2}"
272  text run at (31,0) width 34: "ABC"
273  RenderText {#text} at (94,0) size 67x18
274  text run at (94,0) width 39: " DEF "
275  text run at (133,0) width 28 RTL: "\x{5D6}\x{5D7}\x{5D8}"
276  RenderBlock {P} at (4,112) size 165x18
277  RenderText {#text} at (65,0) size 29x18
278  text run at (65,0) width 29 RTL: "\x{5D3}\x{5D4}\x{5D5} "
 270 RenderText {#text} at (0,1) size 65x18
 271 text run at (0,1) width 31 RTL: " \x{5D0}\x{5D1}\x{5D2}"
 272 text run at (31,1) width 34: "ABC"
 273 RenderText {#text} at (94,1) size 67x18
 274 text run at (94,1) width 39: " DEF "
 275 text run at (133,1) width 28 RTL: "\x{5D6}\x{5D7}\x{5D8}"
 276 RenderBlock {P} at (4,118) size 165x19
 277 RenderText {#text} at (65,1) size 29x18
 278 text run at (65,1) width 29 RTL: "\x{5D3}\x{5D4}\x{5D5} "
279279 RenderInline {BDO} at (0,0) size 65x18
280  RenderText {#text} at (0,0) size 65x18
281  text run at (0,0) width 65 RTL override: "CBA \x{5D0}\x{5D1}\x{5D2}"
282  RenderText {#text} at (94,0) size 67x18
283  text run at (94,0) width 39: " DEF "
284  text run at (133,0) width 28 RTL: "\x{5D6}\x{5D7}\x{5D8}"
285  RenderBlock {P} at (4,130) size 165x18
286  RenderText {#text} at (0,0) size 31x18
287  text run at (0,0) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
288  text run at (27,0) width 4: " "
 280 RenderText {#text} at (0,1) size 65x18
 281 text run at (0,1) width 65 RTL override: "CBA \x{5D0}\x{5D1}\x{5D2}"
 282 RenderText {#text} at (94,1) size 67x18
 283 text run at (94,1) width 39: " DEF "
 284 text run at (133,1) width 28 RTL: "\x{5D6}\x{5D7}\x{5D8}"
 285 RenderBlock {P} at (4,137) size 165x19
 286 RenderText {#text} at (0,1) size 31x18
 287 text run at (0,1) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
 288 text run at (27,1) width 4: " "
289289 RenderInline {BDO} at (0,0) size 63x18
290  RenderText {#text} at (31,0) size 63x18
291  text run at (31,0) width 63 LTR override: "ABC \x{5D5}\x{5D4}\x{5D3}"
292  RenderText {#text} at (94,0) size 67x18
293  text run at (94,0) width 39: " DEF "
294  text run at (133,0) width 28 RTL: "\x{5D6}\x{5D7}\x{5D8}"
295  RenderBlock {P} at (4,148) size 165x18
296  RenderText {#text} at (129,0) size 32x18
297  text run at (129,0) width 32 RTL: "\x{5D6}\x{5D7}\x{5D8} "
 290 RenderText {#text} at (31,1) size 63x18
 291 text run at (31,1) width 63 LTR override: "ABC \x{5D5}\x{5D4}\x{5D3}"
 292 RenderText {#text} at (94,1) size 67x18
 293 text run at (94,1) width 39: " DEF "
 294 text run at (133,1) width 28 RTL: "\x{5D6}\x{5D7}\x{5D8}"
 295 RenderBlock {P} at (4,156) size 165x19
 296 RenderText {#text} at (129,1) size 32x18
 297 text run at (129,1) width 32 RTL: "\x{5D6}\x{5D7}\x{5D8} "
298298 RenderInline {BDO} at (0,0) size 63x18
299  RenderText {#text} at (31,0) size 63x18
300  text run at (31,0) width 63 LTR override: "ABC \x{5D5}\x{5D4}\x{5D3}"
301  RenderText {#text} at (0,0) size 129x18
302  text run at (0,0) width 31 RTL: " \x{5D0}\x{5D1}\x{5D2}"
303  text run at (94,0) width 35: " DEF"
304  RenderText {#text} at (452,77) size 4x18
305  text run at (452,77) width 4: " "
306  RenderBlock {DIV} at (459,66) size 206x44 [border: (1px solid #008000)]
307  RenderTable {TABLE} at (4,4) size 198x18
308  RenderTableSection {TBODY} at (0,0) size 198x18
309  RenderTableRow {TR} at (0,0) size 198x18
310  RenderTableCell {TD} at (0,0) size 7x18 [r=0 c=0 rs=1 cs=1]
311  RenderText {#text} at (0,0) size 7x18
312  text run at (0,0) width 7 RTL: "\x{5D2}"
313  RenderTableCell {TD} at (7,0) size 10x18 [r=0 c=1 rs=1 cs=1]
314  RenderText {#text} at (0,0) size 10x18
315  text run at (0,0) width 10 RTL: "\x{5D1}"
316  RenderTableCell {TD} at (17,0) size 11x18 [r=0 c=2 rs=1 cs=1]
317  RenderText {#text} at (0,0) size 11x18
318  text run at (0,0) width 11 RTL: "\x{5D0}"
 299 RenderText {#text} at (31,1) size 63x18
 300 text run at (31,1) width 63 LTR override: "ABC \x{5D5}\x{5D4}\x{5D3}"
 301 RenderText {#text} at (0,1) size 129x18
 302 text run at (0,1) width 31 RTL: " \x{5D0}\x{5D1}\x{5D2}"
 303 text run at (94,1) width 35: " DEF"
 304 RenderText {#text} at (452,81) size 4x18
 305 text run at (452,81) width 4: " "
 306 RenderBlock {DIV} at (459,69) size 206x46 [border: (1px solid #008000)]
 307 RenderTable {TABLE} at (4,4) size 198x19
 308 RenderTableSection {TBODY} at (0,0) size 198x19
 309 RenderTableRow {TR} at (0,0) size 198x19
 310 RenderTableCell {TD} at (0,0) size 7x19 [r=0 c=0 rs=1 cs=1]
 311 RenderText {#text} at (0,1) size 7x18
 312 text run at (0,1) width 7 RTL: "\x{5D2}"
 313 RenderTableCell {TD} at (7,0) size 10x19 [r=0 c=1 rs=1 cs=1]
 314 RenderText {#text} at (0,1) size 10x18
 315 text run at (0,1) width 10 RTL: "\x{5D1}"
 316 RenderTableCell {TD} at (17,0) size 11x19 [r=0 c=2 rs=1 cs=1]
 317 RenderText {#text} at (0,1) size 11x18
 318 text run at (0,1) width 11 RTL: "\x{5D0}"
319319 RenderTableCell {TD} at (28,0) size 4x18 [r=0 c=3 rs=1 cs=1]
320320 RenderText {#text} at (0,0) size 4x18
321321 text run at (0,0) width 4: " "

@@layer at (0,0) size 800x501
331331 RenderTableCell {TD} at (66,0) size 4x18 [r=0 c=7 rs=1 cs=1]
332332 RenderText {#text} at (0,0) size 4x18
333333 text run at (0,0) width 4: " "
334  RenderTableCell {TD} at (70,0) size 6x18 [r=0 c=8 rs=1 cs=1]
335  RenderText {#text} at (0,0) size 6x18
336  text run at (0,0) width 6 RTL: "\x{5D5}"
337  RenderTableCell {TD} at (76,0) size 12x18 [r=0 c=9 rs=1 cs=1]
338  RenderText {#text} at (0,0) size 12x18
339  text run at (0,0) width 12 RTL: "\x{5D4}"
340  RenderTableCell {TD} at (88,0) size 9x18 [r=0 c=10 rs=1 cs=1]
341  RenderText {#text} at (0,0) size 9x18
342  text run at (0,0) width 9 RTL: "\x{5D3}"
 334 RenderTableCell {TD} at (70,0) size 6x19 [r=0 c=8 rs=1 cs=1]
 335 RenderText {#text} at (0,1) size 6x18
 336 text run at (0,1) width 6 RTL: "\x{5D5}"
 337 RenderTableCell {TD} at (76,0) size 12x19 [r=0 c=9 rs=1 cs=1]
 338 RenderText {#text} at (0,1) size 12x18
 339 text run at (0,1) width 12 RTL: "\x{5D4}"
 340 RenderTableCell {TD} at (88,0) size 9x19 [r=0 c=10 rs=1 cs=1]
 341 RenderText {#text} at (0,1) size 9x18
 342 text run at (0,1) width 9 RTL: "\x{5D3}"
343343 RenderTableCell {TD} at (97,0) size 4x18 [r=0 c=11 rs=1 cs=1]
344344 RenderText {#text} at (0,0) size 4x18
345345 text run at (0,0) width 4: " "

@@layer at (0,0) size 800x501
367367 RenderTableCell {TD} at (165,0) size 4x18 [r=0 c=19 rs=1 cs=1]
368368 RenderText {#text} at (0,0) size 4x18
369369 text run at (0,0) width 4: " "
370  RenderTableCell {TD} at (169,0) size 11x18 [r=0 c=20 rs=1 cs=1]
371  RenderText {#text} at (0,0) size 11x18
372  text run at (0,0) width 11 RTL: "\x{5D8}"
373  RenderTableCell {TD} at (180,0) size 12x18 [r=0 c=21 rs=1 cs=1]
374  RenderText {#text} at (0,0) size 12x18
375  text run at (0,0) width 12 RTL: "\x{5D7}"
376  RenderTableCell {TD} at (192,0) size 6x18 [r=0 c=22 rs=1 cs=1]
377  RenderText {#text} at (0,0) size 6x18
378  text run at (0,0) width 6 RTL: "\x{5D6}"
379  RenderBlock {P} at (4,22) size 198x18
380  RenderText {#text} at (0,0) size 194x18
381  text run at (0,0) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
382  text run at (27,0) width 42: " ABC "
383  text run at (69,0) width 25 RTL: "\x{5D3}\x{5D4}\x{5D5}"
384  text run at (94,0) width 72: " DEF GHI "
385  text run at (166,0) width 28 RTL: "\x{5D6}\x{5D7}\x{5D8}"
386  RenderText {#text} at (668,77) size 4x18
387  text run at (668,77) width 4: " "
388  RenderBR {BR} at (672,77) size 0x18
389  RenderBlock {DIV} at (3,179) size 206x44 [border: (1px solid #008000)]
390  RenderTable {TABLE} at (4,4) size 198x18
391  RenderTableSection {TBODY} at (0,0) size 198x18
392  RenderTableRow {TR} at (0,0) size 198x18
 370 RenderTableCell {TD} at (169,0) size 11x19 [r=0 c=20 rs=1 cs=1]
 371 RenderText {#text} at (0,1) size 11x18
 372 text run at (0,1) width 11 RTL: "\x{5D8}"
 373 RenderTableCell {TD} at (180,0) size 12x19 [r=0 c=21 rs=1 cs=1]
 374 RenderText {#text} at (0,1) size 12x18
 375 text run at (0,1) width 12 RTL: "\x{5D7}"
 376 RenderTableCell {TD} at (192,0) size 6x19 [r=0 c=22 rs=1 cs=1]
 377 RenderText {#text} at (0,1) size 6x18
 378 text run at (0,1) width 6 RTL: "\x{5D6}"
 379 RenderBlock {P} at (4,23) size 198x19
 380 RenderText {#text} at (0,1) size 194x18
 381 text run at (0,1) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
 382 text run at (27,1) width 42: " ABC "
 383 text run at (69,1) width 25 RTL: "\x{5D3}\x{5D4}\x{5D5}"
 384 text run at (94,1) width 72: " DEF GHI "
 385 text run at (166,1) width 28 RTL: "\x{5D6}\x{5D7}\x{5D8}"
 386 RenderText {#text} at (668,81) size 4x18
 387 text run at (668,81) width 4: " "
 388 RenderBR {BR} at (672,81) size 0x18
 389 RenderBlock {DIV} at (3,188) size 206x46 [border: (1px solid #008000)]
 390 RenderTable {TABLE} at (4,4) size 198x19
 391 RenderTableSection {TBODY} at (0,0) size 198x19
 392 RenderTableRow {TR} at (0,0) size 198x19
393393 RenderTableCell {TD} at (0,0) size 9x18 [r=0 c=0 rs=1 cs=1]
394394 RenderText {#text} at (0,0) size 9x18
395395 text run at (0,0) width 9: "F"

@@layer at (0,0) size 800x501
402402 RenderTableCell {TD} at (31,0) size 4x18 [r=0 c=3 rs=1 cs=1]
403403 RenderText {#text} at (0,0) size 4x18
404404 text run at (0,0) width 4: " "
405  RenderTableCell {TD} at (35,0) size 6x18 [r=0 c=4 rs=1 cs=1]
406  RenderText {#text} at (0,0) size 6x18
407  text run at (0,0) width 6 RTL: "\x{5D5}"
408  RenderTableCell {TD} at (41,0) size 12x18 [r=0 c=5 rs=1 cs=1]
409  RenderText {#text} at (0,0) size 12x18
410  text run at (0,0) width 12 RTL: "\x{5D4}"
411  RenderTableCell {TD} at (53,0) size 9x18 [r=0 c=6 rs=1 cs=1]
412  RenderText {#text} at (0,0) size 9x18
413  text run at (0,0) width 9 RTL: "\x{5D3}"
 405 RenderTableCell {TD} at (35,0) size 6x19 [r=0 c=4 rs=1 cs=1]
 406 RenderText {#text} at (0,1) size 6x18
 407 text run at (0,1) width 6 RTL: "\x{5D5}"
 408 RenderTableCell {TD} at (41,0) size 12x19 [r=0 c=5 rs=1 cs=1]
 409 RenderText {#text} at (0,1) size 12x18
 410 text run at (0,1) width 12 RTL: "\x{5D4}"
 411 RenderTableCell {TD} at (53,0) size 9x19 [r=0 c=6 rs=1 cs=1]
 412 RenderText {#text} at (0,1) size 9x18
 413 text run at (0,1) width 9 RTL: "\x{5D3}"
414414 RenderTableCell {TD} at (62,0) size 4x18 [r=0 c=7 rs=1 cs=1]
415415 RenderText {#text} at (0,0) size 4x18
416416 text run at (0,0) width 4: " "

@@layer at (0,0) size 800x501
426426 RenderTableCell {TD} at (100,0) size 4x18 [r=0 c=11 rs=1 cs=1]
427427 RenderText {#text} at (0,0) size 4x18
428428 text run at (0,0) width 4: " "
429  RenderTableCell {TD} at (104,0) size 7x18 [r=0 c=12 rs=1 cs=1]
430  RenderText {#text} at (0,0) size 7x18
431  text run at (0,0) width 7 RTL: "\x{5D2}"
432  RenderTableCell {TD} at (111,0) size 10x18 [r=0 c=13 rs=1 cs=1]
433  RenderText {#text} at (0,0) size 10x18
434  text run at (0,0) width 10 RTL: "\x{5D1}"
435  RenderTableCell {TD} at (121,0) size 11x18 [r=0 c=14 rs=1 cs=1]
436  RenderText {#text} at (0,0) size 11x18
437  text run at (0,0) width 11 RTL: "\x{5D0}"
 429 RenderTableCell {TD} at (104,0) size 7x19 [r=0 c=12 rs=1 cs=1]
 430 RenderText {#text} at (0,1) size 7x18
 431 text run at (0,1) width 7 RTL: "\x{5D2}"
 432 RenderTableCell {TD} at (111,0) size 10x19 [r=0 c=13 rs=1 cs=1]
 433 RenderText {#text} at (0,1) size 10x18
 434 text run at (0,1) width 10 RTL: "\x{5D1}"
 435 RenderTableCell {TD} at (121,0) size 11x19 [r=0 c=14 rs=1 cs=1]
 436 RenderText {#text} at (0,1) size 11x18
 437 text run at (0,1) width 11 RTL: "\x{5D0}"
438438 RenderTableCell {TD} at (132,0) size 4x18 [r=0 c=15 rs=1 cs=1]
439439 RenderText {#text} at (0,0) size 4x18
440440 text run at (0,0) width 4: " "

@@layer at (0,0) size 800x501
450450 RenderTableCell {TD} at (165,0) size 4x18 [r=0 c=19 rs=1 cs=1]
451451 RenderText {#text} at (0,0) size 4x18
452452 text run at (0,0) width 4: " "
453  RenderTableCell {TD} at (169,0) size 11x18 [r=0 c=20 rs=1 cs=1]
454  RenderText {#text} at (0,0) size 11x18
455  text run at (0,0) width 11 RTL: "\x{5D8}"
456  RenderTableCell {TD} at (180,0) size 12x18 [r=0 c=21 rs=1 cs=1]
457  RenderText {#text} at (0,0) size 12x18
458  text run at (0,0) width 12 RTL: "\x{5D7}"
459  RenderTableCell {TD} at (192,0) size 6x18 [r=0 c=22 rs=1 cs=1]
460  RenderText {#text} at (0,0) size 6x18
461  text run at (0,0) width 6 RTL: "\x{5D6}"
462  RenderBlock {P} at (4,22) size 198x18
463  RenderText {#text} at (98,0) size 31x18
464  text run at (98,0) width 31 RTL: "\x{5D0}\x{5D1}\x{5D2} "
 453 RenderTableCell {TD} at (169,0) size 11x19 [r=0 c=20 rs=1 cs=1]
 454 RenderText {#text} at (0,1) size 11x18
 455 text run at (0,1) width 11 RTL: "\x{5D8}"
 456 RenderTableCell {TD} at (180,0) size 12x19 [r=0 c=21 rs=1 cs=1]
 457 RenderText {#text} at (0,1) size 12x18
 458 text run at (0,1) width 12 RTL: "\x{5D7}"
 459 RenderTableCell {TD} at (192,0) size 6x19 [r=0 c=22 rs=1 cs=1]
 460 RenderText {#text} at (0,1) size 6x18
 461 text run at (0,1) width 6 RTL: "\x{5D6}"
 462 RenderBlock {P} at (4,23) size 198x19
 463 RenderText {#text} at (98,1) size 31x18
 464 text run at (98,1) width 31 RTL: "\x{5D0}\x{5D1}\x{5D2} "
465465 RenderInline {BDO} at (0,0) size 98x18
466  RenderText {#text} at (0,0) size 98x18
467  text run at (0,0) width 98 RTL override: "ABC \x{5D3}\x{5D4}\x{5D5} DEF"
468  RenderText {#text} at (129,0) size 65x18
469  text run at (129,0) width 37: " GHI "
470  text run at (166,0) width 28 RTL: "\x{5D6}\x{5D7}\x{5D8}"
471  RenderText {#text} at (212,190) size 4x18
472  text run at (212,190) width 4: " "
473  RenderBlock {DIV} at (219,179) size 206x44 [border: (1px solid #008000)]
474  RenderTable {TABLE} at (4,4) size 198x18
475  RenderTableSection {TBODY} at (0,0) size 198x18
476  RenderTableRow {TR} at (0,0) size 198x18
477  RenderTableCell {TD} at (0,0) size 7x18 [r=0 c=0 rs=1 cs=1]
478  RenderText {#text} at (0,0) size 7x18
479  text run at (0,0) width 7 RTL: "\x{5D2}"
480  RenderTableCell {TD} at (7,0) size 10x18 [r=0 c=1 rs=1 cs=1]
481  RenderText {#text} at (0,0) size 10x18
482  text run at (0,0) width 10 RTL: "\x{5D1}"
483  RenderTableCell {TD} at (17,0) size 11x18 [r=0 c=2 rs=1 cs=1]
484  RenderText {#text} at (0,0) size 11x18
485  text run at (0,0) width 11 RTL: "\x{5D0}"
 466 RenderText {#text} at (0,1) size 98x18
 467 text run at (0,1) width 98 RTL override: "ABC \x{5D3}\x{5D4}\x{5D5} DEF"
 468 RenderText {#text} at (129,1) size 65x18
 469 text run at (129,1) width 37: " GHI "
 470 text run at (166,1) width 28 RTL: "\x{5D6}\x{5D7}\x{5D8}"
 471 RenderText {#text} at (212,200) size 4x18
 472 text run at (212,200) width 4: " "
 473 RenderBlock {DIV} at (219,188) size 206x46 [border: (1px solid #008000)]
 474 RenderTable {TABLE} at (4,4) size 198x19
 475 RenderTableSection {TBODY} at (0,0) size 198x19
 476 RenderTableRow {TR} at (0,0) size 198x19
 477 RenderTableCell {TD} at (0,0) size 7x19 [r=0 c=0 rs=1 cs=1]
 478 RenderText {#text} at (0,1) size 7x18
 479 text run at (0,1) width 7 RTL: "\x{5D2}"
 480 RenderTableCell {TD} at (7,0) size 10x19 [r=0 c=1 rs=1 cs=1]
 481 RenderText {#text} at (0,1) size 10x18
 482 text run at (0,1) width 10 RTL: "\x{5D1}"
 483 RenderTableCell {TD} at (17,0) size 11x19 [r=0 c=2 rs=1 cs=1]
 484 RenderText {#text} at (0,1) size 11x18
 485 text run at (0,1) width 11 RTL: "\x{5D0}"
486486 RenderTableCell {TD} at (28,0) size 4x18 [r=0 c=3 rs=1 cs=1]
487487 RenderText {#text} at (0,0) size 4x18
488488 text run at (0,0) width 4: " "

@@layer at (0,0) size 800x501
510510 RenderTableCell {TD} at (101,0) size 4x18 [r=0 c=11 rs=1 cs=1]
511511 RenderText {#text} at (0,0) size 4x18
512512 text run at (0,0) width 4: " "
513  RenderTableCell {TD} at (105,0) size 6x18 [r=0 c=12 rs=1 cs=1]
514  RenderText {#text} at (0,0) size 6x18
515  text run at (0,0) width 6 RTL: "\x{5D5}"
516  RenderTableCell {TD} at (111,0) size 12x18 [r=0 c=13 rs=1 cs=1]
517  RenderText {#text} at (0,0) size 12x18
518  text run at (0,0) width 12 RTL: "\x{5D4}"
519  RenderTableCell {TD} at (123,0) size 9x18 [r=0 c=14 rs=1 cs=1]
520  RenderText {#text} at (0,0) size 9x18
521  text run at (0,0) width 9 RTL: "\x{5D3}"
 513 RenderTableCell {TD} at (105,0) size 6x19 [r=0 c=12 rs=1 cs=1]
 514 RenderText {#text} at (0,1) size 6x18
 515 text run at (0,1) width 6 RTL: "\x{5D5}"
 516 RenderTableCell {TD} at (111,0) size 12x19 [r=0 c=13 rs=1 cs=1]
 517 RenderText {#text} at (0,1) size 12x18
 518 text run at (0,1) width 12 RTL: "\x{5D4}"
 519 RenderTableCell {TD} at (123,0) size 9x19 [r=0 c=14 rs=1 cs=1]
 520 RenderText {#text} at (0,1) size 9x18
 521 text run at (0,1) width 9 RTL: "\x{5D3}"
522522 RenderTableCell {TD} at (132,0) size 4x18 [r=0 c=15 rs=1 cs=1]
523523 RenderText {#text} at (0,0) size 4x18
524524 text run at (0,0) width 4: " "

@@layer at (0,0) size 800x501
534534 RenderTableCell {TD} at (165,0) size 4x18 [r=0 c=19 rs=1 cs=1]
535535 RenderText {#text} at (0,0) size 4x18
536536 text run at (0,0) width 4: " "
537  RenderTableCell {TD} at (169,0) size 11x18 [r=0 c=20 rs=1 cs=1]
538  RenderText {#text} at (0,0) size 11x18
539  text run at (0,0) width 11 RTL: "\x{5D8}"
540  RenderTableCell {TD} at (180,0) size 12x18 [r=0 c=21 rs=1 cs=1]
541  RenderText {#text} at (0,0) size 12x18
542  text run at (0,0) width 12 RTL: "\x{5D7}"
543  RenderTableCell {TD} at (192,0) size 6x18 [r=0 c=22 rs=1 cs=1]
544  RenderText {#text} at (0,0) size 6x18
545  text run at (0,0) width 6 RTL: "\x{5D6}"
546  RenderBlock {P} at (4,22) size 198x18
547  RenderText {#text} at (0,0) size 69x18
548  text run at (0,0) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
549  text run at (27,0) width 42: " ABC "
 537 RenderTableCell {TD} at (169,0) size 11x19 [r=0 c=20 rs=1 cs=1]
 538 RenderText {#text} at (0,1) size 11x18
 539 text run at (0,1) width 11 RTL: "\x{5D8}"
 540 RenderTableCell {TD} at (180,0) size 12x19 [r=0 c=21 rs=1 cs=1]
 541 RenderText {#text} at (0,1) size 12x18
 542 text run at (0,1) width 12 RTL: "\x{5D7}"
 543 RenderTableCell {TD} at (192,0) size 6x19 [r=0 c=22 rs=1 cs=1]
 544 RenderText {#text} at (0,1) size 6x18
 545 text run at (0,1) width 6 RTL: "\x{5D6}"
 546 RenderBlock {P} at (4,23) size 198x19
 547 RenderText {#text} at (0,1) size 69x18
 548 text run at (0,1) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
 549 text run at (27,1) width 42: " ABC "
550550 RenderInline {BDO} at (0,0) size 60x18
551  RenderText {#text} at (69,0) size 60x18
552  text run at (69,0) width 60 RTL override: "\x{5D3}\x{5D4}\x{5D5} DEF"
553  RenderText {#text} at (129,0) size 65x18
554  text run at (129,0) width 37: " GHI "
555  text run at (166,0) width 28 RTL: "\x{5D6}\x{5D7}\x{5D8}"
 551 RenderText {#text} at (69,1) size 60x18
 552 text run at (69,1) width 60 RTL override: "\x{5D3}\x{5D4}\x{5D5} DEF"
 553 RenderText {#text} at (129,1) size 65x18
 554 text run at (129,1) width 37: " GHI "
 555 text run at (166,1) width 28 RTL: "\x{5D6}\x{5D7}\x{5D8}"
556556 RenderText {#text} at (0,0) size 0x0
557  RenderBlock {HR} at (0,360) size 784x2 [border: (1px inset #000000)]
558  RenderBlock {P} at (0,378) size 784x18
 557 RenderBlock {HR} at (0,371) size 784x2 [border: (1px inset #000000)]
 558 RenderBlock {P} at (0,389) size 784x18
559559 RenderText {#text} at (0,0) size 58x18
560560 text run at (0,0) width 58: "(Back to "
561561 RenderInline {A} at (0,0) size 158x18 [color=#0000EE]

@@layer at (0,0) size 800x501
568568 text run at (224,0) width 82: "David Baron"
569569 RenderText {#text} at (306,0) size 5x18
570570 text run at (306,0) width 5: ")"
571  RenderBlock {P} at (0,412) size 784x18
 571 RenderBlock {P} at (0,423) size 784x18
572572 RenderInline {A} at (0,0) size 33x18 [color=#0000EE]
573573 RenderText {#text} at (0,0) size 33x18
574574 text run at (0,0) width 33: "LDB"

@@layer at (0,0) size 800x501
579579 text run at (41,0) width 128: "dbaron@dbaron.org"
580580 RenderText {#text} at (169,0) size 82x18
581581 text run at (169,0) width 82: ", 2001-06-05"
582  RenderBlock {P} at (0,446) size 784x18
 582 RenderBlock {P} at (0,457) size 784x18
583583 RenderText {#text} at (0,0) size 304x18
584584 text run at (0,0) width 304: "Modified and used with the author\x{2019}s permission."
73924

LayoutTests/platform/mac/fast/text/international/bidi-LDB-2-formatting-characters-expected.checksum

1 f0629313dd61600be188624f695f32e7
21\ No newline at end of file
 21401c2229efc9f1461d899f9fde988d4
33\ No newline at end of file
73924

LayoutTests/platform/mac/fast/text/international/bidi-LDB-2-formatting-characters-expected.txt

11layer at (0,0) size 800x600
22 RenderView at (0,0) size 800x600
3 layer at (0,0) size 800x577
4  RenderBlock {HTML} at (0,0) size 800x577
5  RenderBody {BODY} at (8,21) size 784x540
 3layer at (0,0) size 800x588
 4 RenderBlock {HTML} at (0,0) size 800x588
 5 RenderBody {BODY} at (8,21) size 784x551
66 RenderBlock {H1} at (0,0) size 784x37
77 RenderText {#text} at (0,0) size 683x37
88 text run at (0,0) width 683: "Bidirectional Text Test 2 - Formatting Characters"

@@layer at (0,0) size 800x577
3535 RenderBlock {P} at (0,126) size 784x18
3636 RenderText {#text} at (0,0) size 281x18
3737 text run at (0,0) width 281: "In each box, all the lines should be the same."
38  RenderBlock (anonymous) at (0,160) size 784x226
39  RenderBlock {DIV} at (3,3) size 102x170 [border: (1px solid #008000)]
 38 RenderBlock (anonymous) at (0,160) size 784x237
 39 RenderBlock {DIV} at (3,7) size 102x170 [border: (1px solid #008000)]
4040 RenderBlock {P} at (4,4) size 94x18
4141 RenderText {#text} at (0,0) size 94x18
4242 text run at (0,0) width 94: "ABCDEFGHI"

@@layer at (0,0) size 800x577
9090 text run at (0,0) width 34 RTL override: "\x{202C}CBA"
9191 text run at (34,0) width 31 LTR override: "\x{202D}DEF"
9292 text run at (65,0) width 29 RTL override: "\x{202E}IHG"
93  RenderText {#text} at (108,77) size 4x18
94  text run at (108,77) width 4: " "
95  RenderBlock {DIV} at (115,48) size 36x80 [border: (1px solid #008000)]
96  RenderTable {TABLE} at (4,4) size 28x18
97  RenderTableSection {TBODY} at (0,0) size 28x18
98  RenderTableRow {TR} at (0,0) size 28x18
99  RenderTableCell {TD} at (0,0) size 7x18 [r=0 c=0 rs=1 cs=1]
100  RenderText {#text} at (0,0) size 7x18
101  text run at (0,0) width 7 RTL: "\x{5D2}"
102  RenderTableCell {TD} at (7,0) size 10x18 [r=0 c=1 rs=1 cs=1]
103  RenderText {#text} at (0,0) size 10x18
104  text run at (0,0) width 10 RTL: "\x{5D1}"
105  RenderTableCell {TD} at (17,0) size 11x18 [r=0 c=2 rs=1 cs=1]
106  RenderText {#text} at (0,0) size 11x18
107  text run at (0,0) width 11 RTL: "\x{5D0}"
108  RenderBlock {P} at (4,22) size 28x18
109  RenderText {#text} at (0,0) size 27x18
110  text run at (0,0) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
111  RenderBlock {P} at (4,40) size 28x18
112  RenderText {#text} at (0,0) size 27x18
113  text run at (0,0) width 27 RTL: "\x{202A}\x{5D0}\x{5D1}\x{5D2}"
114  text run at (27,0) width 0: "\x{202C}"
115  RenderBlock {P} at (4,58) size 28x18
116  RenderText {#text} at (0,0) size 27x18
117  text run at (0,0) width 27 LTR override: "\x{202D}\x{5D2}\x{5D1}\x{5D0}"
118  text run at (27,0) width 0: "\x{202C}"
119  RenderText {#text} at (154,77) size 4x18
120  text run at (154,77) width 4: " "
121  RenderBlock {DIV} at (161,57) size 105x62 [border: (1px solid #008000)]
122  RenderTable {TABLE} at (4,4) size 97x18
123  RenderTableSection {TBODY} at (0,0) size 97x18
124  RenderTableRow {TR} at (0,0) size 97x18
125  RenderTableCell {TD} at (0,0) size 7x18 [r=0 c=0 rs=1 cs=1]
126  RenderText {#text} at (0,0) size 7x18
127  text run at (0,0) width 7 RTL: "\x{5D2}"
128  RenderTableCell {TD} at (7,0) size 10x18 [r=0 c=1 rs=1 cs=1]
129  RenderText {#text} at (0,0) size 10x18
130  text run at (0,0) width 10 RTL: "\x{5D1}"
131  RenderTableCell {TD} at (17,0) size 11x18 [r=0 c=2 rs=1 cs=1]
132  RenderText {#text} at (0,0) size 11x18
133  text run at (0,0) width 11 RTL: "\x{5D0}"
 93 RenderText {#text} at (108,81) size 4x18
 94 text run at (108,81) width 4: " "
 95 RenderBlock {DIV} at (115,50) size 36x84 [border: (1px solid #008000)]
 96 RenderTable {TABLE} at (4,4) size 28x19
 97 RenderTableSection {TBODY} at (0,0) size 28x19
 98 RenderTableRow {TR} at (0,0) size 28x19
 99 RenderTableCell {TD} at (0,0) size 7x19 [r=0 c=0 rs=1 cs=1]
 100 RenderText {#text} at (0,1) size 7x18
 101 text run at (0,1) width 7 RTL: "\x{5D2}"
 102 RenderTableCell {TD} at (7,0) size 10x19 [r=0 c=1 rs=1 cs=1]
 103 RenderText {#text} at (0,1) size 10x18
 104 text run at (0,1) width 10 RTL: "\x{5D1}"
 105 RenderTableCell {TD} at (17,0) size 11x19 [r=0 c=2 rs=1 cs=1]
 106 RenderText {#text} at (0,1) size 11x18
 107 text run at (0,1) width 11 RTL: "\x{5D0}"
 108 RenderBlock {P} at (4,23) size 28x19
 109 RenderText {#text} at (0,1) size 27x18
 110 text run at (0,1) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
 111 RenderBlock {P} at (4,42) size 28x19
 112 RenderText {#text} at (0,1) size 27x18
 113 text run at (0,1) width 27 RTL: "\x{202A}\x{5D0}\x{5D1}\x{5D2}"
 114 text run at (27,1) width 0: "\x{202C}"
 115 RenderBlock {P} at (4,61) size 28x19
 116 RenderText {#text} at (0,1) size 27x18
 117 text run at (0,1) width 27 LTR override: "\x{202D}\x{5D2}\x{5D1}\x{5D0}"
 118 text run at (27,1) width 0: "\x{202C}"
 119 RenderText {#text} at (154,81) size 4x18
 120 text run at (154,81) width 4: " "
 121 RenderBlock {DIV} at (161,60) size 105x65 [border: (1px solid #008000)]
 122 RenderTable {TABLE} at (4,4) size 97x19
 123 RenderTableSection {TBODY} at (0,0) size 97x19
 124 RenderTableRow {TR} at (0,0) size 97x19
 125 RenderTableCell {TD} at (0,0) size 7x19 [r=0 c=0 rs=1 cs=1]
 126 RenderText {#text} at (0,1) size 7x18
 127 text run at (0,1) width 7 RTL: "\x{5D2}"
 128 RenderTableCell {TD} at (7,0) size 10x19 [r=0 c=1 rs=1 cs=1]
 129 RenderText {#text} at (0,1) size 10x18
 130 text run at (0,1) width 10 RTL: "\x{5D1}"
 131 RenderTableCell {TD} at (17,0) size 11x19 [r=0 c=2 rs=1 cs=1]
 132 RenderText {#text} at (0,1) size 11x18
 133 text run at (0,1) width 11 RTL: "\x{5D0}"
134134 RenderTableCell {TD} at (28,0) size 4x18 [r=0 c=3 rs=1 cs=1]
135135 RenderText {#text} at (0,0) size 4x18
136136 text run at (0,0) width 4: " "

@@layer at (0,0) size 800x577
146146 RenderTableCell {TD} at (66,0) size 4x18 [r=0 c=7 rs=1 cs=1]
147147 RenderText {#text} at (0,0) size 4x18
148148 text run at (0,0) width 4: " "
149  RenderTableCell {TD} at (70,0) size 6x18 [r=0 c=8 rs=1 cs=1]
150  RenderText {#text} at (0,0) size 6x18
151  text run at (0,0) width 6 RTL: "\x{5D5}"
152  RenderTableCell {TD} at (76,0) size 12x18 [r=0 c=9 rs=1 cs=1]
153  RenderText {#text} at (0,0) size 12x18
154  text run at (0,0) width 12 RTL: "\x{5D4}"
155  RenderTableCell {TD} at (88,0) size 9x18 [r=0 c=10 rs=1 cs=1]
156  RenderText {#text} at (0,0) size 9x18
157  text run at (0,0) width 9 RTL: "\x{5D3}"
158  RenderBlock {P} at (4,22) size 97x18
159  RenderText {#text} at (0,0) size 94x18
160  text run at (0,0) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
161  text run at (27,0) width 42: " ABC "
162  text run at (69,0) width 25 RTL: "\x{5D3}\x{5D4}\x{5D5}"
163  RenderBlock {P} at (4,40) size 97x18
164  RenderText {#text} at (0,0) size 94x18
165  text run at (0,0) width 31 RTL: " \x{5D0}\x{5D1}\x{5D2}"
166  text run at (31,0) width 34: "ABC"
167  text run at (65,0) width 29 RTL: "\x{5D3}\x{5D4}\x{5D5} "
168  RenderText {#text} at (269,77) size 4x18
169  text run at (269,77) width 4: " "
170  RenderBlock {DIV} at (276,3) size 173x170 [border: (1px solid #008000)]
171  RenderTable {TABLE} at (4,4) size 165x18
172  RenderTableSection {TBODY} at (0,0) size 165x18
173  RenderTableRow {TR} at (0,0) size 165x18
174  RenderTableCell {TD} at (0,0) size 7x18 [r=0 c=0 rs=1 cs=1]
175  RenderText {#text} at (0,0) size 7x18
176  text run at (0,0) width 7 RTL: "\x{5D2}"
177  RenderTableCell {TD} at (7,0) size 10x18 [r=0 c=1 rs=1 cs=1]
178  RenderText {#text} at (0,0) size 10x18
179  text run at (0,0) width 10 RTL: "\x{5D1}"
180  RenderTableCell {TD} at (17,0) size 11x18 [r=0 c=2 rs=1 cs=1]
181  RenderText {#text} at (0,0) size 11x18
182  text run at (0,0) width 11 RTL: "\x{5D0}"
 149 RenderTableCell {TD} at (70,0) size 6x19 [r=0 c=8 rs=1 cs=1]
 150 RenderText {#text} at (0,1) size 6x18
 151 text run at (0,1) width 6 RTL: "\x{5D5}"
 152 RenderTableCell {TD} at (76,0) size 12x19 [r=0 c=9 rs=1 cs=1]
 153 RenderText {#text} at (0,1) size 12x18
 154 text run at (0,1) width 12 RTL: "\x{5D4}"
 155 RenderTableCell {TD} at (88,0) size 9x19 [r=0 c=10 rs=1 cs=1]
 156 RenderText {#text} at (0,1) size 9x18
 157 text run at (0,1) width 9 RTL: "\x{5D3}"
 158 RenderBlock {P} at (4,23) size 97x19
 159 RenderText {#text} at (0,1) size 94x18
 160 text run at (0,1) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
 161 text run at (27,1) width 42: " ABC "
 162 text run at (69,1) width 25 RTL: "\x{5D3}\x{5D4}\x{5D5}"
 163 RenderBlock {P} at (4,42) size 97x19
 164 RenderText {#text} at (0,1) size 94x18
 165 text run at (0,1) width 31 RTL: " \x{5D0}\x{5D1}\x{5D2}"
 166 text run at (31,1) width 34: "ABC"
 167 text run at (65,1) width 29 RTL: "\x{5D3}\x{5D4}\x{5D5} "
 168 RenderText {#text} at (269,81) size 4x18
 169 text run at (269,81) width 4: " "
 170 RenderBlock {DIV} at (276,3) size 173x179 [border: (1px solid #008000)]
 171 RenderTable {TABLE} at (4,4) size 165x19
 172 RenderTableSection {TBODY} at (0,0) size 165x19
 173 RenderTableRow {TR} at (0,0) size 165x19
 174 RenderTableCell {TD} at (0,0) size 7x19 [r=0 c=0 rs=1 cs=1]
 175 RenderText {#text} at (0,1) size 7x18
 176 text run at (0,1) width 7 RTL: "\x{5D2}"
 177 RenderTableCell {TD} at (7,0) size 10x19 [r=0 c=1 rs=1 cs=1]
 178 RenderText {#text} at (0,1) size 10x18
 179 text run at (0,1) width 10 RTL: "\x{5D1}"
 180 RenderTableCell {TD} at (17,0) size 11x19 [r=0 c=2 rs=1 cs=1]
 181 RenderText {#text} at (0,1) size 11x18
 182 text run at (0,1) width 11 RTL: "\x{5D0}"
183183 RenderTableCell {TD} at (28,0) size 4x18 [r=0 c=3 rs=1 cs=1]
184184 RenderText {#text} at (0,0) size 4x18
185185 text run at (0,0) width 4: " "

@@layer at (0,0) size 800x577
195195 RenderTableCell {TD} at (66,0) size 4x18 [r=0 c=7 rs=1 cs=1]
196196 RenderText {#text} at (0,0) size 4x18
197197 text run at (0,0) width 4: " "
198  RenderTableCell {TD} at (70,0) size 6x18 [r=0 c=8 rs=1 cs=1]
199  RenderText {#text} at (0,0) size 6x18
200  text run at (0,0) width 6 RTL: "\x{5D5}"
201  RenderTableCell {TD} at (76,0) size 12x18 [r=0 c=9 rs=1 cs=1]
202  RenderText {#text} at (0,0) size 12x18
203  text run at (0,0) width 12 RTL: "\x{5D4}"
204  RenderTableCell {TD} at (88,0) size 9x18 [r=0 c=10 rs=1 cs=1]
205  RenderText {#text} at (0,0) size 9x18
206  text run at (0,0) width 9 RTL: "\x{5D3}"
 198 RenderTableCell {TD} at (70,0) size 6x19 [r=0 c=8 rs=1 cs=1]
 199 RenderText {#text} at (0,1) size 6x18
 200 text run at (0,1) width 6 RTL: "\x{5D5}"
 201 RenderTableCell {TD} at (76,0) size 12x19 [r=0 c=9 rs=1 cs=1]
 202 RenderText {#text} at (0,1) size 12x18
 203 text run at (0,1) width 12 RTL: "\x{5D4}"
 204 RenderTableCell {TD} at (88,0) size 9x19 [r=0 c=10 rs=1 cs=1]
 205 RenderText {#text} at (0,1) size 9x18
 206 text run at (0,1) width 9 RTL: "\x{5D3}"
207207 RenderTableCell {TD} at (97,0) size 4x18 [r=0 c=11 rs=1 cs=1]
208208 RenderText {#text} at (0,0) size 4x18
209209 text run at (0,0) width 4: " "

@@layer at (0,0) size 800x577
219219 RenderTableCell {TD} at (132,0) size 4x18 [r=0 c=15 rs=1 cs=1]
220220 RenderText {#text} at (0,0) size 4x18
221221 text run at (0,0) width 4: " "
222  RenderTableCell {TD} at (136,0) size 11x18 [r=0 c=16 rs=1 cs=1]
223  RenderText {#text} at (0,0) size 11x18
224  text run at (0,0) width 11 RTL: "\x{5D8}"
225  RenderTableCell {TD} at (147,0) size 12x18 [r=0 c=17 rs=1 cs=1]
226  RenderText {#text} at (0,0) size 12x18
227  text run at (0,0) width 12 RTL: "\x{5D7}"
228  RenderTableCell {TD} at (159,0) size 6x18 [r=0 c=18 rs=1 cs=1]
229  RenderText {#text} at (0,0) size 6x18
230  text run at (0,0) width 6 RTL: "\x{5D6}"
231  RenderBlock {P} at (4,22) size 165x18
232  RenderText {#text} at (0,0) size 161x18
233  text run at (0,0) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
234  text run at (27,0) width 42: " ABC "
235  text run at (69,0) width 25 RTL: "\x{5D3}\x{5D4}\x{5D5}"
236  text run at (94,0) width 39: " DEF "
237  text run at (133,0) width 28 RTL: "\x{5D6}\x{5D7}\x{5D8}"
238  RenderBlock {P} at (4,40) size 165x18
239  RenderText {#text} at (0,0) size 31x18
240  text run at (0,0) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
241  text run at (27,0) width 4: " "
 222 RenderTableCell {TD} at (136,0) size 11x19 [r=0 c=16 rs=1 cs=1]
 223 RenderText {#text} at (0,1) size 11x18
 224 text run at (0,1) width 11 RTL: "\x{5D8}"
 225 RenderTableCell {TD} at (147,0) size 12x19 [r=0 c=17 rs=1 cs=1]
 226 RenderText {#text} at (0,1) size 12x18
 227 text run at (0,1) width 12 RTL: "\x{5D7}"
 228 RenderTableCell {TD} at (159,0) size 6x19 [r=0 c=18 rs=1 cs=1]
 229 RenderText {#text} at (0,1) size 6x18
 230 text run at (0,1) width 6 RTL: "\x{5D6}"
 231 RenderBlock {P} at (4,23) size 165x19
 232 RenderText {#text} at (0,1) size 161x18
 233 text run at (0,1) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
 234 text run at (27,1) width 42: " ABC "
 235 text run at (69,1) width 25 RTL: "\x{5D3}\x{5D4}\x{5D5}"
 236 text run at (94,1) width 39: " DEF "
 237 text run at (133,1) width 28 RTL: "\x{5D6}\x{5D7}\x{5D8}"
 238 RenderBlock {P} at (4,42) size 165x19
 239 RenderText {#text} at (0,1) size 31x18
 240 text run at (0,1) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
 241 text run at (27,1) width 4: " "
242242 RenderInline {SPAN} at (0,0) size 63x18
243  RenderText {#text} at (31,0) size 63x18
244  text run at (31,0) width 38: "ABC "
245  text run at (69,0) width 25 RTL: "\x{5D3}\x{5D4}\x{5D5}"
246  RenderText {#text} at (94,0) size 67x18
247  text run at (94,0) width 39: " DEF "
248  text run at (133,0) width 28 RTL: "\x{5D6}\x{5D7}\x{5D8}"
249  RenderBlock {P} at (4,58) size 165x18
250  RenderText {#text} at (0,0) size 161x18
251  text run at (0,0) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
252  text run at (27,0) width 4: " "
253  text run at (31,0) width 38: "\x{202A}ABC "
254  text run at (69,0) width 25 RTL: "\x{5D3}\x{5D4}\x{5D5}"
255  text run at (94,0) width 35: " DEF"
256  text run at (129,0) width 4: "\x{202C} "
257  text run at (133,0) width 28 RTL: "\x{5D6}\x{5D7}\x{5D8}"
258  RenderBlock {P} at (4,76) size 165x18
259  RenderText {#text} at (0,0) size 161x18
260  text run at (0,0) width 31 RTL: "\x{202C} \x{5D0}\x{5D1}\x{5D2}"
261  text run at (31,0) width 34: "ABC"
262  text run at (65,0) width 33 RTL: " \x{5D3}\x{5D4}\x{5D5} "
263  text run at (98,0) width 31: "\x{202B}DEF"
264  text run at (129,0) width 32 RTL: "\x{5D6}\x{5D7}\x{5D8} "
265  RenderBlock {P} at (4,94) size 165x18
266  RenderText {#text} at (0,0) size 161x18
267  text run at (0,0) width 31 RTL: " \x{5D0}\x{5D1}\x{5D2}"
268  text run at (31,0) width 34: "\x{202B}ABC"
269  text run at (65,0) width 29 RTL: "\x{5D3}\x{5D4}\x{5D5} "
270  text run at (94,0) width 39: "\x{202C} DEF "
271  text run at (133,0) width 28 RTL: "\x{5D6}\x{5D7}\x{5D8}"
272  RenderBlock {P} at (4,112) size 165x18
273  RenderText {#text} at (0,0) size 161x18
274  text run at (0,0) width 65 RTL override: "\x{202E}CBA \x{5D0}\x{5D1}\x{5D2}"
275  text run at (65,0) width 29 RTL: "\x{5D3}\x{5D4}\x{5D5} "
276  text run at (94,0) width 39: "\x{202C} DEF "
277  text run at (133,0) width 28 RTL: "\x{5D6}\x{5D7}\x{5D8}"
278  RenderBlock {P} at (4,130) size 165x18
279  RenderText {#text} at (0,0) size 161x18
280  text run at (0,0) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
281  text run at (27,0) width 4: " "
282  text run at (31,0) width 63 LTR override: "\x{202D}ABC \x{5D5}\x{5D4}\x{5D3}"
283  text run at (94,0) width 39: "\x{202C} DEF "
284  text run at (133,0) width 28 RTL: "\x{5D6}\x{5D7}\x{5D8}"
285  RenderBlock {P} at (4,148) size 165x18
286  RenderText {#text} at (0,0) size 161x18
287  text run at (0,0) width 31 RTL: " \x{5D0}\x{5D1}\x{5D2}"
288  text run at (31,0) width 63 LTR override: "\x{202D}ABC \x{5D5}\x{5D4}\x{5D3}"
289  text run at (94,0) width 35: "\x{202C} DEF"
290  text run at (129,0) width 32 RTL: "\x{5D6}\x{5D7}\x{5D8} "
291  RenderText {#text} at (452,77) size 4x18
292  text run at (452,77) width 4: " "
293  RenderBlock {DIV} at (459,66) size 206x44 [border: (1px solid #008000)]
294  RenderTable {TABLE} at (4,4) size 198x18
295  RenderTableSection {TBODY} at (0,0) size 198x18
296  RenderTableRow {TR} at (0,0) size 198x18
297  RenderTableCell {TD} at (0,0) size 7x18 [r=0 c=0 rs=1 cs=1]
298  RenderText {#text} at (0,0) size 7x18
299  text run at (0,0) width 7 RTL: "\x{5D2}"
300  RenderTableCell {TD} at (7,0) size 10x18 [r=0 c=1 rs=1 cs=1]
301  RenderText {#text} at (0,0) size 10x18
302  text run at (0,0) width 10 RTL: "\x{5D1}"
303  RenderTableCell {TD} at (17,0) size 11x18 [r=0 c=2 rs=1 cs=1]
304  RenderText {#text} at (0,0) size 11x18
305  text run at (0,0) width 11 RTL: "\x{5D0}"
 243 RenderText {#text} at (31,1) size 63x18
 244 text run at (31,1) width 38: "ABC "
 245 text run at (69,1) width 25 RTL: "\x{5D3}\x{5D4}\x{5D5}"
 246 RenderText {#text} at (94,1) size 67x18
 247 text run at (94,1) width 39: " DEF "
 248 text run at (133,1) width 28 RTL: "\x{5D6}\x{5D7}\x{5D8}"
 249 RenderBlock {P} at (4,61) size 165x19
 250 RenderText {#text} at (0,1) size 161x18
 251 text run at (0,1) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
 252 text run at (27,1) width 4: " "
 253 text run at (31,1) width 38: "\x{202A}ABC "
 254 text run at (69,1) width 25 RTL: "\x{5D3}\x{5D4}\x{5D5}"
 255 text run at (94,1) width 35: " DEF"
 256 text run at (129,1) width 4: "\x{202C} "
 257 text run at (133,1) width 28 RTL: "\x{5D6}\x{5D7}\x{5D8}"
 258 RenderBlock {P} at (4,80) size 165x19
 259 RenderText {#text} at (0,1) size 161x18
 260 text run at (0,1) width 31 RTL: "\x{202C} \x{5D0}\x{5D1}\x{5D2}"
 261 text run at (31,1) width 34: "ABC"
 262 text run at (65,1) width 33 RTL: " \x{5D3}\x{5D4}\x{5D5} "
 263 text run at (98,1) width 31: "\x{202B}DEF"
 264 text run at (129,1) width 32 RTL: "\x{5D6}\x{5D7}\x{5D8} "
 265 RenderBlock {P} at (4,99) size 165x19
 266 RenderText {#text} at (0,1) size 161x18
 267 text run at (0,1) width 31 RTL: " \x{5D0}\x{5D1}\x{5D2}"
 268 text run at (31,1) width 34: "\x{202B}ABC"
 269 text run at (65,1) width 29 RTL: "\x{5D3}\x{5D4}\x{5D5} "
 270 text run at (94,1) width 39: "\x{202C} DEF "
 271 text run at (133,1) width 28 RTL: "\x{5D6}\x{5D7}\x{5D8}"
 272 RenderBlock {P} at (4,118) size 165x19
 273 RenderText {#text} at (0,1) size 161x18
 274 text run at (0,1) width 65 RTL override: "\x{202E}CBA \x{5D0}\x{5D1}\x{5D2}"
 275 text run at (65,1) width 29 RTL: "\x{5D3}\x{5D4}\x{5D5} "
 276 text run at (94,1) width 39: "\x{202C} DEF "
 277 text run at (133,1) width 28 RTL: "\x{5D6}\x{5D7}\x{5D8}"
 278 RenderBlock {P} at (4,137) size 165x19
 279 RenderText {#text} at (0,1) size 161x18
 280 text run at (0,1) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
 281 text run at (27,1) width 4: " "
 282 text run at (31,1) width 63 LTR override: "\x{202D}ABC \x{5D5}\x{5D4}\x{5D3}"
 283 text run at (94,1) width 39: "\x{202C} DEF "
 284 text run at (133,1) width 28 RTL: "\x{5D6}\x{5D7}\x{5D8}"
 285 RenderBlock {P} at (4,156) size 165x19
 286 RenderText {#text} at (0,1) size 161x18
 287 text run at (0,1) width 31 RTL: " \x{5D0}\x{5D1}\x{5D2}"
 288 text run at (31,1) width 63 LTR override: "\x{202D}ABC \x{5D5}\x{5D4}\x{5D3}"
 289 text run at (94,1) width 35: "\x{202C} DEF"
 290 text run at (129,1) width 32 RTL: "\x{5D6}\x{5D7}\x{5D8} "
 291 RenderText {#text} at (452,81) size 4x18
 292 text run at (452,81) width 4: " "
 293 RenderBlock {DIV} at (459,69) size 206x46 [border: (1px solid #008000)]
 294 RenderTable {TABLE} at (4,4) size 198x19
 295 RenderTableSection {TBODY} at (0,0) size 198x19
 296 RenderTableRow {TR} at (0,0) size 198x19
 297 RenderTableCell {TD} at (0,0) size 7x19 [r=0 c=0 rs=1 cs=1]
 298 RenderText {#text} at (0,1) size 7x18
 299 text run at (0,1) width 7 RTL: "\x{5D2}"
 300 RenderTableCell {TD} at (7,0) size 10x19 [r=0 c=1 rs=1 cs=1]
 301 RenderText {#text} at (0,1) size 10x18
 302 text run at (0,1) width 10 RTL: "\x{5D1}"
 303 RenderTableCell {TD} at (17,0) size 11x19 [r=0 c=2 rs=1 cs=1]
 304 RenderText {#text} at (0,1) size 11x18
 305 text run at (0,1) width 11 RTL: "\x{5D0}"
306306 RenderTableCell {TD} at (28,0) size 4x18 [r=0 c=3 rs=1 cs=1]
307307 RenderText {#text} at (0,0) size 4x18
308308 text run at (0,0) width 4: " "

@@layer at (0,0) size 800x577
318318 RenderTableCell {TD} at (66,0) size 4x18 [r=0 c=7 rs=1 cs=1]
319319 RenderText {#text} at (0,0) size 4x18
320320 text run at (0,0) width 4: " "
321  RenderTableCell {TD} at (70,0) size 6x18 [r=0 c=8 rs=1 cs=1]
322  RenderText {#text} at (0,0) size 6x18
323  text run at (0,0) width 6 RTL: "\x{5D5}"
324  RenderTableCell {TD} at (76,0) size 12x18 [r=0 c=9 rs=1 cs=1]
325  RenderText {#text} at (0,0) size 12x18
326  text run at (0,0) width 12 RTL: "\x{5D4}"
327  RenderTableCell {TD} at (88,0) size 9x18 [r=0 c=10 rs=1 cs=1]
328  RenderText {#text} at (0,0) size 9x18
329  text run at (0,0) width 9 RTL: "\x{5D3}"
 321 RenderTableCell {TD} at (70,0) size 6x19 [r=0 c=8 rs=1 cs=1]
 322 RenderText {#text} at (0,1) size 6x18
 323 text run at (0,1) width 6 RTL: "\x{5D5}"
 324 RenderTableCell {TD} at (76,0) size 12x19 [r=0 c=9 rs=1 cs=1]
 325 RenderText {#text} at (0,1) size 12x18
 326 text run at (0,1) width 12 RTL: "\x{5D4}"
 327 RenderTableCell {TD} at (88,0) size 9x19 [r=0 c=10 rs=1 cs=1]
 328 RenderText {#text} at (0,1) size 9x18
 329 text run at (0,1) width 9 RTL: "\x{5D3}"
330330 RenderTableCell {TD} at (97,0) size 4x18 [r=0 c=11 rs=1 cs=1]
331331 RenderText {#text} at (0,0) size 4x18
332332 text run at (0,0) width 4: " "

@@layer at (0,0) size 800x577
354354 RenderTableCell {TD} at (165,0) size 4x18 [r=0 c=19 rs=1 cs=1]
355355 RenderText {#text} at (0,0) size 4x18
356356 text run at (0,0) width 4: " "
357  RenderTableCell {TD} at (169,0) size 11x18 [r=0 c=20 rs=1 cs=1]
358  RenderText {#text} at (0,0) size 11x18
359  text run at (0,0) width 11 RTL: "\x{5D8}"
360  RenderTableCell {TD} at (180,0) size 12x18 [r=0 c=21 rs=1 cs=1]
361  RenderText {#text} at (0,0) size 12x18
362  text run at (0,0) width 12 RTL: "\x{5D7}"
363  RenderTableCell {TD} at (192,0) size 6x18 [r=0 c=22 rs=1 cs=1]
364  RenderText {#text} at (0,0) size 6x18
365  text run at (0,0) width 6 RTL: "\x{5D6}"
366  RenderBlock {P} at (4,22) size 198x18
367  RenderText {#text} at (0,0) size 194x18
368  text run at (0,0) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
369  text run at (27,0) width 42: " ABC "
370  text run at (69,0) width 25 RTL: "\x{5D3}\x{5D4}\x{5D5}"
371  text run at (94,0) width 72: " DEF GHI "
372  text run at (166,0) width 28 RTL: "\x{5D6}\x{5D7}\x{5D8}"
373  RenderText {#text} at (668,77) size 4x18
374  text run at (668,77) width 4: " "
375  RenderBR {BR} at (672,77) size 0x18
376  RenderBlock {DIV} at (3,179) size 206x44 [border: (1px solid #008000)]
377  RenderTable {TABLE} at (4,4) size 198x18
378  RenderTableSection {TBODY} at (0,0) size 198x18
379  RenderTableRow {TR} at (0,0) size 198x18
 357 RenderTableCell {TD} at (169,0) size 11x19 [r=0 c=20 rs=1 cs=1]
 358 RenderText {#text} at (0,1) size 11x18
 359 text run at (0,1) width 11 RTL: "\x{5D8}"
 360 RenderTableCell {TD} at (180,0) size 12x19 [r=0 c=21 rs=1 cs=1]
 361 RenderText {#text} at (0,1) size 12x18
 362 text run at (0,1) width 12 RTL: "\x{5D7}"
 363 RenderTableCell {TD} at (192,0) size 6x19 [r=0 c=22 rs=1 cs=1]
 364 RenderText {#text} at (0,1) size 6x18
 365 text run at (0,1) width 6 RTL: "\x{5D6}"
 366 RenderBlock {P} at (4,23) size 198x19
 367 RenderText {#text} at (0,1) size 194x18
 368 text run at (0,1) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
 369 text run at (27,1) width 42: " ABC "
 370 text run at (69,1) width 25 RTL: "\x{5D3}\x{5D4}\x{5D5}"
 371 text run at (94,1) width 72: " DEF GHI "
 372 text run at (166,1) width 28 RTL: "\x{5D6}\x{5D7}\x{5D8}"
 373 RenderText {#text} at (668,81) size 4x18
 374 text run at (668,81) width 4: " "
 375 RenderBR {BR} at (672,81) size 0x18
 376 RenderBlock {DIV} at (3,188) size 206x46 [border: (1px solid #008000)]
 377 RenderTable {TABLE} at (4,4) size 198x19
 378 RenderTableSection {TBODY} at (0,0) size 198x19
 379 RenderTableRow {TR} at (0,0) size 198x19
380380 RenderTableCell {TD} at (0,0) size 9x18 [r=0 c=0 rs=1 cs=1]
381381 RenderText {#text} at (0,0) size 9x18
382382 text run at (0,0) width 9: "F"

@@layer at (0,0) size 800x577
389389 RenderTableCell {TD} at (31,0) size 4x18 [r=0 c=3 rs=1 cs=1]
390390 RenderText {#text} at (0,0) size 4x18
391391 text run at (0,0) width 4: " "
392  RenderTableCell {TD} at (35,0) size 6x18 [r=0 c=4 rs=1 cs=1]
393  RenderText {#text} at (0,0) size 6x18
394  text run at (0,0) width 6 RTL: "\x{5D5}"
395  RenderTableCell {TD} at (41,0) size 12x18 [r=0 c=5 rs=1 cs=1]
396  RenderText {#text} at (0,0) size 12x18
397  text run at (0,0) width 12 RTL: "\x{5D4}"
398  RenderTableCell {TD} at (53,0) size 9x18 [r=0 c=6 rs=1 cs=1]
399  RenderText {#text} at (0,0) size 9x18
400  text run at (0,0) width 9 RTL: "\x{5D3}"
 392 RenderTableCell {TD} at (35,0) size 6x19 [r=0 c=4 rs=1 cs=1]
 393 RenderText {#text} at (0,1) size 6x18
 394 text run at (0,1) width 6 RTL: "\x{5D5}"
 395 RenderTableCell {TD} at (41,0) size 12x19 [r=0 c=5 rs=1 cs=1]
 396 RenderText {#text} at (0,1) size 12x18
 397 text run at (0,1) width 12 RTL: "\x{5D4}"
 398 RenderTableCell {TD} at (53,0) size 9x19 [r=0 c=6 rs=1 cs=1]
 399 RenderText {#text} at (0,1) size 9x18
 400 text run at (0,1) width 9 RTL: "\x{5D3}"
401401 RenderTableCell {TD} at (62,0) size 4x18 [r=0 c=7 rs=1 cs=1]
402402 RenderText {#text} at (0,0) size 4x18
403403 text run at (0,0) width 4: " "

@@layer at (0,0) size 800x577
413413 RenderTableCell {TD} at (100,0) size 4x18 [r=0 c=11 rs=1 cs=1]
414414 RenderText {#text} at (0,0) size 4x18
415415 text run at (0,0) width 4: " "
416  RenderTableCell {TD} at (104,0) size 7x18 [r=0 c=12 rs=1 cs=1]
417  RenderText {#text} at (0,0) size 7x18
418  text run at (0,0) width 7 RTL: "\x{5D2}"
419  RenderTableCell {TD} at (111,0) size 10x18 [r=0 c=13 rs=1 cs=1]
420  RenderText {#text} at (0,0) size 10x18
421  text run at (0,0) width 10 RTL: "\x{5D1}"
422  RenderTableCell {TD} at (121,0) size 11x18 [r=0 c=14 rs=1 cs=1]
423  RenderText {#text} at (0,0) size 11x18
424  text run at (0,0) width 11 RTL: "\x{5D0}"
 416 RenderTableCell {TD} at (104,0) size 7x19 [r=0 c=12 rs=1 cs=1]
 417 RenderText {#text} at (0,1) size 7x18
 418 text run at (0,1) width 7 RTL: "\x{5D2}"
 419 RenderTableCell {TD} at (111,0) size 10x19 [r=0 c=13 rs=1 cs=1]
 420 RenderText {#text} at (0,1) size 10x18
 421 text run at (0,1) width 10 RTL: "\x{5D1}"
 422 RenderTableCell {TD} at (121,0) size 11x19 [r=0 c=14 rs=1 cs=1]
 423 RenderText {#text} at (0,1) size 11x18
 424 text run at (0,1) width 11 RTL: "\x{5D0}"
425425 RenderTableCell {TD} at (132,0) size 4x18 [r=0 c=15 rs=1 cs=1]
426426 RenderText {#text} at (0,0) size 4x18
427427 text run at (0,0) width 4: " "

@@layer at (0,0) size 800x577
437437 RenderTableCell {TD} at (165,0) size 4x18 [r=0 c=19 rs=1 cs=1]
438438 RenderText {#text} at (0,0) size 4x18
439439 text run at (0,0) width 4: " "
440  RenderTableCell {TD} at (169,0) size 11x18 [r=0 c=20 rs=1 cs=1]
441  RenderText {#text} at (0,0) size 11x18
442  text run at (0,0) width 11 RTL: "\x{5D8}"
443  RenderTableCell {TD} at (180,0) size 12x18 [r=0 c=21 rs=1 cs=1]
444  RenderText {#text} at (0,0) size 12x18
445  text run at (0,0) width 12 RTL: "\x{5D7}"
446  RenderTableCell {TD} at (192,0) size 6x18 [r=0 c=22 rs=1 cs=1]
447  RenderText {#text} at (0,0) size 6x18
448  text run at (0,0) width 6 RTL: "\x{5D6}"
449  RenderBlock {P} at (4,22) size 198x18
450  RenderText {#text} at (0,0) size 194x18
451  text run at (0,0) width 98 RTL override: "\x{202E}ABC \x{5D3}\x{5D4}\x{5D5} DEF"
452  text run at (98,0) width 31 RTL: "\x{5D0}\x{5D1}\x{5D2} "
453  text run at (129,0) width 37: "\x{202C} GHI "
454  text run at (166,0) width 28 RTL: "\x{5D6}\x{5D7}\x{5D8}"
455  RenderText {#text} at (212,190) size 4x18
456  text run at (212,190) width 4: " "
457  RenderBlock {DIV} at (219,179) size 206x44 [border: (1px solid #008000)]
458  RenderTable {TABLE} at (4,4) size 198x18
459  RenderTableSection {TBODY} at (0,0) size 198x18
460  RenderTableRow {TR} at (0,0) size 198x18
461  RenderTableCell {TD} at (0,0) size 7x18 [r=0 c=0 rs=1 cs=1]
462  RenderText {#text} at (0,0) size 7x18
463  text run at (0,0) width 7 RTL: "\x{5D2}"
464  RenderTableCell {TD} at (7,0) size 10x18 [r=0 c=1 rs=1 cs=1]
465  RenderText {#text} at (0,0) size 10x18
466  text run at (0,0) width 10 RTL: "\x{5D1}"
467  RenderTableCell {TD} at (17,0) size 11x18 [r=0 c=2 rs=1 cs=1]
468  RenderText {#text} at (0,0) size 11x18
469  text run at (0,0) width 11 RTL: "\x{5D0}"
 440 RenderTableCell {TD} at (169,0) size 11x19 [r=0 c=20 rs=1 cs=1]
 441 RenderText {#text} at (0,1) size 11x18
 442 text run at (0,1) width 11 RTL: "\x{5D8}"
 443 RenderTableCell {TD} at (180,0) size 12x19 [r=0 c=21 rs=1 cs=1]
 444 RenderText {#text} at (0,1) size 12x18
 445 text run at (0,1) width 12 RTL: "\x{5D7}"
 446 RenderTableCell {TD} at (192,0) size 6x19 [r=0 c=22 rs=1 cs=1]
 447 RenderText {#text} at (0,1) size 6x18
 448 text run at (0,1) width 6 RTL: "\x{5D6}"
 449 RenderBlock {P} at (4,23) size 198x19
 450 RenderText {#text} at (0,1) size 194x18
 451 text run at (0,1) width 98 RTL override: "\x{202E}ABC \x{5D3}\x{5D4}\x{5D5} DEF"
 452 text run at (98,1) width 31 RTL: "\x{5D0}\x{5D1}\x{5D2} "
 453 text run at (129,1) width 37: "\x{202C} GHI "
 454 text run at (166,1) width 28 RTL: "\x{5D6}\x{5D7}\x{5D8}"
 455 RenderText {#text} at (212,200) size 4x18
 456 text run at (212,200) width 4: " "
 457 RenderBlock {DIV} at (219,188) size 206x46 [border: (1px solid #008000)]
 458 RenderTable {TABLE} at (4,4) size 198x19
 459 RenderTableSection {TBODY} at (0,0) size 198x19
 460 RenderTableRow {TR} at (0,0) size 198x19
 461 RenderTableCell {TD} at (0,0) size 7x19 [r=0 c=0 rs=1 cs=1]
 462 RenderText {#text} at (0,1) size 7x18
 463 text run at (0,1) width 7 RTL: "\x{5D2}"
 464 RenderTableCell {TD} at (7,0) size 10x19 [r=0 c=1 rs=1 cs=1]
 465 RenderText {#text} at (0,1) size 10x18
 466 text run at (0,1) width 10 RTL: "\x{5D1}"
 467 RenderTableCell {TD} at (17,0) size 11x19 [r=0 c=2 rs=1 cs=1]
 468 RenderText {#text} at (0,1) size 11x18
 469 text run at (0,1) width 11 RTL: "\x{5D0}"
470470 RenderTableCell {TD} at (28,0) size 4x18 [r=0 c=3 rs=1 cs=1]
471471 RenderText {#text} at (0,0) size 4x18
472472 text run at (0,0) width 4: " "

@@layer at (0,0) size 800x577
494494 RenderTableCell {TD} at (101,0) size 4x18 [r=0 c=11 rs=1 cs=1]
495495 RenderText {#text} at (0,0) size 4x18
496496 text run at (0,0) width 4: " "
497  RenderTableCell {TD} at (105,0) size 6x18 [r=0 c=12 rs=1 cs=1]
498  RenderText {#text} at (0,0) size 6x18
499  text run at (0,0) width 6 RTL: "\x{5D5}"
500  RenderTableCell {TD} at (111,0) size 12x18 [r=0 c=13 rs=1 cs=1]
501  RenderText {#text} at (0,0) size 12x18
502  text run at (0,0) width 12 RTL: "\x{5D4}"
503  RenderTableCell {TD} at (123,0) size 9x18 [r=0 c=14 rs=1 cs=1]
504  RenderText {#text} at (0,0) size 9x18
505  text run at (0,0) width 9 RTL: "\x{5D3}"
 497 RenderTableCell {TD} at (105,0) size 6x19 [r=0 c=12 rs=1 cs=1]
 498 RenderText {#text} at (0,1) size 6x18
 499 text run at (0,1) width 6 RTL: "\x{5D5}"
 500 RenderTableCell {TD} at (111,0) size 12x19 [r=0 c=13 rs=1 cs=1]
 501 RenderText {#text} at (0,1) size 12x18
 502 text run at (0,1) width 12 RTL: "\x{5D4}"
 503 RenderTableCell {TD} at (123,0) size 9x19 [r=0 c=14 rs=1 cs=1]
 504 RenderText {#text} at (0,1) size 9x18
 505 text run at (0,1) width 9 RTL: "\x{5D3}"
506506 RenderTableCell {TD} at (132,0) size 4x18 [r=0 c=15 rs=1 cs=1]
507507 RenderText {#text} at (0,0) size 4x18
508508 text run at (0,0) width 4: " "

@@layer at (0,0) size 800x577
518518 RenderTableCell {TD} at (165,0) size 4x18 [r=0 c=19 rs=1 cs=1]
519519 RenderText {#text} at (0,0) size 4x18
520520 text run at (0,0) width 4: " "
521  RenderTableCell {TD} at (169,0) size 11x18 [r=0 c=20 rs=1 cs=1]
522  RenderText {#text} at (0,0) size 11x18
523  text run at (0,0) width 11 RTL: "\x{5D8}"
524  RenderTableCell {TD} at (180,0) size 12x18 [r=0 c=21 rs=1 cs=1]
525  RenderText {#text} at (0,0) size 12x18
526  text run at (0,0) width 12 RTL: "\x{5D7}"
527  RenderTableCell {TD} at (192,0) size 6x18 [r=0 c=22 rs=1 cs=1]
528  RenderText {#text} at (0,0) size 6x18
529  text run at (0,0) width 6 RTL: "\x{5D6}"
530  RenderBlock {P} at (4,22) size 198x18
531  RenderText {#text} at (0,0) size 194x18
532  text run at (0,0) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
533  text run at (27,0) width 42: " ABC "
534  text run at (69,0) width 60 RTL override: "\x{202E}\x{5D3}\x{5D4}\x{5D5} DEF"
535  text run at (129,0) width 37: "\x{202C} GHI "
536  text run at (166,0) width 28 RTL: "\x{5D6}\x{5D7}\x{5D8}"
 521 RenderTableCell {TD} at (169,0) size 11x19 [r=0 c=20 rs=1 cs=1]
 522 RenderText {#text} at (0,1) size 11x18
 523 text run at (0,1) width 11 RTL: "\x{5D8}"
 524 RenderTableCell {TD} at (180,0) size 12x19 [r=0 c=21 rs=1 cs=1]
 525 RenderText {#text} at (0,1) size 12x18
 526 text run at (0,1) width 12 RTL: "\x{5D7}"
 527 RenderTableCell {TD} at (192,0) size 6x19 [r=0 c=22 rs=1 cs=1]
 528 RenderText {#text} at (0,1) size 6x18
 529 text run at (0,1) width 6 RTL: "\x{5D6}"
 530 RenderBlock {P} at (4,23) size 198x19
 531 RenderText {#text} at (0,1) size 194x18
 532 text run at (0,1) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
 533 text run at (27,1) width 42: " ABC "
 534 text run at (69,1) width 60 RTL override: "\x{202E}\x{5D3}\x{5D4}\x{5D5} DEF"
 535 text run at (129,1) width 37: "\x{202C} GHI "
 536 text run at (166,1) width 28 RTL: "\x{5D6}\x{5D7}\x{5D8}"
537537 RenderText {#text} at (0,0) size 0x0
538  RenderBlock {P} at (0,402) size 784x18
 538 RenderBlock {P} at (0,413) size 784x18
539539 RenderText {#text} at (0,0) size 369x18
540540 text run at (0,0) width 39: "Note: "
541541 text run at (39,0) width 330: "This test does not test RLM or LRM, but it ought to."
542  RenderBlock {HR} at (0,436) size 784x2 [border: (1px inset #000000)]
543  RenderBlock {P} at (0,454) size 784x18
 542 RenderBlock {HR} at (0,447) size 784x2 [border: (1px inset #000000)]
 543 RenderBlock {P} at (0,465) size 784x18
544544 RenderText {#text} at (0,0) size 58x18
545545 text run at (0,0) width 58: "(Back to "
546546 RenderInline {A} at (0,0) size 158x18 [color=#0000EE]

@@layer at (0,0) size 800x577
553553 text run at (224,0) width 82: "David Baron"
554554 RenderText {#text} at (306,0) size 5x18
555555 text run at (306,0) width 5: ")"
556  RenderBlock {P} at (0,488) size 784x18
 556 RenderBlock {P} at (0,499) size 784x18
557557 RenderInline {A} at (0,0) size 33x18 [color=#0000EE]
558558 RenderText {#text} at (0,0) size 33x18
559559 text run at (0,0) width 33: "LDB"

@@layer at (0,0) size 800x577
564564 text run at (41,0) width 128: "dbaron@dbaron.org"
565565 RenderText {#text} at (169,0) size 82x18
566566 text run at (169,0) width 82: ", 2001-06-05"
567  RenderBlock {P} at (0,522) size 784x18
 567 RenderBlock {P} at (0,533) size 784x18
568568 RenderText {#text} at (0,0) size 304x18
569569 text run at (0,0) width 304: "Modified and used with the author\x{2019}s permission."
73924

LayoutTests/platform/mac/fast/text/international/bidi-european-terminators-expected.checksum

1 cdf167ea5be49e657423027c2536aad6
21\ No newline at end of file
 2ccc592ef12e1e5f4f61493860dc36e47
33\ No newline at end of file
73924

LayoutTests/platform/mac/fast/text/international/bidi-european-terminators-expected.txt

@@layer at (0,0) size 800x600
1212 text run at (0,18) width 157: "between R and ET ON L"
1313 RenderText {#text} at (157,18) size 4x18
1414 text run at (157,18) width 4: "."
15  RenderBlock {P} at (0,52) size 784x36
16  RenderText {#text} at (0,0) size 766x36
17  text run at (0,0) width 96: "The characters "
18  text run at (96,0) width 11 RTL: "\x{5D0}"
19  text run at (107,0) width 31: " and "
20  text run at (138,0) width 10 RTL: "\x{5D1}"
21  text run at (148,0) width 618: " are of type R; ^ and @ are of type ON; $ and % are of type ET; a is of type L; 1 is of type EN. In"
22  text run at (0,18) width 467: "each of the following pairs, the two lines should be identical to each other."
23  RenderBlock {HR} at (0,104) size 784x2 [border: (1px inset #000000)]
24  RenderBlock {P} at (0,122) size 784x18
25  RenderText {#text} at (0,0) size 78x18
26  text run at (0,0) width 11 RTL: "\x{5D0}"
27  text run at (11,0) width 67: " ^ @ $% a"
28  RenderBlock (anonymous) at (0,156) size 784x18
 15 RenderBlock {P} at (0,52) size 784x37
 16 RenderText {#text} at (0,1) size 766x36
 17 text run at (0,1) width 96: "The characters "
 18 text run at (96,1) width 11 RTL: "\x{5D0}"
 19 text run at (107,1) width 31: " and "
 20 text run at (138,1) width 10 RTL: "\x{5D1}"
 21 text run at (148,1) width 618: " are of type R; ^ and @ are of type ON; $ and % are of type ET; a is of type L; 1 is of type EN. In"
 22 text run at (0,19) width 467: "each of the following pairs, the two lines should be identical to each other."
 23 RenderBlock {HR} at (0,105) size 784x2 [border: (1px inset #000000)]
 24 RenderBlock {P} at (0,123) size 784x19
 25 RenderText {#text} at (0,1) size 78x18
 26 text run at (0,1) width 11 RTL: "\x{5D0}"
 27 text run at (11,1) width 67: " ^ @ $% a"
 28 RenderBlock (anonymous) at (0,158) size 784x19
2929 RenderInline {BDO} at (0,0) size 78x18
30  RenderText {#text} at (0,0) size 78x18
31  text run at (0,0) width 78 LTR override: "\x{5D0} ^ @ $% a"
 30 RenderText {#text} at (0,1) size 78x18
 31 text run at (0,1) width 78 LTR override: "\x{5D0} ^ @ $% a"
3232 RenderText {#text} at (0,0) size 0x0
33  RenderBlock {HR} at (0,182) size 784x2 [border: (1px inset #000000)]
34  RenderBlock {P} at (0,200) size 784x18
35  RenderText {#text} at (0,0) size 81x18
36  text run at (0,0) width 81 RTL: "\x{5D0} ^ @ $% \x{5D1}"
37  RenderBlock (anonymous) at (0,234) size 784x18
 33 RenderBlock {HR} at (0,185) size 784x2 [border: (1px inset #000000)]
 34 RenderBlock {P} at (0,203) size 784x19
 35 RenderText {#text} at (0,1) size 81x18
 36 text run at (0,1) width 81 RTL: "\x{5D0} ^ @ $% \x{5D1}"
 37 RenderBlock (anonymous) at (0,238) size 784x19
3838 RenderInline {BDO} at (0,0) size 81x18
39  RenderText {#text} at (0,0) size 81x18
40  text run at (0,0) width 81 LTR override: "\x{5D1} %$ @ ^ \x{5D0}"
 39 RenderText {#text} at (0,1) size 81x18
 40 text run at (0,1) width 81 LTR override: "\x{5D1} %$ @ ^ \x{5D0}"
4141 RenderText {#text} at (0,0) size 0x0
42  RenderBlock {HR} at (0,260) size 784x2 [border: (1px inset #000000)]
43  RenderBlock {P} at (0,278) size 784x18
44  RenderText {#text} at (0,0) size 75x18
45  text run at (0,0) width 29: "$%1"
46  text run at (29,0) width 46 RTL: "\x{5D0} ^ @ "
47  RenderBlock (anonymous) at (0,312) size 784x18
 42 RenderBlock {HR} at (0,265) size 784x2 [border: (1px inset #000000)]
 43 RenderBlock {P} at (0,283) size 784x19
 44 RenderText {#text} at (0,1) size 75x18
 45 text run at (0,1) width 29: "$%1"
 46 text run at (29,1) width 46 RTL: "\x{5D0} ^ @ "
 47 RenderBlock (anonymous) at (0,318) size 784x19
4848 RenderInline {BDO} at (0,0) size 75x18
49  RenderText {#text} at (0,0) size 75x18
50  text run at (0,0) width 75 LTR override: "$%1 @ ^ \x{5D0}"
 49 RenderText {#text} at (0,1) size 75x18
 50 text run at (0,1) width 75 LTR override: "$%1 @ ^ \x{5D0}"
5151 RenderText {#text} at (0,0) size 0x0
52  RenderBlock {HR} at (0,338) size 784x2 [border: (1px inset #000000)]
53  RenderBlock {P} at (0,356) size 784x18
54  RenderText {#text} at (0,0) size 78x18
55  text run at (0,0) width 7: "a"
56  text run at (7,0) width 71 RTL: "\x{5D0} ^ @ $% "
57  RenderBlock (anonymous) at (0,390) size 784x18
 52 RenderBlock {HR} at (0,345) size 784x2 [border: (1px inset #000000)]
 53 RenderBlock {P} at (0,363) size 784x19
 54 RenderText {#text} at (0,1) size 78x18
 55 text run at (0,1) width 7: "a"
 56 text run at (7,1) width 71 RTL: "\x{5D0} ^ @ $% "
 57 RenderBlock (anonymous) at (0,398) size 784x19
5858 RenderInline {BDO} at (0,0) size 78x18
59  RenderText {#text} at (0,0) size 78x18
60  text run at (0,0) width 78 LTR override: "a %$ @ ^ \x{5D0}"
 59 RenderText {#text} at (0,1) size 78x18
 60 text run at (0,1) width 78 LTR override: "a %$ @ ^ \x{5D0}"
6161 RenderText {#text} at (0,0) size 0x0
62  RenderBlock {HR} at (0,416) size 784x2 [border: (1px inset #000000)]
63  RenderBlock {P} at (0,434) size 784x18
64  RenderText {#text} at (0,0) size 81x18
65  text run at (0,0) width 81 RTL: "\x{5D0} ^ @ $% \x{5D1}"
66  RenderBlock (anonymous) at (0,468) size 784x18
 62 RenderBlock {HR} at (0,425) size 784x2 [border: (1px inset #000000)]
 63 RenderBlock {P} at (0,443) size 784x19
 64 RenderText {#text} at (0,1) size 81x18
 65 text run at (0,1) width 81 RTL: "\x{5D0} ^ @ $% \x{5D1}"
 66 RenderBlock (anonymous) at (0,478) size 784x19
6767 RenderInline {BDO} at (0,0) size 81x18
68  RenderText {#text} at (0,0) size 81x18
69  text run at (0,0) width 81 LTR override: "\x{5D1} %$ @ ^ \x{5D0}"
 68 RenderText {#text} at (0,1) size 81x18
 69 text run at (0,1) width 81 LTR override: "\x{5D1} %$ @ ^ \x{5D0}"
7070 RenderText {#text} at (0,0) size 0x0
71  RenderBlock {HR} at (0,494) size 784x2 [border: (1px inset #000000)]
72  RenderBlock {P} at (0,512) size 784x18
73  RenderText {#text} at (0,0) size 75x18
74  text run at (0,0) width 29: "$%1"
75  text run at (29,0) width 46 RTL: "\x{5D0} ^ @ "
76  RenderBlock (anonymous) at (0,546) size 784x18
 71 RenderBlock {HR} at (0,505) size 784x2 [border: (1px inset #000000)]
 72 RenderBlock {P} at (0,523) size 784x19
 73 RenderText {#text} at (0,1) size 75x18
 74 text run at (0,1) width 29: "$%1"
 75 text run at (29,1) width 46 RTL: "\x{5D0} ^ @ "
 76 RenderBlock (anonymous) at (0,558) size 784x19
7777 RenderInline {BDO} at (0,0) size 75x18
78  RenderText {#text} at (0,0) size 75x18
79  text run at (0,0) width 75 LTR override: "$%1 @ ^ \x{5D0}"
 78 RenderText {#text} at (0,1) size 75x18
 79 text run at (0,1) width 75 LTR override: "$%1 @ ^ \x{5D0}"
8080 RenderText {#text} at (0,0) size 0x0
73924

LayoutTests/platform/mac/fast/text/international/bidi-fallback-font-weight-expected.checksum

1 9d7026016d326722978d57e84d8c6146
21\ No newline at end of file
 28033db2a926b8b929de94b7e30d318cb
33\ No newline at end of file
73924

LayoutTests/platform/mac/fast/text/international/bidi-fallback-font-weight-expected.txt

11layer at (0,0) size 800x600
22 RenderView at (0,0) size 800x600
3 layer at (0,0) size 800x170
4  RenderBlock {HTML} at (0,0) size 800x170
5  RenderBody {BODY} at (8,16) size 784x138
6  RenderBlock {P} at (0,0) size 784x36
7  RenderText {#text} at (0,0) size 762x36
8  text run at (0,0) width 311: "In each of the following lines, the Hebrew letters "
9  text run at (311,0) width 35 RTL: "\x{5D0}\x{5D1}\x{5D2}\x{5D3}"
10  text run at (346,0) width 416: " in the end should be in boldface (compare with the same letters in"
11  text run at (0,18) width 142: "the middle of the line)."
12  RenderBlock {P} at (0,52) size 784x18
 3layer at (0,0) size 800x173
 4 RenderBlock {HTML} at (0,0) size 800x173
 5 RenderBody {BODY} at (8,16) size 784x141
 6 RenderBlock {P} at (0,0) size 784x37
 7 RenderText {#text} at (0,1) size 762x36
 8 text run at (0,1) width 311: "In each of the following lines, the Hebrew letters "
 9 text run at (311,1) width 35 RTL: "\x{5D0}\x{5D1}\x{5D2}\x{5D3}"
 10 text run at (346,1) width 416: " in the end should be in boldface (compare with the same letters in"
 11 text run at (0,19) width 142: "the middle of the line)."
 12 RenderBlock {P} at (0,53) size 784x18
1313 RenderText {#text} at (0,0) size 83x18
1414 text run at (0,0) width 43: "abcd "
1515 text run at (43,0) width 35 RTL: "\x{5D0}\x{5D1}\x{5D2}\x{5D3}"

@@layer at (0,0) size 800x170
1919 text run at (83,0) width 45: "abcd "
2020 text run at (128,0) width 37 RTL: "\x{5D0}\x{5D1}\x{5D2}\x{5D3}"
2121 RenderText {#text} at (0,0) size 0x0
22  RenderBlock {P} at (0,86) size 784x18
23  RenderText {#text} at (0,0) size 95x18
24  text run at (0,0) width 50: "abcd "
25  text run at (50,0) width 35 RTL: "\x{5D0}\x{5D1}\x{5D2}\x{5D3}"
26  text run at (85,0) width 10: " "
 22 RenderBlock {P} at (0,87) size 784x19
 23 RenderText {#text} at (0,1) size 95x18
 24 text run at (0,1) width 50: "abcd "
 25 text run at (50,1) width 35 RTL: "\x{5D0}\x{5D1}\x{5D2}\x{5D3}"
 26 text run at (85,1) width 10: " "
2727 RenderInline {B} at (0,0) size 87x18
28  RenderText {#text} at (95,0) size 87x18
29  text run at (95,0) width 50: "abcd "
30  text run at (145,0) width 37 RTL: "\x{5D0}\x{5D1}\x{5D2}\x{5D3}"
 28 RenderText {#text} at (95,1) size 87x18
 29 text run at (95,1) width 50: "abcd "
 30 text run at (145,1) width 37 RTL: "\x{5D0}\x{5D1}\x{5D2}\x{5D3}"
3131 RenderText {#text} at (0,0) size 0x0
32  RenderBlock {P} at (0,120) size 784x18
33  RenderText {#text} at (0,0) size 73x18
34  text run at (0,0) width 34: "abcd "
35  text run at (34,0) width 35 RTL: "\x{5D0}\x{5D1}\x{5D2}\x{5D3}"
36  text run at (69,0) width 4: " "
 32 RenderBlock {P} at (0,122) size 784x19
 33 RenderText {#text} at (0,1) size 73x18
 34 text run at (0,1) width 34: "abcd "
 35 text run at (34,1) width 35 RTL: "\x{5D0}\x{5D1}\x{5D2}\x{5D3}"
 36 text run at (69,1) width 4: " "
3737 RenderInline {B} at (0,0) size 74x18
38  RenderText {#text} at (73,0) size 74x18
39  text run at (73,0) width 37: "abcd "
40  text run at (110,0) width 37 RTL: "\x{5D0}\x{5D1}\x{5D2}\x{5D3}"
 38 RenderText {#text} at (73,1) size 74x18
 39 text run at (73,1) width 37: "abcd "
 40 text run at (110,1) width 37 RTL: "\x{5D0}\x{5D1}\x{5D2}\x{5D3}"
4141 RenderText {#text} at (0,0) size 0x0
73924

LayoutTests/platform/mac/fast/text/international/bidi-ignored-for-first-child-inline-expected.checksum

1 b9415a032216e74f7185966615f25cb5
21\ No newline at end of file
 2b2fe910fa3084e8ff0dd2b9a713d2536
33\ No newline at end of file
73924

LayoutTests/platform/mac/fast/text/international/bidi-ignored-for-first-child-inline-expected.txt

@@layer at (0,0) size 800x600
8282 RenderBlock (anonymous) at (0,352) size 784x18
8383 RenderText {#text} at (0,0) size 249x18
8484 text run at (0,0) width 249: "The following lines should be identical:"
85  RenderBlock {P} at (0,386) size 784x18
86  RenderText {#text} at (0,0) size 62x18
87  text run at (0,0) width 25 RTL: "\x{5D3}\x{5D4}\x{5D5}"
88  text run at (25,0) width 10: "(["
89  text run at (35,0) width 27 RTL: "\x{202C}\x{5D0}\x{5D1}\x{5D2}"
90  text run at (62,0) width 0: "\x{202A}"
91  RenderBlock {P} at (0,420) size 784x18
92  RenderText {#text} at (0,0) size 35x18
93  text run at (0,0) width 25 RTL: "\x{5D3}\x{5D4}\x{5D5}"
94  text run at (25,0) width 10: "(["
 85 RenderBlock {P} at (0,386) size 784x19
 86 RenderText {#text} at (0,1) size 62x18
 87 text run at (0,1) width 25 RTL: "\x{5D3}\x{5D4}\x{5D5}"
 88 text run at (25,1) width 10: "(["
 89 text run at (35,1) width 27 RTL: "\x{202C}\x{5D0}\x{5D1}\x{5D2}"
 90 text run at (62,1) width 0: "\x{202A}"
 91 RenderBlock {P} at (0,421) size 784x19
 92 RenderText {#text} at (0,1) size 35x18
 93 text run at (0,1) width 25 RTL: "\x{5D3}\x{5D4}\x{5D5}"
 94 text run at (25,1) width 10: "(["
9595 RenderInline {SPAN} at (0,0) size 0x18
96  RenderText {#text} at (35,0) size 27x18
97  text run at (35,0) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
98  RenderBlock {P} at (0,454) size 784x18
99  RenderText {#text} at (0,0) size 35x18
100  text run at (0,0) width 25 RTL: "\x{5D3}\x{5D4}\x{5D5}"
101  text run at (25,0) width 10: "(["
 96 RenderText {#text} at (35,1) size 27x18
 97 text run at (35,1) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
 98 RenderBlock {P} at (0,456) size 784x19
 99 RenderText {#text} at (0,1) size 35x18
 100 text run at (0,1) width 25 RTL: "\x{5D3}\x{5D4}\x{5D5}"
 101 text run at (25,1) width 10: "(["
102102 RenderInline {SPAN} at (0,0) size 0x18
103103 RenderInline {SPAN} at (0,0) size 0x18
104  RenderText {#text} at (35,0) size 27x18
105  text run at (35,0) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
106  RenderBlock {P} at (0,488) size 784x18
107  RenderText {#text} at (0,0) size 35x18
108  text run at (0,0) width 25 RTL: "\x{5D3}\x{5D4}\x{5D5}"
109  text run at (25,0) width 10: "(["
 104 RenderText {#text} at (35,1) size 27x18
 105 text run at (35,1) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
 106 RenderBlock {P} at (0,491) size 784x19
 107 RenderText {#text} at (0,1) size 35x18
 108 text run at (0,1) width 25 RTL: "\x{5D3}\x{5D4}\x{5D5}"
 109 text run at (25,1) width 10: "(["
110110 RenderInline {SPAN} at (0,0) size 0x18
111111 RenderInline {SPAN} at (0,0) size 0x18
112  RenderText {#text} at (35,0) size 27x18
113  text run at (35,0) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
 112 RenderText {#text} at (35,1) size 27x18
 113 text run at (35,1) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
73924

LayoutTests/platform/mac/fast/text/international/bidi-innertext-expected.checksum

1 36611a6581bcf0dcec5c9d740e8c1dd4
21\ No newline at end of file
 2140bb1fee63b6a1d1b6617b85f1d927a
33\ No newline at end of file
73924

LayoutTests/platform/mac/fast/text/international/bidi-innertext-expected.txt

@@layer at (0,0) size 800x600
1212 RenderBlock (anonymous) at (0,54) size 784x18
1313 RenderText {#text} at (0,0) size 134x18
1414 text run at (0,0) width 134: "Embedded Numbers:"
15  RenderBlock {DIV} at (0,72) size 784x18 [color=#0000FF]
16  RenderText {#text} at (0,0) size 121x18
17  text run at (0,0) width 56: "Testing ("
18  text run at (56,0) width 17 RTL: "\x{5DF}\x{5DE}"
19  text run at (73,0) width 8: "3"
20  text run at (81,0) width 35 RTL: "\x{5D7}\x{5D5}\x{5D3}\x{5D0}"
21  text run at (116,0) width 5: ")"
22  RenderBlock (anonymous) at (0,90) size 784x18
 15 RenderBlock {DIV} at (0,72) size 784x19 [color=#0000FF]
 16 RenderText {#text} at (0,1) size 121x18
 17 text run at (0,1) width 56: "Testing ("
 18 text run at (56,1) width 17 RTL: "\x{5DF}\x{5DE}"
 19 text run at (73,1) width 8: "3"
 20 text run at (81,1) width 35 RTL: "\x{5D7}\x{5D5}\x{5D3}\x{5D0}"
 21 text run at (116,1) width 5: ")"
 22 RenderBlock (anonymous) at (0,91) size 784x18
2323 RenderText {#text} at (0,0) size 107x18
2424 text run at (0,0) width 107: "Embedded LTR:"
25  RenderBlock {DIV} at (0,108) size 784x18 [color=#0000FF]
26  RenderText {#text} at (0,0) size 144x18
27  text run at (0,0) width 56: "Testing ("
28  text run at (56,0) width 35 RTL: "\x{5D7}\x{5D5}\x{5D3}\x{5D0}"
29  text run at (91,0) width 31: "hello"
30  text run at (122,0) width 17 RTL: "\x{5DF}\x{5DE}"
31  text run at (139,0) width 5: ")"
32  RenderBlock (anonymous) at (0,126) size 784x18
 25 RenderBlock {DIV} at (0,109) size 784x19 [color=#0000FF]
 26 RenderText {#text} at (0,1) size 144x18
 27 text run at (0,1) width 56: "Testing ("
 28 text run at (56,1) width 35 RTL: "\x{5D7}\x{5D5}\x{5D3}\x{5D0}"
 29 text run at (91,1) width 31: "hello"
 30 text run at (122,1) width 17 RTL: "\x{5DF}\x{5DE}"
 31 text run at (139,1) width 5: ")"
 32 RenderBlock (anonymous) at (0,128) size 784x18
3333 RenderText {#text} at (0,0) size 192x18
3434 text run at (0,0) width 192: "Embedded Numbers and LTR"
35  RenderBlock {DIV} at (0,144) size 784x18 [color=#0000FF]
36  RenderText {#text} at (0,0) size 143x18
37  text run at (0,0) width 56: "Testing ("
38  text run at (56,0) width 30 RTL: "\x{5E7}\x{5E7}\x{5E8}"
39  text run at (86,0) width 8: "3"
40  text run at (94,0) width 36 RTL: "\x{5D9}\x{5E7}\x{5DD}\x{5DC}"
41  text run at (130,0) width 13: "h)"
42  RenderBlock (anonymous) at (0,162) size 784x18
 35 RenderBlock {DIV} at (0,146) size 784x19 [color=#0000FF]
 36 RenderText {#text} at (0,1) size 143x18
 37 text run at (0,1) width 56: "Testing ("
 38 text run at (56,1) width 30 RTL: "\x{5E7}\x{5E7}\x{5E8}"
 39 text run at (86,1) width 8: "3"
 40 text run at (94,1) width 36 RTL: "\x{5D9}\x{5E7}\x{5DD}\x{5DC}"
 41 text run at (130,1) width 13: "h)"
 42 RenderBlock (anonymous) at (0,165) size 784x18
4343 RenderText {#text} at (0,0) size 218x18
4444 text run at (0,0) width 218: "Embedded Numbers with spacing:"
45  RenderBlock {DIV} at (0,180) size 784x18 [color=#0000FF]
46  RenderText {#text} at (0,0) size 263x18
47  text run at (0,0) width 56: "Testing ("
48  text run at (56,0) width 39 RTL: " \x{5D7}\x{5D5}\x{5D3}\x{5D0}"
49  text run at (95,0) width 24: "300"
50  text run at (119,0) width 55 RTL: "\x{5D7}\x{5D5}\x{5D3}\x{5D0}\x{5DF}\x{5DE} "
51  text run at (174,0) width 40: "34023"
52  text run at (214,0) width 44 RTL: "\x{5D9}\x{5E7}\x{5DA}\x{5DA}\x{5DD}"
53  text run at (258,0) width 5: ")"
54  RenderBlock (anonymous) at (0,198) size 784x18
 45 RenderBlock {DIV} at (0,183) size 784x19 [color=#0000FF]
 46 RenderText {#text} at (0,1) size 263x18
 47 text run at (0,1) width 56: "Testing ("
 48 text run at (56,1) width 39 RTL: " \x{5D7}\x{5D5}\x{5D3}\x{5D0}"
 49 text run at (95,1) width 24: "300"
 50 text run at (119,1) width 55 RTL: "\x{5D7}\x{5D5}\x{5D3}\x{5D0}\x{5DF}\x{5DE} "
 51 text run at (174,1) width 40: "34023"
 52 text run at (214,1) width 44 RTL: "\x{5D9}\x{5E7}\x{5DA}\x{5DA}\x{5DD}"
 53 text run at (258,1) width 5: ")"
 54 RenderBlock (anonymous) at (0,202) size 784x18
5555 RenderText {#text} at (0,0) size 71x18
5656 text run at (0,0) width 71: "Plain LTR:"
57  RenderBlock {DIV} at (0,216) size 784x18 [color=#0000FF]
 57 RenderBlock {DIV} at (0,220) size 784x18 [color=#0000FF]
5858 RenderText {#text} at (0,0) size 92x18
5959 text run at (0,0) width 92: "Testing (hello)"
60  RenderBlock (anonymous) at (0,234) size 784x18
 60 RenderBlock (anonymous) at (0,238) size 784x18
6161 RenderText {#text} at (0,0) size 191x18
6262 text run at (0,0) width 191: "Embedded LTR with spacing:"
63  RenderBlock {DIV} at (0,252) size 784x18 [color=#0000FF]
64  RenderText {#text} at (0,0) size 191x18
65  text run at (0,0) width 56: "Testing ("
66  text run at (56,0) width 69 RTL: "\x{5D7}\x{5D5}\x{5D3}\x{5D9}\x{5E7}\x{5DA}\x{5DA}\x{5DD}"
67  text run at (125,0) width 39: " hello "
68  text run at (164,0) width 22 RTL: "\x{5DF}\x{5DE}\x{5D9}"
69  text run at (186,0) width 5: ")"
70  RenderBlock (anonymous) at (0,270) size 784x18
 63 RenderBlock {DIV} at (0,256) size 784x19 [color=#0000FF]
 64 RenderText {#text} at (0,1) size 191x18
 65 text run at (0,1) width 56: "Testing ("
 66 text run at (56,1) width 69 RTL: "\x{5D7}\x{5D5}\x{5D3}\x{5D9}\x{5E7}\x{5DA}\x{5DA}\x{5DD}"
 67 text run at (125,1) width 39: " hello "
 68 text run at (164,1) width 22 RTL: "\x{5DF}\x{5DE}\x{5D9}"
 69 text run at (186,1) width 5: ")"
 70 RenderBlock (anonymous) at (0,275) size 784x18
7171 RenderText {#text} at (0,0) size 162x18
7272 text run at (0,0) width 162: "Mixed but not embedded:"
73  RenderBlock {DIV} at (0,288) size 784x18 [color=#0000FF]
74  RenderText {#text} at (0,0) size 133x18
75  text run at (0,0) width 87: "Testing (hello"
76  text run at (87,0) width 41 RTL: "\x{5D7}\x{5D5}\x{5D3}\x{5DF}\x{5DE}"
77  text run at (128,0) width 5: ")"
78  RenderBlock (anonymous) at (0,306) size 784x18
 73 RenderBlock {DIV} at (0,293) size 784x19 [color=#0000FF]
 74 RenderText {#text} at (0,1) size 133x18
 75 text run at (0,1) width 87: "Testing (hello"
 76 text run at (87,1) width 41 RTL: "\x{5D7}\x{5D5}\x{5D3}\x{5DF}\x{5DE}"
 77 text run at (128,1) width 5: ")"
 78 RenderBlock (anonymous) at (0,312) size 784x18
7979 RenderText {#text} at (0,0) size 162x18
8080 text run at (0,0) width 162: "Mixed but not embedded:"
81  RenderBlock {DIV} at (0,324) size 784x18 [color=#0000FF]
82  RenderText {#text} at (0,0) size 133x18
83  text run at (0,0) width 56: "Testing ("
84  text run at (56,0) width 41 RTL: "\x{5D7}\x{5D5}\x{5D3}\x{5DF}\x{5DE}"
85  text run at (97,0) width 36: "hello)"
86  RenderBlock {OL} at (0,358) size 784x0
 81 RenderBlock {DIV} at (0,330) size 784x19 [color=#0000FF]
 82 RenderText {#text} at (0,1) size 133x18
 83 text run at (0,1) width 56: "Testing ("
 84 text run at (56,1) width 41 RTL: "\x{5D7}\x{5D5}\x{5D3}\x{5DF}\x{5DE}"
 85 text run at (97,1) width 36: "hello)"
 86 RenderBlock {OL} at (0,365) size 784x0
73924

LayoutTests/platform/mac/fast/text/international/bidi-linebreak-001-expected.checksum

1 cf7490c3bdb353a442d391189f9b3ca2
21\ No newline at end of file
 2b584c4265ea59280676824168baed01c
33\ No newline at end of file
73924

LayoutTests/platform/mac/fast/text/international/bidi-linebreak-001-expected.txt

11layer at (0,0) size 800x600
22 RenderView at (0,0) size 800x600
3 layer at (0,0) size 800x154
4  RenderBlock {HTML} at (0,0) size 800x154
5  RenderBody {BODY} at (8,16) size 784x122
 3layer at (0,0) size 800x157
 4 RenderBlock {HTML} at (0,0) size 800x157
 5 RenderBody {BODY} at (8,16) size 784x125
66 RenderBlock {P} at (0,0) size 784x36
77 RenderText {#text} at (0,0) size 762x36
88 text run at (0,0) width 762: "This HTML tests if the 'while-space' property controls the behavors of line-break characters (U+000A and U+000D) in a"
99 text run at (0,18) width 85: "complex text."
10  RenderBlock {P} at (0,52) size 784x18
11  RenderText {#text} at (0,0) size 506x18
12  text run at (0,0) width 292: "If this test succeeds, you can see three words \""
13  text run at (292,0) width 37 RTL: "\x{5E9}\x{5D5}\x{5BC}\x{5E8}\x{5D4}"
14  text run at (329,0) width 177: "\", separated with line-break."
15  RenderBlock {P} at (0,86) size 784x36
16  RenderText {#text} at (0,0) size 73x36
17  text run at (0,0) width 37 RTL: "\x{5E9}\x{5D5}\x{5BC}\x{5E8}\x{5D4}"
18  text run at (37,0) width 0: " "
19  text run at (0,18) width 73 RTL: "\x{5E9}\x{5D5}\x{5BC}\x{5E8}\x{5D4}\x{D}\x{5E9}\x{5D5}\x{5BC}\x{5E8}\x{5D4}"
 10 RenderBlock {P} at (0,52) size 784x19
 11 RenderText {#text} at (0,1) size 506x18
 12 text run at (0,1) width 292: "If this test succeeds, you can see three words \""
 13 text run at (292,1) width 37 RTL: "\x{5E9}\x{5D5}\x{5BC}\x{5E8}\x{5D4}"
 14 text run at (329,1) width 177: "\", separated with line-break."
 15 RenderBlock {P} at (0,87) size 784x38
 16 RenderText {#text} at (0,1) size 73x37
 17 text run at (0,1) width 37 RTL: "\x{5E9}\x{5D5}\x{5BC}\x{5E8}\x{5D4}"
 18 text run at (37,1) width 0: " "
 19 text run at (0,20) width 73 RTL: "\x{5E9}\x{5D5}\x{5BC}\x{5E8}\x{5D4}\x{D}\x{5E9}\x{5D5}\x{5BC}\x{5E8}\x{5D4}"
73924

LayoutTests/platform/mac/fast/text/international/bidi-linebreak-002-expected.checksum

1 e5415dac071762f6939e9d3a48dd8aa6
21\ No newline at end of file
 2ea3510d0cb4941d59594639718616c37
33\ No newline at end of file
73924

LayoutTests/platform/mac/fast/text/international/bidi-linebreak-002-expected.txt

11layer at (0,0) size 800x600
22 RenderView at (0,0) size 800x600
3 layer at (0,0) size 800x136
4  RenderBlock {HTML} at (0,0) size 800x136
5  RenderBody {BODY} at (8,16) size 784x104
 3layer at (0,0) size 800x138
 4 RenderBlock {HTML} at (0,0) size 800x138
 5 RenderBody {BODY} at (8,16) size 784x106
66 RenderBlock {P} at (0,0) size 784x36
77 RenderText {#text} at (0,0) size 762x36
88 text run at (0,0) width 762: "This HTML tests if the 'while-space' property controls the behavors of line-break characters (U+000A and U+000D) in a"
99 text run at (0,18) width 85: "complex text."
10  RenderBlock {P} at (0,52) size 784x18
11  RenderText {#text} at (0,0) size 478x18
12  text run at (0,0) width 292: "If this test succeeds, you can see three words \""
13  text run at (292,0) width 37 RTL: "\x{5E9}\x{5D5}\x{5BC}\x{5E8}\x{5D4}"
14  text run at (329,0) width 149: "\", separated with space."
15  RenderBlock {P} at (0,86) size 784x18
16  RenderText {#text} at (0,0) size 115x18
17  text run at (0,0) width 115 RTL: "\x{5E9}\x{5D5}\x{5BC}\x{5E8}\x{5D4} \x{5E9}\x{5D5}\x{5BC}\x{5E8}\x{5D4}\x{D}\x{5E9}\x{5D5}\x{5BC}\x{5E8}\x{5D4}"
 10 RenderBlock {P} at (0,52) size 784x19
 11 RenderText {#text} at (0,1) size 478x18
 12 text run at (0,1) width 292: "If this test succeeds, you can see three words \""
 13 text run at (292,1) width 37 RTL: "\x{5E9}\x{5D5}\x{5BC}\x{5E8}\x{5D4}"
 14 text run at (329,1) width 149: "\", separated with space."
 15 RenderBlock {P} at (0,87) size 784x19
 16 RenderText {#text} at (0,1) size 115x18
 17 text run at (0,1) width 115 RTL: "\x{5E9}\x{5D5}\x{5BC}\x{5E8}\x{5D4} \x{5E9}\x{5D5}\x{5BC}\x{5E8}\x{5D4}\x{D}\x{5E9}\x{5D5}\x{5BC}\x{5E8}\x{5D4}"
73924

LayoutTests/platform/mac/fast/text/international/bidi-linebreak-003-expected.checksum

1 e5415dac071762f6939e9d3a48dd8aa6
21\ No newline at end of file
 2ea3510d0cb4941d59594639718616c37
33\ No newline at end of file
73924

LayoutTests/platform/mac/fast/text/international/bidi-linebreak-003-expected.txt

11layer at (0,0) size 800x600
22 RenderView at (0,0) size 800x600
3 layer at (0,0) size 800x136
4  RenderBlock {HTML} at (0,0) size 800x136
5  RenderBody {BODY} at (8,16) size 784x104
 3layer at (0,0) size 800x138
 4 RenderBlock {HTML} at (0,0) size 800x138
 5 RenderBody {BODY} at (8,16) size 784x106
66 RenderBlock {P} at (0,0) size 784x36
77 RenderText {#text} at (0,0) size 762x36
88 text run at (0,0) width 762: "This HTML tests if the 'while-space' property controls the behavors of line-break characters (U+000A and U+000D) in a"
99 text run at (0,18) width 85: "complex text."
10  RenderBlock {P} at (0,52) size 784x18
11  RenderText {#text} at (0,0) size 478x18
12  text run at (0,0) width 292: "If this test succeeds, you can see three words \""
13  text run at (292,0) width 37 RTL: "\x{5E9}\x{5D5}\x{5BC}\x{5E8}\x{5D4}"
14  text run at (329,0) width 149: "\", separated with space."
15  RenderBlock {P} at (0,86) size 784x18
16  RenderText {#text} at (0,0) size 115x18
17  text run at (0,0) width 115 RTL: "\x{5E9}\x{5D5}\x{5BC}\x{5E8}\x{5D4} \x{5E9}\x{5D5}\x{5BC}\x{5E8}\x{5D4}\x{D}\x{5E9}\x{5D5}\x{5BC}\x{5E8}\x{5D4}"
 10 RenderBlock {P} at (0,52) size 784x19
 11 RenderText {#text} at (0,1) size 478x18
 12 text run at (0,1) width 292: "If this test succeeds, you can see three words \""
 13 text run at (292,1) width 37 RTL: "\x{5E9}\x{5D5}\x{5BC}\x{5E8}\x{5D4}"
 14 text run at (329,1) width 149: "\", separated with space."
 15 RenderBlock {P} at (0,87) size 784x19
 16 RenderText {#text} at (0,1) size 115x18
 17 text run at (0,1) width 115 RTL: "\x{5E9}\x{5D5}\x{5BC}\x{5E8}\x{5D4} \x{5E9}\x{5D5}\x{5BC}\x{5E8}\x{5D4}\x{D}\x{5E9}\x{5D5}\x{5BC}\x{5E8}\x{5D4}"
73924

LayoutTests/platform/mac/fast/text/international/bidi-listbox-atsui-expected.checksum

1 717dc0ff65d523e435270cfa7e851a46
21\ No newline at end of file
 2207e709e07ebaf3ed151ac1889bb1a36
33\ No newline at end of file
73924

LayoutTests/platform/mac/fast/text/international/bidi-listbox-atsui-expected.txt

@@layer at (0,0) size 800x600
1515 RenderBR {BR} at (97,14) size 0x0
1616 RenderListBox {SELECT} at (2,20) size 77x57 [bgcolor=#FFFFFF] [border: (1px inset #808080)]
1717 RenderBR {BR} at (81,72) size 0x0
18  RenderBlock {DIV} at (0,131) size 100x18
19  RenderText {#text} at (18,0) size 82x18
20  text run at (18,0) width 60 RTL: "\x{5D0}\x{5E4}\x{5E8}\x{5E1}\x{5DE}\x{5D5}\x{5DF}"
21  text run at (78,0) width 22: "a\x{300}bc"
22  RenderBlock (anonymous) at (0,149) size 784x97
 18 RenderBlock {DIV} at (0,131) size 100x19
 19 RenderText {#text} at (18,1) size 82x18
 20 text run at (18,1) width 60 RTL: "\x{5D0}\x{5E4}\x{5E8}\x{5E1}\x{5DE}\x{5D5}\x{5DF}"
 21 text run at (78,1) width 22: "a\x{300}bc"
 22 RenderBlock (anonymous) at (0,150) size 784x97
2323 RenderBR {BR} at (0,0) size 0x18
2424 RenderText {#text} at (0,18) size 97x18
2525 text run at (0,18) width 97: "2) direction: ltr;"
2626 RenderBR {BR} at (97,32) size 0x0
2727 RenderListBox {SELECT} at (2,38) size 77x57 [bgcolor=#FFFFFF] [border: (1px inset #808080)]
2828 RenderBR {BR} at (81,90) size 0x0
29  RenderBlock {DIV} at (0,246) size 100x18
30  RenderText {#text} at (0,0) size 82x18
31  text run at (0,0) width 22: "a\x{300}bc"
32  text run at (22,0) width 60 RTL: "\x{5D0}\x{5E4}\x{5E8}\x{5E1}\x{5DE}\x{5D5}\x{5DF}"
33  RenderBlock (anonymous) at (0,264) size 784x97
 29 RenderBlock {DIV} at (0,247) size 100x19
 30 RenderText {#text} at (0,1) size 82x18
 31 text run at (0,1) width 22: "a\x{300}bc"
 32 text run at (22,1) width 60 RTL: "\x{5D0}\x{5E4}\x{5E8}\x{5E1}\x{5DE}\x{5D5}\x{5DF}"
 33 RenderBlock (anonymous) at (0,266) size 784x97
3434 RenderBR {BR} at (0,0) size 0x18
3535 RenderText {#text} at (0,18) size 70x18
3636 text run at (0,18) width 70: "3) No style"
3737 RenderBR {BR} at (70,32) size 0x0
3838 RenderListBox {SELECT} at (2,38) size 77x57 [bgcolor=#FFFFFF] [border: (1px inset #808080)]
3939 RenderBR {BR} at (81,90) size 0x0
40  RenderBlock {DIV} at (0,361) size 100x18
41  RenderText {#text} at (0,0) size 82x18
42  text run at (0,0) width 22: "a\x{300}bc"
43  text run at (22,0) width 60 RTL: "\x{5D0}\x{5E4}\x{5E8}\x{5E1}\x{5DE}\x{5D5}\x{5DF}"
44  RenderBlock (anonymous) at (0,379) size 784x18
 40 RenderBlock {DIV} at (0,363) size 100x19
 41 RenderText {#text} at (0,1) size 82x18
 42 text run at (0,1) width 22: "a\x{300}bc"
 43 text run at (22,1) width 60 RTL: "\x{5D0}\x{5E4}\x{5E8}\x{5E1}\x{5DE}\x{5D5}\x{5DF}"
 44 RenderBlock (anonymous) at (0,382) size 784x18
4545 RenderBR {BR} at (0,0) size 0x18
73924

LayoutTests/platform/mac/fast/text/international/bidi-listbox-expected.checksum

1 795568ea8f24ed881c10d6ede46891fb
21\ No newline at end of file
 2762953e500ace2fbf5c759ab418258b1
33\ No newline at end of file
73924

LayoutTests/platform/mac/fast/text/international/bidi-listbox-expected.txt

@@layer at (0,0) size 800x600
1515 RenderBR {BR} at (97,14) size 0x0
1616 RenderListBox {SELECT} at (2,20) size 77x57 [bgcolor=#FFFFFF] [border: (1px inset #808080)]
1717 RenderBR {BR} at (81,72) size 0x0
18  RenderBlock {DIV} at (0,131) size 100x18
19  RenderText {#text} at (18,0) size 82x18
20  text run at (18,0) width 60 RTL: "\x{5D0}\x{5E4}\x{5E8}\x{5E1}\x{5DE}\x{5D5}\x{5DF}"
21  text run at (78,0) width 22: "abc"
22  RenderBlock (anonymous) at (0,149) size 784x97
 18 RenderBlock {DIV} at (0,131) size 100x19
 19 RenderText {#text} at (18,1) size 82x18
 20 text run at (18,1) width 60 RTL: "\x{5D0}\x{5E4}\x{5E8}\x{5E1}\x{5DE}\x{5D5}\x{5DF}"
 21 text run at (78,1) width 22: "abc"
 22 RenderBlock (anonymous) at (0,150) size 784x97
2323 RenderBR {BR} at (0,0) size 0x18
2424 RenderText {#text} at (0,18) size 97x18
2525 text run at (0,18) width 97: "2) direction: ltr;"
2626 RenderBR {BR} at (97,32) size 0x0
2727 RenderListBox {SELECT} at (2,38) size 77x57 [bgcolor=#FFFFFF] [border: (1px inset #808080)]
2828 RenderBR {BR} at (81,90) size 0x0
29  RenderBlock {DIV} at (0,246) size 100x18
30  RenderText {#text} at (0,0) size 82x18
31  text run at (0,0) width 22: "abc"
32  text run at (22,0) width 60 RTL: "\x{5D0}\x{5E4}\x{5E8}\x{5E1}\x{5DE}\x{5D5}\x{5DF}"
33  RenderBlock (anonymous) at (0,264) size 784x97
 29 RenderBlock {DIV} at (0,247) size 100x19
 30 RenderText {#text} at (0,1) size 82x18
 31 text run at (0,1) width 22: "abc"
 32 text run at (22,1) width 60 RTL: "\x{5D0}\x{5E4}\x{5E8}\x{5E1}\x{5DE}\x{5D5}\x{5DF}"
 33 RenderBlock (anonymous) at (0,266) size 784x97
3434 RenderBR {BR} at (0,0) size 0x18
3535 RenderText {#text} at (0,18) size 70x18
3636 text run at (0,18) width 70: "3) No style"
3737 RenderBR {BR} at (70,32) size 0x0
3838 RenderListBox {SELECT} at (2,38) size 77x57 [bgcolor=#FFFFFF] [border: (1px inset #808080)]
3939 RenderBR {BR} at (81,90) size 0x0
40  RenderBlock {DIV} at (0,361) size 100x18
41  RenderText {#text} at (0,0) size 82x18
42  text run at (0,0) width 22: "abc"
43  text run at (22,0) width 60 RTL: "\x{5D0}\x{5E4}\x{5E8}\x{5E1}\x{5DE}\x{5D5}\x{5DF}"
44  RenderBlock (anonymous) at (0,379) size 784x18
 40 RenderBlock {DIV} at (0,363) size 100x19
 41 RenderText {#text} at (0,1) size 82x18
 42 text run at (0,1) width 22: "abc"
 43 text run at (22,1) width 60 RTL: "\x{5D0}\x{5E4}\x{5E8}\x{5E1}\x{5DE}\x{5D5}\x{5DF}"
 44 RenderBlock (anonymous) at (0,382) size 784x18
4545 RenderBR {BR} at (0,0) size 0x18
73924

LayoutTests/platform/mac/fast/text/international/bidi-menulist-expected.checksum

1 f039595b779e0527fa862000d79eac0a
21\ No newline at end of file
 291386a3f89ce3226944ac83efb2c5c92
33\ No newline at end of file
73924

LayoutTests/platform/mac/fast/text/international/bidi-menulist-expected.txt

@@layer at (0,0) size 800x600
2020 text run at (8,2) width 19: "abc"
2121 text run at (27,2) width 41 RTL: "\x{5D0}\x{5E4}\x{5E8}\x{5E1}\x{5DE}\x{5D5}\x{5DF}"
2222 RenderBR {BR} at (100,33) size 0x0
23  RenderBlock {DIV} at (0,110) size 100x18
24  RenderText {#text} at (0,0) size 82x18
25  text run at (0,0) width 22: "abc"
26  text run at (22,0) width 60 RTL: "\x{5D0}\x{5E4}\x{5E8}\x{5E1}\x{5DE}\x{5D5}\x{5DF}"
27  RenderBlock (anonymous) at (0,128) size 784x58
 23 RenderBlock {DIV} at (0,110) size 100x19
 24 RenderText {#text} at (0,1) size 82x18
 25 text run at (0,1) width 22: "abc"
 26 text run at (22,1) width 60 RTL: "\x{5D0}\x{5E4}\x{5E8}\x{5E1}\x{5DE}\x{5D5}\x{5DF}"
 27 RenderBlock (anonymous) at (0,129) size 784x58
2828 RenderBR {BR} at (0,0) size 0x18
2929 RenderText {#text} at (0,18) size 113x18
3030 text run at (0,18) width 113: "2) text-align: right"

@@layer at (0,0) size 800x600
3535 text run at (8,2) width 19: "abc"
3636 text run at (27,2) width 41 RTL: "\x{5D0}\x{5E4}\x{5E8}\x{5E1}\x{5DE}\x{5D5}\x{5DF}"
3737 RenderBR {BR} at (200,51) size 0x0
38  RenderBlock {DIV} at (0,186) size 200x18
39  RenderText {#text} at (0,0) size 82x18
40  text run at (0,0) width 22: "abc"
41  text run at (22,0) width 60 RTL: "\x{5D0}\x{5E4}\x{5E8}\x{5E1}\x{5DE}\x{5D5}\x{5DF}"
42  RenderBlock (anonymous) at (0,204) size 784x58
 38 RenderBlock {DIV} at (0,187) size 200x19
 39 RenderText {#text} at (0,1) size 82x18
 40 text run at (0,1) width 22: "abc"
 41 text run at (22,1) width 60 RTL: "\x{5D0}\x{5E4}\x{5E8}\x{5E1}\x{5DE}\x{5D5}\x{5DF}"
 42 RenderBlock (anonymous) at (0,206) size 784x58
4343 RenderBR {BR} at (0,0) size 0x18
4444 RenderText {#text} at (0,18) size 70x18
4545 text run at (0,18) width 70: "3) No style"

@@layer at (0,0) size 800x600
5050 text run at (8,2) width 19: "abc"
5151 text run at (27,2) width 41 RTL: "\x{5D0}\x{5E4}\x{5E8}\x{5E1}\x{5DE}\x{5D5}\x{5DF}"
5252 RenderBR {BR} at (100,51) size 0x0
53  RenderBlock {DIV} at (0,262) size 100x18
54  RenderText {#text} at (0,0) size 82x18
55  text run at (0,0) width 22: "abc"
56  text run at (22,0) width 60 RTL: "\x{5D0}\x{5E4}\x{5E8}\x{5E1}\x{5DE}\x{5D5}\x{5DF}"
57  RenderBlock (anonymous) at (0,280) size 784x18
 53 RenderBlock {DIV} at (0,264) size 100x19
 54 RenderText {#text} at (0,1) size 82x18
 55 text run at (0,1) width 22: "abc"
 56 text run at (22,1) width 60 RTL: "\x{5D0}\x{5E4}\x{5E8}\x{5E1}\x{5DE}\x{5D5}\x{5DF}"
 57 RenderBlock (anonymous) at (0,283) size 784x18
5858 RenderBR {BR} at (0,0) size 0x18
73924

LayoutTests/platform/mac/fast/text/international/bidi-mirror-he-ar-expected.checksum

1 07d9fdf3024ce729dfe1d056da5c9955
21\ No newline at end of file
 2862728e0ced73513be5ada6821fe5368
33\ No newline at end of file
73924

LayoutTests/platform/mac/fast/text/international/bidi-mirror-he-ar-expected.txt

@@layer at (0,0) size 800x600
99 RenderBlock {P} at (0,34) size 784x18
1010 RenderText {#text} at (327,0) size 457x18
1111 text run at (327,0) width 457: "The parenthesis should be displayed as \"(...)...\" visually from left to right"
12  RenderBlock {DIV} at (0,68) size 784x18
13  RenderText {#text} at (750,0) size 34x18
14  text run at (750,0) width 34 RTL: "\x{5E9}(\x{5E9})"
15  RenderBlock {DIV} at (0,86) size 784x18
 12 RenderBlock {DIV} at (0,68) size 784x19
 13 RenderText {#text} at (750,1) size 34x18
 14 text run at (750,1) width 34 RTL: "\x{5E9}(\x{5E9})"
 15 RenderBlock {DIV} at (0,87) size 784x18
1616 RenderText {#text} at (762,0) size 22x18
1717 text run at (762,0) width 22 RTL: "\x{5C6}(\x{5C6})"
18  RenderBlock {DIV} at (0,104) size 784x18
19  RenderText {#text} at (758,0) size 26x18
20  text run at (758,0) width 26 RTL: "\x{644}(\x{644})"
 18 RenderBlock {DIV} at (0,105) size 784x28
 19 RenderText {#text} at (758,2) size 26x18
 20 text run at (758,2) width 26 RTL: "\x{644}(\x{644})"
73924

LayoutTests/platform/mac/fast/text/international/bidi-neutral-directionality-paragraph-start-expected.checksum

1 660e01b3dc5e1d56e12a35c5bf3d04e3
21\ No newline at end of file
 2da3e17c7b6b622b45848b83e0daeb6b3
33\ No newline at end of file
73924

LayoutTests/platform/mac/fast/text/international/bidi-neutral-directionality-paragraph-start-expected.txt

@@layer at (0,0) size 800x600
2323 RenderBlock {P} at (0,174) size 784x18
2424 RenderText {#text} at (0,0) size 676x18
2525 text run at (0,0) width 676: "If the test is successful, the question marks should be on the far left and far right of the next two paragraphs."
26  RenderBlock {P} at (0,208) size 784x18
27  RenderText {#text} at (0,0) size 68x18
28  text run at (0,0) width 11: "? "
29  text run at (11,0) width 26 RTL: "\x{FEB2} \x{FEED}"
30  text run at (37,0) width 31: "hello"
31  RenderBlock {P} at (0,242) size 784x18
32  RenderText {#text} at (712,0) size 72x18
33  text run at (712,0) width 30 RTL: " \x{FEB2} \x{FEED}"
34  text run at (742,0) width 31: "hello"
35  text run at (773,0) width 11 RTL: "? "
 26 RenderBlock {P} at (0,208) size 784x24
 27 RenderText {#text} at (0,2) size 68x18
 28 text run at (0,2) width 11: "? "
 29 text run at (11,2) width 26 RTL: "\x{FEB2} \x{FEED}"
 30 text run at (37,2) width 31: "hello"
 31 RenderBlock {P} at (0,248) size 784x24
 32 RenderText {#text} at (712,2) size 72x18
 33 text run at (712,2) width 30 RTL: " \x{FEB2} \x{FEED}"
 34 text run at (742,2) width 31: "hello"
 35 text run at (773,2) width 11 RTL: "? "
73924

LayoutTests/platform/mac/fast/text/international/bidi-neutral-run-expected.checksum

1 dd1de3d7fbed0bbb865abd92f51b21c7
21\ No newline at end of file
 2d01913940c5fa8a93c91c7f19f3a718b
33\ No newline at end of file
73924

LayoutTests/platform/mac/fast/text/international/bidi-neutral-run-expected.txt

1 layer at (0,0) size 785x6026
 1layer at (0,0) size 785x7106
22 RenderView at (0,0) size 785x600
3 layer at (0,0) size 785x6026
4  RenderBlock {HTML} at (0,0) size 785x6026
5  RenderBody {BODY} at (8,8) size 769x6002
 3layer at (0,0) size 785x7106
 4 RenderBlock {HTML} at (0,0) size 785x7106
 5 RenderBody {BODY} at (8,8) size 769x7082
66 RenderBlock {P} at (0,0) size 769x18
77 RenderText {#text} at (0,0) size 300x18
88 text run at (0,0) width 300: "Tests the resolved level of runs of neutral types."
9  RenderBlock {DIV} at (0,34) size 769x2976
 9 RenderBlock {DIV} at (0,34) size 769x3516
1010 RenderBlock {P} at (0,0) size 769x18
1111 RenderText {#text} at (0,0) size 43x18
1212 text run at (0,0) width 43: "ab(^cd"
13  RenderBlock {P} at (0,34) size 769x18
14  RenderText {#text} at (0,0) size 48x18
15  text run at (0,0) width 20 RTL: "\x{5D0}\x{5D1}"
16  text run at (20,0) width 28: "(^cd"
17  RenderBlock {P} at (0,68) size 769x18
18  RenderText {#text} at (0,0) size 43x18
19  text run at (0,0) width 15 RTL: "\x{627}\x{628}"
20  text run at (15,0) width 28: "(^cd"
21  RenderBlock {P} at (0,102) size 769x18
 13 RenderBlock {P} at (0,34) size 769x19
 14 RenderText {#text} at (0,1) size 48x18
 15 text run at (0,1) width 20 RTL: "\x{5D0}\x{5D1}"
 16 text run at (20,1) width 28: "(^cd"
 17 RenderBlock {P} at (0,69) size 769x28
 18 RenderText {#text} at (0,2) size 43x18
 19 text run at (0,2) width 15 RTL: "\x{627}\x{628}"
 20 text run at (15,2) width 28: "(^cd"
 21 RenderBlock {P} at (0,113) size 769x18
2222 RenderText {#text} at (0,0) size 59x18
2323 text run at (0,0) width 59: "ab12(^cd"
24  RenderBlock {P} at (0,136) size 769x18
25  RenderText {#text} at (0,0) size 64x18
26  text run at (0,0) width 16: "12"
27  text run at (16,0) width 20 RTL: "\x{5D0}\x{5D1}"
28  text run at (36,0) width 28: "(^cd"
29  RenderBlock {P} at (0,170) size 769x18
30  RenderText {#text} at (0,0) size 59x18
31  text run at (0,0) width 16: "12"
32  text run at (16,0) width 15 RTL: "\x{627}\x{628}"
33  text run at (31,0) width 28: "(^cd"
34  RenderBlock {P} at (0,204) size 769x18
35  RenderText {#text} at (0,0) size 59x18
36  text run at (0,0) width 15: "ab"
37  text run at (15,0) width 16: "\x{661}\x{662}"
38  text run at (31,0) width 28: "(^cd"
39  RenderBlock {P} at (0,238) size 769x18
40  RenderText {#text} at (0,0) size 64x18
41  text run at (0,0) width 16: "\x{661}\x{662}"
42  text run at (16,0) width 20 RTL: "\x{5D0}\x{5D1}"
43  text run at (36,0) width 28: "(^cd"
44  RenderBlock {P} at (0,272) size 769x18
45  RenderText {#text} at (0,0) size 59x18
46  text run at (0,0) width 16: "\x{661}\x{662}"
47  text run at (16,0) width 15 RTL: "\x{627}\x{628}"
48  text run at (31,0) width 28: "(^cd"
49  RenderBlock {P} at (0,306) size 769x18
 24 RenderBlock {P} at (0,147) size 769x19
 25 RenderText {#text} at (0,1) size 64x18
 26 text run at (0,1) width 16: "12"
 27 text run at (16,1) width 20 RTL: "\x{5D0}\x{5D1}"
 28 text run at (36,1) width 28: "(^cd"
 29 RenderBlock {P} at (0,182) size 769x28
 30 RenderText {#text} at (0,2) size 59x18
 31 text run at (0,2) width 16: "12"
 32 text run at (16,2) width 15 RTL: "\x{627}\x{628}"
 33 text run at (31,2) width 28: "(^cd"
 34 RenderBlock {P} at (0,226) size 769x28
 35 RenderText {#text} at (0,2) size 59x18
 36 text run at (0,2) width 15: "ab"
 37 text run at (15,2) width 16: "\x{661}\x{662}"
 38 text run at (31,2) width 28: "(^cd"
 39 RenderBlock {P} at (0,270) size 769x28
 40 RenderText {#text} at (0,2) size 64x18
 41 text run at (0,2) width 16: "\x{661}\x{662}"
 42 text run at (16,2) width 20 RTL: "\x{5D0}\x{5D1}"
 43 text run at (36,2) width 28: "(^cd"
 44 RenderBlock {P} at (0,314) size 769x28
 45 RenderText {#text} at (0,2) size 59x18
 46 text run at (0,2) width 16: "\x{661}\x{662}"
 47 text run at (16,2) width 15 RTL: "\x{627}\x{628}"
 48 text run at (31,2) width 28: "(^cd"
 49 RenderBlock {P} at (0,358) size 769x18
5050 RenderText {#text} at (0,0) size 35x18
5151 text run at (0,0) width 7: "\x{202A}?"
5252 text run at (7,0) width 28: "\x{202C}(^cd"
53  RenderBlock {P} at (0,340) size 769x18
 53 RenderBlock {P} at (0,392) size 769x18
5454 RenderText {#text} at (0,0) size 35x18
5555 text run at (0,0) width 7 RTL: "\x{202B}?"
5656 text run at (7,0) width 28: "\x{202C}(^cd"
57  RenderBlock {P} at (0,374) size 769x18
58  RenderText {#text} at (0,0) size 43x18
59  text run at (0,0) width 28: "ab(^"
60  text run at (28,0) width 15 RTL: "\x{5D2}\x{5D3}"
61  RenderBlock {P} at (0,408) size 769x18
62  RenderText {#text} at (0,0) size 48x18
63  text run at (0,0) width 48 RTL: "\x{5D0}\x{5D1}(^\x{5D2}\x{5D3}"
64  RenderBlock {P} at (0,442) size 769x18
65  RenderText {#text} at (0,0) size 43x18
66  text run at (0,0) width 43 RTL: "\x{627}\x{628}(^\x{5D2}\x{5D3}"
67  RenderBlock {P} at (0,476) size 769x18
68  RenderText {#text} at (0,0) size 59x18
69  text run at (0,0) width 44: "ab12(^"
70  text run at (44,0) width 15 RTL: "\x{5D2}\x{5D3}"
71  RenderBlock {P} at (0,510) size 769x18
72  RenderText {#text} at (0,0) size 64x18
73  text run at (0,0) width 28 RTL: "(^\x{5D2}\x{5D3}"
74  text run at (28,0) width 16: "12"
75  text run at (44,0) width 20 RTL: "\x{5D0}\x{5D1}"
76  RenderBlock {P} at (0,544) size 769x18
77  RenderText {#text} at (0,0) size 59x18
78  text run at (0,0) width 28 RTL: "(^\x{5D2}\x{5D3}"
79  text run at (28,0) width 16: "12"
80  text run at (44,0) width 15 RTL: "\x{627}\x{628}"
81  RenderBlock {P} at (0,578) size 769x18
82  RenderText {#text} at (0,0) size 59x18
83  text run at (0,0) width 15: "ab"
84  text run at (15,0) width 28 RTL: "(^\x{5D2}\x{5D3}"
85  text run at (43,0) width 16: "\x{661}\x{662}"
86  RenderBlock {P} at (0,612) size 769x18
87  RenderText {#text} at (0,0) size 64x18
88  text run at (0,0) width 28 RTL: "(^\x{5D2}\x{5D3}"
89  text run at (28,0) width 16: "\x{661}\x{662}"
90  text run at (44,0) width 20 RTL: "\x{5D0}\x{5D1}"
91  RenderBlock {P} at (0,646) size 769x18
92  RenderText {#text} at (0,0) size 59x18
93  text run at (0,0) width 28 RTL: "(^\x{5D2}\x{5D3}"
94  text run at (28,0) width 16: "\x{661}\x{662}"
95  text run at (44,0) width 15 RTL: "\x{627}\x{628}"
96  RenderBlock {P} at (0,680) size 769x18
97  RenderText {#text} at (0,0) size 35x18
98  text run at (0,0) width 7: "\x{202A}?"
99  text run at (7,0) width 13: "\x{202C}(^"
100  text run at (20,0) width 15 RTL: "\x{5D2}\x{5D3}"
101  RenderBlock {P} at (0,714) size 769x18
102  RenderText {#text} at (0,0) size 35x18
103  text run at (0,0) width 28 RTL: "\x{202C}(^\x{5D2}\x{5D3}"
104  text run at (28,0) width 7 RTL: "\x{202B}?"
105  RenderBlock {P} at (0,748) size 769x18
106  RenderText {#text} at (0,0) size 45x18
107  text run at (0,0) width 28: "ab(^"
108  text run at (28,0) width 17 RTL: "\x{62C}\x{62F}"
109  RenderBlock {P} at (0,782) size 769x18
110  RenderText {#text} at (0,0) size 50x18
111  text run at (0,0) width 50 RTL: "\x{5D0}\x{5D1}(^\x{62C}\x{62F}"
112  RenderBlock {P} at (0,816) size 769x18
113  RenderText {#text} at (0,0) size 45x18
114  text run at (0,0) width 45 RTL: "\x{627}\x{628}(^\x{62C}\x{62F}"
115  RenderBlock {P} at (0,850) size 769x18
116  RenderText {#text} at (0,0) size 61x18
117  text run at (0,0) width 44: "ab12(^"
118  text run at (44,0) width 17 RTL: "\x{62C}\x{62F}"
119  RenderBlock {P} at (0,884) size 769x18
120  RenderText {#text} at (0,0) size 66x18
121  text run at (0,0) width 30 RTL: "(^\x{62C}\x{62F}"
122  text run at (30,0) width 16: "12"
123  text run at (46,0) width 20 RTL: "\x{5D0}\x{5D1}"
124  RenderBlock {P} at (0,918) size 769x18
125  RenderText {#text} at (0,0) size 61x18
126  text run at (0,0) width 30 RTL: "(^\x{62C}\x{62F}"
127  text run at (30,0) width 16: "12"
128  text run at (46,0) width 15 RTL: "\x{627}\x{628}"
129  RenderBlock {P} at (0,952) size 769x18
130  RenderText {#text} at (0,0) size 61x18
131  text run at (0,0) width 15: "ab"
132  text run at (15,0) width 30 RTL: "(^\x{62C}\x{62F}"
133  text run at (45,0) width 16: "\x{661}\x{662}"
134  RenderBlock {P} at (0,986) size 769x18
135  RenderText {#text} at (0,0) size 66x18
136  text run at (0,0) width 30 RTL: "(^\x{62C}\x{62F}"
137  text run at (30,0) width 16: "\x{661}\x{662}"
138  text run at (46,0) width 20 RTL: "\x{5D0}\x{5D1}"
139  RenderBlock {P} at (0,1020) size 769x18
140  RenderText {#text} at (0,0) size 61x18
141  text run at (0,0) width 30 RTL: "(^\x{62C}\x{62F}"
142  text run at (30,0) width 16: "\x{661}\x{662}"
143  text run at (46,0) width 15 RTL: "\x{627}\x{628}"
144  RenderBlock {P} at (0,1054) size 769x18
145  RenderText {#text} at (0,0) size 37x18
146  text run at (0,0) width 7: "\x{202A}?"
147  text run at (7,0) width 13: "\x{202C}(^"
148  text run at (20,0) width 17 RTL: "\x{62C}\x{62F}"
149  RenderBlock {P} at (0,1088) size 769x18
150  RenderText {#text} at (0,0) size 37x18
151  text run at (0,0) width 30 RTL: "\x{202C}(^\x{62C}\x{62F}"
152  text run at (30,0) width 7 RTL: "\x{202B}?"
153  RenderBlock {P} at (0,1122) size 769x18
154  RenderText {#text} at (0,0) size 63x18
155  text run at (0,0) width 44: "ab(^34"
156  text run at (44,0) width 12 RTL: "\x{5E9}"
157  text run at (56,0) width 7: "z"
158  RenderBlock {P} at (0,1156) size 769x18
159  RenderText {#text} at (0,0) size 68x18
160  text run at (0,0) width 12 RTL: "\x{5E9}"
161  text run at (12,0) width 16: "34"
162  text run at (28,0) width 33 RTL: "\x{5D0}\x{5D1}(^"
163  text run at (61,0) width 7: "z"
164  RenderBlock {P} at (0,1190) size 769x18
165  RenderText {#text} at (0,0) size 63x18
166  text run at (0,0) width 12 RTL: "\x{5E9}"
167  text run at (12,0) width 16: "34"
168  text run at (28,0) width 28 RTL: "\x{627}\x{628}(^"
169  text run at (56,0) width 7: "z"
170  RenderBlock {P} at (0,1224) size 769x18
171  RenderText {#text} at (0,0) size 79x18
172  text run at (0,0) width 60: "ab12(^34"
173  text run at (60,0) width 12 RTL: "\x{5E9}"
174  text run at (72,0) width 7: "z"
175  RenderBlock {P} at (0,1258) size 769x18
176  RenderText {#text} at (0,0) size 84x18
177  text run at (0,0) width 12 RTL: "\x{5E9}"
178  text run at (12,0) width 16: "34"
179  text run at (28,0) width 13 RTL: "(^"
180  text run at (41,0) width 16: "12"
181  text run at (57,0) width 20 RTL: "\x{5D0}\x{5D1}"
182  text run at (77,0) width 7: "z"
183  RenderBlock {P} at (0,1292) size 769x18
184  RenderText {#text} at (0,0) size 79x18
185  text run at (0,0) width 12 RTL: "\x{5E9}"
186  text run at (12,0) width 16: "34"
187  text run at (28,0) width 13 RTL: "(^"
188  text run at (41,0) width 16: "12"
189  text run at (57,0) width 15 RTL: "\x{627}\x{628}"
190  text run at (72,0) width 7: "z"
191  RenderBlock {P} at (0,1326) size 769x18
192  RenderText {#text} at (0,0) size 79x18
193  text run at (0,0) width 15: "ab"
194  text run at (15,0) width 16: "\x{661}\x{662}"
195  text run at (31,0) width 29: "(^34"
196  text run at (60,0) width 12 RTL: "\x{5E9}"
197  text run at (72,0) width 7: "z"
198  RenderBlock {P} at (0,1360) size 769x18
199  RenderText {#text} at (0,0) size 84x18
200  text run at (0,0) width 12 RTL: "\x{5E9}"
201  text run at (12,0) width 16: "34"
202  text run at (28,0) width 13 RTL: "(^"
203  text run at (41,0) width 16: "\x{661}\x{662}"
204  text run at (57,0) width 20 RTL: "\x{5D0}\x{5D1}"
205  text run at (77,0) width 7: "z"
206  RenderBlock {P} at (0,1394) size 769x18
207  RenderText {#text} at (0,0) size 79x18
208  text run at (0,0) width 12 RTL: "\x{5E9}"
209  text run at (12,0) width 16: "34"
210  text run at (28,0) width 13 RTL: "(^"
211  text run at (41,0) width 16: "\x{661}\x{662}"
212  text run at (57,0) width 15 RTL: "\x{627}\x{628}"
213  text run at (72,0) width 7: "z"
214  RenderBlock {P} at (0,1428) size 769x18
215  RenderText {#text} at (0,0) size 55x18
216  text run at (0,0) width 7: "\x{202A}?"
217  text run at (7,0) width 29: "\x{202C}(^34"
218  text run at (36,0) width 12 RTL: "\x{5E9}"
219  text run at (48,0) width 7: "z"
220  RenderBlock {P} at (0,1462) size 769x18
221  RenderText {#text} at (0,0) size 55x18
222  text run at (0,0) width 12 RTL: "\x{5E9}"
223  text run at (12,0) width 16: "34"
224  text run at (28,0) width 13 RTL: "\x{202C}(^"
225  text run at (41,0) width 7 RTL: "\x{202B}?"
226  text run at (48,0) width 7: "z"
227  RenderBlock {P} at (0,1496) size 769x18
228  RenderText {#text} at (0,0) size 63x18
229  text run at (0,0) width 28: "ab(^"
230  text run at (28,0) width 12 RTL: "\x{5E9}"
231  text run at (40,0) width 16: "\x{663}\x{664}"
232  text run at (56,0) width 7: "z"
233  RenderBlock {P} at (0,1530) size 769x18
234  RenderText {#text} at (0,0) size 68x18
235  text run at (0,0) width 12 RTL: "\x{5E9}"
236  text run at (12,0) width 16: "\x{663}\x{664}"
237  text run at (28,0) width 33 RTL: "\x{5D0}\x{5D1}(^"
238  text run at (61,0) width 7: "z"
239  RenderBlock {P} at (0,1564) size 769x18
240  RenderText {#text} at (0,0) size 63x18
241  text run at (0,0) width 12 RTL: "\x{5E9}"
242  text run at (12,0) width 16: "\x{663}\x{664}"
243  text run at (28,0) width 28 RTL: "\x{627}\x{628}(^"
244  text run at (56,0) width 7: "z"
245  RenderBlock {P} at (0,1598) size 769x18
246  RenderText {#text} at (0,0) size 79x18
247  text run at (0,0) width 44: "ab12(^"
248  text run at (44,0) width 12 RTL: "\x{5E9}"
249  text run at (56,0) width 16: "\x{663}\x{664}"
250  text run at (72,0) width 7: "z"
251  RenderBlock {P} at (0,1632) size 769x18
252  RenderText {#text} at (0,0) size 84x18
253  text run at (0,0) width 12 RTL: "\x{5E9}"
254  text run at (12,0) width 16: "\x{663}\x{664}"
255  text run at (28,0) width 13 RTL: "(^"
256  text run at (41,0) width 16: "12"
257  text run at (57,0) width 20 RTL: "\x{5D0}\x{5D1}"
258  text run at (77,0) width 7: "z"
259  RenderBlock {P} at (0,1666) size 769x18
260  RenderText {#text} at (0,0) size 79x18
261  text run at (0,0) width 12 RTL: "\x{5E9}"
262  text run at (12,0) width 16: "\x{663}\x{664}"
263  text run at (28,0) width 13 RTL: "(^"
264  text run at (41,0) width 16: "12"
265  text run at (57,0) width 15 RTL: "\x{627}\x{628}"
266  text run at (72,0) width 7: "z"
267  RenderBlock {P} at (0,1700) size 769x18
268  RenderText {#text} at (0,0) size 79x18
269  text run at (0,0) width 15: "ab"
270  text run at (15,0) width 12 RTL: "\x{5E9}"
271  text run at (27,0) width 16: "\x{663}\x{664}"
272  text run at (43,0) width 13 RTL: "(^"
273  text run at (56,0) width 16: "\x{661}\x{662}"
274  text run at (72,0) width 7: "z"
275  RenderBlock {P} at (0,1734) size 769x18
276  RenderText {#text} at (0,0) size 84x18
277  text run at (0,0) width 12 RTL: "\x{5E9}"
278  text run at (12,0) width 16: "\x{663}\x{664}"
279  text run at (28,0) width 13 RTL: "(^"
280  text run at (41,0) width 16: "\x{661}\x{662}"
281  text run at (57,0) width 20 RTL: "\x{5D0}\x{5D1}"
282  text run at (77,0) width 7: "z"
283  RenderBlock {P} at (0,1768) size 769x18
284  RenderText {#text} at (0,0) size 79x18
285  text run at (0,0) width 12 RTL: "\x{5E9}"
286  text run at (12,0) width 16: "\x{663}\x{664}"
287  text run at (28,0) width 13 RTL: "(^"
288  text run at (41,0) width 16: "\x{661}\x{662}"
289  text run at (57,0) width 15 RTL: "\x{627}\x{628}"
290  text run at (72,0) width 7: "z"
291  RenderBlock {P} at (0,1802) size 769x18
292  RenderText {#text} at (0,0) size 55x18
293  text run at (0,0) width 7: "\x{202A}?"
294  text run at (7,0) width 13: "\x{202C}(^"
295  text run at (20,0) width 12 RTL: "\x{5E9}"
296  text run at (32,0) width 16: "\x{663}\x{664}"
297  text run at (48,0) width 7: "z"
298  RenderBlock {P} at (0,1836) size 769x18
299  RenderText {#text} at (0,0) size 55x18
300  text run at (0,0) width 12 RTL: "\x{5E9}"
301  text run at (12,0) width 16: "\x{663}\x{664}"
302  text run at (28,0) width 13 RTL: "\x{202C}(^"
303  text run at (41,0) width 7 RTL: "\x{202B}?"
304  text run at (48,0) width 7: "z"
305  RenderBlock {P} at (0,1870) size 769x18
 57 RenderBlock {P} at (0,426) size 769x19
 58 RenderText {#text} at (0,1) size 43x18
 59 text run at (0,1) width 28: "ab(^"
 60 text run at (28,1) width 15 RTL: "\x{5D2}\x{5D3}"
 61 RenderBlock {P} at (0,461) size 769x19
 62 RenderText {#text} at (0,1) size 48x18
 63 text run at (0,1) width 48 RTL: "\x{5D0}\x{5D1}(^\x{5D2}\x{5D3}"
 64 RenderBlock {P} at (0,496) size 769x28
 65 RenderText {#text} at (0,2) size 43x18
 66 text run at (0,2) width 43 RTL: "\x{627}\x{628}(^\x{5D2}\x{5D3}"
 67 RenderBlock {P} at (0,540) size 769x19
 68 RenderText {#text} at (0,1) size 59x18
 69 text run at (0,1) width 44: "ab12(^"
 70 text run at (44,1) width 15 RTL: "\x{5D2}\x{5D3}"
 71 RenderBlock {P} at (0,575) size 769x19
 72 RenderText {#text} at (0,1) size 64x18
 73 text run at (0,1) width 28 RTL: "(^\x{5D2}\x{5D3}"
 74 text run at (28,1) width 16: "12"
 75 text run at (44,1) width 20 RTL: "\x{5D0}\x{5D1}"
 76 RenderBlock {P} at (0,610) size 769x28
 77 RenderText {#text} at (0,2) size 59x18
 78 text run at (0,2) width 28 RTL: "(^\x{5D2}\x{5D3}"
 79 text run at (28,2) width 16: "12"
 80 text run at (44,2) width 15 RTL: "\x{627}\x{628}"
 81 RenderBlock {P} at (0,654) size 769x28
 82 RenderText {#text} at (0,2) size 59x18
 83 text run at (0,2) width 15: "ab"
 84 text run at (15,2) width 28 RTL: "(^\x{5D2}\x{5D3}"
 85 text run at (43,2) width 16: "\x{661}\x{662}"
 86 RenderBlock {P} at (0,698) size 769x28
 87 RenderText {#text} at (0,2) size 64x18
 88 text run at (0,2) width 28 RTL: "(^\x{5D2}\x{5D3}"
 89 text run at (28,2) width 16: "\x{661}\x{662}"
 90 text run at (44,2) width 20 RTL: "\x{5D0}\x{5D1}"
 91 RenderBlock {P} at (0,742) size 769x28
 92 RenderText {#text} at (0,2) size 59x18
 93 text run at (0,2) width 28 RTL: "(^\x{5D2}\x{5D3}"
 94 text run at (28,2) width 16: "\x{661}\x{662}"
 95 text run at (44,2) width 15 RTL: "\x{627}\x{628}"
 96 RenderBlock {P} at (0,786) size 769x19
 97 RenderText {#text} at (0,1) size 35x18
 98 text run at (0,1) width 7: "\x{202A}?"
 99 text run at (7,1) width 13: "\x{202C}(^"
 100 text run at (20,1) width 15 RTL: "\x{5D2}\x{5D3}"
 101 RenderBlock {P} at (0,821) size 769x19
 102 RenderText {#text} at (0,1) size 35x18
 103 text run at (0,1) width 28 RTL: "\x{202C}(^\x{5D2}\x{5D3}"
 104 text run at (28,1) width 7 RTL: "\x{202B}?"
 105 RenderBlock {P} at (0,856) size 769x28
 106 RenderText {#text} at (0,2) size 45x18
 107 text run at (0,2) width 28: "ab(^"
 108 text run at (28,2) width 17 RTL: "\x{62C}\x{62F}"
 109 RenderBlock {P} at (0,900) size 769x28
 110 RenderText {#text} at (0,2) size 50x18
 111 text run at (0,2) width 50 RTL: "\x{5D0}\x{5D1}(^\x{62C}\x{62F}"
 112 RenderBlock {P} at (0,944) size 769x28
 113 RenderText {#text} at (0,2) size 45x18
 114 text run at (0,2) width 45 RTL: "\x{627}\x{628}(^\x{62C}\x{62F}"
 115 RenderBlock {P} at (0,988) size 769x28
 116 RenderText {#text} at (0,2) size 61x18
 117 text run at (0,2) width 44: "ab12(^"
 118 text run at (44,2) width 17 RTL: "\x{62C}\x{62F}"
 119 RenderBlock {P} at (0,1032) size 769x28
 120 RenderText {#text} at (0,2) size 66x18
 121 text run at (0,2) width 30 RTL: "(^\x{62C}\x{62F}"
 122 text run at (30,2) width 16: "12"
 123 text run at (46,2) width 20 RTL: "\x{5D0}\x{5D1}"
 124 RenderBlock {P} at (0,1076) size 769x28
 125 RenderText {#text} at (0,2) size 61x18
 126 text run at (0,2) width 30 RTL: "(^\x{62C}\x{62F}"
 127 text run at (30,2) width 16: "12"
 128 text run at (46,2) width 15 RTL: "\x{627}\x{628}"
 129 RenderBlock {P} at (0,1120) size 769x28
 130 RenderText {#text} at (0,2) size 61x18
 131 text run at (0,2) width 15: "ab"
 132 text run at (15,2) width 30 RTL: "(^\x{62C}\x{62F}"
 133 text run at (45,2) width 16: "\x{661}\x{662}"
 134 RenderBlock {P} at (0,1164) size 769x28
 135 RenderText {#text} at (0,2) size 66x18
 136 text run at (0,2) width 30 RTL: "(^\x{62C}\x{62F}"
 137 text run at (30,2) width 16: "\x{661}\x{662}"
 138 text run at (46,2) width 20 RTL: "\x{5D0}\x{5D1}"
 139 RenderBlock {P} at (0,1208) size 769x28
 140 RenderText {#text} at (0,2) size 61x18
 141 text run at (0,2) width 30 RTL: "(^\x{62C}\x{62F}"
 142 text run at (30,2) width 16: "\x{661}\x{662}"
 143 text run at (46,2) width 15 RTL: "\x{627}\x{628}"
 144 RenderBlock {P} at (0,1252) size 769x28
 145 RenderText {#text} at (0,2) size 37x18
 146 text run at (0,2) width 7: "\x{202A}?"
 147 text run at (7,2) width 13: "\x{202C}(^"
 148 text run at (20,2) width 17 RTL: "\x{62C}\x{62F}"
 149 RenderBlock {P} at (0,1296) size 769x28
 150 RenderText {#text} at (0,2) size 37x18
 151 text run at (0,2) width 30 RTL: "\x{202C}(^\x{62C}\x{62F}"
 152 text run at (30,2) width 7 RTL: "\x{202B}?"
 153 RenderBlock {P} at (0,1340) size 769x19
 154 RenderText {#text} at (0,1) size 63x18
 155 text run at (0,1) width 44: "ab(^34"
 156 text run at (44,1) width 12 RTL: "\x{5E9}"
 157 text run at (56,1) width 7: "z"
 158 RenderBlock {P} at (0,1375) size 769x19
 159 RenderText {#text} at (0,1) size 68x18
 160 text run at (0,1) width 12 RTL: "\x{5E9}"
 161 text run at (12,1) width 16: "34"
 162 text run at (28,1) width 33 RTL: "\x{5D0}\x{5D1}(^"
 163 text run at (61,1) width 7: "z"
 164 RenderBlock {P} at (0,1410) size 769x28
 165 RenderText {#text} at (0,2) size 63x18
 166 text run at (0,2) width 12 RTL: "\x{5E9}"
 167 text run at (12,2) width 16: "34"
 168 text run at (28,2) width 28 RTL: "\x{627}\x{628}(^"
 169 text run at (56,2) width 7: "z"
 170 RenderBlock {P} at (0,1454) size 769x19
 171 RenderText {#text} at (0,1) size 79x18
 172 text run at (0,1) width 60: "ab12(^34"
 173 text run at (60,1) width 12 RTL: "\x{5E9}"
 174 text run at (72,1) width 7: "z"
 175 RenderBlock {P} at (0,1489) size 769x19
 176 RenderText {#text} at (0,1) size 84x18
 177 text run at (0,1) width 12 RTL: "\x{5E9}"
 178 text run at (12,1) width 16: "34"
 179 text run at (28,1) width 13 RTL: "(^"
 180 text run at (41,1) width 16: "12"
 181 text run at (57,1) width 20 RTL: "\x{5D0}\x{5D1}"
 182 text run at (77,1) width 7: "z"
 183 RenderBlock {P} at (0,1524) size 769x28
 184 RenderText {#text} at (0,2) size 79x18
 185 text run at (0,2) width 12 RTL: "\x{5E9}"
 186 text run at (12,2) width 16: "34"
 187 text run at (28,2) width 13 RTL: "(^"
 188 text run at (41,2) width 16: "12"
 189 text run at (57,2) width 15 RTL: "\x{627}\x{628}"
 190 text run at (72,2) width 7: "z"
 191 RenderBlock {P} at (0,1568) size 769x28
 192 RenderText {#text} at (0,2) size 79x18
 193 text run at (0,2) width 15: "ab"
 194 text run at (15,2) width 16: "\x{661}\x{662}"
 195 text run at (31,2) width 29: "(^34"
 196 text run at (60,2) width 12 RTL: "\x{5E9}"
 197 text run at (72,2) width 7: "z"
 198 RenderBlock {P} at (0,1612) size 769x28
 199 RenderText {#text} at (0,2) size 84x18
 200 text run at (0,2) width 12 RTL: "\x{5E9}"
 201 text run at (12,2) width 16: "34"
 202 text run at (28,2) width 13 RTL: "(^"
 203 text run at (41,2) width 16: "\x{661}\x{662}"
 204 text run at (57,2) width 20 RTL: "\x{5D0}\x{5D1}"
 205 text run at (77,2) width 7: "z"
 206 RenderBlock {P} at (0,1656) size 769x28
 207 RenderText {#text} at (0,2) size 79x18
 208 text run at (0,2) width 12 RTL: "\x{5E9}"
 209 text run at (12,2) width 16: "34"
 210 text run at (28,2) width 13 RTL: "(^"
 211 text run at (41,2) width 16: "\x{661}\x{662}"
 212 text run at (57,2) width 15 RTL: "\x{627}\x{628}"
 213 text run at (72,2) width 7: "z"
 214 RenderBlock {P} at (0,1700) size 769x19
 215 RenderText {#text} at (0,1) size 55x18
 216 text run at (0,1) width 7: "\x{202A}?"
 217 text run at (7,1) width 29: "\x{202C}(^34"
 218 text run at (36,1) width 12 RTL: "\x{5E9}"
 219 text run at (48,1) width 7: "z"
 220 RenderBlock {P} at (0,1735) size 769x19
 221 RenderText {#text} at (0,1) size 55x18
 222 text run at (0,1) width 12 RTL: "\x{5E9}"
 223 text run at (12,1) width 16: "34"
 224 text run at (28,1) width 13 RTL: "\x{202C}(^"
 225 text run at (41,1) width 7 RTL: "\x{202B}?"
 226 text run at (48,1) width 7: "z"
 227 RenderBlock {P} at (0,1770) size 769x28
 228 RenderText {#text} at (0,2) size 63x18
 229 text run at (0,2) width 28: "ab(^"
 230 text run at (28,2) width 12 RTL: "\x{5E9}"
 231 text run at (40,2) width 16: "\x{663}\x{664}"
 232 text run at (56,2) width 7: "z"
 233 RenderBlock {P} at (0,1814) size 769x28
 234 RenderText {#text} at (0,2) size 68x18
 235 text run at (0,2) width 12 RTL: "\x{5E9}"
 236 text run at (12,2) width 16: "\x{663}\x{664}"
 237 text run at (28,2) width 33 RTL: "\x{5D0}\x{5D1}(^"
 238 text run at (61,2) width 7: "z"
 239 RenderBlock {P} at (0,1858) size 769x28
 240 RenderText {#text} at (0,2) size 63x18
 241 text run at (0,2) width 12 RTL: "\x{5E9}"
 242 text run at (12,2) width 16: "\x{663}\x{664}"
 243 text run at (28,2) width 28 RTL: "\x{627}\x{628}(^"
 244 text run at (56,2) width 7: "z"
 245 RenderBlock {P} at (0,1902) size 769x28
 246 RenderText {#text} at (0,2) size 79x18
 247 text run at (0,2) width 44: "ab12(^"
 248 text run at (44,2) width 12 RTL: "\x{5E9}"
 249 text run at (56,2) width 16: "\x{663}\x{664}"
 250 text run at (72,2) width 7: "z"
 251 RenderBlock {P} at (0,1946) size 769x28
 252 RenderText {#text} at (0,2) size 84x18
 253 text run at (0,2) width 12 RTL: "\x{5E9}"
 254 text run at (12,2) width 16: "\x{663}\x{664}"
 255 text run at (28,2) width 13 RTL: "(^"
 256 text run at (41,2) width 16: "12"
 257 text run at (57,2) width 20 RTL: "\x{5D0}\x{5D1}"
 258 text run at (77,2) width 7: "z"
 259 RenderBlock {P} at (0,1990) size 769x28
 260 RenderText {#text} at (0,2) size 79x18
 261 text run at (0,2) width 12 RTL: "\x{5E9}"
 262 text run at (12,2) width 16: "\x{663}\x{664}"
 263 text run at (28,2) width 13 RTL: "(^"
 264 text run at (41,2) width 16: "12"
 265 text run at (57,2) width 15 RTL: "\x{627}\x{628}"
 266 text run at (72,2) width 7: "z"
 267 RenderBlock {P} at (0,2034) size 769x28
 268 RenderText {#text} at (0,2) size 79x18
 269 text run at (0,2) width 15: "ab"
 270 text run at (15,2) width 12 RTL: "\x{5E9}"
 271 text run at (27,2) width 16: "\x{663}\x{664}"
 272 text run at (43,2) width 13 RTL: "(^"
 273 text run at (56,2) width 16: "\x{661}\x{662}"
 274 text run at (72,2) width 7: "z"
 275 RenderBlock {P} at (0,2078) size 769x28
 276 RenderText {#text} at (0,2) size 84x18
 277 text run at (0,2) width 12 RTL: "\x{5E9}"
 278 text run at (12,2) width 16: "\x{663}\x{664}"
 279 text run at (28,2) width 13 RTL: "(^"
 280 text run at (41,2) width 16: "\x{661}\x{662}"
 281 text run at (57,2) width 20 RTL: "\x{5D0}\x{5D1}"
 282 text run at (77,2) width 7: "z"
 283 RenderBlock {P} at (0,2122) size 769x28
 284 RenderText {#text} at (0,2) size 79x18
 285 text run at (0,2) width 12 RTL: "\x{5E9}"
 286 text run at (12,2) width 16: "\x{663}\x{664}"
 287 text run at (28,2) width 13 RTL: "(^"
 288 text run at (41,2) width 16: "\x{661}\x{662}"
 289 text run at (57,2) width 15 RTL: "\x{627}\x{628}"
 290 text run at (72,2) width 7: "z"
 291 RenderBlock {P} at (0,2166) size 769x28
 292 RenderText {#text} at (0,2) size 55x18
 293 text run at (0,2) width 7: "\x{202A}?"
 294 text run at (7,2) width 13: "\x{202C}(^"
 295 text run at (20,2) width 12 RTL: "\x{5E9}"
 296 text run at (32,2) width 16: "\x{663}\x{664}"
 297 text run at (48,2) width 7: "z"
 298 RenderBlock {P} at (0,2210) size 769x28
 299 RenderText {#text} at (0,2) size 55x18
 300 text run at (0,2) width 12 RTL: "\x{5E9}"
 301 text run at (12,2) width 16: "\x{663}\x{664}"
 302 text run at (28,2) width 13 RTL: "\x{202C}(^"
 303 text run at (41,2) width 7 RTL: "\x{202B}?"
 304 text run at (48,2) width 7: "z"
 305 RenderBlock {P} at (0,2254) size 769x18
306306 RenderText {#text} at (0,0) size 33x18
307307 text run at (0,0) width 28: "ab(^"
308308 text run at (28,0) width 5: "\x{202A}!"
309309 text run at (33,0) width 0: "\x{202C}"
310  RenderBlock {P} at (0,1904) size 769x18
311  RenderText {#text} at (0,0) size 38x18
312  text run at (0,0) width 20 RTL: "\x{5D0}\x{5D1}"
313  text run at (20,0) width 13: "(^"
314  text run at (33,0) width 5: "\x{202A}!"
315  text run at (38,0) width 0: "\x{202C}"
316  RenderBlock {P} at (0,1938) size 769x18
317  RenderText {#text} at (0,0) size 33x18
318  text run at (0,0) width 15 RTL: "\x{627}\x{628}"
319  text run at (15,0) width 13: "(^"
320  text run at (28,0) width 5: "\x{202A}!"
321  text run at (33,0) width 0: "\x{202C}"
322  RenderBlock {P} at (0,1972) size 769x18
 310 RenderBlock {P} at (0,2288) size 769x19
 311 RenderText {#text} at (0,1) size 38x18
 312 text run at (0,1) width 20 RTL: "\x{5D0}\x{5D1}"
 313 text run at (20,1) width 13: "(^"
 314 text run at (33,1) width 5: "\x{202A}!"
 315 text run at (38,1) width 0: "\x{202C}"
 316 RenderBlock {P} at (0,2323) size 769x28
 317 RenderText {#text} at (0,2) size 33x18
 318 text run at (0,2) width 15 RTL: "\x{627}\x{628}"
 319 text run at (15,2) width 13: "(^"
 320 text run at (28,2) width 5: "\x{202A}!"
 321 text run at (33,2) width 0: "\x{202C}"
 322 RenderBlock {P} at (0,2367) size 769x18
323323 RenderText {#text} at (0,0) size 49x18
324324 text run at (0,0) width 44: "ab12(^"
325325 text run at (44,0) width 5: "\x{202A}!"
326326 text run at (49,0) width 0: "\x{202C}"
327  RenderBlock {P} at (0,2006) size 769x18
328  RenderText {#text} at (0,0) size 54x18
329  text run at (0,0) width 16: "12"
330  text run at (16,0) width 20 RTL: "\x{5D0}\x{5D1}"
331  text run at (36,0) width 13: "(^"
332  text run at (49,0) width 5: "\x{202A}!"
333  text run at (54,0) width 0: "\x{202C}"
334  RenderBlock {P} at (0,2040) size 769x18
335  RenderText {#text} at (0,0) size 49x18
336  text run at (0,0) width 16: "12"
337  text run at (16,0) width 15 RTL: "\x{627}\x{628}"
338  text run at (31,0) width 13: "(^"
339  text run at (44,0) width 5: "\x{202A}!"
340  text run at (49,0) width 0: "\x{202C}"
341  RenderBlock {P} at (0,2074) size 769x18
342  RenderText {#text} at (0,0) size 49x18
343  text run at (0,0) width 15: "ab"
344  text run at (15,0) width 16: "\x{661}\x{662}"
345  text run at (31,0) width 13: "(^"
346  text run at (44,0) width 5: "\x{202A}!"
347  text run at (49,0) width 0: "\x{202C}"
348  RenderBlock {P} at (0,2108) size 769x18
349  RenderText {#text} at (0,0) size 54x18
350  text run at (0,0) width 16: "\x{661}\x{662}"
351  text run at (16,0) width 20 RTL: "\x{5D0}\x{5D1}"
352  text run at (36,0) width 13: "(^"
353  text run at (49,0) width 5: "\x{202A}!"
354  text run at (54,0) width 0: "\x{202C}"
355  RenderBlock {P} at (0,2142) size 769x18
356  RenderText {#text} at (0,0) size 49x18
357  text run at (0,0) width 16: "\x{661}\x{662}"
358  text run at (16,0) width 15 RTL: "\x{627}\x{628}"
359  text run at (31,0) width 13: "(^"
360  text run at (44,0) width 5: "\x{202A}!"
361  text run at (49,0) width 0: "\x{202C}"
362  RenderBlock {P} at (0,2176) size 769x18
 327 RenderBlock {P} at (0,2401) size 769x19
 328 RenderText {#text} at (0,1) size 54x18
 329 text run at (0,1) width 16: "12"
 330 text run at (16,1) width 20 RTL: "\x{5D0}\x{5D1}"
 331 text run at (36,1) width 13: "(^"
 332 text run at (49,1) width 5: "\x{202A}!"
 333 text run at (54,1) width 0: "\x{202C}"
 334 RenderBlock {P} at (0,2436) size 769x28
 335 RenderText {#text} at (0,2) size 49x18
 336 text run at (0,2) width 16: "12"
 337 text run at (16,2) width 15 RTL: "\x{627}\x{628}"
 338 text run at (31,2) width 13: "(^"
 339 text run at (44,2) width 5: "\x{202A}!"
 340 text run at (49,2) width 0: "\x{202C}"
 341 RenderBlock {P} at (0,2480) size 769x28
 342 RenderText {#text} at (0,2) size 49x18
 343 text run at (0,2) width 15: "ab"
 344 text run at (15,2) width 16: "\x{661}\x{662}"
 345 text run at (31,2) width 13: "(^"
 346 text run at (44,2) width 5: "\x{202A}!"
 347 text run at (49,2) width 0: "\x{202C}"
 348 RenderBlock {P} at (0,2524) size 769x28
 349 RenderText {#text} at (0,2) size 54x18
 350 text run at (0,2) width 16: "\x{661}\x{662}"
 351 text run at (16,2) width 20 RTL: "\x{5D0}\x{5D1}"
 352 text run at (36,2) width 13: "(^"
 353 text run at (49,2) width 5: "\x{202A}!"
 354 text run at (54,2) width 0: "\x{202C}"
 355 RenderBlock {P} at (0,2568) size 769x28
 356 RenderText {#text} at (0,2) size 49x18
 357 text run at (0,2) width 16: "\x{661}\x{662}"
 358 text run at (16,2) width 15 RTL: "\x{627}\x{628}"
 359 text run at (31,2) width 13: "(^"
 360 text run at (44,2) width 5: "\x{202A}!"
 361 text run at (49,2) width 0: "\x{202C}"
 362 RenderBlock {P} at (0,2612) size 769x18
363363 RenderText {#text} at (0,0) size 25x18
364364 text run at (0,0) width 7: "\x{202A}?"
365365 text run at (7,0) width 13: "\x{202C}(^"
366366 text run at (20,0) width 5: "\x{202A}!"
367367 text run at (25,0) width 0: "\x{202C}"
368  RenderBlock {P} at (0,2210) size 769x18
 368 RenderBlock {P} at (0,2646) size 769x18
369369 RenderText {#text} at (0,0) size 25x18
370370 text run at (0,0) width 7 RTL: "\x{202B}?"
371371 text run at (7,0) width 13: "\x{202C}(^"
372372 text run at (20,0) width 5: "\x{202A}!"
373373 text run at (25,0) width 0: "\x{202C}"
374  RenderBlock {P} at (0,2244) size 769x18
 374 RenderBlock {P} at (0,2680) size 769x18
375375 RenderText {#text} at (0,0) size 33x18
376376 text run at (0,0) width 28: "ab(^"
377377 text run at (28,0) width 5 RTL: "\x{202B}!"
378378 text run at (33,0) width 0: "\x{202C}"
379  RenderBlock {P} at (0,2278) size 769x18
380  RenderText {#text} at (0,0) size 38x18
381  text run at (0,0) width 5 RTL: "\x{202B}!"
382  text run at (5,0) width 33 RTL: "\x{5D0}\x{5D1}(^"
383  text run at (38,0) width 0: "\x{202C}"
384  RenderBlock {P} at (0,2312) size 769x18
385  RenderText {#text} at (0,0) size 33x18
386  text run at (0,0) width 5 RTL: "\x{202B}!"
387  text run at (5,0) width 28 RTL: "\x{627}\x{628}(^"
388  text run at (33,0) width 0: "\x{202C}"
389  RenderBlock {P} at (0,2346) size 769x18
 379 RenderBlock {P} at (0,2714) size 769x19
 380 RenderText {#text} at (0,1) size 38x18
 381 text run at (0,1) width 5 RTL: "\x{202B}!"
 382 text run at (5,1) width 33 RTL: "\x{5D0}\x{5D1}(^"
 383 text run at (38,1) width 0: "\x{202C}"
 384 RenderBlock {P} at (0,2749) size 769x28
 385 RenderText {#text} at (0,2) size 33x18
 386 text run at (0,2) width 5 RTL: "\x{202B}!"
 387 text run at (5,2) width 28 RTL: "\x{627}\x{628}(^"
 388 text run at (33,2) width 0: "\x{202C}"
 389 RenderBlock {P} at (0,2793) size 769x18
390390 RenderText {#text} at (0,0) size 49x18
391391 text run at (0,0) width 44: "ab12(^"
392392 text run at (44,0) width 5 RTL: "\x{202B}!"
393393 text run at (49,0) width 0: "\x{202C}"
394  RenderBlock {P} at (0,2380) size 769x18
395  RenderText {#text} at (0,0) size 54x18
396  text run at (0,0) width 5 RTL: "\x{202B}!"
397  text run at (5,0) width 13 RTL: "(^"
398  text run at (18,0) width 16: "12"
399  text run at (34,0) width 20 RTL: "\x{5D0}\x{5D1}"
400  text run at (54,0) width 0: "\x{202C}"
401  RenderBlock {P} at (0,2414) size 769x18
402  RenderText {#text} at (0,0) size 49x18
403  text run at (0,0) width 5 RTL: "\x{202B}!"
404  text run at (5,0) width 13 RTL: "(^"
405  text run at (18,0) width 16: "12"
406  text run at (34,0) width 15 RTL: "\x{627}\x{628}"
407  text run at (49,0) width 0: "\x{202C}"
408  RenderBlock {P} at (0,2448) size 769x18
409  RenderText {#text} at (0,0) size 49x18
410  text run at (0,0) width 15: "ab"
411  text run at (15,0) width 5 RTL: "\x{202B}!"
412  text run at (20,0) width 13 RTL: "(^"
413  text run at (33,0) width 16: "\x{661}\x{662}"
414  text run at (49,0) width 0: "\x{202C}"
415  RenderBlock {P} at (0,2482) size 769x18
416  RenderText {#text} at (0,0) size 54x18
417  text run at (0,0) width 5 RTL: "\x{202B}!"
418  text run at (5,0) width 13 RTL: "(^"
419  text run at (18,0) width 16: "\x{661}\x{662}"
420  text run at (34,0) width 20 RTL: "\x{5D0}\x{5D1}"
421  text run at (54,0) width 0: "\x{202C}"
422  RenderBlock {P} at (0,2516) size 769x18
423  RenderText {#text} at (0,0) size 49x18
424  text run at (0,0) width 5 RTL: "\x{202B}!"
425  text run at (5,0) width 13 RTL: "(^"
426  text run at (18,0) width 16: "\x{661}\x{662}"
427  text run at (34,0) width 15 RTL: "\x{627}\x{628}"
428  text run at (49,0) width 0: "\x{202C}"
429  RenderBlock {P} at (0,2550) size 769x18
 394 RenderBlock {P} at (0,2827) size 769x19
 395 RenderText {#text} at (0,1) size 54x18
 396 text run at (0,1) width 5 RTL: "\x{202B}!"
 397 text run at (5,1) width 13 RTL: "(^"
 398 text run at (18,1) width 16: "12"
 399 text run at (34,1) width 20 RTL: "\x{5D0}\x{5D1}"
 400 text run at (54,1) width 0: "\x{202C}"
 401 RenderBlock {P} at (0,2862) size 769x28
 402 RenderText {#text} at (0,2) size 49x18
 403 text run at (0,2) width 5 RTL: "\x{202B}!"
 404 text run at (5,2) width 13 RTL: "(^"
 405 text run at (18,2) width 16: "12"
 406 text run at (34,2) width 15 RTL: "\x{627}\x{628}"
 407 text run at (49,2) width 0: "\x{202C}"
 408 RenderBlock {P} at (0,2906) size 769x28
 409 RenderText {#text} at (0,2) size 49x18
 410 text run at (0,2) width 15: "ab"
 411 text run at (15,2) width 5 RTL: "\x{202B}!"
 412 text run at (20,2) width 13 RTL: "(^"
 413 text run at (33,2) width 16: "\x{661}\x{662}"
 414 text run at (49,2) width 0: "\x{202C}"
 415 RenderBlock {P} at (0,2950) size 769x28
 416 RenderText {#text} at (0,2) size 54x18
 417 text run at (0,2) width 5 RTL: "\x{202B}!"
 418 text run at (5,2) width 13 RTL: "(^"
 419 text run at (18,2) width 16: "\x{661}\x{662}"
 420 text run at (34,2) width 20 RTL: "\x{5D0}\x{5D1}"
 421 text run at (54,2) width 0: "\x{202C}"
 422 RenderBlock {P} at (0,2994) size 769x28
 423 RenderText {#text} at (0,2) size 49x18
 424 text run at (0,2) width 5 RTL: "\x{202B}!"
 425 text run at (5,2) width 13 RTL: "(^"
 426 text run at (18,2) width 16: "\x{661}\x{662}"
 427 text run at (34,2) width 15 RTL: "\x{627}\x{628}"
 428 text run at (49,2) width 0: "\x{202C}"
 429 RenderBlock {P} at (0,3038) size 769x18
430430 RenderText {#text} at (0,0) size 25x18
431431 text run at (0,0) width 7: "\x{202A}?"
432432 text run at (7,0) width 13: "\x{202C}(^"
433433 text run at (20,0) width 5 RTL: "\x{202B}!"
434434 text run at (25,0) width 0: "\x{202C}"
435  RenderBlock {P} at (0,2584) size 769x18
 435 RenderBlock {P} at (0,3072) size 769x18
436436 RenderText {#text} at (0,0) size 25x18
437437 text run at (0,0) width 5 RTL: "\x{202B}!"
438438 text run at (5,0) width 13 RTL: "\x{202C}(^"
439439 text run at (18,0) width 7 RTL: "\x{202B}?"
440440 text run at (25,0) width 0: "\x{202C}"
441  RenderBlock {P} at (0,2618) size 769x18
 441 RenderBlock {P} at (0,3106) size 769x18
442442 RenderText {#text} at (0,0) size 28x18
443443 text run at (0,0) width 28: "\x{202A}ab(^"
444444 text run at (28,0) width 0: "\x{202C}"
445  RenderBlock {P} at (0,2652) size 769x18
446  RenderText {#text} at (0,0) size 33x18
447  text run at (0,0) width 20 RTL: "\x{202A}\x{5D0}\x{5D1}"
448  text run at (20,0) width 13: "(^"
449  text run at (33,0) width 0: "\x{202C}"
450  RenderBlock {P} at (0,2686) size 769x18
451  RenderText {#text} at (0,0) size 28x18
452  text run at (0,0) width 15 RTL: "\x{202A}\x{627}\x{628}"
453  text run at (15,0) width 13: "(^"
454  text run at (28,0) width 0: "\x{202C}"
455  RenderBlock {P} at (0,2720) size 769x18
 445 RenderBlock {P} at (0,3140) size 769x19
 446 RenderText {#text} at (0,1) size 33x18
 447 text run at (0,1) width 20 RTL: "\x{202A}\x{5D0}\x{5D1}"
 448 text run at (20,1) width 13: "(^"
 449 text run at (33,1) width 0: "\x{202C}"
 450 RenderBlock {P} at (0,3175) size 769x28
 451 RenderText {#text} at (0,2) size 28x18
 452 text run at (0,2) width 15 RTL: "\x{202A}\x{627}\x{628}"
 453 text run at (15,2) width 13: "(^"
 454 text run at (28,2) width 0: "\x{202C}"
 455 RenderBlock {P} at (0,3219) size 769x18
456456 RenderText {#text} at (0,0) size 44x18
457457 text run at (0,0) width 44: "\x{202A}ab12(^"
458458 text run at (44,0) width 0: "\x{202C}"
459  RenderBlock {P} at (0,2754) size 769x18
460  RenderText {#text} at (0,0) size 49x18
461  text run at (0,0) width 16: "12"
462  text run at (16,0) width 20 RTL: "\x{202A}\x{5D0}\x{5D1}"
463  text run at (36,0) width 13: "(^"
464  text run at (49,0) width 0: "\x{202C}"
465  RenderBlock {P} at (0,2788) size 769x18
466  RenderText {#text} at (0,0) size 44x18
467  text run at (0,0) width 16: "12"
468  text run at (16,0) width 15 RTL: "\x{202A}\x{627}\x{628}"
469  text run at (31,0) width 13: "(^"
470  text run at (44,0) width 0: "\x{202C}"
471  RenderBlock {P} at (0,2822) size 769x18
472  RenderText {#text} at (0,0) size 44x18
473  text run at (0,0) width 15: "\x{202A}ab"
474  text run at (15,0) width 16: "\x{661}\x{662}"
475  text run at (31,0) width 13: "(^"
476  text run at (44,0) width 0: "\x{202C}"
477  RenderBlock {P} at (0,2856) size 769x18
478  RenderText {#text} at (0,0) size 49x18
479  text run at (0,0) width 16: "\x{661}\x{662}"
480  text run at (16,0) width 20 RTL: "\x{202A}\x{5D0}\x{5D1}"
481  text run at (36,0) width 13: "(^"
482  text run at (49,0) width 0: "\x{202C}"
483  RenderBlock {P} at (0,2890) size 769x18
484  RenderText {#text} at (0,0) size 44x18
485  text run at (0,0) width 16: "\x{661}\x{662}"
486  text run at (16,0) width 15 RTL: "\x{202A}\x{627}\x{628}"
487  text run at (31,0) width 13: "(^"
488  text run at (44,0) width 0: "\x{202C}"
489  RenderBlock {P} at (0,2924) size 769x18
 459 RenderBlock {P} at (0,3253) size 769x19
 460 RenderText {#text} at (0,1) size 49x18
 461 text run at (0,1) width 16: "12"
 462 text run at (16,1) width 20 RTL: "\x{202A}\x{5D0}\x{5D1}"
 463 text run at (36,1) width 13: "(^"
 464 text run at (49,1) width 0: "\x{202C}"
 465 RenderBlock {P} at (0,3288) size 769x28
 466 RenderText {#text} at (0,2) size 44x18
 467 text run at (0,2) width 16: "12"
 468 text run at (16,2) width 15 RTL: "\x{202A}\x{627}\x{628}"
 469 text run at (31,2) width 13: "(^"
 470 text run at (44,2) width 0: "\x{202C}"
 471 RenderBlock {P} at (0,3332) size 769x28
 472 RenderText {#text} at (0,2) size 44x18
 473 text run at (0,2) width 15: "\x{202A}ab"
 474 text run at (15,2) width 16: "\x{661}\x{662}"
 475 text run at (31,2) width 13: "(^"
 476 text run at (44,2) width 0: "\x{202C}"
 477 RenderBlock {P} at (0,3376) size 769x28
 478 RenderText {#text} at (0,2) size 49x18
 479 text run at (0,2) width 16: "\x{661}\x{662}"
 480 text run at (16,2) width 20 RTL: "\x{202A}\x{5D0}\x{5D1}"
 481 text run at (36,2) width 13: "(^"
 482 text run at (49,2) width 0: "\x{202C}"
 483 RenderBlock {P} at (0,3420) size 769x28
 484 RenderText {#text} at (0,2) size 44x18
 485 text run at (0,2) width 16: "\x{661}\x{662}"
 486 text run at (16,2) width 15 RTL: "\x{202A}\x{627}\x{628}"
 487 text run at (31,2) width 13: "(^"
 488 text run at (44,2) width 0: "\x{202C}"
 489 RenderBlock {P} at (0,3464) size 769x18
490490 RenderText {#text} at (0,0) size 20x18
491491 text run at (0,0) width 0: "\x{202A}"
492492 text run at (0,0) width 7: "\x{202A}?"
493493 text run at (7,0) width 13: "\x{202C}(^"
494494 text run at (20,0) width 0: "\x{202C}"
495  RenderBlock {P} at (0,2958) size 769x18
 495 RenderBlock {P} at (0,3498) size 769x18
496496 RenderText {#text} at (0,0) size 20x18
497497 text run at (0,0) width 0: "\x{202A}"
498498 text run at (0,0) width 7 RTL: "\x{202B}?"
499499 text run at (7,0) width 13: "\x{202C}(^"
500500 text run at (20,0) width 0: "\x{202C}"
501  RenderBlock {DIV} at (0,3026) size 769x2976
 501 RenderBlock {DIV} at (0,3566) size 769x3516
502502 RenderBlock {P} at (0,0) size 769x18
503503 RenderText {#text} at (0,0) size 43x18
504504 text run at (0,0) width 43: "ab(^cd"
505  RenderBlock {P} at (0,34) size 769x18
506  RenderText {#text} at (0,0) size 48x18
507  text run at (0,0) width 15: "cd"
508  text run at (15,0) width 33 RTL: "\x{5D0}\x{5D1}(^"
509  RenderBlock {P} at (0,68) size 769x18
510  RenderText {#text} at (0,0) size 43x18
511  text run at (0,0) width 15: "cd"
512  text run at (15,0) width 28 RTL: "\x{627}\x{628}(^"
513  RenderBlock {P} at (0,102) size 769x18
 505 RenderBlock {P} at (0,34) size 769x19
 506 RenderText {#text} at (0,1) size 48x18
 507 text run at (0,1) width 15: "cd"
 508 text run at (15,1) width 33 RTL: "\x{5D0}\x{5D1}(^"
 509 RenderBlock {P} at (0,69) size 769x28
 510 RenderText {#text} at (0,2) size 43x18
 511 text run at (0,2) width 15: "cd"
 512 text run at (15,2) width 28 RTL: "\x{627}\x{628}(^"
 513 RenderBlock {P} at (0,113) size 769x18
514514 RenderText {#text} at (0,0) size 59x18
515515 text run at (0,0) width 59: "ab12(^cd"
516  RenderBlock {P} at (0,136) size 769x18
517  RenderText {#text} at (0,0) size 64x18
518  text run at (0,0) width 15: "cd"
519  text run at (15,0) width 13 RTL: "(^"
520  text run at (28,0) width 16: "12"
521  text run at (44,0) width 20 RTL: "\x{5D0}\x{5D1}"
522  RenderBlock {P} at (0,170) size 769x18
523  RenderText {#text} at (0,0) size 59x18
524  text run at (0,0) width 15: "cd"
525  text run at (15,0) width 13 RTL: "(^"
526  text run at (28,0) width 16: "12"
527  text run at (44,0) width 15 RTL: "\x{627}\x{628}"
528  RenderBlock {P} at (0,204) size 769x18
529  RenderText {#text} at (0,0) size 59x18
530  text run at (0,0) width 15: "cd"
531  text run at (15,0) width 13 RTL: "(^"
532  text run at (28,0) width 31: "ab\x{661}\x{662}"
533  RenderBlock {P} at (0,238) size 769x18
534  RenderText {#text} at (0,0) size 64x18
535  text run at (0,0) width 15: "cd"
536  text run at (15,0) width 13 RTL: "(^"
537  text run at (28,0) width 16: "\x{661}\x{662}"
538  text run at (44,0) width 20 RTL: "\x{5D0}\x{5D1}"
539  RenderBlock {P} at (0,272) size 769x18
540  RenderText {#text} at (0,0) size 59x18
541  text run at (0,0) width 15: "cd"
542  text run at (15,0) width 13 RTL: "(^"
543  text run at (28,0) width 16: "\x{661}\x{662}"
544  text run at (44,0) width 15 RTL: "\x{627}\x{628}"
545  RenderBlock {P} at (0,306) size 769x18
 516 RenderBlock {P} at (0,147) size 769x19
 517 RenderText {#text} at (0,1) size 64x18
 518 text run at (0,1) width 15: "cd"
 519 text run at (15,1) width 13 RTL: "(^"
 520 text run at (28,1) width 16: "12"
 521 text run at (44,1) width 20 RTL: "\x{5D0}\x{5D1}"
 522 RenderBlock {P} at (0,182) size 769x28
 523 RenderText {#text} at (0,2) size 59x18
 524 text run at (0,2) width 15: "cd"
 525 text run at (15,2) width 13 RTL: "(^"
 526 text run at (28,2) width 16: "12"
 527 text run at (44,2) width 15 RTL: "\x{627}\x{628}"
 528 RenderBlock {P} at (0,226) size 769x28
 529 RenderText {#text} at (0,2) size 59x18
 530 text run at (0,2) width 15: "cd"
 531 text run at (15,2) width 13 RTL: "(^"
 532 text run at (28,2) width 31: "ab\x{661}\x{662}"
 533 RenderBlock {P} at (0,270) size 769x28
 534 RenderText {#text} at (0,2) size 64x18
 535 text run at (0,2) width 15: "cd"
 536 text run at (15,2) width 13 RTL: "(^"
 537 text run at (28,2) width 16: "\x{661}\x{662}"
 538 text run at (44,2) width 20 RTL: "\x{5D0}\x{5D1}"
 539 RenderBlock {P} at (0,314) size 769x28
 540 RenderText {#text} at (0,2) size 59x18
 541 text run at (0,2) width 15: "cd"
 542 text run at (15,2) width 13 RTL: "(^"
 543 text run at (28,2) width 16: "\x{661}\x{662}"
 544 text run at (44,2) width 15 RTL: "\x{627}\x{628}"
 545 RenderBlock {P} at (0,358) size 769x18
546546 RenderText {#text} at (0,0) size 35x18
547547 text run at (0,0) width 7: "\x{202A}?"
548548 text run at (7,0) width 28: "\x{202C}(^cd"
549  RenderBlock {P} at (0,340) size 769x18
 549 RenderBlock {P} at (0,392) size 769x18
550550 RenderText {#text} at (0,0) size 35x18
551551 text run at (0,0) width 15: "cd"
552552 text run at (15,0) width 13 RTL: "\x{202C}(^"
553553 text run at (28,0) width 7 RTL: "\x{202B}?"
554  RenderBlock {P} at (0,374) size 769x18
555  RenderText {#text} at (0,0) size 43x18
556  text run at (0,0) width 28 RTL: "(^\x{5D2}\x{5D3}"
557  text run at (28,0) width 15: "ab"
558  RenderBlock {P} at (0,408) size 769x18
559  RenderText {#text} at (0,0) size 48x18
560  text run at (0,0) width 48 RTL: "\x{5D0}\x{5D1}(^\x{5D2}\x{5D3}"
561  RenderBlock {P} at (0,442) size 769x18
562  RenderText {#text} at (0,0) size 43x18
563  text run at (0,0) width 43 RTL: "\x{627}\x{628}(^\x{5D2}\x{5D3}"
564  RenderBlock {P} at (0,476) size 769x18
565  RenderText {#text} at (0,0) size 59x18
566  text run at (0,0) width 28 RTL: "(^\x{5D2}\x{5D3}"
567  text run at (28,0) width 31: "ab12"
568  RenderBlock {P} at (0,510) size 769x18
569  RenderText {#text} at (0,0) size 64x18
570  text run at (0,0) width 28 RTL: "(^\x{5D2}\x{5D3}"
571  text run at (28,0) width 16: "12"
572  text run at (44,0) width 20 RTL: "\x{5D0}\x{5D1}"
573  RenderBlock {P} at (0,544) size 769x18
574  RenderText {#text} at (0,0) size 59x18
575  text run at (0,0) width 28 RTL: "(^\x{5D2}\x{5D3}"
576  text run at (28,0) width 16: "12"
577  text run at (44,0) width 15 RTL: "\x{627}\x{628}"
578  RenderBlock {P} at (0,578) size 769x18
579  RenderText {#text} at (0,0) size 59x18
580  text run at (0,0) width 28 RTL: "(^\x{5D2}\x{5D3}"
581  text run at (28,0) width 31: "ab\x{661}\x{662}"
582  RenderBlock {P} at (0,612) size 769x18
583  RenderText {#text} at (0,0) size 64x18
584  text run at (0,0) width 28 RTL: "(^\x{5D2}\x{5D3}"
585  text run at (28,0) width 16: "\x{661}\x{662}"
586  text run at (44,0) width 20 RTL: "\x{5D0}\x{5D1}"
587  RenderBlock {P} at (0,646) size 769x18
588  RenderText {#text} at (0,0) size 59x18
589  text run at (0,0) width 28 RTL: "(^\x{5D2}\x{5D3}"
590  text run at (28,0) width 16: "\x{661}\x{662}"
591  text run at (44,0) width 15 RTL: "\x{627}\x{628}"
592  RenderBlock {P} at (0,680) size 769x18
593  RenderText {#text} at (0,0) size 35x18
594  text run at (0,0) width 28 RTL: "\x{202C}(^\x{5D2}\x{5D3}"
595  text run at (28,0) width 7: "\x{202A}?"
596  RenderBlock {P} at (0,714) size 769x18
597  RenderText {#text} at (0,0) size 35x18
598  text run at (0,0) width 28 RTL: "\x{202C}(^\x{5D2}\x{5D3}"
599  text run at (28,0) width 7 RTL: "\x{202B}?"
600  RenderBlock {P} at (0,748) size 769x18
601  RenderText {#text} at (0,0) size 45x18
602  text run at (0,0) width 30 RTL: "(^\x{62C}\x{62F}"
603  text run at (30,0) width 15: "ab"
604  RenderBlock {P} at (0,782) size 769x18
605  RenderText {#text} at (0,0) size 50x18
606  text run at (0,0) width 50 RTL: "\x{5D0}\x{5D1}(^\x{62C}\x{62F}"
607  RenderBlock {P} at (0,816) size 769x18
608  RenderText {#text} at (0,0) size 45x18
609  text run at (0,0) width 45 RTL: "\x{627}\x{628}(^\x{62C}\x{62F}"
610  RenderBlock {P} at (0,850) size 769x18
611  RenderText {#text} at (0,0) size 61x18
612  text run at (0,0) width 30 RTL: "(^\x{62C}\x{62F}"
613  text run at (30,0) width 31: "ab12"
614  RenderBlock {P} at (0,884) size 769x18
615  RenderText {#text} at (0,0) size 66x18
616  text run at (0,0) width 30 RTL: "(^\x{62C}\x{62F}"
617  text run at (30,0) width 16: "12"
618  text run at (46,0) width 20 RTL: "\x{5D0}\x{5D1}"
619  RenderBlock {P} at (0,918) size 769x18
620  RenderText {#text} at (0,0) size 61x18
621  text run at (0,0) width 30 RTL: "(^\x{62C}\x{62F}"
622  text run at (30,0) width 16: "12"
623  text run at (46,0) width 15 RTL: "\x{627}\x{628}"
624  RenderBlock {P} at (0,952) size 769x18
625  RenderText {#text} at (0,0) size 61x18
626  text run at (0,0) width 30 RTL: "(^\x{62C}\x{62F}"
627  text run at (30,0) width 31: "ab\x{661}\x{662}"
628  RenderBlock {P} at (0,986) size 769x18
629  RenderText {#text} at (0,0) size 66x18
630  text run at (0,0) width 30 RTL: "(^\x{62C}\x{62F}"
631  text run at (30,0) width 16: "\x{661}\x{662}"
632  text run at (46,0) width 20 RTL: "\x{5D0}\x{5D1}"
633  RenderBlock {P} at (0,1020) size 769x18
634  RenderText {#text} at (0,0) size 61x18
635  text run at (0,0) width 30 RTL: "(^\x{62C}\x{62F}"
636  text run at (30,0) width 16: "\x{661}\x{662}"
637  text run at (46,0) width 15 RTL: "\x{627}\x{628}"
638  RenderBlock {P} at (0,1054) size 769x18
639  RenderText {#text} at (0,0) size 37x18
640  text run at (0,0) width 30 RTL: "\x{202C}(^\x{62C}\x{62F}"
641  text run at (30,0) width 7: "\x{202A}?"
642  RenderBlock {P} at (0,1088) size 769x18
643  RenderText {#text} at (0,0) size 37x18
644  text run at (0,0) width 30 RTL: "\x{202C}(^\x{62C}\x{62F}"
645  text run at (30,0) width 7 RTL: "\x{202B}?"
646  RenderBlock {P} at (0,1122) size 769x18
647  RenderText {#text} at (0,0) size 63x18
648  text run at (0,0) width 7: "z"
649  text run at (7,0) width 12 RTL: "\x{5E9}"
650  text run at (19,0) width 44: "ab(^34"
651  RenderBlock {P} at (0,1156) size 769x18
652  RenderText {#text} at (0,0) size 68x18
653  text run at (0,0) width 7: "z"
654  text run at (7,0) width 12 RTL: "\x{5E9}"
655  text run at (19,0) width 16: "34"
656  text run at (35,0) width 33 RTL: "\x{5D0}\x{5D1}(^"
657  RenderBlock {P} at (0,1190) size 769x18
658  RenderText {#text} at (0,0) size 63x18
659  text run at (0,0) width 7: "z"
660  text run at (7,0) width 12 RTL: "\x{5E9}"
661  text run at (19,0) width 16: "34"
662  text run at (35,0) width 28 RTL: "\x{627}\x{628}(^"
663  RenderBlock {P} at (0,1224) size 769x18
664  RenderText {#text} at (0,0) size 79x18
665  text run at (0,0) width 7: "z"
666  text run at (7,0) width 12 RTL: "\x{5E9}"
667  text run at (19,0) width 60: "ab12(^34"
668  RenderBlock {P} at (0,1258) size 769x18
669  RenderText {#text} at (0,0) size 84x18
670  text run at (0,0) width 7: "z"
671  text run at (7,0) width 12 RTL: "\x{5E9}"
672  text run at (19,0) width 16: "34"
673  text run at (35,0) width 13 RTL: "(^"
674  text run at (48,0) width 16: "12"
675  text run at (64,0) width 20 RTL: "\x{5D0}\x{5D1}"
676  RenderBlock {P} at (0,1292) size 769x18
677  RenderText {#text} at (0,0) size 79x18
678  text run at (0,0) width 7: "z"
679  text run at (7,0) width 12 RTL: "\x{5E9}"
680  text run at (19,0) width 16: "34"
681  text run at (35,0) width 13 RTL: "(^"
682  text run at (48,0) width 16: "12"
683  text run at (64,0) width 15 RTL: "\x{627}\x{628}"
684  RenderBlock {P} at (0,1326) size 769x18
685  RenderText {#text} at (0,0) size 79x18
686  text run at (0,0) width 7: "z"
687  text run at (7,0) width 12 RTL: "\x{5E9}"
688  text run at (19,0) width 16: "34"
689  text run at (35,0) width 13 RTL: "(^"
690  text run at (48,0) width 31: "ab\x{661}\x{662}"
691  RenderBlock {P} at (0,1360) size 769x18
692  RenderText {#text} at (0,0) size 84x18
693  text run at (0,0) width 7: "z"
694  text run at (7,0) width 12 RTL: "\x{5E9}"
695  text run at (19,0) width 16: "34"
696  text run at (35,0) width 13 RTL: "(^"
697  text run at (48,0) width 16: "\x{661}\x{662}"
698  text run at (64,0) width 20 RTL: "\x{5D0}\x{5D1}"
699  RenderBlock {P} at (0,1394) size 769x18
700  RenderText {#text} at (0,0) size 79x18
701  text run at (0,0) width 7: "z"
702  text run at (7,0) width 12 RTL: "\x{5E9}"
703  text run at (19,0) width 16: "34"
704  text run at (35,0) width 13 RTL: "(^"
705  text run at (48,0) width 16: "\x{661}\x{662}"
706  text run at (64,0) width 15 RTL: "\x{627}\x{628}"
707  RenderBlock {P} at (0,1428) size 769x18
708  RenderText {#text} at (0,0) size 55x18
709  text run at (0,0) width 7: "z"
710  text run at (7,0) width 12 RTL: "\x{5E9}"
711  text run at (19,0) width 7: "\x{202A}?"
712  text run at (26,0) width 29: "\x{202C}(^34"
713  RenderBlock {P} at (0,1462) size 769x18
714  RenderText {#text} at (0,0) size 55x18
715  text run at (0,0) width 7: "z"
716  text run at (7,0) width 12 RTL: "\x{5E9}"
717  text run at (19,0) width 16: "34"
718  text run at (35,0) width 13 RTL: "\x{202C}(^"
719  text run at (48,0) width 7 RTL: "\x{202B}?"
720  RenderBlock {P} at (0,1496) size 769x18
721  RenderText {#text} at (0,0) size 63x18
722  text run at (0,0) width 7: "z"
723  text run at (7,0) width 12 RTL: "\x{5E9}"
724  text run at (19,0) width 16: "\x{663}\x{664}"
725  text run at (35,0) width 13 RTL: "(^"
726  text run at (48,0) width 15: "ab"
727  RenderBlock {P} at (0,1530) size 769x18
728  RenderText {#text} at (0,0) size 68x18
729  text run at (0,0) width 7: "z"
730  text run at (7,0) width 12 RTL: "\x{5E9}"
731  text run at (19,0) width 16: "\x{663}\x{664}"
732  text run at (35,0) width 33 RTL: "\x{5D0}\x{5D1}(^"
733  RenderBlock {P} at (0,1564) size 769x18
734  RenderText {#text} at (0,0) size 63x18
735  text run at (0,0) width 7: "z"
736  text run at (7,0) width 12 RTL: "\x{5E9}"
737  text run at (19,0) width 16: "\x{663}\x{664}"
738  text run at (35,0) width 28 RTL: "\x{627}\x{628}(^"
739  RenderBlock {P} at (0,1598) size 769x18
740  RenderText {#text} at (0,0) size 79x18
741  text run at (0,0) width 7: "z"
742  text run at (7,0) width 12 RTL: "\x{5E9}"
743  text run at (19,0) width 16: "\x{663}\x{664}"
744  text run at (35,0) width 13 RTL: "(^"
745  text run at (48,0) width 31: "ab12"
746  RenderBlock {P} at (0,1632) size 769x18
747  RenderText {#text} at (0,0) size 84x18
748  text run at (0,0) width 7: "z"
749  text run at (7,0) width 12 RTL: "\x{5E9}"
750  text run at (19,0) width 16: "\x{663}\x{664}"
751  text run at (35,0) width 13 RTL: "(^"
752  text run at (48,0) width 16: "12"
753  text run at (64,0) width 20 RTL: "\x{5D0}\x{5D1}"
754  RenderBlock {P} at (0,1666) size 769x18
755  RenderText {#text} at (0,0) size 79x18
756  text run at (0,0) width 7: "z"
757  text run at (7,0) width 12 RTL: "\x{5E9}"
758  text run at (19,0) width 16: "\x{663}\x{664}"
759  text run at (35,0) width 13 RTL: "(^"
760  text run at (48,0) width 16: "12"
761  text run at (64,0) width 15 RTL: "\x{627}\x{628}"
762  RenderBlock {P} at (0,1700) size 769x18
763  RenderText {#text} at (0,0) size 79x18
764  text run at (0,0) width 7: "z"
765  text run at (7,0) width 12 RTL: "\x{5E9}"
766  text run at (19,0) width 16: "\x{663}\x{664}"
767  text run at (35,0) width 13 RTL: "(^"
768  text run at (48,0) width 31: "ab\x{661}\x{662}"
769  RenderBlock {P} at (0,1734) size 769x18
770  RenderText {#text} at (0,0) size 84x18
771  text run at (0,0) width 7: "z"
772  text run at (7,0) width 12 RTL: "\x{5E9}"
773  text run at (19,0) width 16: "\x{663}\x{664}"
774  text run at (35,0) width 13 RTL: "(^"
775  text run at (48,0) width 16: "\x{661}\x{662}"
776  text run at (64,0) width 20 RTL: "\x{5D0}\x{5D1}"
777  RenderBlock {P} at (0,1768) size 769x18
778  RenderText {#text} at (0,0) size 79x18
779  text run at (0,0) width 7: "z"
780  text run at (7,0) width 12 RTL: "\x{5E9}"
781  text run at (19,0) width 16: "\x{663}\x{664}"
782  text run at (35,0) width 13 RTL: "(^"
783  text run at (48,0) width 16: "\x{661}\x{662}"
784  text run at (64,0) width 15 RTL: "\x{627}\x{628}"
785  RenderBlock {P} at (0,1802) size 769x18
786  RenderText {#text} at (0,0) size 55x18
787  text run at (0,0) width 7: "z"
788  text run at (7,0) width 12 RTL: "\x{5E9}"
789  text run at (19,0) width 16: "\x{663}\x{664}"
790  text run at (35,0) width 13 RTL: "\x{202C}(^"
791  text run at (48,0) width 7: "\x{202A}?"
792  RenderBlock {P} at (0,1836) size 769x18
793  RenderText {#text} at (0,0) size 55x18
794  text run at (0,0) width 7: "z"
795  text run at (7,0) width 12 RTL: "\x{5E9}"
796  text run at (19,0) width 16: "\x{663}\x{664}"
797  text run at (35,0) width 13 RTL: "\x{202C}(^"
798  text run at (48,0) width 7 RTL: "\x{202B}?"
799  RenderBlock {P} at (0,1870) size 769x18
 554 RenderBlock {P} at (0,426) size 769x19
 555 RenderText {#text} at (0,1) size 43x18
 556 text run at (0,1) width 28 RTL: "(^\x{5D2}\x{5D3}"
 557 text run at (28,1) width 15: "ab"
 558 RenderBlock {P} at (0,461) size 769x19
 559 RenderText {#text} at (0,1) size 48x18
 560 text run at (0,1) width 48 RTL: "\x{5D0}\x{5D1}(^\x{5D2}\x{5D3}"
 561 RenderBlock {P} at (0,496) size 769x28
 562 RenderText {#text} at (0,2) size 43x18
 563 text run at (0,2) width 43 RTL: "\x{627}\x{628}(^\x{5D2}\x{5D3}"
 564 RenderBlock {P} at (0,540) size 769x19
 565 RenderText {#text} at (0,1) size 59x18
 566 text run at (0,1) width 28 RTL: "(^\x{5D2}\x{5D3}"
 567 text run at (28,1) width 31: "ab12"
 568 RenderBlock {P} at (0,575) size 769x19
 569 RenderText {#text} at (0,1) size 64x18
 570 text run at (0,1) width 28 RTL: "(^\x{5D2}\x{5D3}"
 571 text run at (28,1) width 16: "12"
 572 text run at (44,1) width 20 RTL: "\x{5D0}\x{5D1}"
 573 RenderBlock {P} at (0,610) size 769x28
 574 RenderText {#text} at (0,2) size 59x18
 575 text run at (0,2) width 28 RTL: "(^\x{5D2}\x{5D3}"
 576 text run at (28,2) width 16: "12"
 577 text run at (44,2) width 15 RTL: "\x{627}\x{628}"
 578 RenderBlock {P} at (0,654) size 769x28
 579 RenderText {#text} at (0,2) size 59x18
 580 text run at (0,2) width 28 RTL: "(^\x{5D2}\x{5D3}"
 581 text run at (28,2) width 31: "ab\x{661}\x{662}"
 582 RenderBlock {P} at (0,698) size 769x28
 583 RenderText {#text} at (0,2) size 64x18
 584 text run at (0,2) width 28 RTL: "(^\x{5D2}\x{5D3}"
 585 text run at (28,2) width 16: "\x{661}\x{662}"
 586 text run at (44,2) width 20 RTL: "\x{5D0}\x{5D1}"
 587 RenderBlock {P} at (0,742) size 769x28
 588 RenderText {#text} at (0,2) size 59x18
 589 text run at (0,2) width 28 RTL: "(^\x{5D2}\x{5D3}"
 590 text run at (28,2) width 16: "\x{661}\x{662}"
 591 text run at (44,2) width 15 RTL: "\x{627}\x{628}"
 592 RenderBlock {P} at (0,786) size 769x19
 593 RenderText {#text} at (0,1) size 35x18
 594 text run at (0,1) width 28 RTL: "\x{202C}(^\x{5D2}\x{5D3}"
 595 text run at (28,1) width 7: "\x{202A}?"
 596 RenderBlock {P} at (0,821) size 769x19
 597 RenderText {#text} at (0,1) size 35x18
 598 text run at (0,1) width 28 RTL: "\x{202C}(^\x{5D2}\x{5D3}"
 599 text run at (28,1) width 7 RTL: "\x{202B}?"
 600 RenderBlock {P} at (0,856) size 769x28
 601 RenderText {#text} at (0,2) size 45x18
 602 text run at (0,2) width 30 RTL: "(^\x{62C}\x{62F}"
 603 text run at (30,2) width 15: "ab"
 604 RenderBlock {P} at (0,900) size 769x28
 605 RenderText {#text} at (0,2) size 50x18
 606 text run at (0,2) width 50 RTL: "\x{5D0}\x{5D1}(^\x{62C}\x{62F}"
 607 RenderBlock {P} at (0,944) size 769x28
 608 RenderText {#text} at (0,2) size 45x18
 609 text run at (0,2) width 45 RTL: "\x{627}\x{628}(^\x{62C}\x{62F}"
 610 RenderBlock {P} at (0,988) size 769x28
 611 RenderText {#text} at (0,2) size 61x18
 612 text run at (0,2) width 30 RTL: "(^\x{62C}\x{62F}"
 613 text run at (30,2) width 31: "ab12"
 614 RenderBlock {P} at (0,1032) size 769x28
 615 RenderText {#text} at (0,2) size 66x18
 616 text run at (0,2) width 30 RTL: "(^\x{62C}\x{62F}"
 617 text run at (30,2) width 16: "12"
 618 text run at (46,2) width 20 RTL: "\x{5D0}\x{5D1}"
 619 RenderBlock {P} at (0,1076) size 769x28
 620 RenderText {#text} at (0,2) size 61x18
 621 text run at (0,2) width 30 RTL: "(^\x{62C}\x{62F}"
 622 text run at (30,2) width 16: "12"
 623 text run at (46,2) width 15 RTL: "\x{627}\x{628}"
 624 RenderBlock {P} at (0,1120) size 769x28
 625 RenderText {#text} at (0,2) size 61x18
 626 text run at (0,2) width 30 RTL: "(^\x{62C}\x{62F}"
 627 text run at (30,2) width 31: "ab\x{661}\x{662}"
 628 RenderBlock {P} at (0,1164) size 769x28
 629 RenderText {#text} at (0,2) size 66x18
 630 text run at (0,2) width 30 RTL: "(^\x{62C}\x{62F}"
 631 text run at (30,2) width 16: "\x{661}\x{662}"
 632 text run at (46,2) width 20 RTL: "\x{5D0}\x{5D1}"
 633 RenderBlock {P} at (0,1208) size 769x28
 634 RenderText {#text} at (0,2) size 61x18
 635 text run at (0,2) width 30 RTL: "(^\x{62C}\x{62F}"
 636 text run at (30,2) width 16: "\x{661}\x{662}"
 637 text run at (46,2) width 15 RTL: "\x{627}\x{628}"
 638 RenderBlock {P} at (0,1252) size 769x28
 639 RenderText {#text} at (0,2) size 37x18
 640 text run at (0,2) width 30 RTL: "\x{202C}(^\x{62C}\x{62F}"
 641 text run at (30,2) width 7: "\x{202A}?"
 642 RenderBlock {P} at (0,1296) size 769x28
 643 RenderText {#text} at (0,2) size 37x18
 644 text run at (0,2) width 30 RTL: "\x{202C}(^\x{62C}\x{62F}"
 645 text run at (30,2) width 7 RTL: "\x{202B}?"
 646 RenderBlock {P} at (0,1340) size 769x19
 647 RenderText {#text} at (0,1) size 63x18
 648 text run at (0,1) width 7: "z"
 649 text run at (7,1) width 12 RTL: "\x{5E9}"
 650 text run at (19,1) width 44: "ab(^34"
 651 RenderBlock {P} at (0,1375) size 769x19
 652 RenderText {#text} at (0,1) size 68x18
 653 text run at (0,1) width 7: "z"
 654 text run at (7,1) width 12 RTL: "\x{5E9}"
 655 text run at (19,1) width 16: "34"
 656 text run at (35,1) width 33 RTL: "\x{5D0}\x{5D1}(^"
 657 RenderBlock {P} at (0,1410) size 769x28
 658 RenderText {#text} at (0,2) size 63x18
 659 text run at (0,2) width 7: "z"
 660 text run at (7,2) width 12 RTL: "\x{5E9}"
 661 text run at (19,2) width 16: "34"
 662 text run at (35,2) width 28 RTL: "\x{627}\x{628}(^"
 663 RenderBlock {P} at (0,1454) size 769x19
 664 RenderText {#text} at (0,1) size 79x18
 665 text run at (0,1) width 7: "z"
 666 text run at (7,1) width 12 RTL: "\x{5E9}"
 667 text run at (19,1) width 60: "ab12(^34"
 668 RenderBlock {P} at (0,1489) size 769x19
 669 RenderText {#text} at (0,1) size 84x18
 670 text run at (0,1) width 7: "z"
 671 text run at (7,1) width 12 RTL: "\x{5E9}"
 672 text run at (19,1) width 16: "34"
 673 text run at (35,1) width 13 RTL: "(^"
 674 text run at (48,1) width 16: "12"
 675 text run at (64,1) width 20 RTL: "\x{5D0}\x{5D1}"
 676 RenderBlock {P} at (0,1524) size 769x28
 677 RenderText {#text} at (0,2) size 79x18
 678 text run at (0,2) width 7: "z"
 679 text run at (7,2) width 12 RTL: "\x{5E9}"
 680 text run at (19,2) width 16: "34"
 681 text run at (35,2) width 13 RTL: "(^"
 682 text run at (48,2) width 16: "12"
 683 text run at (64,2) width 15 RTL: "\x{627}\x{628}"
 684 RenderBlock {P} at (0,1568) size 769x28
 685 RenderText {#text} at (0,2) size 79x18
 686 text run at (0,2) width 7: "z"
 687 text run at (7,2) width 12 RTL: "\x{5E9}"
 688 text run at (19,2) width 16: "34"
 689 text run at (35,2) width 13 RTL: "(^"
 690 text run at (48,2) width 31: "ab\x{661}\x{662}"
 691 RenderBlock {P} at (0,1612) size 769x28
 692 RenderText {#text} at (0,2) size 84x18
 693 text run at (0,2) width 7: "z"
 694 text run at (7,2) width 12 RTL: "\x{5E9}"
 695 text run at (19,2) width 16: "34"
 696 text run at (35,2) width 13 RTL: "(^"
 697 text run at (48,2) width 16: "\x{661}\x{662}"
 698 text run at (64,2) width 20 RTL: "\x{5D0}\x{5D1}"
 699 RenderBlock {P} at (0,1656) size 769x28
 700 RenderText {#text} at (0,2) size 79x18
 701 text run at (0,2) width 7: "z"
 702 text run at (7,2) width 12 RTL: "\x{5E9}"
 703 text run at (19,2) width 16: "34"
 704 text run at (35,2) width 13 RTL: "(^"
 705 text run at (48,2) width 16: "\x{661}\x{662}"
 706 text run at (64,2) width 15 RTL: "\x{627}\x{628}"
 707 RenderBlock {P} at (0,1700) size 769x19
 708 RenderText {#text} at (0,1) size 55x18
 709 text run at (0,1) width 7: "z"
 710 text run at (7,1) width 12 RTL: "\x{5E9}"
 711 text run at (19,1) width 7: "\x{202A}?"
 712 text run at (26,1) width 29: "\x{202C}(^34"
 713 RenderBlock {P} at (0,1735) size 769x19
 714 RenderText {#text} at (0,1) size 55x18
 715 text run at (0,1) width 7: "z"
 716 text run at (7,1) width 12 RTL: "\x{5E9}"
 717 text run at (19,1) width 16: "34"
 718 text run at (35,1) width 13 RTL: "\x{202C}(^"
 719 text run at (48,1) width 7 RTL: "\x{202B}?"
 720 RenderBlock {P} at (0,1770) size 769x28
 721 RenderText {#text} at (0,2) size 63x18
 722 text run at (0,2) width 7: "z"
 723 text run at (7,2) width 12 RTL: "\x{5E9}"
 724 text run at (19,2) width 16: "\x{663}\x{664}"
 725 text run at (35,2) width 13 RTL: "(^"
 726 text run at (48,2) width 15: "ab"
 727 RenderBlock {P} at (0,1814) size 769x28
 728 RenderText {#text} at (0,2) size 68x18
 729 text run at (0,2) width 7: "z"
 730 text run at (7,2) width 12 RTL: "\x{5E9}"
 731 text run at (19,2) width 16: "\x{663}\x{664}"
 732 text run at (35,2) width 33 RTL: "\x{5D0}\x{5D1}(^"
 733 RenderBlock {P} at (0,1858) size 769x28
 734 RenderText {#text} at (0,2) size 63x18
 735 text run at (0,2) width 7: "z"
 736 text run at (7,2) width 12 RTL: "\x{5E9}"
 737 text run at (19,2) width 16: "\x{663}\x{664}"
 738 text run at (35,2) width 28 RTL: "\x{627}\x{628}(^"
 739 RenderBlock {P} at (0,1902) size 769x28
 740 RenderText {#text} at (0,2) size 79x18
 741 text run at (0,2) width 7: "z"
 742 text run at (7,2) width 12 RTL: "\x{5E9}"
 743 text run at (19,2) width 16: "\x{663}\x{664}"
 744 text run at (35,2) width 13 RTL: "(^"
 745 text run at (48,2) width 31: "ab12"
 746 RenderBlock {P} at (0,1946) size 769x28
 747 RenderText {#text} at (0,2) size 84x18
 748 text run at (0,2) width 7: "z"
 749 text run at (7,2) width 12 RTL: "\x{5E9}"
 750 text run at (19,2) width 16: "\x{663}\x{664}"
 751 text run at (35,2) width 13 RTL: "(^"
 752 text run at (48,2) width 16: "12"
 753 text run at (64,2) width 20 RTL: "\x{5D0}\x{5D1}"
 754 RenderBlock {P} at (0,1990) size 769x28
 755 RenderText {#text} at (0,2) size 79x18
 756 text run at (0,2) width 7: "z"
 757 text run at (7,2) width 12 RTL: "\x{5E9}"
 758 text run at (19,2) width 16: "\x{663}\x{664}"
 759 text run at (35,2) width 13 RTL: "(^"
 760 text run at (48,2) width 16: "12"
 761 text run at (64,2) width 15 RTL: "\x{627}\x{628}"
 762 RenderBlock {P} at (0,2034) size 769x28
 763 RenderText {#text} at (0,2) size 79x18
 764 text run at (0,2) width 7: "z"
 765 text run at (7,2) width 12 RTL: "\x{5E9}"
 766 text run at (19,2) width 16: "\x{663}\x{664}"
 767 text run at (35,2) width 13 RTL: "(^"
 768 text run at (48,2) width 31: "ab\x{661}\x{662}"
 769 RenderBlock {P} at (0,2078) size 769x28
 770 RenderText {#text} at (0,2) size 84x18
 771 text run at (0,2) width 7: "z"
 772 text run at (7,2) width 12 RTL: "\x{5E9}"
 773 text run at (19,2) width 16: "\x{663}\x{664}"
 774 text run at (35,2) width 13 RTL: "(^"
 775 text run at (48,2) width 16: "\x{661}\x{662}"
 776 text run at (64,2) width 20 RTL: "\x{5D0}\x{5D1}"
 777 RenderBlock {P} at (0,2122) size 769x28
 778 RenderText {#text} at (0,2) size 79x18
 779 text run at (0,2) width 7: "z"
 780 text run at (7,2) width 12 RTL: "\x{5E9}"
 781 text run at (19,2) width 16: "\x{663}\x{664}"
 782 text run at (35,2) width 13 RTL: "(^"
 783 text run at (48,2) width 16: "\x{661}\x{662}"
 784 text run at (64,2) width 15 RTL: "\x{627}\x{628}"
 785 RenderBlock {P} at (0,2166) size 769x28
 786 RenderText {#text} at (0,2) size 55x18
 787 text run at (0,2) width 7: "z"
 788 text run at (7,2) width 12 RTL: "\x{5E9}"
 789 text run at (19,2) width 16: "\x{663}\x{664}"
 790 text run at (35,2) width 13 RTL: "\x{202C}(^"
 791 text run at (48,2) width 7: "\x{202A}?"
 792 RenderBlock {P} at (0,2210) size 769x28
 793 RenderText {#text} at (0,2) size 55x18
 794 text run at (0,2) width 7: "z"
 795 text run at (7,2) width 12 RTL: "\x{5E9}"
 796 text run at (19,2) width 16: "\x{663}\x{664}"
 797 text run at (35,2) width 13 RTL: "\x{202C}(^"
 798 text run at (48,2) width 7 RTL: "\x{202B}?"
 799 RenderBlock {P} at (0,2254) size 769x18
800800 RenderText {#text} at (0,0) size 33x18
801801 text run at (0,0) width 0 RTL: "\x{202C}"
802802 text run at (0,0) width 28: "ab(^"
803803 text run at (28,0) width 5: "\x{202A}!"
804  RenderBlock {P} at (0,1904) size 769x18
805  RenderText {#text} at (0,0) size 38x18
806  text run at (0,0) width 0 RTL: "\x{202C}"
807  text run at (0,0) width 5: "\x{202A}!"
808  text run at (5,0) width 33 RTL: "\x{5D0}\x{5D1}(^"
809  RenderBlock {P} at (0,1938) size 769x18
810  RenderText {#text} at (0,0) size 33x18
811  text run at (0,0) width 0 RTL: "\x{202C}"
812  text run at (0,0) width 5: "\x{202A}!"
813  text run at (5,0) width 28 RTL: "\x{627}\x{628}(^"
814  RenderBlock {P} at (0,1972) size 769x18
 804 RenderBlock {P} at (0,2288) size 769x19
 805 RenderText {#text} at (0,1) size 38x18
 806 text run at (0,1) width 0 RTL: "\x{202C}"
 807 text run at (0,1) width 5: "\x{202A}!"
 808 text run at (5,1) width 33 RTL: "\x{5D0}\x{5D1}(^"
 809 RenderBlock {P} at (0,2323) size 769x28
 810 RenderText {#text} at (0,2) size 33x18
 811 text run at (0,2) width 0 RTL: "\x{202C}"
 812 text run at (0,2) width 5: "\x{202A}!"
 813 text run at (5,2) width 28 RTL: "\x{627}\x{628}(^"
 814 RenderBlock {P} at (0,2367) size 769x18
815815 RenderText {#text} at (0,0) size 49x18
816816 text run at (0,0) width 0 RTL: "\x{202C}"
817817 text run at (0,0) width 44: "ab12(^"
818818 text run at (44,0) width 5: "\x{202A}!"
819  RenderBlock {P} at (0,2006) size 769x18
820  RenderText {#text} at (0,0) size 54x18
821  text run at (0,0) width 0 RTL: "\x{202C}"
822  text run at (0,0) width 5: "\x{202A}!"
823  text run at (5,0) width 13 RTL: "(^"
824  text run at (18,0) width 16: "12"
825  text run at (34,0) width 20 RTL: "\x{5D0}\x{5D1}"
826  RenderBlock {P} at (0,2040) size 769x18
827  RenderText {#text} at (0,0) size 49x18
828  text run at (0,0) width 0 RTL: "\x{202C}"
829  text run at (0,0) width 5: "\x{202A}!"
830  text run at (5,0) width 13 RTL: "(^"
831  text run at (18,0) width 16: "12"
832  text run at (34,0) width 15 RTL: "\x{627}\x{628}"
833  RenderBlock {P} at (0,2074) size 769x18
834  RenderText {#text} at (0,0) size 49x18
835  text run at (0,0) width 0 RTL: "\x{202C}"
836  text run at (0,0) width 5: "\x{202A}!"
837  text run at (5,0) width 13 RTL: "(^"
838  text run at (18,0) width 31: "ab\x{661}\x{662}"
839  RenderBlock {P} at (0,2108) size 769x18
840  RenderText {#text} at (0,0) size 54x18
841  text run at (0,0) width 0 RTL: "\x{202C}"
842  text run at (0,0) width 5: "\x{202A}!"
843  text run at (5,0) width 13 RTL: "(^"
844  text run at (18,0) width 16: "\x{661}\x{662}"
845  text run at (34,0) width 20 RTL: "\x{5D0}\x{5D1}"
846  RenderBlock {P} at (0,2142) size 769x18
847  RenderText {#text} at (0,0) size 49x18
848  text run at (0,0) width 0 RTL: "\x{202C}"
849  text run at (0,0) width 5: "\x{202A}!"
850  text run at (5,0) width 13 RTL: "(^"
851  text run at (18,0) width 16: "\x{661}\x{662}"
852  text run at (34,0) width 15 RTL: "\x{627}\x{628}"
853  RenderBlock {P} at (0,2176) size 769x18
 819 RenderBlock {P} at (0,2401) size 769x19
 820 RenderText {#text} at (0,1) size 54x18
 821 text run at (0,1) width 0 RTL: "\x{202C}"
 822 text run at (0,1) width 5: "\x{202A}!"
 823 text run at (5,1) width 13 RTL: "(^"
 824 text run at (18,1) width 16: "12"
 825 text run at (34,1) width 20 RTL: "\x{5D0}\x{5D1}"
 826 RenderBlock {P} at (0,2436) size 769x28
 827 RenderText {#text} at (0,2) size 49x18
 828 text run at (0,2) width 0 RTL: "\x{202C}"
 829 text run at (0,2) width 5: "\x{202A}!"
 830 text run at (5,2) width 13 RTL: "(^"
 831 text run at (18,2) width 16: "12"
 832 text run at (34,2) width 15 RTL: "\x{627}\x{628}"
 833 RenderBlock {P} at (0,2480) size 769x28
 834 RenderText {#text} at (0,2) size 49x18
 835 text run at (0,2) width 0 RTL: "\x{202C}"
 836 text run at (0,2) width 5: "\x{202A}!"
 837 text run at (5,2) width 13 RTL: "(^"
 838 text run at (18,2) width 31: "ab\x{661}\x{662}"
 839 RenderBlock {P} at (0,2524) size 769x28
 840 RenderText {#text} at (0,2) size 54x18
 841 text run at (0,2) width 0 RTL: "\x{202C}"
 842 text run at (0,2) width 5: "\x{202A}!"
 843 text run at (5,2) width 13 RTL: "(^"
 844 text run at (18,2) width 16: "\x{661}\x{662}"
 845 text run at (34,2) width 20 RTL: "\x{5D0}\x{5D1}"
 846 RenderBlock {P} at (0,2568) size 769x28
 847 RenderText {#text} at (0,2) size 49x18
 848 text run at (0,2) width 0 RTL: "\x{202C}"
 849 text run at (0,2) width 5: "\x{202A}!"
 850 text run at (5,2) width 13 RTL: "(^"
 851 text run at (18,2) width 16: "\x{661}\x{662}"
 852 text run at (34,2) width 15 RTL: "\x{627}\x{628}"
 853 RenderBlock {P} at (0,2612) size 769x18
854854 RenderText {#text} at (0,0) size 25x18
855855 text run at (0,0) width 0 RTL: "\x{202C}"
856856 text run at (0,0) width 7: "\x{202A}?"
857857 text run at (7,0) width 13: "\x{202C}(^"
858858 text run at (20,0) width 5: "\x{202A}!"
859  RenderBlock {P} at (0,2210) size 769x18
 859 RenderBlock {P} at (0,2646) size 769x18
860860 RenderText {#text} at (0,0) size 25x18
861861 text run at (0,0) width 0 RTL: "\x{202C}"
862862 text run at (0,0) width 5: "\x{202A}!"
863863 text run at (5,0) width 13 RTL: "\x{202C}(^"
864864 text run at (18,0) width 7 RTL: "\x{202B}?"
865  RenderBlock {P} at (0,2244) size 769x18
 865 RenderBlock {P} at (0,2680) size 769x18
866866 RenderText {#text} at (0,0) size 33x18
867867 text run at (0,0) width 0 RTL: "\x{202C}"
868868 text run at (0,0) width 5 RTL: "\x{202B}!"
869869 text run at (5,0) width 13 RTL: "(^"
870870 text run at (18,0) width 15: "ab"
871  RenderBlock {P} at (0,2278) size 769x18
872  RenderText {#text} at (0,0) size 38x18
873  text run at (0,0) width 0 RTL: "\x{202C}"
874  text run at (0,0) width 5 RTL: "\x{202B}!"
875  text run at (5,0) width 33 RTL: "\x{5D0}\x{5D1}(^"
876  RenderBlock {P} at (0,2312) size 769x18
877  RenderText {#text} at (0,0) size 33x18
878  text run at (0,0) width 0 RTL: "\x{202C}"
879  text run at (0,0) width 5 RTL: "\x{202B}!"
880  text run at (5,0) width 28 RTL: "\x{627}\x{628}(^"
881  RenderBlock {P} at (0,2346) size 769x18
 871 RenderBlock {P} at (0,2714) size 769x19
 872 RenderText {#text} at (0,1) size 38x18
 873 text run at (0,1) width 0 RTL: "\x{202C}"
 874 text run at (0,1) width 5 RTL: "\x{202B}!"
 875 text run at (5,1) width 33 RTL: "\x{5D0}\x{5D1}(^"
 876 RenderBlock {P} at (0,2749) size 769x28
 877 RenderText {#text} at (0,2) size 33x18
 878 text run at (0,2) width 0 RTL: "\x{202C}"
 879 text run at (0,2) width 5 RTL: "\x{202B}!"
 880 text run at (5,2) width 28 RTL: "\x{627}\x{628}(^"
 881 RenderBlock {P} at (0,2793) size 769x18
882882 RenderText {#text} at (0,0) size 49x18
883883 text run at (0,0) width 0 RTL: "\x{202C}"
884884 text run at (0,0) width 5 RTL: "\x{202B}!"
885885 text run at (5,0) width 13 RTL: "(^"
886886 text run at (18,0) width 31: "ab12"
887  RenderBlock {P} at (0,2380) size 769x18
888  RenderText {#text} at (0,0) size 54x18
889  text run at (0,0) width 0 RTL: "\x{202C}"
890  text run at (0,0) width 5 RTL: "\x{202B}!"
891  text run at (5,0) width 13 RTL: "(^"
892  text run at (18,0) width 16: "12"
893  text run at (34,0) width 20 RTL: "\x{5D0}\x{5D1}"
894  RenderBlock {P} at (0,2414) size 769x18
895  RenderText {#text} at (0,0) size 49x18
896  text run at (0,0) width 0 RTL: "\x{202C}"
897  text run at (0,0) width 5 RTL: "\x{202B}!"
898  text run at (5,0) width 13 RTL: "(^"
899  text run at (18,0) width 16: "12"
900  text run at (34,0) width 15 RTL: "\x{627}\x{628}"
901  RenderBlock {P} at (0,2448) size 769x18
902  RenderText {#text} at (0,0) size 49x18
903  text run at (0,0) width 0 RTL: "\x{202C}"
904  text run at (0,0) width 5 RTL: "\x{202B}!"
905  text run at (5,0) width 13 RTL: "(^"
906  text run at (18,0) width 31: "ab\x{661}\x{662}"
907  RenderBlock {P} at (0,2482) size 769x18
908  RenderText {#text} at (0,0) size 54x18
909  text run at (0,0) width 0 RTL: "\x{202C}"
910  text run at (0,0) width 5 RTL: "\x{202B}!"
911  text run at (5,0) width 13 RTL: "(^"
912  text run at (18,0) width 16: "\x{661}\x{662}"
913  text run at (34,0) width 20 RTL: "\x{5D0}\x{5D1}"
914  RenderBlock {P} at (0,2516) size 769x18
915  RenderText {#text} at (0,0) size 49x18
916  text run at (0,0) width 0 RTL: "\x{202C}"
917  text run at (0,0) width 5 RTL: "\x{202B}!"
918  text run at (5,0) width 13 RTL: "(^"
919  text run at (18,0) width 16: "\x{661}\x{662}"
920  text run at (34,0) width 15 RTL: "\x{627}\x{628}"
921  RenderBlock {P} at (0,2550) size 769x18
 887 RenderBlock {P} at (0,2827) size 769x19
 888 RenderText {#text} at (0,1) size 54x18
 889 text run at (0,1) width 0 RTL: "\x{202C}"
 890 text run at (0,1) width 5 RTL: "\x{202B}!"
 891 text run at (5,1) width 13 RTL: "(^"
 892 text run at (18,1) width 16: "12"
 893 text run at (34,1) width 20 RTL: "\x{5D0}\x{5D1}"
 894 RenderBlock {P} at (0,2862) size 769x28
 895 RenderText {#text} at (0,2) size 49x18
 896 text run at (0,2) width 0 RTL: "\x{202C}"
 897 text run at (0,2) width 5 RTL: "\x{202B}!"
 898 text run at (5,2) width 13 RTL: "(^"
 899 text run at (18,2) width 16: "12"
 900 text run at (34,2) width 15 RTL: "\x{627}\x{628}"
 901 RenderBlock {P} at (0,2906) size 769x28
 902 RenderText {#text} at (0,2) size 49x18
 903 text run at (0,2) width 0 RTL: "\x{202C}"
 904 text run at (0,2) width 5 RTL: "\x{202B}!"
 905 text run at (5,2) width 13 RTL: "(^"
 906 text run at (18,2) width 31: "ab\x{661}\x{662}"
 907 RenderBlock {P} at (0,2950) size 769x28
 908 RenderText {#text} at (0,2) size 54x18
 909 text run at (0,2) width 0 RTL: "\x{202C}"
 910 text run at (0,2) width 5 RTL: "\x{202B}!"
 911 text run at (5,2) width 13 RTL: "(^"
 912 text run at (18,2) width 16: "\x{661}\x{662}"
 913 text run at (34,2) width 20 RTL: "\x{5D0}\x{5D1}"
 914 RenderBlock {P} at (0,2994) size 769x28
 915 RenderText {#text} at (0,2) size 49x18
 916 text run at (0,2) width 0 RTL: "\x{202C}"
 917 text run at (0,2) width 5 RTL: "\x{202B}!"
 918 text run at (5,2) width 13 RTL: "(^"
 919 text run at (18,2) width 16: "\x{661}\x{662}"
 920 text run at (34,2) width 15 RTL: "\x{627}\x{628}"
 921 RenderBlock {P} at (0,3038) size 769x18
922922 RenderText {#text} at (0,0) size 25x18
923923 text run at (0,0) width 0 RTL: "\x{202C}"
924924 text run at (0,0) width 5 RTL: "\x{202B}!"
925925 text run at (5,0) width 13 RTL: "\x{202C}(^"
926926 text run at (18,0) width 7: "\x{202A}?"
927  RenderBlock {P} at (0,2584) size 769x18
 927 RenderBlock {P} at (0,3072) size 769x18
928928 RenderText {#text} at (0,0) size 25x18
929929 text run at (0,0) width 0 RTL: "\x{202C}"
930930 text run at (0,0) width 5 RTL: "\x{202B}!"
931931 text run at (5,0) width 13 RTL: "\x{202C}(^"
932932 text run at (18,0) width 7 RTL: "\x{202B}?"
933  RenderBlock {P} at (0,2618) size 769x18
 933 RenderBlock {P} at (0,3106) size 769x18
934934 RenderText {#text} at (0,0) size 28x18
935935 text run at (0,0) width 0 RTL: "\x{202C}"
936936 text run at (0,0) width 28: "\x{202A}ab(^"
937  RenderBlock {P} at (0,2652) size 769x18
938  RenderText {#text} at (0,0) size 33x18
939  text run at (0,0) width 0 RTL: "\x{202C}"
940  text run at (0,0) width 20 RTL: "\x{202A}\x{5D0}\x{5D1}"
941  text run at (20,0) width 13: "(^"
942  RenderBlock {P} at (0,2686) size 769x18
943  RenderText {#text} at (0,0) size 28x18
944  text run at (0,0) width 0 RTL: "\x{202C}"
945  text run at (0,0) width 15 RTL: "\x{202A}\x{627}\x{628}"
946  text run at (15,0) width 13: "(^"
947  RenderBlock {P} at (0,2720) size 769x18
 937 RenderBlock {P} at (0,3140) size 769x19
 938 RenderText {#text} at (0,1) size 33x18
 939 text run at (0,1) width 0 RTL: "\x{202C}"
 940 text run at (0,1) width 20 RTL: "\x{202A}\x{5D0}\x{5D1}"
 941 text run at (20,1) width 13: "(^"
 942 RenderBlock {P} at (0,3175) size 769x28
 943 RenderText {#text} at (0,2) size 28x18
 944 text run at (0,2) width 0 RTL: "\x{202C}"
 945 text run at (0,2) width 15 RTL: "\x{202A}\x{627}\x{628}"
 946 text run at (15,2) width 13: "(^"
 947 RenderBlock {P} at (0,3219) size 769x18
948948 RenderText {#text} at (0,0) size 44x18
949949 text run at (0,0) width 0 RTL: "\x{202C}"
950950 text run at (0,0) width 44: "\x{202A}ab12(^"
951  RenderBlock {P} at (0,2754) size 769x18
952  RenderText {#text} at (0,0) size 49x18
953  text run at (0,0) width 0 RTL: "\x{202C}"
954  text run at (0,0) width 16: "12"
955  text run at (16,0) width 20 RTL: "\x{202A}\x{5D0}\x{5D1}"
956  text run at (36,0) width 13: "(^"
957  RenderBlock {P} at (0,2788) size 769x18
958  RenderText {#text} at (0,0) size 44x18
959  text run at (0,0) width 0 RTL: "\x{202C}"
960  text run at (0,0) width 16: "12"
961  text run at (16,0) width 15 RTL: "\x{202A}\x{627}\x{628}"
962  text run at (31,0) width 13: "(^"
963  RenderBlock {P} at (0,2822) size 769x18
964  RenderText {#text} at (0,0) size 44x18
965  text run at (0,0) width 0 RTL: "\x{202C}"
966  text run at (0,0) width 15: "\x{202A}ab"
967  text run at (15,0) width 16: "\x{661}\x{662}"
968  text run at (31,0) width 13: "(^"
969  RenderBlock {P} at (0,2856) size 769x18
970  RenderText {#text} at (0,0) size 49x18
971  text run at (0,0) width 0 RTL: "\x{202C}"
972  text run at (0,0) width 16: "\x{661}\x{662}"
973  text run at (16,0) width 20 RTL: "\x{202A}\x{5D0}\x{5D1}"
974  text run at (36,0) width 13: "(^"
975  RenderBlock {P} at (0,2890) size 769x18
976  RenderText {#text} at (0,0) size 44x18
977  text run at (0,0) width 0 RTL: "\x{202C}"
978  text run at (0,0) width 16: "\x{661}\x{662}"
979  text run at (16,0) width 15 RTL: "\x{202A}\x{627}\x{628}"
980  text run at (31,0) width 13: "(^"
981  RenderBlock {P} at (0,2924) size 769x18
 951 RenderBlock {P} at (0,3253) size 769x19
 952 RenderText {#text} at (0,1) size 49x18
 953 text run at (0,1) width 0 RTL: "\x{202C}"
 954 text run at (0,1) width 16: "12"
 955 text run at (16,1) width 20 RTL: "\x{202A}\x{5D0}\x{5D1}"
 956 text run at (36,1) width 13: "(^"
 957 RenderBlock {P} at (0,3288) size 769x28
 958 RenderText {#text} at (0,2) size 44x18
 959 text run at (0,2) width 0 RTL: "\x{202C}"
 960 text run at (0,2) width 16: "12"
 961 text run at (16,2) width 15 RTL: "\x{202A}\x{627}\x{628}"
 962 text run at (31,2) width 13: "(^"
 963 RenderBlock {P} at (0,3332) size 769x28
 964 RenderText {#text} at (0,2) size 44x18
 965 text run at (0,2) width 0 RTL: "\x{202C}"
 966 text run at (0,2) width 15: "\x{202A}ab"
 967 text run at (15,2) width 16: "\x{661}\x{662}"
 968 text run at (31,2) width 13: "(^"
 969 RenderBlock {P} at (0,3376) size 769x28
 970 RenderText {#text} at (0,2) size 49x18
 971 text run at (0,2) width 0 RTL: "\x{202C}"
 972 text run at (0,2) width 16: "\x{661}\x{662}"
 973 text run at (16,2) width 20 RTL: "\x{202A}\x{5D0}\x{5D1}"
 974 text run at (36,2) width 13: "(^"
 975 RenderBlock {P} at (0,3420) size 769x28
 976 RenderText {#text} at (0,2) size 44x18
 977 text run at (0,2) width 0 RTL: "\x{202C}"
 978 text run at (0,2) width 16: "\x{661}\x{662}"
 979 text run at (16,2) width 15 RTL: "\x{202A}\x{627}\x{628}"
 980 text run at (31,2) width 13: "(^"
 981 RenderBlock {P} at (0,3464) size 769x18
982982 RenderText {#text} at (0,0) size 20x18
983983 text run at (0,0) width 0 RTL: "\x{202C}"
984984 text run at (0,0) width 0: "\x{202A}"
985985 text run at (0,0) width 7: "\x{202A}?"
986986 text run at (7,0) width 13: "\x{202C}(^"
987  RenderBlock {P} at (0,2958) size 769x18
 987 RenderBlock {P} at (0,3498) size 769x18
988988 RenderText {#text} at (0,0) size 20x18
989989 text run at (0,0) width 0 RTL: "\x{202C}"
990990 text run at (0,0) width 0: "\x{202A}"
73924

LayoutTests/platform/mac/fast/text/international/bidi-override-expected.checksum

1 507edeed4d25588ab8eab28dbe244624
21\ No newline at end of file
 27335508ecec57ad2b2f52fbf93f92e68
33\ No newline at end of file
73924

LayoutTests/platform/mac/fast/text/international/bidi-override-expected.txt

11layer at (0,0) size 800x600
22 RenderView at (0,0) size 800x600
3 layer at (0,0) size 800x338
4  RenderBlock {HTML} at (0,0) size 800x338
5  RenderBody {BODY} at (8,16) size 784x314
 3layer at (0,0) size 800x344
 4 RenderBlock {HTML} at (0,0) size 800x344
 5 RenderBody {BODY} at (8,16) size 784x320
66 RenderBlock {P} at (0,0) size 784x18
77 RenderText {#text} at (0,0) size 311x18
88 text run at (0,0) width 311: "All rows should be identical to the reference row."
9  RenderTable {TABLE} at (0,34) size 582x109 [border: none]
10  RenderTableSection {TBODY} at (0,0) size 581x108
11  RenderTableRow {TR} at (0,0) size 581x27
 9 RenderTable {TABLE} at (0,34) size 582x113 [border: none]
 10 RenderTableSection {TBODY} at (0,0) size 581x112
 11 RenderTableRow {TR} at (0,0) size 581x28
1212 RenderTableCell {TD} at (0,0) size 97x27 [border: (1px solid #008000)] [r=0 c=0 rs=1 cs=1]
1313 RenderText {#text} at (29,5) size 64x18
1414 text run at (29,5) width 64: "Reference"
15  RenderTableCell {TD} at (97,0) size 242x27 [border: (1px solid #008000)] [r=0 c=1 rs=1 cs=1]
16  RenderText {#text} at (5,5) size 232x18
17  text run at (5,5) width 42: "abcdef"
18  text run at (47,5) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
19  text run at (74,5) width 40: "ghijkl "
20  text run at (114,5) width 50 RTL: "\x{5D6}\x{5D7}\x{5D8}\x{5D9}\x{5DB}\x{5DC}"
21  text run at (164,5) width 22: "abc"
22  text run at (186,5) width 51 RTL: "\x{5D0}\x{5D1}\x{5D2}\x{5D3}\x{5D4}\x{5D5}"
23  RenderTableCell {TD} at (339,0) size 242x27 [border: (1px solid #008000)] [r=0 c=2 rs=1 cs=1]
24  RenderText {#text} at (5,5) size 232x18
25  text run at (5,5) width 50 RTL: "\x{5D6}\x{5D7}\x{5D8}\x{5D9}\x{5DB}\x{5DC}"
26  text run at (55,5) width 22: "abc"
27  text run at (77,5) width 51 RTL: "\x{5D0}\x{5D1}\x{5D2}\x{5D3}\x{5D4}\x{5D5}"
28  text run at (128,5) width 4 RTL: " "
29  text run at (132,5) width 42: "abcdef"
30  text run at (174,5) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
31  text run at (201,5) width 36: "ghijkl"
32  RenderTableRow {TR} at (0,27) size 581x27
33  RenderTableCell {TD} at (0,27) size 97x27 [border: (1px solid #008000)] [r=1 c=0 rs=1 cs=1]
 15 RenderTableCell {TD} at (97,0) size 242x28 [border: (1px solid #008000)] [r=0 c=1 rs=1 cs=1]
 16 RenderText {#text} at (5,6) size 232x18
 17 text run at (5,6) width 42: "abcdef"
 18 text run at (47,6) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
 19 text run at (74,6) width 40: "ghijkl "
 20 text run at (114,6) width 50 RTL: "\x{5D6}\x{5D7}\x{5D8}\x{5D9}\x{5DB}\x{5DC}"
 21 text run at (164,6) width 22: "abc"
 22 text run at (186,6) width 51 RTL: "\x{5D0}\x{5D1}\x{5D2}\x{5D3}\x{5D4}\x{5D5}"
 23 RenderTableCell {TD} at (339,0) size 242x28 [border: (1px solid #008000)] [r=0 c=2 rs=1 cs=1]
 24 RenderText {#text} at (5,6) size 232x18
 25 text run at (5,6) width 50 RTL: "\x{5D6}\x{5D7}\x{5D8}\x{5D9}\x{5DB}\x{5DC}"
 26 text run at (55,6) width 22: "abc"
 27 text run at (77,6) width 51 RTL: "\x{5D0}\x{5D1}\x{5D2}\x{5D3}\x{5D4}\x{5D5}"
 28 text run at (128,6) width 4 RTL: " "
 29 text run at (132,6) width 42: "abcdef"
 30 text run at (174,6) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
 31 text run at (201,6) width 36: "ghijkl"
 32 RenderTableRow {TR} at (0,28) size 581x28
 33 RenderTableCell {TD} at (0,28) size 97x27 [border: (1px solid #008000)] [r=1 c=0 rs=1 cs=1]
3434 RenderText {#text} at (8,5) size 85x18
3535 text run at (8,5) width 85: "CSS, siblings"
36  RenderTableCell {TD} at (97,27) size 242x27 [border: (1px solid #008000)] [r=1 c=1 rs=1 cs=1]
37  RenderText {#text} at (5,5) size 22x18
38  text run at (5,5) width 22: "abc"
 36 RenderTableCell {TD} at (97,28) size 242x28 [border: (1px solid #008000)] [r=1 c=1 rs=1 cs=1]
 37 RenderText {#text} at (5,6) size 22x18
 38 text run at (5,6) width 22: "abc"
3939 RenderInline {SPAN} at (0,0) size 67x18
40  RenderText {#text} at (27,5) size 67x18
41  text run at (27,5) width 67 RTL override: "ihg\x{5D0}\x{5D1}\x{5D2}fed"
42  RenderText {#text} at (94,5) size 144x18
43  text run at (94,5) width 20: "jkl "
44  text run at (211,5) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
 40 RenderText {#text} at (27,6) size 67x18
 41 text run at (27,6) width 67 RTL override: "ihg\x{5D0}\x{5D1}\x{5D2}fed"
 42 RenderText {#text} at (94,6) size 144x18
 43 text run at (94,6) width 20: "jkl "
 44 text run at (211,6) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
4545 RenderInline {SPAN} at (0,0) size 74x18
46  RenderText {#text} at (137,5) size 74x18
47  text run at (137,5) width 74 LTR override: "\x{5D8}\x{5D7}\x{5D6}abc\x{5D5}\x{5D4}\x{5D3}"
48  RenderText {#text} at (114,5) size 23x18
49  text run at (114,5) width 23 RTL: "\x{5D9}\x{5DB}\x{5DC}"
50  RenderTableCell {TD} at (339,27) size 242x27 [border: (1px solid #008000)] [r=1 c=2 rs=1 cs=1]
51  RenderText {#text} at (133,5) size 22x18
52  text run at (133,5) width 22: "abc"
 46 RenderText {#text} at (137,6) size 74x18
 47 text run at (137,6) width 74 LTR override: "\x{5D8}\x{5D7}\x{5D6}abc\x{5D5}\x{5D4}\x{5D3}"
 48 RenderText {#text} at (114,6) size 23x18
 49 text run at (114,6) width 23 RTL: "\x{5D9}\x{5DB}\x{5DC}"
 50 RenderTableCell {TD} at (339,28) size 242x28 [border: (1px solid #008000)] [r=1 c=2 rs=1 cs=1]
 51 RenderText {#text} at (133,6) size 22x18
 52 text run at (133,6) width 22: "abc"
5353 RenderInline {SPAN} at (0,0) size 67x18
54  RenderText {#text} at (155,5) size 67x18
55  text run at (155,5) width 67 RTL override: "ihg\x{5D0}\x{5D1}\x{5D2}fed"
56  RenderText {#text} at (102,5) size 136x18
57  text run at (102,5) width 31 RTL: " \x{5D0}\x{5D1}\x{5D2}"
58  text run at (222,5) width 16: "jkl"
 54 RenderText {#text} at (155,6) size 67x18
 55 text run at (155,6) width 67 RTL override: "ihg\x{5D0}\x{5D1}\x{5D2}fed"
 56 RenderText {#text} at (102,6) size 136x18
 57 text run at (102,6) width 31 RTL: " \x{5D0}\x{5D1}\x{5D2}"
 58 text run at (222,6) width 16: "jkl"
5959 RenderInline {SPAN} at (0,0) size 74x18
60  RenderText {#text} at (28,5) size 74x18
61  text run at (28,5) width 74 LTR override: "\x{5D8}\x{5D7}\x{5D6}abc\x{5D5}\x{5D4}\x{5D3}"
62  RenderText {#text} at (5,5) size 23x18
63  text run at (5,5) width 23 RTL: "\x{5D9}\x{5DB}\x{5DC}"
64  RenderTableRow {TR} at (0,54) size 581x27
65  RenderTableCell {TD} at (0,54) size 97x27 [border: (1px solid #008000)] [r=2 c=0 rs=1 cs=1]
 60 RenderText {#text} at (28,6) size 74x18
 61 text run at (28,6) width 74 LTR override: "\x{5D8}\x{5D7}\x{5D6}abc\x{5D5}\x{5D4}\x{5D3}"
 62 RenderText {#text} at (5,6) size 23x18
 63 text run at (5,6) width 23 RTL: "\x{5D9}\x{5DB}\x{5DC}"
 64 RenderTableRow {TR} at (0,56) size 581x28
 65 RenderTableCell {TD} at (0,56) size 97x27 [border: (1px solid #008000)] [r=2 c=0 rs=1 cs=1]
6666 RenderText {#text} at (5,5) size 88x18
6767 text run at (5,5) width 88: "CSS, children"
68  RenderTableCell {TD} at (97,54) size 242x27 [border: (1px solid #008000)] [r=2 c=1 rs=1 cs=1]
 68 RenderTableCell {TD} at (97,56) size 242x28 [border: (1px solid #008000)] [r=2 c=1 rs=1 cs=1]
6969 RenderInline {SPAN} at (0,0) size 105x18
70  RenderText {#text} at (5,5) size 22x18
71  text run at (5,5) width 22: "abc"
 70 RenderText {#text} at (5,6) size 22x18
 71 text run at (5,6) width 22: "abc"
7272 RenderInline {SPAN} at (0,0) size 67x18
73  RenderText {#text} at (27,5) size 67x18
74  text run at (27,5) width 67 RTL override: "ihg\x{5D0}\x{5D1}\x{5D2}fed"
75  RenderText {#text} at (94,5) size 16x18
76  text run at (94,5) width 16: "jkl"
77  RenderText {#text} at (110,5) size 4x18
78  text run at (110,5) width 4: " "
 73 RenderText {#text} at (27,6) size 67x18
 74 text run at (27,6) width 67 RTL override: "ihg\x{5D0}\x{5D1}\x{5D2}fed"
 75 RenderText {#text} at (94,6) size 16x18
 76 text run at (94,6) width 16: "jkl"
 77 RenderText {#text} at (110,6) size 4x18
 78 text run at (110,6) width 4: " "
7979 RenderInline {SPAN} at (0,0) size 124x18
80  RenderText {#text} at (211,5) size 27x18
81  text run at (211,5) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
 80 RenderText {#text} at (211,6) size 27x18
 81 text run at (211,6) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
8282 RenderInline {SPAN} at (0,0) size 74x18
83  RenderText {#text} at (137,5) size 74x18
84  text run at (137,5) width 74 LTR override: "\x{5D8}\x{5D7}\x{5D6}abc\x{5D5}\x{5D4}\x{5D3}"
85  RenderText {#text} at (114,5) size 23x18
86  text run at (114,5) width 23 RTL: "\x{5D9}\x{5DB}\x{5DC}"
87  RenderTableCell {TD} at (339,54) size 242x27 [border: (1px solid #008000)] [r=2 c=2 rs=1 cs=1]
 83 RenderText {#text} at (137,6) size 74x18
 84 text run at (137,6) width 74 LTR override: "\x{5D8}\x{5D7}\x{5D6}abc\x{5D5}\x{5D4}\x{5D3}"
 85 RenderText {#text} at (114,6) size 23x18
 86 text run at (114,6) width 23 RTL: "\x{5D9}\x{5DB}\x{5DC}"
 87 RenderTableCell {TD} at (339,56) size 242x28 [border: (1px solid #008000)] [r=2 c=2 rs=1 cs=1]
8888 RenderInline {SPAN} at (0,0) size 105x18
89  RenderText {#text} at (133,5) size 22x18
90  text run at (133,5) width 22: "abc"
 89 RenderText {#text} at (133,6) size 22x18
 90 text run at (133,6) width 22: "abc"
9191 RenderInline {SPAN} at (0,0) size 67x18
92  RenderText {#text} at (155,5) size 67x18
93  text run at (155,5) width 67 RTL override: "ihg\x{5D0}\x{5D1}\x{5D2}fed"
94  RenderText {#text} at (222,5) size 16x18
95  text run at (222,5) width 16: "jkl"
96  RenderText {#text} at (129,5) size 4x18
97  text run at (129,5) width 4 RTL: " "
 92 RenderText {#text} at (155,6) size 67x18
 93 text run at (155,6) width 67 RTL override: "ihg\x{5D0}\x{5D1}\x{5D2}fed"
 94 RenderText {#text} at (222,6) size 16x18
 95 text run at (222,6) width 16: "jkl"
 96 RenderText {#text} at (129,6) size 4x18
 97 text run at (129,6) width 4 RTL: " "
9898 RenderInline {SPAN} at (0,0) size 124x18
99  RenderText {#text} at (102,5) size 27x18
100  text run at (102,5) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
 99 RenderText {#text} at (102,6) size 27x18
 100 text run at (102,6) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
101101 RenderInline {SPAN} at (0,0) size 74x18
102  RenderText {#text} at (28,5) size 74x18
103  text run at (28,5) width 74 LTR override: "\x{5D8}\x{5D7}\x{5D6}abc\x{5D5}\x{5D4}\x{5D3}"
104  RenderText {#text} at (5,5) size 23x18
105  text run at (5,5) width 23 RTL: "\x{5D9}\x{5DB}\x{5DC}"
106  RenderTableRow {TR} at (0,81) size 581x27
107  RenderTableCell {TD} at (0,81) size 97x27 [border: (1px solid #008000)] [r=3 c=0 rs=1 cs=1]
 102 RenderText {#text} at (28,6) size 74x18
 103 text run at (28,6) width 74 LTR override: "\x{5D8}\x{5D7}\x{5D6}abc\x{5D5}\x{5D4}\x{5D3}"
 104 RenderText {#text} at (5,6) size 23x18
 105 text run at (5,6) width 23 RTL: "\x{5D9}\x{5DB}\x{5DC}"
 106 RenderTableRow {TR} at (0,84) size 581x28
 107 RenderTableCell {TD} at (0,84) size 97x27 [border: (1px solid #008000)] [r=3 c=0 rs=1 cs=1]
108108 RenderText {#text} at (39,5) size 54x18
109109 text run at (39,5) width 54: "Unicode"
110  RenderTableCell {TD} at (97,81) size 242x27 [border: (1px solid #008000)] [r=3 c=1 rs=1 cs=1]
111  RenderText {#text} at (5,5) size 233x18
112  text run at (5,5) width 22: "abc"
113  text run at (27,5) width 67 RTL override: "\x{202E}ihg\x{5D0}\x{5D1}\x{5D2}fed"
114  text run at (94,5) width 20: "\x{202C}jkl "
115  text run at (114,5) width 23 RTL: "\x{202C}\x{5D9}\x{5DB}\x{5DC}"
116  text run at (137,5) width 74 LTR override: "\x{202D}\x{5D8}\x{5D7}\x{5D6}abc\x{5D5}\x{5D4}\x{5D3}"
117  text run at (211,5) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
118  RenderTableCell {TD} at (339,81) size 242x27 [border: (1px solid #008000)] [r=3 c=2 rs=1 cs=1]
119  RenderText {#text} at (5,5) size 233x18
120  text run at (5,5) width 23 RTL: "\x{202C}\x{5D9}\x{5DB}\x{5DC}"
121  text run at (28,5) width 74 LTR override: "\x{202D}\x{5D8}\x{5D7}\x{5D6}abc\x{5D5}\x{5D4}\x{5D3}"
122  text run at (102,5) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
123  text run at (129,5) width 4 RTL: " "
124  text run at (133,5) width 22: "abc"
125  text run at (155,5) width 67 RTL override: "\x{202E}ihg\x{5D0}\x{5D1}\x{5D2}fed"
126  text run at (222,5) width 16: "\x{202C}jkl"
127  RenderBlock {P} at (0,159) size 784x18
 110 RenderTableCell {TD} at (97,84) size 242x28 [border: (1px solid #008000)] [r=3 c=1 rs=1 cs=1]
 111 RenderText {#text} at (5,6) size 233x18
 112 text run at (5,6) width 22: "abc"
 113 text run at (27,6) width 67 RTL override: "\x{202E}ihg\x{5D0}\x{5D1}\x{5D2}fed"
 114 text run at (94,6) width 20: "\x{202C}jkl "
 115 text run at (114,6) width 23 RTL: "\x{202C}\x{5D9}\x{5DB}\x{5DC}"
 116 text run at (137,6) width 74 LTR override: "\x{202D}\x{5D8}\x{5D7}\x{5D6}abc\x{5D5}\x{5D4}\x{5D3}"
 117 text run at (211,6) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
 118 RenderTableCell {TD} at (339,84) size 242x28 [border: (1px solid #008000)] [r=3 c=2 rs=1 cs=1]
 119 RenderText {#text} at (5,6) size 233x18
 120 text run at (5,6) width 23 RTL: "\x{202C}\x{5D9}\x{5DB}\x{5DC}"
 121 text run at (28,6) width 74 LTR override: "\x{202D}\x{5D8}\x{5D7}\x{5D6}abc\x{5D5}\x{5D4}\x{5D3}"
 122 text run at (102,6) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
 123 text run at (129,6) width 4 RTL: " "
 124 text run at (133,6) width 22: "abc"
 125 text run at (155,6) width 67 RTL override: "\x{202E}ihg\x{5D0}\x{5D1}\x{5D2}fed"
 126 text run at (222,6) width 16: "\x{202C}jkl"
 127 RenderBlock {P} at (0,163) size 784x18
128128 RenderText {#text} at (0,0) size 387x18
129129 text run at (0,0) width 387: "The CSS column should be identical to the reference column."
130  RenderTable {TABLE} at (0,193) size 265x121 [border: none]
131  RenderTableSection {TBODY} at (0,0) size 264x120
 130 RenderTable {TABLE} at (0,197) size 265x123 [border: none]
 131 RenderTableSection {TBODY} at (0,0) size 264x122
132132 RenderTableRow {TR} at (0,0) size 264x27
133133 RenderTableCell {TD} at (0,0) size 132x27 [border: (1px solid #008000)] [r=0 c=0 rs=1 cs=1]
134134 RenderText {#text} at (34,5) size 64x18

@@layer at (0,0) size 800x338
136136 RenderTableCell {TD} at (132,0) size 132x27 [border: (1px solid #008000)] [r=0 c=1 rs=1 cs=1]
137137 RenderText {#text} at (52,5) size 29x18
138138 text run at (52,5) width 29: "CSS"
139  RenderTableRow {TR} at (0,27) size 264x93
140  RenderTableCell {TD} at (0,27) size 132x93 [border: (1px solid #008000)] [r=1 c=0 rs=1 cs=1]
141  RenderBlock {P} at (5,21) size 123x18
142  RenderText {#text} at (9,0) size 105x18
143  text run at (9,0) width 42: "abcdef"
144  text run at (51,0) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
145  text run at (78,0) width 36: "ghijkl"
146  RenderBlock {P} at (5,55) size 123x18
147  RenderText {#text} at (0,0) size 123x18
148  text run at (0,0) width 50 RTL: "\x{5D6}\x{5D7}\x{5D8}\x{5D9}\x{5DB}\x{5DC}"
149  text run at (50,0) width 22: "abc"
150  text run at (72,0) width 51 RTL: "\x{5D0}\x{5D1}\x{5D2}\x{5D3}\x{5D4}\x{5D5}"
151  RenderTableCell {TD} at (132,27) size 132x93 [border: (1px solid #008000)] [r=1 c=1 rs=1 cs=1]
152  RenderBlock {P} at (5,21) size 123x18
153  RenderText {#text} at (9,0) size 105x18
154  text run at (9,0) width 105 RTL override: "lkjihg\x{5D0}\x{5D1}\x{5D2}fedcba"
155  RenderBlock {P} at (5,55) size 123x18
156  RenderText {#text} at (0,0) size 123x18
157  text run at (0,0) width 123 LTR override: "\x{5DC}\x{5DB}\x{5D9}\x{5D8}\x{5D7}\x{5D6}abc\x{5D5}\x{5D4}\x{5D3}\x{5D2}\x{5D1}\x{5D0}"
 139 RenderTableRow {TR} at (0,27) size 264x95
 140 RenderTableCell {TD} at (0,27) size 132x95 [border: (1px solid #008000)] [r=1 c=0 rs=1 cs=1]
 141 RenderBlock {P} at (5,21) size 123x19
 142 RenderText {#text} at (9,1) size 105x18
 143 text run at (9,1) width 42: "abcdef"
 144 text run at (51,1) width 27 RTL: "\x{5D0}\x{5D1}\x{5D2}"
 145 text run at (78,1) width 36: "ghijkl"
 146 RenderBlock {P} at (5,56) size 123x19
 147 RenderText {#text} at (0,1) size 123x18
 148 text run at (0,1) width 50 RTL: "\x{5D6}\x{5D7}\x{5D8}\x{5D9}\x{5DB}\x{5DC}"
 149 text run at (50,1) width 22: "abc"
 150 text run at (72,1) width 51 RTL: "\x{5D0}\x{5D1}\x{5D2}\x{5D3}\x{5D4}\x{5D5}"
 151 RenderTableCell {TD} at (132,27) size 132x95 [border: (1px solid #008000)] [r=1 c=1 rs=1 cs=1]
 152 RenderBlock {P} at (5,21) size 123x19
 153 RenderText {#text} at (9,1) size 105x18
 154 text run at (9,1) width 105 RTL override: "lkjihg\x{5D0}\x{5D1}\x{5D2}fedcba"
 155 RenderBlock {P} at (5,56) size 123x19
 156 RenderText {#text} at (0,1) size 123x18
 157 text run at (0,1) width 123 LTR override: "\x{5DC}\x{5DB}\x{5D9}\x{5D8}\x{5D7}\x{5D6}abc\x{5D5}\x{5D4}\x{5D3}\x{5D2}\x{5D1}\x{5D0}"
73924

LayoutTests/platform/mac/fast/text/international/complex-character-based-fallback-expected.checksum

1 1e6beaca2e3d6e61d39deb732125284f
21\ No newline at end of file
 2e39b700fdb4b77dc0884dbd89728037b
33\ No newline at end of file
73924

LayoutTests/platform/mac/fast/text/international/complex-character-based-fallback-expected.txt

@@layer at (0,0) size 800x600
1212 text run at (421,18) width 10: "is"
1313 RenderText {#text} at (431,18) size 327x18
1414 text run at (431,18) width 327: " covered by the default font and is rendered using it."
15  RenderBlock {P} at (0,52) size 306x132 [border: (3px solid #000000)]
16  RenderText {#text} at (3,3) size 285x126
 15 RenderBlock {P} at (0,52) size 306x146 [border: (3px solid #000000)]
 16 RenderText {#text} at (3,3) size 285x138
1717 text run at (3,3) width 159: "\x{B87}\x{BA4}\x{BC1} \x{B89}\x{B99}\x{BCD}\x{B95}\x{BB3}\x{BC8}\x{BAA}\x{BCD} \x{BAA}\x{BCB}\x{BA9}\x{BCD}\x{BB1}"
18  text run at (3,21) width 255: "\x{B86}\x{BB0}\x{BCD}\x{BB5}\x{BAE}\x{BC1}\x{B9F}\x{BC8}\x{BAF}\x{BB5}\x{BB0}\x{BCD}\x{B95}\x{BB3}\x{BBE}\x{BB2}\x{BCD} \x{BA4}\x{BCA}\x{B95}\x{BC1}\x{B95}\x{BCD}\x{B95}\x{BAA}\x{BCD}\x{BAA}\x{B9F}\x{BCD}\x{B9F}\x{BC1}"
19  text run at (3,39) width 267: "\x{B95}\x{B9F}\x{BCD}\x{B9F}\x{BC1}\x{BAA}\x{BCD}\x{BAA}\x{BBE}\x{B9F}\x{BC1}\x{B95}\x{BB3}\x{BCD} \x{B8F}\x{BA4}\x{BC1}\x{BAE}\x{BCD} \x{B87}\x{BA9}\x{BCD}\x{BB1}\x{BBF} \x{B87}\x{BB2}\x{BB5}\x{B9A}\x{BAE}\x{BBE}\x{B95}\x{BAA}\x{BCD}"
20  text run at (3,57) width 285: "\x{BAA}\x{BAF}\x{BA9}\x{BCD}\x{BAA}\x{B9F}\x{BC1}\x{BA4}\x{BCD}\x{BA4}\x{B95}\x{BCD}\x{B95}\x{BC2}\x{B9F}\x{BBF}\x{BAF} \x{B92}\x{BB0}\x{BC1} \x{BAA}\x{BA9}\x{BCD}\x{BAE}\x{BCA}\x{BB4}\x{BBF}\x{B95}\x{BCD} \x{B95}\x{BB2}\x{BC8}\x{B95}\x{BCD}"
21  text run at (3,75) width 264: "\x{B95}\x{BB3}\x{B9E}\x{BCD}\x{B9A}\x{BBF}\x{BAF}\x{BA4}\x{BCD} \x{BA4}\x{BBF}\x{B9F}\x{BCD}\x{B9F}\x{BAE}\x{BBE}\x{B95}\x{BC1}\x{BAE}\x{BCD}. \x{B87}\x{B99}\x{BCD}\x{B95}\x{BC1} \x{BA8}\x{BC0}\x{B99}\x{BCD}\x{B95}\x{BB3}\x{BC1}\x{BAE}\x{BCD}"
22  text run at (3,93) width 253: "\x{B89}\x{B99}\x{BCD}\x{B95}\x{BB3}\x{BC1}\x{B95}\x{BCD}\x{B95}\x{BC1} \x{BB5}\x{BBF}\x{BB0}\x{BC1}\x{BAA}\x{BCD}\x{BAA}\x{BAE}\x{BBE}\x{BA9} \x{BA4}\x{BB2}\x{BC8}\x{BAA}\x{BCD}\x{BAA}\x{BC1}\x{B95}\x{BB3}\x{BBF}\x{BB2}\x{BCD}"
23  text run at (3,111) width 149: "\x{BAA}\x{BC1}\x{BA4}\x{BBF}\x{BA4}\x{BBE}\x{B95}\x{B95}\x{BCD} \x{B95}\x{B9F}\x{BCD}\x{B9F}\x{BC1}\x{BB0}\x{BC8}\x{B95}\x{BB3}\x{BCD}!"
24  RenderBlock {P} at (0,200) size 784x36
 18 text run at (3,23) width 255: "\x{B86}\x{BB0}\x{BCD}\x{BB5}\x{BAE}\x{BC1}\x{B9F}\x{BC8}\x{BAF}\x{BB5}\x{BB0}\x{BCD}\x{B95}\x{BB3}\x{BBE}\x{BB2}\x{BCD} \x{BA4}\x{BCA}\x{B95}\x{BC1}\x{B95}\x{BCD}\x{B95}\x{BAA}\x{BCD}\x{BAA}\x{B9F}\x{BCD}\x{B9F}\x{BC1}"
 19 text run at (3,43) width 267: "\x{B95}\x{B9F}\x{BCD}\x{B9F}\x{BC1}\x{BAA}\x{BCD}\x{BAA}\x{BBE}\x{B9F}\x{BC1}\x{B95}\x{BB3}\x{BCD} \x{B8F}\x{BA4}\x{BC1}\x{BAE}\x{BCD} \x{B87}\x{BA9}\x{BCD}\x{BB1}\x{BBF} \x{B87}\x{BB2}\x{BB5}\x{B9A}\x{BAE}\x{BBE}\x{B95}\x{BAA}\x{BCD}"
 20 text run at (3,63) width 285: "\x{BAA}\x{BAF}\x{BA9}\x{BCD}\x{BAA}\x{B9F}\x{BC1}\x{BA4}\x{BCD}\x{BA4}\x{B95}\x{BCD}\x{B95}\x{BC2}\x{B9F}\x{BBF}\x{BAF} \x{B92}\x{BB0}\x{BC1} \x{BAA}\x{BA9}\x{BCD}\x{BAE}\x{BCA}\x{BB4}\x{BBF}\x{B95}\x{BCD} \x{B95}\x{BB2}\x{BC8}\x{B95}\x{BCD}"
 21 text run at (3,83) width 264: "\x{B95}\x{BB3}\x{B9E}\x{BCD}\x{B9A}\x{BBF}\x{BAF}\x{BA4}\x{BCD} \x{BA4}\x{BBF}\x{B9F}\x{BCD}\x{B9F}\x{BAE}\x{BBE}\x{B95}\x{BC1}\x{BAE}\x{BCD}. \x{B87}\x{B99}\x{BCD}\x{B95}\x{BC1} \x{BA8}\x{BC0}\x{B99}\x{BCD}\x{B95}\x{BB3}\x{BC1}\x{BAE}\x{BCD}"
 22 text run at (3,103) width 253: "\x{B89}\x{B99}\x{BCD}\x{B95}\x{BB3}\x{BC1}\x{B95}\x{BCD}\x{B95}\x{BC1} \x{BB5}\x{BBF}\x{BB0}\x{BC1}\x{BAA}\x{BCD}\x{BAA}\x{BAE}\x{BBE}\x{BA9} \x{BA4}\x{BB2}\x{BC8}\x{BAA}\x{BCD}\x{BAA}\x{BC1}\x{B95}\x{BB3}\x{BBF}\x{BB2}\x{BCD}"
 23 text run at (3,123) width 149: "\x{BAA}\x{BC1}\x{BA4}\x{BBF}\x{BA4}\x{BBE}\x{B95}\x{B95}\x{BCD} \x{B95}\x{B9F}\x{BCD}\x{B9F}\x{BC1}\x{BB0}\x{BC8}\x{B95}\x{BB3}\x{BCD}!"
 24 RenderBlock {P} at (0,214) size 784x36
2525 RenderText {#text} at (0,0) size 778x36
2626 text run at (0,0) width 778: "This is the same text but specifying a font that covers Tamil. Note that the exclamation point is rendered using the same font"
2727 text run at (0,18) width 67: "as the text."
28  RenderBlock {P} at (0,252) size 306x132 [border: (3px solid #000000)]
29  RenderText {#text} at (3,3) size 285x126
 28 RenderBlock {P} at (0,266) size 306x146 [border: (3px solid #000000)]
 29 RenderText {#text} at (3,3) size 285x138
3030 text run at (3,3) width 159: "\x{B87}\x{BA4}\x{BC1} \x{B89}\x{B99}\x{BCD}\x{B95}\x{BB3}\x{BC8}\x{BAA}\x{BCD} \x{BAA}\x{BCB}\x{BA9}\x{BCD}\x{BB1}"
31  text run at (3,21) width 255: "\x{B86}\x{BB0}\x{BCD}\x{BB5}\x{BAE}\x{BC1}\x{B9F}\x{BC8}\x{BAF}\x{BB5}\x{BB0}\x{BCD}\x{B95}\x{BB3}\x{BBE}\x{BB2}\x{BCD} \x{BA4}\x{BCA}\x{B95}\x{BC1}\x{B95}\x{BCD}\x{B95}\x{BAA}\x{BCD}\x{BAA}\x{B9F}\x{BCD}\x{B9F}\x{BC1}"
32  text run at (3,39) width 267: "\x{B95}\x{B9F}\x{BCD}\x{B9F}\x{BC1}\x{BAA}\x{BCD}\x{BAA}\x{BBE}\x{B9F}\x{BC1}\x{B95}\x{BB3}\x{BCD} \x{B8F}\x{BA4}\x{BC1}\x{BAE}\x{BCD} \x{B87}\x{BA9}\x{BCD}\x{BB1}\x{BBF} \x{B87}\x{BB2}\x{BB5}\x{B9A}\x{BAE}\x{BBE}\x{B95}\x{BAA}\x{BCD}"
33  text run at (3,57) width 285: "\x{BAA}\x{BAF}\x{BA9}\x{BCD}\x{BAA}\x{B9F}\x{BC1}\x{BA4}\x{BCD}\x{BA4}\x{B95}\x{BCD}\x{B95}\x{BC2}\x{B9F}\x{BBF}\x{BAF} \x{B92}\x{BB0}\x{BC1} \x{BAA}\x{BA9}\x{BCD}\x{BAE}\x{BCA}\x{BB4}\x{BBF}\x{B95}\x{BCD} \x{B95}\x{BB2}\x{BC8}\x{B95}\x{BCD}"
34  text run at (3,75) width 264: "\x{B95}\x{BB3}\x{B9E}\x{BCD}\x{B9A}\x{BBF}\x{BAF}\x{BA4}\x{BCD} \x{BA4}\x{BBF}\x{B9F}\x{BCD}\x{B9F}\x{BAE}\x{BBE}\x{B95}\x{BC1}\x{BAE}\x{BCD}. \x{B87}\x{B99}\x{BCD}\x{B95}\x{BC1} \x{BA8}\x{BC0}\x{B99}\x{BCD}\x{B95}\x{BB3}\x{BC1}\x{BAE}\x{BCD}"
35  text run at (3,93) width 253: "\x{B89}\x{B99}\x{BCD}\x{B95}\x{BB3}\x{BC1}\x{B95}\x{BCD}\x{B95}\x{BC1} \x{BB5}\x{BBF}\x{BB0}\x{BC1}\x{BAA}\x{BCD}\x{BAA}\x{BAE}\x{BBE}\x{BA9} \x{BA4}\x{BB2}\x{BC8}\x{BAA}\x{BCD}\x{BAA}\x{BC1}\x{B95}\x{BB3}\x{BBF}\x{BB2}\x{BCD}"
36  text run at (3,111) width 149: "\x{BAA}\x{BC1}\x{BA4}\x{BBF}\x{BA4}\x{BBE}\x{B95}\x{B95}\x{BCD} \x{B95}\x{B9F}\x{BCD}\x{B9F}\x{BC1}\x{BB0}\x{BC8}\x{B95}\x{BB3}\x{BCD}!"
 31 text run at (3,23) width 255: "\x{B86}\x{BB0}\x{BCD}\x{BB5}\x{BAE}\x{BC1}\x{B9F}\x{BC8}\x{BAF}\x{BB5}\x{BB0}\x{BCD}\x{B95}\x{BB3}\x{BBE}\x{BB2}\x{BCD} \x{BA4}\x{BCA}\x{B95}\x{BC1}\x{B95}\x{BCD}\x{B95}\x{BAA}\x{BCD}\x{BAA}\x{B9F}\x{BCD}\x{B9F}\x{BC1}"
 32 text run at (3,43) width 267: "\x{B95}\x{B9F}\x{BCD}\x{B9F}\x{BC1}\x{BAA}\x{BCD}\x{BAA}\x{BBE}\x{B9F}\x{BC1}\x{B95}\x{BB3}\x{BCD} \x{B8F}\x{BA4}\x{BC1}\x{BAE}\x{BCD} \x{B87}\x{BA9}\x{BCD}\x{BB1}\x{BBF} \x{B87}\x{BB2}\x{BB5}\x{B9A}\x{BAE}\x{BBE}\x{B95}\x{BAA}\x{BCD}"
 33 text run at (3,63) width 285: "\x{BAA}\x{BAF}\x{BA9}\x{BCD}\x{BAA}\x{B9F}\x{BC1}\x{BA4}\x{BCD}\x{BA4}\x{B95}\x{BCD}\x{B95}\x{BC2}\x{B9F}\x{BBF}\x{BAF} \x{B92}\x{BB0}\x{BC1} \x{BAA}\x{BA9}\x{BCD}\x{BAE}\x{BCA}\x{BB4}\x{BBF}\x{B95}\x{BCD} \x{B95}\x{BB2}\x{BC8}\x{B95}\x{BCD}"
 34 text run at (3,83) width 264: "\x{B95}\x{BB3}\x{B9E}\x{BCD}\x{B9A}\x{BBF}\x{BAF}\x{BA4}\x{BCD} \x{BA4}\x{BBF}\x{B9F}\x{BCD}\x{B9F}\x{BAE}\x{BBE}\x{B95}\x{BC1}\x{BAE}\x{BCD}. \x{B87}\x{B99}\x{BCD}\x{B95}\x{BC1} \x{BA8}\x{BC0}\x{B99}\x{BCD}\x{B95}\x{BB3}\x{BC1}\x{BAE}\x{BCD}"
 35 text run at (3,103) width 253: "\x{B89}\x{B99}\x{BCD}\x{B95}\x{BB3}\x{BC1}\x{B95}\x{BCD}\x{B95}\x{BC1} \x{BB5}\x{BBF}\x{BB0}\x{BC1}\x{BAA}\x{BCD}\x{BAA}\x{BAE}\x{BBE}\x{BA9} \x{BA4}\x{BB2}\x{BC8}\x{BAA}\x{BCD}\x{BAA}\x{BC1}\x{B95}\x{BB3}\x{BBF}\x{BB2}\x{BCD}"
 36 text run at (3,123) width 149: "\x{BAA}\x{BC1}\x{BA4}\x{BBF}\x{BA4}\x{BBE}\x{B95}\x{B95}\x{BCD} \x{B95}\x{B9F}\x{BCD}\x{B9F}\x{BC1}\x{BB0}\x{BC8}\x{B95}\x{BB3}\x{BCD}!"
73924

LayoutTests/platform/mac/fast/text/international/danda-space-expected.checksum

1 0c5b162f98f4cfd4297db6be06f32e86
21\ No newline at end of file
 22d0a866969169fccb4c3077998985a9e
33\ No newline at end of file
73924

LayoutTests/platform/mac/fast/text/international/danda-space-expected.txt

@@layer at (0,0) size 800x600
1111 text run at (53,0) width 68: "bug 25464"
1212 RenderText {#text} at (121,0) size 385x18
1313 text run at (121,0) width 385: ": Test for rendering of Danda (U+0964) followed by a space."
14  RenderBlock {P} at (0,34) size 784x18
15  RenderText {#text} at (0,0) size 275x18
16  text run at (0,0) width 275: "\x{A39}\x{A41}\x{A70}\x{A26}\x{A40} \x{A39}\x{A48}\x{964} \x{A07}\x{A38} \x{A32}\x{A3F}\x{A2A}\x{A40} \x{A26}\x{A47} \x{A35}\x{A3F}\x{A1A} \x{A69}\x{A6B} (35) \x{A05}\x{A71}\x{A16}\x{A30} \x{A39}\x{A41}\x{A70}\x{A26}\x{A47} \x{A39}\x{A28}\x{964}"
 14 RenderBlock {P} at (0,34) size 784x26
 15 RenderText {#text} at (0,1) size 275x18
 16 text run at (0,1) width 275: "\x{A39}\x{A41}\x{A70}\x{A26}\x{A40} \x{A39}\x{A48}\x{964} \x{A07}\x{A38} \x{A32}\x{A3F}\x{A2A}\x{A40} \x{A26}\x{A47} \x{A35}\x{A3F}\x{A1A} \x{A69}\x{A6B} (35) \x{A05}\x{A71}\x{A16}\x{A30} \x{A39}\x{A41}\x{A70}\x{A26}\x{A47} \x{A39}\x{A28}\x{964}"
73924

LayoutTests/platform/mac/fast/text/international/hebrew-vowels-expected.checksum

1 4f28b61cc45d28daf272de7b786369ff
21\ No newline at end of file
 21c3b4103d8c520bb8353787741a4a50c
33\ No newline at end of file
73924

LayoutTests/platform/mac/fast/text/international/hebrew-vowels-expected.txt

@@layer at (0,0) size 800x600
1010 RenderBlock {P} at (0,52) size 784x18
1111 RenderText {#text} at (0,0) size 458x18
1212 text run at (0,0) width 458: "The vowel (two vertical dots) should be centered beneath the main letter."
13  RenderBlock {DIV} at (0,86) size 784x92
14  RenderText {#text} at (58,0) size 74x92
15  text run at (58,0) width 74 RTL: "\x{5E1}\x{5B0} "
16  RenderText {#text} at (0,0) size 58x92
17  text run at (0,0) width 58 RTL: "\x{5E9}\x{5B0}"
 13 RenderBlock {DIV} at (0,86) size 784x97
 14 RenderText {#text} at (58,5) size 74x92
 15 text run at (58,5) width 74 RTL: "\x{5E1}\x{5B0} "
 16 RenderText {#text} at (0,5) size 58x92
 17 text run at (0,5) width 58 RTL: "\x{5E9}\x{5B0}"
1818 RenderText {#text} at (0,0) size 0x0
19  RenderBlock {HR} at (0,186) size 784x2 [border: (1px inset #000000)]
20  RenderBlock {P} at (0,204) size 784x18
 19 RenderBlock {HR} at (0,191) size 784x2 [border: (1px inset #000000)]
 20 RenderBlock {P} at (0,209) size 784x18
2121 RenderText {#text} at (0,0) size 637x18
2222 text run at (0,0) width 637: "The dot should be positioned on the right side of the first letter, and on the left side of the second one."
23  RenderBlock {DIV} at (0,238) size 784x184
24  RenderText {#text} at (0,0) size 58x92
25  text run at (0,0) width 58 RTL: "\x{5E9}\x{5C1}"
26  RenderBR {BR} at (58,72) size 0x0
27  RenderText {#text} at (0,92) size 58x92
28  text run at (0,92) width 58 RTL: "\x{5E9}\x{5C2}"
 23 RenderBlock {DIV} at (0,243) size 784x194
 24 RenderText {#text} at (0,5) size 58x92
 25 text run at (0,5) width 58 RTL: "\x{5E9}\x{5C1}"
 26 RenderBR {BR} at (58,77) size 0x0
 27 RenderText {#text} at (0,102) size 58x92
 28 text run at (0,102) width 58 RTL: "\x{5E9}\x{5C2}"
2929 RenderText {#text} at (0,0) size 0x0
73924

LayoutTests/platform/mac/fast/text/international/hindi-spacing-expected.checksum

1 22f95c16a148eecafb2f4143965a499a
21\ No newline at end of file
 2ec013db4882f1f4cd253c273336b54a2
33\ No newline at end of file
73924

LayoutTests/platform/mac/fast/text/international/hindi-spacing-expected.txt

@@layer at (0,0) size 800x600
88 text run at (0,18) width 752: "for it. Neither the Hindi on the button below nor the same text on two lines below that should be truncated at either end."
99 RenderBR {BR} at (752,32) size 0x0
1010 RenderButton {INPUT} at (2,38) size 103x18 [bgcolor=#C0C0C0]
11  RenderBlock (anonymous) at (8,2) size 87x13
 11 RenderBlock (anonymous) at (8,0) size 87x19
1212 RenderText at (0,0) size 87x13
1313 text run at (0,0) width 87: "\x{915}\x{93F}\x{938}\x{940} \x{92D}\x{940} \x{924}\x{930}\x{939} \x{906}\x{917}\x{947} \x{92C}"
14  RenderBR {BR} at (107,51) size 0x0
 14 RenderBR {BR} at (107,49) size 0x0
1515 RenderInline {SPAN} at (0,0) size 122x18
16  RenderText {#text} at (0,58) size 122x18
17  text run at (0,58) width 122: "\x{915}\x{93F}\x{938}\x{940} \x{92D}\x{940} \x{924}\x{930}\x{939} \x{906}\x{917}\x{947} \x{92C}"
18  RenderText {#text} at (122,58) size 25x18
19  text run at (122,58) width 25: "Foo"
20  RenderBR {BR} at (147,72) size 0x0
 16 RenderText {#text} at (0,59) size 122x18
 17 text run at (0,59) width 122: "\x{915}\x{93F}\x{938}\x{940} \x{92D}\x{940} \x{924}\x{930}\x{939} \x{906}\x{917}\x{947} \x{92C}"
 18 RenderText {#text} at (122,59) size 25x18
 19 text run at (122,59) width 25: "Foo"
 20 RenderBR {BR} at (147,73) size 0x0
2121 RenderInline {SPAN} at (0,0) size 122x17
22  RenderText {#text} at (0,76) size 122x17
23  text run at (0,76) width 122: "\x{915}\x{93F}\x{938}\x{940} \x{92D}\x{940} \x{924}\x{930}\x{939} \x{906}\x{917}\x{947} \x{92C}"
24  RenderText {#text} at (122,76) size 25x18
25  text run at (122,76) width 25: "Foo"
26  RenderBR {BR} at (147,90) size 0x0
 22 RenderText {#text} at (0,85) size 122x17
 23 text run at (0,85) width 122: "\x{915}\x{93F}\x{938}\x{940} \x{92D}\x{940} \x{924}\x{930}\x{939} \x{906}\x{917}\x{947} \x{92C}"
 24 RenderText {#text} at (122,85) size 25x18
 25 text run at (122,85) width 25: "Foo"
 26 RenderBR {BR} at (147,99) size 0x0
73924

LayoutTests/platform/mac/fast/text/international/hindi-whitespace-expected.checksum

1 f5241a2bdb9a7e5b6d295d5fa32a773d
21\ No newline at end of file
 2ec09f2991f795a14f24f4599db8eb25f
33\ No newline at end of file
73924

LayoutTests/platform/mac/fast/text/international/hindi-whitespace-expected.txt

@@layer at (0,0) size 800x600
77 RenderText {#text} at (0,0) size 762x36
88 text run at (0,0) width 762: "This HTML tests if the 'while-space' property controls the behavors of line-break characters (U+000A and U+000D) in a"
99 text run at (0,18) width 135: "complex text (Hindi)."
10  RenderBlock {P} at (0,52) size 784x36
11  RenderText {#text} at (0,0) size 719x36
12  text run at (0,0) width 719: "If this test succeeds, you can see this Hindi word \"\x{935}\x{93F}\x{937}\x{92F}\x{94B}\x{902}\" repeated three times separated by a space in the first two"
13  text run at (0,18) width 491: "paragraphs. In the third paragraphs, it'll be shown three times in separate lines."
14  RenderBlock {P} at (0,104) size 784x18
15  RenderText {#text} at (0,0) size 134x18
16  text run at (0,0) width 134: "1. \x{935}\x{93F}\x{937}\x{92F}\x{94B}\x{902} \x{935}\x{93F}\x{937}\x{92F}\x{94B}\x{902}\x{D}\x{935}\x{93F}\x{937}\x{92F}\x{94B}\x{902}"
17  RenderBlock {P} at (0,138) size 784x18
18  RenderText {#text} at (0,0) size 134x18
19  text run at (0,0) width 134: "2. \x{935}\x{93F}\x{937}\x{92F}\x{94B}\x{902} \x{935}\x{93F}\x{937}\x{92F}\x{94B}\x{902}\x{D}\x{935}\x{93F}\x{937}\x{92F}\x{94B}\x{902}"
20  RenderBlock {P} at (0,172) size 784x54
21  RenderText {#text} at (0,0) size 76x54
 10 RenderBlock {P} at (0,52) size 784x44
 11 RenderText {#text} at (0,1) size 719x43
 12 text run at (0,1) width 719: "If this test succeeds, you can see this Hindi word \"\x{935}\x{93F}\x{937}\x{92F}\x{94B}\x{902}\" repeated three times separated by a space in the first two"
 13 text run at (0,26) width 491: "paragraphs. In the third paragraphs, it'll be shown three times in separate lines."
 14 RenderBlock {P} at (0,112) size 784x26
 15 RenderText {#text} at (0,1) size 134x18
 16 text run at (0,1) width 134: "1. \x{935}\x{93F}\x{937}\x{92F}\x{94B}\x{902} \x{935}\x{93F}\x{937}\x{92F}\x{94B}\x{902}\x{D}\x{935}\x{93F}\x{937}\x{92F}\x{94B}\x{902}"
 17 RenderBlock {P} at (0,154) size 784x26
 18 RenderText {#text} at (0,1) size 134x18
 19 text run at (0,1) width 134: "2. \x{935}\x{93F}\x{937}\x{92F}\x{94B}\x{902} \x{935}\x{93F}\x{937}\x{92F}\x{94B}\x{902}\x{D}\x{935}\x{93F}\x{937}\x{92F}\x{94B}\x{902}"
 20 RenderBlock {P} at (0,196) size 784x70
 21 RenderText {#text} at (0,0) size 76x63
2222 text run at (0,0) width 12: "3."
2323 text run at (12,0) width 0: " "
24  text run at (0,18) width 38: "\x{935}\x{93F}\x{937}\x{92F}\x{94B}\x{902}"
25  text run at (38,18) width 0: " "
26  text run at (0,36) width 76: "\x{935}\x{93F}\x{937}\x{92F}\x{94B}\x{902}\x{D}\x{935}\x{93F}\x{937}\x{92F}\x{94B}\x{902}"
 24 text run at (0,19) width 38: "\x{935}\x{93F}\x{937}\x{92F}\x{94B}\x{902}"
 25 text run at (38,19) width 0: " "
 26 text run at (0,45) width 76: "\x{935}\x{93F}\x{937}\x{92F}\x{94B}\x{902}\x{D}\x{935}\x{93F}\x{937}\x{92F}\x{94B}\x{902}"
73924

LayoutTests/platform/mac/fast/text/international/plane2-expected.checksum

1 90cb84d5df968f66cf306b4fbc11b823
21\ No newline at end of file
 24ce488c242fe7ac55b55aad761451a80
33\ No newline at end of file
73924

LayoutTests/platform/mac/fast/text/international/plane2-expected.txt

@@layer at (0,0) size 800x600
1313 text run at (121,0) width 634: ": Two lines below have one character from CJK Ideograph, one from CJK Ext A (both in BMP) and"
1414 text run at (0,18) width 758: "three characters from CJK Ext B (plane 2). The last group of characters are covered by Japanese fonts on Mac as well as"
1515 text run at (0,36) width 331: "two Chinese fonts for Ext B shipped with Windows."
16  RenderBlock {DIV} at (0,70) size 784x74
17  RenderBlock {DIV} at (0,0) size 784x37
18  RenderText {#text} at (0,0) size 176x37
19  text run at (0,0) width 176: "\x{4E00} \x{3400} \x{D867}\x{DE8A}\x{D867}\x{DE49}\x{D867}\x{DEDB}"
20  RenderBlock {DIV} at (0,37) size 784x37
21  RenderText {#text} at (0,0) size 176x37
22  text run at (0,0) width 176: "\x{4E00} \x{3400} \x{D867}\x{DE8A}\x{D867}\x{DE49}\x{D867}\x{DEDB}"
 16 RenderBlock {DIV} at (0,70) size 784x96
 17 RenderBlock {DIV} at (0,0) size 784x48
 18 RenderText {#text} at (0,7) size 176x37
 19 text run at (0,7) width 176: "\x{4E00} \x{3400} \x{D867}\x{DE8A}\x{D867}\x{DE49}\x{D867}\x{DEDB}"
 20 RenderBlock {DIV} at (0,48) size 784x48
 21 RenderText {#text} at (0,7) size 176x37
 22 text run at (0,7) width 176: "\x{4E00} \x{3400} \x{D867}\x{DE8A}\x{D867}\x{DE49}\x{D867}\x{DEDB}"
73924

LayoutTests/platform/mac/fast/text/international/rtl-caret-expected.checksum

1 442c64688cc1495d721e898fb85ea039
21\ No newline at end of file
 289a931cce0a0cb2b1ef4160307817aa0
33\ No newline at end of file
73924

LayoutTests/platform/mac/fast/text/international/rtl-caret-expected.txt

@@layer at (0,0) size 800x600
2020 RenderText {#text} at (0,0) size 346x18
2121 text run at (0,0) width 346: "The caret should be in the middle of the Hebrew word."
2222 RenderBlock {HR} at (0,86) size 784x2 [border: (1px inset #000000)]
23  RenderBlock {DIV} at (0,96) size 784x18
24  RenderText {#text} at (0,0) size 64x18
25  text run at (0,0) width 64 RTL: "\x{5D0}\x{5D5}\x{5DB}\x{5DE}\x{5E0}\x{5D9}\x{5D5}\x{5EA}"
 23 RenderBlock {DIV} at (0,96) size 784x19
 24 RenderText {#text} at (0,1) size 64x18
 25 text run at (0,1) width 64 RTL: "\x{5D0}\x{5D5}\x{5DB}\x{5DE}\x{5E0}\x{5D9}\x{5D5}\x{5EA}"
2626caret: position 5 of child 0 {#text} of child 7 {DIV} of body
73924

LayoutTests/platform/mac/fast/text/international/thai-baht-space-expected.checksum

1 c7648e6dc294e3908564f435d37f2498
21\ No newline at end of file
 2ed5ec4ff0b767325af9af8f46e0102d6
33\ No newline at end of file
73924

LayoutTests/platform/mac/fast/text/international/thai-baht-space-expected.png

11PNG
22
33
44IHDR XvpiCCPICC ProfilexTkA6n"Zkx"IYhE6bk Ed3In6&*Ezd/JZE(ޫ(b-nL~7}ov
55r4
66Ril|Bj A4%UN$As{z[V{wwҶ@G*q
7 Y<ߡ)t9Nyx+=Y"|@5-MS%@H8qR>׋infObN~N>! ?F?aĆ=5`5_M'Tq.
87VJp8dasZHOLn}&wVQygE0 
98HPEaP@<14r?#{2u$jtbDA{6=Q<("qCA*Oy\V;噹sM^|vWGyz?W15s-_̗)UKuZ17ߟl;=..s7VgjHUO^gc)1&v!.K `m)m$``/]?[xF QT*d4o(/lșmSqens}nk~8X<R5 vz)Ӗ9R,bRPCRR%eKUbvؙn9BħJeRR~NցoEx IDATx$Eٷ]DI*AJ "(dEIA D ADrV_?$
10 HAQAr\BϿvkOoǙsjCu]LPݿz̒#!  Y   ^  @Q  P@@@ H4j2B@@  D FMF   @B@@@h Ѩ@@&~ya9j/{{Xe%O?C|*Wׯ3woW_-}O8?./׿&M{|7ײ,og(̧U.4Lڅ:]z[/Kw1>mFӲ|/77ҿM)x6py
119v-3{?yǭ+_5j>6`+g} и'=\w׻[ itIYfyΝAVi;xӭn9wn{ᇿ榚wjiW]^(voɝqnyv30-?̹7}Y[O}Ss{g>>O[_>s-9>=餓xbe;?}u^A ~nucɑ_p/ڔ! L/{$vc$}by/}no}u7s==u6-;b1^fgmJ:M2)f^ùej*#e ^֐>f?po駟>b-zee{kV +Ylf,˄g6;W,/v/d_zoe{EdJov/f\3wc'Ͻ3ϼ}glm_졇ޜ`Zxn0Oߟ6l,ov~7[hz-"~l
1210vYeeVwGfZ>Vz駳|pIJ,g?oۺB~.t=MDzby/}ov!)
13 +P;4>WOӲ|/V9%?ҿM)x6py
1411vk]227^u]H[*Q5@-2wn{{n̘1nn/_LJC_Y(?C&^r˛fr3]|n7o:ՊWDzˎv:m !z to;9?8⓪_ִNۛ<!Z,7i^M2&OtoY~lcUl{U۬5 .`ݢӪ֗yPs]9?Wٵcr{mos ꖯ;u9|7{u4;W=zLU^Zi&/z&L"Osq.;b1.uǡnZ<y1
15 TY3lp<ݗ-:ʾHqz=iEkF,vu!?ϓO>?pww:g<r-秝wy /.bcq\rz!ӟi}!zWxnVAYmgtM痛wy}~]w9UguV?o~Yf+v!b_BcsO~"J뮯~wzoOoͿƸՂnsW-HʩNZj[~QeM.}C_¹袣,_IWmtftk5t9ͣu= .d/>2+;5
16 GYӨˇ=uwq
17 (8,6|y]zK{5\'/5:v/bڐW-b;}Z~饗c++[*e*Gyd2;Ώ{W^smgVS>i^뭴~CqѺ{5m٬\dV.r[`|Ӹ /-n+beڟ+ZBTꪾ\)qw<ٕU8;_WݩY~Yy>묳}±iLHS~Yeٱ[//^j{g. '娣xUW諸^1wK鬒6(YvL4|~'iUWnZ>B~E59҉Y+
18 A{Mb(ΧecxhTmazfgCb}{LM{-O<1~c86]Xx<⺲ϸggخ}ڶۢh+z^Wniٶ鳢ߪb/U:bg2 0|s) )6ܙYOY]v٥פʾ2M+>/Yw!
19 Ϯd\dWſUf}V2kϛYi;ʚ=b=]rl5x.m}ۯ֚o"Ͼ}/^ve{M?G?K&o;|#tc^fli׿wg{&X?<6Vx>;ײ=x/cO+[~F8#dV):[G%\2/|_ξo|KMB8崙;4UίoR,Hi/[u,_5*~XYZ%~?A_*~g[[]VS5utV^xl뭷-oj+=,Zglm>?}2=ɛ-{SO]\]>dew'}Y@{4~3 3Yuq݃엕[ouȱ: ՛Y<ۄMw+:G-},jԧUVY%~ief̂鳷kgVQ\s͕u=jɳXߟLW4nYV.Eͫcm}{)[{sܓߍUcԔG?ǣiMMolw5Y=RVW2ǺTvYhY/uu[uy3<*7^wL˶M߹m#ʿ_,#]>Z_פ%RUbђTTeq}eʝ
20 =P_GDGHl4!'?l7K(`s_u<]~.sV9W2>YfLu֡ -{<׳mQ`>[m<c֧mL53_WǵM>ӛum쬥m34uUa^tE{]v<!,B/[uS+?ŬJ~HԨ쫬6)
21 ?*՗DH
22 NͮJZٚ%+@qOm|xݥ̵GpBy?QΟ(12[oC
23 OaS/gx?g;S/G@Jcٛ)|yת8B'Ю~ZN%ܲygO?
24 8u,$$ @!~X.<6yIߺ5 c泫q>]w]f=4IgFQ].VN<m|%Yk* rOg]ɭgA }6KӶuٖz;8I]isLۦ߫ۿw|Xӻ|F54a''ف2,K쌫 _SNѳB>j6vm򓚞WYXDՔfy|-7V=m~}|TTxO};]Evw3&xFHVӸ?icZ77/X`򗧵ҹ?Mk
25 W|~]eu 5?EMrkFoz*ⱫnMyںՕO[̷̆Ǚg9<5;pM'mʶ'쓖};i[^+ϐtIze
2612/]_oŹ'am'ؐ]\|6LOj&deY<n>ӒU尩˳V۠j質*!U=qZVYN,c
2713Y/s`^3޺ϞUv}wݽMRsUuY7Igm_[nZ>l"^t슛o׿wo}= ɶw#@gF<=mtmCH6\ǦPYWv峠咷6KӶuٖZWni.y^x
2814tylvev٩e-K9nU۶+ҷ/=S^Ci%y뇨4|2
29 /un-^vEqj}yuԌL}>+4Ƥ9XCZmؙ߳n}S߿Ybl
30 FTN<~C6BWjgFǮ| jo~> ֥ծS6|2_|l`+[X
31 f]ο7ٟ.e|o)śn~mXV6yy'
3215fy\v)x0fy 1]}W4ʁ3<붯-W7iYI{Q++a|> ,w8^}fIcTGǣWm ˷ly<66Ϻf],ߴ/]]7S^}+7uL붷.ⶖ-[G{Ob ?kc"Fkt*]qr<Qg4B_I&]N.?wawqfFѨ
3316uzFl#|}aOP59dg%;,ʿf 쬟GҍwvoZ>lKjO+eIm&UlU
3417`\B٪+acS[|]ZkY4p:
3518Y_0dA&,;W6e?l_G+oa,zc{ɠmWr)ΚM{s|]0]>I
3619Q|g~޺;uMkAWbGO)8EGu3SOǨ.~G1.ۖ_gCWۤfYWvڬkoʫu1-n{io
3720)Q֐^̾QF7SPpA!?u&Ҡd PTIf)_EJ^ݏ2`'$Ut0KaMiJ7~=*c-(kof#mܷy
3821=;qW:]qYe>P!x?5-wƎ8,SjtYfK#㒶}Ŧv6F_^X<?H8a=z"]v:i2hQ&!:VxiE8階H V+ucLUtsDͧ?e}|YS
3922(+o]Ť} :3
40 >_'*)ۚ?##|:!wqG+_k:Vt}V{țj'& jxإ̵qqI]}(mor.x]U7pڲ_,Z_=?$&{c9\|8jk윚F:=sN8hϞt'?Br(55;Wg4m_w[ruӚye0$iT1:Uw |e>3yQ[S uۦϧBnl%n&ϔ󟵦Xu<h]> _ZNa[iۺlKS^ڶ|U6ǴmZw_*~ˈ+}FcnoVIiD)[]f_n@h,kC!f64Xίe?S#ikd ^-U{iքw\H9]vYf_`}yi\ڏQfAOo]'Jgu:cl#x̬#FҨRlRj/w~ٶK/Fz:C?kݤo:B^;:7,ǹz:㿝~ٌ3>-s^{}/L |wُ̥}ZymlGly qzW#<ænܵ^{hy*CnA4J5#Y9?z:[3lM6l]DeLeMҢ̚vݜlUϲ2SWf{{a~@uhp!Uk?S݆7x+Ⱦ0h=3SXu<gΆمZU|'}}dԁMtDR6/WMӲu\y pd0rб3:3:m;U]9*exU4ʛF Yi;C۔M'|7˻>,6?{4ZYHڇ~gOd$U3ڿƂγh%uWu|[g>l{1̯χ, /K~ }fQS6u}i:kh'wv%ُXT|j:ue'6ߟMRm]EєW~_Ӳm+{OyT_Sxu/~kyhz5יaM*!3Zkđ0BIo=Ѩ]E~xݲ.ҝлLJc
4123,4Bփsϛ5&|󗲫?:Wq}u_|mt0unۼ0m_sO$;[̢'u,+NuVY70_'Re)Kv/܏<[*9 6M|B~<DMPyV}Pe࿓>cٴNMԡvtȦ_'}lbLƳluWw|떫ִσ,[uߋ]d'l ޫ3}f<=m-Sб w,mK+;e*7Muu7UܯrtLz]uVvTmg@%j¦^Iv6\/K@lhT>@oz>kʏqtN.nSfnxv;' ڢw[{rEL`?
4224wR{V5K`mVaG[mLcNFl$`ͫ|-vF{Qku͟GNΈډ\.nښ;8;ӢnLjM
43 p+n
4425q#.ѳc~4h+j_G>^_~<x׫7w<i 
4526Li4P1LS@(ȔRZ@@&NN&"  $,0Y |=NqLc=Wk%ҶZZ*H?8M>Ne&#e t d|`Cyv^O?tΤtߋ~R{uj;J(Tq|#MMMTop]OӾ]Obf{Tu`}{oOlV\qEq/zn~'6oޮYmut}.tYl"nt IDAT
4627$wZ.fض
4728Nq?'5>1.eF,r׿uOh}/iڶn&6< -kc}8%4*ݿƯW7uGXqmo5p6 LZFz?ލZr#x;79Xu[@#{Ƥ-1jպWwGz ]lӾΪebU
4829@1y˞T?po1b-zuCB#yfb!/J<RoOg]
4930tYdD3gYRURٿQvyR}bY}L1%]z8sH7tH 2 nz&t2EyFf[v4"Zۭet֣σu{L7l"~+~_w]7_SLχ]=ga~2tLf5K
50 :3ŬLW@FUGUfwGw:c#M;CՈ\pX#^if6\Xav[I?\7{6Dic0)S,UFS*U*RxM'Ggj^馛N4(,fu[n;蠃Qbya~;}+vwmϿֿ4LNg=|uŧ)
5131yPJ2zƯҦi/N{4=L om?FI6U9=#}Av_&c{YS@/%
52  .p:җ ;3W_*:(J+9;_>v7q n?ӽ
53 ZFwݏ+}v<HXAܕW^'AM<BҐv;{`'<]Q'oj4IY\^ ]Miw^kt\t >
54 5qc9^'Kmo>O*K?C៚WՍ
55 d~ֶ-,NXWQg}vvOV9wRSmƿ뮻|TMz *Yeئ,Wmkk
56 >'ZoY*+eF*~R7U lsY>e}oHS˲yUUU>~
57 n~/W)P?Y'x{Vw˩bl9GU^0{!
58 Ǫk{|qaUyfܩ8l{c9]r%)o &>U-K/uK-okW>'jZc%UmSCJٶt=Zpv}
5932}ִ/Udz.2{CaN+϶j[Jfg{^vg^]x3v,[fe2Л^|V1oVLmgMZ(#GM,ng
60333;;gV!,`ʬj&ֿ.齑{2sgV7 3G߯."zݴ]=|G>-W_Ygtoc,֡1tYU_
61 Y﵌_7goqOU+5Q Ǭ8_NYkfU|;*|65ijcg3kcY_δ,h,MeYmg>=? Y:~qy @gioKx>3pxд.˿{^),,Ϳj /пo7b-S~zfLb[8&(>_!cA,2ӶYzu&{̂e>}ɚ?./W+ίKϛtlV=l!}뾟,,Ȭ|ZvF~jvgvk2q6i&-_trL ]Z>AxvC]^ayDh%Q+ҟurV g į*NwiV+M7Z.[;lTSՖ%XUW#tC#֫_W?~:[u멧7mYϫae۱fћX}ˣ6ųZc0ա?L:骓RuO9l^{3ٿb)nFYe]OUO<ї)&8f938c:IʛwV˩eSVrYt;\LMRU/3Ҁ*'JyYk|
62 r4n~#tI|
63 W2ϧiM72q OVWRue_XeHjY~Z^Wz.Zk5A፦0_6sm֣y^U'Fwʷ鳩WmSvt=a*i_gmi+8#/0RITeHͮtyZMtV|%iMM LO?HkͽE?S#Ȥʥk] ζѽB>G;C{K_J[`ܓ6ų:ʍ(};˩t׻_|1,٨KUJH~XVۦ;^~jB*y˞"*az&r3<ŃԤNTW˶A M>uQRS_t&b* liۋýpԌT4
6434L[ ͣ4F*}J?)PGǹlhq}^쯻:(xǐߎ6=o=״0]ەO6zdOjV߲bj*U4ڦ4pvi]}ִ/Mdz˶4xD=Y3@;
6535mj':|*1T u 0p<*/[Weʒ[w:+U;_)>WX%Nm#O"uvֽ~viFVgUֽ|ҴUU{jAbX̫i4TUy?W>k[ueFmu5@ASMm H>ʒ9$QuYc`D}=T)$?YUNf}UUQb*X<;enrq;ͫ6se}c?/ۖ6常p;sLoWq=z<}o@`d
66 6U?ߝr)~|5#6վ O&)lhY5PAW;ҡ+ጬ֯:#bm}ު4R:#*hjq@(,;su*T~9>3\ L벟j[ONu;m*?0,C=ԛEe%eNWI] >ݳBEiԥَ'3N6G.
67 vu"trBAFhB2!@7R(+g֟>{:mwVsM5- Wiy&\OsU`ϝjJ1
6836RubEg˚vA*\qMAXfVXGcr\\CǴ=zoWٺ1oڗ뮛)}=N5\bB~,ra©>W!R/PiGoJ:ʡ5=T0t/)|`GCnlQH4R߻*, jʌRyvzjŤ_Hҟ{J
6937폚`)8eYsM Q:-T9TK2ySydl<3+x4r5)2,O+PQ
70 IAtpzɰ,7mTSRfXfǺ_4?VTMnɯCg3e]P'5mΐTF4&lj+j!)А=']Q, }+z}XH,2F+kʋSH
71 . Va=zl=:J.k%9j2M-mk~u<:C賨m*r\MmW]i؏~w
72 ˇw\ i]ʃ̇GflJ$ŏcgF7 F Ɇ:oME]4;#2nc~!$(45lhQڮ\GʏbmF3Tid 2:֯ˆ-#`no9߄/l>?ɐ
7338B#Ef'C=4iZaު<o_rYoA*st,ɚ4BU2
7439̯[ϫ8_
7540/j6ˎE1lXs _슃/oaX8?{Gc~D1k~ofwfA_=M2`0k*uS@!,}**ϗsgN0곢iM\OF,껠4S~t6,$Fqkm.tUcPc*5NjA\賡U.줊]LkgwG;Le@k=6hEfANb3<썺ϫ]Ml,/*-w;Ƌzg=]YN]>`9nҨmwkYݦ>[mX@
7641~E}Ŭ*#'ٞr}9hzJGcۥei$ϚxvGS^vRΗ:+<GaJ/aM#4d|f^çF(316,GgtKɊ752az/<´c/_3:X,*.es6WibҾl܊˔İn~9U.en])Ӏ
77 >T
78 vG˄Ѥʮ[͉tUuatEWWhôZǠۢ+22RU^u@[:Wɫ6seuF6
7942٪ʣk9.ɡJc߮ Muu7&?Z~ .0"@_j
80 XmP0uN>i8~>ie5UlXFR?;t6M@@/XIS'nG= ꛠ$YgէJ})7IA5}qFb:5CzO*v  0R #%zj
81 ԜG# gT, n9W=s[Y L a@@:
8243;=;  Q@r  i }{@@
83 D&3@@ I  D Mf  -@g@@*@@@H[$#  U$*7!  HǟG@@ HTn2C@@ m?{  @Td6 <s]xg{y  NDW^qDߎ7_O~N?t7sUW]eY e1" 0 N:2+|ݾi?ݺYg/{괮X3Oo} Gq;Su]?5p?}cq7.3OYTB@ ;=No{7[/+&gg>_Yւ?*[8_Ww1Ǹh4R\܇~__tz׻6l~^xqu?/~ }_we&)ھ=  0FK/yUMvs=۪;N7zt9iӗYf;"nW_dVr첋{ />g]~}o"޻;z?Ϲ=i;HmswM7Ƕiww뭷?nO?c=Z-%7ߐy-Ka%.ߥ,N;<" %0N:2,ϟT*F͖>
8444}+_qկ|Xke7}3y1c|eVu~|K_r'x>-6QM۬Sw;vuW_))K~jzwztYkZ6mYs=/K
85 +}rUi,|TY> IXځϞ}U2;Z|{ךlf͔]|
8645Yg>OdpXӛ̮,d]tQ_>̿tVb3=wz=g֟ÿ[oN%{7J߬g?/K~*!3ռxꩧ*x5m]ْ,Ӿ.]AUIƮ8TM믟]s5ς' Z]^Ѷ,lYLǷtw<Êy S@Ӹefr85
87 S3~nYgu_!6Y⇤A-oƿ?6l΂w-X/CMɾoC9mCU~ia-tA* :Vsr?X><ꓟ
8846tGW@ -i{?3Η_HRʨ;3YO<B_Z`vi'ߟB\MV\qEwwqksEDWѩ3݂^^j:Fy|j>{8C(Y*O*:/U˪S 3^}UHWmsYY)xNYWIeCSd^# (*3NMC:(ߤB%jnWC|x7])Uܴn<޴5XkcujܭYwovj^_xᅾGM^4
89 Iv|_NͥlkD1R\ԗbG{1_t;"( .WO:ӟ:`muZG>Wj2MC=+v%$E:j3Kk)=^Mۢc~뭷2y<;|O}fT~ଳT.B'lvx
90 }0*g5CSs.7qв4
9147=*_|SgV[m5KvU)%\< 4 0lNPuX8`ΞN(MV*TVW1Tu]C U5©RմCV7WlTיWݿ!\tM}
9248JuV43Y*JZn~EOgƵ4JFQRWtIr:fgq_VFk}:!o˒_˷)?yvmBuCWT򢊶IL34JUj{E
93 1P®Uk_ߖĖOTt%OeF8}^]z饕kQ@`M#)hQ\#)
9449Z]>lt&ԧew)X
95 Z@@ DK.WQ6Conf>Mt:uVPЯG MkJy5r*h:8/+<+)L7tu,GAl/SII*^{UſVXyRe%5=t_[eU|%VsTQ?chq#< ]P{ IDATбr/5[S@o|cHs:mkOWtUAguE@͞i$]R Sh]JSj{Ey`>)Vjf ,?۝鹚)PꩧVG.
96 4–6v4hYtMeQ't#|rL꤁N;4ߩ=@h @Tн#TIp#_PeWIn WFFALYRs*ו{~U_O}S+(yUREW}2M'NZ*z_փ3tqU$RȪ+jTԇA~5R3NU2ʼ>W~cQ7JR?]-eʗ#UUW/S15}
97 9X`־/޻eic]YT+ŤQ_K}{Z${껠<@@`h @
98  yWWԏ _a+R芅O.E_̽*h+!7QG錚h%4M:I:3>
99 t^Iyə*S0 H_oAAWm:I)+4#U$1QR`W*NBeʎWq6ɗ*UlxOWPW_Wv}"|MȭLiв4UZ,jVYUM]!ԕN8me L:BWgӶR)ѕkI͚,,2v
100 B4:<3Վ_WdTӺRzռjm|)\8s|JEl۵֯6j
101 ӫW7S*Uͧn]ϼWe߲U:]W|6SumK~zs)٪|ՔOMBc*
102 ;<GM&]-P?AҠWm{,*W3=NWWa4@fYgպy@LDU &XjңpPeG U6TQ3(Gꈮ,BN:;~JegSաZZ
103 J9xymuVI*OgYr
10450o%aMga[hP5];㼹+Gҕ Ou_*F՜6~?VH@͚Tn:чuU=2eے^\JjZ\tMe>esNTM}hlV\
105 Z\٣-PsPYWBl
106 ̠ei6וŲWr_%gV-MW LvQ#uk~5CH>zT%53f]PB}~iW'd]Qq,
107 ֫ Dͽԡ,q~;TA.K,i4$m:."~$ڪlںhFoLMi!C.?%Ut]W[T寢K{O/lCY~ꄭ3LQ{;<m { P ePWBtLP瓚m&~E/K(ߺI*?XҮ+p4hYtueQ0!鳮AX賯"3P L]u ST4sftF6RͱTRk ce
108 &{۾mgwC**nwq~սVZAOUA?g5lhRV5-v~u+ֶrωk3hYt&gXv  ʥ
109 Ǡ+8C09퓶]ʼnO LS|5jB>O=ۡUJucby" KڰWMts4uV)%i_tR\-O~Qt–nFA\V @S|c~)괮+ SJR}ݷvwξR^ߗ䪫]vbMԷY7Tt)
110 pFSl+:UnrMmol7 @5PӨQ#=xׂ|գlPUIWHt#E
11151eʲFRRtc9s66ɻ<?FӈN?_j$tGzEqalrK]ol/ pȪykdNÇtRTLy(C-L|lO} /o\.>=I^
11252<?m1ng=Mz珓{ZTWK4m>
11353Z]KSH^a@
114 I'ow'fKA>ٺ)~+$jOwkd{ُ~̘1r|t]Uҗw>jY1Qv[DE-<,?p?sw.kM׆-{ߋnй
115 +rUi^A|TY> IX#
11654VY j ^kb5Kv&ڝ'oBv̆)&+ E]{o,0[iu|јZXrɬGn,;y^X`ec|v9_eȲU
11755SO=U]WӶU-2_XTnC!<kYِ~AҠk#ږ=- <v[@Y Y]=vXq2@@`
118 tF^NoBsguV/|*;o-~Hjb&I+ҟggo[n8`ԔLw6/&y뭷TOm orVh;E݉[BtY7T(5]wuGW@ -iȪukk/ԔA>3r
119 *Ocm^q x5mP)5Ӎe󅤦CmRWCM]üUڎC=i,'x~\T-~:٧]]G5je/s7:5S\{'f=l|*{y S@:5
120569ꨣ|ot<@o*Si
121577y䑽i'jZk95ݠUIHA?[c5򳺿7 , }/Ϯ4
122 nv\ζnK-UՙA})\p!qAwyx \+zzTs'{WO:-Ok)8/LS~jC`L۪ԴHVMtwFsS2/Q"ǫi[toV_ft?gvqGoʯ uY~*r[DNUAן~RLۣfhjte&Z]!'Ų&]|NCZmK,U/g\ro{'  0 4 0lNPuX8`ΞN(MV*TVW1Tu]C UկAg~UYT]Q UtTIjZ菡Jo+z
123 vu]̫l>P GUCRXWQ5]A3fL+iAәr*ѺQ**5cvgy8j(x
12458y[j3_S~ۼNNWT򢊶AL34JUj{E
125 1P®Uk_ߖĖOTt%OeF8}^]z饕kQ@`M#)hQ84hYtue/̣&ttw'Xs"DWQI  @cʁ%\ҫr¡77l3dl:J:@O*gQ}FZj<+'a^ܣ
126 () c/Ԫ򬤦P2t!P5l/4)J^{gUa.VAYIMWToUVZ5QcgY#HWt,rK|Ҝ,|Mꓮ*茾ٓWs1MS_
127 ?JЇmE哚b) IN?t?0ͣ(PꩧVK.
128 4–6n4hYtueO$vPXNI4Ppi;<" @*w*ib`n}$<*Ry
1295973ʈ()KjNRq=oWPü O}w%0*\OFIG)RӦlyJ3<֭J
130 TUYW4)ԇA~5R3NU2ʼ>W~cQ7JR?]-eʗ#UUW/eS15}
131 9X`5>.+yв4aʞ_),&-R- kA7 @D@wu5A"X̭_8ܫ⨊|UΨV]M>mLO-WR^jrJ(sWExF;[PEmm[Ӵ*
132 )\Q茾"мJWm.Wv8쵶QMԌPADկe{f:kzTGngJAbUWʒj
133 Tp n/@@`
134 h @\u:НՔJ]{Hj֤fYeIQWqg حv"
135 ]׫U3mn+H9 U/
136 >\gs]w]߮=T~WS0U^u:NRn]ϼey,Owʖd;XwͫxS-UUdUhWS>5
137 I#(:5t@x-K.__ͬ8Q_]qfU}@2UTP `I*SWCU.TPeD͠#
138 :U5(MUjck]j(8+}y׷Z%?VךWg5Ljmtzվ̼:p+`S
13960,>-w7W@7\sV42_'a~?VH@͚TnBlǺ_GٶW=]mS.a9?USG}7Ĩ9pE-,WA \+TՄP[3hYtueW b-*{w S]Ԉ@v_͐4DILtYW=T(Bg}_*bF YWDy\D(K*Qs/%uh-KGqߎp?<,i4$m:."~$ڪ:!o[MmFԔ^
140 θ몐I`YM>8Q0QTDBexkD2UFN]$h{ʶ%1C/A] 1U@Ojf&iWR
141 [՞6IG}>t+UuN}-K.;F8$}5 }uP}[dJ:a~I]˗հ.@@`ʂcȆQ4S9*Px=aL,T}B$yow~(]Q..ⴺת\+j3b_鬱
14261Mʊױ;^EǠxu[{}N_#VAҠW=59 Mʶ@@ @&W.UPu?] P)u5sSGB e/6y! 0 L֨ lSoh?J@@I_`IB5 [MrH   0+ V5lv#  @2S  4 LM  @Y   $_@@@ H<krB@@ y   gMN  $/@|@@x @@@/   O$59!  HE@@ ij&'@@ I  @<x  @ @@'@Ϛ@@H^$"  @Y   $_@@@ H<krB@@ y   gMN  $/@|@@x @@@/   O$59!  HE@@ ij&'@@ I  @<x  @ @@'@Ϛ@@H^$"  @Y   $_@@@ H<krB@@ y   gMN  $/@|@@x @@@/   O$59!  HE@@ ij&'@@ I  @<x  @ @@'@Ϛ@@H^$"  @Y   $_@@@ H<krB@@ y   gMN  $/@|@@x @@@/   O$59!  HE@@ ij&'@@ I  @<x  @ @@'@Ϛ@@H^$"  @Y   $_@@@ H<krB@@ y   gMN  $/@|@@x @@@/   O$59!  HE@@ ij&'@@ I  @<x  @ @@'@Ϛ@@H^$"  @Y   $_@@@ H<krB@@ y   gMN  $/@|@@x @@@/   O$59!  HE@@ ij&'@@ I  @<x  @ @@'@Ϛ@@H^$"  @Y   $_@@@ H<krB@@ y   gMN  $/@|@@x @@@/   O$59!  HE@@ ij&'@@ I  @<xZNIDAT  @ @@'@Ϛ@@H^$"  @Y   $_@@@ H<krB@@ y   gMN  $/@|@@x @@@/   O$59!  HE@@ ij&'@@ I  @<x  @ @@'@Ϛ@@H^$"  @Y   $_@@@ H<krB@@ y   gMN  $/@|@@x @@@/   O$59!  HE@@ ij&'@@ I  @<x  @ @@'@Ϛ@@H^$"  @Y   $_@@@ H<krB@@ y   gMN  $/@|@@x @@@/   O$59!  HE@@ ij&'@@ I  @<x  @ @@'@Ϛ@@H^$"  @Y   $_@@@ H<krB@@ y   gMN  $/@|@@x @@@/   O$59!  HE@@ ij&'@@ I  @<x  @ @@'@Ϛ@@H^$"  @Y   $_@@@ H<krB@@ y   gMN  $/@|@@x @@@/   O$59!  HE@@ ij&'@@ I  @<x  @ @@'@Ϛ@@H^$"  @Y   $_@@@ H<krB@@ y   gMN  $/@|@@x @@@/   O$59!  HE@@ ij&'@@ I  @<x  @ @@'@Ϛ@@H^$"  @Y   $_@@@ H<krB@@ y   gMN  $/@|@@x @@@/   O$59!  HE@@ ij&'@@ I  @<x  @ @@'@Ϛ@@H^$"  @Y   $_@@@ H<krB@@ y   gMN  $/@|@@x @@@/   O$59!  HE@@ ij&'@@ I  @<x  @ @@'@Ϛ@@H^$"  @Y   $_@@@ H<krB@@ y   gMN  $/@|@@x @@@/   O$59!  HE@@ ij&'@@ I  @<x  @ @@'@Ϛ@@H^$"  @Y   $_@@@ H<krB@@ y   gMN  $/@|@@x @@@/   O$59!  HE@@ ij&'@@ I  @<x  @ @@'@Ϛ@@H^$"  @Y   $_@@@ H<krB@@ y   gMN  $/@|@@x @@@/   O$59!  HE@@ ij&'@@ I  @<x  @ @@'@Ϛ@@H^$"  @Y   $_@@@ H<krB@@ y   gMN  $/@|@@x @@@/   O$59!  HE@@ ij&'@@ I  @<x  @ @@'@Ϛ@@H^$"  @Y   $_@@@ H<krB@@ y   gMN  $/@|@@x @@@/   O$59!  HE@@ ij&'@@ I  @<x  @ @@'@Ϛ@@H^$"  @Y   $_@@@ H<krB@@ y   gMN  $/@|@@x @@@/   O$59!  HE@@ ij&'@@ I  @<x  @ @@'@Ϛ@@H^$"  @Y   $_@@@ H<krB@@ y   gMN  $/@|@@x @@@/   O$59!  HE@@ ij&'@@ I  @<x  @ @@'@Ϛ@@H^$"  @Y   $_@@@ H<krB@@ y   gMN  $/@|_4 @N@t֖ @  @  @{r @:Y["@ p/ @/ @@' @:kK @ @Hgm @ @- @ @ @ % @ @tD @^@_ @N@t֖ @  @  @{r @:Y["@ p/ @/ @@' @:kK @ @Hgm @ @- @ @ @ % @ @tD @^@_ @N@t֖ @  @  @{r @:Y["@ p/ @/ @@' @:kK @ @Hgm @ @- @ @ @ % @ @tD @^@_ @N@t֖ @  @  @{r @:Y["@ p/ @/ @@' @:kK @ @Hgm @ @- @ @ @ % @ @tD @^@_ @N@t֖ @  @  @{r @:Y["@ p/ @/ @@' @:kK @ @Hgm @ @- @ @ @ % @ @tD @^@_ @N@t֖ @  @  @{r @:Y["@ p/ @/ @@' @:kK @ @Hgm @ @- @ @ @ % @ @tD @^@_ @N@t֖ @  @  @{r @:Y["@ p/ @/ @@' @:kK @ @Hgm @ @- @ @ @ % @ @tD @^@_ @N@t֖ @  @  @{r @:Y["@ p/ @/ @@' @:kK @ @Hgm @ @- @ @ @ % @ @tD @^@_ @N@t֖ @  @  @{r @:Y["@ p/ @/ @@' @:kK @ @Hgm @ @- @ @ @ % @ @tD @^`IENDB`
14362\ No newline at end of file
 63Y<ߡ)t9Nyx+=Y"|@5-MS%@H8qR>׋infObN~N>! ?F?aĆ=5`5_M'Tq.
14464VJp8dasZHOLn}&wVQygE0 
14565HPEaP@<14r?#{2u$jtbDA{6=Q<("qCA*Oy\V;噹sM^|vWGyz?W15s-_̗)UKuZ17ߟl;=..s7VgjHUO^gc)1&v!.K `m)m$``/]?[xF QT*d4o(/lșmSqens}nk~8X<R5 vz)Ӗ9R,bRPCRR%eKUbvؙn9BħJeRR~NցoEx IDATx$EٷZXdPH H(Q
 66E$Q (9~d Q/ HP/fv<sNuu3Cuf%GB@@"L!@@@@@ D&#@@   @4hd   @@&@@@@2  @Q  L0w׻^xaHkeGɺm.U?T:^}5s˻7otߴ|ec&<N!k|0i>ӃϷ~z뭃Zv0 s<`SO=UO]\hPC u|7{P`{﹇zqC;Ԙ0v6i~ͦt<e(R̼rTFʖaܺ6d7餓}cn7v+}Yg
14667Wrw馛b-O/v3QӲw[kW쳿ly[o
14768 <-7bċ~<2N{FN?m7ܓ1|uˏ3s_|m3;#\sM~m~s=6l-9>/is&+Ktɿneu^ l0%|-2jS,0(؍8]z8:ovO|mv>N܄sq_{W
 69w61Ϧ}3u5e~/kHkvcr)ڪ'?If_6]epQȦf̢L?ϟyLmc}"WFgJv%og>^a ف[o6F=ܛɞ{ٲ˾4Ӌ_l_}q7=>G?l-,2z{^ [dEC=zTj,ಲtVwGgZ>V=Ö]?vf9wy{֥{vo:n.6y3;R;;3JLHs4-bUYgӾ e9PnUo*#C|;GUo_^|v}7|ͽO>7j(7$o+XeP'ٕA-:` {?N=u/NnW@&q2[`IͻN>mM#OfusaombmwN;~i|M[oIu tfk'Mal8 @zMfz)oWӻߦlS4[,X-[^6j ,Ph鴪g\W^xaʮe.~m{cP|ݱ/ͱws_mpM(~#GTߪUVYjrgox>7|/̿;Pwu#m].MUxǶ25[\Gw|U).;TG6hu֩ŮN8;#yܑGN'x[a+.s^z?}Qi}!r)wxNVAYmgSLᗛ{}~]w9Uge?>O߰ {5sw9ӸE*wt258M
 70FNz>iA3pK/=ҭeM.תp.+?=ۆQ/~1[oi륗q!}5IʹNx˂IiTz?; pvlY@M>8 7tӹ.^wu~}rPYRӛcꫯί
14871y"C9[n9;{2YV>})7x
149729vϱZ(OXUook݇vӏ֕W^ٳvȬj+3Z\nM."+kvX+3׏l]W]uUv2W5RbWRMIO8}tAήg}u_\~ ʾ;5KU/+gy]8^{9՗ sN;7,;~7ve^tKMO?tw7/~cx5諸^>gqJM74YvL4<~'iUWnZ>B~E59҉yY+
 73A{Mb(Χeczlͺφ֩Z'tRXplLxjue'qBϰ]URm]EєW~_ӲmgEU`Gʾ>h~Vϭ)`=>YKEfHΚ
150 fc^* 7Ϭ;m냐Y׿gWG2 .2_[*>+,xɴeMNl^.mk6ʚ~7Kz>&RkJێNx3s{7:7'n/ly^Tө{3j'!{衱z9g^N:l_ۧ-?`#J^uQx2ĔL%\2[j2·|vo}Ϩ[jxl#?Yr~-d}2-dAN |٪+eOU+bV.|o>_*~ӟf[[]VS5utV֞Zhlm-oj+{=,Zgl3zv=}e. @2 2>_, =jd?֙8AyRYU_ނ̂Tobg3_?s5WoDz7a̓ZXދ2,m6zjY2J}f[3y#HZkUNe.&ϲcb}*3[_uӴκ}gY5!-oA1O~7V}fQS9mMnjzgCj>﹐?Ϧ_OBϺ}۶ۢ+yUcZm-o=23uMj^)U -/LOKUZQWWfܩP( lHxdFo}ӟξɥ
 74@0tyo:^Ȯ?KV9l&
15175@>Le -{vQ`>l󚟤<O~mc/1LQw}w&tͺ;dvҿֶ:qת0/袽yǮn~;[OhTTTʗy֕Y͟ObV%?$UjTUV۔mK"$^'fW%lf~[ј'y6S\>RJj8I<~_gv(dO}.ɿ66byjdnr ?rOݜ/ZUuG}_OPҩ[vV?]N$u=3 ˅&1۾[\ݴ}g`^|v5o̬C~u<hr1cǣ˶nl*!Ol,>kMePI+;Uv,hϦ}iڶ.ҔWo<+7miq۴{uWUkzϨd`@Iv`h@?5ep;;G`vr~Mv'!UVyo).Q5
 76+oGͯoiG&S=X~a^?;ة[<.Hj2xcr7c7/W&ҹ]k
 77W|~]eu 5?EMrkFoz*ⱫoZKM4=0|jbMe6?<N?i١mʷ=iS?aNk[^+ϐtIz/]_oŹ'am'؀]\|6LOj&deY<n>ӒU尩˳V۠j質*!U=qZVYN,c
15278Y믿s`^3޺ϞUv}ýMRsU/~O<ǤnoruӚeu>`W|Hwo#='ɶw#@gF<{<ۥuۦچm>a6MejUdz씭gA%olڗm-Myܴ9m_]a[3쬳S'>
15379Z,JsvݪmW_}o_6o{jTK,`<Lj9U~ԭk=t[m/@EU[ceYe6&#O=uM;$5ٶvyJ7E=TfsV0wrvXu0
 80R;3>꟠b]_:Uig:[fS_Pm;lr++>RS[_PY_?ӥ
15481&[?<0y,+]~<<O}&fy\v)x0fy 1]}W4ʁ3<붯-W7iYI{Q++a|> ,w8^}fIcT`G1oyl* m֑?ueͺYi_nZWnmo]m-{3Zƞ2ŴٽAt#6.8EֆfU6Tꪫ|H?!}y£imMz~]yfwaw1fFѨ uxFl~}asϕP{5gOcg%xT|~
 82'ȤvYJF;7-q5p֧wԕ$6IA̎;_ŪZn~}*0Ie.\ {lՕϰl->WV]Q.E^o\n?g8@IY_0g~&,;W6e?l_G+oa,zc{ImW|ΚM{s|]0]>I
15583Q|g~޺;uMk~WbGO)8EGu3SOǨ.b]-lφIMe:dzYW?7KuߔWq_McZ\gu3S­!qw} nC~MA:F/}K:㡨RIFReHNHh`Zg*:ҔaoΞMf-Ĥ|=FHm<vzˆ_._8̷m2[w('h0cur
15684ݻ8Z02|Mf34})`F$mbMXc0Ux~p,z3DmudJѢ4MBttp<t5O}+T,
 85W<vuƘ戚O:CJ:PV>5o1ߺ2Iugb}.4>OrUjS5GFu&QC"V./u,dƬ7Pk7OL~Kk&㼓ʻ^Pvm\~_-CRJ`h?Cݜ/7ΩIns1GOWz#.:/'ZRS,n[nZ>lc2S$*Qܣ*ﲰlg&?=<ϗ<~kB>n_H6
15786RpswT6ggAkw^)lKӾ4m[miKۖOsM.Wuk]|th]ۇUhDQVٗ~%P
15887;:(iُngAfg>*z4r <mhUޣ~55RW\Xf_~:ƅcY[W-GiߴΘ^c;3놀4ۿ+~,k_RI'}:Chݤo:B70:?oXFȋtvdSOB/eFoV{3 /8
 88zu?2iU_ya;cP7ҕ-GxRMݸk}75UQ^+`Ih(k&G(s~ulfBfmG*5jʘʚʥE5
 899N٪*ee2D#(ٗ#
 90ثB~,|Hm
15991AoXW5R}azgNxϜ
16092[ NNJƉ??u_y2e򑕝V,`cgg`3ufkuwT-hͿqrXUsث<h705Ө9v)cٛ`O\,S۔|he!iU=M5O:Vlj~X><j$ N:ϲcm_mZnMϲE0>v$,}l/T;FMy xٶM;NXhF;!G+~dgOuS+;t,lڗm-ڏum[{ʣjǫS|X+U}F_C Ҥ;[EF #&Z5Y4-.ݙ< [\NP4jB#d=ٽO_-|-暱sWWG,[87GoZôIvf{y&buW=_e!_qʯXg~̆>r6_-OXx~-5i|0+?aC۔'7ȿ*Ϫߴٽwrgx,֩:YޮؔĺϞM}הxnoruӚe{Q[-:{uaLcT`Gm =6}6t]m* eRw<Nٺ|Ӿt]wMy4⺪^mo]m>UUۙ^҈6J
 93Y6z}^NXj`C-׀vߨ-~^_S~L+vFpqs8sóqU?9LXMH.ep'e[:o[#_-+fu2fxϬhe2|`S'&k^~m3ߋ.]Pk?|vFN|rIgxv;Fp=]ܩ%u;F̝@hW@XY?c#nd~;zPu 0
16194E5ꫯ>#P/np׫7wixv@6FhdcC<&Q  LMD@@X`
 95@[{Z7t~zPYP+鰐U7RٽFQv2パ2Džjw>^<;g0tΤtߋX`֩et(+>Su/k^6597Sm`ʨzz36<" 3oOoV^yev/zn
162967'6o&ޮYmutsu6E.
16397U IDATdN ۖ~/v)6{M8O}(9+{|D{Iva7N^hY?p6}o cՍtwyV7w\h|0A7[guܬӪ֣-wְp>~nNJ;pq7&]lQgj?tLe06`YL̼HV ?&osݜM:f[mUnH1c>L,C1UMgq.zhEu^;o~%U.孟 N>FVq9w}I$Nҍ$(̂b ]L@Qa>ƅvY=~ӟfvȿvk݇%`plMb%Dt0NJRI)&î[?mjrn:v
164981UqfWbV&z+ v*ţ*B;&|j ,0Y]dM6`jg.L,nalC[E̟IKyg1)*|]iyewwvWުuV)<&ؓ#G3s5|iewu`P_|N(]cN5T΂?MZ83׺awv3<UfiL+{LOSHd6$_MӊcM_~}9iZo{,0|ͽ~{ Ób9mrn{L{Lhy
16599&6_ 5+K]i܅^fe/BwgkUs1nUVqv6˿֏}p{oJ뮻{8ݏc{(p
166100nM7u{W\7^[x?DPwUWIP4$ޯ j|I[xä<z3yR,_4s=[|x\wu#t:.:_>vzns3y\O+Fi2?kNXWQovvOV9'pRS޿뮻|TMz *Yeئ,Wmk
 101>'ZoY*+eF*G?R7U lsY>ep@S˲yUUU>9_/sWJ~9j#wg>ZitMT1 IMT6cV*wHACc絍ݎ;9_V㎰ǪJgnx{SNqxtvi'Z\q.Ro-uϖ~tue^7\N5-ֱɒTW붩Ρ{l[Sc(~ʾ>kڗu[AB=!aTl_glMV[-vv/;{.Uk;}Sʬ@oz:Xؿۿ[/35\p̂~X'x7~5dY0)pX^v{챇FɜsΙY/D$`yl}<uw:i%̖Zjkͬ3v~ИYE׬*Fm[\YZFVAИ'*cVu]yNY뮻nU|;*|65ijcg3kcY_δ,h,MeYm՚kGtǶ7T2#Xgv/n5ob5msU>m ϧ~z6]q{ϫ7b_;י2_{EFL{NˬsYLgd%+z,HPf|V;KY{VdX@Yק?5YCcuy꒾gՔ-~ cOϮݨӯ_8̮zSfw]9&-P]KˇTYݾϮۢ}+# 0W@8jpWZ*A,}XE.JW]u[U a ^|SjJڲK8#jz=udzuۏWgkr=mbs=8y4l;b tC7zSS#ouyfx^b5poLF:[gUsV']uS.)GMw}z`Xvۤxt|t뤓NeJo NYSO{NҺfUr*~ٔǦܴ}@;W9SӠTUˌ4ʉi%}֚*?3p&]Ag • diSLLB등UnT]*&֣|Ҽ&fVymו^}z덓Gx!\hWgIꀯ|과ljpbj*Uơ{]iX~(~ʾ>kڗu[
 102N<" i&ԇjң!&UR+]V-%]U&_ + ~ZS?RGZmCs/5qH#2rqW{p5m~tO*uyw,?rfJzΨr,tMW_
167103D6jR+.y':詒>iW,+mӝ /n5
 104eU0^aqeiTk.@JjRVY+e۠IB|`^)/:S1u@c6r_xOM^p~ejFfxpv&{-wш]_#kSX>v%؟(Σ\6l>u7xC_}h@oGS^ykZGʧw[V~=2'5SoY15mJmScc(~>kڗe[
 105N<" ,TA uԏ6YMi
 106Im> Tb*:G@w(֭2eImY;ڕ~~הGXFmg~mΎ[']:蠃|qk
 107ke?O=TgV*K][B|ҴUU{j~bX̫i4TUy?W>k[ueFmu5@ASMm H>ʒ9$Q/~> M#롲O!8/ y\}Ϫt2cſ>U`˳S斯,cy{L~teҦj6
168108j_GӾt]wMy巋 0CzD
 109\N>d?nYj߄'_YQu M|_ +CTpFVev6>oUt\4I<rΌuyvzRչ:*Z.´.f;jT^aCfB?製YTVWt5ŰO=+\D~J]ʾy>#ĬmS|`W',I''d&ij*o}|s(52~V]}k鳧!ڦ|o5TӲp6G>/
 110`4=W6\-N˿.)׮S?Y'Vt6iW1'~+{eluT=-:^zLۣ׃*[W?Muu7Uo#)їK,6]o~uvT]U? U8"vꗠ $UjE*
169111uVIgwU9T
 112nw5ѝhM5
 113Fj{Weaz[UQ_<4o~[O IVSRYQ,g :k VBմ!?=Beß*xuҘ_&<o*o쟖͗u]`rҟFQ&%Ueq**C!)U5֕Sj*Q +?l؞XWFC>ms]>ulujM:ʈFl[uVͳԾ<$T'_3
 114e!#oE3ϒ45 )~QF~syWy_c
 115IeaZ;:GmtCQUIE:{$G͛_鳥m﷎^}}MTW붩CJ޹1
170116.]aXk2|6˶qSyЕP>C,`Vɚ},LvtY6h#!ٰ^S袋fGuTm”ُ_<Q#XEF
171 _ە ?ғH]hf3lbPfCu0B~0ڍ:']r%
172117G;c^hȬDvgY+[GqK.km=6Q#0Yeڙ{ne?5s#5Y7?RF(J^f#Xuy~+[Tٿbѱ(&
173118k˗]q-#kG?{hlߏ(fM,, U fMenvj=(Ue_5u SP}V4i)(E}F`ʏΦ4"({mQ4nqlj,=]i_- }64ʅTiz hy, YxggQyEeКe{GxQS]^>Kus)8+tGs7ǿMn:k۴@gK
174119vܗ] vjP~{dSU:M^)rLvi|ﳦ}:]Eєe36@`Fh};~S|Lklv%Ýt&Ɔ#謠t)5Y&ZFu9CTGV|lE:Yp&[g˚Te?lPfӱѕ22TLwM][qm5Uԥ[+e@]AՇU!.h0TU2y9Y=ls
 120mQw[tUvR2~ʳʫ{KPWR?y{Lhۦ~>[Uyt-49t^zL=CU7Ǽi_nd1G+OC%X V@A~*ah]껓OA'jcn~YM3VOeǃf@ȠXS'nG= ꛠ$YgէJ})7IA5}qc:5Cz/v  0\ %zH*9F|ʤTYV݄sz 嶲.@@cÖ!  0 tw{v@@
 121D&3@@ I  D Mf  -@g@@*@@@H[$#  U$*7!  HǟG@@ HTn2C@@ m?{  @Td  @ i@@ Q @@@>=  Q@r  i }/Ro_|'  @9}sO#
175122׿~N;>nWwY%BYLp  Ȑ
 123_}U
1761246}_t?w[x5\i]f߷@:(w'o_#_W_+:<@2 )뾰]  _$y|IO8==ڽ^ۭ暾ӟ:U ?O^Oqƿsi}/}M7tnw;_+ҸC=ԝ{O7ˌo3SǷ}a{@@o֯{G?~W5A,SO9smUe|iu#Gv>)߇>!"n_dUVq{챇{B ->񏻩]yng,[{wq_>97 3ZLõmo3-⏳ۦmM9nn3<lY
 125+]ʢOW9 # L\}]/fi&wL\*{fK,̀<dM~;DZvm̻G+zK_|_v'tݒK.Y:mBfU'GG&vyg|]~NAHY:#݈#zw{
177126wYkZ6mYg}VZi%/Z*~E]4* G@ @Wmٲc=uZfgPoZϬҀ5g ^ ٲ.Y՛bMo2]|ŽV\q3Zut*?F3_W{J'Y;oVw9zYU~fyWjjW%Y}_]馛ʍ]q<}6(s=,6mYTٲo̙T\o18SxG'@&BNqL6dPDkjoxfF',/VomP"IM[l1DouYO:Ԕl]v /{vvm:fz;3=h9'曯8g7?x] .,py?õR28 ?,:Xv1WW^s=avm1*ftꌯm mcX~h;?p?JʓʟEղ>TS7|-~--4eiU\VoftJ:믿qbRPT8  0
 127
 128@쌬SӐc97Pyڸ߹MWeJ7-կ~}ѽi'jz95TIHA<[gu ,袋|/h(;9KQb:s;/ ,09^?Ӿ;=ŝwDQL^xQϯ~+瑱c?Cvau*x
 129N/Ӕ<裾mWHRjZc&:;ѹԿF響Rմ-:_|<Tju]}>>3*
 130dpgi@EoVߩ*S?яO~c_i{ M͑~R6$,^r%NCZc5K,U/g^zS@ #°[:u@bU<B:{ꪫ:Ut6YPYS[]PS˫R{]w
178131X^/Tqp:
 132΢
 133WJ}HWB UZw
179134:7+ oT|aQT)U
 135~0TeZI;ݯ̸Uf](J
 136ʒ"_WOqI'k}:!o˒_˷)?yvmBuCWT򢊶I4L4JUj{E
 1371P®UߖĖOTt%OeF8蠃|[]vekQ@`M#)hQ\#)[]>lt&ԧew)X
 138Z@@ DK-WQ6Con>Mt:uVPЯG Mk饗Jy5r*h:8/+<+)L1u,GAo/SII*[ſkN IDATVXyRe%5=w_[m|%VsTQ?hq? ]Pб
 139+/5[S@o}k@s:mkOWtUAguE@͞i$]R Sh]JSj{Ey`>)Vjf ,?۝鹚)P)VG.
 1404–6voYwMeQ't#|rL꤁N=Tߩ=@h @Tн#TIp#_PeWI?Lp27
 141bʒST{o0|3]Aɯ7̣G
 142*1ؤ{R(*ku2?^u=+:N+.]ER *ȺMuI}TW!5T*ꃚ~1Vu$
180143fl]r|Eqq}j>zUW]??q׺e{79,|X]}+j~4ko
1811447d}oT}5 L<vU:j+lE
 145]Й[EHqkWQm31=5Q)XQ6Ig'@+)/59SR
 146F"]<-V'iUr5pFcb~"3>&J
 147 C*] Wl_*._ܖF5R3BUWʖ
182148銟j:NODQ)[]j[eQW]*K+R_Ne L:BWgӶR)ѕkI͚,,2v
 149B4:\s5Վ_WdTӺRzռjs=})\8}JEll۵֯6j
 150cӫW7S*Uͧn]ϼWe߲U:]W|6SumK~zs)٪|ՔOMBc*
 151~+?j
 1525j([]jeQAYq7
 153"t5 :  0q
 1544 (@Dm5RU$߇*;\ʈAi=SGteIjuqsP*;Sֺ&QptWs=o{3J
 155$T : L5Βk|35/ o:
 156EJU '}# oѥteBSJѾt5|aeߏ,P&Na]Uu+LٶW=]mS.a9?US'x7Ĩ9pE-,WA \+TՄP[oYwueW j*{w Ȧ]Ԉ@v_͐4DILtYW=T(Bgu_*bF YWDy\D(K*Qs/%uh-KGuU˒*m*~
183157Iۯο,Ikm)[8鬶!o5Q5SSwzPOI8aU %Ue6`E@8F(jRm P:a댷F$SeTN!ǫl[:ý>TBԕSfvmcʷk=mʏ|!:V
 158D)[]>C]YԽw4pHk몡L')t"*b/a]<" #0‚cȆQ4S9*Px9nL,T}B$yow~(]Q..ⴺת\+jtQ@,
184159MίxՑxsa4[],Yh2Vݼ Hu2r1J*NLHmW6z$>HO L}5jB>O=@@@`h>-V+M$  D$Ъݻm@@^ dX#  t`ua~tH@HYd=r'N[?n/̝viNw^}{7pۖSy17   1ҍn/7kj&o 'oA28:<@"6eox6 @>ptۀ'|=NGvn
 160tdvk,kFA]O~5M;7ElZ6ɻ<_җuWy/+4.z衇s=Or72?.eoB7@ {y]h%'ٟz)֫?N[z'x4"a>=*n=po[h?qW+8Y;=;z?
1851616-⏳ۦm8M9nn3<,
186162v.eOeTws隆
187163i^  D#_nfr\pDR#j2 Gql~DpC:}ƼnMn:o?j(_c>}w_/ٝtIvK.d~ͪXO2IM;˝tG#Ffִ~mH۲>?߭J~_\Uq<.h2%U @&4le{l_(.lΠ+&;۟Yo_k[o5|*d.lfWo5Bv[q3 ~V{b3}>)o2+͙eހ*!>|s=CoL5/mzŮlIiWn&ǪrcW&x_y6ʮ:gcsy-K.h[T,m''2 2 2bq#(N5 LN7Нuv([ީY'> 7,/| ߀q}ԬHmCRӠ[7IfuVgcq5%e]avN6zkw;NLlzqo|}y}O+_7]Ѿ/>~vBRUFg}Ygb n:30[y=fǭj]R>s9mM*CRӡM7{馕~aGmGRyR}ZXڧj*o_ޏe5je/s7z;g]+&
188164O% y @:5
1891659c|]
190166|tUTq_WGݛ뭷Ss?NT3ϸuY'??_zN.WɋF3C˩m-(Z3*S ,8zO
 167|yU=;}iꩧv^xQϯ~+瑱c?CvaeIt<'UiOp}Q_ֶ*i$)5-ұU\_ԴLKԿHj/~*v5>S_A2834U墷PF'\t)G'?Ia/Uδ=jHW\qEobe{{R,{a%\Y?5X-)]U
 168orv饗:5$! @:* [nST-VE SJgU
 1695uU U8*wu׀Bw
191170g3p,*:ԇy5-PUk_){7x|y7*a
 171xH*Zk=*H~{Di%-t:S}W%ZWv4@%]ER駟㤓N:!o˒_˷)?yvmBuCWT򢊶A4L4JUj{E
 1721P®UߖĖOTt%OeF8蠃|[]vekQ@`M#)hQ\#)[]>lt] 8$]!} \0tENޑ@@ DK-WQ6Con>Mt:uVPЯG Mk饗Jy5r*h:'4 /RʳB
 173SL_BMplФL*[ſVXyRe%5=w_QɿV[Wj\G?ޟ]Wgq? ]Pб
 174+/5[S@o}k@s|65姫O3" \L 폒FRRմ-rIMw7W3;dPe?MմLeuuDASN97
192175 j=rQit3~Rˇ+{G't#|rL꤁N=Tߩ=@h @Tн#TIp#_PeWI?Lp27
 176bʒST{o0|3]Aɯ7̣G
 177*1ؤ{R(RӦlyJ<֭J
 178TUYW4)ԇA~5R3NU2ʼ>*!)UQ¼]lr<EѴl{j>zUW]??~e}^3[]>lpSS+ŤQ_K}{n${껠<@@`h @
 179 yWWԏ _a+R芅O.E_̽*X+!7Q[錚h%4M:I:3>
 180t^Iyə*S0 H_oA~nͣNӪ*+pFcb~"3>&J
 181 C*] Wl_*._ܖF5R3BUWʖ
193182銟:NODQDQpoYwm-=}^u5,骦J/~ N;{  0 4 :
 183]^NjJ`DWBԮ=$5kRʨ+8s58wV;~]QNKU󪙋w=p*USzlo*Z)*NYt)LWsgòy,Owʖd;XwͫxS-UUdUhWS>5
 184I#(o)\פǣoYwmϗ=jflj*}PԌ34Z7# )
 185UKMzTԟR~rʆ*#jOX%UթZgկAl:TO[RDW_;=ܾ*)P0l0ּ:KaRtԼ$l{ӫMgՁ[h5e)i9|#*Lhy D|aeߏ,P&i>,xQ-UeuEWTKXv9OT'&o1jΥ5\Q ˕=j5
 186u5!T[]>ls]+k~%UB}fujt!! /0i5":]W3$G5QR3mUU,4YgWFQ~uBu=ʒ@h
 187BKIZQG#O8*m*~
194188Iۯο,Ikm)jjVS5Q35~fjoj1)B3*$|RXjN cjjj.=vgY~ꄭ3LQ{;<m { P ePWBtLP瓚mf~UB}-tMRQ7DJv]S(~Rˇ}+{Iu
195189B}]5T$NX_eRWe5G@xFX0vٚ0JFx*6RJ#Ǎi*TOH3mnYݱ YVZk=Uv^[k`55pIYq:v~u+ֶ V^߲UeOMB=@@@ KTݏAWTq߇`B'mE)@ًM^ L|}5jB>O|=B@@`dPMts4uV  |p@v
 190Q;L@@_ d)@@&&XMLG@@x @@@/   O$59!  HE@@ ij&'@@ I  @<x  @ @@'@Ϛ@@H^$"  @Y   $_@@@ H<krB@@ y   gMN  $/@|@@x @@@/   O$59!  HE@@ ij&'@@ I  @<x  @ @@'@Ϛ@@H^$"  @Y   $_@@@ H<krB@@ y   gMN  $/@|@@x @@@/   O$59!  HE@@ ij&'@@ I  @<x  @ @@'@Ϛ@@H^$"  @Y   $_@@@ H<krB@@ y   gMN  $/@|@@x @@@/   O$59!  HE@@ ij&'@@ I  @<x  @ @@'@Ϛ@@H^$"  @Y   $_@@@ H<krB@@ y   gMN  $/@|@@x @@@/   O$59!  HE@@ ij&'@@ I  @<x  @ @@'@Ϛ@@H^$"  @Y   $_@@@ H<krB@@ y   gMN  $/@|@@x @@@/   O$59!  HE@@ ij&'@@ I  @<x  @ @@'@Ϛ@@H^$"  @Y   $_@@@ H<krB@@ y  EIDAT gMN  $/@|@@x @@@/   O$59!  HE@@ ij&'@@ I  @<x  @ @@'@Ϛ@@H^$"  @Y   $_@@@ H<krB@@ y   gMN  $/@|@@x @@@/   O$59!  HE@@ ij&'@@ I  @<x  @ @@'@Ϛ@@H^$"  @Y   $_@@@ H<krB@@ y   gMN  $/@|@@x @@@/   O$59!  HE@@ ij&'@@ I  @<x  @ @@'@Ϛ@@H^$"  @Y   $_@@@ H<krB@@ y   gMN  $/@|@@x @@@/   O$59!  HE@@ ij&'@@ I  @<x  @ @@'@Ϛ@@H^$"  @Y   $_@@@ H<krB@@ y   gMN  $/@|@@x @@@/   O$59!  HE@@ ij&'@@ I  @<x  @ @@'@Ϛ@@H^$"  @Y   $_@@@ H<krB@@ y   gMN  $/@|@@x @@@/   O$59!  HE@@ ij&'@@ I  @<x  @ @@'@Ϛ@@H^$"  @Y   $_@@@ H<krB@@ y   gMN  $/@|@@x @@@/   O$59!  HE@@ ij&'@@ I  @<x  @ @@'@Ϛ@@H^$"  @Y   $_@@@ H<krB@@ y   gMN  $/@|@@x @@@/   O$59!  HE@@ ij&'@@ I  @<x  @ @@'@Ϛ@@H^$"  @Y   $_@@@ H<krB@@ y   gMN  $/@|@@x @@@/   O$59!  HE@@ ij&'@@ I  @<x  @ @@'@Ϛ@@H^$"  @Y   $_@@@ H<krB@@ y   gMN  $/@|@@x @@@/   O$59!  HE@@ ij&'@@ I  @<x  @ @@'@Ϛ@@H^$"  @Y   $_@@@ H<krB@@ y   gMN  $/@|@@x @@@/   O$59!  HE@@ ij&'@@ I  @<x  @ @@'@Ϛ@@H^$"  @Y   $_@@@ H<krB@@ y   gMN  $/@|@@x @@@/   O$59!  HE@@ ij&'@@ I  @<x  @ @@'@Ϛ@@H^$"  @Y   $_@@@ H<krB@@ y   gMN  $/@|@@x @@@/   O$59!  HE@@ ij&'@@ I  @<x  @ @@'@Ϛ@@H^$"  @Y   $_@@@ H<krB@@ y   gMN  $/@|@@x @@@/   O$59!  HE@@ ij&'@@ I  @<x  @ @@'@Ϛ@@H^$"  @Y   $_@@@ H<krB@@ y   gMN  $/@|@@x @@@/   O$59!  HE@@ ij&'@@ I  @<x  @ @@'@Ϛ@@H^$"  @Y   $_@@@ H<krB@@ ya׸C4<#@Hgm @ @- @ @ @ % @ @tD @^@_ @N@t֖ @  @  @{r @:Y["@ p/ @/ @@' @:kK @ @Hgm @ @- @ @ @ % @ @tD @^@_ @N@t֖ @  @  @{r @:Y["@ p/ @/ @@' @:kK @ @Hgm @ @- @ @ @ % @ @tD @^@_ @N@t֖ @  @  @{r @:Y["@ p/ @/ @@' @:kK @ @Hgm @ @- @ @ @ % @ @tD @^@_ @N@t֖ @  @  @{r @:Y["@ p/ @/ @@' @:kK @ @Hgm @ @- @ @ @ % @ @tD @^@_ @N@t֖ @  @  @{r @:Y["@ p/ @/ @@' @:kK @ @Hgm @ @- @ @ @ % @ @tD @^@_ @N@t֖ @  @  @{r @:Y["@ p/ @/ @@' @:kK @ @Hgm @ @- @ @ @ % @ @tD @^@_ @N@t֖ @  @  @{r @:Y["@ p/ @/ @@' @:kK @ @Hgm @ @- @ @ @ % @ @tD @^@_ @N@t֖ @  @  @{r @:Y["@ p/ @/ @@' @:kK @ @Hgm @ @- @ @ @ % @ @tD @^@_ @N@t֖ @  @  @{r @:Y["@ p/ @/ @@' @:kK @ @Hgm @ @- @ @ @ % @ @tD @^@_ @N@t֖ @  @  @{r @:Y["@ p/ @/ @@' @:kK @ @=,:8IENDB`
196191\ No newline at end of file
73924

LayoutTests/platform/mac/fast/text/international/thai-baht-space-expected.txt

@@layer at (0,0) size 800x600
1212 RenderText {#text} at (121,0) size 779x36
1313 text run at (121,0) width 658: ". Characters belonging to 'Common' script followed / preceeded by a space should be rendered correctly."
1414 text run at (0,18) width 576: "Two lines below have 4 Thai currency signs (U+0E3F) and all of them should be rendered."
15  RenderBlock {P} at (0,52) size 784x36
16  RenderText {#text} at (0,0) size 285x18
17  text run at (0,0) width 285: "abc \x{E25}\x{E07}\x{E17}\x{E38}\x{E19}4000\x{E3F} \x{E23}\x{E31}\x{E1A}\x{E1B}\x{E23}\x{E30}\x{E01}\x{E31}\x{E19}\x{E23}\x{E32}\x{E22}\x{E44}\x{E14}\x{E49} 50000\x{E3F}/M"
18  RenderBR {BR} at (285,14) size 0x0
19  RenderText {#text} at (0,18) size 285x18
20  text run at (0,18) width 285: "abc \x{E25}\x{E07}\x{E17}\x{E38}\x{E19}4000 \x{E3F}\x{E23}\x{E31}\x{E1A}\x{E1B}\x{E23}\x{E30}\x{E01}\x{E31}\x{E19}\x{E23}\x{E32}\x{E22}\x{E44}\x{E14}\x{E49} 50000\x{E3F}/M"
 15 RenderBlock {P} at (0,52) size 784x44
 16 RenderText {#text} at (0,3) size 285x18
 17 text run at (0,3) width 285: "abc \x{E25}\x{E07}\x{E17}\x{E38}\x{E19}4000\x{E3F} \x{E23}\x{E31}\x{E1A}\x{E1B}\x{E23}\x{E30}\x{E01}\x{E31}\x{E19}\x{E23}\x{E32}\x{E22}\x{E44}\x{E14}\x{E49} 50000\x{E3F}/M"
 18 RenderBR {BR} at (285,17) size 0x0
 19 RenderText {#text} at (0,25) size 285x18
 20 text run at (0,25) width 285: "abc \x{E25}\x{E07}\x{E17}\x{E38}\x{E19}4000 \x{E3F}\x{E23}\x{E31}\x{E1A}\x{E1B}\x{E23}\x{E30}\x{E01}\x{E31}\x{E19}\x{E23}\x{E32}\x{E22}\x{E44}\x{E14}\x{E49} 50000\x{E3F}/M"
73924

LayoutTests/platform/mac/fast/text/international/thai-line-breaks-expected.checksum

1 8b2cbba0d1b61038f2af62e67b16a8b6
21\ No newline at end of file
 24ed1f182350029f9fac9f14de1f0cc1d
33\ No newline at end of file
73924

LayoutTests/platform/mac/fast/text/international/thai-line-breaks-expected.txt

1 layer at (0,0) size 785x24126
 1layer at (0,0) size 785x29422
22 RenderView at (0,0) size 785x600
33layer at (0,0) size 785x600
44 RenderBlock {HTML} at (0,0) size 785x600

@@layer at (0,0) size 785x600
99 text run at (0,18) width 760: "The original source of this text was ICU, and the test program said \"by it's very nature, Thai word breaking is not exact\","
1010 text run at (0,36) width 759: "so the columns don't match exactly. In a future version we might decide to tweak the right column to match our expected"
1111 text run at (0,54) width 59: "behavior."
12 layer at (235,96) size 1x22824
13  RenderBlock (positioned) {DIV} at (235,96) size 1x22824
14  RenderText {#text} at (0,0) size 83x22824
15  text run at (0,0) width 20: "\x{E1A}\x{E17}"
16  text run at (0,18) width 49: "\x{E17}\x{E35}\x{E48}\x{E51}\x{E1E}\x{E32}\x{E22}\x{E38}"
17  text run at (0,36) width 52: "\x{E44}\x{E0B}\x{E42}\x{E04}\x{E25}\x{E19}"
18  text run at (0,54) width 17: "\x{E42}\x{E14}"
19  text run at (0,72) width 24: "\x{E42}\x{E23}\x{E18}\x{E35}"
20  text run at (0,90) width 37: "\x{E2D}\x{E32}\x{E28}\x{E31}\x{E22}"
21  text run at (0,108) width 19: "\x{E2D}\x{E22}\x{E39}\x{E48}"
22  text run at (0,126) width 63: "\x{E17}\x{E48}\x{E32}\x{E21}\x{E01}\x{E25}\x{E32}\x{E07}"
23  text run at (0,144) width 48: "\x{E17}\x{E38}\x{E48}\x{E07}\x{E43}\x{E2B}\x{E0D}\x{E48}"
24  text run at (0,162) width 17: "\x{E43}\x{E19}"
25  text run at (0,180) width 48: "\x{E41}\x{E04}\x{E19}\x{E0B}\x{E31}\x{E2A}"
26  text run at (0,198) width 20: "\x{E01}\x{E31}\x{E1A}"
27  text run at (0,216) width 17: "\x{E25}\x{E38}\x{E07}"
28  text run at (0,234) width 14: "\x{E40}\x{E2E}"
29  text run at (0,252) width 18: "\x{E19}\x{E23}\x{E35}"
30  text run at (0,270) width 40: "\x{E0A}\x{E32}\x{E27}\x{E44}\x{E23}\x{E48}"
31  text run at (0,288) width 25: "\x{E41}\x{E25}\x{E30}"
32  text run at (0,306) width 18: "\x{E1B}\x{E49}\x{E32}"
33  text run at (0,324) width 24: "\x{E40}\x{E2D}\x{E47}\x{E21}"
34  text run at (0,342) width 45: "\x{E20}\x{E23}\x{E23}\x{E22}\x{E32}"
35  text run at (0,360) width 40: "\x{E0A}\x{E32}\x{E27}\x{E44}\x{E23}\x{E48}"
36  text run at (0,378) width 28: "\x{E1A}\x{E49}\x{E32}\x{E19}"
37  text run at (0,396) width 26: "\x{E02}\x{E2D}\x{E07}"
38  text run at (0,414) width 29: "\x{E1E}\x{E27}\x{E01}"
39  text run at (0,432) width 22: "\x{E40}\x{E02}\x{E32}"
40  text run at (0,450) width 27: "\x{E2B}\x{E25}\x{E31}\x{E07}"
41  text run at (0,468) width 24: "\x{E40}\x{E25}\x{E47}\x{E01}"
42  text run at (0,486) width 39: "\x{E40}\x{E1E}\x{E23}\x{E32}\x{E30}"
43  text run at (0,504) width 17: "\x{E44}\x{E21}\x{E49}"
44  text run at (0,522) width 34: "\x{E2A}\x{E23}\x{E49}\x{E32}\x{E07}"
45  text run at (0,540) width 28: "\x{E1A}\x{E49}\x{E32}\x{E19}"
46  text run at (0,558) width 27: "\x{E15}\x{E49}\x{E2D}\x{E07}"
47  text run at (0,576) width 19: "\x{E02}\x{E19}"
48  text run at (0,594) width 18: "\x{E21}\x{E32}"
49  text run at (0,612) width 28: "\x{E14}\x{E49}\x{E27}\x{E22}"
50  text run at (0,630) width 43: "\x{E40}\x{E01}\x{E27}\x{E35}\x{E22}\x{E19}"
51  text run at (0,648) width 25: "\x{E40}\x{E1B}\x{E47}\x{E19}"
52  text run at (0,666) width 32: "\x{E23}\x{E30}\x{E22}\x{E30}"
53  text run at (0,684) width 26: "\x{E17}\x{E32}\x{E07}"
54  text run at (0,702) width 37: "\x{E2B}\x{E25}\x{E32}\x{E22}"
55  text run at (0,720) width 26: "\x{E44}\x{E21}\x{E25}\x{E4C}"
56  text run at (0,738) width 28: "\x{E1A}\x{E49}\x{E32}\x{E19}"
57  text run at (0,756) width 10: "\x{E21}\x{E35}"
58  text run at (0,774) width 10: "\x{E2A}\x{E35}\x{E48}"
59  text run at (0,792) width 18: "\x{E1D}\x{E32}"
60  text run at (0,810) width 10: "\x{E21}\x{E35}"
61  text run at (0,828) width 21: "\x{E1E}\x{E37}\x{E49}\x{E19}"
62  text run at (0,846) width 20: "\x{E01}\x{E31}\x{E1A}"
63  text run at (0,864) width 45: "\x{E2B}\x{E25}\x{E31}\x{E07}\x{E04}\x{E32}"
64  text run at (0,882) width 26: "\x{E23}\x{E27}\x{E21}"
65  text run at (0,900) width 18: "\x{E17}\x{E33}"
66  text run at (0,918) width 25: "\x{E40}\x{E1B}\x{E47}\x{E19}"
67  text run at (0,936) width 27: "\x{E2B}\x{E49}\x{E2D}\x{E07}"
68  text run at (0,954) width 33: "\x{E40}\x{E14}\x{E35}\x{E22}\x{E27}"
69  text run at (0,972) width 17: "\x{E43}\x{E19}"
70  text run at (0,990) width 27: "\x{E2B}\x{E49}\x{E2D}\x{E07}"
71  text run at (0,1008) width 10: "\x{E21}\x{E35}"
72  text run at (0,1026) width 18: "\x{E17}\x{E31}\x{E49}\x{E07}"
73  text run at (0,1044) width 23: "\x{E40}\x{E15}\x{E32}"
74  text run at (0,1062) width 18: "\x{E2B}\x{E38}\x{E07}"
75  text run at (0,1080) width 20: "\x{E15}\x{E49}\x{E21}"
76  text run at (0,1098) width 10: "\x{E17}\x{E35}\x{E48}"
77  text run at (0,1116) width 30: "\x{E2A}\x{E19}\x{E34}\x{E21}"
78  text run at (0,1134) width 10: "\x{E14}\x{E39}"
79  text run at (0,1152) width 19: "\x{E02}\x{E36}\x{E49}\x{E19}"
80  text run at (0,1170) width 30: "\x{E40}\x{E25}\x{E2D}\x{E30}"
81  text run at (0,1188) width 10: "\x{E21}\x{E35}"
82  text run at (0,1206) width 10: "\x{E15}\x{E39}\x{E49}"
83  text run at (0,1224) width 17: "\x{E43}\x{E2A}\x{E48}"
84  text run at (0,1242) width 28: "\x{E16}\x{E49}\x{E27}\x{E22}"
85  text run at (0,1260) width 27: "\x{E0A}\x{E32}\x{E21}"
86  text run at (0,1278) width 24: "\x{E42}\x{E15}\x{E4A}\x{E30}"
87  text run at (0,1296) width 32: "\x{E40}\x{E01}\x{E49}\x{E32}\x{E2D}\x{E35}\x{E49}"
88  text run at (0,1314) width 28: "\x{E2A}\x{E32}\x{E21}"
89  text run at (0,1332) width 27: "\x{E2B}\x{E23}\x{E37}\x{E2D}"
90  text run at (0,1350) width 10: "\x{E2A}\x{E35}\x{E48}"
91  text run at (0,1368) width 18: "\x{E15}\x{E31}\x{E27}"
92  text run at (0,1386) width 26: "\x{E41}\x{E25}\x{E49}\x{E27}"
93  text run at (0,1404) width 10: "\x{E01}\x{E47}"
94  text run at (0,1422) width 10: "\x{E21}\x{E35}"
95  text run at (0,1440) width 33: "\x{E40}\x{E15}\x{E35}\x{E22}\x{E07}"
96  text run at (0,1458) width 29: "\x{E19}\x{E2D}\x{E19}"
97  text run at (0,1476) width 17: "\x{E25}\x{E38}\x{E07}"
98  text run at (0,1494) width 14: "\x{E40}\x{E2E}"
99  text run at (0,1512) width 18: "\x{E19}\x{E23}\x{E35}"
100  text run at (0,1530) width 20: "\x{E01}\x{E31}\x{E1A}"
101  text run at (0,1548) width 18: "\x{E1B}\x{E49}\x{E32}"
102  text run at (0,1566) width 24: "\x{E40}\x{E2D}\x{E47}\x{E21}"
103  text run at (0,1584) width 10: "\x{E21}\x{E35}"
104  text run at (0,1602) width 33: "\x{E40}\x{E15}\x{E35}\x{E22}\x{E07}"
105  text run at (0,1620) width 29: "\x{E19}\x{E2D}\x{E19}"
106  text run at (0,1638) width 30: "\x{E43}\x{E2B}\x{E0D}\x{E48}"
107  text run at (0,1656) width 19: "\x{E2D}\x{E22}\x{E39}\x{E48}"
108  text run at (0,1674) width 10: "\x{E17}\x{E35}\x{E48}"
109  text run at (0,1692) width 20: "\x{E21}\x{E38}\x{E21}"
110  text run at (0,1710) width 28: "\x{E2B}\x{E19}\x{E36}\x{E48}\x{E07}"
111  text run at (0,1728) width 28: "\x{E2A}\x{E48}\x{E27}\x{E19}"
112  text run at (0,1746) width 17: "\x{E42}\x{E14}"
113  text run at (0,1764) width 15: "\x{E42}\x{E23}"
114  text run at (0,1782) width 19: "\x{E18}\x{E35}\x{E21}\x{E35}"
115  text run at (0,1800) width 33: "\x{E40}\x{E15}\x{E35}\x{E22}\x{E07}"
116  text run at (0,1818) width 24: "\x{E40}\x{E25}\x{E47}\x{E01}"
117  text run at (0,1836) width 19: "\x{E2D}\x{E35}\x{E01}"
118  text run at (0,1854) width 10: "\x{E17}\x{E35}\x{E48}"
119  text run at (0,1872) width 20: "\x{E21}\x{E38}\x{E21}"
120  text run at (0,1890) width 28: "\x{E2B}\x{E19}\x{E36}\x{E48}\x{E07}"
121  text run at (0,1908) width 27: "\x{E44}\x{E21}\x{E48}\x{E21}\x{E35}"
122  text run at (0,1926) width 27: "\x{E2B}\x{E49}\x{E2D}\x{E07}"
123  text run at (0,1944) width 17: "\x{E43}\x{E15}\x{E49}"
124  text run at (0,1962) width 44: "\x{E40}\x{E1E}\x{E14}\x{E32}\x{E19}"
125  text run at (0,1980) width 24: "\x{E40}\x{E25}\x{E22}"
126  text run at (0,1998) width 27: "\x{E2B}\x{E49}\x{E2D}\x{E07}"
127  text run at (0,2016) width 37: "\x{E43}\x{E15}\x{E49}\x{E16}\x{E38}\x{E19}"
128  text run at (0,2034) width 10: "\x{E01}\x{E47}"
129  text run at (0,2052) width 27: "\x{E44}\x{E21}\x{E48}\x{E21}\x{E35}"
130  text run at (0,2070) width 23: "\x{E40}\x{E27}\x{E49}\x{E19}"
131  text run at (0,2088) width 19: "\x{E41}\x{E15}\x{E48}"
132  text run at (0,2106) width 10: "\x{E21}\x{E35}"
133  text run at (0,2124) width 18: "\x{E42}\x{E1E}"
134  text run at (0,2142) width 16: "\x{E23}\x{E07}"
135  text run at (0,2160) width 34: "\x{E40}\x{E25}\x{E47}\x{E01}\x{E46}"
136  text run at (0,2178) width 10: "\x{E17}\x{E35}\x{E48}"
137  text run at (0,2196) width 19: "\x{E02}\x{E38}\x{E14}"
138  text run at (0,2214) width 17: "\x{E44}\x{E1B}"
139  text run at (0,2232) width 17: "\x{E43}\x{E15}\x{E49}"
140  text run at (0,2250) width 21: "\x{E1E}\x{E37}\x{E49}\x{E19}"
141  text run at (0,2268) width 33: "\x{E40}\x{E23}\x{E35}\x{E22}\x{E01}"
142  text run at (0,2286) width 16: "\x{E27}\x{E48}\x{E32}"
143  text run at (0,2304) width 41: "\"\x{E42}\x{E1E}\x{E23}\x{E07}"
144  text run at (0,2322) width 59: "\x{E44}\x{E0B}\x{E42}\x{E04}\x{E25}\x{E19}\""
145  text run at (0,2340) width 25: "\x{E40}\x{E1B}\x{E47}\x{E19}"
146  text run at (0,2358) width 10: "\x{E17}\x{E35}\x{E48}"
147  text run at (0,2376) width 63: "\x{E04}\x{E23}\x{E2D}\x{E1A}\x{E04}\x{E23}\x{E31}\x{E27}"
148  text run at (0,2394) width 10: "\x{E19}\x{E35}\x{E49}"
149  text run at (0,2412) width 15: "\x{E08}\x{E30}"
150  text run at (0,2430) width 20: "\x{E21}\x{E38}\x{E14}"
151  text run at (0,2448) width 39: "\x{E40}\x{E02}\x{E49}\x{E32}\x{E44}\x{E1B}"
152  text run at (0,2466) width 24: "\x{E40}\x{E21}\x{E37}\x{E48}\x{E2D}"
153  text run at (0,2484) width 25: "\x{E40}\x{E01}\x{E34}\x{E14}"
154  text run at (0,2502) width 19: "\x{E25}\x{E21}"
155  text run at (0,2520) width 28: "\x{E21}\x{E2B}\x{E32}"
156  text run at (0,2538) width 21: "\x{E20}\x{E31}\x{E22}"
157  text run at (0,2556) width 17: "\x{E0B}\x{E36}\x{E48}\x{E07}"
158  text run at (0,2574) width 51: "\x{E01}\x{E23}\x{E30}\x{E42}\x{E0A}\x{E01}"
159  text run at (0,2592) width 25: "\x{E41}\x{E23}\x{E07}"
160  text run at (0,2610) width 18: "\x{E08}\x{E19}"
161  text run at (0,2628) width 39: "\x{E1A}\x{E14}\x{E02}\x{E22}\x{E35}\x{E49}"
162  text run at (0,2646) width 18: "\x{E2A}\x{E34}\x{E48}\x{E07}"
163  text run at (0,2664) width 19: "\x{E01}\x{E48}\x{E2D}"
164  text run at (0,2682) width 34: "\x{E2A}\x{E23}\x{E49}\x{E32}\x{E07}"
165  text run at (0,2700) width 27: "\x{E43}\x{E14}\x{E46}"
166  text run at (0,2718) width 10: "\x{E17}\x{E35}\x{E48}"
167  text run at (0,2736) width 33: "\x{E02}\x{E27}\x{E32}\x{E07}"
168  text run at (0,2754) width 26: "\x{E17}\x{E32}\x{E07}"
169  text run at (0,2772) width 20: "\x{E21}\x{E31}\x{E19}"
170  text run at (0,2790) width 17: "\x{E44}\x{E14}\x{E49}"
171  text run at (0,2808) width 26: "\x{E15}\x{E23}\x{E07}"
172  text run at (0,2826) width 35: "\x{E01}\x{E25}\x{E32}\x{E07}"
173  text run at (0,2844) width 21: "\x{E1E}\x{E37}\x{E49}\x{E19}"
174  text run at (0,2862) width 10: "\x{E21}\x{E35}"
175  text run at (0,2880) width 18: "\x{E1D}\x{E32}"
176  text run at (0,2898) width 25: "\x{E40}\x{E1B}\x{E34}\x{E14}"
177  text run at (0,2916) width 39: "\x{E40}\x{E02}\x{E49}\x{E32}\x{E44}\x{E1B}"
178  text run at (0,2934) width 26: "\x{E08}\x{E32}\x{E01}"
179  text run at (0,2952) width 20: "\x{E19}\x{E31}\x{E49}\x{E19}"
180  text run at (0,2970) width 10: "\x{E21}\x{E35}"
181  text run at (0,2988) width 37: "\x{E1A}\x{E31}\x{E19}\x{E44}\x{E14}"
182  text run at (0,3006) width 17: "\x{E25}\x{E07}"
183  text run at (0,3024) width 17: "\x{E44}\x{E1B}"
184  text run at (0,3042) width 18: "\x{E16}\x{E36}\x{E07}"
185  text run at (0,3060) width 34: "\x{E42}\x{E1E}\x{E23}\x{E07}"
186  text run at (0,3078) width 20: "\x{E21}\x{E37}\x{E14}"
187  text run at (0,3096) width 34: "\x{E40}\x{E25}\x{E47}\x{E01}\x{E46}"
188  text run at (0,3114) width 24: "\x{E40}\x{E21}\x{E37}\x{E48}\x{E2D}"
189  text run at (0,3132) width 17: "\x{E42}\x{E14}"
190  text run at (0,3150) width 24: "\x{E42}\x{E23}\x{E18}\x{E35}"
191  text run at (0,3168) width 20: "\x{E22}\x{E37}\x{E19}"
192  text run at (0,3186) width 10: "\x{E17}\x{E35}\x{E48}"
193  text run at (0,3204) width 28: "\x{E1B}\x{E32}\x{E01}"
194  text run at (0,3222) width 35: "\x{E1B}\x{E23}\x{E30}\x{E15}\x{E39}"
195  text run at (0,3240) width 25: "\x{E41}\x{E25}\x{E30}"
196  text run at (0,3258) width 27: "\x{E21}\x{E2D}\x{E07}"
197  text run at (0,3276) width 17: "\x{E44}\x{E1B}"
198  text run at (0,3294) width 37: "\x{E23}\x{E2D}\x{E1A}\x{E46}"
199  text run at (0,3312) width 23: "\x{E40}\x{E18}\x{E2D}"
200  text run at (0,3330) width 17: "\x{E44}\x{E21}\x{E48}"
201  text run at (0,3348) width 25: "\x{E40}\x{E2B}\x{E47}\x{E19}"
202  text run at (0,3366) width 31: "\x{E2D}\x{E30}\x{E44}\x{E23}"
203  text run at (0,3384) width 55: "\x{E19}\x{E2D}\x{E01}\x{E08}\x{E32}\x{E01}"
204  text run at (0,3402) width 27: "\x{E17}\x{E49}\x{E2D}\x{E07}"
205  text run at (0,3420) width 18: "\x{E17}\x{E38}\x{E48}\x{E07}"
206  text run at (0,3438) width 34: "\x{E01}\x{E27}\x{E49}\x{E32}\x{E07}"
207  text run at (0,3456) width 10: "\x{E2A}\x{E35}"
208  text run at (0,3474) width 23: "\x{E40}\x{E17}\x{E32}"
209  text run at (0,3492) width 30: "\x{E2B}\x{E21}\x{E48}\x{E19}"
210  text run at (0,3510) width 18: "\x{E17}\x{E31}\x{E48}\x{E27}"
211  text run at (0,3528) width 20: "\x{E17}\x{E38}\x{E01}"
212  text run at (0,3546) width 28: "\x{E14}\x{E49}\x{E32}\x{E19}"
213  text run at (0,3564) width 27: "\x{E44}\x{E21}\x{E48}\x{E21}\x{E35}"
214  text run at (0,3582) width 19: "\x{E41}\x{E21}\x{E49}"
215  text run at (0,3600) width 37: "\x{E15}\x{E49}\x{E19}\x{E44}\x{E21}\x{E49}"
216  text run at (0,3618) width 20: "\x{E2A}\x{E31}\x{E01}"
217  text run at (0,3636) width 20: "\x{E15}\x{E49}\x{E19}"
218  text run at (0,3654) width 27: "\x{E2B}\x{E23}\x{E37}\x{E2D}"
219  text run at (0,3672) width 28: "\x{E1A}\x{E49}\x{E32}\x{E19}"
220  text run at (0,3690) width 20: "\x{E2A}\x{E31}\x{E01}"
221  text run at (0,3708) width 27: "\x{E2B}\x{E25}\x{E31}\x{E07}"
222  text run at (0,3726) width 10: "\x{E17}\x{E35}\x{E48}"
223  text run at (0,3744) width 26: "\x{E42}\x{E1C}\x{E25}\x{E48}"
224  text run at (0,3762) width 21: "\x{E1E}\x{E49}\x{E19}"
225  text run at (0,3780) width 71: "\x{E20}\x{E39}\x{E21}\x{E34}\x{E1B}\x{E23}\x{E30}\x{E40}\x{E17}\x{E28}"
226  text run at (0,3798) width 19: "\x{E2D}\x{E31}\x{E19}"
227  text run at (0,3816) width 26: "\x{E23}\x{E32}\x{E1A}"
228  text run at (0,3834) width 33: "\x{E40}\x{E23}\x{E35}\x{E22}\x{E1A}"
229  text run at (0,3852) width 19: "\x{E41}\x{E1C}\x{E48}"
230  text run at (0,3870) width 17: "\x{E44}\x{E1B}"
231  text run at (0,3888) width 26: "\x{E44}\x{E01}\x{E25}"
232  text run at (0,3906) width 18: "\x{E08}\x{E19}"
233  text run at (0,3924) width 18: "\x{E08}\x{E14}"
234  text run at (0,3942) width 28: "\x{E02}\x{E2D}\x{E1A}"
235  text run at (0,3960) width 19: "\x{E1F}\x{E49}\x{E32}"
236  text run at (0,3978) width 18: "\x{E17}\x{E31}\x{E48}\x{E27}"
237  text run at (0,3996) width 20: "\x{E17}\x{E38}\x{E01}"
238  text run at (0,4014) width 20: "\x{E17}\x{E34}\x{E28}"
239  text run at (0,4032) width 61: "\x{E14}\x{E27}\x{E07}\x{E15}\x{E30}\x{E27}\x{E31}\x{E19}"
240  text run at (0,4050) width 23: "\x{E40}\x{E1C}\x{E32}"
241  text run at (0,4068) width 20: "\x{E1C}\x{E37}\x{E19}"
242  text run at (0,4086) width 20: "\x{E14}\x{E34}\x{E19}"
243  text run at (0,4104) width 10: "\x{E17}\x{E35}\x{E48}"
244  text run at (0,4122) width 17: "\x{E44}\x{E16}"
245  text run at (0,4140) width 26: "\x{E41}\x{E25}\x{E49}\x{E27}"
246  text run at (0,4158) width 18: "\x{E08}\x{E19}"
247  text run at (0,4176) width 37: "\x{E01}\x{E25}\x{E32}\x{E22}"
248  text run at (0,4194) width 25: "\x{E40}\x{E1B}\x{E47}\x{E19}"
249  text run at (0,4212) width 29: "\x{E41}\x{E1C}\x{E48}\x{E19}"
250  text run at (0,4230) width 38: "\x{E21}\x{E2B}\x{E36}\x{E21}\x{E32}"
251  text run at (0,4248) width 10: "\x{E2A}\x{E35}"
252  text run at (0,4266) width 18: "\x{E14}\x{E33}"
253  text run at (0,4284) width 10: "\x{E21}\x{E35}"
254  text run at (0,4302) width 27: "\x{E23}\x{E2D}\x{E22}"
255  text run at (0,4320) width 29: "\x{E41}\x{E15}\x{E01}"
256  text run at (0,4338) width 42: "\x{E23}\x{E30}\x{E41}\x{E2B}\x{E07}"
257  text run at (0,4356) width 19: "\x{E2D}\x{E22}\x{E39}\x{E48}"
258  text run at (0,4374) width 38: "\x{E15}\x{E25}\x{E2D}\x{E14}"
259  text run at (0,4392) width 38: "\x{E41}\x{E21}\x{E49}\x{E41}\x{E15}\x{E48}"
260  text run at (0,4410) width 31: "\x{E2B}\x{E0D}\x{E49}\x{E32}"
261  text run at (0,4428) width 10: "\x{E01}\x{E47}"
262  text run at (0,4446) width 17: "\x{E44}\x{E21}\x{E48}"
263  text run at (0,4464) width 32: "\x{E40}\x{E02}\x{E35}\x{E22}\x{E27}"
264  text run at (0,4482) width 39: "\x{E40}\x{E1E}\x{E23}\x{E32}\x{E30}"
265  text run at (0,4500) width 61: "\x{E14}\x{E27}\x{E07}\x{E15}\x{E30}\x{E27}\x{E31}\x{E19}"
266  text run at (0,4518) width 23: "\x{E40}\x{E1C}\x{E32}"
267  text run at (0,4536) width 29: "\x{E22}\x{E2D}\x{E14}"
268  text run at (0,4554) width 17: "\x{E43}\x{E1A}"
269  text run at (0,4572) width 26: "\x{E22}\x{E32}\x{E27}"
270  text run at (0,4590) width 25: "\x{E40}\x{E2A}\x{E35}\x{E22}"
271  text run at (0,4608) width 18: "\x{E08}\x{E19}"
272  text run at (0,4626) width 25: "\x{E40}\x{E1B}\x{E47}\x{E19}"
273  text run at (0,4644) width 10: "\x{E2A}\x{E35}"
274  text run at (0,4662) width 23: "\x{E40}\x{E17}\x{E32}"
275  text run at (0,4680) width 30: "\x{E2B}\x{E21}\x{E48}\x{E19}"
276  text run at (0,4698) width 27: "\x{E21}\x{E2D}\x{E07}"
277  text run at (0,4716) width 25: "\x{E40}\x{E2B}\x{E47}\x{E19}"
278  text run at (0,4734) width 19: "\x{E2D}\x{E22}\x{E39}\x{E48}"
279  text run at (0,4752) width 35: "\x{E17}\x{E31}\x{E48}\x{E27}\x{E44}\x{E1B}"
280  text run at (0,4770) width 26: "\x{E04}\x{E23}\x{E31}\x{E49}\x{E07}"
281  text run at (0,4788) width 28: "\x{E2B}\x{E19}\x{E36}\x{E48}\x{E07}"
282  text run at (0,4806) width 25: "\x{E40}\x{E04}\x{E22}"
283  text run at (0,4824) width 28: "\x{E17}\x{E32}\x{E2A}\x{E35}"
284  text run at (0,4842) width 28: "\x{E1A}\x{E49}\x{E32}\x{E19}"
285  text run at (0,4860) width 22: "\x{E40}\x{E2D}\x{E32}"
286  text run at (0,4878) width 15: "\x{E44}\x{E27}\x{E49}"
287  text run at (0,4896) width 19: "\x{E41}\x{E15}\x{E48}"
288  text run at (0,4914) width 10: "\x{E01}\x{E47}"
289  text run at (0,4932) width 20: "\x{E16}\x{E39}\x{E01}"
290  text run at (0,4950) width 61: "\x{E14}\x{E27}\x{E07}\x{E15}\x{E30}\x{E27}\x{E31}\x{E19}"
291  text run at (0,4968) width 23: "\x{E40}\x{E1C}\x{E32}"
292  text run at (0,4986) width 25: "\x{E40}\x{E2A}\x{E35}\x{E22}"
293  text run at (0,5004) width 18: "\x{E08}\x{E19}"
294  text run at (0,5022) width 10: "\x{E2A}\x{E35}"
295  text run at (0,5040) width 28: "\x{E1E}\x{E2D}\x{E07}"
296  text run at (0,5058) width 26: "\x{E41}\x{E25}\x{E49}\x{E27}"
297  text run at (0,5076) width 20: "\x{E1D}\x{E19}"
298  text run at (0,5094) width 10: "\x{E01}\x{E47}"
299  text run at (0,5112) width 16: "\x{E0A}\x{E30}"
300  text run at (0,5130) width 20: "\x{E21}\x{E31}\x{E19}"
301  text run at (0,5148) width 29: "\x{E2B}\x{E25}\x{E38}\x{E14}"
302  text run at (0,5166) width 17: "\x{E44}\x{E1B}"
303  text run at (0,5184) width 18: "\x{E08}\x{E19}"
304  text run at (0,5202) width 30: "\x{E2B}\x{E21}\x{E14}"
305  text run at (0,5220) width 25: "\x{E41}\x{E25}\x{E30}"
306  text run at (0,5238) width 29: "\x{E15}\x{E2D}\x{E19}"
307  text run at (0,5256) width 10: "\x{E19}\x{E35}\x{E49}"
308  text run at (0,5274) width 28: "\x{E1A}\x{E49}\x{E32}\x{E19}"
309  text run at (0,5292) width 16: "\x{E08}\x{E36}\x{E07}"
310  text run at (0,5310) width 10: "\x{E14}\x{E39}"
311  text run at (0,5328) width 67: "\x{E2B}\x{E21}\x{E48}\x{E19}\x{E2B}\x{E21}\x{E2D}\x{E07}"
312  text run at (0,5346) width 25: "\x{E40}\x{E1B}\x{E47}\x{E19}"
313  text run at (0,5364) width 10: "\x{E2A}\x{E35}"
314  text run at (0,5382) width 23: "\x{E40}\x{E17}\x{E32}"
315  text run at (0,5400) width 44: "\x{E40}\x{E2B}\x{E21}\x{E37}\x{E2D}\x{E19}"
316  text run at (0,5418) width 18: "\x{E2A}\x{E34}\x{E48}\x{E07}"
317  text run at (0,5436) width 29: "\x{E2D}\x{E37}\x{E48}\x{E19}\x{E46}"
318  text run at (0,5454) width 28: "\x{E14}\x{E49}\x{E27}\x{E22}"
319  text run at (0,5472) width 29: "\x{E15}\x{E2D}\x{E19}"
320  text run at (0,5490) width 10: "\x{E17}\x{E35}\x{E48}"
321  text run at (0,5508) width 18: "\x{E1B}\x{E49}\x{E32}"
322  text run at (0,5526) width 24: "\x{E40}\x{E2D}\x{E47}\x{E21}"
323  text run at (0,5544) width 28: "\x{E22}\x{E49}\x{E32}\x{E22}"
324  text run at (0,5562) width 18: "\x{E21}\x{E32}"
325  text run at (0,5580) width 19: "\x{E2D}\x{E22}\x{E39}\x{E48}"
326  text run at (0,5598) width 10: "\x{E17}\x{E35}\x{E48}"
327  text run at (0,5616) width 10: "\x{E19}\x{E35}\x{E48}"
328  text run at (0,5634) width 23: "\x{E40}\x{E18}\x{E2D}"
329  text run at (0,5652) width 18: "\x{E22}\x{E31}\x{E07}"
330  text run at (0,5670) width 26: "\x{E2A}\x{E32}\x{E27}"
331  text run at (0,5688) width 25: "\x{E40}\x{E1B}\x{E47}\x{E19}"
332  text run at (0,5706) width 45: "\x{E20}\x{E23}\x{E23}\x{E22}\x{E32}"
333  text run at (0,5724) width 10: "\x{E17}\x{E35}\x{E48}"
334  text run at (0,5742) width 44: "\x{E07}\x{E14}\x{E07}\x{E32}\x{E21}"
335  text run at (0,5760) width 26: "\x{E41}\x{E25}\x{E49}\x{E27}"
336  text run at (0,5778) width 29: "\x{E41}\x{E14}\x{E14}"
337  text run at (0,5796) width 25: "\x{E41}\x{E25}\x{E30}"
338  text run at (0,5814) width 19: "\x{E25}\x{E21}"
339  text run at (0,5832) width 27: "\x{E01}\x{E47}\x{E44}\x{E14}\x{E49}"
340  text run at (0,5850) width 44: "\x{E40}\x{E1B}\x{E25}\x{E35}\x{E48}\x{E22}\x{E19}"
341  text run at (0,5868) width 23: "\x{E40}\x{E18}\x{E2D}"
342  text run at (0,5886) width 17: "\x{E44}\x{E1B}"
343  text run at (0,5904) width 22: "\x{E40}\x{E2D}\x{E32}"
344  text run at (0,5922) width 53: "\x{E1B}\x{E23}\x{E30}\x{E01}\x{E32}\x{E22}"
345  text run at (0,5940) width 17: "\x{E44}\x{E1B}"
346  text run at (0,5958) width 26: "\x{E08}\x{E32}\x{E01}"
347  text run at (0,5976) width 44: "\x{E14}\x{E27}\x{E07}\x{E15}\x{E32}"
348  text run at (0,5994) width 23: "\x{E40}\x{E18}\x{E2D}"
349  text run at (0,6012) width 38: "\x{E1B}\x{E25}\x{E48}\x{E2D}\x{E22}"
350  text run at (0,6030) width 15: "\x{E44}\x{E27}\x{E49}"
351  text run at (0,6048) width 19: "\x{E41}\x{E15}\x{E48}"
352  text run at (0,6066) width 36: "\x{E04}\x{E27}\x{E32}\x{E21}"
353  text run at (0,6084) width 29: "\x{E2A}\x{E38}\x{E02}\x{E38}\x{E21}"
354  text run at (0,6102) width 35: "\x{E2D}\x{E22}\x{E48}\x{E32}\x{E07}"
355  text run at (0,6120) width 67: "\x{E2B}\x{E21}\x{E48}\x{E19}\x{E2B}\x{E21}\x{E2D}\x{E07}"
356  text run at (0,6138) width 22: "\x{E40}\x{E2D}\x{E32}"
357  text run at (0,6156) width 10: "\x{E2A}\x{E35}"
358  text run at (0,6174) width 27: "\x{E41}\x{E14}\x{E07}"
359  text run at (0,6192) width 26: "\x{E08}\x{E32}\x{E01}"
360  text run at (0,6210) width 29: "\x{E41}\x{E01}\x{E49}\x{E21}"
361  text run at (0,6228) width 25: "\x{E41}\x{E25}\x{E30}"
362  text run at (0,6246) width 18: "\x{E23}\x{E34}\x{E21}"
363  text run at (0,6264) width 38: "\x{E1D}\x{E35}\x{E1B}\x{E32}\x{E01}"
364  text run at (0,6282) width 23: "\x{E40}\x{E18}\x{E2D}"
365  text run at (0,6300) width 17: "\x{E44}\x{E1B}"
366  text run at (0,6318) width 37: "\x{E01}\x{E25}\x{E32}\x{E22}"
367  text run at (0,6336) width 25: "\x{E40}\x{E1B}\x{E47}\x{E19}"
368  text run at (0,6354) width 10: "\x{E2A}\x{E35}"
369  text run at (0,6372) width 40: "\x{E2B}\x{E21}\x{E48}\x{E19}\x{E46}"
370  text run at (0,6390) width 44: "\x{E40}\x{E2B}\x{E21}\x{E37}\x{E2D}\x{E19}"
371  text run at (0,6408) width 20: "\x{E01}\x{E31}\x{E19}"
372  text run at (0,6426) width 23: "\x{E40}\x{E18}\x{E2D}"
373  text run at (0,6444) width 29: "\x{E1C}\x{E2D}\x{E21}"
374  text run at (0,6462) width 25: "\x{E41}\x{E25}\x{E30}"
375  text run at (0,6480) width 27: "\x{E2B}\x{E25}\x{E31}\x{E07}"
376  text run at (0,6498) width 25: "\x{E42}\x{E04}\x{E49}\x{E07}"
377  text run at (0,6516) width 25: "\x{E41}\x{E25}\x{E30}"
378  text run at (0,6534) width 33: "\x{E40}\x{E14}\x{E35}\x{E4B}\x{E22}\x{E27}"
379  text run at (0,6552) width 10: "\x{E19}\x{E35}\x{E49}"
380  text run at (0,6570) width 17: "\x{E44}\x{E21}\x{E48}"
381  text run at (0,6588) width 25: "\x{E40}\x{E04}\x{E22}"
382  text run at (0,6606) width 20: "\x{E22}\x{E34}\x{E49}\x{E21}"
383  text run at (0,6624) width 24: "\x{E40}\x{E25}\x{E22}"
384  text run at (0,6642) width 24: "\x{E40}\x{E21}\x{E37}\x{E48}\x{E2D}"
385  text run at (0,6660) width 17: "\x{E42}\x{E14}"
386  text run at (0,6678) width 24: "\x{E42}\x{E23}\x{E18}\x{E35}"
387  text run at (0,6696) width 17: "\x{E0B}\x{E36}\x{E48}\x{E07}"
388  text run at (0,6714) width 25: "\x{E40}\x{E1B}\x{E47}\x{E19}"
389  text run at (0,6732) width 25: "\x{E40}\x{E14}\x{E47}\x{E01}"
390  text run at (0,6750) width 45: "\x{E01}\x{E33}\x{E1E}\x{E23}\x{E49}\x{E32}"
391  text run at (0,6768) width 18: "\x{E21}\x{E32}"
392  text run at (0,6786) width 19: "\x{E2D}\x{E22}\x{E39}\x{E48}"
393  text run at (0,6804) width 20: "\x{E01}\x{E31}\x{E1A}"
394  text run at (0,6822) width 23: "\x{E40}\x{E18}\x{E2D}"
395  text run at (0,6840) width 29: "\x{E15}\x{E2D}\x{E19}"
396  text run at (0,6858) width 27: "\x{E41}\x{E23}\x{E01}"
397  text run at (0,6876) width 18: "\x{E1B}\x{E49}\x{E32}"
398  text run at (0,6894) width 24: "\x{E40}\x{E2D}\x{E47}\x{E21}"
399  text run at (0,6912) width 20: "\x{E15}\x{E37}\x{E48}\x{E19}"
400  text run at (0,6930) width 25: "\x{E40}\x{E15}\x{E49}\x{E19}"
401  text run at (0,6948) width 20: "\x{E01}\x{E31}\x{E1A}"
402  text run at (0,6966) width 33: "\x{E40}\x{E2A}\x{E35}\x{E22}\x{E07}"
403  text run at (0,6984) width 46: "\x{E2B}\x{E31}\x{E27}\x{E40}\x{E23}\x{E32}\x{E30}"
404  text run at (0,7002) width 26: "\x{E02}\x{E2D}\x{E07}"
405  text run at (0,7020) width 25: "\x{E40}\x{E14}\x{E47}\x{E01}"
406  text run at (0,7038) width 29: "\x{E19}\x{E49}\x{E2D}\x{E22}"
407  text run at (0,7056) width 28: "\x{E21}\x{E32}\x{E01}"
408  text run at (0,7074) width 23: "\x{E40}\x{E18}\x{E2D}"
409  text run at (0,7092) width 15: "\x{E08}\x{E30}"
410  text run at (0,7110) width 18: "\x{E2A}\x{E48}\x{E07}"
411  text run at (0,7128) width 33: "\x{E40}\x{E2A}\x{E35}\x{E22}\x{E07}"
412  text run at (0,7146) width 25: "\x{E23}\x{E49}\x{E2D}\x{E07}"
413  text run at (0,7164) width 26: "\x{E41}\x{E25}\x{E49}\x{E27}"
414  text run at (0,7182) width 22: "\x{E40}\x{E2D}\x{E32}"
415  text run at (0,7200) width 19: "\x{E21}\x{E37}\x{E2D}"
416  text run at (0,7218) width 28: "\x{E17}\x{E32}\x{E1A}"
417  text run at (0,7236) width 19: "\x{E2D}\x{E01}"
418  text run at (0,7254) width 20: "\x{E17}\x{E38}\x{E01}"
419  text run at (0,7272) width 26: "\x{E04}\x{E23}\x{E31}\x{E49}\x{E07}"
420  text run at (0,7290) width 10: "\x{E17}\x{E35}\x{E48}"
421  text run at (0,7308) width 33: "\x{E40}\x{E2A}\x{E35}\x{E22}\x{E07}"
422  text run at (0,7326) width 19: "\x{E2D}\x{E31}\x{E19}"
423  text run at (0,7344) width 37: "\x{E23}\x{E48}\x{E32}\x{E40}\x{E23}\x{E34}\x{E07}"
424  text run at (0,7362) width 26: "\x{E02}\x{E2D}\x{E07}"
425  text run at (0,7380) width 17: "\x{E42}\x{E14}"
426  text run at (0,7398) width 24: "\x{E42}\x{E23}\x{E18}\x{E35}"
427  text run at (0,7416) width 32: "\x{E40}\x{E02}\x{E49}\x{E32}\x{E2B}\x{E39}"
428  text run at (0,7434) width 23: "\x{E40}\x{E18}\x{E2D}"
429  text run at (0,7452) width 25: "\x{E41}\x{E25}\x{E30}"
430  text run at (0,7470) width 23: "\x{E40}\x{E18}\x{E2D}"
431  text run at (0,7488) width 23: "\x{E40}\x{E1D}\x{E49}\x{E32}"
432  text run at (0,7506) width 27: "\x{E21}\x{E2D}\x{E07}"
433  text run at (0,7524) width 25: "\x{E40}\x{E14}\x{E47}\x{E01}"
434  text run at (0,7542) width 31: "\x{E2B}\x{E0D}\x{E34}\x{E07}"
435  text run at (0,7560) width 39: "\x{E19}\x{E49}\x{E2D}\x{E22}\x{E46}"
436  text run at (0,7578) width 28: "\x{E14}\x{E49}\x{E27}\x{E22}"
437  text run at (0,7596) width 36: "\x{E04}\x{E27}\x{E32}\x{E21}"
438  text run at (0,7614) width 62: "\x{E1B}\x{E23}\x{E30}\x{E2B}\x{E25}\x{E32}\x{E14}"
439  text run at (0,7632) width 15: "\x{E43}\x{E08}"
440  text run at (0,7650) width 28: "\x{E14}\x{E49}\x{E27}\x{E22}"
441  text run at (0,7668) width 18: "\x{E22}\x{E31}\x{E07}"
442  text run at (0,7686) width 18: "\x{E2B}\x{E32}"
443  text run at (0,7704) width 31: "\x{E2D}\x{E30}\x{E44}\x{E23}"
444  text run at (0,7722) width 18: "\x{E21}\x{E32}"
445  text run at (0,7740) width 25: "\x{E40}\x{E1B}\x{E47}\x{E19}"
446  text run at (0,7758) width 30: "\x{E40}\x{E23}\x{E37}\x{E48}\x{E2D}\x{E07}"
447  text run at (0,7776) width 46: "\x{E2B}\x{E31}\x{E27}\x{E40}\x{E23}\x{E32}\x{E30}"
448  text run at (0,7794) width 17: "\x{E44}\x{E14}\x{E49}"
449  text run at (0,7812) width 17: "\x{E25}\x{E38}\x{E07}"
450  text run at (0,7830) width 14: "\x{E40}\x{E2E}"
451  text run at (0,7848) width 18: "\x{E19}\x{E23}\x{E35}"
452  text run at (0,7866) width 17: "\x{E44}\x{E21}\x{E48}"
453  text run at (0,7884) width 25: "\x{E40}\x{E04}\x{E22}"
454  text run at (0,7902) width 46: "\x{E2B}\x{E31}\x{E27}\x{E40}\x{E23}\x{E32}\x{E30}"
455  text run at (0,7920) width 17: "\x{E25}\x{E38}\x{E07}"
456  text run at (0,7938) width 44: "\x{E17}\x{E33}\x{E07}\x{E32}\x{E19}"
457  text run at (0,7956) width 30: "\x{E2B}\x{E19}\x{E31}\x{E01}"
458  text run at (0,7974) width 26: "\x{E08}\x{E32}\x{E01}"
459  text run at (0,7992) width 22: "\x{E40}\x{E0A}\x{E49}\x{E32}"
460  text run at (0,8010) width 20: "\x{E22}\x{E31}\x{E19}"
461  text run at (0,8028) width 18: "\x{E04}\x{E48}\x{E33}"
462  text run at (0,8046) width 25: "\x{E41}\x{E25}\x{E30}"
463  text run at (0,8064) width 17: "\x{E44}\x{E21}\x{E48}"
464  text run at (0,8082) width 25: "\x{E40}\x{E04}\x{E22}"
465  text run at (0,8100) width 26: "\x{E23}\x{E39}\x{E49}\x{E08}\x{E31}\x{E01}"
466  text run at (0,8118) width 16: "\x{E27}\x{E48}\x{E32}"
467  text run at (0,8136) width 36: "\x{E04}\x{E27}\x{E32}\x{E21}"
468  text run at (0,8154) width 37: "\x{E23}\x{E48}\x{E32}\x{E40}\x{E23}\x{E34}\x{E07}"
469  text run at (0,8172) width 19: "\x{E04}\x{E37}\x{E2D}"
470  text run at (0,8190) width 31: "\x{E2D}\x{E30}\x{E44}\x{E23}"
471  text run at (0,8208) width 17: "\x{E25}\x{E38}\x{E07}"
472  text run at (0,8226) width 10: "\x{E14}\x{E39}"
473  text run at (0,8244) width 67: "\x{E2B}\x{E21}\x{E48}\x{E19}\x{E2B}\x{E21}\x{E2D}\x{E07}"
474  text run at (0,8262) width 17: "\x{E44}\x{E1B}"
475  text run at (0,8280) width 30: "\x{E2B}\x{E21}\x{E14}"
476  text run at (0,8298) width 37: "\x{E15}\x{E31}\x{E49}\x{E07}\x{E41}\x{E15}\x{E48}"
477  text run at (0,8316) width 31: "\x{E40}\x{E04}\x{E23}\x{E32}"
478  text run at (0,8334) width 26: "\x{E22}\x{E32}\x{E27}"
479  text run at (0,8352) width 18: "\x{E08}\x{E19}"
480  text run at (0,8370) width 18: "\x{E08}\x{E14}"
481  text run at (0,8388) width 48: "\x{E23}\x{E2D}\x{E07}\x{E40}\x{E17}\x{E49}\x{E32}"
482  text run at (0,8406) width 20: "\x{E1A}\x{E39}\x{E15}"
483  text run at (0,8424) width 19: "\x{E2D}\x{E31}\x{E19}"
484  text run at (0,8442) width 38: "\x{E2B}\x{E22}\x{E32}\x{E1A}"
485  text run at (0,8460) width 26: "\x{E41}\x{E25}\x{E49}\x{E27}"
486  text run at (0,8478) width 17: "\x{E25}\x{E38}\x{E07}"
487  text run at (0,8496) width 10: "\x{E01}\x{E47}"
488  text run at (0,8514) width 10: "\x{E14}\x{E39}"
489  text run at (0,8532) width 58: "\x{E40}\x{E04}\x{E23}\x{E48}\x{E07}\x{E02}\x{E23}\x{E36}\x{E21}"
490  text run at (0,8550) width 18: "\x{E19}\x{E48}\x{E32}"
491  text run at (0,8568) width 31: "\x{E40}\x{E01}\x{E23}\x{E07}"
492  text run at (0,8586) width 27: "\x{E02}\x{E32}\x{E21}"
493  text run at (0,8604) width 17: "\x{E44}\x{E21}\x{E48}"
494  text run at (0,8622) width 29: "\x{E04}\x{E48}\x{E2D}\x{E22}"
495  text run at (0,8640) width 15: "\x{E08}\x{E30}"
496  text run at (0,8658) width 21: "\x{E1E}\x{E39}\x{E14}"
497  text run at (0,8676) width 10: "\x{E21}\x{E35}"
498  text run at (0,8694) width 17: "\x{E42}\x{E15}"
499  text run at (0,8712) width 17: "\x{E42}\x{E15}\x{E49}"
500  text run at (0,8730) width 10: "\x{E17}\x{E35}\x{E48}"
501  text run at (0,8748) width 35: "\x{E17}\x{E33}\x{E43}\x{E2B}\x{E49}"
502  text run at (0,8766) width 17: "\x{E42}\x{E14}"
503  text run at (0,8784) width 24: "\x{E42}\x{E23}\x{E18}\x{E35}"
504  text run at (0,8802) width 46: "\x{E2B}\x{E31}\x{E27}\x{E40}\x{E23}\x{E32}\x{E30}"
505  text run at (0,8820) width 17: "\x{E44}\x{E14}\x{E49}"
506  text run at (0,8838) width 25: "\x{E41}\x{E25}\x{E30}"
507  text run at (0,8856) width 27: "\x{E0A}\x{E48}\x{E27}\x{E22}"
508  text run at (0,8874) width 23: "\x{E40}\x{E18}\x{E2D}"
509  text run at (0,8892) width 17: "\x{E43}\x{E2B}\x{E49}"
510  text run at (0,8910) width 21: "\x{E1E}\x{E49}\x{E19}"
511  text run at (0,8928) width 26: "\x{E08}\x{E32}\x{E01}"
512  text run at (0,8946) width 36: "\x{E01}\x{E32}\x{E23}\x{E01}"
513  text run at (0,8964) width 27: "\x{E25}\x{E32}\x{E22}"
514  text run at (0,8982) width 25: "\x{E40}\x{E1B}\x{E47}\x{E19}"
515  text run at (0,9000) width 10: "\x{E2A}\x{E35}"
516  text run at (0,9018) width 23: "\x{E40}\x{E17}\x{E32}"
517  text run at (0,9036) width 30: "\x{E2B}\x{E21}\x{E48}\x{E19}"
518  text run at (0,9054) width 44: "\x{E40}\x{E2B}\x{E21}\x{E37}\x{E2D}\x{E19}"
519  text run at (0,9072) width 20: "\x{E01}\x{E31}\x{E1A}"
520  text run at (0,9090) width 18: "\x{E2A}\x{E34}\x{E48}\x{E07}"
521  text run at (0,9108) width 27: "\x{E23}\x{E2D}\x{E1A}"
522  text run at (0,9126) width 18: "\x{E15}\x{E31}\x{E27}"
523  text run at (0,9144) width 29: "\x{E2D}\x{E37}\x{E48}\x{E19}\x{E46}"
524  text run at (0,9162) width 17: "\x{E42}\x{E15}"
525  text run at (0,9180) width 17: "\x{E42}\x{E15}\x{E49}"
526  text run at (0,9198) width 10: "\x{E2A}\x{E35}"
527  text run at (0,9216) width 17: "\x{E44}\x{E21}\x{E48}"
528  text run at (0,9234) width 23: "\x{E40}\x{E17}\x{E32}"
529  text run at (0,9252) width 30: "\x{E2B}\x{E21}\x{E48}\x{E19}"
530  text run at (0,9270) width 19: "\x{E41}\x{E15}\x{E48}"
531  text run at (0,9288) width 20: "\x{E21}\x{E31}\x{E19}"
532  text run at (0,9306) width 25: "\x{E40}\x{E1B}\x{E47}\x{E19}"
533  text run at (0,9324) width 28: "\x{E2B}\x{E21}\x{E32}"
534  text run at (0,9342) width 10: "\x{E2A}\x{E35}"
535  text run at (0,9360) width 18: "\x{E14}\x{E33}"
536  text run at (0,9378) width 18: "\x{E15}\x{E31}\x{E27}"
537  text run at (0,9396) width 39: "\x{E19}\x{E49}\x{E2D}\x{E22}\x{E46}"
538  text run at (0,9414) width 19: "\x{E02}\x{E19}"
539  text run at (0,9432) width 26: "\x{E22}\x{E32}\x{E27}"
540  text run at (0,9450) width 20: "\x{E1B}\x{E38}\x{E22}"
541  text run at (0,9468) width 44: "\x{E23}\x{E32}\x{E27}\x{E01}\x{E31}\x{E1A}"
542  text run at (0,9486) width 27: "\x{E44}\x{E2B}\x{E21}"
543  text run at (0,9504) width 10: "\x{E21}\x{E35}"
544  text run at (0,9522) width 18: "\x{E15}\x{E32}"
545  text run at (0,9540) width 18: "\x{E14}\x{E33}"
546  text run at (0,9558) width 24: "\x{E40}\x{E25}\x{E47}\x{E01}"
547  text run at (0,9576) width 25: "\x{E40}\x{E1B}\x{E47}\x{E19}"
548  text run at (0,9594) width 53: "\x{E1B}\x{E23}\x{E30}\x{E01}\x{E32}\x{E22}"
549  text run at (0,9612) width 39: "\x{E23}\x{E37}\x{E48}\x{E19}\x{E40}\x{E23}\x{E34}\x{E07}"
550  text run at (0,9630) width 19: "\x{E2D}\x{E22}\x{E39}\x{E48}"
551  text run at (0,9648) width 27: "\x{E2A}\x{E2D}\x{E07}"
552  text run at (0,9666) width 25: "\x{E02}\x{E49}\x{E32}\x{E07}"
553  text run at (0,9684) width 28: "\x{E08}\x{E21}\x{E39}\x{E01}"
554  text run at (0,9702) width 24: "\x{E40}\x{E25}\x{E47}\x{E01}"
555  text run at (0,9720) width 19: "\x{E2D}\x{E31}\x{E19}"
556  text run at (0,9738) width 18: "\x{E19}\x{E48}\x{E32}"
557  text run at (0,9756) width 19: "\x{E02}\x{E31}\x{E19}"
558  text run at (0,9774) width 26: "\x{E02}\x{E2D}\x{E07}"
559  text run at (0,9792) width 20: "\x{E21}\x{E31}\x{E19}"
560  text run at (0,9810) width 17: "\x{E42}\x{E15}"
561  text run at (0,9828) width 17: "\x{E42}\x{E15}\x{E49}"
562  text run at (0,9846) width 24: "\x{E40}\x{E25}\x{E48}\x{E19}"
563  text run at (0,9864) width 18: "\x{E17}\x{E31}\x{E49}\x{E07}"
564  text run at (0,9882) width 18: "\x{E27}\x{E31}\x{E19}"
565  text run at (0,9900) width 25: "\x{E41}\x{E25}\x{E30}"
566  text run at (0,9918) width 17: "\x{E42}\x{E14}"
567  text run at (0,9936) width 24: "\x{E42}\x{E23}\x{E18}\x{E35}"
568  text run at (0,9954) width 10: "\x{E01}\x{E47}"
569  text run at (0,9972) width 24: "\x{E40}\x{E25}\x{E48}\x{E19}"
570  text run at (0,9990) width 20: "\x{E01}\x{E31}\x{E1A}"
571  text run at (0,10008) width 20: "\x{E21}\x{E31}\x{E19}"
572  text run at (0,10026) width 25: "\x{E41}\x{E25}\x{E30}"
573  text run at (0,10044) width 18: "\x{E23}\x{E31}\x{E01}"
574  text run at (0,10062) width 20: "\x{E21}\x{E31}\x{E19}"
575  text run at (0,10080) width 33: "\x{E40}\x{E2B}\x{E25}\x{E37}\x{E2D}"
576  text run at (0,10098) width 25: "\x{E40}\x{E01}\x{E34}\x{E19}"
577  text run at (0,10116) width 50: "\x{E2D}\x{E22}\x{E48}\x{E32}\x{E07}\x{E44}\x{E23}"
578  text run at (0,10134) width 38: "\x{E01}\x{E47}\x{E15}\x{E32}\x{E21}"
579  text run at (0,10152) width 18: "\x{E27}\x{E31}\x{E19}"
580  text run at (0,10170) width 10: "\x{E19}\x{E35}\x{E49}"
581  text run at (0,10188) width 18: "\x{E17}\x{E31}\x{E49}\x{E07}"
582  text run at (0,10206) width 10: "\x{E04}\x{E39}\x{E48}"
583  text run at (0,10224) width 17: "\x{E44}\x{E21}\x{E48}"
584  text run at (0,10242) width 17: "\x{E44}\x{E14}\x{E49}"
585  text run at (0,10260) width 24: "\x{E40}\x{E25}\x{E48}\x{E19}"
586  text run at (0,10278) width 17: "\x{E25}\x{E38}\x{E07}"
587  text run at (0,10296) width 14: "\x{E40}\x{E2E}"
588  text run at (0,10314) width 18: "\x{E19}\x{E23}\x{E35}"
589  text run at (0,10332) width 18: "\x{E19}\x{E31}\x{E48}\x{E07}"
590  text run at (0,10350) width 19: "\x{E2D}\x{E22}\x{E39}\x{E48}"
591  text run at (0,10368) width 10: "\x{E17}\x{E35}\x{E48}"
592  text run at (0,10386) width 37: "\x{E1A}\x{E31}\x{E19}\x{E44}\x{E14}"
593  text run at (0,10404) width 35: "\x{E1B}\x{E23}\x{E30}\x{E15}\x{E39}"
594  text run at (0,10422) width 25: "\x{E41}\x{E25}\x{E30}"
595  text run at (0,10440) width 23: "\x{E40}\x{E1D}\x{E49}\x{E32}"
596  text run at (0,10458) width 35: "\x{E01}\x{E31}\x{E07}\x{E27}\x{E25}"
597  text run at (0,10476) width 25: "\x{E08}\x{E49}\x{E2D}\x{E07}"
598  text run at (0,10494) width 10: "\x{E14}\x{E39}"
599  text run at (0,10512) width 46: "\x{E17}\x{E49}\x{E2D}\x{E07}\x{E1F}\x{E49}\x{E32}"
600  text run at (0,10530) width 10: "\x{E2A}\x{E35}"
601  text run at (0,10548) width 23: "\x{E40}\x{E17}\x{E32}"
602  text run at (0,10566) width 30: "\x{E2B}\x{E21}\x{E48}\x{E19}"
603  text run at (0,10584) width 20: "\x{E1C}\x{E34}\x{E14}"
604  text run at (0,10602) width 30: "\x{E1B}\x{E01}\x{E15}\x{E34}"
605  text run at (0,10620) width 17: "\x{E42}\x{E14}"
606  text run at (0,10638) width 24: "\x{E42}\x{E23}\x{E18}\x{E35}"
607  text run at (0,10656) width 20: "\x{E22}\x{E37}\x{E19}"
608  text run at (0,10674) width 10: "\x{E17}\x{E35}\x{E48}"
609  text run at (0,10692) width 35: "\x{E1B}\x{E23}\x{E30}\x{E15}\x{E39}"
610  text run at (0,10710) width 29: "\x{E01}\x{E2D}\x{E14}"
611  text run at (0,10728) width 17: "\x{E42}\x{E15}"
612  text run at (0,10746) width 17: "\x{E42}\x{E15}\x{E49}"
613  text run at (0,10764) width 15: "\x{E44}\x{E27}\x{E49}"
614  text run at (0,10782) width 17: "\x{E43}\x{E19}"
615  text run at (0,10800) width 28: "\x{E2D}\x{E49}\x{E2D}\x{E21}"
616  text run at (0,10818) width 28: "\x{E41}\x{E02}\x{E19}"
617  text run at (0,10836) width 25: "\x{E41}\x{E25}\x{E30}"
618  text run at (0,10854) width 10: "\x{E01}\x{E47}"
619  text run at (0,10872) width 27: "\x{E21}\x{E2D}\x{E07}"
620  text run at (0,10890) width 10: "\x{E14}\x{E39}"
621  text run at (0,10908) width 46: "\x{E17}\x{E49}\x{E2D}\x{E07}\x{E1F}\x{E49}\x{E32}"
622  text run at (0,10926) width 19: "\x{E2D}\x{E22}\x{E39}\x{E48}"
623  text run at (0,10944) width 44: "\x{E40}\x{E2B}\x{E21}\x{E37}\x{E2D}\x{E19}"
624  text run at (0,10962) width 20: "\x{E01}\x{E31}\x{E19}"
625  text run at (0,10980) width 18: "\x{E1B}\x{E49}\x{E32}"
626  text run at (0,10998) width 14: "\x{E40}\x{E2D}\x{E47}"
627  text run at (0,11016) width 28: "\x{E21}\x{E01}\x{E33}"
628  text run at (0,11034) width 17: "\x{E25}\x{E31}\x{E07}"
629  text run at (0,11052) width 25: "\x{E25}\x{E49}\x{E32}\x{E07}"
630  text run at (0,11070) width 27: "\x{E0A}\x{E32}\x{E21}"
631  text run at (0,11088) width 19: "\x{E2D}\x{E22}\x{E39}\x{E48}"
632  text run at (0,11106) width 26: "\x{E08}\x{E32}\x{E01}"
633  text run at (0,11124) width 28: "\x{E14}\x{E49}\x{E32}\x{E19}"
634  text run at (0,11142) width 34: "\x{E40}\x{E2B}\x{E19}\x{E37}\x{E2D}"
635  text run at (0,11160) width 26: "\x{E44}\x{E01}\x{E25}"
636  text run at (0,11178) width 28: "\x{E2D}\x{E2D}\x{E01}"
637  text run at (0,11196) width 17: "\x{E44}\x{E1B}"
638  text run at (0,11214) width 10: "\x{E21}\x{E35}"
639  text run at (0,11232) width 33: "\x{E40}\x{E2A}\x{E35}\x{E22}\x{E07}"
640  text run at (0,11250) width 19: "\x{E25}\x{E21}"
641  text run at (0,11268) width 34: "\x{E04}\x{E23}\x{E32}\x{E07}"
642  text run at (0,11286) width 27: "\x{E41}\x{E1C}\x{E48}\x{E27}"
643  text run at (0,11304) width 23: "\x{E40}\x{E1A}\x{E32}"
644  text run at (0,11322) width 37: "\x{E44}\x{E14}\x{E49}\x{E22}\x{E34}\x{E19}"
645  text run at (0,11340) width 18: "\x{E21}\x{E32}"
646  text run at (0,11358) width 17: "\x{E25}\x{E38}\x{E07}"
647  text run at (0,11376) width 14: "\x{E40}\x{E2E}"
648  text run at (0,11394) width 18: "\x{E19}\x{E23}\x{E35}"
649  text run at (0,11412) width 25: "\x{E41}\x{E25}\x{E30}"
650  text run at (0,11430) width 17: "\x{E42}\x{E14}"
651  text run at (0,11448) width 24: "\x{E42}\x{E23}\x{E18}\x{E35}"
652  text run at (0,11466) width 25: "\x{E40}\x{E2B}\x{E47}\x{E19}"
653  text run at (0,11484) width 20: "\x{E15}\x{E49}\x{E19}"
654  text run at (0,11502) width 31: "\x{E2B}\x{E0D}\x{E49}\x{E32}"
655  text run at (0,11520) width 18: "\x{E2A}\x{E39}\x{E07}"
656  text run at (0,11538) width 24: "\x{E40}\x{E2D}\x{E19}"
657  text run at (0,11556) width 25: "\x{E40}\x{E1B}\x{E47}\x{E19}"
658  text run at (0,11574) width 29: "\x{E04}\x{E25}\x{E37}\x{E48}\x{E19}"
659  text run at (0,11592) width 29: "\x{E01}\x{E48}\x{E2D}\x{E19}"
660  text run at (0,11610) width 10: "\x{E17}\x{E35}\x{E48}"
661  text run at (0,11628) width 29: "\x{E1E}\x{E32}\x{E22}\x{E38}"
662  text run at (0,11646) width 15: "\x{E08}\x{E30}"
663  text run at (0,11664) width 18: "\x{E21}\x{E32}"
664  text run at (0,11682) width 18: "\x{E16}\x{E36}\x{E07}"
665  text run at (0,11700) width 26: "\x{E41}\x{E25}\x{E49}\x{E27}"
666  text run at (0,11718) width 10: "\x{E01}\x{E47}"
667  text run at (0,11736) width 10: "\x{E21}\x{E35}"
668  text run at (0,11754) width 33: "\x{E40}\x{E2A}\x{E35}\x{E22}\x{E07}"
669  text run at (0,11772) width 28: "\x{E2B}\x{E27}\x{E35}\x{E14}"
670  text run at (0,11790) width 26: "\x{E2B}\x{E27}\x{E34}\x{E27}"
671  text run at (0,11808) width 42: "\x{E0A}\x{E31}\x{E14}\x{E40}\x{E08}\x{E19}"
672  text run at (0,11826) width 18: "\x{E21}\x{E32}"
673  text run at (0,11844) width 26: "\x{E08}\x{E32}\x{E01}"
674  text run at (0,11862) width 72: "\x{E1A}\x{E23}\x{E23}\x{E22}\x{E32}\x{E01}\x{E32}\x{E28}"
675  text run at (0,11880) width 26: "\x{E17}\x{E32}\x{E07}"
676  text run at (0,11898) width 17: "\x{E43}\x{E15}\x{E49}"
677  text run at (0,11916) width 25: "\x{E41}\x{E25}\x{E30}"
678  text run at (0,11934) width 24: "\x{E40}\x{E21}\x{E37}\x{E48}\x{E2D}"
679  text run at (0,11952) width 43: "\x{E40}\x{E2B}\x{E25}\x{E37}\x{E2D}\x{E1A}"
680  text run at (0,11970) width 18: "\x{E15}\x{E32}"
681  text run at (0,11988) width 17: "\x{E44}\x{E1B}"
682  text run at (0,12006) width 26: "\x{E17}\x{E32}\x{E07}"
683  text run at (0,12024) width 28: "\x{E14}\x{E49}\x{E32}\x{E19}"
684  text run at (0,12042) width 20: "\x{E19}\x{E31}\x{E49}\x{E19}"
685  text run at (0,12060) width 10: "\x{E01}\x{E47}"
686  text run at (0,12078) width 25: "\x{E40}\x{E2B}\x{E47}\x{E19}"
687  text run at (0,12096) width 29: "\x{E04}\x{E25}\x{E37}\x{E48}\x{E19}"
688  text run at (0,12114) width 31: "\x{E2B}\x{E0D}\x{E49}\x{E32}"
689  text run at (0,12132) width 18: "\x{E21}\x{E32}"
690  text run at (0,12150) width 26: "\x{E17}\x{E32}\x{E07}"
691  text run at (0,12168) width 28: "\x{E14}\x{E49}\x{E32}\x{E19}"
692  text run at (0,12186) width 20: "\x{E19}\x{E31}\x{E49}\x{E19}"
693  text run at (0,12204) width 28: "\x{E14}\x{E49}\x{E27}\x{E22}"
694  text run at (0,12222) width 17: "\x{E25}\x{E38}\x{E07}"
695  text run at (0,12240) width 14: "\x{E40}\x{E2E}"
696  text run at (0,12258) width 18: "\x{E19}\x{E23}\x{E35}"
697  text run at (0,12276) width 20: "\x{E1C}\x{E38}\x{E14}"
698  text run at (0,12294) width 19: "\x{E25}\x{E38}\x{E01}"
699  text run at (0,12312) width 19: "\x{E02}\x{E36}\x{E49}\x{E19}"
700  text run at (0,12330) width 37: "\x{E17}\x{E31}\x{E19}\x{E43}\x{E14}"
701  text run at (0,12348) width 26: "\"\x{E25}\x{E21}"
702  text run at (0,12366) width 52: "\x{E44}\x{E0B}\x{E42}\x{E04}\x{E25}\x{E19}"
703  text run at (0,12384) width 18: "\x{E21}\x{E32}"
704  text run at (0,12402) width 31: "\x{E40}\x{E2D}\x{E47}\x{E21}\""
705  text run at (0,12420) width 17: "\x{E25}\x{E38}\x{E07}"
706  text run at (0,12438) width 25: "\x{E23}\x{E49}\x{E2D}\x{E07}"
707  text run at (0,12456) width 29: "\x{E1A}\x{E2D}\x{E01}"
708  text run at (0,12474) width 45: "\x{E20}\x{E23}\x{E23}\x{E22}\x{E32}"
709  text run at (0,12492) width 24: "\"\x{E02}\x{E49}\x{E32}"
710  text run at (0,12510) width 15: "\x{E08}\x{E30}"
711  text run at (0,12528) width 17: "\x{E44}\x{E1B}"
712  text run at (0,12546) width 10: "\x{E14}\x{E39}"
713  text run at (0,12564) width 28: "\x{E2A}\x{E31}\x{E15}\x{E27}\x{E4C}"
714  text run at (0,12582) width 32: "\x{E40}\x{E25}\x{E35}\x{E49}\x{E22}\x{E07}"
715  text run at (0,12600) width 46: "\x{E2B}\x{E19}\x{E48}\x{E2D}\x{E22}\""
716  text run at (0,12618) width 26: "\x{E41}\x{E25}\x{E49}\x{E27}"
717  text run at (0,12636) width 17: "\x{E25}\x{E38}\x{E07}"
718  text run at (0,12654) width 10: "\x{E01}\x{E47}"
719  text run at (0,12672) width 16: "\x{E27}\x{E34}\x{E48}\x{E07}"
720  text run at (0,12690) width 17: "\x{E44}\x{E1B}"
721  text run at (0,12708) width 18: "\x{E22}\x{E31}\x{E07}"
722  text run at (0,12726) width 24: "\x{E40}\x{E1E}\x{E34}\x{E07}"
723  text run at (0,12744) width 10: "\x{E17}\x{E35}\x{E48}"
724  text run at (0,12762) width 16: "\x{E27}\x{E31}\x{E27}"
725  text run at (0,12780) width 25: "\x{E41}\x{E25}\x{E30}"
726  text run at (0,12798) width 18: "\x{E21}\x{E49}\x{E32}"
727  text run at (0,12816) width 37: "\x{E2D}\x{E32}\x{E28}\x{E31}\x{E22}"
728  text run at (0,12834) width 19: "\x{E2D}\x{E22}\x{E39}\x{E48}"
729  text run at (0,12852) width 18: "\x{E1B}\x{E49}\x{E32}"
730  text run at (0,12870) width 24: "\x{E40}\x{E2D}\x{E47}\x{E21}"
731  text run at (0,12888) width 30: "\x{E2B}\x{E22}\x{E38}\x{E14}"
732  text run at (0,12906) width 44: "\x{E17}\x{E33}\x{E07}\x{E32}\x{E19}"
733  text run at (0,12924) width 25: "\x{E41}\x{E25}\x{E30}"
734  text run at (0,12942) width 18: "\x{E21}\x{E32}"
735  text run at (0,12960) width 10: "\x{E17}\x{E35}\x{E48}"
736  text run at (0,12978) width 35: "\x{E1B}\x{E23}\x{E30}\x{E15}\x{E39}"
737  text run at (0,12996) width 34: "\x{E40}\x{E1E}\x{E35}\x{E22}\x{E07}"
738  text run at (0,13014) width 45: "\x{E0A}\x{E32}\x{E22}\x{E15}\x{E32}"
739  text run at (0,13032) width 27: "\x{E21}\x{E2D}\x{E07}"
740  text run at (0,13050) width 18: "\x{E1B}\x{E49}\x{E32}"
741  text run at (0,13068) width 10: "\x{E01}\x{E47}"
742  text run at (0,13086) width 29: "\x{E1A}\x{E2D}\x{E01}"
743  text run at (0,13104) width 17: "\x{E44}\x{E14}\x{E49}"
744  text run at (0,13122) width 16: "\x{E27}\x{E48}\x{E32}"
745  text run at (0,13140) width 55: "\x{E2D}\x{E31}\x{E19}\x{E15}\x{E23}\x{E32}\x{E22}"
746  text run at (0,13158) width 18: "\x{E21}\x{E32}"
747  text run at (0,13176) width 18: "\x{E16}\x{E36}\x{E07}"
748  text run at (0,13194) width 26: "\x{E41}\x{E25}\x{E49}\x{E27}"
749  text run at (0,13212) width 28: "\"\x{E40}\x{E23}\x{E47}\x{E27}"
750  text run at (0,13230) width 17: "\x{E42}\x{E14}"
751  text run at (0,13248) width 36: "\x{E42}\x{E23}\x{E18}\x{E35}!\""
752  text run at (0,13266) width 18: "\x{E1B}\x{E49}\x{E32}"
753  text run at (0,13284) width 44: "\x{E15}\x{E30}\x{E42}\x{E01}\x{E19}"
754  text run at (0,13302) width 23: "\"\x{E27}\x{E34}\x{E48}\x{E07}"
755  text run at (0,13320) width 17: "\x{E44}\x{E1B}"
756  text run at (0,13338) width 27: "\x{E2B}\x{E49}\x{E2D}\x{E07}"
757  text run at (0,13356) width 44: "\x{E43}\x{E15}\x{E49}\x{E16}\x{E38}\x{E19}\""
758  text run at (0,13374) width 17: "\x{E42}\x{E15}"
759  text run at (0,13392) width 17: "\x{E42}\x{E15}\x{E49}"
760  text run at (0,13410) width 29: "\x{E1C}\x{E25}\x{E38}\x{E19}"
761  text run at (0,13428) width 52: "\x{E01}\x{E23}\x{E30}\x{E42}\x{E14}\x{E14}"
762  text run at (0,13446) width 17: "\x{E25}\x{E07}"
763  text run at (0,13464) width 26: "\x{E08}\x{E32}\x{E01}"
764  text run at (0,13482) width 28: "\x{E2D}\x{E49}\x{E2D}\x{E21}"
765  text run at (0,13500) width 28: "\x{E41}\x{E02}\x{E19}"
766  text run at (0,13518) width 17: "\x{E42}\x{E14}"
767  text run at (0,13536) width 24: "\x{E42}\x{E23}\x{E18}\x{E35}"
768  text run at (0,13554) width 26: "\x{E41}\x{E25}\x{E49}\x{E27}"
769  text run at (0,13572) width 39: "\x{E40}\x{E02}\x{E49}\x{E32}\x{E44}\x{E1B}"
770  text run at (0,13590) width 28: "\x{E0B}\x{E48}\x{E2D}\x{E19}"
771  text run at (0,13608) width 19: "\x{E2D}\x{E22}\x{E39}\x{E48}"
772  text run at (0,13626) width 17: "\x{E43}\x{E15}\x{E49}"
773  text run at (0,13644) width 33: "\x{E40}\x{E15}\x{E35}\x{E22}\x{E07}"
774  text run at (0,13662) width 25: "\x{E40}\x{E14}\x{E47}\x{E01}"
775  text run at (0,13680) width 31: "\x{E2B}\x{E0D}\x{E34}\x{E07}"
776  text run at (0,13698) width 29: "\x{E19}\x{E49}\x{E2D}\x{E22}"
777  text run at (0,13716) width 39: "\x{E40}\x{E02}\x{E49}\x{E32}\x{E44}\x{E1B}"
778  text run at (0,13734) width 18: "\x{E14}\x{E36}\x{E07}"
779  text run at (0,13752) width 20: "\x{E21}\x{E31}\x{E19}"
780  text run at (0,13770) width 28: "\x{E2D}\x{E2D}\x{E01}"
781  text run at (0,13788) width 18: "\x{E21}\x{E32}"
782  text run at (0,13806) width 18: "\x{E1B}\x{E49}\x{E32}"
783  text run at (0,13824) width 14: "\x{E40}\x{E2D}\x{E47}"
784  text run at (0,13842) width 20: "\x{E21}\x{E01}"
785  text run at (0,13860) width 15: "\x{E23}\x{E30}"
786  text run at (0,13878) width 27: "\x{E0A}\x{E32}\x{E01}"
787  text run at (0,13896) width 18: "\x{E1D}\x{E32}"
788  text run at (0,13914) width 10: "\x{E17}\x{E35}\x{E48}"
789  text run at (0,13932) width 21: "\x{E1E}\x{E37}\x{E49}\x{E19}"
790  text run at (0,13950) width 28: "\x{E2D}\x{E2D}\x{E01}"
791  text run at (0,13968) width 35: "\x{E2D}\x{E22}\x{E48}\x{E32}\x{E07}"
792  text run at (0,13986) width 19: "\x{E2D}\x{E01}"
793  text run at (0,14004) width 20: "\x{E2A}\x{E31}\x{E48}\x{E19}"
794  text run at (0,14022) width 30: "\x{E02}\x{E27}\x{E31}\x{E0D}"
795  text run at (0,14040) width 28: "\x{E2B}\x{E32}\x{E22}"
796  text run at (0,14058) width 20: "\x{E1B}\x{E35}\x{E19}"
797  text run at (0,14076) width 37: "\x{E1A}\x{E31}\x{E19}\x{E44}\x{E14}"
798  text run at (0,14094) width 17: "\x{E44}\x{E21}\x{E49}"
799  text run at (0,14112) width 17: "\x{E25}\x{E07}"
800  text run at (0,14130) width 17: "\x{E44}\x{E1B}"
801  text run at (0,14148) width 17: "\x{E43}\x{E19}"
802  text run at (0,14166) width 34: "\x{E42}\x{E1E}\x{E23}\x{E07}"
803  text run at (0,14184) width 24: "\x{E40}\x{E25}\x{E47}\x{E01}"
804  text run at (0,14202) width 19: "\x{E2D}\x{E31}\x{E19}"
805  text run at (0,14220) width 20: "\x{E21}\x{E37}\x{E14}"
806  text run at (0,14238) width 20: "\x{E17}\x{E36}\x{E1A}"
807  text run at (0,14256) width 17: "\x{E42}\x{E14}"
808  text run at (0,14274) width 24: "\x{E42}\x{E23}\x{E18}\x{E35}"
809  text run at (0,14292) width 18: "\x{E08}\x{E31}\x{E1A}"
810  text run at (0,14310) width 17: "\x{E42}\x{E15}"
811  text run at (0,14328) width 17: "\x{E42}\x{E15}\x{E49}"
812  text run at (0,14346) width 17: "\x{E44}\x{E14}\x{E49}"
813  text run at (0,14364) width 17: "\x{E43}\x{E19}"
814  text run at (0,14382) width 30: "\x{E17}\x{E35}\x{E48}\x{E2A}\x{E38}\x{E14}"
815  text run at (0,14400) width 25: "\x{E41}\x{E25}\x{E30}"
816  text run at (0,14418) width 16: "\x{E27}\x{E34}\x{E48}\x{E07}"
817  text run at (0,14436) width 28: "\x{E15}\x{E32}\x{E21}"
818  text run at (0,14454) width 18: "\x{E1B}\x{E49}\x{E32}"
819  text run at (0,14472) width 23: "\x{E40}\x{E18}\x{E2D}"
820  text run at (0,14490) width 17: "\x{E44}\x{E1B}"
821  text run at (0,14508) width 24: "\x{E40}\x{E21}\x{E37}\x{E48}\x{E2D}"
822  text run at (0,14526) width 23: "\x{E40}\x{E18}\x{E2D}"
823  text run at (0,14544) width 18: "\x{E21}\x{E32}"
824  text run at (0,14562) width 17: "\x{E44}\x{E14}\x{E49}"
825  text run at (0,14580) width 26: "\x{E04}\x{E23}\x{E36}\x{E48}\x{E07}"
826  text run at (0,14598) width 27: "\x{E2B}\x{E49}\x{E2D}\x{E07}"
827  text run at (0,14616) width 10: "\x{E01}\x{E47}"
828  text run at (0,14634) width 10: "\x{E21}\x{E35}"
829  text run at (0,14652) width 33: "\x{E40}\x{E2A}\x{E35}\x{E22}\x{E07}"
830  text run at (0,14670) width 28: "\x{E2B}\x{E27}\x{E35}\x{E14}"
831  text run at (0,14688) width 27: "\x{E2B}\x{E27}\x{E37}\x{E2D}"
832  text run at (0,14706) width 28: "\x{E2A}\x{E48}\x{E27}\x{E19}"
833  text run at (0,14724) width 28: "\x{E1A}\x{E49}\x{E32}\x{E19}"
834  text run at (0,14742) width 10: "\x{E01}\x{E47}"
835  text run at (0,14760) width 20: "\x{E2A}\x{E31}\x{E48}\x{E19}"
836  text run at (0,14778) width 35: "\x{E2D}\x{E22}\x{E48}\x{E32}\x{E07}"
837  text run at (0,14796) width 25: "\x{E41}\x{E23}\x{E07}"
838  text run at (0,14814) width 18: "\x{E08}\x{E19}"
839  text run at (0,14832) width 23: "\x{E40}\x{E18}\x{E2D}"
840  text run at (0,14850) width 20: "\x{E2B}\x{E01}"
841  text run at (0,14868) width 35: "\x{E04}\x{E30}\x{E21}\x{E33}"
842  text run at (0,14886) width 18: "\x{E19}\x{E31}\x{E48}\x{E07}"
843  text run at (0,14904) width 39: "\x{E08}\x{E49}\x{E33}\x{E40}\x{E1A}\x{E49}\x{E32}"
844  text run at (0,14922) width 19: "\x{E2D}\x{E22}\x{E39}\x{E48}"
845  text run at (0,14940) width 20: "\x{E01}\x{E31}\x{E1A}"
846  text run at (0,14958) width 21: "\x{E1E}\x{E37}\x{E49}\x{E19}"
847  text run at (0,14976) width 26: "\x{E41}\x{E25}\x{E49}\x{E27}"
848  text run at (0,14994) width 18: "\x{E2A}\x{E34}\x{E48}\x{E07}"
849  text run at (0,15012) width 62: "\x{E1B}\x{E23}\x{E30}\x{E2B}\x{E25}\x{E32}\x{E14}"
850  text run at (0,15030) width 10: "\x{E01}\x{E47}"
851  text run at (0,15048) width 25: "\x{E40}\x{E01}\x{E34}\x{E14}"
852  text run at (0,15066) width 19: "\x{E02}\x{E36}\x{E49}\x{E19}"
853  text run at (0,15084) width 28: "\x{E1A}\x{E49}\x{E32}\x{E19}"
854  text run at (0,15102) width 30: "\x{E2B}\x{E21}\x{E38}\x{E19}"
855  text run at (0,15120) width 17: "\x{E44}\x{E1B}"
856  text run at (0,15138) width 30: "\x{E2B}\x{E21}\x{E38}\x{E19}"
857  text run at (0,15156) width 28: "\x{E21}\x{E32}\x{E2A}"
858  text run at (0,15174) width 17: "\x{E2D}\x{E07}"
859  text run at (0,15192) width 28: "\x{E2A}\x{E32}\x{E21}"
860  text run at (0,15210) width 27: "\x{E23}\x{E2D}\x{E1A}"
861  text run at (0,15228) width 26: "\x{E41}\x{E25}\x{E49}\x{E27}"
862  text run at (0,15246) width 10: "\x{E01}\x{E47}"
863  text run at (0,15264) width 28: "\x{E25}\x{E2D}\x{E22}"
864  text run at (0,15282) width 19: "\x{E02}\x{E36}\x{E49}\x{E19}"
865  text run at (0,15300) width 10: "\x{E2A}\x{E39}\x{E48}"
866  text run at (0,15318) width 45: "\x{E2D}\x{E32}\x{E01}\x{E32}\x{E28}"
867  text run at (0,15336) width 35: "\x{E2D}\x{E22}\x{E48}\x{E32}\x{E07}"
868  text run at (0,15354) width 27: "\x{E0A}\x{E49}\x{E32}\x{E46}"
869  text run at (0,15372) width 17: "\x{E42}\x{E14}"
870  text run at (0,15390) width 15: "\x{E42}\x{E23}"
871  text run at (0,15408) width 17: "\x{E18}\x{E35}\x{E23}\x{E39}\x{E49}"
872  text run at (0,15426) width 20: "\x{E2A}\x{E36}\x{E01}"
873  text run at (0,15444) width 44: "\x{E23}\x{E32}\x{E27}\x{E01}\x{E31}\x{E1A}"
874  text run at (0,15462) width 16: "\x{E27}\x{E48}\x{E32}"
875  text run at (0,15480) width 23: "\x{E40}\x{E18}\x{E2D}"
876  text run at (0,15498) width 17: "\x{E44}\x{E14}\x{E49}"
877  text run at (0,15516) width 19: "\x{E02}\x{E36}\x{E49}\x{E19}"
878  text run at (0,15534) width 17: "\x{E44}\x{E1B}"
879  text run at (0,15552) width 20: "\x{E01}\x{E31}\x{E1A}"
880  text run at (0,15570) width 19: "\x{E25}\x{E39}\x{E01}"
881  text run at (0,15588) width 47: "\x{E1A}\x{E2D}\x{E25}\x{E25}\x{E39}\x{E19}"
882  text run at (0,15606) width 29: "\x{E1E}\x{E32}\x{E22}\x{E38}"
883  text run at (0,15624) width 34: "\x{E40}\x{E2B}\x{E19}\x{E37}\x{E2D}"
884  text run at (0,15642) width 20: "\x{E01}\x{E31}\x{E1A}"
885  text run at (0,15660) width 29: "\x{E1E}\x{E32}\x{E22}\x{E38}"
886  text run at (0,15678) width 17: "\x{E43}\x{E15}\x{E49}"
887  text run at (0,15696) width 18: "\x{E21}\x{E32}"
888  text run at (0,15714) width 21: "\x{E1E}\x{E1A}"
889  text run at (0,15732) width 20: "\x{E01}\x{E31}\x{E19}"
890  text run at (0,15750) width 26: "\x{E15}\x{E23}\x{E07}"
891  text run at (0,15768) width 10: "\x{E17}\x{E35}\x{E48}"
892  text run at (0,15786) width 28: "\x{E1A}\x{E49}\x{E32}\x{E19}"
893  text run at (0,15804) width 30: "\x{E1E}\x{E2D}\x{E14}\x{E35}"
894  text run at (0,15822) width 25: "\x{E41}\x{E25}\x{E30}"
895  text run at (0,15840) width 35: "\x{E17}\x{E33}\x{E43}\x{E2B}\x{E49}"
896  text run at (0,15858) width 26: "\x{E15}\x{E23}\x{E07}"
897  text run at (0,15876) width 20: "\x{E19}\x{E31}\x{E49}\x{E19}"
898  text run at (0,15894) width 25: "\x{E40}\x{E1B}\x{E47}\x{E19}"
899  text run at (0,15912) width 83: "\x{E08}\x{E38}\x{E14}\x{E28}\x{E39}\x{E19}\x{E22}\x{E4C}\x{E01}\x{E25}\x{E32}\x{E07}"
900  text run at (0,15930) width 26: "\x{E02}\x{E2D}\x{E07}"
901  text run at (0,15948) width 29: "\x{E1E}\x{E32}\x{E22}\x{E38}"
902  text run at (0,15966) width 52: "\x{E44}\x{E0B}\x{E42}\x{E04}\x{E25}\x{E19}"
903  text run at (0,15984) width 28: "\x{E15}\x{E32}\x{E21}"
904  text run at (0,16002) width 30: "\x{E1B}\x{E01}\x{E15}\x{E34}"
905  text run at (0,16020) width 26: "\x{E15}\x{E23}\x{E07}"
906  text run at (0,16038) width 35: "\x{E01}\x{E25}\x{E32}\x{E07}"
907  text run at (0,16056) width 29: "\x{E1E}\x{E32}\x{E22}\x{E38}"
908  text run at (0,16074) width 52: "\x{E44}\x{E0B}\x{E42}\x{E04}\x{E25}\x{E19}"
909  text run at (0,16092) width 45: "\x{E2D}\x{E32}\x{E01}\x{E32}\x{E28}"
910  text run at (0,16110) width 15: "\x{E08}\x{E30}"
911  text run at (0,16128) width 18: "\x{E19}\x{E34}\x{E48}\x{E07}"
912  text run at (0,16146) width 19: "\x{E41}\x{E15}\x{E48}"
913  text run at (0,16164) width 36: "\x{E04}\x{E27}\x{E32}\x{E21}"
914  text run at (0,16182) width 40: "\x{E01}\x{E14}\x{E14}\x{E31}\x{E19}"
915  text run at (0,16200) width 35: "\x{E2D}\x{E22}\x{E48}\x{E32}\x{E07}"
916  text run at (0,16218) width 30: "\x{E2B}\x{E19}\x{E31}\x{E01}"
917  text run at (0,16236) width 26: "\x{E02}\x{E2D}\x{E07}"
918  text run at (0,16254) width 19: "\x{E25}\x{E21}"
919  text run at (0,16272) width 20: "\x{E17}\x{E38}\x{E01}"
920  text run at (0,16290) width 28: "\x{E14}\x{E49}\x{E32}\x{E19}"
921  text run at (0,16308) width 27: "\x{E23}\x{E2D}\x{E1A}"
922  text run at (0,16326) width 28: "\x{E1A}\x{E49}\x{E32}\x{E19}"
923  text run at (0,16344) width 35: "\x{E17}\x{E33}\x{E43}\x{E2B}\x{E49}"
924  text run at (0,16362) width 28: "\x{E1A}\x{E49}\x{E32}\x{E19}"
925  text run at (0,16380) width 28: "\x{E25}\x{E2D}\x{E22}"
926  text run at (0,16398) width 18: "\x{E2A}\x{E39}\x{E07}"
927  text run at (0,16416) width 29: "\x{E02}\x{E36}\x{E49}\x{E19}\x{E46}"
928  text run at (0,16434) width 18: "\x{E08}\x{E19}"
929  text run at (0,16452) width 43: "\x{E01}\x{E23}\x{E30}\x{E17}\x{E31}\x{E48}\x{E07}"
930  text run at (0,16470) width 19: "\x{E02}\x{E36}\x{E49}\x{E19}"
931  text run at (0,16488) width 17: "\x{E44}\x{E1B}"
932  text run at (0,16506) width 19: "\x{E2D}\x{E22}\x{E39}\x{E48}"
933  text run at (0,16524) width 20: "\x{E2A}\x{E38}\x{E14}"
934  text run at (0,16542) width 29: "\x{E22}\x{E2D}\x{E14}"
935  text run at (0,16560) width 26: "\x{E02}\x{E2D}\x{E07}"
936  text run at (0,16578) width 29: "\x{E1E}\x{E32}\x{E22}\x{E38}"
937  text run at (0,16596) width 52: "\x{E44}\x{E0B}\x{E42}\x{E04}\x{E25}\x{E19}"
938  text run at (0,16614) width 25: "\x{E41}\x{E25}\x{E30}"
939  text run at (0,16632) width 26: "\x{E08}\x{E32}\x{E01}"
940  text run at (0,16650) width 26: "\x{E15}\x{E23}\x{E07}"
941  text run at (0,16668) width 20: "\x{E19}\x{E31}\x{E49}\x{E19}"
942  text run at (0,16686) width 10: "\x{E01}\x{E47}"
943  text run at (0,16704) width 20: "\x{E16}\x{E39}\x{E01}"
944  text run at (0,16722) width 29: "\x{E2B}\x{E2D}\x{E1A}"
945  text run at (0,16740) width 17: "\x{E44}\x{E1B}"
946  text run at (0,16758) width 37: "\x{E2B}\x{E25}\x{E32}\x{E22}"
947  text run at (0,16776) width 26: "\x{E44}\x{E21}\x{E25}\x{E4C}"
948  text run at (0,16794) width 54: "\x{E07}\x{E48}\x{E32}\x{E22}\x{E14}\x{E32}\x{E22}"
949  text run at (0,16812) width 44: "\x{E23}\x{E32}\x{E27}\x{E01}\x{E31}\x{E1A}"
950  text run at (0,16830) width 29: "\x{E2B}\x{E2D}\x{E1A}"
951  text run at (0,16848) width 19: "\x{E02}\x{E19}"
952  text run at (0,16866) width 20: "\x{E19}\x{E01}"
953  text run at (0,16884) width 20: "\x{E21}\x{E37}\x{E14}"
954  text run at (0,16902) width 28: "\x{E21}\x{E32}\x{E01}"
955  text run at (0,16920) width 26: "\x{E41}\x{E25}\x{E49}\x{E27}"
956  text run at (0,16938) width 19: "\x{E25}\x{E21}"
957  text run at (0,16956) width 18: "\x{E22}\x{E31}\x{E07}"
958  text run at (0,16974) width 18: "\x{E2A}\x{E48}\x{E07}"
959  text run at (0,16992) width 33: "\x{E40}\x{E2A}\x{E35}\x{E22}\x{E07}"
960  text run at (0,17010) width 28: "\x{E2B}\x{E27}\x{E35}\x{E14}"
961  text run at (0,17028) width 27: "\x{E2B}\x{E27}\x{E37}\x{E2D}"
962  text run at (0,17046) width 18: "\x{E19}\x{E48}\x{E32}"
963  text run at (0,17064) width 27: "\x{E01}\x{E25}\x{E31}\x{E27}"
964  text run at (0,17082) width 19: "\x{E2D}\x{E22}\x{E39}\x{E48}"
965  text run at (0,17100) width 27: "\x{E23}\x{E2D}\x{E1A}"
966  text run at (0,17118) width 18: "\x{E15}\x{E31}\x{E27}"
967  text run at (0,17136) width 23: "\x{E40}\x{E18}\x{E2D}"
968  text run at (0,17154) width 19: "\x{E41}\x{E15}\x{E48}"
969  text run at (0,17172) width 17: "\x{E42}\x{E14}"
970  text run at (0,17190) width 24: "\x{E42}\x{E23}\x{E18}\x{E35}"
971  text run at (0,17208) width 25: "\x{E40}\x{E2B}\x{E47}\x{E19}"
972  text run at (0,17226) width 16: "\x{E27}\x{E48}\x{E32}"
973  text run at (0,17244) width 23: "\x{E40}\x{E18}\x{E2D}"
974  text run at (0,17262) width 54: "\x{E2A}\x{E32}\x{E21}\x{E32}\x{E23}\x{E16}"
975  text run at (0,17280) width 18: "\x{E19}\x{E31}\x{E48}\x{E07}"
976  text run at (0,17298) width 17: "\x{E44}\x{E1B}"
977  text run at (0,17316) width 17: "\x{E44}\x{E14}\x{E49}"
978  text run at (0,17334) width 35: "\x{E2D}\x{E22}\x{E48}\x{E32}\x{E07}"
979  text run at (0,17352) width 54: "\x{E07}\x{E48}\x{E32}\x{E22}\x{E14}\x{E32}\x{E22}"
980  text run at (0,17370) width 20: "\x{E19}\x{E31}\x{E01}"
981  text run at (0,17388) width 26: "\x{E04}\x{E23}\x{E31}\x{E49}\x{E07}"
982  text run at (0,17406) width 28: "\x{E2B}\x{E19}\x{E36}\x{E48}\x{E07}"
983  text run at (0,17424) width 27: "\x{E2B}\x{E25}\x{E31}\x{E07}"
984  text run at (0,17442) width 26: "\x{E08}\x{E32}\x{E01}"
985  text run at (0,17460) width 10: "\x{E17}\x{E35}\x{E48}"
986  text run at (0,17478) width 28: "\x{E1A}\x{E49}\x{E32}\x{E19}"
987  text run at (0,17496) width 37: "\x{E2A}\x{E30}\x{E14}\x{E38}\x{E14}"
988  text run at (0,17514) width 35: "\x{E2D}\x{E22}\x{E48}\x{E32}\x{E07}"
989  text run at (0,17532) width 25: "\x{E41}\x{E23}\x{E07}"
990  text run at (0,17550) width 25: "\x{E41}\x{E25}\x{E30}"
991  text run at (0,17568) width 30: "\x{E2B}\x{E21}\x{E38}\x{E19}"
992  text run at (0,17586) width 17: "\x{E44}\x{E1B}"
993  text run at (0,17604) width 37: "\x{E23}\x{E2D}\x{E1A}\x{E46}"
994  text run at (0,17622) width 27: "\x{E2A}\x{E2D}\x{E07}"
995  text run at (0,17640) width 28: "\x{E2A}\x{E32}\x{E21}"
996  text run at (0,17658) width 26: "\x{E04}\x{E23}\x{E31}\x{E49}\x{E07}"
997  text run at (0,17676) width 17: "\x{E43}\x{E19}"
998  text run at (0,17694) width 29: "\x{E15}\x{E2D}\x{E19}"
999  text run at (0,17712) width 27: "\x{E41}\x{E23}\x{E01}"
1000  text run at (0,17730) width 23: "\x{E40}\x{E18}\x{E2D}"
1001  text run at (0,17748) width 10: "\x{E01}\x{E47}"
1002  text run at (0,17766) width 28: "\x{E23}\x{E39}\x{E49}\x{E2A}\x{E36}\x{E01}"
1003  text run at (0,17784) width 16: "\x{E27}\x{E48}\x{E32}"
1004  text run at (0,17802) width 18: "\x{E15}\x{E31}\x{E27}"
1005  text run at (0,17820) width 22: "\x{E40}\x{E2D}\x{E07}"
1006  text run at (0,17838) width 20: "\x{E16}\x{E39}\x{E01}"
1007  text run at (0,17856) width 35: "\x{E41}\x{E01}\x{E27}\x{E48}\x{E07}"
1008  text run at (0,17874) width 35: "\x{E2D}\x{E22}\x{E48}\x{E32}\x{E07}"
1009  text run at (0,17892) width 27: "\x{E41}\x{E1C}\x{E48}\x{E27}"
1010  text run at (0,17910) width 23: "\x{E40}\x{E1A}\x{E32}"
1011  text run at (0,17928) width 24: "\x{E23}\x{E32}\x{E27}"
1012  text run at (0,17946) width 36: "\x{E17}\x{E32}\x{E23}\x{E01}"
1013  text run at (0,17964) width 17: "\x{E43}\x{E19}"
1014  text run at (0,17982) width 24: "\x{E40}\x{E1B}\x{E25}"
1015  text run at (0,18000) width 17: "\x{E42}\x{E15}"
1016  text run at (0,18018) width 17: "\x{E42}\x{E15}\x{E49}"
1017  text run at (0,18036) width 17: "\x{E44}\x{E21}\x{E48}"
1018  text run at (0,18054) width 43: "\x{E0A}\x{E2D}\x{E1A}\x{E43}\x{E08}"
1019  text run at (0,18072) width 24: "\x{E40}\x{E25}\x{E22}"
1020  text run at (0,18090) width 20: "\x{E21}\x{E31}\x{E19}"
1021  text run at (0,18108) width 16: "\x{E27}\x{E34}\x{E48}\x{E07}"
1022  text run at (0,18126) width 17: "\x{E44}\x{E1B}"
1023  text run at (0,18144) width 16: "\x{E27}\x{E34}\x{E48}\x{E07}"
1024  text run at (0,18162) width 26: "\x{E21}\x{E32}\x{E23}"
1025  text run at (0,18180) width 19: "\x{E2D}\x{E1A}"
1026  text run at (0,18198) width 27: "\x{E2B}\x{E49}\x{E2D}\x{E07}"
1027  text run at (0,18216) width 26: "\x{E17}\x{E32}\x{E07}"
1028  text run at (0,18234) width 27: "\x{E42}\x{E19}\x{E49}\x{E19}"
1029  text run at (0,18252) width 10: "\x{E17}\x{E35}"
1030  text run at (0,18270) width 26: "\x{E17}\x{E32}\x{E07}"
1031  text run at (0,18288) width 10: "\x{E19}\x{E35}\x{E49}"
1032  text run at (0,18306) width 10: "\x{E17}\x{E35}"
1033  text run at (0,18324) width 18: "\x{E2A}\x{E48}\x{E07}"
1034  text run at (0,18342) width 33: "\x{E40}\x{E2A}\x{E35}\x{E22}\x{E07}"
1035  text run at (0,18360) width 23: "\x{E40}\x{E2B}\x{E48}\x{E32}"
1036  text run at (0,18378) width 18: "\x{E14}\x{E31}\x{E07}"
1037  text run at (0,18396) width 27: "\x{E01}\x{E49}\x{E2D}\x{E07}"
1038  text run at (0,18414) width 19: "\x{E41}\x{E15}\x{E48}"
1039  text run at (0,18432) width 17: "\x{E42}\x{E14}"
1040  text run at (0,18450) width 24: "\x{E42}\x{E23}\x{E18}\x{E35}"
1041  text run at (0,18468) width 18: "\x{E19}\x{E31}\x{E48}\x{E07}"
1042  text run at (0,18486) width 18: "\x{E19}\x{E34}\x{E48}\x{E07}"
1043  text run at (0,18504) width 19: "\x{E2D}\x{E22}\x{E39}\x{E48}"
1044  text run at (0,18522) width 20: "\x{E1A}\x{E19}"
1045  text run at (0,18540) width 21: "\x{E1E}\x{E37}\x{E49}\x{E19}"
1046  text run at (0,18558) width 23: "\x{E40}\x{E1D}\x{E49}\x{E32}"
1047  text run at (0,18576) width 29: "\x{E04}\x{E2D}\x{E22}"
1048  text run at (0,18594) width 10: "\x{E14}\x{E39}"
1049  text run at (0,18612) width 16: "\x{E27}\x{E48}\x{E32}"
1050  text run at (0,18630) width 15: "\x{E08}\x{E30}"
1051  text run at (0,18648) width 25: "\x{E40}\x{E01}\x{E34}\x{E14}"
1052  text run at (0,18666) width 31: "\x{E2D}\x{E30}\x{E44}\x{E23}"
1053  text run at (0,18684) width 19: "\x{E02}\x{E36}\x{E49}\x{E19}"
1054  text run at (0,18702) width 26: "\x{E04}\x{E23}\x{E31}\x{E49}\x{E07}"
1055  text run at (0,18720) width 28: "\x{E2B}\x{E19}\x{E36}\x{E48}\x{E07}"
1056  text run at (0,18738) width 17: "\x{E42}\x{E15}"
1057  text run at (0,18756) width 17: "\x{E42}\x{E15}\x{E49}"
1058  text run at (0,18774) width 39: "\x{E40}\x{E02}\x{E49}\x{E32}\x{E44}\x{E1B}"
1059  text run at (0,18792) width 26: "\x{E43}\x{E01}\x{E25}\x{E49}"
1060  text run at (0,18810) width 18: "\x{E1D}\x{E32}"
1061  text run at (0,18828) width 10: "\x{E17}\x{E35}\x{E48}"
1062  text run at (0,18846) width 21: "\x{E1E}\x{E37}\x{E49}\x{E19}"
1063  text run at (0,18864) width 28: "\x{E21}\x{E32}\x{E01}"
1064  text run at (0,18882) width 17: "\x{E44}\x{E1B}"
1065  text run at (0,18900) width 24: "\x{E40}\x{E25}\x{E22}"
1066  text run at (0,18918) width 30: "\x{E1E}\x{E25}\x{E31}\x{E14}"
1067  text run at (0,18936) width 37: "\x{E15}\x{E01}\x{E25}\x{E07}"
1068  text run at (0,18954) width 17: "\x{E44}\x{E1B}"
1069  text run at (0,18972) width 10: "\x{E17}\x{E35}"
1070  text run at (0,18990) width 27: "\x{E41}\x{E23}\x{E01}"
1071  text run at (0,19008) width 25: "\x{E40}\x{E14}\x{E47}\x{E01}"
1072  text run at (0,19026) width 31: "\x{E2B}\x{E0D}\x{E34}\x{E07}"
1073  text run at (0,19044) width 20: "\x{E04}\x{E34}\x{E14}"
1074  text run at (0,19062) width 16: "\x{E27}\x{E48}\x{E32}"
1075  text run at (0,19080) width 23: "\x{E40}\x{E18}\x{E2D}"
1076  text run at (0,19098) width 15: "\x{E08}\x{E30}"
1077  text run at (0,19116) width 23: "\x{E2A}\x{E39}\x{E0D}"
1078  text run at (0,19134) width 25: "\x{E40}\x{E2A}\x{E35}\x{E22}"
1079  text run at (0,19152) width 20: "\x{E21}\x{E31}\x{E19}"
1080  text run at (0,19170) width 17: "\x{E44}\x{E1B}"
1081  text run at (0,19188) width 25: "\x{E40}\x{E2A}\x{E35}\x{E22}"
1082  text run at (0,19206) width 26: "\x{E41}\x{E25}\x{E49}\x{E27}"
1083  text run at (0,19224) width 19: "\x{E41}\x{E15}\x{E48}"
1084  text run at (0,19242) width 17: "\x{E0A}\x{E31}\x{E48}\x{E27}"
1085  text run at (0,19260) width 18: "\x{E04}\x{E23}\x{E39}\x{E48}"
1086  text run at (0,19278) width 23: "\x{E40}\x{E18}\x{E2D}"
1087  text run at (0,19296) width 10: "\x{E01}\x{E47}"
1088  text run at (0,19314) width 25: "\x{E40}\x{E2B}\x{E47}\x{E19}"
1089  text run at (0,19332) width 10: "\x{E2B}\x{E39}"
1090  text run at (0,19350) width 26: "\x{E02}\x{E2D}\x{E07}"
1091  text run at (0,19368) width 20: "\x{E21}\x{E31}\x{E19}"
1092  text run at (0,19386) width 26: "\x{E42}\x{E1C}\x{E25}\x{E48}"
1093  text run at (0,19404) width 19: "\x{E02}\x{E36}\x{E49}\x{E19}"
1094  text run at (0,19422) width 18: "\x{E21}\x{E32}"
1095  text run at (0,19440) width 26: "\x{E08}\x{E32}\x{E01}"
1096  text run at (0,19458) width 26: "\x{E0A}\x{E48}\x{E2D}\x{E07}"
1097  text run at (0,19476) width 20: "\x{E19}\x{E31}\x{E49}\x{E19}"
1098  text run at (0,19494) width 28: "\x{E17}\x{E31}\x{E49}\x{E07}\x{E19}\x{E35}\x{E49}"
1099  text run at (0,19512) width 39: "\x{E40}\x{E1E}\x{E23}\x{E32}\x{E30}"
1100  text run at (0,19530) width 25: "\x{E41}\x{E23}\x{E07}"
1101  text run at (0,19548) width 20: "\x{E01}\x{E14}"
1102  text run at (0,19566) width 35: "\x{E2D}\x{E22}\x{E48}\x{E32}\x{E07}"
1103  text run at (0,19584) width 30: "\x{E2B}\x{E19}\x{E31}\x{E01}"
1104  text run at (0,19602) width 26: "\x{E02}\x{E2D}\x{E07}"
1105  text run at (0,19620) width 45: "\x{E2D}\x{E32}\x{E01}\x{E32}\x{E28}"
1106  text run at (0,19638) width 35: "\x{E17}\x{E33}\x{E43}\x{E2B}\x{E49}"
1107  text run at (0,19656) width 17: "\x{E42}\x{E15}"
1108  text run at (0,19674) width 17: "\x{E42}\x{E15}\x{E49}"
1109  text run at (0,19692) width 17: "\x{E44}\x{E21}\x{E48}"
1110  text run at (0,19710) width 37: "\x{E15}\x{E01}\x{E25}\x{E07}"
1111  text run at (0,19728) width 17: "\x{E44}\x{E1B}"
1112  text run at (0,19746) width 25: "\x{E02}\x{E49}\x{E32}\x{E07}"
1113  text run at (0,19764) width 25: "\x{E25}\x{E48}\x{E32}\x{E07}"
1114  text run at (0,19782) width 17: "\x{E42}\x{E14}"
1115  text run at (0,19800) width 24: "\x{E42}\x{E23}\x{E18}\x{E35}"
1116  text run at (0,19818) width 37: "\x{E04}\x{E25}\x{E32}\x{E19}"
1117  text run at (0,19836) width 17: "\x{E44}\x{E1B}"
1118  text run at (0,19854) width 10: "\x{E17}\x{E35}\x{E48}"
1119  text run at (0,19872) width 26: "\x{E0A}\x{E48}\x{E2D}\x{E07}"
1120  text run at (0,19890) width 20: "\x{E19}\x{E31}\x{E49}\x{E19}"
1121  text run at (0,19908) width 18: "\x{E08}\x{E31}\x{E1A}"
1122  text run at (0,19926) width 10: "\x{E2B}\x{E39}"
1123  text run at (0,19944) width 17: "\x{E42}\x{E15}"
1124  text run at (0,19962) width 17: "\x{E42}\x{E15}\x{E49}"
1125  text run at (0,19980) width 15: "\x{E44}\x{E27}\x{E49}"
1126  text run at (0,19998) width 17: "\x{E44}\x{E14}\x{E49}"
1127  text run at (0,20016) width 25: "\x{E41}\x{E25}\x{E30}"
1128  text run at (0,20034) width 27: "\x{E25}\x{E32}\x{E01}"
1129  text run at (0,20052) width 20: "\x{E21}\x{E31}\x{E19}"
1130  text run at (0,20070) width 18: "\x{E21}\x{E32}"
1131  text run at (0,20088) width 10: "\x{E17}\x{E35}\x{E48}"
1132  text run at (0,20106) width 27: "\x{E2B}\x{E49}\x{E2D}\x{E07}"
1133  text run at (0,20124) width 19: "\x{E2D}\x{E35}\x{E01}"
1134  text run at (0,20142) width 27: "\x{E2B}\x{E25}\x{E31}\x{E07}"
1135  text run at (0,20160) width 26: "\x{E08}\x{E32}\x{E01}"
1136  text run at (0,20178) width 20: "\x{E19}\x{E31}\x{E49}\x{E19}"
1137  text run at (0,20196) width 10: "\x{E01}\x{E47}"
1138  text run at (0,20214) width 20: "\x{E1B}\x{E34}\x{E14}"
1139  text run at (0,20232) width 18: "\x{E1D}\x{E32}"
1140  text run at (0,20250) width 21: "\x{E1E}\x{E37}\x{E49}\x{E19}"
1141  text run at (0,20268) width 25: "\x{E40}\x{E1E}\x{E37}\x{E48}\x{E2D}"
1142  text run at (0,20286) width 15: "\x{E08}\x{E30}"
1143  text run at (0,20304) width 17: "\x{E44}\x{E14}\x{E49}"
1144  text run at (0,20322) width 17: "\x{E44}\x{E21}\x{E48}"
1145  text run at (0,20340) width 25: "\x{E40}\x{E01}\x{E34}\x{E14}"
1146  text run at (0,20358) width 54: "\x{E2D}\x{E38}\x{E1A}\x{E31}\x{E15}\x{E34}\x{E40}\x{E2B}\x{E15}\x{E38}"
1147  text run at (0,20376) width 19: "\x{E2D}\x{E35}\x{E01}"
1148  text run at (0,20394) width 42: "\x{E0A}\x{E31}\x{E48}\x{E27}\x{E42}\x{E21}\x{E07}"
1149  text run at (0,20412) width 26: "\x{E41}\x{E25}\x{E49}\x{E27}"
1150  text run at (0,20430) width 42: "\x{E0A}\x{E31}\x{E48}\x{E27}\x{E42}\x{E21}\x{E07}"
1151  text run at (0,20448) width 22: "\x{E40}\x{E25}\x{E48}\x{E32}"
1152  text run at (0,20466) width 28: "\x{E1C}\x{E48}\x{E32}\x{E19}"
1153  text run at (0,20484) width 17: "\x{E44}\x{E1B}"
1154  text run at (0,20502) width 17: "\x{E42}\x{E14}"
1155  text run at (0,20520) width 24: "\x{E42}\x{E23}\x{E18}\x{E35}"
1156  text run at (0,20538) width 39: "\x{E04}\x{E48}\x{E2D}\x{E22}\x{E46}"
1157  text run at (0,20556) width 28: "\x{E2B}\x{E32}\x{E22}"
1158  text run at (0,20574) width 27: "\x{E01}\x{E25}\x{E31}\x{E27}"
1159  text run at (0,20592) width 19: "\x{E41}\x{E15}\x{E48}"
1160  text run at (0,20610) width 23: "\x{E40}\x{E18}\x{E2D}"
1161  text run at (0,20628) width 28: "\x{E23}\x{E39}\x{E49}\x{E2A}\x{E36}\x{E01}"
1162  text run at (0,20646) width 31: "\x{E40}\x{E2B}\x{E07}\x{E32}"
1163  text run at (0,20664) width 33: "\x{E40}\x{E2B}\x{E25}\x{E37}\x{E2D}"
1164  text run at (0,20682) width 25: "\x{E40}\x{E01}\x{E34}\x{E19}"
1165  text run at (0,20700) width 25: "\x{E41}\x{E25}\x{E30}"
1166  text run at (0,20718) width 19: "\x{E25}\x{E21}"
1167  text run at (0,20736) width 10: "\x{E01}\x{E47}"
1168  text run at (0,20754) width 18: "\x{E2A}\x{E48}\x{E07}"
1169  text run at (0,20772) width 33: "\x{E40}\x{E2A}\x{E35}\x{E22}\x{E07}"
1170  text run at (0,20790) width 28: "\x{E2B}\x{E27}\x{E35}\x{E14}"
1171  text run at (0,20808) width 27: "\x{E2B}\x{E27}\x{E37}\x{E2D}"
1172  text run at (0,20826) width 18: "\x{E14}\x{E31}\x{E07}"
1173  text run at (0,20844) width 25: "\x{E40}\x{E2A}\x{E35}\x{E22}"
1174  text run at (0,20862) width 18: "\x{E08}\x{E19}"
1175  text run at (0,20880) width 23: "\x{E40}\x{E18}\x{E2D}"
1176  text run at (0,20898) width 29: "\x{E41}\x{E17}\x{E1A}"
1177  text run at (0,20916) width 15: "\x{E08}\x{E30}"
1178  text run at (0,20934) width 10: "\x{E2B}\x{E39}"
1179  text run at (0,20952) width 38: "\x{E2B}\x{E19}\x{E27}\x{E01}"
1180  text run at (0,20970) width 10: "\x{E17}\x{E35}"
1181  text run at (0,20988) width 27: "\x{E41}\x{E23}\x{E01}"
1182  text run at (0,21006) width 23: "\x{E40}\x{E18}\x{E2D}"
1183  text run at (0,21024) width 38: "\x{E2A}\x{E07}\x{E2A}\x{E31}\x{E22}"
1184  text run at (0,21042) width 16: "\x{E27}\x{E48}\x{E32}"
1185  text run at (0,21060) width 33: "\x{E04}\x{E07}\x{E08}\x{E30}"
1186  text run at (0,21078) width 20: "\x{E16}\x{E39}\x{E01}"
1187  text run at (0,21096) width 20: "\x{E09}\x{E35}\x{E01}"
1188  text run at (0,21114) width 52: "\x{E01}\x{E23}\x{E30}\x{E0A}\x{E32}\x{E01}"
1189  text run at (0,21132) width 28: "\x{E2D}\x{E2D}\x{E01}"
1190  text run at (0,21150) width 25: "\x{E40}\x{E1B}\x{E47}\x{E19}"
1191  text run at (0,21168) width 19: "\x{E0A}\x{E34}\x{E49}\x{E19}"
1192  text run at (0,21186) width 24: "\x{E40}\x{E25}\x{E47}\x{E01}"
1193  text run at (0,21204) width 19: "\x{E0A}\x{E34}\x{E49}\x{E19}"
1194  text run at (0,21222) width 29: "\x{E19}\x{E49}\x{E2D}\x{E22}"
1195  text run at (0,21240) width 24: "\x{E40}\x{E21}\x{E37}\x{E48}\x{E2D}"
1196  text run at (0,21258) width 28: "\x{E1A}\x{E49}\x{E32}\x{E19}"
1197  text run at (0,21276) width 24: "\x{E40}\x{E2D}\x{E19}"
1198  text run at (0,21294) width 19: "\x{E25}\x{E49}\x{E21}"
1199  text run at (0,21312) width 17: "\x{E25}\x{E07}"
1200  text run at (0,21330) width 19: "\x{E2D}\x{E35}\x{E01}"
1201  text run at (0,21348) width 26: "\x{E04}\x{E23}\x{E31}\x{E49}\x{E07}"
1202  text run at (0,21366) width 19: "\x{E41}\x{E15}\x{E48}"
1203  text run at (0,21384) width 37: "\x{E2B}\x{E25}\x{E32}\x{E22}"
1204  text run at (0,21402) width 42: "\x{E0A}\x{E31}\x{E48}\x{E27}\x{E42}\x{E21}\x{E07}"
1205  text run at (0,21420) width 28: "\x{E1C}\x{E48}\x{E32}\x{E19}"
1206  text run at (0,21438) width 17: "\x{E44}\x{E1B}"
1207  text run at (0,21456) width 10: "\x{E01}\x{E47}"
1208  text run at (0,21474) width 27: "\x{E44}\x{E21}\x{E48}\x{E21}\x{E35}"
1209  text run at (0,21492) width 31: "\x{E2D}\x{E30}\x{E44}\x{E23}"
1210  text run at (0,21510) width 25: "\x{E40}\x{E01}\x{E34}\x{E14}"
1211  text run at (0,21528) width 19: "\x{E02}\x{E36}\x{E49}\x{E19}"
1212  text run at (0,21546) width 23: "\x{E40}\x{E18}\x{E2D}"
1213  text run at (0,21564) width 24: "\x{E40}\x{E25}\x{E22}"
1214  text run at (0,21582) width 24: "\x{E40}\x{E25}\x{E34}\x{E01}"
1215  text run at (0,21600) width 28: "\x{E27}\x{E34}\x{E15}\x{E01}"
1216  text run at (0,21618) width 25: "\x{E41}\x{E25}\x{E30}"
1217  text run at (0,21636) width 40: "\x{E15}\x{E31}\x{E14}\x{E2A}\x{E34}\x{E19}"
1218  text run at (0,21654) width 15: "\x{E43}\x{E08}"
1219  text run at (0,21672) width 29: "\x{E04}\x{E2D}\x{E22}"
1220  text run at (0,21690) width 10: "\x{E14}\x{E39}"
1221  text run at (0,21708) width 35: "\x{E2D}\x{E22}\x{E48}\x{E32}\x{E07}"
1222  text run at (0,21726) width 28: "\x{E2A}\x{E07}\x{E1A}"
1223  text run at (0,21744) width 25: "\x{E41}\x{E25}\x{E30}"
1224  text run at (0,21762) width 17: "\x{E23}\x{E2D}"
1225  text run at (0,21780) width 16: "\x{E27}\x{E48}\x{E32}"
1226  text run at (0,21798) width 47: "\x{E2D}\x{E19}\x{E32}\x{E04}\x{E15}"
1227  text run at (0,21816) width 15: "\x{E08}\x{E30}"
1228  text run at (0,21834) width 25: "\x{E40}\x{E1B}\x{E47}\x{E19}"
1229  text run at (0,21852) width 50: "\x{E2D}\x{E22}\x{E48}\x{E32}\x{E07}\x{E44}\x{E23}"
1230  text run at (0,21870) width 17: "\x{E43}\x{E19}"
1231  text run at (0,21888) width 30: "\x{E17}\x{E35}\x{E48}\x{E2A}\x{E38}\x{E14}"
1232  text run at (0,21906) width 23: "\x{E40}\x{E18}\x{E2D}"
1233  text run at (0,21924) width 37: "\x{E04}\x{E25}\x{E32}\x{E19}"
1234  text run at (0,21942) width 26: "\x{E08}\x{E32}\x{E01}"
1235  text run at (0,21960) width 21: "\x{E1E}\x{E37}\x{E49}\x{E19}"
1236  text run at (0,21978) width 27: "\x{E2B}\x{E49}\x{E2D}\x{E07}"
1237  text run at (0,21996) width 10: "\x{E17}\x{E35}\x{E48}"
1238  text run at (0,22014) width 27: "\x{E42}\x{E22}\x{E01}"
1239  text run at (0,22032) width 17: "\x{E44}\x{E1B}"
1240  text run at (0,22050) width 18: "\x{E21}\x{E32}"
1241  text run at (0,22068) width 19: "\x{E02}\x{E36}\x{E49}\x{E19}"
1242  text run at (0,22086) width 17: "\x{E44}\x{E1B}"
1243  text run at (0,22104) width 20: "\x{E1A}\x{E19}"
1244  text run at (0,22122) width 33: "\x{E40}\x{E15}\x{E35}\x{E22}\x{E07}"
1245  text run at (0,22140) width 26: "\x{E41}\x{E25}\x{E49}\x{E27}"
1246  text run at (0,22158) width 10: "\x{E01}\x{E47}"
1247  text run at (0,22176) width 29: "\x{E19}\x{E2D}\x{E19}"
1248  text run at (0,22194) width 17: "\x{E25}\x{E07}"
1249  text run at (0,22212) width 17: "\x{E42}\x{E15}"
1250  text run at (0,22230) width 17: "\x{E42}\x{E15}\x{E49}"
1251  text run at (0,22248) width 28: "\x{E15}\x{E32}\x{E21}"
1252  text run at (0,22266) width 20: "\x{E15}\x{E34}\x{E14}"
1253  text run at (0,22284) width 18: "\x{E21}\x{E32}"
1254  text run at (0,22302) width 29: "\x{E19}\x{E2D}\x{E19}"
1255  text run at (0,22320) width 17: "\x{E25}\x{E07}"
1256  text run at (0,22338) width 36: "\x{E43}\x{E01}\x{E25}\x{E49}\x{E46}"
1257  text run at (0,22356) width 23: "\x{E40}\x{E18}\x{E2D}"
1258  text run at (0,22374) width 17: "\x{E44}\x{E21}\x{E48}"
1259  text run at (0,22392) width 17: "\x{E0A}\x{E49}\x{E32}"
1260  text run at (0,22410) width 17: "\x{E42}\x{E14}"
1261  text run at (0,22428) width 24: "\x{E42}\x{E23}\x{E18}\x{E35}"
1262  text run at (0,22446) width 10: "\x{E01}\x{E47}"
1263  text run at (0,22464) width 20: "\x{E1B}\x{E34}\x{E14}"
1264  text run at (0,22482) width 18: "\x{E15}\x{E32}"
1265  text run at (0,22500) width 17: "\x{E25}\x{E07}"
1266  text run at (0,22518) width 29: "\x{E2B}\x{E25}\x{E31}\x{E1A}"
1267  text run at (0,22536) width 38: "\x{E1C}\x{E25}\x{E47}\x{E2D}\x{E22}"
1268  text run at (0,22554) width 17: "\x{E44}\x{E1B}"
1269  text run at (0,22572) width 35: "\x{E2D}\x{E22}\x{E48}\x{E32}\x{E07}"
1270  text run at (0,22590) width 30: "\x{E2A}\x{E19}\x{E34}\x{E17}"
1271  text run at (0,22608) width 28: "\x{E17}\x{E31}\x{E49}\x{E07}\x{E46}"
1272  text run at (0,22626) width 10: "\x{E17}\x{E35}\x{E48}"
1273  text run at (0,22644) width 28: "\x{E1A}\x{E49}\x{E32}\x{E19}"
1274  text run at (0,22662) width 27: "\x{E42}\x{E22}\x{E01}"
1275  text run at (0,22680) width 17: "\x{E44}\x{E1B}"
1276  text run at (0,22698) width 18: "\x{E21}\x{E32}"
1277  text run at (0,22716) width 25: "\x{E41}\x{E25}\x{E30}"
1278  text run at (0,22734) width 19: "\x{E25}\x{E21}"
1279  text run at (0,22752) width 10: "\x{E01}\x{E47}"
1280  text run at (0,22770) width 34: "\x{E04}\x{E23}\x{E32}\x{E07}"
1281  text run at (0,22788) width 28: "\x{E2B}\x{E27}\x{E35}\x{E14}"
1282  text run at (0,22806) width 27: "\x{E2B}\x{E27}\x{E37}\x{E2D}"
1283 layer at (471,96) size 1x24030
1284  RenderBlock (positioned) {DIV} at (471,96) size 1x24030
1285  RenderText {#text} at (0,0) size 72x24030
1286  text run at (0,0) width 20: "\x{E1A}\x{E17}"
1287  text run at (0,18) width 10: "\x{E17}\x{E35}\x{E48}"
1288  text run at (0,36) width 10: "\x{E51}"
1289  text run at (0,54) width 29: "\x{E1E}\x{E32}\x{E22}\x{E38}"
1290  text run at (0,72) width 52: "\x{E44}\x{E0B}\x{E42}\x{E04}\x{E25}\x{E19}"
1291  text run at (0,90) width 17: "\x{E42}\x{E14}"
1292  text run at (0,108) width 24: "\x{E42}\x{E23}\x{E18}\x{E35}"
1293  text run at (0,126) width 37: "\x{E2D}\x{E32}\x{E28}\x{E31}\x{E22}"
1294  text run at (0,144) width 19: "\x{E2D}\x{E22}\x{E39}\x{E48}"
1295  text run at (0,162) width 18: "\x{E17}\x{E48}\x{E32}"
1296  text run at (0,180) width 10: "\x{E21}"
1297  text run at (0,198) width 35: "\x{E01}\x{E25}\x{E32}\x{E07}"
1298  text run at (0,216) width 18: "\x{E17}\x{E38}\x{E48}\x{E07}"
1299  text run at (0,234) width 30: "\x{E43}\x{E2B}\x{E0D}\x{E48}"
1300  text run at (0,252) width 17: "\x{E43}\x{E19}"
1301  text run at (0,270) width 48: "\x{E41}\x{E04}\x{E19}\x{E0B}\x{E31}\x{E2A}"
1302  text run at (0,288) width 20: "\x{E01}\x{E31}\x{E1A}"
1303  text run at (0,306) width 17: "\x{E25}\x{E38}\x{E07}"
1304  text run at (0,324) width 14: "\x{E40}\x{E2E}"
1305  text run at (0,342) width 18: "\x{E19}\x{E23}\x{E35}"
1306  text run at (0,360) width 25: "\x{E0A}\x{E32}\x{E27}"
1307  text run at (0,378) width 15: "\x{E44}\x{E23}\x{E48}"
1308  text run at (0,396) width 25: "\x{E41}\x{E25}\x{E30}"
1309  text run at (0,414) width 18: "\x{E1B}\x{E49}\x{E32}"
1310  text run at (0,432) width 24: "\x{E40}\x{E2D}\x{E47}\x{E21}"
1311  text run at (0,450) width 45: "\x{E20}\x{E23}\x{E23}\x{E22}\x{E32}"
1312  text run at (0,468) width 40: "\x{E0A}\x{E32}\x{E27}\x{E44}\x{E23}\x{E48}"
1313  text run at (0,486) width 28: "\x{E1A}\x{E49}\x{E32}\x{E19}"
1314  text run at (0,504) width 26: "\x{E02}\x{E2D}\x{E07}"
1315  text run at (0,522) width 29: "\x{E1E}\x{E27}\x{E01}"
1316  text run at (0,540) width 22: "\x{E40}\x{E02}\x{E32}"
1317  text run at (0,558) width 27: "\x{E2B}\x{E25}\x{E31}\x{E07}"
1318  text run at (0,576) width 24: "\x{E40}\x{E25}\x{E47}\x{E01}"
1319  text run at (0,594) width 39: "\x{E40}\x{E1E}\x{E23}\x{E32}\x{E30}"
1320  text run at (0,612) width 17: "\x{E44}\x{E21}\x{E49}"
1321  text run at (0,630) width 34: "\x{E2A}\x{E23}\x{E49}\x{E32}\x{E07}"
1322  text run at (0,648) width 28: "\x{E1A}\x{E49}\x{E32}\x{E19}"
1323  text run at (0,666) width 27: "\x{E15}\x{E49}\x{E2D}\x{E07}"
1324  text run at (0,684) width 19: "\x{E02}\x{E19}"
1325  text run at (0,702) width 18: "\x{E21}\x{E32}"
1326  text run at (0,720) width 28: "\x{E14}\x{E49}\x{E27}\x{E22}"
1327  text run at (0,738) width 43: "\x{E40}\x{E01}\x{E27}\x{E35}\x{E22}\x{E19}"
1328  text run at (0,756) width 25: "\x{E40}\x{E1B}\x{E47}\x{E19}"
1329  text run at (0,774) width 32: "\x{E23}\x{E30}\x{E22}\x{E30}"
1330  text run at (0,792) width 26: "\x{E17}\x{E32}\x{E07}"
1331  text run at (0,810) width 37: "\x{E2B}\x{E25}\x{E32}\x{E22}"
1332  text run at (0,828) width 26: "\x{E44}\x{E21}\x{E25}\x{E4C}"
1333  text run at (0,846) width 28: "\x{E1A}\x{E49}\x{E32}\x{E19}"
1334  text run at (0,864) width 10: "\x{E21}\x{E35}"
1335  text run at (0,882) width 10: "\x{E2A}\x{E35}\x{E48}"
1336  text run at (0,900) width 18: "\x{E1D}\x{E32}"
1337  text run at (0,918) width 10: "\x{E21}\x{E35}"
1338  text run at (0,936) width 21: "\x{E1E}\x{E37}\x{E49}\x{E19}"
1339  text run at (0,954) width 20: "\x{E01}\x{E31}\x{E1A}"
1340  text run at (0,972) width 45: "\x{E2B}\x{E25}\x{E31}\x{E07}\x{E04}\x{E32}"
1341  text run at (0,990) width 26: "\x{E23}\x{E27}\x{E21}"
1342  text run at (0,1008) width 18: "\x{E17}\x{E33}"
1343  text run at (0,1026) width 25: "\x{E40}\x{E1B}\x{E47}\x{E19}"
1344  text run at (0,1044) width 27: "\x{E2B}\x{E49}\x{E2D}\x{E07}"
1345  text run at (0,1062) width 33: "\x{E40}\x{E14}\x{E35}\x{E22}\x{E27}"
1346  text run at (0,1080) width 17: "\x{E43}\x{E19}"
1347  text run at (0,1098) width 27: "\x{E2B}\x{E49}\x{E2D}\x{E07}"
1348  text run at (0,1116) width 10: "\x{E21}\x{E35}"
1349  text run at (0,1134) width 18: "\x{E17}\x{E31}\x{E49}\x{E07}"
1350  text run at (0,1152) width 23: "\x{E40}\x{E15}\x{E32}"
1351  text run at (0,1170) width 18: "\x{E2B}\x{E38}\x{E07}"
1352  text run at (0,1188) width 20: "\x{E15}\x{E49}\x{E21}"
1353  text run at (0,1206) width 10: "\x{E17}\x{E35}\x{E48}"
1354  text run at (0,1224) width 30: "\x{E2A}\x{E19}\x{E34}\x{E21}"
1355  text run at (0,1242) width 10: "\x{E14}\x{E39}"
1356  text run at (0,1260) width 19: "\x{E02}\x{E36}\x{E49}\x{E19}"
1357  text run at (0,1278) width 30: "\x{E40}\x{E25}\x{E2D}\x{E30}"
1358  text run at (0,1296) width 10: "\x{E21}\x{E35}"
1359  text run at (0,1314) width 10: "\x{E15}\x{E39}\x{E49}"
1360  text run at (0,1332) width 17: "\x{E43}\x{E2A}\x{E48}"
1361  text run at (0,1350) width 28: "\x{E16}\x{E49}\x{E27}\x{E22}"
1362  text run at (0,1368) width 27: "\x{E0A}\x{E32}\x{E21}"
1363  text run at (0,1386) width 24: "\x{E42}\x{E15}\x{E4A}\x{E30}"
1364  text run at (0,1404) width 32: "\x{E40}\x{E01}\x{E49}\x{E32}\x{E2D}\x{E35}\x{E49}"
1365  text run at (0,1422) width 28: "\x{E2A}\x{E32}\x{E21}"
1366  text run at (0,1440) width 27: "\x{E2B}\x{E23}\x{E37}\x{E2D}"
1367  text run at (0,1458) width 10: "\x{E2A}\x{E35}\x{E48}"
1368  text run at (0,1476) width 18: "\x{E15}\x{E31}\x{E27}"
1369  text run at (0,1494) width 26: "\x{E41}\x{E25}\x{E49}\x{E27}"
1370  text run at (0,1512) width 10: "\x{E01}\x{E47}"
1371  text run at (0,1530) width 10: "\x{E21}\x{E35}"
1372  text run at (0,1548) width 33: "\x{E40}\x{E15}\x{E35}\x{E22}\x{E07}"
1373  text run at (0,1566) width 29: "\x{E19}\x{E2D}\x{E19}"
1374  text run at (0,1584) width 17: "\x{E25}\x{E38}\x{E07}"
1375  text run at (0,1602) width 14: "\x{E40}\x{E2E}"
1376  text run at (0,1620) width 18: "\x{E19}\x{E23}\x{E35}"
1377  text run at (0,1638) width 20: "\x{E01}\x{E31}\x{E1A}"
1378  text run at (0,1656) width 18: "\x{E1B}\x{E49}\x{E32}"
1379  text run at (0,1674) width 24: "\x{E40}\x{E2D}\x{E47}\x{E21}"
1380  text run at (0,1692) width 10: "\x{E21}\x{E35}"
1381  text run at (0,1710) width 33: "\x{E40}\x{E15}\x{E35}\x{E22}\x{E07}"
1382  text run at (0,1728) width 29: "\x{E19}\x{E2D}\x{E19}"
1383  text run at (0,1746) width 30: "\x{E43}\x{E2B}\x{E0D}\x{E48}"
1384  text run at (0,1764) width 19: "\x{E2D}\x{E22}\x{E39}\x{E48}"
1385  text run at (0,1782) width 10: "\x{E17}\x{E35}\x{E48}"
1386  text run at (0,1800) width 20: "\x{E21}\x{E38}\x{E21}"
1387  text run at (0,1818) width 28: "\x{E2B}\x{E19}\x{E36}\x{E48}\x{E07}"
1388  text run at (0,1836) width 28: "\x{E2A}\x{E48}\x{E27}\x{E19}"
1389  text run at (0,1854) width 17: "\x{E42}\x{E14}"
1390  text run at (0,1872) width 24: "\x{E42}\x{E23}\x{E18}\x{E35}"
1391  text run at (0,1890) width 10: "\x{E21}\x{E35}"
1392  text run at (0,1908) width 33: "\x{E40}\x{E15}\x{E35}\x{E22}\x{E07}"
1393  text run at (0,1926) width 24: "\x{E40}\x{E25}\x{E47}\x{E01}"
1394  text run at (0,1944) width 19: "\x{E2D}\x{E35}\x{E01}"
1395  text run at (0,1962) width 10: "\x{E17}\x{E35}\x{E48}"
1396  text run at (0,1980) width 20: "\x{E21}\x{E38}\x{E21}"
1397  text run at (0,1998) width 28: "\x{E2B}\x{E19}\x{E36}\x{E48}\x{E07}"
1398  text run at (0,2016) width 17: "\x{E44}\x{E21}\x{E48}"
1399  text run at (0,2034) width 10: "\x{E21}\x{E35}"
1400  text run at (0,2052) width 27: "\x{E2B}\x{E49}\x{E2D}\x{E07}"
1401  text run at (0,2070) width 17: "\x{E43}\x{E15}\x{E49}"
1402  text run at (0,2088) width 44: "\x{E40}\x{E1E}\x{E14}\x{E32}\x{E19}"
1403  text run at (0,2106) width 24: "\x{E40}\x{E25}\x{E22}"
1404  text run at (0,2124) width 27: "\x{E2B}\x{E49}\x{E2D}\x{E07}"
1405  text run at (0,2142) width 37: "\x{E43}\x{E15}\x{E49}\x{E16}\x{E38}\x{E19}"
1406  text run at (0,2160) width 10: "\x{E01}\x{E47}"
1407  text run at (0,2178) width 17: "\x{E44}\x{E21}\x{E48}"
1408  text run at (0,2196) width 10: "\x{E21}\x{E35}"
1409  text run at (0,2214) width 23: "\x{E40}\x{E27}\x{E49}\x{E19}"
1410  text run at (0,2232) width 19: "\x{E41}\x{E15}\x{E48}"
1411  text run at (0,2250) width 10: "\x{E21}\x{E35}"
1412  text run at (0,2268) width 34: "\x{E42}\x{E1E}\x{E23}\x{E07}"
1413  text run at (0,2286) width 34: "\x{E40}\x{E25}\x{E47}\x{E01}\x{E46}"
1414  text run at (0,2304) width 10: "\x{E17}\x{E35}\x{E48}"
1415  text run at (0,2322) width 19: "\x{E02}\x{E38}\x{E14}"
1416  text run at (0,2340) width 17: "\x{E44}\x{E1B}"
1417  text run at (0,2358) width 17: "\x{E43}\x{E15}\x{E49}"
1418  text run at (0,2376) width 21: "\x{E1E}\x{E37}\x{E49}\x{E19}"
1419  text run at (0,2394) width 33: "\x{E40}\x{E23}\x{E35}\x{E22}\x{E01}"
1420  text run at (0,2412) width 16: "\x{E27}\x{E48}\x{E32}"
1421  text run at (0,2430) width 7: "\""
1422  text run at (0,2448) width 34: "\x{E42}\x{E1E}\x{E23}\x{E07}"
1423  text run at (0,2466) width 52: "\x{E44}\x{E0B}\x{E42}\x{E04}\x{E25}\x{E19}"
1424  text run at (0,2484) width 7: "\""
1425  text run at (0,2502) width 25: "\x{E40}\x{E1B}\x{E47}\x{E19}"
1426  text run at (0,2520) width 10: "\x{E17}\x{E35}\x{E48}"
1427  text run at (0,2538) width 63: "\x{E04}\x{E23}\x{E2D}\x{E1A}\x{E04}\x{E23}\x{E31}\x{E27}"
1428  text run at (0,2556) width 10: "\x{E19}\x{E35}\x{E49}"
1429  text run at (0,2574) width 15: "\x{E08}\x{E30}"
1430  text run at (0,2592) width 20: "\x{E21}\x{E38}\x{E14}"
1431  text run at (0,2610) width 22: "\x{E40}\x{E02}\x{E49}\x{E32}"
1432  text run at (0,2628) width 17: "\x{E44}\x{E1B}"
1433  text run at (0,2646) width 24: "\x{E40}\x{E21}\x{E37}\x{E48}\x{E2D}"
1434  text run at (0,2664) width 25: "\x{E40}\x{E01}\x{E34}\x{E14}"
1435  text run at (0,2682) width 19: "\x{E25}\x{E21}"
1436  text run at (0,2700) width 28: "\x{E21}\x{E2B}\x{E32}"
1437  text run at (0,2718) width 21: "\x{E20}\x{E31}\x{E22}"
1438  text run at (0,2736) width 17: "\x{E0B}\x{E36}\x{E48}\x{E07}"
1439  text run at (0,2754) width 51: "\x{E01}\x{E23}\x{E30}\x{E42}\x{E0A}\x{E01}"
1440  text run at (0,2772) width 25: "\x{E41}\x{E23}\x{E07}"
1441  text run at (0,2790) width 18: "\x{E08}\x{E19}"
1442  text run at (0,2808) width 20: "\x{E1A}\x{E14}"
1443  text run at (0,2826) width 19: "\x{E02}\x{E22}\x{E35}\x{E49}"
1444  text run at (0,2844) width 18: "\x{E2A}\x{E34}\x{E48}\x{E07}"
1445  text run at (0,2862) width 19: "\x{E01}\x{E48}\x{E2D}"
1446  text run at (0,2880) width 34: "\x{E2A}\x{E23}\x{E49}\x{E32}\x{E07}"
1447  text run at (0,2898) width 17: "\x{E43}\x{E14}"
1448  text run at (0,2916) width 10: "\x{E46}"
1449  text run at (0,2934) width 10: "\x{E17}\x{E35}\x{E48}"
1450  text run at (0,2952) width 33: "\x{E02}\x{E27}\x{E32}\x{E07}"
1451  text run at (0,2970) width 26: "\x{E17}\x{E32}\x{E07}"
1452  text run at (0,2988) width 20: "\x{E21}\x{E31}\x{E19}"
1453  text run at (0,3006) width 17: "\x{E44}\x{E14}\x{E49}"
1454  text run at (0,3024) width 26: "\x{E15}\x{E23}\x{E07}"
1455  text run at (0,3042) width 35: "\x{E01}\x{E25}\x{E32}\x{E07}"
1456  text run at (0,3060) width 21: "\x{E1E}\x{E37}\x{E49}\x{E19}"
1457  text run at (0,3078) width 10: "\x{E21}\x{E35}"
1458  text run at (0,3096) width 18: "\x{E1D}\x{E32}"
1459  text run at (0,3114) width 25: "\x{E40}\x{E1B}\x{E34}\x{E14}"
1460  text run at (0,3132) width 22: "\x{E40}\x{E02}\x{E49}\x{E32}"
1461  text run at (0,3150) width 17: "\x{E44}\x{E1B}"
1462  text run at (0,3168) width 26: "\x{E08}\x{E32}\x{E01}"
1463  text run at (0,3186) width 20: "\x{E19}\x{E31}\x{E49}\x{E19}"
1464  text run at (0,3204) width 10: "\x{E21}\x{E35}"
1465  text run at (0,3222) width 37: "\x{E1A}\x{E31}\x{E19}\x{E44}\x{E14}"
1466  text run at (0,3240) width 17: "\x{E25}\x{E07}"
1467  text run at (0,3258) width 17: "\x{E44}\x{E1B}"
1468  text run at (0,3276) width 18: "\x{E16}\x{E36}\x{E07}"
1469  text run at (0,3294) width 34: "\x{E42}\x{E1E}\x{E23}\x{E07}"
1470  text run at (0,3312) width 20: "\x{E21}\x{E37}\x{E14}"
1471  text run at (0,3330) width 24: "\x{E40}\x{E25}\x{E47}\x{E01}"
1472  text run at (0,3348) width 10: "\x{E46}"
1473  text run at (0,3366) width 24: "\x{E40}\x{E21}\x{E37}\x{E48}\x{E2D}"
1474  text run at (0,3384) width 17: "\x{E42}\x{E14}"
1475  text run at (0,3402) width 24: "\x{E42}\x{E23}\x{E18}\x{E35}"
1476  text run at (0,3420) width 20: "\x{E22}\x{E37}\x{E19}"
1477  text run at (0,3438) width 10: "\x{E17}\x{E35}\x{E48}"
1478  text run at (0,3456) width 28: "\x{E1B}\x{E32}\x{E01}"
1479  text run at (0,3474) width 35: "\x{E1B}\x{E23}\x{E30}\x{E15}\x{E39}"
1480  text run at (0,3492) width 25: "\x{E41}\x{E25}\x{E30}"
1481  text run at (0,3510) width 27: "\x{E21}\x{E2D}\x{E07}"
1482  text run at (0,3528) width 17: "\x{E44}\x{E1B}"
1483  text run at (0,3546) width 27: "\x{E23}\x{E2D}\x{E1A}"
1484  text run at (0,3564) width 10: "\x{E46}"
1485  text run at (0,3582) width 23: "\x{E40}\x{E18}\x{E2D}"
1486  text run at (0,3600) width 17: "\x{E44}\x{E21}\x{E48}"
1487  text run at (0,3618) width 25: "\x{E40}\x{E2B}\x{E47}\x{E19}"
1488  text run at (0,3636) width 31: "\x{E2D}\x{E30}\x{E44}\x{E23}"
1489  text run at (0,3654) width 29: "\x{E19}\x{E2D}\x{E01}"
1490  text run at (0,3672) width 26: "\x{E08}\x{E32}\x{E01}"
1491  text run at (0,3690) width 27: "\x{E17}\x{E49}\x{E2D}\x{E07}"
1492  text run at (0,3708) width 18: "\x{E17}\x{E38}\x{E48}\x{E07}"
1493  text run at (0,3726) width 34: "\x{E01}\x{E27}\x{E49}\x{E32}\x{E07}"
1494  text run at (0,3744) width 10: "\x{E2A}\x{E35}"
1495  text run at (0,3762) width 23: "\x{E40}\x{E17}\x{E32}"
1496  text run at (0,3780) width 30: "\x{E2B}\x{E21}\x{E48}\x{E19}"
1497  text run at (0,3798) width 18: "\x{E17}\x{E31}\x{E48}\x{E27}"
1498  text run at (0,3816) width 20: "\x{E17}\x{E38}\x{E01}"
1499  text run at (0,3834) width 28: "\x{E14}\x{E49}\x{E32}\x{E19}"
1500  text run at (0,3852) width 17: "\x{E44}\x{E21}\x{E48}"
1501  text run at (0,3870) width 10: "\x{E21}\x{E35}"
1502  text run at (0,3888) width 19: "\x{E41}\x{E21}\x{E49}"
1503  text run at (0,3906) width 37: "\x{E15}\x{E49}\x{E19}\x{E44}\x{E21}\x{E49}"
1504  text run at (0,3924) width 20: "\x{E2A}\x{E31}\x{E01}"
1505  text run at (0,3942) width 20: "\x{E15}\x{E49}\x{E19}"
1506  text run at (0,3960) width 27: "\x{E2B}\x{E23}\x{E37}\x{E2D}"
1507  text run at (0,3978) width 28: "\x{E1A}\x{E49}\x{E32}\x{E19}"
1508  text run at (0,3996) width 20: "\x{E2A}\x{E31}\x{E01}"
1509  text run at (0,4014) width 27: "\x{E2B}\x{E25}\x{E31}\x{E07}"
1510  text run at (0,4032) width 10: "\x{E17}\x{E35}\x{E48}"
1511  text run at (0,4050) width 26: "\x{E42}\x{E1C}\x{E25}\x{E48}"
1512  text run at (0,4068) width 21: "\x{E1E}\x{E49}\x{E19}"
1513  text run at (0,4086) width 21: "\x{E20}\x{E39}\x{E21}\x{E34}"
1514  text run at (0,4104) width 50: "\x{E1B}\x{E23}\x{E30}\x{E40}\x{E17}\x{E28}"
1515  text run at (0,4122) width 19: "\x{E2D}\x{E31}\x{E19}"
1516  text run at (0,4140) width 26: "\x{E23}\x{E32}\x{E1A}"
1517  text run at (0,4158) width 33: "\x{E40}\x{E23}\x{E35}\x{E22}\x{E1A}"
1518  text run at (0,4176) width 19: "\x{E41}\x{E1C}\x{E48}"
1519  text run at (0,4194) width 17: "\x{E44}\x{E1B}"
1520  text run at (0,4212) width 26: "\x{E44}\x{E01}\x{E25}"
1521  text run at (0,4230) width 18: "\x{E08}\x{E19}"
1522  text run at (0,4248) width 18: "\x{E08}\x{E14}"
1523  text run at (0,4266) width 28: "\x{E02}\x{E2D}\x{E1A}"
1524  text run at (0,4284) width 19: "\x{E1F}\x{E49}\x{E32}"
1525  text run at (0,4302) width 18: "\x{E17}\x{E31}\x{E48}\x{E27}"
1526  text run at (0,4320) width 20: "\x{E17}\x{E38}\x{E01}"
1527  text run at (0,4338) width 20: "\x{E17}\x{E34}\x{E28}"
1528  text run at (0,4356) width 26: "\x{E14}\x{E27}\x{E07}"
1529  text run at (0,4374) width 35: "\x{E15}\x{E30}\x{E27}\x{E31}\x{E19}"
1530  text run at (0,4392) width 23: "\x{E40}\x{E1C}\x{E32}"
1531  text run at (0,4410) width 20: "\x{E1C}\x{E37}\x{E19}"
1532  text run at (0,4428) width 20: "\x{E14}\x{E34}\x{E19}"
1533  text run at (0,4446) width 10: "\x{E17}\x{E35}\x{E48}"
1534  text run at (0,4464) width 17: "\x{E44}\x{E16}"
1535  text run at (0,4482) width 26: "\x{E41}\x{E25}\x{E49}\x{E27}"
1536  text run at (0,4500) width 18: "\x{E08}\x{E19}"
1537  text run at (0,4518) width 37: "\x{E01}\x{E25}\x{E32}\x{E22}"
1538  text run at (0,4536) width 25: "\x{E40}\x{E1B}\x{E47}\x{E19}"
1539  text run at (0,4554) width 29: "\x{E41}\x{E1C}\x{E48}\x{E19}"
1540  text run at (0,4572) width 38: "\x{E21}\x{E2B}\x{E36}\x{E21}\x{E32}"
1541  text run at (0,4590) width 10: "\x{E2A}\x{E35}"
1542  text run at (0,4608) width 18: "\x{E14}\x{E33}"
1543  text run at (0,4626) width 10: "\x{E21}\x{E35}"
1544  text run at (0,4644) width 27: "\x{E23}\x{E2D}\x{E22}"
1545  text run at (0,4662) width 29: "\x{E41}\x{E15}\x{E01}"
1546  text run at (0,4680) width 42: "\x{E23}\x{E30}\x{E41}\x{E2B}\x{E07}"
1547  text run at (0,4698) width 19: "\x{E2D}\x{E22}\x{E39}\x{E48}"
1548  text run at (0,4716) width 38: "\x{E15}\x{E25}\x{E2D}\x{E14}"
1549  text run at (0,4734) width 38: "\x{E41}\x{E21}\x{E49}\x{E41}\x{E15}\x{E48}"
1550  text run at (0,4752) width 31: "\x{E2B}\x{E0D}\x{E49}\x{E32}"
1551  text run at (0,4770) width 10: "\x{E01}\x{E47}"
1552  text run at (0,4788) width 17: "\x{E44}\x{E21}\x{E48}"
1553  text run at (0,4806) width 32: "\x{E40}\x{E02}\x{E35}\x{E22}\x{E27}"
1554  text run at (0,4824) width 39: "\x{E40}\x{E1E}\x{E23}\x{E32}\x{E30}"
1555  text run at (0,4842) width 26: "\x{E14}\x{E27}\x{E07}"
1556  text run at (0,4860) width 35: "\x{E15}\x{E30}\x{E27}\x{E31}\x{E19}"
1557  text run at (0,4878) width 23: "\x{E40}\x{E1C}\x{E32}"
1558  text run at (0,4896) width 29: "\x{E22}\x{E2D}\x{E14}"
1559  text run at (0,4914) width 17: "\x{E43}\x{E1A}"
1560  text run at (0,4932) width 26: "\x{E22}\x{E32}\x{E27}"
1561  text run at (0,4950) width 25: "\x{E40}\x{E2A}\x{E35}\x{E22}"
1562  text run at (0,4968) width 18: "\x{E08}\x{E19}"
1563  text run at (0,4986) width 25: "\x{E40}\x{E1B}\x{E47}\x{E19}"
1564  text run at (0,5004) width 10: "\x{E2A}\x{E35}"
1565  text run at (0,5022) width 23: "\x{E40}\x{E17}\x{E32}"
1566  text run at (0,5040) width 30: "\x{E2B}\x{E21}\x{E48}\x{E19}"
1567  text run at (0,5058) width 27: "\x{E21}\x{E2D}\x{E07}"
1568  text run at (0,5076) width 25: "\x{E40}\x{E2B}\x{E47}\x{E19}"
1569  text run at (0,5094) width 19: "\x{E2D}\x{E22}\x{E39}\x{E48}"
1570  text run at (0,5112) width 18: "\x{E17}\x{E31}\x{E48}\x{E27}"
1571  text run at (0,5130) width 17: "\x{E44}\x{E1B}"
1572  text run at (0,5148) width 26: "\x{E04}\x{E23}\x{E31}\x{E49}\x{E07}"
1573  text run at (0,5166) width 28: "\x{E2B}\x{E19}\x{E36}\x{E48}\x{E07}"
1574  text run at (0,5184) width 25: "\x{E40}\x{E04}\x{E22}"
1575  text run at (0,5202) width 18: "\x{E17}\x{E32}"
1576  text run at (0,5220) width 10: "\x{E2A}\x{E35}"
1577  text run at (0,5238) width 28: "\x{E1A}\x{E49}\x{E32}\x{E19}"
1578  text run at (0,5256) width 22: "\x{E40}\x{E2D}\x{E32}"
1579  text run at (0,5274) width 15: "\x{E44}\x{E27}\x{E49}"
1580  text run at (0,5292) width 19: "\x{E41}\x{E15}\x{E48}"
1581  text run at (0,5310) width 10: "\x{E01}\x{E47}"
1582  text run at (0,5328) width 20: "\x{E16}\x{E39}\x{E01}"
1583  text run at (0,5346) width 26: "\x{E14}\x{E27}\x{E07}"
1584  text run at (0,5364) width 35: "\x{E15}\x{E30}\x{E27}\x{E31}\x{E19}"
1585  text run at (0,5382) width 23: "\x{E40}\x{E1C}\x{E32}"
1586  text run at (0,5400) width 25: "\x{E40}\x{E2A}\x{E35}\x{E22}"
1587  text run at (0,5418) width 18: "\x{E08}\x{E19}"
1588  text run at (0,5436) width 10: "\x{E2A}\x{E35}"
1589  text run at (0,5454) width 28: "\x{E1E}\x{E2D}\x{E07}"
1590  text run at (0,5472) width 26: "\x{E41}\x{E25}\x{E49}\x{E27}"
1591  text run at (0,5490) width 20: "\x{E1D}\x{E19}"
1592  text run at (0,5508) width 10: "\x{E01}\x{E47}"
1593  text run at (0,5526) width 16: "\x{E0A}\x{E30}"
1594  text run at (0,5544) width 20: "\x{E21}\x{E31}\x{E19}"
1595  text run at (0,5562) width 29: "\x{E2B}\x{E25}\x{E38}\x{E14}"
1596  text run at (0,5580) width 17: "\x{E44}\x{E1B}"
1597  text run at (0,5598) width 18: "\x{E08}\x{E19}"
1598  text run at (0,5616) width 30: "\x{E2B}\x{E21}\x{E14}"
1599  text run at (0,5634) width 25: "\x{E41}\x{E25}\x{E30}"
1600  text run at (0,5652) width 29: "\x{E15}\x{E2D}\x{E19}"
1601  text run at (0,5670) width 10: "\x{E19}\x{E35}\x{E49}"
1602  text run at (0,5688) width 28: "\x{E1A}\x{E49}\x{E32}\x{E19}"
1603  text run at (0,5706) width 16: "\x{E08}\x{E36}\x{E07}"
1604  text run at (0,5724) width 10: "\x{E14}\x{E39}"
1605  text run at (0,5742) width 67: "\x{E2B}\x{E21}\x{E48}\x{E19}\x{E2B}\x{E21}\x{E2D}\x{E07}"
1606  text run at (0,5760) width 25: "\x{E40}\x{E1B}\x{E47}\x{E19}"
1607  text run at (0,5778) width 10: "\x{E2A}\x{E35}"
1608  text run at (0,5796) width 23: "\x{E40}\x{E17}\x{E32}"
1609  text run at (0,5814) width 44: "\x{E40}\x{E2B}\x{E21}\x{E37}\x{E2D}\x{E19}"
1610  text run at (0,5832) width 18: "\x{E2A}\x{E34}\x{E48}\x{E07}"
1611  text run at (0,5850) width 19: "\x{E2D}\x{E37}\x{E48}\x{E19}"
1612  text run at (0,5868) width 10: "\x{E46}"
1613  text run at (0,5886) width 28: "\x{E14}\x{E49}\x{E27}\x{E22}"
1614  text run at (0,5904) width 29: "\x{E15}\x{E2D}\x{E19}"
1615  text run at (0,5922) width 10: "\x{E17}\x{E35}\x{E48}"
1616  text run at (0,5940) width 18: "\x{E1B}\x{E49}\x{E32}"
1617  text run at (0,5958) width 24: "\x{E40}\x{E2D}\x{E47}\x{E21}"
1618  text run at (0,5976) width 28: "\x{E22}\x{E49}\x{E32}\x{E22}"
1619  text run at (0,5994) width 18: "\x{E21}\x{E32}"
1620  text run at (0,6012) width 19: "\x{E2D}\x{E22}\x{E39}\x{E48}"
1621  text run at (0,6030) width 10: "\x{E17}\x{E35}\x{E48}"
1622  text run at (0,6048) width 10: "\x{E19}\x{E35}\x{E48}"
1623  text run at (0,6066) width 23: "\x{E40}\x{E18}\x{E2D}"
1624  text run at (0,6084) width 18: "\x{E22}\x{E31}\x{E07}"
1625  text run at (0,6102) width 26: "\x{E2A}\x{E32}\x{E27}"
1626  text run at (0,6120) width 25: "\x{E40}\x{E1B}\x{E47}\x{E19}"
1627  text run at (0,6138) width 45: "\x{E20}\x{E23}\x{E23}\x{E22}\x{E32}"
1628  text run at (0,6156) width 10: "\x{E17}\x{E35}\x{E48}"
1629  text run at (0,6174) width 44: "\x{E07}\x{E14}\x{E07}\x{E32}\x{E21}"
1630  text run at (0,6192) width 26: "\x{E41}\x{E25}\x{E49}\x{E27}"
1631  text run at (0,6210) width 29: "\x{E41}\x{E14}\x{E14}"
1632  text run at (0,6228) width 25: "\x{E41}\x{E25}\x{E30}"
1633  text run at (0,6246) width 19: "\x{E25}\x{E21}"
1634  text run at (0,6264) width 10: "\x{E01}\x{E47}"
1635  text run at (0,6282) width 17: "\x{E44}\x{E14}\x{E49}"
1636  text run at (0,6300) width 44: "\x{E40}\x{E1B}\x{E25}\x{E35}\x{E48}\x{E22}\x{E19}"
1637  text run at (0,6318) width 23: "\x{E40}\x{E18}\x{E2D}"
1638  text run at (0,6336) width 17: "\x{E44}\x{E1B}"
1639  text run at (0,6354) width 22: "\x{E40}\x{E2D}\x{E32}"
1640  text run at (0,6372) width 53: "\x{E1B}\x{E23}\x{E30}\x{E01}\x{E32}\x{E22}"
1641  text run at (0,6390) width 17: "\x{E44}\x{E1B}"
1642  text run at (0,6408) width 26: "\x{E08}\x{E32}\x{E01}"
1643  text run at (0,6426) width 44: "\x{E14}\x{E27}\x{E07}\x{E15}\x{E32}"
1644  text run at (0,6444) width 23: "\x{E40}\x{E18}\x{E2D}"
1645  text run at (0,6462) width 38: "\x{E1B}\x{E25}\x{E48}\x{E2D}\x{E22}"
1646  text run at (0,6480) width 15: "\x{E44}\x{E27}\x{E49}"
1647  text run at (0,6498) width 19: "\x{E41}\x{E15}\x{E48}"
1648  text run at (0,6516) width 36: "\x{E04}\x{E27}\x{E32}\x{E21}"
1649  text run at (0,6534) width 29: "\x{E2A}\x{E38}\x{E02}\x{E38}\x{E21}"
1650  text run at (0,6552) width 35: "\x{E2D}\x{E22}\x{E48}\x{E32}\x{E07}"
1651  text run at (0,6570) width 67: "\x{E2B}\x{E21}\x{E48}\x{E19}\x{E2B}\x{E21}\x{E2D}\x{E07}"
1652  text run at (0,6588) width 22: "\x{E40}\x{E2D}\x{E32}"
1653  text run at (0,6606) width 10: "\x{E2A}\x{E35}"
1654  text run at (0,6624) width 27: "\x{E41}\x{E14}\x{E07}"
1655  text run at (0,6642) width 26: "\x{E08}\x{E32}\x{E01}"
1656  text run at (0,6660) width 29: "\x{E41}\x{E01}\x{E49}\x{E21}"
1657  text run at (0,6678) width 25: "\x{E41}\x{E25}\x{E30}"
1658  text run at (0,6696) width 18: "\x{E23}\x{E34}\x{E21}"
1659  text run at (0,6714) width 38: "\x{E1D}\x{E35}\x{E1B}\x{E32}\x{E01}"
1660  text run at (0,6732) width 23: "\x{E40}\x{E18}\x{E2D}"
1661  text run at (0,6750) width 17: "\x{E44}\x{E1B}"
1662  text run at (0,6768) width 37: "\x{E01}\x{E25}\x{E32}\x{E22}"
1663  text run at (0,6786) width 25: "\x{E40}\x{E1B}\x{E47}\x{E19}"
1664  text run at (0,6804) width 10: "\x{E2A}\x{E35}"
1665  text run at (0,6822) width 30: "\x{E2B}\x{E21}\x{E48}\x{E19}"
1666  text run at (0,6840) width 10: "\x{E46}"
1667  text run at (0,6858) width 44: "\x{E40}\x{E2B}\x{E21}\x{E37}\x{E2D}\x{E19}"
1668  text run at (0,6876) width 20: "\x{E01}\x{E31}\x{E19}"
1669  text run at (0,6894) width 23: "\x{E40}\x{E18}\x{E2D}"
1670  text run at (0,6912) width 29: "\x{E1C}\x{E2D}\x{E21}"
1671  text run at (0,6930) width 25: "\x{E41}\x{E25}\x{E30}"
1672  text run at (0,6948) width 27: "\x{E2B}\x{E25}\x{E31}\x{E07}"
1673  text run at (0,6966) width 25: "\x{E42}\x{E04}\x{E49}\x{E07}"
1674  text run at (0,6984) width 25: "\x{E41}\x{E25}\x{E30}"
1675  text run at (0,7002) width 33: "\x{E40}\x{E14}\x{E35}\x{E4B}\x{E22}\x{E27}"
1676  text run at (0,7020) width 10: "\x{E19}\x{E35}\x{E49}"
1677  text run at (0,7038) width 17: "\x{E44}\x{E21}\x{E48}"
1678  text run at (0,7056) width 25: "\x{E40}\x{E04}\x{E22}"
1679  text run at (0,7074) width 20: "\x{E22}\x{E34}\x{E49}\x{E21}"
1680  text run at (0,7092) width 24: "\x{E40}\x{E25}\x{E22}"
1681  text run at (0,7110) width 24: "\x{E40}\x{E21}\x{E37}\x{E48}\x{E2D}"
1682  text run at (0,7128) width 17: "\x{E42}\x{E14}"
1683  text run at (0,7146) width 24: "\x{E42}\x{E23}\x{E18}\x{E35}"
1684  text run at (0,7164) width 17: "\x{E0B}\x{E36}\x{E48}\x{E07}"
1685  text run at (0,7182) width 25: "\x{E40}\x{E1B}\x{E47}\x{E19}"
1686  text run at (0,7200) width 25: "\x{E40}\x{E14}\x{E47}\x{E01}"
1687  text run at (0,7218) width 45: "\x{E01}\x{E33}\x{E1E}\x{E23}\x{E49}\x{E32}"
1688  text run at (0,7236) width 18: "\x{E21}\x{E32}"
1689  text run at (0,7254) width 19: "\x{E2D}\x{E22}\x{E39}\x{E48}"
1690  text run at (0,7272) width 20: "\x{E01}\x{E31}\x{E1A}"
1691  text run at (0,7290) width 23: "\x{E40}\x{E18}\x{E2D}"
1692  text run at (0,7308) width 29: "\x{E15}\x{E2D}\x{E19}"
1693  text run at (0,7326) width 27: "\x{E41}\x{E23}\x{E01}"
1694  text run at (0,7344) width 18: "\x{E1B}\x{E49}\x{E32}"
1695  text run at (0,7362) width 24: "\x{E40}\x{E2D}\x{E47}\x{E21}"
1696  text run at (0,7380) width 20: "\x{E15}\x{E37}\x{E48}\x{E19}"
1697  text run at (0,7398) width 25: "\x{E40}\x{E15}\x{E49}\x{E19}"
1698  text run at (0,7416) width 20: "\x{E01}\x{E31}\x{E1A}"
1699  text run at (0,7434) width 33: "\x{E40}\x{E2A}\x{E35}\x{E22}\x{E07}"
1700  text run at (0,7452) width 46: "\x{E2B}\x{E31}\x{E27}\x{E40}\x{E23}\x{E32}\x{E30}"
1701  text run at (0,7470) width 26: "\x{E02}\x{E2D}\x{E07}"
1702  text run at (0,7488) width 25: "\x{E40}\x{E14}\x{E47}\x{E01}"
1703  text run at (0,7506) width 29: "\x{E19}\x{E49}\x{E2D}\x{E22}"
1704  text run at (0,7524) width 28: "\x{E21}\x{E32}\x{E01}"
1705  text run at (0,7542) width 23: "\x{E40}\x{E18}\x{E2D}"
1706  text run at (0,7560) width 15: "\x{E08}\x{E30}"
1707  text run at (0,7578) width 18: "\x{E2A}\x{E48}\x{E07}"
1708  text run at (0,7596) width 33: "\x{E40}\x{E2A}\x{E35}\x{E22}\x{E07}"
1709  text run at (0,7614) width 25: "\x{E23}\x{E49}\x{E2D}\x{E07}"
1710  text run at (0,7632) width 26: "\x{E41}\x{E25}\x{E49}\x{E27}"
1711  text run at (0,7650) width 22: "\x{E40}\x{E2D}\x{E32}"
1712  text run at (0,7668) width 19: "\x{E21}\x{E37}\x{E2D}"
1713  text run at (0,7686) width 28: "\x{E17}\x{E32}\x{E1A}"
1714  text run at (0,7704) width 19: "\x{E2D}\x{E01}"
1715  text run at (0,7722) width 20: "\x{E17}\x{E38}\x{E01}"
1716  text run at (0,7740) width 26: "\x{E04}\x{E23}\x{E31}\x{E49}\x{E07}"
1717  text run at (0,7758) width 10: "\x{E17}\x{E35}\x{E48}"
1718  text run at (0,7776) width 33: "\x{E40}\x{E2A}\x{E35}\x{E22}\x{E07}"
1719  text run at (0,7794) width 19: "\x{E2D}\x{E31}\x{E19}"
1720  text run at (0,7812) width 37: "\x{E23}\x{E48}\x{E32}\x{E40}\x{E23}\x{E34}\x{E07}"
1721  text run at (0,7830) width 26: "\x{E02}\x{E2D}\x{E07}"
1722  text run at (0,7848) width 17: "\x{E42}\x{E14}"
1723  text run at (0,7866) width 24: "\x{E42}\x{E23}\x{E18}\x{E35}"
1724  text run at (0,7884) width 22: "\x{E40}\x{E02}\x{E49}\x{E32}"
1725  text run at (0,7902) width 10: "\x{E2B}\x{E39}"
1726  text run at (0,7920) width 23: "\x{E40}\x{E18}\x{E2D}"
1727  text run at (0,7938) width 25: "\x{E41}\x{E25}\x{E30}"
1728  text run at (0,7956) width 23: "\x{E40}\x{E18}\x{E2D}"
1729  text run at (0,7974) width 23: "\x{E40}\x{E1D}\x{E49}\x{E32}"
1730  text run at (0,7992) width 27: "\x{E21}\x{E2D}\x{E07}"
1731  text run at (0,8010) width 25: "\x{E40}\x{E14}\x{E47}\x{E01}"
1732  text run at (0,8028) width 31: "\x{E2B}\x{E0D}\x{E34}\x{E07}"
1733  text run at (0,8046) width 29: "\x{E19}\x{E49}\x{E2D}\x{E22}"
1734  text run at (0,8064) width 10: "\x{E46}"
1735  text run at (0,8082) width 28: "\x{E14}\x{E49}\x{E27}\x{E22}"
1736  text run at (0,8100) width 36: "\x{E04}\x{E27}\x{E32}\x{E21}"
1737  text run at (0,8118) width 62: "\x{E1B}\x{E23}\x{E30}\x{E2B}\x{E25}\x{E32}\x{E14}"
1738  text run at (0,8136) width 15: "\x{E43}\x{E08}"
1739  text run at (0,8154) width 28: "\x{E14}\x{E49}\x{E27}\x{E22}"
1740  text run at (0,8172) width 18: "\x{E22}\x{E31}\x{E07}"
1741  text run at (0,8190) width 18: "\x{E2B}\x{E32}"
1742  text run at (0,8208) width 31: "\x{E2D}\x{E30}\x{E44}\x{E23}"
1743  text run at (0,8226) width 18: "\x{E21}\x{E32}"
1744  text run at (0,8244) width 25: "\x{E40}\x{E1B}\x{E47}\x{E19}"
1745  text run at (0,8262) width 30: "\x{E40}\x{E23}\x{E37}\x{E48}\x{E2D}\x{E07}"
1746  text run at (0,8280) width 46: "\x{E2B}\x{E31}\x{E27}\x{E40}\x{E23}\x{E32}\x{E30}"
1747  text run at (0,8298) width 17: "\x{E44}\x{E14}\x{E49}"
1748  text run at (0,8316) width 17: "\x{E25}\x{E38}\x{E07}"
1749  text run at (0,8334) width 14: "\x{E40}\x{E2E}"
1750  text run at (0,8352) width 18: "\x{E19}\x{E23}\x{E35}"
1751  text run at (0,8370) width 17: "\x{E44}\x{E21}\x{E48}"
1752  text run at (0,8388) width 25: "\x{E40}\x{E04}\x{E22}"
1753  text run at (0,8406) width 46: "\x{E2B}\x{E31}\x{E27}\x{E40}\x{E23}\x{E32}\x{E30}"
1754  text run at (0,8424) width 17: "\x{E25}\x{E38}\x{E07}"
1755  text run at (0,8442) width 44: "\x{E17}\x{E33}\x{E07}\x{E32}\x{E19}"
1756  text run at (0,8460) width 30: "\x{E2B}\x{E19}\x{E31}\x{E01}"
1757  text run at (0,8478) width 26: "\x{E08}\x{E32}\x{E01}"
1758  text run at (0,8496) width 22: "\x{E40}\x{E0A}\x{E49}\x{E32}"
1759  text run at (0,8514) width 20: "\x{E22}\x{E31}\x{E19}"
1760  text run at (0,8532) width 18: "\x{E04}\x{E48}\x{E33}"
1761  text run at (0,8550) width 25: "\x{E41}\x{E25}\x{E30}"
1762  text run at (0,8568) width 17: "\x{E44}\x{E21}\x{E48}"
1763  text run at (0,8586) width 25: "\x{E40}\x{E04}\x{E22}"
1764  text run at (0,8604) width 26: "\x{E23}\x{E39}\x{E49}\x{E08}\x{E31}\x{E01}"
1765  text run at (0,8622) width 16: "\x{E27}\x{E48}\x{E32}"
1766  text run at (0,8640) width 36: "\x{E04}\x{E27}\x{E32}\x{E21}"
1767  text run at (0,8658) width 37: "\x{E23}\x{E48}\x{E32}\x{E40}\x{E23}\x{E34}\x{E07}"
1768  text run at (0,8676) width 19: "\x{E04}\x{E37}\x{E2D}"
1769  text run at (0,8694) width 31: "\x{E2D}\x{E30}\x{E44}\x{E23}"
1770  text run at (0,8712) width 17: "\x{E25}\x{E38}\x{E07}"
1771  text run at (0,8730) width 10: "\x{E14}\x{E39}"
1772  text run at (0,8748) width 67: "\x{E2B}\x{E21}\x{E48}\x{E19}\x{E2B}\x{E21}\x{E2D}\x{E07}"
1773  text run at (0,8766) width 17: "\x{E44}\x{E1B}"
1774  text run at (0,8784) width 30: "\x{E2B}\x{E21}\x{E14}"
1775  text run at (0,8802) width 18: "\x{E15}\x{E31}\x{E49}\x{E07}"
1776  text run at (0,8820) width 19: "\x{E41}\x{E15}\x{E48}"
1777  text run at (0,8838) width 31: "\x{E40}\x{E04}\x{E23}\x{E32}"
1778  text run at (0,8856) width 26: "\x{E22}\x{E32}\x{E27}"
1779  text run at (0,8874) width 18: "\x{E08}\x{E19}"
1780  text run at (0,8892) width 18: "\x{E08}\x{E14}"
1781  text run at (0,8910) width 48: "\x{E23}\x{E2D}\x{E07}\x{E40}\x{E17}\x{E49}\x{E32}"
1782  text run at (0,8928) width 20: "\x{E1A}\x{E39}\x{E15}"
1783  text run at (0,8946) width 19: "\x{E2D}\x{E31}\x{E19}"
1784  text run at (0,8964) width 38: "\x{E2B}\x{E22}\x{E32}\x{E1A}"
1785  text run at (0,8982) width 26: "\x{E41}\x{E25}\x{E49}\x{E27}"
1786  text run at (0,9000) width 17: "\x{E25}\x{E38}\x{E07}"
1787  text run at (0,9018) width 10: "\x{E01}\x{E47}"
1788  text run at (0,9036) width 10: "\x{E14}\x{E39}"
1789  text run at (0,9054) width 58: "\x{E40}\x{E04}\x{E23}\x{E48}\x{E07}\x{E02}\x{E23}\x{E36}\x{E21}"
1790  text run at (0,9072) width 18: "\x{E19}\x{E48}\x{E32}"
1791  text run at (0,9090) width 31: "\x{E40}\x{E01}\x{E23}\x{E07}"
1792  text run at (0,9108) width 27: "\x{E02}\x{E32}\x{E21}"
1793  text run at (0,9126) width 17: "\x{E44}\x{E21}\x{E48}"
1794  text run at (0,9144) width 29: "\x{E04}\x{E48}\x{E2D}\x{E22}"
1795  text run at (0,9162) width 15: "\x{E08}\x{E30}"
1796  text run at (0,9180) width 21: "\x{E1E}\x{E39}\x{E14}"
1797  text run at (0,9198) width 10: "\x{E21}\x{E35}"
1798  text run at (0,9216) width 17: "\x{E42}\x{E15}"
1799  text run at (0,9234) width 17: "\x{E42}\x{E15}\x{E49}"
1800  text run at (0,9252) width 10: "\x{E17}\x{E35}\x{E48}"
1801  text run at (0,9270) width 18: "\x{E17}\x{E33}"
1802  text run at (0,9288) width 17: "\x{E43}\x{E2B}\x{E49}"
1803  text run at (0,9306) width 17: "\x{E42}\x{E14}"
1804  text run at (0,9324) width 24: "\x{E42}\x{E23}\x{E18}\x{E35}"
1805  text run at (0,9342) width 46: "\x{E2B}\x{E31}\x{E27}\x{E40}\x{E23}\x{E32}\x{E30}"
1806  text run at (0,9360) width 17: "\x{E44}\x{E14}\x{E49}"
1807  text run at (0,9378) width 25: "\x{E41}\x{E25}\x{E30}"
1808  text run at (0,9396) width 27: "\x{E0A}\x{E48}\x{E27}\x{E22}"
1809  text run at (0,9414) width 23: "\x{E40}\x{E18}\x{E2D}"
1810  text run at (0,9432) width 17: "\x{E43}\x{E2B}\x{E49}"
1811  text run at (0,9450) width 21: "\x{E1E}\x{E49}\x{E19}"
1812  text run at (0,9468) width 26: "\x{E08}\x{E32}\x{E01}"
1813  text run at (0,9486) width 26: "\x{E01}\x{E32}\x{E23}"
1814  text run at (0,9504) width 37: "\x{E01}\x{E25}\x{E32}\x{E22}"
1815  text run at (0,9522) width 25: "\x{E40}\x{E1B}\x{E47}\x{E19}"
1816  text run at (0,9540) width 10: "\x{E2A}\x{E35}"
1817  text run at (0,9558) width 23: "\x{E40}\x{E17}\x{E32}"
1818  text run at (0,9576) width 30: "\x{E2B}\x{E21}\x{E48}\x{E19}"
1819  text run at (0,9594) width 44: "\x{E40}\x{E2B}\x{E21}\x{E37}\x{E2D}\x{E19}"
1820  text run at (0,9612) width 20: "\x{E01}\x{E31}\x{E1A}"
1821  text run at (0,9630) width 18: "\x{E2A}\x{E34}\x{E48}\x{E07}"
1822  text run at (0,9648) width 27: "\x{E23}\x{E2D}\x{E1A}"
1823  text run at (0,9666) width 18: "\x{E15}\x{E31}\x{E27}"
1824  text run at (0,9684) width 19: "\x{E2D}\x{E37}\x{E48}\x{E19}"
1825  text run at (0,9702) width 10: "\x{E46}"
1826  text run at (0,9720) width 17: "\x{E42}\x{E15}"
1827  text run at (0,9738) width 17: "\x{E42}\x{E15}\x{E49}"
1828  text run at (0,9756) width 10: "\x{E2A}\x{E35}"
1829  text run at (0,9774) width 17: "\x{E44}\x{E21}\x{E48}"
1830  text run at (0,9792) width 23: "\x{E40}\x{E17}\x{E32}"
1831  text run at (0,9810) width 30: "\x{E2B}\x{E21}\x{E48}\x{E19}"
1832  text run at (0,9828) width 19: "\x{E41}\x{E15}\x{E48}"
1833  text run at (0,9846) width 20: "\x{E21}\x{E31}\x{E19}"
1834  text run at (0,9864) width 25: "\x{E40}\x{E1B}\x{E47}\x{E19}"
1835  text run at (0,9882) width 28: "\x{E2B}\x{E21}\x{E32}"
1836  text run at (0,9900) width 10: "\x{E2A}\x{E35}"
1837  text run at (0,9918) width 18: "\x{E14}\x{E33}"
1838  text run at (0,9936) width 18: "\x{E15}\x{E31}\x{E27}"
1839  text run at (0,9954) width 29: "\x{E19}\x{E49}\x{E2D}\x{E22}"
1840  text run at (0,9972) width 10: "\x{E46}"
1841  text run at (0,9990) width 19: "\x{E02}\x{E19}"
1842  text run at (0,10008) width 26: "\x{E22}\x{E32}\x{E27}"
1843  text run at (0,10026) width 20: "\x{E1B}\x{E38}\x{E22}"
1844  text run at (0,10044) width 24: "\x{E23}\x{E32}\x{E27}"
1845  text run at (0,10062) width 20: "\x{E01}\x{E31}\x{E1A}"
1846  text run at (0,10080) width 27: "\x{E44}\x{E2B}\x{E21}"
1847  text run at (0,10098) width 10: "\x{E21}\x{E35}"
1848  text run at (0,10116) width 18: "\x{E15}\x{E32}"
1849  text run at (0,10134) width 18: "\x{E14}\x{E33}"
1850  text run at (0,10152) width 24: "\x{E40}\x{E25}\x{E47}\x{E01}"
1851  text run at (0,10170) width 25: "\x{E40}\x{E1B}\x{E47}\x{E19}"
1852  text run at (0,10188) width 53: "\x{E1B}\x{E23}\x{E30}\x{E01}\x{E32}\x{E22}"
1853  text run at (0,10206) width 39: "\x{E23}\x{E37}\x{E48}\x{E19}\x{E40}\x{E23}\x{E34}\x{E07}"
1854  text run at (0,10224) width 19: "\x{E2D}\x{E22}\x{E39}\x{E48}"
1855  text run at (0,10242) width 27: "\x{E2A}\x{E2D}\x{E07}"
1856  text run at (0,10260) width 25: "\x{E02}\x{E49}\x{E32}\x{E07}"
1857  text run at (0,10278) width 28: "\x{E08}\x{E21}\x{E39}\x{E01}"
1858  text run at (0,10296) width 24: "\x{E40}\x{E25}\x{E47}\x{E01}"
1859  text run at (0,10314) width 19: "\x{E2D}\x{E31}\x{E19}"
1860  text run at (0,10332) width 18: "\x{E19}\x{E48}\x{E32}"
1861  text run at (0,10350) width 19: "\x{E02}\x{E31}\x{E19}"
1862  text run at (0,10368) width 26: "\x{E02}\x{E2D}\x{E07}"
1863  text run at (0,10386) width 20: "\x{E21}\x{E31}\x{E19}"
1864  text run at (0,10404) width 17: "\x{E42}\x{E15}"
1865  text run at (0,10422) width 17: "\x{E42}\x{E15}\x{E49}"
1866  text run at (0,10440) width 24: "\x{E40}\x{E25}\x{E48}\x{E19}"
1867  text run at (0,10458) width 18: "\x{E17}\x{E31}\x{E49}\x{E07}"
1868  text run at (0,10476) width 18: "\x{E27}\x{E31}\x{E19}"
1869  text run at (0,10494) width 25: "\x{E41}\x{E25}\x{E30}"
1870  text run at (0,10512) width 17: "\x{E42}\x{E14}"
1871  text run at (0,10530) width 24: "\x{E42}\x{E23}\x{E18}\x{E35}"
1872  text run at (0,10548) width 10: "\x{E01}\x{E47}"
1873  text run at (0,10566) width 24: "\x{E40}\x{E25}\x{E48}\x{E19}"
1874  text run at (0,10584) width 20: "\x{E01}\x{E31}\x{E1A}"
1875  text run at (0,10602) width 20: "\x{E21}\x{E31}\x{E19}"
1876  text run at (0,10620) width 25: "\x{E41}\x{E25}\x{E30}"
1877  text run at (0,10638) width 18: "\x{E23}\x{E31}\x{E01}"
1878  text run at (0,10656) width 20: "\x{E21}\x{E31}\x{E19}"
1879  text run at (0,10674) width 33: "\x{E40}\x{E2B}\x{E25}\x{E37}\x{E2D}"
1880  text run at (0,10692) width 25: "\x{E40}\x{E01}\x{E34}\x{E19}"
1881  text run at (0,10710) width 50: "\x{E2D}\x{E22}\x{E48}\x{E32}\x{E07}\x{E44}\x{E23}"
1882  text run at (0,10728) width 10: "\x{E01}\x{E47}"
1883  text run at (0,10746) width 28: "\x{E15}\x{E32}\x{E21}"
1884  text run at (0,10764) width 18: "\x{E27}\x{E31}\x{E19}"
1885  text run at (0,10782) width 10: "\x{E19}\x{E35}\x{E49}"
1886  text run at (0,10800) width 18: "\x{E17}\x{E31}\x{E49}\x{E07}"
1887  text run at (0,10818) width 10: "\x{E04}\x{E39}\x{E48}"
1888  text run at (0,10836) width 17: "\x{E44}\x{E21}\x{E48}"
1889  text run at (0,10854) width 17: "\x{E44}\x{E14}\x{E49}"
1890  text run at (0,10872) width 24: "\x{E40}\x{E25}\x{E48}\x{E19}"
1891  text run at (0,10890) width 17: "\x{E25}\x{E38}\x{E07}"
1892  text run at (0,10908) width 14: "\x{E40}\x{E2E}"
1893  text run at (0,10926) width 18: "\x{E19}\x{E23}\x{E35}"
1894  text run at (0,10944) width 18: "\x{E19}\x{E31}\x{E48}\x{E07}"
1895  text run at (0,10962) width 19: "\x{E2D}\x{E22}\x{E39}\x{E48}"
1896  text run at (0,10980) width 10: "\x{E17}\x{E35}\x{E48}"
1897  text run at (0,10998) width 37: "\x{E1A}\x{E31}\x{E19}\x{E44}\x{E14}"
1898  text run at (0,11016) width 35: "\x{E1B}\x{E23}\x{E30}\x{E15}\x{E39}"
1899  text run at (0,11034) width 25: "\x{E41}\x{E25}\x{E30}"
1900  text run at (0,11052) width 23: "\x{E40}\x{E1D}\x{E49}\x{E32}"
1901  text run at (0,11070) width 35: "\x{E01}\x{E31}\x{E07}\x{E27}\x{E25}"
1902  text run at (0,11088) width 25: "\x{E08}\x{E49}\x{E2D}\x{E07}"
1903  text run at (0,11106) width 10: "\x{E14}\x{E39}"
1904  text run at (0,11124) width 27: "\x{E17}\x{E49}\x{E2D}\x{E07}"
1905  text run at (0,11142) width 19: "\x{E1F}\x{E49}\x{E32}"
1906  text run at (0,11160) width 10: "\x{E2A}\x{E35}"
1907  text run at (0,11178) width 23: "\x{E40}\x{E17}\x{E32}"
1908  text run at (0,11196) width 30: "\x{E2B}\x{E21}\x{E48}\x{E19}"
1909  text run at (0,11214) width 20: "\x{E1C}\x{E34}\x{E14}"
1910  text run at (0,11232) width 30: "\x{E1B}\x{E01}\x{E15}\x{E34}"
1911  text run at (0,11250) width 17: "\x{E42}\x{E14}"
1912  text run at (0,11268) width 24: "\x{E42}\x{E23}\x{E18}\x{E35}"
1913  text run at (0,11286) width 20: "\x{E22}\x{E37}\x{E19}"
1914  text run at (0,11304) width 10: "\x{E17}\x{E35}\x{E48}"
1915  text run at (0,11322) width 35: "\x{E1B}\x{E23}\x{E30}\x{E15}\x{E39}"
1916  text run at (0,11340) width 29: "\x{E01}\x{E2D}\x{E14}"
1917  text run at (0,11358) width 17: "\x{E42}\x{E15}"
1918  text run at (0,11376) width 17: "\x{E42}\x{E15}\x{E49}"
1919  text run at (0,11394) width 15: "\x{E44}\x{E27}\x{E49}"
1920  text run at (0,11412) width 17: "\x{E43}\x{E19}"
1921  text run at (0,11430) width 28: "\x{E2D}\x{E49}\x{E2D}\x{E21}"
1922  text run at (0,11448) width 28: "\x{E41}\x{E02}\x{E19}"
1923  text run at (0,11466) width 25: "\x{E41}\x{E25}\x{E30}"
1924  text run at (0,11484) width 10: "\x{E01}\x{E47}"
1925  text run at (0,11502) width 27: "\x{E21}\x{E2D}\x{E07}"
1926  text run at (0,11520) width 10: "\x{E14}\x{E39}"
1927  text run at (0,11538) width 27: "\x{E17}\x{E49}\x{E2D}\x{E07}"
1928  text run at (0,11556) width 19: "\x{E1F}\x{E49}\x{E32}"
1929  text run at (0,11574) width 19: "\x{E2D}\x{E22}\x{E39}\x{E48}"
1930  text run at (0,11592) width 44: "\x{E40}\x{E2B}\x{E21}\x{E37}\x{E2D}\x{E19}"
1931  text run at (0,11610) width 20: "\x{E01}\x{E31}\x{E19}"
1932  text run at (0,11628) width 18: "\x{E1B}\x{E49}\x{E32}"
1933  text run at (0,11646) width 24: "\x{E40}\x{E2D}\x{E47}\x{E21}"
1934  text run at (0,11664) width 35: "\x{E01}\x{E33}\x{E25}\x{E31}\x{E07}"
1935  text run at (0,11682) width 25: "\x{E25}\x{E49}\x{E32}\x{E07}"
1936  text run at (0,11700) width 27: "\x{E0A}\x{E32}\x{E21}"
1937  text run at (0,11718) width 19: "\x{E2D}\x{E22}\x{E39}\x{E48}"
1938  text run at (0,11736) width 26: "\x{E08}\x{E32}\x{E01}"
1939  text run at (0,11754) width 28: "\x{E14}\x{E49}\x{E32}\x{E19}"
1940  text run at (0,11772) width 34: "\x{E40}\x{E2B}\x{E19}\x{E37}\x{E2D}"
1941  text run at (0,11790) width 26: "\x{E44}\x{E01}\x{E25}"
1942  text run at (0,11808) width 28: "\x{E2D}\x{E2D}\x{E01}"
1943  text run at (0,11826) width 17: "\x{E44}\x{E1B}"
1944  text run at (0,11844) width 10: "\x{E21}\x{E35}"
1945  text run at (0,11862) width 33: "\x{E40}\x{E2A}\x{E35}\x{E22}\x{E07}"
1946  text run at (0,11880) width 19: "\x{E25}\x{E21}"
1947  text run at (0,11898) width 34: "\x{E04}\x{E23}\x{E32}\x{E07}"
1948  text run at (0,11916) width 27: "\x{E41}\x{E1C}\x{E48}\x{E27}"
1949  text run at (0,11934) width 23: "\x{E40}\x{E1A}\x{E32}"
1950  text run at (0,11952) width 37: "\x{E44}\x{E14}\x{E49}\x{E22}\x{E34}\x{E19}"
1951  text run at (0,11970) width 18: "\x{E21}\x{E32}"
1952  text run at (0,11988) width 17: "\x{E25}\x{E38}\x{E07}"
1953  text run at (0,12006) width 14: "\x{E40}\x{E2E}"
1954  text run at (0,12024) width 18: "\x{E19}\x{E23}\x{E35}"
1955  text run at (0,12042) width 25: "\x{E41}\x{E25}\x{E30}"
1956  text run at (0,12060) width 17: "\x{E42}\x{E14}"
1957  text run at (0,12078) width 24: "\x{E42}\x{E23}\x{E18}\x{E35}"
1958  text run at (0,12096) width 25: "\x{E40}\x{E2B}\x{E47}\x{E19}"
1959  text run at (0,12114) width 20: "\x{E15}\x{E49}\x{E19}"
1960  text run at (0,12132) width 31: "\x{E2B}\x{E0D}\x{E49}\x{E32}"
1961  text run at (0,12150) width 18: "\x{E2A}\x{E39}\x{E07}"
1962  text run at (0,12168) width 24: "\x{E40}\x{E2D}\x{E19}"
1963  text run at (0,12186) width 25: "\x{E40}\x{E1B}\x{E47}\x{E19}"
1964  text run at (0,12204) width 29: "\x{E04}\x{E25}\x{E37}\x{E48}\x{E19}"
1965  text run at (0,12222) width 29: "\x{E01}\x{E48}\x{E2D}\x{E19}"
1966  text run at (0,12240) width 10: "\x{E17}\x{E35}\x{E48}"
1967  text run at (0,12258) width 29: "\x{E1E}\x{E32}\x{E22}\x{E38}"
1968  text run at (0,12276) width 15: "\x{E08}\x{E30}"
1969  text run at (0,12294) width 18: "\x{E21}\x{E32}"
1970  text run at (0,12312) width 18: "\x{E16}\x{E36}\x{E07}"
1971  text run at (0,12330) width 26: "\x{E41}\x{E25}\x{E49}\x{E27}"
1972  text run at (0,12348) width 10: "\x{E01}\x{E47}"
1973  text run at (0,12366) width 10: "\x{E21}\x{E35}"
1974  text run at (0,12384) width 33: "\x{E40}\x{E2A}\x{E35}\x{E22}\x{E07}"
1975  text run at (0,12402) width 28: "\x{E2B}\x{E27}\x{E35}\x{E14}"
1976  text run at (0,12420) width 26: "\x{E2B}\x{E27}\x{E34}\x{E27}"
1977  text run at (0,12438) width 42: "\x{E0A}\x{E31}\x{E14}\x{E40}\x{E08}\x{E19}"
1978  text run at (0,12456) width 18: "\x{E21}\x{E32}"
1979  text run at (0,12474) width 26: "\x{E08}\x{E32}\x{E01}"
1980  text run at (0,12492) width 72: "\x{E1A}\x{E23}\x{E23}\x{E22}\x{E32}\x{E01}\x{E32}\x{E28}"
1981  text run at (0,12510) width 26: "\x{E17}\x{E32}\x{E07}"
1982  text run at (0,12528) width 17: "\x{E43}\x{E15}\x{E49}"
1983  text run at (0,12546) width 25: "\x{E41}\x{E25}\x{E30}"
1984  text run at (0,12564) width 24: "\x{E40}\x{E21}\x{E37}\x{E48}\x{E2D}"
1985  text run at (0,12582) width 43: "\x{E40}\x{E2B}\x{E25}\x{E37}\x{E2D}\x{E1A}"
1986  text run at (0,12600) width 18: "\x{E15}\x{E32}"
1987  text run at (0,12618) width 17: "\x{E44}\x{E1B}"
1988  text run at (0,12636) width 26: "\x{E17}\x{E32}\x{E07}"
1989  text run at (0,12654) width 28: "\x{E14}\x{E49}\x{E32}\x{E19}"
1990  text run at (0,12672) width 20: "\x{E19}\x{E31}\x{E49}\x{E19}"
1991  text run at (0,12690) width 10: "\x{E01}\x{E47}"
1992  text run at (0,12708) width 25: "\x{E40}\x{E2B}\x{E47}\x{E19}"
1993  text run at (0,12726) width 29: "\x{E04}\x{E25}\x{E37}\x{E48}\x{E19}"
1994  text run at (0,12744) width 31: "\x{E2B}\x{E0D}\x{E49}\x{E32}"
1995  text run at (0,12762) width 18: "\x{E21}\x{E32}"
1996  text run at (0,12780) width 26: "\x{E17}\x{E32}\x{E07}"
1997  text run at (0,12798) width 28: "\x{E14}\x{E49}\x{E32}\x{E19}"
1998  text run at (0,12816) width 20: "\x{E19}\x{E31}\x{E49}\x{E19}"
1999  text run at (0,12834) width 28: "\x{E14}\x{E49}\x{E27}\x{E22}"
2000  text run at (0,12852) width 17: "\x{E25}\x{E38}\x{E07}"
2001  text run at (0,12870) width 14: "\x{E40}\x{E2E}"
2002  text run at (0,12888) width 18: "\x{E19}\x{E23}\x{E35}"
2003  text run at (0,12906) width 20: "\x{E1C}\x{E38}\x{E14}"
2004  text run at (0,12924) width 19: "\x{E25}\x{E38}\x{E01}"
2005  text run at (0,12942) width 19: "\x{E02}\x{E36}\x{E49}\x{E19}"
2006  text run at (0,12960) width 20: "\x{E17}\x{E31}\x{E19}"
2007  text run at (0,12978) width 17: "\x{E43}\x{E14}"
2008  text run at (0,12996) width 7: "\""
2009  text run at (0,13014) width 19: "\x{E25}\x{E21}"
2010  text run at (0,13032) width 52: "\x{E44}\x{E0B}\x{E42}\x{E04}\x{E25}\x{E19}"
2011  text run at (0,13050) width 18: "\x{E21}\x{E32}"
2012  text run at (0,13068) width 24: "\x{E40}\x{E2D}\x{E47}\x{E21}"
2013  text run at (0,13086) width 7: "\""
2014  text run at (0,13104) width 17: "\x{E25}\x{E38}\x{E07}"
2015  text run at (0,13122) width 25: "\x{E23}\x{E49}\x{E2D}\x{E07}"
2016  text run at (0,13140) width 29: "\x{E1A}\x{E2D}\x{E01}"
2017  text run at (0,13158) width 45: "\x{E20}\x{E23}\x{E23}\x{E22}\x{E32}"
2018  text run at (0,13176) width 7: "\""
2019  text run at (0,13194) width 17: "\x{E02}\x{E49}\x{E32}"
2020  text run at (0,13212) width 15: "\x{E08}\x{E30}"
2021  text run at (0,13230) width 17: "\x{E44}\x{E1B}"
2022  text run at (0,13248) width 10: "\x{E14}\x{E39}"
2023  text run at (0,13266) width 28: "\x{E2A}\x{E31}\x{E15}\x{E27}\x{E4C}"
2024  text run at (0,13284) width 32: "\x{E40}\x{E25}\x{E35}\x{E49}\x{E22}\x{E07}"
2025  text run at (0,13302) width 39: "\x{E2B}\x{E19}\x{E48}\x{E2D}\x{E22}"
2026  text run at (0,13320) width 7: "\""
2027  text run at (0,13338) width 26: "\x{E41}\x{E25}\x{E49}\x{E27}"
2028  text run at (0,13356) width 17: "\x{E25}\x{E38}\x{E07}"
2029  text run at (0,13374) width 10: "\x{E01}\x{E47}"
2030  text run at (0,13392) width 16: "\x{E27}\x{E34}\x{E48}\x{E07}"
2031  text run at (0,13410) width 17: "\x{E44}\x{E1B}"
2032  text run at (0,13428) width 18: "\x{E22}\x{E31}\x{E07}"
2033  text run at (0,13446) width 24: "\x{E40}\x{E1E}\x{E34}\x{E07}"
2034  text run at (0,13464) width 10: "\x{E17}\x{E35}\x{E48}"
2035  text run at (0,13482) width 16: "\x{E27}\x{E31}\x{E27}"
2036  text run at (0,13500) width 25: "\x{E41}\x{E25}\x{E30}"
2037  text run at (0,13518) width 18: "\x{E21}\x{E49}\x{E32}"
2038  text run at (0,13536) width 37: "\x{E2D}\x{E32}\x{E28}\x{E31}\x{E22}"
2039  text run at (0,13554) width 19: "\x{E2D}\x{E22}\x{E39}\x{E48}"
2040  text run at (0,13572) width 18: "\x{E1B}\x{E49}\x{E32}"
2041  text run at (0,13590) width 24: "\x{E40}\x{E2D}\x{E47}\x{E21}"
2042  text run at (0,13608) width 30: "\x{E2B}\x{E22}\x{E38}\x{E14}"
2043  text run at (0,13626) width 44: "\x{E17}\x{E33}\x{E07}\x{E32}\x{E19}"
2044  text run at (0,13644) width 25: "\x{E41}\x{E25}\x{E30}"
2045  text run at (0,13662) width 18: "\x{E21}\x{E32}"
2046  text run at (0,13680) width 10: "\x{E17}\x{E35}\x{E48}"
2047  text run at (0,13698) width 35: "\x{E1B}\x{E23}\x{E30}\x{E15}\x{E39}"
2048  text run at (0,13716) width 34: "\x{E40}\x{E1E}\x{E35}\x{E22}\x{E07}"
2049  text run at (0,13734) width 45: "\x{E0A}\x{E32}\x{E22}\x{E15}\x{E32}"
2050  text run at (0,13752) width 27: "\x{E21}\x{E2D}\x{E07}"
2051  text run at (0,13770) width 18: "\x{E1B}\x{E49}\x{E32}"
2052  text run at (0,13788) width 10: "\x{E01}\x{E47}"
2053  text run at (0,13806) width 29: "\x{E1A}\x{E2D}\x{E01}"
2054  text run at (0,13824) width 17: "\x{E44}\x{E14}\x{E49}"
2055  text run at (0,13842) width 16: "\x{E27}\x{E48}\x{E32}"
2056  text run at (0,13860) width 55: "\x{E2D}\x{E31}\x{E19}\x{E15}\x{E23}\x{E32}\x{E22}"
2057  text run at (0,13878) width 18: "\x{E21}\x{E32}"
2058  text run at (0,13896) width 18: "\x{E16}\x{E36}\x{E07}"
2059  text run at (0,13914) width 26: "\x{E41}\x{E25}\x{E49}\x{E27}"
2060  text run at (0,13932) width 7: "\""
2061  text run at (0,13950) width 21: "\x{E40}\x{E23}\x{E47}\x{E27}"
2062  text run at (0,13968) width 17: "\x{E42}\x{E14}"
2063  text run at (0,13986) width 24: "\x{E42}\x{E23}\x{E18}\x{E35}"
2064  text run at (0,14004) width 5: "!"
2065  text run at (0,14022) width 7: "\""
2066  text run at (0,14040) width 18: "\x{E1B}\x{E49}\x{E32}"
2067  text run at (0,14058) width 44: "\x{E15}\x{E30}\x{E42}\x{E01}\x{E19}"
2068  text run at (0,14076) width 7: "\""
2069  text run at (0,14094) width 16: "\x{E27}\x{E34}\x{E48}\x{E07}"
2070  text run at (0,14112) width 17: "\x{E44}\x{E1B}"
2071  text run at (0,14130) width 27: "\x{E2B}\x{E49}\x{E2D}\x{E07}"
2072  text run at (0,14148) width 37: "\x{E43}\x{E15}\x{E49}\x{E16}\x{E38}\x{E19}"
2073  text run at (0,14166) width 7: "\""
2074  text run at (0,14184) width 17: "\x{E42}\x{E15}"
2075  text run at (0,14202) width 17: "\x{E42}\x{E15}\x{E49}"
2076  text run at (0,14220) width 29: "\x{E1C}\x{E25}\x{E38}\x{E19}"
2077  text run at (0,14238) width 52: "\x{E01}\x{E23}\x{E30}\x{E42}\x{E14}\x{E14}"
2078  text run at (0,14256) width 17: "\x{E25}\x{E07}"
2079  text run at (0,14274) width 26: "\x{E08}\x{E32}\x{E01}"
2080  text run at (0,14292) width 28: "\x{E2D}\x{E49}\x{E2D}\x{E21}"
2081  text run at (0,14310) width 28: "\x{E41}\x{E02}\x{E19}"
2082  text run at (0,14328) width 17: "\x{E42}\x{E14}"
2083  text run at (0,14346) width 24: "\x{E42}\x{E23}\x{E18}\x{E35}"
2084  text run at (0,14364) width 26: "\x{E41}\x{E25}\x{E49}\x{E27}"
2085  text run at (0,14382) width 22: "\x{E40}\x{E02}\x{E49}\x{E32}"
2086  text run at (0,14400) width 17: "\x{E44}\x{E1B}"
2087  text run at (0,14418) width 28: "\x{E0B}\x{E48}\x{E2D}\x{E19}"
2088  text run at (0,14436) width 19: "\x{E2D}\x{E22}\x{E39}\x{E48}"
2089  text run at (0,14454) width 17: "\x{E43}\x{E15}\x{E49}"
2090  text run at (0,14472) width 33: "\x{E40}\x{E15}\x{E35}\x{E22}\x{E07}"
2091  text run at (0,14490) width 25: "\x{E40}\x{E14}\x{E47}\x{E01}"
2092  text run at (0,14508) width 31: "\x{E2B}\x{E0D}\x{E34}\x{E07}"
2093  text run at (0,14526) width 29: "\x{E19}\x{E49}\x{E2D}\x{E22}"
2094  text run at (0,14544) width 22: "\x{E40}\x{E02}\x{E49}\x{E32}"
2095  text run at (0,14562) width 17: "\x{E44}\x{E1B}"
2096  text run at (0,14580) width 18: "\x{E14}\x{E36}\x{E07}"
2097  text run at (0,14598) width 20: "\x{E21}\x{E31}\x{E19}"
2098  text run at (0,14616) width 28: "\x{E2D}\x{E2D}\x{E01}"
2099  text run at (0,14634) width 18: "\x{E21}\x{E32}"
2100  text run at (0,14652) width 18: "\x{E1B}\x{E49}\x{E32}"
2101  text run at (0,14670) width 24: "\x{E40}\x{E2D}\x{E47}\x{E21}"
2102  text run at (0,14688) width 52: "\x{E01}\x{E23}\x{E30}\x{E0A}\x{E32}\x{E01}"
2103  text run at (0,14706) width 18: "\x{E1D}\x{E32}"
2104  text run at (0,14724) width 10: "\x{E17}\x{E35}\x{E48}"
2105  text run at (0,14742) width 21: "\x{E1E}\x{E37}\x{E49}\x{E19}"
2106  text run at (0,14760) width 28: "\x{E2D}\x{E2D}\x{E01}"
2107  text run at (0,14778) width 35: "\x{E2D}\x{E22}\x{E48}\x{E32}\x{E07}"
2108  text run at (0,14796) width 19: "\x{E2D}\x{E01}"
2109  text run at (0,14814) width 20: "\x{E2A}\x{E31}\x{E48}\x{E19}"
2110  text run at (0,14832) width 30: "\x{E02}\x{E27}\x{E31}\x{E0D}"
2111  text run at (0,14850) width 28: "\x{E2B}\x{E32}\x{E22}"
2112  text run at (0,14868) width 20: "\x{E1B}\x{E35}\x{E19}"
2113  text run at (0,14886) width 37: "\x{E1A}\x{E31}\x{E19}\x{E44}\x{E14}"
2114  text run at (0,14904) width 17: "\x{E44}\x{E21}\x{E49}"
2115  text run at (0,14922) width 17: "\x{E25}\x{E07}"
2116  text run at (0,14940) width 17: "\x{E44}\x{E1B}"
2117  text run at (0,14958) width 17: "\x{E43}\x{E19}"
2118  text run at (0,14976) width 34: "\x{E42}\x{E1E}\x{E23}\x{E07}"
2119  text run at (0,14994) width 24: "\x{E40}\x{E25}\x{E47}\x{E01}"
2120  text run at (0,15012) width 19: "\x{E2D}\x{E31}\x{E19}"
2121  text run at (0,15030) width 20: "\x{E21}\x{E37}\x{E14}"
2122  text run at (0,15048) width 20: "\x{E17}\x{E36}\x{E1A}"
2123  text run at (0,15066) width 17: "\x{E42}\x{E14}"
2124  text run at (0,15084) width 24: "\x{E42}\x{E23}\x{E18}\x{E35}"
2125  text run at (0,15102) width 18: "\x{E08}\x{E31}\x{E1A}"
2126  text run at (0,15120) width 17: "\x{E42}\x{E15}"
2127  text run at (0,15138) width 17: "\x{E42}\x{E15}\x{E49}"
2128  text run at (0,15156) width 17: "\x{E44}\x{E14}\x{E49}"
2129  text run at (0,15174) width 17: "\x{E43}\x{E19}"
2130  text run at (0,15192) width 10: "\x{E17}\x{E35}\x{E48}"
2131  text run at (0,15210) width 20: "\x{E2A}\x{E38}\x{E14}"
2132  text run at (0,15228) width 25: "\x{E41}\x{E25}\x{E30}"
2133  text run at (0,15246) width 16: "\x{E27}\x{E34}\x{E48}\x{E07}"
2134  text run at (0,15264) width 28: "\x{E15}\x{E32}\x{E21}"
2135  text run at (0,15282) width 18: "\x{E1B}\x{E49}\x{E32}"
2136  text run at (0,15300) width 23: "\x{E40}\x{E18}\x{E2D}"
2137  text run at (0,15318) width 17: "\x{E44}\x{E1B}"
2138  text run at (0,15336) width 24: "\x{E40}\x{E21}\x{E37}\x{E48}\x{E2D}"
2139  text run at (0,15354) width 23: "\x{E40}\x{E18}\x{E2D}"
2140  text run at (0,15372) width 18: "\x{E21}\x{E32}"
2141  text run at (0,15390) width 17: "\x{E44}\x{E14}\x{E49}"
2142  text run at (0,15408) width 26: "\x{E04}\x{E23}\x{E36}\x{E48}\x{E07}"
2143  text run at (0,15426) width 27: "\x{E2B}\x{E49}\x{E2D}\x{E07}"
2144  text run at (0,15444) width 10: "\x{E01}\x{E47}"
2145  text run at (0,15462) width 10: "\x{E21}\x{E35}"
2146  text run at (0,15480) width 33: "\x{E40}\x{E2A}\x{E35}\x{E22}\x{E07}"
2147  text run at (0,15498) width 28: "\x{E2B}\x{E27}\x{E35}\x{E14}"
2148  text run at (0,15516) width 27: "\x{E2B}\x{E27}\x{E37}\x{E2D}"
2149  text run at (0,15534) width 28: "\x{E2A}\x{E48}\x{E27}\x{E19}"
2150  text run at (0,15552) width 28: "\x{E1A}\x{E49}\x{E32}\x{E19}"
2151  text run at (0,15570) width 10: "\x{E01}\x{E47}"
2152  text run at (0,15588) width 20: "\x{E2A}\x{E31}\x{E48}\x{E19}"
2153  text run at (0,15606) width 35: "\x{E2D}\x{E22}\x{E48}\x{E32}\x{E07}"
2154  text run at (0,15624) width 25: "\x{E41}\x{E23}\x{E07}"
2155  text run at (0,15642) width 18: "\x{E08}\x{E19}"
2156  text run at (0,15660) width 23: "\x{E40}\x{E18}\x{E2D}"
2157  text run at (0,15678) width 20: "\x{E2B}\x{E01}"
2158  text run at (0,15696) width 35: "\x{E04}\x{E30}\x{E21}\x{E33}"
2159  text run at (0,15714) width 18: "\x{E19}\x{E31}\x{E48}\x{E07}"
2160  text run at (0,15732) width 39: "\x{E08}\x{E49}\x{E33}\x{E40}\x{E1A}\x{E49}\x{E32}"
2161  text run at (0,15750) width 19: "\x{E2D}\x{E22}\x{E39}\x{E48}"
2162  text run at (0,15768) width 20: "\x{E01}\x{E31}\x{E1A}"
2163  text run at (0,15786) width 21: "\x{E1E}\x{E37}\x{E49}\x{E19}"
2164  text run at (0,15804) width 26: "\x{E41}\x{E25}\x{E49}\x{E27}"
2165  text run at (0,15822) width 18: "\x{E2A}\x{E34}\x{E48}\x{E07}"
2166  text run at (0,15840) width 62: "\x{E1B}\x{E23}\x{E30}\x{E2B}\x{E25}\x{E32}\x{E14}"
2167  text run at (0,15858) width 10: "\x{E01}\x{E47}"
2168  text run at (0,15876) width 25: "\x{E40}\x{E01}\x{E34}\x{E14}"
2169  text run at (0,15894) width 19: "\x{E02}\x{E36}\x{E49}\x{E19}"
2170  text run at (0,15912) width 28: "\x{E1A}\x{E49}\x{E32}\x{E19}"
2171  text run at (0,15930) width 30: "\x{E2B}\x{E21}\x{E38}\x{E19}"
2172  text run at (0,15948) width 17: "\x{E44}\x{E1B}"
2173  text run at (0,15966) width 30: "\x{E2B}\x{E21}\x{E38}\x{E19}"
2174  text run at (0,15984) width 18: "\x{E21}\x{E32}"
2175  text run at (0,16002) width 27: "\x{E2A}\x{E2D}\x{E07}"
2176  text run at (0,16020) width 28: "\x{E2A}\x{E32}\x{E21}"
2177  text run at (0,16038) width 27: "\x{E23}\x{E2D}\x{E1A}"
2178  text run at (0,16056) width 26: "\x{E41}\x{E25}\x{E49}\x{E27}"
2179  text run at (0,16074) width 10: "\x{E01}\x{E47}"
2180  text run at (0,16092) width 28: "\x{E25}\x{E2D}\x{E22}"
2181  text run at (0,16110) width 19: "\x{E02}\x{E36}\x{E49}\x{E19}"
2182  text run at (0,16128) width 10: "\x{E2A}\x{E39}\x{E48}"
2183  text run at (0,16146) width 45: "\x{E2D}\x{E32}\x{E01}\x{E32}\x{E28}"
2184  text run at (0,16164) width 35: "\x{E2D}\x{E22}\x{E48}\x{E32}\x{E07}"
2185  text run at (0,16182) width 17: "\x{E0A}\x{E49}\x{E32}"
2186  text run at (0,16200) width 10: "\x{E46}"
2187  text run at (0,16218) width 17: "\x{E42}\x{E14}"
2188  text run at (0,16236) width 24: "\x{E42}\x{E23}\x{E18}\x{E35}"
2189  text run at (0,16254) width 28: "\x{E23}\x{E39}\x{E49}\x{E2A}\x{E36}\x{E01}"
2190  text run at (0,16272) width 24: "\x{E23}\x{E32}\x{E27}"
2191  text run at (0,16290) width 20: "\x{E01}\x{E31}\x{E1A}"
2192  text run at (0,16308) width 16: "\x{E27}\x{E48}\x{E32}"
2193  text run at (0,16326) width 23: "\x{E40}\x{E18}\x{E2D}"
2194  text run at (0,16344) width 17: "\x{E44}\x{E14}\x{E49}"
2195  text run at (0,16362) width 19: "\x{E02}\x{E36}\x{E49}\x{E19}"
2196  text run at (0,16380) width 17: "\x{E44}\x{E1B}"
2197  text run at (0,16398) width 20: "\x{E01}\x{E31}\x{E1A}"
2198  text run at (0,16416) width 19: "\x{E25}\x{E39}\x{E01}"
2199  text run at (0,16434) width 47: "\x{E1A}\x{E2D}\x{E25}\x{E25}\x{E39}\x{E19}"
2200  text run at (0,16452) width 29: "\x{E1E}\x{E32}\x{E22}\x{E38}"
2201  text run at (0,16470) width 34: "\x{E40}\x{E2B}\x{E19}\x{E37}\x{E2D}"
2202  text run at (0,16488) width 20: "\x{E01}\x{E31}\x{E1A}"
2203  text run at (0,16506) width 29: "\x{E1E}\x{E32}\x{E22}\x{E38}"
2204  text run at (0,16524) width 17: "\x{E43}\x{E15}\x{E49}"
2205  text run at (0,16542) width 18: "\x{E21}\x{E32}"
2206  text run at (0,16560) width 21: "\x{E1E}\x{E1A}"
2207  text run at (0,16578) width 20: "\x{E01}\x{E31}\x{E19}"
2208  text run at (0,16596) width 26: "\x{E15}\x{E23}\x{E07}"
2209  text run at (0,16614) width 10: "\x{E17}\x{E35}\x{E48}"
2210  text run at (0,16632) width 28: "\x{E1A}\x{E49}\x{E32}\x{E19}"
2211  text run at (0,16650) width 20: "\x{E1E}\x{E2D}"
2212  text run at (0,16668) width 10: "\x{E14}\x{E35}"
2213  text run at (0,16686) width 25: "\x{E41}\x{E25}\x{E30}"
2214  text run at (0,16704) width 18: "\x{E17}\x{E33}"
2215  text run at (0,16722) width 17: "\x{E43}\x{E2B}\x{E49}"
2216  text run at (0,16740) width 26: "\x{E15}\x{E23}\x{E07}"
2217  text run at (0,16758) width 20: "\x{E19}\x{E31}\x{E49}\x{E19}"
2218  text run at (0,16776) width 25: "\x{E40}\x{E1B}\x{E47}\x{E19}"
2219  text run at (0,16794) width 18: "\x{E08}\x{E38}\x{E14}"
2220  text run at (0,16812) width 30: "\x{E28}\x{E39}\x{E19}\x{E22}\x{E4C}"
2221  text run at (0,16830) width 35: "\x{E01}\x{E25}\x{E32}\x{E07}"
2222  text run at (0,16848) width 26: "\x{E02}\x{E2D}\x{E07}"
2223  text run at (0,16866) width 29: "\x{E1E}\x{E32}\x{E22}\x{E38}"
2224  text run at (0,16884) width 52: "\x{E44}\x{E0B}\x{E42}\x{E04}\x{E25}\x{E19}"
2225  text run at (0,16902) width 28: "\x{E15}\x{E32}\x{E21}"
2226  text run at (0,16920) width 30: "\x{E1B}\x{E01}\x{E15}\x{E34}"
2227  text run at (0,16938) width 26: "\x{E15}\x{E23}\x{E07}"
2228  text run at (0,16956) width 35: "\x{E01}\x{E25}\x{E32}\x{E07}"
2229  text run at (0,16974) width 29: "\x{E1E}\x{E32}\x{E22}\x{E38}"
2230  text run at (0,16992) width 52: "\x{E44}\x{E0B}\x{E42}\x{E04}\x{E25}\x{E19}"
2231  text run at (0,17010) width 45: "\x{E2D}\x{E32}\x{E01}\x{E32}\x{E28}"
2232  text run at (0,17028) width 15: "\x{E08}\x{E30}"
2233  text run at (0,17046) width 18: "\x{E19}\x{E34}\x{E48}\x{E07}"
2234  text run at (0,17064) width 19: "\x{E41}\x{E15}\x{E48}"
2235  text run at (0,17082) width 36: "\x{E04}\x{E27}\x{E32}\x{E21}"
2236  text run at (0,17100) width 40: "\x{E01}\x{E14}\x{E14}\x{E31}\x{E19}"
2237  text run at (0,17118) width 35: "\x{E2D}\x{E22}\x{E48}\x{E32}\x{E07}"
2238  text run at (0,17136) width 30: "\x{E2B}\x{E19}\x{E31}\x{E01}"
2239  text run at (0,17154) width 26: "\x{E02}\x{E2D}\x{E07}"
2240  text run at (0,17172) width 19: "\x{E25}\x{E21}"
2241  text run at (0,17190) width 20: "\x{E17}\x{E38}\x{E01}"
2242  text run at (0,17208) width 28: "\x{E14}\x{E49}\x{E32}\x{E19}"
2243  text run at (0,17226) width 27: "\x{E23}\x{E2D}\x{E1A}"
2244  text run at (0,17244) width 28: "\x{E1A}\x{E49}\x{E32}\x{E19}"
2245  text run at (0,17262) width 18: "\x{E17}\x{E33}"
2246  text run at (0,17280) width 17: "\x{E43}\x{E2B}\x{E49}"
2247  text run at (0,17298) width 28: "\x{E1A}\x{E49}\x{E32}\x{E19}"
2248  text run at (0,17316) width 28: "\x{E25}\x{E2D}\x{E22}"
2249  text run at (0,17334) width 18: "\x{E2A}\x{E39}\x{E07}"
2250  text run at (0,17352) width 19: "\x{E02}\x{E36}\x{E49}\x{E19}"
2251  text run at (0,17370) width 10: "\x{E46}"
2252  text run at (0,17388) width 18: "\x{E08}\x{E19}"
2253  text run at (0,17406) width 43: "\x{E01}\x{E23}\x{E30}\x{E17}\x{E31}\x{E48}\x{E07}"
2254  text run at (0,17424) width 19: "\x{E02}\x{E36}\x{E49}\x{E19}"
2255  text run at (0,17442) width 17: "\x{E44}\x{E1B}"
2256  text run at (0,17460) width 19: "\x{E2D}\x{E22}\x{E39}\x{E48}"
2257  text run at (0,17478) width 20: "\x{E2A}\x{E38}\x{E14}"
2258  text run at (0,17496) width 29: "\x{E22}\x{E2D}\x{E14}"
2259  text run at (0,17514) width 26: "\x{E02}\x{E2D}\x{E07}"
2260  text run at (0,17532) width 29: "\x{E1E}\x{E32}\x{E22}\x{E38}"
2261  text run at (0,17550) width 52: "\x{E44}\x{E0B}\x{E42}\x{E04}\x{E25}\x{E19}"
2262  text run at (0,17568) width 25: "\x{E41}\x{E25}\x{E30}"
2263  text run at (0,17586) width 26: "\x{E08}\x{E32}\x{E01}"
2264  text run at (0,17604) width 26: "\x{E15}\x{E23}\x{E07}"
2265  text run at (0,17622) width 20: "\x{E19}\x{E31}\x{E49}\x{E19}"
2266  text run at (0,17640) width 10: "\x{E01}\x{E47}"
2267  text run at (0,17658) width 20: "\x{E16}\x{E39}\x{E01}"
2268  text run at (0,17676) width 29: "\x{E2B}\x{E2D}\x{E1A}"
2269  text run at (0,17694) width 17: "\x{E44}\x{E1B}"
2270  text run at (0,17712) width 37: "\x{E2B}\x{E25}\x{E32}\x{E22}"
2271  text run at (0,17730) width 26: "\x{E44}\x{E21}\x{E25}\x{E4C}"
2272  text run at (0,17748) width 26: "\x{E07}\x{E48}\x{E32}\x{E22}"
2273  text run at (0,17766) width 28: "\x{E14}\x{E32}\x{E22}"
2274  text run at (0,17784) width 24: "\x{E23}\x{E32}\x{E27}"
2275  text run at (0,17802) width 20: "\x{E01}\x{E31}\x{E1A}"
2276  text run at (0,17820) width 29: "\x{E2B}\x{E2D}\x{E1A}"
2277  text run at (0,17838) width 19: "\x{E02}\x{E19}"
2278  text run at (0,17856) width 20: "\x{E19}\x{E01}"
2279  text run at (0,17874) width 20: "\x{E21}\x{E37}\x{E14}"
2280  text run at (0,17892) width 28: "\x{E21}\x{E32}\x{E01}"
2281  text run at (0,17910) width 26: "\x{E41}\x{E25}\x{E49}\x{E27}"
2282  text run at (0,17928) width 19: "\x{E25}\x{E21}"
2283  text run at (0,17946) width 18: "\x{E22}\x{E31}\x{E07}"
2284  text run at (0,17964) width 18: "\x{E2A}\x{E48}\x{E07}"
2285  text run at (0,17982) width 33: "\x{E40}\x{E2A}\x{E35}\x{E22}\x{E07}"
2286  text run at (0,18000) width 28: "\x{E2B}\x{E27}\x{E35}\x{E14}"
2287  text run at (0,18018) width 27: "\x{E2B}\x{E27}\x{E37}\x{E2D}"
2288  text run at (0,18036) width 18: "\x{E19}\x{E48}\x{E32}"
2289  text run at (0,18054) width 27: "\x{E01}\x{E25}\x{E31}\x{E27}"
2290  text run at (0,18072) width 19: "\x{E2D}\x{E22}\x{E39}\x{E48}"
2291  text run at (0,18090) width 27: "\x{E23}\x{E2D}\x{E1A}"
2292  text run at (0,18108) width 18: "\x{E15}\x{E31}\x{E27}"
2293  text run at (0,18126) width 23: "\x{E40}\x{E18}\x{E2D}"
2294  text run at (0,18144) width 19: "\x{E41}\x{E15}\x{E48}"
2295  text run at (0,18162) width 17: "\x{E42}\x{E14}"
2296  text run at (0,18180) width 24: "\x{E42}\x{E23}\x{E18}\x{E35}"
2297  text run at (0,18198) width 25: "\x{E40}\x{E2B}\x{E47}\x{E19}"
2298  text run at (0,18216) width 16: "\x{E27}\x{E48}\x{E32}"
2299  text run at (0,18234) width 23: "\x{E40}\x{E18}\x{E2D}"
2300  text run at (0,18252) width 54: "\x{E2A}\x{E32}\x{E21}\x{E32}\x{E23}\x{E16}"
2301  text run at (0,18270) width 18: "\x{E19}\x{E31}\x{E48}\x{E07}"
2302  text run at (0,18288) width 17: "\x{E44}\x{E1B}"
2303  text run at (0,18306) width 17: "\x{E44}\x{E14}\x{E49}"
2304  text run at (0,18324) width 27: "\x{E2D}\x{E22}\x{E48}\x{E32}"
2305  text run at (0,18342) width 34: "\x{E07}\x{E07}\x{E48}\x{E32}\x{E22}"
2306  text run at (0,18360) width 28: "\x{E14}\x{E32}\x{E22}"
2307  text run at (0,18378) width 20: "\x{E19}\x{E31}\x{E01}"
2308  text run at (0,18396) width 26: "\x{E04}\x{E23}\x{E31}\x{E49}\x{E07}"
2309  text run at (0,18414) width 28: "\x{E2B}\x{E19}\x{E36}\x{E48}\x{E07}"
2310  text run at (0,18432) width 27: "\x{E2B}\x{E25}\x{E31}\x{E07}"
2311  text run at (0,18450) width 26: "\x{E08}\x{E32}\x{E01}"
2312  text run at (0,18468) width 10: "\x{E17}\x{E35}\x{E48}"
2313  text run at (0,18486) width 28: "\x{E1A}\x{E49}\x{E32}\x{E19}"
2314  text run at (0,18504) width 37: "\x{E2A}\x{E30}\x{E14}\x{E38}\x{E14}"
2315  text run at (0,18522) width 35: "\x{E2D}\x{E22}\x{E48}\x{E32}\x{E07}"
2316  text run at (0,18540) width 25: "\x{E41}\x{E23}\x{E07}"
2317  text run at (0,18558) width 25: "\x{E41}\x{E25}\x{E30}"
2318  text run at (0,18576) width 30: "\x{E2B}\x{E21}\x{E38}\x{E19}"
2319  text run at (0,18594) width 17: "\x{E44}\x{E1B}"
2320  text run at (0,18612) width 27: "\x{E23}\x{E2D}\x{E1A}"
2321  text run at (0,18630) width 10: "\x{E46}"
2322  text run at (0,18648) width 27: "\x{E2A}\x{E2D}\x{E07}"
2323  text run at (0,18666) width 28: "\x{E2A}\x{E32}\x{E21}"
2324  text run at (0,18684) width 26: "\x{E04}\x{E23}\x{E31}\x{E49}\x{E07}"
2325  text run at (0,18702) width 17: "\x{E43}\x{E19}"
2326  text run at (0,18720) width 29: "\x{E15}\x{E2D}\x{E19}"
2327  text run at (0,18738) width 27: "\x{E41}\x{E23}\x{E01}"
2328  text run at (0,18756) width 23: "\x{E40}\x{E18}\x{E2D}"
2329  text run at (0,18774) width 10: "\x{E01}\x{E47}"
2330  text run at (0,18792) width 28: "\x{E23}\x{E39}\x{E49}\x{E2A}\x{E36}\x{E01}"
2331  text run at (0,18810) width 16: "\x{E27}\x{E48}\x{E32}"
2332  text run at (0,18828) width 18: "\x{E15}\x{E31}\x{E27}"
2333  text run at (0,18846) width 22: "\x{E40}\x{E2D}\x{E07}"
2334  text run at (0,18864) width 20: "\x{E16}\x{E39}\x{E01}"
2335  text run at (0,18882) width 35: "\x{E41}\x{E01}\x{E27}\x{E48}\x{E07}"
2336  text run at (0,18900) width 35: "\x{E2D}\x{E22}\x{E48}\x{E32}\x{E07}"
2337  text run at (0,18918) width 27: "\x{E41}\x{E1C}\x{E48}\x{E27}"
2338  text run at (0,18936) width 23: "\x{E40}\x{E1A}\x{E32}"
2339  text run at (0,18954) width 24: "\x{E23}\x{E32}\x{E27}"
2340  text run at (0,18972) width 36: "\x{E17}\x{E32}\x{E23}\x{E01}"
2341  text run at (0,18990) width 17: "\x{E43}\x{E19}"
2342  text run at (0,19008) width 24: "\x{E40}\x{E1B}\x{E25}"
2343  text run at (0,19026) width 17: "\x{E42}\x{E15}"
2344  text run at (0,19044) width 17: "\x{E42}\x{E15}\x{E49}"
2345  text run at (0,19062) width 17: "\x{E44}\x{E21}\x{E48}"
2346  text run at (0,19080) width 28: "\x{E0A}\x{E2D}\x{E1A}"
2347  text run at (0,19098) width 15: "\x{E43}\x{E08}"
2348  text run at (0,19116) width 24: "\x{E40}\x{E25}\x{E22}"
2349  text run at (0,19134) width 20: "\x{E21}\x{E31}\x{E19}"
2350  text run at (0,19152) width 16: "\x{E27}\x{E34}\x{E48}\x{E07}"
2351  text run at (0,19170) width 17: "\x{E44}\x{E1B}"
2352  text run at (0,19188) width 16: "\x{E27}\x{E34}\x{E48}\x{E07}"
2353  text run at (0,19206) width 18: "\x{E21}\x{E32}"
2354  text run at (0,19224) width 27: "\x{E23}\x{E2D}\x{E1A}"
2355  text run at (0,19242) width 27: "\x{E2B}\x{E49}\x{E2D}\x{E07}"
2356  text run at (0,19260) width 26: "\x{E17}\x{E32}\x{E07}"
2357  text run at (0,19278) width 27: "\x{E42}\x{E19}\x{E49}\x{E19}"
2358  text run at (0,19296) width 10: "\x{E17}\x{E35}"
2359  text run at (0,19314) width 26: "\x{E17}\x{E32}\x{E07}"
2360  text run at (0,19332) width 10: "\x{E19}\x{E35}\x{E49}"
2361  text run at (0,19350) width 10: "\x{E17}\x{E35}"
2362  text run at (0,19368) width 18: "\x{E2A}\x{E48}\x{E07}"
2363  text run at (0,19386) width 33: "\x{E40}\x{E2A}\x{E35}\x{E22}\x{E07}"
2364  text run at (0,19404) width 23: "\x{E40}\x{E2B}\x{E48}\x{E32}"
2365  text run at (0,19422) width 18: "\x{E14}\x{E31}\x{E07}"
2366  text run at (0,19440) width 27: "\x{E01}\x{E49}\x{E2D}\x{E07}"
2367  text run at (0,19458) width 19: "\x{E41}\x{E15}\x{E48}"
2368  text run at (0,19476) width 17: "\x{E42}\x{E14}"
2369  text run at (0,19494) width 24: "\x{E42}\x{E23}\x{E18}\x{E35}"
2370  text run at (0,19512) width 18: "\x{E19}\x{E31}\x{E48}\x{E07}"
2371  text run at (0,19530) width 18: "\x{E19}\x{E34}\x{E48}\x{E07}"
2372  text run at (0,19548) width 19: "\x{E2D}\x{E22}\x{E39}\x{E48}"
2373  text run at (0,19566) width 20: "\x{E1A}\x{E19}"
2374  text run at (0,19584) width 21: "\x{E1E}\x{E37}\x{E49}\x{E19}"
2375  text run at (0,19602) width 23: "\x{E40}\x{E1D}\x{E49}\x{E32}"
2376  text run at (0,19620) width 29: "\x{E04}\x{E2D}\x{E22}"
2377  text run at (0,19638) width 10: "\x{E14}\x{E39}"
2378  text run at (0,19656) width 16: "\x{E27}\x{E48}\x{E32}"
2379  text run at (0,19674) width 15: "\x{E08}\x{E30}"
2380  text run at (0,19692) width 25: "\x{E40}\x{E01}\x{E34}\x{E14}"
2381  text run at (0,19710) width 31: "\x{E2D}\x{E30}\x{E44}\x{E23}"
2382  text run at (0,19728) width 19: "\x{E02}\x{E36}\x{E49}\x{E19}"
2383  text run at (0,19746) width 26: "\x{E04}\x{E23}\x{E31}\x{E49}\x{E07}"
2384  text run at (0,19764) width 28: "\x{E2B}\x{E19}\x{E36}\x{E48}\x{E07}"
2385  text run at (0,19782) width 17: "\x{E42}\x{E15}"
2386  text run at (0,19800) width 17: "\x{E42}\x{E15}\x{E49}"
2387  text run at (0,19818) width 22: "\x{E40}\x{E02}\x{E49}\x{E32}"
2388  text run at (0,19836) width 17: "\x{E44}\x{E1B}"
2389  text run at (0,19854) width 26: "\x{E43}\x{E01}\x{E25}\x{E49}"
2390  text run at (0,19872) width 18: "\x{E1D}\x{E32}"
2391  text run at (0,19890) width 10: "\x{E17}\x{E35}\x{E48}"
2392  text run at (0,19908) width 21: "\x{E1E}\x{E37}\x{E49}\x{E19}"
2393  text run at (0,19926) width 28: "\x{E21}\x{E32}\x{E01}"
2394  text run at (0,19944) width 17: "\x{E44}\x{E1B}"
2395  text run at (0,19962) width 24: "\x{E40}\x{E25}\x{E22}"
2396  text run at (0,19980) width 30: "\x{E1E}\x{E25}\x{E31}\x{E14}"
2397  text run at (0,19998) width 37: "\x{E15}\x{E01}\x{E25}\x{E07}"
2398  text run at (0,20016) width 17: "\x{E44}\x{E1B}"
2399  text run at (0,20034) width 10: "\x{E17}\x{E35}"
2400  text run at (0,20052) width 27: "\x{E41}\x{E23}\x{E01}"
2401  text run at (0,20070) width 25: "\x{E40}\x{E14}\x{E47}\x{E01}"
2402  text run at (0,20088) width 31: "\x{E2B}\x{E0D}\x{E34}\x{E07}"
2403  text run at (0,20106) width 20: "\x{E04}\x{E34}\x{E14}"
2404  text run at (0,20124) width 16: "\x{E27}\x{E48}\x{E32}"
2405  text run at (0,20142) width 23: "\x{E40}\x{E18}\x{E2D}"
2406  text run at (0,20160) width 15: "\x{E08}\x{E30}"
2407  text run at (0,20178) width 23: "\x{E2A}\x{E39}\x{E0D}"
2408  text run at (0,20196) width 25: "\x{E40}\x{E2A}\x{E35}\x{E22}"
2409  text run at (0,20214) width 20: "\x{E21}\x{E31}\x{E19}"
2410  text run at (0,20232) width 17: "\x{E44}\x{E1B}"
2411  text run at (0,20250) width 25: "\x{E40}\x{E2A}\x{E35}\x{E22}"
2412  text run at (0,20268) width 26: "\x{E41}\x{E25}\x{E49}\x{E27}"
2413  text run at (0,20286) width 19: "\x{E41}\x{E15}\x{E48}"
2414  text run at (0,20304) width 17: "\x{E0A}\x{E31}\x{E48}\x{E27}"
2415  text run at (0,20322) width 18: "\x{E04}\x{E23}\x{E39}\x{E48}"
2416  text run at (0,20340) width 23: "\x{E40}\x{E18}\x{E2D}"
2417  text run at (0,20358) width 10: "\x{E01}\x{E47}"
2418  text run at (0,20376) width 25: "\x{E40}\x{E2B}\x{E47}\x{E19}"
2419  text run at (0,20394) width 10: "\x{E2B}\x{E39}"
2420  text run at (0,20412) width 26: "\x{E02}\x{E2D}\x{E07}"
2421  text run at (0,20430) width 20: "\x{E21}\x{E31}\x{E19}"
2422  text run at (0,20448) width 26: "\x{E42}\x{E1C}\x{E25}\x{E48}"
2423  text run at (0,20466) width 19: "\x{E02}\x{E36}\x{E49}\x{E19}"
2424  text run at (0,20484) width 18: "\x{E21}\x{E32}"
2425  text run at (0,20502) width 26: "\x{E08}\x{E32}\x{E01}"
2426  text run at (0,20520) width 26: "\x{E0A}\x{E48}\x{E2D}\x{E07}"
2427  text run at (0,20538) width 20: "\x{E19}\x{E31}\x{E49}\x{E19}"
2428  text run at (0,20556) width 18: "\x{E17}\x{E31}\x{E49}\x{E07}"
2429  text run at (0,20574) width 10: "\x{E19}\x{E35}\x{E49}"
2430  text run at (0,20592) width 39: "\x{E40}\x{E1E}\x{E23}\x{E32}\x{E30}"
2431  text run at (0,20610) width 25: "\x{E41}\x{E23}\x{E07}"
2432  text run at (0,20628) width 20: "\x{E01}\x{E14}"
2433  text run at (0,20646) width 35: "\x{E2D}\x{E22}\x{E48}\x{E32}\x{E07}"
2434  text run at (0,20664) width 30: "\x{E2B}\x{E19}\x{E31}\x{E01}"
2435  text run at (0,20682) width 26: "\x{E02}\x{E2D}\x{E07}"
2436  text run at (0,20700) width 45: "\x{E2D}\x{E32}\x{E01}\x{E32}\x{E28}"
2437  text run at (0,20718) width 18: "\x{E17}\x{E33}"
2438  text run at (0,20736) width 17: "\x{E43}\x{E2B}\x{E49}"
2439  text run at (0,20754) width 17: "\x{E42}\x{E15}"
2440  text run at (0,20772) width 17: "\x{E42}\x{E15}\x{E49}"
2441  text run at (0,20790) width 17: "\x{E44}\x{E21}\x{E48}"
2442  text run at (0,20808) width 37: "\x{E15}\x{E01}\x{E25}\x{E07}"
2443  text run at (0,20826) width 17: "\x{E44}\x{E1B}"
2444  text run at (0,20844) width 25: "\x{E02}\x{E49}\x{E32}\x{E07}"
2445  text run at (0,20862) width 25: "\x{E25}\x{E48}\x{E32}\x{E07}"
2446  text run at (0,20880) width 17: "\x{E42}\x{E14}"
2447  text run at (0,20898) width 24: "\x{E42}\x{E23}\x{E18}\x{E35}"
2448  text run at (0,20916) width 37: "\x{E04}\x{E25}\x{E32}\x{E19}"
2449  text run at (0,20934) width 17: "\x{E44}\x{E1B}"
2450  text run at (0,20952) width 10: "\x{E17}\x{E35}\x{E48}"
2451  text run at (0,20970) width 26: "\x{E0A}\x{E48}\x{E2D}\x{E07}"
2452  text run at (0,20988) width 20: "\x{E19}\x{E31}\x{E49}\x{E19}"
2453  text run at (0,21006) width 18: "\x{E08}\x{E31}\x{E1A}"
2454  text run at (0,21024) width 10: "\x{E2B}\x{E39}"
2455  text run at (0,21042) width 17: "\x{E42}\x{E15}"
2456  text run at (0,21060) width 17: "\x{E42}\x{E15}\x{E49}"
2457  text run at (0,21078) width 15: "\x{E44}\x{E27}\x{E49}"
2458  text run at (0,21096) width 17: "\x{E44}\x{E14}\x{E49}"
2459  text run at (0,21114) width 25: "\x{E41}\x{E25}\x{E30}"
2460  text run at (0,21132) width 27: "\x{E25}\x{E32}\x{E01}"
2461  text run at (0,21150) width 20: "\x{E21}\x{E31}\x{E19}"
2462  text run at (0,21168) width 18: "\x{E21}\x{E32}"
2463  text run at (0,21186) width 10: "\x{E17}\x{E35}\x{E48}"
2464  text run at (0,21204) width 27: "\x{E2B}\x{E49}\x{E2D}\x{E07}"
2465  text run at (0,21222) width 19: "\x{E2D}\x{E35}\x{E01}"
2466  text run at (0,21240) width 27: "\x{E2B}\x{E25}\x{E31}\x{E07}"
2467  text run at (0,21258) width 26: "\x{E08}\x{E32}\x{E01}"
2468  text run at (0,21276) width 20: "\x{E19}\x{E31}\x{E49}\x{E19}"
2469  text run at (0,21294) width 10: "\x{E01}\x{E47}"
2470  text run at (0,21312) width 20: "\x{E1B}\x{E34}\x{E14}"
2471  text run at (0,21330) width 18: "\x{E1D}\x{E32}"
2472  text run at (0,21348) width 21: "\x{E1E}\x{E37}\x{E49}\x{E19}"
2473  text run at (0,21366) width 25: "\x{E40}\x{E1E}\x{E37}\x{E48}\x{E2D}"
2474  text run at (0,21384) width 15: "\x{E08}\x{E30}"
2475  text run at (0,21402) width 17: "\x{E44}\x{E14}\x{E49}"
2476  text run at (0,21420) width 17: "\x{E44}\x{E21}\x{E48}"
2477  text run at (0,21438) width 25: "\x{E40}\x{E01}\x{E34}\x{E14}"
2478  text run at (0,21456) width 54: "\x{E2D}\x{E38}\x{E1A}\x{E31}\x{E15}\x{E34}\x{E40}\x{E2B}\x{E15}\x{E38}"
2479  text run at (0,21474) width 19: "\x{E2D}\x{E35}\x{E01}"
2480  text run at (0,21492) width 42: "\x{E0A}\x{E31}\x{E48}\x{E27}\x{E42}\x{E21}\x{E07}"
2481  text run at (0,21510) width 26: "\x{E41}\x{E25}\x{E49}\x{E27}"
2482  text run at (0,21528) width 42: "\x{E0A}\x{E31}\x{E48}\x{E27}\x{E42}\x{E21}\x{E07}"
2483  text run at (0,21546) width 22: "\x{E40}\x{E25}\x{E48}\x{E32}"
2484  text run at (0,21564) width 28: "\x{E1C}\x{E48}\x{E32}\x{E19}"
2485  text run at (0,21582) width 17: "\x{E44}\x{E1B}"
2486  text run at (0,21600) width 17: "\x{E42}\x{E14}"
2487  text run at (0,21618) width 24: "\x{E42}\x{E23}\x{E18}\x{E35}"
2488  text run at (0,21636) width 29: "\x{E04}\x{E48}\x{E2D}\x{E22}"
2489  text run at (0,21654) width 10: "\x{E46}"
2490  text run at (0,21672) width 28: "\x{E2B}\x{E32}\x{E22}"
2491  text run at (0,21690) width 27: "\x{E01}\x{E25}\x{E31}\x{E27}"
2492  text run at (0,21708) width 19: "\x{E41}\x{E15}\x{E48}"
2493  text run at (0,21726) width 23: "\x{E40}\x{E18}\x{E2D}"
2494  text run at (0,21744) width 28: "\x{E23}\x{E39}\x{E49}\x{E2A}\x{E36}\x{E01}"
2495  text run at (0,21762) width 31: "\x{E40}\x{E2B}\x{E07}\x{E32}"
2496  text run at (0,21780) width 33: "\x{E40}\x{E2B}\x{E25}\x{E37}\x{E2D}"
2497  text run at (0,21798) width 25: "\x{E40}\x{E01}\x{E34}\x{E19}"
2498  text run at (0,21816) width 25: "\x{E41}\x{E25}\x{E30}"
2499  text run at (0,21834) width 19: "\x{E25}\x{E21}"
2500  text run at (0,21852) width 10: "\x{E01}\x{E47}"
2501  text run at (0,21870) width 18: "\x{E2A}\x{E48}\x{E07}"
2502  text run at (0,21888) width 33: "\x{E40}\x{E2A}\x{E35}\x{E22}\x{E07}"
2503  text run at (0,21906) width 28: "\x{E2B}\x{E27}\x{E35}\x{E14}"
2504  text run at (0,21924) width 27: "\x{E2B}\x{E27}\x{E37}\x{E2D}"
2505  text run at (0,21942) width 18: "\x{E14}\x{E31}\x{E07}"
2506  text run at (0,21960) width 25: "\x{E40}\x{E2A}\x{E35}\x{E22}"
2507  text run at (0,21978) width 18: "\x{E08}\x{E19}"
2508  text run at (0,21996) width 23: "\x{E40}\x{E18}\x{E2D}"
2509  text run at (0,22014) width 29: "\x{E41}\x{E17}\x{E1A}"
2510  text run at (0,22032) width 15: "\x{E08}\x{E30}"
2511  text run at (0,22050) width 10: "\x{E2B}\x{E39}"
2512  text run at (0,22068) width 38: "\x{E2B}\x{E19}\x{E27}\x{E01}"
2513  text run at (0,22086) width 10: "\x{E17}\x{E35}"
2514  text run at (0,22104) width 27: "\x{E41}\x{E23}\x{E01}"
2515  text run at (0,22122) width 23: "\x{E40}\x{E18}\x{E2D}"
2516  text run at (0,22140) width 38: "\x{E2A}\x{E07}\x{E2A}\x{E31}\x{E22}"
2517  text run at (0,22158) width 16: "\x{E27}\x{E48}\x{E32}"
2518  text run at (0,22176) width 18: "\x{E04}\x{E07}"
2519  text run at (0,22194) width 15: "\x{E08}\x{E30}"
2520  text run at (0,22212) width 20: "\x{E16}\x{E39}\x{E01}"
2521  text run at (0,22230) width 20: "\x{E09}\x{E35}\x{E01}"
2522  text run at (0,22248) width 52: "\x{E01}\x{E23}\x{E30}\x{E0A}\x{E32}\x{E01}"
2523  text run at (0,22266) width 28: "\x{E2D}\x{E2D}\x{E01}"
2524  text run at (0,22284) width 25: "\x{E40}\x{E1B}\x{E47}\x{E19}"
2525  text run at (0,22302) width 19: "\x{E0A}\x{E34}\x{E49}\x{E19}"
2526  text run at (0,22320) width 24: "\x{E40}\x{E25}\x{E47}\x{E01}"
2527  text run at (0,22338) width 19: "\x{E0A}\x{E34}\x{E49}\x{E19}"
2528  text run at (0,22356) width 29: "\x{E19}\x{E49}\x{E2D}\x{E22}"
2529  text run at (0,22374) width 24: "\x{E40}\x{E21}\x{E37}\x{E48}\x{E2D}"
2530  text run at (0,22392) width 28: "\x{E1A}\x{E49}\x{E32}\x{E19}"
2531  text run at (0,22410) width 24: "\x{E40}\x{E2D}\x{E19}"
2532  text run at (0,22428) width 19: "\x{E25}\x{E49}\x{E21}"
2533  text run at (0,22446) width 17: "\x{E25}\x{E07}"
2534  text run at (0,22464) width 19: "\x{E2D}\x{E35}\x{E01}"
2535  text run at (0,22482) width 26: "\x{E04}\x{E23}\x{E31}\x{E49}\x{E07}"
2536  text run at (0,22500) width 19: "\x{E41}\x{E15}\x{E48}"
2537  text run at (0,22518) width 37: "\x{E2B}\x{E25}\x{E32}\x{E22}"
2538  text run at (0,22536) width 42: "\x{E0A}\x{E31}\x{E48}\x{E27}\x{E42}\x{E21}\x{E07}"
2539  text run at (0,22554) width 28: "\x{E1C}\x{E48}\x{E32}\x{E19}"
2540  text run at (0,22572) width 17: "\x{E44}\x{E1B}"
2541  text run at (0,22590) width 10: "\x{E01}\x{E47}"
2542  text run at (0,22608) width 17: "\x{E44}\x{E21}\x{E48}"
2543  text run at (0,22626) width 10: "\x{E21}\x{E35}"
2544  text run at (0,22644) width 31: "\x{E2D}\x{E30}\x{E44}\x{E23}"
2545  text run at (0,22662) width 25: "\x{E40}\x{E01}\x{E34}\x{E14}"
2546  text run at (0,22680) width 19: "\x{E02}\x{E36}\x{E49}\x{E19}"
2547  text run at (0,22698) width 23: "\x{E40}\x{E18}\x{E2D}"
2548  text run at (0,22716) width 24: "\x{E40}\x{E25}\x{E22}"
2549  text run at (0,22734) width 24: "\x{E40}\x{E25}\x{E34}\x{E01}"
2550  text run at (0,22752) width 28: "\x{E27}\x{E34}\x{E15}\x{E01}"
2551  text run at (0,22770) width 25: "\x{E41}\x{E25}\x{E30}"
2552  text run at (0,22788) width 40: "\x{E15}\x{E31}\x{E14}\x{E2A}\x{E34}\x{E19}"
2553  text run at (0,22806) width 15: "\x{E43}\x{E08}"
2554  text run at (0,22824) width 29: "\x{E04}\x{E2D}\x{E22}"
2555  text run at (0,22842) width 10: "\x{E14}\x{E39}"
2556  text run at (0,22860) width 35: "\x{E2D}\x{E22}\x{E48}\x{E32}\x{E07}"
2557  text run at (0,22878) width 28: "\x{E2A}\x{E07}\x{E1A}"
2558  text run at (0,22896) width 25: "\x{E41}\x{E25}\x{E30}"
2559  text run at (0,22914) width 17: "\x{E23}\x{E2D}"
2560  text run at (0,22932) width 16: "\x{E27}\x{E48}\x{E32}"
2561  text run at (0,22950) width 47: "\x{E2D}\x{E19}\x{E32}\x{E04}\x{E15}"
2562  text run at (0,22968) width 15: "\x{E08}\x{E30}"
2563  text run at (0,22986) width 25: "\x{E40}\x{E1B}\x{E47}\x{E19}"
2564  text run at (0,23004) width 50: "\x{E2D}\x{E22}\x{E48}\x{E32}\x{E07}\x{E44}\x{E23}"
2565  text run at (0,23022) width 17: "\x{E43}\x{E19}"
2566  text run at (0,23040) width 10: "\x{E17}\x{E35}\x{E48}"
2567  text run at (0,23058) width 20: "\x{E2A}\x{E38}\x{E14}"
2568  text run at (0,23076) width 23: "\x{E40}\x{E18}\x{E2D}"
2569  text run at (0,23094) width 37: "\x{E04}\x{E25}\x{E32}\x{E19}"
2570  text run at (0,23112) width 26: "\x{E08}\x{E32}\x{E01}"
2571  text run at (0,23130) width 21: "\x{E1E}\x{E37}\x{E49}\x{E19}"
2572  text run at (0,23148) width 27: "\x{E2B}\x{E49}\x{E2D}\x{E07}"
2573  text run at (0,23166) width 10: "\x{E17}\x{E35}\x{E48}"
2574  text run at (0,23184) width 27: "\x{E42}\x{E22}\x{E01}"
2575  text run at (0,23202) width 17: "\x{E44}\x{E1B}"
2576  text run at (0,23220) width 18: "\x{E21}\x{E32}"
2577  text run at (0,23238) width 19: "\x{E02}\x{E36}\x{E49}\x{E19}"
2578  text run at (0,23256) width 17: "\x{E44}\x{E1B}"
2579  text run at (0,23274) width 20: "\x{E1A}\x{E19}"
2580  text run at (0,23292) width 33: "\x{E40}\x{E15}\x{E35}\x{E22}\x{E07}"
2581  text run at (0,23310) width 26: "\x{E41}\x{E25}\x{E49}\x{E27}"
2582  text run at (0,23328) width 10: "\x{E01}\x{E47}"
2583  text run at (0,23346) width 29: "\x{E19}\x{E2D}\x{E19}"
2584  text run at (0,23364) width 17: "\x{E25}\x{E07}"
2585  text run at (0,23382) width 17: "\x{E42}\x{E15}"
2586  text run at (0,23400) width 17: "\x{E42}\x{E15}\x{E49}"
2587  text run at (0,23418) width 28: "\x{E15}\x{E32}\x{E21}"
2588  text run at (0,23436) width 20: "\x{E15}\x{E34}\x{E14}"
2589  text run at (0,23454) width 18: "\x{E21}\x{E32}"
2590  text run at (0,23472) width 29: "\x{E19}\x{E2D}\x{E19}"
2591  text run at (0,23490) width 17: "\x{E25}\x{E07}"
2592  text run at (0,23508) width 26: "\x{E43}\x{E01}\x{E25}\x{E49}"
2593  text run at (0,23526) width 10: "\x{E46}"
2594  text run at (0,23544) width 23: "\x{E40}\x{E18}\x{E2D}"
2595  text run at (0,23562) width 17: "\x{E44}\x{E21}\x{E48}"
2596  text run at (0,23580) width 17: "\x{E0A}\x{E49}\x{E32}"
2597  text run at (0,23598) width 17: "\x{E42}\x{E14}"
2598  text run at (0,23616) width 24: "\x{E42}\x{E23}\x{E18}\x{E35}"
2599  text run at (0,23634) width 10: "\x{E01}\x{E47}"
2600  text run at (0,23652) width 20: "\x{E1B}\x{E34}\x{E14}"
2601  text run at (0,23670) width 18: "\x{E15}\x{E32}"
2602  text run at (0,23688) width 17: "\x{E25}\x{E07}"
2603  text run at (0,23706) width 29: "\x{E2B}\x{E25}\x{E31}\x{E1A}"
2604  text run at (0,23724) width 38: "\x{E1C}\x{E25}\x{E47}\x{E2D}\x{E22}"
2605  text run at (0,23742) width 17: "\x{E44}\x{E1B}"
2606  text run at (0,23760) width 35: "\x{E2D}\x{E22}\x{E48}\x{E32}\x{E07}"
2607  text run at (0,23778) width 30: "\x{E2A}\x{E19}\x{E34}\x{E17}"
2608  text run at (0,23796) width 18: "\x{E17}\x{E31}\x{E49}\x{E07}"
2609  text run at (0,23814) width 10: "\x{E46}"
2610  text run at (0,23832) width 10: "\x{E17}\x{E35}\x{E48}"
2611  text run at (0,23850) width 28: "\x{E1A}\x{E49}\x{E32}\x{E19}"
2612  text run at (0,23868) width 27: "\x{E42}\x{E22}\x{E01}"
2613  text run at (0,23886) width 17: "\x{E44}\x{E1B}"
2614  text run at (0,23904) width 18: "\x{E21}\x{E32}"
2615  text run at (0,23922) width 25: "\x{E41}\x{E25}\x{E30}"
2616  text run at (0,23940) width 19: "\x{E25}\x{E21}"
2617  text run at (0,23958) width 10: "\x{E01}\x{E47}"
2618  text run at (0,23976) width 34: "\x{E04}\x{E23}\x{E32}\x{E07}"
2619  text run at (0,23994) width 28: "\x{E2B}\x{E27}\x{E35}\x{E14}"
2620  text run at (0,24012) width 27: "\x{E2B}\x{E27}\x{E37}\x{E2D}"
 12layer at (235,96) size 1x27896
 13 RenderBlock (positioned) {DIV} at (235,96) size 1x27896
 14 RenderText {#text} at (0,3) size 83x27892
 15 text run at (0,3) width 20: "\x{E1A}\x{E17}"
 16 text run at (0,25) width 49: "\x{E17}\x{E35}\x{E48}\x{E51}\x{E1E}\x{E32}\x{E22}\x{E38}"
 17 text run at (0,47) width 52: "\x{E44}\x{E0B}\x{E42}\x{E04}\x{E25}\x{E19}"
 18 text run at (0,69) width 17: "\x{E42}\x{E14}"
 19 text run at (0,91) width 24: "\x{E42}\x{E23}\x{E18}\x{E35}"
 20 text run at (0,113) width 37: "\x{E2D}\x{E32}\x{E28}\x{E31}\x{E22}"
 21 text run at (0,135) width 19: "\x{E2D}\x{E22}\x{E39}\x{E48}"
 22 text run at (0,157) width 63: "\x{E17}\x{E48}\x{E32}\x{E21}\x{E01}\x{E25}\x{E32}\x{E07}"
 23 text run at (0,179) width 48: "\x{E17}\x{E38}\x{E48}\x{E07}\x{E43}\x{E2B}\x{E0D}\x{E48}"
 24 text run at (0,201) width 17: "\x{E43}\x{E19}"
 25 text run at (0,223) width 48: "\x{E41}\x{E04}\x{E19}\x{E0B}\x{E31}\x{E2A}"
 26 text run at (0,245) width 20: "\x{E01}\x{E31}\x{E1A}"
 27 text run at (0,267) width 17: "\x{E25}\x{E38}\x{E07}"
 28 text run at (0,289) width 14: "\x{E40}\x{E2E}"
 29 text run at (0,311) width 18: "\x{E19}\x{E23}\x{E35}"
 30 text run at (0,333) width 40: "\x{E0A}\x{E32}\x{E27}\x{E44}\x{E23}\x{E48}"
 31 text run at (0,355) width 25: "\x{E41}\x{E25}\x{E30}"
 32 text run at (0,377) width 18: "\x{E1B}\x{E49}\x{E32}"
 33 text run at (0,399) width 24: "\x{E40}\x{E2D}\x{E47}\x{E21}"
 34 text run at (0,421) width 45: "\x{E20}\x{E23}\x{E23}\x{E22}\x{E32}"
 35 text run at (0,443) width 40: "\x{E0A}\x{E32}\x{E27}\x{E44}\x{E23}\x{E48}"
 36 text run at (0,465) width 28: "\x{E1A}\x{E49}\x{E32}\x{E19}"
 37 text run at (0,487) width 26: "\x{E02}\x{E2D}\x{E07}"
 38 text run at (0,509) width 29: "\x{E1E}\x{E27}\x{E01}"
 39 text run at (0,531) width 22: "\x{E40}\x{E02}\x{E32}"
 40 text run at (0,553) width 27: "\x{E2B}\x{E25}\x{E31}\x{E07}"
 41 text run at (0,575) width 24: "\x{E40}\x{E25}\x{E47}\x{E01}"
 42 text run at (0,597) width 39: "\x{E40}\x{E1E}\x{E23}\x{E32}\x{E30}"
 43 text run at (0,619) width 17: "\x{E44}\x{E21}\x{E49}"
 44 text run at (0,641) width 34: "\x{E2A}\x{E23}\x{E49}\x{E32}\x{E07}"
 45 text run at (0,663) width 28: "\x{E1A}\x{E49}\x{E32}\x{E19}"
 46 text run at (0,685) width 27: "\x{E15}\x{E49}\x{E2D}\x{E07}"
 47 text run at (0,707) width 19: "\x{E02}\x{E19}"
 48 text run at (0,729) width 18: "\x{E21}\x{E32}"
 49 text run at (0,751) width 28: "\x{E14}\x{E49}\x{E27}\x{E22}"
 50 text run at (0,773) width 43: "\x{E40}\x{E01}\x{E27}\x{E35}\x{E22}\x{E19}"
 51 text run at (0,795) width 25: "\x{E40}\x{E1B}\x{E47}\x{E19}"
 52 text run at (0,817) width 32: "\x{E23}\x{E30}\x{E22}\x{E30}"
 53 text run at (0,839) width 26: "\x{E17}\x{E32}\x{E07}"
 54 text run at (0,861) width 37: "\x{E2B}\x{E25}\x{E32}\x{E22}"
 55 text run at (0,883) width 26: "\x{E44}\x{E21}\x{E25}\x{E4C}"
 56 text run at (0,905) width 28: "\x{E1A}\x{E49}\x{E32}\x{E19}"
 57 text run at (0,927) width 10: "\x{E21}\x{E35}"
 58 text run at (0,949) width 10: "\x{E2A}\x{E35}\x{E48}"
 59 text run at (0,971) width 18: "\x{E1D}\x{E32}"
 60 text run at (0,993) width 10: "\x{E21}\x{E35}"
 61 text run at (0,1015) width 21: "\x{E1E}\x{E37}\x{E49}\x{E19}"
 62 text run at (0,1037) width 20: "\x{E01}\x{E31}\x{E1A}"
 63 text run at (0,1059) width 45: "\x{E2B}\x{E25}\x{E31}\x{E07}\x{E04}\x{E32}"
 64 text run at (0,1081) width 26: "\x{E23}\x{E27}\x{E21}"
 65 text run at (0,1103) width 18: "\x{E17}\x{E33}"
 66 text run at (0,1125) width 25: "\x{E40}\x{E1B}\x{E47}\x{E19}"
 67 text run at (0,1147) width 27: "\x{E2B}\x{E49}\x{E2D}\x{E07}"
 68 text run at (0,1169) width 33: "\x{E40}\x{E14}\x{E35}\x{E22}\x{E27}"
 69 text run at (0,1191) width 17: "\x{E43}\x{E19}"
 70 text run at (0,1213) width 27: "\x{E2B}\x{E49}\x{E2D}\x{E07}"
 71 text run at (0,1235) width 10: "\x{E21}\x{E35}"
 72 text run at (0,1257) width 18: "\x{E17}\x{E31}\x{E49}\x{E07}"
 73 text run at (0,1279) width 23: "\x{E40}\x{E15}\x{E32}"
 74 text run at (0,1301) width 18: "\x{E2B}\x{E38}\x{E07}"
 75 text run at (0,1323) width 20: "\x{E15}\x{E49}\x{E21}"
 76 text run at (0,1345) width 10: "\x{E17}\x{E35}\x{E48}"
 77 text run at (0,1367) width 30: "\x{E2A}\x{E19}\x{E34}\x{E21}"
 78 text run at (0,1389) width 10: "\x{E14}\x{E39}"
 79 text run at (0,1411) width 19: "\x{E02}\x{E36}\x{E49}\x{E19}"
 80 text run at (0,1433) width 30: "\x{E40}\x{E25}\x{E2D}\x{E30}"
 81 text run at (0,1455) width 10: "\x{E21}\x{E35}"
 82 text run at (0,1477) width 10: "\x{E15}\x{E39}\x{E49}"
 83 text run at (0,1499) width 17: "\x{E43}\x{E2A}\x{E48}"
 84 text run at (0,1521) width 28: "\x{E16}\x{E49}\x{E27}\x{E22}"
 85 text run at (0,1543) width 27: "\x{E0A}\x{E32}\x{E21}"
 86 text run at (0,1565) width 24: "\x{E42}\x{E15}\x{E4A}\x{E30}"
 87 text run at (0,1587) width 32: "\x{E40}\x{E01}\x{E49}\x{E32}\x{E2D}\x{E35}\x{E49}"
 88 text run at (0,1609) width 28: "\x{E2A}\x{E32}\x{E21}"
 89 text run at (0,1631) width 27: "\x{E2B}\x{E23}\x{E37}\x{E2D}"
 90 text run at (0,1653) width 10: "\x{E2A}\x{E35}\x{E48}"
 91 text run at (0,1675) width 18: "\x{E15}\x{E31}\x{E27}"
 92 text run at (0,1697) width 26: "\x{E41}\x{E25}\x{E49}\x{E27}"
 93 text run at (0,1719) width 10: "\x{E01}\x{E47}"
 94 text run at (0,1741) width 10: "\x{E21}\x{E35}"
 95 text run at (0,1763) width 33: "\x{E40}\x{E15}\x{E35}\x{E22}\x{E07}"
 96 text run at (0,1785) width 29: "\x{E19}\x{E2D}\x{E19}"
 97 text run at (0,1807) width 17: "\x{E25}\x{E38}\x{E07}"
 98 text run at (0,1829) width 14: "\x{E40}\x{E2E}"
 99 text run at (0,1851) width 18: "\x{E19}\x{E23}\x{E35}"
 100 text run at (0,1873) width 20: "\x{E01}\x{E31}\x{E1A}"
 101 text run at (0,1895) width 18: "\x{E1B}\x{E49}\x{E32}"
 102 text run at (0,1917) width 24: "\x{E40}\x{E2D}\x{E47}\x{E21}"
 103 text run at (0,1939) width 10: "\x{E21}\x{E35}"
 104 text run at (0,1961) width 33: "\x{E40}\x{E15}\x{E35}\x{E22}\x{E07}"
 105 text run at (0,1983) width 29: "\x{E19}\x{E2D}\x{E19}"
 106 text run at (0,2005) width 30: "\x{E43}\x{E2B}\x{E0D}\x{E48}"
 107 text run at (0,2027) width 19: "\x{E2D}\x{E22}\x{E39}\x{E48}"
 108 text run at (0,2049) width 10: "\x{E17}\x{E35}\x{E48}"
 109 text run at (0,2071) width 20: "\x{E21}\x{E38}\x{E21}"
 110 text run at (0,2093) width 28: "\x{E2B}\x{E19}\x{E36}\x{E48}\x{E07}"
 111 text run at (0,2115) width 28: "\x{E2A}\x{E48}\x{E27}\x{E19}"
 112 text run at (0,2137) width 17: "\x{E42}\x{E14}"
 113 text run at (0,2159) width 15: "\x{E42}\x{E23}"
 114 text run at (0,2181) width 19: "\x{E18}\x{E35}\x{E21}\x{E35}"
 115 text run at (0,2203) width 33: "\x{E40}\x{E15}\x{E35}\x{E22}\x{E07}"
 116 text run at (0,2225) width 24: "\x{E40}\x{E25}\x{E47}\x{E01}"
 117 text run at (0,2247) width 19: "\x{E2D}\x{E35}\x{E01}"
 118 text run at (0,2269) width 10: "\x{E17}\x{E35}\x{E48}"
 119 text run at (0,2291) width 20: "\x{E21}\x{E38}\x{E21}"
 120 text run at (0,2313) width 28: "\x{E2B}\x{E19}\x{E36}\x{E48}\x{E07}"
 121 text run at (0,2335) width 27: "\x{E44}\x{E21}\x{E48}\x{E21}\x{E35}"
 122 text run at (0,2357) width 27: "\x{E2B}\x{E49}\x{E2D}\x{E07}"
 123 text run at (0,2379) width 17: "\x{E43}\x{E15}\x{E49}"
 124 text run at (0,2401) width 44: "\x{E40}\x{E1E}\x{E14}\x{E32}\x{E19}"
 125 text run at (0,2423) width 24: "\x{E40}\x{E25}\x{E22}"
 126 text run at (0,2445) width 27: "\x{E2B}\x{E49}\x{E2D}\x{E07}"
 127 text run at (0,2467) width 37: "\x{E43}\x{E15}\x{E49}\x{E16}\x{E38}\x{E19}"
 128 text run at (0,2489) width 10: "\x{E01}\x{E47}"
 129 text run at (0,2511) width 27: "\x{E44}\x{E21}\x{E48}\x{E21}\x{E35}"
 130 text run at (0,2533) width 23: "\x{E40}\x{E27}\x{E49}\x{E19}"
 131 text run at (0,2555) width 19: "\x{E41}\x{E15}\x{E48}"
 132 text run at (0,2577) width 10: "\x{E21}\x{E35}"
 133 text run at (0,2599) width 18: "\x{E42}\x{E1E}"
 134 text run at (0,2621) width 16: "\x{E23}\x{E07}"
 135 text run at (0,2643) width 34: "\x{E40}\x{E25}\x{E47}\x{E01}\x{E46}"
 136 text run at (0,2665) width 10: "\x{E17}\x{E35}\x{E48}"
 137 text run at (0,2687) width 19: "\x{E02}\x{E38}\x{E14}"
 138 text run at (0,2709) width 17: "\x{E44}\x{E1B}"
 139 text run at (0,2731) width 17: "\x{E43}\x{E15}\x{E49}"
 140 text run at (0,2753) width 21: "\x{E1E}\x{E37}\x{E49}\x{E19}"
 141 text run at (0,2775) width 33: "\x{E40}\x{E23}\x{E35}\x{E22}\x{E01}"
 142 text run at (0,2797) width 16: "\x{E27}\x{E48}\x{E32}"
 143 text run at (0,2819) width 41: "\"\x{E42}\x{E1E}\x{E23}\x{E07}"
 144 text run at (0,2841) width 59: "\x{E44}\x{E0B}\x{E42}\x{E04}\x{E25}\x{E19}\""
 145 text run at (0,2863) width 25: "\x{E40}\x{E1B}\x{E47}\x{E19}"
 146 text run at (0,2885) width 10: "\x{E17}\x{E35}\x{E48}"
 147 text run at (0,2907) width 63: "\x{E04}\x{E23}\x{E2D}\x{E1A}\x{E04}\x{E23}\x{E31}\x{E27}"
 148 text run at (0,2929) width 10: "\x{E19}\x{E35}\x{E49}"
 149 text run at (0,2951) width 15: "\x{E08}\x{E30}"
 150 text run at (0,2973) width 20: "\x{E21}\x{E38}\x{E14}"
 151 text run at (0,2995) width 39: "\x{E40}\x{E02}\x{E49}\x{E32}\x{E44}\x{E1B}"
 152 text run at (0,3017) width 24: "\x{E40}\x{E21}\x{E37}\x{E48}\x{E2D}"
 153 text run at (0,3039) width 25: "\x{E40}\x{E01}\x{E34}\x{E14}"
 154 text run at (0,3061) width 19: "\x{E25}\x{E21}"
 155 text run at (0,3083) width 28: "\x{E21}\x{E2B}\x{E32}"
 156 text run at (0,3105) width 21: "\x{E20}\x{E31}\x{E22}"
 157 text run at (0,3127) width 17: "\x{E0B}\x{E36}\x{E48}\x{E07}"
 158 text run at (0,3149) width 51: "\x{E01}\x{E23}\x{E30}\x{E42}\x{E0A}\x{E01}"
 159 text run at (0,3171) width 25: "\x{E41}\x{E23}\x{E07}"
 160 text run at (0,3193) width 18: "\x{E08}\x{E19}"
 161 text run at (0,3215) width 39: "\x{E1A}\x{E14}\x{E02}\x{E22}\x{E35}\x{E49}"
 162 text run at (0,3237) width 18: "\x{E2A}\x{E34}\x{E48}\x{E07}"
 163 text run at (0,3259) width 19: "\x{E01}\x{E48}\x{E2D}"
 164 text run at (0,3281) width 34: "\x{E2A}\x{E23}\x{E49}\x{E32}\x{E07}"
 165 text run at (0,3303) width 27: "\x{E43}\x{E14}\x{E46}"
 166 text run at (0,3325) width 10: "\x{E17}\x{E35}\x{E48}"
 167 text run at (0,3347) width 33: "\x{E02}\x{E27}\x{E32}\x{E07}"
 168 text run at (0,3369) width 26: "\x{E17}\x{E32}\x{E07}"
 169 text run at (0,3391) width 20: "\x{E21}\x{E31}\x{E19}"
 170 text run at (0,3413) width 17: "\x{E44}\x{E14}\x{E49}"
 171 text run at (0,3435) width 26: "\x{E15}\x{E23}\x{E07}"
 172 text run at (0,3457) width 35: "\x{E01}\x{E25}\x{E32}\x{E07}"
 173 text run at (0,3479) width 21: "\x{E1E}\x{E37}\x{E49}\x{E19}"
 174 text run at (0,3501) width 10: "\x{E21}\x{E35}"
 175 text run at (0,3523) width 18: "\x{E1D}\x{E32}"
 176 text run at (0,3545) width 25: "\x{E40}\x{E1B}\x{E34}\x{E14}"
 177 text run at (0,3567) width 39: "\x{E40}\x{E02}\x{E49}\x{E32}\x{E44}\x{E1B}"
 178 text run at (0,3589) width 26: "\x{E08}\x{E32}\x{E01}"
 179 text run at (0,3611) width 20: "\x{E19}\x{E31}\x{E49}\x{E19}"
 180 text run at (0,3633) width 10: "\x{E21}\x{E35}"
 181 text run at (0,3655) width 37: "\x{E1A}\x{E31}\x{E19}\x{E44}\x{E14}"
 182 text run at (0,3677) width 17: "\x{E25}\x{E07}"
 183 text run at (0,3699) width 17: "\x{E44}\x{E1B}"
 184 text run at (0,3721) width 18: "\x{E16}\x{E36}\x{E07}"
 185 text run at (0,3743) width 34: "\x{E42}\x{E1E}\x{E23}\x{E07}"
 186 text run at (0,3765) width 20: "\x{E21}\x{E37}\x{E14}"
 187 text run at (0,3787) width 34: "\x{E40}\x{E25}\x{E47}\x{E01}\x{E46}"
 188 text run at (0,3809) width 24: "\x{E40}\x{E21}\x{E37}\x{E48}\x{E2D}"
 189 text run at (0,3831) width 17: "\x{E42}\x{E14}"
 190 text run at (0,3853) width 24: "\x{E42}\x{E23}\x{E18}\x{E35}"
 191 text run at (0,3875) width 20: "\x{E22}\x{E37}\x{E19}"
 192 text run at (0,3897) width 10: "\x{E17}\x{E35}\x{E48}"
 193 text run at (0,3919) width 28: "\x{E1B}\x{E32}\x{E01}"
 194 text run at (0,3941) width 35: "\x{E1B}\x{E23}\x{E30}\x{E15}\x{E39}"
 195 text run at (0,3963) width 25: "\x{E41}\x{E25}\x{E30}"
 196 text run at (0,3985) width 27: "\x{E21}\x{E2D}\x{E07}"
 197 text run at (0,4007) width 17: "\x{E44}\x{E1B}"
 198 text run at (0,4029) width 37: "\x{E23}\x{E2D}\x{E1A}\x{E46}"
 199 text run at (0,4051) width 23: "\x{E40}\x{E18}\x{E2D}"
 200 text run at (0,4073) width 17: "\x{E44}\x{E21}\x{E48}"
 201 text run at (0,4095) width 25: "\x{E40}\x{E2B}\x{E47}\x{E19}"
 202 text run at (0,4117) width 31: "\x{E2D}\x{E30}\x{E44}\x{E23}"
 203 text run at (0,4139) width 55: "\x{E19}\x{E2D}\x{E01}\x{E08}\x{E32}\x{E01}"
 204 text run at (0,4161) width 27: "\x{E17}\x{E49}\x{E2D}\x{E07}"
 205 text run at (0,4183) width 18: "\x{E17}\x{E38}\x{E48}\x{E07}"
 206 text run at (0,4205) width 34: "\x{E01}\x{E27}\x{E49}\x{E32}\x{E07}"
 207 text run at (0,4227) width 10: "\x{E2A}\x{E35}"
 208 text run at (0,4249) width 23: "\x{E40}\x{E17}\x{E32}"
 209 text run at (0,4271) width 30: "\x{E2B}\x{E21}\x{E48}\x{E19}"
 210 text run at (0,4293) width 18: "\x{E17}\x{E31}\x{E48}\x{E27}"
 211 text run at (0,4315) width 20: "\x{E17}\x{E38}\x{E01}"
 212 text run at (0,4337) width 28: "\x{E14}\x{E49}\x{E32}\x{E19}"
 213 text run at (0,4359) width 27: "\x{E44}\x{E21}\x{E48}\x{E21}\x{E35}"
 214 text run at (0,4381) width 19: "\x{E41}\x{E21}\x{E49}"
 215 text run at (0,4403) width 37: "\x{E15}\x{E49}\x{E19}\x{E44}\x{E21}\x{E49}"
 216 text run at (0,4425) width 20: "\x{E2A}\x{E31}\x{E01}"
 217 text run at (0,4447) width 20: "\x{E15}\x{E49}\x{E19}"
 218 text run at (0,4469) width 27: "\x{E2B}\x{E23}\x{E37}\x{E2D}"
 219 text run at (0,4491) width 28: "\x{E1A}\x{E49}\x{E32}\x{E19}"
 220 text run at (0,4513) width 20: "\x{E2A}\x{E31}\x{E01}"
 221 text run at (0,4535) width 27: "\x{E2B}\x{E25}\x{E31}\x{E07}"
 222 text run at (0,4557) width 10: "\x{E17}\x{E35}\x{E48}"
 223 text run at (0,4579) width 26: "\x{E42}\x{E1C}\x{E25}\x{E48}"
 224 text run at (0,4601) width 21: "\x{E1E}\x{E49}\x{E19}"
 225 text run at (0,4623) width 71: "\x{E20}\x{E39}\x{E21}\x{E34}\x{E1B}\x{E23}\x{E30}\x{E40}\x{E17}\x{E28}"
 226 text run at (0,4645) width 19: "\x{E2D}\x{E31}\x{E19}"
 227 text run at (0,4667) width 26: "\x{E23}\x{E32}\x{E1A}"
 228 text run at (0,4689) width 33: "\x{E40}\x{E23}\x{E35}\x{E22}\x{E1A}"
 229 text run at (0,4711) width 19: "\x{E41}\x{E1C}\x{E48}"
 230 text run at (0,4733) width 17: "\x{E44}\x{E1B}"
 231 text run at (0,4755) width 26: "\x{E44}\x{E01}\x{E25}"
 232 text run at (0,4777) width 18: "\x{E08}\x{E19}"
 233 text run at (0,4799) width 18: "\x{E08}\x{E14}"
 234 text run at (0,4821) width 28: "\x{E02}\x{E2D}\x{E1A}"
 235 text run at (0,4843) width 19: "\x{E1F}\x{E49}\x{E32}"
 236 text run at (0,4865) width 18: "\x{E17}\x{E31}\x{E48}\x{E27}"
 237 text run at (0,4887) width 20: "\x{E17}\x{E38}\x{E01}"
 238 text run at (0,4909) width 20: "\x{E17}\x{E34}\x{E28}"
 239 text run at (0,4931) width 61: "\x{E14}\x{E27}\x{E07}\x{E15}\x{E30}\x{E27}\x{E31}\x{E19}"
 240 text run at (0,4953) width 23: "\x{E40}\x{E1C}\x{E32}"
 241 text run at (0,4975) width 20: "\x{E1C}\x{E37}\x{E19}"
 242 text run at (0,4997) width 20: "\x{E14}\x{E34}\x{E19}"
 243 text run at (0,5019) width 10: "\x{E17}\x{E35}\x{E48}"
 244 text run at (0,5041) width 17: "\x{E44}\x{E16}"
 245 text run at (0,5063) width 26: "\x{E41}\x{E25}\x{E49}\x{E27}"
 246 text run at (0,5085) width 18: "\x{E08}\x{E19}"
 247 text run at (0,5107) width 37: "\x{E01}\x{E25}\x{E32}\x{E22}"
 248 text run at (0,5129) width 25: "\x{E40}\x{E1B}\x{E47}\x{E19}"
 249 text run at (0,5151) width 29: "\x{E41}\x{E1C}\x{E48}\x{E19}"
 250 text run at (0,5173) width 38: "\x{E21}\x{E2B}\x{E36}\x{E21}\x{E32}"
 251 text run at (0,5195) width 10: "\x{E2A}\x{E35}"
 252 text run at (0,5217) width 18: "\x{E14}\x{E33}"
 253 text run at (0,5239) width 10: "\x{E21}\x{E35}"
 254 text run at (0,5261) width 27: "\x{E23}\x{E2D}\x{E22}"
 255 text run at (0,5283) width 29: "\x{E41}\x{E15}\x{E01}"
 256 text run at (0,5305) width 42: "\x{E23}\x{E30}\x{E41}\x{E2B}\x{E07}"
 257 text run at (0,5327) width 19: "\x{E2D}\x{E22}\x{E39}\x{E48}"
 258 text run at (0,5349) width 38: "\x{E15}\x{E25}\x{E2D}\x{E14}"
 259 text run at (0,5371) width 38: "\x{E41}\x{E21}\x{E49}\x{E41}\x{E15}\x{E48}"
 260 text run at (0,5393) width 31: "\x{E2B}\x{E0D}\x{E49}\x{E32}"
 261 text run at (0,5415) width 10: "\x{E01}\x{E47}"
 262 text run at (0,5437) width 17: "\x{E44}\x{E21}\x{E48}"
 263 text run at (0,5459) width 32: "\x{E40}\x{E02}\x{E35}\x{E22}\x{E27}"
 264 text run at (0,5481) width 39: "\x{E40}\x{E1E}\x{E23}\x{E32}\x{E30}"
 265 text run at (0,5503) width 61: "\x{E14}\x{E27}\x{E07}\x{E15}\x{E30}\x{E27}\x{E31}\x{E19}"
 266 text run at (0,5525) width 23: "\x{E40}\x{E1C}\x{E32}"
 267 text run at (0,5547) width 29: "\x{E22}\x{E2D}\x{E14}"
 268 text run at (0,5569) width 17: "\x{E43}\x{E1A}"
 269 text run at (0,5591) width 26: "\x{E22}\x{E32}\x{E27}"
 270 text run at (0,5613) width 25: "\x{E40}\x{E2A}\x{E35}\x{E22}"
 271 text run at (0,5635) width 18: "\x{E08}\x{E19}"
 272 text run at (0,5657) width 25: "\x{E40}\x{E1B}\x{E47}\x{E19}"
 273 text run at (0,5679) width 10: "\x{E2A}\x{E35}"
 274 text run at (0,5701) width 23: "\x{E40}\x{E17}\x{E32}"
 275 text run at (0,5723) width 30: "\x{E2B}\x{E21}\x{E48}\x{E19}"
 276 text run at (0,5745) width 27: "\x{E21}\x{E2D}\x{E07}"
 277 text run at (0,5767) width 25: "\x{E40}\x{E2B}\x{E47}\x{E19}"
 278 text run at (0,5789) width 19: "\x{E2D}\x{E22}\x{E39}\x{E48}"
 279 text run at (0,5811) width 35: "\x{E17}\x{E31}\x{E48}\x{E27}\x{E44}\x{E1B}"
 280 text run at (0,5833) width 26: "\x{E04}\x{E23}\x{E31}\x{E49}\x{E07}"
 281 text run at (0,5855) width 28: "\x{E2B}\x{E19}\x{E36}\x{E48}\x{E07}"
 282 text run at (0,5877) width 25: "\x{E40}\x{E04}\x{E22}"
 283 text run at (0,5899) width 28: "\x{E17}\x{E32}\x{E2A}\x{E35}"
 284 text run at (0,5921) width 28: "\x{E1A}\x{E49}\x{E32}\x{E19}"
 285 text run at (0,5943) width 22: "\x{E40}\x{E2D}\x{E32}"
 286 text run at (0,5965) width 15: "\x{E44}\x{E27}\x{E49}"
 287 text run at (0,5987) width 19: "\x{E41}\x{E15}\x{E48}"
 288 text run at (0,6009) width 10: "\x{E01}\x{E47}"
 289 text run at (0,6031) width 20: "\x{E16}\x{E39}\x{E01}"
 290 text run at (0,6053) width 61: "\x{E14}\x{E27}\x{E07}\x{E15}\x{E30}\x{E27}\x{E31}\x{E19}"
 291 text run at (0,6075) width 23: "\x{E40}\x{E1C}\x{E32}"
 292 text run at (0,6097) width 25: "\x{E40}\x{E2A}\x{E35}\x{E22}"
 293 text run at (0,6119) width 18: "\x{E08}\x{E19}"
 294 text run at (0,6141) width 10: "\x{E2A}\x{E35}"
 295 text run at (0,6163) width 28: "\x{E1E}\x{E2D}\x{E07}"
 296 text run at (0,6185) width 26: "\x{E41}\x{E25}\x{E49}\x{E27}"
 297 text run at (0,6207) width 20: "\x{E1D}\x{E19}"
 298 text run at (0,6229) width 10: "\x{E01}\x{E47}"
 299 text run at (0,6251) width 16: "\x{E0A}\x{E30}"
 300 text run at (0,6273) width 20: "\x{E21}\x{E31}\x{E19}"
 301 text run at (0,6295) width 29: "\x{E2B}\x{E25}\x{E38}\x{E14}"
 302 text run at (0,6317) width 17: "\x{E44}\x{E1B}"
 303 text run at (0,6339) width 18: "\x{E08}\x{E19}"
 304 text run at (0,6361) width 30: "\x{E2B}\x{E21}\x{E14}"
 305 text run at (0,6383) width 25: "\x{E41}\x{E25}\x{E30}"
 306 text run at (0,6405) width 29: "\x{E15}\x{E2D}\x{E19}"
 307 text run at (0,6427) width 10: "\x{E19}\x{E35}\x{E49}"
 308 text run at (0,6449) width 28: "\x{E1A}\x{E49}\x{E32}\x{E19}"
 309 text run at (0,6471) width 16: "\x{E08}\x{E36}\x{E07}"
 310 text run at (0,6493) width 10: "\x{E14}\x{E39}"
 311 text run at (0,6515) width 67: "\x{E2B}\x{E21}\x{E48}\x{E19}\x{E2B}\x{E21}\x{E2D}\x{E07}"
 312 text run at (0,6537) width 25: "\x{E40}\x{E1B}\x{E47}\x{E19}"
 313 text run at (0,6559) width 10: "\x{E2A}\x{E35}"
 314 text run at (0,6581) width 23: "\x{E40}\x{E17}\x{E32}"
 315 text run at (0,6603) width 44: "\x{E40}\x{E2B}\x{E21}\x{E37}\x{E2D}\x{E19}"
 316 text run at (0,6625) width 18: "\x{E2A}\x{E34}\x{E48}\x{E07}"
 317 text run at (0,6647) width 29: "\x{E2D}\x{E37}\x{E48}\x{E19}\x{E46}"
 318 text run at (0,6669) width 28: "\x{E14}\x{E49}\x{E27}\x{E22}"
 319 text run at (0,6691) width 29: "\x{E15}\x{E2D}\x{E19}"
 320 text run at (0,6713) width 10: "\x{E17}\x{E35}\x{E48}"
 321 text run at (0,6735) width 18: "\x{E1B}\x{E49}\x{E32}"
 322 text run at (0,6757) width 24: "\x{E40}\x{E2D}\x{E47}\x{E21}"
 323 text run at (0,6779) width 28: "\x{E22}\x{E49}\x{E32}\x{E22}"
 324 text run at (0,6801) width 18: "\x{E21}\x{E32}"
 325 text run at (0,6823) width 19: "\x{E2D}\x{E22}\x{E39}\x{E48}"
 326 text run at (0,6845) width 10: "\x{E17}\x{E35}\x{E48}"
 327 text run at (0,6867) width 10: "\x{E19}\x{E35}\x{E48}"
 328 text run at (0,6889) width 23: "\x{E40}\x{E18}\x{E2D}"
 329 text run at (0,6911) width 18: "\x{E22}\x{E31}\x{E07}"
 330 text run at (0,6933) width 26: "\x{E2A}\x{E32}\x{E27}"
 331 text run at (0,6955) width 25: "\x{E40}\x{E1B}\x{E47}\x{E19}"
 332 text run at (0,6977) width 45: "\x{E20}\x{E23}\x{E23}\x{E22}\x{E32}"
 333 text run at (0,6999) width 10: "\x{E17}\x{E35}\x{E48}"
 334 text run at (0,7021) width 44: "\x{E07}\x{E14}\x{E07}\x{E32}\x{E21}"
 335 text run at (0,7043) width 26: "\x{E41}\x{E25}\x{E49}\x{E27}"
 336 text run at (0,7065) width 29: "\x{E41}\x{E14}\x{E14}"
 337 text run at (0,7087) width 25: "\x{E41}\x{E25}\x{E30}"
 338 text run at (0,7109) width 19: "\x{E25}\x{E21}"
 339 text run at (0,7131) width 27: "\x{E01}\x{E47}\x{E44}\x{E14}\x{E49}"
 340 text run at (0,7153) width 44: "\x{E40}\x{E1B}\x{E25}\x{E35}\x{E48}\x{E22}\x{E19}"
 341 text run at (0,7175) width 23: "\x{E40}\x{E18}\x{E2D}"
 342 text run at (0,7197) width 17: "\x{E44}\x{E1B}"
 343 text run at (0,7219) width 22: "\x{E40}\x{E2D}\x{E32}"
 344 text run at (0,7241) width 53: "\x{E1B}\x{E23}\x{E30}\x{E01}\x{E32}\x{E22}"
 345 text run at (0,7263) width 17: "\x{E44}\x{E1B}"
 346 text run at (0,7285) width 26: "\x{E08}\x{E32}\x{E01}"
 347 text run at (0,7307) width 44: "\x{E14}\x{E27}\x{E07}\x{E15}\x{E32}"
 348 text run at (0,7329) width 23: "\x{E40}\x{E18}\x{E2D}"
 349 text run at (0,7351) width 38: "\x{E1B}\x{E25}\x{E48}\x{E2D}\x{E22}"
 350 text run at (0,7373) width 15: "\x{E44}\x{E27}\x{E49}"
 351 text run at (0,7395) width 19: "\x{E41}\x{E15}\x{E48}"
 352 text run at (0,7417) width 36: "\x{E04}\x{E27}\x{E32}\x{E21}"
 353 text run at (0,7439) width 29: "\x{E2A}\x{E38}\x{E02}\x{E38}\x{E21}"
 354 text run at (0,7461) width 35: "\x{E2D}\x{E22}\x{E48}\x{E32}\x{E07}"
 355 text run at (0,7483) width 67: "\x{E2B}\x{E21}\x{E48}\x{E19}\x{E2B}\x{E21}\x{E2D}\x{E07}"
 356 text run at (0,7505) width 22: "\x{E40}\x{E2D}\x{E32}"
 357 text run at (0,7527) width 10: "\x{E2A}\x{E35}"
 358 text run at (0,7549) width 27: "\x{E41}\x{E14}\x{E07}"
 359 text run at (0,7571) width 26: "\x{E08}\x{E32}\x{E01}"
 360 text run at (0,7593) width 29: "\x{E41}\x{E01}\x{E49}\x{E21}"
 361 text run at (0,7615) width 25: "\x{E41}\x{E25}\x{E30}"
 362 text run at (0,7637) width 18: "\x{E23}\x{E34}\x{E21}"
 363 text run at (0,7659) width 38: "\x{E1D}\x{E35}\x{E1B}\x{E32}\x{E01}"
 364 text run at (0,7681) width 23: "\x{E40}\x{E18}\x{E2D}"
 365 text run at (0,7703) width 17: "\x{E44}\x{E1B}"
 366 text run at (0,7725) width 37: "\x{E01}\x{E25}\x{E32}\x{E22}"
 367 text run at (0,7747) width 25: "\x{E40}\x{E1B}\x{E47}\x{E19}"
 368 text run at (0,7769) width 10: "\x{E2A}\x{E35}"
 369 text run at (0,7791) width 40: "\x{E2B}\x{E21}\x{E48}\x{E19}\x{E46}"
 370 text run at (0,7813) width 44: "\x{E40}\x{E2B}\x{E21}\x{E37}\x{E2D}\x{E19}"
 371 text run at (0,7835) width 20: "\x{E01}\x{E31}\x{E19}"
 372 text run at (0,7857) width 23: "\x{E40}\x{E18}\x{E2D}"
 373 text run at (0,7879) width 29: "\x{E1C}\x{E2D}\x{E21}"
 374 text run at (0,7901) width 25: "\x{E41}\x{E25}\x{E30}"
 375 text run at (0,7923) width 27: "\x{E2B}\x{E25}\x{E31}\x{E07}"
 376 text run at (0,7945) width 25: "\x{E42}\x{E04}\x{E49}\x{E07}"
 377 text run at (0,7967) width 25: "\x{E41}\x{E25}\x{E30}"
 378 text run at (0,7989) width 33: "\x{E40}\x{E14}\x{E35}\x{E4B}\x{E22}\x{E27}"
 379 text run at (0,8011) width 10: "\x{E19}\x{E35}\x{E49}"
 380 text run at (0,8033) width 17: "\x{E44}\x{E21}\x{E48}"
 381 text run at (0,8055) width 25: "\x{E40}\x{E04}\x{E22}"
 382 text run at (0,8077) width 20: "\x{E22}\x{E34}\x{E49}\x{E21}"
 383 text run at (0,8099) width 24: "\x{E40}\x{E25}\x{E22}"
 384 text run at (0,8121) width 24: "\x{E40}\x{E21}\x{E37}\x{E48}\x{E2D}"
 385 text run at (0,8143) width 17: "\x{E42}\x{E14}"
 386 text run at (0,8165) width 24: "\x{E42}\x{E23}\x{E18}\x{E35}"
 387 text run at (0,8187) width 17: "\x{E0B}\x{E36}\x{E48}\x{E07}"
 388 text run at (0,8209) width 25: "\x{E40}\x{E1B}\x{E47}\x{E19}"
 389 text run at (0,8231) width 25: "\x{E40}\x{E14}\x{E47}\x{E01}"
 390 text run at (0,8253) width 45: "\x{E01}\x{E33}\x{E1E}\x{E23}\x{E49}\x{E32}"
 391 text run at (0,8275) width 18: "\x{E21}\x{E32}"
 392 text run at (0,8297) width 19: "\x{E2D}\x{E22}\x{E39}\x{E48}"
 393 text run at (0,8319) width 20: "\x{E01}\x{E31}\x{E1A}"
 394 text run at (0,8341) width 23: "\x{E40}\x{E18}\x{E2D}"
 395 text run at (0,8363) width 29: "\x{E15}\x{E2D}\x{E19}"
 396 text run at (0,8385) width 27: "\x{E41}\x{E23}\x{E01}"
 397 text run at (0,8407) width 18: "\x{E1B}\x{E49}\x{E32}"
 398 text run at (0,8429) width 24: "\x{E40}\x{E2D}\x{E47}\x{E21}"
 399 text run at (0,8451) width 20: "\x{E15}\x{E37}\x{E48}\x{E19}"
 400 text run at (0,8473) width 25: "\x{E40}\x{E15}\x{E49}\x{E19}"
 401 text run at (0,8495) width 20: "\x{E01}\x{E31}\x{E1A}"
 402 text run at (0,8517) width 33: "\x{E40}\x{E2A}\x{E35}\x{E22}\x{E07}"
 403 text run at (0,8539) width 46: "\x{E2B}\x{E31}\x{E27}\x{E40}\x{E23}\x{E32}\x{E30}"
 404 text run at (0,8561) width 26: "\x{E02}\x{E2D}\x{E07}"
 405 text run at (0,8583) width 25: "\x{E40}\x{E14}\x{E47}\x{E01}"
 406 text run at (0,8605) width 29: "\x{E19}\x{E49}\x{E2D}\x{E22}"
 407 text run at (0,8627) width 28: "\x{E21}\x{E32}\x{E01}"
 408 text run at (0,8649) width 23: "\x{E40}\x{E18}\x{E2D}"
 409 text run at (0,8671) width 15: "\x{E08}\x{E30}"
 410 text run at (0,8693) width 18: "\x{E2A}\x{E48}\x{E07}"
 411 text run at (0,8715) width 33: "\x{E40}\x{E2A}\x{E35}\x{E22}\x{E07}"
 412 text run at (0,8737) width 25: "\x{E23}\x{E49}\x{E2D}\x{E07}"
 413 text run at (0,8759) width 26: "\x{E41}\x{E25}\x{E49}\x{E27}"
 414 text run at (0,8781) width 22: "\x{E40}\x{E2D}\x{E32}"
 415 text run at (0,8803) width 19: "\x{E21}\x{E37}\x{E2D}"
 416 text run at (0,8825) width 28: "\x{E17}\x{E32}\x{E1A}"
 417 text run at (0,8847) width 19: "\x{E2D}\x{E01}"
 418 text run at (0,8869) width 20: "\x{E17}\x{E38}\x{E01}"
 419 text run at (0,8891) width 26: "\x{E04}\x{E23}\x{E31}\x{E49}\x{E07}"
 420 text run at (0,8913) width 10: "\x{E17}\x{E35}\x{E48}"
 421 text run at (0,8935) width 33: "\x{E40}\x{E2A}\x{E35}\x{E22}\x{E07}"
 422 text run at (0,8957) width 19: "\x{E2D}\x{E31}\x{E19}"
 423 text run at (0,8979) width 37: "\x{E23}\x{E48}\x{E32}\x{E40}\x{E23}\x{E34}\x{E07}"
 424 text run at (0,9001) width 26: "\x{E02}\x{E2D}\x{E07}"
 425 text run at (0,9023) width 17: "\x{E42}\x{E14}"
 426 text run at (0,9045) width 24: "\x{E42}\x{E23}\x{E18}\x{E35}"
 427 text run at (0,9067) width 32: "\x{E40}\x{E02}\x{E49}\x{E32}\x{E2B}\x{E39}"
 428 text run at (0,9089) width 23: "\x{E40}\x{E18}\x{E2D}"
 429 text run at (0,9111) width 25: "\x{E41}\x{E25}\x{E30}"
 430 text run at (0,9133) width 23: "\x{E40}\x{E18}\x{E2D}"
 431 text run at (0,9155) width 23: "\x{E40}\x{E1D}\x{E49}\x{E32}"
 432 text run at (0,9177) width 27: "\x{E21}\x{E2D}\x{E07}"
 433 text run at (0,9199) width 25: "\x{E40}\x{E14}\x{E47}\x{E01}"
 434 text run at (0,9221) width 31: "\x{E2B}\x{E0D}\x{E34}\x{E07}"
 435 text run at (0,9243) width 39: "\x{E19}\x{E49}\x{E2D}\x{E22}\x{E46}"
 436 text run at (0,9265) width 28: "\x{E14}\x{E49}\x{E27}\x{E22}"
 437 text run at (0,9287) width 36: "\x{E04}\x{E27}\x{E32}\x{E21}"
 438 text run at (0,9309) width 62: "\x{E1B}\x{E23}\x{E30}\x{E2B}\x{E25}\x{E32}\x{E14}"
 439 text run at (0,9331) width 15: "\x{E43}\x{E08}"
 440 text run at (0,9353) width 28: "\x{E14}\x{E49}\x{E27}\x{E22}"
 441 text run at (0,9375) width 18: "\x{E22}\x{E31}\x{E07}"
 442 text run at (0,9397) width 18: "\x{E2B}\x{E32}"
 443 text run at (0,9419) width 31: "\x{E2D}\x{E30}\x{E44}\x{E23}"
 444 text run at (0,9441) width 18: "\x{E21}\x{E32}"
 445 text run at (0,9463) width 25: "\x{E40}\x{E1B}\x{E47}\x{E19}"
 446 text run at (0,9485) width 30: "\x{E40}\x{E23}\x{E37}\x{E48}\x{E2D}\x{E07}"
 447 text run at (0,9507) width 46: "\x{E2B}\x{E31}\x{E27}\x{E40}\x{E23}\x{E32}\x{E30}"
 448 text run at (0,9529) width 17: "\x{E44}\x{E14}\x{E49}"
 449 text run at (0,9551) width 17: "\x{E25}\x{E38}\x{E07}"
 450 text run at (0,9573) width 14: "\x{E40}\x{E2E}"
 451 text run at (0,9595) width 18: "\x{E19}\x{E23}\x{E35}"
 452 text run at (0,9617) width 17: "\x{E44}\x{E21}\x{E48}"
 453 text run at (0,9639) width 25: "\x{E40}\x{E04}\x{E22}"
 454 text run at (0,9661) width 46: "\x{E2B}\x{E31}\x{E27}\x{E40}\x{E23}\x{E32}\x{E30}"
 455 text run at (0,9683) width 17: "\x{E25}\x{E38}\x{E07}"
 456 text run at (0,9705) width 44: "\x{E17}\x{E33}\x{E07}\x{E32}\x{E19}"
 457 text run at (0,9727) width 30: "\x{E2B}\x{E19}\x{E31}\x{E01}"
 458 text run at (0,9749) width 26: "\x{E08}\x{E32}\x{E01}"
 459 text run at (0,9771) width 22: "\x{E40}\x{E0A}\x{E49}\x{E32}"
 460 text run at (0,9793) width 20: "\x{E22}\x{E31}\x{E19}"
 461 text run at (0,9815) width 18: "\x{E04}\x{E48}\x{E33}"
 462 text run at (0,9837) width 25: "\x{E41}\x{E25}\x{E30}"
 463 text run at (0,9859) width 17: "\x{E44}\x{E21}\x{E48}"
 464 text run at (0,9881) width 25: "\x{E40}\x{E04}\x{E22}"
 465 text run at (0,9903) width 26: "\x{E23}\x{E39}\x{E49}\x{E08}\x{E31}\x{E01}"
 466 text run at (0,9925) width 16: "\x{E27}\x{E48}\x{E32}"
 467 text run at (0,9947) width 36: "\x{E04}\x{E27}\x{E32}\x{E21}"
 468 text run at (0,9969) width 37: "\x{E23}\x{E48}\x{E32}\x{E40}\x{E23}\x{E34}\x{E07}"
 469 text run at (0,9991) width 19: "\x{E04}\x{E37}\x{E2D}"
 470 text run at (0,10013) width 31: "\x{E2D}\x{E30}\x{E44}\x{E23}"
 471 text run at (0,10035) width 17: "\x{E25}\x{E38}\x{E07}"
 472 text run at (0,10057) width 10: "\x{E14}\x{E39}"
 473 text run at (0,10079) width 67: "\x{E2B}\x{E21}\x{E48}\x{E19}\x{E2B}\x{E21}\x{E2D}\x{E07}"
 474 text run at (0,10101) width 17: "\x{E44}\x{E1B}"
 475 text run at (0,10123) width 30: "\x{E2B}\x{E21}\x{E14}"
 476 text run at (0,10145) width 37: "\x{E15}\x{E31}\x{E49}\x{E07}\x{E41}\x{E15}\x{E48}"
 477 text run at (0,10167) width 31: "\x{E40}\x{E04}\x{E23}\x{E32}"
 478 text run at (0,10189) width 26: "\x{E22}\x{E32}\x{E27}"
 479 text run at (0,10211) width 18: "\x{E08}\x{E19}"
 480 text run at (0,10233) width 18: "\x{E08}\x{E14}"
 481 text run at (0,10255) width 48: "\x{E23}\x{E2D}\x{E07}\x{E40}\x{E17}\x{E49}\x{E32}"
 482 text run at (0,10277) width 20: "\x{E1A}\x{E39}\x{E15}"
 483 text run at (0,10299) width 19: "\x{E2D}\x{E31}\x{E19}"
 484 text run at (0,10321) width 38: "\x{E2B}\x{E22}\x{E32}\x{E1A}"
 485 text run at (0,10343) width 26: "\x{E41}\x{E25}\x{E49}\x{E27}"
 486 text run at (0,10365) width 17: "\x{E25}\x{E38}\x{E07}"
 487 text run at (0,10387) width 10: "\x{E01}\x{E47}"
 488 text run at (0,10409) width 10: "\x{E14}\x{E39}"
 489 text run at (0,10431) width 58: "\x{E40}\x{E04}\x{E23}\x{E48}\x{E07}\x{E02}\x{E23}\x{E36}\x{E21}"
 490 text run at (0,10453) width 18: "\x{E19}\x{E48}\x{E32}"
 491 text run at (0,10475) width 31: "\x{E40}\x{E01}\x{E23}\x{E07}"
 492 text run at (0,10497) width 27: "\x{E02}\x{E32}\x{E21}"
 493 text run at (0,10519) width 17: "\x{E44}\x{E21}\x{E48}"
 494 text run at (0,10541) width 29: "\x{E04}\x{E48}\x{E2D}\x{E22}"
 495 text run at (0,10563) width 15: "\x{E08}\x{E30}"
 496 text run at (0,10585) width 21: "\x{E1E}\x{E39}\x{E14}"
 497 text run at (0,10607) width 10: "\x{E21}\x{E35}"
 498 text run at (0,10629) width 17: "\x{E42}\x{E15}"
 499 text run at (0,10651) width 17: "\x{E42}\x{E15}\x{E49}"
 500 text run at (0,10673) width 10: "\x{E17}\x{E35}\x{E48}"
 501 text run at (0,10695) width 35: "\x{E17}\x{E33}\x{E43}\x{E2B}\x{E49}"
 502 text run at (0,10717) width 17: "\x{E42}\x{E14}"
 503 text run at (0,10739) width 24: "\x{E42}\x{E23}\x{E18}\x{E35}"
 504 text run at (0,10761) width 46: "\x{E2B}\x{E31}\x{E27}\x{E40}\x{E23}\x{E32}\x{E30}"
 505 text run at (0,10783) width 17: "\x{E44}\x{E14}\x{E49}"
 506 text run at (0,10805) width 25: "\x{E41}\x{E25}\x{E30}"
 507 text run at (0,10827) width 27: "\x{E0A}\x{E48}\x{E27}\x{E22}"
 508 text run at (0,10849) width 23: "\x{E40}\x{E18}\x{E2D}"
 509 text run at (0,10871) width 17: "\x{E43}\x{E2B}\x{E49}"
 510 text run at (0,10893) width 21: "\x{E1E}\x{E49}\x{E19}"
 511 text run at (0,10915) width 26: "\x{E08}\x{E32}\x{E01}"
 512 text run at (0,10937) width 36: "\x{E01}\x{E32}\x{E23}\x{E01}"
 513 text run at (0,10959) width 27: "\x{E25}\x{E32}\x{E22}"
 514 text run at (0,10981) width 25: "\x{E40}\x{E1B}\x{E47}\x{E19}"
 515 text run at (0,11003) width 10: "\x{E2A}\x{E35}"
 516 text run at (0,11025) width 23: "\x{E40}\x{E17}\x{E32}"
 517 text run at (0,11047) width 30: "\x{E2B}\x{E21}\x{E48}\x{E19}"
 518 text run at (0,11069) width 44: "\x{E40}\x{E2B}\x{E21}\x{E37}\x{E2D}\x{E19}"
 519 text run at (0,11091) width 20: "\x{E01}\x{E31}\x{E1A}"
 520 text run at (0,11113) width 18: "\x{E2A}\x{E34}\x{E48}\x{E07}"
 521 text run at (0,11135) width 27: "\x{E23}\x{E2D}\x{E1A}"
 522 text run at (0,11157) width 18: "\x{E15}\x{E31}\x{E27}"
 523 text run at (0,11179) width 29: "\x{E2D}\x{E37}\x{E48}\x{E19}\x{E46}"
 524 text run at (0,11201) width 17: "\x{E42}\x{E15}"
 525 text run at (0,11223) width 17: "\x{E42}\x{E15}\x{E49}"
 526 text run at (0,11245) width 10: "\x{E2A}\x{E35}"
 527 text run at (0,11267) width 17: "\x{E44}\x{E21}\x{E48}"
 528 text run at (0,11289) width 23: "\x{E40}\x{E17}\x{E32}"
 529 text run at (0,11311) width 30: "\x{E2B}\x{E21}\x{E48}\x{E19}"
 530 text run at (0,11333) width 19: "\x{E41}\x{E15}\x{E48}"
 531 text run at (0,11355) width 20: "\x{E21}\x{E31}\x{E19}"
 532 text run at (0,11377) width 25: "\x{E40}\x{E1B}\x{E47}\x{E19}"
 533 text run at (0,11399) width 28: "\x{E2B}\x{E21}\x{E32}"
 534 text run at (0,11421) width 10: "\x{E2A}\x{E35}"
 535 text run at (0,11443) width 18: "\x{E14}\x{E33}"
 536 text run at (0,11465) width 18: "\x{E15}\x{E31}\x{E27}"
 537 text run at (0,11487) width 39: "\x{E19}\x{E49}\x{E2D}\x{E22}\x{E46}"
 538 text run at (0,11509) width 19: "\x{E02}\x{E19}"
 539 text run at (0,11531) width 26: "\x{E22}\x{E32}\x{E27}"
 540 text run at (0,11553) width 20: "\x{E1B}\x{E38}\x{E22}"
 541 text run at (0,11575) width 44: "\x{E23}\x{E32}\x{E27}\x{E01}\x{E31}\x{E1A}"
 542 text run at (0,11597) width 27: "\x{E44}\x{E2B}\x{E21}"
 543 text run at (0,11619) width 10: "\x{E21}\x{E35}"
 544 text run at (0,11641) width 18: "\x{E15}\x{E32}"
 545 text run at (0,11663) width 18: "\x{E14}\x{E33}"
 546 text run at (0,11685) width 24: "\x{E40}\x{E25}\x{E47}\x{E01}"
 547 text run at (0,11707) width 25: "\x{E40}\x{E1B}\x{E47}\x{E19}"
 548 text run at (0,11729) width 53: "\x{E1B}\x{E23}\x{E30}\x{E01}\x{E32}\x{E22}"
 549 text run at (0,11751) width 39: "\x{E23}\x{E37}\x{E48}\x{E19}\x{E40}\x{E23}\x{E34}\x{E07}"
 550 text run at (0,11773) width 19: "\x{E2D}\x{E22}\x{E39}\x{E48}"
 551 text run at (0,11795) width 27: "\x{E2A}\x{E2D}\x{E07}"
 552 text run at (0,11817) width 25: "\x{E02}\x{E49}\x{E32}\x{E07}"
 553 text run at (0,11839) width 28: "\x{E08}\x{E21}\x{E39}\x{E01}"
 554 text run at (0,11861) width 24: "\x{E40}\x{E25}\x{E47}\x{E01}"
 555 text run at (0,11883) width 19: "\x{E2D}\x{E31}\x{E19}"
 556 text run at (0,11905) width 18: "\x{E19}\x{E48}\x{E32}"
 557 text run at (0,11927) width 19: "\x{E02}\x{E31}\x{E19}"
 558 text run at (0,11949) width 26: "\x{E02}\x{E2D}\x{E07}"
 559 text run at (0,11971) width 20: "\x{E21}\x{E31}\x{E19}"
 560 text run at (0,11993) width 17: "\x{E42}\x{E15}"
 561 text run at (0,12015) width 17: "\x{E42}\x{E15}\x{E49}"
 562 text run at (0,12037) width 24: "\x{E40}\x{E25}\x{E48}\x{E19}"
 563 text run at (0,12059) width 18: "\x{E17}\x{E31}\x{E49}\x{E07}"
 564 text run at (0,12081) width 18: "\x{E27}\x{E31}\x{E19}"
 565 text run at (0,12103) width 25: "\x{E41}\x{E25}\x{E30}"
 566 text run at (0,12125) width 17: "\x{E42}\x{E14}"
 567 text run at (0,12147) width 24: "\x{E42}\x{E23}\x{E18}\x{E35}"
 568 text run at (0,12169) width 10: "\x{E01}\x{E47}"
 569 text run at (0,12191) width 24: "\x{E40}\x{E25}\x{E48}\x{E19}"
 570 text run at (0,12213) width 20: "\x{E01}\x{E31}\x{E1A}"
 571 text run at (0,12235) width 20: "\x{E21}\x{E31}\x{E19}"
 572 text run at (0,12257) width 25: "\x{E41}\x{E25}\x{E30}"
 573 text run at (0,12279) width 18: "\x{E23}\x{E31}\x{E01}"
 574 text run at (0,12301) width 20: "\x{E21}\x{E31}\x{E19}"
 575 text run at (0,12323) width 33: "\x{E40}\x{E2B}\x{E25}\x{E37}\x{E2D}"
 576 text run at (0,12345) width 25: "\x{E40}\x{E01}\x{E34}\x{E19}"
 577 text run at (0,12367) width 50: "\x{E2D}\x{E22}\x{E48}\x{E32}\x{E07}\x{E44}\x{E23}"
 578 text run at (0,12389) width 38: "\x{E01}\x{E47}\x{E15}\x{E32}\x{E21}"
 579 text run at (0,12411) width 18: "\x{E27}\x{E31}\x{E19}"
 580 text run at (0,12433) width 10: "\x{E19}\x{E35}\x{E49}"
 581 text run at (0,12455) width 18: "\x{E17}\x{E31}\x{E49}\x{E07}"
 582 text run at (0,12477) width 10: "\x{E04}\x{E39}\x{E48}"
 583 text run at (0,12499) width 17: "\x{E44}\x{E21}\x{E48}"
 584 text run at (0,12521) width 17: "\x{E44}\x{E14}\x{E49}"
 585 text run at (0,12543) width 24: "\x{E40}\x{E25}\x{E48}\x{E19}"
 586 text run at (0,12565) width 17: "\x{E25}\x{E38}\x{E07}"
 587 text run at (0,12587) width 14: "\x{E40}\x{E2E}"
 588 text run at (0,12609) width 18: "\x{E19}\x{E23}\x{E35}"
 589 text run at (0,12631) width 18: "\x{E19}\x{E31}\x{E48}\x{E07}"
 590 text run at (0,12653) width 19: "\x{E2D}\x{E22}\x{E39}\x{E48}"
 591 text run at (0,12675) width 10: "\x{E17}\x{E35}\x{E48}"
 592 text run at (0,12697) width 37: "\x{E1A}\x{E31}\x{E19}\x{E44}\x{E14}"
 593 text run at (0,12719) width 35: "\x{E1B}\x{E23}\x{E30}\x{E15}\x{E39}"
 594 text run at (0,12741) width 25: "\x{E41}\x{E25}\x{E30}"
 595 text run at (0,12763) width 23: "\x{E40}\x{E1D}\x{E49}\x{E32}"
 596 text run at (0,12785) width 35: "\x{E01}\x{E31}\x{E07}\x{E27}\x{E25}"
 597 text run at (0,12807) width 25: "\x{E08}\x{E49}\x{E2D}\x{E07}"
 598 text run at (0,12829) width 10: "\x{E14}\x{E39}"
 599 text run at (0,12851) width 46: "\x{E17}\x{E49}\x{E2D}\x{E07}\x{E1F}\x{E49}\x{E32}"
 600 text run at (0,12873) width 10: "\x{E2A}\x{E35}"
 601 text run at (0,12895) width 23: "\x{E40}\x{E17}\x{E32}"
 602 text run at (0,12917) width 30: "\x{E2B}\x{E21}\x{E48}\x{E19}"
 603 text run at (0,12939) width 20: "\x{E1C}\x{E34}\x{E14}"
 604 text run at (0,12961) width 30: "\x{E1B}\x{E01}\x{E15}\x{E34}"
 605 text run at (0,12983) width 17: "\x{E42}\x{E14}"
 606 text run at (0,13005) width 24: "\x{E42}\x{E23}\x{E18}\x{E35}"
 607 text run at (0,13027) width 20: "\x{E22}\x{E37}\x{E19}"
 608 text run at (0,13049) width 10: "\x{E17}\x{E35}\x{E48}"
 609 text run at (0,13071) width 35: "\x{E1B}\x{E23}\x{E30}\x{E15}\x{E39}"
 610 text run at (0,13093) width 29: "\x{E01}\x{E2D}\x{E14}"
 611 text run at (0,13115) width 17: "\x{E42}\x{E15}"
 612 text run at (0,13137) width 17: "\x{E42}\x{E15}\x{E49}"
 613 text run at (0,13159) width 15: "\x{E44}\x{E27}\x{E49}"
 614 text run at (0,13181) width 17: "\x{E43}\x{E19}"
 615 text run at (0,13203) width 28: "\x{E2D}\x{E49}\x{E2D}\x{E21}"
 616 text run at (0,13225) width 28: "\x{E41}\x{E02}\x{E19}"
 617 text run at (0,13247) width 25: "\x{E41}\x{E25}\x{E30}"
 618 text run at (0,13269) width 10: "\x{E01}\x{E47}"
 619 text run at (0,13291) width 27: "\x{E21}\x{E2D}\x{E07}"
 620 text run at (0,13313) width 10: "\x{E14}\x{E39}"
 621 text run at (0,13335) width 46: "\x{E17}\x{E49}\x{E2D}\x{E07}\x{E1F}\x{E49}\x{E32}"
 622 text run at (0,13357) width 19: "\x{E2D}\x{E22}\x{E39}\x{E48}"
 623 text run at (0,13379) width 44: "\x{E40}\x{E2B}\x{E21}\x{E37}\x{E2D}\x{E19}"
 624 text run at (0,13401) width 20: "\x{E01}\x{E31}\x{E19}"
 625 text run at (0,13423) width 18: "\x{E1B}\x{E49}\x{E32}"
 626 text run at (0,13445) width 14: "\x{E40}\x{E2D}\x{E47}"
 627 text run at (0,13467) width 28: "\x{E21}\x{E01}\x{E33}"
 628 text run at (0,13489) width 17: "\x{E25}\x{E31}\x{E07}"
 629 text run at (0,13511) width 25: "\x{E25}\x{E49}\x{E32}\x{E07}"
 630 text run at (0,13533) width 27: "\x{E0A}\x{E32}\x{E21}"
 631 text run at (0,13555) width 19: "\x{E2D}\x{E22}\x{E39}\x{E48}"
 632 text run at (0,13577) width 26: "\x{E08}\x{E32}\x{E01}"
 633 text run at (0,13599) width 28: "\x{E14}\x{E49}\x{E32}\x{E19}"
 634 text run at (0,13621) width 34: "\x{E40}\x{E2B}\x{E19}\x{E37}\x{E2D}"
 635 text run at (0,13643) width 26: "\x{E44}\x{E01}\x{E25}"
 636 text run at (0,13665) width 28: "\x{E2D}\x{E2D}\x{E01}"
 637 text run at (0,13687) width 17: "\x{E44}\x{E1B}"
 638 text run at (0,13709) width 10: "\x{E21}\x{E35}"
 639 text run at (0,13731) width 33: "\x{E40}\x{E2A}\x{E35}\x{E22}\x{E07}"
 640 text run at (0,13753) width 19: "\x{E25}\x{E21}"
 641 text run at (0,13775) width 34: "\x{E04}\x{E23}\x{E32}\x{E07}"
 642 text run at (0,13797) width 27: "\x{E41}\x{E1C}\x{E48}\x{E27}"
 643 text run at (0,13819) width 23: "\x{E40}\x{E1A}\x{E32}"
 644 text run at (0,13841) width 37: "\x{E44}\x{E14}\x{E49}\x{E22}\x{E34}\x{E19}"
 645 text run at (0,13863) width 18: "\x{E21}\x{E32}"
 646 text run at (0,13885) width 17: "\x{E25}\x{E38}\x{E07}"
 647 text run at (0,13907) width 14: "\x{E40}\x{E2E}"
 648 text run at (0,13929) width 18: "\x{E19}\x{E23}\x{E35}"
 649 text run at (0,13951) width 25: "\x{E41}\x{E25}\x{E30}"
 650 text run at (0,13973) width 17: "\x{E42}\x{E14}"
 651 text run at (0,13995) width 24: "\x{E42}\x{E23}\x{E18}\x{E35}"
 652 text run at (0,14017) width 25: "\x{E40}\x{E2B}\x{E47}\x{E19}"
 653 text run at (0,14039) width 20: "\x{E15}\x{E49}\x{E19}"
 654 text run at (0,14061) width 31: "\x{E2B}\x{E0D}\x{E49}\x{E32}"
 655 text run at (0,14083) width 18: "\x{E2A}\x{E39}\x{E07}"
 656 text run at (0,14105) width 24: "\x{E40}\x{E2D}\x{E19}"
 657 text run at (0,14127) width 25: "\x{E40}\x{E1B}\x{E47}\x{E19}"
 658 text run at (0,14149) width 29: "\x{E04}\x{E25}\x{E37}\x{E48}\x{E19}"
 659 text run at (0,14171) width 29: "\x{E01}\x{E48}\x{E2D}\x{E19}"
 660 text run at (0,14193) width 10: "\x{E17}\x{E35}\x{E48}"
 661 text run at (0,14215) width 29: "\x{E1E}\x{E32}\x{E22}\x{E38}"
 662 text run at (0,14237) width 15: "\x{E08}\x{E30}"
 663 text run at (0,14259) width 18: "\x{E21}\x{E32}"
 664 text run at (0,14281) width 18: "\x{E16}\x{E36}\x{E07}"
 665 text run at (0,14303) width 26: "\x{E41}\x{E25}\x{E49}\x{E27}"
 666 text run at (0,14325) width 10: "\x{E01}\x{E47}"
 667 text run at (0,14347) width 10: "\x{E21}\x{E35}"
 668 text run at (0,14369) width 33: "\x{E40}\x{E2A}\x{E35}\x{E22}\x{E07}"
 669 text run at (0,14391) width 28: "\x{E2B}\x{E27}\x{E35}\x{E14}"
 670 text run at (0,14413) width 26: "\x{E2B}\x{E27}\x{E34}\x{E27}"
 671 text run at (0,14435) width 42: "\x{E0A}\x{E31}\x{E14}\x{E40}\x{E08}\x{E19}"
 672 text run at (0,14457) width 18: "\x{E21}\x{E32}"
 673 text run at (0,14479) width 26: "\x{E08}\x{E32}\x{E01}"
 674 text run at (0,14501) width 72: "\x{E1A}\x{E23}\x{E23}\x{E22}\x{E32}\x{E01}\x{E32}\x{E28}"
 675 text run at (0,14523) width 26: "\x{E17}\x{E32}\x{E07}"
 676 text run at (0,14545) width 17: "\x{E43}\x{E15}\x{E49}"
 677 text run at (0,14567) width 25: "\x{E41}\x{E25}\x{E30}"
 678 text run at (0,14589) width 24: "\x{E40}\x{E21}\x{E37}\x{E48}\x{E2D}"
 679 text run at (0,14611) width 43: "\x{E40}\x{E2B}\x{E25}\x{E37}\x{E2D}\x{E1A}"
 680 text run at (0,14633) width 18: "\x{E15}\x{E32}"
 681 text run at (0,14655) width 17: "\x{E44}\x{E1B}"
 682 text run at (0,14677) width 26: "\x{E17}\x{E32}\x{E07}"
 683 text run at (0,14699) width 28: "\x{E14}\x{E49}\x{E32}\x{E19}"
 684 text run at (0,14721) width 20: "\x{E19}\x{E31}\x{E49}\x{E19}"
 685 text run at (0,14743) width 10: "\x{E01}\x{E47}"
 686 text run at (0,14765) width 25: "\x{E40}\x{E2B}\x{E47}\x{E19}"
 687 text run at (0,14787) width 29: "\x{E04}\x{E25}\x{E37}\x{E48}\x{E19}"
 688 text run at (0,14809) width 31: "\x{E2B}\x{E0D}\x{E49}\x{E32}"
 689 text run at (0,14831) width 18: "\x{E21}\x{E32}"
 690 text run at (0,14853) width 26: "\x{E17}\x{E32}\x{E07}"
 691 text run at (0,14875) width 28: "\x{E14}\x{E49}\x{E32}\x{E19}"
 692 text run at (0,14897) width 20: "\x{E19}\x{E31}\x{E49}\x{E19}"
 693 text run at (0,14919) width 28: "\x{E14}\x{E49}\x{E27}\x{E22}"
 694 text run at (0,14941) width 17: "\x{E25}\x{E38}\x{E07}"
 695 text run at (0,14963) width 14: "\x{E40}\x{E2E}"
 696 text run at (0,14985) width 18: "\x{E19}\x{E23}\x{E35}"
 697 text run at (0,15007) width 20: "\x{E1C}\x{E38}\x{E14}"
 698 text run at (0,15029) width 19: "\x{E25}\x{E38}\x{E01}"
 699 text run at (0,15051) width 19: "\x{E02}\x{E36}\x{E49}\x{E19}"
 700 text run at (0,15073) width 37: "\x{E17}\x{E31}\x{E19}\x{E43}\x{E14}"
 701 text run at (0,15095) width 26: "\"\x{E25}\x{E21}"
 702 text run at (0,15117) width 52: "\x{E44}\x{E0B}\x{E42}\x{E04}\x{E25}\x{E19}"
 703 text run at (0,15139) width 18: "\x{E21}\x{E32}"
 704 text run at (0,15161) width 31: "\x{E40}\x{E2D}\x{E47}\x{E21}\""
 705 text run at (0,15183) width 17: "\x{E25}\x{E38}\x{E07}"
 706 text run at (0,15205) width 25: "\x{E23}\x{E49}\x{E2D}\x{E07}"
 707 text run at (0,15227) width 29: "\x{E1A}\x{E2D}\x{E01}"
 708 text run at (0,15249) width 45: "\x{E20}\x{E23}\x{E23}\x{E22}\x{E32}"
 709 text run at (0,15271) width 24: "\"\x{E02}\x{E49}\x{E32}"
 710 text run at (0,15293) width 15: "\x{E08}\x{E30}"
 711 text run at (0,15315) width 17: "\x{E44}\x{E1B}"
 712 text run at (0,15337) width 10: "\x{E14}\x{E39}"
 713 text run at (0,15359) width 28: "\x{E2A}\x{E31}\x{E15}\x{E27}\x{E4C}"
 714 text run at (0,15381) width 32: "\x{E40}\x{E25}\x{E35}\x{E49}\x{E22}\x{E07}"
 715 text run at (0,15403) width 46: "\x{E2B}\x{E19}\x{E48}\x{E2D}\x{E22}\""
 716 text run at (0,15425) width 26: "\x{E41}\x{E25}\x{E49}\x{E27}"
 717 text run at (0,15447) width 17: "\x{E25}\x{E38}\x{E07}"
 718 text run at (0,15469) width 10: "\x{E01}\x{E47}"
 719 text run at (0,15491) width 16: "\x{E27}\x{E34}\x{E48}\x{E07}"
 720 text run at (0,15513) width 17: "\x{E44}\x{E1B}"
 721 text run at (0,15535) width 18: "\x{E22}\x{E31}\x{E07}"
 722 text run at (0,15557) width 24: "\x{E40}\x{E1E}\x{E34}\x{E07}"
 723 text run at (0,15579) width 10: "\x{E17}\x{E35}\x{E48}"
 724 text run at (0,15601) width 16: "\x{E27}\x{E31}\x{E27}"
 725 text run at (0,15623) width 25: "\x{E41}\x{E25}\x{E30}"
 726 text run at (0,15645) width 18: "\x{E21}\x{E49}\x{E32}"
 727 text run at (0,15667) width 37: "\x{E2D}\x{E32}\x{E28}\x{E31}\x{E22}"
 728 text run at (0,15689) width 19: "\x{E2D}\x{E22}\x{E39}\x{E48}"
 729 text run at (0,15711) width 18: "\x{E1B}\x{E49}\x{E32}"
 730 text run at (0,15733) width 24: "\x{E40}\x{E2D}\x{E47}\x{E21}"
 731 text run at (0,15755) width 30: "\x{E2B}\x{E22}\x{E38}\x{E14}"
 732 text run at (0,15777) width 44: "\x{E17}\x{E33}\x{E07}\x{E32}\x{E19}"
 733 text run at (0,15799) width 25: "\x{E41}\x{E25}\x{E30}"
 734 text run at (0,15821) width 18: "\x{E21}\x{E32}"
 735 text run at (0,15843) width 10: "\x{E17}\x{E35}\x{E48}"
 736 text run at (0,15865) width 35: "\x{E1B}\x{E23}\x{E30}\x{E15}\x{E39}"
 737 text run at (0,15887) width 34: "\x{E40}\x{E1E}\x{E35}\x{E22}\x{E07}"
 738 text run at (0,15909) width 45: "\x{E0A}\x{E32}\x{E22}\x{E15}\x{E32}"
 739 text run at (0,15931) width 27: "\x{E21}\x{E2D}\x{E07}"
 740 text run at (0,15953) width 18: "\x{E1B}\x{E49}\x{E32}"
 741 text run at (0,15975) width 10: "\x{E01}\x{E47}"
 742 text run at (0,15997) width 29: "\x{E1A}\x{E2D}\x{E01}"
 743 text run at (0,16019) width 17: "\x{E44}\x{E14}\x{E49}"
 744 text run at (0,16041) width 16: "\x{E27}\x{E48}\x{E32}"
 745 text run at (0,16063) width 55: "\x{E2D}\x{E31}\x{E19}\x{E15}\x{E23}\x{E32}\x{E22}"
 746 text run at (0,16085) width 18: "\x{E21}\x{E32}"
 747 text run at (0,16107) width 18: "\x{E16}\x{E36}\x{E07}"
 748 text run at (0,16129) width 26: "\x{E41}\x{E25}\x{E49}\x{E27}"
 749 text run at (0,16151) width 28: "\"\x{E40}\x{E23}\x{E47}\x{E27}"
 750 text run at (0,16173) width 17: "\x{E42}\x{E14}"
 751 text run at (0,16195) width 36: "\x{E42}\x{E23}\x{E18}\x{E35}!\""
 752 text run at (0,16217) width 18: "\x{E1B}\x{E49}\x{E32}"
 753 text run at (0,16239) width 44: "\x{E15}\x{E30}\x{E42}\x{E01}\x{E19}"
 754 text run at (0,16261) width 23: "\"\x{E27}\x{E34}\x{E48}\x{E07}"
 755 text run at (0,16283) width 17: "\x{E44}\x{E1B}"
 756 text run at (0,16305) width 27: "\x{E2B}\x{E49}\x{E2D}\x{E07}"
 757 text run at (0,16327) width 44: "\x{E43}\x{E15}\x{E49}\x{E16}\x{E38}\x{E19}\""
 758 text run at (0,16349) width 17: "\x{E42}\x{E15}"
 759 text run at (0,16371) width 17: "\x{E42}\x{E15}\x{E49}"
 760 text run at (0,16393) width 29: "\x{E1C}\x{E25}\x{E38}\x{E19}"
 761 text run at (0,16415) width 52: "\x{E01}\x{E23}\x{E30}\x{E42}\x{E14}\x{E14}"
 762 text run at (0,16437) width 17: "\x{E25}\x{E07}"
 763 text run at (0,16459) width 26: "\x{E08}\x{E32}\x{E01}"
 764 text run at (0,16481) width 28: "\x{E2D}\x{E49}\x{E2D}\x{E21}"
 765 text run at (0,16503) width 28: "\x{E41}\x{E02}\x{E19}"
 766 text run at (0,16525) width 17: "\x{E42}\x{E14}"
 767 text run at (0,16547) width 24: "\x{E42}\x{E23}\x{E18}\x{E35}"
 768 text run at (0,16569) width 26: "\x{E41}\x{E25}\x{E49}\x{E27}"
 769 text run at (0,16591) width 39: "\x{E40}\x{E02}\x{E49}\x{E32}\x{E44}\x{E1B}"
 770 text run at (0,16613) width 28: "\x{E0B}\x{E48}\x{E2D}\x{E19}"
 771 text run at (0,16635) width 19: "\x{E2D}\x{E22}\x{E39}\x{E48}"
 772 text run at (0,16657) width 17: "\x{E43}\x{E15}\x{E49}"
 773 text run at (0,16679) width 33: "\x{E40}\x{E15}\x{E35}\x{E22}\x{E07}"
 774 text run at (0,16701) width 25: "\x{E40}\x{E14}\x{E47}\x{E01}"
 775 text run at (0,16723) width 31: "\x{E2B}\x{E0D}\x{E34}\x{E07}"
 776 text run at (0,16745) width 29: "\x{E19}\x{E49}\x{E2D}\x{E22}"
 777 text run at (0,16767) width 39: "\x{E40}\x{E02}\x{E49}\x{E32}\x{E44}\x{E1B}"
 778 text run at (0,16789) width 18: "\x{E14}\x{E36}\x{E07}"
 779 text run at (0,16811) width 20: "\x{E21}\x{E31}\x{E19}"
 780 text run at (0,16833) width 28: "\x{E2D}\x{E2D}\x{E01}"
 781 text run at (0,16855) width 18: "\x{E21}\x{E32}"
 782 text run at (0,16877) width 18: "\x{E1B}\x{E49}\x{E32}"
 783 text run at (0,16899) width 14: "\x{E40}\x{E2D}\x{E47}"
 784 text run at (0,16921) width 20: "\x{E21}\x{E01}"
 785 text run at (0,16943) width 15: "\x{E23}\x{E30}"
 786 text run at (0,16965) width 27: "\x{E0A}\x{E32}\x{E01}"
 787 text run at (0,16987) width 18: "\x{E1D}\x{E32}"
 788 text run at (0,17009) width 10: "\x{E17}\x{E35}\x{E48}"
 789 text run at (0,17031) width 21: "\x{E1E}\x{E37}\x{E49}\x{E19}"
 790 text run at (0,17053) width 28: "\x{E2D}\x{E2D}\x{E01}"
 791 text run at (0,17075) width 35: "\x{E2D}\x{E22}\x{E48}\x{E32}\x{E07}"
 792 text run at (0,17097) width 19: "\x{E2D}\x{E01}"
 793 text run at (0,17119) width 20: "\x{E2A}\x{E31}\x{E48}\x{E19}"
 794 text run at (0,17141) width 30: "\x{E02}\x{E27}\x{E31}\x{E0D}"
 795 text run at (0,17163) width 28: "\x{E2B}\x{E32}\x{E22}"
 796 text run at (0,17185) width 20: "\x{E1B}\x{E35}\x{E19}"
 797 text run at (0,17207) width 37: "\x{E1A}\x{E31}\x{E19}\x{E44}\x{E14}"
 798 text run at (0,17229) width 17: "\x{E44}\x{E21}\x{E49}"
 799 text run at (0,17251) width 17: "\x{E25}\x{E07}"
 800 text run at (0,17273) width 17: "\x{E44}\x{E1B}"
 801 text run at (0,17295) width 17: "\x{E43}\x{E19}"
 802 text run at (0,17317) width 34: "\x{E42}\x{E1E}\x{E23}\x{E07}"
 803 text run at (0,17339) width 24: "\x{E40}\x{E25}\x{E47}\x{E01}"
 804 text run at (0,17361) width 19: "\x{E2D}\x{E31}\x{E19}"
 805 text run at (0,17383) width 20: "\x{E21}\x{E37}\x{E14}"
 806 text run at (0,17405) width 20: "\x{E17}\x{E36}\x{E1A}"
 807 text run at (0,17427) width 17: "\x{E42}\x{E14}"
 808 text run at (0,17449) width 24: "\x{E42}\x{E23}\x{E18}\x{E35}"
 809 text run at (0,17471) width 18: "\x{E08}\x{E31}\x{E1A}"
 810 text run at (0,17493) width 17: "\x{E42}\x{E15}"
 811 text run at (0,17515) width 17: "\x{E42}\x{E15}\x{E49}"
 812 text run at (0,17537) width 17: "\x{E44}\x{E14}\x{E49}"
 813 text run at (0,17559) width 17: "\x{E43}\x{E19}"
 814 text run at (0,17581) width 30: "\x{E17}\x{E35}\x{E48}\x{E2A}\x{E38}\x{E14}"
 815 text run at (0,17603) width 25: "\x{E41}\x{E25}\x{E30}"
 816 text run at (0,17625) width 16: "\x{E27}\x{E34}\x{E48}\x{E07}"
 817 text run at (0,17647) width 28: "\x{E15}\x{E32}\x{E21}"
 818 text run at (0,17669) width 18: "\x{E1B}\x{E49}\x{E32}"
 819 text run at (0,17691) width 23: "\x{E40}\x{E18}\x{E2D}"
 820 text run at (0,17713) width 17: "\x{E44}\x{E1B}"
 821 text run at (0,17735) width 24: "\x{E40}\x{E21}\x{E37}\x{E48}\x{E2D}"
 822 text run at (0,17757) width 23: "\x{E40}\x{E18}\x{E2D}"
 823 text run at (0,17779) width 18: "\x{E21}\x{E32}"
 824 text run at (0,17801) width 17: "\x{E44}\x{E14}\x{E49}"
 825 text run at (0,17823) width 26: "\x{E04}\x{E23}\x{E36}\x{E48}\x{E07}"
 826 text run at (0,17845) width 27: "\x{E2B}\x{E49}\x{E2D}\x{E07}"
 827 text run at (0,17867) width 10: "\x{E01}\x{E47}"
 828 text run at (0,17889) width 10: "\x{E21}\x{E35}"
 829 text run at (0,17911) width 33: "\x{E40}\x{E2A}\x{E35}\x{E22}\x{E07}"
 830 text run at (0,17933) width 28: "\x{E2B}\x{E27}\x{E35}\x{E14}"
 831 text run at (0,17955) width 27: "\x{E2B}\x{E27}\x{E37}\x{E2D}"
 832 text run at (0,17977) width 28: "\x{E2A}\x{E48}\x{E27}\x{E19}"
 833 text run at (0,17999) width 28: "\x{E1A}\x{E49}\x{E32}\x{E19}"
 834 text run at (0,18021) width 10: "\x{E01}\x{E47}"
 835 text run at (0,18043) width 20: "\x{E2A}\x{E31}\x{E48}\x{E19}"
 836 text run at (0,18065) width 35: "\x{E2D}\x{E22}\x{E48}\x{E32}\x{E07}"
 837 text run at (0,18087) width 25: "\x{E41}\x{E23}\x{E07}"
 838 text run at (0,18109) width 18: "\x{E08}\x{E19}"
 839 text run at (0,18131) width 23: "\x{E40}\x{E18}\x{E2D}"
 840 text run at (0,18153) width 20: "\x{E2B}\x{E01}"
 841 text run at (0,18175) width 35: "\x{E04}\x{E30}\x{E21}\x{E33}"
 842 text run at (0,18197) width 18: "\x{E19}\x{E31}\x{E48}\x{E07}"
 843 text run at (0,18219) width 39: "\x{E08}\x{E49}\x{E33}\x{E40}\x{E1A}\x{E49}\x{E32}"
 844 text run at (0,18241) width 19: "\x{E2D}\x{E22}\x{E39}\x{E48}"
 845 text run at (0,18263) width 20: "\x{E01}\x{E31}\x{E1A}"
 846 text run at (0,18285) width 21: "\x{E1E}\x{E37}\x{E49}\x{E19}"
 847 text run at (0,18307) width 26: "\x{E41}\x{E25}\x{E49}\x{E27}"
 848 text run at (0,18329) width 18: "\x{E2A}\x{E34}\x{E48}\x{E07}"
 849 text run at (0,18351) width 62: "\x{E1B}\x{E23}\x{E30}\x{E2B}\x{E25}\x{E32}\x{E14}"
 850 text run at (0,18373) width 10: "\x{E01}\x{E47}"
 851 text run at (0,18395) width 25: "\x{E40}\x{E01}\x{E34}\x{E14}"
 852 text run at (0,18417) width 19: "\x{E02}\x{E36}\x{E49}\x{E19}"
 853 text run at (0,18439) width 28: "\x{E1A}\x{E49}\x{E32}\x{E19}"
 854 text run at (0,18461) width 30: "\x{E2B}\x{E21}\x{E38}\x{E19}"
 855 text run at (0,18483) width 17: "\x{E44}\x{E1B}"
 856 text run at (0,18505) width 30: "\x{E2B}\x{E21}\x{E38}\x{E19}"
 857 text run at (0,18527) width 28: "\x{E21}\x{E32}\x{E2A}"
 858 text run at (0,18549) width 17: "\x{E2D}\x{E07}"
 859 text run at (0,18571) width 28: "\x{E2A}\x{E32}\x{E21}"
 860 text run at (0,18593) width 27: "\x{E23}\x{E2D}\x{E1A}"
 861 text run at (0,18615) width 26: "\x{E41}\x{E25}\x{E49}\x{E27}"
 862 text run at (0,18637) width 10: "\x{E01}\x{E47}"
 863 text run at (0,18659) width 28: "\x{E25}\x{E2D}\x{E22}"
 864 text run at (0,18681) width 19: "\x{E02}\x{E36}\x{E49}\x{E19}"
 865 text run at (0,18703) width 10: "\x{E2A}\x{E39}\x{E48}"
 866 text run at (0,18725) width 45: "\x{E2D}\x{E32}\x{E01}\x{E32}\x{E28}"
 867 text run at (0,18747) width 35: "\x{E2D}\x{E22}\x{E48}\x{E32}\x{E07}"
 868 text run at (0,18769) width 27: "\x{E0A}\x{E49}\x{E32}\x{E46}"
 869 text run at (0,18791) width 17: "\x{E42}\x{E14}"
 870 text run at (0,18813) width 15: "\x{E42}\x{E23}"
 871 text run at (0,18835) width 17: "\x{E18}\x{E35}\x{E23}\x{E39}\x{E49}"
 872 text run at (0,18857) width 20: "\x{E2A}\x{E36}\x{E01}"
 873 text run at (0,18879) width 44: "\x{E23}\x{E32}\x{E27}\x{E01}\x{E31}\x{E1A}"
 874 text run at (0,18901) width 16: "\x{E27}\x{E48}\x{E32}"
 875 text run at (0,18923) width 23: "\x{E40}\x{E18}\x{E2D}"
 876 text run at (0,18945) width 17: "\x{E44}\x{E14}\x{E49}"
 877 text run at (0,18967) width 19: "\x{E02}\x{E36}\x{E49}\x{E19}"
 878 text run at (0,18989) width 17: "\x{E44}\x{E1B}"
 879 text run at (0,19011) width 20: "\x{E01}\x{E31}\x{E1A}"
 880 text run at (0,19033) width 19: "\x{E25}\x{E39}\x{E01}"
 881 text run at (0,19055) width 47: "\x{E1A}\x{E2D}\x{E25}\x{E25}\x{E39}\x{E19}"
 882 text run at (0,19077) width 29: "\x{E1E}\x{E32}\x{E22}\x{E38}"
 883 text run at (0,19099) width 34: "\x{E40}\x{E2B}\x{E19}\x{E37}\x{E2D}"
 884 text run at (0,19121) width 20: "\x{E01}\x{E31}\x{E1A}"
 885 text run at (0,19143) width 29: "\x{E1E}\x{E32}\x{E22}\x{E38}"
 886 text run at (0,19165) width 17: "\x{E43}\x{E15}\x{E49}"
 887 text run at (0,19187) width 18: "\x{E21}\x{E32}"
 888 text run at (0,19209) width 21: "\x{E1E}\x{E1A}"
 889 text run at (0,19231) width 20: "\x{E01}\x{E31}\x{E19}"
 890 text run at (0,19253) width 26: "\x{E15}\x{E23}\x{E07}"
 891 text run at (0,19275) width 10: "\x{E17}\x{E35}\x{E48}"
 892 text run at (0,19297) width 28: "\x{E1A}\x{E49}\x{E32}\x{E19}"
 893 text run at (0,19319) width 30: "\x{E1E}\x{E2D}\x{E14}\x{E35}"
 894 text run at (0,19341) width 25: "\x{E41}\x{E25}\x{E30}"
 895 text run at (0,19363) width 35: "\x{E17}\x{E33}\x{E43}\x{E2B}\x{E49}"
 896 text run at (0,19385) width 26: "\x{E15}\x{E23}\x{E07}"
 897 text run at (0,19407) width 20: "\x{E19}\x{E31}\x{E49}\x{E19}"
 898 text run at (0,19429) width 25: "\x{E40}\x{E1B}\x{E47}\x{E19}"
 899 text run at (0,19451) width 83: "\x{E08}\x{E38}\x{E14}\x{E28}\x{E39}\x{E19}\x{E22}\x{E4C}\x{E01}\x{E25}\x{E32}\x{E07}"
 900 text run at (0,19473) width 26: "\x{E02}\x{E2D}\x{E07}"
 901 text run at (0,19495) width 29: "\x{E1E}\x{E32}\x{E22}\x{E38}"
 902 text run at (0,19517) width 52: "\x{E44}\x{E0B}\x{E42}\x{E04}\x{E25}\x{E19}"
 903 text run at (0,19539) width 28: "\x{E15}\x{E32}\x{E21}"
 904 text run at (0,19561) width 30: "\x{E1B}\x{E01}\x{E15}\x{E34}"
 905 text run at (0,19583) width 26: "\x{E15}\x{E23}\x{E07}"
 906 text run at (0,19605) width 35: "\x{E01}\x{E25}\x{E32}\x{E07}"
 907 text run at (0,19627) width 29: "\x{E1E}\x{E32}\x{E22}\x{E38}"
 908 text run at (0,19649) width 52: "\x{E44}\x{E0B}\x{E42}\x{E04}\x{E25}\x{E19}"
 909 text run at (0,19671) width 45: "\x{E2D}\x{E32}\x{E01}\x{E32}\x{E28}"
 910 text run at (0,19693) width 15: "\x{E08}\x{E30}"
 911 text run at (0,19715) width 18: "\x{E19}\x{E34}\x{E48}\x{E07}"
 912 text run at (0,19737) width 19: "\x{E41}\x{E15}\x{E48}"
 913 text run at (0,19759) width 36: "\x{E04}\x{E27}\x{E32}\x{E21}"
 914 text run at (0,19781) width 40: "\x{E01}\x{E14}\x{E14}\x{E31}\x{E19}"
 915 text run at (0,19803) width 35: "\x{E2D}\x{E22}\x{E48}\x{E32}\x{E07}"
 916 text run at (0,19825) width 30: "\x{E2B}\x{E19}\x{E31}\x{E01}"
 917 text run at (0,19847) width 26: "\x{E02}\x{E2D}\x{E07}"
 918 text run at (0,19869) width 19: "\x{E25}\x{E21}"
 919 text run at (0,19891) width 20: "\x{E17}\x{E38}\x{E01}"
 920 text run at (0,19913) width 28: "\x{E14}\x{E49}\x{E32}\x{E19}"
 921 text run at (0,19935) width 27: "\x{E23}\x{E2D}\x{E1A}"
 922 text run at (0,19957) width 28: "\x{E1A}\x{E49}\x{E32}\x{E19}"
 923 text run at (0,19979) width 35: "\x{E17}\x{E33}\x{E43}\x{E2B}\x{E49}"
 924 text run at (0,20001) width 28: "\x{E1A}\x{E49}\x{E32}\x{E19}"
 925 text run at (0,20023) width 28: "\x{E25}\x{E2D}\x{E22}"
 926 text run at (0,20045) width 18: "\x{E2A}\x{E39}\x{E07}"
 927 text run at (0,20067) width 29: "\x{E02}\x{E36}\x{E49}\x{E19}\x{E46}"
 928 text run at (0,20089) width 18: "\x{E08}\x{E19}"
 929 text run at (0,20111) width 43: "\x{E01}\x{E23}\x{E30}\x{E17}\x{E31}\x{E48}\x{E07}"
 930 text run at (0,20133) width 19: "\x{E02}\x{E36}\x{E49}\x{E19}"
 931 text run at (0,20155) width 17: "\x{E44}\x{E1B}"
 932 text run at (0,20177) width 19: "\x{E2D}\x{E22}\x{E39}\x{E48}"
 933 text run at (0,20199) width 20: "\x{E2A}\x{E38}\x{E14}"
 934 text run at (0,20221) width 29: "\x{E22}\x{E2D}\x{E14}"
 935 text run at (0,20243) width 26: "\x{E02}\x{E2D}\x{E07}"
 936 text run at (0,20265) width 29: "\x{E1E}\x{E32}\x{E22}\x{E38}"
 937 text run at (0,20287) width 52: "\x{E44}\x{E0B}\x{E42}\x{E04}\x{E25}\x{E19}"
 938 text run at (0,20309) width 25: "\x{E41}\x{E25}\x{E30}"
 939 text run at (0,20331) width 26: "\x{E08}\x{E32}\x{E01}"
 940 text run at (0,20353) width 26: "\x{E15}\x{E23}\x{E07}"
 941 text run at (0,20375) width 20: "\x{E19}\x{E31}\x{E49}\x{E19}"
 942 text run at (0,20397) width 10: "\x{E01}\x{E47}"
 943 text run at (0,20419) width 20: "\x{E16}\x{E39}\x{E01}"
 944 text run at (0,20441) width 29: "\x{E2B}\x{E2D}\x{E1A}"
 945 text run at (0,20463) width 17: "\x{E44}\x{E1B}"
 946 text run at (0,20485) width 37: "\x{E2B}\x{E25}\x{E32}\x{E22}"
 947 text run at (0,20507) width 26: "\x{E44}\x{E21}\x{E25}\x{E4C}"
 948 text run at (0,20529) width 54: "\x{E07}\x{E48}\x{E32}\x{E22}\x{E14}\x{E32}\x{E22}"
 949 text run at (0,20551) width 44: "\x{E23}\x{E32}\x{E27}\x{E01}\x{E31}\x{E1A}"
 950 text run at (0,20573) width 29: "\x{E2B}\x{E2D}\x{E1A}"
 951 text run at (0,20595) width 19: "\x{E02}\x{E19}"
 952 text run at (0,20617) width 20: "\x{E19}\x{E01}"
 953 text run at (0,20639) width 20: "\x{E21}\x{E37}\x{E14}"
 954 text run at (0,20661) width 28: "\x{E21}\x{E32}\x{E01}"
 955 text run at (0,20683) width 26: "\x{E41}\x{E25}\x{E49}\x{E27}"
 956 text run at (0,20705) width 19: "\x{E25}\x{E21}"
 957 text run at (0,20727) width 18: "\x{E22}\x{E31}\x{E07}"
 958 text run at (0,20749) width 18: "\x{E2A}\x{E48}\x{E07}"
 959 text run at (0,20771) width 33: "\x{E40}\x{E2A}\x{E35}\x{E22}\x{E07}"
 960 text run at (0,20793) width 28: "\x{E2B}\x{E27}\x{E35}\x{E14}"
 961 text run at (0,20815) width 27: "\x{E2B}\x{E27}\x{E37}\x{E2D}"
 962 text run at (0,20837) width 18: "\x{E19}\x{E48}\x{E32}"
 963 text run at (0,20859) width 27: "\x{E01}\x{E25}\x{E31}\x{E27}"
 964 text run at (0,20881) width 19: "\x{E2D}\x{E22}\x{E39}\x{E48}"
 965 text run at (0,20903) width 27: "\x{E23}\x{E2D}\x{E1A}"
 966 text run at (0,20925) width 18: "\x{E15}\x{E31}\x{E27}"
 967 text run at (0,20947) width 23: "\x{E40}\x{E18}\x{E2D}"
 968 text run at (0,20969) width 19: "\x{E41}\x{E15}\x{E48}"
 969 text run at (0,20991) width 17: "\x{E42}\x{E14}"
 970 text run at (0,21013) width 24: "\x{E42}\x{E23}\x{E18}\x{E35}"
 971 text run at (0,21035) width 25: "\x{E40}\x{E2B}\x{E47}\x{E19}"
 972 text run at (0,21057) width 16: "\x{E27}\x{E48}\x{E32}"
 973 text run at (0,21079) width 23: "\x{E40}\x{E18}\x{E2D}"
 974 text run at (0,21101) width 54: "\x{E2A}\x{E32}\x{E21}\x{E32}\x{E23}\x{E16}"
 975 text run at (0,21123) width 18: "\x{E19}\x{E31}\x{E48}\x{E07}"
 976 text run at (0,21145) width 17: "\x{E44}\x{E1B}"
 977 text run at (0,21167) width 17: "\x{E44}\x{E14}\x{E49}"
 978 text run at (0,21189) width 35: "\x{E2D}\x{E22}\x{E48}\x{E32}\x{E07}"
 979 text run at (0,21211) width 54: "\x{E07}\x{E48}\x{E32}\x{E22}\x{E14}\x{E32}\x{E22}"
 980 text run at (0,21233) width 20: "\x{E19}\x{E31}\x{E01}"
 981 text run at (0,21255) width 26: "\x{E04}\x{E23}\x{E31}\x{E49}\x{E07}"
 982 text run at (0,21277) width 28: "\x{E2B}\x{E19}\x{E36}\x{E48}\x{E07}"
 983 text run at (0,21299) width 27: "\x{E2B}\x{E25}\x{E31}\x{E07}"
 984 text run at (0,21321) width 26: "\x{E08}\x{E32}\x{E01}"
 985 text run at (0,21343) width 10: "\x{E17}\x{E35}\x{E48}"
 986 text run at (0,21365) width 28: "\x{E1A}\x{E49}\x{E32}\x{E19}"
 987 text run at (0,21387) width 37: "\x{E2A}\x{E30}\x{E14}\x{E38}\x{E14}"
 988 text run at (0,21409) width 35: "\x{E2D}\x{E22}\x{E48}\x{E32}\x{E07}"
 989 text run at (0,21431) width 25: "\x{E41}\x{E23}\x{E07}"
 990 text run at (0,21453) width 25: "\x{E41}\x{E25}\x{E30}"
 991 text run at (0,21475) width 30: "\x{E2B}\x{E21}\x{E38}\x{E19}"
 992 text run at (0,21497) width 17: "\x{E44}\x{E1B}"
 993 text run at (0,21519) width 37: "\x{E23}\x{E2D}\x{E1A}\x{E46}"
 994 text run at (0,21541) width 27: "\x{E2A}\x{E2D}\x{E07}"
 995 text run at (0,21563) width 28: "\x{E2A}\x{E32}\x{E21}"
 996 text run at (0,21585) width 26: "\x{E04}\x{E23}\x{E31}\x{E49}\x{E07}"
 997 text run at (0,21607) width 17: "\x{E43}\x{E19}"
 998 text run at (0,21629) width 29: "\x{E15}\x{E2D}\x{E19}"
 999 text run at (0,21651) width 27: "\x{E41}\x{E23}\x{E01}"
 1000 text run at (0,21673) width 23: "\x{E40}\x{E18}\x{E2D}"
 1001 text run at (0,21695) width 10: "\x{E01}\x{E47}"
 1002 text run at (0,21717) width 28: "\x{E23}\x{E39}\x{E49}\x{E2A}\x{E36}\x{E01}"
 1003 text run at (0,21739) width 16: "\x{E27}\x{E48}\x{E32}"
 1004 text run at (0,21761) width 18: "\x{E15}\x{E31}\x{E27}"
 1005 text run at (0,21783) width 22: "\x{E40}\x{E2D}\x{E07}"
 1006 text run at (0,21805) width 20: "\x{E16}\x{E39}\x{E01}"
 1007 text run at (0,21827) width 35: "\x{E41}\x{E01}\x{E27}\x{E48}\x{E07}"
 1008 text run at (0,21849) width 35: "\x{E2D}\x{E22}\x{E48}\x{E32}\x{E07}"
 1009 text run at (0,21871) width 27: "\x{E41}\x{E1C}\x{E48}\x{E27}"
 1010 text run at (0,21893) width 23: "\x{E40}\x{E1A}\x{E32}"
 1011 text run at (0,21915) width 24: "\x{E23}\x{E32}\x{E27}"
 1012 text run at (0,21937) width 36: "\x{E17}\x{E32}\x{E23}\x{E01}"
 1013 text run at (0,21959) width 17: "\x{E43}\x{E19}"
 1014 text run at (0,21981) width 24: "\x{E40}\x{E1B}\x{E25}"
 1015 text run at (0,22003) width 17: "\x{E42}\x{E15}"
 1016 text run at (0,22025) width 17: "\x{E42}\x{E15}\x{E49}"
 1017 text run at (0,22047) width 17: "\x{E44}\x{E21}\x{E48}"
 1018 text run at (0,22069) width 43: "\x{E0A}\x{E2D}\x{E1A}\x{E43}\x{E08}"
 1019 text run at (0,22091) width 24: "\x{E40}\x{E25}\x{E22}"
 1020 text run at (0,22113) width 20: "\x{E21}\x{E31}\x{E19}"
 1021 text run at (0,22135) width 16: "\x{E27}\x{E34}\x{E48}\x{E07}"
 1022 text run at (0,22157) width 17: "\x{E44}\x{E1B}"
 1023 text run at (0,22179) width 16: "\x{E27}\x{E34}\x{E48}\x{E07}"
 1024 text run at (0,22201) width 26: "\x{E21}\x{E32}\x{E23}"
 1025 text run at (0,22223) width 19: "\x{E2D}\x{E1A}"
 1026 text run at (0,22245) width 27: "\x{E2B}\x{E49}\x{E2D}\x{E07}"
 1027 text run at (0,22267) width 26: "\x{E17}\x{E32}\x{E07}"
 1028 text run at (0,22289) width 27: "\x{E42}\x{E19}\x{E49}\x{E19}"
 1029 text run at (0,22311) width 10: "\x{E17}\x{E35}"
 1030 text run at (0,22333) width 26: "\x{E17}\x{E32}\x{E07}"
 1031 text run at (0,22355) width 10: "\x{E19}\x{E35}\x{E49}"
 1032 text run at (0,22377) width 10: "\x{E17}\x{E35}"
 1033 text run at (0,22399) width 18: "\x{E2A}\x{E48}\x{E07}"
 1034 text run at (0,22421) width 33: "\x{E40}\x{E2A}\x{E35}\x{E22}\x{E07}"
 1035 text run at (0,22443) width 23: "\x{E40}\x{E2B}\x{E48}\x{E32}"
 1036 text run at (0,22465) width 18: "\x{E14}\x{E31}\x{E07}"
 1037 text run at (0,22487) width 27: "\x{E01}\x{E49}\x{E2D}\x{E07}"
 1038 text run at (0,22509) width 19: "\x{E41}\x{E15}\x{E48}"
 1039 text run at (0,22531) width 17: "\x{E42}\x{E14}"
 1040 text run at (0,22553) width 24: "\x{E42}\x{E23}\x{E18}\x{E35}"
 1041 text run at (0,22575) width 18: "\x{E19}\x{E31}\x{E48}\x{E07}"
 1042 text run at (0,22597) width 18: "\x{E19}\x{E34}\x{E48}\x{E07}"
 1043 text run at (0,22619) width 19: "\x{E2D}\x{E22}\x{E39}\x{E48}"
 1044 text run at (0,22641) width 20: "\x{E1A}\x{E19}"
 1045 text run at (0,22663) width 21: "\x{E1E}\x{E37}\x{E49}\x{E19}"
 1046 text run at (0,22685) width 23: "\x{E40}\x{E1D}\x{E49}\x{E32}"
 1047 text run at (0,22707) width 29: "\x{E04}\x{E2D}\x{E22}"
 1048 text run at (0,22729) width 10: "\x{E14}\x{E39}"
 1049 text run at (0,22751) width 16: "\x{E27}\x{E48}\x{E32}"
 1050 text run at (0,22773) width 15: "\x{E08}\x{E30}"
 1051 text run at (0,22795) width 25: "\x{E40}\x{E01}\x{E34}\x{E14}"
 1052 text run at (0,22817) width 31: "\x{E2D}\x{E30}\x{E44}\x{E23}"
 1053 text run at (0,22839) width 19: "\x{E02}\x{E36}\x{E49}\x{E19}"
 1054 text run at (0,22861) width 26: "\x{E04}\x{E23}\x{E31}\x{E49}\x{E07}"
 1055 text run at (0,22883) width 28: "\x{E2B}\x{E19}\x{E36}\x{E48}\x{E07}"
 1056 text run at (0,22905) width 17: "\x{E42}\x{E15}"
 1057 text run at (0,22927) width 17: "\x{E42}\x{E15}\x{E49}"
 1058 text run at (0,22949) width 39: "\x{E40}\x{E02}\x{E49}\x{E32}\x{E44}\x{E1B}"
 1059 text run at (0,22971) width 26: "\x{E43}\x{E01}\x{E25}\x{E49}"
 1060 text run at (0,22993) width 18: "\x{E1D}\x{E32}"
 1061 text run at (0,23015) width 10: "\x{E17}\x{E35}\x{E48}"
 1062 text run at (0,23037) width 21: "\x{E1E}\x{E37}\x{E49}\x{E19}"
 1063 text run at (0,23059) width 28: "\x{E21}\x{E32}\x{E01}"
 1064 text run at (0,23081) width 17: "\x{E44}\x{E1B}"
 1065 text run at (0,23103) width 24: "\x{E40}\x{E25}\x{E22}"
 1066 text run at (0,23125) width 30: "\x{E1E}\x{E25}\x{E31}\x{E14}"
 1067 text run at (0,23147) width 37: "\x{E15}\x{E01}\x{E25}\x{E07}"
 1068 text run at (0,23169) width 17: "\x{E44}\x{E1B}"
 1069 text run at (0,23191) width 10: "\x{E17}\x{E35}"
 1070 text run at (0,23213) width 27: "\x{E41}\x{E23}\x{E01}"
 1071 text run at (0,23235) width 25: "\x{E40}\x{E14}\x{E47}\x{E01}"
 1072 text run at (0,23257) width 31: "\x{E2B}\x{E0D}\x{E34}\x{E07}"
 1073 text run at (0,23279) width 20: "\x{E04}\x{E34}\x{E14}"
 1074 text run at (0,23301) width 16: "\x{E27}\x{E48}\x{E32}"
 1075 text run at (0,23323) width 23: "\x{E40}\x{E18}\x{E2D}"
 1076 text run at (0,23345) width 15: "\x{E08}\x{E30}"
 1077 text run at (0,23367) width 23: "\x{E2A}\x{E39}\x{E0D}"
 1078 text run at (0,23389) width 25: "\x{E40}\x{E2A}\x{E35}\x{E22}"
 1079 text run at (0,23411) width 20: "\x{E21}\x{E31}\x{E19}"
 1080 text run at (0,23433) width 17: "\x{E44}\x{E1B}"
 1081 text run at (0,23455) width 25: "\x{E40}\x{E2A}\x{E35}\x{E22}"
 1082 text run at (0,23477) width 26: "\x{E41}\x{E25}\x{E49}\x{E27}"
 1083 text run at (0,23499) width 19: "\x{E41}\x{E15}\x{E48}"
 1084 text run at (0,23521) width 17: "\x{E0A}\x{E31}\x{E48}\x{E27}"
 1085 text run at (0,23543) width 18: "\x{E04}\x{E23}\x{E39}\x{E48}"
 1086 text run at (0,23565) width 23: "\x{E40}\x{E18}\x{E2D}"
 1087 text run at (0,23587) width 10: "\x{E01}\x{E47}"
 1088 text run at (0,23609) width 25: "\x{E40}\x{E2B}\x{E47}\x{E19}"
 1089 text run at (0,23631) width 10: "\x{E2B}\x{E39}"
 1090 text run at (0,23653) width 26: "\x{E02}\x{E2D}\x{E07}"
 1091 text run at (0,23675) width 20: "\x{E21}\x{E31}\x{E19}"
 1092 text run at (0,23697) width 26: "\x{E42}\x{E1C}\x{E25}\x{E48}"
 1093 text run at (0,23719) width 19: "\x{E02}\x{E36}\x{E49}\x{E19}"
 1094 text run at (0,23741) width 18: "\x{E21}\x{E32}"
 1095 text run at (0,23763) width 26: "\x{E08}\x{E32}\x{E01}"
 1096 text run at (0,23785) width 26: "\x{E0A}\x{E48}\x{E2D}\x{E07}"
 1097 text run at (0,23807) width 20: "\x{E19}\x{E31}\x{E49}\x{E19}"
 1098 text run at (0,23829) width 28: "\x{E17}\x{E31}\x{E49}\x{E07}\x{E19}\x{E35}\x{E49}"
 1099 text run at (0,23851) width 39: "\x{E40}\x{E1E}\x{E23}\x{E32}\x{E30}"
 1100 text run at (0,23873) width 25: "\x{E41}\x{E23}\x{E07}"
 1101 text run at (0,23895) width 20: "\x{E01}\x{E14}"
 1102 text run at (0,23917) width 35: "\x{E2D}\x{E22}\x{E48}\x{E32}\x{E07}"
 1103 text run at (0,23939) width 30: "\x{E2B}\x{E19}\x{E31}\x{E01}"
 1104 text run at (0,23961) width 26: "\x{E02}\x{E2D}\x{E07}"
 1105 text run at (0,23983) width 45: "\x{E2D}\x{E32}\x{E01}\x{E32}\x{E28}"
 1106 text run at (0,24005) width 35: "\x{E17}\x{E33}\x{E43}\x{E2B}\x{E49}"
 1107 text run at (0,24027) width 17: "\x{E42}\x{E15}"
 1108 text run at (0,24049) width 17: "\x{E42}\x{E15}\x{E49}"
 1109 text run at (0,24071) width 17: "\x{E44}\x{E21}\x{E48}"
 1110 text run at (0,24093) width 37: "\x{E15}\x{E01}\x{E25}\x{E07}"
 1111 text run at (0,24115) width 17: "\x{E44}\x{E1B}"
 1112 text run at (0,24137) width 25: "\x{E02}\x{E49}\x{E32}\x{E07}"
 1113 text run at (0,24159) width 25: "\x{E25}\x{E48}\x{E32}\x{E07}"
 1114 text run at (0,24181) width 17: "\x{E42}\x{E14}"
 1115 text run at (0,24203) width 24: "\x{E42}\x{E23}\x{E18}\x{E35}"
 1116 text run at (0,24225) width 37: "\x{E04}\x{E25}\x{E32}\x{E19}"
 1117 text run at (0,24247) width 17: "\x{E44}\x{E1B}"
 1118 text run at (0,24269) width 10: "\x{E17}\x{E35}\x{E48}"
 1119 text run at (0,24291) width 26: "\x{E0A}\x{E48}\x{E2D}\x{E07}"
 1120 text run at (0,24313) width 20: "\x{E19}\x{E31}\x{E49}\x{E19}"
 1121 text run at (0,24335) width 18: "\x{E08}\x{E31}\x{E1A}"
 1122 text run at (0,24357) width 10: "\x{E2B}\x{E39}"
 1123 text run at (0,24379) width 17: "\x{E42}\x{E15}"
 1124 text run at (0,24401) width 17: "\x{E42}\x{E15}\x{E49}"
 1125 text run at (0,24423) width 15: "\x{E44}\x{E27}\x{E49}"
 1126 text run at (0,24445) width 17: "\x{E44}\x{E14}\x{E49}"
 1127 text run at (0,24467) width 25: "\x{E41}\x{E25}\x{E30}"
 1128 text run at (0,24489) width 27: "\x{E25}\x{E32}\x{E01}"
 1129 text run at (0,24511) width 20: "\x{E21}\x{E31}\x{E19}"
 1130 text run at (0,24533) width 18: "\x{E21}\x{E32}"
 1131 text run at (0,24555) width 10: "\x{E17}\x{E35}\x{E48}"
 1132 text run at (0,24577) width 27: "\x{E2B}\x{E49}\x{E2D}\x{E07}"
 1133 text run at (0,24599) width 19: "\x{E2D}\x{E35}\x{E01}"
 1134 text run at (0,24621) width 27: "\x{E2B}\x{E25}\x{E31}\x{E07}"
 1135 text run at (0,24643) width 26: "\x{E08}\x{E32}\x{E01}"
 1136 text run at (0,24665) width 20: "\x{E19}\x{E31}\x{E49}\x{E19}"
 1137 text run at (0,24687) width 10: "\x{E01}\x{E47}"
 1138 text run at (0,24709) width 20: "\x{E1B}\x{E34}\x{E14}"
 1139 text run at (0,24731) width 18: "\x{E1D}\x{E32}"
 1140 text run at (0,24753) width 21: "\x{E1E}\x{E37}\x{E49}\x{E19}"
 1141 text run at (0,24775) width 25: "\x{E40}\x{E1E}\x{E37}\x{E48}\x{E2D}"
 1142 text run at (0,24797) width 15: "\x{E08}\x{E30}"
 1143 text run at (0,24819) width 17: "\x{E44}\x{E14}\x{E49}"
 1144 text run at (0,24841) width 17: "\x{E44}\x{E21}\x{E48}"
 1145 text run at (0,24863) width 25: "\x{E40}\x{E01}\x{E34}\x{E14}"
 1146 text run at (0,24885) width 54: "\x{E2D}\x{E38}\x{E1A}\x{E31}\x{E15}\x{E34}\x{E40}\x{E2B}\x{E15}\x{E38}"
 1147 text run at (0,24907) width 19: "\x{E2D}\x{E35}\x{E01}"
 1148 text run at (0,24929) width 42: "\x{E0A}\x{E31}\x{E48}\x{E27}\x{E42}\x{E21}\x{E07}"
 1149 text run at (0,24951) width 26: "\x{E41}\x{E25}\x{E49}\x{E27}"
 1150 text run at (0,24973) width 42: "\x{E0A}\x{E31}\x{E48}\x{E27}\x{E42}\x{E21}\x{E07}"
 1151 text run at (0,24995) width 22: "\x{E40}\x{E25}\x{E48}\x{E32}"
 1152 text run at (0,25017) width 28: "\x{E1C}\x{E48}\x{E32}\x{E19}"
 1153 text run at (0,25039) width 17: "\x{E44}\x{E1B}"
 1154 text run at (0,25061) width 17: "\x{E42}\x{E14}"
 1155 text run at (0,25083) width 24: "\x{E42}\x{E23}\x{E18}\x{E35}"
 1156 text run at (0,25105) width 39: "\x{E04}\x{E48}\x{E2D}\x{E22}\x{E46}"
 1157 text run at (0,25127) width 28: "\x{E2B}\x{E32}\x{E22}"
 1158 text run at (0,25149) width 27: "\x{E01}\x{E25}\x{E31}\x{E27}"
 1159 text run at (0,25171) width 19: "\x{E41}\x{E15}\x{E48}"
 1160 text run at (0,25193) width 23: "\x{E40}\x{E18}\x{E2D}"
 1161 text run at (0,25215) width 28: "\x{E23}\x{E39}\x{E49}\x{E2A}\x{E36}\x{E01}"
 1162 text run at (0,25237) width 31: "\x{E40}\x{E2B}\x{E07}\x{E32}"
 1163 text run at (0,25259) width 33: "\x{E40}\x{E2B}\x{E25}\x{E37}\x{E2D}"
 1164 text run at (0,25281) width 25: "\x{E40}\x{E01}\x{E34}\x{E19}"
 1165 text run at (0,25303) width 25: "\x{E41}\x{E25}\x{E30}"
 1166 text run at (0,25325) width 19: "\x{E25}\x{E21}"
 1167 text run at (0,25347) width 10: "\x{E01}\x{E47}"
 1168 text run at (0,25369) width 18: "\x{E2A}\x{E48}\x{E07}"
 1169 text run at (0,25391) width 33: "\x{E40}\x{E2A}\x{E35}\x{E22}\x{E07}"
 1170 text run at (0,25413) width 28: "\x{E2B}\x{E27}\x{E35}\x{E14}"
 1171 text run at (0,25435) width 27: "\x{E2B}\x{E27}\x{E37}\x{E2D}"
 1172 text run at (0,25457) width 18: "\x{E14}\x{E31}\x{E07}"
 1173 text run at (0,25479) width 25: "\x{E40}\x{E2A}\x{E35}\x{E22}"
 1174 text run at (0,25501) width 18: "\x{E08}\x{E19}"
 1175 text run at (0,25523) width 23: "\x{E40}\x{E18}\x{E2D}"
 1176 text run at (0,25545) width 29: "\x{E41}\x{E17}\x{E1A}"
 1177 text run at (0,25567) width 15: "\x{E08}\x{E30}"
 1178 text run at (0,25589) width 10: "\x{E2B}\x{E39}"
 1179 text run at (0,25611) width 38: "\x{E2B}\x{E19}\x{E27}\x{E01}"
 1180 text run at (0,25633) width 10: "\x{E17}\x{E35}"
 1181 text run at (0,25655) width 27: "\x{E41}\x{E23}\x{E01}"
 1182 text run at (0,25677) width 23: "\x{E40}\x{E18}\x{E2D}"
 1183 text run at (0,25699) width 38: "\x{E2A}\x{E07}\x{E2A}\x{E31}\x{E22}"
 1184 text run at (0,25721) width 16: "\x{E27}\x{E48}\x{E32}"
 1185 text run at (0,25743) width 33: "\x{E04}\x{E07}\x{E08}\x{E30}"
 1186 text run at (0,25765) width 20: "\x{E16}\x{E39}\x{E01}"
 1187 text run at (0,25787) width 20: "\x{E09}\x{E35}\x{E01}"
 1188 text run at (0,25809) width 52: "\x{E01}\x{E23}\x{E30}\x{E0A}\x{E32}\x{E01}"
 1189 text run at (0,25831) width 28: "\x{E2D}\x{E2D}\x{E01}"
 1190 text run at (0,25853) width 25: "\x{E40}\x{E1B}\x{E47}\x{E19}"
 1191 text run at (0,25875) width 19: "\x{E0A}\x{E34}\x{E49}\x{E19}"
 1192 text run at (0,25897) width 24: "\x{E40}\x{E25}\x{E47}\x{E01}"
 1193 text run at (0,25919) width 19: "\x{E0A}\x{E34}\x{E49}\x{E19}"
 1194 text run at (0,25941) width 29: "\x{E19}\x{E49}\x{E2D}\x{E22}"
 1195 text run at (0,25963) width 24: "\x{E40}\x{E21}\x{E37}\x{E48}\x{E2D}"
 1196 text run at (0,25985) width 28: "\x{E1A}\x{E49}\x{E32}\x{E19}"
 1197 text run at (0,26007) width 24: "\x{E40}\x{E2D}\x{E19}"
 1198 text run at (0,26029) width 19: "\x{E25}\x{E49}\x{E21}"
 1199 text run at (0,26051) width 17: "\x{E25}\x{E07}"
 1200 text run at (0,26073) width 19: "\x{E2D}\x{E35}\x{E01}"
 1201 text run at (0,26095) width 26: "\x{E04}\x{E23}\x{E31}\x{E49}\x{E07}"
 1202 text run at (0,26117) width 19: "\x{E41}\x{E15}\x{E48}"
 1203 text run at (0,26139) width 37: "\x{E2B}\x{E25}\x{E32}\x{E22}"
 1204 text run at (0,26161) width 42: "\x{E0A}\x{E31}\x{E48}\x{E27}\x{E42}\x{E21}\x{E07}"
 1205 text run at (0,26183) width 28: "\x{E1C}\x{E48}\x{E32}\x{E19}"
 1206 text run at (0,26205) width 17: "\x{E44}\x{E1B}"
 1207 text run at (0,26227) width 10: "\x{E01}\x{E47}"
 1208 text run at (0,26249) width 27: "\x{E44}\x{E21}\x{E48}\x{E21}\x{E35}"
 1209 text run at (0,26271) width 31: "\x{E2D}\x{E30}\x{E44}\x{E23}"
 1210 text run at (0,26293) width 25: "\x{E40}\x{E01}\x{E34}\x{E14}"
 1211 text run at (0,26315) width 19: "\x{E02}\x{E36}\x{E49}\x{E19}"
 1212 text run at (0,26337) width 23: "\x{E40}\x{E18}\x{E2D}"
 1213 text run at (0,26359) width 24: "\x{E40}\x{E25}\x{E22}"
 1214 text run at (0,26381) width 24: "\x{E40}\x{E25}\x{E34}\x{E01}"
 1215 text run at (0,26403) width 28: "\x{E27}\x{E34}\x{E15}\x{E01}"
 1216 text run at (0,26425) width 25: "\x{E41}\x{E25}\x{E30}"
 1217 text run at (0,26447) width 40: "\x{E15}\x{E31}\x{E14}\x{E2A}\x{E34}\x{E19}"
 1218 text run at (0,26469) width 15: "\x{E43}\x{E08}"
 1219 text run at (0,26491) width 29: "\x{E04}\x{E2D}\x{E22}"
 1220 text run at (0,26513) width 10: "\x{E14}\x{E39}"
 1221 text run at (0,26535) width 35: "\x{E2D}\x{E22}\x{E48}\x{E32}\x{E07}"
 1222 text run at (0,26557) width 28: "\x{E2A}\x{E07}\x{E1A}"
 1223 text run at (0,26579) width 25: "\x{E41}\x{E25}\x{E30}"
 1224 text run at (0,26601) width 17: "\x{E23}\x{E2D}"
 1225 text run at (0,26623) width 16: "\x{E27}\x{E48}\x{E32}"
 1226 text run at (0,26645) width 47: "\x{E2D}\x{E19}\x{E32}\x{E04}\x{E15}"
 1227 text run at (0,26667) width 15: "\x{E08}\x{E30}"
 1228 text run at (0,26689) width 25: "\x{E40}\x{E1B}\x{E47}\x{E19}"
 1229 text run at (0,26711) width 50: "\x{E2D}\x{E22}\x{E48}\x{E32}\x{E07}\x{E44}\x{E23}"
 1230 text run at (0,26733) width 17: "\x{E43}\x{E19}"
 1231 text run at (0,26755) width 30: "\x{E17}\x{E35}\x{E48}\x{E2A}\x{E38}\x{E14}"
 1232 text run at (0,26777) width 23: "\x{E40}\x{E18}\x{E2D}"
 1233 text run at (0,26799) width 37: "\x{E04}\x{E25}\x{E32}\x{E19}"
 1234 text run at (0,26821) width 26: "\x{E08}\x{E32}\x{E01}"
 1235 text run at (0,26843) width 21: "\x{E1E}\x{E37}\x{E49}\x{E19}"
 1236 text run at (0,26865) width 27: "\x{E2B}\x{E49}\x{E2D}\x{E07}"
 1237 text run at (0,26887) width 10: "\x{E17}\x{E35}\x{E48}"
 1238 text run at (0,26909) width 27: "\x{E42}\x{E22}\x{E01}"
 1239 text run at (0,26931) width 17: "\x{E44}\x{E1B}"
 1240 text run at (0,26953) width 18: "\x{E21}\x{E32}"
 1241 text run at (0,26975) width 19: "\x{E02}\x{E36}\x{E49}\x{E19}"
 1242 text run at (0,26997) width 17: "\x{E44}\x{E1B}"
 1243 text run at (0,27019) width 20: "\x{E1A}\x{E19}"
 1244 text run at (0,27041) width 33: "\x{E40}\x{E15}\x{E35}\x{E22}\x{E07}"
 1245 text run at (0,27063) width 26: "\x{E41}\x{E25}\x{E49}\x{E27}"
 1246 text run at (0,27085) width 10: "\x{E01}\x{E47}"
 1247 text run at (0,27107) width 29: "\x{E19}\x{E2D}\x{E19}"
 1248 text run at (0,27129) width 17: "\x{E25}\x{E07}"
 1249 text run at (0,27151) width 17: "\x{E42}\x{E15}"
 1250 text run at (0,27173) width 17: "\x{E42}\x{E15}\x{E49}"
 1251 text run at (0,27195) width 28: "\x{E15}\x{E32}\x{E21}"
 1252 text run at (0,27217) width 20: "\x{E15}\x{E34}\x{E14}"
 1253 text run at (0,27239) width 18: "\x{E21}\x{E32}"
 1254 text run at (0,27261) width 29: "\x{E19}\x{E2D}\x{E19}"
 1255 text run at (0,27283) width 17: "\x{E25}\x{E07}"
 1256 text run at (0,27305) width 36: "\x{E43}\x{E01}\x{E25}\x{E49}\x{E46}"
 1257 text run at (0,27327) width 23: "\x{E40}\x{E18}\x{E2D}"
 1258 text run at (0,27349) width 17: "\x{E44}\x{E21}\x{E48}"
 1259 text run at (0,27371) width 17: "\x{E0A}\x{E49}\x{E32}"
 1260 text run at (0,27393) width 17: "\x{E42}\x{E14}"
 1261 text run at (0,27415) width 24: "\x{E42}\x{E23}\x{E18}\x{E35}"
 1262 text run at (0,27437) width 10: "\x{E01}\x{E47}"
 1263 text run at (0,27459) width 20: "\x{E1B}\x{E34}\x{E14}"
 1264 text run at (0,27481) width 18: "\x{E15}\x{E32}"
 1265 text run at (0,27503) width 17: "\x{E25}\x{E07}"
 1266 text run at (0,27525) width 29: "\x{E2B}\x{E25}\x{E31}\x{E1A}"
 1267 text run at (0,27547) width 38: "\x{E1C}\x{E25}\x{E47}\x{E2D}\x{E22}"
 1268 text run at (0,27569) width 17: "\x{E44}\x{E1B}"
 1269 text run at (0,27591) width 35: "\x{E2D}\x{E22}\x{E48}\x{E32}\x{E07}"
 1270 text run at (0,27613) width 30: "\x{E2A}\x{E19}\x{E34}\x{E17}"
 1271 text run at (0,27635) width 28: "\x{E17}\x{E31}\x{E49}\x{E07}\x{E46}"
 1272 text run at (0,27657) width 10: "\x{E17}\x{E35}\x{E48}"
 1273 text run at (0,27679) width 28: "\x{E1A}\x{E49}\x{E32}\x{E19}"
 1274 text run at (0,27701) width 27: "\x{E42}\x{E22}\x{E01}"
 1275 text run at (0,27723) width 17: "\x{E44}\x{E1B}"
 1276 text run at (0,27745) width 18: "\x{E21}\x{E32}"
 1277 text run at (0,27767) width 25: "\x{E41}\x{E25}\x{E30}"
 1278 text run at (0,27789) width 19: "\x{E25}\x{E21}"
 1279 text run at (0,27811) width 10: "\x{E01}\x{E47}"
 1280 text run at (0,27833) width 34: "\x{E04}\x{E23}\x{E32}\x{E07}"
 1281 text run at (0,27855) width 28: "\x{E2B}\x{E27}\x{E35}\x{E14}"
 1282 text run at (0,27877) width 27: "\x{E2B}\x{E27}\x{E37}\x{E2D}"
 1283layer at (471,96) size 1x29326
 1284 RenderBlock (positioned) {DIV} at (471,96) size 1x29326
 1285 RenderText {#text} at (0,3) size 72x29322
 1286 text run at (0,3) width 20: "\x{E1A}\x{E17}"
 1287 text run at (0,25) width 10: "\x{E17}\x{E35}\x{E48}"
 1288 text run at (0,47) width 10: "\x{E51}"
 1289 text run at (0,69) width 29: "\x{E1E}\x{E32}\x{E22}\x{E38}"
 1290 text run at (0,91) width 52: "\x{E44}\x{E0B}\x{E42}\x{E04}\x{E25}\x{E19}"
 1291 text run at (0,113) width 17: "\x{E42}\x{E14}"
 1292 text run at (0,135) width 24: "\x{E42}\x{E23}\x{E18}\x{E35}"
 1293 text run at (0,157) width 37: "\x{E2D}\x{E32}\x{E28}\x{E31}\x{E22}"
 1294 text run at (0,179) width 19: "\x{E2D}\x{E22}\x{E39}\x{E48}"
 1295 text run at (0,201) width 18: "\x{E17}\x{E48}\x{E32}"
 1296 text run at (0,223) width 10: "\x{E21}"
 1297 text run at (0,245) width 35: "\x{E01}\x{E25}\x{E32}\x{E07}"
 1298 text run at (0,267) width 18: "\x{E17}\x{E38}\x{E48}\x{E07}"
 1299 text run at (0,289) width 30: "\x{E43}\x{E2B}\x{E0D}\x{E48}"
 1300 text run at (0,311) width 17: "\x{E43}\x{E19}"
 1301 text run at (0,333) width 48: "\x{E41}\x{E04}\x{E19}\x{E0B}\x{E31}\x{E2A}"
 1302 text run at (0,355) width 20: "\x{E01}\x{E31}\x{E1A}"
 1303 text run at (0,377) width 17: "\x{E25}\x{E38}\x{E07}"
 1304 text run at (0,399) width 14: "\x{E40}\x{E2E}"
 1305 text run at (0,421) width 18: "\x{E19}\x{E23}\x{E35}"
 1306 text run at (0,443) width 25: "\x{E0A}\x{E32}\x{E27}"
 1307 text run at (0,465) width 15: "\x{E44}\x{E23}\x{E48}"
 1308 text run at (0,487) width 25: "\x{E41}\x{E25}\x{E30}"
 1309 text run at (0,509) width 18: "\x{E1B}\x{E49}\x{E32}"
 1310 text run at (0,531) width 24: "\x{E40}\x{E2D}\x{E47}\x{E21}"
 1311 text run at (0,553) width 45: "\x{E20}\x{E23}\x{E23}\x{E22}\x{E32}"
 1312 text run at (0,575) width 40: "\x{E0A}\x{E32}\x{E27}\x{E44}\x{E23}\x{E48}"
 1313 text run at (0,597) width 28: "\x{E1A}\x{E49}\x{E32}\x{E19}"
 1314 text run at (0,619) width 26: "\x{E02}\x{E2D}\x{E07}"
 1315 text run at (0,641) width 29: "\x{E1E}\x{E27}\x{E01}"
 1316 text run at (0,663) width 22: "\x{E40}\x{E02}\x{E32}"
 1317 text run at (0,685) width 27: "\x{E2B}\x{E25}\x{E31}\x{E07}"
 1318 text run at (0,707) width 24: "\x{E40}\x{E25}\x{E47}\x{E01}"
 1319 text run at (0,729) width 39: "\x{E40}\x{E1E}\x{E23}\x{E32}\x{E30}"
 1320 text run at (0,751) width 17: "\x{E44}\x{E21}\x{E49}"
 1321 text run at (0,773) width 34: "\x{E2A}\x{E23}\x{E49}\x{E32}\x{E07}"
 1322 text run at (0,795) width 28: "\x{E1A}\x{E49}\x{E32}\x{E19}"
 1323 text run at (0,817) width 27: "\x{E15}\x{E49}\x{E2D}\x{E07}"
 1324 text run at (0,839) width 19: "\x{E02}\x{E19}"
 1325 text run at (0,861) width 18: "\x{E21}\x{E32}"
 1326 text run at (0,883) width 28: "\x{E14}\x{E49}\x{E27}\x{E22}"
 1327 text run at (0,905) width 43: "\x{E40}\x{E01}\x{E27}\x{E35}\x{E22}\x{E19}"
 1328 text run at (0,927) width 25: "\x{E40}\x{E1B}\x{E47}\x{E19}"
 1329 text run at (0,949) width 32: "\x{E23}\x{E30}\x{E22}\x{E30}"
 1330 text run at (0,971) width 26: "\x{E17}\x{E32}\x{E07}"
 1331 text run at (0,993) width 37: "\x{E2B}\x{E25}\x{E32}\x{E22}"
 1332 text run at (0,1015) width 26: "\x{E44}\x{E21}\x{E25}\x{E4C}"
 1333 text run at (0,1037) width 28: "\x{E1A}\x{E49}\x{E32}\x{E19}"
 1334 text run at (0,1059) width 10: "\x{E21}\x{E35}"
 1335 text run at (0,1081) width 10: "\x{E2A}\x{E35}\x{E48}"
 1336 text run at (0,1103) width 18: "\x{E1D}\x{E32}"
 1337 text run at (0,1125) width 10: "\x{E21}\x{E35}"
 1338 text run at (0,1147) width 21: "\x{E1E}\x{E37}\x{E49}\x{E19}"
 1339 text run at (0,1169) width 20: "\x{E01}\x{E31}\x{E1A}"
 1340 text run at (0,1191) width 45: "\x{E2B}\x{E25}\x{E31}\x{E07}\x{E04}\x{E32}"
 1341 text run at (0,1213) width 26: "\x{E23}\x{E27}\x{E21}"
 1342 text run at (0,1235) width 18: "\x{E17}\x{E33}"
 1343 text run at (0,1257) width 25: "\x{E40}\x{E1B}\x{E47}\x{E19}"
 1344 text run at (0,1279) width 27: "\x{E2B}\x{E49}\x{E2D}\x{E07}"
 1345 text run at (0,1301) width 33: "\x{E40}\x{E14}\x{E35}\x{E22}\x{E27}"
 1346 text run at (0,1323) width 17: "\x{E43}\x{E19}"
 1347 text run at (0,1345) width 27: "\x{E2B}\x{E49}\x{E2D}\x{E07}"
 1348 text run at (0,1367) width 10: "\x{E21}\x{E35}"
 1349 text run at (0,1389) width 18: "\x{E17}\x{E31}\x{E49}\x{E07}"
 1350 text run at (0,1411) width 23: "\x{E40}\x{E15}\x{E32}"
 1351 text run at (0,1433) width 18: "\x{E2B}\x{E38}\x{E07}"
 1352 text run at (0,1455) width 20: "\x{E15}\x{E49}\x{E21}"
 1353 text run at (0,1477) width 10: "\x{E17}\x{E35}\x{E48}"
 1354 text run at (0,1499) width 30: "\x{E2A}\x{E19}\x{E34}\x{E21}"
 1355 text run at (0,1521) width 10: "\x{E14}\x{E39}"
 1356 text run at (0,1543) width 19: "\x{E02}\x{E36}\x{E49}\x{E19}"
 1357 text run at (0,1565) width 30: "\x{E40}\x{E25}\x{E2D}\x{E30}"
 1358 text run at (0,1587) width 10: "\x{E21}\x{E35}"
 1359 text run at (0,1609) width 10: "\x{E15}\x{E39}\x{E49}"
 1360 text run at (0,1631) width 17: "\x{E43}\x{E2A}\x{E48}"
 1361 text run at (0,1653) width 28: "\x{E16}\x{E49}\x{E27}\x{E22}"
 1362 text run at (0,1675) width 27: "\x{E0A}\x{E32}\x{E21}"
 1363 text run at (0,1697) width 24: "\x{E42}\x{E15}\x{E4A}\x{E30}"
 1364 text run at (0,1719) width 32: "\x{E40}\x{E01}\x{E49}\x{E32}\x{E2D}\x{E35}\x{E49}"
 1365 text run at (0,1741) width 28: "\x{E2A}\x{E32}\x{E21}"
 1366 text run at (0,1763) width 27: "\x{E2B}\x{E23}\x{E37}\x{E2D}"
 1367 text run at (0,1785) width 10: "\x{E2A}\x{E35}\x{E48}"
 1368 text run at (0,1807) width 18: "\x{E15}\x{E31}\x{E27}"
 1369 text run at (0,1829) width 26: "\x{E41}\x{E25}\x{E49}\x{E27}"
 1370 text run at (0,1851) width 10: "\x{E01}\x{E47}"
 1371 text run at (0,1873) width 10: "\x{E21}\x{E35}"
 1372 text run at (0,1895) width 33: "\x{E40}\x{E15}\x{E35}\x{E22}\x{E07}"
 1373 text run at (0,1917) width 29: "\x{E19}\x{E2D}\x{E19}"
 1374 text run at (0,1939) width 17: "\x{E25}\x{E38}\x{E07}"
 1375 text run at (0,1961) width 14: "\x{E40}\x{E2E}"
 1376 text run at (0,1983) width 18: "\x{E19}\x{E23}\x{E35}"
 1377 text run at (0,2005) width 20: "\x{E01}\x{E31}\x{E1A}"
 1378 text run at (0,2027) width 18: "\x{E1B}\x{E49}\x{E32}"
 1379 text run at (0,2049) width 24: "\x{E40}\x{E2D}\x{E47}\x{E21}"
 1380 text run at (0,2071) width 10: "\x{E21}\x{E35}"
 1381 text run at (0,2093) width 33: "\x{E40}\x{E15}\x{E35}\x{E22}\x{E07}"
 1382 text run at (0,2115) width 29: "\x{E19}\x{E2D}\x{E19}"
 1383 text run at (0,2137) width 30: "\x{E43}\x{E2B}\x{E0D}\x{E48}"
 1384 text run at (0,2159) width 19: "\x{E2D}\x{E22}\x{E39}\x{E48}"
 1385 text run at (0,2181) width 10: "\x{E17}\x{E35}\x{E48}"
 1386 text run at (0,2203) width 20: "\x{E21}\x{E38}\x{E21}"
 1387 text run at (0,2225) width 28: "\x{E2B}\x{E19}\x{E36}\x{E48}\x{E07}"
 1388 text run at (0,2247) width 28: "\x{E2A}\x{E48}\x{E27}\x{E19}"
 1389 text run at (0,2269) width 17: "\x{E42}\x{E14}"
 1390 text run at (0,2291) width 24: "\x{E42}\x{E23}\x{E18}\x{E35}"
 1391 text run at (0,2313) width 10: "\x{E21}\x{E35}"
 1392 text run at (0,2335) width 33: "\x{E40}\x{E15}\x{E35}\x{E22}\x{E07}"
 1393 text run at (0,2357) width 24: "\x{E40}\x{E25}\x{E47}\x{E01}"
 1394 text run at (0,2379) width 19: "\x{E2D}\x{E35}\x{E01}"
 1395 text run at (0,2401) width 10: "\x{E17}\x{E35}\x{E48}"
 1396 text run at (0,2423) width 20: "\x{E21}\x{E38}\x{E21}"
 1397 text run at (0,2445) width 28: "\x{E2B}\x{E19}\x{E36}\x{E48}\x{E07}"
 1398 text run at (0,2467) width 17: "\x{E44}\x{E21}\x{E48}"
 1399 text run at (0,2489) width 10: "\x{E21}\x{E35}"
 1400 text run at (0,2511) width 27: "\x{E2B}\x{E49}\x{E2D}\x{E07}"
 1401 text run at (0,2533) width 17: "\x{E43}\x{E15}\x{E49}"
 1402 text run at (0,2555) width 44: "\x{E40}\x{E1E}\x{E14}\x{E32}\x{E19}"
 1403 text run at (0,2577) width 24: "\x{E40}\x{E25}\x{E22}"
 1404 text run at (0,2599) width 27: "\x{E2B}\x{E49}\x{E2D}\x{E07}"
 1405 text run at (0,2621) width 37: "\x{E43}\x{E15}\x{E49}\x{E16}\x{E38}\x{E19}"
 1406 text run at (0,2643) width 10: "\x{E01}\x{E47}"
 1407 text run at (0,2665) width 17: "\x{E44}\x{E21}\x{E48}"
 1408 text run at (0,2687) width 10: "\x{E21}\x{E35}"
 1409 text run at (0,2709) width 23: "\x{E40}\x{E27}\x{E49}\x{E19}"
 1410 text run at (0,2731) width 19: "\x{E41}\x{E15}\x{E48}"
 1411 text run at (0,2753) width 10: "\x{E21}\x{E35}"
 1412 text run at (0,2775) width 34: "\x{E42}\x{E1E}\x{E23}\x{E07}"
 1413 text run at (0,2797) width 34: "\x{E40}\x{E25}\x{E47}\x{E01}\x{E46}"
 1414 text run at (0,2819) width 10: "\x{E17}\x{E35}\x{E48}"
 1415 text run at (0,2841) width 19: "\x{E02}\x{E38}\x{E14}"
 1416 text run at (0,2863) width 17: "\x{E44}\x{E1B}"
 1417 text run at (0,2885) width 17: "\x{E43}\x{E15}\x{E49}"
 1418 text run at (0,2907) width 21: "\x{E1E}\x{E37}\x{E49}\x{E19}"
 1419 text run at (0,2929) width 33: "\x{E40}\x{E23}\x{E35}\x{E22}\x{E01}"
 1420 text run at (0,2951) width 16: "\x{E27}\x{E48}\x{E32}"
 1421 text run at (0,2970) width 7: "\""
 1422 text run at (0,2991) width 34: "\x{E42}\x{E1E}\x{E23}\x{E07}"
 1423 text run at (0,3013) width 52: "\x{E44}\x{E0B}\x{E42}\x{E04}\x{E25}\x{E19}"
 1424 text run at (0,3032) width 7: "\""
 1425 text run at (0,3053) width 25: "\x{E40}\x{E1B}\x{E47}\x{E19}"
 1426 text run at (0,3075) width 10: "\x{E17}\x{E35}\x{E48}"
 1427 text run at (0,3097) width 63: "\x{E04}\x{E23}\x{E2D}\x{E1A}\x{E04}\x{E23}\x{E31}\x{E27}"
 1428 text run at (0,3119) width 10: "\x{E19}\x{E35}\x{E49}"
 1429 text run at (0,3141) width 15: "\x{E08}\x{E30}"
 1430 text run at (0,3163) width 20: "\x{E21}\x{E38}\x{E14}"
 1431 text run at (0,3185) width 22: "\x{E40}\x{E02}\x{E49}\x{E32}"
 1432 text run at (0,3207) width 17: "\x{E44}\x{E1B}"
 1433 text run at (0,3229) width 24: "\x{E40}\x{E21}\x{E37}\x{E48}\x{E2D}"
 1434 text run at (0,3251) width 25: "\x{E40}\x{E01}\x{E34}\x{E14}"
 1435 text run at (0,3273) width 19: "\x{E25}\x{E21}"
 1436 text run at (0,3295) width 28: "\x{E21}\x{E2B}\x{E32}"
 1437 text run at (0,3317) width 21: "\x{E20}\x{E31}\x{E22}"
 1438 text run at (0,3339) width 17: "\x{E0B}\x{E36}\x{E48}\x{E07}"
 1439 text run at (0,3361) width 51: "\x{E01}\x{E23}\x{E30}\x{E42}\x{E0A}\x{E01}"
 1440 text run at (0,3383) width 25: "\x{E41}\x{E23}\x{E07}"
 1441 text run at (0,3405) width 18: "\x{E08}\x{E19}"
 1442 text run at (0,3427) width 20: "\x{E1A}\x{E14}"
 1443 text run at (0,3449) width 19: "\x{E02}\x{E22}\x{E35}\x{E49}"
 1444 text run at (0,3471) width 18: "\x{E2A}\x{E34}\x{E48}\x{E07}"
 1445 text run at (0,3493) width 19: "\x{E01}\x{E48}\x{E2D}"
 1446 text run at (0,3515) width 34: "\x{E2A}\x{E23}\x{E49}\x{E32}\x{E07}"
 1447 text run at (0,3537) width 17: "\x{E43}\x{E14}"
 1448 text run at (0,3559) width 10: "\x{E46}"
 1449 text run at (0,3581) width 10: "\x{E17}\x{E35}\x{E48}"
 1450 text run at (0,3603) width 33: "\x{E02}\x{E27}\x{E32}\x{E07}"
 1451 text run at (0,3625) width 26: "\x{E17}\x{E32}\x{E07}"
 1452 text run at (0,3647) width 20: "\x{E21}\x{E31}\x{E19}"
 1453 text run at (0,3669) width 17: "\x{E44}\x{E14}\x{E49}"
 1454 text run at (0,3691) width 26: "\x{E15}\x{E23}\x{E07}"
 1455 text run at (0,3713) width 35: "\x{E01}\x{E25}\x{E32}\x{E07}"
 1456 text run at (0,3735) width 21: "\x{E1E}\x{E37}\x{E49}\x{E19}"
 1457 text run at (0,3757) width 10: "\x{E21}\x{E35}"
 1458 text run at (0,3779) width 18: "\x{E1D}\x{E32}"
 1459 text run at (0,3801) width 25: "\x{E40}\x{E1B}\x{E34}\x{E14}"
 1460 text run at (0,3823) width 22: "\x{E40}\x{E02}\x{E49}\x{E32}"
 1461 text run at (0,3845) width 17: "\x{E44}\x{E1B}"
 1462 text run at (0,3867) width 26: "\x{E08}\x{E32}\x{E01}"
 1463 text run at (0,3889) width 20: "\x{E19}\x{E31}\x{E49}\x{E19}"
 1464 text run at (0,3911) width 10: "\x{E21}\x{E35}"
 1465 text run at (0,3933) width 37: "\x{E1A}\x{E31}\x{E19}\x{E44}\x{E14}"
 1466 text run at (0,3955) width 17: "\x{E25}\x{E07}"
 1467 text run at (0,3977) width 17: "\x{E44}\x{E1B}"
 1468 text run at (0,3999) width 18: "\x{E16}\x{E36}\x{E07}"
 1469 text run at (0,4021) width 34: "\x{E42}\x{E1E}\x{E23}\x{E07}"
 1470 text run at (0,4043) width 20: "\x{E21}\x{E37}\x{E14}"
 1471 text run at (0,4065) width 24: "\x{E40}\x{E25}\x{E47}\x{E01}"
 1472 text run at (0,4087) width 10: "\x{E46}"
 1473 text run at (0,4109) width 24: "\x{E40}\x{E21}\x{E37}\x{E48}\x{E2D}"
 1474 text run at (0,4131) width 17: "\x{E42}\x{E14}"
 1475 text run at (0,4153) width 24: "\x{E42}\x{E23}\x{E18}\x{E35}"
 1476 text run at (0,4175) width 20: "\x{E22}\x{E37}\x{E19}"
 1477 text run at (0,4197) width 10: "\x{E17}\x{E35}\x{E48}"
 1478 text run at (0,4219) width 28: "\x{E1B}\x{E32}\x{E01}"
 1479 text run at (0,4241) width 35: "\x{E1B}\x{E23}\x{E30}\x{E15}\x{E39}"
 1480 text run at (0,4263) width 25: "\x{E41}\x{E25}\x{E30}"
 1481 text run at (0,4285) width 27: "\x{E21}\x{E2D}\x{E07}"
 1482 text run at (0,4307) width 17: "\x{E44}\x{E1B}"
 1483 text run at (0,4329) width 27: "\x{E23}\x{E2D}\x{E1A}"
 1484 text run at (0,4351) width 10: "\x{E46}"
 1485 text run at (0,4373) width 23: "\x{E40}\x{E18}\x{E2D}"
 1486 text run at (0,4395) width 17: "\x{E44}\x{E21}\x{E48}"
 1487 text run at (0,4417) width 25: "\x{E40}\x{E2B}\x{E47}\x{E19}"
 1488 text run at (0,4439) width 31: "\x{E2D}\x{E30}\x{E44}\x{E23}"
 1489 text run at (0,4461) width 29: "\x{E19}\x{E2D}\x{E01}"
 1490 text run at (0,4483) width 26: "\x{E08}\x{E32}\x{E01}"
 1491 text run at (0,4505) width 27: "\x{E17}\x{E49}\x{E2D}\x{E07}"
 1492 text run at (0,4527) width 18: "\x{E17}\x{E38}\x{E48}\x{E07}"
 1493 text run at (0,4549) width 34: "\x{E01}\x{E27}\x{E49}\x{E32}\x{E07}"
 1494 text run at (0,4571) width 10: "\x{E2A}\x{E35}"
 1495 text run at (0,4593) width 23: "\x{E40}\x{E17}\x{E32}"
 1496 text run at (0,4615) width 30: "\x{E2B}\x{E21}\x{E48}\x{E19}"
 1497 text run at (0,4637) width 18: "\x{E17}\x{E31}\x{E48}\x{E27}"
 1498 text run at (0,4659) width 20: "\x{E17}\x{E38}\x{E01}"
 1499 text run at (0,4681) width 28: "\x{E14}\x{E49}\x{E32}\x{E19}"
 1500 text run at (0,4703) width 17: "\x{E44}\x{E21}\x{E48}"
 1501 text run at (0,4725) width 10: "\x{E21}\x{E35}"
 1502 text run at (0,4747) width 19: "\x{E41}\x{E21}\x{E49}"
 1503 text run at (0,4769) width 37: "\x{E15}\x{E49}\x{E19}\x{E44}\x{E21}\x{E49}"
 1504 text run at (0,4791) width 20: "\x{E2A}\x{E31}\x{E01}"
 1505 text run at (0,4813) width 20: "\x{E15}\x{E49}\x{E19}"
 1506 text run at (0,4835) width 27: "\x{E2B}\x{E23}\x{E37}\x{E2D}"
 1507 text run at (0,4857) width 28: "\x{E1A}\x{E49}\x{E32}\x{E19}"
 1508 text run at (0,4879) width 20: "\x{E2A}\x{E31}\x{E01}"
 1509 text run at (0,4901) width 27: "\x{E2B}\x{E25}\x{E31}\x{E07}"
 1510 text run at (0,4923) width 10: "\x{E17}\x{E35}\x{E48}"
 1511 text run at (0,4945) width 26: "\x{E42}\x{E1C}\x{E25}\x{E48}"
 1512 text run at (0,4967) width 21: "\x{E1E}\x{E49}\x{E19}"
 1513 text run at (0,4989) width 21: "\x{E20}\x{E39}\x{E21}\x{E34}"
 1514 text run at (0,5011) width 50: "\x{E1B}\x{E23}\x{E30}\x{E40}\x{E17}\x{E28}"
 1515 text run at (0,5033) width 19: "\x{E2D}\x{E31}\x{E19}"
 1516 text run at (0,5055) width 26: "\x{E23}\x{E32}\x{E1A}"
 1517 text run at (0,5077) width 33: "\x{E40}\x{E23}\x{E35}\x{E22}\x{E1A}"
 1518 text run at (0,5099) width 19: "\x{E41}\x{E1C}\x{E48}"
 1519 text run at (0,5121) width 17: "\x{E44}\x{E1B}"
 1520 text run at (0,5143) width 26: "\x{E44}\x{E01}\x{E25}"
 1521 text run at (0,5165) width 18: "\x{E08}\x{E19}"
 1522 text run at (0,5187) width 18: "\x{E08}\x{E14}"
 1523 text run at (0,5209) width 28: "\x{E02}\x{E2D}\x{E1A}"
 1524 text run at (0,5231) width 19: "\x{E1F}\x{E49}\x{E32}"
 1525 text run at (0,5253) width 18: "\x{E17}\x{E31}\x{E48}\x{E27}"
 1526 text run at (0,5275) width 20: "\x{E17}\x{E38}\x{E01}"
 1527 text run at (0,5297) width 20: "\x{E17}\x{E34}\x{E28}"
 1528 text run at (0,5319) width 26: "\x{E14}\x{E27}\x{E07}"
 1529 text run at (0,5341) width 35: "\x{E15}\x{E30}\x{E27}\x{E31}\x{E19}"
 1530 text run at (0,5363) width 23: "\x{E40}\x{E1C}\x{E32}"
 1531 text run at (0,5385) width 20: "\x{E1C}\x{E37}\x{E19}"
 1532 text run at (0,5407) width 20: "\x{E14}\x{E34}\x{E19}"
 1533 text run at (0,5429) width 10: "\x{E17}\x{E35}\x{E48}"
 1534 text run at (0,5451) width 17: "\x{E44}\x{E16}"
 1535 text run at (0,5473) width 26: "\x{E41}\x{E25}\x{E49}\x{E27}"
 1536 text run at (0,5495) width 18: "\x{E08}\x{E19}"
 1537 text run at (0,5517) width 37: "\x{E01}\x{E25}\x{E32}\x{E22}"
 1538 text run at (0,5539) width 25: "\x{E40}\x{E1B}\x{E47}\x{E19}"
 1539 text run at (0,5561) width 29: "\x{E41}\x{E1C}\x{E48}\x{E19}"
 1540 text run at (0,5583) width 38: "\x{E21}\x{E2B}\x{E36}\x{E21}\x{E32}"
 1541 text run at (0,5605) width 10: "\x{E2A}\x{E35}"
 1542 text run at (0,5627) width 18: "\x{E14}\x{E33}"
 1543 text run at (0,5649) width 10: "\x{E21}\x{E35}"
 1544 text run at (0,5671) width 27: "\x{E23}\x{E2D}\x{E22}"
 1545 text run at (0,5693) width 29: "\x{E41}\x{E15}\x{E01}"
 1546 text run at (0,5715) width 42: "\x{E23}\x{E30}\x{E41}\x{E2B}\x{E07}"
 1547 text run at (0,5737) width 19: "\x{E2D}\x{E22}\x{E39}\x{E48}"
 1548 text run at (0,5759) width 38: "\x{E15}\x{E25}\x{E2D}\x{E14}"
 1549 text run at (0,5781) width 38: "\x{E41}\x{E21}\x{E49}\x{E41}\x{E15}\x{E48}"
 1550 text run at (0,5803) width 31: "\x{E2B}\x{E0D}\x{E49}\x{E32}"
 1551 text run at (0,5825) width 10: "\x{E01}\x{E47}"
 1552 text run at (0,5847) width 17: "\x{E44}\x{E21}\x{E48}"
 1553 text run at (0,5869) width 32: "\x{E40}\x{E02}\x{E35}\x{E22}\x{E27}"
 1554 text run at (0,5891) width 39: "\x{E40}\x{E1E}\x{E23}\x{E32}\x{E30}"
 1555 text run at (0,5913) width 26: "\x{E14}\x{E27}\x{E07}"
 1556 text run at (0,5935) width 35: "\x{E15}\x{E30}\x{E27}\x{E31}\x{E19}"
 1557 text run at (0,5957) width 23: "\x{E40}\x{E1C}\x{E32}"
 1558 text run at (0,5979) width 29: "\x{E22}\x{E2D}\x{E14}"
 1559 text run at (0,6001) width 17: "\x{E43}\x{E1A}"
 1560 text run at (0,6023) width 26: "\x{E22}\x{E32}\x{E27}"
 1561 text run at (0,6045) width 25: "\x{E40}\x{E2A}\x{E35}\x{E22}"
 1562 text run at (0,6067) width 18: "\x{E08}\x{E19}"
 1563 text run at (0,6089) width 25: "\x{E40}\x{E1B}\x{E47}\x{E19}"
 1564 text run at (0,6111) width 10: "\x{E2A}\x{E35}"
 1565 text run at (0,6133) width 23: "\x{E40}\x{E17}\x{E32}"
 1566 text run at (0,6155) width 30: "\x{E2B}\x{E21}\x{E48}\x{E19}"
 1567 text run at (0,6177) width 27: "\x{E21}\x{E2D}\x{E07}"
 1568 text run at (0,6199) width 25: "\x{E40}\x{E2B}\x{E47}\x{E19}"
 1569 text run at (0,6221) width 19: "\x{E2D}\x{E22}\x{E39}\x{E48}"
 1570 text run at (0,6243) width 18: "\x{E17}\x{E31}\x{E48}\x{E27}"
 1571 text run at (0,6265) width 17: "\x{E44}\x{E1B}"
 1572 text run at (0,6287) width 26: "\x{E04}\x{E23}\x{E31}\x{E49}\x{E07}"
 1573 text run at (0,6309) width 28: "\x{E2B}\x{E19}\x{E36}\x{E48}\x{E07}"
 1574 text run at (0,6331) width 25: "\x{E40}\x{E04}\x{E22}"
 1575 text run at (0,6353) width 18: "\x{E17}\x{E32}"
 1576 text run at (0,6375) width 10: "\x{E2A}\x{E35}"
 1577 text run at (0,6397) width 28: "\x{E1A}\x{E49}\x{E32}\x{E19}"
 1578 text run at (0,6419) width 22: "\x{E40}\x{E2D}\x{E32}"
 1579 text run at (0,6441) width 15: "\x{E44}\x{E27}\x{E49}"
 1580 text run at (0,6463) width 19: "\x{E41}\x{E15}\x{E48}"
 1581 text run at (0,6485) width 10: "\x{E01}\x{E47}"
 1582 text run at (0,6507) width 20: "\x{E16}\x{E39}\x{E01}"
 1583 text run at (0,6529) width 26: "\x{E14}\x{E27}\x{E07}"
 1584 text run at (0,6551) width 35: "\x{E15}\x{E30}\x{E27}\x{E31}\x{E19}"
 1585 text run at (0,6573) width 23: "\x{E40}\x{E1C}\x{E32}"
 1586 text run at (0,6595) width 25: "\x{E40}\x{E2A}\x{E35}\x{E22}"
 1587 text run at (0,6617) width 18: "\x{E08}\x{E19}"
 1588 text run at (0,6639) width 10: "\x{E2A}\x{E35}"
 1589 text run at (0,6661) width 28: "\x{E1E}\x{E2D}\x{E07}"
 1590 text run at (0,6683) width 26: "\x{E41}\x{E25}\x{E49}\x{E27}"
 1591 text run at (0,6705) width 20: "\x{E1D}\x{E19}"
 1592 text run at (0,6727) width 10: "\x{E01}\x{E47}"
 1593 text run at (0,6749) width 16: "\x{E0A}\x{E30}"
 1594 text run at (0,6771) width 20: "\x{E21}\x{E31}\x{E19}"
 1595 text run at (0,6793) width 29: "\x{E2B}\x{E25}\x{E38}\x{E14}"
 1596 text run at (0,6815) width 17: "\x{E44}\x{E1B}"
 1597 text run at (0,6837) width 18: "\x{E08}\x{E19}"
 1598 text run at (0,6859) width 30: "\x{E2B}\x{E21}\x{E14}"
 1599 text run at (0,6881) width 25: "\x{E41}\x{E25}\x{E30}"
 1600 text run at (0,6903) width 29: "\x{E15}\x{E2D}\x{E19}"
 1601 text run at (0,6925) width 10: "\x{E19}\x{E35}\x{E49}"
 1602 text run at (0,6947) width 28: "\x{E1A}\x{E49}\x{E32}\x{E19}"
 1603 text run at (0,6969) width 16: "\x{E08}\x{E36}\x{E07}"
 1604 text run at (0,6991) width 10: "\x{E14}\x{E39}"
 1605 text run at (0,7013) width 67: "\x{E2B}\x{E21}\x{E48}\x{E19}\x{E2B}\x{E21}\x{E2D}\x{E07}"
 1606 text run at (0,7035) width 25: "\x{E40}\x{E1B}\x{E47}\x{E19}"
 1607 text run at (0,7057) width 10: "\x{E2A}\x{E35}"
 1608 text run at (0,7079) width 23: "\x{E40}\x{E17}\x{E32}"
 1609 text run at (0,7101) width 44: "\x{E40}\x{E2B}\x{E21}\x{E37}\x{E2D}\x{E19}"
 1610 text run at (0,7123) width 18: "\x{E2A}\x{E34}\x{E48}\x{E07}"
 1611 text run at (0,7145) width 19: "\x{E2D}\x{E37}\x{E48}\x{E19}"
 1612 text run at (0,7167) width 10: "\x{E46}"
 1613 text run at (0,7189) width 28: "\x{E14}\x{E49}\x{E27}\x{E22}"
 1614 text run at (0,7211) width 29: "\x{E15}\x{E2D}\x{E19}"
 1615 text run at (0,7233) width 10: "\x{E17}\x{E35}\x{E48}"
 1616 text run at (0,7255) width 18: "\x{E1B}\x{E49}\x{E32}"
 1617 text run at (0,7277) width 24: "\x{E40}\x{E2D}\x{E47}\x{E21}"
 1618 text run at (0,7299) width 28: "\x{E22}\x{E49}\x{E32}\x{E22}"
 1619 text run at (0,7321) width 18: "\x{E21}\x{E32}"
 1620 text run at (0,7343) width 19: "\x{E2D}\x{E22}\x{E39}\x{E48}"
 1621 text run at (0,7365) width 10: "\x{E17}\x{E35}\x{E48}"
 1622 text run at (0,7387) width 10: "\x{E19}\x{E35}\x{E48}"
 1623 text run at (0,7409) width 23: "\x{E40}\x{E18}\x{E2D}"
 1624 text run at (0,7431) width 18: "\x{E22}\x{E31}\x{E07}"
 1625 text run at (0,7453) width 26: "\x{E2A}\x{E32}\x{E27}"
 1626 text run at (0,7475) width 25: "\x{E40}\x{E1B}\x{E47}\x{E19}"
 1627 text run at (0,7497) width 45: "\x{E20}\x{E23}\x{E23}\x{E22}\x{E32}"
 1628 text run at (0,7519) width 10: "\x{E17}\x{E35}\x{E48}"
 1629 text run at (0,7541) width 44: "\x{E07}\x{E14}\x{E07}\x{E32}\x{E21}"
 1630 text run at (0,7563) width 26: "\x{E41}\x{E25}\x{E49}\x{E27}"
 1631 text run at (0,7585) width 29: "\x{E41}\x{E14}\x{E14}"
 1632 text run at (0,7607) width 25: "\x{E41}\x{E25}\x{E30}"
 1633 text run at (0,7629) width 19: "\x{E25}\x{E21}"
 1634 text run at (0,7651) width 10: "\x{E01}\x{E47}"
 1635 text run at (0,7673) width 17: "\x{E44}\x{E14}\x{E49}"
 1636 text run at (0,7695) width 44: "\x{E40}\x{E1B}\x{E25}\x{E35}\x{E48}\x{E22}\x{E19}"
 1637 text run at (0,7717) width 23: "\x{E40}\x{E18}\x{E2D}"
 1638 text run at (0,7739) width 17: "\x{E44}\x{E1B}"
 1639 text run at (0,7761) width 22: "\x{E40}\x{E2D}\x{E32}"
 1640 text run at (0,7783) width 53: "\x{E1B}\x{E23}\x{E30}\x{E01}\x{E32}\x{E22}"
 1641 text run at (0,7805) width 17: "\x{E44}\x{E1B}"
 1642 text run at (0,7827) width 26: "\x{E08}\x{E32}\x{E01}"
 1643 text run at (0,7849) width 44: "\x{E14}\x{E27}\x{E07}\x{E15}\x{E32}"
 1644 text run at (0,7871) width 23: "\x{E40}\x{E18}\x{E2D}"
 1645 text run at (0,7893) width 38: "\x{E1B}\x{E25}\x{E48}\x{E2D}\x{E22}"
 1646 text run at (0,7915) width 15: "\x{E44}\x{E27}\x{E49}"
 1647 text run at (0,7937) width 19: "\x{E41}\x{E15}\x{E48}"
 1648 text run at (0,7959) width 36: "\x{E04}\x{E27}\x{E32}\x{E21}"
 1649 text run at (0,7981) width 29: "\x{E2A}\x{E38}\x{E02}\x{E38}\x{E21}"
 1650 text run at (0,8003) width 35: "\x{E2D}\x{E22}\x{E48}\x{E32}\x{E07}"
 1651 text run at (0,8025) width 67: "\x{E2B}\x{E21}\x{E48}\x{E19}\x{E2B}\x{E21}\x{E2D}\x{E07}"
 1652 text run at (0,8047) width 22: "\x{E40}\x{E2D}\x{E32}"
 1653 text run at (0,8069) width 10: "\x{E2A}\x{E35}"
 1654 text run at (0,8091) width 27: "\x{E41}\x{E14}\x{E07}"
 1655 text run at (0,8113) width 26: "\x{E08}\x{E32}\x{E01}"
 1656 text run at (0,8135) width 29: "\x{E41}\x{E01}\x{E49}\x{E21}"
 1657 text run at (0,8157) width 25: "\x{E41}\x{E25}\x{E30}"
 1658 text run at (0,8179) width 18: "\x{E23}\x{E34}\x{E21}"
 1659 text run at (0,8201) width 38: "\x{E1D}\x{E35}\x{E1B}\x{E32}\x{E01}"
 1660 text run at (0,8223) width 23: "\x{E40}\x{E18}\x{E2D}"
 1661 text run at (0,8245) width 17: "\x{E44}\x{E1B}"
 1662 text run at (0,8267) width 37: "\x{E01}\x{E25}\x{E32}\x{E22}"
 1663 text run at (0,8289) width 25: "\x{E40}\x{E1B}\x{E47}\x{E19}"
 1664 text run at (0,8311) width 10: "\x{E2A}\x{E35}"
 1665 text run at (0,8333) width 30: "\x{E2B}\x{E21}\x{E48}\x{E19}"
 1666 text run at (0,8355) width 10: "\x{E46}"
 1667 text run at (0,8377) width 44: "\x{E40}\x{E2B}\x{E21}\x{E37}\x{E2D}\x{E19}"
 1668 text run at (0,8399) width 20: "\x{E01}\x{E31}\x{E19}"
 1669 text run at (0,8421) width 23: "\x{E40}\x{E18}\x{E2D}"
 1670 text run at (0,8443) width 29: "\x{E1C}\x{E2D}\x{E21}"
 1671 text run at (0,8465) width 25: "\x{E41}\x{E25}\x{E30}"
 1672 text run at (0,8487) width 27: "\x{E2B}\x{E25}\x{E31}\x{E07}"
 1673 text run at (0,8509) width 25: "\x{E42}\x{E04}\x{E49}\x{E07}"
 1674 text run at (0,8531) width 25: "\x{E41}\x{E25}\x{E30}"
 1675 text run at (0,8553) width 33: "\x{E40}\x{E14}\x{E35}\x{E4B}\x{E22}\x{E27}"
 1676 text run at (0,8575) width 10: "\x{E19}\x{E35}\x{E49}"
 1677 text run at (0,8597) width 17: "\x{E44}\x{E21}\x{E48}"
 1678 text run at (0,8619) width 25: "\x{E40}\x{E04}\x{E22}"
 1679 text run at (0,8641) width 20: "\x{E22}\x{E34}\x{E49}\x{E21}"
 1680 text run at (0,8663) width 24: "\x{E40}\x{E25}\x{E22}"
 1681 text run at (0,8685) width 24: "\x{E40}\x{E21}\x{E37}\x{E48}\x{E2D}"
 1682 text run at (0,8707) width 17: "\x{E42}\x{E14}"
 1683 text run at (0,8729) width 24: "\x{E42}\x{E23}\x{E18}\x{E35}"
 1684 text run at (0,8751) width 17: "\x{E0B}\x{E36}\x{E48}\x{E07}"
 1685 text run at (0,8773) width 25: "\x{E40}\x{E1B}\x{E47}\x{E19}"
 1686 text run at (0,8795) width 25: "\x{E40}\x{E14}\x{E47}\x{E01}"
 1687 text run at (0,8817) width 45: "\x{E01}\x{E33}\x{E1E}\x{E23}\x{E49}\x{E32}"
 1688 text run at (0,8839) width 18: "\x{E21}\x{E32}"
 1689 text run at (0,8861) width 19: "\x{E2D}\x{E22}\x{E39}\x{E48}"
 1690 text run at (0,8883) width 20: "\x{E01}\x{E31}\x{E1A}"
 1691 text run at (0,8905) width 23: "\x{E40}\x{E18}\x{E2D}"
 1692 text run at (0,8927) width 29: "\x{E15}\x{E2D}\x{E19}"
 1693 text run at (0,8949) width 27: "\x{E41}\x{E23}\x{E01}"
 1694 text run at (0,8971) width 18: "\x{E1B}\x{E49}\x{E32}"
 1695 text run at (0,8993) width 24: "\x{E40}\x{E2D}\x{E47}\x{E21}"
 1696 text run at (0,9015) width 20: "\x{E15}\x{E37}\x{E48}\x{E19}"
 1697 text run at (0,9037) width 25: "\x{E40}\x{E15}\x{E49}\x{E19}"
 1698 text run at (0,9059) width 20: "\x{E01}\x{E31}\x{E1A}"
 1699 text run at (0,9081) width 33: "\x{E40}\x{E2A}\x{E35}\x{E22}\x{E07}"
 1700 text run at (0,9103) width 46: "\x{E2B}\x{E31}\x{E27}\x{E40}\x{E23}\x{E32}\x{E30}"
 1701 text run at (0,9125) width 26: "\x{E02}\x{E2D}\x{E07}"
 1702 text run at (0,9147) width 25: "\x{E40}\x{E14}\x{E47}\x{E01}"
 1703 text run at (0,9169) width 29: "\x{E19}\x{E49}\x{E2D}\x{E22}"
 1704 text run at (0,9191) width 28: "\x{E21}\x{E32}\x{E01}"
 1705 text run at (0,9213) width 23: "\x{E40}\x{E18}\x{E2D}"
 1706 text run at (0,9235) width 15: "\x{E08}\x{E30}"
 1707 text run at (0,9257) width 18: "\x{E2A}\x{E48}\x{E07}"
 1708 text run at (0,9279) width 33: "\x{E40}\x{E2A}\x{E35}\x{E22}\x{E07}"
 1709 text run at (0,9301) width 25: "\x{E23}\x{E49}\x{E2D}\x{E07}"
 1710 text run at (0,9323) width 26: "\x{E41}\x{E25}\x{E49}\x{E27}"
 1711 text run at (0,9345) width 22: "\x{E40}\x{E2D}\x{E32}"
 1712 text run at (0,9367) width 19: "\x{E21}\x{E37}\x{E2D}"
 1713 text run at (0,9389) width 28: "\x{E17}\x{E32}\x{E1A}"
 1714 text run at (0,9411) width 19: "\x{E2D}\x{E01}"
 1715 text run at (0,9433) width 20: "\x{E17}\x{E38}\x{E01}"
 1716 text run at (0,9455) width 26: "\x{E04}\x{E23}\x{E31}\x{E49}\x{E07}"
 1717 text run at (0,9477) width 10: "\x{E17}\x{E35}\x{E48}"
 1718 text run at (0,9499) width 33: "\x{E40}\x{E2A}\x{E35}\x{E22}\x{E07}"
 1719 text run at (0,9521) width 19: "\x{E2D}\x{E31}\x{E19}"
 1720 text run at (0,9543) width 37: "\x{E23}\x{E48}\x{E32}\x{E40}\x{E23}\x{E34}\x{E07}"
 1721 text run at (0,9565) width 26: "\x{E02}\x{E2D}\x{E07}"
 1722 text run at (0,9587) width 17: "\x{E42}\x{E14}"
 1723 text run at (0,9609) width 24: "\x{E42}\x{E23}\x{E18}\x{E35}"
 1724 text run at (0,9631) width 22: "\x{E40}\x{E02}\x{E49}\x{E32}"
 1725 text run at (0,9653) width 10: "\x{E2B}\x{E39}"
 1726 text run at (0,9675) width 23: "\x{E40}\x{E18}\x{E2D}"
 1727 text run at (0,9697) width 25: "\x{E41}\x{E25}\x{E30}"
 1728 text run at (0,9719) width 23: "\x{E40}\x{E18}\x{E2D}"
 1729 text run at (0,9741) width 23: "\x{E40}\x{E1D}\x{E49}\x{E32}"
 1730 text run at (0,9763) width 27: "\x{E21}\x{E2D}\x{E07}"
 1731 text run at (0,9785) width 25: "\x{E40}\x{E14}\x{E47}\x{E01}"
 1732 text run at (0,9807) width 31: "\x{E2B}\x{E0D}\x{E34}\x{E07}"
 1733 text run at (0,9829) width 29: "\x{E19}\x{E49}\x{E2D}\x{E22}"
 1734 text run at (0,9851) width 10: "\x{E46}"
 1735 text run at (0,9873) width 28: "\x{E14}\x{E49}\x{E27}\x{E22}"
 1736 text run at (0,9895) width 36: "\x{E04}\x{E27}\x{E32}\x{E21}"
 1737 text run at (0,9917) width 62: "\x{E1B}\x{E23}\x{E30}\x{E2B}\x{E25}\x{E32}\x{E14}"
 1738 text run at (0,9939) width 15: "\x{E43}\x{E08}"
 1739 text run at (0,9961) width 28: "\x{E14}\x{E49}\x{E27}\x{E22}"
 1740 text run at (0,9983) width 18: "\x{E22}\x{E31}\x{E07}"
 1741 text run at (0,10005) width 18: "\x{E2B}\x{E32}"
 1742 text run at (0,10027) width 31: "\x{E2D}\x{E30}\x{E44}\x{E23}"
 1743 text run at (0,10049) width 18: "\x{E21}\x{E32}"
 1744 text run at (0,10071) width 25: "\x{E40}\x{E1B}\x{E47}\x{E19}"
 1745 text run at (0,10093) width 30: "\x{E40}\x{E23}\x{E37}\x{E48}\x{E2D}\x{E07}"
 1746 text run at (0,10115) width 46: "\x{E2B}\x{E31}\x{E27}\x{E40}\x{E23}\x{E32}\x{E30}"
 1747 text run at (0,10137) width 17: "\x{E44}\x{E14}\x{E49}"
 1748 text run at (0,10159) width 17: "\x{E25}\x{E38}\x{E07}"
 1749 text run at (0,10181) width 14: "\x{E40}\x{E2E}"
 1750 text run at (0,10203) width 18: "\x{E19}\x{E23}\x{E35}"
 1751 text run at (0,10225) width 17: "\x{E44}\x{E21}\x{E48}"
 1752 text run at (0,10247) width 25: "\x{E40}\x{E04}\x{E22}"
 1753 text run at (0,10269) width 46: "\x{E2B}\x{E31}\x{E27}\x{E40}\x{E23}\x{E32}\x{E30}"
 1754 text run at (0,10291) width 17: "\x{E25}\x{E38}\x{E07}"
 1755 text run at (0,10313) width 44: "\x{E17}\x{E33}\x{E07}\x{E32}\x{E19}"
 1756 text run at (0,10335) width 30: "\x{E2B}\x{E19}\x{E31}\x{E01}"
 1757 text run at (0,10357) width 26: "\x{E08}\x{E32}\x{E01}"
 1758 text run at (0,10379) width 22: "\x{E40}\x{E0A}\x{E49}\x{E32}"
 1759 text run at (0,10401) width 20: "\x{E22}\x{E31}\x{E19}"
 1760 text run at (0,10423) width 18: "\x{E04}\x{E48}\x{E33}"
 1761 text run at (0,10445) width 25: "\x{E41}\x{E25}\x{E30}"
 1762 text run at (0,10467) width 17: "\x{E44}\x{E21}\x{E48}"
 1763 text run at (0,10489) width 25: "\x{E40}\x{E04}\x{E22}"
 1764 text run at (0,10511) width 26: "\x{E23}\x{E39}\x{E49}\x{E08}\x{E31}\x{E01}"
 1765 text run at (0,10533) width 16: "\x{E27}\x{E48}\x{E32}"
 1766 text run at (0,10555) width 36: "\x{E04}\x{E27}\x{E32}\x{E21}"
 1767 text run at (0,10577) width 37: "\x{E23}\x{E48}\x{E32}\x{E40}\x{E23}\x{E34}\x{E07}"
 1768 text run at (0,10599) width 19: "\x{E04}\x{E37}\x{E2D}"
 1769 text run at (0,10621) width 31: "\x{E2D}\x{E30}\x{E44}\x{E23}"
 1770 text run at (0,10643) width 17: "\x{E25}\x{E38}\x{E07}"
 1771 text run at (0,10665) width 10: "\x{E14}\x{E39}"
 1772 text run at (0,10687) width 67: "\x{E2B}\x{E21}\x{E48}\x{E19}\x{E2B}\x{E21}\x{E2D}\x{E07}"
 1773 text run at (0,10709) width 17: "\x{E44}\x{E1B}"
 1774 text run at (0,10731) width 30: "\x{E2B}\x{E21}\x{E14}"
 1775 text run at (0,10753) width 18: "\x{E15}\x{E31}\x{E49}\x{E07}"
 1776 text run at (0,10775) width 19: "\x{E41}\x{E15}\x{E48}"
 1777 text run at (0,10797) width 31: "\x{E40}\x{E04}\x{E23}\x{E32}"
 1778 text run at (0,10819) width 26: "\x{E22}\x{E32}\x{E27}"
 1779 text run at (0,10841) width 18: "\x{E08}\x{E19}"
 1780 text run at (0,10863) width 18: "\x{E08}\x{E14}"
 1781 text run at (0,10885) width 48: "\x{E23}\x{E2D}\x{E07}\x{E40}\x{E17}\x{E49}\x{E32}"
 1782 text run at (0,10907) width 20: "\x{E1A}\x{E39}\x{E15}"
 1783 text run at (0,10929) width 19: "\x{E2D}\x{E31}\x{E19}"
 1784 text run at (0,10951) width 38: "\x{E2B}\x{E22}\x{E32}\x{E1A}"
 1785 text run at (0,10973) width 26: "\x{E41}\x{E25}\x{E49}\x{E27}"
 1786 text run at (0,10995) width 17: "\x{E25}\x{E38}\x{E07}"
 1787 text run at (0,11017) width 10: "\x{E01}\x{E47}"
 1788 text run at (0,11039) width 10: "\x{E14}\x{E39}"
 1789 text run at (0,11061) width 58: "\x{E40}\x{E04}\x{E23}\x{E48}\x{E07}\x{E02}\x{E23}\x{E36}\x{E21}"
 1790 text run at (0,11083) width 18: "\x{E19}\x{E48}\x{E32}"
 1791 text run at (0,11105) width 31: "\x{E40}\x{E01}\x{E23}\x{E07}"
 1792 text run at (0,11127) width 27: "\x{E02}\x{E32}\x{E21}"
 1793 text run at (0,11149) width 17: "\x{E44}\x{E21}\x{E48}"
 1794 text run at (0,11171) width 29: "\x{E04}\x{E48}\x{E2D}\x{E22}"
 1795 text run at (0,11193) width 15: "\x{E08}\x{E30}"
 1796 text run at (0,11215) width 21: "\x{E1E}\x{E39}\x{E14}"
 1797 text run at (0,11237) width 10: "\x{E21}\x{E35}"
 1798 text run at (0,11259) width 17: "\x{E42}\x{E15}"
 1799 text run at (0,11281) width 17: "\x{E42}\x{E15}\x{E49}"
 1800 text run at (0,11303) width 10: "\x{E17}\x{E35}\x{E48}"
 1801 text run at (0,11325) width 18: "\x{E17}\x{E33}"
 1802 text run at (0,11347) width 17: "\x{E43}\x{E2B}\x{E49}"
 1803 text run at (0,11369) width 17: "\x{E42}\x{E14}"
 1804 text run at (0,11391) width 24: "\x{E42}\x{E23}\x{E18}\x{E35}"
 1805 text run at (0,11413) width 46: "\x{E2B}\x{E31}\x{E27}\x{E40}\x{E23}\x{E32}\x{E30}"
 1806 text run at (0,11435) width 17: "\x{E44}\x{E14}\x{E49}"
 1807 text run at (0,11457) width 25: "\x{E41}\x{E25}\x{E30}"
 1808 text run at (0,11479) width 27: "\x{E0A}\x{E48}\x{E27}\x{E22}"
 1809 text run at (0,11501) width 23: "\x{E40}\x{E18}\x{E2D}"
 1810 text run at (0,11523) width 17: "\x{E43}\x{E2B}\x{E49}"
 1811 text run at (0,11545) width 21: "\x{E1E}\x{E49}\x{E19}"
 1812 text run at (0,11567) width 26: "\x{E08}\x{E32}\x{E01}"
 1813 text run at (0,11589) width 26: "\x{E01}\x{E32}\x{E23}"
 1814 text run at (0,11611) width 37: "\x{E01}\x{E25}\x{E32}\x{E22}"
 1815 text run at (0,11633) width 25: "\x{E40}\x{E1B}\x{E47}\x{E19}"
 1816 text run at (0,11655) width 10: "\x{E2A}\x{E35}"
 1817 text run at (0,11677) width 23: "\x{E40}\x{E17}\x{E32}"
 1818 text run at (0,11699) width 30: "\x{E2B}\x{E21}\x{E48}\x{E19}"
 1819 text run at (0,11721) width 44: "\x{E40}\x{E2B}\x{E21}\x{E37}\x{E2D}\x{E19}"
 1820 text run at (0,11743) width 20: "\x{E01}\x{E31}\x{E1A}"
 1821 text run at (0,11765) width 18: "\x{E2A}\x{E34}\x{E48}\x{E07}"
 1822 text run at (0,11787) width 27: "\x{E23}\x{E2D}\x{E1A}"
 1823 text run at (0,11809) width 18: "\x{E15}\x{E31}\x{E27}"
 1824 text run at (0,11831) width 19: "\x{E2D}\x{E37}\x{E48}\x{E19}"
 1825 text run at (0,11853) width 10: "\x{E46}"
 1826 text run at (0,11875) width 17: "\x{E42}\x{E15}"
 1827 text run at (0,11897) width 17: "\x{E42}\x{E15}\x{E49}"
 1828 text run at (0,11919) width 10: "\x{E2A}\x{E35}"
 1829 text run at (0,11941) width 17: "\x{E44}\x{E21}\x{E48}"
 1830 text run at (0,11963) width 23: "\x{E40}\x{E17}\x{E32}"
 1831 text run at (0,11985) width 30: "\x{E2B}\x{E21}\x{E48}\x{E19}"
 1832 text run at (0,12007) width 19: "\x{E41}\x{E15}\x{E48}"
 1833 text run at (0,12029) width 20: "\x{E21}\x{E31}\x{E19}"
 1834 text run at (0,12051) width 25: "\x{E40}\x{E1B}\x{E47}\x{E19}"
 1835 text run at (0,12073) width 28: "\x{E2B}\x{E21}\x{E32}"
 1836 text run at (0,12095) width 10: "\x{E2A}\x{E35}"
 1837 text run at (0,12117) width 18: "\x{E14}\x{E33}"
 1838 text run at (0,12139) width 18: "\x{E15}\x{E31}\x{E27}"
 1839 text run at (0,12161) width 29: "\x{E19}\x{E49}\x{E2D}\x{E22}"
 1840 text run at (0,12183) width 10: "\x{E46}"
 1841 text run at (0,12205) width 19: "\x{E02}\x{E19}"
 1842 text run at (0,12227) width 26: "\x{E22}\x{E32}\x{E27}"
 1843 text run at (0,12249) width 20: "\x{E1B}\x{E38}\x{E22}"
 1844 text run at (0,12271) width 24: "\x{E23}\x{E32}\x{E27}"
 1845 text run at (0,12293) width 20: "\x{E01}\x{E31}\x{E1A}"
 1846 text run at (0,12315) width 27: "\x{E44}\x{E2B}\x{E21}"
 1847 text run at (0,12337) width 10: "\x{E21}\x{E35}"
 1848 text run at (0,12359) width 18: "\x{E15}\x{E32}"
 1849 text run at (0,12381) width 18: "\x{E14}\x{E33}"
 1850 text run at (0,12403) width 24: "\x{E40}\x{E25}\x{E47}\x{E01}"
 1851 text run at (0,12425) width 25: "\x{E40}\x{E1B}\x{E47}\x{E19}"
 1852 text run at (0,12447) width 53: "\x{E1B}\x{E23}\x{E30}\x{E01}\x{E32}\x{E22}"
 1853 text run at (0,12469) width 39: "\x{E23}\x{E37}\x{E48}\x{E19}\x{E40}\x{E23}\x{E34}\x{E07}"
 1854 text run at (0,12491) width 19: "\x{E2D}\x{E22}\x{E39}\x{E48}"
 1855 text run at (0,12513) width 27: "\x{E2A}\x{E2D}\x{E07}"
 1856 text run at (0,12535) width 25: "\x{E02}\x{E49}\x{E32}\x{E07}"
 1857 text run at (0,12557) width 28: "\x{E08}\x{E21}\x{E39}\x{E01}"
 1858 text run at (0,12579) width 24: "\x{E40}\x{E25}\x{E47}\x{E01}"
 1859 text run at (0,12601) width 19: "\x{E2D}\x{E31}\x{E19}"
 1860 text run at (0,12623) width 18: "\x{E19}\x{E48}\x{E32}"
 1861 text run at (0,12645) width 19: "\x{E02}\x{E31}\x{E19}"
 1862 text run at (0,12667) width 26: "\x{E02}\x{E2D}\x{E07}"
 1863 text run at (0,12689) width 20: "\x{E21}\x{E31}\x{E19}"
 1864 text run at (0,12711) width 17: "\x{E42}\x{E15}"
 1865 text run at (0,12733) width 17: "\x{E42}\x{E15}\x{E49}"
 1866 text run at (0,12755) width 24: "\x{E40}\x{E25}\x{E48}\x{E19}"
 1867 text run at (0,12777) width 18: "\x{E17}\x{E31}\x{E49}\x{E07}"
 1868 text run at (0,12799) width 18: "\x{E27}\x{E31}\x{E19}"
 1869 text run at (0,12821) width 25: "\x{E41}\x{E25}\x{E30}"
 1870 text run at (0,12843) width 17: "\x{E42}\x{E14}"
 1871 text run at (0,12865) width 24: "\x{E42}\x{E23}\x{E18}\x{E35}"
 1872 text run at (0,12887) width 10: "\x{E01}\x{E47}"
 1873 text run at (0,12909) width 24: "\x{E40}\x{E25}\x{E48}\x{E19}"
 1874 text run at (0,12931) width 20: "\x{E01}\x{E31}\x{E1A}"
 1875 text run at (0,12953) width 20: "\x{E21}\x{E31}\x{E19}"
 1876 text run at (0,12975) width 25: "\x{E41}\x{E25}\x{E30}"
 1877 text run at (0,12997) width 18: "\x{E23}\x{E31}\x{E01}"
 1878 text run at (0,13019) width 20: "\x{E21}\x{E31}\x{E19}"
 1879 text run at (0,13041) width 33: "\x{E40}\x{E2B}\x{E25}\x{E37}\x{E2D}"
 1880 text run at (0,13063) width 25: "\x{E40}\x{E01}\x{E34}\x{E19}"
 1881 text run at (0,13085) width 50: "\x{E2D}\x{E22}\x{E48}\x{E32}\x{E07}\x{E44}\x{E23}"
 1882 text run at (0,13107) width 10: "\x{E01}\x{E47}"
 1883 text run at (0,13129) width 28: "\x{E15}\x{E32}\x{E21}"
 1884 text run at (0,13151) width 18: "\x{E27}\x{E31}\x{E19}"
 1885 text run at (0,13173) width 10: "\x{E19}\x{E35}\x{E49}"
 1886 text run at (0,13195) width 18: "\x{E17}\x{E31}\x{E49}\x{E07}"
 1887 text run at (0,13217) width 10: "\x{E04}\x{E39}\x{E48}"
 1888 text run at (0,13239) width 17: "\x{E44}\x{E21}\x{E48}"
 1889 text run at (0,13261) width 17: "\x{E44}\x{E14}\x{E49}"
 1890 text run at (0,13283) width 24: "\x{E40}\x{E25}\x{E48}\x{E19}"
 1891 text run at (0,13305) width 17: "\x{E25}\x{E38}\x{E07}"
 1892 text run at (0,13327) width 14: "\x{E40}\x{E2E}"
 1893 text run at (0,13349) width 18: "\x{E19}\x{E23}\x{E35}"
 1894 text run at (0,13371) width 18: "\x{E19}\x{E31}\x{E48}\x{E07}"
 1895 text run at (0,13393) width 19: "\x{E2D}\x{E22}\x{E39}\x{E48}"
 1896 text run at (0,13415) width 10: "\x{E17}\x{E35}\x{E48}"
 1897 text run at (0,13437) width 37: "\x{E1A}\x{E31}\x{E19}\x{E44}\x{E14}"
 1898 text run at (0,13459) width 35: "\x{E1B}\x{E23}\x{E30}\x{E15}\x{E39}"
 1899 text run at (0,13481) width 25: "\x{E41}\x{E25}\x{E30}"
 1900 text run at (0,13503) width 23: "\x{E40}\x{E1D}\x{E49}\x{E32}"
 1901 text run at (0,13525) width 35: "\x{E01}\x{E31}\x{E07}\x{E27}\x{E25}"
 1902 text run at (0,13547) width 25: "\x{E08}\x{E49}\x{E2D}\x{E07}"
 1903 text run at (0,13569) width 10: "\x{E14}\x{E39}"
 1904 text run at (0,13591) width 27: "\x{E17}\x{E49}\x{E2D}\x{E07}"
 1905 text run at (0,13613) width 19: "\x{E1F}\x{E49}\x{E32}"
 1906 text run at (0,13635) width 10: "\x{E2A}\x{E35}"
 1907 text run at (0,13657) width 23: "\x{E40}\x{E17}\x{E32}"
 1908 text run at (0,13679) width 30: "\x{E2B}\x{E21}\x{E48}\x{E19}"
 1909 text run at (0,13701) width 20: "\x{E1C}\x{E34}\x{E14}"
 1910 text run at (0,13723) width 30: "\x{E1B}\x{E01}\x{E15}\x{E34}"
 1911 text run at (0,13745) width 17: "\x{E42}\x{E14}"
 1912 text run at (0,13767) width 24: "\x{E42}\x{E23}\x{E18}\x{E35}"
 1913 text run at (0,13789) width 20: "\x{E22}\x{E37}\x{E19}"
 1914 text run at (0,13811) width 10: "\x{E17}\x{E35}\x{E48}"
 1915 text run at (0,13833) width 35: "\x{E1B}\x{E23}\x{E30}\x{E15}\x{E39}"
 1916 text run at (0,13855) width 29: "\x{E01}\x{E2D}\x{E14}"
 1917 text run at (0,13877) width 17: "\x{E42}\x{E15}"
 1918 text run at (0,13899) width 17: "\x{E42}\x{E15}\x{E49}"
 1919 text run at (0,13921) width 15: "\x{E44}\x{E27}\x{E49}"
 1920 text run at (0,13943) width 17: "\x{E43}\x{E19}"
 1921 text run at (0,13965) width 28: "\x{E2D}\x{E49}\x{E2D}\x{E21}"
 1922 text run at (0,13987) width 28: "\x{E41}\x{E02}\x{E19}"
 1923 text run at (0,14009) width 25: "\x{E41}\x{E25}\x{E30}"
 1924 text run at (0,14031) width 10: "\x{E01}\x{E47}"
 1925 text run at (0,14053) width 27: "\x{E21}\x{E2D}\x{E07}"
 1926 text run at (0,14075) width 10: "\x{E14}\x{E39}"
 1927 text run at (0,14097) width 27: "\x{E17}\x{E49}\x{E2D}\x{E07}"
 1928 text run at (0,14119) width 19: "\x{E1F}\x{E49}\x{E32}"
 1929 text run at (0,14141) width 19: "\x{E2D}\x{E22}\x{E39}\x{E48}"
 1930 text run at (0,14163) width 44: "\x{E40}\x{E2B}\x{E21}\x{E37}\x{E2D}\x{E19}"
 1931 text run at (0,14185) width 20: "\x{E01}\x{E31}\x{E19}"
 1932 text run at (0,14207) width 18: "\x{E1B}\x{E49}\x{E32}"
 1933 text run at (0,14229) width 24: "\x{E40}\x{E2D}\x{E47}\x{E21}"
 1934 text run at (0,14251) width 35: "\x{E01}\x{E33}\x{E25}\x{E31}\x{E07}"
 1935 text run at (0,14273) width 25: "\x{E25}\x{E49}\x{E32}\x{E07}"
 1936 text run at (0,14295) width 27: "\x{E0A}\x{E32}\x{E21}"
 1937 text run at (0,14317) width 19: "\x{E2D}\x{E22}\x{E39}\x{E48}"
 1938 text run at (0,14339) width 26: "\x{E08}\x{E32}\x{E01}"
 1939 text run at (0,14361) width 28: "\x{E14}\x{E49}\x{E32}\x{E19}"
 1940 text run at (0,14383) width 34: "\x{E40}\x{E2B}\x{E19}\x{E37}\x{E2D}"
 1941 text run at (0,14405) width 26: "\x{E44}\x{E01}\x{E25}"
 1942 text run at (0,14427) width 28: "\x{E2D}\x{E2D}\x{E01}"
 1943 text run at (0,14449) width 17: "\x{E44}\x{E1B}"
 1944 text run at (0,14471) width 10: "\x{E21}\x{E35}"
 1945 text run at (0,14493) width 33: "\x{E40}\x{E2A}\x{E35}\x{E22}\x{E07}"
 1946 text run at (0,14515) width 19: "\x{E25}\x{E21}"
 1947 text run at (0,14537) width 34: "\x{E04}\x{E23}\x{E32}\x{E07}"
 1948 text run at (0,14559) width 27: "\x{E41}\x{E1C}\x{E48}\x{E27}"
 1949 text run at (0,14581) width 23: "\x{E40}\x{E1A}\x{E32}"
 1950 text run at (0,14603) width 37: "\x{E44}\x{E14}\x{E49}\x{E22}\x{E34}\x{E19}"
 1951 text run at (0,14625) width 18: "\x{E21}\x{E32}"
 1952 text run at (0,14647) width 17: "\x{E25}\x{E38}\x{E07}"
 1953 text run at (0,14669) width 14: "\x{E40}\x{E2E}"
 1954 text run at (0,14691) width 18: "\x{E19}\x{E23}\x{E35}"
 1955 text run at (0,14713) width 25: "\x{E41}\x{E25}\x{E30}"
 1956 text run at (0,14735) width 17: "\x{E42}\x{E14}"
 1957 text run at (0,14757) width 24: "\x{E42}\x{E23}\x{E18}\x{E35}"
 1958 text run at (0,14779) width 25: "\x{E40}\x{E2B}\x{E47}\x{E19}"
 1959 text run at (0,14801) width 20: "\x{E15}\x{E49}\x{E19}"
 1960 text run at (0,14823) width 31: "\x{E2B}\x{E0D}\x{E49}\x{E32}"
 1961 text run at (0,14845) width 18: "\x{E2A}\x{E39}\x{E07}"
 1962 text run at (0,14867) width 24: "\x{E40}\x{E2D}\x{E19}"
 1963 text run at (0,14889) width 25: "\x{E40}\x{E1B}\x{E47}\x{E19}"
 1964 text run at (0,14911) width 29: "\x{E04}\x{E25}\x{E37}\x{E48}\x{E19}"
 1965 text run at (0,14933) width 29: "\x{E01}\x{E48}\x{E2D}\x{E19}"
 1966 text run at (0,14955) width 10: "\x{E17}\x{E35}\x{E48}"
 1967 text run at (0,14977) width 29: "\x{E1E}\x{E32}\x{E22}\x{E38}"
 1968 text run at (0,14999) width 15: "\x{E08}\x{E30}"
 1969 text run at (0,15021) width 18: "\x{E21}\x{E32}"
 1970 text run at (0,15043) width 18: "\x{E16}\x{E36}\x{E07}"
 1971 text run at (0,15065) width 26: "\x{E41}\x{E25}\x{E49}\x{E27}"
 1972 text run at (0,15087) width 10: "\x{E01}\x{E47}"
 1973 text run at (0,15109) width 10: "\x{E21}\x{E35}"
 1974 text run at (0,15131) width 33: "\x{E40}\x{E2A}\x{E35}\x{E22}\x{E07}"
 1975 text run at (0,15153) width 28: "\x{E2B}\x{E27}\x{E35}\x{E14}"
 1976 text run at (0,15175) width 26: "\x{E2B}\x{E27}\x{E34}\x{E27}"
 1977 text run at (0,15197) width 42: "\x{E0A}\x{E31}\x{E14}\x{E40}\x{E08}\x{E19}"
 1978 text run at (0,15219) width 18: "\x{E21}\x{E32}"
 1979 text run at (0,15241) width 26: "\x{E08}\x{E32}\x{E01}"
 1980 text run at (0,15263) width 72: "\x{E1A}\x{E23}\x{E23}\x{E22}\x{E32}\x{E01}\x{E32}\x{E28}"
 1981 text run at (0,15285) width 26: "\x{E17}\x{E32}\x{E07}"
 1982 text run at (0,15307) width 17: "\x{E43}\x{E15}\x{E49}"
 1983 text run at (0,15329) width 25: "\x{E41}\x{E25}\x{E30}"
 1984 text run at (0,15351) width 24: "\x{E40}\x{E21}\x{E37}\x{E48}\x{E2D}"
 1985 text run at (0,15373) width 43: "\x{E40}\x{E2B}\x{E25}\x{E37}\x{E2D}\x{E1A}"
 1986 text run at (0,15395) width 18: "\x{E15}\x{E32}"
 1987 text run at (0,15417) width 17: "\x{E44}\x{E1B}"
 1988 text run at (0,15439) width 26: "\x{E17}\x{E32}\x{E07}"
 1989 text run at (0,15461) width 28: "\x{E14}\x{E49}\x{E32}\x{E19}"
 1990 text run at (0,15483) width 20: "\x{E19}\x{E31}\x{E49}\x{E19}"
 1991 text run at (0,15505) width 10: "\x{E01}\x{E47}"
 1992 text run at (0,15527) width 25: "\x{E40}\x{E2B}\x{E47}\x{E19}"
 1993 text run at (0,15549) width 29: "\x{E04}\x{E25}\x{E37}\x{E48}\x{E19}"
 1994 text run at (0,15571) width 31: "\x{E2B}\x{E0D}\x{E49}\x{E32}"
 1995 text run at (0,15593) width 18: "\x{E21}\x{E32}"
 1996 text run at (0,15615) width 26: "\x{E17}\x{E32}\x{E07}"
 1997 text run at (0,15637) width 28: "\x{E14}\x{E49}\x{E32}\x{E19}"
 1998 text run at (0,15659) width 20: "\x{E19}\x{E31}\x{E49}\x{E19}"
 1999 text run at (0,15681) width 28: "\x{E14}\x{E49}\x{E27}\x{E22}"
 2000 text run at (0,15703) width 17: "\x{E25}\x{E38}\x{E07}"
 2001 text run at (0,15725) width 14: "\x{E40}\x{E2E}"
 2002 text run at (0,15747) width 18: "\x{E19}\x{E23}\x{E35}"
 2003 text run at (0,15769) width 20: "\x{E1C}\x{E38}\x{E14}"
 2004 text run at (0,15791) width 19: "\x{E25}\x{E38}\x{E01}"
 2005 text run at (0,15813) width 19: "\x{E02}\x{E36}\x{E49}\x{E19}"
 2006 text run at (0,15835) width 20: "\x{E17}\x{E31}\x{E19}"
 2007 text run at (0,15857) width 17: "\x{E43}\x{E14}"
 2008 text run at (0,15876) width 7: "\""
 2009 text run at (0,15897) width 19: "\x{E25}\x{E21}"
 2010 text run at (0,15919) width 52: "\x{E44}\x{E0B}\x{E42}\x{E04}\x{E25}\x{E19}"
 2011 text run at (0,15941) width 18: "\x{E21}\x{E32}"
 2012 text run at (0,15963) width 24: "\x{E40}\x{E2D}\x{E47}\x{E21}"
 2013 text run at (0,15982) width 7: "\""
 2014 text run at (0,16003) width 17: "\x{E25}\x{E38}\x{E07}"
 2015 text run at (0,16025) width 25: "\x{E23}\x{E49}\x{E2D}\x{E07}"
 2016 text run at (0,16047) width 29: "\x{E1A}\x{E2D}\x{E01}"
 2017 text run at (0,16069) width 45: "\x{E20}\x{E23}\x{E23}\x{E22}\x{E32}"
 2018 text run at (0,16088) width 7: "\""
 2019 text run at (0,16109) width 17: "\x{E02}\x{E49}\x{E32}"
 2020 text run at (0,16131) width 15: "\x{E08}\x{E30}"
 2021 text run at (0,16153) width 17: "\x{E44}\x{E1B}"
 2022 text run at (0,16175) width 10: "\x{E14}\x{E39}"
 2023 text run at (0,16197) width 28: "\x{E2A}\x{E31}\x{E15}\x{E27}\x{E4C}"
 2024 text run at (0,16219) width 32: "\x{E40}\x{E25}\x{E35}\x{E49}\x{E22}\x{E07}"
 2025 text run at (0,16241) width 39: "\x{E2B}\x{E19}\x{E48}\x{E2D}\x{E22}"
 2026 text run at (0,16260) width 7: "\""
 2027 text run at (0,16281) width 26: "\x{E41}\x{E25}\x{E49}\x{E27}"
 2028 text run at (0,16303) width 17: "\x{E25}\x{E38}\x{E07}"
 2029 text run at (0,16325) width 10: "\x{E01}\x{E47}"
 2030 text run at (0,16347) width 16: "\x{E27}\x{E34}\x{E48}\x{E07}"
 2031 text run at (0,16369) width 17: "\x{E44}\x{E1B}"
 2032 text run at (0,16391) width 18: "\x{E22}\x{E31}\x{E07}"
 2033 text run at (0,16413) width 24: "\x{E40}\x{E1E}\x{E34}\x{E07}"
 2034 text run at (0,16435) width 10: "\x{E17}\x{E35}\x{E48}"
 2035 text run at (0,16457) width 16: "\x{E27}\x{E31}\x{E27}"
 2036 text run at (0,16479) width 25: "\x{E41}\x{E25}\x{E30}"
 2037 text run at (0,16501) width 18: "\x{E21}\x{E49}\x{E32}"
 2038 text run at (0,16523) width 37: "\x{E2D}\x{E32}\x{E28}\x{E31}\x{E22}"
 2039 text run at (0,16545) width 19: "\x{E2D}\x{E22}\x{E39}\x{E48}"
 2040 text run at (0,16567) width 18: "\x{E1B}\x{E49}\x{E32}"
 2041 text run at (0,16589) width 24: "\x{E40}\x{E2D}\x{E47}\x{E21}"
 2042 text run at (0,16611) width 30: "\x{E2B}\x{E22}\x{E38}\x{E14}"
 2043 text run at (0,16633) width 44: "\x{E17}\x{E33}\x{E07}\x{E32}\x{E19}"
 2044 text run at (0,16655) width 25: "\x{E41}\x{E25}\x{E30}"
 2045 text run at (0,16677) width 18: "\x{E21}\x{E32}"
 2046 text run at (0,16699) width 10: "\x{E17}\x{E35}\x{E48}"
 2047 text run at (0,16721) width 35: "\x{E1B}\x{E23}\x{E30}\x{E15}\x{E39}"
 2048 text run at (0,16743) width 34: "\x{E40}\x{E1E}\x{E35}\x{E22}\x{E07}"
 2049 text run at (0,16765) width 45: "\x{E0A}\x{E32}\x{E22}\x{E15}\x{E32}"
 2050 text run at (0,16787) width 27: "\x{E21}\x{E2D}\x{E07}"
 2051 text run at (0,16809) width 18: "\x{E1B}\x{E49}\x{E32}"
 2052 text run at (0,16831) width 10: "\x{E01}\x{E47}"
 2053 text run at (0,16853) width 29: "\x{E1A}\x{E2D}\x{E01}"
 2054 text run at (0,16875) width 17: "\x{E44}\x{E14}\x{E49}"
 2055 text run at (0,16897) width 16: "\x{E27}\x{E48}\x{E32}"
 2056 text run at (0,16919) width 55: "\x{E2D}\x{E31}\x{E19}\x{E15}\x{E23}\x{E32}\x{E22}"
 2057 text run at (0,16941) width 18: "\x{E21}\x{E32}"
 2058 text run at (0,16963) width 18: "\x{E16}\x{E36}\x{E07}"
 2059 text run at (0,16985) width 26: "\x{E41}\x{E25}\x{E49}\x{E27}"
 2060 text run at (0,17004) width 7: "\""
 2061 text run at (0,17025) width 21: "\x{E40}\x{E23}\x{E47}\x{E27}"
 2062 text run at (0,17047) width 17: "\x{E42}\x{E14}"
 2063 text run at (0,17069) width 24: "\x{E42}\x{E23}\x{E18}\x{E35}"
 2064 text run at (0,17088) width 5: "!"
 2065 text run at (0,17106) width 7: "\""
 2066 text run at (0,17127) width 18: "\x{E1B}\x{E49}\x{E32}"
 2067 text run at (0,17149) width 44: "\x{E15}\x{E30}\x{E42}\x{E01}\x{E19}"
 2068 text run at (0,17168) width 7: "\""
 2069 text run at (0,17189) width 16: "\x{E27}\x{E34}\x{E48}\x{E07}"
 2070 text run at (0,17211) width 17: "\x{E44}\x{E1B}"
 2071 text run at (0,17233) width 27: "\x{E2B}\x{E49}\x{E2D}\x{E07}"
 2072 text run at (0,17255) width 37: "\x{E43}\x{E15}\x{E49}\x{E16}\x{E38}\x{E19}"
 2073 text run at (0,17274) width 7: "\""
 2074 text run at (0,17295) width 17: "\x{E42}\x{E15}"
 2075 text run at (0,17317) width 17: "\x{E42}\x{E15}\x{E49}"
 2076 text run at (0,17339) width 29: "\x{E1C}\x{E25}\x{E38}\x{E19}"
 2077 text run at (0,17361) width 52: "\x{E01}\x{E23}\x{E30}\x{E42}\x{E14}\x{E14}"
 2078 text run at (0,17383) width 17: "\x{E25}\x{E07}"
 2079 text run at (0,17405) width 26: "\x{E08}\x{E32}\x{E01}"
 2080 text run at (0,17427) width 28: "\x{E2D}\x{E49}\x{E2D}\x{E21}"
 2081 text run at (0,17449) width 28: "\x{E41}\x{E02}\x{E19}"
 2082 text run at (0,17471) width 17: "\x{E42}\x{E14}"
 2083 text run at (0,17493) width 24: "\x{E42}\x{E23}\x{E18}\x{E35}"
 2084 text run at (0,17515) width 26: "\x{E41}\x{E25}\x{E49}\x{E27}"
 2085 text run at (0,17537) width 22: "\x{E40}\x{E02}\x{E49}\x{E32}"
 2086 text run at (0,17559) width 17: "\x{E44}\x{E1B}"
 2087 text run at (0,17581) width 28: "\x{E0B}\x{E48}\x{E2D}\x{E19}"
 2088 text run at (0,17603) width 19: "\x{E2D}\x{E22}\x{E39}\x{E48}"
 2089 text run at (0,17625) width 17: "\x{E43}\x{E15}\x{E49}"
 2090 text run at (0,17647) width 33: "\x{E40}\x{E15}\x{E35}\x{E22}\x{E07}"
 2091 text run at (0,17669) width 25: "\x{E40}\x{E14}\x{E47}\x{E01}"
 2092 text run at (0,17691) width 31: "\x{E2B}\x{E0D}\x{E34}\x{E07}"
 2093 text run at (0,17713) width 29: "\x{E19}\x{E49}\x{E2D}\x{E22}"
 2094 text run at (0,17735) width 22: "\x{E40}\x{E02}\x{E49}\x{E32}"
 2095 text run at (0,17757) width 17: "\x{E44}\x{E1B}"
 2096 text run at (0,17779) width 18: "\x{E14}\x{E36}\x{E07}"
 2097 text run at (0,17801) width 20: "\x{E21}\x{E31}\x{E19}"
 2098 text run at (0,17823) width 28: "\x{E2D}\x{E2D}\x{E01}"
 2099 text run at (0,17845) width 18: "\x{E21}\x{E32}"
 2100 text run at (0,17867) width 18: "\x{E1B}\x{E49}\x{E32}"
 2101 text run at (0,17889) width 24: "\x{E40}\x{E2D}\x{E47}\x{E21}"
 2102 text run at (0,17911) width 52: "\x{E01}\x{E23}\x{E30}\x{E0A}\x{E32}\x{E01}"
 2103 text run at (0,17933) width 18: "\x{E1D}\x{E32}"
 2104 text run at (0,17955) width 10: "\x{E17}\x{E35}\x{E48}"
 2105 text run at (0,17977) width 21: "\x{E1E}\x{E37}\x{E49}\x{E19}"
 2106 text run at (0,17999) width 28: "\x{E2D}\x{E2D}\x{E01}"
 2107 text run at (0,18021) width 35: "\x{E2D}\x{E22}\x{E48}\x{E32}\x{E07}"
 2108 text run at (0,18043) width 19: "\x{E2D}\x{E01}"
 2109 text run at (0,18065) width 20: "\x{E2A}\x{E31}\x{E48}\x{E19}"
 2110 text run at (0,18087) width 30: "\x{E02}\x{E27}\x{E31}\x{E0D}"
 2111 text run at (0,18109) width 28: "\x{E2B}\x{E32}\x{E22}"
 2112 text run at (0,18131) width 20: "\x{E1B}\x{E35}\x{E19}"
 2113 text run at (0,18153) width 37: "\x{E1A}\x{E31}\x{E19}\x{E44}\x{E14}"
 2114 text run at (0,18175) width 17: "\x{E44}\x{E21}\x{E49}"
 2115 text run at (0,18197) width 17: "\x{E25}\x{E07}"
 2116 text run at (0,18219) width 17: "\x{E44}\x{E1B}"
 2117 text run at (0,18241) width 17: "\x{E43}\x{E19}"
 2118 text run at (0,18263) width 34: "\x{E42}\x{E1E}\x{E23}\x{E07}"
 2119 text run at (0,18285) width 24: "\x{E40}\x{E25}\x{E47}\x{E01}"
 2120 text run at (0,18307) width 19: "\x{E2D}\x{E31}\x{E19}"
 2121 text run at (0,18329) width 20: "\x{E21}\x{E37}\x{E14}"
 2122 text run at (0,18351) width 20: "\x{E17}\x{E36}\x{E1A}"
 2123 text run at (0,18373) width 17: "\x{E42}\x{E14}"
 2124 text run at (0,18395) width 24: "\x{E42}\x{E23}\x{E18}\x{E35}"
 2125 text run at (0,18417) width 18: "\x{E08}\x{E31}\x{E1A}"
 2126 text run at (0,18439) width 17: "\x{E42}\x{E15}"
 2127 text run at (0,18461) width 17: "\x{E42}\x{E15}\x{E49}"
 2128 text run at (0,18483) width 17: "\x{E44}\x{E14}\x{E49}"
 2129 text run at (0,18505) width 17: "\x{E43}\x{E19}"
 2130 text run at (0,18527) width 10: "\x{E17}\x{E35}\x{E48}"
 2131 text run at (0,18549) width 20: "\x{E2A}\x{E38}\x{E14}"
 2132 text run at (0,18571) width 25: "\x{E41}\x{E25}\x{E30}"
 2133 text run at (0,18593) width 16: "\x{E27}\x{E34}\x{E48}\x{E07}"
 2134 text run at (0,18615) width 28: "\x{E15}\x{E32}\x{E21}"
 2135 text run at (0,18637) width 18: "\x{E1B}\x{E49}\x{E32}"
 2136 text run at (0,18659) width 23: "\x{E40}\x{E18}\x{E2D}"
 2137 text run at (0,18681) width 17: "\x{E44}\x{E1B}"
 2138 text run at (0,18703) width 24: "\x{E40}\x{E21}\x{E37}\x{E48}\x{E2D}"
 2139 text run at (0,18725) width 23: "\x{E40}\x{E18}\x{E2D}"
 2140 text run at (0,18747) width 18: "\x{E21}\x{E32}"
 2141 text run at (0,18769) width 17: "\x{E44}\x{E14}\x{E49}"
 2142 text run at (0,18791) width 26: "\x{E04}\x{E23}\x{E36}\x{E48}\x{E07}"
 2143 text run at (0,18813) width 27: "\x{E2B}\x{E49}\x{E2D}\x{E07}"
 2144 text run at (0,18835) width 10: "\x{E01}\x{E47}"
 2145 text run at (0,18857) width 10: "\x{E21}\x{E35}"
 2146 text run at (0,18879) width 33: "\x{E40}\x{E2A}\x{E35}\x{E22}\x{E07}"
 2147 text run at (0,18901) width 28: "\x{E2B}\x{E27}\x{E35}\x{E14}"
 2148 text run at (0,18923) width 27: "\x{E2B}\x{E27}\x{E37}\x{E2D}"
 2149 text run at (0,18945) width 28: "\x{E2A}\x{E48}\x{E27}\x{E19}"
 2150 text run at (0,18967) width 28: "\x{E1A}\x{E49}\x{E32}\x{E19}"
 2151 text run at (0,18989) width 10: "\x{E01}\x{E47}"
 2152 text run at (0,19011) width 20: "\x{E2A}\x{E31}\x{E48}\x{E19}"
 2153 text run at (0,19033) width 35: "\x{E2D}\x{E22}\x{E48}\x{E32}\x{E07}"
 2154 text run at (0,19055) width 25: "\x{E41}\x{E23}\x{E07}"
 2155 text run at (0,19077) width 18: "\x{E08}\x{E19}"
 2156 text run at (0,19099) width 23: "\x{E40}\x{E18}\x{E2D}"
 2157 text run at (0,19121) width 20: "\x{E2B}\x{E01}"
 2158 text run at (0,19143) width 35: "\x{E04}\x{E30}\x{E21}\x{E33}"
 2159 text run at (0,19165) width 18: "\x{E19}\x{E31}\x{E48}\x{E07}"
 2160 text run at (0,19187) width 39: "\x{E08}\x{E49}\x{E33}\x{E40}\x{E1A}\x{E49}\x{E32}"
 2161 text run at (0,19209) width 19: "\x{E2D}\x{E22}\x{E39}\x{E48}"
 2162 text run at (0,19231) width 20: "\x{E01}\x{E31}\x{E1A}"
 2163 text run at (0,19253) width 21: "\x{E1E}\x{E37}\x{E49}\x{E19}"
 2164 text run at (0,19275) width 26: "\x{E41}\x{E25}\x{E49}\x{E27}"
 2165 text run at (0,19297) width 18: "\x{E2A}\x{E34}\x{E48}\x{E07}"
 2166 text run at (0,19319) width 62: "\x{E1B}\x{E23}\x{E30}\x{E2B}\x{E25}\x{E32}\x{E14}"
 2167 text run at (0,19341) width 10: "\x{E01}\x{E47}"
 2168 text run at (0,19363) width 25: "\x{E40}\x{E01}\x{E34}\x{E14}"
 2169 text run at (0,19385) width 19: "\x{E02}\x{E36}\x{E49}\x{E19}"
 2170 text run at (0,19407) width 28: "\x{E1A}\x{E49}\x{E32}\x{E19}"
 2171 text run at (0,19429) width 30: "\x{E2B}\x{E21}\x{E38}\x{E19}"
 2172 text run at (0,19451) width 17: "\x{E44}\x{E1B}"
 2173 text run at (0,19473) width 30: "\x{E2B}\x{E21}\x{E38}\x{E19}"
 2174 text run at (0,19495) width 18: "\x{E21}\x{E32}"
 2175 text run at (0,19517) width 27: "\x{E2A}\x{E2D}\x{E07}"
 2176 text run at (0,19539) width 28: "\x{E2A}\x{E32}\x{E21}"
 2177 text run at (0,19561) width 27: "\x{E23}\x{E2D}\x{E1A}"
 2178 text run at (0,19583) width 26: "\x{E41}\x{E25}\x{E49}\x{E27}"
 2179 text run at (0,19605) width 10: "\x{E01}\x{E47}"
 2180 text run at (0,19627) width 28: "\x{E25}\x{E2D}\x{E22}"
 2181 text run at (0,19649) width 19: "\x{E02}\x{E36}\x{E49}\x{E19}"
 2182 text run at (0,19671) width 10: "\x{E2A}\x{E39}\x{E48}"
 2183 text run at (0,19693) width 45: "\x{E2D}\x{E32}\x{E01}\x{E32}\x{E28}"
 2184 text run at (0,19715) width 35: "\x{E2D}\x{E22}\x{E48}\x{E32}\x{E07}"
 2185 text run at (0,19737) width 17: "\x{E0A}\x{E49}\x{E32}"
 2186 text run at (0,19759) width 10: "\x{E46}"
 2187 text run at (0,19781) width 17: "\x{E42}\x{E14}"
 2188 text run at (0,19803) width 24: "\x{E42}\x{E23}\x{E18}\x{E35}"
 2189 text run at (0,19825) width 28: "\x{E23}\x{E39}\x{E49}\x{E2A}\x{E36}\x{E01}"
 2190 text run at (0,19847) width 24: "\x{E23}\x{E32}\x{E27}"
 2191 text run at (0,19869) width 20: "\x{E01}\x{E31}\x{E1A}"
 2192 text run at (0,19891) width 16: "\x{E27}\x{E48}\x{E32}"
 2193 text run at (0,19913) width 23: "\x{E40}\x{E18}\x{E2D}"
 2194 text run at (0,19935) width 17: "\x{E44}\x{E14}\x{E49}"
 2195 text run at (0,19957) width 19: "\x{E02}\x{E36}\x{E49}\x{E19}"
 2196 text run at (0,19979) width 17: "\x{E44}\x{E1B}"
 2197 text run at (0,20001) width 20: "\x{E01}\x{E31}\x{E1A}"
 2198 text run at (0,20023) width 19: "\x{E25}\x{E39}\x{E01}"
 2199 text run at (0,20045) width 47: "\x{E1A}\x{E2D}\x{E25}\x{E25}\x{E39}\x{E19}"
 2200 text run at (0,20067) width 29: "\x{E1E}\x{E32}\x{E22}\x{E38}"
 2201 text run at (0,20089) width 34: "\x{E40}\x{E2B}\x{E19}\x{E37}\x{E2D}"
 2202 text run at (0,20111) width 20: "\x{E01}\x{E31}\x{E1A}"
 2203 text run at (0,20133) width 29: "\x{E1E}\x{E32}\x{E22}\x{E38}"
 2204 text run at (0,20155) width 17: "\x{E43}\x{E15}\x{E49}"
 2205 text run at (0,20177) width 18: "\x{E21}\x{E32}"
 2206 text run at (0,20199) width 21: "\x{E1E}\x{E1A}"
 2207 text run at (0,20221) width 20: "\x{E01}\x{E31}\x{E19}"
 2208 text run at (0,20243) width 26: "\x{E15}\x{E23}\x{E07}"
 2209 text run at (0,20265) width 10: "\x{E17}\x{E35}\x{E48}"
 2210 text run at (0,20287) width 28: "\x{E1A}\x{E49}\x{E32}\x{E19}"
 2211 text run at (0,20309) width 20: "\x{E1E}\x{E2D}"
 2212 text run at (0,20331) width 10: "\x{E14}\x{E35}"
 2213 text run at (0,20353) width 25: "\x{E41}\x{E25}\x{E30}"
 2214 text run at (0,20375) width 18: "\x{E17}\x{E33}"
 2215 text run at (0,20397) width 17: "\x{E43}\x{E2B}\x{E49}"
 2216 text run at (0,20419) width 26: "\x{E15}\x{E23}\x{E07}"
 2217 text run at (0,20441) width 20: "\x{E19}\x{E31}\x{E49}\x{E19}"
 2218 text run at (0,20463) width 25: "\x{E40}\x{E1B}\x{E47}\x{E19}"
 2219 text run at (0,20485) width 18: "\x{E08}\x{E38}\x{E14}"
 2220 text run at (0,20507) width 30: "\x{E28}\x{E39}\x{E19}\x{E22}\x{E4C}"
 2221 text run at (0,20529) width 35: "\x{E01}\x{E25}\x{E32}\x{E07}"
 2222 text run at (0,20551) width 26: "\x{E02}\x{E2D}\x{E07}"
 2223 text run at (0,20573) width 29: "\x{E1E}\x{E32}\x{E22}\x{E38}"
 2224 text run at (0,20595) width 52: "\x{E44}\x{E0B}\x{E42}\x{E04}\x{E25}\x{E19}"
 2225 text run at (0,20617) width 28: "\x{E15}\x{E32}\x{E21}"
 2226 text run at (0,20639) width 30: "\x{E1B}\x{E01}\x{E15}\x{E34}"
 2227 text run at (0,20661) width 26: "\x{E15}\x{E23}\x{E07}"
 2228 text run at (0,20683) width 35: "\x{E01}\x{E25}\x{E32}\x{E07}"
 2229 text run at (0,20705) width 29: "\x{E1E}\x{E32}\x{E22}\x{E38}"
 2230 text run at (0,20727) width 52: "\x{E44}\x{E0B}\x{E42}\x{E04}\x{E25}\x{E19}"
 2231 text run at (0,20749) width 45: "\x{E2D}\x{E32}\x{E01}\x{E32}\x{E28}"
 2232 text run at (0,20771) width 15: "\x{E08}\x{E30}"
 2233 text run at (0,20793) width 18: "\x{E19}\x{E34}\x{E48}\x{E07}"
 2234 text run at (0,20815) width 19: "\x{E41}\x{E15}\x{E48}"
 2235 text run at (0,20837) width 36: "\x{E04}\x{E27}\x{E32}\x{E21}"
 2236 text run at (0,20859) width 40: "\x{E01}\x{E14}\x{E14}\x{E31}\x{E19}"
 2237 text run at (0,20881) width 35: "\x{E2D}\x{E22}\x{E48}\x{E32}\x{E07}"
 2238 text run at (0,20903) width 30: "\x{E2B}\x{E19}\x{E31}\x{E01}"
 2239 text run at (0,20925) width 26: "\x{E02}\x{E2D}\x{E07}"
 2240 text run at (0,20947) width 19: "\x{E25}\x{E21}"
 2241 text run at (0,20969) width 20: "\x{E17}\x{E38}\x{E01}"
 2242 text run at (0,20991) width 28: "\x{E14}\x{E49}\x{E32}\x{E19}"
 2243 text run at (0,21013) width 27: "\x{E23}\x{E2D}\x{E1A}"
 2244 text run at (0,21035) width 28: "\x{E1A}\x{E49}\x{E32}\x{E19}"
 2245 text run at (0,21057) width 18: "\x{E17}\x{E33}"
 2246 text run at (0,21079) width 17: "\x{E43}\x{E2B}\x{E49}"
 2247 text run at (0,21101) width 28: "\x{E1A}\x{E49}\x{E32}\x{E19}"
 2248 text run at (0,21123) width 28: "\x{E25}\x{E2D}\x{E22}"
 2249 text run at (0,21145) width 18: "\x{E2A}\x{E39}\x{E07}"
 2250 text run at (0,21167) width 19: "\x{E02}\x{E36}\x{E49}\x{E19}"
 2251 text run at (0,21189) width 10: "\x{E46}"
 2252 text run at (0,21211) width 18: "\x{E08}\x{E19}"
 2253 text run at (0,21233) width 43: "\x{E01}\x{E23}\x{E30}\x{E17}\x{E31}\x{E48}\x{E07}"
 2254 text run at (0,21255) width 19: "\x{E02}\x{E36}\x{E49}\x{E19}"
 2255 text run at (0,21277) width 17: "\x{E44}\x{E1B}"
 2256 text run at (0,21299) width 19: "\x{E2D}\x{E22}\x{E39}\x{E48}"
 2257 text run at (0,21321) width 20: "\x{E2A}\x{E38}\x{E14}"
 2258 text run at (0,21343) width 29: "\x{E22}\x{E2D}\x{E14}"
 2259 text run at (0,21365) width 26: "\x{E02}\x{E2D}\x{E07}"
 2260 text run at (0,21387) width 29: "\x{E1E}\x{E32}\x{E22}\x{E38}"
 2261 text run at (0,21409) width 52: "\x{E44}\x{E0B}\x{E42}\x{E04}\x{E25}\x{E19}"
 2262 text run at (0,21431) width 25: "\x{E41}\x{E25}\x{E30}"
 2263 text run at (0,21453) width 26: "\x{E08}\x{E32}\x{E01}"
 2264 text run at (0,21475) width 26: "\x{E15}\x{E23}\x{E07}"
 2265 text run at (0,21497) width 20: "\x{E19}\x{E31}\x{E49}\x{E19}"
 2266 text run at (0,21519) width 10: "\x{E01}\x{E47}"
 2267 text run at (0,21541) width 20: "\x{E16}\x{E39}\x{E01}"
 2268 text run at (0,21563) width 29: "\x{E2B}\x{E2D}\x{E1A}"
 2269 text run at (0,21585) width 17: "\x{E44}\x{E1B}"
 2270 text run at (0,21607) width 37: "\x{E2B}\x{E25}\x{E32}\x{E22}"
 2271 text run at (0,21629) width 26: "\x{E44}\x{E21}\x{E25}\x{E4C}"
 2272 text run at (0,21651) width 26: "\x{E07}\x{E48}\x{E32}\x{E22}"
 2273 text run at (0,21673) width 28: "\x{E14}\x{E32}\x{E22}"
 2274 text run at (0,21695) width 24: "\x{E23}\x{E32}\x{E27}"
 2275 text run at (0,21717) width 20: "\x{E01}\x{E31}\x{E1A}"
 2276 text run at (0,21739) width 29: "\x{E2B}\x{E2D}\x{E1A}"
 2277 text run at (0,21761) width 19: "\x{E02}\x{E19}"
 2278 text run at (0,21783) width 20: "\x{E19}\x{E01}"
 2279 text run at (0,21805) width 20: "\x{E21}\x{E37}\x{E14}"
 2280 text run at (0,21827) width 28: "\x{E21}\x{E32}\x{E01}"
 2281 text run at (0,21849) width 26: "\x{E41}\x{E25}\x{E49}\x{E27}"
 2282 text run at (0,21871) width 19: "\x{E25}\x{E21}"
 2283 text run at (0,21893) width 18: "\x{E22}\x{E31}\x{E07}"
 2284 text run at (0,21915) width 18: "\x{E2A}\x{E48}\x{E07}"
 2285 text run at (0,21937) width 33: "\x{E40}\x{E2A}\x{E35}\x{E22}\x{E07}"
 2286 text run at (0,21959) width 28: "\x{E2B}\x{E27}\x{E35}\x{E14}"
 2287 text run at (0,21981) width 27: "\x{E2B}\x{E27}\x{E37}\x{E2D}"
 2288 text run at (0,22003) width 18: "\x{E19}\x{E48}\x{E32}"
 2289 text run at (0,22025) width 27: "\x{E01}\x{E25}\x{E31}\x{E27}"
 2290 text run at (0,22047) width 19: "\x{E2D}\x{E22}\x{E39}\x{E48}"
 2291 text run at (0,22069) width 27: "\x{E23}\x{E2D}\x{E1A}"
 2292 text run at (0,22091) width 18: "\x{E15}\x{E31}\x{E27}"
 2293 text run at (0,22113) width 23: "\x{E40}\x{E18}\x{E2D}"
 2294 text run at (0,22135) width 19: "\x{E41}\x{E15}\x{E48}"
 2295 text run at (0,22157) width 17: "\x{E42}\x{E14}"
 2296 text run at (0,22179) width 24: "\x{E42}\x{E23}\x{E18}\x{E35}"
 2297 text run at (0,22201) width 25: "\x{E40}\x{E2B}\x{E47}\x{E19}"
 2298 text run at (0,22223) width 16: "\x{E27}\x{E48}\x{E32}"
 2299 text run at (0,22245) width 23: "\x{E40}\x{E18}\x{E2D}"
 2300 text run at (0,22267) width 54: "\x{E2A}\x{E32}\x{E21}\x{E32}\x{E23}\x{E16}"
 2301 text run at (0,22289) width 18: "\x{E19}\x{E31}\x{E48}\x{E07}"
 2302 text run at (0,22311) width 17: "\x{E44}\x{E1B}"
 2303 text run at (0,22333) width 17: "\x{E44}\x{E14}\x{E49}"
 2304 text run at (0,22355) width 27: "\x{E2D}\x{E22}\x{E48}\x{E32}"
 2305 text run at (0,22377) width 34: "\x{E07}\x{E07}\x{E48}\x{E32}\x{E22}"
 2306 text run at (0,22399) width 28: "\x{E14}\x{E32}\x{E22}"
 2307 text run at (0,22421) width 20: "\x{E19}\x{E31}\x{E01}"
 2308 text run at (0,22443) width 26: "\x{E04}\x{E23}\x{E31}\x{E49}\x{E07}"
 2309 text run at (0,22465) width 28: "\x{E2B}\x{E19}\x{E36}\x{E48}\x{E07}"
 2310 text run at (0,22487) width 27: "\x{E2B}\x{E25}\x{E31}\x{E07}"
 2311 text run at (0,22509) width 26: "\x{E08}\x{E32}\x{E01}"
 2312 text run at (0,22531) width 10: "\x{E17}\x{E35}\x{E48}"
 2313 text run at (0,22553) width 28: "\x{E1A}\x{E49}\x{E32}\x{E19}"
 2314 text run at (0,22575) width 37: "\x{E2A}\x{E30}\x{E14}\x{E38}\x{E14}"
 2315 text run at (0,22597) width 35: "\x{E2D}\x{E22}\x{E48}\x{E32}\x{E07}"
 2316 text run at (0,22619) width 25: "\x{E41}\x{E23}\x{E07}"
 2317 text run at (0,22641) width 25: "\x{E41}\x{E25}\x{E30}"
 2318 text run at (0,22663) width 30: "\x{E2B}\x{E21}\x{E38}\x{E19}"
 2319 text run at (0,22685) width 17: "\x{E44}\x{E1B}"
 2320 text run at (0,22707) width 27: "\x{E23}\x{E2D}\x{E1A}"
 2321 text run at (0,22729) width 10: "\x{E46}"
 2322 text run at (0,22751) width 27: "\x{E2A}\x{E2D}\x{E07}"
 2323 text run at (0,22773) width 28: "\x{E2A}\x{E32}\x{E21}"
 2324 text run at (0,22795) width 26: "\x{E04}\x{E23}\x{E31}\x{E49}\x{E07}"
 2325 text run at (0,22817) width 17: "\x{E43}\x{E19}"
 2326 text run at (0,22839) width 29: "\x{E15}\x{E2D}\x{E19}"
 2327 text run at (0,22861) width 27: "\x{E41}\x{E23}\x{E01}"
 2328 text run at (0,22883) width 23: "\x{E40}\x{E18}\x{E2D}"
 2329 text run at (0,22905) width 10: "\x{E01}\x{E47}"
 2330 text run at (0,22927) width 28: "\x{E23}\x{E39}\x{E49}\x{E2A}\x{E36}\x{E01}"
 2331 text run at (0,22949) width 16: "\x{E27}\x{E48}\x{E32}"
 2332 text run at (0,22971) width 18: "\x{E15}\x{E31}\x{E27}"
 2333 text run at (0,22993) width 22: "\x{E40}\x{E2D}\x{E07}"
 2334 text run at (0,23015) width 20: "\x{E16}\x{E39}\x{E01}"
 2335 text run at (0,23037) width 35: "\x{E41}\x{E01}\x{E27}\x{E48}\x{E07}"
 2336 text run at (0,23059) width 35: "\x{E2D}\x{E22}\x{E48}\x{E32}\x{E07}"
 2337 text run at (0,23081) width 27: "\x{E41}\x{E1C}\x{E48}\x{E27}"
 2338 text run at (0,23103) width 23: "\x{E40}\x{E1A}\x{E32}"
 2339 text run at (0,23125) width 24: "\x{E23}\x{E32}\x{E27}"
 2340 text run at (0,23147) width 36: "\x{E17}\x{E32}\x{E23}\x{E01}"
 2341 text run at (0,23169) width 17: "\x{E43}\x{E19}"
 2342 text run at (0,23191) width 24: "\x{E40}\x{E1B}\x{E25}"
 2343 text run at (0,23213) width 17: "\x{E42}\x{E15}"
 2344 text run at (0,23235) width 17: "\x{E42}\x{E15}\x{E49}"
 2345 text run at (0,23257) width 17: "\x{E44}\x{E21}\x{E48}"
 2346 text run at (0,23279) width 28: "\x{E0A}\x{E2D}\x{E1A}"
 2347 text run at (0,23301) width 15: "\x{E43}\x{E08}"
 2348 text run at (0,23323) width 24: "\x{E40}\x{E25}\x{E22}"
 2349 text run at (0,23345) width 20: "\x{E21}\x{E31}\x{E19}"
 2350 text run at (0,23367) width 16: "\x{E27}\x{E34}\x{E48}\x{E07}"
 2351 text run at (0,23389) width 17: "\x{E44}\x{E1B}"
 2352 text run at (0,23411) width 16: "\x{E27}\x{E34}\x{E48}\x{E07}"
 2353 text run at (0,23433) width 18: "\x{E21}\x{E32}"
 2354 text run at (0,23455) width 27: "\x{E23}\x{E2D}\x{E1A}"
 2355 text run at (0,23477) width 27: "\x{E2B}\x{E49}\x{E2D}\x{E07}"
 2356 text run at (0,23499) width 26: "\x{E17}\x{E32}\x{E07}"
 2357 text run at (0,23521) width 27: "\x{E42}\x{E19}\x{E49}\x{E19}"
 2358 text run at (0,23543) width 10: "\x{E17}\x{E35}"
 2359 text run at (0,23565) width 26: "\x{E17}\x{E32}\x{E07}"
 2360 text run at (0,23587) width 10: "\x{E19}\x{E35}\x{E49}"
 2361 text run at (0,23609) width 10: "\x{E17}\x{E35}"
 2362 text run at (0,23631) width 18: "\x{E2A}\x{E48}\x{E07}"
 2363 text run at (0,23653) width 33: "\x{E40}\x{E2A}\x{E35}\x{E22}\x{E07}"
 2364 text run at (0,23675) width 23: "\x{E40}\x{E2B}\x{E48}\x{E32}"
 2365 text run at (0,23697) width 18: "\x{E14}\x{E31}\x{E07}"
 2366 text run at (0,23719) width 27: "\x{E01}\x{E49}\x{E2D}\x{E07}"
 2367 text run at (0,23741) width 19: "\x{E41}\x{E15}\x{E48}"
 2368 text run at (0,23763) width 17: "\x{E42}\x{E14}"
 2369 text run at (0,23785) width 24: "\x{E42}\x{E23}\x{E18}\x{E35}"
 2370 text run at (0,23807) width 18: "\x{E19}\x{E31}\x{E48}\x{E07}"
 2371 text run at (0,23829) width 18: "\x{E19}\x{E34}\x{E48}\x{E07}"
 2372 text run at (0,23851) width 19: "\x{E2D}\x{E22}\x{E39}\x{E48}"
 2373 text run at (0,23873) width 20: "\x{E1A}\x{E19}"
 2374 text run at (0,23895) width 21: "\x{E1E}\x{E37}\x{E49}\x{E19}"
 2375 text run at (0,23917) width 23: "\x{E40}\x{E1D}\x{E49}\x{E32}"
 2376 text run at (0,23939) width 29: "\x{E04}\x{E2D}\x{E22}"
 2377 text run at (0,23961) width 10: "\x{E14}\x{E39}"
 2378 text run at (0,23983) width 16: "\x{E27}\x{E48}\x{E32}"
 2379 text run at (0,24005) width 15: "\x{E08}\x{E30}"
 2380 text run at (0,24027) width 25: "\x{E40}\x{E01}\x{E34}\x{E14}"
 2381 text run at (0,24049) width 31: "\x{E2D}\x{E30}\x{E44}\x{E23}"
 2382 text run at (0,24071) width 19: "\x{E02}\x{E36}\x{E49}\x{E19}"
 2383 text run at (0,24093) width 26: "\x{E04}\x{E23}\x{E31}\x{E49}\x{E07}"
 2384 text run at (0,24115) width 28: "\x{E2B}\x{E19}\x{E36}\x{E48}\x{E07}"
 2385 text run at (0,24137) width 17: "\x{E42}\x{E15}"
 2386 text run at (0,24159) width 17: "\x{E42}\x{E15}\x{E49}"
 2387 text run at (0,24181) width 22: "\x{E40}\x{E02}\x{E49}\x{E32}"
 2388 text run at (0,24203) width 17: "\x{E44}\x{E1B}"
 2389 text run at (0,24225) width 26: "\x{E43}\x{E01}\x{E25}\x{E49}"
 2390 text run at (0,24247) width 18: "\x{E1D}\x{E32}"
 2391 text run at (0,24269) width 10: "\x{E17}\x{E35}\x{E48}"
 2392 text run at (0,24291) width 21: "\x{E1E}\x{E37}\x{E49}\x{E19}"
 2393 text run at (0,24313) width 28: "\x{E21}\x{E32}\x{E01}"
 2394 text run at (0,24335) width 17: "\x{E44}\x{E1B}"
 2395 text run at (0,24357) width 24: "\x{E40}\x{E25}\x{E22}"
 2396 text run at (0,24379) width 30: "\x{E1E}\x{E25}\x{E31}\x{E14}"
 2397 text run at (0,24401) width 37: "\x{E15}\x{E01}\x{E25}\x{E07}"
 2398 text run at (0,24423) width 17: "\x{E44}\x{E1B}"
 2399 text run at (0,24445) width 10: "\x{E17}\x{E35}"
 2400 text run at (0,24467) width 27: "\x{E41}\x{E23}\x{E01}"
 2401 text run at (0,24489) width 25: "\x{E40}\x{E14}\x{E47}\x{E01}"
 2402 text run at (0,24511) width 31: "\x{E2B}\x{E0D}\x{E34}\x{E07}"
 2403 text run at (0,24533) width 20: "\x{E04}\x{E34}\x{E14}"
 2404 text run at (0,24555) width 16: "\x{E27}\x{E48}\x{E32}"
 2405 text run at (0,24577) width 23: "\x{E40}\x{E18}\x{E2D}"
 2406 text run at (0,24599) width 15: "\x{E08}\x{E30}"
 2407 text run at (0,24621) width 23: "\x{E2A}\x{E39}\x{E0D}"
 2408 text run at (0,24643) width 25: "\x{E40}\x{E2A}\x{E35}\x{E22}"
 2409 text run at (0,24665) width 20: "\x{E21}\x{E31}\x{E19}"
 2410 text run at (0,24687) width 17: "\x{E44}\x{E1B}"
 2411 text run at (0,24709) width 25: "\x{E40}\x{E2A}\x{E35}\x{E22}"
 2412 text run at (0,24731) width 26: "\x{E41}\x{E25}\x{E49}\x{E27}"
 2413 text run at (0,24753) width 19: "\x{E41}\x{E15}\x{E48}"
 2414 text run at (0,24775) width 17: "\x{E0A}\x{E31}\x{E48}\x{E27}"
 2415 text run at (0,24797) width 18: "\x{E04}\x{E23}\x{E39}\x{E48}"
 2416 text run at (0,24819) width 23: "\x{E40}\x{E18}\x{E2D}"
 2417 text run at (0,24841) width 10: "\x{E01}\x{E47}"
 2418 text run at (0,24863) width 25: "\x{E40}\x{E2B}\x{E47}\x{E19}"
 2419 text run at (0,24885) width 10: "\x{E2B}\x{E39}"
 2420 text run at (0,24907) width 26: "\x{E02}\x{E2D}\x{E07}"
 2421 text run at (0,24929) width 20: "\x{E21}\x{E31}\x{E19}"
 2422 text run at (0,24951) width 26: "\x{E42}\x{E1C}\x{E25}\x{E48}"
 2423 text run at (0,24973) width 19: "\x{E02}\x{E36}\x{E49}\x{E19}"
 2424 text run at (0,24995) width 18: "\x{E21}\x{E32}"
 2425 text run at (0,25017) width 26: "\x{E08}\x{E32}\x{E01}"
 2426 text run at (0,25039) width 26: "\x{E0A}\x{E48}\x{E2D}\x{E07}"
 2427 text run at (0,25061) width 20: "\x{E19}\x{E31}\x{E49}\x{E19}"
 2428 text run at (0,25083) width 18: "\x{E17}\x{E31}\x{E49}\x{E07}"
 2429 text run at (0,25105) width 10: "\x{E19}\x{E35}\x{E49}"
 2430 text run at (0,25127) width 39: "\x{E40}\x{E1E}\x{E23}\x{E32}\x{E30}"
 2431 text run at (0,25149) width 25: "\x{E41}\x{E23}\x{E07}"
 2432 text run at (0,25171) width 20: "\x{E01}\x{E14}"
 2433 text run at (0,25193) width 35: "\x{E2D}\x{E22}\x{E48}\x{E32}\x{E07}"
 2434 text run at (0,25215) width 30: "\x{E2B}\x{E19}\x{E31}\x{E01}"
 2435 text run at (0,25237) width 26: "\x{E02}\x{E2D}\x{E07}"
 2436 text run at (0,25259) width 45: "\x{E2D}\x{E32}\x{E01}\x{E32}\x{E28}"
 2437 text run at (0,25281) width 18: "\x{E17}\x{E33}"
 2438 text run at (0,25303) width 17: "\x{E43}\x{E2B}\x{E49}"
 2439 text run at (0,25325) width 17: "\x{E42}\x{E15}"
 2440 text run at (0,25347) width 17: "\x{E42}\x{E15}\x{E49}"
 2441 text run at (0,25369) width 17: "\x{E44}\x{E21}\x{E48}"
 2442 text run at (0,25391) width 37: "\x{E15}\x{E01}\x{E25}\x{E07}"
 2443 text run at (0,25413) width 17: "\x{E44}\x{E1B}"
 2444 text run at (0,25435) width 25: "\x{E02}\x{E49}\x{E32}\x{E07}"
 2445 text run at (0,25457) width 25: "\x{E25}\x{E48}\x{E32}\x{E07}"
 2446 text run at (0,25479) width 17: "\x{E42}\x{E14}"
 2447 text run at (0,25501) width 24: "\x{E42}\x{E23}\x{E18}\x{E35}"
 2448 text run at (0,25523) width 37: "\x{E04}\x{E25}\x{E32}\x{E19}"
 2449 text run at (0,25545) width 17: "\x{E44}\x{E1B}"
 2450 text run at (0,25567) width 10: "\x{E17}\x{E35}\x{E48}"
 2451 text run at (0,25589) width 26: "\x{E0A}\x{E48}\x{E2D}\x{E07}"
 2452 text run at (0,25611) width 20: "\x{E19}\x{E31}\x{E49}\x{E19}"
 2453 text run at (0,25633) width 18: "\x{E08}\x{E31}\x{E1A}"
 2454 text run at (0,25655) width 10: "\x{E2B}\x{E39}"
 2455 text run at (0,25677) width 17: "\x{E42}\x{E15}"
 2456 text run at (0,25699) width 17: "\x{E42}\x{E15}\x{E49}"
 2457 text run at (0,25721) width 15: "\x{E44}\x{E27}\x{E49}"
 2458 text run at (0,25743) width 17: "\x{E44}\x{E14}\x{E49}"
 2459 text run at (0,25765) width 25: "\x{E41}\x{E25}\x{E30}"
 2460 text run at (0,25787) width 27: "\x{E25}\x{E32}\x{E01}"
 2461 text run at (0,25809) width 20: "\x{E21}\x{E31}\x{E19}"
 2462 text run at (0,25831) width 18: "\x{E21}\x{E32}"
 2463 text run at (0,25853) width 10: "\x{E17}\x{E35}\x{E48}"
 2464 text run at (0,25875) width 27: "\x{E2B}\x{E49}\x{E2D}\x{E07}"
 2465 text run at (0,25897) width 19: "\x{E2D}\x{E35}\x{E01}"
 2466 text run at (0,25919) width 27: "\x{E2B}\x{E25}\x{E31}\x{E07}"
 2467 text run at (0,25941) width 26: "\x{E08}\x{E32}\x{E01}"
 2468 text run at (0,25963) width 20: "\x{E19}\x{E31}\x{E49}\x{E19}"
 2469 text run at (0,25985) width 10: "\x{E01}\x{E47}"
 2470 text run at (0,26007) width 20: "\x{E1B}\x{E34}\x{E14}"
 2471 text run at (0,26029) width 18: "\x{E1D}\x{E32}"
 2472 text run at (0,26051) width 21: "\x{E1E}\x{E37}\x{E49}\x{E19}"
 2473 text run at (0,26073) width 25: "\x{E40}\x{E1E}\x{E37}\x{E48}\x{E2D}"
 2474 text run at (0,26095) width 15: "\x{E08}\x{E30}"
 2475 text run at (0,26117) width 17: "\x{E44}\x{E14}\x{E49}"
 2476 text run at (0,26139) width 17: "\x{E44}\x{E21}\x{E48}"
 2477 text run at (0,26161) width 25: "\x{E40}\x{E01}\x{E34}\x{E14}"
 2478 text run at (0,26183) width 54: "\x{E2D}\x{E38}\x{E1A}\x{E31}\x{E15}\x{E34}\x{E40}\x{E2B}\x{E15}\x{E38}"
 2479 text run at (0,26205) width 19: "\x{E2D}\x{E35}\x{E01}"
 2480 text run at (0,26227) width 42: "\x{E0A}\x{E31}\x{E48}\x{E27}\x{E42}\x{E21}\x{E07}"
 2481 text run at (0,26249) width 26: "\x{E41}\x{E25}\x{E49}\x{E27}"
 2482 text run at (0,26271) width 42: "\x{E0A}\x{E31}\x{E48}\x{E27}\x{E42}\x{E21}\x{E07}"
 2483 text run at (0,26293) width 22: "\x{E40}\x{E25}\x{E48}\x{E32}"
 2484 text run at (0,26315) width 28: "\x{E1C}\x{E48}\x{E32}\x{E19}"
 2485 text run at (0,26337) width 17: "\x{E44}\x{E1B}"
 2486 text run at (0,26359) width 17: "\x{E42}\x{E14}"
 2487 text run at (0,26381) width 24: "\x{E42}\x{E23}\x{E18}\x{E35}"
 2488 text run at (0,26403) width 29: "\x{E04}\x{E48}\x{E2D}\x{E22}"
 2489 text run at (0,26425) width 10: "\x{E46}"
 2490 text run at (0,26447) width 28: "\x{E2B}\x{E32}\x{E22}"
 2491 text run at (0,26469) width 27: "\x{E01}\x{E25}\x{E31}\x{E27}"
 2492 text run at (0,26491) width 19: "\x{E41}\x{E15}\x{E48}"
 2493 text run at (0,26513) width 23: "\x{E40}\x{E18}\x{E2D}"
 2494 text run at (0,26535) width 28: "\x{E23}\x{E39}\x{E49}\x{E2A}\x{E36}\x{E01}"
 2495 text run at (0,26557) width 31: "\x{E40}\x{E2B}\x{E07}\x{E32}"
 2496 text run at (0,26579) width 33: "\x{E40}\x{E2B}\x{E25}\x{E37}\x{E2D}"
 2497 text run at (0,26601) width 25: "\x{E40}\x{E01}\x{E34}\x{E19}"
 2498 text run at (0,26623) width 25: "\x{E41}\x{E25}\x{E30}"
 2499 text run at (0,26645) width 19: "\x{E25}\x{E21}"
 2500 text run at (0,26667) width 10: "\x{E01}\x{E47}"
 2501 text run at (0,26689) width 18: "\x{E2A}\x{E48}\x{E07}"
 2502 text run at (0,26711) width 33: "\x{E40}\x{E2A}\x{E35}\x{E22}\x{E07}"
 2503 text run at (0,26733) width 28: "\x{E2B}\x{E27}\x{E35}\x{E14}"
 2504 text run at (0,26755) width 27: "\x{E2B}\x{E27}\x{E37}\x{E2D}"
 2505 text run at (0,26777) width 18: "\x{E14}\x{E31}\x{E07}"
 2506 text run at (0,26799) width 25: "\x{E40}\x{E2A}\x{E35}\x{E22}"
 2507 text run at (0,26821) width 18: "\x{E08}\x{E19}"
 2508 text run at (0,26843) width 23: "\x{E40}\x{E18}\x{E2D}"
 2509 text run at (0,26865) width 29: "\x{E41}\x{E17}\x{E1A}"
 2510 text run at (0,26887) width 15: "\x{E08}\x{E30}"
 2511 text run at (0,26909) width 10: "\x{E2B}\x{E39}"
 2512 text run at (0,26931) width 38: "\x{E2B}\x{E19}\x{E27}\x{E01}"
 2513 text run at (0,26953) width 10: "\x{E17}\x{E35}"
 2514 text run at (0,26975) width 27: "\x{E41}\x{E23}\x{E01}"
 2515 text run at (0,26997) width 23: "\x{E40}\x{E18}\x{E2D}"
 2516 text run at (0,27019) width 38: "\x{E2A}\x{E07}\x{E2A}\x{E31}\x{E22}"
 2517 text run at (0,27041) width 16: "\x{E27}\x{E48}\x{E32}"
 2518 text run at (0,27063) width 18: "\x{E04}\x{E07}"
 2519 text run at (0,27085) width 15: "\x{E08}\x{E30}"
 2520 text run at (0,27107) width 20: "\x{E16}\x{E39}\x{E01}"
 2521 text run at (0,27129) width 20: "\x{E09}\x{E35}\x{E01}"
 2522 text run at (0,27151) width 52: "\x{E01}\x{E23}\x{E30}\x{E0A}\x{E32}\x{E01}"
 2523 text run at (0,27173) width 28: "\x{E2D}\x{E2D}\x{E01}"
 2524 text run at (0,27195) width 25: "\x{E40}\x{E1B}\x{E47}\x{E19}"
 2525 text run at (0,27217) width 19: "\x{E0A}\x{E34}\x{E49}\x{E19}"
 2526 text run at (0,27239) width 24: "\x{E40}\x{E25}\x{E47}\x{E01}"
 2527 text run at (0,27261) width 19: "\x{E0A}\x{E34}\x{E49}\x{E19}"
 2528 text run at (0,27283) width 29: "\x{E19}\x{E49}\x{E2D}\x{E22}"
 2529 text run at (0,27305) width 24: "\x{E40}\x{E21}\x{E37}\x{E48}\x{E2D}"
 2530 text run at (0,27327) width 28: "\x{E1A}\x{E49}\x{E32}\x{E19}"
 2531 text run at (0,27349) width 24: "\x{E40}\x{E2D}\x{E19}"
 2532 text run at (0,27371) width 19: "\x{E25}\x{E49}\x{E21}"
 2533 text run at (0,27393) width 17: "\x{E25}\x{E07}"
 2534 text run at (0,27415) width 19: "\x{E2D}\x{E35}\x{E01}"
 2535 text run at (0,27437) width 26: "\x{E04}\x{E23}\x{E31}\x{E49}\x{E07}"
 2536 text run at (0,27459) width 19: "\x{E41}\x{E15}\x{E48}"
 2537 text run at (0,27481) width 37: "\x{E2B}\x{E25}\x{E32}\x{E22}"
 2538 text run at (0,27503) width 42: "\x{E0A}\x{E31}\x{E48}\x{E27}\x{E42}\x{E21}\x{E07}"
 2539 text run at (0,27525) width 28: "\x{E1C}\x{E48}\x{E32}\x{E19}"
 2540 text run at (0,27547) width 17: "\x{E44}\x{E1B}"
 2541 text run at (0,27569) width 10: "\x{E01}\x{E47}"
 2542 text run at (0,27591) width 17: "\x{E44}\x{E21}\x{E48}"
 2543 text run at (0,27613) width 10: "\x{E21}\x{E35}"
 2544 text run at (0,27635) width 31: "\x{E2D}\x{E30}\x{E44}\x{E23}"
 2545 text run at (0,27657) width 25: "\x{E40}\x{E01}\x{E34}\x{E14}"
 2546 text run at (0,27679) width 19: "\x{E02}\x{E36}\x{E49}\x{E19}"
 2547 text run at (0,27701) width 23: "\x{E40}\x{E18}\x{E2D}"
 2548 text run at (0,27723) width 24: "\x{E40}\x{E25}\x{E22}"
 2549 text run at (0,27745) width 24: "\x{E40}\x{E25}\x{E34}\x{E01}"
 2550 text run at (0,27767) width 28: "\x{E27}\x{E34}\x{E15}\x{E01}"
 2551 text run at (0,27789) width 25: "\x{E41}\x{E25}\x{E30}"
 2552 text run at (0,27811) width 40: "\x{E15}\x{E31}\x{E14}\x{E2A}\x{E34}\x{E19}"
 2553 text run at (0,27833) width 15: "\x{E43}\x{E08}"
 2554 text run at (0,27855) width 29: "\x{E04}\x{E2D}\x{E22}"
 2555 text run at (0,27877) width 10: "\x{E14}\x{E39}"
 2556 text run at (0,27899) width 35: "\x{E2D}\x{E22}\x{E48}\x{E32}\x{E07}"
 2557 text run at (0,27921) width 28: "\x{E2A}\x{E07}\x{E1A}"
 2558 text run at (0,27943) width 25: "\x{E41}\x{E25}\x{E30}"
 2559 text run at (0,27965) width 17: "\x{E23}\x{E2D}"
 2560 text run at (0,27987) width 16: "\x{E27}\x{E48}\x{E32}"
 2561 text run at (0,28009) width 47: "\x{E2D}\x{E19}\x{E32}\x{E04}\x{E15}"
 2562 text run at (0,28031) width 15: "\x{E08}\x{E30}"
 2563 text run at (0,28053) width 25: "\x{E40}\x{E1B}\x{E47}\x{E19}"
 2564 text run at (0,28075) width 50: "\x{E2D}\x{E22}\x{E48}\x{E32}\x{E07}\x{E44}\x{E23}"
 2565 text run at (0,28097) width 17: "\x{E43}\x{E19}"
 2566 text run at (0,28119) width 10: "\x{E17}\x{E35}\x{E48}"
 2567 text run at (0,28141) width 20: "\x{E2A}\x{E38}\x{E14}"
 2568 text run at (0,28163) width 23: "\x{E40}\x{E18}\x{E2D}"
 2569 text run at (0,28185) width 37: "\x{E04}\x{E25}\x{E32}\x{E19}"
 2570 text run at (0,28207) width 26: "\x{E08}\x{E32}\x{E01}"
 2571 text run at (0,28229) width 21: "\x{E1E}\x{E37}\x{E49}\x{E19}"
 2572 text run at (0,28251) width 27: "\x{E2B}\x{E49}\x{E2D}\x{E07}"
 2573 text run at (0,28273) width 10: "\x{E17}\x{E35}\x{E48}"
 2574 text run at (0,28295) width 27: "\x{E42}\x{E22}\x{E01}"
 2575 text run at (0,28317) width 17: "\x{E44}\x{E1B}"
 2576 text run at (0,28339) width 18: "\x{E21}\x{E32}"
 2577 text run at (0,28361) width 19: "\x{E02}\x{E36}\x{E49}\x{E19}"
 2578 text run at (0,28383) width 17: "\x{E44}\x{E1B}"
 2579 text run at (0,28405) width 20: "\x{E1A}\x{E19}"
 2580 text run at (0,28427) width 33: "\x{E40}\x{E15}\x{E35}\x{E22}\x{E07}"
 2581 text run at (0,28449) width 26: "\x{E41}\x{E25}\x{E49}\x{E27}"
 2582 text run at (0,28471) width 10: "\x{E01}\x{E47}"
 2583 text run at (0,28493) width 29: "\x{E19}\x{E2D}\x{E19}"
 2584 text run at (0,28515) width 17: "\x{E25}\x{E07}"
 2585 text run at (0,28537) width 17: "\x{E42}\x{E15}"
 2586 text run at (0,28559) width 17: "\x{E42}\x{E15}\x{E49}"
 2587 text run at (0,28581) width 28: "\x{E15}\x{E32}\x{E21}"
 2588 text run at (0,28603) width 20: "\x{E15}\x{E34}\x{E14}"
 2589 text run at (0,28625) width 18: "\x{E21}\x{E32}"
 2590 text run at (0,28647) width 29: "\x{E19}\x{E2D}\x{E19}"
 2591 text run at (0,28669) width 17: "\x{E25}\x{E07}"
 2592 text run at (0,28691) width 26: "\x{E43}\x{E01}\x{E25}\x{E49}"
 2593 text run at (0,28713) width 10: "\x{E46}"
 2594 text run at (0,28735) width 23: "\x{E40}\x{E18}\x{E2D}"
 2595 text run at (0,28757) width 17: "\x{E44}\x{E21}\x{E48}"
 2596 text run at (0,28779) width 17: "\x{E0A}\x{E49}\x{E32}"
 2597 text run at (0,28801) width 17: "\x{E42}\x{E14}"
 2598 text run at (0,28823) width 24: "\x{E42}\x{E23}\x{E18}\x{E35}"
 2599 text run at (0,28845) width 10: "\x{E01}\x{E47}"
 2600 text run at (0,28867) width 20: "\x{E1B}\x{E34}\x{E14}"
 2601 text run at (0,28889) width 18: "\x{E15}\x{E32}"
 2602 text run at (0,28911) width 17: "\x{E25}\x{E07}"
 2603 text run at (0,28933) width 29: "\x{E2B}\x{E25}\x{E31}\x{E1A}"
 2604 text run at (0,28955) width 38: "\x{E1C}\x{E25}\x{E47}\x{E2D}\x{E22}"
 2605 text run at (0,28977) width 17: "\x{E44}\x{E1B}"
 2606 text run at (0,28999) width 35: "\x{E2D}\x{E22}\x{E48}\x{E32}\x{E07}"
 2607 text run at (0,29021) width 30: "\x{E2A}\x{E19}\x{E34}\x{E17}"
 2608 text run at (0,29043) width 18: "\x{E17}\x{E31}\x{E49}\x{E07}"
 2609 text run at (0,29065) width 10: "\x{E46}"
 2610 text run at (0,29087) width 10: "\x{E17}\x{E35}\x{E48}"
 2611 text run at (0,29109) width 28: "\x{E1A}\x{E49}\x{E32}\x{E19}"
 2612 text run at (0,29131) width 27: "\x{E42}\x{E22}\x{E01}"
 2613 text run at (0,29153) width 17: "\x{E44}\x{E1B}"
 2614 text run at (0,29175) width 18: "\x{E21}\x{E32}"
 2615 text run at (0,29197) width 25: "\x{E41}\x{E25}\x{E30}"
 2616 text run at (0,29219) width 19: "\x{E25}\x{E21}"
 2617 text run at (0,29241) width 10: "\x{E01}\x{E47}"
 2618 text run at (0,29263) width 34: "\x{E04}\x{E23}\x{E32}\x{E07}"
 2619 text run at (0,29285) width 28: "\x{E2B}\x{E27}\x{E35}\x{E14}"
 2620 text run at (0,29307) width 27: "\x{E2B}\x{E27}\x{E37}\x{E2D}"
73924

LayoutTests/platform/mac/fast/text/international/wrap-CJK-001-expected.checksum

1 8f47c8b9b30ac9f9a30ea91b40c8a138
21\ No newline at end of file
 2890b6360364e3313c64850d5c2c5a19e
33\ No newline at end of file
73924

LayoutTests/platform/mac/fast/text/international/wrap-CJK-001-expected.txt

@@layer at (0,0) size 800x600
66 RenderBlock (anonymous) at (0,0) size 784x14
77 RenderText {#text} at (0,0) size 345x14
88 text run at (0,0) width 345: "Tests that wrapping does not trim the last character if it is not whitespace."
9  RenderBlock {P} at (0,26) size 551x34 [border: (3px solid #FF0000)]
10  RenderText {#text} at (3,3) size 545x28
11  text run at (3,3) width 545: "\x{6700}\x{5927}2GHz\x{306E}Intel Core Duo\x{30D7}\x{30ED}\x{30BB}\x{30C3}\x{30B5}\x{306E}\x{30D1}\x{30EF}\x{30FC}\x{3001}iSight\x{30AB}\x{30E1}\x{30E9}\x{3001}Front Row\x{3001}iLife \x{2019}06\x{3001}13\x{30A4}\x{30F3}\x{30C1}\x{306E}\x{30AF}\x{30EA}\x{30A2}"
12  text run at (3,17) width 168: "\x{30EF}\x{30A4}\x{30C9}\x{30B9}\x{30AF}\x{30EA}\x{30FC}\x{30F3}\x{30C7}\x{30A3}\x{30B9}\x{30D7}\x{30EC}\x{30A4}"
 9 RenderBlock {P} at (0,26) size 551x42 [border: (3px solid #FF0000)]
 10 RenderText {#text} at (3,5) size 545x32
 11 text run at (3,5) width 545: "\x{6700}\x{5927}2GHz\x{306E}Intel Core Duo\x{30D7}\x{30ED}\x{30BB}\x{30C3}\x{30B5}\x{306E}\x{30D1}\x{30EF}\x{30FC}\x{3001}iSight\x{30AB}\x{30E1}\x{30E9}\x{3001}Front Row\x{3001}iLife \x{2019}06\x{3001}13\x{30A4}\x{30F3}\x{30C1}\x{306E}\x{30AF}\x{30EA}\x{30A2}"
 12 text run at (3,23) width 168: "\x{30EF}\x{30A4}\x{30C9}\x{30B9}\x{30AF}\x{30EA}\x{30FC}\x{30F3}\x{30C7}\x{30A3}\x{30B9}\x{30D7}\x{30EC}\x{30A4}"
73924

LayoutTests/platform/mac/transforms/2d/hindi-rotated-expected.checksum

1 8c64d67f8cc40853c1c988cb399d0dc9
21\ No newline at end of file
 2d5e55cdac03a78846cbeb69a686fbd23
33\ No newline at end of file
73924

LayoutTests/platform/mac/transforms/2d/hindi-rotated-expected.txt

1 layer at (0,0) size 800x600
2  RenderView at (0,0) size 800x600
3 layer at (0,0) size 800x600
4  RenderBlock {HTML} at (0,0) size 800x600
5  RenderBody {BODY} at (8,8) size 784x576
6  RenderBlock {P} at (0,0) size 784x18
 1layer at (0,0) size 785x602
 2 RenderView at (0,0) size 785x600
 3layer at (0,0) size 785x600
 4 RenderBlock {HTML} at (0,0) size 785x600
 5 RenderBody {BODY} at (8,8) size 769x576
 6 RenderBlock {P} at (0,0) size 769x18
77 RenderText {#text} at (0,0) size 141x18
88 text run at (0,0) width 141: "This is to test a fix for "
99 RenderInline {A} at (0,0) size 68x18 [color=#0000EE]

@@layer at (0,0) size 800x600
1111 text run at (141,0) width 68: "bug 26660"
1212 RenderText {#text} at (209,0) size 4x18
1313 text run at (209,0) width 4: "."
14  RenderBlock {P} at (0,502) size 784x0
15 layer at (8,101) size 252x38
16  RenderBlock {DIV} at (0,93) size 252x38 [border: (1px solid #008000)]
17  RenderText {#text} at (1,1) size 239x36
18  text run at (1,1) width 239: "Straight \x{916}\x{94B}\x{91C}\x{947}\x{902} \x{92C}\x{941}\x{927}\x{935}\x{93E}\x{930} \x{915}\x{940} \x{938}\x{941}\x{92C}\x{939} \x{939}\x{94B}\x{928}\x{947} \x{935}\x{93E}\x{932}\x{93E}"
19  text run at (1,19) width 74: "\x{92A}\x{942}\x{930}\x{94D}\x{923} 123 abc"
20 layer at (8,214) size 252x38
21  RenderBlock {DIV} at (0,206) size 252x38 [border: (1px solid #008000)]
22  RenderText {#text} at (1,1) size 235x36
23  text run at (1,1) width 235: "Now rotated \x{916}\x{94B}\x{91C}\x{947}\x{902} \x{92C}\x{941}\x{927}\x{935}\x{93E}\x{930} \x{915}\x{940} \x{938}\x{941}\x{92C}\x{939} \x{939}\x{94B}\x{928}\x{947}"
24  text run at (1,19) width 108: "\x{935}\x{93E}\x{932}\x{93E} \x{92A}\x{942}\x{930}\x{94D}\x{923} 123 abc"
25 layer at (8,327) size 252x54
26  RenderBlock {DIV} at (0,319) size 252x54 [border: (1px solid #008000)]
 14 RenderBlock {P} at (0,550) size 769x0
 15layer at (8,101) size 252x54
 16 RenderBlock {DIV} at (0,93) size 252x54 [border: (1px solid #008000)]
 17 RenderText {#text} at (1,2) size 239x44
 18 text run at (1,2) width 239: "Straight \x{916}\x{94B}\x{91C}\x{947}\x{902} \x{92C}\x{941}\x{927}\x{935}\x{93E}\x{930} \x{915}\x{940} \x{938}\x{941}\x{92C}\x{939} \x{939}\x{94B}\x{928}\x{947} \x{935}\x{93E}\x{932}\x{93E}"
 19 text run at (1,28) width 74: "\x{92A}\x{942}\x{930}\x{94D}\x{923} 123 abc"
 20layer at (8,230) size 252x54
 21 RenderBlock {DIV} at (0,222) size 252x54 [border: (1px solid #008000)]
 22 RenderText {#text} at (1,2) size 235x44
 23 text run at (1,2) width 235: "Now rotated \x{916}\x{94B}\x{91C}\x{947}\x{902} \x{92C}\x{941}\x{927}\x{935}\x{93E}\x{930} \x{915}\x{940} \x{938}\x{941}\x{92C}\x{939} \x{939}\x{94B}\x{928}\x{947}"
 24 text run at (1,28) width 108: "\x{935}\x{93E}\x{932}\x{93E} \x{92A}\x{942}\x{930}\x{94D}\x{923} 123 abc"
 25layer at (8,359) size 252x54
 26 RenderBlock {DIV} at (0,351) size 252x54 [border: (1px solid #008000)]
2727 RenderText {#text} at (1,1) size 241x52
2828 text run at (1,1) width 241: "Now rotated \x{916}\x{94B}\x{91C}\x{947}\x{902} \x{92C}\x{941}\x{927}\x{935}\x{93E}\x{930} \x{915}\x{940} \x{938}\x{941}\x{92C}\x{939} \x{939}\x{94B}\x{928}\x{947}"
2929 text run at (1,27) width 111: "\x{935}\x{93E}\x{932}\x{93E} \x{92A}\x{942}\x{930}\x{94D}\x{923} 123 abc"
30 layer at (8,456) size 252x38
31  RenderBlock {DIV} at (0,448) size 252x38 [border: (1px solid #008000)]
32  RenderText {#text} at (1,1) size 235x36
33  text run at (1,1) width 115: "Now rotated \x{916}\x{94B}\x{91C}\x{947}\x{902} "
34  text run at (116,1) width 120: "\x{92C}\x{941}\x{927}\x{935}\x{93E}\x{930} \x{915}\x{940} \x{938}\x{941}\x{92C}\x{939} \x{939}\x{94B}\x{928}\x{947}"
35  text run at (1,19) width 108: "\x{935}\x{93E}\x{932}\x{93E} \x{92A}\x{942}\x{930}\x{94D}\x{923} 123 abc"
 30layer at (8,488) size 252x54
 31 RenderBlock {DIV} at (0,480) size 252x54 [border: (1px solid #008000)]
 32 RenderText {#text} at (1,2) size 235x44
 33 text run at (1,2) width 115: "Now rotated \x{916}\x{94B}\x{91C}\x{947}\x{902} "
 34 text run at (116,2) width 120: "\x{92C}\x{941}\x{927}\x{935}\x{93E}\x{930} \x{915}\x{940} \x{938}\x{941}\x{92C}\x{939} \x{939}\x{94B}\x{928}\x{947}"
 35 text run at (1,28) width 108: "\x{935}\x{93E}\x{932}\x{93E} \x{92A}\x{942}\x{930}\x{94D}\x{923} 123 abc"
73924